diff --git a/Makefile b/Makefile index e69de29..39d320f 100644 --- a/Makefile +++ b/Makefile @@ -0,0 +1,5 @@ +GOMOD=$(shell test -f "go.work" && echo "readonly" || echo "vendor") +LDFLAGS=-s -w + +cli: + go build -mod $(GOMOD) -ldflags="$(LDFLAGS)" -o bin/pip cmd/pip/main.go diff --git a/app/hierarchy/update/options.go b/app/hierarchy/update/options.go new file mode 100644 index 0000000..2a3c392 --- /dev/null +++ b/app/hierarchy/update/options.go @@ -0,0 +1,61 @@ +package update + +import ( + "context" + "flag" + + "github.com/sfomuseum/go-flags/flagset" + "github.com/whosonfirst/go-whosonfirst-export/v2" + "github.com/whosonfirst/go-whosonfirst-spatial/database" + "github.com/whosonfirst/go-whosonfirst-spatial/filter" + "github.com/whosonfirst/go-whosonfirst-spatial/hierarchy" + hierarchy_filter "github.com/whosonfirst/go-whosonfirst-spatial/hierarchy/filter" + "github.com/whosonfirst/go-writer/v3" +) + +type RunOptions struct { + Writer writer.Writer + WriterURI string + Exporter export.Exporter + ExporterURI string + MapshaperServerURI string + SpatialDatabase database.SpatialDatabase + SpatialDatabaseURI string + ToIterator string + FromIterator string + SPRFilterInputs *filter.SPRInputs + SPRResultsFunc hierarchy_filter.FilterSPRResultsFunc // This one chooses one result among many (or nil) + PIPUpdateFunc hierarchy.PointInPolygonHierarchyResolverUpdateCallback // This one constructs a map[string]interface{} to update the target record (or not) + To []string + From []string +} + +func RunOptionsFromFlagSet(ctx context.Context, fs *flag.FlagSet) (*RunOptions, error) { + + flagset.Parse(fs) + + inputs := &filter.SPRInputs{} + + inputs.IsCurrent = is_current + inputs.IsCeased = is_ceased + inputs.IsDeprecated = is_deprecated + inputs.IsSuperseded = is_superseded + inputs.IsSuperseding = is_superseding + + hierarchy_paths := fs.Args() + + opts := &RunOptions{ + WriterURI: writer_uri, + ExporterURI: exporter_uri, + SpatialDatabaseURI: spatial_database_uri, + MapshaperServerURI: mapshaper_server, + SPRResultsFunc: hierarchy_filter.FirstButForgivingSPRResultsFunc, // sudo make me configurable + SPRFilterInputs: inputs, + ToIterator: iterator_uri, + FromIterator: spatial_iterator_uri, + To: hierarchy_paths, + From: spatial_paths, + } + + return opts, nil +} diff --git a/app/hierarchy/update/update.go b/app/hierarchy/update/update.go index bc4d410..9da84fc 100644 --- a/app/hierarchy/update/update.go +++ b/app/hierarchy/update/update.go @@ -6,13 +6,10 @@ import ( "fmt" "log" - "github.com/sfomuseum/go-flags/flagset" "github.com/sfomuseum/go-sfomuseum-mapshaper" "github.com/whosonfirst/go-whosonfirst-export/v2" "github.com/whosonfirst/go-whosonfirst-spatial/database" - "github.com/whosonfirst/go-whosonfirst-spatial/filter" "github.com/whosonfirst/go-whosonfirst-spatial/hierarchy" - hierarchy_filter "github.com/whosonfirst/go-whosonfirst-spatial/hierarchy/filter" "github.com/whosonfirst/go-writer/v3" ) @@ -29,33 +26,20 @@ func Run(ctx context.Context, logger *log.Logger) error { func RunWithFlagSet(ctx context.Context, fs *flag.FlagSet, logger *log.Logger) error { - flagset.Parse(fs) - - inputs := &filter.SPRInputs{} - - inputs.IsCurrent = is_current - inputs.IsCeased = is_ceased - inputs.IsDeprecated = is_deprecated - inputs.IsSuperseded = is_superseded - inputs.IsSuperseding = is_superseding - - opts := &UpdateApplicationOptions{ - WriterURI: writer_uri, - ExporterURI: exporter_uri, - SpatialDatabaseURI: spatial_database_uri, - MapshaperServerURI: mapshaper_server, - SPRResultsFunc: hierarchy_filter.FirstButForgivingSPRResultsFunc, // sudo make me configurable - SPRFilterInputs: inputs, - ToIterator: iterator_uri, - FromIterator: spatial_iterator_uri, + opts, err := RunOptionsFromFlagSet(ctx, fs) + + if err != nil { + return fmt.Errorf("Failed to derive run options, %w", err) } - hierarchy_paths := fs.Args() + return RunWithOptions(ctx, opts, logger) +} - paths := &UpdateApplicationPaths{ - To: hierarchy_paths, - From: spatial_paths, - } +func RunWithOptions(ctx context.Context, opts *RunOptions, logger *log.Logger) error { + + // Note that the bulk of this method is simply taking opts and using it to + // instantiate all the different pieces necessary for the updateApplication + // type to actually do the work of updating hierarchies. var ex export.Exporter var wr writer.Writer @@ -74,6 +58,17 @@ func RunWithFlagSet(ctx context.Context, fs *flag.FlagSet, logger *log.Logger) e ex = _ex } + // In addition to the "exporter" we also create a default options instance + // that is used by the updateApplication instance to do a final check whether + // or not records have actually been updated (beyond just incrementing the + // lastmodified date). + + export_opts, err := export.NewDefaultOptions(ctx) + + if err != nil { + return fmt.Errorf("Failed to create export options, %w", err) + } + if opts.Writer != nil { wr = opts.Writer } else { @@ -145,17 +140,24 @@ func RunWithFlagSet(ctx context.Context, fs *flag.FlagSet, logger *log.Logger) e return fmt.Errorf("Failed to create PIP tool, %v", err) } - app := &UpdateApplication{ + // This is where the actual work happens + + app := &updateApplication{ to: opts.ToIterator, from: opts.FromIterator, spatial_db: spatial_db, - tool: resolver, + resolver: resolver, exporter: ex, + export_opts: export_opts, writer: wr, sprFilterInputs: opts.SPRFilterInputs, sprResultsFunc: opts.SPRResultsFunc, hierarchyUpdateFunc: update_cb, - logger: logger, + } + + paths := &updateApplicationPaths{ + To: opts.To, + From: opts.From, } return app.Run(ctx, paths) diff --git a/app/hierarchy/update/app.go b/app/hierarchy/update/update_app.go similarity index 72% rename from app/hierarchy/update/app.go rename to app/hierarchy/update/update_app.go index 42fa6f6..8a1a8d5 100644 --- a/app/hierarchy/update/app.go +++ b/app/hierarchy/update/update_app.go @@ -4,7 +4,7 @@ import ( "context" "fmt" "io" - "log" + _ "log/slog" "github.com/whosonfirst/go-whosonfirst-export/v2" "github.com/whosonfirst/go-whosonfirst-feature/geometry" @@ -17,47 +17,35 @@ import ( "github.com/whosonfirst/go-writer/v3" ) -type UpdateApplicationOptions struct { - Writer writer.Writer - WriterURI string - Exporter export.Exporter - ExporterURI string - MapshaperServerURI string - SpatialDatabase database.SpatialDatabase - SpatialDatabaseURI string - ToIterator string - FromIterator string - SPRFilterInputs *filter.SPRInputs - SPRResultsFunc hierarchy_filter.FilterSPRResultsFunc // This one chooses one result among many (or nil) - PIPUpdateFunc hierarchy.PointInPolygonHierarchyResolverUpdateCallback // This one constructs a map[string]interface{} to update the target record (or not) -} - -type UpdateApplicationPaths struct { +type updateApplicationPaths struct { To []string From []string } -type UpdateApplication struct { +// updateApplication is a struct to wrap the details of (optionally) populating a spatial +// database and updating the hierarchies of (n) files derived from an iterator including +// writing (publishing) the updated records. +type updateApplication struct { to string from string - tool *hierarchy.PointInPolygonHierarchyResolver + resolver *hierarchy.PointInPolygonHierarchyResolver writer writer.Writer exporter export.Exporter + export_opts *export.Options spatial_db database.SpatialDatabase sprResultsFunc hierarchy_filter.FilterSPRResultsFunc sprFilterInputs *filter.SPRInputs hierarchyUpdateFunc hierarchy.PointInPolygonHierarchyResolverUpdateCallback - logger *log.Logger } -func (app *UpdateApplication) Run(ctx context.Context, paths *UpdateApplicationPaths) error { +func (app *updateApplication) Run(ctx context.Context, paths *updateApplicationPaths) error { ctx, cancel := context.WithCancel(context.Background()) defer cancel() // These are the data we are indexing to HIERARCHY from - err := app.IndexSpatialDatabase(ctx, paths.From...) + err := app.indexSpatialDatabase(ctx, paths.From...) if err != nil { return err @@ -73,7 +61,7 @@ func (app *UpdateApplication) Run(ctx context.Context, paths *UpdateApplicationP return fmt.Errorf("Failed to read '%s', %v", path, err) } - _, err = app.UpdateAndPublishFeature(ctx, body) + _, err = app.updateAndPublishFeature(ctx, body) if err != nil { return fmt.Errorf("Failed to update feature for '%s', %v", path, err) @@ -101,7 +89,7 @@ func (app *UpdateApplication) Run(ctx context.Context, paths *UpdateApplicationP return app.writer.Close(ctx) } -func (app *UpdateApplication) IndexSpatialDatabase(ctx context.Context, uris ...string) error { +func (app *updateApplication) indexSpatialDatabase(ctx context.Context, uris ...string) error { from_cb := func(ctx context.Context, path string, fh io.ReadSeeker, args ...interface{}) error { @@ -143,17 +131,28 @@ func (app *UpdateApplication) IndexSpatialDatabase(ctx context.Context, uris ... // UpdateAndPublishFeature will invoke the `PointInPolygonAndUpdate` method using the `hierarchy.PointInPolygonHierarchyResolver` instance // associated with 'app' using 'body' as its input. If successful and there are changes the result will be published using the `PublishFeature` // method. -func (app *UpdateApplication) UpdateAndPublishFeature(ctx context.Context, body []byte) ([]byte, error) { +func (app *updateApplication) updateAndPublishFeature(ctx context.Context, body []byte) ([]byte, error) { - has_changed, new_body, err := app.UpdateFeature(ctx, body) + has_changed, new_body, err := app.updateFeature(ctx, body) if err != nil { return nil, fmt.Errorf("Failed to update feature, %w", err) } + // But really, has the record _actually_ changed? + + if has_changed { + + has_changed, err = export.ExportChanged(new_body, body, app.export_opts, io.Discard) + + if err != nil { + return nil, fmt.Errorf("Failed to determine if export has changed post update, %w", err) + } + } + if has_changed { - new_body, err = app.PublishFeature(ctx, new_body) + new_body, err = app.publishFeature(ctx, new_body) if err != nil { return nil, fmt.Errorf("Failed to publish feature, %w", err) @@ -165,13 +164,13 @@ func (app *UpdateApplication) UpdateAndPublishFeature(ctx context.Context, body // UpdateFeature will invoke the `PointInPolygonAndUpdate` method using the `hierarchy.PointInPolygonHierarchyResolver` instance // associated with 'app' using 'body' as its input. -func (app *UpdateApplication) UpdateFeature(ctx context.Context, body []byte) (bool, []byte, error) { +func (app *updateApplication) updateFeature(ctx context.Context, body []byte) (bool, []byte, error) { - return app.tool.PointInPolygonAndUpdate(ctx, app.sprFilterInputs, app.sprResultsFunc, app.hierarchyUpdateFunc, body) + return app.resolver.PointInPolygonAndUpdate(ctx, app.sprFilterInputs, app.sprResultsFunc, app.hierarchyUpdateFunc, body) } // PublishFeature exports 'body' using the `whosonfirst/go-writer/v3` instance associated with 'app'. -func (app *UpdateApplication) PublishFeature(ctx context.Context, body []byte) ([]byte, error) { +func (app *updateApplication) publishFeature(ctx context.Context, body []byte) ([]byte, error) { new_body, err := app.exporter.Export(ctx, body) diff --git a/app/pip/flags.go b/app/pip/flags.go index a1640c3..17dcb5f 100644 --- a/app/pip/flags.go +++ b/app/pip/flags.go @@ -3,40 +3,108 @@ package pip import ( "context" "flag" + "fmt" + "github.com/sfomuseum/go-flags/flagset" "github.com/sfomuseum/go-flags/multi" - "github.com/whosonfirst/go-whosonfirst-spatial/flags" + "github.com/whosonfirst/go-reader" + "github.com/whosonfirst/go-whosonfirst-iterate/v2/emitter" + "github.com/whosonfirst/go-whosonfirst-spatial/database" + "sort" + "strings" ) -const ENABLE_GEOJSON string = "enable-geojson" -const SERVER_URI string = "server-uri" -const MODE string = "mode" +var spatial_database_uri string +var properties_reader_uri string + +var is_wof bool + +var enable_custom_placetypes bool +var custom_placetypes string + +var latitude float64 +var longitude float64 +var geometries string + +var inception string +var cessation string + +var props multi.MultiString +var placetypes multi.MultiString +var alt_geoms multi.MultiString + +var is_current multi.MultiInt64 +var is_ceased multi.MultiInt64 +var is_deprecated multi.MultiInt64 +var is_superseded multi.MultiInt64 +var is_superseding multi.MultiInt64 var mode string var server_uri string var enable_geojson bool +var verbose bool + var sort_uris multi.MultiString +var iterator_uri string + func DefaultFlagSet(ctx context.Context) (*flag.FlagSet, error) { - fs, err := flags.CommonFlags() + fs := flagset.NewFlagSet("pip") + + available_databases := database.Schemes() + desc_databases := fmt.Sprintf("A valid whosonfirst/go-whosonfirst-spatial/data.SpatialDatabase URI. options are: %s", available_databases) + + fs.StringVar(&spatial_database_uri, "spatial-database-uri", "rtree://", desc_databases) + + available_readers := reader.Schemes() + desc_readers := fmt.Sprintf("A valid whosonfirst/go-reader.Reader URI. Available options are: %s", available_readers) + + fs.StringVar(&properties_reader_uri, "properties-reader-uri", "", fmt.Sprintf("%s. If the value is {spatial-database-uri} then the value of the '-spatial-database-uri' implements the reader.Reader interface and will be used.", desc_readers)) + + fs.BoolVar(&is_wof, "is-wof", true, "Input data is WOF-flavoured GeoJSON. (Pass a value of '0' or 'false' if you need to index non-WOF documents.") + + fs.BoolVar(&enable_custom_placetypes, "enable-custom-placetypes", false, "Enable wof:placetype values that are not explicitly defined in the whosonfirst/go-whosonfirst-placetypes repository.") + + fs.StringVar(&custom_placetypes, "custom-placetypes", "", "A JSON-encoded string containing custom placetypes defined using the syntax described in the whosonfirst/go-whosonfirst-placetypes repository.") + + fs.BoolVar(&verbose, "verbose", false, "Be chatty.") + + // query flags + + fs.Float64Var(&latitude, "latitude", 0.0, "A valid latitude.") + fs.Float64Var(&longitude, "longitude", 0.0, "A valid longitude.") + + fs.StringVar(&geometries, "geometries", "all", "Valid options are: all, alt, default.") + + fs.StringVar(&inception, "inception", "", "A valid EDTF date string.") + fs.StringVar(&cessation, "cessation", "", "A valid EDTF date string.") + + fs.Var(&props, "property", "One or more Who's On First properties to append to each result.") + fs.Var(&placetypes, "placetype", "One or more place types to filter results by.") + + fs.Var(&alt_geoms, "alternate-geometry", "One or more alternate geometry labels (wof:alt_label) values to filter results by.") + + fs.Var(&is_current, "is-current", "One or more existential flags (-1, 0, 1) to filter results by.") + fs.Var(&is_ceased, "is-ceased", "One or more existential flags (-1, 0, 1) to filter results by.") + fs.Var(&is_deprecated, "is-deprecated", "One or more existential flags (-1, 0, 1) to filter results by.") + fs.Var(&is_superseded, "is-superseded", "One or more existential flags (-1, 0, 1) to filter results by.") + fs.Var(&is_superseding, "is-superseding", "One or more existential flags (-1, 0, 1) to filter results by.") + + fs.Var(&sort_uris, "sort-uri", "Zero or more whosonfirst/go-whosonfirst-spr/sort URIs.") - if err != nil { - return nil, err - } + // Indexing flags - err = flags.AppendQueryFlags(fs) + modes := emitter.Schemes() + sort.Strings(modes) - if err != nil { - return nil, err - } + valid_modes := strings.Join(modes, ", ") + desc_modes := fmt.Sprintf("A valid whosonfirst/go-whosonfirst-iterate/v2 URI. Supported schemes are: %s.", valid_modes) - err = flags.AppendIndexingFlags(fs) + fs.StringVar(&iterator_uri, "iterator-uri", "repo://", desc_modes) - if err != nil { - return nil, err - } + // Runtime / server flags fs.StringVar(&mode, "mode", "cli", "Valid options are: cli") fs.StringVar(&server_uri, "server-uri", "http://localhost:8080", "A valid aaronland/go-http-server URI.") diff --git a/app/pip/options.go b/app/pip/options.go new file mode 100644 index 0000000..625cfdb --- /dev/null +++ b/app/pip/options.go @@ -0,0 +1,76 @@ +package pip + +import ( + "context" + "flag" + + "github.com/sfomuseum/go-flags/flagset" +) + +type RunOptions struct { + Mode string `json:"mode"` + Verbose bool `json:"verbose"` + Sources []string `json:"sources"` + SpatialDatabaseURI string `json:"spatial_database_uri"` + PropertiesReaderURI string `json:"properties_reader_uri"` + IteratorURI string `json:"iterator_uri"` + EnableCustomPlacetypes bool `json:"enable_custom_placetypes"` + CustomPlacetypes string `json:"custom_placetypes"` + IsWhosOnFirst bool `json:"is_whosonfirst"` + Latitude float64 `json:"latitude"` + Longitude float64 `json:"longitude"` + Placetypes []string `json:"placetypes,omitempty"` + Geometries string `json:"geometries,omitempty"` + AlternateGeometries []string `json:"alternate_geometries,omitempty"` + IsCurrent []int64 `json:"is_current,omitempty"` + IsCeased []int64 `json:"is_ceased,omitempty"` + IsDeprecated []int64 `json:"is_deprecated,omitempty"` + IsSuperseded []int64 `json:"is_superseded,omitempty"` + IsSuperseding []int64 `json:"is_superseding,omitempty"` + InceptionDate string `json:"inception_date,omitempty"` + CessationDate string `json:"cessation_date,omitempty"` + Properties []string `json:"properties,omitempty"` + Sort []string `json:"sort,omitempty"` +} + +func RunOptionsFromFlagSet(ctx context.Context, fs *flag.FlagSet) (*RunOptions, error) { + + flagset.Parse(fs) + + err := flagset.SetFlagsFromEnvVars(fs, "WHOSONFIRST") + + if err != nil { + return nil, err + } + + iterator_sources := fs.Args() + + opts := &RunOptions{ + Mode: mode, + Verbose: verbose, + Sources: iterator_sources, + SpatialDatabaseURI: spatial_database_uri, + PropertiesReaderURI: properties_reader_uri, + IteratorURI: iterator_uri, + EnableCustomPlacetypes: enable_custom_placetypes, + CustomPlacetypes: custom_placetypes, + IsWhosOnFirst: is_wof, + // PIPRequest flags + Latitude: latitude, + Longitude: longitude, + Placetypes: placetypes, + Geometries: geometries, + AlternateGeometries: alt_geoms, + IsCurrent: is_current, + IsCeased: is_ceased, + IsDeprecated: is_deprecated, + IsSuperseded: is_superseded, + IsSuperseding: is_superseding, + InceptionDate: inception, + CessationDate: cessation, + Properties: props, + Sort: sort_uris, + } + + return opts, nil +} diff --git a/app/pip/app.go b/app/pip/pip.go similarity index 57% rename from app/pip/app.go rename to app/pip/pip.go index e28fac1..d32091e 100644 --- a/app/pip/app.go +++ b/app/pip/pip.go @@ -8,19 +8,11 @@ import ( "log" "github.com/aws/aws-lambda-go/lambda" - "github.com/sfomuseum/go-flags/flagset" - "github.com/sfomuseum/go-flags/lookup" "github.com/whosonfirst/go-whosonfirst-spatial" - app "github.com/whosonfirst/go-whosonfirst-spatial/app/spatial" - spatial_flags "github.com/whosonfirst/go-whosonfirst-spatial/flags" + app "github.com/whosonfirst/go-whosonfirst-spatial/application" "github.com/whosonfirst/go-whosonfirst-spatial/pip" ) -type RunOptions struct { - Logger *log.Logger - FlagSet *flag.FlagSet -} - func Run(ctx context.Context, logger *log.Logger) error { fs, err := DefaultFlagSet(ctx) @@ -34,61 +26,40 @@ func Run(ctx context.Context, logger *log.Logger) error { func RunWithFlagSet(ctx context.Context, fs *flag.FlagSet, logger *log.Logger) error { - opts := &RunOptions{ - Logger: logger, - FlagSet: fs, - } - - return RunWithOptions(ctx, opts) -} - -func RunWithOptions(ctx context.Context, opts *RunOptions) error { - - fs := opts.FlagSet - logger := opts.Logger - - flagset.Parse(fs) - - err := flagset.SetFlagsFromEnvVars(fs, "WHOSONFIRST") + opts, err := RunOptionsFromFlagSet(ctx, fs) if err != nil { - return err + return fmt.Errorf("Failed to derive options from flagset, %w", err) } - err = spatial_flags.ValidateCommonFlags(fs) - - if err != nil { - return err - } - - err = spatial_flags.ValidateQueryFlags(fs) + return RunWithOptions(ctx, opts, logger) +} - if err != nil { - return err - } +func RunWithOptions(ctx context.Context, opts *RunOptions, logger *log.Logger) error { - err = spatial_flags.ValidateIndexingFlags(fs) + ctx, cancel := context.WithCancel(ctx) + defer cancel() - if err != nil { - return err + spatial_opts := &app.SpatialApplicationOptions{ + SpatialDatabaseURI: opts.SpatialDatabaseURI, + PropertiesReaderURI: opts.PropertiesReaderURI, + IteratorURI: opts.IteratorURI, + EnableCustomPlacetypes: opts.EnableCustomPlacetypes, + CustomPlacetypes: opts.CustomPlacetypes, + IsWhosOnFirst: opts.IsWhosOnFirst, } - spatial_app, err := app.NewSpatialApplicationWithFlagSet(ctx, fs) + spatial_app, err := app.NewSpatialApplication(ctx, spatial_opts) if err != nil { - return fmt.Errorf("Failed to create new spatial application, %v", err) + return fmt.Errorf("Failed to create new spatial application, %w", err) } - ctx, cancel := context.WithCancel(ctx) - defer cancel() - - uris := fs.Args() - done_ch := make(chan bool) go func() { - err := spatial_app.Iterator.IterateURIs(ctx, uris...) + err := spatial_app.Iterator.IterateURIs(ctx, opts.Sources...) if err != nil { logger.Printf("Failed to iterate URIs, %v", err) @@ -101,18 +72,25 @@ func RunWithOptions(ctx context.Context, opts *RunOptions) error { case "cli": - props, err := lookup.MultiStringVar(fs, spatial_flags.PROPERTIES) - - if err != nil { - return err - } + props := opts.Properties <-done_ch - req, err := pip.NewPointInPolygonRequestFromFlagSet(fs) - - if err != nil { - return fmt.Errorf("Failed to create SPR filter, %v", err) + req := &pip.PointInPolygonRequest{ + Latitude: opts.Latitude, + Longitude: opts.Longitude, + Placetypes: opts.Placetypes, + Geometries: opts.Geometries, + AlternateGeometries: opts.AlternateGeometries, + IsCurrent: opts.IsCurrent, + IsCeased: opts.IsCeased, + IsDeprecated: opts.IsDeprecated, + IsSuperseded: opts.IsSuperseded, + IsSuperseding: opts.IsSuperseding, + InceptionDate: opts.InceptionDate, + CessationDate: opts.CessationDate, + Properties: opts.Properties, + Sort: opts.Sort, } var rsp interface{} diff --git a/app/spatial/iterator.go b/app/spatial/iterator.go deleted file mode 100644 index a92afbe..0000000 --- a/app/spatial/iterator.go +++ /dev/null @@ -1,76 +0,0 @@ -package spatial - -import ( - "context" - "flag" - "fmt" - "io" - "log/slog" - - "github.com/sfomuseum/go-flags/lookup" - "github.com/whosonfirst/go-whosonfirst-feature/geometry" - "github.com/whosonfirst/go-whosonfirst-iterate/v2/iterator" - "github.com/whosonfirst/go-whosonfirst-spatial/database" - "github.com/whosonfirst/go-whosonfirst-spatial/flags" - "github.com/whosonfirst/warning" -) - -func NewIteratorWithFlagSet(ctx context.Context, fl *flag.FlagSet, spatial_db database.SpatialDatabase) (*iterator.Iterator, error) { - - emitter_uri, _ := lookup.StringVar(fl, flags.ITERATOR_URI) - is_wof, _ := lookup.BoolVar(fl, flags.IS_WOF) - - emitter_cb := func(ctx context.Context, path string, fh io.ReadSeeker, args ...interface{}) error { - - body, err := io.ReadAll(fh) - - if err != nil { - return fmt.Errorf("Failed to read '%s', %w", path, err) - } - - if is_wof { - - if err != nil { - - // it's still not clear (to me) what the expected or desired - // behaviour is / in this instance we might be issuing a warning - // from the geojson-v2 package because a feature might have a - // placetype defined outside of "core" (in the go-whosonfirst-placetypes) - // package but that shouldn't necessarily trigger a fatal error - // (20180405/thisisaaronland) - - if !warning.IsWarning(err) { - return err - } - - slog.Warn("Feature triggered the following warning", "path", path, "error", err) - } - } - - geom_type, err := geometry.Type(body) - - if err != nil { - return fmt.Errorf("Failed to derive geometry type for %s, %w", path, err) - } - - if geom_type == "Point" { - return nil - } - - err = spatial_db.IndexFeature(ctx, body) - - if err != nil { - - // something something something wrapping errors in Go 1.13 - // something something something waiting to see if the GOPROXY is - // disabled by default in Go > 1.13 (20190919/thisisaaronland) - - return fmt.Errorf("Failed to index %s %d", path, err) - } - - return nil - } - - iter, err := iterator.NewIterator(ctx, emitter_uri, emitter_cb) - return iter, err -} diff --git a/app/spatial/placetypes.go b/app/spatial/placetypes.go deleted file mode 100644 index 86bfea3..0000000 --- a/app/spatial/placetypes.go +++ /dev/null @@ -1,48 +0,0 @@ -package spatial - -import ( - "context" - "flag" - "io" - "strings" - - "github.com/sfomuseum/go-flags/lookup" - "github.com/whosonfirst/go-whosonfirst-placetypes" - "github.com/whosonfirst/go-whosonfirst-spatial/flags" -) - -// AppendCustomPlacetypesWithFlagSet will append custom placetypes defined in 'fs' to the -// in-memory go-whosonfirst-placetypes specification. -func AppendCustomPlacetypesWithFlagSet(ctx context.Context, fs *flag.FlagSet) error { - - enable_custom_placetypes, _ := lookup.BoolVar(fs, flags.ENABLE_CUSTOM_PLACETYPES) - - // Alternate sources for custom placetypes are not supported yet - once they - // are the corresponding flag in the flags/common.go package should be reenabled - // (20210324/thisisaaronland) - // custom_placetypes_source, _ := lookup.StringVar(fs, flags.CUSTOM_PLACETYPES_SOURCE) - - custom_placetypes_source := "" - - custom_placetypes, _ := lookup.StringVar(fs, flags.CUSTOM_PLACETYPES) - - if !enable_custom_placetypes { - return nil - } - - var custom_reader io.Reader - - if custom_placetypes_source == "" { - custom_reader = strings.NewReader(custom_placetypes) - } else { - // whosonfirst/go-reader or ... ? - } - - spec, err := placetypes.NewWOFPlacetypeSpecificationWithReader(custom_reader) - - if err != nil { - return err - } - - return placetypes.AppendPlacetypeSpecification(spec) -} diff --git a/app/spatial/spatial.go b/app/spatial/spatial.go deleted file mode 100644 index bf71afe..0000000 --- a/app/spatial/spatial.go +++ /dev/null @@ -1,197 +0,0 @@ -package spatial - -import ( - "bufio" - "context" - "encoding/json" - "flag" - "fmt" - "io" - "log/slog" - "os" - "runtime/debug" - "sync" - "time" - - "github.com/sfomuseum/go-flags/lookup" - "github.com/sfomuseum/go-timings" - "github.com/whosonfirst/go-reader" - "github.com/whosonfirst/go-whosonfirst-iterate/v2/iterator" - "github.com/whosonfirst/go-whosonfirst-spatial/database" - "github.com/whosonfirst/go-whosonfirst-spatial/flags" -) - -type SpatialApplication struct { - mode string - SpatialDatabase database.SpatialDatabase - PropertiesReader reader.Reader - Iterator *iterator.Iterator - Timings []*timings.SinceResponse - Monitor timings.Monitor - mu *sync.RWMutex -} - -func NewSpatialApplicationWithFlagSet(ctx context.Context, fl *flag.FlagSet) (*SpatialApplication, error) { - - spatial_db_uri, err := lookup.StringVar(fl, flags.SPATIAL_DATABASE_URI) - - if err != nil { - return nil, fmt.Errorf("Failed look up '%s' flag, %w", flags.SPATIAL_DATABASE_URI, err) - } - - spatial_db, err := database.NewSpatialDatabase(ctx, spatial_db_uri) - - if err != nil { - return nil, fmt.Errorf("Failed instantiate spatial database, %v", err) - } - - // Set up properties reader - - var properties_reader reader.Reader - - properties_reader_uri, _ := lookup.StringVar(fl, flags.PROPERTIES_READER_URI) - - if properties_reader_uri != "" { - - use_spatial_uri := fmt.Sprintf("{%s}", flags.SPATIAL_DATABASE_URI) - - if properties_reader_uri == use_spatial_uri { - - spatial_database_uri, err := lookup.StringVar(fl, flags.SPATIAL_DATABASE_URI) - - if err != nil { - return nil, fmt.Errorf("Failed to retrieve %s flag", flags.SPATIAL_DATABASE_URI) - } - - properties_reader_uri = spatial_database_uri - } - - r, err := reader.NewReader(ctx, properties_reader_uri) - - if err != nil { - return nil, fmt.Errorf("Failed to create properties reader, %v", err) - } - - properties_reader = r - } - - if properties_reader == nil { - properties_reader = spatial_db - } - - // Set up iterator (to index records at start up if necessary) - - iter, err := NewIteratorWithFlagSet(ctx, fl, spatial_db) - - if err != nil { - return nil, fmt.Errorf("Failed to instantiate iterator, %v", err) - } - - // Enable custom placetypes - - err = AppendCustomPlacetypesWithFlagSet(ctx, fl) - - if err != nil { - return nil, fmt.Errorf("Failed to append custom placetypes, %v", err) - } - - // Set up monitor (for tracking indexing) - - m, err := timings.NewMonitor(ctx, "since://") - - if err != nil { - return nil, fmt.Errorf("Failed to create timings monitor, %w", err) - } - - app_timings := make([]*timings.SinceResponse, 0) - - r, wr := io.Pipe() - - scanner := bufio.NewScanner(r) - - err = m.Start(ctx, wr) - - if err != nil { - return nil, fmt.Errorf("Failed to start timings monitor, %w", err) - } - - mu := new(sync.RWMutex) - - sp := SpatialApplication{ - SpatialDatabase: spatial_db, - PropertiesReader: properties_reader, - Iterator: iter, - Timings: app_timings, - Monitor: m, - mu: mu, - } - - go func() { - - for scanner.Scan() { - - go func(body []byte) { - - var tr *timings.SinceResponse - err := json.Unmarshal(body, &tr) - - if err != nil { - slog.Warn("Failed to decoder since response", "error", err) - return - } - - sp.mu.Lock() - sp.Timings = append(sp.Timings, tr) - sp.mu.Unlock() - - }(scanner.Bytes()) - } - }() - - return &sp, nil -} - -func (p *SpatialApplication) Close(ctx context.Context) error { - p.SpatialDatabase.Disconnect(ctx) - p.Monitor.Stop(ctx) - return nil -} - -func (p *SpatialApplication) IndexPaths(ctx context.Context, paths ...string) error { - - go func() { - - // TO DO: put this somewhere so that it can be triggered by signal(s) - // to reindex everything in bulk or incrementally - - t1 := time.Now() - - err := p.Iterator.IterateURIs(ctx, paths...) - - if err != nil { - slog.Error("failed to index paths", "error", err) - os.Exit(1) - } - - slog.Info("finished indexing", "time", time.Since(t1)) - debug.FreeOSMemory() - }() - - // set up some basic monitoring and feedback stuff - - go func() { - - c := time.Tick(1 * time.Second) - - for _ = range c { - - if !p.Iterator.IsIndexing() { - continue - } - - slog.Info("indexing records", "indexed", p.Iterator.Seen) - } - }() - - return nil -} diff --git a/application/application.go b/application/application.go new file mode 100644 index 0000000..19929a2 --- /dev/null +++ b/application/application.go @@ -0,0 +1,296 @@ +package application + +import ( + "bufio" + "context" + "encoding/json" + "fmt" + "io" + "log/slog" + "os" + "runtime/debug" + "strings" + "sync" + "time" + + "github.com/sfomuseum/go-timings" + "github.com/whosonfirst/go-reader" + "github.com/whosonfirst/go-whosonfirst-feature/geometry" + "github.com/whosonfirst/go-whosonfirst-iterate/v2/iterator" + "github.com/whosonfirst/go-whosonfirst-placetypes" + "github.com/whosonfirst/go-whosonfirst-spatial/database" + "github.com/whosonfirst/warning" +) + +// SpatialApplication a bunch of different operations related to indexing and querying spatial +// data in to a single "container" struct with pointers to underlying instances (like a SpatialDatabase) +// as well as a handful of methods for automating common operations (like indexing records). To be +// honest, I am kind of ambivalent about this but it is handy for creating spatial "applications" +// (like point-in-polygon operations) when the underlying spatial database is an in-memory RTree and +// everything needs to be indexed before the operation in question can occur. When you create a new +// SpatialApplication instance (by calling `NewSpatialApplication`) here's what happens: +// - A new `database.SpatialDatabase` instance is created and made available as a public 'SpatialDatabase' property . +// - A new `reader.Reader` instance is created and made available a public 'PropertiesReader' property. This reader +// is intended for use by methods like `PropertiesResponseResultsWithStandardPlacesResults` which is what appends +// custom properties to SPR responses (for example, in a point-in-polygon result set). +// - A new `iterator.Iterator` instance is created with a default callback to index records in `SpatialDatabase' and +// made available as a public 'Iterator' property. +// - If custom placetypes are defined these will be loaded an appended to the default `whosonfirst/go-whosonfirst-placetype` +// specification. This can be useful if you are working with non-standard Who's On First style records that define +// their own placetypes. +type SpatialApplication struct { + SpatialDatabase database.SpatialDatabase + PropertiesReader reader.Reader + Iterator *iterator.Iterator + Timings []*timings.SinceResponse + Monitor timings.Monitor + mu *sync.RWMutex +} + +// SpatialApplicationOptions defines properties used to instantiate a new `SpatialApplication` instance. +type SpatialApplicationOptions struct { + // A valid `whosonfirst/go-whosonfirst-spatial/database` URI. + SpatialDatabaseURI string + // A valid `whosonfirst/go-reader` URI. + PropertiesReaderURI string + // A valid `whosonfirst/go-whosonfirst-iterator/v2` URI. + IteratorURI string + // IsWhosOnFirst signals that input files (to index) are assumed to be valid Who's On First records + // and not arbitrary GeoJSON + IsWhosOnFirst bool + // EnableCustomPlacetypes signals that custom placetypes should be appended to the default placetype specification. + EnableCustomPlacetypes bool + // A JSON-encoded `whosonfirst/go-whosonfirst-placetypes.WOFPlacetypeSpecification` definition with custom placetypes. + CustomPlacetypes string +} + +// NewSpatialApplication returns a new `SpatialApplication` instance. +func NewSpatialApplication(ctx context.Context, opts *SpatialApplicationOptions) (*SpatialApplication, error) { + + spatial_db, err := database.NewSpatialDatabase(ctx, opts.SpatialDatabaseURI) + + if err != nil { + return nil, fmt.Errorf("Failed instantiate spatial database, %v", err) + } + + // Set up properties reader + + var properties_reader reader.Reader + + if opts.PropertiesReaderURI != "" { + + use_spatial_uri := "{spatial-database-uri}" + + if opts.PropertiesReaderURI == use_spatial_uri { + opts.PropertiesReaderURI = opts.SpatialDatabaseURI + } + + r, err := reader.NewReader(ctx, opts.PropertiesReaderURI) + + if err != nil { + return nil, fmt.Errorf("Failed to create properties reader, %v", err) + } + + properties_reader = r + } + + if properties_reader == nil { + properties_reader = spatial_db + } + + // Set up iterator (to index records at start up if necessary) + + iter_cb := func(ctx context.Context, path string, r io.ReadSeeker, args ...interface{}) error { + + body, err := io.ReadAll(r) + + if err != nil { + return fmt.Errorf("Failed to read '%s', %w", path, err) + } + + if opts.IsWhosOnFirst { + + if err != nil { + + // it's still not clear (to me) what the expected or desired + // behaviour is / in this instance we might be issuing a warning + // from the geojson-v2 package because a feature might have a + // placetype defined outside of "core" (in the go-whosonfirst-placetypes) + // package but that shouldn't necessarily trigger a fatal error + // (20180405/thisisaaronland) + + if !warning.IsWarning(err) { + return err + } + + slog.Warn("Feature triggered the following warning", "path", path, "error", err) + } + } + + geom_type, err := geometry.Type(body) + + if err != nil { + return fmt.Errorf("Failed to derive geometry type for %s, %w", path, err) + } + + if geom_type == "Point" { + return nil + } + + err = spatial_db.IndexFeature(ctx, body) + + if err != nil { + + // something something something wrapping errors in Go 1.13 + // something something something waiting to see if the GOPROXY is + // disabled by default in Go > 1.13 (20190919/thisisaaronland) + + return fmt.Errorf("Failed to index %s %d", path, err) + } + + return nil + } + + iter, err := iterator.NewIterator(ctx, opts.IteratorURI, iter_cb) + + if err != nil { + return nil, fmt.Errorf("Failed to create iterator, %w", err) + } + + // Enable custom placetypes + + if opts.EnableCustomPlacetypes { + + custom_placetypes := opts.CustomPlacetypes + + // Alternate sources for custom placetypes are not supported yet - once they + // are the corresponding flag in the flags/common.go package should be reenabled + // (20210324/thisisaaronland) + + custom_placetypes_source := "" + + var custom_reader io.Reader + + if custom_placetypes_source == "" { + custom_reader = strings.NewReader(custom_placetypes) + } else { + // whosonfirst/go-reader or ... ? + } + + spec, err := placetypes.NewWOFPlacetypeSpecificationWithReader(custom_reader) + + if err != nil { + return nil, fmt.Errorf("Failed to create place specification with reader, %w", err) + } + + err = placetypes.AppendPlacetypeSpecification(spec) + + if err != nil { + return nil, fmt.Errorf("Failed to append placetypes specification, %w", err) + } + } + + // START OF set up monitor (for tracking indexing) + + m, err := timings.NewMonitor(ctx, "since://") + + if err != nil { + return nil, fmt.Errorf("Failed to create timings monitor, %w", err) + } + + app_timings := make([]*timings.SinceResponse, 0) + + r, wr := io.Pipe() + + scanner := bufio.NewScanner(r) + + err = m.Start(ctx, wr) + + if err != nil { + return nil, fmt.Errorf("Failed to start timings monitor, %w", err) + } + + // END OF set up monitor (for tracking indexing) + + mu := new(sync.RWMutex) + + sp := SpatialApplication{ + SpatialDatabase: spatial_db, + PropertiesReader: properties_reader, + Iterator: iter, + Timings: app_timings, + Monitor: m, + mu: mu, + } + + go func() { + + for scanner.Scan() { + + go func(body []byte) { + + var tr *timings.SinceResponse + err := json.Unmarshal(body, &tr) + + if err != nil { + slog.Warn("Failed to decoder since response", "error", err) + return + } + + sp.mu.Lock() + sp.Timings = append(sp.Timings, tr) + sp.mu.Unlock() + + }(scanner.Bytes()) + } + }() + + return &sp, nil +} + +// Close() will terminate an spatial database connections and stop any internal timing monitors. +func (p *SpatialApplication) Close(ctx context.Context) error { + p.SpatialDatabase.Disconnect(ctx) + p.Monitor.Stop(ctx) + return nil +} + +// IndexPaths() will index 'paths' using p's `Iterator` instance storing each document in p's `SpatialDatabase` instance. +func (p *SpatialApplication) IndexPaths(ctx context.Context, paths ...string) error { + + go func() { + + // TO DO: put this somewhere so that it can be triggered by signal(s) + // to reindex everything in bulk or incrementally + + t1 := time.Now() + + err := p.Iterator.IterateURIs(ctx, paths...) + + if err != nil { + slog.Error("failed to index paths", "error", err) + os.Exit(1) + } + + slog.Info("finished indexing", "time", time.Since(t1)) + debug.FreeOSMemory() + }() + + // set up some basic monitoring and feedback stuff + + go func() { + + c := time.Tick(1 * time.Second) + + for _ = range c { + + if !p.Iterator.IsIndexing() { + continue + } + + slog.Info("indexing records", "indexed", p.Iterator.Seen) + } + }() + + return nil +} diff --git a/cmd/pip/main.go b/cmd/pip/main.go new file mode 100644 index 0000000..5eaf960 --- /dev/null +++ b/cmd/pip/main.go @@ -0,0 +1,20 @@ +package main + +import ( + "context" + "log" + + "github.com/whosonfirst/go-whosonfirst-spatial/app/pip" +) + +func main() { + + ctx := context.Background() + logger := log.Default() + + err := pip.Run(ctx, logger) + + if err != nil { + logger.Fatal(err) + } +} diff --git a/database/database.go b/database/database.go index 892b102..8e1422e 100644 --- a/database/database.go +++ b/database/database.go @@ -13,6 +13,9 @@ import ( "github.com/whosonfirst/go-writer/v3" ) +// SpatialDatabase is an interface for databases of Who's On First records. It defines no methods +// of its own but wrap three other interfaces: `whosonfirst/go-reader.Reader`, `whosonfirst/go-writer.Writer` +// and `whosonfirst/go-whosonfirst-spatial.SpatialIndex`.` type SpatialDatabase interface { reader.Reader writer.Writer diff --git a/database/rtree.go b/database/rtree.go new file mode 100644 index 0000000..02cee5c --- /dev/null +++ b/database/rtree.go @@ -0,0 +1,672 @@ +package database + +import ( + "bytes" + "context" + "encoding/json" + "fmt" + "io" + "log" + "log/slog" + "net/url" + "strconv" + "strings" + "sync" + "time" + + "github.com/dhconnelly/rtreego" + gocache "github.com/patrickmn/go-cache" + "github.com/paulmach/orb" + "github.com/paulmach/orb/geojson" + "github.com/paulmach/orb/planar" + "github.com/whosonfirst/go-ioutil" + "github.com/whosonfirst/go-whosonfirst-feature/alt" + "github.com/whosonfirst/go-whosonfirst-feature/geometry" + "github.com/whosonfirst/go-whosonfirst-feature/properties" + "github.com/whosonfirst/go-whosonfirst-spatial" + "github.com/whosonfirst/go-whosonfirst-spatial/filter" + "github.com/whosonfirst/go-whosonfirst-spr/v2" + "github.com/whosonfirst/go-whosonfirst-uri" +) + +func init() { + ctx := context.Background() + RegisterSpatialDatabase(ctx, "rtree", NewRTreeSpatialDatabase) +} + +type RTreeCache struct { + Geometry *geojson.Geometry `json:"geometry"` + SPR spr.StandardPlacesResult `json:"properties"` +} + +// PLEASE DISCUSS WHY patrickm/go-cache AND NOT whosonfirst/go-cache HERE + +type RTreeSpatialDatabase struct { + SpatialDatabase + index_alt_files bool + rtree *rtreego.Rtree + gocache *gocache.Cache + mu *sync.RWMutex + strict bool +} + +type RTreeSpatialIndex struct { + Rect *rtreego.Rect + Id string + FeatureId string + IsAlt bool + AltLabel string +} + +func (i *RTreeSpatialIndex) Bounds() rtreego.Rect { + return *i.Rect +} + +type RTreeResults struct { + spr.StandardPlacesResults `json:",omitempty"` + Places []spr.StandardPlacesResult `json:"places"` +} + +func (r *RTreeResults) Results() []spr.StandardPlacesResult { + return r.Places +} + +func NewRTreeSpatialDatabase(ctx context.Context, uri string) (SpatialDatabase, error) { + + u, err := url.Parse(uri) + + if err != nil { + return nil, err + } + + q := u.Query() + + strict := true + + if q.Get("strict") == "false" { + strict = false + } + + expires := 0 * time.Second + cleanup := 0 * time.Second + + str_exp := q.Get("default_expiration") + str_cleanup := q.Get("cleanup_interval") + + if str_exp != "" { + + int_expires, err := strconv.Atoi(str_exp) + + if err != nil { + return nil, err + } + + expires = time.Duration(int_expires) * time.Second + } + + if str_cleanup != "" { + + int_cleanup, err := strconv.Atoi(str_cleanup) + + if err != nil { + return nil, err + } + + cleanup = time.Duration(int_cleanup) * time.Second + } + + index_alt_files := false + + str_index_alt := q.Get("index_alt_files") + + if str_index_alt != "" { + + index_alt, err := strconv.ParseBool(str_index_alt) + + if err != nil { + return nil, err + } + + index_alt_files = index_alt + } + + gc := gocache.New(expires, cleanup) + + rtree := rtreego.NewTree(2, 25, 50) + + mu := new(sync.RWMutex) + + db := &RTreeSpatialDatabase{ + rtree: rtree, + index_alt_files: index_alt_files, + gocache: gc, + strict: strict, + mu: mu, + } + + return db, nil +} + +func (r *RTreeSpatialDatabase) Disconnect(ctx context.Context) error { + return nil +} + +func (r *RTreeSpatialDatabase) IndexFeature(ctx context.Context, body []byte) error { + + is_alt := alt.IsAlt(body) + alt_label, _ := properties.AltLabel(body) + + if is_alt && !r.index_alt_files { + return nil + } + + if is_alt && alt_label == "" { + return fmt.Errorf("Invalid alt label") + } + + err := r.setCache(ctx, body) + + if err != nil { + return fmt.Errorf("Failed to cache feature, %w", err) + } + + feature_id, err := properties.Id(body) + + if err != nil { + return fmt.Errorf("Failed to derive ID, %w", err) + } + + str_id := strconv.FormatInt(feature_id, 10) + + // START OF put me in go-whosonfirst-feature/geometry + + geojson_geom, err := geometry.Geometry(body) + + if err != nil { + return fmt.Errorf("Failed to derive geometry, %w", err) + } + + orb_geom := geojson_geom.Geometry() + + bounds := make([]orb.Bound, 0) + + switch orb_geom.GeoJSONType() { + + case "MultiPolygon": + + for _, poly := range orb_geom.(orb.MultiPolygon) { + + for _, ring := range poly { + bounds = append(bounds, ring.Bound()) + } + } + + case "Polygon": + + for _, ring := range orb_geom.(orb.Polygon) { + bounds = append(bounds, ring.Bound()) + } + default: + bounds = append(bounds, orb_geom.Bound()) + } + + // END OF put me in go-whosonfirst-feature/geometry + + for i, bbox := range bounds { + + sp_id, err := spatial.SpatialIdWithFeature(body, i) + + if err != nil { + return fmt.Errorf("Failed to derive spatial ID, %v", err) + } + + min := bbox.Min + max := bbox.Max + + min_x := min[0] + min_y := min[1] + + max_x := max[0] + max_y := max[1] + + llat := max_y - min_y + llon := max_x - min_x + + pt := rtreego.Point{min_x, min_y} + rect, err := rtreego.NewRect(pt, []float64{llon, llat}) + + if err != nil { + + if r.strict { + return fmt.Errorf("Failed to derive rtree bounds, %w", err) + } + + slog.Error("Failed to index feature", "id", sp_id, "error", err) + return nil + } + + sp := &RTreeSpatialIndex{ + Rect: &rect, + Id: sp_id, + FeatureId: str_id, + IsAlt: is_alt, + AltLabel: alt_label, + } + + r.mu.Lock() + r.rtree.Insert(sp) + + r.mu.Unlock() + } + + return nil +} + +/* + +TO DO: figure out suitable comparitor + +/ DeleteWithComparator removes an object from the tree using a custom +// comparator for evaluating equalness. This is useful when you want to remove +// an object from a tree but don't have a pointer to the original object +// anymore. +func (tree *Rtree) DeleteWithComparator(obj Spatial, cmp Comparator) bool { + n := tree.findLeaf(tree.root, obj, cmp) + +// Comparator compares two spatials and returns whether they are equal. +type Comparator func(obj1, obj2 Spatial) (equal bool) + +func defaultComparator(obj1, obj2 Spatial) bool { + return obj1 == obj2 +} + +*/ + +func (r *RTreeSpatialDatabase) RemoveFeature(ctx context.Context, id string) error { + + obj := &RTreeSpatialIndex{ + Rect: nil, + Id: id, + } + + comparator := func(obj1, obj2 rtreego.Spatial) bool { + + // 2021/10/12 11:17:11 COMPARE 1: '101737491#:0' 2: '101737491' + // log.Printf("COMPARE 1: '%v' 2: '%v'\n", obj1.(*RTreeSpatialIndex).Id, obj2.(*RTreeSpatialIndex).Id) + + obj1_id := obj1.(*RTreeSpatialIndex).Id + obj2_id := obj2.(*RTreeSpatialIndex).Id + + return strings.HasPrefix(obj1_id, obj2_id) + } + + ok := r.rtree.DeleteWithComparator(obj, comparator) + + if !ok { + return fmt.Errorf("Failed to remove %s from rtree", id) + } + + return nil +} + +func (r *RTreeSpatialDatabase) PointInPolygon(ctx context.Context, coord *orb.Point, filters ...spatial.Filter) (spr.StandardPlacesResults, error) { + + ctx, cancel := context.WithCancel(ctx) + defer cancel() + + rsp_ch := make(chan spr.StandardPlacesResult) + err_ch := make(chan error) + done_ch := make(chan bool) + + results := make([]spr.StandardPlacesResult, 0) + working := true + + go r.PointInPolygonWithChannels(ctx, rsp_ch, err_ch, done_ch, coord, filters...) + + for { + select { + case <-ctx.Done(): + return nil, nil + case <-done_ch: + working = false + case rsp := <-rsp_ch: + results = append(results, rsp) + case err := <-err_ch: + return nil, err + } + + if !working { + break + } + } + + spr_results := &RTreeResults{ + Places: results, + } + + return spr_results, nil +} + +func (r *RTreeSpatialDatabase) PointInPolygonWithChannels(ctx context.Context, rsp_ch chan spr.StandardPlacesResult, err_ch chan error, done_ch chan bool, coord *orb.Point, filters ...spatial.Filter) { + + defer func() { + done_ch <- true + }() + + rows, err := r.getIntersectsByCoord(coord) + + if err != nil { + err_ch <- err + return + } + + r.inflateResultsWithChannels(ctx, rsp_ch, err_ch, rows, coord, filters...) + return +} + +func (r *RTreeSpatialDatabase) PointInPolygonCandidates(ctx context.Context, coord *orb.Point, filters ...spatial.Filter) ([]*spatial.PointInPolygonCandidate, error) { + + ctx, cancel := context.WithCancel(ctx) + defer cancel() + + rsp_ch := make(chan *spatial.PointInPolygonCandidate) + err_ch := make(chan error) + done_ch := make(chan bool) + + candidates := make([]*spatial.PointInPolygonCandidate, 0) + working := true + + go r.PointInPolygonCandidatesWithChannels(ctx, rsp_ch, err_ch, done_ch, coord, filters...) + + for { + select { + case <-ctx.Done(): + return nil, nil + case <-done_ch: + working = false + case rsp := <-rsp_ch: + candidates = append(candidates, rsp) + case err := <-err_ch: + return nil, err + } + + if !working { + break + } + } + + return candidates, nil +} + +func (r *RTreeSpatialDatabase) PointInPolygonCandidatesWithChannels(ctx context.Context, rsp_ch chan *spatial.PointInPolygonCandidate, err_ch chan error, done_ch chan bool, coord *orb.Point, filters ...spatial.Filter) { + + defer func() { + done_ch <- true + }() + + intersects, err := r.getIntersectsByCoord(coord) + + if err != nil { + err_ch <- err + return + } + + for _, raw := range intersects { + + sp := raw.(*RTreeSpatialIndex) + + // bounds := sp.Bounds() + + c := &spatial.PointInPolygonCandidate{ + Id: sp.Id, + FeatureId: sp.FeatureId, + AltLabel: sp.AltLabel, + // FIX ME + // Bounds: bounds, + } + + rsp_ch <- c + } + + return +} + +func (r *RTreeSpatialDatabase) getIntersectsByCoord(coord *orb.Point) ([]rtreego.Spatial, error) { + + lat := coord.Y() + lon := coord.X() + + pt := rtreego.Point{lon, lat} + rect, err := rtreego.NewRect(pt, []float64{0.0001, 0.0001}) // how small can I make this? + + if err != nil { + return nil, fmt.Errorf("Failed to derive rtree bounds, %w", err) + } + + return r.getIntersectsByRect(&rect) +} + +func (r *RTreeSpatialDatabase) getIntersectsByRect(rect *rtreego.Rect) ([]rtreego.Spatial, error) { + + results := r.rtree.SearchIntersect(*rect) + return results, nil +} + +func (r *RTreeSpatialDatabase) inflateResultsWithChannels(ctx context.Context, rsp_ch chan spr.StandardPlacesResult, err_ch chan error, possible []rtreego.Spatial, c *orb.Point, filters ...spatial.Filter) { + + seen := make(map[string]bool) + + mu := new(sync.RWMutex) + wg := new(sync.WaitGroup) + + for _, row := range possible { + + sp := row.(*RTreeSpatialIndex) + wg.Add(1) + + go func(sp *RTreeSpatialIndex) { + + sp_id := sp.Id + feature_id := sp.FeatureId + + defer wg.Done() + + select { + case <-ctx.Done(): + return + default: + // pass + } + + mu.RLock() + _, ok := seen[feature_id] + mu.RUnlock() + + if ok { + return + } + + mu.Lock() + seen[feature_id] = true + mu.Unlock() + + cache_item, err := r.retrieveCache(ctx, sp) + + if err != nil { + slog.Error("Failed to retrieve cache item", "id", sp_id, "error", err) + return + } + + s := cache_item.SPR + + for _, f := range filters { + + err = filter.FilterSPR(f, s) + + if err != nil { + return + } + } + + geom := cache_item.Geometry + + orb_geom := geom.Geometry() + geom_type := orb_geom.GeoJSONType() + + contains := false + + switch geom_type { + case "Polygon": + contains = planar.PolygonContains(orb_geom.(orb.Polygon), *c) + case "MultiPolygon": + contains = planar.MultiPolygonContains(orb_geom.(orb.MultiPolygon), *c) + default: + slog.Debug("Geometry has unsupported geometry", "type", geom.Type) + } + + if !contains { + return + } + + rsp_ch <- s + }(sp) + } + + wg.Wait() +} + +func (r *RTreeSpatialDatabase) setCache(ctx context.Context, body []byte) error { + + s, err := spr.WhosOnFirstSPR(body) + + if err != nil { + return err + } + + geom, err := geometry.Geometry(body) + + if err != nil { + return fmt.Errorf("Failed to derive geometry for feature, %w", err) + } + + alt_label, err := properties.AltLabel(body) + + if err != nil { + return fmt.Errorf("Failed to derive alt label, %w", err) + } + + feature_id, err := properties.Id(body) + + if err != nil { + return fmt.Errorf("Failed to derive feature ID, %w", err) + } + + cache_key := fmt.Sprintf("%d:%s", feature_id, alt_label) + + cache_item := &RTreeCache{ + Geometry: geom, + SPR: s, + } + + r.gocache.Set(cache_key, cache_item, -1) + return nil +} + +func (r *RTreeSpatialDatabase) retrieveCache(ctx context.Context, sp *RTreeSpatialIndex) (*RTreeCache, error) { + + cache_key := fmt.Sprintf("%s:%s", sp.FeatureId, sp.AltLabel) + + cache_item, ok := r.gocache.Get(cache_key) + + if !ok { + return nil, fmt.Errorf("Invalid cache ID '%s'", cache_key) + } + + return cache_item.(*RTreeCache), nil +} + +// whosonfirst/go-reader interface + +func (r *RTreeSpatialDatabase) Read(ctx context.Context, str_uri string) (io.ReadSeekCloser, error) { + + id, _, err := uri.ParseURI(str_uri) + + if err != nil { + return nil, fmt.Errorf("Failed to parse URI %s, %w", str_uri, err) + } + + // TO DO : ALT STUFF HERE + + str_id := strconv.FormatInt(id, 10) + + sp := &RTreeSpatialIndex{ + FeatureId: str_id, + AltLabel: "", + } + + cache_item, err := r.retrieveCache(ctx, sp) + + if err != nil { + return nil, fmt.Errorf("Failed to retrieve cache, %w", err) + } + + // START OF this is dumb + + enc_spr, err := json.Marshal(cache_item.SPR) + + if err != nil { + return nil, fmt.Errorf("Failed to marchal cache record, %w", err) + } + + var props map[string]interface{} + + err = json.Unmarshal(enc_spr, &props) + + if err != nil { + return nil, err + } + + // END OF this is dumb + + orb_geom := cache_item.Geometry.Geometry() + f := geojson.NewFeature(orb_geom) + + if err != nil { + return nil, err + } + + f.Properties = props + + enc_f, err := f.MarshalJSON() + + if err != nil { + return nil, err + } + + br := bytes.NewReader(enc_f) + return ioutil.NewReadSeekCloser(br) +} + +func (r *RTreeSpatialDatabase) ReaderURI(ctx context.Context, str_uri string) string { + return str_uri +} + +// whosonfirst/go-writer interface + +func (r *RTreeSpatialDatabase) Write(ctx context.Context, key string, fh io.ReadSeeker) (int64, error) { + return 0, fmt.Errorf("Not implemented") +} + +func (r *RTreeSpatialDatabase) WriterURI(ctx context.Context, str_uri string) string { + return str_uri +} + +func (r *RTreeSpatialDatabase) Flush(ctx context.Context) error { + return nil +} + +// Close defined above + +func (r *RTreeSpatialDatabase) SetLogger(ctx context.Context, logger *log.Logger) error { + return nil +} diff --git a/database/rtree_test.go b/database/rtree_test.go new file mode 100644 index 0000000..ab45ba6 --- /dev/null +++ b/database/rtree_test.go @@ -0,0 +1,310 @@ +package database + +import ( + "context" + "fmt" + "io" + "os" + "strconv" + "testing" + + "github.com/whosonfirst/go-whosonfirst-spatial/filter" + "github.com/whosonfirst/go-whosonfirst-spatial/fixtures" + "github.com/whosonfirst/go-whosonfirst-spatial/fixtures/microhoods" + "github.com/whosonfirst/go-whosonfirst-spatial/geo" +) + +type Criteria struct { + IsCurrent int64 + Latitude float64 + Longitude float64 +} + +func TestSpatialDatabase(t *testing.T) { + + ctx := context.Background() + + database_uri := "rtree://" + + tests := map[int64]Criteria{ + 1108712253: Criteria{Longitude: -71.120168, Latitude: 42.376015, IsCurrent: 1}, // Old Cambridge + 420561633: Criteria{Longitude: -122.395268, Latitude: 37.794893, IsCurrent: 0}, // Superbowl City + 420780729: Criteria{Longitude: -122.421529, Latitude: 37.743168, IsCurrent: -1}, // Liminal Zone of Deliciousness + } + + db, err := NewSpatialDatabase(ctx, database_uri) + + if err != nil { + t.Fatalf("Failed to create new spatial database, %v", err) + } + + err = IndexDatabaseWithIterator(ctx, db, "directory://", "fixtures/microhoods") + + if err != nil { + t.Fatalf("Failed to index spatial database, %v", err) + } + + for expected, criteria := range tests { + + c, err := geo.NewCoordinate(criteria.Longitude, criteria.Latitude) + + if err != nil { + t.Fatalf("Failed to create new coordinate, %v", err) + } + + i, err := filter.NewSPRInputs() + + if err != nil { + t.Fatalf("Failed to create SPR inputs, %v", err) + } + + i.IsCurrent = []int64{criteria.IsCurrent} + // i.Placetypes = []string{"microhood"} + + f, err := filter.NewSPRFilterFromInputs(i) + + if err != nil { + t.Fatalf("Failed to create SPR filter from inputs, %v", err) + } + + spr, err := db.PointInPolygon(ctx, c, f) + + if err != nil { + t.Fatalf("Failed to perform point in polygon query, %v", err) + } + + results := spr.Results() + count := len(results) + + if count != 1 { + t.Fatalf("Expected 1 result but got %d for '%d'", count, expected) + } + + first := results[0] + + if first.Id() != strconv.FormatInt(expected, 10) { + t.Fatalf("Expected %d but got %s", expected, first.Id()) + } + } +} + +// This is known to fail until we keep a local lookup table of all the bounding boxes associated +// with a feature is created. The way we're doing things in database.RemoveFeature using a comparator +// doesn't actually work... + +func TestSpatialDatabaseRemoveFeature(t *testing.T) { + + t.Skip() + + ctx := context.Background() + + database_uri := "rtree://" + + db, err := NewSpatialDatabase(ctx, database_uri) + + if err != nil { + t.Fatalf("Failed to create new spatial database, %v", err) + } + + defer db.Close(ctx) + + id := 101737491 + lat := 46.852675 + lon := -71.330873 + + test_data := fmt.Sprintf("fixtures/%d.geojson", id) + + fh, err := os.Open(test_data) + + if err != nil { + t.Fatalf("Failed to open %s, %v", test_data, err) + } + + defer fh.Close() + + body, err := io.ReadAll(fh) + + if err != nil { + t.Fatalf("Failed to read %s, %v", test_data, err) + } + + err = db.IndexFeature(ctx, body) + + if err != nil { + t.Fatalf("Failed to index %s, %v", test_data, err) + } + + c, err := geo.NewCoordinate(lon, lat) + + if err != nil { + t.Fatalf("Failed to create new coordinate, %v", err) + } + + spr, err := db.PointInPolygon(ctx, c) + + if err != nil { + t.Fatalf("Failed to perform point in polygon query, %v", err) + } + + results := spr.Results() + count := len(results) + + if count != 1 { + t.Fatalf("Expected 1 result but got %d", count) + } + + err = db.RemoveFeature(ctx, "101737491") + + if err != nil { + t.Fatalf("Failed to remove %s, %v", test_data, err) + } + + spr, err = db.PointInPolygon(ctx, c) + + if err != nil { + t.Fatalf("Failed to perform point in polygon query, %v", err) + } + + results = spr.Results() + count = len(results) + + if count != 0 { + t.Fatalf("Expected 0 results but got %d", count) + } +} + +func TestSpatialDatabaseWithFS(t *testing.T) { + + ctx := context.Background() + + database_uri := "rtree://?dsn=:memory:" + + tests := map[int64]Criteria{ + 1108712253: Criteria{Longitude: -71.120168, Latitude: 42.376015, IsCurrent: 1}, // Old Cambridge + 420561633: Criteria{Longitude: -122.395268, Latitude: 37.794893, IsCurrent: 0}, // Superbowl City + 420780729: Criteria{Longitude: -122.421529, Latitude: 37.743168, IsCurrent: -1}, // Liminal Zone of Deliciousness + } + + db, err := NewSpatialDatabase(ctx, database_uri) + + if err != nil { + t.Fatalf("Failed to create new spatial database, %v", err) + } + + err = IndexDatabaseWithFS(ctx, db, microhoods.FS) + + if err != nil { + t.Fatalf("Failed to index spatial database, %v", err) + } + + for expected, criteria := range tests { + + c, err := geo.NewCoordinate(criteria.Longitude, criteria.Latitude) + + if err != nil { + t.Fatalf("Failed to create new coordinate, %v", err) + } + + i, err := filter.NewSPRInputs() + + if err != nil { + t.Fatalf("Failed to create SPR inputs, %v", err) + } + + i.IsCurrent = []int64{criteria.IsCurrent} + // i.Placetypes = []string{"microhood"} + + f, err := filter.NewSPRFilterFromInputs(i) + + if err != nil { + t.Fatalf("Failed to create SPR filter from inputs, %v", err) + } + + spr, err := db.PointInPolygon(ctx, c, f) + + if err != nil { + t.Fatalf("Failed to perform point in polygon query, %v", err) + } + + results := spr.Results() + count := len(results) + + if count != 1 { + t.Fatalf("Expected 1 result but got %d for '%d'", count, expected) + } + + first := results[0] + + if first.Id() != strconv.FormatInt(expected, 10) { + t.Fatalf("Expected %d but got %s", expected, first.Id()) + } + } +} + +func TestSpatialDatabaseWithFeatureCollection(t *testing.T) { + + ctx := context.Background() + + database_uri := "rtree://?dsn=:memory:" + + tests := map[int64]Criteria{ + 1108712253: Criteria{Longitude: -71.120168, Latitude: 42.376015, IsCurrent: 1}, // Old Cambridge + 420561633: Criteria{Longitude: -122.395268, Latitude: 37.794893, IsCurrent: 0}, // Superbowl City + 420780729: Criteria{Longitude: -122.421529, Latitude: 37.743168, IsCurrent: -1}, // Liminal Zone of Deliciousness + } + + db, err := NewSpatialDatabase(ctx, database_uri) + + if err != nil { + t.Fatalf("Failed to create new spatial database, %v", err) + } + + err = IndexDatabaseWithFS(ctx, db, fixtures.FS) + + if err != nil { + t.Fatalf("Failed to index spatial database, %v", err) + } + + for expected, criteria := range tests { + + c, err := geo.NewCoordinate(criteria.Longitude, criteria.Latitude) + + if err != nil { + t.Fatalf("Failed to create new coordinate, %v", err) + } + + i, err := filter.NewSPRInputs() + + if err != nil { + t.Fatalf("Failed to create SPR inputs, %v", err) + } + + i.IsCurrent = []int64{criteria.IsCurrent} + // i.Placetypes = []string{"microhood"} + + f, err := filter.NewSPRFilterFromInputs(i) + + if err != nil { + t.Fatalf("Failed to create SPR filter from inputs, %v", err) + } + + spr, err := db.PointInPolygon(ctx, c, f) + + if err != nil { + t.Fatalf("Failed to perform point in polygon query, %v", err) + } + + results := spr.Results() + count := len(results) + + if count != 1 { + t.Fatalf("Expected 1 result but got %d for '%d'", count, expected) + } + + first := results[0] + + if first.Id() != strconv.FormatInt(expected, 10) { + t.Fatalf("Expected %d but got %s", expected, first.Id()) + } + } +} diff --git a/fixtures/fixtures.go b/fixtures/fixtures.go new file mode 100644 index 0000000..6e4ade2 --- /dev/null +++ b/fixtures/fixtures.go @@ -0,0 +1,8 @@ +package fixtures + +import ( + "embed" +) + +//go:embed *.geojson +var FS embed.FS diff --git a/fixtures/microhoods.geojson b/fixtures/microhoods.geojson new file mode 100644 index 0000000..97909b3 --- /dev/null +++ b/fixtures/microhoods.geojson @@ -0,0 +1,68152 @@ +{"type":"FeatureCollection", "features":[{ + "id": 1041500555, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":630467.116131, + "geom:bbox":"-118.387633398,34.0381786051,-118.376407525,34.04678", + "geom:latitude":34.042483, + "geom:longitude":-118.381804, + "iso:country":"US", + "lbl:latitude":34.020953, + "lbl:longitude":-118.325495, + "lbl:max_zoom":18.0, + "mps:latitude":34.042478, + "mps:longitude":-118.381812, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"old GNIS", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "La Cienega Heights" + ], + "reversegeo:latitude":34.042478, + "reversegeo:longitude":-118.381812, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865813, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"765a43c9bb4b4dfac1d167267b0c0b3f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041500555, + "neighbourhood_id":85865813, + "region_id":85688637 + } + ], + "wof:id":1041500555, + "wof:lastmodified":1566608535, + "wof:name":"Cienega", + "wof:parent_id":85865813, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85811025 + ], + "wof:tags":[] +}, + "bbox": [ + -118.3876333978847, + 34.03817860506778, + -118.37640752482, + 34.04678 +], + "geometry": {"coordinates":[[[-118.38607,34.04678],[-118.3856,34.046636],[-118.385107,34.046454],[-118.38410500000001,34.046084],[-118.383109,34.045716],[-118.38207,34.04552],[-118.38103099999999,34.045324],[-118.379992,34.045129],[-118.379024,34.044947],[-118.37803,34.04476],[-118.37683245114802,34.0445345325035],[-118.37683385357573,34.04450159896736],[-118.37683369277731,34.04446587701559],[-118.37683352928393,34.04442946801612],[-118.3768351085222,34.04441366254256],[-118.37683332356973,34.04438378517265],[-118.37683151076948,34.04434772523715],[-118.37682969707092,34.04431166454202],[-118.37682623586214,34.04427595293114],[-118.37682277375501,34.04424024204952],[-118.37681766144273,34.04420453561899],[-118.37681254913045,34.04416882917335],[-118.37680578661301,34.04413312792323],[-118.37679902409553,34.04409742665802],[-118.3767922624764,34.04406206777908],[-118.37678385244872,34.04402705873025],[-118.3767737895209,34.04399171098727],[-118.3767637283897,34.04395670711989],[-118.37675366995346,34.0439220463843],[-118.3767419586171,34.04388704769862],[-118.3767302490774,34.04385239214501],[-118.37672357639148,34.04383661261628],[-118.37652141143508,34.04329075925247],[-118.37651304272988,34.04326502383701],[-118.37650133408849,34.04323036877358],[-118.37648962454875,34.04319571295161],[-118.3764795643159,34.04316070801131],[-118.37646950408303,34.0431257045453],[-118.37646109225869,34.04309035196045],[-118.37645268133268,34.04305499936086],[-118.37644426950837,34.04301964600215],[-118.37643750878756,34.0429842889069],[-118.37643239647528,34.0429485819475],[-118.3764272850613,34.04291287571748],[-118.37642217274902,34.04287716947238],[-118.3764187097436,34.04284111410688],[-118.3764152476365,34.04280540262106],[-118.37641343573458,34.04276934275879],[-118.37641162383264,34.04273362528785],[-118.37641152681458,34.04271198592998],[-118.37641146213586,34.04269755944019],[-118.37640796768945,34.04265463501726],[-118.37640772873758,34.04260139592939],[-118.37640752482,34.04255605674162],[-118.37641055932903,34.04249696763279],[-118.37641693287597,34.04244611190196],[-118.37642335403362,34.04240590428459],[-118.37698345720653,34.04034049962571],[-118.37724318979959,34.03937896166507],[-118.37725131416299,34.03935077080244],[-118.37725778742293,34.0393222412319],[-118.37726426068285,34.03929371165182],[-118.37726908283931,34.03926518727288],[-118.37727555430263,34.03923631450843],[-118.37727872535558,34.03920745215571],[-118.37728354571539,34.03917858458234],[-118.37728671676835,34.03914972146557],[-118.3772882367178,34.03912086354973],[-118.37728975756559,34.03909200636841],[-118.37729127571841,34.03906280526709],[-118.37729279656619,34.03903394806608],[-118.37729266451385,34.03900475215551],[-118.37729253425812,34.03897589940107],[-118.37729075379723,34.03894705259199],[-118.37728897243801,34.03891786186231],[-118.37728719197713,34.03888901503348],[-118.37728376041275,34.03886017266124],[-118.37728032974668,34.0388313310236],[-118.3772768990806,34.03880248937616],[-118.37727181820934,34.03877365218531],[-118.37726673643979,34.038744815729],[-118.37726000716,34.03871632764096],[-118.37725492718708,34.03868783433251],[-118.37724654680378,34.03865934994733],[-118.37723981842231,34.03863120574256],[-118.37723144163226,34.03860340916258],[-118.37722976268101,34.03859723214355],[-118.37722808642469,34.03859139829187],[-118.37722307472373,34.03857801772581],[-118.37721971502455,34.03856497585907],[-118.37721635442709,34.03855159082249],[-118.37721299293126,34.03853820503932],[-118.37721128253898,34.03852481478768],[-118.37720792283984,34.03851177291282],[-118.37720621244753,34.0384983819126],[-118.37720450025859,34.03848464848644],[-118.37720278896798,34.03847125748194],[-118.37720107857567,34.03845786721972],[-118.37720101838856,34.03844447174463],[-118.3772009573031,34.03843107552294],[-118.37719924511418,34.03841734134154],[-118.37719918492705,34.03840394586003],[-118.37719912473992,34.03839055037636],[-118.37720071296137,34.03837680576678],[-118.37720702362624,34.03831221113379],[-118.37721828310998,34.03824725765006],[-118.37723415297295,34.03817860506778],[-118.3876333978847,34.04105323039428],[-118.387619,34.041106],[-118.387298,34.042282],[-118.38659199999999,34.044868],[-118.38633400000001,34.045812],[-118.38607,34.04678]]],"type":"Polygon"} +},{ + "id": 1041520717, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000215, + "geom:area_square_m":2204589.930194, + "geom:bbox":"-118.188230871,34.1124878713,-118.165793522,34.1313220043", + "geom:latitude":34.121332, + "geom:longitude":-118.177509, + "iso:country":"US", + "lbl:latitude":34.120362, + "lbl:longitude":-118.177716, + "lbl:max_zoom":18.0, + "mps:latitude":34.117954, + "mps:longitude":-118.176575, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Garvanza" + ], + "name:ita_x_preferred":[ + "Garvanza" + ], + "reversegeo:latitude":34.117954, + "reversegeo:longitude":-118.176575, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420551135, + 102191575, + 1108692433, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4490700" + }, + "wof:country":"US", + "wof:geomhash":"a9cf7f37610279e97e6a1a7a260bf75c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692433, + "microhood_id":1041520717, + "neighbourhood_id":420551135, + "region_id":85688637 + } + ], + "wof:id":1041520717, + "wof:lastmodified":1566608537, + "wof:name":"Garvanza", + "wof:parent_id":420551135, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85821221 + ], + "wof:tags":[] +}, + "bbox": [ + -118.18823087095286, + 34.11248787128734, + -118.16579352242988, + 34.13132200426189 +], + "geometry": {"coordinates":[[[-118.1760994552299,34.11248787128734],[-118.18395763557132,34.11529993067651],[-118.18435095241377,34.11546487867789],[-118.18405409256006,34.1157964995018],[-118.18380816511555,34.11607095952557],[-118.18359913900616,34.11642188217216],[-118.18350703874691,34.11662143165652],[-118.18345269831995,34.11676624706962],[-118.18343904941057,34.11683420995446],[-118.18343320132961,34.11688834395145],[-118.18377230499789,34.12018110134576],[-118.18457880423999,34.12200032118903],[-118.18602674802015,34.12509115602873],[-118.18823087095286,34.12989906691219],[-118.18806042719504,34.12995261812446],[-118.18793163393613,34.12998716632507],[-118.18793661868764,34.12999986767994],[-118.18784745460748,34.13002370660328],[-118.18777975666936,34.13004201614695],[-118.18762289375277,34.13008416533655],[-118.18746603083615,34.13012597022093],[-118.18730751501946,34.13016812085581],[-118.18715065210284,34.13021026923893],[-118.18699378918625,34.13025241685742],[-118.18683692357469,34.13029422091498],[-118.18667840775797,34.13033637146598],[-118.1865215448414,34.13037851827799],[-118.18636468102648,34.13042066506903],[-118.18620781541493,34.13046246829978],[-118.18605590401219,34.13050288991774],[-118.18589243488496,34.13054676400785],[-118.18573556837512,34.13058856643264],[-118.18557870366189,34.13063071311895],[-118.18543669977841,34.13066871427247],[-118.18542018694686,34.1306728612714],[-118.18531120692985,34.13070188133513],[-118.1852616693335,34.13071500940278],[-118.18510645572378,34.13075680877007],[-118.18494959011223,34.1307989538853],[-118.18479107249888,34.13084110121024],[-118.18463420598901,34.13088290274588],[-118.18447734037748,34.13092504705463],[-118.18432047386761,34.13096719134237],[-118.18416195535595,34.13100933783989],[-118.18400508794777,34.13105113854879],[-118.18385152364488,34.13109224770215],[-118.18375575604908,34.13111918483862],[-118.18296809793661,34.13132200426189],[-118.18290189928669,34.13127161231482],[-118.18282908005315,34.13121573491308],[-118.18283476189733,34.13079186674371],[-118.18284354921741,34.13027731458596],[-118.18285232036784,34.12975520508817],[-118.18259169664604,34.12919091077674],[-118.18236051969924,34.12924896529663],[-118.18230767989594,34.12926244085208],[-118.18224162946804,34.12927902763533],[-118.18204512838952,34.12932809864714],[-118.18196091312828,34.12934952179967],[-118.18135159485421,34.12950225734292],[-118.18144955164436,34.12820064869079],[-118.18090794029158,34.12833576275251],[-118.1807301196794,34.12785446421195],[-118.18067859950123,34.12771371277516],[-118.18060049188558,34.12750190030898],[-118.18048250625787,34.12718504061141],[-118.18041603272344,34.1270051534849],[-118.18020497264914,34.12642978903435],[-118.17859479550297,34.12672517123502],[-118.17836676355797,34.12670661632048],[-118.17804784815739,34.12667995143173],[-118.17789086935811,34.12666678629975],[-118.17768927662857,34.12665025254496],[-118.17776056153966,34.12676521464825],[-118.17780035241513,34.12683110490614],[-118.17772598268941,34.12681919205961],[-118.1776499582669,34.12680728218589],[-118.17755575463799,34.12679161998548],[-118.17725827124346,34.12674293864756],[-118.17687980562438,34.12668132267558],[-118.17653108861423,34.12662481461993],[-118.17664958268841,34.1256254449358],[-118.17667392703258,34.12541897620965],[-118.17674210467111,34.12484628848195],[-118.17685245731384,34.12390635476797],[-118.17687682052266,34.12370915888776],[-118.1769027818344,34.12348620018933],[-118.17680364196301,34.1234781018105],[-118.17684257764238,34.12314108660484],[-118.17635068983716,34.12334102566246],[-118.17611960092528,34.1234347914592],[-118.17602221276873,34.12347477693869],[-118.17506318574443,34.12386361947708],[-118.17281661779646,34.12477605455513],[-118.17276579560927,34.12496641761642],[-118.17270515663263,34.12520247753879],[-118.17266910364702,34.12534404520751],[-118.17263959937983,34.12545709348225],[-118.17257403673715,34.12570964805133],[-118.1725674871204,34.12573816637939],[-118.17256093031713,34.12576290630011],[-118.17254781042243,34.1258099827002],[-118.17253302145789,34.1258484738434],[-118.17253138562577,34.12585637641995],[-118.17252315526112,34.12587115758996],[-118.17249846506554,34.12591515901403],[-118.17249517543496,34.12592237669994],[-118.17247375600535,34.12595022940646],[-118.17245727551312,34.12597017507684],[-118.17244573755163,34.12598290008786],[-118.17244079502095,34.12598943362767],[-118.17242100693186,34.12600766670763],[-118.17239462161533,34.12603106132212],[-118.17236492870192,34.12605274260627],[-118.17234183032105,34.12606788886428],[-118.17231873014352,34.12608200444852],[-118.17228572334503,34.12609922617204],[-118.17223455261149,34.12612128148434],[-118.17219823102961,34.12613335579682],[-118.17215199743687,34.12614544423656],[-118.17211071266304,34.12615408967102],[-118.17184483828841,34.12620942533874],[-118.17172263417208,34.12623467376348],[-118.17162189709616,34.12625542545987],[-118.17156905549618,34.12626786636194],[-118.1714980571477,34.12628823210725],[-118.1714122105459,34.12631892386438],[-118.17139570400255,34.12632616085014],[-118.1713791974592,34.12633305353565],[-118.17131482867752,34.12636405834363],[-118.17128347298254,34.12638093347933],[-118.17126862293256,34.12638988526413],[-118.17123892103601,34.12640778883092],[-118.17119437358107,34.12643670402019],[-118.171153133723,34.12646767607065],[-118.17111354856172,34.12649967580118],[-118.17102283488769,34.12657434030469],[-118.17100139389848,34.12659223193443],[-118.17094036864627,34.1266424675353],[-118.17087769857879,34.12669613939533],[-118.17085790689644,34.12671265455055],[-118.17083811341749,34.12672813978302],[-118.17082326965573,34.12674052558735],[-118.17080842409734,34.12675222502487],[-118.17076554211896,34.12678800820518],[-118.17073090308159,34.12681484855502],[-118.1707111033144,34.12682758533684],[-118.17070285498346,34.12683377971922],[-118.17067315308691,34.1268513396381],[-118.17063354456943,34.12687269128688],[-118.17058072452902,34.12689577928943],[-118.17055926377688,34.12690405357946],[-118.17053614922632,34.12691164224862],[-118.17050312805476,34.12692199347487],[-118.17049156943202,34.12692475751974],[-118.17046845128819,34.12693062990645],[-118.17043377182664,34.12693789137937],[-118.17038752745411,34.12694516995504],[-118.17035118790594,34.12694865605637],[-118.1703164976646,34.12695076571282],[-118.17030328165013,34.12695112785685],[-118.17026858691725,34.12695117693592],[-118.17022562768373,34.12694917659198],[-118.17020084226671,34.12694749377477],[-118.17014961763427,34.12694275764417],[-118.17010004141038,34.12693664432462],[-118.17007359949999,34.1269332467138],[-118.17002401968283,34.1269250728157],[-118.1699744353741,34.12691518189224],[-118.16994964277056,34.12690972072775],[-118.16992319547028,34.12690323187639],[-118.16990005576689,34.12689811203398],[-118.16987526046842,34.12689162095084],[-118.16985211717177,34.12688478333902],[-118.16982732097495,34.12687760514728],[-118.16980417588167,34.12687008117027],[-118.16975623189664,34.12685400478339],[-118.1697330850067,34.12684545014253],[-118.16970993721847,34.12683655194684],[-118.16968678943022,34.12682731093983],[-118.16966363984534,34.12681772563418],[-118.1696189917791,34.12679752286998],[-118.16957434191622,34.12677628943841],[-118.16953133956356,34.12675367955345],[-118.16950983838724,34.12674168787186],[-118.16948833631261,34.12672969618851],[-118.16940727862956,34.1266782871997],[-118.16933117605366,34.1266261843774],[-118.16928319793263,34.12659327672816],[-118.16924018569851,34.1265648278457],[-118.16919883355105,34.1265404978975],[-118.16917071628268,34.12652508104432],[-118.16912606552147,34.12650350398897],[-118.16910126213814,34.12649254739972],[-118.16908141925182,34.12648398751686],[-118.16905165716815,34.12647200769501],[-118.16900536428662,34.12645592825798],[-118.16899048549058,34.12645114078964],[-118.16897395469272,34.12644635480824],[-118.16894089489362,34.12643747069944],[-118.16888469718775,34.12642449664183],[-118.16885329388205,34.1264180144459],[-118.16880701627188,34.12640880462543],[-118.16874916836085,34.12639686346158],[-118.16869958495045,34.12638697173268],[-118.16865991714411,34.126378440097],[-118.16857893132631,34.12636206616566],[-118.16850951401271,34.12634773646347],[-118.16844835401322,34.12633236493636],[-118.16841694711428,34.12632416495314],[-118.16838719221711,34.12631561992582],[-118.16835743552332,34.1263063870418],[-118.16832602682776,34.12629681283148],[-118.16823674955985,34.12626533728213],[-118.16817888008924,34.12624240452578],[-118.16812265902719,34.12621775174996],[-118.16809289424856,34.12620474047717],[-118.16798374355164,34.12614890434391],[-118.16792420590956,34.12611841627959],[-118.16787790584152,34.12609787202218],[-118.16782995826321,34.12607973340273],[-118.16781342566873,34.1260739174728],[-118.16779689307425,34.12606844435589],[-118.16776383058021,34.12605818597898],[-118.16774730068066,34.12605374353247],[-118.16769771188035,34.1260407597488],[-118.16763986486762,34.12602916209013],[-118.16757044935069,34.12601517514518],[-118.16753243174955,34.12600561056907],[-118.16749441235176,34.12599501531977],[-118.16745639025905,34.1259833893969],[-118.1674200183715,34.12597038775525],[-118.16740017907848,34.12596354560709],[-118.16736545559947,34.12594916675766],[-118.16733238502061,34.12593512997616],[-118.16729435124979,34.12591732149409],[-118.16727616126362,34.12590875932213],[-118.16724308709146,34.1258926619308],[-118.16723316879242,34.1258895840396],[-118.16721333668589,34.12588652027731],[-118.16720507577854,34.12588618787399],[-118.16719351086759,34.12588620423389],[-118.16717699444277,34.12588828788969],[-118.16715553009738,34.1258948437458],[-118.16710105356358,34.12591621497061],[-118.166825372281,34.12602651030415],[-118.16673292755341,34.12606304708895],[-118.16660911724937,34.12611164924996],[-118.16655794292258,34.12613198528772],[-118.1665199747288,34.12614715086589],[-118.16649190956268,34.12615749474944],[-118.16646383990499,34.12616543373495],[-118.16644237196635,34.12617027178629],[-118.16640768980984,34.1261765026546],[-118.1663779582689,34.1261796348203],[-118.166348224033,34.12618139275934],[-118.16632178930914,34.12618074208394],[-118.16629369809188,34.12617872015654],[-118.16627056377837,34.12617634797979],[-118.16620114556648,34.1261613296454],[-118.166166429274,34.12615004135311],[-118.16613997388887,34.12613908694892],[-118.16611516781063,34.12612675534146],[-118.16606719957107,34.12609796869409],[-118.16604072442303,34.12607705261676],[-118.16601258469674,34.12604995622394],[-118.1659993390379,34.12603520408678],[-118.16598609248069,34.12602010913339],[-118.16596123609681,34.12598270376934],[-118.1659496271684,34.12596039335541],[-118.16594464780677,34.12594872206627],[-118.16579352242988,34.1255532350756],[-118.16629543812857,34.12539213913484],[-118.16683697671785,34.12521861967981],[-118.16743299812907,34.12502716254946],[-118.16760470390911,34.12497231096104],[-118.16780915507786,34.12476971426828],[-118.16807131312218,34.12450967657933],[-118.16827411049252,34.12430708175255],[-118.16828727530302,34.12428164609706],[-118.16846662125454,34.1239190213414],[-118.16801562835434,34.12392926659219],[-118.16807003032794,34.12387148505673],[-118.16806463774132,34.12365441055538],[-118.16805738294705,34.12333291983321],[-118.16805199215705,34.12311653257464],[-118.16797381986272,34.12285456298249],[-118.16796384227486,34.12282194537939],[-118.1679056009017,34.1226131890004],[-118.16778246343584,34.12217129589627],[-118.16775917191714,34.12209026545023],[-118.16772922298388,34.12198417041273],[-118.16760942725087,34.12156013399441],[-118.16748462430843,34.12110965562445],[-118.16752249548419,34.12104743317094],[-118.16758506314373,34.12094327038029],[-118.16781064268798,34.1205726821294],[-118.16795224232959,34.12033754259988],[-118.16867518580901,34.12002602618835],[-118.16890130973229,34.11992850472561],[-118.16901081526375,34.11934580173266],[-118.16888922020523,34.11885032481348],[-118.16886089901925,34.11873254970715],[-118.16884591152707,34.11867314782738],[-118.16885062588567,34.11855360917081],[-118.1688584744663,34.11834991129938],[-118.1688679489976,34.11813350385192],[-118.1688710401005,34.11802839297203],[-118.1688789344952,34.11784770919481],[-118.16933392938999,34.11738268274415],[-118.16953174650041,34.11717871952329],[-118.16985320143827,34.11684783639546],[-118.17005925250659,34.11663218220415],[-118.17057191744598,34.11610249399755],[-118.1707450039366,34.11592398222822],[-118.17100050726128,34.11565913818117],[-118.17122304600831,34.1154307498993],[-118.17133843550488,34.11531208351104],[-118.17136479566858,34.11527804174017],[-118.17171570905957,34.11482036630819],[-118.17249660914617,34.11380700721949],[-118.17306426535399,34.11352453956749],[-118.17383158560843,34.11314354506991],[-118.17548008578297,34.11312261463203],[-118.17564258922121,34.11263188355417],[-118.1760994552299,34.11248787128734]]],"type":"Polygon"} +},{ + "id": 1041531499, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000082, + "geom:area_square_m":841543.415188, + "geom:bbox":"-118.236943841,34.0597397103,-118.224832268,34.0718370853", + "geom:latitude":34.065854, + "geom:longitude":-118.230348, + "iso:country":"US", + "lbl:latitude":34.060395, + "lbl:longitude":-118.236439, + "lbl:max_zoom":18.0, + "mps:latitude":34.065784, + "mps:longitude":-118.230256, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"old GNIS", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Dogtown" + ], + "name:eng_x_variant":[ + "Mission Junction", + "Mission Jct", + "Naud Junction", + "Naud Jct" + ], + "reversegeo:latitude":34.065784, + "reversegeo:longitude":-118.230256, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866825, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q14683463" + }, + "wof:country":"US", + "wof:geomhash":"84653bb4a1ad6ce37ae0fd53b3d3767c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041531499, + "neighbourhood_id":85866825, + "region_id":85688637 + } + ], + "wof:id":1041531499, + "wof:lastmodified":1566608536, + "wof:name":"Naud Junction", + "wof:parent_id":85866825, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85834651, + 85836383 + ], + "wof:tags":[] +}, + "bbox": [ + -118.23694384053552, + 34.0597397102904, + -118.22483226805444, + 34.07183708531114 +], + "geometry": {"coordinates":[[[-118.23694384053552,34.06185298142431],[-118.23572283943594,34.06441238757537],[-118.23555585141855,34.0647923526138],[-118.23539410837066,34.06521073444817],[-118.23512407928132,34.06600908132098],[-118.23495971374869,34.06646695673333],[-118.23487356859897,34.06666272782314],[-118.23478360782086,34.06681916858898],[-118.23445487675559,34.06734748637246],[-118.23434554432508,34.06748323469167],[-118.23421126355542,34.06764980154855],[-118.23391481857692,34.06795798692225],[-118.23361409898212,34.06824158602518],[-118.23345928848728,34.06835701490296],[-118.23332779881751,34.06845108352016],[-118.23224768246018,34.06912028604589],[-118.23127322965955,34.06967208461975],[-118.23094179121857,34.06982344462843],[-118.23016376231425,34.07013289513089],[-118.22919517971121,34.07048217188775],[-118.22825594809613,34.0708343837434],[-118.22734019727145,34.07117485520386],[-118.22708262404291,34.07130683465351],[-118.22674143711683,34.07148891077514],[-118.22653818152511,34.0716452047858],[-118.22643618684195,34.0717383941729],[-118.22538647200791,34.07183708531114],[-118.22532649686927,34.07152510121177],[-118.22525953554967,34.07118345977998],[-118.22519088809227,34.0708287689048],[-118.2251624240742,34.07068146737836],[-118.2251004349297,34.07034634252246],[-118.22508531269021,34.0702484780607],[-118.2249683574301,34.06973347057917],[-118.22491989601546,34.06951647892994],[-118.22486973409001,34.06928128607163],[-118.22485466574943,34.06920334297045],[-118.22484117215555,34.06909723147562],[-118.22483411678731,34.06892928173572],[-118.22483226805444,34.06885543625074],[-118.22483703451535,34.0687860428523],[-118.22484340177407,34.06869809961954],[-118.22487374057619,34.06831505860555],[-118.22498421089824,34.0682616123901],[-118.22498236216539,34.06818811085945],[-118.22497892251616,34.06813693790926],[-118.22497708995299,34.06806927553573],[-118.22497707198667,34.06806274942932],[-118.22497538405226,34.06804901335038],[-118.22497533284829,34.06802977807363],[-118.22497361077789,34.06800333356072],[-118.22497183930015,34.06795868363726],[-118.22497012172134,34.06793395583549],[-118.22497007321228,34.06791575191227],[-118.22497003817799,34.06790269818708],[-118.22496982168401,34.06782232419408],[-118.22499598421835,34.06772816041568],[-118.22498575240725,34.06760693053604],[-118.22500524315399,34.06748770520936],[-118.22502804778578,34.06737293863749],[-118.22506235175155,34.06723719887029],[-118.22510164316374,34.06711415851979],[-118.22525253947025,34.0667460060256],[-118.22533783001488,34.06653906991009],[-118.22611215084035,34.06471956368044],[-118.22637624475406,34.0640911811326],[-118.22653698030786,34.06370308641546],[-118.22666494621842,34.06340710764157],[-118.22671251021606,34.06329229386856],[-118.22673545408674,34.06323042406253],[-118.22676499159161,34.0631647633438],[-118.22706190365763,34.06246658966808],[-118.22715997022698,34.06222960075602],[-118.23085057543275,34.06198212577138],[-118.23101669821065,34.06195893937907],[-118.23138253448576,34.0618740306823],[-118.2316304234681,34.06180995172817],[-118.23170762428151,34.06178253905318],[-118.23183309975492,34.06172457085196],[-118.23193851475106,34.06165581631154],[-118.23203597586523,34.06157221746981],[-118.23213027850829,34.06147728877828],[-118.23232268782382,34.06123037458713],[-118.23248249036394,34.06099593257556],[-118.23268955795328,34.06061038803746],[-118.23288459889915,34.06021226119674],[-118.23310473130893,34.0597397102904],[-118.23340998158382,34.06008018175086],[-118.23363644893476,34.06029007206116],[-118.23386785699617,34.06044413400171],[-118.23486579058718,34.0610546345515],[-118.23541753218404,34.06131286870232],[-118.23541904015028,34.06131353881685],[-118.23602808971081,34.06154773114941],[-118.23694384053552,34.06185298142431]]],"type":"Polygon"} +},{ + "id": 1041531567, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000079, + "geom:area_square_m":806146.502435, + "geom:bbox":"-118.260011,34.062736982,-118.247555953,34.076759", + "geom:latitude":34.070554, + "geom:longitude":-118.254406, + "iso:country":"US", + "lbl:latitude":34.070301, + "lbl:longitude":-118.254637, + "lbl:max_zoom":18.0, + "mps:latitude":34.071486, + "mps:longitude":-118.254836, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Angelino Heights" + ], + "name:eng_x_variant":[ + "Angelino Hts" + ], + "name:ita_x_preferred":[ + "Angelino Heights" + ], + "name:spa_x_preferred":[ + "Angelino Heights" + ], + "name:und_x_variant":[ + "Angeleno Heights" + ], + "reversegeo:latitude":34.071486, + "reversegeo:longitude":-118.254836, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865835, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4762767" + }, + "wof:country":"US", + "wof:geomhash":"aaec96bd4a42223733f331e33fb8177b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041531567, + "neighbourhood_id":85865835, + "region_id":85688637 + } + ], + "wof:id":1041531567, + "wof:lastmodified":1566608536, + "wof:name":"Angelino Heights", + "wof:parent_id":85865835, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869075 + ], + "wof:tags":[] +}, + "bbox": [ + -118.260011, + 34.06273698199352, + -118.24755595266686, + 34.076759 +], + "geometry": {"coordinates":[[[-118.25938743504734,34.06905736390992],[-118.25958300000001,34.069825],[-118.26001100000001,34.07126],[-118.259731,34.072645],[-118.259638,34.073108],[-118.25861399999999,34.074737],[-118.25734,34.076759],[-118.25621599999999,34.076271],[-118.255849,34.076112],[-118.255216,34.075837],[-118.254356,34.075464],[-118.253455,34.075072],[-118.25273199999999,34.074757],[-118.252561,34.074668],[-118.252517,34.074643],[-118.252348,34.074534],[-118.25219199999999,34.074413],[-118.25209,34.074319],[-118.25197199999999,34.074194],[-118.251856,34.074053],[-118.251772,34.07393],[-118.251681,34.073769],[-118.251435,34.07323],[-118.251355,34.073074],[-118.251109,34.072682],[-118.250985,34.072486],[-118.250726,34.072071],[-118.250675,34.071958],[-118.250647,34.071855],[-118.250579,34.071336],[-118.25049799999999,34.070727],[-118.25048,34.070549],[-118.250451,34.069388],[-118.250433,34.06922],[-118.250257,34.068394],[-118.250185,34.068187],[-118.250011,34.067689],[-118.24986761199131,34.06721745554184],[-118.24987429151446,34.06720387446751],[-118.24976258511056,34.06683760804076],[-118.24957751329741,34.06622865027819],[-118.24943912692957,34.06577244646147],[-118.24941757567588,34.06569821707248],[-118.24941757567588,34.06569821707247],[-118.24940743346802,34.06566328407495],[-118.24939031907505,34.06560836009987],[-118.24939031907503,34.06560836009981],[-118.24938743157992,34.06559909347201],[-118.2493590960209,34.06550847241213],[-118.24935241794506,34.0654834112546],[-118.24934409415566,34.06546041514125],[-118.24933577126455,34.06543741902167],[-118.24931747527715,34.06539177354389],[-118.24930750218087,34.06536912418587],[-118.2492975290846,34.0653464748218],[-118.24928755778494,34.06532416925542],[-118.24927814621017,34.06530768842074],[-118.24927814621016,34.06530768842071],[-118.24926855968633,34.06529090122851],[-118.24926855968631,34.06529090122849],[-118.24925934529513,34.06527476568672],[-118.24922282877881,34.06520889223256],[-118.24921287903874,34.06519379982225],[-118.24919960912534,34.06517287464223],[-118.2491846890068,34.06515195317784],[-118.24917141999174,34.06513137030365],[-118.24913993134608,34.06509056099581],[-118.2491067951902,34.06505078531534],[-118.24905544569194,34.06499318607838],[-118.24903722875629,34.06497433186555],[-118.24901901361727,34.06495582145381],[-118.24900079937659,34.06493765409908],[-118.24896272248662,34.06490166690435],[-118.24890976320737,34.06485781011786],[-118.24884356096418,34.0648019588016],[-118.24871281386953,34.06469196913677],[-118.24864495692957,34.06463474769428],[-118.24858702996681,34.06458574855235],[-118.24854731005821,34.06455251240723],[-118.24852579450884,34.06453435240775],[-118.24849765837583,34.06451070935224],[-118.24842318175055,34.06444800547519],[-118.24824443946692,34.06429758370086],[-118.24809548711472,34.06417183103248],[-118.24793329449354,34.06403511424437],[-118.2477545549048,34.06388469173709],[-118.24770821441255,34.06384562990043],[-118.24760560345094,34.06375893771181],[-118.24755595266686,34.06371679119927],[-118.24842395699666,34.06304109419785],[-118.24873360268184,34.06280001769068],[-118.24877805761028,34.06276042549324],[-118.2488043983177,34.06273698199352],[-118.24980421747807,34.06378499816022],[-118.24996156106499,34.06392685872757],[-118.25036369767747,34.06423947084649],[-118.25082965090323,34.06456648134364],[-118.25279994050393,34.0659606610348],[-118.25384158453258,34.06669480895372],[-118.25444308104798,34.06708115706289],[-118.25497719533412,34.06737756365914],[-118.25562225940749,34.06768549998147],[-118.25630501504705,34.06797001845374],[-118.25938743504734,34.06905736390992]]],"type":"Polygon"} +},{ + "id": 1041531569, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000131, + "geom:area_square_m":1338655.690429, + "geom:bbox":"-118.238610754,34.0345524499,-118.227207305,34.048988", + "geom:latitude":34.041132, + "geom:longitude":-118.233481, + "iso:country":"US", + "lbl:latitude":34.042958, + "lbl:longitude":-118.232692, + "lbl:max_zoom":18.0, + "mps:latitude":34.040862, + "mps:longitude":-118.233481, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":20.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Arts District" + ], + "name:eng_x_variant":[ + "Artist District" + ], + "name:ita_x_preferred":[ + "Arts District" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30fc\u30c8\u5730\u533a" + ], + "name:nld_x_preferred":[ + "Arts District" + ], + "name:zho_x_preferred":[ + "\u85dd\u8853\u5340" + ], + "reversegeo:latitude":34.040862, + "reversegeo:longitude":-118.233481, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865837, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3932198" + }, + "wof:country":"US", + "wof:geomhash":"9f8c60d8a2c2541aaa49bb34fc54a3ed", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041531569, + "neighbourhood_id":85865837, + "region_id":85688637 + } + ], + "wof:id":1041531569, + "wof:lastmodified":1566608536, + "wof:name":"Arts District", + "wof:parent_id":85865837, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869087 + ], + "wof:tags":[] +}, + "bbox": [ + -118.23861075379718, + 34.03455244986433, + -118.22720730496953, + 34.048988 +], + "geometry": {"coordinates":[[[-118.23861075379718,34.03498710579433],[-118.23854300000001,34.036117],[-118.238512,34.036634],[-118.238495,34.036912],[-118.23846500000001,34.037406],[-118.238421,34.038137],[-118.238362,34.039112],[-118.238315,34.039884],[-118.238223,34.04142],[-118.238112,34.043273],[-118.238044,34.04439],[-118.238061,34.045538],[-118.23808,34.046905],[-118.238084,34.047162],[-118.238102,34.04841],[-118.23811499999999,34.048988],[-118.237075,34.048849],[-118.236109,34.048721],[-118.235148,34.048593],[-118.23389400000001,34.048427],[-118.232615,34.048257],[-118.23209799999999,34.048189],[-118.23206,34.048184],[-118.231032,34.048047],[-118.230587,34.047988],[-118.23053400000001,34.047981],[-118.23030300000001,34.04795],[-118.230152,34.04793],[-118.2300567184096,34.04791721832323],[-118.23009334583899,34.04763644662801],[-118.23008646564224,34.04753513132385],[-118.23007636857845,34.04746473722025],[-118.23006459166507,34.04738369702935],[-118.23000759266199,34.0470636791444],[-118.22984882531698,34.04634816243617],[-118.22954467732133,34.04498064652054],[-118.22906507397768,34.04282242095915],[-118.22826825933751,34.0393238349756],[-118.22794590428769,34.03791788013252],[-118.22764192876859,34.03659123445284],[-118.22720730496953,34.03455244986433],[-118.22780968375803,34.03455990239334],[-118.22806383691483,34.03456216993924],[-118.22828333127134,34.03456415981118],[-118.22864310564431,34.03456725740081],[-118.22903423571228,34.03457063787518],[-118.22942371467676,34.0345740198383],[-118.23000958512527,34.0345790879439],[-118.23049808538353,34.03458330888356],[-118.23088756614463,34.03458668637956],[-118.2313430596044,34.03459062294518],[-118.2317391411862,34.03459398555223],[-118.23229530524659,34.03459875588318],[-118.23249334603749,34.03460043532546],[-118.23265673431631,34.03460355599121],[-118.23388972414605,34.03468051773572],[-118.2341637210875,34.03469750420464],[-118.23566411961438,34.03479488191198],[-118.2361642548522,34.03482756618943],[-118.23663962982579,34.03485857920589],[-118.23708859612672,34.03488792468535],[-118.23752270608945,34.03491626815066],[-118.23861075379718,34.03498710579433]]],"type":"Polygon"} +},{ + "id": 1041531573, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000161, + "geom:area_square_m":1645398.650823, + "geom:bbox":"-118.374157863,34.0055595664,-118.355388,34.021699", + "geom:latitude":34.014337, + "geom:longitude":-118.363951, + "iso:country":"US", + "lbl:latitude":34.00679, + "lbl:longitude":-118.347093, + "lbl:max_zoom":18.0, + "mps:latitude":34.013334, + "mps:longitude":-118.362255, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Baldwin Vista" + ], + "name:eng_x_variant":[ + "Baldwin Vis" + ], + "reversegeo:latitude":34.013334, + "reversegeo:longitude":-118.362255, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1041531571, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4850611" + }, + "wof:country":"US", + "wof:geomhash":"e0841c5b957fd2c0840f50fa8e6cf19d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1041531573, + "neighbourhood_id":1041531571, + "region_id":85688637 + } + ], + "wof:id":1041531573, + "wof:lastmodified":1566608535, + "wof:name":"Baldwin Vista", + "wof:parent_id":1041531571, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869097 + ], + "wof:tags":[] +}, + "bbox": [ + -118.37415786307419, + 34.00555956639068, + -118.355388, + 34.021699 +], + "geometry": {"coordinates":[[[-118.37275620915996,34.01836408573924],[-118.37264657168166,34.01873739292041],[-118.37258483362859,34.01895560707958],[-118.37253904778775,34.01922813097347],[-118.37251726194694,34.019513],[-118.37246399999999,34.020577],[-118.37241899999999,34.021503],[-118.372338,34.021699],[-118.371101,34.021639],[-118.370026,34.021586],[-118.36917,34.02158],[-118.36587400000001,34.021562],[-118.365903,34.021009],[-118.366045,34.01835],[-118.365032,34.018347],[-118.36407199999999,34.018344],[-118.363091,34.018339],[-118.36291199999999,34.018331],[-118.36260799999999,34.018303],[-118.362381,34.018271],[-118.362117,34.01822],[-118.36184799999999,34.018159],[-118.36161800000001,34.018113],[-118.361386,34.018076],[-118.36114000000001,34.018048],[-118.36099400000001,34.018037],[-118.360679,34.018027],[-118.36036300000001,34.018035],[-118.36012599999999,34.018054],[-118.359971,34.018071],[-118.359661,34.01812],[-118.359145,34.01823],[-118.359049,34.018247],[-118.358823,34.018281],[-118.35859499999999,34.018306],[-118.358289,34.018322],[-118.35794199999999,34.018324],[-118.35686200000001,34.01832],[-118.35556200000001,34.018316],[-118.355479,34.018237],[-118.355388,34.012822],[-118.355446,34.01248],[-118.35548900000001,34.012315],[-118.355553,34.012126],[-118.355633,34.011941],[-118.355729,34.011761],[-118.355839,34.011587],[-118.355931,34.011461],[-118.35608095221222,34.01132890442447],[-118.35622633274282,34.0112298566367],[-118.35659718937953,34.0109028566367],[-118.35694533274282,34.01052480884895],[-118.35710623716729,34.01036533274282],[-118.35723171327342,34.01018390442447],[-118.35732923716731,34.01002638053059],[-118.35780748016253,34.00913490757698],[-118.35849188681455,34.00907379802095],[-118.35862711829914,34.0090617174405],[-118.35864359879132,34.00905754661279],[-118.36144845172205,34.00833713712167],[-118.36141664686942,34.00784879845709],[-118.36141650583393,34.0078161678305],[-118.36142130822743,34.00778214912854],[-118.36142945504875,34.00775842397446],[-118.36144251385804,34.00772609713822],[-118.36145724712702,34.00769960552097],[-118.36147856864028,34.00767034521288],[-118.36149006707592,34.00765863229977],[-118.36150156730821,34.00764760671546],[-118.36150978509642,34.0076403685221],[-118.36151800468126,34.00763347436578],[-118.36153115961028,34.0076234734445],[-118.36154431723423,34.00761415985285],[-118.36155253951405,34.00760795228051],[-118.36158216685041,34.00759206324635],[-118.36160357370366,34.00758272507708],[-118.36162498415013,34.00757441753108],[-118.36166288137701,34.00756331225607],[-118.36170902962979,34.00755286973671],[-118.36185571463422,34.00751945560231],[-118.36199415759592,34.00748743994779],[-118.36198536578425,34.00736209451922],[-118.36198507922167,34.00729580374111],[-118.36198816313804,34.00724598881604],[-118.36199297092145,34.00721300051435],[-118.36200100724997,34.00716385723688],[-118.36201722453579,34.00709889033602],[-118.36203839423378,34.0070349391227],[-118.36205798918506,34.00698816604552],[-118.36207270358942,34.00695720837546],[-118.36208906999559,34.00692693281769],[-118.36211527205577,34.00688220158471],[-118.36214478081456,34.00683883383211],[-118.36217594247343,34.00679649222297],[-118.36221041172922,34.00675585813911],[-118.36225968072928,34.0067041864142],[-118.36230076517882,34.00666731067952],[-118.36234185681485,34.00663215215855],[-118.36237145540515,34.00660973657387],[-118.36238625604777,34.0065990444697],[-118.36240270779386,34.00658834640676],[-118.36241751023314,34.0065779975971],[-118.36243396287756,34.00656764357345],[-118.36244876891008,34.00655798210062],[-118.36246522335114,34.00654797137185],[-118.36249813762313,34.00652932458988],[-118.36251459655578,34.00652034449483],[-118.36253599622246,34.00650963227304],[-118.36253928675136,34.00650756131782],[-118.36254422838375,34.00650548589444],[-118.36254751711598,34.0065030716416],[-118.36255080764489,34.00650100068621],[-118.36255574658233,34.00649858122046],[-118.36256890330796,34.00648892420781],[-118.36257547987417,34.00648375240347],[-118.36259191724722,34.00646996390243],[-118.36260177715579,34.00646100390749],[-118.36260341298791,34.00645790752599],[-118.36260998685917,34.00645204837965],[-118.36261162179298,34.00644860870015],[-118.36261490783031,34.00644550710545],[-118.36261654456074,34.00644241072339],[-118.36261982880143,34.00643896657539],[-118.36262146553189,34.00643587019315],[-118.36262474977255,34.00643242530019],[-118.36262802053849,34.00642588923723],[-118.36263130567747,34.00642244434387],[-118.36263294061131,34.00641900466317],[-118.36263784361611,34.00640834232222],[-118.3626411278568,34.00640489742816],[-118.36264439592783,34.00639767476714],[-118.36264437975814,34.00639389625554],[-118.36264764782915,34.00638667359365],[-118.36265091500182,34.00637910688839],[-118.36265089793385,34.00637532837595],[-118.36265416690314,34.00636810571248],[-118.36265414983517,34.00636432719956],[-118.36265578387066,34.00636054421835],[-118.36265576680269,34.0063567657051],[-118.36265740083817,34.00635298272357],[-118.36265734963419,34.00634130462875],[-118.3626589836697,34.00633752090184],[-118.36265892527921,34.00632412556897],[-118.36503947785012,34.00555956639068],[-118.36622412035128,34.00634427367392],[-118.36624232111724,34.00635658400281],[-118.36685590459227,34.0070811886676],[-118.3671842603882,34.00709324272155],[-118.36716600482498,34.00744468239046],[-118.36714924944832,34.0077621130651],[-118.36710043589407,34.00866940332341],[-118.3668459494623,34.01346830695549],[-118.36673166489355,34.01562676475288],[-118.37049082150679,34.01576470180744],[-118.37266084131444,34.01584423609955],[-118.37269748898481,34.01518154113081],[-118.37270499800223,34.01501527238517],[-118.37271572927662,34.01483147526543],[-118.37272330836265,34.01468100493636],[-118.3727308730757,34.0145271009452],[-118.37274312968943,34.01431547663805],[-118.37275531803121,34.01408839586062],[-118.37276292137177,34.01394342245084],[-118.37286487296998,34.01201444299593],[-118.37286942742847,34.01192581017452],[-118.37318780114495,34.01191486556465],[-118.37328141547903,34.01218902024605],[-118.37338644829869,34.01243359890861],[-118.37365137764566,34.01301601596676],[-118.37382133350751,34.01338954335281],[-118.37387633914898,34.01351474510803],[-118.37392304795048,34.01362932396447],[-118.37395645090602,34.01371990069129],[-118.37396982502396,34.01375901614814],[-118.37402337898794,34.01392853238627],[-118.37407546959632,34.0141396133458],[-118.37410754124861,34.01430163803049],[-118.37413480871074,34.0144959658281],[-118.37415215338224,34.01468517176481],[-118.37415589037383,34.01478305270958],[-118.37415786307419,34.01485517908341],[-118.37415520495928,34.01499876373605],[-118.37415066038224,34.01508945739403],[-118.37414603675347,34.01516229013694],[-118.3741333902709,34.01528598443507],[-118.3741142301042,34.01542893321375],[-118.37410134826303,34.01550007393149],[-118.37407714136106,34.01562139916447],[-118.37404476248496,34.01575992371629],[-118.37401877961369,34.01585308862689],[-118.37398949723037,34.01594626311496],[-118.37397485379294,34.01599233580421],[-118.373950413329,34.0160614514926],[-118.37392597017011,34.01613022386607],[-118.37389822570255,34.01619832083609],[-118.37388027915982,34.01624371580742],[-118.37386231195582,34.01628464616704],[-118.37384108386735,34.01633417358831],[-118.37381003449784,34.01640124881275],[-118.37377733222824,34.01646764268186],[-118.37373152533529,34.01655537278394],[-118.37370862458374,34.01659975417522],[-118.37295410442378,34.01797052871572],[-118.37288210086052,34.01810402278593],[-118.37283792890136,34.01818899998259],[-118.3727954197238,34.01827671937076],[-118.37275620915996,34.01836408573924]]],"type":"Polygon"} +},{ + "id": 1041531575, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000097, + "geom:area_square_m":991540.171261, + "geom:bbox":"-118.345901,34.010868,-118.335096,34.0240181153", + "geom:latitude":34.018444, + "geom:longitude":-118.33972, + "iso:country":"US", + "lbl:latitude":34.014292, + "lbl:longitude":-118.357805, + "lbl:max_zoom":18.0, + "mps:latitude":34.018727, + "mps:longitude":-118.339617, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:note":"dupe.", + "mz:tier_metro":1, + "name:azb_x_preferred":[ + "\u06a9\u0631\u0646\u0634\u0627\u0648" + ], + "name:dan_x_preferred":[ + "Crenshaw" + ], + "name:deu_x_preferred":[ + "Crenshaw" + ], + "name:eng_x_preferred":[ + "Crenshaw" + ], + "name:eng_x_variant":[ + "Crenshaw District", + "Baldwin Vista" + ], + "name:fas_x_preferred":[ + "\u06a9\u0631\u0646\u0634\u0627\u0648" + ], + "name:fra_x_preferred":[ + "Crenshaw" + ], + "name:heb_x_preferred":[ + "\u05e7\u05e8\u05e0\u05e9\u05d5\u05d0\u05d5" + ], + "name:ita_x_preferred":[ + "Crenshaw" + ], + "name:jpn_x_preferred":[ + "\u30af\u30ec\u30f3\u30b7\u30e3\u30fc" + ], + "name:nld_x_preferred":[ + "Crenshaw" + ], + "name:pol_x_preferred":[ + "Crenshaw" + ], + "name:por_x_preferred":[ + "Crenshaw" + ], + "name:spa_x_preferred":[ + "Crenshaw" + ], + "name:swe_x_preferred":[ + "Crenshaw" + ], + "name:ukr_x_preferred":[ + "\u041a\u0440\u0435\u043d\u0448\u043e\u0432" + ], + "reversegeo:latitude":34.018727, + "reversegeo:longitude":-118.339617, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1041531571, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1139604" + }, + "wof:country":"US", + "wof:geomhash":"186b79eefa5d95559f3c60f6b1e1ff7a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1041531575, + "neighbourhood_id":1041531571, + "region_id":85688637 + } + ], + "wof:id":1041531575, + "wof:lastmodified":1566608535, + "wof:name":"Crenshaw", + "wof:parent_id":1041531571, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868341, + 420780777 + ], + "wof:tags":[] +}, + "bbox": [ + -118.345901, + 34.010868, + -118.335096, + 34.02401811532715 +], + "geometry": {"coordinates":[[[-118.33509599999999,34.010925],[-118.335157,34.010887],[-118.33522600000001,34.010871],[-118.33529299999999,34.010868],[-118.335376,34.010874],[-118.335509,34.010914],[-118.335629,34.010966],[-118.337791,34.012327],[-118.34150099999999,34.01466],[-118.341683,34.014877],[-118.344032,34.016354],[-118.34522699999999,34.017105],[-118.345389,34.017207],[-118.345901,34.017528],[-118.345794,34.017651],[-118.34518199999999,34.018253],[-118.34518199999999,34.020298],[-118.34518300000001,34.0215],[-118.34518300000001,34.023763],[-118.34518357779308,34.02401811532715],[-118.34250817091564,34.02374094170771],[-118.33998382817296,34.02341629093062],[-118.33511098132794,34.02267907176714],[-118.33510959696173,34.02070230238658],[-118.33510905707423,34.01933111554018],[-118.33510972991238,34.01908689701679],[-118.33510984938832,34.0187045990567],[-118.335097,34.018221],[-118.335097,34.01642],[-118.335097,34.014608],[-118.33509599999999,34.011683],[-118.33509599999999,34.010925]]],"type":"Polygon"} +},{ + "id": 1041531581, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000198, + "geom:area_square_m":2028297.572729, + "geom:bbox":"-118.331089,34.105195,-118.316081,34.1203511914", + "geom:latitude":34.112703, + "geom:longitude":-118.323276, + "iso:country":"US", + "lbl:latitude":34.112775, + "lbl:longitude":-118.321496, + "lbl:max_zoom":18.0, + "mps:latitude":34.11277, + "mps:longitude":-118.323775, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Beachwood Canyon" + ], + "name:eng_x_preferred":[ + "Beachwood Canyon" + ], + "name:eng_x_variant":[ + "Beachwood Cyn" + ], + "name:fas_x_preferred":[ + "\u0628\u06cc\u0686\u0648\u0648\u062f \u06a9\u0646\u06cc\u0648\u0646\u060c \u0644\u0633 \u0622\u0646\u062c\u0644\u0633" + ], + "name:fas_x_variant":[ + "\u0628\u06cc\u0686\u0648\u0648\u062f \u06a9\u0646\u06cc\u0648\u0646" + ], + "name:fra_x_preferred":[ + "Beachwood Canyon" + ], + "name:ita_x_preferred":[ + "Beachwood Canyon" + ], + "name:jpn_x_preferred":[ + "\u30ab\u30ea\u30d5\u30a9\u30eb\u30cb\u30a2\u5dde" + ], + "name:spa_x_preferred":[ + "Beachwood Canyon" + ], + "name:urd_x_preferred":[ + "\u0628\u06cc\u0686 \u0648\u0648\u0688 \u06a9\u06cc\u0646\u06cc\u0646\u060c \u0644\u0627\u0633 \u0627\u06cc\u0646\u062c\u0644\u0633\u060c \u06a9\u06cc\u0644\u06cc\u0641\u0648\u0631\u0646\u06cc\u0627" + ], + "name:urd_x_variant":[ + "\u0628\u06cc\u0686 \u0648\u0648\u0688 \u06a9\u06cc\u0646\u06cc\u0646" + ], + "reversegeo:latitude":34.11277, + "reversegeo:longitude":-118.323775, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869347, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4875891" + }, + "wof:country":"US", + "wof:geomhash":"2962eb1031e1cdc708ad3d581914c9bf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041531581, + "neighbourhood_id":85869347, + "region_id":85688637 + } + ], + "wof:id":1041531581, + "wof:lastmodified":1566608536, + "wof:name":"Beachwood Canyon", + "wof:parent_id":85869347, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869107 + ], + "wof:tags":[] +}, + "bbox": [ + -118.331089, + 34.105195, + -118.316081, + 34.12035119136588 +], + "geometry": {"coordinates":[[[-118.32587294134396,34.12035119136588],[-118.31859520054381,34.12016862583057],[-118.31623939618279,34.12021828384188],[-118.316255,34.119848],[-118.316265,34.119437],[-118.3163,34.118057],[-118.31632399999999,34.117108],[-118.316321,34.116935],[-118.3163,34.116766],[-118.31628600000001,34.11669],[-118.31620100000001,34.116365],[-118.31616,34.116137],[-118.316086,34.115357],[-118.316081,34.115165],[-118.316092,34.114974],[-118.316114,34.114804],[-118.316194,34.114234],[-118.316232,34.11398],[-118.316261,34.113837],[-118.3163,34.113714],[-118.316366,34.11356],[-118.316991,34.112486],[-118.317035,34.11241],[-118.317086,34.112304],[-118.317116,34.112204],[-118.317121,34.112181],[-118.317133,34.112067],[-118.317127,34.111968],[-118.317044,34.11156],[-118.317008,34.111325],[-118.317002,34.111268],[-118.316992,34.111092],[-118.31698400000001,34.110163],[-118.316929,34.109681],[-118.31692099999999,34.108312],[-118.31690399999999,34.105262],[-118.317995,34.105259],[-118.31919499999999,34.105255],[-118.31937499999999,34.105255],[-118.32041700000001,34.105252],[-118.32126,34.105249],[-118.322399,34.105246],[-118.322943,34.105244],[-118.323982,34.105241],[-118.32483999999999,34.105239],[-118.32521800000001,34.105197],[-118.32598299999999,34.105196],[-118.32634,34.105195],[-118.32648500000001,34.105195],[-118.32666,34.105208],[-118.326706,34.105215],[-118.326863,34.105244],[-118.327502,34.105408],[-118.327668,34.105436],[-118.327811,34.105448],[-118.328006,34.105448],[-118.328171,34.105432],[-118.32901699999999,34.10528],[-118.329138,34.105263],[-118.329274,34.105252],[-118.329375,34.105249],[-118.32976541914378,34.10524748527975],[-118.329728,34.105801],[-118.329635,34.10682],[-118.329617,34.107011],[-118.329605,34.10714],[-118.329588,34.107333],[-118.32956799999999,34.107522],[-118.329553,34.10771],[-118.32956,34.107821],[-118.32980123697604,34.10899686900355],[-118.32993399999999,34.109644],[-118.329973,34.109721],[-118.33001899999999,34.109778],[-118.33040200000001,34.11014],[-118.330788,34.110921],[-118.330838,34.111058],[-118.330878,34.11122],[-118.33089699999999,34.111387],[-118.33089699999999,34.111527],[-118.330872,34.11181],[-118.330786,34.112718],[-118.330765,34.112948],[-118.330842,34.113383],[-118.330848,34.113433],[-118.330838,34.113465],[-118.330686,34.113858],[-118.330679,34.113917],[-118.330693,34.114044],[-118.330685,34.11409],[-118.330656,34.114141],[-118.330438,34.114363],[-118.330406,34.114396],[-118.330382,34.114445],[-118.330376,34.114495],[-118.330388,34.114547],[-118.33042,34.114596],[-118.330641,34.114794],[-118.33067699999999,34.114818],[-118.330928,34.114963],[-118.33098699999999,34.115016],[-118.33103199999999,34.115077],[-118.331062,34.115151],[-118.33108900000001,34.115361],[-118.33107800000001,34.115438],[-118.331011,34.115672],[-118.3309183260229,34.11596551648537],[-118.3308681899252,34.11612706613354],[-118.33080691247244,34.11627190374915],[-118.33076234705224,34.11638331729961],[-118.33068435756692,34.11652258423769],[-118.33060079740407,34.11667299253081],[-118.33029441014031,34.11704622792486],[-118.33011057778205,34.11727462570331],[-118.32999916423158,34.11739160993129],[-118.32991003339122,34.11746959941662],[-118.3298320439059,34.11751973551432],[-118.32970948900038,34.11755315957947],[-118.329607,34.117554],[-118.329418,34.117503],[-118.329249,34.117479],[-118.329066,34.117469],[-118.32897800000001,34.117497],[-118.328909,34.117504],[-118.328845,34.117516],[-118.32878599999999,34.117533],[-118.328726,34.117559],[-118.32863999999999,34.117604],[-118.328582,34.117629],[-118.32852099999999,34.117659],[-118.328509,34.117665],[-118.328424,34.117734],[-118.328396,34.117753],[-118.328344,34.117786],[-118.328293,34.117822],[-118.328242,34.117858],[-118.32819600000001,34.117898],[-118.328158,34.11794],[-118.32812800000001,34.117981],[-118.328096,34.118026],[-118.32807699999999,34.118079],[-118.328065,34.118144],[-118.328057,34.118198],[-118.32805500000001,34.118253],[-118.328053,34.118335],[-118.32805,34.118389],[-118.328035,34.118404],[-118.328033,34.118472],[-118.328033,34.118529],[-118.328019,34.118587],[-118.32798699999999,34.118637],[-118.327945,34.118682],[-118.327893,34.118722],[-118.32784700000001,34.118766],[-118.327799,34.118807],[-118.32775100000001,34.118847],[-118.327702,34.11889],[-118.327657,34.118931],[-118.32761000000001,34.118972],[-118.327561,34.119012],[-118.327513,34.119051],[-118.327468,34.119092],[-118.32742399999999,34.119131],[-118.327383,34.11917],[-118.327341,34.119208],[-118.327298,34.119248],[-118.32725499999999,34.119285],[-118.32720999999999,34.119323],[-118.327168,34.119361],[-118.327133,34.119397],[-118.327063,34.119429],[-118.32701900000001,34.119458],[-118.32697,34.119493],[-118.32692400000001,34.119534],[-118.326887,34.119588],[-118.32687,34.119639],[-118.32685451832654,34.11969030366531],[-118.3268454644188,34.11974034684196],[-118.326843,34.119801],[-118.326852,34.119852],[-118.326909,34.12],[-118.326913,34.120038],[-118.326904,34.120099],[-118.326877,34.120152],[-118.32685600000001,34.120177],[-118.32680999999999,34.120215],[-118.326746,34.120245],[-118.32669300000001,34.120257],[-118.326638,34.12026],[-118.326596,34.120256],[-118.326531,34.120241],[-118.326489,34.120235],[-118.326392,34.120237],[-118.326339,34.120249],[-118.326294,34.120264],[-118.326257,34.120282],[-118.326205,34.120314],[-118.326165,34.12033],[-118.326114,34.120341],[-118.3260606073306,34.12034578533876],[-118.32587294134396,34.12035119136588]]],"type":"Polygon"} +},{ + "id": 1091648325, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000878, + "geom:area_square_m":8971783.761176, + "geom:bbox":"-118.401912,34.246439,-118.332805,34.276032", + "geom:latitude":34.265383, + "geom:longitude":-118.373806, + "iso:country":"US", + "lbl:latitude":34.264198, + "lbl:longitude":-118.381902, + "lbl:max_zoom":18.0, + "mps:latitude":34.264198, + "mps:longitude":-118.381902, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Hansen Dam" + ], + "name:deu_x_preferred":[ + "Hansen Dam" + ], + "reversegeo:latitude":34.264198, + "reversegeo:longitude":-118.381902, + "src:geom":"mz", + "wof:belongsto":[ + 85865477, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"322c58efec191247d713226eb58d1cf9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1091648325, + "neighbourhood_id":85865477, + "region_id":85688637 + } + ], + "wof:id":1091648325, + "wof:lastmodified":1566625491, + "wof:name":"Hansen Dam", + "wof:parent_id":85865477, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -118.401912, + 34.246439, + -118.332805, + 34.276032 +], + "geometry": {"coordinates":[[[-118.38022100000001,34.249332],[-118.380346,34.249171],[-118.38048499999999,34.249017],[-118.38059699999999,34.248907],[-118.380712,34.248803],[-118.383948,34.246439],[-118.387102,34.249419],[-118.38870436233918,34.25093330850643],[-118.39005,34.252205],[-118.390129,34.252279],[-118.390203,34.252349],[-118.390254,34.252397],[-118.393406,34.255374],[-118.394809,34.256703],[-118.39497,34.256872],[-118.39511899999999,34.257049],[-118.395258,34.257232],[-118.39542400000001,34.257484],[-118.395534,34.257679],[-118.39563200000001,34.257879],[-118.396001,34.258735],[-118.39608699999999,34.258867],[-118.39615999999999,34.258997],[-118.39623899999999,34.259125],[-118.396367,34.259313],[-118.396507,34.259495],[-118.396607,34.259612],[-118.396766,34.259783],[-118.396877,34.259893],[-118.39895,34.261859],[-118.401912,34.264658],[-118.40182900000001,34.265091],[-118.401779,34.265303],[-118.401715,34.265512],[-118.40163800000001,34.265718],[-118.40154800000001,34.26592],[-118.401453,34.266105],[-118.401331,34.266312],[-118.40120400000001,34.266501],[-118.40113599999999,34.266589],[-118.401065,34.266683],[-118.40098,34.266785],[-118.400525,34.267331],[-118.400215,34.267702],[-118.399886,34.268096],[-118.39824400000001,34.270063],[-118.397981,34.270348],[-118.397796,34.270532],[-118.397504,34.270798],[-118.397234,34.271022],[-118.397175,34.27107],[-118.395594,34.272222],[-118.393953,34.27342],[-118.393794,34.273536],[-118.393652,34.273463],[-118.393356,34.273328],[-118.393021,34.273198],[-118.392807,34.273127],[-118.39267,34.273087],[-118.392382,34.273014],[-118.39231700000001,34.272997],[-118.39213700000001,34.27296],[-118.391774,34.272902],[-118.39159100000001,34.272881],[-118.391407,34.272865],[-118.391113,34.272851],[-118.39085300000001,34.27285],[-118.390576,34.27286],[-118.39030099999999,34.272882],[-118.389134,34.273034],[-118.387897,34.273195],[-118.38302,34.273836],[-118.382795,34.273876],[-118.382572,34.273929],[-118.382355,34.273994],[-118.382144,34.274072],[-118.38194,34.274162],[-118.38169600000001,34.274291],[-118.381511,34.274406],[-118.381339,34.274529],[-118.38125599999999,34.27459],[-118.380875,34.274868],[-118.38064,34.27504],[-118.38031599999999,34.275275],[-118.380296,34.275289],[-118.380105,34.275425],[-118.37992,34.27554],[-118.37972499999999,34.275643],[-118.37953,34.275732],[-118.379321,34.275813],[-118.379103,34.275883],[-118.378995,34.275912],[-118.378716,34.275972],[-118.378488,34.276005],[-118.378321,34.27602],[-118.378258,34.276025],[-118.378028,34.276032],[-118.377797,34.276025],[-118.377567,34.276005],[-118.37733900000001,34.275971],[-118.377115,34.275925],[-118.376896,34.275866],[-118.376681,34.275794],[-118.376474,34.27571],[-118.376274,34.275614],[-118.376082,34.275506],[-118.375469,34.27511],[-118.37532899999999,34.275023],[-118.375086,34.274894],[-118.374882,34.274804],[-118.374785,34.274768],[-118.37467100000001,34.274726],[-118.374454,34.27466],[-118.37423200000001,34.274607],[-118.37400599999999,34.274567],[-118.37381000000001,34.274543],[-118.373777,34.27454],[-118.373547,34.274526],[-118.37295899999999,34.274524],[-118.370457,34.274516],[-118.369589,34.274513],[-118.36825399999999,34.274509],[-118.365656,34.274501],[-118.36353,34.274495],[-118.362061,34.274491],[-118.36148300000001,34.274489],[-118.358778,34.274129],[-118.35714400000001,34.273911],[-118.352769,34.273328],[-118.351713,34.273187],[-118.35132900000001,34.273135],[-118.35075399999999,34.273058],[-118.34785100000001,34.272672],[-118.347373,34.27277],[-118.34711299999999,34.272833],[-118.346846,34.272898],[-118.346699,34.27291],[-118.346395,34.272942],[-118.346092,34.27298],[-118.345958,34.273],[-118.345861,34.273028],[-118.345654,34.273089],[-118.34492,34.273328],[-118.343439,34.273811],[-118.342753,34.274036],[-118.342614,34.274079],[-118.342572,34.274086],[-118.342389,34.274128],[-118.34214,34.274172],[-118.34195099999999,34.274195],[-118.341825,34.274206],[-118.341635,34.274216],[-118.341508,34.274217],[-118.341317,34.274213],[-118.341127,34.2742],[-118.34093799999999,34.274179],[-118.34075300000001,34.274151],[-118.340627,34.274127],[-118.340504,34.274099],[-118.34044900000001,34.274084],[-118.340323,34.274051],[-118.340144,34.273996],[-118.339912,34.27391],[-118.33975599999999,34.273837],[-118.339662,34.273794],[-118.33955400000001,34.273739],[-118.339428,34.273669],[-118.339294,34.273587],[-118.339146,34.273488],[-118.339004,34.273381],[-118.33885600000001,34.273256],[-118.33882699999999,34.273231],[-118.338662,34.27307],[-118.338511,34.2729],[-118.338375,34.272722],[-118.33825400000001,34.272536],[-118.33814099999999,34.272327],[-118.33811799999999,34.272278],[-118.33810099999999,34.272235],[-118.338078,34.272194],[-118.33766199999999,34.271312],[-118.33614300000001,34.26809],[-118.335595,34.267117],[-118.33553999999999,34.267039],[-118.33539500000001,34.266851],[-118.335182,34.2666],[-118.33504000000001,34.266449],[-118.334836,34.266249],[-118.33480400000001,34.26622],[-118.334737,34.266159],[-118.334557,34.266004],[-118.334299,34.265802],[-118.334152,34.265696],[-118.33391899999999,34.265541],[-118.3338,34.265466],[-118.333504,34.265296],[-118.332977,34.265031],[-118.33280499999999,34.264944],[-118.33280547580375,34.26494364698431],[-118.33281704964425,34.2649493613731],[-118.33294574947836,34.26485420562314],[-118.3331883008933,34.26467595645742],[-118.33351664590944,34.26443289521615],[-118.33361894515566,34.26435738977398],[-118.33368494617622,34.26430911964968],[-118.33377569488454,34.26424223350607],[-118.33385324554469,34.26418534464349],[-118.33389121284019,34.26416188216182],[-118.33392918732218,34.26414013836069],[-118.33398367822903,34.26411044775833],[-118.33402496659612,34.26408972476294],[-118.33401809815467,34.26408366673252],[-118.33413299999999,34.264028],[-118.334214,34.263991],[-118.334412,34.263893],[-118.33457799999999,34.263825],[-118.33479199999999,34.263754],[-118.334969,34.263709],[-118.335194,34.263666],[-118.335444,34.263639],[-118.335671,34.263631],[-118.335928,34.263642],[-118.33748,34.263793],[-118.33827700000001,34.263875],[-118.339359,34.263983],[-118.33953099999999,34.263996],[-118.33984700000001,34.264006],[-118.34336,34.264144],[-118.343813,34.264176],[-118.34411299999999,34.264206],[-118.344499,34.264257],[-118.34500800000001,34.264344],[-118.345285,34.264401],[-118.34556000000001,34.264465],[-118.345968,34.264573],[-118.346293,34.264671],[-118.34819,34.265271],[-118.34821100000001,34.265277],[-118.34845799999999,34.265346],[-118.348777,34.265422],[-118.349115,34.265487],[-118.349456,34.265537],[-118.3498,34.265573],[-118.353086,34.265834],[-118.354206,34.265928],[-118.355925,34.266065],[-118.35625899999999,34.26608],[-118.356471,34.266083],[-118.359894,34.266123],[-118.36417899999999,34.266174],[-118.364355,34.266172],[-118.36458500000001,34.266158],[-118.364757,34.266139],[-118.36492699999999,34.266113],[-118.365151,34.266066],[-118.36531600000001,34.266022],[-118.36547899999999,34.265971],[-118.36572700000001,34.265874],[-118.365978,34.265756],[-118.36612700000001,34.265674],[-118.366246,34.265601],[-118.366432,34.265473],[-118.36659899999999,34.26534],[-118.36824,34.263895],[-118.36858599999999,34.263591],[-118.36881200000001,34.263374],[-118.368956,34.263223],[-118.369158,34.26299],[-118.36928399999999,34.262832],[-118.369962,34.261945],[-118.37119800000001,34.260326],[-118.372125,34.259113],[-118.37225599999999,34.258956],[-118.372395,34.258802],[-118.37254,34.258653],[-118.372691,34.258508],[-118.372929,34.258298],[-118.37317899999999,34.2581],[-118.373442,34.257912],[-118.373716,34.257736],[-118.37390499999999,34.257626],[-118.374098,34.257521],[-118.375225,34.256954],[-118.375557,34.256787],[-118.37591260016271,34.25660841862513],[-118.37715,34.255987],[-118.37743,34.255842],[-118.37745099999999,34.255831],[-118.377616,34.255722],[-118.37774,34.255625],[-118.37786199999999,34.255519],[-118.37793600000001,34.255439],[-118.377988,34.255373],[-118.378061,34.255251],[-118.378235,34.254928],[-118.378298,34.254784],[-118.378359,34.254599],[-118.378394,34.254448],[-118.37842000000001,34.254258],[-118.378426,34.254066],[-118.378353,34.252799],[-118.37835699999999,34.252643],[-118.37837399999999,34.252487],[-118.37841400000001,34.252295],[-118.37846,34.252144],[-118.378519,34.251996],[-118.37859,34.251852],[-118.378688,34.251689],[-118.37994999999999,34.249745],[-118.3800644839979,34.24957052807701],[-118.38022100000001,34.249332]]],"type":"Polygon"} +},{ + "id": 1041531583, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":229410.155381, + "geom:bbox":"-118.473933875,34.0673631228,-118.468121711,34.0748366806", + "geom:latitude":34.071616, + "geom:longitude":-118.471273, + "iso:country":"US", + "lbl:latitude":34.064617, + "lbl:longitude":-118.476486, + "lbl:max_zoom":18.0, + "mps:latitude":34.071701, + "mps:longitude":-118.471516, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Brentwood Circle" + ], + "name:eng_x_variant":[ + "Brentwood Cir" + ], + "reversegeo:latitude":34.071701, + "reversegeo:longitude":-118.471516, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807211, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4961757" + }, + "wof:country":"US", + "wof:geomhash":"47d7fc4606df186d34ccf6afd607e4fd", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1041531583, + "neighbourhood_id":85807211, + "region_id":85688637 + } + ], + "wof:id":1041531583, + "wof:lastmodified":1566608536, + "wof:name":"Brentwood Circle", + "wof:parent_id":85807211, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869133 + ], + "wof:tags":[] +}, + "bbox": [ + -118.47393387506094, + 34.06736312275746, + -118.46812171143834, + 34.07483668061631 +], + "geometry": {"coordinates":[[[-118.46823999999999,34.071894],[-118.468323,34.071811],[-118.468407,34.071707],[-118.46904600000001,34.070832],[-118.469273,34.070516],[-118.469391,34.07032],[-118.469472,34.070155],[-118.469545,34.069974],[-118.46960199999999,34.069794],[-118.46994599999999,34.068627],[-118.47035111886852,34.06736312275746],[-118.47134229425185,34.06837711642629],[-118.47166245879359,34.0687574986453],[-118.47211458352741,34.06940457221477],[-118.47261878424399,34.07010469629572],[-118.4733095653726,34.07113361481625],[-118.47365712430488,34.07163849804795],[-118.4738379428167,34.07212545438632],[-118.47393387506094,34.07248307881284],[-118.47390905921985,34.07279395483085],[-118.47378828305443,34.07307715960234],[-118.47358144775633,34.07337723142135],[-118.47318296803357,34.07388340453144],[-118.47304962697123,34.07402668623588],[-118.4729058419265,34.07417181150895],[-118.47274017528518,34.07430183990908],[-118.47255846466591,34.07441670081559],[-118.47237647277107,34.07450892355266],[-118.47217410643195,34.07459424797598],[-118.47178139347756,34.07474096853883],[-118.4716278319308,34.07479077228955],[-118.47147623251909,34.07482747228862],[-118.47133330939256,34.07483668061631],[-118.47118843635219,34.07483476717017],[-118.47108409073354,34.07481710246229],[-118.47097396599953,34.07478760350623],[-118.47080098885608,34.07472510676185],[-118.4706232247224,34.07464894983521],[-118.47050536658078,34.07458428730173],[-118.47042612469977,34.07452468760111],[-118.47031966620314,34.07445335209686],[-118.4702066900344,34.07436659538929],[-118.4701395207609,34.07429541848288],[-118.47007968263587,34.07420528181946],[-118.4700028881153,34.07403861779646],[-118.469858463824,34.07236290154727],[-118.46812171143834,34.07199119835301],[-118.46823999999999,34.071894]]],"type":"Polygon"} +},{ + "id": 1041531589, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00004, + "geom:area_square_m":407034.209942, + "geom:bbox":"-118.492016,34.056336,-118.485594,34.066049", + "geom:latitude":34.060532, + "geom:longitude":-118.488858, + "iso:country":"US", + "lbl:latitude":34.059736, + "lbl:longitude":-118.48892, + "lbl:max_zoom":18.0, + "mps:latitude":34.059736, + "mps:longitude":-118.48892, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":34.059736, + "reversegeo:longitude":-118.48892, + "src:geom":"mz", + "wof:belongsto":[ + 85807211, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"8022132ec8f98f0afb0418d47aef3ee2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1041531589, + "neighbourhood_id":85807211, + "region_id":85688637 + } + ], + "wof:id":1041531589, + "wof:lastmodified":1566608536, + "wof:name":"Brentwood Park", + "wof:parent_id":85807211, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551171 + ], + "wof:tags":[] +}, + "bbox": [ + -118.492016, + 34.056336, + -118.485594, + 34.066049 +], + "geometry": {"coordinates":[[[-118.487632,34.065403],[-118.48757000000001,34.065189],[-118.487392,34.064555],[-118.487238,34.062857],[-118.486807,34.061013],[-118.486223,34.059452],[-118.486206,34.059407],[-118.485788,34.058328],[-118.48559400000001,34.057199],[-118.487495,34.056641],[-118.488905,34.056392],[-118.489785,34.056336],[-118.489958,34.056339],[-118.490129,34.056358],[-118.490269,34.056384],[-118.491497,34.056665],[-118.49180200000001,34.057463],[-118.491872,34.057594],[-118.491947,34.0577],[-118.49201600000001,34.05778],[-118.491568,34.057891],[-118.491502,34.057924],[-118.49144800000001,34.05797],[-118.49141299999999,34.058022],[-118.491399,34.058056],[-118.491274,34.058465],[-118.49136,34.059286],[-118.49149800000001,34.060097],[-118.491146,34.060985],[-118.49090938497896,34.06150364100571],[-118.49075000000001,34.061853],[-118.490393,34.06284],[-118.490301,34.063868],[-118.490556,34.065184],[-118.490554,34.065272],[-118.490534,34.065358],[-118.49049599999999,34.065439],[-118.490332,34.065683],[-118.49027599999999,34.065743],[-118.490201,34.065801],[-118.490115,34.065846],[-118.49006,34.065867],[-118.489572,34.066025],[-118.48945500000001,34.066045],[-118.48934800000001,34.066049],[-118.489092,34.06603],[-118.488908,34.066016],[-118.48833,34.065938],[-118.488266,34.065919],[-118.488204,34.065888],[-118.487753,34.065555],[-118.48772099999999,34.065528],[-118.487667,34.065467],[-118.487632,34.065403]]],"type":"Polygon"} +},{ + "id": 1041531599, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":235130.823745, + "geom:bbox":"-118.25447,34.051658,-118.246585,34.057769", + "geom:latitude":34.054719, + "geom:longitude":-118.250526, + "iso:country":"US", + "lbl:latitude":34.054713, + "lbl:longitude":-118.250328, + "lbl:max_zoom":18.0, + "mps:latitude":34.054716, + "mps:longitude":-118.250526, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":20.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Bunker Hill" + ], + "name:eng_x_variant":[ + "Bunker Hl" + ], + "name:fra_x_preferred":[ + "Bunker Hill" + ], + "name:ita_x_preferred":[ + "Bunker Hill" + ], + "name:jpn_x_preferred":[ + "\u30d0\u30f3\u30ab\u30fc\u30fb\u30d2\u30eb" + ], + "name:nld_x_preferred":[ + "Bunker Hill" + ], + "name:pol_x_preferred":[ + "Bunker Hill" + ], + "name:zho_x_preferred":[ + "\u90a6\u514b\u4e18" + ], + "reversegeo:latitude":34.054716, + "reversegeo:longitude":-118.250526, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2928231" + }, + "wof:country":"US", + "wof:geomhash":"b9645f7bc1a6eefef33619c50ce3191b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041531599, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1041531599, + "wof:lastmodified":1566608536, + "wof:name":"Bunker Hill", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869149 + ], + "wof:tags":[] +}, + "bbox": [ + -118.25447, + 34.051658, + -118.246585, + 34.057769 +], + "geometry": {"coordinates":[[[-118.25447,34.055121],[-118.253124,34.056549],[-118.25197300000001,34.057769],[-118.251856,34.057693],[-118.246585,34.054338],[-118.249089,34.051658],[-118.24979,34.05211],[-118.250157,34.052347],[-118.251204,34.053022],[-118.251226,34.053036],[-118.252275,34.053711],[-118.25282710297171,34.05406550306265],[-118.253401,34.054434],[-118.25447,34.055121]]],"type":"Polygon"} +},{ + "id": 1091736553, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000061, + "geom:area_square_m":629890.377751, + "geom:bbox":"-118.253462,34.0515120779,-118.2393958,34.062726505", + "geom:latitude":34.057024, + "geom:longitude":-118.246389, + "iso:country":"US", + "lbl:latitude":34.059165, + "lbl:longitude":-118.251734, + "lbl:max_zoom":18.0, + "mps:latitude":34.057089, + "mps:longitude":-118.246401, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Civic center" + ], + "name:eng_x_variant":[ + "Civic Ctr", + "Civiccenter" + ], + "name:fra_x_preferred":[ + "Civic Center" + ], + "name:ita_x_preferred":[ + "Civic Center" + ], + "name:kor_x_preferred":[ + "\uc2dc\ube45\uc13c\ud130" + ], + "name:nld_x_preferred":[ + "Civic Center" + ], + "name:spa_x_preferred":[ + "Centro c\u00edvico" + ], + "reversegeo:latitude":34.057089, + "reversegeo:longitude":-118.246401, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"bec6d759e93e4dc68e4aaa2c0d3604fc", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1091736553, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1091736553, + "wof:lastmodified":1566625491, + "wof:name":"Civic Center", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866227 + ], + "wof:tags":[] +}, + "bbox": [ + -118.253462, + 34.05151207790922, + -118.23939580035636, + 34.06272650496462 +], + "geometry": {"coordinates":[[[-118.246585,34.054338],[-118.251856,34.057693],[-118.25197300000001,34.057769],[-118.253462,34.058712],[-118.253294,34.058875],[-118.253045,34.059105],[-118.252906,34.059233],[-118.252503,34.059578],[-118.252227,34.0598],[-118.251728,34.060201],[-118.251137,34.060684],[-118.250668,34.061079],[-118.250086,34.061591],[-118.248959,34.062584],[-118.24891599999999,34.062623],[-118.24885081447258,34.06268303684147],[-118.24880191113057,34.06272650496462],[-118.24822457322439,34.06205330105873],[-118.24818481378992,34.06200632611765],[-118.24813179971343,34.06194323266266],[-118.24807051035654,34.06187294503545],[-118.24796614498517,34.06175053541536],[-118.24788994269623,34.06166172979921],[-118.24779717637178,34.06155372306462],[-118.24768287293841,34.06141999819467],[-118.24758016765365,34.0613003332715],[-118.24743936212273,34.06113609354603],[-118.24732174390599,34.06099790950361],[-118.24712295751338,34.06076474849146],[-118.24709811101093,34.0607362901273],[-118.24707160981174,34.06070646092898],[-118.24699541291274,34.06061868419881],[-118.24694074863106,34.0605549080183],[-118.24690099099321,34.06050827606994],[-118.24679331802493,34.06038312430749],[-118.24674362681667,34.06032620805755],[-118.24671049694899,34.06028780543745],[-118.24667074919262,34.06024426404024],[-118.24662934224791,34.06019763415357],[-118.24658462770634,34.06014929479242],[-118.246521701619,34.06008278700817],[-118.24647864626576,34.06003719222932],[-118.24645049306473,34.06000667959957],[-118.24640909869645,34.05996451559246],[-118.24637764328845,34.05993400963444],[-118.24631969207117,34.05987539181484],[-118.24629319985512,34.05984831068844],[-118.24625843595194,34.05981540758086],[-118.24624518849645,34.05980135164208],[-118.24621870077198,34.05977598813489],[-118.2461938704392,34.05975268162439],[-118.24614752006548,34.05970915334811],[-118.24609951230008,34.05966322421627],[-118.24605316551961,34.0596210704573],[-118.24600847433425,34.059580286776],[-118.24597867811458,34.05955218151605],[-118.24595550697015,34.05953196343548],[-118.245924059647,34.05950386188057],[-118.24581648549339,34.05941099718974],[-118.24578338616844,34.059382555488],[-118.24572877039581,34.05933526575145],[-118.24566919951606,34.05928661109466],[-118.24557487820785,34.05920951985963],[-118.24538459167448,34.05905740015417],[-118.24529193224954,34.05898373881886],[-118.24523402055812,34.0589381732175],[-118.24518934733905,34.05890322910453],[-118.2451016529027,34.05883402254173],[-118.2450007262822,34.05875556971372],[-118.24493950699392,34.05870760610643],[-118.24491137804742,34.05868499366148],[-118.24488490559432,34.0586644382413],[-118.24483527277657,34.05862709910675],[-118.24478729285893,34.05859044389673],[-118.24476578719101,34.05857468720482],[-118.24474427703153,34.05855755667374],[-118.24471284408143,34.0585342632242],[-118.24468471782988,34.05851302457005],[-118.2446168878394,34.05846232654589],[-118.2445837974976,34.05843663220232],[-118.24456725591996,34.05842498732231],[-118.2445523645475,34.05841333871957],[-118.24451762489882,34.05838799042574],[-118.24446965037107,34.0583530520397],[-118.24443822101424,34.05833078928606],[-118.24440844096424,34.05830817971754],[-118.24436873722532,34.05827906412134],[-118.2443389607686,34.05825748529197],[-118.24429595122943,34.05822665870229],[-118.2442297813256,34.05817904830329],[-118.24416692081527,34.05813383577724],[-118.24413549235675,34.05811225988781],[-118.24410240830316,34.05808862620398],[-118.24405940145891,34.05805883030825],[-118.24400316063394,34.05801944353553],[-118.24386090881544,34.05792115030111],[-118.24381955666794,34.05789272447246],[-118.24378812731111,34.05787046159795],[-118.24376001183933,34.05785231356273],[-118.24370211991086,34.05781258658101],[-118.24365414987467,34.05777902180675],[-118.2436012238331,34.05774443667918],[-118.24347056207837,34.05765779927636],[-118.24334817201081,34.05757698391168],[-118.24330848084831,34.05755198962218],[-118.24324728761115,34.05751226845354],[-118.24319105576932,34.05747562839033],[-118.2431381351176,34.05744241699337],[-118.24290825893135,34.05729724303327],[-118.24282061120741,34.05724280524595],[-118.24276272916039,34.05720616878744],[-118.24264862245805,34.05713529747187],[-118.24250805498069,34.0570479903777],[-118.24229802976559,34.0569161710896],[-118.24224180241532,34.05688090537642],[-118.24216407748199,34.05683263036079],[-118.24210950482849,34.05679839091815],[-118.2420317825901,34.0567508027883],[-118.24193255648044,34.05668848761691],[-118.24182837346704,34.05662377817856],[-118.24169442118345,34.05653954873859],[-118.24165307891745,34.0565138701855],[-118.2416200047453,34.05649332763507],[-118.2414595961783,34.05639369448316],[-118.24119830860148,34.05623003171358],[-118.24113546785411,34.05619065674319],[-118.24109908878003,34.05616874619343],[-118.24107097510492,34.05615094089056],[-118.24104947572521,34.0561369007175],[-118.24102136205009,34.05611909540794],[-118.24097671308552,34.05609170645245],[-118.24093041032253,34.05606294584415],[-118.24086260548489,34.05601980268069],[-118.2406608573468,34.0558944894872],[-118.24058148130999,34.05584518610451],[-118.24053848434723,34.05581813718155],[-118.24046076210885,34.05576986081645],[-118.24036153959246,34.05570720108111],[-118.2401201020885,34.05555654796013],[-118.2400423798501,34.05550827070174],[-118.23999111659009,34.05547642869894],[-118.23997788710088,34.05546821142993],[-118.23996300381329,34.0554586239949],[-118.23992993143777,34.05543842428838],[-118.23989354877044,34.05541513965693],[-118.23985716879808,34.05539254196288],[-118.23980259614454,34.05535830193853],[-118.2397199143075,34.05530728720888],[-118.23968849573045,34.05528777068965],[-118.23964715346443,34.05526174791275],[-118.23960911699866,34.05523743542011],[-118.23959423460934,34.05522819105941],[-118.23957439172304,34.05521620859216],[-118.23955950933376,34.05520696422914],[-118.2395495856448,34.05520045722705],[-118.2395347041538,34.05519155670716],[-118.23939580125467,34.05510630472804],[-118.23939580035636,34.05510596088286],[-118.23941883495689,34.05507981078274],[-118.23944022653872,34.05505606833655],[-118.23947807166334,34.055013744829],[-118.2396343803194,34.05483654063501],[-118.23972487300789,34.05473331524048],[-118.2397643593545,34.05468789694994],[-118.23978739395503,34.05466174672086],[-118.24029415247141,34.0540850612656],[-118.24052285096634,34.05382527525972],[-118.24082558231878,34.05348015892792],[-118.24084861691928,34.05345435143387],[-118.24086013332121,34.05344093227816],[-118.24087494294697,34.05342475858297],[-118.24090456309683,34.05339241192759],[-118.24093582716368,34.05335834525432],[-118.24096709212884,34.053324277823],[-118.24099506566679,34.05329399573311],[-118.2410164545537,34.05326956582573],[-118.24107237647675,34.05320007035191],[-118.24131249166065,34.05289423347202],[-118.24166279419725,34.05244803464198],[-118.24213150187484,34.05185080905912],[-118.24232062868319,34.05161033410864],[-118.24237654341972,34.05153912095351],[-118.24239463459124,34.05151641430494],[-118.24239793922504,34.05151207790922],[-118.246585,34.054338]]],"type":"Polygon"} +},{ + "id": 1092582151, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":62714.338324, + "geom:bbox":"-118.38834,34.0289094171,-118.383370339,34.0320028907", + "geom:latitude":34.030302, + "geom:longitude":-118.385552, + "iso:country":"US", + "lbl:latitude":34.030643, + "lbl:longitude":-118.379493, + "lbl:max_zoom":18.0, + "mps:latitude":34.030266, + "mps:longitude":-118.385516, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:note":"no ref", + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Helms Bakery District" + ], + "reversegeo:latitude":34.030266, + "reversegeo:longitude":-118.385516, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865813, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"037600b32de7516cb08d30e2fcb29c8c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092582151, + "neighbourhood_id":85865813, + "region_id":85688637 + } + ], + "wof:id":1092582151, + "wof:lastmodified":1566625490, + "wof:name":"Helms District", + "wof:parent_id":85865813, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85886315 + ], + "wof:tags":[] +}, + "bbox": [ + -118.38834, + 34.02890941708048, + -118.38337033879827, + 34.03200289069749 +], + "geometry": {"coordinates":[[[-118.38390558676679,34.03200289069749],[-118.38337033879827,34.03044302518928],[-118.38421863852348,34.03021889699324],[-118.38541340952943,34.02950441817448],[-118.38622801350719,34.02901715792974],[-118.38640738730651,34.02890941708048],[-118.38667446632194,34.029211859269],[-118.3868110740255,34.02913413691478],[-118.38690213983909,34.02920013890515],[-118.38718362064516,34.02940463940517],[-118.38776990445696,34.02907123787238],[-118.387812,34.029102],[-118.388058,34.02928],[-118.38834,34.029485],[-118.387602,34.029904],[-118.38681099999999,34.030353],[-118.38602,34.030802],[-118.385229,34.031251],[-118.384411,34.031716],[-118.38390558676679,34.03200289069749]]],"type":"Polygon"} +},{ + "id": 1092456413, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":37665.147916, + "geom:bbox":"-118.361413786,34.0712437646,-118.35893426,34.0730325077", + "geom:latitude":34.072226, + "geom:longitude":-118.360266, + "iso:country":"US", + "lbl:latitude":34.072063, + "lbl:longitude":-118.343693, + "lbl:max_zoom":18.0, + "mps:latitude":34.072188, + "mps:longitude":-118.360265, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Farmers Market" + ], + "reversegeo:latitude":34.072188, + "reversegeo:longitude":-118.360265, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869227, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"9668e73635e7e601de7d43d7e5c3ea5b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1092456413, + "neighbourhood_id":85869227, + "region_id":85688637 + } + ], + "wof:id":1092456413, + "wof:lastmodified":1566625490, + "wof:name":"Farmer Market", + "wof:parent_id":85869227, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868359 + ], + "wof:tags":[] +}, + "bbox": [ + -118.36141378579084, + 34.0712437645954, + -118.3589342603917, + 34.07303250769022 +], + "geometry": {"coordinates":[[[-118.359466,34.071246],[-118.361411,34.071516],[-118.36141378579084,34.07303250769022],[-118.35893426039171,34.07300504360765],[-118.3594498305734,34.0712437645954],[-118.359466,34.071246]]],"type":"Polygon"} +},{ + "id": 1092456417, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000159, + "geom:area_square_m":1625144.459304, + "geom:bbox":"-118.264367,34.027549,-118.24524,34.044595", + "geom:latitude":34.035921, + "geom:longitude":-118.254372, + "iso:country":"US", + "lbl:latitude":34.035442, + "lbl:longitude":-118.255863, + "lbl:max_zoom":18.0, + "mps:latitude":34.035575, + "mps:longitude":-118.255315, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fashion District" + ], + "name:fra_x_preferred":[ + "Fashion District" + ], + "name:ita_x_preferred":[ + "Fashion District" + ], + "name:nld_x_preferred":[ + "Fashion District" + ], + "name:pol_x_preferred":[ + "Fashion District" + ], + "reversegeo:latitude":34.035575, + "reversegeo:longitude":-118.255315, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2491300" + }, + "wof:country":"US", + "wof:geomhash":"c5d60204016035d0256eca8c21bbf6b3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092456417, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1092456417, + "wof:lastmodified":1566625490, + "wof:name":"Fashion District", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869233 + ], + "wof:tags":[] +}, + "bbox": [ + -118.264367, + 34.027549, + -118.24524, + 34.044595 +], + "geometry": {"coordinates":[[[-118.256061,34.042328],[-118.25546127512143,34.04193687507918],[-118.25524521184718,34.041796018625],[-118.254943,34.041599],[-118.25451700000001,34.041122],[-118.25451691262943,34.04112192045982],[-118.254093,34.040736],[-118.252996,34.041464],[-118.25230500000001,34.041914],[-118.25176399999999,34.042264],[-118.250412,34.04326],[-118.248997,34.044595],[-118.247905,34.043941],[-118.247114,34.043467],[-118.246162,34.042856],[-118.24524,34.04226],[-118.245487,34.041922],[-118.246765,34.040704],[-118.248003,34.039523],[-118.24882700000001,34.038737],[-118.249056,34.038518],[-118.25033000000001,34.037303],[-118.24926000000001,34.036327],[-118.248548,34.035679],[-118.247828,34.035022],[-118.24871400000001,34.033736],[-118.249318,34.032897],[-118.24990099999999,34.032084],[-118.250496,34.031258],[-118.251043,34.030495],[-118.250049,34.030005],[-118.249008,34.029492],[-118.24975000000001,34.028612],[-118.250771,34.029112],[-118.251239,34.028534],[-118.25178,34.027865],[-118.251935,34.027673],[-118.252036,34.027549],[-118.252684,34.027897],[-118.253955,34.02858],[-118.256068,34.029713],[-118.256472,34.02993],[-118.256968,34.030179],[-118.257537,34.03044],[-118.25763499999999,34.030482],[-118.257913,34.0306],[-118.25856,34.030869],[-118.258691,34.03091],[-118.25987000000001,34.031286],[-118.26131700000001,34.031729],[-118.26168699999999,34.031854],[-118.262152,34.03203],[-118.262286,34.032087],[-118.262557,34.032201],[-118.262833,34.032332],[-118.262968,34.0324],[-118.263372,34.032617],[-118.26351200000001,34.032692],[-118.26436699999999,34.033173],[-118.26415,34.033442],[-118.26356199999999,34.034168],[-118.263008,34.034854],[-118.26245299999999,34.035539],[-118.26188,34.036247],[-118.26118,34.037113],[-118.260254,34.038173],[-118.259039,34.039562],[-118.258968,34.039621],[-118.258441,34.040056],[-118.257402,34.040901],[-118.256061,34.042328]]],"type":"Polygon"} +},{ + "id": 1092456419, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000167, + "geom:area_square_m":1713254.645682, + "geom:bbox":"-118.286809,34.06191,-118.259647,34.0782662155", + "geom:latitude":34.070859, + "geom:longitude":-118.272694, + "iso:country":"US", + "lbl:latitude":34.069991, + "lbl:longitude":-118.267585, + "lbl:max_zoom":18.0, + "mps:latitude":34.071138, + "mps:longitude":-118.272684, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Historic Filipinotown" + ], + "name:fra_x_preferred":[ + "Historic Filipinotown" + ], + "name:ita_x_preferred":[ + "Historic Filipinotown" + ], + "name:nld_x_preferred":[ + "Historic Filipinotown" + ], + "name:tgl_x_preferred":[ + "Historic Filipinotown" + ], + "name:zho_x_preferred":[ + "\u65e7\u83f2\u5f8b\u5bbe\u57ce" + ], + "reversegeo:latitude":34.071138, + "reversegeo:longitude":-118.272684, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865821, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3138354" + }, + "wof:country":"US", + "wof:geomhash":"f40a4708880fd3a8f4f506d568b450b7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092456419, + "neighbourhood_id":85865821, + "region_id":85688637 + } + ], + "wof:id":1092456419, + "wof:lastmodified":1566625490, + "wof:name":"Filipinotown", + "wof:parent_id":85865821, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869343 + ], + "wof:tags":[] +}, + "bbox": [ + -118.286809, + 34.06191, + -118.259647, + 34.07826621553952 +], + "geometry": {"coordinates":[[[-118.259647,34.062004],[-118.259789,34.061939],[-118.259927,34.06191],[-118.26056800000001,34.062194],[-118.260642,34.062323],[-118.263063,34.063415],[-118.263752,34.063725],[-118.26560600000001,34.064561],[-118.265795,34.064646],[-118.266594,34.065005],[-118.26700099999999,34.065189],[-118.26781,34.065553],[-118.267932,34.065608],[-118.26836,34.065801],[-118.26886,34.066026],[-118.26938199999999,34.066264],[-118.269735,34.066423],[-118.270302,34.066679],[-118.271327,34.067123],[-118.272199,34.067501],[-118.272785,34.067755],[-118.273528,34.068076],[-118.27391299999999,34.068243],[-118.27460000000001,34.068541],[-118.274979,34.068705],[-118.27541711752669,34.06889456523594],[-118.275848,34.069081],[-118.27679000000001,34.06949],[-118.277646,34.069861],[-118.278572,34.070262],[-118.27946300000001,34.070648],[-118.280081,34.070915],[-118.281268,34.07143],[-118.282191,34.071829],[-118.283114,34.072229],[-118.28371199999999,34.072488],[-118.284036,34.072629],[-118.28428700000001,34.072738],[-118.28436000000001,34.072782],[-118.285577,34.073534],[-118.286017,34.073806],[-118.286159,34.073902],[-118.28622799999999,34.073957],[-118.286354,34.074075],[-118.286412,34.074138],[-118.28651499999999,34.074271],[-118.28655999999999,34.074341],[-118.286613,34.074436],[-118.286795,34.074798],[-118.28679986409507,34.07528635514282],[-118.286805,34.075802],[-118.28680900000001,34.076331],[-118.286807,34.076474],[-118.286784,34.077734],[-118.28678600000001,34.078033],[-118.286787,34.078114],[-118.286788,34.078248],[-118.28678814809383,34.07826621553952],[-118.28442210225803,34.07782035103376],[-118.28427235669342,34.07778861414175],[-118.28413753663727,34.07776171954578],[-118.28389958639326,34.07770732169115],[-118.28334933863732,34.0775849587569],[-118.28225048165255,34.07733541383586],[-118.28208191817937,34.07729218551884],[-118.28154323263948,34.07716978701404],[-118.28112189941501,34.07708249312061],[-118.28001970249402,34.07681782289667],[-118.2798478502886,34.07677803263212],[-118.278874371168,34.07648969644585],[-118.27848602587741,34.07639029514276],[-118.27770589564703,34.07614993446438],[-118.27660687516887,34.07584022863976],[-118.27566156452066,34.07557515943078],[-118.27523514144183,34.07544251550828],[-118.2745757564637,34.07526196997011],[-118.2742634041546,34.07517234291595],[-118.27426017201617,34.07517127888524],[-118.27426023209101,34.07517118509791],[-118.272704495431,34.07457338636389],[-118.2722210023172,34.07436698539361],[-118.27172759653348,34.07413854160963],[-118.27092843998841,34.07374496725996],[-118.27009820763951,34.07336220211],[-118.26835474249167,34.07263484863596],[-118.26416254401397,34.07077333848061],[-118.26353229596822,34.07052264604857],[-118.26275376016466,34.07023309419511],[-118.26167074050549,34.06986281605946],[-118.26123655031969,34.06970965240051],[-118.261214,34.069617],[-118.261088,34.06909],[-118.26085999999999,34.068138],[-118.26065,34.067264],[-118.260255,34.065619],[-118.259879,34.064355],[-118.25976799999999,34.062962],[-118.25972400000001,34.062614],[-118.259647,34.062004]]],"type":"Polygon"} +},{ + "id": 1108546309, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000155, + "geom:area_square_m":1587231.82314, + "geom:bbox":"-118.435315934,34.066901,-118.416327284,34.0827567357", + "geom:latitude":34.073938, + "geom:longitude":-118.426214, + "iso:country":"US", + "lbl:latitude":34.086747, + "lbl:longitude":-118.43873, + "lbl:max_zoom":18.0, + "mps:latitude":34.072536, + "mps:longitude":-118.42686, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0647\u0648\u0644\u0645\u0628\u064a \u0647\u064a\u0644\u0632" + ], + "name:deu_x_preferred":[ + "Holmby Hills" + ], + "name:eng_x_preferred":[ + "Holmby Hills" + ], + "name:eng_x_variant":[ + "Holmby Hls" + ], + "name:fra_x_preferred":[ + "Holmby Hills" + ], + "name:jpn_x_preferred":[ + "\u30db\u30eb\u30e0\u30d3\u30fc\u30fb\u30d2\u30eb\u30ba" + ], + "name:nob_x_preferred":[ + "Holmby Hills" + ], + "name:pol_x_preferred":[ + "Holmby Hills" + ], + "name:por_x_preferred":[ + "Holmby Hills" + ], + "name:spa_x_preferred":[ + "Holmby Hills" + ], + "name:swe_x_preferred":[ + "Holmby Hills" + ], + "reversegeo:latitude":34.072536, + "reversegeo:longitude":-118.42686, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85857293, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3139443" + }, + "wof:country":"US", + "wof:geomhash":"7d1dad1ca9e2ed589d6f45e12ed0d62e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108546309, + "neighbourhood_id":85857293, + "region_id":85688637 + } + ], + "wof:id":1108546309, + "wof:lastmodified":1566624172, + "wof:name":"Holmby Hills", + "wof:parent_id":85857293, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869349 + ], + "wof:tags":[] +}, + "bbox": [ + -118.43531593387999, + 34.066901, + -118.4163272840249, + 34.08275673567253 +], + "geometry": {"coordinates":[[[-118.43475390112584,34.08241531587298],[-118.43474364955182,34.08242690165496],[-118.4347331554327,34.08243833714452],[-118.43472242505659,34.08244961787783],[-118.4347114575253,34.08246074236676],[-118.43470025912696,34.08247170465933],[-118.43468883345486,34.08248250326756],[-118.43467718320395,34.0824931337275],[-118.43466531017083,34.0825035938071],[-118.43465503524062,34.08251233595954],[-118.43465322064374,34.08251388053043],[-118.43464091641928,34.08252399017739],[-118.43462840198907,34.08253391828411],[-118.43462359779893,34.0825375996591],[-118.43461568274297,34.08254366410652],[-118.43460275957929,34.08255322318067],[-118.43458963878625,34.08256259327452],[-118.43457632216048,34.08257177215617],[-118.43456281509185,34.08258075461757],[-118.43454912297031,34.08258954065879],[-118.43453524849073,34.08259812730384],[-118.43452119524645,34.08260651008868],[-118.43450696862729,34.08261468752541],[-118.43449257312484,34.08262265738195],[-118.43447801233239,34.08263041742646],[-118.43446329074153,34.08263796468281],[-118.43444841194548,34.0826452961751],[-118.43443338313077,34.08265241115932],[-118.4344182078907,34.08265930740354],[-118.43440288892016,34.08266598193176],[-118.43438743250738,34.082672431768],[-118.43437184404223,34.08267865691224],[-118.43435612711802,34.08268465587655],[-118.43434028712464,34.0826904249409],[-118.43432432765529,34.08269596261738],[-118.4343082540999,34.08270126741795],[-118.4342920727467,34.08270633859869],[-118.43427578718891,34.08271117392753],[-118.43425940281645,34.08271577191655],[-118.43424292412087,34.08272013182174],[-118.43422635649209,34.08272425141117],[-118.43420970531997,34.08272812994084],[-118.43419297509614,34.08273176592273],[-118.43417617121041,34.08273515861287],[-118.43415929905277,34.08273830652322],[-118.43414236311472,34.08274120965394],[-118.43412536878617,34.08274386502887],[-118.434108321457,34.08274627413613],[-118.43409122561886,34.08274843474375],[-118.43407408755986,34.0827503475956],[-118.43405691177162,34.08275201120384],[-118.43403970454236,34.08275342408042],[-118.43402246856701,34.08275458771335],[-118.43400521282869,34.08275550135862],[-118.43398793912411,34.08275616352819],[-118.43397065553803,34.08275657571022],[-118.43395336476547,34.08275673567253],[-118.43393607399285,34.08275664490316],[-118.43391878681354,34.08275630265823],[-118.43390151041399,34.08275571042564],[-118.43388424838749,34.08275486746139],[-118.43386700702227,34.08275377227751],[-118.43384979080983,34.08275242859393],[-118.43383260603844,34.08275083417873],[-118.43381545719969,34.08274899126386],[-118.43379835058172,34.08274689389722],[-118.43272253448566,34.0826073396622],[-118.43272063095559,34.08260709190619],[-118.43267872454757,34.08260165615358],[-118.43252624990112,34.08258187733217],[-118.43251548898235,34.08258044436444],[-118.43249239239807,34.08257711788524],[-118.43246974676809,34.08257351612129],[-118.43244718108814,34.08256958550366],[-118.43242470164645,34.08256532826442],[-118.43240231383295,34.0825607451475],[-118.43238002663077,34.08255583764078],[-118.43236084310786,34.08255131404437],[-118.43235784453145,34.08255060723236],[-118.43233577651819,34.08254505541019],[-118.43231565066255,34.08253967173449],[-118.43231382798082,34.08253918440618],[-118.43229200610597,34.0825329949643],[-118.43227031628342,34.08252648931646],[-118.43224876749639,34.08251967118277],[-118.43222736513474,34.08251253981911],[-118.4322061145884,34.08250509968943],[-118.4321850230438,34.08249735153768],[-118.43216409858591,34.08248929833982],[-118.43214334480791,34.08248094232788],[-118.43212277159125,34.08247228573374],[-118.43210238163094,34.08246333302131],[-118.43208218301179,34.0824540849347],[-118.43206218112365,34.0824445451937],[-118.43204238225481,34.08243471603033],[-118.4320227926934,34.08242460042055],[-118.43200341782936,34.08241420357238],[-118.43198426484919,34.08240352548567],[-118.43196533824448,34.08239257062439],[-118.43194664430341,34.08238134419654],[-118.43192818931421,34.08236984694608],[-118.43190997776844,34.08235808408094],[-118.43189201505602,34.08234605783309],[-118.43187430746512,34.08233377266644],[-118.43185686128403,34.08232123230104],[-118.43183968010588,34.08230844045676],[-118.43182277021899,34.08229540159766],[-118.43180613611487,34.08228211869962],[-118.43178978318343,34.08226859622664],[-118.43177371681459,34.08225483864269],[-118.43175794149987,34.08224084966778],[-118.43174246083258,34.08222663376581],[-118.4317272811009,34.08221219465684],[-118.43171147793842,34.08219662240942],[-118.43106887348983,34.08155207170612],[-118.43106448162641,34.08154763213043],[-118.43105339821244,34.08153614369501],[-118.43104281156681,34.0815247676053],[-118.43103246566969,34.08151324047766],[-118.43102236231768,34.08150156528816],[-118.43101250600238,34.08148974426866],[-118.43100289762212,34.0814777826274],[-118.43099354346504,34.08146568185229],[-118.43098444263292,34.08145344938355],[-118.43097560141388,34.08144108447699],[-118.43096701980798,34.0814285945729],[-118.43095870230674,34.08141598115923],[-118.43095064980855,34.08140324870006],[-118.43094286590662,34.08139040240346],[-118.43093535419419,34.08137744375745],[-118.4309281128747,34.0813643787142],[-118.43092114823631,34.08135120950566],[-118.43091446027903,34.08133794208405],[-118.43090805169777,34.08132458016934],[-118.43090192518754,34.08131112673764],[-118.4308960807483,34.08129758550903],[-118.43089052197331,34.08128396243563],[-118.43088480958643,34.08126911841692],[-118.43036766744366,34.07988364611828],[-118.43036172508809,34.079868203649],[-118.43035524015004,34.07985231029092],[-118.43034842193703,34.07983651216659],[-118.43034127404231,34.07982081597227],[-118.4303337973642,34.07980522617226],[-118.43032599549596,34.07978974723093],[-118.43031786933589,34.07977438435649],[-118.4303094233756,34.07975914052525],[-118.43030065851336,34.07974402317756],[-118.43029157654583,34.07972903454566],[-118.43028218376124,34.07971418058192],[-118.43027247926122,34.07969946426252],[-118.43026246843569,34.07968489228386],[-118.43025215308128,34.07967046762225],[-118.43024153679124,34.07965619474189],[-118.43023062315888,34.07964207810718],[-118.43021941487908,34.07962812218239],[-118.43020791554513,34.07961433143181],[-118.43019612875028,34.07960070957568],[-118.43018405808779,34.07958726033438],[-118.43017170625265,34.07957398966028],[-118.43015907953301,34.07956089904144],[-118.43014617972551,34.07954799443036],[-118.43013301132176,34.07953527880318],[-118.43012956179108,34.07953206455426],[-118.43011957791502,34.07952275662434],[-118.43010588309853,34.07951043235812],[-118.43009193316045,34.07949830749263],[-118.43007773079583,34.07948638723629],[-118.43006327959786,34.07947467530934],[-118.43004858675305,34.07946317543213],[-118.43003365315977,34.07945188983683],[-118.43001848600451,34.07944082373177],[-118.43000308798223,34.07942997860518],[-118.42998746627946,34.0794193581773],[-118.4299716235911,34.07940896765653],[-118.4299555653071,34.07939880778693],[-118.42993929591896,34.07938888303293],[-118.42992916921077,34.07938292847756],[-118.42992282081664,34.0793791963707],[-118.42990614628836,34.07936975077647],[-118.42988927592729,34.07936054699442],[-118.42987221422513,34.07935159097688],[-118.42985496746999,34.0793428842121],[-118.4298375410518,34.07933442893223],[-118.42981994036045,34.07932622736944],[-118.42980216988749,34.07931828324408],[-118.4297842341245,34.07931059804427],[-118.42976614205469,34.07930317549023],[-118.42974789637296,34.07929601558215],[-118.4297295024692,34.07928912278426],[-118.42971096752994,34.07928249709661],[-118.42969229694508,34.07927614223949],[-118.42967349520617,34.07927005895706],[-118.42965456860146,34.07926424948145],[-118.42963552341912,34.07925871604484],[-118.42961636504904,34.07925346087936],[-118.42959709888115,34.07924848324113],[-118.42957773210195,34.07924378759439],[-118.42955827010132,34.0792393724511],[-118.42953940368371,34.07923538661965],[-118.42946182427748,34.07921959210039],[-118.42944359117215,34.07921602144345],[-118.42942669296333,34.07921297012753],[-118.42940973456741,34.0792101643454],[-118.42939271957759,34.07920760632913],[-118.42937565248553,34.07920529459071],[-118.42935854137599,34.07920323136224],[-118.42934138804564,34.0792014173878],[-118.42932419968099,34.07919985192336],[-118.42930698167193,34.07919853645704],[-118.42928973761175,34.07919747173286],[-118.42927247558525,34.07919665775086],[-118.42925519828739,34.07919609451102],[-118.42923791110805,34.07919578201332],[-118.42922062033547,34.07919572025783],[-118.42920333046121,34.07919590998856],[-118.42918604867177,34.0791963512055],[-118.42916877766211,34.07919704242058],[-118.42915152372045,34.07919798437787],[-118.42913429223667,34.07919917707722],[-118.42911708949899,34.07920062051882],[-118.42909991820233,34.07920231247036],[-118.42909614078657,34.07920274029451],[-118.42908278643152,34.07920425367596],[-118.42906569598325,34.07920644413557],[-118.42904865584065,34.07920888161708],[-118.4290316678003,34.07921156612042],[-118.42901473994709,34.07921449764562],[-118.42899787587424,34.07921767470451],[-118.42898108187001,34.07922109506494],[-118.42896436152763,34.07922475947104],[-118.42894771933867,34.0792286656905],[-118.428931163388,34.07923281372334],[-118.42891469547222,34.07923720133741],[-118.42889832277784,34.07924182704463],[-118.42888204979646,34.0792466893568],[-118.42886588101966,34.07925178827392],[-118.42884982183733,34.07925712007573],[-118.42883387674105,34.07926268550622],[-118.42881805112067,34.07926848158926],[-118.42880234946783,34.07927450534848],[-118.42878677627405,34.07928075678394],[-118.42877133603096,34.07928723440751],[-118.4287560341284,34.07929393375483],[-118.42874087685465,34.07930085556999],[-118.42872586510791,34.07930799613258],[-118.42871100607479,34.07931535321059],[-118.42869630334853,34.07932292457172],[-118.42868176231904,34.07933070872785],[-118.42866738657956,34.07933870344686],[-118.42865318062164,34.07934690575244],[-118.42863914803858,34.07935531192437],[-118.42862529511861,34.07936392196262],[-118.42861162455658,34.0793727306588],[-118.42859813994588,34.07938173652477],[-118.42858484667629,34.0793909373284],[-118.42857174923947,34.07940033009335],[-118.42855885033029,34.07940991109951],[-118.42854615444037,34.07941967885859],[-118.42853366516297,34.07942962816233],[-118.42852138609136,34.07943975826663],[-118.4285093217171,34.07945006396309],[-118.42849747563345,34.07946054450761],[-118.42848585053535,34.07947119543596],[-118.42847445181272,34.07948201302784],[-118.42846328036386,34.07949299430696],[-118.42845234068031,34.07950413629722],[-118.42844163815199,34.07951543602235],[-118.42843117277894,34.07952688901796],[-118.42842094905271,34.07953849230798],[-118.42841097146484,34.0795502429161],[-118.42840124091369,34.079562135634],[-118.42839176189082,34.07957416822956],[-118.42838253619284,34.07958633623839],[-118.42837356741306,34.0795986374284],[-118.42836485914469,34.07961106584722],[-118.42835641138775,34.07962361926263],[-118.4283482223456,34.07963630139476],[-118.42833977279206,34.07964995077453],[-118.42826251588099,34.07977744532461],[-118.42797708338601,34.08024843578257],[-118.42797214534686,34.08025649068156],[-118.42796289269943,34.08027109381122],[-118.42795317382638,34.08028580333499],[-118.42794314952614,34.08030036925796],[-118.42793282069698,34.08031478711598],[-118.42792219003391,34.0803290539331],[-118.42791126292681,34.08034316226896],[-118.42790004117228,34.08035711137964],[-118.42788853016023,34.08037089382489],[-118.42787672989064,34.08038450886083],[-118.42786464665174,34.08039794904718],[-118.42785228224018,34.0804112121519],[-118.42783964294414,34.08042429371089],[-118.42782673056024,34.08043719000413],[-118.42781354868178,34.08044989731152],[-118.42780010449523,34.08046241042491],[-118.42778639889895,34.08047472636828],[-118.42777243638447,34.08048684142153],[-118.42775822234174,34.08049875260871],[-118.42774702304509,34.0805078149013],[-118.42774376036398,34.08051045472164],[-118.42772905584108,34.08052194552828],[-118.42771411146802,34.08053322056458],[-118.42769893353299,34.08054427759848],[-118.42768352652756,34.08055511142195],[-118.42766789404499,34.08056572129098],[-118.42765204057685,34.08057610199744],[-118.42763597420799,34.08058625056534],[-118.4276196958367,34.08059616476265],[-118.42760321085294,34.08060584086926],[-118.4275865273415,34.08061527590922],[-118.42756964709898,34.08062446690639],[-118.42755257731194,34.08063341088483],[-118.42753532337029,34.08064210710056],[-118.42751788886727,34.08065055108941],[-118.42750027919276,34.08065873987545],[-118.42748250153328,34.08066667271462],[-118.4274645594821,34.08067434588693],[-118.42744645932743,34.0806817564163],[-118.42742820735751,34.08068890430282],[-118.42740980716552,34.0806957850823],[-118.42739126593806,34.08070239801089],[-118.42737258816668,34.08070874160054],[-118.42735378103788,34.08071481138711],[-118.42733484904328,34.08072060737076],[-118.42731579847103,34.08072612806338],[-118.42722612504612,34.08074912077701],[-118.42713097818617,34.08076439195909],[-118.42711104007844,34.0807669454642],[-118.4271023219286,34.08076793278968],[-118.42709105166504,34.08076920879812],[-118.42707101833591,34.08077118196104],[-118.42705094727751,34.08077286346482],[-118.42702940747363,34.0807743522653],[-118.42700623812581,34.08077578005541],[-118.42598659727776,34.08083991228534],[-118.42566948838919,34.08085843261912],[-118.42565294411661,34.08085933289234],[-118.42563567220863,34.08086002111774],[-118.4256183904192,34.08086045860586],[-118.4256010996466,34.0808606461008],[-118.42558380887401,34.08086058137037],[-118.42556652169469,34.08086026515872],[-118.42554924439685,34.08085969895383],[-118.42553198147202,34.08085888126767],[-118.42551473741185,34.08085781358826],[-118.42549752030111,34.08085649591557],[-118.42548033103812,34.08085492824966],[-118.4254631795044,34.08085311059045],[-118.42544606749655,34.08085104442603],[-118.42542900130282,34.08084873050034],[-118.42541198631299,34.08084616881348],[-118.42539502791708,34.08084336010929],[-118.42537813060659,34.08084030513191],[-118.42536130066971,34.08083700685737],[-118.42534454169979,34.0808334637976],[-118.42532785908664,34.08082967744061],[-118.42531126091515,34.08082565001847],[-118.42529474718525,34.08082138153115],[-118.42527832688017,34.08081687495469],[-118.42526200269485,34.08081213028908],[-118.42524578091744,34.08080714827826],[-118.42522966693787,34.0808019333864],[-118.42521433089935,34.08079671030993],[-118.42336679819385,34.08015186026653],[-118.42335801716195,34.08014875318185],[-118.42334249157889,34.08014305239544],[-118.42332679621427,34.08013701381729],[-118.42331123110534,34.08013074905241],[-118.42329579984535,34.0801242588448],[-118.42328050692598,34.08011754617048],[-118.4232653559404,34.08011061177355],[-118.42325035407514,34.08010345863001],[-118.42323550312686,34.08009608897194],[-118.4232208102821,34.08008850428732],[-118.42320627823572,34.0800807068082],[-118.42319191237769,34.08007270099871],[-118.42317771630127,34.08006448685889],[-118.423163694498,34.08005606885276],[-118.42314997991853,34.08004752659207],[-118.42313575779096,34.08003833553222],[-118.42312271784633,34.08002960874909],[-118.42310943625485,34.08002039611031],[-118.42309634959778,34.08001099225361],[-118.42308346236672,34.08000140015495],[-118.42307077905322,34.07999162204645],[-118.42305830235225,34.07998166164818],[-118.42304603585704,34.07997152193631],[-118.42303398316088,34.0799612043987],[-118.42302215055194,34.07995071424368],[-118.42301053803027,34.07994005370318],[-118.42300466664157,34.07993446971629],[-118.42324109603781,34.07993247867703],[-118.42384026784075,34.07974523149407],[-118.42361830581213,34.07925612231605],[-118.42348927719462,34.078817402291],[-118.42364375418583,34.07876886521957],[-118.42346876057185,34.07838326036048],[-118.4234525055568,34.07834724539469],[-118.42344617423066,34.07833256752834],[-118.42344014833176,34.07831781451043],[-118.42343442606337,34.07830298262066],[-118.4234290209003,34.07828804284102],[-118.42342392924928,34.07827304279068],[-118.42341915560186,34.07825798470176],[-118.42341469097492,34.07824283509197],[-118.42341054524988,34.07822764753291],[-118.42340672381665,34.07821238258981],[-118.42340322128537,34.07819707895334],[-118.42340004663914,34.07818171802219],[-118.42339718370835,34.07816630202844],[-118.42339465584912,34.07815086445441],[-118.4233924450952,34.07813539116312],[-118.42339055953143,34.07811987545806],[-118.42338900095443,34.07810434338101],[-118.42338776307595,34.07808878897952],[-118.42336826334608,34.07780526235813],[-118.42336722399529,34.07779211119753],[-118.42336589898025,34.07777896152297],[-118.42336431075883,34.07776583267992],[-118.42336243687315,34.07775274252566],[-118.42336029079793,34.07773968957214],[-118.4233578725332,34.0777266537299],[-118.42335518477384,34.07771366029672],[-118.423352224825,34.07770070034412],[-118.42334898460176,34.07768778280061],[-118.4233454784772,34.07767491808308],[-118.42334171184123,34.07766211512025],[-118.42333766493086,34.07764936572747],[-118.42333335301751,34.0776366743691],[-118.42332878238935,34.07762403955709],[-118.42332394675817,34.0776114798929],[-118.42331884522567,34.07759899388832],[-118.42331347779184,34.07758658972813],[-118.42330786152469,34.07757425253118],[-118.42330197755957,34.07756199569054],[-118.42329584655775,34.0775498519447],[-118.42328945145125,34.07753778111469],[-118.42328280930805,34.07752580403407],[-118.42327592012812,34.07751392442321],[-118.42326878301321,34.07750215567522],[-118.42326140065819,34.07749048142082],[-118.42325376946987,34.07747891654119],[-118.42324590112628,34.07746746922107],[-118.42323778664431,34.07745614913315],[-118.42322944039701,34.07744494288455],[-118.42322085789279,34.07743385121933],[-118.42321204811481,34.07742288827465],[-118.4232039381244,34.07741313665449],[-118.42301646152126,34.07719177546853],[-118.42301442593882,34.07718945474637],[-118.42301228884675,34.07718720619794],[-118.42301005743158,34.07718499708458],[-118.42300773887985,34.07718286386531],[-118.42300408632991,34.0771798020593],[-118.42300025321858,34.07717688980929],[-118.42299623864758,34.07717416357407],[-118.42299206148151,34.077171589127],[-118.42298772800858,34.0771692200404],[-118.42298325529677,34.07716705631421],[-118.4229786433461,34.07716506000151],[-118.4229739235976,34.07716328839483],[-118.42296908706811,34.07716171991648],[-118.4229641669953,34.07716035977489],[-118.42295916517578,34.07715922061909],[-118.42295409777927,34.07715830691345],[-118.42294897558553,34.07715760228864],[-118.42294382464569,34.07715713427491],[-118.42293864495976,34.07715687459797],[-118.42293345629071,34.0771568515321],[-118.42292827750305,34.07715705689269],[-118.4229231139868,34.07715748472717],[-118.42291798999644,34.07715811717816],[-118.42291291182015,34.07715900930609],[-118.42290789472928,34.07716008968115],[-118.42290458982733,34.07716094014166],[-118.42290132445129,34.0771618828656],[-118.42289649870158,34.07716348557074],[-118.42289178524129,34.07716529066011],[-118.42288719934176,34.07716728027628],[-118.4228827347148,34.07716949385442],[-118.42287842549638,34.07717187707816],[-118.42287425641516,34.07717446119801],[-118.42287026430202,34.07717721496338],[-118.42286644915698,34.07718013539813],[-118.42286274899637,34.07718329765211],[-118.42278040402753,34.07705439143369],[-118.422779351202,34.0770527567319],[-118.42278543279647,34.07704598949771],[-118.42279137515207,34.07703913223161],[-118.42279717916713,34.07703219758265],[-118.4228028304686,34.07702517438977],[-118.42280832905644,34.07701807306994],[-118.42281368481217,34.0770108824621],[-118.42281888605766,34.07700361521537],[-118.42282393369125,34.07699629439563],[-118.42282879717018,34.07698887907939],[-118.42283356093613,34.07698141019012],[-118.42283814683566,34.07697386838214],[-118.4228425629536,34.07696624919105],[-118.42284682366299,34.07695859577245],[-118.42285092806553,34.07695085083356],[-118.42285485909321,34.07694306645869],[-118.42285863381403,34.07693521065316],[-118.42286224144823,34.07692731689971],[-118.42286568558902,34.07691936585278],[-118.42286896084654,34.07691136197667],[-118.42287206003427,34.07690332387293],[-118.42287458519856,34.07689639888565],[-118.42330134604393,34.07569376844492],[-118.42255818597907,34.07527801077266],[-118.42185105554361,34.07509738749981],[-118.42094275279017,34.07543209399253],[-118.4203974170222,34.07425741144978],[-118.41962324352046,34.07258974177823],[-118.41845379063244,34.07231488042637],[-118.41834513850051,34.07202391202993],[-118.41768990553562,34.07074188815819],[-118.41739377680054,34.07021108598876],[-118.41672504305527,34.06927798660288],[-118.41638338321,34.06884493355822],[-118.41694482307604,34.06854218548357],[-118.41710958128569,34.06856527824225],[-118.41726498623659,34.068387684921],[-118.4163272840249,34.06707907156824],[-118.416782,34.067083],[-118.41719000000001,34.067083],[-118.42438,34.068066],[-118.424735,34.06803],[-118.42538399999999,34.067977],[-118.426485,34.067829],[-118.426772,34.067765],[-118.42699,34.067702],[-118.42720199999999,34.067627],[-118.427284,34.067595],[-118.42886,34.066901],[-118.430083,34.068826],[-118.43118,34.070551],[-118.431758,34.071461],[-118.431797,34.071536],[-118.43182400000001,34.071627],[-118.431826,34.071642],[-118.43183000000001,34.071733],[-118.43164,34.072846],[-118.431573,34.073242],[-118.43153599999999,34.07346],[-118.43146,34.073904],[-118.43144599999999,34.07404],[-118.431449,34.074192],[-118.431466,34.074319],[-118.431496,34.074443],[-118.431545,34.07458],[-118.431608,34.074729],[-118.432822,34.07758],[-118.432982,34.077955],[-118.43302,34.078029],[-118.434428,34.080011],[-118.43446,34.080056],[-118.435007,34.080482],[-118.435104,34.080553],[-118.435198,34.080645],[-118.435258,34.080725],[-118.43531593387999,34.08081387652243],[-118.4352249462198,34.08094235589975],[-118.43521585526912,34.08095598274824],[-118.43520704998271,34.08096973905511],[-118.43519853395382,34.08098362184426],[-118.43519031077568,34.08099762739545],[-118.43518238404164,34.08101174901241],[-118.43517475285329,34.08102598371894],[-118.43516742260059,34.08104032705088],[-118.43516039418179,34.08105477454402],[-118.43515366849527,34.08106932247809],[-118.43514725093088,34.08108396490095],[-118.4351411405903,34.08109869883639],[-118.43513534016853,34.08111351982021],[-118.43512985146214,34.08112842190013],[-118.43512467536945,34.08114340135606],[-118.43511981548376,34.08115845521182],[-118.4351152718051,34.08117357602716],[-118.43511104612998,34.08118876008184],[-118.43510713935679,34.08120400365576],[-118.43510358202829,34.08121917505658],[-118.43510115118714,34.08123048050506],[-118.43492737299376,34.08207209864043],[-118.43492396209061,34.08208772819998],[-118.43492055657735,34.08210183401079],[-118.43491685462007,34.08211588699412],[-118.43491285801538,34.08212988491792],[-118.43490856945819,34.08214382331804],[-118.43490398894855,34.08215769624253],[-118.43489911738477,34.08217150071521],[-118.43489395746178,34.08218523301616],[-118.43488851097621,34.08219888793724],[-118.43488277792808,34.0822124617584],[-118.43487676101232,34.0822259492716],[-118.43487046292387,34.08223934824487],[-118.43486388366273,34.08225265421409],[-118.43485702772047,34.08226586197118],[-118.43484989509712,34.08227896779619],[-118.43484248848758,34.08229196871309],[-118.43483481058685,34.08230485951383],[-118.43482686319153,34.08231763796632],[-118.43481864989491,34.08233029811861],[-118.43481017069693,34.08234283699466],[-118.43480143008919,34.08235525161848],[-118.43479243166502,34.08236753678202],[-118.43478317542433,34.08237968876522],[-118.43477366765535,34.0823917053361],[-118.43476390745977,34.08240358277472],[-118.43475390112584,34.08241531587298]]],"type":"Polygon"} +},{ + "id": 1092456421, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000081, + "geom:area_square_m":826805.118226, + "geom:bbox":"-118.264295,34.045163,-118.248017,34.056183", + "geom:latitude":34.050577, + "geom:longitude":-118.25596, + "iso:country":"US", + "lbl:latitude":34.05008, + "lbl:longitude":-118.257026, + "lbl:max_zoom":18.0, + "mps:latitude":34.051118, + "mps:longitude":-118.25596, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ces_x_preferred":[ + "Financial District" + ], + "name:eng_x_preferred":[ + "Financial District" + ], + "name:eng_x_variant":[ + "Financial Core" + ], + "name:fas_x_preferred":[ + "\u0645\u0646\u0637\u0642\u0647 \u0627\u0642\u062a\u0635\u0627\u062f\u06cc" + ], + "name:fra_x_preferred":[ + "Financial District" + ], + "name:ind_x_preferred":[ + "Financial District" + ], + "name:ita_x_preferred":[ + "Financial District" + ], + "name:nld_x_preferred":[ + "Financial District" + ], + "name:pol_x_preferred":[ + "Financial District" + ], + "name:sco_x_preferred":[ + "Financial District" + ], + "reversegeo:latitude":34.051118, + "reversegeo:longitude":-118.25596, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3488365" + }, + "wof:country":"US", + "wof:geomhash":"364a797a4b71a22be527fb30855bf9b2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092456421, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1092456421, + "wof:lastmodified":1566625489, + "wof:name":"Financial District", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869239 + ], + "wof:tags":[] +}, + "bbox": [ + -118.264295, + 34.045163, + -118.248017, + 34.056183 +], + "geometry": {"coordinates":[[[-118.25070100000001,34.048079],[-118.25285889877533,34.04951503297377],[-118.256865,34.045163],[-118.257926,34.045849],[-118.25902499999999,34.04656],[-118.26010100000001,34.047256],[-118.26118099999999,34.047954],[-118.262697,34.04873],[-118.263171,34.04898],[-118.263424,34.049112],[-118.26369099999999,34.049231],[-118.26382599999999,34.049281],[-118.263901,34.049309],[-118.26406799999999,34.049359],[-118.264295,34.049419],[-118.26404599999999,34.049576],[-118.26370799999999,34.049781],[-118.262916,34.050249],[-118.262787,34.050327],[-118.261169,34.051308],[-118.260389,34.051781],[-118.260107,34.051958],[-118.259821,34.052152],[-118.259694,34.052247],[-118.259421,34.052467],[-118.25936299999999,34.052517],[-118.25920499999999,34.052653],[-118.259005,34.052839],[-118.258932,34.052907],[-118.258691,34.053151],[-118.25850199999999,34.053354],[-118.25832,34.053559],[-118.257178,34.054927],[-118.257153,34.054957],[-118.25713500000001,34.054978],[-118.257081,34.055043],[-118.25691399999999,34.055233],[-118.25648200000001,34.055718],[-118.25612700000001,34.056099],[-118.256045,34.056183],[-118.255897,34.056087],[-118.25541200000001,34.055771],[-118.25508600000001,34.055546],[-118.25447,34.055121],[-118.253401,34.054434],[-118.252275,34.053711],[-118.251226,34.053036],[-118.251204,34.053022],[-118.250157,34.052347],[-118.24979,34.05211],[-118.249089,34.051658],[-118.248017,34.050963],[-118.249359,34.049521],[-118.25070100000001,34.048079]]],"type":"Polygon"} +},{ + "id": 1092456425, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00009, + "geom:area_square_m":918603.618084, + "geom:bbox":"-118.283049,34.0957809448,-118.273044636,34.107188", + "geom:latitude":34.101052, + "geom:longitude":-118.27844, + "iso:country":"US", + "lbl:latitude":34.106054, + "lbl:longitude":-118.282113, + "lbl:max_zoom":18.0, + "mps:latitude":34.100912, + "mps:longitude":-118.27844, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Franklin Hills" + ], + "name:eng_x_variant":[ + "Franklin Hls" + ], + "name:ita_x_preferred":[ + "Franklin Hills" + ], + "reversegeo:latitude":34.100912, + "reversegeo:longitude":-118.27844, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85868353, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5491571" + }, + "wof:country":"US", + "wof:geomhash":"197a317ab69436b576c67cf1e1321da0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092456425, + "neighbourhood_id":85868353, + "region_id":85688637 + } + ], + "wof:id":1092456425, + "wof:lastmodified":1566625489, + "wof:name":"Franklin Hills", + "wof:parent_id":85868353, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869263 + ], + "wof:tags":[] +}, + "bbox": [ + -118.283049, + 34.09578094475829, + -118.27304463645243, + 34.107188 +], + "geometry": {"coordinates":[[[-118.27717489249943,34.09578094475829],[-118.27873394472616,34.09578903686229],[-118.27962742797236,34.09579384168811],[-118.28058036621566,34.0957988458779],[-118.28302601122726,34.09581131722597],[-118.28303099999999,34.098174],[-118.283033,34.099122],[-118.283036,34.099999],[-118.283038,34.100897],[-118.28304,34.101804],[-118.28304199999999,34.102711],[-118.283045,34.103617],[-118.283046,34.104197],[-118.283047,34.104521],[-118.28304900000001,34.105431],[-118.282107,34.105433],[-118.28089900000001,34.105436],[-118.279083,34.10544],[-118.278578,34.105442],[-118.278578,34.105925],[-118.278254,34.106185],[-118.277598,34.106712],[-118.277006,34.107188],[-118.27477399999999,34.105269],[-118.274492,34.105026],[-118.273906,34.104522],[-118.2733723648408,34.10406278001896],[-118.27337375132475,34.10405762091064],[-118.27337686129226,34.10399853451963],[-118.27337511766228,34.10397037259046],[-118.27337007182535,34.103942562481],[-118.27328814187818,34.10363704564557],[-118.27325803394311,34.10352135959673],[-118.27309251126718,34.10290655277576],[-118.27307069298554,34.10280012200698],[-118.27305377591212,34.10267753648171],[-118.27304511615279,34.1025545885303],[-118.27304463645243,34.10240757798532],[-118.27304615460527,34.10236669960928],[-118.27304767455472,34.10232650852056],[-118.27305087165881,34.10229387035521],[-118.27305569291693,34.1022529852297],[-118.27308628055236,34.10201007220709],[-118.27328454951535,34.1005164965308],[-118.2733120586243,34.10034263147041],[-118.27336905313581,34.10009450669896],[-118.2734131514331,34.09994327345149],[-118.27345567049214,34.09981402772065],[-118.27350153038572,34.09969645149907],[-118.2735769322757,34.09952179105161],[-118.27366061303938,34.09935363683046],[-118.27369344736132,34.09929345292866],[-118.27375585242579,34.09918511406141],[-118.27383964907214,34.09905268267557],[-118.27393992171909,34.09890819148156],[-118.2739892509063,34.098841787027],[-118.27401885039488,34.09880256278258],[-118.27405338882095,34.09875851898535],[-118.27412742078013,34.09867007575171],[-118.27422449811962,34.09855891011699],[-118.27439897879559,34.0983805882082],[-118.27448953167115,34.09829451158749],[-118.27460315867314,34.09819395609495],[-118.2750314340781,34.09785052759162],[-118.27516156672512,34.09774684281631],[-118.27530322924878,34.09763454452731],[-118.27544158687051,34.09752156543821],[-118.27553209483034,34.09742243579284],[-118.27556333284602,34.0973794289931],[-118.27560932479194,34.09730341460342],[-118.27590663032008,34.09681120962382],[-118.27606923886121,34.09654085898062],[-118.27614808489204,34.09641152845728],[-118.27621216711113,34.09631245925477],[-118.27630757807576,34.09619820336876],[-118.27639812735809,34.09611212527236],[-118.27648213780347,34.09604667080825],[-118.27659255602325,34.09597634750337],[-118.27663047121644,34.0959553079292],[-118.27668982739884,34.09592563247243],[-118.27679207723774,34.09588177612738],[-118.27683331440087,34.0958665686713],[-118.27689930643828,34.09584580803078],[-118.2769867592278,34.09582259401625],[-118.27717489249943,34.09578094475829]]],"type":"Polygon"} +},{ + "id": 1108558929, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":153701.26179, + "geom:bbox":"-118.256865,34.043774,-118.250701,34.049515033", + "geom:latitude":34.046638, + "geom:longitude":-118.25378, + "iso:country":"US", + "lbl:latitude":34.046419, + "lbl:longitude":-118.255093, + "lbl:max_zoom":18.0, + "mps:latitude":34.046642, + "mps:longitude":-118.253779, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Jewelry District" + ], + "name:fra_x_preferred":[ + "Jewelry District" + ], + "name:ita_x_preferred":[ + "Jewelry District" + ], + "name:nld_x_preferred":[ + "Jewelry District" + ], + "name:pol_x_preferred":[ + "Jewelry District" + ], + "reversegeo:latitude":34.046642, + "reversegeo:longitude":-118.253779, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4171089" + }, + "wof:country":"US", + "wof:geomhash":"cbc87072c6b28c2f9226fb3d13c7560f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108558929, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1108558929, + "wof:lastmodified":1566624172, + "wof:name":"Jewelry District", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869373 + ], + "wof:tags":[] +}, + "bbox": [ + -118.256865, + 34.043774, + -118.250701, + 34.04951503297377 +], + "geometry": {"coordinates":[[[-118.256865,34.045163],[-118.25285889877533,34.04951503297377],[-118.25070100000001,34.048079],[-118.252032,34.046648],[-118.253367,34.045213],[-118.254706,34.043774],[-118.255785,34.044468],[-118.256865,34.045163]]],"type":"Polygon"} +},{ + "id": 1092456431, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000067, + "geom:area_square_m":687022.225473, + "geom:bbox":"-118.413214,34.257346,-118.401912,34.2676299765", + "geom:latitude":34.263045, + "geom:longitude":-118.406865, + "iso:country":"US", + "lbl:latitude":34.263012, + "lbl:longitude":-118.405837, + "lbl:max_zoom":18.0, + "mps:latitude":34.263012, + "mps:longitude":-118.405837, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":34.263012, + "reversegeo:longitude":-118.405837, + "src:geom":"mz", + "wof:belongsto":[ + 85840179, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"6152019053f0c606e51a284ab271c0b7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1092456431, + "neighbourhood_id":85840179, + "region_id":85688637 + } + ], + "wof:id":1092456431, + "wof:lastmodified":1566625489, + "wof:name":"Hansen Hills", + "wof:parent_id":85840179, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551231 + ], + "wof:tags":[] +}, + "bbox": [ + -118.413214, + 34.257346, + -118.401912, + 34.26762997650321 +], + "geometry": {"coordinates":[[[-118.401912,34.264658],[-118.40218900000001,34.263209],[-118.402788,34.260073],[-118.402821,34.259922],[-118.40288700000001,34.259698],[-118.40292700000001,34.259588],[-118.402995,34.259425],[-118.403047,34.259318],[-118.403132,34.25916],[-118.403194,34.259058],[-118.403271,34.258942],[-118.40338199999999,34.258794],[-118.403407,34.258761],[-118.40356800000001,34.258574],[-118.4037,34.25844],[-118.40384,34.258312],[-118.404008,34.258172],[-118.405141,34.257346],[-118.405495,34.257656],[-118.40625,34.258418],[-118.4066,34.258794],[-118.40702,34.259245],[-118.407184,34.259411],[-118.40733899999999,34.259571],[-118.407466,34.259748],[-118.40756,34.259943],[-118.40762100000001,34.260054],[-118.407669,34.26014],[-118.407826,34.26032],[-118.40834599999999,34.260812],[-118.40848994532122,34.26094783572565],[-118.408843,34.261281],[-118.409004,34.261428],[-118.409192,34.261554],[-118.409415,34.261639],[-118.409666,34.261671],[-118.409797,34.261669],[-118.41006299999999,34.261638],[-118.410326,34.261597],[-118.41071599999999,34.261535],[-118.411214,34.261447],[-118.411675,34.261372],[-118.41199899999999,34.261337],[-118.412311,34.261381],[-118.412508,34.261445],[-118.412712,34.261531],[-118.412873,34.261632],[-118.413014,34.261761],[-118.413127,34.261906],[-118.413186,34.262062],[-118.413214,34.26224],[-118.413207,34.262322],[-118.4132,34.262414],[-118.413144,34.262586],[-118.412918,34.262963],[-118.41267999999999,34.263684],[-118.412654,34.263751],[-118.412605,34.263843],[-118.412543,34.26393],[-118.412458,34.26402],[-118.412189,34.264253],[-118.412116,34.264333],[-118.41193699999999,34.264595],[-118.41189199999999,34.264771],[-118.411748,34.265089],[-118.411669,34.265225],[-118.411582,34.265341],[-118.411157,34.265817],[-118.411084,34.265915],[-118.411006,34.266054],[-118.410991,34.266207],[-118.41083399999999,34.266383],[-118.410749,34.266476],[-118.410658,34.266563],[-118.410465,34.266725],[-118.41036099999999,34.266804],[-118.409733,34.267257],[-118.40944871830386,34.26746128169612],[-118.40940000000001,34.267416],[-118.40929,34.267315],[-118.409199,34.267248],[-118.408935,34.267102],[-118.408737,34.266993],[-118.408632,34.266918],[-118.40813,34.266447],[-118.407459,34.265813],[-118.40684694114556,34.26625950758181],[-118.405677,34.267113],[-118.40496916655829,34.26762997650321],[-118.402039,34.264858],[-118.401912,34.264658]]],"type":"Polygon"} +},{ + "id": 1108561153, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00114, + "geom:area_square_m":11650058.963737, + "geom:bbox":"-118.36713518,34.2211271885,-118.266814647,34.237562", + "geom:latitude":34.228527, + "geom:longitude":-118.313393, + "iso:country":"US", + "lbl:latitude":34.235837, + "lbl:longitude":-118.337288, + "lbl:max_zoom":18.0, + "mps:latitude":34.229489, + "mps:longitude":-118.322467, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "La Tuna Cyn", + "Latuna Canyon" + ], + "reversegeo:latitude":34.229489, + "reversegeo:longitude":-118.322467, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865489, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ec018f4a56852035e9343038a5baef93", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1108561153, + "neighbourhood_id":85865489, + "region_id":85688637 + } + ], + "wof:id":1108561153, + "wof:lastmodified":1566623963, + "wof:name":"La Tuna Canyon", + "wof:parent_id":85865489, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868385, + 420551287 + ], + "wof:tags":[] +}, + "bbox": [ + -118.3671351800297, + 34.2211271884607, + -118.26681464748053, + 34.237562 +], + "geometry": {"coordinates":[[[-118.36713518002971,34.2342147606204],[-118.36712300000001,34.234213],[-118.36689699999999,34.234184],[-118.36673,34.234169],[-118.366086,34.23413],[-118.36506900000001,34.234115],[-118.363991,34.234099],[-118.36336300000001,34.23409],[-118.363288,34.234088],[-118.362988,34.234081],[-118.362666,34.234057],[-118.36177000000001,34.233932],[-118.35818500000001,34.233868],[-118.358034,34.23387],[-118.357883,34.233881],[-118.357696,34.233906],[-118.35735,34.23398],[-118.357122,34.234036],[-118.356872,34.234076],[-118.356556,34.234106],[-118.356365,34.234112],[-118.35535400000001,34.234098],[-118.353909,34.234073],[-118.353714,34.234071],[-118.35346,34.234077],[-118.35307899999999,34.234108],[-118.351837,34.234236],[-118.35114,34.234308],[-118.349568,34.234471],[-118.348461,34.234585],[-118.34652800000001,34.234785],[-118.345741,34.234867],[-118.344302,34.235015],[-118.335493,34.236314],[-118.33523700000001,34.236343],[-118.33506,34.23635],[-118.33264200000001,34.236433],[-118.33161200000001,34.236469],[-118.32955200000001,34.236541],[-118.329408,34.236542],[-118.329066,34.236538],[-118.328902,34.236523],[-118.328711,34.236491],[-118.327631,34.236308],[-118.327378,34.236265],[-118.32719,34.236239],[-118.32710400000001,34.236235],[-118.327017,34.23623],[-118.32684399999999,34.236236],[-118.326666,34.236259],[-118.32648399999999,34.236299],[-118.32632099999999,34.236351],[-118.325738,34.236586],[-118.325323,34.236773],[-118.32484599999999,34.237008],[-118.324527,34.237173],[-118.324325,34.237247],[-118.32405,34.237298],[-118.322862,34.237498],[-118.32245,34.237546],[-118.322283,34.237562],[-118.322023,34.23755],[-118.32170499999999,34.237514],[-118.32131200000001,34.237445],[-118.320921,34.237353],[-118.320323,34.237195],[-118.32021899999999,34.237155],[-118.320106,34.237111],[-118.319908,34.23702],[-118.31903800000001,34.2366],[-118.318833,34.236512],[-118.31862099999999,34.236436],[-118.318403,34.236373],[-118.317696,34.236211],[-118.31765,34.2362],[-118.317447,34.236144],[-118.317235,34.236068],[-118.317032,34.235977],[-118.316839,34.235872],[-118.316658,34.235753],[-118.31649,34.235621],[-118.31633600000001,34.235478],[-118.316225,34.235356],[-118.3158,34.234819],[-118.315702,34.234701],[-118.31555899999999,34.23455],[-118.315404,34.234408],[-118.315237,34.234275],[-118.31506,34.234152],[-118.314824,34.234013],[-118.314575,34.233892],[-118.314367,34.233809],[-118.31429300000001,34.233784],[-118.314153,34.233738],[-118.31393300000001,34.233679],[-118.313705,34.233632],[-118.31347700000001,34.2336],[-118.31282299999999,34.233542],[-118.31258099999999,34.233513],[-118.31235599999999,34.233473],[-118.312134,34.233419],[-118.311781,34.233313],[-118.311605,34.233269],[-118.31156,34.233258],[-118.311333,34.233219],[-118.31115,34.2332],[-118.31096599999999,34.233191],[-118.31073499999999,34.233196],[-118.310551,34.233211],[-118.310382,34.233237],[-118.31032399999999,34.233246],[-118.31014500000001,34.233285],[-118.309635,34.23343],[-118.30938500000001,34.233493],[-118.30916000000001,34.233534],[-118.308932,34.233563],[-118.308701,34.233579],[-118.308413,34.233579],[-118.308183,34.233564],[-118.307954,34.233536],[-118.30739199999999,34.233435],[-118.307256,34.233413],[-118.30702700000001,34.23339],[-118.30679600000001,34.233384],[-118.30656500000001,34.233394],[-118.306337,34.233421],[-118.30522999999999,34.233641],[-118.305059,34.233671],[-118.30487599999999,34.233693],[-118.30469100000001,34.233704],[-118.304507,34.233704],[-118.304276,34.233689],[-118.30409299999999,34.233665],[-118.30345699999999,34.233601],[-118.302943,34.233546],[-118.30240999999999,34.233473],[-118.301574,34.233323],[-118.300802,34.233152],[-118.300144,34.232961],[-118.299976,34.232895],[-118.299537,34.232744],[-118.29933200000001,34.232665],[-118.299165,34.232613],[-118.29895999999999,34.232566],[-118.298564,34.232498],[-118.29844,34.232486],[-118.29825700000001,34.232481],[-118.298225,34.23248],[-118.29813,34.232478],[-118.297887,34.232494],[-118.297648,34.23253],[-118.29724899999999,34.232604],[-118.29646,34.232797],[-118.29203699999999,34.233878],[-118.291769,34.234027],[-118.29174999999999,34.234038],[-118.291574,34.234161],[-118.29145,34.234253],[-118.291338,34.234343],[-118.291156,34.234498],[-118.29070290722846,34.23491846981256],[-118.2905102373651,34.2348992326248],[-118.29043246032951,34.23489151923895],[-118.29037950284689,34.23488546349537],[-118.290025347436,34.23484440711675],[-118.28998562932402,34.23483969412068],[-118.2899359812349,34.23483397331842],[-118.2888999398447,34.23469699626793],[-118.28844315370924,34.23463591508743],[-118.28821145124799,34.23460486686292],[-118.28791685234384,34.23456400641351],[-118.28738392500492,34.2344893616633],[-118.2871356674913,34.23445457178637],[-118.28703967621497,34.23444140415136],[-118.28693871725515,34.23442721682072],[-118.28683114759312,34.23441476289281],[-118.2867831559974,34.23440938072186],[-118.28669710098644,34.23439928033108],[-118.286594496313,34.23438750149143],[-118.28654981500905,34.23438245500827],[-118.28649189792777,34.23437709660084],[-118.28643894493672,34.23437241254297],[-118.28636944407982,34.23436605077946],[-118.28630656200994,34.23436001727836],[-118.28624864672526,34.23435500198592],[-118.28615101512521,34.23434595841702],[-118.28608316896506,34.23433959293813],[-118.28601201520807,34.23433357800203],[-118.28583827654053,34.23432128002238],[-118.28573072394651,34.23431363342449],[-118.28564302771352,34.2343073147318],[-118.28555699066888,34.23430270865109],[-118.28551066365134,34.23430041378009],[-118.28544944615967,34.23429712297953],[-118.28539153806152,34.23429451172809],[-118.28534521284062,34.23429290383289],[-118.2852707613682,34.23428998808382],[-118.28521616625682,34.23428839875543],[-118.28515164655815,34.23428717705202],[-118.28503584024332,34.23428470171017],[-118.28497133042613,34.23428622791107],[-118.2848985489218,34.23428777342153],[-118.28483403640966,34.23428895576301],[-118.28466861254843,34.23428934492566],[-118.28455281431842,34.23428892976932],[-118.28449656900183,34.23428871884914],[-118.2844502527641,34.23428951425596],[-118.28440394101794,34.23429168435761],[-118.28436920945413,34.23429382698008],[-118.28404502902767,34.23430935783524],[-118.28398713979409,34.23431224164857],[-118.28390113239388,34.23431622165237],[-118.28386144123135,34.23431940624946],[-118.28379694399058,34.23432470970246],[-118.28374402154225,34.23432895558393],[-118.28364148603907,34.23433709606016],[-118.28352406545169,34.23434630227615],[-118.28340168436723,34.2343562058641],[-118.28326937779727,34.23436579010014],[-118.28314202992762,34.23437467547694],[-118.28304610692328,34.23438176951834],[-118.28292868364092,34.23438994415257],[-118.28284764212756,34.23439494236138],[-118.28276494412083,34.23439925730812],[-118.28266735923317,34.23440395027659],[-118.2825796980345,34.23440827710566],[-118.28254000327874,34.23441043086538],[-118.28250030762463,34.23441224076611],[-118.28243580050238,34.23441479557054],[-118.28234151602511,34.23441707632763],[-118.28213805839307,34.23442167274725],[-118.28206030830691,34.23442185396014],[-118.28188992305031,34.23442259440777],[-118.28178571039254,34.23442386735375],[-118.28168976762525,34.23442512173287],[-118.28163847921243,34.2344231796361],[-118.28158719169792,34.234421238282],[-118.28150943083196,34.23441832773614],[-118.28145814691069,34.23441776033189],[-118.28139362811038,34.23441687951856],[-118.28134730738107,34.23441630023153],[-118.28129767007171,34.23441332432996],[-118.28122156030928,34.23440903612028],[-118.28112725517073,34.23440513335913],[-118.28103129623379,34.23440157817007],[-118.28091216974563,34.23439567166908],[-118.28084267697358,34.23439136786229],[-118.28077649000176,34.23438636891065],[-118.28077483530501,34.23438637262403],[-118.28071361332177,34.23438170564818],[-118.28064907925005,34.23437635986625],[-118.28059778365072,34.23437235684225],[-118.28054152036785,34.2343666478911],[-118.2804869108834,34.23436127908519],[-118.28044554166793,34.23435725303757],[-118.2804058262509,34.23435322327639],[-118.28030323235726,34.23434418713401],[-118.28027841100764,34.2343418402768],[-118.28024697087099,34.23433916515654],[-118.28022049482465,34.23433682201257],[-118.28019070489319,34.23433276922744],[-118.28016588174694,34.23432973539418],[-118.28009802750195,34.23432096141412],[-118.28002354997837,34.23431014210176],[-118.27996561852403,34.23430031500407],[-118.27988947821885,34.23428709535757],[-118.27973057163499,34.23425757988995],[-118.2796163562365,34.23423586103838],[-118.27951206542528,34.23421411841556],[-118.27943922642879,34.23419848653869],[-118.27934983237991,34.23417945765081],[-118.27927533958498,34.2341638294809],[-118.27918594643442,34.2341448005852],[-118.27897074063505,34.23409858223007],[-118.27886810452061,34.2340768358584],[-118.27878367725692,34.23405882515575],[-118.27867441876218,34.23403537655344],[-118.27859495918204,34.23401838554047],[-118.27853701964287,34.2340061528705],[-118.2783896869531,34.23397454814674],[-118.27825061876399,34.23394120628289],[-118.27791785134167,34.23386159541833],[-118.27754369404271,34.23377177409563],[-118.27732019230172,34.23371767271097],[-118.27719436887313,34.23368738985308],[-118.27691126660795,34.23361865385242],[-118.27662656444328,34.23356640833461],[-118.27645273504589,34.23352558748618],[-118.27629877368767,34.23348987331236],[-118.27620440836202,34.23346741900555],[-118.27588820407695,34.23339326048437],[-118.27568788965009,34.23334700309709],[-118.27552730321662,34.23330889814304],[-118.27540148966951,34.23328101921182],[-118.27517634580815,34.23322966470794],[-118.27436848188998,34.23304704689678],[-118.27395462983523,34.23295696105075],[-118.27372452907017,34.23290698997882],[-118.27358547705069,34.23287707743133],[-118.27345635411005,34.23284851656813],[-118.2733802021268,34.23283117105274],[-118.27331067432044,34.23281552777875],[-118.27326101185827,34.23280464811504],[-118.27255082894746,34.23264446757516],[-118.27226940563358,34.23258121327468],[-118.27212703883075,34.23254924558233],[-118.27200122708025,34.23252101956217],[-118.27190355685265,34.23249891257716],[-118.27143507016063,34.23239314045875],[-118.2713787862165,34.23238055774401],[-118.27113047300735,34.23232478143286],[-118.27032097864695,34.23214385871901],[-118.26995513525591,34.23206223938934],[-118.26976807547105,34.23202040774403],[-118.2696737173319,34.23199932183601],[-118.26928137543665,34.23190779849151],[-118.26885757633671,34.23180741168169],[-118.26840565008696,34.23170468227771],[-118.26800339079092,34.23161455043357],[-118.2677716353291,34.23156216701535],[-118.26750677515243,34.23150298636178],[-118.26730978359376,34.23145876888061],[-118.26722204873323,34.23143903974837],[-118.26713430399123,34.23141656335633],[-118.26688100333561,34.23135117286317],[-118.26681478132949,34.23133414491613],[-118.26681464748053,34.23129224012426],[-118.26681586559604,34.23115587375686],[-118.26681572096729,34.23111053460912],[-118.26681726337463,34.23107549601537],[-118.26681698310024,34.23098790652285],[-118.26681805748532,34.23080654496734],[-118.26681910581928,34.23061693894954],[-118.26682415974105,34.23012780484783],[-118.26682522963456,34.2299450681597],[-118.26684003297211,34.22784840331357],[-118.26684334865386,34.22733316742893],[-118.26684709732355,34.22695360880613],[-118.26688371984103,34.22185105629889],[-118.27369804583728,34.22180114325957],[-118.28405680055111,34.22172471713373],[-118.28624002559346,34.221708580814],[-118.28692972601748,34.22170351277302],[-118.28842324973748,34.22169206195546],[-118.29278969622889,34.22165959246161],[-118.30016137565495,34.2216040913098],[-118.30152257933025,34.22159383785424],[-118.31025544805854,34.22152745256743],[-118.31339299295308,34.22150356742957],[-118.31898830331215,34.22146043734241],[-118.3266245788102,34.22140159647355],[-118.32772114419268,34.22139279217772],[-118.33492241949754,34.22133666467729],[-118.33609341030134,34.22132723494455],[-118.33742152812637,34.22131701265254],[-118.33747445326968,34.22131652166754],[-118.33737739898525,34.2211271884607],[-118.33742943419921,34.22122699745164],[-118.33981354859023,34.22221437393394],[-118.34166090612422,34.22297995422863],[-118.34233629663414,34.22325959857635],[-118.34808466978777,34.22564118102437],[-118.3536148514122,34.22793079203145],[-118.35474579619714,34.22839926549494],[-118.35628520855678,34.22903637581265],[-118.35703301021674,34.22906577204657],[-118.35716147880372,34.22907070329093],[-118.35833173516573,34.22911654753817],[-118.36049767235087,34.22920107588686],[-118.36050731105342,34.2292014532955],[-118.36168361179884,34.22924740547343],[-118.36262829542298,34.22928442269377],[-118.36372684159066,34.22932749678425],[-118.36404122054626,34.22933968953582],[-118.36444652149063,34.22935555824817],[-118.3647032667045,34.22936595190546],[-118.36516951797066,34.22938532275986],[-118.36600997636059,34.22941885062217],[-118.3664869431489,34.22992542334236],[-118.36688051932938,34.23253403821637],[-118.36688979701573,34.23259505556519],[-118.36693845258036,34.2329185670142],[-118.36705076523265,34.23365697204498],[-118.36713518002971,34.2342147606204]]],"type":"Polygon"} +},{ + "id": 1108691213, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000243, + "geom:area_square_m":2487206.079946, + "geom:bbox":"-118.573859936,34.0685591737,-118.54593778,34.0806308276", + "geom:latitude":34.075105, + "geom:longitude":-118.560273, + "iso:country":"US", + "lbl:latitude":34.100348, + "lbl:longitude":-118.583618, + "lbl:max_zoom":18.0, + "mps:latitude":34.074425, + "mps:longitude":-118.562799, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"no ref", + "mz:tier_metro":1, + "reversegeo:latitude":34.074425, + "reversegeo:longitude":-118.562799, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840153, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ea24c7d7d733c035c189b9b4d550aad5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108691213, + "neighbourhood_id":85840153, + "region_id":85688637 + } + ], + "wof:id":1108691213, + "wof:lastmodified":1566623957, + "wof:name":"Palisades Highlands", + "wof:parent_id":85840153, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869577 + ], + "wof:tags":[] +}, + "bbox": [ + -118.57385993620096, + 34.06855917366284, + -118.54593778012551, + 34.08063082755434 +], + "geometry": {"coordinates":[[[-118.56805996086288,34.06992620909504],[-118.57002753849352,34.07172386717153],[-118.57042807879353,34.07216346782851],[-118.57081267101623,34.07265830563203],[-118.57163083308615,34.07388035244227],[-118.57331423651269,34.07671216488555],[-118.57356677838071,34.07717108370475],[-118.57375910548858,34.07766496777013],[-118.57384399005775,34.07794528721922],[-118.57385993620096,34.07823785817155],[-118.57385610482287,34.07855936133883],[-118.57378167702338,34.07890469138694],[-118.57348475445406,34.07943223950866],[-118.57315885629285,34.07983436551774],[-118.57277632684738,34.080106445014],[-118.57237478020519,34.08030356543862],[-118.57195746189933,34.08047856067556],[-118.57148868285175,34.08063082755434],[-118.56441880123515,34.08044588001357],[-118.56355803242992,34.08035951694579],[-118.562543527884,34.08022268900335],[-118.56167572470942,34.08007446187018],[-118.56080192407889,34.07987784130126],[-118.55714497720284,34.07900960027435],[-118.55671709116174,34.07892359720442],[-118.55624742841144,34.07883953430078],[-118.55536649140285,34.0787831585809],[-118.55442659990894,34.07885154534044],[-118.55348699223855,34.07902624994207],[-118.55174516287546,34.07964517618757],[-118.55125701960169,34.07970420125491],[-118.55077524589615,34.07961996215218],[-118.5503043072963,34.0794264654752],[-118.54924553961412,34.07902615152068],[-118.54876581855643,34.07897285910836],[-118.54826072827345,34.07899637691229],[-118.54790593681822,34.07897974949496],[-118.54751740442082,34.07891988673514],[-118.54720849383183,34.07874345642805],[-118.54696460154659,34.0785276143573],[-118.54673084543569,34.07826747232956],[-118.54642666388904,34.07790741657662],[-118.54627192671769,34.0776141209972],[-118.54615018613326,34.0773054654997],[-118.54600717157385,34.07669676008917],[-118.54594967830883,34.0762196875245],[-118.54593778012551,34.07571078864064],[-118.54594973285219,34.07515040323061],[-118.54608273827911,34.07454391708289],[-118.54621033219696,34.07398350726938],[-118.54652005478899,34.07314744827869],[-118.54669676564914,34.07275855499826],[-118.54694764318975,34.07235330351197],[-118.54720202663052,34.07200965960403],[-118.54749903521,34.07168474633797],[-118.54786041463501,34.07135659572602],[-118.54834807784417,34.07099999893477],[-118.54881755047249,34.07074894842818],[-118.54928845159884,34.07056104586967],[-118.54974780441128,34.07042680433322],[-118.55019734307257,34.07033620160666],[-118.55079585976164,34.0703795083201],[-118.55130844726342,34.07049266029223],[-118.55171318831893,34.07061843803732],[-118.55216216913598,34.07078187616442],[-118.55247379517807,34.07094195801345],[-118.55267501137786,34.07111097360431],[-118.55382766024374,34.07229400180786],[-118.55428478863175,34.07262031760918],[-118.55478551107696,34.07295003126388],[-118.55515921984316,34.07310063878415],[-118.55552426027721,34.07319058472959],[-118.5559290939439,34.07316928036092],[-118.5562955097641,34.07305645908416],[-118.55656119935233,34.07291926613168],[-118.55673821098944,34.07274288632405],[-118.55683441629871,34.07246267652658],[-118.55715245352464,34.07130277872459],[-118.55739737374357,34.07056641311654],[-118.55789353237216,34.06963399106471],[-118.55837877730667,34.06929342203205],[-118.55893702362323,34.06896844305611],[-118.55959636814394,34.06873524718803],[-118.56030441971831,34.06859460202077],[-118.5610263608279,34.06855917366284],[-118.56191956480684,34.06855953387074],[-118.5642952826138,34.06865107222029],[-118.56511134466444,34.06881849134179],[-118.56598787723426,34.06904256673558],[-118.56671735012507,34.06924664078107],[-118.56727810312834,34.0694729603473],[-118.56774895371656,34.06970192345698],[-118.56805996086288,34.06992620909504]]],"type":"Polygon"} +},{ + "id": 1108691215, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000142, + "geom:area_square_m":1453801.195611, + "geom:bbox":"-118.508712235,34.0501616421,-118.493872112,34.0656714603", + "geom:latitude":34.057911, + "geom:longitude":-118.500946, + "iso:country":"US", + "lbl:latitude":34.057786, + "lbl:longitude":-118.501383, + "lbl:max_zoom":18.0, + "mps:latitude":34.058538, + "mps:longitude":-118.50109, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:note":"seems to just be the country club", + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0631\u064a\u0641\u064a\u064a\u0631\u0627" + ], + "name:bre_x_preferred":[ + "Riviera" + ], + "name:bul_x_preferred":[ + "\u0420\u0438\u0432\u0438\u0435\u0440\u0430" + ], + "name:deu_x_preferred":[ + "Riviera" + ], + "name:ell_x_preferred":[ + "\u03a1\u03b9\u03b2\u03b9\u03ad\u03c1\u03b1" + ], + "name:epo_x_preferred":[ + "Riviero" + ], + "name:fin_x_preferred":[ + "Riviera" + ], + "name:fra_x_preferred":[ + "Riviera" + ], + "name:hun_x_preferred":[ + "Rivi\u00e9ra" + ], + "name:hye_x_preferred":[ + "\u054c\u056b\u057e\u056b\u0565\u0580\u0561" + ], + "name:ita_x_preferred":[ + "Riviera" + ], + "name:kir_x_preferred":[ + "\u0420\u0438\u0432\u044c\u0435\u0440\u0430" + ], + "name:lav_x_preferred":[ + "Rivj\u0113ra" + ], + "name:nld_x_preferred":[ + "Rivi\u00e8ra" + ], + "name:nor_x_preferred":[ + "Rivieraen" + ], + "name:pol_x_preferred":[ + "Riwiera" + ], + "name:ron_x_preferred":[ + "Riviera" + ], + "name:rus_x_preferred":[ + "\u0420\u0438\u0432\u044c\u0435\u0440\u0430" + ], + "name:spa_x_preferred":[ + "Riviera" + ], + "name:swe_x_preferred":[ + "Rivieran" + ], + "reversegeo:latitude":34.058538, + "reversegeo:longitude":-118.50109, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840153, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"74301e25a220e450bd6942667e51a14a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108691215, + "neighbourhood_id":85840153, + "region_id":85688637 + } + ], + "wof:id":1108691215, + "wof:lastmodified":1566623957, + "wof:name":"Riviera", + "wof:parent_id":85840153, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85845189 + ], + "wof:tags":[] +}, + "bbox": [ + -118.50871223450146, + 34.0501616421146, + -118.4938721124241, + 34.06567146031539 +], + "geometry": {"coordinates":[[[-118.50007050355931,34.06549420536063],[-118.49982813428062,34.06523436315683],[-118.4994820613303,34.06489673315127],[-118.49916481720506,34.06461131526036],[-118.4989839587692,34.06449037635254],[-118.49885587172642,34.06442565920597],[-118.49875223136857,34.06439053607223],[-118.49858319886503,34.06437606907616],[-118.4982485169444,34.06435761189447],[-118.49793763149587,34.06432692241333],[-118.49763398751101,34.06428268141109],[-118.49744730504436,34.06423053050451],[-118.49722305927418,34.06413829437619],[-118.4969422856749,34.06400350506557],[-118.49675431558998,34.0639053629231],[-118.49664224973876,34.06383305248522],[-118.49656714707783,34.06371659948986],[-118.49647013842504,34.06357673881278],[-118.49637034918642,34.06340213477711],[-118.49627666113287,34.06319522041748],[-118.4962219991322,34.06307601151183],[-118.49613043670402,34.06297195546068],[-118.49599984058665,34.06284117183922],[-118.49577753785681,34.06260787763403],[-118.49570619119602,34.06250320267593],[-118.49565331992299,34.06241115140863],[-118.4956104843009,34.06229062076499],[-118.49556156633253,34.06210478615738],[-118.49549232828093,34.06183076228607],[-118.49540731206167,34.06154384163781],[-118.49536507603609,34.06122939448763],[-118.49536026014661,34.06110801353389],[-118.49536138592048,34.06102410416174],[-118.49538538688239,34.06093382424972],[-118.49542200790975,34.06084457337099],[-118.49546614003452,34.06075029925089],[-118.49551839524096,34.06066660849235],[-118.49557570783861,34.0605626615752],[-118.4955987717847,34.06046946690248],[-118.49561394493713,34.06038002002155],[-118.49543778129379,34.0602436823115],[-118.49546028628562,34.06021306001941],[-118.4955304200857,34.06013915356837],[-118.49559591137866,34.06002734921336],[-118.49564649082546,34.05988116718437],[-118.49571243402357,34.05957711166469],[-118.49578924249893,34.05924263149009],[-118.49597474152793,34.05801220306907],[-118.49607698656963,34.05736760644606],[-118.4961351835591,34.05690819684349],[-118.4961779635597,34.0566590176967],[-118.49623271712504,34.05645831340732],[-118.49628903792681,34.05632900972042],[-118.49635392195674,34.05621976319876],[-118.49642629302461,34.05612268821824],[-118.49650890780157,34.05603728856264],[-118.49658868494123,34.05595952865157],[-118.49669908598865,34.05587566731965],[-118.4970133107981,34.05569914620329],[-118.49741920792427,34.05546027952299],[-118.49710723138152,34.05511660259291],[-118.49694262651207,34.05497208462671],[-118.49679691927777,34.05487191617066],[-118.4966351809946,34.05479278276609],[-118.49647409219124,34.05474986007082],[-118.49623993122781,34.05472314369813],[-118.49554571259397,34.05467964528267],[-118.49470540506927,34.05462006076592],[-118.4945459625657,34.05460002581254],[-118.49439011997877,34.05456293558061],[-118.49425007407869,34.05450441626435],[-118.49413898313043,34.05444286498653],[-118.49405471669687,34.05435423266294],[-118.49397312159751,34.05424738190551],[-118.49391141335769,34.05413265321451],[-118.49387269599376,34.05403984149116],[-118.4938721124241,34.05392121580542],[-118.49389390468995,34.05382231251578],[-118.49392908580849,34.05367706936079],[-118.49400582742783,34.05351832257405],[-118.49410967317338,34.05328417251386],[-118.49423885129895,34.05298897507804],[-118.49434634785155,34.05277170033294],[-118.49451326168153,34.05237175387395],[-118.49463970825647,34.05199580187734],[-118.49472008297666,34.05166557279939],[-118.49480153435323,34.05126419235494],[-118.49481857729478,34.05108076571824],[-118.49480678531562,34.05095219755079],[-118.49475849059914,34.05082766293386],[-118.49467722740663,34.05068451329635],[-118.49453853297319,34.05048681407685],[-118.49447565303448,34.05043303974145],[-118.49464117788806,34.0501616421146],[-118.49485533304298,34.05033852822869],[-118.49503705887942,34.05041203921839],[-118.49554749544556,34.05049552094462],[-118.49625203302783,34.05053580182138],[-118.49739137681986,34.05058501727914],[-118.4971340229776,34.05149394490496],[-118.49764852233896,34.05162670693468],[-118.49815028681839,34.05171616050081],[-118.49864029734711,34.05172937058292],[-118.4992636028675,34.05167677267884],[-118.49996392344316,34.05156745255014],[-118.50059339266322,34.05140976827604],[-118.50137233750375,34.05115729355986],[-118.50144772083834,34.05133242069928],[-118.50154320518619,34.05150555920563],[-118.50201630491902,34.05209068245988],[-118.50240346836507,34.05254858307384],[-118.50262631805282,34.052877115291],[-118.50273065662533,34.0531756646502],[-118.50276121498077,34.05369927801957],[-118.50331111612444,34.05367465450013],[-118.50363115141235,34.05362308057445],[-118.50407843803751,34.05352358281466],[-118.50444431429116,34.05337982815657],[-118.50484231716055,34.0531436221534],[-118.50520794024457,34.05281358199684],[-118.50571739833758,34.05219907074358],[-118.50617405683502,34.05148381635861],[-118.50871223450146,34.05302972408692],[-118.508641,34.053224],[-118.508555,34.053439],[-118.508411,34.053478],[-118.50830999999999,34.053485],[-118.508234,34.053494],[-118.50815799999999,34.053518],[-118.50811299999999,34.053536],[-118.50807,34.053559],[-118.50803000000001,34.053608],[-118.508037,34.053657],[-118.508037,34.053722],[-118.50802299999999,34.053767],[-118.50798,34.053857],[-118.507403,34.055025],[-118.507381,34.05507],[-118.507114,34.055408],[-118.50689199999999,34.055689],[-118.50685576987533,34.05573373569442],[-118.50680958626972,34.0557713540361],[-118.50674130479604,34.05580859847629],[-118.50665207332477,34.05584273921313],[-118.50658689555443,34.05586446513657],[-118.50652326963578,34.0558753280983],[-118.50645454109021,34.05587769053338],[-118.50635930885134,34.05589069186532],[-118.50628428447793,34.0559086929093],[-118.50621833078176,34.05594438549781],[-118.50617487893486,34.05598007808632],[-118.50613805300939,34.0560263036997],[-118.506128,34.056079],[-118.506354,34.057303],[-118.50636,34.057444],[-118.506351,34.057544],[-118.506305,34.057903],[-118.506308,34.058041],[-118.506331,34.058177],[-118.506367,34.058291],[-118.506416,34.058402],[-118.50647600000001,34.058513],[-118.50649199999999,34.058575],[-118.50649199999999,34.058649],[-118.50647600000001,34.058711],[-118.506444,34.058775],[-118.50639099999999,34.058835],[-118.506345,34.058873],[-118.506286,34.058904],[-118.506182,34.05896],[-118.506077,34.059062],[-118.506017,34.059143],[-118.505765,34.059597],[-118.50573799999999,34.05968],[-118.50573300000001,34.05973],[-118.50573900000001,34.059809],[-118.50576,34.059879],[-118.50579500000001,34.059944],[-118.505849,34.060009],[-118.505917,34.060065],[-118.506407,34.060329],[-118.506606,34.060448],[-118.506677,34.060519],[-118.50673,34.0606],[-118.506764,34.060688],[-118.506776,34.060771],[-118.506771,34.060855],[-118.506749,34.060937],[-118.506705,34.061021],[-118.50641400000001,34.061443],[-118.50636,34.061522],[-118.506315,34.061616],[-118.506282,34.061702],[-118.506258,34.061791],[-118.50624500000001,34.061867],[-118.50613300000001,34.062743],[-118.50604307804475,34.06308735783478],[-118.50592600445685,34.0632215740118],[-118.50576050595822,34.06330956300211],[-118.50559124563915,34.06336188666518],[-118.5053253373808,34.06343811130557],[-118.50505276258696,34.06350330693079],[-118.5044966228138,34.06361180958226],[-118.50442867392199,34.06367317854602],[-118.50440415934531,34.06376208461595],[-118.50452752076802,34.06471597223449],[-118.50450996520202,34.06488644916706],[-118.50447257603433,34.06505187301716],[-118.50439990228384,34.06523587553476],[-118.50430998603717,34.06539637165744],[-118.50419584125041,34.06550629124894],[-118.5040809779068,34.0655760992798],[-118.50395384083909,34.06562003732498],[-118.50377296040342,34.06565689567325],[-118.5034617274213,34.06567146031539],[-118.50232474582285,34.06565235820313],[-118.50216509779742,34.0656392705765],[-118.50210033075878,34.0656096084667],[-118.50205290845453,34.06557176269968],[-118.50154244545561,34.06483737502522],[-118.50151631824707,34.06482196447845],[-118.50147654995973,34.06481308547324],[-118.50143364175484,34.06481776967129],[-118.50138903519469,34.06482738658043],[-118.50007050355931,34.06549420536063]]],"type":"Polygon"} +},{ + "id": 1108561745, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000157, + "geom:area_square_m":1612014.04069, + "geom:bbox":"-118.382365961,34.101648259,-118.36217411,34.125194555", + "geom:latitude":34.113787, + "geom:longitude":-118.372505, + "iso:country":"US", + "lbl:latitude":34.113383, + "lbl:longitude":-118.374101, + "lbl:max_zoom":18.0, + "mps:latitude":34.113678, + "mps:longitude":-118.373193, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:azb_x_preferred":[ + "\u0644\u0648\u0631\u0644 \u06a9\u0646\u06cc\u0648\u0646" + ], + "name:dan_x_preferred":[ + "Laurel Canyon" + ], + "name:deu_x_preferred":[ + "Laurel Canyon" + ], + "name:eng_x_preferred":[ + "Laurel Canyon" + ], + "name:eng_x_variant":[ + "Laurel Cyn", + "Laurelcanyon" + ], + "name:fas_x_preferred":[ + "\u0644\u0648\u0631\u0644 \u06a9\u0646\u06cc\u0648\u0646" + ], + "name:fra_x_preferred":[ + "Laurel Canyon" + ], + "name:ita_x_preferred":[ + "Laurel Canyon" + ], + "name:jpn_x_preferred":[ + "\u30ed\u30fc\u30ec\u30eb\u30fb\u30ad\u30e3\u30cb\u30aa\u30f3" + ], + "name:nld_x_preferred":[ + "Laurel Canyon" + ], + "name:por_x_preferred":[ + "Laurel Canyon" + ], + "reversegeo:latitude":34.113678, + "reversegeo:longitude":-118.373193, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865833, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q462539" + }, + "wof:country":"US", + "wof:geomhash":"9ba2e9309f7653767640940e7e7e8865", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108561745, + "neighbourhood_id":85865833, + "region_id":85688637 + } + ], + "wof:id":1108561745, + "wof:lastmodified":1566623962, + "wof:name":"Laurel Canyon", + "wof:parent_id":85865833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869407 + ], + "wof:tags":[] +}, + "bbox": [ + -118.38236596136157, + 34.10164825895766, + -118.3621741095037, + 34.12519455499626 +], + "geometry": {"coordinates":[[[-118.37582344721685,34.11195265634178],[-118.37649451074141,34.11399185731708],[-118.37655604019949,34.11414316456185],[-118.3766315468268,34.11427279471349],[-118.37671368580752,34.11437885219148],[-118.37679908522075,34.11446569058739],[-118.37836572537815,34.11570167737909],[-118.37911072820258,34.11631678157823],[-118.37920863722479,34.11644527569236],[-118.37926715096539,34.11656760646546],[-118.37928763476728,34.11668663487347],[-118.37929238234189,34.11679915557866],[-118.37910606258417,34.11756800927775],[-118.3791062473716,34.11772692314599],[-118.37911951505362,34.11787515987928],[-118.37914876881845,34.11799826087575],[-118.37920489217655,34.11810464332984],[-118.3807816113893,34.11936468215755],[-118.38094728640677,34.11950722442873],[-118.38110386318499,34.11966005786446],[-118.38125683959335,34.1198185196198],[-118.38140794764729,34.12000467430204],[-118.38149773074659,34.12013583430195],[-118.38158105205618,34.12028797372216],[-118.38204043423303,34.12142377816498],[-118.38213309058636,34.12170274098536],[-118.38219590541961,34.12192409278146],[-118.38225994793719,34.12216183804106],[-118.38236596136157,34.12260613591118],[-118.38235847550506,34.12260486372154],[-118.3823502065129,34.12260282906635],[-118.3823402846206,34.12260079887309],[-118.38233036182994,34.1225984258523],[-118.38232043814101,34.12259605283143],[-118.38231051355375,34.12259333698297],[-118.38230059076309,34.12259096396196],[-118.38229231638104,34.12258789859285],[-118.38228239179378,34.12258518200046],[-118.38227246451159,34.12258177826544],[-118.3822641901295,34.12257871363966],[-118.38225426194897,34.12257530990444],[-118.38224433466678,34.12257190616908],[-118.38223605669143,34.1225681544003],[-118.3822277796144,34.12256440188769],[-118.38221785053554,34.12256065532422],[-118.3822095716619,34.12255655923992],[-118.38219963988811,34.12255246910476],[-118.38219136011614,34.12254803019236],[-118.38218307944588,34.12254359053606],[-118.38217479877558,34.12253915162325],[-118.38216651810527,34.12253471271015],[-118.38215823653668,34.12252993022537],[-118.38214995227312,34.12252480416883],[-118.38214167070451,34.1225200216835],[-118.38213338733929,34.12251489488269],[-118.38212510127909,34.12250942599739],[-118.38211846991568,34.12250429399033],[-118.3821101847538,34.12249882510434],[-118.38210354979714,34.12249300595344],[-118.38209526463525,34.12248753632306],[-118.38208531848845,34.122480010468],[-118.38208199831513,34.12247658664994],[-118.38207536874835,34.12247179895626],[-118.38206873828322,34.12246701051863],[-118.38206210871643,34.1224622228244],[-118.38205548004797,34.1224577787016],[-118.38204885137948,34.12245333457862],[-118.38204222271099,34.12244888971174],[-118.38203559494085,34.12244444558829],[-118.38202731606718,34.12244034949836],[-118.38202068919533,34.12243624894629],[-118.38201406232346,34.12243249122221],[-118.3820057834498,34.12242839587538],[-118.38199915837458,34.12242463889462],[-118.38199253240104,34.12242088117002],[-118.38198425712065,34.12241747222284],[-118.38197598094193,34.12241406401912],[-118.38196935766337,34.12241064986598],[-118.38196108328125,34.12240758449029],[-118.38195280800086,34.12240417554256],[-118.38194618741721,34.12240144927665],[-118.38193791303516,34.12239838390062],[-118.38192964044968,34.12239566209652],[-118.38192136786425,34.12239294029228],[-118.3819130961771,34.12239056206003],[-118.38190482538828,34.12238818382772],[-118.38189655459946,34.12238580559529],[-118.38188828470895,34.12238377093487],[-118.38188001392014,34.12238139270232],[-118.38187174582626,34.1223797008702],[-118.38186347683406,34.12237766620964],[-118.38185520874021,34.12237597512107],[-118.38184694244296,34.12237462686093],[-118.38183867434907,34.12237293577235],[-118.38183040984846,34.12237193182794],[-118.38182214355122,34.12237058356772],[-118.3818122261505,34.12236958482889],[-118.38180396164987,34.12236858014077],[-118.38179569714926,34.12236757619624],[-118.38178743354696,34.12236691508019],[-118.38177917084296,34.12236625396415],[-118.3817692570355,34.12236594162587],[-118.38176099522984,34.12236562482563],[-118.38175273342415,34.12236530728169],[-118.38174447341513,34.12236533330988],[-118.3817362134061,34.12236535933807],[-118.38172630319187,34.12236573414402],[-118.38171804318284,34.12236576017218],[-118.3817097840721,34.12236612977249],[-118.38170152765633,34.12236684294498],[-118.38169161834043,34.12236756132302],[-118.38168336192466,34.12236827449543],[-118.38167510640722,34.12236933049631],[-118.38166685088976,34.12237038724081],[-118.38165859537229,34.12237144398529],[-118.38164868964964,34.12237284876387],[-118.3816404359288,34.1223742490804],[-118.38163218220798,34.12237564865323],[-118.38162393028379,34.12237739254182],[-118.38161567746127,34.12237913568672],[-118.38160742733369,34.12238122314728],[-118.38159917451118,34.12238296629212],[-118.38159092528193,34.12238539658096],[-118.38158267515436,34.12238748404135],[-118.38157442592511,34.1223899143301],[-118.38156617669584,34.12239234461872],[-118.38155792926321,34.12239511847935],[-118.38154968183061,34.12239789233982],[-118.38154308639977,34.12240066099464],[-118.38153483896717,34.12240343485492],[-118.38152659243286,34.12240655228713],[-118.38151834859349,34.12241001329111],[-118.38151175406098,34.1224131255174],[-118.38150351022161,34.12241658652118],[-118.38149691748576,34.12242004231913],[-118.3814886745447,34.12242384615082],[-118.38148043160365,34.12242765072602],[-118.38147384156275,34.12243145009538],[-118.38146724882687,34.12243524946457],[-118.38145900768245,34.12243939686739],[-118.38145241853984,34.12244353980803],[-118.38144582939722,34.12244768200484],[-118.38143924205123,34.12245216851684],[-118.38143265380695,34.12245665428499],[-118.3814244144592,34.12246114600217],[-118.38141782801154,34.12246597534151],[-118.38141289266736,34.12247045590325],[-118.38140630621969,34.12247528598577],[-118.38139972156866,34.12248045889596],[-118.3813931360193,34.12248528823423],[-118.38138655136827,34.12249046114378],[-118.38138161871903,34.1224956295911],[-118.38137503586462,34.12250114681532],[-118.3813701032154,34.12250631377464],[-118.38136352036102,34.12251183099812],[-118.38135858950839,34.122517342272],[-118.38135365955414,34.12252319711696],[-118.38134707669974,34.12252871359572],[-118.38134214764376,34.1225345684399],[-118.38133721768949,34.12254042328365],[-118.38133228863352,34.12254627812702],[-118.38132735957755,34.12255213297004],[-118.3813224314199,34.12255833138391],[-118.38131915526408,34.12256452459174],[-118.38131422800475,34.12257072226106],[-118.3813092998471,34.12257692067364],[-118.38130602369125,34.12258311388005],[-118.38130109733024,34.12258965586293],[-118.38129782386933,34.12259619263966],[-118.38129454771349,34.12260238510104],[-118.38129127335428,34.12260892187678],[-118.38128634878989,34.12261580742873],[-118.38128307443068,34.12262234345974],[-118.38128145207327,34.12262887502834],[-118.38127817951072,34.12263575537305],[-118.38127490694814,34.12264263497354],[-118.38127163258889,34.12264917174617],[-118.38127001202814,34.12265604613989],[-118.38126673856725,34.12266292648241],[-118.38126511800647,34.12266980161874],[-118.38126184724052,34.12267702478731],[-118.38126022667977,34.12268389992251],[-118.38125860611898,34.12269077431343],[-118.38125698645653,34.12269799301828],[-118.38125536769236,34.12270521097885],[-118.38125374713159,34.12271208611169],[-118.38125213824893,34.1227217083222],[-118.38125050690837,34.12272617920282],[-118.38125054194268,34.12273373552596],[-118.38124892228021,34.12274095348346],[-118.38124730171944,34.12274782861342],[-118.3812456829553,34.1227550473134],[-118.38124240949439,34.12276192690418],[-118.38124079073025,34.12276914560295],[-118.38123917016951,34.12277601998699],[-118.3812358976069,34.12278290031968],[-118.38123427704615,34.1227897747026],[-118.38123100358524,34.12279665503422],[-118.38122938302448,34.12280353015969],[-118.38122610866526,34.12281006617621],[-118.38122283610268,34.12281694650618],[-118.38121956174346,34.12282348326532],[-118.38121628918091,34.12283036285052],[-118.38121301482167,34.12283689960864],[-118.38120974046248,34.12284343636625],[-118.38120481410144,34.12284997758527],[-118.38120153974225,34.12285651434187],[-118.38119826448472,34.12286270752787],[-118.38119333632707,34.12286890591898],[-118.38118840996604,34.12287544713607],[-118.38118513381021,34.12288164032068],[-118.38118020475426,34.12288749514042],[-118.38117527659659,34.12289369352973],[-118.38117034754065,34.12289954834868],[-118.38116541938297,34.1229057467371],[-118.3811604885304,34.12291125798526],[-118.38115555947444,34.12291711280294],[-118.38115062952015,34.12292296762027],[-118.38114569866755,34.12292847886731],[-118.38113911581314,34.12293399531956],[-118.38113418496054,34.12293950656594],[-118.38112760120782,34.12294502301749],[-118.3811226685586,34.12295019143701],[-118.38111608390759,34.12295536506186],[-118.38110949925655,34.12296053794266],[-118.38110456750564,34.12296570487396],[-118.38109798105798,34.1229705356718],[-118.38109139461031,34.12297536498203],[-118.38108480816265,34.12298019429203],[-118.38107822081668,34.12298468077579],[-118.3810716334707,34.12298916651568],[-118.38106504522639,34.12299365299895],[-118.38105845788041,34.12299813873836],[-118.3810502158377,34.1230022868572],[-118.38104362849172,34.12300677259615],[-118.38103703755247,34.12301057193948],[-118.38102879640805,34.12301472005777],[-118.38102220546881,34.12301851865708],[-118.38101561452956,34.12302231799988],[-118.3810073697919,34.12302577897871],[-118.38099912595253,34.1230292399574],[-118.38099253321668,34.12303269498665],[-118.38098428847897,34.12303615596505],[-118.3809776948448,34.12303926816831],[-118.38096944831048,34.12304238557702],[-118.38096120267451,34.12304550298566],[-118.38095295524188,34.1230482768248],[-118.38094470691092,34.1230510506639],[-118.3809364576817,34.12305348093359],[-118.38092986225087,34.12305624956687],[-118.38092161032665,34.12305833701071],[-118.3809133610974,34.12306076728014],[-118.38090511096983,34.12306285398024],[-118.38089685994395,34.12306494068024],[-118.38088860891807,34.12306702812394],[-118.38087870499206,34.12306877646014],[-118.38087045127124,34.12307017676522],[-118.38086219844871,34.12307191989579],[-118.3808539447279,34.12307331945715],[-118.38084569100708,34.12307471976209],[-118.38083743548961,34.12307577649777],[-118.38082917997212,34.12307683248977],[-118.38081927245285,34.12307789443106],[-118.38081101603709,34.12307860759746],[-118.38080275872298,34.12307932002021],[-118.3807945005106,34.12307968961741],[-118.38078624139987,34.12308005921459],[-118.38077633118564,34.1230804340174],[-118.38076807207493,34.12308080361458],[-118.3807598120659,34.12308082964256],[-118.38075155026024,34.12308051210131],[-118.38074163824938,34.12308054333486],[-118.38073337644373,34.12308022579366],[-118.38072511373971,34.12307956468314],[-118.38071685193407,34.1230792471419],[-118.38070693453334,34.12307824841147],[-118.38069867182934,34.12307758730099],[-118.3806904064304,34.12307658262127],[-118.3806821419298,34.12307557868515],[-118.38067387563257,34.12307423043617],[-118.38066560933532,34.12307288293082],[-118.38065734303808,34.1230715346818],[-118.38064742294237,34.12306984881274],[-118.38063915484851,34.12306815699439],[-118.38063088675462,34.12306646591963],[-118.38062261776246,34.1230644312756],[-118.38061434787194,34.12306239588786],[-118.38060607798143,34.12306036124369],[-118.3805978071926,34.12305798303021],[-118.3805895364038,34.12305560481666],[-118.38058126471665,34.12305322585933],[-118.38057464413301,34.12305049887073],[-118.38056637154756,34.12304777708758],[-118.38055809716548,34.12304471173503],[-118.3805498236817,34.1230416463823],[-118.38054320130145,34.12303857582391],[-118.38053492691934,34.12303551047102],[-118.38052665163895,34.12303210229222],[-118.38052002746207,34.12302868816404],[-118.38051175128335,34.12302527924136],[-118.38050512620812,34.12302152154345],[-118.38049684913108,34.12301776979462],[-118.38049022225924,34.12301366852689],[-118.38048194518221,34.12300991603405],[-118.38047531831036,34.12300581550961],[-118.38046869143849,34.1230017142413],[-118.38046206277004,34.12299727014691],[-118.38012739361429,34.12278742176589],[-118.37990538577161,34.12264797817164],[-118.37989875710315,34.12264353331499],[-118.3798921302313,34.12263943277277],[-118.37988550335943,34.1226353314867],[-118.37987722538406,34.12263123614968],[-118.37987059941055,34.12262747843427],[-118.37986232233352,34.12262372592433],[-118.37985569725829,34.12261996820859],[-118.3798474219779,34.12261655926937],[-118.37984079780099,34.12261314586809],[-118.37983252072397,34.12260973692864],[-118.37982424544356,34.12260632798901],[-118.37981762306329,34.1226032574148],[-118.37980934868123,34.12260019204614],[-118.3798010769941,34.12259747024848],[-118.37979280440862,34.12259474845079],[-118.37978618382498,34.12259202144737],[-118.37977791213784,34.12258964247704],[-118.37976964134903,34.12258726425026],[-118.3797613705602,34.12258488602348],[-118.37975309977139,34.12258250779663],[-118.37974482988088,34.12258047239723],[-118.37973656178701,34.12257878131278],[-118.37972829279482,34.12257674591334],[-118.37972002470096,34.12257505482881],[-118.37971010640189,34.12257371177743],[-118.37970183830801,34.12257202069285],[-118.37969357201077,34.12257067243576],[-118.37968530751014,34.12256966775003],[-118.37967704300955,34.12256866380793],[-118.3796687776106,34.12256765912217],[-118.3796588611082,34.12256665964199],[-118.3796505975059,34.12256599852751],[-118.37964233480193,34.12256533741301],[-118.37963407299624,34.12256501986983],[-118.37962581119058,34.12256470232665],[-118.37961589738312,34.12256438998912],[-118.37960763737406,34.12256441601725],[-118.37959937736504,34.12256444204538],[-118.3795861631472,34.12256482726169],[-118.3794969667277,34.12256785544863],[-118.37908402017474,34.12258220363942],[-118.37897830643209,34.12258596953708],[-118.37896839621789,34.12258634434203],[-118.37895683220522,34.12258638078141],[-118.37894526819258,34.12258641722079],[-118.37893370417991,34.12258645291649],[-118.37892213837064,34.12258614578465],[-118.37891057076475,34.12258549508157],[-118.37889900405713,34.12258484437849],[-118.37888743645122,34.12258419367542],[-118.378875867947,34.12258319940104],[-118.3788642976461,34.12258186229914],[-118.37885272734528,34.12258052445354],[-118.37884115704443,34.12257918660787],[-118.37882958494693,34.12257750519096],[-118.37881801284944,34.12257582451765],[-118.37880809095714,34.1225737943238],[-118.37879651616467,34.12257142650785],[-118.37878494316888,34.12256940151949],[-118.37877336657982,34.1225666901321],[-118.3787634437892,34.12256431711035],[-118.37875186450516,34.12256126140786],[-118.37874028791609,34.12255855002022],[-118.37873036153221,34.12255548985553],[-118.37871878134987,34.12255209132498],[-118.37870885406768,34.12254868758868],[-118.37869727298701,34.12254494548646],[-118.37868734480652,34.12254154174988],[-118.37867576282756,34.12253745607597],[-118.37866583195206,34.12253336519616],[-118.37865590107663,34.12252927505988],[-118.37864596840453,34.12252484060824],[-118.37863438462894,34.122520411362],[-118.37862445195684,34.12251597765357],[-118.37861451838643,34.12251119888604],[-118.37860458301938,34.12250607803399],[-118.37859464675401,34.12250095643799],[-118.37858471138699,34.12249583558532],[-118.37857642712343,34.12249036521149],[-118.37856648995977,34.12248490078653],[-118.37855655279611,34.12247943636128],[-118.37854826673592,34.12247362315833],[-118.37853832777562,34.12246781516059],[-118.37853003991881,34.12246165838511],[-118.37852175206197,34.12245550160917],[-118.37851181130506,34.12244935003841],[-118.37850352165162,34.12244284968978],[-118.37849523199817,34.12243634934065],[-118.37848694234472,34.12242984899103],[-118.37847865179297,34.122423005069],[-118.3784703603429,34.12241616114643],[-118.3784620679945,34.12240897439503],[-118.37845542854625,34.12240212526564],[-118.37844547431456,34.12239288228664],[-118.37844049315633,34.12238740223849],[-118.37843220260456,34.12238055831303],[-118.37842390935788,34.1223733715586],[-118.3784156188061,34.12236652763201],[-118.37840732735602,34.12235968370488],[-118.37839903770259,34.12235318334935],[-118.37839074804914,34.12234668299332],[-118.37838245839572,34.1223401826368],[-118.37837417053889,34.12233402585202],[-118.3783658826821,34.12232786906679],[-118.37835594192516,34.12232171748674],[-118.37834765586497,34.12231590427295],[-118.37833771690468,34.12231009626437],[-118.37832778063932,34.12230463182782],[-118.37831949547746,34.12229916144157],[-118.37830955831377,34.12229369700432],[-118.37829962294673,34.12228857613909],[-118.37828968757968,34.12228345452991],[-118.37827975221266,34.12227833366408],[-118.37826981864225,34.12227355562678],[-118.37825988597012,34.12226912190542],[-118.37824995419636,34.12226468744015],[-118.37824002152426,34.12226025297459],[-118.378228438647,34.1222561672871],[-118.37821850866985,34.12225207713735],[-118.37820857869269,34.12224832981637],[-118.37819699671374,34.12224458770087],[-118.3781870676349,34.12224084037957],[-118.37817548835089,34.12223744183636],[-118.37816556017037,34.12223403808741],[-118.37815398268299,34.12223098237298],[-118.37814240609393,34.12222827097474],[-118.37813247971002,34.1222252107981],[-118.37812090491759,34.12222284222876],[-118.37810932832852,34.12222013083026],[-118.3780994073345,34.1222181013715],[-118.37808783164377,34.12221573280197],[-118.37807625864797,34.12221370780509],[-118.37806468655049,34.12221202712455],[-118.37805311535129,34.12221034570035],[-118.37804154505044,34.12220900784882],[-118.37802997474959,34.12220766999732],[-118.37802005645054,34.12220632694012],[-118.37800848704798,34.12220533266134],[-118.37799692034039,34.12220468195535],[-118.37798535273447,34.12220403124933],[-118.37797378602689,34.12220338054333],[-118.37796222021758,34.12220307341003],[-118.37795065620494,34.12220310910595],[-118.37793909219228,34.12220314554544],[-118.37792752817964,34.12220318198499],[-118.37791596596364,34.12220356125363],[-118.37790440464592,34.12220428483874],[-118.37789284332823,34.12220500768021],[-118.37788128290879,34.12220573052162],[-118.37786972338773,34.12220679767948],[-118.37785816386668,34.12220786409364],[-118.37784660614221,34.12220927408054],[-118.37783504841777,34.12221068406742],[-118.37782349159163,34.12221243762708],[-118.37781193746046,34.12221453475937],[-118.37780203263613,34.12221628311327],[-118.37779047940326,34.1222187238182],[-118.37777892437377,34.12222082095035],[-118.37776737114091,34.12222326091151],[-118.37775747170646,34.1222260399833],[-118.37774592027021,34.12222882426062],[-118.37773436973229,34.12223195136689],[-118.37772447209451,34.12223507401104],[-118.37771292155658,34.12223820111702],[-118.37770302571541,34.12224166658996],[-118.37769147877074,34.12224548158459],[-118.37768158203126,34.12224929062976],[-118.37767003598491,34.12225310488044],[-118.37766014283868,34.12225725749782],[-118.37765024879417,34.12226141085875],[-118.37764200225985,34.12226452755246],[-118.3776337593188,34.12226833139114],[-118.3776255136828,34.12227144882833],[-118.37761726714848,34.12227456626535],[-118.37761067171769,34.12227733418054],[-118.37760242518337,34.12228045161734],[-118.37759417595413,34.12228288190917],[-118.3775859285215,34.12228565577331],[-118.37757767929223,34.12228808532133],[-118.37756943006299,34.12229051561293],[-118.3775611790371,34.12229260233201],[-118.37755292890952,34.12229468905107],[-118.37754467788363,34.12229677577004],[-118.37753642685776,34.122298862489],[-118.37752817493357,34.12230060563549],[-118.37751992121272,34.12230200520955],[-118.3775116683902,34.12230374835602],[-118.37750341466939,34.1223051486737],[-118.37749350715011,34.122306209881],[-118.37748525342928,34.12230760945497],[-118.37747699791181,34.12230866545662],[-118.37746874149605,34.12230937862953],[-118.37746048418194,34.12231009105876],[-118.37745222776618,34.12231080423165],[-118.37744231845026,34.12231152186654],[-118.37743406023787,34.12231189146708],[-118.37742580022883,34.12231191675162],[-118.37741754111811,34.12231228635216],[-118.37740762910727,34.12231231684237],[-118.37739936730161,34.12231199929823],[-118.37739110729258,34.12231202532643],[-118.37738284458858,34.12231136420996],[-118.37737293078112,34.1223110518715],[-118.3773646671788,34.12231039075496],[-118.37735640447482,34.12230972889485],[-118.37734813997422,34.12230872494963],[-118.37733987637189,34.12230806308951],[-118.37732995807285,34.12230672077758],[-118.37732169357224,34.12230571608869],[-118.377313427275,34.12230436782743],[-118.37730515918111,34.12230267599372],[-118.37729689288389,34.12230132773241],[-118.37728862389169,34.12229929306997],[-118.37728035579784,34.1222976012362],[-118.37727208680562,34.12229556583],[-118.37726381691512,34.12229353116737],[-118.37725554792293,34.12229149576108],[-118.37724727713412,34.12228911752597],[-118.37723900634529,34.12228673854712],[-118.37723073375982,34.12228401673938],[-118.37722080647764,34.12228061299231],[-118.37610562171426,34.12190041424898],[-118.37609900472384,34.12189837362752],[-118.37609238593686,34.12189599017571],[-118.37608576894648,34.12189394955414],[-118.37607915285439,34.12189225325026],[-118.37607253586401,34.12189021262865],[-118.37606591977196,34.12188851558101],[-118.37605765167807,34.12188682448269],[-118.37605103828095,34.12188547100907],[-118.37604442398552,34.12188411753545],[-118.37603780879176,34.12188276406177],[-118.37602954249454,34.12188141579376],[-118.37602458289585,34.12188074426258],[-118.37601631659858,34.12187939599453],[-118.3760097040998,34.12187838609492],[-118.37600143959918,34.12187738140096],[-118.37599482889701,34.12187671507539],[-118.37598821909314,34.12187639232398],[-118.37597995549086,34.12187573120409],[-118.3759733465853,34.12187540770899],[-118.37596673678144,34.12187508495752],[-118.37595847497576,34.12187476741173],[-118.37595186696853,34.12187478749075],[-118.37594360695951,34.12187481351909],[-118.37593699895228,34.12187483434178],[-118.37593039274167,34.12187519799491],[-118.37592213452926,34.12187556759736],[-118.37591552742036,34.12187593125049],[-118.37590892120974,34.1218762956473],[-118.37590066389564,34.12187700808017],[-118.37589405948168,34.12187771530741],[-118.37588745596604,34.12187876610871],[-118.37587920044857,34.12187982285935],[-118.37587259693292,34.12188087366064],[-118.37586599341728,34.12188192446192],[-118.37585773969643,34.12188332404291],[-118.37585113618078,34.12188437484416],[-118.37584453625838,34.12188611279353],[-118.37583793453938,34.12188750791249],[-118.37583133371865,34.12188924586181],[-118.37582308179446,34.12189098901678],[-118.37581648187206,34.12189272696602],[-118.37580988284799,34.12189480774558],[-118.37580328382391,34.12189688926877],[-118.37579668569816,34.12189897079191],[-118.37579008847069,34.12190139588901],[-118.37578349124324,34.12190382098603],[-118.37577689401581,34.12190624533937],[-118.37577029678835,34.12190867043626],[-118.37576370045923,34.12191143910704],[-118.37575710502841,34.12191420703405],[-118.37575050959761,34.12191697570466],[-118.37574391416679,34.12191974437518],[-118.37573897163611,34.1219228506702],[-118.37573237710359,34.12192596291447],[-118.37572578346941,34.1219290744149],[-118.37572084273533,34.12193252502715],[-118.37571424999948,34.12193598010121],[-118.37570765726359,34.12193943517517],[-118.37570271742787,34.12194288578694],[-118.37569612469198,34.12194634086064],[-118.37569118575458,34.12195013504597],[-118.37568624681712,34.12195392848747],[-118.37567965497956,34.12195772713444],[-118.37567471783876,34.12196186414936],[-118.37566977890131,34.12196565833401],[-118.37566484176054,34.12196979534854],[-118.3756582517196,34.12197393756855],[-118.37565331637542,34.12197841815637],[-118.37564837833629,34.12198255517028],[-118.37564344209383,34.12198703575763],[-118.37563850674968,34.12199151634477],[-118.37563357050719,34.12199599693166],[-118.37563028806314,34.12200081662995],[-118.37562535182063,34.12200529721635],[-118.37562041737478,34.12201012137607],[-118.37561713582906,34.12201494032988],[-118.37561220138321,34.12201976448905],[-118.37560891893914,34.12202458344232],[-118.37560398539162,34.12202975043074],[-118.37560070294754,34.12203457012711],[-118.37559577029832,34.12203973711494],[-118.37559248965091,34.12204489964049],[-118.37558920900349,34.12205006216572],[-118.37558592745775,34.12205522469058],[-118.37558264860698,34.12206073078855],[-118.37557936795956,34.1220658940565],[-118.37557608821045,34.12207140015376],[-118.37557280935968,34.12207690625063],[-118.37556952961057,34.12208241234717],[-118.37556790276162,34.12208791249405],[-118.37556462301251,34.1220934185899],[-118.3755613432634,34.12209892468532],[-118.37555971821104,34.12210476914799],[-118.37555643846193,34.12211027524272],[-118.37555481251125,34.12211611896087],[-118.37555318745891,34.12212196342235],[-118.37555155971162,34.12212746431029],[-118.37554993376095,34.12213330877097],[-118.37554665580848,34.12213915843684],[-118.37554503075613,34.12214500215305],[-118.37554505680728,34.12215084140686],[-118.37554343085661,34.12215668586592],[-118.37554180490596,34.12216253032455],[-118.37554018075193,34.12216871761207],[-118.37554020680307,34.12217455686423],[-118.37553858085242,34.12218040132161],[-118.37553860870018,34.12218658414582],[-118.37553698364783,34.12219242860243],[-118.37553700969896,34.12219826785295],[-118.37553703754675,34.12220444993217],[-118.37553706359789,34.12221028918187],[-118.37553709144565,34.12221647200389],[-118.37553711749679,34.12222231125276],[-118.37553714534458,34.12222849407389],[-118.37553717139572,34.12223433332193],[-118.37553719924351,34.12224051539851],[-118.37553722529465,34.12224635464571],[-118.3755389033476,34.1222521886869],[-118.37553893119535,34.12225837150585],[-118.3755406101466,34.1222642055462],[-118.37554063619777,34.12227004479176],[-118.37554231604736,34.12227622240373],[-118.3755439941003,34.12228205644286],[-118.37554567215327,34.12228789048157],[-118.37554569820441,34.1222937297255],[-118.37554737715566,34.12229956376334],[-118.37554905520862,34.12230539780085],[-118.37555238526338,34.12231122663228],[-118.37555406331632,34.12231706066898],[-118.37555574047096,34.12232255113294],[-118.3755574185239,34.12232838516886],[-118.37556074678204,34.12233387042644],[-118.37556242573329,34.1223397044616],[-118.37556575399144,34.12234518971844],[-118.37556908314789,34.12235067497496],[-118.3755707594042,34.1223561661804],[-118.37557408856065,34.12236165143625],[-118.37557741681874,34.12236713669169],[-118.3755807459752,34.12237262194677],[-118.37558407243671,34.12237776437309],[-118.37558740159314,34.12238324962748],[-118.37559072895296,34.1223883913095],[-118.37559405631276,34.12239353373487],[-118.37559738277427,34.12239867541626],[-118.37560236213589,34.1224038118917],[-118.37560568769909,34.12240861074419],[-118.37560901505888,34.12241375242466],[-118.37561399262388,34.12241854607092],[-118.37561897018885,34.12242333897327],[-118.37562229575205,34.12242813782466],[-118.37562727331702,34.12243293072648],[-118.37563225178033,34.12243772437165],[-118.37563557554689,34.12244217890672],[-118.37564055131524,34.12244662897963],[-118.37564884096869,34.12245312932797],[-118.37565547951863,34.12245997845316],[-118.3756637817485,34.1224692266305],[-118.37567373687847,34.1224788139165],[-118.37568204000664,34.12248840566336],[-118.37569034313482,34.12249799740918],[-118.3756986471613,34.12250758915385],[-118.37570695208611,34.122517524469],[-118.37571525611258,34.1225274590393],[-118.37572191083223,34.12253774387281],[-118.37573021755365,34.12254802275574],[-118.37573687137494,34.12255830684308],[-118.37574517809639,34.12256858572356],[-118.37575183371433,34.12257921263598],[-118.37575849023058,34.12258984029073],[-118.37576514764515,34.1226008107717],[-118.37577015126128,34.12261144362935],[-118.37577680867588,34.12262241410752],[-118.37578181408861,34.12263339053347],[-118.37578847150318,34.12264436100872],[-118.37579347871258,34.12265568025916],[-118.37579848592198,34.12266700025175],[-118.37580349313137,34.12267831949917],[-118.37580684744064,34.12268964395064],[-118.37581185465004,34.12270096319502],[-118.37581521165424,34.12271263121418],[-118.37582021796534,34.1227239511991],[-118.37582357496954,34.12273561921515],[-118.37582693107545,34.12274728722952],[-118.37583028807967,34.12275895524229],[-118.3758319939804,34.12277097202957],[-118.37583535098463,34.12278264003908],[-118.3758370550887,34.12279431325261],[-118.37583876098944,34.12280633003481],[-118.37584211889197,34.12281834160978],[-118.37584217189256,34.12283002002397],[-118.37584387779329,34.12284203605749],[-118.37584558369402,34.1228540528329],[-118.37584563759292,34.12286607481226],[-118.37584734439197,34.1228780915843],[-118.37584739649427,34.12288976999025],[-118.37584745039317,34.12290179196452],[-118.3758475042921,34.12291381319342],[-118.37584755908931,34.12292583516427],[-118.37584596098642,34.12293786233904],[-118.37584601488535,34.12294988430649],[-118.37584441678246,34.12296191073418],[-118.37584281778125,34.1229735950778],[-118.37584121967835,34.12298562224577],[-118.37583962157547,34.122997649412],[-118.37583636967413,34.12300933821263],[-118.37583477157125,34.12302136463187],[-118.37583152056825,34.12303305342917],[-118.37582826866691,34.12304474222491],[-118.37582501676556,34.12305643101903],[-118.37582176576257,34.12306811906788],[-118.37581851386125,34.12307980785878],[-118.37581526106159,34.12309115307887],[-118.37581035715847,34.12310284707215],[-118.37580710435881,34.12311419154551],[-118.37580219955737,34.12312554196662],[-118.37579729385759,34.12313689238616],[-118.37579238725952,34.12314789923523],[-118.37578583045625,34.12315925485738],[-118.37578092385819,34.12317026170354],[-118.37577601726008,34.12318126854828],[-118.37576945776189,34.12319227985352],[-118.37576289826367,34.12320294833228],[-118.37575633786717,34.12321361680965],[-118.37574977747065,34.12322428528572],[-118.37574321707413,34.12323495376039],[-118.37573665488097,34.12324527866522],[-118.37572844158434,34.12325560877435],[-118.37572022649105,34.12326559531375],[-118.37571366429789,34.12327592021479],[-118.37570544920466,34.1232859067518],[-118.37569723231474,34.12329555046296],[-118.37568901632314,34.12330553699763],[-118.37568079943324,34.12331517996289],[-118.37567092874488,34.12332448456437],[-118.37565448328699,34.12334102343151],[-118.37564296958,34.12335239390078],[-118.37563474909683,34.12336134972453],[-118.37562487571356,34.12336996792853],[-118.37561500412689,34.12337892895597],[-118.37560347694514,34.12338720879581],[-118.37559360266356,34.12339582625349],[-118.37558372658533,34.12340375731816],[-118.37557219940359,34.12341203715552],[-118.37556232242704,34.12341996747499],[-118.37555079255038,34.12342756091881],[-118.37553926177539,34.12343515361834],[-118.37552938390053,34.12344274111158],[-118.3755178504306,34.12344999024197],[-118.37550631965563,34.12345723862808],[-118.37549313328554,34.12346414939516],[-118.37548159801899,34.12347071138846],[-118.3754717138559,34.12347692535176],[-118.37531671763847,34.1235430122656],[-118.37507927853582,34.12364507773147],[-118.37503475803037,34.12366410702374],[-118.37500508667651,34.12367862606819],[-118.37498530846892,34.12368899181962],[-118.37494741034369,34.12371143594643],[-118.37492105916316,34.1237297223168],[-118.37490459573895,34.12374248187295],[-118.3748881350097,34.12375592930374],[-118.37487990464506,34.12376248086334],[-118.37484864327317,34.12379108685528],[-118.37481246811667,34.12382898251052],[-118.37480097417262,34.12384481853013],[-118.37478783092168,34.12386100331834],[-118.37477142229471,34.12388612974231],[-118.37475501726098,34.12391194180312],[-118.37474518250527,34.12392914612109],[-118.3747370024463,34.12394703310503],[-118.37472882238731,34.12396491934158],[-118.37472555970619,34.12397420379305],[-118.37471903254735,34.12399242912746],[-118.37471577076454,34.1240017128323],[-118.37470763472302,34.12402956022238],[-118.37469954449557,34.12406736876395],[-118.37469632583191,34.12408661436259],[-118.37469471605093,34.12409589359518],[-118.37469315028738,34.12411513323816],[-118.37469323652563,34.12413436841491],[-118.37469332186559,34.12415360284359],[-118.37469336498472,34.12416322042814],[-118.37469342966342,34.12417764643102],[-118.37469683427832,34.1241999625209],[-118.37472428769175,34.12442760950292],[-118.37473460394446,34.12451757035731],[-118.374739736918,34.12455705559639],[-118.37474320082174,34.12459276682885],[-118.37474488695952,34.1246003185233],[-118.37474494535003,34.12461337094338],[-118.37474671503114,34.12463946982825],[-118.37474677162498,34.1246521786794],[-118.3747484820173,34.12466522588595],[-118.37474693511837,34.12468858815166],[-118.37474700428866,34.12470404475283],[-118.37474381526941,34.12472981566367],[-118.37474222165808,34.12474287326922],[-118.37473903353714,34.12476864416822],[-118.37473743812919,34.12478135894908],[-118.37473419071945,34.12479407818989],[-118.374730944208,34.12480679742878],[-118.37472444938851,34.12483223515719],[-118.37472120197877,34.12484495439034],[-118.37471795367068,34.12485733005959],[-118.37470980595107,34.12488242941641],[-118.37470000263637,34.1249068475913],[-118.37468854731985,34.12493127022094],[-118.37467709110504,34.12495535002559],[-118.37465742428851,34.12499078966135],[-118.37465086748527,34.12500214503599],[-118.37462954417538,34.12503655991745],[-118.37461312207367,34.12505859394147],[-118.37459669817534,34.12508028439866],[-118.37456875518008,34.12511197158254],[-118.37454902278658,34.12513264175435],[-118.37452928500315,34.12515228123873],[-118.37449967293811,34.12518019517722],[-118.37448452821735,34.12519455499626],[-118.37267972475976,34.12442734162063],[-118.37250857144309,34.12434202882586],[-118.37230990517467,34.12421629748358],[-118.37218863667901,34.12411103568853],[-118.37121217594459,34.12314304818773],[-118.3711574533197,34.12305434343155],[-118.3711180598057,34.12295743840477],[-118.37082878425103,34.12193399731782],[-118.37082306098496,34.12184749239225],[-118.37085117515959,34.12174014851216],[-118.37273093828928,34.11871071093101],[-118.37278585002892,34.11855980890922],[-118.37275719532435,34.11836218070289],[-118.37267407620226,34.11810709006112],[-118.37197281835898,34.11698926792271],[-118.37185366587677,34.11683062109135],[-118.37083457402109,34.11568794043792],[-118.37068622685855,34.11550389698889],[-118.37054710578167,34.11529713953979],[-118.36997267042969,34.11415289190585],[-118.36983266680774,34.11392878787975],[-118.36910543664838,34.11304879455168],[-118.36894774206118,34.11286593394437],[-118.36877136775959,34.11264787835984],[-118.36807346445723,34.11160521832729],[-118.36793045375975,34.11141081883235],[-118.3670200246291,34.11029801601848],[-118.36692149773835,34.11013792753373],[-118.36535696266299,34.10721126176031],[-118.36441405913347,34.10559737984341],[-118.36339441981768,34.10419538470004],[-118.3629117633604,34.10352229855181],[-118.36266169058479,34.10308332610209],[-118.36252292188455,34.10267296884326],[-118.3621741095037,34.10164825895766],[-118.36548897325872,34.10171301408533],[-118.36630024286012,34.10171093876247],[-118.36723219136712,34.10323768300094],[-118.36726697819634,34.10328956440429],[-118.36731371573821,34.10333597211751],[-118.36940236854228,34.1048375695801],[-118.36946780939168,34.10488836144847],[-118.36953600230271,34.10495166725826],[-118.37094697466119,34.10662202583877],[-118.37105830517446,34.10674343060562],[-118.37116206564255,34.10683660592834],[-118.37284057622435,34.10796189974807],[-118.37296805191316,34.10805928337997],[-118.37304681770283,34.10812449814536],[-118.37311334165038,34.10818296498167],[-118.37458258525859,34.10955647062854],[-118.37467401192971,34.10965489713686],[-118.37473940499025,34.10975369013006],[-118.37566739949328,34.11157137883981],[-118.37574376209476,34.11175103973384],[-118.37582344721685,34.11195265634178]]],"type":"Polygon"} +},{ + "id": 1108561747, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000175, + "geom:area_square_m":1794197.320556, + "geom:bbox":"-118.309264937,34.090787,-118.291735,34.1017805105", + "geom:latitude":34.096124, + "geom:longitude":-118.300021, + "iso:country":"US", + "lbl:latitude":34.094774, + "lbl:longitude":-118.301127, + "lbl:max_zoom":18.0, + "mps:latitude":34.095693, + "mps:longitude":-118.300611, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:azb_x_preferred":[ + "\u0644\u06cc\u062a\u0644 \u0622\u0631\u0645\u0646\u06cc\u0627" + ], + "name:aze_x_preferred":[ + "Ki\u00e7ik Erm\u0259nistan" + ], + "name:deu_x_preferred":[ + "Little Armenia" + ], + "name:eng_x_preferred":[ + "Little Armenia" + ], + "name:eus_x_preferred":[ + "Little Armenia" + ], + "name:fas_x_preferred":[ + "\u0644\u06cc\u062a\u0644 \u0622\u0631\u0645\u0646\u06cc\u0627" + ], + "name:fra_x_preferred":[ + "Little Armenia" + ], + "name:hye_x_preferred":[ + "\u0553\u0578\u0584\u0580 \u0540\u0561\u0575\u0561\u057d\u057f\u0561\u0576" + ], + "name:ita_x_preferred":[ + "Little Armenia" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30c8\u30eb\u30fb\u30a2\u30eb\u30e1\u30cb\u30a2" + ], + "name:nld_x_preferred":[ + "Little Armenia" + ], + "name:pol_x_preferred":[ + "Little Ethiopia" + ], + "name:rus_x_preferred":[ + "\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0430\u044f \u0410\u0440\u043c\u0435\u043d\u0438\u044f" + ], + "name:spa_x_preferred":[ + "Little Armenia" + ], + "name:ukr_x_preferred":[ + "\u041c\u0430\u043b\u0435\u043d\u044c\u043a\u0430 \u0412\u0456\u0440\u043c\u0435\u043d\u0456\u044f" + ], + "reversegeo:latitude":34.095693, + "reversegeo:longitude":-118.300611, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865827, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1795364" + }, + "wof:country":"US", + "wof:geomhash":"0a81176fa90ac9b6f159d6aa0a15846c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108561747, + "neighbourhood_id":85865827, + "region_id":85688637 + } + ], + "wof:id":1108561747, + "wof:lastmodified":1566623962, + "wof:name":"Little Armenia", + "wof:parent_id":85865827, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869425 + ], + "wof:tags":[] +}, + "bbox": [ + -118.30926493695246, + 34.090787, + -118.291735, + 34.10178051048084 +], + "geometry": {"coordinates":[[[-118.30053281764141,34.1005657760543],[-118.3005400884369,34.1017618219129],[-118.29983523959609,34.10176361332784],[-118.29947023343492,34.10176453941337],[-118.29835631439779,34.10176757652729],[-118.2972599610177,34.10177055934056],[-118.29659807872308,34.10177219133357],[-118.2961649290594,34.10177325726158],[-118.29569464753342,34.10177452774656],[-118.29451891182831,34.10177769652046],[-118.29365160099792,34.10177980234177],[-118.29344845148798,34.10178029476621],[-118.29335926494994,34.10178051048084],[-118.29312688965057,34.10177806621074],[-118.29291661739876,34.10175703551734],[-118.29280919865371,34.10173792765536],[-118.2926754439995,34.10170600707274],[-118.29255865223277,34.1016701262496],[-118.29238981297679,34.10160382512521],[-118.29223023085983,34.10152320566104],[-118.29217939879116,34.10149329858885],[-118.29204730422359,34.10140789980335],[-118.29197201372466,34.1013407728028],[-118.29188262865895,34.10128431327335],[-118.29178040936279,34.10123273855896],[-118.2917679859882,34.10122371438443],[-118.29176099999999,34.099087],[-118.291758,34.098153],[-118.29175499999999,34.097],[-118.29174999999999,34.095548],[-118.291746,34.094499],[-118.291743,34.093445],[-118.29174,34.092426],[-118.291735,34.090874],[-118.29279200000001,34.090867],[-118.293881,34.090861],[-118.294972,34.090855],[-118.29606200000001,34.090848],[-118.297027,34.090843],[-118.29736200000001,34.09084],[-118.29786799999999,34.090838],[-118.29837999999999,34.090834],[-118.299193,34.09083],[-118.299407,34.090828],[-118.300482,34.090822],[-118.301213,34.090818],[-118.301875,34.090814],[-118.30246099999999,34.090811],[-118.30326700000001,34.090806],[-118.304605,34.090798],[-118.305036,34.090795],[-118.30529300000001,34.090793],[-118.305958,34.090789],[-118.305992,34.090789],[-118.30636,34.090787],[-118.30692500000001,34.091719],[-118.307097,34.091973],[-118.30722,34.092139],[-118.307424,34.092388],[-118.30763,34.092613],[-118.307779,34.092763],[-118.308015,34.092979],[-118.30826500000001,34.093184],[-118.308527,34.093379],[-118.30880399999999,34.093564],[-118.309202,34.093816],[-118.30921446694288,34.09382387125314],[-118.30921517470505,34.09390736976528],[-118.30921826041805,34.09427123310211],[-118.30921931504018,34.09439554848919],[-118.30922355239336,34.09489506149714],[-118.30922921088136,34.09556303641117],[-118.30923123478568,34.09579967755381],[-118.30923814283022,34.09660717374219],[-118.30924040478811,34.09687130899997],[-118.30925113696082,34.09810743816604],[-118.30925113785912,34.098107720095],[-118.30926493695246,34.10051485147932],[-118.30053281764141,34.1005657760543]]],"type":"Polygon"} +},{ + "id": 1108691219, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000139, + "geom:area_square_m":1422843.886415, + "geom:bbox":"-118.199809275,34.0741521508,-118.182536514,34.0936680028", + "geom:latitude":34.084564, + "geom:longitude":-118.191709, + "iso:country":"US", + "lbl:latitude":34.088869, + "lbl:longitude":-118.187978, + "lbl:max_zoom":18.0, + "mps:latitude":34.088869, + "mps:longitude":-118.187978, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0631\u0648\u0632 \u0647\u064a\u0644" + ], + "name:cat_x_preferred":[ + "Rose Hill" + ], + "name:ceb_x_preferred":[ + "Rose Hill" + ], + "name:deu_x_preferred":[ + "Rose Hill" + ], + "name:fra_x_preferred":[ + "Rose Hill" + ], + "name:ita_x_preferred":[ + "Rose Hill" + ], + "name:kor_x_preferred":[ + "\ub85c\uc988\ud790" + ], + "name:nld_x_preferred":[ + "Rose Hill" + ], + "name:pol_x_preferred":[ + "Rose Hill" + ], + "name:por_x_preferred":[ + "Rose Hill" + ], + "name:rus_x_preferred":[ + "\u0420\u043e\u0437-\u0425\u0438\u043b\u043b" + ], + "name:spa_x_preferred":[ + "Rose Hill" + ], + "name:srp_x_preferred":[ + "\u0420\u043e\u0443\u0437 \u0425\u0438\u043b" + ], + "name:swe_x_preferred":[ + "Rose Hill" + ], + "name:urd_x_preferred":[ + "\u0631\u0648\u0632 \u06c1\u0644" + ], + "name:vol_x_preferred":[ + "Rose Hill" + ], + "reversegeo:latitude":34.088869, + "reversegeo:longitude":-118.187978, + "src:geom":"mz", + "wof:belongsto":[ + 85869501, + 102191575, + 1108692433, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"2f2207873130e685ad899d26e7f2cfbd", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692433, + "microhood_id":1108691219, + "neighbourhood_id":85869501, + "region_id":85688637 + } + ], + "wof:id":1108691219, + "wof:lastmodified":1566623957, + "wof:name":"Rose Hill", + "wof:parent_id":85869501, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551071, + 420780787 + ], + "wof:tags":[] +}, + "bbox": [ + -118.19980927450541, + 34.07415215082336, + -118.18253651403644, + 34.09366800283533 +], + "geometry": {"coordinates":[[[-118.1963488706062,34.07415215082336],[-118.19781693696939,34.07565696212979],[-118.19782024636292,34.07566004780115],[-118.19782190105968,34.07566176288969],[-118.19782355575643,34.0756631334724],[-118.19788637943579,34.07569772244786],[-118.19928010122607,34.07646826883485],[-118.19928671372487,34.07647169302665],[-118.19930820591806,34.07648333617073],[-118.19931322031395,34.07650874527346],[-118.19965059878859,34.07812256222804],[-118.19980927450541,34.07888208585312],[-118.19948175593936,34.08002127481547],[-118.19863654186831,34.08288594867178],[-118.19850056747703,34.08334060133483],[-118.19857837505536,34.0834239395998],[-118.19895747219009,34.08382690956575],[-118.19900547905719,34.0838773223407],[-118.1991677147975,34.08405017069554],[-118.19934981588202,34.08424325171819],[-118.1993696452936,34.08424905862029],[-118.19581287372395,34.08498958677457],[-118.19521392829647,34.08519252500304],[-118.19451103162095,34.0854316927018],[-118.19356059159246,34.08573823276456],[-118.19324707596505,34.08583937517761],[-118.19305236343227,34.08590082672131],[-118.19300450299058,34.08591258165448],[-118.19294507494294,34.08592092021623],[-118.19285425796264,34.08592312612574],[-118.19285888159142,34.08649570687373],[-118.19286191430385,34.08709473719004],[-118.19228065041609,34.08709738126885],[-118.19143022162483,34.08710113609877],[-118.19142789049666,34.08752568524017],[-118.19144648831798,34.08771491500296],[-118.19150153438365,34.08795595408858],[-118.19153978914002,34.08807542512866],[-118.1915550470251,34.08824817415016],[-118.19159215642949,34.08858850731262],[-118.19160263527731,34.08883751690249],[-118.19157536152696,34.0891865393143],[-118.19159042986755,34.0892765078909],[-118.1915875004614,34.08943932344596],[-118.19157041001311,34.08990854982745],[-118.19155127859253,34.09020775474783],[-118.1914927856911,34.0913471826558],[-118.19147826801778,34.09149765236464],[-118.19131756121008,34.09199252324257],[-118.19115003439276,34.09239535199726],[-118.19101185373913,34.09263154299486],[-118.19074476394391,34.09282603352263],[-118.19057715897313,34.09319623002744],[-118.19017700000001,34.093636],[-118.19010257092368,34.09364934544742],[-118.19006246062465,34.09365328975489],[-118.18998038926529,34.09366121609936],[-118.18998010200562,34.09366123863822],[-118.18991103932532,34.09366647855369],[-118.18989452688916,34.09366726751219],[-118.18981525825478,34.09366800283533],[-118.18979044244649,34.0936669357889],[-118.18975075392552,34.09366449606414],[-118.18973641248398,34.09366330353718],[-118.18969711779944,34.09365890845696],[-118.18967485606747,34.09365585693576],[-118.18964988965703,34.09365227796455],[-118.18959896232978,34.09364315121787],[-118.18958279324247,34.09363945212999],[-118.18949475912437,34.09361732584879],[-118.18943030410439,34.09359613095378],[-118.18940800588254,34.09358724229089],[-118.18936253160611,34.09356841488797],[-118.18926829384122,34.09352219241205],[-118.18920694074143,34.09348463872212],[-118.18918519799995,34.09347029024038],[-118.18915417546079,34.09344817867008],[-118.18907972488668,34.09338852916507],[-118.18905315567804,34.09336572151222],[-118.1890151917133,34.09333264235458],[-118.18896318145293,34.09328826692318],[-118.18893907656097,34.09326749967461],[-118.18893408459581,34.09326344132959],[-118.18881828818954,34.09316464321849],[-118.18880174212035,34.09315058611762],[-118.18875044831761,34.09310670006576],[-118.18872562966293,34.09308578624466],[-118.18867599594687,34.09304601999037],[-118.18863629310626,34.09301585550165],[-118.18859477170497,34.0929875882863],[-118.18859328895697,34.0929863828486],[-118.18858782763044,34.09298286085311],[-118.18854367051225,34.09295279927689],[-118.18851398714172,34.0929352413111],[-118.18847586567462,34.09291065687463],[-118.18844361792486,34.09289361732164],[-118.18841799171243,34.09287845919931],[-118.18831383025861,34.09282503815458],[-118.18819150217477,34.09277130239678],[-118.18818051666941,34.0927672377137],[-118.18817332027344,34.09276411759022],[-118.18811547146409,34.09274256688632],[-118.18808241615658,34.09273094011231],[-118.18799978462516,34.09270427715871],[-118.18791220427485,34.09268036968975],[-118.18788859193964,34.09267490277339],[-118.18787089344987,34.09266978588818],[-118.18782422467189,34.09265999994969],[-118.18780315149431,34.09265512091938],[-118.187783266696,34.0926514115047],[-118.18776845586308,34.09264830583307],[-118.18775270785726,34.09264571089847],[-118.18773376202849,34.09264217664409],[-118.1877203764098,34.09264038336731],[-118.1876528121433,34.09262925022101],[-118.18754874501256,34.09261738983923],[-118.18746120418814,34.09261099953062],[-118.18743401711018,34.09260993293393],[-118.18742486913152,34.09260933834787],[-118.18741687362649,34.09260926036502],[-118.18737697365553,34.09260769501926],[-118.18727293167765,34.09260785645083],[-118.18713422730617,34.09261528453388],[-118.18708338136628,34.09262065250428],[-118.1870698351683,34.09262156697322],[-118.18705911180014,34.0926232147209],[-118.18703186248294,34.09262609151948],[-118.18695500775617,34.09263921129905],[-118.18687338170051,34.09265175392014],[-118.18685563895474,34.09265617442968],[-118.186828812686,34.09266075391031],[-118.18664725867551,34.09270809125383],[-118.18650369352007,34.09275743121135],[-118.18645146816046,34.09277849328454],[-118.1864409938082,34.09278225963486],[-118.18643519797745,34.09278505492026],[-118.18640964529972,34.09279536011246],[-118.18627932041325,34.09285807499429],[-118.18625037791577,34.09287419224022],[-118.18623808325012,34.09288012186461],[-118.18620510212256,34.09289940502962],[-118.18617540779275,34.09291594094939],[-118.18614736859219,34.0929331602489],[-118.18613912573672,34.09293797962149],[-118.18613403611016,34.09294134792888],[-118.18611933585103,34.09295037558159],[-118.18606491770771,34.09298618124605],[-118.18601215426121,34.09302370237617],[-118.18594291481408,34.09307807923285],[-118.18570136232573,34.09288026097802],[-118.18568498753206,34.09286977031466],[-118.18568482434134,34.09286963851751],[-118.18543466683293,34.09270940003833],[-118.18513743565421,34.0925189761284],[-118.18470578195424,34.09224187618551],[-118.18422209485551,34.09193268163835],[-118.18392685905958,34.09174363898606],[-118.18362256194358,34.09154522544159],[-118.18362135130384,34.09154440538506],[-118.18358120799948,34.09151403155757],[-118.18348882131986,34.09145463294835],[-118.18342574914969,34.09141190946621],[-118.18341308293905,34.09140593810941],[-118.1834042551599,34.09140026242319],[-118.18326868590877,34.09133039798579],[-118.18312653380328,34.09127084741977],[-118.18296621866105,34.09121269838822],[-118.18290439858178,34.09119048011085],[-118.18253651403644,34.09105809411038],[-118.18279342454436,34.09039389609032],[-118.18324754090612,34.08931435733146],[-118.18404905156049,34.08751429000175],[-118.18419094428259,34.08722854545566],[-118.18420228153855,34.08699342045852],[-118.18421799743373,34.08630432940253],[-118.18406476745569,34.0854509241254],[-118.18626106380745,34.08523184900871],[-118.1865404113445,34.08519352466789],[-118.18673385677509,34.08515447602813],[-118.1868803728422,34.0850945440508],[-118.18705487194521,34.08500650692112],[-118.18728069543042,34.08487360450589],[-118.18748230241698,34.08472605025161],[-118.18783265332597,34.08440964240035],[-118.18991893841159,34.08213596333148],[-118.19144338024446,34.08044776751148],[-118.19248961932364,34.07930568162525],[-118.19264141560876,34.07908785540373],[-118.19288177028585,34.07880304832312],[-118.19296202547815,34.07864575542626],[-118.1930542595007,34.0785028249659],[-118.1931466980175,34.07837464097175],[-118.19322122843742,34.07827556900406],[-118.19328851265993,34.07816868184231],[-118.19334199544276,34.07804170984231],[-118.19340591033566,34.07772023701047],[-118.19348644661829,34.07727282747084],[-118.19353688290761,34.0770740500235],[-118.19354758241781,34.07689982830696],[-118.19371960327923,34.0759675845752],[-118.19372131367153,34.07599299978519],[-118.19372481081292,34.07607714813174],[-118.19372487010175,34.0761029093011],[-118.19372656881592,34.07612317179233],[-118.19372660025695,34.07613691102656],[-118.19381145062712,34.07641465290743],[-118.19511155359173,34.0759931664569],[-118.1960543453639,34.07458610535424],[-118.1963488706062,34.07415215082336]]],"type":"Polygon"} +},{ + "id": 1108561749, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":30272.531037, + "geom:bbox":"-118.365493779,34.0556389279,-118.362753426,34.0582440756", + "geom:latitude":34.057048, + "geom:longitude":-118.364284, + "iso:country":"US", + "lbl:latitude":34.056134, + "lbl:longitude":-118.364199, + "lbl:max_zoom":18.0, + "mps:latitude":34.057039, + "mps:longitude":-118.364378, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Little Ethiopia" + ], + "name:eng_x_preferred":[ + "Little Ethiopia" + ], + "name:eng_x_variant":[ + "Littleethiopia" + ], + "name:fra_x_preferred":[ + "Little Ethiopia" + ], + "name:pol_x_preferred":[ + "Little Ethiopia" + ], + "name:spa_x_preferred":[ + "Little Ethiopia" + ], + "reversegeo:latitude":34.057039, + "reversegeo:longitude":-118.364378, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420551221, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q634624" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"b4bf95e668be14321cddd342236e9b5f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561749, + "neighbourhood_id":420551221, + "region_id":85688637 + } + ], + "wof:id":1108561749, + "wof:lastmodified":1566623961, + "wof:name":"Little Ethiopia", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869427 + ], + "wof:tags":[] +}, + "bbox": [ + -118.3654937794286, + 34.05563892794969, + -118.36275342571058, + 34.05824407556441 +], + "geometry": {"coordinates":[[[-118.3643566664533,34.05824407556441],[-118.36381627418599,34.058183],[-118.363018,34.058049],[-118.36275342571058,34.05800450986904],[-118.362959,34.057514],[-118.36350514759518,34.0576872642743],[-118.36449309939363,34.05563892794969],[-118.36493400000001,34.05576],[-118.365452,34.055818],[-118.3654937794286,34.05582280914285],[-118.3643566664533,34.05824407556441]]],"type":"Polygon"} +},{ + "id": 1108561751, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":235610.872378, + "geom:bbox":"-118.445615257,34.0461295778,-118.433253363,34.0591760885", + "geom:latitude":34.052237, + "geom:longitude":-118.438933, + "iso:country":"US", + "lbl:latitude":34.051755, + "lbl:longitude":-118.438594, + "lbl:max_zoom":18.0, + "mps:latitude":34.049341, + "mps:longitude":-118.436451, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Tehrangeles" + ], + "name:eng_x_preferred":[ + "Persian Square" + ], + "name:eng_x_variant":[ + "Little Persia", + "Tehrangeles" + ], + "name:fas_x_preferred":[ + "\u062a\u0647\u0631\u0627\u0646\u062c\u0644\u0633" + ], + "name:fra_x_preferred":[ + "Little Persia" + ], + "name:rus_x_preferred":[ + "\u0422\u0435\u0433\u0435\u0440\u0430\u043d\u0434\u0436\u0435\u043b\u0435\u0441" + ], + "name:spa_x_preferred":[ + "Tehrangeles" + ], + "name:tgk_x_preferred":[ + "\u0422\u0435\u04b3\u0440\u043e\u043d\u04b7\u0435\u043b\u0435\u0441" + ], + "reversegeo:latitude":34.049341, + "reversegeo:longitude":-118.436451, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85855873, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1482230" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"9643db0904766617198202e2db6e099b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561751, + "neighbourhood_id":85855873, + "region_id":85688637 + } + ], + "wof:id":1108561751, + "wof:lastmodified":1566623962, + "wof:name":"Little Persia", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869431 + ], + "wof:tags":[] +}, + "bbox": [ + -118.44561525656553, + 34.04612957781348, + -118.43325336281785, + 34.05917608846353 +], + "geometry": {"coordinates":[[[-118.44256553689863,34.05917608846353],[-118.44216613577393,34.05823417621738],[-118.44266725303567,34.05809101747131],[-118.44214885586837,34.05713184763555],[-118.44167365846501,34.05629435464927],[-118.44120710101441,34.05548548604665],[-118.44057638446087,34.05463366032457],[-118.43985926837942,34.05388204228483],[-118.43678344518673,34.05029565873813],[-118.43604904919974,34.05050325793049],[-118.43325336281785,34.04722905413272],[-118.43507137089958,34.04612957781348],[-118.43689576457302,34.04824827395971],[-118.43840775631099,34.04999499694248],[-118.43793255890763,34.05013816935656],[-118.43920263196752,34.05159135572764],[-118.44220069558513,34.05511326073367],[-118.44277957242197,34.05604382095142],[-118.44373860718149,34.05770448764915],[-118.4450000402886,34.05735374609992],[-118.44561525656553,34.05833627976211],[-118.44256553689863,34.05917608846353]]],"type":"Polygon"} +},{ + "id": 1108561753, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":314407.270432, + "geom:bbox":"-118.244736882,34.045538,-118.238039,34.0534282292", + "geom:latitude":34.04933, + "geom:longitude":-118.24068, + "iso:country":"US", + "lbl:latitude":34.048857, + "lbl:longitude":-118.240008, + "lbl:max_zoom":18.0, + "mps:latitude":34.049322, + "mps:longitude":-118.24073, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":20.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:afr_x_preferred":[ + "Little Tokyo" + ], + "name:ceb_x_preferred":[ + "Little Tokyo Historic District" + ], + "name:deu_x_preferred":[ + "Little Tokyo Historic District" + ], + "name:eng_x_preferred":[ + "Little Tokyo" + ], + "name:eng_x_variant":[ + "Littletokyo" + ], + "name:epo_x_preferred":[ + "Eta Tokio" + ], + "name:fas_x_preferred":[ + "\u0644\u06cc\u062a\u0644 \u062a\u0648\u06a9\u06cc\u0648" + ], + "name:fra_x_preferred":[ + "Little Tokyo" + ], + "name:ita_x_preferred":[ + "Little Tokyo" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30c8\u30eb\u30fb\u30c8\u30fc\u30ad\u30e7\u30fc" + ], + "name:kor_x_preferred":[ + "\ub9ac\ud2c0\ub3c4\ucfc4" + ], + "name:nld_x_preferred":[ + "Little Tokyo" + ], + "name:pol_x_preferred":[ + "Little Tokyo" + ], + "name:zho_x_preferred":[ + "\u5c0f\u4e1c\u4eac" + ], + "reversegeo:latitude":34.049322, + "reversegeo:longitude":-118.24073, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865837, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1780798" + }, + "wof:country":"US", + "wof:geomhash":"943472b434ccef79e598f6e2adb8d5e1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108561753, + "neighbourhood_id":85865837, + "region_id":85688637 + } + ], + "wof:id":1108561753, + "wof:lastmodified":1566623962, + "wof:name":"Little Tokyo", + "wof:parent_id":85865837, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867339 + ], + "wof:tags":[] +}, + "bbox": [ + -118.24473688187331, + 34.045538, + -118.238039, + 34.05342822916984 +], + "geometry": {"coordinates":[[[-118.23811499999999,34.048988],[-118.238102,34.04841],[-118.238084,34.047162],[-118.23808,34.046905],[-118.238061,34.045538],[-118.23956099999999,34.04611],[-118.240196,34.046352],[-118.240375,34.04642],[-118.241056,34.04668],[-118.242504,34.047326],[-118.243077,34.047608],[-118.24378900000001,34.04796],[-118.244727,34.048517],[-118.24473688187331,34.04852286364169],[-118.2446096761643,34.04865588243341],[-118.24455043855951,34.04871851611963],[-118.24451588126887,34.04875430847793],[-118.24449448789038,34.04877633482339],[-118.24447967556964,34.0487911346665],[-118.24446323639995,34.04881383757915],[-118.24441226419411,34.04888091987946],[-118.24348982285639,34.0500956245501],[-118.24239463459124,34.05151641430494],[-118.24168746193496,34.05241638500178],[-118.24112336305568,34.05313608093771],[-118.24096709212884,34.053324277823],[-118.24087494294697,34.05342475858297],[-118.24087188998863,34.05342822916984],[-118.24086200000001,34.05342],[-118.239698,34.052451],[-118.238039,34.05107],[-118.23811499999999,34.048988]]],"type":"Polygon"} +},{ + "id": 1108691223, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000112, + "geom:area_square_m":1147612.524356, + "geom:bbox":"-118.519633,34.027872,-118.509156,34.051127", + "geom:latitude":34.039094, + "geom:longitude":-118.514722, + "iso:country":"US", + "lbl:latitude":34.04309, + "lbl:longitude":-118.514534, + "lbl:max_zoom":18.0, + "mps:latitude":34.03936, + "mps:longitude":-118.515079, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Rustic Canyon" + ], + "name:eng_x_variant":[ + "Rustic Cyn" + ], + "reversegeo:latitude":34.03936, + "reversegeo:longitude":-118.515079, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840153, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7382484" + }, + "wof:country":"US", + "wof:geomhash":"c20bc5151ad104d8e97a7ca94dd3c984", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108691223, + "neighbourhood_id":85840153, + "region_id":85688637 + } + ], + "wof:id":1108691223, + "wof:lastmodified":1566623960, + "wof:name":"Rustic Canyon", + "wof:parent_id":85840153, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869635 + ], + "wof:tags":[] +}, + "bbox": [ + -118.519633, + 34.027872, + -118.509156, + 34.051127 +], + "geometry": {"coordinates":[[[-118.51291053326302,34.03632918371908],[-118.513555,34.034788],[-118.513587,34.034716],[-118.51364700000001,34.034613],[-118.513733,34.034499],[-118.513818,34.03441],[-118.51386599999999,34.034367],[-118.513986,34.034277],[-118.514118,34.034201],[-118.514526,34.034014],[-118.51464,34.033956],[-118.514723,34.033897],[-118.51479399999999,34.03383],[-118.514854,34.033755],[-118.514904,34.033668],[-118.51514299999999,34.033071],[-118.51509,34.033061],[-118.515038,34.03307],[-118.51499800000001,34.033092],[-118.514512,34.033317],[-118.514409,34.033375],[-118.51422599999999,34.033512],[-118.51415299999999,34.033558],[-118.51406900000001,34.033592],[-118.513987,34.033612],[-118.513739,34.033629],[-118.51365,34.033646],[-118.513313,34.033764],[-118.51326899999999,34.033775],[-118.51320200000001,34.033777],[-118.513137,34.033762],[-118.513086,34.033736],[-118.51304500000001,34.033701],[-118.513015,34.033655],[-118.513003,34.03361],[-118.513004,34.03356],[-118.513042,34.033302],[-118.513069,34.033234],[-118.513116,34.033167],[-118.513175,34.033115],[-118.514819,34.032122],[-118.514714,34.031575],[-118.514695,34.031521],[-118.51466000000001,34.031474],[-118.51461500000001,34.031438],[-118.514556,34.03141],[-118.51449100000001,34.031396],[-118.514432,34.031396],[-118.51436699999999,34.031409],[-118.51431599999999,34.031431],[-118.5138,34.031801],[-118.513645,34.031902],[-118.513096,34.032217],[-118.51303,34.032275],[-118.51298199999999,34.032344],[-118.51295500000001,34.032414],[-118.512861,34.033221],[-118.51256400700868,34.03321755234107],[-118.512601,34.032956],[-118.512609,34.032809],[-118.51260499999999,34.032645],[-118.512598,34.032436],[-118.51251600000001,34.03196],[-118.512497,34.031821],[-118.512494,34.031681],[-118.51251000000001,34.031541],[-118.512542,34.031404],[-118.512592,34.03127],[-118.512659,34.031141],[-118.51274100000001,34.031019],[-118.512838,34.030905],[-118.512929,34.030816],[-118.513075,34.0307],[-118.513167,34.030634],[-118.513278,34.030579],[-118.51336999999999,34.030529],[-118.513476,34.030495],[-118.513595,34.030462],[-118.513718,34.030433],[-118.51380399999999,34.030416],[-118.514849,34.030202],[-118.51527400000001,34.029829],[-118.515563,34.029575],[-118.515719,34.029538],[-118.51598300000001,34.029413],[-118.516186,34.029318],[-118.51700099999999,34.028932],[-118.517313,34.028744],[-118.517533,34.02861],[-118.517988,34.028335],[-118.518773,34.027872],[-118.519457,34.028283],[-118.51891999999999,34.029219],[-118.517867,34.03004],[-118.517923,34.030161],[-118.51805,34.030434],[-118.51823400000001,34.030825],[-118.518294,34.030923],[-118.518379,34.03103],[-118.51848,34.031127],[-118.518593,34.031214],[-118.518866,34.031382],[-118.51897099999999,34.031449],[-118.51899,34.031468],[-118.51906200000001,34.031548],[-118.51912400000001,34.031648],[-118.519161,34.031734],[-118.519186,34.031832],[-118.519194,34.031931],[-118.519187,34.032018],[-118.519109,34.032552],[-118.51911,34.032663],[-118.519127,34.032773],[-118.51916,34.03288],[-118.519209,34.032985],[-118.519256,34.03306],[-118.519452,34.033345],[-118.519505,34.033451],[-118.519542,34.033562],[-118.51956300000001,34.033676],[-118.519592,34.03401],[-118.519632,34.034497],[-118.519633,34.034701],[-118.519617,34.034904],[-118.51958399999999,34.035105],[-118.51953399999999,34.035304],[-118.51946700000001,34.035499],[-118.519407,34.035643],[-118.51919700000001,34.036081],[-118.51864500000001,34.037227],[-118.518518,34.037526],[-118.51844,34.03773],[-118.518359,34.03797],[-118.518288,34.038211],[-118.518216,34.038508],[-118.518156,34.038823],[-118.51812099999999,34.03907],[-118.518096,34.039318],[-118.51808200000001,34.039567],[-118.518078,34.039816],[-118.518085,34.040064],[-118.518102,34.040313],[-118.51821200000001,34.041304],[-118.518123,34.041298],[-118.51799699999999,34.041301],[-118.517855,34.041321],[-118.517714,34.041357],[-118.517619,34.041394],[-118.51751,34.041447],[-118.517494,34.041526],[-118.517442,34.041562],[-118.517338,34.041654],[-118.517261,34.041747],[-118.517201,34.041847],[-118.517162,34.04194],[-118.51698,34.042677],[-118.516845,34.043038],[-118.51682099999999,34.043112],[-118.516795,34.043245],[-118.51678800000001,34.043359],[-118.51684299999999,34.04391],[-118.51684299999999,34.044027],[-118.51682700000001,34.044144],[-118.51679300000001,34.044258],[-118.51674300000001,34.044368],[-118.516678,34.044472],[-118.516597,34.044568],[-118.516503,34.044656],[-118.516397,34.044733],[-118.51496400000001,34.045563],[-118.514363,34.04591],[-118.514217,34.045985],[-118.51396699999999,34.046083],[-118.51392300000001,34.046104],[-118.51380899999999,34.046157],[-118.51367,34.046239],[-118.513554,34.046323],[-118.513473,34.046393],[-118.513417,34.046447],[-118.51331500000001,34.046563],[-118.51324099999999,34.046666],[-118.51318999999999,34.046752],[-118.51315700000001,34.046819],[-118.513103,34.046955],[-118.513076,34.047054],[-118.513034,34.047242],[-118.51299299999999,34.047357],[-118.51293,34.04749],[-118.51231799999999,34.048465],[-118.512229,34.048588],[-118.512035,34.048798],[-118.511945,34.048908],[-118.51187899999999,34.049009],[-118.511827,34.049116],[-118.51178899999999,34.049226],[-118.51177,34.049315],[-118.51152500000001,34.050449],[-118.511509,34.05051],[-118.511471,34.050606],[-118.51142,34.050697],[-118.51135499999999,34.050782],[-118.511278,34.050863],[-118.511191,34.050932],[-118.511094,34.050993],[-118.510974,34.051049],[-118.510862,34.051087],[-118.510744,34.051112],[-118.510729,34.051114],[-118.510642,34.051125],[-118.51056800000001,34.051126],[-118.510499,34.051127],[-118.51035,34.051112],[-118.51029800000001,34.0511],[-118.510217,34.051081],[-118.51009000000001,34.051034],[-118.509987,34.050982],[-118.50988099999999,34.050912],[-118.509795,34.050838],[-118.509478,34.050483],[-118.509382,34.050361],[-118.509315,34.050255],[-118.509249,34.050122],[-118.50920000000001,34.049984],[-118.509169,34.049843],[-118.509156,34.049699],[-118.50916599999999,34.049367],[-118.509173,34.049256],[-118.50920000000001,34.04909],[-118.509243,34.048926],[-118.509304,34.048766],[-118.50936400000001,34.048642],[-118.50945400000001,34.048491],[-118.51006599999999,34.047639],[-118.510125,34.047544],[-118.510167,34.047452],[-118.51020200000001,34.047342],[-118.510221,34.047213],[-118.51021799999999,34.047082],[-118.510193,34.046954],[-118.510154,34.046845],[-118.51009999999999,34.04674],[-118.510023,34.046633],[-118.509934,34.046539],[-118.50985,34.04647],[-118.509613,34.04631],[-118.50976300000001,34.04586],[-118.509839,34.045592],[-118.509905,34.045295],[-118.510093,34.044178],[-118.51012900000001,34.044004],[-118.510182,34.043824],[-118.51025,34.043648],[-118.51033200000001,34.043476],[-118.510428,34.043309],[-118.51056800000001,34.043109],[-118.510695,34.042957],[-118.51128799999999,34.042335],[-118.511381,34.042223],[-118.511478,34.042085],[-118.511555,34.041953],[-118.511629,34.041794],[-118.511686,34.041631],[-118.511726,34.041464],[-118.511748,34.041295],[-118.51176599999999,34.040836],[-118.51179999999999,34.039896],[-118.51181699999999,34.039729],[-118.511852,34.039563],[-118.512114,34.038704],[-118.51257,34.037218],[-118.51291053326302,34.03632918371908]]],"type":"Polygon"} +},{ + "id": 1108691227, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":708418.056996, + "geom:bbox":"-118.248997,34.0349871058,-118.238044,34.047326", + "geom:latitude":34.041833, + "geom:longitude":-118.241998, + "iso:country":"US", + "lbl:latitude":34.043595, + "lbl:longitude":-118.244024, + "lbl:max_zoom":18.0, + "mps:latitude":34.041519, + "mps:longitude":-118.241625, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Skid Row" + ], + "name:eng_x_variant":[ + "Skidrow", + "The NIckel", + "Central City East" + ], + "name:fao_x_preferred":[ + "Skid Row" + ], + "name:ita_x_preferred":[ + "Skid Row" + ], + "name:jpn_x_preferred":[ + "\u30b9\u30ad\u30c3\u30c9\u30fb\u30ed\u30a6" + ], + "name:kor_x_preferred":[ + "\uc2a4\ud0a4\ub4dc\ub85c" + ], + "name:mkd_x_preferred":[ + "\u0421\u043a\u0438\u0434 \u0420\u043e\u0443" + ], + "name:nld_x_preferred":[ + "Skid Row" + ], + "name:pol_x_preferred":[ + "Skid Row" + ], + "name:por_x_preferred":[ + "Skid Row" + ], + "name:sco_x_preferred":[ + "Skid Row" + ], + "reversegeo:latitude":34.041519, + "reversegeo:longitude":-118.241625, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1057444" + }, + "wof:country":"US", + "wof:geomhash":"c78f5887478ce6d3d9eeedc91740f7a1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691227, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1108691227, + "wof:lastmodified":1566623960, + "wof:name":"Skid Row", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869659 + ], + "wof:tags":[] +}, + "bbox": [ + -118.248997, + 34.03498710579433, + -118.238044, + 34.047326 +], + "geometry": {"coordinates":[[[-118.24757,34.046064],[-118.24656899999999,34.045413],[-118.245785,34.044902],[-118.24564100000001,34.044809],[-118.244983,34.044581],[-118.24388500000001,34.0442],[-118.243442,34.044957],[-118.243002,34.045843],[-118.242891,34.046068],[-118.242824,34.046255],[-118.24271299999999,34.046684],[-118.242654,34.046913],[-118.242504,34.047326],[-118.241056,34.04668],[-118.240375,34.04642],[-118.240196,34.046352],[-118.23956099999999,34.04611],[-118.238061,34.045538],[-118.238044,34.04439],[-118.238112,34.043273],[-118.238223,34.04142],[-118.238315,34.039884],[-118.238362,34.039112],[-118.238421,34.038137],[-118.23846500000001,34.037406],[-118.238495,34.036912],[-118.238512,34.036634],[-118.23854300000001,34.036117],[-118.23861075379718,34.03498710579433],[-118.246765,34.040704],[-118.245487,34.041922],[-118.24524,34.04226],[-118.246162,34.042856],[-118.247114,34.043467],[-118.247905,34.043941],[-118.248997,34.044595],[-118.248536,34.04503],[-118.24757,34.046064]]],"type":"Polygon"} +},{ + "id": 1108691229, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":203032.294718, + "geom:bbox":"-118.361561457,34.0944207673,-118.356032,34.09807", + "geom:latitude":34.096242, + "geom:longitude":-118.358809, + "iso:country":"US", + "lbl:latitude":34.096256, + "lbl:longitude":-118.358653, + "lbl:max_zoom":18.0, + "mps:latitude":34.096252, + "mps:longitude":-118.358809, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Spaulding Square" + ], + "name:eng_x_variant":[ + "Spaulding Sq" + ], + "reversegeo:latitude":34.096252, + "reversegeo:longitude":-118.358809, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85826037, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7574138" + }, + "wof:country":"US", + "wof:geomhash":"0dc0d85d86db4b34120a207cd7ef1fee", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691229, + "neighbourhood_id":85826037, + "region_id":85688637 + } + ], + "wof:id":1108691229, + "wof:lastmodified":1566623960, + "wof:name":"Spaulding Square", + "wof:parent_id":85826037, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869687 + ], + "wof:tags":[] +}, + "bbox": [ + -118.36156145747691, + 34.09442076730092, + -118.356032, + 34.09807 +], + "geometry": {"coordinates":[[[-118.356103,34.098045],[-118.356211,34.097863],[-118.35620900000001,34.097483],[-118.356196,34.097402],[-118.356165,34.097324],[-118.35609100000001,34.097214],[-118.356058,34.097137],[-118.356044,34.097063],[-118.356039,34.096202],[-118.356032,34.094498],[-118.356032,34.09442076730092],[-118.35672571272772,34.09442571174236],[-118.35768030117619,34.0944325066],[-118.35926907865567,34.09444359380694],[-118.3594936871211,34.0944449864029],[-118.36011961883804,34.09444930478918],[-118.36155480596351,34.09445944499909],[-118.36154125487744,34.09476312702226],[-118.36153811706214,34.0951832189643],[-118.36154108150258,34.09548685078119],[-118.36154577969153,34.09580971345651],[-118.36155761050382,34.09701805987618],[-118.36155997486965,34.09718292556344],[-118.36156145747691,34.09805391731095],[-118.36155599999999,34.098054],[-118.36099400000001,34.098063],[-118.36036,34.09807],[-118.35927,34.098066],[-118.35817900000001,34.098059],[-118.357089,34.098051],[-118.356103,34.098045]]],"type":"Polygon"} +},{ + "id": 1108691231, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000065, + "geom:area_square_m":661619.538596, + "geom:bbox":"-118.380263355,34.2442644729,-118.369048,34.254407", + "geom:latitude":34.248736, + "geom:longitude":-118.374084, + "iso:country":"US", + "lbl:latitude":34.248574, + "lbl:longitude":-118.374084, + "lbl:max_zoom":18.0, + "mps:latitude":34.248574, + "mps:longitude":-118.374084, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Stonehurst" + ], + "reversegeo:latitude":34.248574, + "reversegeo:longitude":-118.374084, + "src:geom":"mz", + "wof:belongsto":[ + 85865489, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"c073256cd90ff3df23e9e2d1986f911b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1108691231, + "neighbourhood_id":85865489, + "region_id":85688637 + } + ], + "wof:id":1108691231, + "wof:lastmodified":1566623959, + "wof:name":"Stonehurst", + "wof:parent_id":85865489, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551239 + ], + "wof:tags":[] +}, + "bbox": [ + -118.38026335472193, + 34.24426447294009, + -118.369048, + 34.254407 +], + "geometry": {"coordinates":[[[-118.38022100000001,34.249332],[-118.38011957452622,34.24948657092499],[-118.37994999999999,34.249745],[-118.37976,34.249662],[-118.379718,34.249648],[-118.379654,34.24964],[-118.37958999999999,34.249648],[-118.37953400000001,34.249667],[-118.37944,34.249732],[-118.376955,34.251547],[-118.37536799999999,34.252706],[-118.374658,34.253224],[-118.37303900000001,34.254407],[-118.372927,34.254304],[-118.372878,34.254251],[-118.372792,34.254139],[-118.372709,34.254],[-118.37265499999999,34.253875],[-118.37262200000001,34.253765],[-118.372598,34.253636],[-118.37259,34.253504],[-118.37259899999999,34.25341],[-118.372621,34.253235],[-118.37262800000001,34.253118],[-118.372614,34.252984],[-118.372587,34.25287],[-118.372546,34.25276],[-118.37249199999999,34.252654],[-118.372424,34.252554],[-118.372344,34.252459],[-118.372232,34.252351],[-118.370655,34.250859],[-118.369868,34.250115],[-118.369799,34.25005],[-118.369677,34.249897],[-118.369597,34.24977],[-118.36954299999999,34.249659],[-118.36949799999999,34.24952],[-118.369463,34.24938],[-118.369422,34.249118],[-118.36933500000001,34.248568],[-118.36904800000001,34.246747],[-118.369899,34.246126],[-118.37245068953574,34.24426447294009],[-118.37599770440423,34.24482862672582],[-118.37847737743064,34.24748521581314],[-118.37892878051385,34.24796925516665],[-118.37900799703291,34.2480536932817],[-118.3792963529086,34.24836262234792],[-118.37931616909864,34.24838400366987],[-118.37936106150664,34.24843229481304],[-118.37936806492479,34.24843945076748],[-118.37938599963726,34.24845866505942],[-118.37939631910611,34.24846832033231],[-118.37940261847002,34.24847475689804],[-118.37946243548816,34.24853055740943],[-118.37983131518486,34.24887632193936],[-118.38007889626707,34.24910774119816],[-118.38010346953847,34.24913034912367],[-118.3801038191263,34.24913067621579],[-118.38026335472193,34.24927744711815],[-118.38022100000001,34.249332]]],"type":"Polygon"} +},{ + "id": 1108561755, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000672, + "geom:area_square_m":6880199.261139, + "geom:bbox":"-118.511608005,34.05778,-118.487632,34.13050186", + "geom:latitude":34.090566, + "geom:longitude":-118.499593, + "iso:country":"US", + "lbl:latitude":34.106407, + "lbl:longitude":-118.511485, + "lbl:max_zoom":18.0, + "mps:latitude":34.077865, + "mps:longitude":-118.500399, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Mandeville Canyon" + ], + "name:eng_x_variant":[ + "Mandeville Cyn" + ], + "name:zho_x_preferred":[ + "\u66fc\u5fb7\u7dad\u723e\u5cfd\u8c37" + ], + "reversegeo:latitude":34.077865, + "reversegeo:longitude":-118.500399, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807211, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6748002" + }, + "wof:country":"US", + "wof:geomhash":"461e6b3479904923724aa1766a92303d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561755, + "neighbourhood_id":85807211, + "region_id":85688637 + } + ], + "wof:id":1108561755, + "wof:lastmodified":1566623963, + "wof:name":"Mandeville Canyon", + "wof:parent_id":85807211, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869451 + ], + "wof:tags":[] +}, + "bbox": [ + -118.51160800526, + 34.05778, + -118.487632, + 34.1305018600442 +], + "geometry": {"coordinates":[[[-118.49201600000001,34.05778],[-118.492135,34.05789],[-118.492266,34.057984],[-118.49238699999999,34.058053],[-118.49265800000001,34.058184],[-118.492965,34.058331],[-118.49307399999999,34.058402],[-118.49315900000001,34.058473],[-118.493224,34.058541],[-118.493287,34.058627],[-118.49333799999999,34.058718],[-118.493375,34.058814],[-118.493399,34.058927],[-118.493405,34.059027],[-118.49338400000001,34.059653],[-118.49339500000001,34.059764],[-118.49342300000001,34.059873],[-118.493466,34.059978],[-118.49352399999999,34.060078],[-118.493596,34.060172],[-118.49368200000001,34.060258],[-118.493779,34.060334],[-118.493887,34.0604],[-118.494004,34.060454],[-118.494022,34.060461],[-118.494128,34.060496],[-118.494257,34.060526],[-118.494428,34.060544],[-118.494581,34.060541],[-118.494713,34.060524],[-118.49484200000001,34.060494],[-118.49496499999999,34.060451],[-118.495097,34.060386],[-118.495189,34.060329],[-118.495261,34.060271],[-118.495285,34.060251],[-118.495332,34.060206],[-118.495437781294,34.0602436823115],[-118.49561394493701,34.0603800200215],[-118.495598771785,34.0604694669025],[-118.495575707839,34.0605626615752],[-118.49551839524101,34.0606666084923],[-118.49546614003501,34.0607502992509],[-118.49542200790999,34.060844573371],[-118.49538538688201,34.0609338242497],[-118.49536138592001,34.0610241041617],[-118.495360260147,34.0611080135339],[-118.49536507603599,34.0612293944876],[-118.495407312062,34.0615438416378],[-118.495492328281,34.0618307622861],[-118.495561566333,34.0621047861574],[-118.495610484301,34.062290620765],[-118.49565331992299,34.0624111514086],[-118.49570619119601,34.0625032026759],[-118.49577753785699,34.062607877634],[-118.495999840587,34.0628411718392],[-118.49613043670399,34.0629719554607],[-118.496221999132,34.0630760115118],[-118.496276661133,34.0631952204175],[-118.49637034918599,34.0634021347771],[-118.496470138425,34.0635767388128],[-118.496567147078,34.0637165994899],[-118.496642249739,34.0638330524852],[-118.49675431559,34.0639053629231],[-118.496942285675,34.0640035050656],[-118.49722305927401,34.0641382943762],[-118.49744730504401,34.0642305305045],[-118.49763398751099,34.0642826814111],[-118.497937631496,34.0643269224133],[-118.498248516944,34.0643576118945],[-118.49858319886501,34.0643760690762],[-118.498752231369,34.0643905360722],[-118.49885587172599,34.064425659206],[-118.498983958769,34.0644903763525],[-118.499164817205,34.0646113152604],[-118.49948206133,34.0648967331513],[-118.499828134281,34.0652343631568],[-118.500070503559,34.0654942053606],[-118.50038534078,34.0658762398989],[-118.50062536059001,34.0661310346521],[-118.500707104971,34.0662092124624],[-118.500773579343,34.0662722739074],[-118.500943291754,34.0664078930507],[-118.501224507562,34.0666235058635],[-118.501370927591,34.0667430671036],[-118.501469350056,34.0668168371493],[-118.501576376638,34.0668697203074],[-118.501691290964,34.0669059864047],[-118.501833939012,34.0669482043658],[-118.502042706079,34.0669825039783],[-118.50218904433299,34.0669983281981],[-118.502377360634,34.0669981557551],[-118.502508928358,34.0670297137549],[-118.502593232672,34.0670723005248],[-118.50267807677101,34.0671658000639],[-118.50282039027,34.0673499934537],[-118.502945697011,34.0675054488224],[-118.503031181129,34.067609000533],[-118.503099480237,34.0676641099406],[-118.503187035845,34.0677323288287],[-118.50326182091599,34.0677905001027],[-118.503284321819,34.0678511471451],[-118.50329321495001,34.0679839401025],[-118.503306236361,34.0681785601562],[-118.503341398975,34.068324976346],[-118.503397131822,34.068461118612],[-118.503443033115,34.0685565329683],[-118.503500527301,34.0686469847067],[-118.503591321442,34.068722234511],[-118.503693712546,34.068766192855],[-118.503832279268,34.068823387199],[-118.503938766525,34.0688761691062],[-118.504053610716,34.0689746940694],[-118.504122728037,34.0690684268735],[-118.50415787079,34.0691648090865],[-118.504184591458,34.0692808388364],[-118.504191916971,34.0693987695062],[-118.504186275557,34.0695149582783],[-118.504176528005,34.0696211738597],[-118.504144721792,34.0697415555162],[-118.50411596705899,34.0698633166121],[-118.504101394716,34.0699914825897],[-118.504094420725,34.0701115122291],[-118.504095316001,34.0701878517843],[-118.504128867592,34.0702402503358],[-118.504187002104,34.0702955814927],[-118.50425628291499,34.070340901122],[-118.50434645700599,34.0703763141085],[-118.504510014065,34.0704387448711],[-118.50465802828499,34.0705046244484],[-118.504876907298,34.0705883112493],[-118.50496160878301,34.0706321957061],[-118.50501776209499,34.0706890517926],[-118.50511132368599,34.0707877252187],[-118.505205317798,34.0708791459814],[-118.50531230609801,34.0709826188046],[-118.505399626952,34.0710659156042],[-118.505485196854,34.0711711242451],[-118.505540516433,34.0712725061949],[-118.50560283616601,34.0713630308567],[-118.505622348906,34.0713736561083],[-118.505640012158,34.0713809509381],[-118.505823640985,34.0714059135883],[-118.505989903854,34.0714430306975],[-118.506137545502,34.0714994566249],[-118.506315732023,34.0715763295216],[-118.50639616788,34.0716268008449],[-118.506444634689,34.071704560021],[-118.50647812379999,34.071834717413],[-118.506542240781,34.0720461215756],[-118.50665446680399,34.0723555892867],[-118.50669144205099,34.0724424610536],[-118.506737887706,34.0725014796257],[-118.506881921219,34.0725849426152],[-118.507027270341,34.0726300779963],[-118.507159013661,34.0726584064723],[-118.507196852028,34.0726908455846],[-118.507209520118,34.0727362612508],[-118.50719379548499,34.0728107287487],[-118.507158860187,34.0728780633747],[-118.506585950024,34.0735452314889],[-118.506527378097,34.073618903805],[-118.506507592239,34.0736376615887],[-118.506469904836,34.0736581478534],[-118.50642962225599,34.0736705893609],[-118.506354487165,34.0736786341084],[-118.506252559655,34.0736877247226],[-118.505580266911,34.0737690676751],[-118.50578304083599,34.0738987777582],[-118.506161334216,34.0741943572949],[-118.506504961663,34.0744512843018],[-118.50706378410599,34.0748603231744],[-118.507098340152,34.0749000502129],[-118.50712086578299,34.0749648043384],[-118.50713886432899,34.0750473502977],[-118.50725633524,34.0756956110908],[-118.50727205162799,34.0757836419381],[-118.50730593825899,34.0758703897916],[-118.507414994162,34.0760882923858],[-118.507513615162,34.0762507585323],[-118.507565477713,34.0763280636598],[-118.507667009331,34.0764274267236],[-118.507963707708,34.0766976366039],[-118.508129328294,34.076820776751],[-118.508241699159,34.0768957812688],[-118.508385970615,34.0769802138276],[-118.50853430255199,34.0770732888875],[-118.50861926453101,34.077148543998],[-118.50866587049001,34.0772521475497],[-118.508691605531,34.0773548899031],[-118.508690554323,34.0774425142817],[-118.508672640233,34.0775145449005],[-118.50863181224901,34.0775839992036],[-118.50856539032399,34.077669330276],[-118.508399203241,34.0778246383885],[-118.508043764357,34.0781839448308],[-118.508224946993,34.0783304509344],[-118.508436285611,34.0785189069073],[-118.50870458600301,34.0788175325538],[-118.508903703713,34.0790443669284],[-118.50909531504701,34.0792269661997],[-118.509257325631,34.0793805858273],[-118.509488251561,34.0795279532917],[-118.50990273453,34.0797571962748],[-118.51016727683501,34.0798922196136],[-118.51025941821101,34.0799711049846],[-118.510347766976,34.0800973675369],[-118.51048909611001,34.0803295532719],[-118.510907817117,34.0811101658293],[-118.511599835154,34.082361098924],[-118.51160800526,34.0825173276083],[-118.511581070725,34.0826494712776],[-118.510066473412,34.0857829165476],[-118.510041963989,34.0858105043549],[-118.510012458247,34.0858281649429],[-118.50993431557499,34.0858547219466],[-118.509851094227,34.0858667898819],[-118.509754365947,34.0858679533893],[-118.50378433087,34.085572914738],[-118.50379526124399,34.0857189901314],[-118.50381481270399,34.0859060503898],[-118.503868296307,34.0861167781759],[-118.50396101519,34.0864252586714],[-118.504047846771,34.0867069007215],[-118.504097367423,34.0868935652115],[-118.504133591656,34.0870381377085],[-118.50414535379799,34.0871673415217],[-118.504134839336,34.0872639960613],[-118.504091588935,34.0873455950565],[-118.504059157847,34.0874275672305],[-118.504021731636,34.0875378399191],[-118.503996954071,34.0876820848036],[-118.50397899874299,34.0877755076265],[-118.503971936665,34.087903678508],[-118.503996901463,34.0882596809226],[-118.504069438497,34.0890121087653],[-118.504089219916,34.0891725222013],[-118.50410704839,34.0892697185278],[-118.50412156493,34.0893435652692],[-118.504117687256,34.0893975763015],[-118.50410324948101,34.0894791459487],[-118.504068886601,34.0895652221304],[-118.50402096943699,34.0896819123386],[-118.503956705069,34.0898279124137],[-118.503910343234,34.089909533749],[-118.503878855395,34.089975646168],[-118.50386112725199,34.090053708674],[-118.503820392435,34.0909237802257],[-118.503792921502,34.0910989368323],[-118.503765446036,34.0912201288702],[-118.503718699806,34.0913531522855],[-118.50360584140699,34.0915783493184],[-118.503479368931,34.0918283374372],[-118.503384931982,34.0919884021381],[-118.50330769619001,34.0921327857989],[-118.503271897554,34.0922068621766],[-118.50324632695801,34.0922961981567],[-118.503212882835,34.0924291346924],[-118.503184733667,34.0925621476459],[-118.503177002473,34.0927298504517],[-118.50318258970501,34.0928626988414],[-118.50319916824,34.093010098212],[-118.50323183154001,34.0931976227125],[-118.503275173443,34.0933579751589],[-118.503352336837,34.0935795301528],[-118.503454898371,34.0938134103691],[-118.50355937893499,34.0940950936997],[-118.503639274645,34.0943255190871],[-118.503759653849,34.0945525184908],[-118.50382848292899,34.0947067151431],[-118.503888180462,34.0948807529669],[-118.503922491783,34.0950439069407],[-118.503945252108,34.0952025068709],[-118.503960947702,34.0953315548618],[-118.50396150184,34.0954508985031],[-118.50393234693701,34.0955990964379],[-118.50388633887999,34.0957272631058],[-118.50382437181101,34.0959011158985],[-118.503772554845,34.0960871313557],[-118.503747366422,34.0962208342072],[-118.50367951709801,34.0967607339351],[-118.503651388135,34.0968799084183],[-118.50362383994,34.0969541543506],[-118.503601859291,34.0970344244117],[-118.50359392874,34.0971163895519],[-118.503618753739,34.097312233538],[-118.503640916888,34.0975318064719],[-118.503635555567,34.0976291674206],[-118.503621960594,34.0977180004754],[-118.503606363637,34.0978083762266],[-118.50355043261099,34.0979224498921],[-118.503470170414,34.0980434409195],[-118.503313048908,34.0982369399052],[-118.503275680328,34.0983173853988],[-118.50324286014001,34.0984151476722],[-118.503149525803,34.0987561430243],[-118.503131925557,34.0988774310827],[-118.50311876022,34.0990284840853],[-118.50312523491399,34.0991503726489],[-118.503163913856,34.099397350735],[-118.503204153168,34.0995546375232],[-118.503264757533,34.0997838723413],[-118.503314562914,34.0999818089863],[-118.50335525288401,34.1002816923435],[-118.50338812974201,34.1005285798369],[-118.503418319518,34.1007110422638],[-118.503434891175,34.1008829337855],[-118.50345943401101,34.1009596358478],[-118.503485852361,34.1010502090009],[-118.503575954841,34.1012065686485],[-118.503670112005,34.1014176954279],[-118.50375080817,34.1015703935152],[-118.50379073571,34.1017161719773],[-118.503829749329,34.1018249302156],[-118.50386021317399,34.1019595488036],[-118.5038969602,34.1021567511621],[-118.503967006287,34.1027083865409],[-118.50398835645601,34.1029100131197],[-118.50400365143901,34.1031114444072],[-118.504005962769,34.1032574313034],[-118.503999154976,34.103380234633],[-118.503991142082,34.1034844481945],[-118.503951830592,34.1036144691238],[-118.50387509083301,34.1037891778888],[-118.503763616673,34.1040394150754],[-118.503509506613,34.1046472408469],[-118.50333687348601,34.105047833659],[-118.503206386047,34.1053310018659],[-118.503096590528,34.1055331920193],[-118.50301745824,34.1056979401636],[-118.50293312358301,34.1058896007316],[-118.50283243723401,34.1061340087786],[-118.502740967302,34.1063795010716],[-118.502673700306,34.1065620854915],[-118.502595679723,34.1067786090584],[-118.502509420442,34.1069884743886],[-118.50243384540801,34.1071918474841],[-118.50239631743401,34.1073216938758],[-118.502373960976,34.1074605136549],[-118.502377770354,34.107598510837],[-118.50237159752599,34.1077003745697],[-118.50234475794601,34.1078154062776],[-118.50227703453901,34.1079332821589],[-118.502125253925,34.1082006864753],[-118.50192739505999,34.1086414477446],[-118.50180029140699,34.1088812067059],[-118.501689708732,34.1090561672369],[-118.501593481399,34.1091623305055],[-118.501467725479,34.1092590320049],[-118.501245672382,34.1094172766968],[-118.501048223022,34.1095477090878],[-118.500905507333,34.1096595895561],[-118.500802820498,34.1097707094628],[-118.500688421691,34.1099208125804],[-118.50057523035601,34.110150932402],[-118.500395918439,34.1105195344628],[-118.50021013521901,34.1109543996042],[-118.500109661976,34.1111692082456],[-118.500031265999,34.1113184955915],[-118.499975072128,34.111455007363],[-118.49993472253099,34.1115583152132],[-118.499916067033,34.1116630565722],[-118.499922681269,34.1117636988117],[-118.499944585623,34.1118503929188],[-118.49999591191801,34.1119486974531],[-118.50005281985101,34.1120234893842],[-118.50007929073701,34.1120869449959],[-118.50010808695301,34.1121756336287],[-118.50012236148601,34.1123433019594],[-118.50014291586101,34.112560261392],[-118.500167743332,34.1127232543572],[-118.500206252284,34.1128701964567],[-118.50024675396701,34.1130157759905],[-118.500290342285,34.1131217559503],[-118.500335102289,34.1132049471415],[-118.500496258848,34.1133750654749],[-118.50056058272401,34.1134518395499],[-118.500621530244,34.113565242987],[-118.500669972214,34.1137090067032],[-118.50069895363301,34.1138504878273],[-118.500728120613,34.1140005178548],[-118.500782798317,34.1141085895472],[-118.500828923452,34.1141988956817],[-118.500873419361,34.1142863047431],[-118.500891352536,34.1143457217534],[-118.500904198847,34.1144156338378],[-118.50090629921201,34.1144712844792],[-118.500895957662,34.1145717410846],[-118.500889053915,34.1146716796069],[-118.500892713075,34.1147548486466],[-118.500899067595,34.1148333376559],[-118.500919468728,34.1149123545533],[-118.500949310042,34.1149839352546],[-118.500999957562,34.1150487289868],[-118.501057735703,34.1151013864493],[-118.50113742453399,34.1151608777935],[-118.501225467182,34.1151979880105],[-118.501369297208,34.1152678228804],[-118.501509836929,34.1153316050432],[-118.50163608290499,34.1153878425381],[-118.501737392595,34.1154305261239],[-118.50184840854401,34.1154999191819],[-118.501927889413,34.1155671905005],[-118.502025390529,34.1156596503461],[-118.502050806475,34.1157044855664],[-118.502078144671,34.1157518188173],[-118.502111194801,34.1158358705762],[-118.502127456777,34.1159502109362],[-118.502168294046,34.1162005862256],[-118.502221546455,34.1165000328429],[-118.502257159835,34.116715163763],[-118.50229296718101,34.1169636492752],[-118.502339044183,34.1171296613431],[-118.502432837455,34.1173421762852],[-118.502555731348,34.1176154357087],[-118.502644733452,34.1177508226223],[-118.50274364975,34.117850100714],[-118.502844053814,34.1179734106412],[-118.502897845684,34.1180490078801],[-118.502923178819,34.1181208204533],[-118.50291691874099,34.1182004542959],[-118.50289453091099,34.1183649980112],[-118.502882079627,34.1185968410869],[-118.502892598177,34.1189966005074],[-118.502904383,34.1191247259629],[-118.502958246386,34.1192696026949],[-118.50301015688299,34.1193500941917],[-118.503096861258,34.1194531068026],[-118.503179241902,34.1195585089701],[-118.503264442465,34.1196242722448],[-118.503366064635,34.1196608007081],[-118.50350253702599,34.1196795700258],[-118.50362877059,34.1196857403549],[-118.503748862707,34.1196961142779],[-118.503893601518,34.1197286586793],[-118.504649848311,34.120086892778],[-118.504910627134,34.1202242120796],[-118.505044708329,34.1203074267826],[-118.505166468491,34.1204041408938],[-118.50529149673901,34.1205237313962],[-118.505355138607,34.1206177086053],[-118.505445280283,34.1206934473467],[-118.50558634227301,34.1207614194205],[-118.50573607222999,34.1208568233108],[-118.505821417139,34.1209320854053],[-118.50590111886901,34.1210679413938],[-118.505967368472,34.1212169598396],[-118.506052321217,34.1213981946846],[-118.506141268804,34.1215041582662],[-118.506251238194,34.1215966080709],[-118.506369797673,34.1216760214605],[-118.506452316554,34.1217343261946],[-118.506554126075,34.1218114866861],[-118.506613486414,34.1219028361766],[-118.506665506945,34.1220148899713],[-118.506705844016,34.1222100282823],[-118.506749417196,34.1223897857815],[-118.506784359104,34.1224716036336],[-118.506829464305,34.1225373413941],[-118.506916736072,34.1226663477729],[-118.506985092433,34.1227836191696],[-118.507009327402,34.1229472444416],[-118.507009385026,34.1231891791522],[-118.507028249162,34.1233217720731],[-118.50708911255801,34.1235090287154],[-118.507236218674,34.1238603655165],[-118.507421257451,34.1241813207335],[-118.507642213864,34.1245921800952],[-118.50798743962901,34.125240969717],[-118.508069834548,34.1254317155904],[-118.508142678962,34.12556846293],[-118.50822701708201,34.1256736647633],[-118.508330728624,34.1257701843753],[-118.508508596162,34.1258731431245],[-118.50872526035199,34.1259580372278],[-118.509390561213,34.1262483918646],[-118.511337836504,34.1269206565778],[-118.511340384457,34.1269222942942],[-118.511341884955,34.1269263842459],[-118.511341018171,34.1269308524284],[-118.51133901423501,34.1269340008252],[-118.511336585164,34.1269363771978],[-118.51132863547799,34.1269412518081],[-118.506996805025,34.1297085093021],[-118.50680395492,34.1294036291782],[-118.506767311741,34.1293550073454],[-118.506745692886,34.1293317408065],[-118.50670082113901,34.129288649842],[-118.506649367436,34.1292497074115],[-118.50658801160399,34.1292125243263],[-118.506301278348,34.1290629344468],[-118.50627145877201,34.1290496633506],[-118.50620853987201,34.1290272570776],[-118.50617709344699,34.1290181144658],[-118.506110921746,34.1290043087111],[-118.50604313218,34.1289960048825],[-118.505975380343,34.128993884123],[-118.505856472145,34.1290019388444],[-118.50578709256099,34.1290039465759],[-118.505717692316,34.1290025195993],[-118.50564991802101,34.1289966205868],[-118.505582118573,34.1289869425766],[-118.505514295769,34.1289731435092],[-118.505448105204,34.1289559022939],[-118.505400097438,34.1289403029544],[-118.505337168656,34.1289161781813],[-118.505277524115,34.1288886053039],[-118.505219510015,34.1288575902677],[-118.505164781953,34.1288234706659],[-118.50511168612999,34.1287859074105],[-118.505063528346,34.1287455771787],[-118.505017007292,34.1287024926079],[-118.504975427871,34.1286569823682],[-118.50493879008199,34.1286090471994],[-118.504903792617,34.1285590440292],[-118.50487539148099,34.1285069527765],[-118.504850286264,34.1284534739173],[-118.50483013076401,34.1283989435604],[-118.50479977219899,34.1282963670243],[-118.50478297550001,34.1282507532041],[-118.504762877492,34.128205839841],[-118.50473783515601,34.1281626650181],[-118.504709496004,34.1281208784967],[-118.50467786273001,34.1280808223405],[-118.504642936232,34.1280424972957],[-118.504604720103,34.1280065912066],[-118.50456486365,34.1279727523472],[-118.504506792059,34.1279321198204],[-118.504430531379,34.1278888139815],[-118.50435432909001,34.1278551267723],[-118.504273209424,34.1278279863325],[-118.504190481772,34.1278080656397],[-118.504149135913,34.1278010250952],[-118.50409126823899,34.1277940529625],[-118.503987155294,34.1277896782762],[-118.50389961985999,34.1277945087985],[-118.503813753495,34.1278020795409],[-118.50372791677501,34.127814459239],[-118.50329887510701,34.1279007445241],[-118.503242781606,34.1279140306729],[-118.503199907712,34.1279276060854],[-118.50312244418799,34.127958842316],[-118.503092797089,34.1279740796969],[-118.503036825759,34.1280076307776],[-118.502985841875,34.1280463135158],[-118.50296118401801,34.1280670253561],[-118.502918497873,34.128111856252],[-118.502880786597,34.1281601010452],[-118.50284970488801,34.1282114102326],[-118.502834994976,34.1282379199672],[-118.502825242865,34.1282647524205],[-118.502813845939,34.128292622202],[-118.502799315689,34.1283490146269],[-118.502792994244,34.1283967863491],[-118.50279168719599,34.1284541543196],[-118.502798640156,34.1285114880452],[-118.502810546427,34.128568113817],[-118.502830701927,34.1286229876115],[-118.502844082333,34.1286500675639],[-118.502874132776,34.1287018092331],[-118.502959049621,34.1288106843632],[-118.502999085737,34.128874407648],[-118.50303087711499,34.1289409119667],[-118.503054421958,34.1290098545112],[-118.503069717573,34.1290805496729],[-118.503074961039,34.1291282726474],[-118.5030752485,34.1291760156723],[-118.503069069887,34.1292474870157],[-118.50305944264301,34.1292949288146],[-118.503046504208,34.1293413533404],[-118.50302860527501,34.1293871123179],[-118.50300904625701,34.1294315030458],[-118.502532149537,34.1303533476809],[-118.50250756264801,34.1303860806096],[-118.502478001787,34.1304157439786],[-118.50244511536199,34.130441985329],[-118.50242700981801,34.1304533957408],[-118.502387473166,34.1304727952963],[-118.502344604662,34.1304877437107],[-118.50230005361399,34.1304975464725],[-118.50225381822401,34.1305018600442],[-118.50220755139399,34.1305010220171],[-118.502184406301,34.1304987139104],[-118.502146359055,34.1304909716399],[-118.50209670198301,34.1304757205844],[-118.50205693626,34.1304569939799],[-118.50202044849,34.1304337887188],[-118.501987242266,34.130406791133],[-118.50196062159,34.130375987834],[-118.501938941649,34.1303424161291],[-118.50192892094201,34.1303245966781],[-118.501915483044,34.1302878988882],[-118.501908647763,34.1302501436928],[-118.501908416896,34.1302116746308],[-118.50191479852801,34.1301738636319],[-118.501919641345,34.1301549510619],[-118.501934294664,34.130118824279],[-118.501955568567,34.1300847304685],[-118.501968691157,34.1300688762843],[-118.501998252018,34.1300392135371],[-118.50203113844201,34.1300129713181],[-118.502078893781,34.1299866681161],[-118.502121755098,34.129970689733],[-118.50218278843499,34.1299542927024],[-118.502232251471,34.129937256176],[-118.50228332608501,34.1299133428687],[-118.502312967794,34.1298970759564],[-118.50235738768799,34.1298656344657],[-118.502395192389,34.1298328455658],[-118.502436225634,34.1297876779894],[-118.50246405454401,34.129744626668],[-118.50248528263199,34.1297029755198],[-118.502495036539,34.1296764863218],[-118.502507957907,34.1296273143828],[-118.502512614773,34.1295774895352],[-118.502510617818,34.1295201349682],[-118.502500399482,34.12946934189],[-118.50248194359401,34.1294223604777],[-118.502453543356,34.1293702682699],[-118.502426881359,34.1293325959481],[-118.50240692798,34.1293113824868],[-118.502372032024,34.1292782089297],[-118.502327219566,34.1292443891694],[-118.50230068602799,34.1292280120752],[-118.502254281755,34.1292041610299],[-118.502226124961,34.1291925994981],[-118.50220128744201,34.1291834286473],[-118.502143367665,34.1291678687608],[-118.50131651426,34.1290407757974],[-118.501247078082,34.129033507069],[-118.501166115621,34.1290324689979],[-118.50109840869899,34.1290379017683],[-118.501063744509,34.1290431977152],[-118.500997743488,34.1290575544739],[-118.500931777502,34.1290777500055],[-118.50087080255599,34.1291037642287],[-118.500841152761,34.1291186571149],[-118.500786825348,34.1291511696716],[-118.50070289485301,34.1292064758643],[-118.500085772761,34.1296136040948],[-118.499596,34.129184],[-118.498615,34.128308],[-118.499551,34.127041],[-118.499134,34.123613],[-118.497615,34.120606],[-118.493515,34.113707],[-118.494803,34.111056],[-118.494878,34.11071],[-118.49489,34.110634],[-118.494894,34.110529],[-118.494771,34.109511],[-118.494772,34.109376],[-118.494789,34.109262],[-118.495023,34.108403],[-118.49506599999999,34.108214],[-118.49509399999999,34.108023],[-118.495141,34.107327],[-118.495138,34.107218],[-118.495115,34.107095],[-118.49507199999999,34.106976],[-118.495009,34.106863],[-118.494927,34.106758],[-118.494912,34.106743],[-118.494843,34.106675],[-118.494542,34.106437],[-118.49441,34.106333],[-118.494354,34.106281],[-118.49432299999999,34.106252],[-118.494248,34.106162],[-118.494181,34.106053],[-118.49416600000001,34.106023],[-118.49412599999999,34.105919],[-118.494029,34.105517],[-118.493937,34.10513],[-118.493915,34.10498],[-118.49391199999999,34.104896],[-118.493985,34.104835],[-118.494102,34.104796],[-118.49423,34.104727],[-118.494389,34.104618],[-118.494514,34.104516],[-118.494562,34.104448],[-118.49465600000001,34.103914],[-118.49477400000001,34.103613],[-118.495047,34.103129],[-118.495199,34.102893],[-118.495366,34.102578],[-118.495401,34.102462],[-118.495419,34.102364],[-118.495414,34.102087],[-118.495414,34.102065],[-118.495379,34.101391],[-118.495394,34.101248],[-118.49544400000001,34.101173],[-118.49551700000001,34.101076],[-118.49557,34.100985],[-118.49558399999999,34.100918],[-118.49558500000001,34.100834],[-118.495605,34.100669],[-118.495626,34.10057],[-118.495683,34.100496],[-118.495741,34.100413],[-118.495785,34.100274],[-118.49592699999999,34.100002],[-118.49608499999999,34.099864],[-118.496285,34.099754],[-118.496466,34.099613],[-118.496551,34.099509],[-118.49658100000001,34.09942],[-118.496595,34.099295],[-118.496601,34.099241],[-118.496554,34.099062],[-118.49651900000001,34.099031],[-118.49637199999999,34.098988],[-118.496196,34.09894],[-118.49617499999999,34.098925],[-118.496093,34.098831],[-118.496027,34.098662],[-118.49603999999999,34.098566],[-118.49606799999999,34.09853],[-118.49609599999999,34.09851],[-118.49615300000001,34.098481],[-118.496317,34.098464],[-118.496426,34.098468],[-118.49648999999999,34.098491],[-118.496613,34.098485],[-118.49672200000001,34.098464],[-118.496842,34.098432],[-118.496948,34.09839],[-118.497027,34.098327],[-118.49707100000001,34.09823],[-118.49706399999999,34.098152],[-118.49704,34.09809],[-118.496984,34.097992],[-118.496959,34.097875],[-118.49692899999999,34.097641],[-118.496897,34.097474],[-118.496825,34.097296],[-118.496801,34.097217],[-118.49681099999999,34.097162],[-118.496819,34.097141],[-118.49688500000001,34.097099],[-118.496925,34.097094],[-118.49697399999999,34.097091],[-118.497107,34.097132],[-118.497415,34.097339],[-118.49759,34.097449],[-118.49763,34.097466],[-118.49767900000001,34.09747],[-118.497702,34.097467],[-118.497736,34.09744],[-118.497755,34.09738],[-118.497826,34.097174],[-118.497913,34.097022],[-118.497989,34.096935],[-118.498051,34.096858],[-118.49813,34.096795],[-118.498187,34.096739],[-118.498215,34.096693],[-118.49821900000001,34.096605],[-118.498205,34.096459],[-118.498175,34.095758],[-118.49813,34.095462],[-118.498108,34.095369],[-118.498081,34.095293],[-118.49803199999999,34.095169],[-118.498008,34.095088],[-118.49802099999999,34.095026],[-118.49812799999999,34.094857],[-118.498234,34.094701],[-118.498378,34.094546],[-118.49846700000001,34.094401],[-118.498481,34.094368],[-118.49847699999999,34.09431],[-118.498428,34.094136],[-118.498389,34.094053],[-118.498357,34.09401],[-118.49829800000001,34.093949],[-118.498188,34.093876],[-118.49795,34.093738],[-118.497821,34.093641],[-118.49776799999999,34.093542],[-118.497755,34.093451],[-118.49770700000001,34.093332],[-118.49766700000001,34.093198],[-118.497581,34.092857],[-118.49754299999999,34.0927],[-118.49745799999999,34.092445],[-118.49740300000001,34.092228],[-118.49739099999999,34.092068],[-118.49746,34.091866],[-118.497484,34.091751],[-118.49747000000001,34.091658],[-118.497433,34.091525],[-118.4974,34.091425],[-118.49729600000001,34.091206],[-118.497209,34.091049],[-118.497129,34.090892],[-118.497108,34.090849],[-118.497055,34.090776],[-118.496976,34.090684],[-118.496954,34.090588],[-118.497005,34.090399],[-118.497068,34.090339],[-118.49712700000001,34.090297],[-118.49720600000001,34.090198],[-118.49724399999999,34.090073],[-118.497255,34.089862],[-118.49725100000001,34.08981],[-118.497212,34.089748],[-118.497101,34.089639],[-118.497061,34.089594],[-118.496925,34.089443],[-118.49684000000001,34.089308],[-118.496824,34.089255],[-118.49681699999999,34.089176],[-118.496843,34.088999],[-118.496788,34.088651],[-118.496782,34.088598],[-118.49676100000001,34.088431],[-118.496728,34.088338],[-118.496591,34.088077],[-118.496509,34.087994],[-118.49639500000001,34.087904],[-118.49623099999999,34.08779],[-118.496295,34.087139],[-118.49632699999999,34.086824],[-118.496364,34.086446],[-118.495795,34.086087],[-118.495929,34.085577],[-118.49628,34.084244],[-118.49627099999999,34.084171],[-118.496241,34.084083],[-118.496183,34.084033],[-118.49610199999999,34.083995],[-118.496022,34.083949],[-118.49597900000001,34.083868],[-118.495997,34.083793],[-118.49605099999999,34.083707],[-118.496111,34.083642],[-118.496279,34.083493],[-118.496318,34.08342],[-118.496334,34.083338],[-118.496334,34.083261],[-118.49632699999999,34.083169],[-118.496273,34.083106],[-118.49620400000001,34.083055],[-118.496099,34.083],[-118.49603500000001,34.08296],[-118.495885,34.082835],[-118.495863,34.082768],[-118.495863,34.082686],[-118.495857,34.082591],[-118.495811,34.082474],[-118.49575900000001,34.082425],[-118.495688,34.082372],[-118.495332,34.082212],[-118.495042,34.082101],[-118.494974,34.082072],[-118.494901,34.08204],[-118.49472400000001,34.081972],[-118.494623,34.081908],[-118.494575,34.081829],[-118.49452700000001,34.081724],[-118.494232,34.081311],[-118.49419399999999,34.081238],[-118.494174,34.081161],[-118.494135,34.08026],[-118.494128,34.080212],[-118.49410399999999,34.080153],[-118.494062,34.080096],[-118.49400900000001,34.080053],[-118.49395,34.080022],[-118.49358700000001,34.079917],[-118.49350800000001,34.079906],[-118.493433,34.07991],[-118.493194,34.079971],[-118.493134,34.079976],[-118.49307399999999,34.079969],[-118.493011,34.079947],[-118.492964,34.079916],[-118.492926,34.079876],[-118.49290000000001,34.079825],[-118.492891,34.079777],[-118.49289899999999,34.07972],[-118.492987,34.079529],[-118.492994,34.079472],[-118.492925,34.07911],[-118.492903,34.079011],[-118.492863,34.07888],[-118.492813,34.078753],[-118.492661,34.078447],[-118.49260599999999,34.078368],[-118.492529,34.078291],[-118.49146500000001,34.077535],[-118.491394,34.077466],[-118.491337,34.077389],[-118.491299,34.077315],[-118.49112100000001,34.076779],[-118.491084,34.076706],[-118.491032,34.076641],[-118.490984,34.076599],[-118.49064,34.076377],[-118.49060799999999,34.076352],[-118.490534,34.076278],[-118.490482,34.076204],[-118.490261,34.075723],[-118.490246,34.075662],[-118.49024799999999,34.075543],[-118.490298,34.075485],[-118.49033799999999,34.075444],[-118.490391,34.075407],[-118.490452,34.07538],[-118.49052399999999,34.075364],[-118.490599,34.075361],[-118.490678,34.075374],[-118.49075000000001,34.075403],[-118.490813,34.075445],[-118.490858,34.075495],[-118.490889,34.075552],[-118.49093499999999,34.075803],[-118.49095,34.075848],[-118.490984,34.075898],[-118.491024,34.075932],[-118.49108200000001,34.075961],[-118.491145,34.075976],[-118.49168,34.075981],[-118.491951,34.075983],[-118.492088,34.075984],[-118.49214000000001,34.07598],[-118.492203,34.075963],[-118.492262,34.075932],[-118.492305,34.075895],[-118.492338,34.075848],[-118.492356,34.075799],[-118.492377,34.075476],[-118.492374,34.075418],[-118.492344,34.07533],[-118.491693,34.074138],[-118.491649,34.07407],[-118.491595,34.074009],[-118.49152100000001,34.073948],[-118.49144699999999,34.073902],[-118.491356,34.073861],[-118.49068,34.073669],[-118.490578,34.073631],[-118.490484,34.073581],[-118.48979,34.073084],[-118.489375,34.072793],[-118.489316,34.072756],[-118.489203,34.07267],[-118.489102,34.072577],[-118.489071,34.072543],[-118.489,34.072435],[-118.488956,34.072338],[-118.488929,34.072237],[-118.488919,34.07212],[-118.488929,34.072017],[-118.489045,34.071563],[-118.489057,34.071452],[-118.489052,34.071342],[-118.489031,34.071232],[-118.48894900000001,34.070997],[-118.488901,34.070882],[-118.488827,34.070749],[-118.48834743063099,34.0700541726591],[-118.48827791897,34.0698099416988],[-118.487632,34.065403],[-118.487667,34.065467],[-118.48772099999999,34.065528],[-118.487753,34.065555],[-118.488204,34.065888],[-118.488266,34.065919],[-118.48833,34.065938],[-118.488908,34.066016],[-118.489092,34.06603],[-118.48934800000001,34.066049],[-118.48945500000001,34.066045],[-118.489572,34.066025],[-118.49006,34.065867],[-118.490115,34.065846],[-118.490201,34.065801],[-118.49027599999999,34.065743],[-118.490332,34.065683],[-118.49049599999999,34.065439],[-118.490534,34.065358],[-118.490554,34.065272],[-118.490556,34.065184],[-118.490301,34.063868],[-118.490393,34.06284],[-118.49075000000001,34.061853],[-118.49090938497901,34.0615036410057],[-118.491146,34.060985],[-118.49149800000001,34.060097],[-118.49136,34.059286],[-118.491274,34.058465],[-118.491399,34.058056],[-118.49141299999999,34.058022],[-118.49144800000001,34.05797],[-118.491502,34.057924],[-118.491568,34.057891],[-118.49201600000001,34.05778]]],"type":"Polygon"} +},{ + "id": 1108561757, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000109, + "geom:area_square_m":1117949.972132, + "geom:bbox":"-118.433473,33.9980858325,-118.417361004,34.010366779", + "geom:latitude":34.003706, + "geom:longitude":-118.424577, + "iso:country":"US", + "lbl:latitude":33.99849, + "lbl:longitude":-118.420875, + "lbl:max_zoom":18.0, + "mps:latitude":34.002978, + "mps:longitude":-118.4247, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ces_x_preferred":[ + "McLaughlin" + ], + "name:deu_x_preferred":[ + "McLaughlin" + ], + "name:fra_x_preferred":[ + "McLaughlin" + ], + "name:ita_x_preferred":[ + "McLaughlin" + ], + "name:jpn_x_preferred":[ + "\u30de\u30af\u30e9\u30d5\u30ea\u30f3" + ], + "name:kor_x_preferred":[ + "\ub9e4\ud074\ub85c\ud50c\ub9b0" + ], + "name:nld_x_preferred":[ + "McLaughlin" + ], + "name:por_x_preferred":[ + "McLaughlin" + ], + "name:rus_x_preferred":[ + "\u041c\u0430\u043a\u043b\u043e\u0445\u043b\u0438\u043d" + ], + "name:ukr_x_preferred":[ + "\u041c\u0430\u043a\u043b\u0430\u0444\u043b\u0456\u043d" + ], + "reversegeo:latitude":34.002978, + "reversegeo:longitude":-118.4247, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85832373, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"373401cbe7de29d72a5fba435f79ff1a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561757, + "neighbourhood_id":85832373, + "region_id":85688637 + } + ], + "wof:id":1108561757, + "wof:lastmodified":1566623962, + "wof:name":"McLaughlin", + "wof:parent_id":85832373, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85886319 + ], + "wof:tags":[] +}, + "bbox": [ + -118.433473, + 33.99808583248273, + -118.41736100356404, + 34.01036677903576 +], + "geometry": {"coordinates":[[[-118.43347300000001,34.003564],[-118.43115899999999,34.004825],[-118.428828,34.006141],[-118.428347,34.006413],[-118.425003,34.008301],[-118.424525,34.008572],[-118.423779,34.008992],[-118.42301999999999,34.009421],[-118.42226100000001,34.00985],[-118.42141100000001,34.010324],[-118.42133474171888,34.01036677903576],[-118.42066869745823,34.00952504515489],[-118.42048604480814,34.00929142540332],[-118.420449520207,34.00924621287875],[-118.42041299740247,34.00920099958545],[-118.42022536269583,34.00896052659462],[-118.42006929748321,34.00876459627793],[-118.41969746143089,34.00896785924709],[-118.41937991955439,34.00914173533697],[-118.41930188290567,34.00904273983775],[-118.41927034125939,34.00900369220603],[-118.41918731985915,34.00889750016061],[-118.41911260518033,34.00880295818784],[-118.419049513803,34.00872314475384],[-118.4188984288503,34.00853269237021],[-118.41872242732657,34.00830832010851],[-118.41861118624999,34.00816719047363],[-118.41807990731961,34.00749717578206],[-118.41790723315569,34.0072772561649],[-118.41767977613249,34.00698917284722],[-118.41736100356404,34.00658427747864],[-118.41780512704725,34.00632169194921],[-118.41785118457017,34.00629439712673],[-118.41810285837681,34.0061468576353],[-118.41832656403538,34.0060145273228],[-118.41857329800627,34.00586906501817],[-118.41902728409295,34.00560060243379],[-118.41909307580606,34.00556121662012],[-118.41920656536581,34.00549281249842],[-118.4193545960465,34.00540402318709],[-118.41948617767608,34.00532456400991],[-118.41958322267622,34.00526686537528],[-118.41971315949048,34.00518878598337],[-118.42017040286844,34.0049134372971],[-118.42044837036343,34.00474691014155],[-118.42074606665868,34.00456726035325],[-118.42108981868026,34.0043606580471],[-118.42058842310611,34.00372730268501],[-118.42025968911948,34.00331042654095],[-118.41990273455816,34.00285758248901],[-118.41972010346764,34.00262533552115],[-118.41920212589166,34.00197073600322],[-118.41848326076365,34.00105853121522],[-118.41834381887536,34.00088418131175],[-118.41817614024272,34.00067111471636],[-118.41837019610705,34.00055056647472],[-118.41848366680213,34.00047975878798],[-118.41864482815738,34.00037924585047],[-118.41893425725711,34.00019791116929],[-118.41919080172917,34.00003867467846],[-118.41949083094926,33.99966872959936],[-118.41962364327074,33.9995078611328],[-118.41975972186661,33.99934045426387],[-118.4199548278615,33.99910139666822],[-118.42005975827321,33.99897291241878],[-118.420090908254,33.99893467714398],[-118.42013845698028,33.99887680660043],[-118.42015321001222,33.99885820579804],[-118.42018766489493,33.99882099003094],[-118.42020407891178,33.99880478879314],[-118.42023694018322,33.99877856994982],[-118.42026324105809,33.99876027372785],[-118.4202862684721,33.99874679751187],[-118.4203092967844,33.99873366462272],[-118.42034879480913,33.99871532221673],[-118.4203932506359,33.99869868081238],[-118.42044431806319,33.99868441962156],[-118.42048057406804,33.99867742345238],[-118.42051519064752,33.99867249396048],[-118.4205399221656,33.99867000352061],[-118.42057124641956,33.99866646000583],[-118.42066687118324,33.99865616534237],[-118.42083174078397,33.99863807315528],[-118.42127524083635,33.9985898119128],[-118.42155716720681,33.99855894427527],[-118.42206991209626,33.99850322505922],[-118.42239635268399,33.99846773472363],[-118.42268487358696,33.99843615431515],[-118.42290744646994,33.99841201768196],[-118.42299812421136,33.99840208195769],[-118.42354054135296,33.99834281762097],[-118.4244225899439,33.99824697771119],[-118.42472759493232,33.99821361726151],[-118.42491059972203,33.99819373831786],[-118.42589980654657,33.99808583248273],[-118.42643455297397,33.99878843041049],[-118.42661556619866,33.99902513921439],[-118.42683644306238,33.99931529014213],[-118.42716029560378,33.99974212518677],[-118.42741107289176,34.00007201355874],[-118.42749245306999,34.0001792354379],[-118.4277199765685,34.00047760502036],[-118.42794418169038,34.00077186338805],[-118.42809697074719,34.00097157302425],[-118.42833779021021,34.00128844253869],[-118.42833779380348,34.00128912917593],[-118.4283394467036,34.00128981060004],[-118.42833945748339,34.00129187125632],[-118.42834110858691,34.00129220861712],[-118.42834111936666,34.00129427001806],[-118.42834277226679,34.00129495069747],[-118.42834279023307,34.00129838537263],[-118.42834444313323,34.00129906679668],[-118.42834447187931,34.00130456212765],[-118.42834612477941,34.00130524355171],[-118.42834617778001,34.00131554757555],[-118.42834453116811,34.00131624017035],[-118.4283445590159,34.00132173624496],[-118.4283429133023,34.00132242883971],[-118.42834293037028,34.00132586351378],[-118.42834128465668,34.00132655685319],[-118.42834129902971,34.00132930414549],[-118.42833965062117,34.00132965342177],[-118.4283396578077,34.00133102744019],[-118.4283380120941,34.00133172077961],[-118.42833802017894,34.00133343811648],[-118.42833637446533,34.00133413071114],[-118.42833637985525,34.00133516141109],[-118.4283347332433,34.00133585400573],[-118.42833473863321,34.00133688470574],[-118.42833309291959,34.00133757730031],[-118.42833309830948,34.00133860725554],[-118.42833144990094,34.00133895727645],[-118.42833145529086,34.00133998723167],[-118.42832816476194,34.00134171648394],[-118.42832652264163,34.00134309646003],[-118.42832487602972,34.00134378905461],[-118.42832323390937,34.00134516903065],[-118.42832323570599,34.00134551234902],[-118.42836436507127,34.00132372689632],[-118.42916228374092,34.00090149701261],[-118.43011812623753,34.00039523304941],[-118.43069722428712,34.00008918345683],[-118.43059093292776,33.99995010829976],[-118.43050622179646,33.9998374041111],[-118.43037999682093,33.99967126320493],[-118.43046932352915,33.99962397737521],[-118.430528,33.999698],[-118.430836,34.000102],[-118.430924,34.000218],[-118.431428,34.00088],[-118.431923,34.00153],[-118.43237999999999,34.00213],[-118.43282600000001,34.002714],[-118.43347300000001,34.003564]]],"type":"Polygon"} +},{ + "id": 1108691233, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000182, + "geom:area_square_m":1864487.448784, + "geom:bbox":"-118.387047,34.0921090627,-118.365488973,34.1123413095", + "geom:latitude":34.101541, + "geom:longitude":-118.375524, + "iso:country":"US", + "lbl:latitude":34.103414, + "lbl:longitude":-118.358521, + "lbl:max_zoom":18.0, + "mps:latitude":34.101359, + "mps:longitude":-118.374462, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:note":"no ref", + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Sunset Hls" + ], + "reversegeo:latitude":34.101359, + "reversegeo:longitude":-118.374462, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865833, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"912cb390533af74b4a1c16f15468f40a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691233, + "neighbourhood_id":85865833, + "region_id":85688637 + } + ], + "wof:id":1108691233, + "wof:lastmodified":1566623960, + "wof:name":"Sunset Hills", + "wof:parent_id":85865833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869715 + ], + "wof:tags":[] +}, + "bbox": [ + -118.387047, + 34.0921090627151, + -118.36548897325872, + 34.11234130953594 +], + "geometry": {"coordinates":[[[-118.37582344721685,34.11195265634178],[-118.37574376209476,34.11175103973384],[-118.37566739949328,34.11157137883981],[-118.37473940499025,34.10975369013006],[-118.37467401192971,34.10965489713686],[-118.37458258525859,34.10955647062854],[-118.37311334165038,34.10818296498167],[-118.37304681770283,34.10812449814536],[-118.37296805191316,34.10805928337997],[-118.37284057622435,34.10796189974807],[-118.37116206564255,34.10683660592834],[-118.37105830517446,34.10674343060562],[-118.37094697466119,34.10662202583877],[-118.36953600230271,34.10495166725826],[-118.36946780939168,34.10488836144847],[-118.36940236854228,34.1048375695801],[-118.36731371573821,34.10333597211751],[-118.36726697819634,34.10328956440429],[-118.36723219136712,34.10323768300094],[-118.36630024286012,34.10171093876247],[-118.36548897325872,34.10171301408533],[-118.36557353796464,34.10141117868029],[-118.36560446156997,34.10130666441407],[-118.36561909692257,34.10125406692197],[-118.36563050013679,34.10121796647193],[-118.36564193928363,34.10119011008302],[-118.36564685666148,34.10118150821512],[-118.36569114719826,34.10111199030283],[-118.36572066763513,34.10106415630462],[-118.36576167303289,34.10099911330047],[-118.36581252216955,34.10091892692542],[-118.36587321235015,34.10082291056099],[-118.36589125141937,34.10079366006288],[-118.36590108168353,34.10077542526613],[-118.36590762680869,34.1007613225666],[-118.36591412881472,34.10073760259276],[-118.36867534518221,34.09805208262357],[-118.36875263533095,34.09797662377029],[-118.36897322293717,34.09781313803597],[-118.36902260871821,34.09777657788872],[-118.36919710915711,34.09764895497036],[-118.36938313048952,34.0975123658609],[-118.36952963762751,34.09740337679226],[-118.36953787068711,34.09739785569927],[-118.36956750161674,34.09737578248205],[-118.3695823220223,34.09736611945015],[-118.36962677695077,34.09733506979286],[-118.36967123547248,34.09730505040201],[-118.36971734779266,34.09727536872354],[-118.36976346280777,34.09724637512682],[-118.36981123162131,34.09721806291764],[-118.36985900492644,34.09719043804782],[-118.36988865561901,34.09717317324346],[-118.36990678182482,34.09716384344852],[-118.36995455962153,34.0971375925155],[-118.36996774419495,34.09713102550366],[-118.37000399391161,34.09711202297264],[-118.37005508110181,34.09708713556454],[-118.37010452168009,34.09706328363709],[-118.37015561695516,34.09704011384569],[-118.37020671402684,34.09701728697918],[-118.37025781469177,34.09699549113206],[-118.37034024410224,34.09696226398459],[-118.37043421057591,34.09692350528579],[-118.37060071241552,34.09685498514745],[-118.37066994916771,34.09682626218162],[-118.37128154826429,34.09657398438067],[-118.37133595023789,34.09655183432794],[-118.37137221522592,34.09653626546184],[-118.37140847841729,34.09652035365968],[-118.37144473801543,34.09650375524404],[-118.37148099581692,34.09648681314795],[-118.37151559981997,34.096469188901],[-118.37152384096441,34.09646538538989],[-118.37155185312989,34.09645121576585],[-118.37158645264138,34.09643256122303],[-118.3716078702744,34.09642047374363],[-118.37161940015106,34.09641356820582],[-118.3716342250482,34.09640493609683],[-118.37165069745556,34.09639526774685],[-118.37168199386173,34.09637662211837],[-118.37171493328657,34.09635625512144],[-118.37174787001649,34.09633520150776],[-118.37178080584806,34.09631380421088],[-118.37179891588418,34.09630103902914],[-118.37181208788117,34.09629206843785],[-118.37183348664958,34.09627620196718],[-118.37184336721938,34.09626964530294],[-118.37187299275912,34.09624688443505],[-118.37190426940238,34.09622377467547],[-118.37193389045056,34.09619998276004],[-118.37196351060041,34.09617584790326],[-118.37199147785014,34.09615137382441],[-118.37201944330327,34.0961265568036],[-118.37204740695975,34.09610139684069],[-118.37206878776182,34.09608140841941],[-118.37209180798932,34.09605866758599],[-118.37220692888961,34.09594942818446],[-118.37222008112367,34.09593599121058],[-118.37223818038002,34.09592082170288],[-118.37225462763455,34.09590565814361],[-118.37227272868753,34.09589083231014],[-118.37228588810811,34.09587911372551],[-118.37228917773869,34.09587601168136],[-118.37230728148663,34.09586187320223],[-118.37232703633802,34.09584772951352],[-118.37234514188259,34.09583393396566],[-118.37236489853063,34.09582013395221],[-118.37238300677012,34.09580702575986],[-118.3724027661131,34.09579391235828],[-118.37242088423406,34.09578286475473],[-118.37244229198561,34.09576905952565],[-118.37246370782196,34.0957569719515],[-118.37248347255486,34.09574488883897],[-118.37250489108618,34.09573348787806],[-118.37254773174209,34.09571137256857],[-118.37256915386666,34.0957006582201],[-118.37261200350569,34.09568060424122],[-118.37263508122537,34.09567091572326],[-118.37265650963815,34.0956615753482],[-118.37267959095105,34.09565257344542],[-118.37270267406062,34.09564391522234],[-118.37272410696495,34.09563560588639],[-118.37274719187113,34.09562763427918],[-118.37277193057575,34.09562000114467],[-118.37279501997349,34.09561271689758],[-118.37281975957642,34.09560542744254],[-118.37284119966731,34.09559883501929],[-118.37286594466013,34.09559257586177],[-118.37288903944777,34.09558666559205],[-118.3733988441513,34.09547208364237],[-118.37367107051328,34.09541113225154],[-118.37394164577184,34.09535018528019],[-118.37419571987689,34.09529272343951],[-118.3742468663559,34.0952815731122],[-118.37474676982835,34.09516942182037],[-118.3748738068809,34.0951405182583],[-118.37518562648908,34.0950705103591],[-118.37524831901442,34.09505623263565],[-118.37526316816607,34.09505309485395],[-118.37555188849501,34.09498796540053],[-118.37631081129818,34.09481763964001],[-118.3765896321927,34.09475494406373],[-118.37692223612159,34.09453373235853],[-118.37720214487591,34.09434634636575],[-118.37723507980917,34.09432529076425],[-118.37749193509836,34.09415343344608],[-118.37758249516048,34.09409303903902],[-118.37771092639835,34.09400814087774],[-118.37794802503949,34.09385008325253],[-118.3779661350756,34.09383766064328],[-118.37809456272021,34.09375173116081],[-118.37822464056998,34.0936657963837],[-118.37833495458518,34.09359194419704],[-118.37838270363579,34.09356019461814],[-118.37854241600846,34.09345424382389],[-118.37861980048032,34.09340247910231],[-118.37900343590384,34.09314709639138],[-118.37904459850681,34.09311983173776],[-118.37907423752127,34.09310050395715],[-118.37911869334806,34.09307116821492],[-118.37913351555025,34.09306219058604],[-118.3791664558734,34.09304250868615],[-118.37921256909189,34.09301419879037],[-118.37926198900894,34.09298690805677],[-118.37930976051742,34.09296030990492],[-118.37935918672268,34.09293439317668],[-118.37948111236123,34.09287218273046],[-118.37950088877221,34.092863190202],[-118.3795503275539,34.09284002149263],[-118.37981568000734,34.09272274505457],[-118.37983051029438,34.09271548510758],[-118.37997389848169,34.09265217721282],[-118.38119349802382,34.0921090627151],[-118.3811939911989,34.09221725887894],[-118.38119257635236,34.09263150728651],[-118.38119575010022,34.09332774291141],[-118.38116371279001,34.09357099249252],[-118.381135,34.093789],[-118.38118,34.09382],[-118.381235,34.093848],[-118.38129499999999,34.093869],[-118.38135800000001,34.093882],[-118.38140799999999,34.093886],[-118.38145900000001,34.093885],[-118.38163900000001,34.093862],[-118.381725,34.09386],[-118.38182399999999,34.093877],[-118.381896,34.093904],[-118.381961,34.093941],[-118.38201599999999,34.093989],[-118.382059,34.094044],[-118.38208899999999,34.094105],[-118.38210599999999,34.094193],[-118.38209999999999,34.094259],[-118.38208,34.094323],[-118.38185300000001,34.09469],[-118.381833,34.094738],[-118.381821,34.094794],[-118.38182,34.094869],[-118.38184099999999,34.094945],[-118.381882,34.095015],[-118.38193800000001,34.095072],[-118.38197,34.095096],[-118.382023,34.095127],[-118.38206099999999,34.095143],[-118.382122,34.095161],[-118.38218999999999,34.095172],[-118.382673,34.095212],[-118.38271,34.095219],[-118.382773,34.095238],[-118.38283199999999,34.095264],[-118.382884,34.095295],[-118.38296,34.095357],[-118.382994,34.095395],[-118.383021,34.095438],[-118.383353,34.096039],[-118.383371,34.0961],[-118.38339000000001,34.096157],[-118.38338899999999,34.096216],[-118.383376,34.096275],[-118.38334999999999,34.096331],[-118.383314,34.096383],[-118.383253,34.096438],[-118.383183,34.096478],[-118.383121,34.096498],[-118.38308499999999,34.096505],[-118.38296699999999,34.096512],[-118.382884,34.096503],[-118.382806,34.09648],[-118.38273,34.09644],[-118.382696,34.096414],[-118.38248299999999,34.096224],[-118.38236000000001,34.096089],[-118.382313,34.096053],[-118.38225300000001,34.096027],[-118.382195,34.096015],[-118.382127,34.096016],[-118.38207,34.096028],[-118.382017,34.09605],[-118.381969,34.096085],[-118.38193099999999,34.096132],[-118.38191,34.096178],[-118.381902,34.09623],[-118.381939,34.096672],[-118.38195899999999,34.096781],[-118.38203,34.097075],[-118.382031,34.09712],[-118.38202099999999,34.09717],[-118.381989,34.097233],[-118.38182399999999,34.097473],[-118.381794,34.097553],[-118.381765,34.097684],[-118.381727,34.097794],[-118.38158909979609,34.09807823315408],[-118.381449,34.098367],[-118.38143700000001,34.09842],[-118.38144200000001,34.098474],[-118.381496,34.098631],[-118.3815,34.098696],[-118.38149,34.09874],[-118.38145799999999,34.098799],[-118.38142499999999,34.098834],[-118.38137999999999,34.098866],[-118.381333,34.098888],[-118.380747,34.099054],[-118.38068699999999,34.099061],[-118.380627,34.099054],[-118.380567,34.099035],[-118.380518,34.099005],[-118.38047899999999,34.098966],[-118.380413,34.098884],[-118.380363,34.098849],[-118.380323,34.098833],[-118.38025399999999,34.098825],[-118.380195,34.098835],[-118.38017600000001,34.098841],[-118.380134,34.098864],[-118.380101,34.098893],[-118.38008499999999,34.098916],[-118.38007899999999,34.098925],[-118.380066,34.098961],[-118.38006300000001,34.098999],[-118.380078,34.099052],[-118.380099,34.099084],[-118.380129,34.099113],[-118.380163,34.099133],[-118.380375,34.099234],[-118.38054700000001,34.099318],[-118.380584,34.099349],[-118.38061,34.099387],[-118.38062499999999,34.099429],[-118.380624,34.099491],[-118.38054700000001,34.09974],[-118.380512,34.100083],[-118.380509,34.100176],[-118.38052500000001,34.100251],[-118.38055799999999,34.100322],[-118.380601,34.100381],[-118.380657,34.100434],[-118.38083899999999,34.100562],[-118.38118299999999,34.100802],[-118.38122300000001,34.100819],[-118.381288,34.100828],[-118.381332,34.100823],[-118.38137500000001,34.100808],[-118.381409,34.100788],[-118.38144800000001,34.100743],[-118.3815,34.100627],[-118.38152700000001,34.100595],[-118.381564,34.100572],[-118.381608,34.100559],[-118.381668,34.100561],[-118.38171199999999,34.100576],[-118.381748,34.100602],[-118.381772,34.100635],[-118.381782,34.100672],[-118.381778,34.100711],[-118.381761,34.100746],[-118.38136900000001,34.101266],[-118.38131799999999,34.101305],[-118.381264,34.101328],[-118.381197,34.101341],[-118.381128,34.101337],[-118.381063,34.101318],[-118.381013,34.101289],[-118.380978,34.101258],[-118.380912,34.101155],[-118.38087,34.101119],[-118.38083399999999,34.101102],[-118.380776,34.101089],[-118.38073199999999,34.101091],[-118.380692,34.1011],[-118.38064,34.101128],[-118.380003,34.101609],[-118.379964,34.101626],[-118.379915,34.101633],[-118.37985999999999,34.101624],[-118.379818,34.101602],[-118.379797,34.101583],[-118.37970799999999,34.101486],[-118.37967399999999,34.101467],[-118.379634,34.101457],[-118.379593,34.101459],[-118.37956539856405,34.10146701190288],[-118.379513,34.101501],[-118.37949399999999,34.101532],[-118.379487,34.101566],[-118.379493,34.1016],[-118.37951099999999,34.10163],[-118.37952799999999,34.101647],[-118.379693,34.101765],[-118.379869,34.101852],[-118.379937,34.101869],[-118.380004,34.101867],[-118.380064,34.10185],[-118.380109,34.101823],[-118.380431,34.101582],[-118.380464,34.101566],[-118.38051900000001,34.101554],[-118.380571,34.101556],[-118.380629,34.101574],[-118.380681,34.101607],[-118.38070999999999,34.101642],[-118.38073,34.101692],[-118.380814,34.102116],[-118.380898,34.102804],[-118.38091900000001,34.102851],[-118.380956,34.102895],[-118.381017,34.102935],[-118.381077,34.102955],[-118.38108800000001,34.102957],[-118.381158,34.102961],[-118.381221,34.102949],[-118.381277,34.102926],[-118.381514,34.102789],[-118.381576,34.102743],[-118.381642,34.102681],[-118.38186899999999,34.102411],[-118.38193800000001,34.102328],[-118.38196000000001,34.102287],[-118.382013,34.102118],[-118.382032,34.102086],[-118.382214,34.101837],[-118.382271,34.101684],[-118.382296,34.101647],[-118.382333,34.101613],[-118.382396,34.101582],[-118.382445,34.101571],[-118.382519,34.101571],[-118.382572,34.101585],[-118.382615,34.101607],[-118.38265199999999,34.101636],[-118.38268100000001,34.101674],[-118.382698,34.101714],[-118.38270199999999,34.101779],[-118.382688,34.101823],[-118.38266400000001,34.101861],[-118.382631,34.101893],[-118.382496,34.101999],[-118.382456,34.102043],[-118.382428,34.102089],[-118.382385,34.102206],[-118.382368,34.102315],[-118.382369,34.1024],[-118.38238200000001,34.102485],[-118.382403,34.102556],[-118.382451,34.102658],[-118.382536,34.102789],[-118.38254999999999,34.10283],[-118.382554,34.102873],[-118.382542,34.103091],[-118.382525,34.103139],[-118.38249399999999,34.103182],[-118.382451,34.103218],[-118.38208842674769,34.10340415992256],[-118.38179724638761,34.10355366381712],[-118.38160782969506,34.10368181403708],[-118.38142963066495,34.10384390754172],[-118.381016,34.104334],[-118.380987,34.104395],[-118.38097500000001,34.104459],[-118.38098100000001,34.104525],[-118.381002,34.104582],[-118.381033,34.104631],[-118.38108800000001,34.104684],[-118.38114,34.104716],[-118.381175,34.104734],[-118.381381,34.104843],[-118.38160999999999,34.105018],[-118.381671,34.105044],[-118.381742,34.105057],[-118.38178600000001,34.105058],[-118.381851,34.105053],[-118.38193,34.105048],[-118.381985,34.105061],[-118.38202699999999,34.105088],[-118.382059,34.105127],[-118.382076,34.105171],[-118.38209000000001,34.105332],[-118.38211200000001,34.10539],[-118.38215,34.105441],[-118.382194,34.105479],[-118.382302,34.105553],[-118.382361,34.105611],[-118.38240399999999,34.105675],[-118.382424,34.105719],[-118.38247200000001,34.105847],[-118.382513,34.105906],[-118.382718,34.106125],[-118.38276999999999,34.106158],[-118.382892,34.106198],[-118.382955,34.106202],[-118.38302,34.10619],[-118.383078,34.106161],[-118.38327099999999,34.105983],[-118.383301,34.105945],[-118.38337,34.105848],[-118.38341,34.105812],[-118.383511,34.10573],[-118.383557,34.105673],[-118.383588,34.105605],[-118.38363699999999,34.105447],[-118.38367100000001,34.105397],[-118.383713,34.105361],[-118.38377199999999,34.105332],[-118.383858,34.10531],[-118.383916,34.105303],[-118.383977,34.105311],[-118.384027,34.105331],[-118.384074,34.105368],[-118.38409900000001,34.105405],[-118.384113,34.105447],[-118.384141,34.105807],[-118.38416100000001,34.105865],[-118.38419399999999,34.105913],[-118.38424000000001,34.105954],[-118.38429600000001,34.105986],[-118.38435800000001,34.106006],[-118.38442000000001,34.106014],[-118.38449199999999,34.10601],[-118.38456100000001,34.105991],[-118.38462199999999,34.105959],[-118.38487000000001,34.105766],[-118.384928,34.105743],[-118.38499400000001,34.105735],[-118.38505000000001,34.105742],[-118.38510100000001,34.10576],[-118.38513399999999,34.105781],[-118.38529800000001,34.105899],[-118.385374,34.105934],[-118.38563600000001,34.106005],[-118.38571399999999,34.106005],[-118.38578,34.105988],[-118.385831,34.105961],[-118.38587800000001,34.105919],[-118.38590499999999,34.105875],[-118.38608499999999,34.105479],[-118.38609099999999,34.105429],[-118.386088,34.105396],[-118.386066,34.105286],[-118.386071,34.105236],[-118.386088,34.105191],[-118.38612500000001,34.105143],[-118.386319,34.10498],[-118.38638,34.104907],[-118.38643500000001,34.10481],[-118.386482,34.104666],[-118.386488,34.104601],[-118.386482,34.104539],[-118.38646300000001,34.104447],[-118.38646799999999,34.104398],[-118.386487,34.104354],[-118.386527,34.104309],[-118.386556,34.104289],[-118.38666499999999,34.104225],[-118.386696,34.104198],[-118.386786,34.104106],[-118.386831,34.104083],[-118.38688500000001,34.104074],[-118.386937,34.10408],[-118.386988,34.104102],[-118.387024,34.104136],[-118.387044,34.104177],[-118.387047,34.104218],[-118.387035,34.104258],[-118.38685599999999,34.104564],[-118.386831,34.104628],[-118.38675000000001,34.104893],[-118.386748,34.104962],[-118.386763,34.105029],[-118.38679399999999,34.105093],[-118.386841,34.10515],[-118.386942,34.105246],[-118.386965,34.105286],[-118.386976,34.105334],[-118.386971,34.105384],[-118.386809,34.105751],[-118.38665399999999,34.10598],[-118.386608,34.106015],[-118.38655799999999,34.106034],[-118.386405,34.106066],[-118.386357,34.106089],[-118.38632,34.106123],[-118.38629400000001,34.106163],[-118.386246,34.106269],[-118.38613599999999,34.106421],[-118.386089,34.10646],[-118.386036,34.106488],[-118.38597300000001,34.106507],[-118.38591099999999,34.106514],[-118.38584899999999,34.10651],[-118.385805,34.1065],[-118.385543,34.106425],[-118.385492,34.106422],[-118.38544,34.106433],[-118.385396,34.106453],[-118.385352,34.106493],[-118.385223,34.106437],[-118.38518500000001,34.106426],[-118.385074,34.106419],[-118.385023,34.106427],[-118.38461700000001,34.10661],[-118.384553,34.106633],[-118.384467,34.106649],[-118.384379,34.106652],[-118.384293,34.106641],[-118.38421,34.106616],[-118.384134,34.106578],[-118.383956,34.106445],[-118.38390699999999,34.106424],[-118.38385,34.106416],[-118.383796,34.106424],[-118.38363699999999,34.106488],[-118.38355199999999,34.106524],[-118.383482,34.106565],[-118.383461,34.106583],[-118.383441,34.106635],[-118.383413,34.106673],[-118.383371,34.106704],[-118.383122,34.106788],[-118.383045,34.106808],[-118.38285399999999,34.106843],[-118.382808,34.106846],[-118.382743,34.106838],[-118.382684,34.106816],[-118.382311,34.106552],[-118.382113,34.106411],[-118.381956,34.106288],[-118.381832,34.106176],[-118.381635,34.105969],[-118.38158199999999,34.105922],[-118.381523,34.105888],[-118.381033,34.105708],[-118.38097500000001,34.105679],[-118.380533,34.105349],[-118.38048499999999,34.105321],[-118.380426,34.105302],[-118.38036700000001,34.105297],[-118.380309,34.105304],[-118.380251,34.105323],[-118.380201,34.105355],[-118.38019,34.105367],[-118.38016,34.1054],[-118.380135,34.105455],[-118.38012999999999,34.105511],[-118.38024799999999,34.105998],[-118.38028,34.106056],[-118.380326,34.106108],[-118.380385,34.106149],[-118.380448,34.106176],[-118.380518,34.106192],[-118.380593,34.106196],[-118.380681,34.106182],[-118.380816,34.106129],[-118.380915,34.106105],[-118.38100900000001,34.106098],[-118.381102,34.106104],[-118.381202,34.106126],[-118.381287,34.10616],[-118.38136299999999,34.106205],[-118.381429,34.106261],[-118.38148200000001,34.106326],[-118.381523,34.106401],[-118.381564,34.106492],[-118.38158199999999,34.106569],[-118.381584,34.106647],[-118.38157099999999,34.106716],[-118.381542,34.106791],[-118.381508,34.106846],[-118.38145299999999,34.106909],[-118.38138600000001,34.106964],[-118.381249,34.107043],[-118.38117800000001,34.107094],[-118.38102499999999,34.107252],[-118.38095300000001,34.107314],[-118.38087899999999,34.107356],[-118.380785,34.107391],[-118.380528,34.107445],[-118.38044600000001,34.107468],[-118.38037,34.107503],[-118.38002400000001,34.107729],[-118.379971,34.107779],[-118.37993299999999,34.107838],[-118.379914,34.107903],[-118.379913,34.10796],[-118.37994500000001,34.108102],[-118.37994999999999,34.108159],[-118.379938,34.108217],[-118.37991,34.108273],[-118.379864,34.108324],[-118.379807,34.108362],[-118.37973100000001,34.108389],[-118.379659,34.108398],[-118.379587,34.108392],[-118.379519,34.108372],[-118.379454,34.108336],[-118.379413,34.108297],[-118.37938200000001,34.108254],[-118.379364,34.108212],[-118.37935400000001,34.108152],[-118.379363,34.108093],[-118.37938800000001,34.108036],[-118.380129,34.107139],[-118.380149,34.107111],[-118.38017600000001,34.107053],[-118.38018700000001,34.106987],[-118.380178,34.10692],[-118.380152,34.106861],[-118.380111,34.106809],[-118.380054,34.106763],[-118.37997799999999,34.106728],[-118.37990000000001,34.106711],[-118.379819,34.106711],[-118.379752,34.106723],[-118.379679,34.106752],[-118.379625,34.106787],[-118.37932000000001,34.107095],[-118.379231,34.107161],[-118.37913500000001,34.107215],[-118.379031,34.107256],[-118.37892100000001,34.107285],[-118.378698,34.107318],[-118.378648,34.107333],[-118.378595,34.107366],[-118.37854299999999,34.107369],[-118.378545,34.107957],[-118.378248,34.107958],[-118.37817699999999,34.107958],[-118.378141,34.107958],[-118.378103,34.108001],[-118.37800799999999,34.108111],[-118.377527,34.108666],[-118.377495,34.108744],[-118.376621,34.110887],[-118.376447,34.111311],[-118.375981,34.11228],[-118.37595134583276,34.11234130953594],[-118.37582344721685,34.11195265634178]]],"type":"Polygon"} +},{ + "id": 1108561759, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000084, + "geom:area_square_m":864549.667021, + "geom:bbox":"-118.361439847,34.082975023,-118.344061492,34.088967196", + "geom:latitude":34.085708, + "geom:longitude":-118.35179, + "iso:country":"US", + "lbl:latitude":34.083698, + "lbl:longitude":-118.355437, + "lbl:max_zoom":18.0, + "mps:latitude":34.086018, + "mps:longitude":-118.350053, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Melrose" + ], + "name:ceb_x_preferred":[ + "Melrose" + ], + "name:cym_x_preferred":[ + "Melrose" + ], + "name:deu_x_preferred":[ + "Melrose" + ], + "name:eng_x_variant":[ + "Melrose District" + ], + "name:fin_x_preferred":[ + "Melrose" + ], + "name:fra_x_preferred":[ + "Melrose" + ], + "name:hun_x_preferred":[ + "Melrose" + ], + "name:ita_x_preferred":[ + "Melrose" + ], + "name:jpn_x_preferred":[ + "\u30e1\u30eb\u30ed\u30fc\u30ba" + ], + "name:nld_x_preferred":[ + "Melrose" + ], + "name:pol_x_preferred":[ + "Melrose" + ], + "name:por_x_preferred":[ + "Melrose" + ], + "name:rus_x_preferred":[ + "\u041c\u0435\u043b\u0440\u043e\u0437" + ], + "name:sco_x_preferred":[ + "Melrose" + ], + "name:spa_x_preferred":[ + "Melrose" + ], + "name:srp_x_preferred":[ + "\u041c\u0435\u043b\u0440\u043e\u0443\u0437" + ], + "name:swe_x_preferred":[ + "Melrose" + ], + "name:ukr_x_preferred":[ + "\u041c\u0435\u043b\u0440\u043e\u0443\u0437" + ], + "name:vol_x_preferred":[ + "Melrose" + ], + "reversegeo:latitude":34.086018, + "reversegeo:longitude":-118.350053, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869227, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"979aff039501b0507663945ea9d6a081", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561759, + "neighbourhood_id":85869227, + "region_id":85688637 + } + ], + "wof:id":1108561759, + "wof:lastmodified":1566623962, + "wof:name":"Melrose", + "wof:parent_id":85869227, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869471 + ], + "wof:tags":[] +}, + "bbox": [ + -118.36143984679904, + 34.08297502299688, + -118.34406149196477, + 34.08896719601043 +], + "geometry": {"coordinates":[[[-118.34406149196477,34.08297502299688],[-118.35856201647209,34.08325678588643],[-118.35856159410187,34.08363868645584],[-118.36143330080888,34.08365594523405],[-118.36143984679904,34.08721940171985],[-118.36139800503067,34.08721958612821],[-118.36121139440343,34.08721773959069],[-118.36092074539158,34.08721482991776],[-118.36091414007927,34.087214850005],[-118.36042697292091,34.08721012132126],[-118.359441084473,34.08720172336878],[-118.35829831424387,34.08719240884214],[-118.35813812935737,34.08719116640923],[-118.35720343410088,34.08718328551527],[-118.35705315673363,34.08718201257937],[-118.35378503362772,34.08715487396782],[-118.35281235939763,34.08714707044362],[-118.35281343198609,34.08896719601043],[-118.3458410833482,34.08891178910891],[-118.34506325999148,34.08890576975497],[-118.34407075006162,34.08889795225701],[-118.34407054524573,34.08844661327718],[-118.34406617404355,34.08658150162195],[-118.34406301107543,34.08500972214923],[-118.34406359587868,34.08394766536873],[-118.3440619618432,34.08355060113588],[-118.34406226277881,34.08322222771962],[-118.34406149196477,34.08297502299688]]],"type":"Polygon"} +},{ + "id": 1108561763, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":427975.410298, + "geom:bbox":"-118.309193762,34.0835138497,-118.298832,34.090786", + "geom:latitude":34.086335, + "geom:longitude":-118.30583, + "iso:country":"US", + "lbl:latitude":34.08605, + "lbl:longitude":-118.306261, + "lbl:max_zoom":18.0, + "mps:latitude":34.08602, + "mps:longitude":-118.30634, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Melrose Hill" + ], + "name:eng_x_variant":[ + "Melrose Hl" + ], + "name:ita_x_preferred":[ + "Melrose Hill" + ], + "name:spa_x_preferred":[ + "Melrose Hill" + ], + "reversegeo:latitude":34.08602, + "reversegeo:longitude":-118.30634, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865827, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6813660" + }, + "wof:country":"US", + "wof:geomhash":"07e10a3242636f242aff028cc6fb48cd", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108561763, + "neighbourhood_id":85865827, + "region_id":85688637 + } + ], + "wof:id":1108561763, + "wof:lastmodified":1566623964, + "wof:name":"Melrose Hill", + "wof:parent_id":85865827, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869473 + ], + "wof:tags":[] +}, + "bbox": [ + -118.309193762053, + 34.08351384972063, + -118.298832, + 34.090786 +], + "geometry": {"coordinates":[[[-118.298832,34.083563],[-118.29912,34.083562],[-118.299257,34.083561],[-118.30044599999999,34.083555],[-118.301609,34.083548],[-118.30170200000001,34.083548],[-118.302773,34.083542],[-118.30344700000001,34.083539],[-118.30393599999999,34.083536],[-118.304602,34.083533],[-118.30509600000001,34.08353],[-118.30576000000001,34.083527],[-118.306916,34.083521],[-118.307759,34.083516],[-118.30794823208088,34.08351517725182],[-118.30914501627451,34.08351384980632],[-118.30914503256898,34.08351384972063],[-118.309193762053,34.09076996898361],[-118.30917599999999,34.09077],[-118.308516,34.090774],[-118.307795,34.090779],[-118.306945,34.090784],[-118.30658,34.090786],[-118.305324,34.088764],[-118.305291,34.088712],[-118.305038,34.088341],[-118.304922,34.088191],[-118.304821,34.088072],[-118.30479699999999,34.088045],[-118.30464000000001,34.087863],[-118.30442600000001,34.087633],[-118.304306,34.087513],[-118.304203,34.08741],[-118.30412,34.087333],[-118.30397000000001,34.087193],[-118.303729,34.086983],[-118.303473,34.086778],[-118.303276,34.086641],[-118.30258000000001,34.086158],[-118.300451,34.084681],[-118.300202,34.084508],[-118.298832,34.083563]]],"type":"Polygon"} +},{ + "id": 1108691405, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000068, + "geom:area_square_m":697890.218716, + "geom:bbox":"-118.284596792,34.083459,-118.276015,34.0958167849", + "geom:latitude":34.090906, + "geom:longitude":-118.281254, + "iso:country":"US", + "lbl:latitude":34.087415, + "lbl:longitude":-118.274901, + "lbl:max_zoom":18.0, + "mps:latitude":34.090959, + "mps:longitude":-118.281173, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Sunset Jct" + ], + "reversegeo:latitude":34.090959, + "reversegeo:longitude":-118.281173, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865847, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d30611b05b8cd16b58743a33df55d535", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691405, + "neighbourhood_id":85865847, + "region_id":85688637 + } + ], + "wof:id":1108691405, + "wof:lastmodified":1566623961, + "wof:name":"Sunset Junction", + "wof:parent_id":85865847, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869717 + ], + "wof:tags":[] +}, + "bbox": [ + -118.28459679207204, + 34.083459, + -118.276015, + 34.0958167849324 +], + "geometry": {"coordinates":[[[-118.27717489249943,34.09578094475829],[-118.276555,34.095773],[-118.276015,34.095653],[-118.276117,34.095571],[-118.27790899999999,34.093952],[-118.277968,34.09389],[-118.27802,34.093823],[-118.278065,34.093754],[-118.27811800000001,34.093653],[-118.278245,34.093248],[-118.278282,34.092851],[-118.278227,34.092564],[-118.27802200000001,34.092134],[-118.277455,34.09094],[-118.27713799999999,34.090061],[-118.27704460312962,34.08990386797478],[-118.276888,34.089748],[-118.277691,34.088474],[-118.278271,34.087556],[-118.278712,34.086858],[-118.279065,34.086299],[-118.279073,34.086285],[-118.279335,34.08626],[-118.27946300000001,34.086142],[-118.279391,34.086395],[-118.279393,34.086448],[-118.279411,34.086499],[-118.27943999999999,34.086542],[-118.27948000000001,34.086579],[-118.279533,34.086609],[-118.280053,34.086828],[-118.28015499999999,34.086667],[-118.28032,34.086737],[-118.281198,34.087107],[-118.281316,34.087157],[-118.281548,34.08709],[-118.283547,34.08389],[-118.283816,34.083459],[-118.28447790957526,34.0837379989648],[-118.28447830355717,34.08377223809417],[-118.28448562123347,34.08446708983499],[-118.28448638749641,34.08469241385965],[-118.28448888032133,34.08493971703169],[-118.28449153753793,34.0852354502039],[-118.28449377883456,34.08540890511215],[-118.28449694809089,34.08585508439208],[-118.28450127258067,34.08615562197205],[-118.28450172712819,34.08628923712089],[-118.28450690950908,34.08684189100372],[-118.28450965206565,34.08716269906646],[-118.28451450656144,34.08761883530129],[-118.28451975272269,34.08819003792168],[-118.28452282945254,34.08860908151141],[-118.28452511835987,34.08879627487229],[-118.28452755369263,34.08902674745296],[-118.28453210635448,34.08939426448893],[-118.28453457043331,34.08963298138799],[-118.28453718812403,34.08991703678519],[-118.28454458575041,34.09063524547854],[-118.28454719086474,34.0909155227659],[-118.28454737322274,34.09096910570643],[-118.28454852306631,34.09105161738725],[-118.2845474477969,34.09105364613032],[-118.28451976440077,34.09110587722468],[-118.28455831906712,34.09201905249652],[-118.28455971158317,34.09216852490796],[-118.28456708675162,34.09287986372374],[-118.28457710296708,34.09388212805613],[-118.28459679207204,34.09580807093005],[-118.2840982344453,34.0958167849324],[-118.28058036621566,34.0957988458779],[-118.27984212802021,34.0957950624218],[-118.27934501471503,34.09579243423645],[-118.27843832084426,34.09578765767858],[-118.27801717806265,34.09578553608637],[-118.27795111595667,34.095785000481],[-118.2777975229077,34.09578432353538],[-118.27725912123542,34.09578143870544],[-118.27717489249943,34.09578094475829]]],"type":"Polygon"} +},{ + "id": 1108561767, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000195, + "geom:area_square_m":2001711.411952, + "geom:bbox":"-118.363559,34.051653,-118.344030906,34.0691769619", + "geom:latitude":34.060041, + "geom:longitude":-118.352555, + "iso:country":"US", + "lbl:latitude":34.063224, + "lbl:longitude":-118.355038, + "lbl:max_zoom":18.0, + "mps:latitude":34.05954, + "mps:longitude":-118.352408, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Miracle Mile" + ], + "name:eng_x_variant":[ + "Miraclemile" + ], + "name:fra_x_preferred":[ + "Miracle Mile" + ], + "name:nob_x_preferred":[ + "Miracle Mile" + ], + "name:rus_x_preferred":[ + "\u041c\u0438\u043b\u044f \u0447\u0443\u0434\u0435\u0441" + ], + "name:zho_x_preferred":[ + "\u5947\u8ff9\u4e00\u82f1\u91cc" + ], + "reversegeo:latitude":34.05954, + "reversegeo:longitude":-118.352408, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85886323, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3315812" + }, + "wof:country":"US", + "wof:geomhash":"49aa892f4987a86e6bfb7912f9f2e981", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561767, + "neighbourhood_id":85886323, + "region_id":85688637 + } + ], + "wof:id":1108561767, + "wof:lastmodified":1566623964, + "wof:name":"Miracle Mile", + "wof:parent_id":85886323, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866827 + ], + "wof:tags":[] +}, + "bbox": [ + -118.363559, + 34.051653, + -118.3440309061855, + 34.06917696190013 +], + "geometry": {"coordinates":[[[-118.363559,34.058731],[-118.363473,34.058897],[-118.362861,34.060084],[-118.362375,34.061027],[-118.36188900000001,34.06197],[-118.361375,34.062967],[-118.361379,34.064028],[-118.361383,34.064881],[-118.360641,34.064876],[-118.36031,34.064874],[-118.359252,34.064867],[-118.357384,34.064872],[-118.35643518521174,34.06487415835939],[-118.355186,34.064877],[-118.354617,34.064879],[-118.35320900000001,34.064882],[-118.352502,34.064884],[-118.351445,34.064887],[-118.350388,34.06489],[-118.34933100000001,34.064892],[-118.348275,34.064895],[-118.347218,34.064898],[-118.347222,34.066878],[-118.3472258736668,34.06917527382246],[-118.3472257884023,34.06917696190013],[-118.346193,34.068991],[-118.345619,34.068888],[-118.345123,34.068889],[-118.34403495665252,34.06889295292769],[-118.34403383648994,34.06828311723499],[-118.34403090618549,34.06716920388836],[-118.34403882034314,34.06347362770059],[-118.34404538612955,34.06266161087261],[-118.34404744955977,34.06236036927095],[-118.34404714143763,34.06228549107795],[-118.34405523885158,34.06224734088227],[-118.34406168965363,34.06221022583939],[-118.344661,34.060522],[-118.345316,34.058874],[-118.345855,34.057604],[-118.34588599999999,34.05748],[-118.345899,34.057371],[-118.34589699999999,34.057243],[-118.345893,34.057214],[-118.345871,34.057099],[-118.34582899999999,34.056977],[-118.345769,34.056859],[-118.345719,34.056784],[-118.34586899999999,34.056391],[-118.34656099999999,34.054583],[-118.346985,34.053677],[-118.347105,34.05346],[-118.3472,34.05331],[-118.347257,34.053185],[-118.34781700000001,34.051653],[-118.34883600000001,34.052022],[-118.349859,34.052392],[-118.350881,34.052762],[-118.35427900000001,34.053976],[-118.35467199999999,34.05412],[-118.355439,34.054389],[-118.35625899999999,34.054677],[-118.357156,34.054991],[-118.358056,34.055305],[-118.358876,34.055593],[-118.359083,34.055671],[-118.35926000000001,34.055751],[-118.35936,34.055803],[-118.359531,34.055908],[-118.359734,34.056047],[-118.359995,34.056236],[-118.360348,34.056501],[-118.360828,34.056862],[-118.36113899999999,34.057067],[-118.36198400000001,34.057636],[-118.362459,34.057955],[-118.36292299999999,34.058267],[-118.363559,34.058731]]],"type":"Polygon"} +},{ + "id": 1108691447, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":214066.209331, + "geom:bbox":"-118.309279798,34.1005148515,-118.300532818,34.1029505752", + "geom:latitude":34.101737, + "geom:longitude":-118.304912, + "iso:country":"US", + "lbl:latitude":34.099555, + "lbl:longitude":-118.303269, + "lbl:max_zoom":18.0, + "mps:latitude":34.101737, + "mps:longitude":-118.304912, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Thai Town" + ], + "name:epo_x_preferred":[ + "Losan\u011delesa Taja Kvartalo" + ], + "name:fra_x_preferred":[ + "Thai Town" + ], + "name:ita_x_preferred":[ + "Thai Town" + ], + "name:jpn_x_preferred":[ + "\u30bf\u30a4\u30fb\u30bf\u30a6\u30f3" + ], + "name:nld_x_preferred":[ + "Thai Town" + ], + "name:tha_x_preferred":[ + "\u0e44\u0e17\u0e22\u0e17\u0e32\u0e27\u0e19\u0e4c" + ], + "reversegeo:latitude":34.101737, + "reversegeo:longitude":-118.304912, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865827, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3519423" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"de02cac0381467bfb09cf436d67b439a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691447, + "neighbourhood_id":85865827, + "region_id":85688637 + } + ], + "wof:id":1108691447, + "wof:lastmodified":1566623957, + "wof:name":"Thai Town", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869731 + ], + "wof:tags":[] +}, + "bbox": [ + -118.3092797983032, + 34.10051485147788, + -118.30053281764141, + 34.10295057521376 +], + "geometry": {"coordinates":[[[-118.30053281764141,34.1005657760543],[-118.30926493720011,34.10051485147788],[-118.30926498988082,34.10052404144881],[-118.30927194643436,34.10173759441328],[-118.30927255100056,34.10173773499979],[-118.30927979830319,34.10291843646314],[-118.30054731490073,34.10295057521376],[-118.30053281764141,34.1005657760543]]],"type":"Polygon"} +},{ + "id": 1108561769, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000079, + "geom:area_square_m":807553.011422, + "geom:bbox":"-118.361411,34.064867,-118.347218,34.071516", + "geom:latitude":34.067704, + "geom:longitude":-118.354811, + "iso:country":"US", + "lbl:latitude":34.067755, + "lbl:longitude":-118.356605, + "lbl:max_zoom":18.0, + "mps:latitude":34.067739, + "mps:longitude":-118.35481, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0645\u0646\u062a\u0632\u0647 \u0644\u0627 \u0628\u0631\u064a\u0627" + ], + "name:eng_x_preferred":[ + "Park La Brea" + ], + "reversegeo:latitude":34.067739, + "reversegeo:longitude":-118.35481, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85886323, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7137866" + }, + "wof:country":"US", + "wof:geomhash":"7f43b3710519ae6ff543579c0e9c11ca", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108561769, + "neighbourhood_id":85886323, + "region_id":85688637 + } + ], + "wof:id":1108561769, + "wof:lastmodified":1566623963, + "wof:name":"Park la Brea", + "wof:parent_id":85886323, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85840663 + ], + "wof:tags":[] +}, + "bbox": [ + -118.361411, + 34.064867, + -118.347218, + 34.071516 +], + "geometry": {"coordinates":[[[-118.3472257884023,34.06917696190013],[-118.3472258736668,34.06917527382246],[-118.347222,34.066878],[-118.347218,34.064898],[-118.348275,34.064895],[-118.34933100000001,34.064892],[-118.350388,34.06489],[-118.351445,34.064887],[-118.352502,34.064884],[-118.35320900000001,34.064882],[-118.354617,34.064879],[-118.355186,34.064877],[-118.35643518521174,34.06487415835939],[-118.357384,34.064872],[-118.359252,34.064867],[-118.36031,34.064874],[-118.360641,34.064876],[-118.361383,34.064881],[-118.361384,34.065176],[-118.36138699999999,34.065726],[-118.36139,34.066566],[-118.36139413054379,34.06743203008498],[-118.361397,34.068224],[-118.3614,34.069012],[-118.361401,34.069055],[-118.36140399999999,34.069901],[-118.361408,34.070747],[-118.361411,34.071516],[-118.359466,34.071246],[-118.359032,34.071186],[-118.358379,34.071095],[-118.356416,34.070823],[-118.35631600000001,34.070809],[-118.355208,34.070655],[-118.35440962883889,34.07054410051679],[-118.353689,34.070444],[-118.353194,34.070346],[-118.352198,34.070149],[-118.35107499999999,34.069926],[-118.349789,34.069671],[-118.34862099999999,34.069439],[-118.347999,34.069315],[-118.347408,34.069209],[-118.34722600000001,34.069177],[-118.3472257884023,34.06917696190013]]],"type":"Polygon"} +},{ + "id": 1108691449, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000012, + "geom:area_square_m":124673.629283, + "geom:bbox":"-118.24757,34.0442,-118.242504,34.0485228636", + "geom:latitude":34.046324, + "geom:longitude":-118.244771, + "iso:country":"US", + "lbl:latitude":34.046276, + "lbl:longitude":-118.244733, + "lbl:max_zoom":18.0, + "mps:latitude":34.046276, + "mps:longitude":-118.244733, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Toy District" + ], + "name:ita_x_preferred":[ + "Toy District" + ], + "name:pol_x_preferred":[ + "Toy District" + ], + "reversegeo:latitude":34.046276, + "reversegeo:longitude":-118.244733, + "src:geom":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4274139" + }, + "wof:country":"US", + "wof:geomhash":"4bdefdc54d031829ebad3debf9c7834f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691449, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1108691449, + "wof:lastmodified":1566623956, + "wof:name":"Toy District", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551233, + 420780783 + ], + "wof:tags":[] +}, + "bbox": [ + -118.24757, + 34.0442, + -118.242504, + 34.04852286364169 +], + "geometry": {"coordinates":[[[-118.242504,34.047326],[-118.242654,34.046913],[-118.24271299999999,34.046684],[-118.242824,34.046255],[-118.242891,34.046068],[-118.243002,34.045843],[-118.243442,34.044957],[-118.24388500000001,34.0442],[-118.244983,34.044581],[-118.24564100000001,34.044809],[-118.245785,34.044902],[-118.24656899999999,34.045413],[-118.24757,34.046064],[-118.24696299999999,34.046678],[-118.246183,34.047247],[-118.24550499999999,34.047705],[-118.24535400000001,34.047863],[-118.24473802924872,34.04852166383318],[-118.24473688187331,34.04852286364169],[-118.244727,34.048517],[-118.24378900000001,34.04796],[-118.243077,34.047608],[-118.242504,34.047326]]],"type":"Polygon"} +},{ + "id": 1108691453, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000147, + "geom:area_square_m":1501506.15934, + "geom:bbox":"-118.179105,34.0618367526,-118.161571485,34.0746396279", + "geom:latitude":34.067793, + "geom:longitude":-118.169733, + "iso:country":"US", + "lbl:latitude":34.068647, + "lbl:longitude":-118.170363, + "lbl:max_zoom":18.0, + "mps:latitude":34.067689, + "mps:longitude":-118.169026, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "University Hls" + ], + "reversegeo:latitude":34.067689, + "reversegeo:longitude":-118.169026, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85817715, + 102191575, + 1108692437, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"7b07a4eb9ffddfbddb72b7912cc5aa7a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692437, + "microhood_id":1108691453, + "neighbourhood_id":85817715, + "region_id":85688637 + } + ], + "wof:id":1108691453, + "wof:lastmodified":1566623956, + "wof:name":"University Hills", + "wof:parent_id":85817715, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869745 + ], + "wof:tags":[] +}, + "bbox": [ + -118.179105, + 34.06183675262984, + -118.16157148461198, + 34.07463962794071 +], + "geometry": {"coordinates":[[[-118.17907917499909,34.06230175874638],[-118.179098,34.062378],[-118.17910500000001,34.062411],[-118.179104,34.062455],[-118.179086,34.06414],[-118.17907700000001,34.064262],[-118.17904299999999,34.064427],[-118.178994,34.064566],[-118.178929,34.064699],[-118.178847,34.064826],[-118.177668,34.066271],[-118.176514,34.067683],[-118.17634,34.067893],[-118.176153,34.068109],[-118.175962,34.068322],[-118.175766,34.068533],[-118.17546400000001,34.068843],[-118.17531700000001,34.06899],[-118.175207,34.069449],[-118.17479400000001,34.069819],[-118.17448400000001,34.070083],[-118.17264900000001,34.071592],[-118.17050500000001,34.073355],[-118.168323,34.074431],[-118.16818600000001,34.07448],[-118.168042,34.074512],[-118.16729891767045,34.07461436706817],[-118.16710398112507,34.07463034136345],[-118.16703698112505,34.07463034136345],[-118.16697098112508,34.07463034136345],[-118.16690498112507,34.07462834136344],[-118.16683598112508,34.07462234136344],[-118.16677598112507,34.07461734136344],[-118.16658398112507,34.07459634136344],[-118.16649798112506,34.07458634136344],[-118.16631098112506,34.07455734136344],[-118.16617398112506,34.07453034136343],[-118.16605198112508,34.07450234136343],[-118.16599598112506,34.07448134136344],[-118.16593798112505,34.07445834136344],[-118.16588298112507,34.07443434136344],[-118.16581598112506,34.07440234136345],[-118.16575998112506,34.07437634136344],[-118.165676,34.074331],[-118.165133,34.074112],[-118.165098,34.074098],[-118.164258,34.073814],[-118.164188,34.073805],[-118.164001,34.073779],[-118.16381199999999,34.073769],[-118.163606,34.073787],[-118.163304,34.073849],[-118.16320899999999,34.07389],[-118.16279299999999,34.074121],[-118.1625418164659,34.07429035763069],[-118.16222966124425,34.07446951285236],[-118.16201108232956,34.07456132931827],[-118.16177292552624,34.07463962794071],[-118.161628785449,34.07352865250628],[-118.16158672273414,34.07312168090373],[-118.16157148461198,34.07292591512172],[-118.16157459368117,34.07282595751578],[-118.16158921376244,34.07270194083839],[-118.16162360216983,34.07255522743185],[-118.16165643739009,34.07245935078398],[-118.16168438218193,34.07239542576542],[-118.16169259907186,34.07237583653882],[-118.16171887120065,34.07230092180604],[-118.16173362063931,34.07224422786261],[-118.1617418024949,34.07220609033576],[-118.16175482267661,34.07210886720798],[-118.16175805122177,34.07207073631712],[-118.16175798474643,34.07203638695061],[-118.16175786257554,34.07197353014843],[-118.16174945793773,34.0718962577315],[-118.16174277626867,34.07185573518652],[-118.16173944082399,34.07183856567014],[-118.16173445517418,34.07182174216],[-118.16170948739918,34.07171735655416],[-118.16169782816512,34.07166447577499],[-118.16169114290278,34.07162223646059],[-118.16168272119697,34.0715360329231],[-118.16168252626255,34.07143539207217],[-118.16168734662237,34.07136668908945],[-118.16169060211696,34.07134264165576],[-118.1617003910586,34.07128217516942],[-118.16170366451952,34.07126705779699],[-118.16170857560917,34.07124541158416],[-118.16173316968502,34.07115710256846],[-118.16177259853946,34.07105572236262],[-118.1618301527014,34.07093611346126],[-118.16187620932601,34.07084708977236],[-118.16192391705414,34.07075840753931],[-118.16195353181411,34.07070512731499],[-118.16198150355541,34.07065562791617],[-118.16200783227808,34.07061059617001],[-118.16206214352184,34.07052190475994],[-118.16213127247622,34.07041189796421],[-118.16216748895522,34.07035757873084],[-118.16221687922784,34.07028538122911],[-118.16228767994699,34.07018636256496],[-118.16237002850907,34.07008251964147],[-118.16245242917344,34.07000512569591],[-118.16251012976076,34.06996211241017],[-118.16261237600642,34.0699025520253],[-118.162645360347,34.06988464691872],[-118.16267669178748,34.06986502585836],[-118.16269812828511,34.06985160111551],[-118.16275747638268,34.06980686808003],[-118.16280856536952,34.06975974191509],[-118.16245195037139,34.06975884822101],[-118.16313948675386,34.06843722806061],[-118.16361811991705,34.06751776270558],[-118.16375627901112,34.0672520632077],[-118.16406220028111,34.06666326155496],[-118.16412634628061,34.06654089382966],[-118.16418393278188,34.06644120551556],[-118.16431216369544,34.06616590079064],[-118.16436641565039,34.06604972969134],[-118.16441408475094,34.06594421627115],[-118.16444859982079,34.06586551105777],[-118.16449953789068,34.06574350458646],[-118.16452582708747,34.06567992500027],[-118.16458004221148,34.06554451888211],[-118.16464080246067,34.06538025091818],[-118.16466050880307,34.06532732823123],[-118.16468185726578,34.06526993680413],[-118.1647015582183,34.06521392204322],[-118.16472289320629,34.06514966189246],[-118.16474915545361,34.06507234232254],[-118.16478033507882,34.06497715523506],[-118.16479674729906,34.06492835796054],[-118.16482135125636,34.06484726153562],[-118.16490825607357,34.06454693931267],[-118.16493938718975,34.06442736512882],[-118.16496396509592,34.06433321618183],[-118.16498689639018,34.06424147527549],[-118.16501143746545,34.06412877906502],[-118.16504089142697,34.06399615442909],[-118.16507195337284,34.0638415443691],[-118.16509318415626,34.06372507464458],[-118.16511766414611,34.06358112222556],[-118.16523500119018,34.06280846717906],[-118.16526759566199,34.06259477538465],[-118.16529040209038,34.06244017765169],[-118.16530993146468,34.06229829264379],[-118.16716052473035,34.06229677598355],[-118.17009406941038,34.06229371066281],[-118.17098057364514,34.06229451959791],[-118.17184727002787,34.06229569393059],[-118.17284343160938,34.06183675262984],[-118.17303552555309,34.06212534631788],[-118.17333074519311,34.06198959144673],[-118.1734052694291,34.0621038637244],[-118.17307550148156,34.0622973750569],[-118.17459263113061,34.06229896985712],[-118.17907917499909,34.06230175874638]]],"type":"Polygon"} +},{ + "id": 1108561771, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":487813.49001, + "geom:bbox":"-118.190322,34.092607695,-118.179652,34.103115", + "geom:latitude":34.097493, + "geom:longitude":-118.185809, + "iso:country":"US", + "lbl:latitude":34.092386, + "lbl:longitude":-118.176351, + "lbl:max_zoom":18.0, + "mps:latitude":34.097313, + "mps:longitude":-118.18714, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Monterey Hills" + ], + "name:eng_x_variant":[ + "Monterey Hls" + ], + "name:ita_x_preferred":[ + "Monterey Hills" + ], + "reversegeo:latitude":34.097313, + "reversegeo:longitude":-118.18714, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869501, + 102191575, + 1108692433, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5413749" + }, + "wof:country":"US", + "wof:geomhash":"a1f0529330d3640fefeb3c6e1478fd12", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692433, + "microhood_id":1108561771, + "neighbourhood_id":85869501, + "region_id":85688637 + } + ], + "wof:id":1108561771, + "wof:lastmodified":1566623963, + "wof:name":"Monterey Hills", + "wof:parent_id":85869501, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869503 + ], + "wof:tags":[] +}, + "bbox": [ + -118.190322, + 34.09260769501926, + -118.179652, + 34.103115 +], + "geometry": {"coordinates":[[[-118.187916,34.100291],[-118.186781,34.099965],[-118.186657,34.099929],[-118.185548,34.099609],[-118.185017,34.099456],[-118.18453700000001,34.099317],[-118.184349,34.099263],[-118.18403600000001,34.099173],[-118.184054,34.099267],[-118.18405199999999,34.099365],[-118.184027,34.09947],[-118.183819,34.099968],[-118.18377599999999,34.100037],[-118.183707,34.100115],[-118.183622,34.100182],[-118.18347300000001,34.100274],[-118.18304999999999,34.100536],[-118.182969,34.100605],[-118.18290399999999,34.100683],[-118.182864,34.100755],[-118.18283700000001,34.100825],[-118.182732,34.101239],[-118.18266800000001,34.101485],[-118.18263,34.101576],[-118.182585,34.101651],[-118.182517,34.101734],[-118.182439,34.101804],[-118.18235,34.101866],[-118.182277,34.101905],[-118.18210500000001,34.101978],[-118.181984,34.102031],[-118.18190300000001,34.102052],[-118.181865,34.102066],[-118.18182299999999,34.102091],[-118.181614,34.102253],[-118.180786,34.103115],[-118.180711,34.103064],[-118.180519,34.102917],[-118.180412,34.102823],[-118.18034400000001,34.102758],[-118.180305,34.102717],[-118.18024699999999,34.102657],[-118.18018600000001,34.102587],[-118.180074,34.102442],[-118.179997,34.102329],[-118.17995000000001,34.102252],[-118.179866,34.102095],[-118.179795,34.101932],[-118.17975199999999,34.101811],[-118.179704,34.10164],[-118.17967899999999,34.101512],[-118.179664,34.101408],[-118.179652,34.101254],[-118.179654,34.101039],[-118.17967899999999,34.100824],[-118.179705,34.100696],[-118.17975199999999,34.100528],[-118.17983,34.100322],[-118.179908,34.100162],[-118.179999,34.100007],[-118.180131,34.099821],[-118.18017999999999,34.099762],[-118.180189,34.09975],[-118.180314,34.099612],[-118.18044999999999,34.099482],[-118.18059700000001,34.09936],[-118.18075399999999,34.099247],[-118.18092,34.099143],[-118.181077,34.099058],[-118.181094,34.099049],[-118.18129399999999,34.098959],[-118.182868,34.098292],[-118.183049,34.098207],[-118.18322999999999,34.098111],[-118.18343400000001,34.09799],[-118.18357,34.0979],[-118.183629,34.097857],[-118.183785,34.097741],[-118.18394000000001,34.09761],[-118.18406899999999,34.097492],[-118.18420500000001,34.097353],[-118.184338,34.0972],[-118.184372,34.097158],[-118.184487,34.097005],[-118.184625,34.096795],[-118.18471700000001,34.096632],[-118.184798,34.096465],[-118.18489,34.096238],[-118.184966,34.095992],[-118.18500899999999,34.095805],[-118.185362,34.093982],[-118.185407,34.093814],[-118.18544799999999,34.093704],[-118.185485,34.093624],[-118.185542,34.093519],[-118.185608,34.093418],[-118.185682,34.093321],[-118.18576400000001,34.093228],[-118.18585299999999,34.09314],[-118.18594291481408,34.09307807923285],[-118.18601215426121,34.09302370237617],[-118.18606491770771,34.09298618124605],[-118.18611933585103,34.09295037558159],[-118.18613403611016,34.09294134792888],[-118.18613912573672,34.09293797962149],[-118.18614736859219,34.0929331602489],[-118.18617540779275,34.09291594094939],[-118.18620510212256,34.09289940502962],[-118.18623808325012,34.09288012186461],[-118.18625037791577,34.09287419224022],[-118.18627932041325,34.09285807499429],[-118.18640964529972,34.09279536011246],[-118.18643519797745,34.09278505492026],[-118.1864409938082,34.09278225963486],[-118.18645146816046,34.09277849328454],[-118.18650369352007,34.09275743121135],[-118.18664725867551,34.09270809125383],[-118.186828812686,34.09266075391031],[-118.18685563895474,34.09265617442968],[-118.18687338170051,34.09265175392014],[-118.18695500775617,34.09263921129905],[-118.18703186248294,34.09262609151948],[-118.18705911180014,34.0926232147209],[-118.1870698351683,34.09262156697322],[-118.18708338136628,34.09262065250428],[-118.18713422730617,34.09261528453388],[-118.18727293167765,34.09260785645083],[-118.18737697365553,34.09260769501926],[-118.18741687362649,34.09260926036502],[-118.18742486913152,34.09260933834787],[-118.18743401711018,34.09260993293393],[-118.18746120418814,34.09261099953062],[-118.18754874501256,34.09261738983923],[-118.1876528121433,34.09262925022101],[-118.1877203764098,34.09264038336731],[-118.18773376202849,34.09264217664409],[-118.18775270785726,34.09264571089847],[-118.18776845586308,34.09264830583307],[-118.187783266696,34.0926514115047],[-118.18780315149431,34.09265512091938],[-118.18782422467189,34.09265999994969],[-118.18787089344987,34.09266978588818],[-118.18788859193964,34.09267490277339],[-118.18791220427485,34.09268036968975],[-118.18799978462516,34.09270427715871],[-118.18808241615658,34.09273094011231],[-118.18811547146409,34.09274256688632],[-118.18817332027344,34.09276411759022],[-118.18818051666941,34.0927672377137],[-118.18819150217477,34.09277130239678],[-118.18831383025861,34.09282503815458],[-118.18841799171243,34.09287845919931],[-118.18844361792486,34.09289361732164],[-118.18847586567462,34.09291065687463],[-118.18851398714172,34.0929352413111],[-118.18854367051225,34.09295279927689],[-118.18858782763044,34.09298286085311],[-118.18859328895697,34.0929863828486],[-118.18859477170497,34.0929875882863],[-118.18863629310626,34.09301585550165],[-118.18867599594687,34.09304601999037],[-118.18872562966293,34.09308578624466],[-118.18875044831761,34.09310670006576],[-118.18880174212035,34.09315058611762],[-118.18881828818954,34.09316464321849],[-118.18893408459581,34.09326344132959],[-118.18893907656097,34.09326749967461],[-118.18896318145293,34.09328826692318],[-118.1890151917133,34.09333264235458],[-118.18905315567804,34.09336572151222],[-118.18907972488668,34.09338852916507],[-118.18915417546079,34.09344817867008],[-118.18918519799995,34.09347029024038],[-118.18920694074143,34.09348463872212],[-118.18926829384122,34.09352219241205],[-118.18936253160611,34.09356841488797],[-118.18940800588254,34.09358724229089],[-118.18943030410439,34.09359613095378],[-118.18949475912437,34.09361732584879],[-118.18958279324247,34.09363945212999],[-118.18959896232978,34.09364315121787],[-118.18964988965703,34.09365227796455],[-118.18967485606747,34.09365585693576],[-118.18969711779944,34.09365890845696],[-118.18973641248398,34.09366330353718],[-118.18975075392552,34.09366449606414],[-118.18979044244649,34.0936669357889],[-118.18981525825478,34.09366800283533],[-118.18989452688916,34.09366726751219],[-118.18991103932532,34.09366647855369],[-118.18998010200562,34.09366123863822],[-118.18998038926529,34.09366121609936],[-118.19006246062465,34.09365328975489],[-118.19010257092368,34.09364934544742],[-118.1901778491001,34.09364213583275],[-118.19024598895244,34.09413453330593],[-118.19023407864252,34.09418759791565],[-118.19025145493084,34.09417403198201],[-118.190314,34.094626],[-118.19032199999999,34.094767],[-118.190319,34.094922],[-118.19005900000001,34.09722],[-118.19002999999999,34.09748],[-118.190001,34.097635],[-118.189953,34.097786],[-118.18991,34.097884],[-118.189831,34.098026],[-118.189772,34.09811],[-118.18969,34.098216],[-118.18948399999999,34.09848],[-118.189407,34.098569],[-118.189301,34.098674],[-118.188936,34.098991],[-118.188812,34.099102],[-118.188693,34.099219],[-118.18858,34.099343],[-118.188479,34.099465],[-118.18821800000001,34.09982],[-118.188078,34.100045],[-118.18806499999999,34.100065],[-118.18797600000001,34.100209],[-118.187916,34.100291]]],"type":"Polygon"} +},{ + "id": 1108691517, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000472, + "geom:area_square_m":4828893.896884, + "geom:bbox":"-118.614654958,34.167942,-118.588159,34.1937811565", + "geom:latitude":34.182725, + "geom:longitude":-118.598913, + "iso:country":"US", + "lbl:latitude":34.181656, + "lbl:longitude":-118.59694, + "lbl:max_zoom":18.0, + "mps:latitude":34.182409, + "mps:longitude":-118.598653, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Warner Center" + ], + "name:eng_x_variant":[ + "Warner Ctr" + ], + "name:fra_x_preferred":[ + "Warner Center" + ], + "name:spa_x_preferred":[ + "Warner Center" + ], + "reversegeo:latitude":34.182409, + "reversegeo:longitude":-118.598653, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85858757, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3566344" + }, + "wof:country":"US", + "wof:geomhash":"7fd62ecb6bc1f9379fe41c3d5ddb45d1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1108691517, + "neighbourhood_id":85858757, + "region_id":85688637 + } + ], + "wof:id":1108691517, + "wof:lastmodified":1566623953, + "wof:name":"Warner Center", + "wof:parent_id":85858757, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865871 + ], + "wof:tags":[] +}, + "bbox": [ + -118.61465495849941, + 34.167942, + -118.588159, + 34.19378115647839 +], + "geometry": {"coordinates":[[[-118.605811,34.18696],[-118.605976,34.186925],[-118.606426,34.186814],[-118.606877,34.186704],[-118.607175,34.186632],[-118.60741,34.186584],[-118.60767800000001,34.186544],[-118.607889,34.186521],[-118.608211,34.186501],[-118.610259,34.186496],[-118.610343,34.186459],[-118.61234399999999,34.186456],[-118.61244600000001,34.186455],[-118.612486,34.186455],[-118.614437,34.186452],[-118.614625,34.186451],[-118.61463749525032,34.18645620094792],[-118.61463735870639,34.1866622968239],[-118.6146385822118,34.18682853926835],[-118.61463991800665,34.18723488130975],[-118.61464096184901,34.18782602346572],[-118.61464313487367,34.1883460567536],[-118.61464571663178,34.18914637584231],[-118.61464708117269,34.18955649638047],[-118.61465272798803,34.19192278463716],[-118.61465460007165,34.19260046954133],[-118.61465495849941,34.1930985284521],[-118.61465265971063,34.19368487854618],[-118.61465350003871,34.19373792245757],[-118.60591622197568,34.19375299920326],[-118.60582901700455,34.19375314104152],[-118.59771014688954,34.19376634632501],[-118.59683216587023,34.19376793344574],[-118.58845412988251,34.19378115647839],[-118.58844321445346,34.18894590443765],[-118.58844961405156,34.18868104256892],[-118.5884546706683,34.18845981061235],[-118.58845721020562,34.18835091130687],[-118.58844487725111,34.18835097133024],[-118.58844499999999,34.188346],[-118.58844999999999,34.188163],[-118.588444,34.185605],[-118.588466,34.185284],[-118.58849499999999,34.185136],[-118.588537,34.185008],[-118.588561,34.184956],[-118.588661,34.184737],[-118.588678,34.184701],[-118.58876600000001,34.184545],[-118.588866,34.184394],[-118.588978,34.184249],[-118.58910299999999,34.184111],[-118.58923799999999,34.183981],[-118.589601,34.183676],[-118.589741,34.183551],[-118.589872,34.183416],[-118.589991,34.183274],[-118.59007200000001,34.183163],[-118.590169,34.183011],[-118.590273,34.182812],[-118.59033700000001,34.182657],[-118.590355,34.182607],[-118.59041499999999,34.182397],[-118.590447,34.182226],[-118.590467,34.182011],[-118.590467,34.179251],[-118.59045500000001,34.178981],[-118.590434,34.17879],[-118.590397,34.1786],[-118.590344,34.178413],[-118.59027500000001,34.17823],[-118.589979,34.177602],[-118.588604,34.174717],[-118.58855699999999,34.174618],[-118.58848500000001,34.174436],[-118.58839,34.174159],[-118.588317,34.173891],[-118.588292,34.173785],[-118.58827100000001,34.173678],[-118.588255,34.173595],[-118.588213,34.173303],[-118.588202,34.173195],[-118.58818599999999,34.172907],[-118.58818599999999,34.172853],[-118.588183,34.17197],[-118.588162,34.168865],[-118.58816,34.168479],[-118.58816,34.16838],[-118.58816,34.168258],[-118.588159,34.168137],[-118.588159,34.168003],[-118.588159,34.167942],[-118.58844499999999,34.167975],[-118.589197,34.168074],[-118.592389,34.168575],[-118.59269,34.168621],[-118.59468099999999,34.168927],[-118.59743,34.16935],[-118.602041,34.17006],[-118.602665,34.170156],[-118.605564,34.170616],[-118.605766,34.170642],[-118.605766,34.17074],[-118.605766,34.170807],[-118.605766,34.170903],[-118.605766,34.171031],[-118.605767,34.171158],[-118.60577000000001,34.171954],[-118.605694,34.17452],[-118.60567399999999,34.175139],[-118.60565699999999,34.175318],[-118.605619,34.175539],[-118.60556099999999,34.175769],[-118.60548300000001,34.175995],[-118.605442,34.176093],[-118.60539300000001,34.176202],[-118.60521199999999,34.176539],[-118.604986,34.176982],[-118.60495400000001,34.177062],[-118.6049,34.177219],[-118.604866,34.177345],[-118.60484099999999,34.177467],[-118.60482399999999,34.177594],[-118.604815,34.17772],[-118.60481299999999,34.177845],[-118.60482,34.177971],[-118.60483499999999,34.178096],[-118.604857,34.17822],[-118.60488700000001,34.178344],[-118.60492499999999,34.178465],[-118.60500500000001,34.178664],[-118.605045,34.178745],[-118.60530199999999,34.179211],[-118.605495,34.179558],[-118.60558899999999,34.179759],[-118.605665,34.179965],[-118.605724,34.180175],[-118.60576500000001,34.180388],[-118.605788,34.180603],[-118.605794,34.180765],[-118.605795,34.181087],[-118.605799,34.182837],[-118.605811,34.18696]]],"type":"Polygon"} +},{ + "id": 1108562811, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000167, + "geom:area_square_m":1710633.597248, + "geom:bbox":"-118.365820142,34.101525,-118.353164587,34.1289587825", + "geom:latitude":34.114042, + "geom:longitude":-118.359496, + "iso:country":"US", + "lbl:latitude":34.12265, + "lbl:longitude":-118.358779, + "lbl:max_zoom":18.0, + "mps:latitude":34.112337, + "mps:longitude":-118.359598, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Nichols Canyon" + ], + "name:eng_x_variant":[ + "Nichols Cyn" + ], + "name:jpn_x_preferred":[ + "\u30cb\u30b3\u30e9\u30b9\u30ad\u30e3\u30cb\u30aa\u30f3" + ], + "name:por_x_preferred":[ + "Nichols Canyon" + ], + "reversegeo:latitude":34.112337, + "reversegeo:longitude":-118.359598, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865833, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q10336698" + }, + "wof:country":"US", + "wof:geomhash":"a4dc7ba34704490a086caf096c367c15", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108562811, + "neighbourhood_id":85865833, + "region_id":85688637 + } + ], + "wof:id":1108562811, + "wof:lastmodified":1566623961, + "wof:name":"Nichols Canyon", + "wof:parent_id":85865833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869527 + ], + "wof:tags":[] +}, + "bbox": [ + -118.36582014206743, + 34.101525, + -118.35316458686492, + 34.12895878252858 +], + "geometry": {"coordinates":[[[-118.35502700000001,34.101662],[-118.356117,34.101669],[-118.357209,34.101677],[-118.357372,34.101678],[-118.35820699999999,34.101684],[-118.35938899999999,34.101693],[-118.359623,34.101686],[-118.359827,34.101668],[-118.360029,34.101639],[-118.36022699999999,34.101597],[-118.360418,34.101546],[-118.360478,34.101525],[-118.360482,34.102773],[-118.36047499999999,34.102846],[-118.360452,34.102899],[-118.360395,34.102988],[-118.360367,34.103061],[-118.360354,34.103144],[-118.360361,34.103227],[-118.3604,34.103363],[-118.360455,34.103492],[-118.360558,34.103694],[-118.360618,34.103813],[-118.36068,34.103935],[-118.360851,34.104148],[-118.36170358285366,34.10501614178747],[-118.36231196639622,34.10563562782784],[-118.36235530221744,34.10571579755785],[-118.3623676280813,34.10579317636812],[-118.36235068166859,34.10586872788382],[-118.36230500000001,34.105945],[-118.362264,34.106006],[-118.362238,34.106072],[-118.362228,34.106141],[-118.36223200000001,34.106204],[-118.36225,34.106266],[-118.362284,34.106329],[-118.36233199999999,34.106386],[-118.362827,34.106838],[-118.362922,34.106947],[-118.36299,34.107047],[-118.36305299999999,34.107171],[-118.36309199999999,34.107281],[-118.363226,34.107814],[-118.36326699999999,34.107924],[-118.363333,34.108046],[-118.36339599999999,34.108136],[-118.364132,34.109085],[-118.36418500000001,34.109176],[-118.36422399999999,34.109271],[-118.36445999999999,34.110101],[-118.36451,34.110312],[-118.36457299999999,34.110626],[-118.36425199999999,34.110671],[-118.364147,34.110698],[-118.36403799999999,34.110743],[-118.36394,34.110804],[-118.363872,34.110862],[-118.36380699999999,34.110936],[-118.36375700000001,34.111017],[-118.36372299999999,34.111104],[-118.36371,34.111163],[-118.363597,34.111889],[-118.363479,34.11259],[-118.363433,34.112753],[-118.363371,34.112913],[-118.363095,34.113471],[-118.362515,34.114638],[-118.362488,34.114727],[-118.36247899999999,34.114828],[-118.362488,34.114919],[-118.362515,34.115008],[-118.36255800000001,34.115092],[-118.362616,34.11517],[-118.36371,34.116214],[-118.363769,34.116292],[-118.363816,34.116385],[-118.363843,34.116484],[-118.363849,34.116576],[-118.363838,34.116667],[-118.363809,34.116755],[-118.363771,34.11683],[-118.36357909250488,34.11715138048612],[-118.36294156185932,34.11831252935555],[-118.36263704728319,34.11886714858564],[-118.36221653114139,34.11949816322208],[-118.36148573506522,34.12059477515793],[-118.36141814421929,34.12076483205993],[-118.36137600000001,34.120959],[-118.36139,34.122113],[-118.361396,34.122574],[-118.361413,34.122654],[-118.361435,34.122715],[-118.361473,34.122798],[-118.36151,34.122863],[-118.361526,34.122929],[-118.36151599999999,34.123274],[-118.36150000000001,34.123349],[-118.361475,34.123425],[-118.361467,34.123501],[-118.36147699999999,34.123577],[-118.361525,34.123723],[-118.361541,34.123822],[-118.361543,34.12386],[-118.36158557359009,34.12396065055611],[-118.36168542255801,34.12408980018188],[-118.36339265942057,34.1254631172759],[-118.36348458703607,34.12559205647099],[-118.36353973562633,34.12575066020295],[-118.36355402393343,34.12591027445593],[-118.363558,34.126122],[-118.363573,34.126194],[-118.36360500000001,34.126271],[-118.363659,34.126349],[-118.36371699999999,34.126406],[-118.36395,34.126602],[-118.364187,34.12641],[-118.364268,34.126366],[-118.364349,34.126338],[-118.364435,34.126322],[-118.36452300000001,34.126318],[-118.364619,34.126329],[-118.364711,34.126355],[-118.364795,34.126395],[-118.364862,34.126443],[-118.364914,34.126493],[-118.365106,34.126716],[-118.36521842508093,34.12688338471431],[-118.3653237761141,34.1271198704821],[-118.36543740326833,34.12739044191397],[-118.36554945459098,34.12771341702649],[-118.36582014206743,34.12895878252858],[-118.36570399999999,34.128947],[-118.365478,34.128912],[-118.36529899999999,34.128872],[-118.365272,34.128864],[-118.365082,34.128807],[-118.363923,34.128395],[-118.36376300000001,34.128342],[-118.36359899999999,34.128296],[-118.36332,34.128236],[-118.36315,34.128209],[-118.362863,34.128181],[-118.362691,34.128175],[-118.362402,34.12818],[-118.36223,34.128194],[-118.36197300000001,34.128227],[-118.361895,34.128234],[-118.36174,34.128239],[-118.361636,34.128234],[-118.36153299999999,34.128224],[-118.361431,34.128208],[-118.36133100000001,34.128185],[-118.361233,34.128157],[-118.36109,34.128105],[-118.360967,34.128046],[-118.360843,34.127974],[-118.360708,34.127873],[-118.360637,34.12781],[-118.360579,34.12775],[-118.360519,34.127679],[-118.360465,34.127605],[-118.36042399999999,34.12754],[-118.360393,34.127478],[-118.360367,34.127413],[-118.360349,34.127348],[-118.36034100000001,34.127306],[-118.360333,34.127198],[-118.360343,34.127089],[-118.360371,34.126983],[-118.360417,34.126881],[-118.360488,34.126774],[-118.360567,34.126689],[-118.360617,34.126633],[-118.36065600000001,34.126566],[-118.36068,34.126493],[-118.360686,34.126425],[-118.360677,34.12635],[-118.36065000000001,34.126278],[-118.360612,34.126218],[-118.360556,34.126158],[-118.360488,34.126109],[-118.36041,34.126071],[-118.360347,34.126053],[-118.35965,34.125858],[-118.359567,34.125829],[-118.35948500000001,34.125788],[-118.359404,34.125729],[-118.35937,34.125697],[-118.359315,34.125631],[-118.35927,34.125551],[-118.35924199999999,34.125466],[-118.359205,34.125145],[-118.359202,34.125121],[-118.359182,34.125061],[-118.359146,34.125007],[-118.358789,34.124664],[-118.35804899999999,34.123963],[-118.35800500000001,34.123907],[-118.357979,34.123844],[-118.357972,34.123777],[-118.357984,34.123715],[-118.358011,34.123658],[-118.358054,34.123606],[-118.358109,34.123564],[-118.35817400000001,34.123534],[-118.359258,34.123257],[-118.359317,34.123227],[-118.359359,34.123191],[-118.359392,34.123146],[-118.35941200000001,34.123091],[-118.359414,34.123033],[-118.359398,34.122977],[-118.359365,34.122927],[-118.359318,34.122885],[-118.35902,34.122733],[-118.358285,34.122263],[-118.358178,34.122201],[-118.35804,34.122134],[-118.35791,34.122083],[-118.35777400000001,34.122042],[-118.357607,34.122007],[-118.357465,34.121988],[-118.357321,34.121979],[-118.35723400000001,34.12198],[-118.357004,34.121995],[-118.35692400000001,34.121995],[-118.356832,34.121984],[-118.35673300000001,34.121959],[-118.35666999999999,34.121935],[-118.356572,34.121884],[-118.356528,34.121854],[-118.355947,34.121352],[-118.355913,34.121326],[-118.355839,34.121281],[-118.35574699999999,34.121241],[-118.355693,34.121224],[-118.355626,34.121209],[-118.355569,34.121201],[-118.35549899999999,34.121197],[-118.355142,34.121191],[-118.355039,34.121181],[-118.354917,34.12115],[-118.354815,34.121107],[-118.35476800000001,34.121079],[-118.354698,34.121029],[-118.35463,34.120962],[-118.35444699999999,34.120744],[-118.35437899999999,34.120679],[-118.354308,34.120629],[-118.354009,34.120456],[-118.353956,34.120419],[-118.353916,34.120384],[-118.353872,34.120338],[-118.35331100000001,34.119682],[-118.35328699999999,34.119658],[-118.353221,34.11961],[-118.353191,34.119595],[-118.35316458686492,34.11958357810375],[-118.35433479641058,34.11822815553646],[-118.35448882503542,34.11806312486699],[-118.35471986797269,34.11786508806362],[-118.35494643220153,34.11772322984212],[-118.3549738262154,34.11770652245954],[-118.35500592113311,34.11770005739415],[-118.35505543033395,34.11771243469434],[-118.3551035642792,34.1177426903171],[-118.35522596202574,34.11783208192973],[-118.35534698451669,34.11790909624215],[-118.35540887101774,34.11795585493181],[-118.35544019969251,34.11800927804288],[-118.35546800700763,34.11804112077773],[-118.35550238839711,34.11805349807792],[-118.35553565858007,34.11806029734152],[-118.35558902949857,34.11806312486699],[-118.35561240884343,34.11805349807791],[-118.35563303767711,34.1180287434775],[-118.35564142673614,34.11800495155597],[-118.35564403972174,34.11797510850994],[-118.35561583889262,34.11793993432607],[-118.35556702540931,34.11790909624215],[-118.35555042341146,34.1178864298148],[-118.35554035472246,34.11785770185948],[-118.35553401927542,34.11776606966194],[-118.35553126876427,34.11767667804929],[-118.35554502132005,34.11760103899247],[-118.3555659327405,34.11753990605609],[-118.3556000315432,34.11748001650152],[-118.35564368527443,34.11744930718622],[-118.35570867673394,34.11743188255626],[-118.35577606425733,34.11743600832298],[-118.35593559390448,34.11748001650152],[-118.35606211741774,34.11750202059078],[-118.35615577866999,34.11750905766779],[-118.3562601542211,34.11751302263541],[-118.35649807343626,34.11750339584636],[-118.35658443828555,34.11749444767688],[-118.35666722987247,34.11748001650152],[-118.35674974520721,34.11745251138993],[-118.35682125849732,34.11741400423373],[-118.35685768427405,34.11737032211493],[-118.35689101312532,34.11731455233672],[-118.35691,34.117218],[-118.356306,34.116984],[-118.355992,34.116828],[-118.35595499999999,34.1168],[-118.35592699999999,34.116759],[-118.355915,34.116715],[-118.35592,34.116671],[-118.35593900000001,34.11663],[-118.355975,34.11659],[-118.356025,34.116557],[-118.356084,34.116535],[-118.35620299999999,34.116521],[-118.35633799999999,34.116497],[-118.35665,34.116405],[-118.356734,34.116368],[-118.356809,34.116319],[-118.356979,34.116158],[-118.35702000000001,34.116106],[-118.357046,34.116047],[-118.357055,34.115986],[-118.357038,34.115844],[-118.35702000000001,34.115762],[-118.356973,34.115643],[-118.356949,34.115601],[-118.356909,34.115561],[-118.35687299999999,34.115538],[-118.356511,34.115395],[-118.356465,34.115365],[-118.356431,34.115321],[-118.35641699999999,34.115279],[-118.35641699999999,34.115236],[-118.35643399999999,34.115189],[-118.35646800000001,34.115149],[-118.35651300000001,34.115121],[-118.356568,34.115104],[-118.357349,34.115093],[-118.357395,34.115088],[-118.357438,34.115072],[-118.357483,34.115041],[-118.357513,34.114999],[-118.357525,34.114954],[-118.357519,34.114907],[-118.357497,34.114865],[-118.357462,34.114832],[-118.357411,34.114807],[-118.356877,34.114716],[-118.35681599999999,34.114701],[-118.356748,34.11467],[-118.356675,34.114623],[-118.356613,34.114564],[-118.356444,34.114332],[-118.35642300000001,34.114281],[-118.35641800000001,34.114231],[-118.35648500000001,34.113833],[-118.35648851433557,34.11378077237519],[-118.35649047769415,34.11371057511339],[-118.35648777892409,34.11363767687293],[-118.35648414897356,34.11357600972679],[-118.35623294527774,34.10985862303716],[-118.3562133000642,34.10977594792618],[-118.35618726567546,34.10971807401397],[-118.35614700831705,34.10967016783351],[-118.356093,34.109625],[-118.35606300000001,34.109622],[-118.356016,34.109606],[-118.355975,34.109577],[-118.35595000000001,34.109542],[-118.35593799999999,34.109499],[-118.355988,34.109177],[-118.35598400000001,34.109097],[-118.355959,34.109013],[-118.355777,34.108693],[-118.355684,34.108509],[-118.35554,34.108147],[-118.355503,34.108035],[-118.35548900000001,34.107978],[-118.35531,34.106974],[-118.355283,34.106771],[-118.355273,34.106578],[-118.35527999999999,34.106384],[-118.355366,34.105539],[-118.355154,34.105327],[-118.355109,34.105218],[-118.355039,34.105048],[-118.35503435004136,34.10373593667057],[-118.35503130031577,34.10287540576693],[-118.35502700000001,34.101662]]],"type":"Polygon"} +},{ + "id": 1108691519, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000174, + "geom:area_square_m":1788317.945007, + "geom:bbox":"-118.444914,34.010577,-118.423853,34.026778", + "geom:latitude":34.018886, + "geom:longitude":-118.434781, + "iso:country":"US", + "lbl:latitude":34.01994, + "lbl:longitude":-118.436992, + "lbl:max_zoom":18.0, + "mps:latitude":34.019054, + "mps:longitude":-118.43494, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Westdale" + ], + "name:ita_x_preferred":[ + "Westdale" + ], + "reversegeo:latitude":34.019054, + "reversegeo:longitude":-118.43494, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85832373, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d308ce98153e0ece7edd60e98fe55e22", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108691519, + "neighbourhood_id":85832373, + "region_id":85688637 + } + ], + "wof:id":1108691519, + "wof:lastmodified":1566623953, + "wof:name":"Westdale", + "wof:parent_id":85832373, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869791 + ], + "wof:tags":[] +}, + "bbox": [ + -118.444914, + 34.010577, + -118.423853, + 34.026778 +], + "geometry": {"coordinates":[[[-118.444914,34.019945],[-118.4448,34.019991],[-118.444698,34.020032],[-118.443809,34.020386],[-118.443635,34.020445],[-118.44278799999999,34.020632],[-118.44098700000001,34.021524],[-118.44024899999999,34.02189],[-118.43951199999999,34.022256],[-118.438799,34.022609],[-118.43865,34.022683],[-118.436618,34.02369],[-118.434113,34.024932],[-118.432755,34.025604],[-118.432377,34.025792],[-118.431423,34.026265],[-118.430588,34.026596],[-118.430476,34.02664],[-118.43033800000001,34.026695],[-118.430128,34.026778],[-118.428496,34.024707],[-118.42747900000001,34.02338],[-118.427029,34.022804],[-118.42509,34.020322],[-118.424707,34.019853],[-118.424645,34.019775],[-118.424541,34.019647],[-118.42385299999999,34.018764],[-118.424165,34.018695],[-118.424359,34.018642],[-118.42452,34.018589],[-118.424729,34.018508],[-118.424881,34.01844],[-118.42515,34.018307],[-118.42518200000001,34.018291],[-118.42526599999999,34.018249],[-118.42538999999999,34.018188],[-118.42780500000001,34.016989],[-118.428736,34.016527],[-118.429098,34.016347],[-118.42932500000001,34.016259],[-118.43007,34.015969],[-118.43021299999999,34.015898],[-118.431091,34.015461],[-118.43183399999999,34.01509],[-118.432052,34.014962],[-118.43222400000001,34.014843],[-118.432452,34.01466],[-118.43263899999999,34.014478],[-118.43277500000001,34.014323],[-118.433155,34.01382],[-118.433312,34.013649],[-118.433465,34.013505],[-118.43362999999999,34.013371],[-118.43380500000001,34.013247],[-118.433943,34.01316],[-118.43408599999999,34.01308],[-118.434304,34.012965],[-118.4353,34.012438],[-118.436486,34.01181],[-118.437675,34.011181],[-118.438816,34.010577],[-118.440021,34.012157],[-118.44202,34.014781],[-118.442618,34.015565],[-118.443163,34.01628],[-118.443426,34.016625],[-118.443827,34.017152],[-118.443889,34.017233],[-118.443994,34.017376],[-118.444108,34.017543],[-118.444266,34.017799],[-118.444362,34.017973],[-118.444451,34.01815],[-118.44457,34.01842],[-118.444639,34.018603],[-118.44473000000001,34.018881],[-118.444802,34.019162],[-118.444841,34.019351],[-118.444872,34.019541],[-118.44490999999999,34.0199],[-118.444914,34.019945]]],"type":"Polygon"} +},{ + "id": 1108562813, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000218, + "geom:area_square_m":2233280.335909, + "geom:bbox":"-118.378995951,34.1522436413,-118.361525829,34.1687079837", + "geom:latitude":34.161881, + "geom:longitude":-118.369786, + "iso:country":"US", + "lbl:latitude":34.167692, + "lbl:longitude":-118.376418, + "lbl:max_zoom":18.0, + "mps:latitude":34.162963, + "mps:longitude":-118.367872, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "NoHo Arts District" + ], + "name:pol_x_preferred":[ + "NoHo Arts District" + ], + "reversegeo:latitude":34.162963, + "reversegeo:longitude":-118.367872, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85837735, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7043919" + }, + "wof:country":"US", + "wof:geomhash":"d0b1306763b3747dc763a7817d0d2696", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1108562813, + "neighbourhood_id":85837735, + "region_id":85688637 + } + ], + "wof:id":1108562813, + "wof:lastmodified":1566623961, + "wof:name":"NoHo Arts District", + "wof:parent_id":85837735, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869529 + ], + "wof:tags":[] +}, + "bbox": [ + -118.37899595063077, + 34.15224364132217, + -118.36152582900739, + 34.16870798373524 +], + "geometry": {"coordinates":[[[-118.37897100000001,34.168058],[-118.377523,34.168058],[-118.377397,34.168097],[-118.37657,34.168098],[-118.37470999999999,34.168097],[-118.37245900000001,34.168097],[-118.37150699999999,34.168097],[-118.37035,34.168097],[-118.37031,34.168411],[-118.370277,34.168663],[-118.36860900000001,34.168664],[-118.367518,34.168666],[-118.367172,34.168666],[-118.366805,34.168702],[-118.36536599999999,34.168704],[-118.364581,34.168705],[-118.363609,34.168706],[-118.36263700000001,34.168707],[-118.36156276111649,34.16870798373524],[-118.36155378098576,34.1675624964049],[-118.36155336057422,34.16708333522922],[-118.36155266527817,34.16692258604204],[-118.36155047608383,34.16603468084223],[-118.36154906393222,34.1657083728551],[-118.36154642108865,34.1650976633203],[-118.36154701397673,34.16485275524471],[-118.36154621806939,34.16466864986043],[-118.36154411152006,34.16379997980648],[-118.36154117941896,34.16312229000908],[-118.36153921300681,34.16228590836005],[-118.36153676689429,34.16172053718612],[-118.36153599703808,34.16154261383603],[-118.3615348921103,34.16090510783525],[-118.36153313231064,34.16049842566109],[-118.36153283766323,34.16043041492453],[-118.36153364524867,34.16023497007078],[-118.36153288617224,34.16005945123906],[-118.3615300744454,34.15940958350219],[-118.36152727170173,34.15837982107661],[-118.36152714234433,34.15796798127549],[-118.36152582900739,34.15766434334005],[-118.36261662810406,34.1576627949378],[-118.36374709500706,34.15766145987754],[-118.36479822899236,34.15766001108443],[-118.36479402397852,34.15669688894715],[-118.36479130477815,34.15569529167395],[-118.36478729829197,34.15477750951761],[-118.36478365921677,34.15394387973442],[-118.36478235576129,34.15364539387224],[-118.36478027077152,34.1527890905229],[-118.36477923321739,34.15255140081294],[-118.36477789023601,34.15224364132217],[-118.36588356094221,34.15225747450306],[-118.36634962667456,34.15226327673677],[-118.36650002531438,34.152265225187],[-118.36671653007764,34.15226765982044],[-118.36706855737958,34.15227140060666],[-118.36744204902696,34.15227095308019],[-118.36833116017266,34.15226996510226],[-118.36886495797913,34.15226936815245],[-118.36929133344725,34.15226875336106],[-118.369402119078,34.15228215462287],[-118.36967990960487,34.15231565516606],[-118.37000234460476,34.15235451337094],[-118.37021895447089,34.15238064160269],[-118.37031816710584,34.15239270324274],[-118.37032255447767,34.1530099342807],[-118.37032496375926,34.15318270011903],[-118.37031798834109,34.15347124999401],[-118.37061871285715,34.15347238960922],[-118.37061972525849,34.15405906043361],[-118.37062128203887,34.1544100988889],[-118.37062435337884,34.15510255735934],[-118.37062860241012,34.15643320963714],[-118.37063021398774,34.15679661293267],[-118.37063235018151,34.15765085596013],[-118.37201403364863,34.15764970376437],[-118.37317590295902,34.15764852778126],[-118.37399400317985,34.15764771752743],[-118.37482532660162,34.15764686118571],[-118.37578225785637,34.15764595206603],[-118.3765557369604,34.15764560640727],[-118.37765975925807,34.15764422377225],[-118.37818036889783,34.15764362760378],[-118.37894227859933,34.15764295933015],[-118.37899595063077,34.15764293692553],[-118.378995,34.157738],[-118.37898800000001,34.158803],[-118.37898,34.159922],[-118.378973,34.160812],[-118.378974,34.162973],[-118.37897700000001,34.164896],[-118.37897,34.165443],[-118.37897,34.165951],[-118.37897,34.166997],[-118.37897100000001,34.168058]]],"type":"Polygon"} +},{ + "id": 1108691521, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000151, + "geom:area_square_m":1542678.778182, + "geom:bbox":"-118.428652653,34.0168387178,-118.409941074,34.032447191", + "geom:latitude":34.024706, + "geom:longitude":-118.419137, + "iso:country":"US", + "lbl:latitude":34.025632, + "lbl:longitude":-118.422432, + "lbl:max_zoom":18.0, + "mps:latitude":34.02462, + "mps:longitude":-118.418995, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Westside Village" + ], + "reversegeo:latitude":34.02462, + "reversegeo:longitude":-118.418995, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85832373, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7989722" + }, + "wof:country":"US", + "wof:geomhash":"bbb6307028b6c40c326fc266206ca8b7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108691521, + "neighbourhood_id":85832373, + "region_id":85688637 + } + ], + "wof:id":1108691521, + "wof:lastmodified":1566623957, + "wof:name":"Westside Village", + "wof:parent_id":85832373, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85886327 + ], + "wof:tags":[] +}, + "bbox": [ + -118.42865265344757, + 34.01683871784061, + -118.40994107382745, + 34.03244719103768 +], + "geometry": {"coordinates":[[[-118.42031771310027,34.01683871784061],[-118.42865265344757,34.02737172857393],[-118.42284098730859,34.02967247059465],[-118.4226581747584,34.0297442120783],[-118.4221953905718,34.02992753468861],[-118.42141863171864,34.03035342224696],[-118.42127710034902,34.03043051440692],[-118.42124418967026,34.03044917752893],[-118.42117671541263,34.0304858225707],[-118.42111746792639,34.0305179732347],[-118.42080314381522,34.03069081132087],[-118.42001813663114,34.03112015308411],[-118.41913438483442,34.0316047911756],[-118.41885625474433,34.03175723260743],[-118.41759725419556,34.03244719103768],[-118.41710069604922,34.03181964278075],[-118.41694957785886,34.03162987351549],[-118.41637997949341,34.03091395561407],[-118.41638326283575,34.03091050948093],[-118.41628860286268,34.03079061537852],[-118.41489509397316,34.02898284174071],[-118.41446327112112,34.02842341383684],[-118.41382384311537,34.02759299911052],[-118.4130366251774,34.02657245320995],[-118.41287719307905,34.02636622011968],[-118.41240386536596,34.02575025243165],[-118.41234574167214,34.02567522799618],[-118.41222617590783,34.02552175490967],[-118.41193720225395,34.02514559469194],[-118.41155025923354,34.02464439655527],[-118.41109024814621,34.02404795571792],[-118.41091919454308,34.0238252728449],[-118.41038944364699,34.02313804375496],[-118.40994107382745,34.02255667372064],[-118.41088564785711,34.02203376950028],[-118.41277641198567,34.02098827750908],[-118.41308412898792,34.02081788636995],[-118.41595062611007,34.01923453911131],[-118.4166647652014,34.01884016039322],[-118.41781824245038,34.01820450357629],[-118.4185192095447,34.0178190907833],[-118.41880881112094,34.01766042566571],[-118.41965788076116,34.01719789437803],[-118.42031771310027,34.01683871784061]]],"type":"Polygon"} +},{ + "id": 1108562815, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":107845.606824, + "geom:bbox":"-118.287428,34.029346,-118.283953,34.032767", + "geom:latitude":34.030886, + "geom:longitude":-118.285805, + "iso:country":"US", + "lbl:latitude":34.030857, + "lbl:longitude":-118.285827, + "lbl:max_zoom":18.0, + "mps:latitude":34.030857, + "mps:longitude":-118.285827, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "North University Park" + ], + "reversegeo:latitude":34.030857, + "reversegeo:longitude":-118.285827, + "src:geom":"mz", + "wof:belongsto":[ + 420551237, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"8fa4607c1bac5265bbdcbcfb96d3d651", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1108562815, + "neighbourhood_id":420551237, + "region_id":85688637 + } + ], + "wof:id":1108562815, + "wof:lastmodified":1566623961, + "wof:name":"North University Park Historic District", + "wof:parent_id":420551237, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551219 + ], + "wof:tags":[] +}, + "bbox": [ + -118.287428, + 34.029346, + -118.283953, + 34.032767 +], + "geometry": {"coordinates":[[[-118.28742800000001,34.029349],[-118.28742,34.032766],[-118.28643,34.032767],[-118.28396499999999,34.031698],[-118.283953,34.029346],[-118.28742800000001,34.029349]]],"type":"Polygon"} +},{ + "id": 1108691525, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000284, + "geom:area_square_m":2906114.924242, + "geom:bbox":"-118.239720817,34.0147178668,-118.222597036,34.0349879464", + "geom:latitude":34.024129, + "geom:longitude":-118.232074, + "iso:country":"US", + "lbl:latitude":34.036418, + "lbl:longitude":-118.232626, + "lbl:max_zoom":18.0, + "mps:latitude":34.023758, + "mps:longitude":-118.232072, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Wholesale District" + ], + "name:eng_x_variant":[ + "Warehouse District" + ], + "name:ita_x_preferred":[ + "Wholesale District" + ], + "reversegeo:latitude":34.023758, + "reversegeo:longitude":-118.232072, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4274086" + }, + "wof:country":"US", + "wof:geomhash":"3083705cbd2fa5684c3490dda7c3915f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691525, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1108691525, + "wof:lastmodified":1566623958, + "wof:name":"Wholesale District", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869799 + ], + "wof:tags":[] +}, + "bbox": [ + -118.23972081711436, + 34.01471786676648, + -118.22259703594705, + 34.03498794639032 +], + "geometry": {"coordinates":[[[-118.23265673431631,34.03460355599121],[-118.23258741491908,34.03460128472424],[-118.23226560065508,34.03459881320455],[-118.23069117645721,34.03458500098156],[-118.2301432634227,34.0345802075724],[-118.22988250944519,34.03457795640452],[-118.22909859910406,34.03457120290052],[-118.22877513193993,34.03456838149604],[-118.22770406254185,34.03455907086058],[-118.22720730496953,34.03455244986433],[-118.22665974048134,34.03223908875626],[-118.22622714417986,34.03032223412184],[-118.22602848983961,34.02947866815348],[-118.22517727412416,34.02590494386762],[-118.22492192261475,34.02544687024086],[-118.22473463375948,34.02452496711502],[-118.22466273080751,34.02417131394409],[-118.22452391414666,34.02347876723638],[-118.22423797859508,34.02207067504378],[-118.22364437095703,34.01913705866537],[-118.22361091410258,34.01896606591971],[-118.22355741403753,34.01870374428673],[-118.22349721343876,34.01840365175833],[-118.22345707850849,34.0182034753148],[-118.22340023042237,34.0179229560269],[-118.22324138672059,34.01713667372504],[-118.2231460862487,34.01666662219352],[-118.22305748631055,34.0162339973571],[-118.22304746919681,34.01619004987359],[-118.22289522176484,34.01575828199206],[-118.22259703594705,34.01494884759593],[-118.22284144255589,34.01494774738774],[-118.22324379330723,34.01494593618632],[-118.22333515736149,34.01517796181933],[-118.22340827663237,34.01537395477563],[-118.22371679493185,34.01536754374951],[-118.22370411431329,34.01494405307754],[-118.22581267767745,34.01493497483976],[-118.22581679824965,34.01523929334158],[-118.22746167282368,34.01520494775415],[-118.22758795888464,34.01492614529947],[-118.2303432724224,34.01491198809996],[-118.23034302718233,34.01482268368934],[-118.23972081711436,34.01471786676648],[-118.23971992149403,34.01498131911433],[-118.23964654710161,34.01528613484489],[-118.23965234662509,34.01558289141506],[-118.23965644653602,34.01586247875303],[-118.23966682028096,34.01660438181162],[-118.23967059859504,34.01677130640708],[-118.23967082497049,34.01685030737472],[-118.23968078189711,34.01744657467228],[-118.23967501650961,34.0177378584617],[-118.23967201523824,34.01784228298482],[-118.23966112675868,34.01807312575663],[-118.2396343147424,34.01850562432203],[-118.2395444796207,34.01997797032278],[-118.238623665132,34.03498794639032],[-118.2374995978271,34.03491459615897],[-118.23687236534963,34.03487357949663],[-118.23650427886533,34.03484957084142],[-118.2353571068913,34.03477487232387],[-118.23499892612965,34.03475152618554],[-118.23433208154141,34.03470816969244],[-118.23265673431631,34.03460355599121]]],"type":"Polygon"} +},{ + "id": 1108564571, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":153727.107344, + "geom:bbox":"-118.250999302,34.044595,-118.244738029,34.0502753208", + "geom:latitude":34.047433, + "geom:longitude":-118.247878, + "iso:country":"US", + "lbl:latitude":34.048299, + "lbl:longitude":-118.247311, + "lbl:max_zoom":18.0, + "mps:latitude":34.047473, + "mps:longitude":-118.247926, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"no ref", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Old Bank District" + ], + "name:ita_x_preferred":[ + "Old Bank District" + ], + "name:pol_x_preferred":[ + "Old Bank District" + ], + "reversegeo:latitude":34.047473, + "reversegeo:longitude":-118.247926, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4252148" + }, + "wof:country":"US", + "wof:geomhash":"9018512e4bb522a77059a9f4d7cad054", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108564571, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1108564571, + "wof:lastmodified":1566623963, + "wof:name":"Old Bank District", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869565 + ], + "wof:tags":[] +}, + "bbox": [ + -118.25099930178318, + 34.044595, + -118.24473802924872, + 34.05027532079555 +], + "geometry": {"coordinates":[[[-118.248997,34.044595],[-118.25099930178318,34.04596001164419],[-118.24698537930271,34.05027532079555],[-118.24587572837808,34.04954925290659],[-118.24569502429792,34.04930855928007],[-118.2455327695307,34.04900470155165],[-118.24473802924872,34.04852166383318],[-118.24535400000001,34.047863],[-118.24550499999999,34.047705],[-118.246183,34.047247],[-118.24696299999999,34.046678],[-118.24757,34.046064],[-118.248536,34.04503],[-118.248997,34.044595]]],"type":"Polygon"} +},{ + "id": 1108691527, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000296, + "geom:area_square_m":3029149.002447, + "geom:bbox":"-118.314352,34.057665,-118.286785,34.069062", + "geom:latitude":34.063415, + "geom:longitude":-118.300802, + "iso:country":"US", + "lbl:latitude":34.072047, + "lbl:longitude":-118.294809, + "lbl:max_zoom":18.0, + "mps:latitude":34.063358, + "mps:longitude":-118.300802, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Wilshire Ctr" + ], + "reversegeo:latitude":34.063358, + "reversegeo:longitude":-118.300802, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865819, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ee810e66bc6612fcdc4beb8699745948", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108691527, + "neighbourhood_id":85865819, + "region_id":85688637 + } + ], + "wof:id":1108691527, + "wof:lastmodified":1566623957, + "wof:name":"Wilshire Center", + "wof:parent_id":85865819, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869813 + ], + "wof:tags":[] +}, + "bbox": [ + -118.314352, + 34.057665, + -118.286785, + 34.069062 +], + "geometry": {"coordinates":[[[-118.29790994461462,34.06847069504241],[-118.29291006292976,34.06845310772229],[-118.29291844907407,34.06904705724204],[-118.291662,34.069052],[-118.289503,34.069062],[-118.289365,34.069056],[-118.287885,34.068974],[-118.287497,34.068976],[-118.286799,34.068982],[-118.28678499999999,34.067716],[-118.287082,34.067714],[-118.287071,34.066671],[-118.2870620104643,34.06567229850531],[-118.28705844043441,34.06527568245055],[-118.287057,34.065188],[-118.28704204738483,34.06370968477957],[-118.287042,34.063705],[-118.287029,34.06237],[-118.28702662399482,34.06215180352346],[-118.287023,34.061819],[-118.28783900000001,34.061814],[-118.28783300000001,34.061312],[-118.28784045691711,34.06078895074494],[-118.28783042722698,34.05979321442315],[-118.28883409333436,34.05978738351808],[-118.28908501557093,34.05978579896526],[-118.289085,34.059781],[-118.28908199999999,34.05871],[-118.28908,34.057718],[-118.290336,34.057712],[-118.29162700000001,34.057755],[-118.29288099999999,34.057748],[-118.29413599999999,34.05774],[-118.29539,34.057733],[-118.29652900000001,34.057726],[-118.297619,34.05772],[-118.29871,34.057713],[-118.2998,34.057707],[-118.300892,34.057701],[-118.301981,34.057694],[-118.303071,34.057687],[-118.30416099999999,34.057681],[-118.305331,34.057681],[-118.306577,34.057673],[-118.307821,34.057665],[-118.308791,34.058036],[-118.309072,34.058038],[-118.31014399999999,34.058038],[-118.311167,34.058038],[-118.312191,34.058039],[-118.313215,34.058043],[-118.31425400000001,34.058052],[-118.314257,34.058974],[-118.31425900000001,34.059427],[-118.31434900000001,34.059882],[-118.314352,34.060678],[-118.314352,34.06076],[-118.314352,34.060925],[-118.31434400000001,34.061084],[-118.314314,34.061289],[-118.314278,34.061436],[-118.31420622172594,34.06169501330377],[-118.31418458568652,34.06176095861414],[-118.31417643078035,34.06178742814525],[-118.31415846267807,34.06183831022904],[-118.3141486908044,34.06187371602064],[-118.31413891174421,34.06190740270954],[-118.31413239267019,34.06192974564082],[-118.31412749505527,34.06194452830375],[-118.3141128345498,34.06199677588764],[-118.31410143672551,34.06203905423354],[-118.31409168641142,34.06208029738676],[-118.31408040536805,34.06215348942248],[-118.31406910815504,34.062222215504],[-118.31406273820137,34.06228440232712],[-118.3140579376045,34.06232494656628],[-118.31405472073745,34.06234762501715],[-118.31404999649737,34.06240843425343],[-118.31404683442759,34.06244553879083],[-118.31404211737402,34.06250840787104],[-118.31403906489869,34.06257470835589],[-118.31404205000038,34.06293020773716],[-118.31404352144079,34.06332211917999],[-118.31406200000001,34.065325],[-118.31407,34.067141],[-118.31407799999999,34.068956],[-118.312831,34.068957],[-118.312331,34.068957],[-118.311601,34.068958],[-118.310361,34.068959],[-118.30911399999999,34.068961],[-118.30789799999999,34.068969],[-118.306692,34.068977],[-118.306619,34.068977],[-118.305482,34.068984],[-118.305373,34.068985],[-118.304107,34.068993],[-118.302852,34.069001],[-118.301869,34.069008],[-118.301597,34.06901],[-118.300358,34.069017],[-118.29953990129904,34.06902057560621],[-118.29921400000001,34.069022],[-118.29912,34.069022],[-118.29794200000001,34.069027],[-118.29792082841095,34.06902708218784],[-118.29790994461462,34.06847069504241]]],"type":"Polygon"} +},{ + "id": 1108691529, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000035, + "geom:area_square_m":357581.959082, + "geom:bbox":"-118.32791,34.054682638,-118.319083,34.0618389884", + "geom:latitude":34.058334, + "geom:longitude":-118.323479, + "iso:country":"US", + "lbl:latitude":34.071156, + "lbl:longitude":-118.32413, + "lbl:max_zoom":18.0, + "mps:latitude":34.058284, + "mps:longitude":-118.323479, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Windsor Sq" + ], + "reversegeo:latitude":34.058284, + "reversegeo:longitude":-118.323479, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85886323, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1695139b7b78a111f2fd04411c5196d1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108691529, + "neighbourhood_id":85886323, + "region_id":85688637 + } + ], + "wof:id":1108691529, + "wof:lastmodified":1566623957, + "wof:name":"Windsor Village", + "wof:parent_id":85886323, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869817 + ], + "wof:tags":[] +}, + "bbox": [ + -118.32791, + 34.05468263797577, + -118.319083, + 34.06183898835797 +], + "geometry": {"coordinates":[[[-118.32791,34.055256],[-118.32729999999999,34.056368],[-118.32683,34.057231],[-118.32659200000001,34.057667],[-118.32637897176836,34.05759352170233],[-118.32501999999999,34.060065],[-118.324868,34.06034],[-118.32427300000001,34.061425],[-118.32404448861342,34.06183898835797],[-118.32285899999999,34.061812],[-118.321406,34.061779],[-118.32024199999999,34.061753],[-118.319952,34.061746],[-118.31908300000001,34.061726],[-118.319288,34.061353],[-118.320521,34.059108],[-118.32203199999999,34.056356],[-118.322093,34.056243],[-118.32296780049492,34.05468536796354],[-118.32296929214159,34.05468263797577],[-118.32429,34.054834],[-118.32570200000001,34.054997],[-118.32691,34.055136],[-118.32791,34.055256]]],"type":"Polygon"} +},{ + "id": 1108701979, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":481424.857436, + "geom:bbox":"-71.155679,42.3368191978,-71.1399862893,42.343794", + "geom:latitude":42.340254, + "geom:longitude":-71.147829, + "iso:country":"US", + "lbl:latitude":42.342092, + "lbl:longitude":-71.151056, + "lbl:max_zoom":18.0, + "mps:latitude":42.33966, + "mps:longitude":-71.148363, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:afr_x_preferred":[ + "Aberdeen" + ], + "name:ara_x_preferred":[ + "\u0623\u0628\u0631\u062f\u064a\u0646" + ], + "name:ast_x_preferred":[ + "Aberdeen" + ], + "name:azb_x_preferred":[ + "\u0627\u0628\u0631\u062f\u06cc\u0646" + ], + "name:aze_x_preferred":[ + "Aberdin" + ], + "name:bak_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:bel_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0437\u0456\u043d" + ], + "name:ben_x_preferred":[ + "\u0985\u09cd\u09af\u09be\u09ac\u09b0\u09a6\u09bf\u09a8" + ], + "name:bos_x_preferred":[ + "Aberdeen" + ], + "name:bre_x_preferred":[ + "Obar Dheathain" + ], + "name:bul_x_preferred":[ + "\u0410\u0431\u044a\u0440\u0434\u0438\u0439\u043d" + ], + "name:cat_x_preferred":[ + "Aberdeen" + ], + "name:ces_x_preferred":[ + "Aberdeen" + ], + "name:cos_x_preferred":[ + "Aberdeen" + ], + "name:cym_x_preferred":[ + "Aberdeen" + ], + "name:dan_x_preferred":[ + "Aberdeen" + ], + "name:deu_x_preferred":[ + "Aberdeen" + ], + "name:ell_x_preferred":[ + "\u0391\u03bc\u03c0\u03b5\u03c1\u03bd\u03c4\u03af\u03bd" + ], + "name:eng_x_variant":[ + "Aberdeen Architectural Conservation District" + ], + "name:epo_x_preferred":[ + "Aberdeen" + ], + "name:est_x_preferred":[ + "Aberdeen" + ], + "name:eus_x_preferred":[ + "Aberdeen" + ], + "name:fao_x_preferred":[ + "Aberdeen" + ], + "name:fas_x_preferred":[ + "\u0627\u0628\u0631\u062f\u06cc\u0646" + ], + "name:fin_x_preferred":[ + "Aberdeen" + ], + "name:fra_x_preferred":[ + "Aberdeen" + ], + "name:fry_x_preferred":[ + "Aberdeen" + ], + "name:gla_x_preferred":[ + "Obar Dheathain" + ], + "name:gle_x_preferred":[ + "Obar Dheathain" + ], + "name:glg_x_preferred":[ + "Aberdeen" + ], + "name:glv_x_preferred":[ + "Aberdon" + ], + "name:hak_x_preferred":[ + "\u00c2-pak-t\u00ean" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d1\u05e8\u05d3\u05d9\u05df" + ], + "name:hin_x_preferred":[ + "\u090f\u092c\u0930\u0921\u0940\u0928" + ], + "name:hrv_x_preferred":[ + "Aberdeen" + ], + "name:hun_x_preferred":[ + "Aberdeen" + ], + "name:hye_x_preferred":[ + "\u0531\u0562\u0565\u0580\u0564\u056b\u0576" + ], + "name:ile_x_preferred":[ + "Aberdeen" + ], + "name:ind_x_preferred":[ + "Aberdeen" + ], + "name:isl_x_preferred":[ + "Aberdeen" + ], + "name:ita_x_preferred":[ + "Aberdeen" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30d0\u30c7\u30a3\u30fc\u30f3" + ], + "name:kat_x_preferred":[ + "\u10d0\u10d1\u10d4\u10e0\u10d3\u10d8\u10dc\u10d8" + ], + "name:kaz_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:kor_x_preferred":[ + "\uc560\ubc84\ub518" + ], + "name:lat_x_preferred":[ + "Aberdonia" + ], + "name:lav_x_preferred":[ + "Aberd\u012bna" + ], + "name:lit_x_preferred":[ + "Aberdynas" + ], + "name:lmo_x_preferred":[ + "Aberdeen" + ], + "name:mal_x_preferred":[ + "\u0d05\u0d2c\u0d7c\u0d21\u0d40\u0d7b" + ], + "name:mar_x_preferred":[ + "\u0905\u200d\u0945\u092c\u0930\u094d\u0921\u0940\u0928" + ], + "name:mkd_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:mon_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:msa_x_preferred":[ + "Aberdeen" + ], + "name:mya_x_preferred":[ + "\u1021\u1018\u102c\u1012\u1004\u103a\u1038\u1019\u103c\u102d\u102f\u1037" + ], + "name:nds_x_preferred":[ + "Aberdeen" + ], + "name:nld_x_preferred":[ + "Aberdeen" + ], + "name:nno_x_preferred":[ + "Aberdeen" + ], + "name:nor_x_preferred":[ + "Aberdeen" + ], + "name:oci_x_preferred":[ + "Aberdeen" + ], + "name:oss_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:pms_x_preferred":[ + "Aberdeen" + ], + "name:pnb_x_preferred":[ + "\u0627\u0628\u0631\u062f\u06cc\u0646" + ], + "name:pol_x_preferred":[ + "Aberdeen" + ], + "name:por_x_preferred":[ + "Aberdeen" + ], + "name:que_x_preferred":[ + "Aberdeen" + ], + "name:ron_x_preferred":[ + "Aberdeen" + ], + "name:rus_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:sco_x_preferred":[ + "Aiberdeen" + ], + "name:slk_x_preferred":[ + "Aberdeen" + ], + "name:slv_x_preferred":[ + "Aberdeen" + ], + "name:spa_x_preferred":[ + "Aberdeen" + ], + "name:sqi_x_preferred":[ + "Aberdeen" + ], + "name:srp_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:swa_x_preferred":[ + "Aberdeen" + ], + "name:swe_x_preferred":[ + "Aberdeen" + ], + "name:tat_x_preferred":[ + "\u04d8\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:tel_x_preferred":[ + "\u0c05\u0c2c\u0c46\u0c30\u0c4d\u0c21\u0c40\u0c28\u0c4d" + ], + "name:tgl_x_preferred":[ + "Aberdeen" + ], + "name:tha_x_preferred":[ + "\u0e41\u0e2d\u0e40\u0e1a\u0e2d\u0e23\u0e4c\u0e14\u0e35\u0e19" + ], + "name:tur_x_preferred":[ + "Aberdeen" + ], + "name:ukr_x_preferred":[ + "\u0410\u0431\u0435\u0440\u0434\u0438\u043d" + ], + "name:urd_x_preferred":[ + "\u0627\u0628\u0631\u0688\u06cc\u0646" + ], + "name:uzb_x_preferred":[ + "Aberdin" + ], + "name:vie_x_preferred":[ + "Aberdeen" + ], + "name:vol_x_preferred":[ + "Aberdeen" + ], + "name:war_x_preferred":[ + "Aberdeen" + ], + "name:wuu_x_preferred":[ + "\u963f\u4f2f\u4e01" + ], + "name:yid_x_preferred":[ + "\u05d0\u05d1\u05e2\u05e8\u05d3\u05d9\u05df" + ], + "name:yor_x_preferred":[ + "Aberdeen" + ], + "name:zho_x_preferred":[ + "\u963f\u4f2f\u4e01" + ], + "reversegeo:latitude":42.33966, + "reversegeo:longitude":-71.148363, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807537, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a42c2ef3197ce6e8af6f481ed2ef2a63", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701979, + "neighbourhood_id":85807537, + "region_id":85688645 + } + ], + "wof:id":1108701979, + "wof:lastmodified":1566624100, + "wof:name":"Aberdeen", + "wof:parent_id":85807537, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85802329 + ], + "wof:tags":[] +}, + "bbox": [ + -71.155679, + 42.33681919784541, + -71.13998628925478, + 42.343794 +], + "geometry": {"coordinates":[[[[-71.14874187079759,42.33686501345657],[-71.14888755683873,42.33719036770565],[-71.14898354904398,42.33717756874495],[-71.14908594072956,42.33715197082356],[-71.14918833241514,42.33711357394146],[-71.14929712358108,42.33704317965762],[-71.14938671630595,42.33698558433449],[-71.14950830643259,42.33695358693274],[-71.1503466383583,42.33681919784541],[-71.14980268252864,42.33768312769252],[-71.15226199999999,42.337185],[-71.15268979737181,42.33757691759222],[-71.153192,42.338037],[-71.15328599999999,42.338117],[-71.15336499999999,42.338185],[-71.15364700000001,42.338423],[-71.15508800000001,42.339746],[-71.15567900000001,42.34024],[-71.155536,42.340262],[-71.155288,42.340337],[-71.15525700000001,42.340432],[-71.154909,42.340967],[-71.154734,42.341206],[-71.154623,42.341233],[-71.154537,42.341225],[-71.154462,42.341198],[-71.154061,42.340979],[-71.153778,42.340855],[-71.15353,42.340793],[-71.153111,42.340696],[-71.15262300000001,42.340628],[-71.15219500000001,42.340621],[-71.15196299999999,42.340598],[-71.15164799999999,42.340535],[-71.151382,42.340423],[-71.151308,42.340479],[-71.15115,42.340601],[-71.15092199999999,42.340764],[-71.150487,42.341055],[-71.150712,42.3412],[-71.150944,42.341274],[-71.151184,42.341336],[-71.151349,42.341403],[-71.15144600000001,42.341482],[-71.151505,42.341588],[-71.15152649229984,42.34173810675068],[-71.15150632946055,42.34187090654212],[-71.151291,42.341895],[-71.150524,42.342144],[-71.15004999999999,42.342232],[-71.149682,42.342258],[-71.149529,42.342258],[-71.149404,42.342258],[-71.149171,42.342241],[-71.149044,42.342201],[-71.14892399999999,42.342139],[-71.148805,42.342027],[-71.148633,42.341814],[-71.148529,42.341653],[-71.148206,42.341657],[-71.148072,42.341642],[-71.147729,42.341618],[-71.147267,42.3416],[-71.14697301876581,42.34161056592172],[-71.147007,42.341782],[-71.14704,42.341937],[-71.14713399999999,42.342223],[-71.147251,42.342525],[-71.147262,42.34263],[-71.147256,42.34271],[-71.147227,42.342781],[-71.147125,42.342865],[-71.147001,42.342919],[-71.146826,42.34296],[-71.14657699999999,42.34301],[-71.14639099999999,42.343105],[-71.14635199999999,42.343042],[-71.146157,42.342555],[-71.145961,42.34262],[-71.145686,42.342746],[-71.145439,42.342894],[-71.14510900000001,42.343113],[-71.14478,42.343368],[-71.144425,42.343681],[-71.144093,42.343478],[-71.14345899999999,42.343149],[-71.14327299999999,42.343368],[-71.14296,42.343794],[-71.142313,42.343409],[-71.142112,42.343287],[-71.141918,42.343189],[-71.141518,42.342952],[-71.141013,42.342674],[-71.140658,42.342501],[-71.140427,42.342395],[-71.13998628925478,42.34214526391104],[-71.14006978686574,42.3420886584117],[-71.14109501752678,42.34123605767682],[-71.14132625809386,42.34104771209639],[-71.14144934774272,42.34087591286231],[-71.14161886578222,42.3406412523251],[-71.14174976502758,42.34039577125387],[-71.14193928775568,42.34000824747636],[-71.14239482303248,42.34006104302157],[-71.14421148565796,42.34002222554547],[-71.14527538809138,42.33933618695013],[-71.14616151534247,42.33869734647584],[-71.14624486726134,42.33859457196166],[-71.14660567712322,42.33853709520566],[-71.14648931187469,42.33816126689964],[-71.14634210234078,42.33803627519556],[-71.14615600387337,42.33744185302007],[-71.1473223993663,42.33718719050842],[-71.14874187079759,42.33686501345657]]]],"type":"MultiPolygon"} +},{ + "id": 1108692429, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":563708.367298, + "geom:bbox":"-118.219843,34.018744,-118.20483,34.028086", + "geom:latitude":34.023176, + "geom:longitude":-118.212719, + "iso:country":"US", + "lbl:latitude":34.023153, + "lbl:longitude":-118.212719, + "lbl:max_zoom":18.0, + "mps:latitude":34.023153, + "mps:longitude":-118.212719, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":34.023153, + "reversegeo:longitude":-118.212719, + "src:geom":"mz", + "wof:belongsto":[ + 85806935, + 102191575, + 1108692437, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"e5c55107ba8c7aa1e12fbeb98541c36b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692437, + "microhood_id":1108692429, + "neighbourhood_id":85806935, + "region_id":85688637 + } + ], + "wof:id":1108692429, + "wof:lastmodified":1566623953, + "wof:name":"Wyvernwood", + "wof:parent_id":85806935, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551189 + ], + "wof:tags":[] +}, + "bbox": [ + -118.219843, + 34.018744, + -118.20483, + 34.028086 +], + "geometry": {"coordinates":[[[-118.219843,34.024281],[-118.219711,34.025552],[-118.219635,34.026285],[-118.219449,34.028086],[-118.218491,34.027672],[-118.21829,34.027585],[-118.217645,34.027307],[-118.21751999999999,34.027254],[-118.216723,34.026909],[-118.215771,34.026498],[-118.214839,34.026084],[-118.213937,34.025683],[-118.212992,34.025263],[-118.212108,34.02487],[-118.211214,34.02447],[-118.210313,34.024066],[-118.209413,34.023663],[-118.208517,34.023262],[-118.208358,34.023189],[-118.20822800000001,34.023129],[-118.208049,34.023046],[-118.208005,34.023026],[-118.207492,34.02279],[-118.207436,34.022764],[-118.20696,34.022545],[-118.20483,34.021563],[-118.205258,34.020893],[-118.20535099999999,34.020747],[-118.20566100000001,34.020262],[-118.205845,34.019973],[-118.206255,34.019332],[-118.20662400000001,34.018753],[-118.20706,34.018744],[-118.20717,34.018745],[-118.20732,34.018761],[-118.207466,34.018792],[-118.207607,34.018837],[-118.207886,34.018962],[-118.210477,34.020141],[-118.212254,34.020951],[-118.21404099999999,34.021766],[-118.214423,34.02194],[-118.21562299999999,34.02246],[-118.21772199999999,34.023366],[-118.219843,34.024281]]],"type":"Polygon"} +},{ + "id": 1108692431, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000043, + "geom:area_square_m":442391.291177, + "geom:bbox":"-118.338703,34.1015007211,-118.326679862,34.105448", + "geom:latitude":34.103363, + "geom:longitude":-118.33253, + "iso:country":"US", + "lbl:latitude":34.104143, + "lbl:longitude":-118.326884, + "lbl:max_zoom":18.0, + "mps:latitude":34.1034, + "mps:longitude":-118.332535, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Yucca Corridor" + ], + "name:hun_x_preferred":[ + "Yucca Corridor" + ], + "name:jpn_x_preferred":[ + "\u30e6\u30c3\u30ab\u8857" + ], + "name:urd_x_preferred":[ + "\u06cc\u06a9\u0627 \u06a9\u0648\u0631\u06cc\u0688\u0648\u0631\u060c \u0644\u0648\u062b \u0627\u0646\u06af\u0644\u06cc\u0633" + ], + "name:urd_x_variant":[ + "\u06cc\u06a9\u0627 \u06a9\u0648\u0631\u06cc\u0688\u0648\u0631" + ], + "reversegeo:latitude":34.1034, + "reversegeo:longitude":-118.332535, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85826037, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1466308" + }, + "wof:country":"US", + "wof:geomhash":"04cdc610483e8a0647e88e6bdce8de20", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108692431, + "neighbourhood_id":85826037, + "region_id":85688637 + } + ], + "wof:id":1108692431, + "wof:lastmodified":1566623956, + "wof:name":"Yucca Corridor", + "wof:parent_id":85826037, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869831 + ], + "wof:tags":[] +}, + "bbox": [ + -118.338703, + 34.10150072109364, + -118.32667986167377, + 34.105448 +], + "geometry": {"coordinates":[[[-118.326706,34.105215],[-118.326705,34.105029],[-118.326702,34.10456],[-118.3267,34.104282],[-118.326696,34.103751],[-118.32668,34.101622],[-118.32667986167377,34.10160090525006],[-118.33869455897504,34.10150072109364],[-118.338695,34.101545],[-118.338697,34.102004],[-118.33869799999999,34.10219],[-118.338702,34.102986],[-118.338703,34.103172],[-118.338703,34.103564],[-118.338686,34.103678],[-118.338649,34.103789],[-118.33860199999999,34.103882],[-118.338532,34.103982],[-118.338458,34.104061],[-118.338368,34.104136],[-118.33828381616907,34.10418950000471],[-118.338261,34.104204],[-118.33814,34.104261],[-118.338003,34.104321],[-118.33787599999999,34.104397],[-118.337763,34.104488],[-118.33768499999999,34.104567],[-118.337613,34.104661],[-118.33755499999999,34.104762],[-118.33751100000001,34.10487],[-118.33748,34.104998],[-118.337474,34.10505],[-118.33747099999999,34.105173],[-118.336439,34.105179],[-118.33606899999999,34.105181],[-118.33548500000001,34.105184],[-118.33514,34.105186],[-118.33485,34.105188],[-118.334766,34.105189],[-118.334423,34.10519],[-118.33334600000001,34.105197],[-118.33322800000001,34.105234],[-118.332196,34.10524],[-118.332125,34.105241],[-118.33119499999999,34.105247],[-118.33104899999999,34.105242],[-118.330406,34.105245],[-118.329375,34.105249],[-118.329274,34.105252],[-118.329138,34.105263],[-118.32901699999999,34.10528],[-118.328171,34.105432],[-118.328006,34.105448],[-118.327811,34.105448],[-118.327668,34.105436],[-118.327502,34.105408],[-118.326863,34.105244],[-118.326706,34.105215]]],"type":"Polygon"} +},{ + "id": 1108701983, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000087, + "geom:area_square_m":796175.505269, + "geom:bbox":"-71.071571,42.278824747,-71.05451,42.288242", + "geom:latitude":42.283575, + "geom:longitude":-71.063321, + "iso:country":"US", + "lbl:latitude":42.284345, + "lbl:longitude":-71.068633, + "lbl:max_zoom":18.0, + "mps:latitude":42.283387, + "mps:longitude":-71.063192, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Ashmont" + ], + "name:fra_x_preferred":[ + "Ashmont" + ], + "reversegeo:latitude":42.283387, + "reversegeo:longitude":-71.063192, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4805681" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"02ad06028a75d567f556f8b06dd193f6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701983, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108701983, + "wof:lastmodified":1566624098, + "wof:name":"Ashmont", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85803769 + ], + "wof:tags":[] +}, + "bbox": [ + -71.071571, + 42.2788247469914, + -71.05451, + 42.288242 +], + "geometry": {"coordinates":[[[[-71.055347,42.288242],[-71.0551,42.287933],[-71.054877,42.287667],[-71.054725,42.287446],[-71.054654,42.287335],[-71.054537,42.287113],[-71.05450999999999,42.286859],[-71.05450999999999,42.2868],[-71.054528,42.286672],[-71.054547,42.286615],[-71.05468500000001,42.286267],[-71.054776,42.286007],[-71.054963,42.285575],[-71.055009,42.285426],[-71.055148,42.285068],[-71.055211,42.284914],[-71.05542699999999,42.284355],[-71.05566399999999,42.283605],[-71.055787,42.283205],[-71.055869,42.283096],[-71.05600099999999,42.282921],[-71.05615400000001,42.282812],[-71.05653599999999,42.282583],[-71.056631,42.282575],[-71.056972,42.282509],[-71.057275,42.282449],[-71.05779,42.282309],[-71.057963,42.282259],[-71.05846200000001,42.282128],[-71.058601,42.282087],[-71.058904,42.281998],[-71.058932,42.281991],[-71.059245,42.281908],[-71.05989,42.281721],[-71.06071703246535,42.28145596727881],[-71.061318,42.28129],[-71.061475,42.281242],[-71.061691,42.281168],[-71.062214,42.281015],[-71.063384,42.280657],[-71.063784,42.280531],[-71.064106,42.280429],[-71.064778,42.280234],[-71.065507,42.280027],[-71.065635,42.279991],[-71.06591999983635,42.27992799958948],[-71.06616242773984,42.27986297109982],[-71.06638600013612,42.27980300038255],[-71.06723700044942,42.27956100006531],[-71.06756343854371,42.27946141760575],[-71.06785000000001,42.279374],[-71.06795424950421,42.27933829811499],[-71.0681420002205,42.27927400028151],[-71.06863196532214,42.27911301114644],[-71.06863199999999,42.279113],[-71.06863205407409,42.2791129819753],[-71.06950825937672,42.2788247469914],[-71.06955600000001,42.278902],[-71.06964000000001,42.27903],[-71.069804,42.279317],[-71.07017399999999,42.279936],[-71.070346,42.280191],[-71.07061299999999,42.280657],[-71.07083799999999,42.281],[-71.070961,42.281281],[-71.071264,42.282009],[-71.071348,42.282549],[-71.07135599999999,42.282793],[-71.07138500000001,42.28306],[-71.071477,42.283541],[-71.07155,42.283895],[-71.071566,42.284],[-71.07157100000001,42.284185],[-71.071564,42.284348],[-71.071541,42.284497],[-71.071523,42.28456],[-71.071302,42.285065],[-71.071245,42.285165],[-71.07117700000001,42.285348],[-71.070021,42.285288],[-71.069261,42.285248],[-71.068758,42.285229],[-71.068099,42.285227],[-71.06669599999999,42.28513],[-71.06633600000001,42.285154],[-71.066101,42.285195],[-71.065804,42.285269],[-71.065493,42.285368],[-71.064852,42.285555],[-71.064303,42.285699],[-71.064206,42.285754],[-71.06409499999999,42.285827],[-71.063885,42.285883],[-71.06373499999999,42.285923],[-71.063295,42.286028],[-71.063096,42.286087],[-71.06231099999999,42.286353],[-71.06202500000001,42.286456],[-71.06188,42.286514],[-71.061415,42.2866],[-71.061007,42.286668],[-71.060772,42.286714],[-71.060559,42.286754],[-71.06016700000001,42.286836],[-71.059551,42.287],[-71.058958,42.287148],[-71.05814599999999,42.28735],[-71.057692,42.287476],[-71.05733600000001,42.287584],[-71.057034,42.287695],[-71.05605300000001,42.288016],[-71.055347,42.288242]]]],"type":"MultiPolygon"} +},{ + "id": 1108701985, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000037, + "geom:area_square_m":338730.537271, + "geom:bbox":"-71.1120295364,42.3260901307,-71.0993504066,42.3331920989", + "geom:latitude":42.328712, + "geom:longitude":-71.106199, + "iso:country":"US", + "lbl:latitude":42.331014, + "lbl:longitude":-71.106714, + "lbl:max_zoom":18.0, + "mps:latitude":42.327969, + "mps:longitude":-71.105574, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.327969, + "reversegeo:longitude":-71.105574, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869493, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"12e36a8eb3c60213a5f80a9d51a2da63", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701985, + "neighbourhood_id":85869493, + "region_id":85688645 + } + ], + "wof:id":1108701985, + "wof:lastmodified":1566624098, + "wof:name":"Back of the Hill", + "wof:parent_id":85869493, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891253 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11202953643453, + 42.32609013066075, + -71.09935040655068, + 42.33319209888306 +], + "geometry": {"coordinates":[[[[-71.11128668136637,42.33006782317904],[-71.11198302099378,42.33174930415855],[-71.11202219189127,42.33188640229979],[-71.11202953643453,42.33193087758967],[-71.11202872037418,42.3319712725777],[-71.11201786734219,42.33199157468497],[-71.11199734266854,42.3320128547305],[-71.11195690706211,42.33203655740687],[-71.11150644174089,42.33232381065519],[-71.110794837103,42.33276121901058],[-71.1103965996451,42.33297665894682],[-71.11026058871941,42.33303905837336],[-71.11009628943096,42.33310722860514],[-71.10996474710089,42.33314361038829],[-71.10976986528513,42.33317904191723],[-71.1095935962464,42.33319209888306],[-71.10960012472931,42.33113562676441],[-71.10958706776348,42.331011585589],[-71.10956095383182,42.33094630075984],[-71.10949566900265,42.33090060137943],[-71.10934551389558,42.33085490199901],[-71.10438386687919,42.32945780665491],[-71.09935040655068,42.3280150119304],[-71.09950056165776,42.32759066054084],[-71.09958543193568,42.32730993577543],[-71.099637659799,42.32713366673669],[-71.09965724524776,42.32699004011253],[-71.09966377373067,42.32687252742004],[-71.09970294462818,42.32676154321047],[-71.09976822945734,42.32667667293255],[-71.09984657125233,42.32659833113755],[-71.0999183845644,42.32654610327423],[-71.1000358972569,42.3264938754109],[-71.10029895172735,42.32640769701429],[-71.10074525782117,42.32640691001333],[-71.1012530575952,42.32641044176068],[-71.10133598168554,42.32641101838725],[-71.101405988927,42.32641185986498],[-71.1014062776602,42.32641186356708],[-71.10141618805443,42.3264119825601],[-71.10152714365617,42.32640962315347],[-71.10162887597878,42.32640380155222],[-71.10174333351955,42.32639596587734],[-71.10187215508191,42.32638269164432],[-71.10203934152338,42.32636955009804],[-71.1022151113842,42.32635163584133],[-71.10229652641908,42.32634231501559],[-71.10245703231243,42.32632571782491],[-71.10251905672246,42.32631855710639],[-71.1026647341974,42.32630173909344],[-71.10283446803017,42.32628203484703],[-71.10287706386326,42.32627708995096],[-71.10305100025869,42.32625642398501],[-71.10322929635255,42.32623586013359],[-71.10323580412935,42.32623510924381],[-71.10337879911782,42.32621706296904],[-71.10340512217452,42.32621374077667],[-71.1035753602916,42.32619306125805],[-71.10374607463648,42.32617032505581],[-71.10391006307685,42.32615099554637],[-71.10404066403825,42.32613259603887],[-71.10404404472058,42.32613212062502],[-71.10405256565636,42.32613092017446],[-71.10410161236179,42.32612284241354],[-71.10415111076061,42.32611683866548],[-71.10415764247482,42.32611613642194],[-71.10416039235126,42.32611584069183],[-71.10416098360004,42.32611577790674],[-71.10420060486018,42.32611152090583],[-71.10425032517593,42.32610688992821],[-71.10430004240875,42.32610294494295],[-71.10434998586089,42.32609968673937],[-71.10439992502013,42.32609711452382],[-71.10441080807854,42.3260967027316],[-71.10444985988812,42.3260952282963],[-71.1044773017054,42.32609419645684],[-71.10450002648018,42.32609334284438],[-71.10457952514214,42.32609294923346],[-71.1045818473832,42.32609293831589],[-71.1046169733966,42.32609374516974],[-71.10464975459657,42.32609293242071],[-71.10476283667316,42.32609013066075],[-71.10478557867573,42.326090208856],[-71.10484927569503,42.32609042784552],[-71.10487908961753,42.32609053033325],[-71.10499158300003,42.32609301735582],[-71.10502606627061,42.32609377956203],[-71.10507837494086,42.32609567075165],[-71.10507973347811,42.32609572043393],[-71.10517080908551,42.32609901328174],[-71.10517279716035,42.3260990858321],[-71.105227089671,42.32610270243057],[-71.10523699722812,42.32610346389487],[-71.10531117900715,42.32610916541811],[-71.1053157876278,42.32610944682948],[-71.10533497646541,42.32611061917765],[-71.10535297064186,42.32611172800147],[-71.10535854219766,42.32611207213667],[-71.10538210365389,42.32611421110061],[-71.10540566511177,42.32611635005971],[-71.1054292222946,42.32611917502376],[-71.10545254775242,42.3261219991876],[-71.10546107658081,42.32612303139025],[-71.10547587442559,42.32612482335087],[-71.10549919561176,42.32612833351497],[-71.10552228749977,42.32613184288744],[-71.10554537390182,42.32613603826086],[-71.10556846030693,42.32614023362962],[-71.10631452794095,42.32636855544667],[-71.10666599881677,42.32657746740361],[-71.10711160562806,42.3268423310499],[-71.10732398335942,42.32692316764605],[-71.10826457344925,42.32728117212718],[-71.10827554718473,42.32728534907702],[-71.10832617454788,42.32730461863576],[-71.10836731595303,42.32732947008778],[-71.10836795297055,42.32732985488315],[-71.10839594790018,42.3273467659537],[-71.1084282931859,42.32736630449059],[-71.10859474620021,42.32746685085768],[-71.10860415023055,42.32747334518974],[-71.10860417681089,42.32747336328612],[-71.10899866942795,42.32774579069431],[-71.10901510488041,42.32775714078758],[-71.10923623745487,42.32790984795753],[-71.10942889631791,42.32804289096081],[-71.10988111449016,42.32835517295313],[-71.10997153725077,42.3284200794828],[-71.11006758474998,42.32848621861628],[-71.11056905645462,42.32882862579321],[-71.11062152557236,42.32886695168396],[-71.11065090608953,42.3288884115718],[-71.11078700196254,42.32902136688836],[-71.11086087979744,42.32914659848083],[-71.11098051109479,42.32938391837973],[-71.11105739664211,42.32954306056815],[-71.11110087868455,42.32963800229611],[-71.11118438307041,42.32982032863331],[-71.11128668136637,42.33006782317904]]]],"type":"MultiPolygon"} +},{ + "id": 1108701987, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000138, + "geom:area_square_m":1265291.781176, + "geom:bbox":"-71.1582000831,42.2722870289,-71.1406464598,42.2875566833", + "geom:latitude":42.2804, + "geom:longitude":-71.149464, + "iso:country":"US", + "lbl:latitude":42.287859, + "lbl:longitude":-71.144826, + "lbl:max_zoom":18.0, + "mps:latitude":42.279942, + "mps:longitude":-71.149598, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:bar_x_preferred":[ + "Bellevue" + ], + "name:bre_x_preferred":[ + "Bellevue" + ], + "name:bul_x_preferred":[ + "\u0411\u0435\u043b\u0432\u044e" + ], + "name:cat_x_preferred":[ + "Bellevue" + ], + "name:ceb_x_preferred":[ + "Bellevue" + ], + "name:dan_x_preferred":[ + "Bellevue" + ], + "name:deu_x_preferred":[ + "Bellevue" + ], + "name:eng_x_preferred":[ + "Bellevue Hill" + ], + "name:epo_x_preferred":[ + "Bellevue" + ], + "name:eus_x_preferred":[ + "Bellevue" + ], + "name:fas_x_preferred":[ + "\u0628\u0644\u0648\u06cc\u0648" + ], + "name:fin_x_preferred":[ + "Bellevue" + ], + "name:fra_x_preferred":[ + "Bellevue" + ], + "name:ita_x_preferred":[ + "Bellevue" + ], + "name:jpn_x_preferred":[ + "\u30d9\u30eb\u30d3\u30e5\u30fc" + ], + "name:nld_x_preferred":[ + "Bellevue" + ], + "name:nor_x_preferred":[ + "Bellevue" + ], + "name:pol_x_preferred":[ + "Bellevue" + ], + "name:por_x_preferred":[ + "Bellevue" + ], + "name:rus_x_preferred":[ + "\u0411\u0435\u043b\u044c\u0432\u044e" + ], + "name:spa_x_preferred":[ + "Bellevue" + ], + "name:swe_x_preferred":[ + "Bellevue" + ], + "name:ukr_x_preferred":[ + "\u0411\u0435\u043b\u044c\u0432\u044e" + ], + "name:vol_x_preferred":[ + "Bellevue" + ], + "name:zho_x_preferred":[ + "\u8d1d\u5c14\u7ef4\u5c24" + ], + "reversegeo:latitude":42.279942, + "reversegeo:longitude":-71.149598, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85856255, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e09967db9c949b6dc54e589ea66ece8d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701987, + "neighbourhood_id":85856255, + "region_id":85688645 + } + ], + "wof:id":1108701987, + "wof:lastmodified":1566624098, + "wof:name":"Bellevue", + "wof:parent_id":85856255, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524053, + 85805525 + ], + "wof:tags":[] +}, + "bbox": [ + -71.15820008307674, + 42.27228702886804, + -71.14064645976327, + 42.28755668332624 +], + "geometry": {"coordinates":[[[[-71.1425449101541,42.27228702886804],[-71.14276972773111,42.27238208904603],[-71.14287904604829,42.27243416932596],[-71.14294164075547,42.27245619608784],[-71.14302430463414,42.27247295248519],[-71.14312132844101,42.27248146736865],[-71.14324893131327,42.27249733045875],[-71.14347655301479,42.27255051873202],[-71.14352158699427,42.27257171203785],[-71.14356116239726,42.27259816652167],[-71.14359036386556,42.27263473340624],[-71.14361956533384,42.27267739474431],[-71.14387189597007,42.27296715865307],[-71.1452735664479,42.27472233488778],[-71.14538895063382,42.27482510419669],[-71.14557165560558,42.27495412010239],[-71.1457407899405,42.27506693761222],[-71.14624395370178,42.27542261883445],[-71.14646826831718,42.27556869997874],[-71.14667523692572,42.27567081887188],[-71.14679204279889,42.27571181610548],[-71.14691073192638,42.27574327586315],[-71.14707057988103,42.27577608198546],[-71.14723231108998,42.27579713458668],[-71.1476456241796,42.27583037552262],[-71.14787923592593,42.27583813173839],[-71.1483779071536,42.27584256386084],[-71.14943065752315,42.27583037552262],[-71.15032916423971,42.27583037552262],[-71.15097608907564,42.27585696825847],[-71.15115100604332,42.27589651511816],[-71.1513175216279,42.27596112303258],[-71.15159605871007,42.27609519434983],[-71.15194647632951,42.27629131468888],[-71.15333616671778,42.27727523124527],[-71.15427061370301,42.27789571126512],[-71.15461803630008,42.27821481289639],[-71.15509723988224,42.27865800692582],[-71.15610356740478,42.27943802084692],[-71.156930193584,42.28004961591796],[-71.15744533743484,42.280368706642],[-71.15776879985279,42.28052825139807],[-71.15800501814235,42.2806149664038],[-71.15820008307674,42.28067893218564],[-71.15816713783047,42.28102461027793],[-71.15806830209164,42.28139687687185],[-71.15772087949456,42.28221231029684],[-71.15736147680795,42.28280615191069],[-71.15714583519599,42.28324931364717],[-71.15696613385266,42.28370133540713],[-71.15692675879718,42.28389387531168],[-71.15689425331534,42.28406472309556],[-71.15678643250936,42.28456991713679],[-71.15670966386364,42.28477536060519],[-71.1565917560541,42.28501085072766],[-71.15650247960187,42.28513655139965],[-71.15636002996141,42.28530457172732],[-71.15602569682268,42.28558915593511],[-71.15555248328529,42.28590821860661],[-71.15529455086461,42.28602135285217],[-71.1550253593449,42.28610320055396],[-71.15455813585228,42.28625386800903],[-71.15438734193205,42.28633778881033],[-71.15422269334478,42.2864311233772],[-71.15350388797154,42.28699833720376],[-71.15307260474759,42.28729966747186],[-71.15288503245591,42.28738903034762],[-71.15266528170275,42.28745919467733],[-71.1524337019158,42.2875153911827],[-71.15218607812059,42.28755668332624],[-71.15188327059705,42.2875564915464],[-71.15157509355333,42.2875212329259],[-71.15079638773231,42.28739715636765],[-71.14962233895602,42.28724649164693],[-71.14746766571329,42.28705545168743],[-71.14747332634012,42.28705175688015],[-71.14748741956873,42.28704255855031],[-71.1475451773866,42.28702380156915],[-71.14764585688252,42.28699584641308],[-71.14768216964067,42.2869789439223],[-71.1476977700225,42.28696472201412],[-71.14770633974243,42.28695212609137],[-71.14771011323816,42.28693814250188],[-71.14772086050168,42.2869100888045],[-71.14772391416717,42.2868666046805],[-71.14772998995241,42.28678007388022],[-71.14773850308399,42.28665883858765],[-71.14773858477727,42.28665766664763],[-71.14774060870154,42.28662884344896],[-71.14774068643676,42.28662772911601],[-71.14774108011324,42.28662213045752],[-71.14774815789525,42.2865213356711],[-71.14775032143913,42.28649051603433],[-71.14776131407984,42.28633395606286],[-71.1477645533637,42.2862878265203],[-71.14777156794075,42.28618791832766],[-71.14778534019057,42.28599177077056],[-71.14777686859617,42.28590978777853],[-71.14777611498286,42.28590249393741],[-71.14775858728824,42.28573288847521],[-71.14775852172802,42.28573224996138],[-71.1477419409954,42.28557181425034],[-71.14774073522004,42.28556014536381],[-71.14771675315447,42.28532807977083],[-71.14771643334402,42.28532497725589],[-71.14770925171541,42.28520402690826],[-71.14770300880873,42.2851410137558],[-71.147696959538,42.28508111893578],[-71.14768585631435,42.28499426892974],[-71.14768359808447,42.28497912255455],[-71.14767836551071,42.28494504364549],[-71.1476729303692,42.28491098122036],[-71.14766729391279,42.28487692808059],[-71.14766145487437,42.28484289412544],[-71.14761346204457,42.28459793274818],[-71.14760111764166,42.28453284187744],[-71.14752683492067,42.28428038851875],[-71.14747881353104,42.28411718865053],[-71.14738283624564,42.28386300213774],[-71.14733618799359,42.2837812457913],[-71.14727785801965,42.28367901853323],[-71.14724374794709,42.28361923646757],[-71.14702831723832,42.28325821678069],[-71.14677517793329,42.28295671842179],[-71.14660539791944,42.2827735639133],[-71.14651073558642,42.28267144412703],[-71.14650262361256,42.28266269344839],[-71.14621456448985,42.28237787874288],[-71.14613577910687,42.282310413298],[-71.14599234219189,42.28218758443164],[-71.14521093168815,42.28155288407643],[-71.14517812548594,42.28152623736644],[-71.14514142497927,42.28149722883037],[-71.14488672761547,42.28129591764511],[-71.14443283469168,42.28093715697829],[-71.14435445688521,42.28086793415468],[-71.14422147873914,42.28075048589335],[-71.14414456355576,42.28068255308293],[-71.1439511109463,42.28051169132191],[-71.14386730546549,42.28043098509539],[-71.14383952156066,42.28040184352532],[-71.14331605426921,42.27985279366685],[-71.14259974394822,42.2790476115635],[-71.14244969769396,42.27890360679832],[-71.14215853984145,42.27862417106089],[-71.14164873120572,42.27807698348414],[-71.14152056180974,42.27789750450248],[-71.14138950042403,42.27771397488484],[-71.14123613777416,42.27749921420246],[-71.1410440558934,42.2771486081831],[-71.14094098420883,42.27687729961566],[-71.14090269014935,42.27677650092142],[-71.14085772841668,42.27666053918289],[-71.14083916546791,42.27661266339376],[-71.14077624702598,42.27642236063981],[-71.14073014126481,42.27628290458071],[-71.14069018917377,42.27600990072219],[-71.14064645976327,42.27567474165435],[-71.14068020004596,42.27524092493],[-71.1407347712795,42.27502474939491],[-71.14077752335547,42.27482552286456],[-71.1407810401853,42.27468720600312],[-71.14078313891365,42.27465380594622],[-71.14078873568515,42.27458801044413],[-71.14079860139167,42.27450480023783],[-71.14081143913927,42.27442251673248],[-71.14082816876044,42.27433650283816],[-71.14084840731094,42.27425015329656],[-71.14087260160173,42.27416227300089],[-71.14090101762005,42.27407683311438],[-71.14093423813135,42.27399431711787],[-71.14095916161365,42.27393687290666],[-71.14100152804545,42.27384629626192],[-71.14104944884433,42.27375251927859],[-71.14110124121096,42.27365942239705],[-71.14115490688773,42.27357029627658],[-71.14121537511285,42.27348231585897],[-71.14127973115728,42.27339534958865],[-71.1413458085654,42.27331028289354],[-71.14144550076328,42.27318910823585],[-71.14189936301274,42.27271703710777],[-71.14204549208755,42.27258027751549],[-71.14207103220988,42.27255952591111],[-71.14208913868553,42.2725463271825],[-71.14210435429713,42.27253607783715],[-71.14212336709829,42.27252423868367],[-71.14213947297107,42.27251497433803],[-71.14215551561664,42.27250638682079],[-71.14217158529308,42.27249837828015],[-71.14220329066143,42.2724804286908],[-71.1425449101541,42.27228702886804]]]],"type":"MultiPolygon"} +},{ + "id": 1108701991, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":486053.528167, + "geom:bbox":"-71.0818410605,42.3038614397,-71.071600186,42.31384577", + "geom:latitude":42.309128, + "geom:longitude":-71.076851, + "iso:country":"US", + "lbl:latitude":42.309112, + "lbl:longitude":-71.076929, + "lbl:max_zoom":18.0, + "mps:latitude":42.309112, + "mps:longitude":-71.076929, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.309112, + "reversegeo:longitude":-71.076929, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fd054c762dff1a23154d51203d6b02ee", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701991, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108701991, + "wof:lastmodified":1566624100, + "wof:name":"Brunswick - King", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524015 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08184106054873, + 42.30386143968718, + -71.07160018604824, + 42.31384577003994 +], + "geometry": {"coordinates":[[[[-71.07317099983807,42.31222200033748],[-71.07277884625334,42.31214420369212],[-71.0721852144712,42.31203236002303],[-71.07182387338644,42.31195492979057],[-71.07160018604824,42.31188610291728],[-71.07312082978001,42.30884481545374],[-71.07321684500143,42.30864219122605],[-71.0733208578805,42.30847056933022],[-71.07347571834541,42.30827269206951],[-71.07365208720819,42.30803825053241],[-71.07382845607103,42.30781671403395],[-71.07522220025517,42.30652621015975],[-71.07627611175242,42.30557984065201],[-71.0771708611052,42.30479263328876],[-71.07729553782475,42.30467430034678],[-71.07742896188005,42.30453883419349],[-71.07763974417949,42.30430654349614],[-71.07787203487685,42.30403123600297],[-71.0780039164175,42.30386143968718],[-71.07845795198995,42.30432530706828],[-71.08011077912965,42.30581862271388],[-71.08074578180687,42.30638179239241],[-71.08122294026441,42.30682211369607],[-71.08150584102256,42.3071127593662],[-71.08184106054873,42.30751380285943],[-71.07802046280015,42.31274557365413],[-71.07729878378848,42.31380291354774],[-71.07728005106685,42.31384577003994],[-71.07700500029563,42.31371299987956],[-71.0767880004574,42.31362899989458],[-71.07618499988529,42.31342299967248],[-71.07566799999999,42.31322599991942],[-71.07557699962031,42.31319599994308],[-71.07535799967448,42.31312500006277],[-71.07497300052637,42.31298399993904],[-71.07464900032812,42.31284099966464],[-71.07408700058029,42.31260700035758],[-71.07361700000708,42.31239799973495],[-71.07317099983807,42.31222200033748]]]],"type":"MultiPolygon"} +},{ + "id": 1108701995, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":135153.69801, + "geom:bbox":"-71.061582,42.376377,-71.053239,42.380269", + "geom:latitude":42.378366, + "geom:longitude":-71.057345, + "iso:country":"US", + "lbl:latitude":42.375725, + "lbl:longitude":-71.059378, + "lbl:max_zoom":18.0, + "mps:latitude":42.37806, + "mps:longitude":-71.056712, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Bunker Hill" + ], + "name:deu_x_preferred":[ + "Bunker Hill" + ], + "name:fra_x_preferred":[ + "Bunker Hill" + ], + "name:hun_x_preferred":[ + "Bunker Hill" + ], + "name:ita_x_preferred":[ + "Bunker Hill" + ], + "name:jpn_x_preferred":[ + "\u30d0\u30f3\u30ab\u30fc\u30fb\u30d2\u30eb" + ], + "name:nld_x_preferred":[ + "Bunker Hill" + ], + "name:pol_x_preferred":[ + "Bunker Hill" + ], + "name:por_x_preferred":[ + "Bunker Hill" + ], + "name:srp_x_preferred":[ + "\u0411\u0430\u043d\u043a\u0435\u0440 \u0425\u0438\u043b" + ], + "name:swe_x_preferred":[ + "Bunker Hill" + ], + "name:ukr_x_preferred":[ + "\u0411\u0430\u043d\u043a\u0435\u0440-\u0413\u0456\u043b\u043b" + ], + "name:vol_x_preferred":[ + "Bunker Hill" + ], + "name:zho_x_preferred":[ + "\u90a6\u514b\u5c71" + ], + "reversegeo:latitude":42.37806, + "reversegeo:longitude":-71.056712, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85810461, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e270017eac7ebcb1b8140591cf8d1f2c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701995, + "neighbourhood_id":85810461, + "region_id":85688645 + } + ], + "wof:id":1108701995, + "wof:lastmodified":1566624100, + "wof:name":"Bunker Hill", + "wof:parent_id":85810461, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891299 + ], + "wof:tags":[] +}, + "bbox": [ + -71.061582, + 42.376377, + -71.053239, + 42.380269 +], + "geometry": {"coordinates":[[[[-71.061582,42.37864],[-71.06135500000001,42.378952],[-71.061229,42.379127],[-71.060841,42.379598],[-71.060351,42.380269],[-71.059698,42.379983],[-71.05960899999999,42.379944],[-71.05895599999999,42.379668],[-71.058628,42.379539],[-71.05829,42.379391],[-71.058037,42.379289],[-71.05781,42.37922],[-71.05762,42.379179],[-71.05757800000001,42.37917],[-71.057396,42.379161],[-71.057022,42.37915],[-71.05672300000001,42.379132],[-71.05623199999999,42.379138],[-71.05591200000001,42.379115],[-71.05549499999999,42.379106],[-71.05488,42.379092],[-71.054537,42.379071],[-71.054406,42.37906],[-71.054154,42.379039],[-71.05350199999999,42.378689],[-71.053239,42.378573],[-71.054036,42.377764],[-71.054743,42.377046],[-71.0548,42.376993],[-71.05518600000001,42.376637],[-71.055468,42.376377],[-71.05571,42.376509],[-71.055843,42.376583],[-71.056029,42.376674],[-71.056158,42.376737],[-71.05619,42.376757],[-71.056459,42.376924],[-71.057052,42.377073],[-71.05711599999999,42.377089],[-71.057216,42.377129],[-71.05741,42.377206],[-71.058414,42.377542],[-71.058742,42.377667],[-71.059078,42.377795],[-71.05960899999999,42.377969],[-71.059867,42.378054],[-71.060238,42.378172],[-71.060641,42.3783],[-71.06097699999999,42.378421],[-71.061227,42.378511],[-71.061582,42.37864]]]],"type":"MultiPolygon"} +},{ + "id": 1108701997, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000215, + "geom:area_square_m":1966997.36769, + "geom:bbox":"-71.0682039774,42.2675478114,-71.0402635507,42.2857660905", + "geom:latitude":42.27757, + "geom:longitude":-71.05602, + "iso:country":"US", + "lbl:latitude":42.276306, + "lbl:longitude":-71.062054, + "lbl:max_zoom":18.0, + "mps:latitude":42.276306, + "mps:longitude":-71.062054, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Cedar Grove" + ], + "name:deu_x_preferred":[ + "Cedar Grove" + ], + "name:ita_x_preferred":[ + "Cedar Grove" + ], + "name:kor_x_preferred":[ + "\uc2dc\ub354\uadf8\ub85c\ube0c" + ], + "name:nld_x_preferred":[ + "Cedar Grove" + ], + "name:pol_x_preferred":[ + "Cedar Grove" + ], + "name:por_x_preferred":[ + "Cedar Grove" + ], + "name:spa_x_preferred":[ + "Cedar Grove" + ], + "name:srp_x_preferred":[ + "\u0421\u0438\u0434\u0430\u0440 \u0413\u0440\u043e\u0443\u0432" + ], + "name:swe_x_preferred":[ + "Cedar Grove" + ], + "name:ukr_x_preferred":[ + "\u0421\u0456\u0434\u0430\u0440-\u0413\u0440\u043e\u0443\u0432" + ], + "name:vol_x_preferred":[ + "Cedar Grove" + ], + "reversegeo:latitude":42.276306, + "reversegeo:longitude":-71.062054, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0b67c1d5eae351d0a3ebbf0e8b7dbbe2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108701997, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108701997, + "wof:lastmodified":1566624100, + "wof:name":"Cedar Grove", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524011, + 420780913, + 420523747 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06820397736301, + 42.2675478114317, + -71.04026355065938, + 42.28576609048097 +], + "geometry": {"coordinates":[[[[-71.05653599999999,42.282583],[-71.05523490599181,42.28266940677469],[-71.05440236720689,42.2827495056338],[-71.0535027681633,42.28290889850017],[-71.05288111114345,42.28307053854245],[-71.05231644868589,42.28320408597577],[-71.05169225364496,42.28329688291817],[-71.05099088983319,42.28335446450107],[-71.04872964237859,42.28347142557632],[-71.04828479300227,42.28353309835051],[-71.04790534527697,42.28363015846414],[-71.04763800567638,42.28371648687681],[-71.04596713317298,42.28429572267799],[-71.04527293948107,42.28459264868582],[-71.04289272776673,42.28559900323064],[-71.04251498614055,42.28573212860386],[-71.04242627585957,42.28575216654344],[-71.04233235204912,42.28576300029421],[-71.04226197339673,42.28576609048097],[-71.04219109721757,42.28576584871421],[-71.04210184811512,42.2857563437247],[-71.04200995012748,42.2857298882434],[-71.04190821972993,42.28568183622719],[-71.04102135056293,42.2851868546798],[-71.04026355065938,42.28478089044576],[-71.04041135040957,42.28468278638432],[-71.04042955366819,42.28466968684081],[-71.0404452126088,42.28465081515897],[-71.04045256853146,42.28465550997148],[-71.04045489081781,42.28464124941665],[-71.04045976493087,42.28463139076172],[-71.04046464148031,42.28462153031568],[-71.04047098921875,42.28461277502812],[-71.04047583390229,42.28460730614535],[-71.04048888358555,42.28459144274435],[-71.04049962848535,42.28458709403534],[-71.04051665028956,42.28458442069384],[-71.04052516691752,42.28458170972838],[-71.04053111179407,42.28457734271667],[-71.04054190256359,42.2845675059236],[-71.04054784743767,42.28456313891103],[-71.04055526548703,42.28455960337076],[-71.04056009734859,42.28455523190581],[-71.04056493527159,42.28455086046488],[-71.04057356500799,42.28453305722326],[-71.04058176003203,42.28452403472456],[-71.04060001573394,42.28450352674795],[-71.04061347738046,42.28448217761689],[-71.04063021653025,42.28446715003346],[-71.04064248754635,42.28445649627104],[-71.04065693870476,42.28445134038935],[-71.04066398696393,42.28444780066238],[-71.04067367306132,42.28443713836072],[-71.04068108989608,42.28443360010656],[-71.04069777604462,42.28442570992506],[-71.04071593540972,42.28441864490983],[-71.04073742959019,42.28441050115396],[-71.04075779495714,42.28440536800503],[-71.04077852283004,42.284400237202],[-71.04080222659468,42.28439319613889],[-71.04083481912446,42.28438345007171],[-71.04085521587689,42.28437365074637],[-71.04088778970954,42.28436664872127],[-71.04089519019246,42.28436502893945],[-71.04090818281108,42.28435684937201],[-71.04091301351802,42.28435330076699],[-71.04092159261398,42.28434263402017],[-71.04092384793061,42.28433742936311],[-71.04092537880494,42.28433030055839],[-71.04092662222894,42.28431164309021],[-71.04092666795951,42.28430533393036],[-71.04093161281182,42.28428586927564],[-71.04094249728681,42.28426258675304],[-71.04094734587675,42.2842565695797],[-71.04095960848869,42.28424756420955],[-71.04097258717046,42.2842413031306],[-71.04097889459756,42.28423776042391],[-71.04100046426177,42.28421918777881],[-71.04101235266154,42.28421045460068],[-71.04101976945077,42.28420691632448],[-71.04102682318396,42.28420228002473],[-71.04105471692759,42.28417769428729],[-71.0410922962961,42.28414299449019],[-71.04110086695961,42.28413314877489],[-71.0411079787828,42.28412082769234],[-71.0411128161864,42.28411618343353],[-71.04111875622937,42.28411263925146],[-71.04113320958835,42.28410666133964],[-71.04113694603581,42.28410118620108],[-71.04113818340538,42.28408335518657],[-71.04114676244649,42.28407268572145],[-71.04115871639843,42.28405489751459],[-71.04117325643605,42.28403711963625],[-71.04118783071647,42.28401494840064],[-71.0412012570539,42.28399826444328],[-71.04120614493111,42.28398648275789],[-71.04121584874818,42.28397335184248],[-71.04122445359177,42.28395911636333],[-71.04123645444498,42.28393501449097],[-71.04124876301832,42.28391914714267],[-71.04125586163028,42.28390847535805],[-71.04125964971901,42.28389586729889],[-71.04126344178381,42.28388271006887],[-71.04126356501756,42.28386569568183],[-71.04126850375914,42.28384705566713],[-71.04127089969808,42.28382209435375],[-71.04127690528732,42.28380949514943],[-71.0412865875597,42.28379883097961],[-71.04129143134081,42.28379363575145],[-71.04130116293844,42.28377666243425],[-71.04130488421922,42.28377310938237],[-71.04130972081867,42.28376873790454],[-71.04131455145826,42.28376518928224],[-71.04132161228566,42.28375973101341],[-71.04132792439187,42.28375536542661],[-71.04133613235113,42.28374469536559],[-71.04133991721976,42.28373236098353],[-71.04134476174789,42.2837268938637],[-71.04134959359472,42.28372334524472],[-71.04137256695543,42.28371465628915],[-71.04138704692009,42.28370565792557],[-71.04139077527168,42.28370045733949],[-71.04139196807103,42.28368893818721],[-71.04139423492238,42.28368263429317],[-71.04139796765901,42.28367716273226],[-71.04140391238396,42.28367279657486],[-71.0414195735646,42.2836533737804],[-71.04142220775354,42.28364707405319],[-71.04142446180489,42.2836418675802],[-71.04143077587375,42.28363722830262],[-71.04143670911429,42.28363478244999],[-71.04144632421709,42.28363372336128],[-71.04146182091158,42.28363735223504],[-71.04147619788044,42.2836420741098],[-71.04148360385612,42.28364018422042],[-71.0415062249339,42.28362957167901],[-71.04152331234972,42.28361729038713],[-71.04153410035718,42.28360745619013],[-71.04153783784068,42.28360115906317],[-71.04154868588088,42.28358336550058],[-71.04155357884245,42.28357103553386],[-71.04156078186773,42.28354609339893],[-71.0415634664743,42.28353265804558],[-71.04156586824099,42.28350687386871],[-71.04156604899693,42.28348190100627],[-71.04156609466973,42.28347559094482],[-71.04156286083996,42.28346322854329],[-71.04155808663008,42.2834588186976],[-71.04155182743152,42.28345604868407],[-71.04154482734573,42.28345245283362],[-71.04154118717847,42.28344530698234],[-71.04154021412074,42.28342664065859],[-71.04153926997692,42.28340330996542],[-71.04154049814962,42.28338740196116],[-71.04154282368896,42.28337231671473],[-71.04154181286145,42.28335886841276],[-71.04153711139412,42.28334457799943],[-71.04153603503615,42.28334018291167],[-71.04153499839781,42.28333030061813],[-71.04153358160706,42.2833215142801],[-71.04153514736377,42.28330972112061],[-71.04153744707588,42.28329820368314],[-71.04153755035244,42.28328393604772],[-71.04153871013608,42.28327680575254],[-71.04154998186641,42.2832510560762],[-71.0415485429006,42.28324583576133],[-71.04154637463053,42.2832386921832],[-71.04154752734969,42.28323320761892],[-71.04155352365909,42.28322170763555],[-71.04155505080489,42.28321457790604],[-71.04155138717023,42.28321017339248],[-71.04154660106141,42.28320741015801],[-71.04153811645033,42.28320572963465],[-71.04153110456642,42.28320460507569],[-71.04152633158409,42.28320019613357],[-71.04152490167876,42.28319305460174],[-71.041524947375,42.28318674183915],[-71.04152984152293,42.28317441187728],[-71.04153257897143,42.28315384271056],[-71.04153161306988,42.28313435623549],[-71.04153285506641,42.283115700552],[-71.04153879378617,42.28311215544237],[-71.04154619131056,42.28311108929525],[-71.04154636411643,42.28308721567262],[-71.04154867539273,42.28307460170801],[-71.04154873895479,42.28306582037772],[-71.04154991142046,42.28305676978026],[-71.04155145168718,42.28304799434366],[-71.04155258685259,42.28304443186222],[-71.04155371959313,42.28304086937104],[-71.04155374541776,42.28303730156171],[-71.04155377124241,42.28303373375238],[-71.04155380302305,42.28302934308718],[-71.04155163242794,42.2830230241798],[-71.04154537801649,42.28301943130498],[-71.04153954260752,42.28300870517764],[-71.04154220963916,42.28299719280673],[-71.04155307148079,42.2829774780442],[-71.04156874754227,42.28295613673492],[-71.0415724819033,42.28295093526607],[-71.04157478036366,42.28293942052307],[-71.04157482604823,42.2829331086604],[-71.04156900574716,42.28292046314236],[-71.04156794130583,42.2829144223428],[-71.04156693051287,42.2829009695384],[-71.04156813595183,42.28288753008052],[-71.04156933942238,42.28287436250715],[-71.04157050592579,42.282866134765],[-71.04157423673088,42.28286175886239],[-71.04158019527239,42.28285547149773],[-71.04158511276239,42.28283957641435],[-71.04159284515036,42.28279240603185],[-71.04159528537851,42.28276113463925],[-71.04159692658884,42.28273891263436],[-71.04159446126069,42.28272188881338],[-71.04159235424724,42.28270678587457],[-71.0415923661517,42.28270514106308],[-71.04159090455907,42.28270321577772],[-71.04159092443248,42.2827004699238],[-71.04158981982798,42.28269964353614],[-71.04158983175859,42.28269799512349],[-71.04158985159945,42.28269525377093],[-71.0415898714664,42.28269250881726],[-71.04159098798181,42.28269168949312],[-71.04159471744978,42.28268649160501],[-71.04160697492931,42.28267830812343],[-71.04161181142436,42.28267393663192],[-71.04161632856803,42.2826624280405],[-71.04161898731758,42.28265255869255],[-71.04161902504215,42.28264734607139],[-71.04161800231276,42.28263554167939],[-71.04161545158406,42.28263031782841],[-71.04160745751645,42.28261162798537],[-71.04160490083429,42.28260722699007],[-71.04160389003837,42.28259377418521],[-71.04160394166209,42.28258664126673],[-71.04161109293277,42.28256883204225],[-71.04161261771877,42.28256252788231],[-71.04161270709257,42.28255017874143],[-71.04162358980001,42.28252689704168],[-71.04163075176245,42.28250744119875],[-71.04164051010996,42.28248689914328],[-71.04166610519023,42.2824227896487],[-71.04166873246687,42.28241676448032],[-71.04166882978402,42.28240331609711],[-71.04166305198886,42.28238463329969],[-71.04166165395371,42.2823739257833],[-71.04166172543447,42.28236404791066],[-71.04166179692172,42.28235416913765],[-71.04166187437001,42.28234346660842],[-71.04166453662228,42.28233277529342],[-71.04166467164127,42.28231411698926],[-71.04166955853427,42.28230260897018],[-71.04167339013189,42.2822839636152],[-71.04167463326932,42.2822653097324],[-71.04167478219392,42.28224472933003],[-71.04167493111193,42.28222414982788],[-71.04167614128964,42.28220988300485],[-71.04167882625291,42.2821967222403],[-71.04169202283812,42.28216027918771],[-71.04170558202533,42.2821246595596],[-71.04170938425698,42.28211040487844],[-71.04170947559808,42.28209778115092],[-71.04170844843614,42.28208625313479],[-71.04170488337741,42.28206840024583],[-71.04170242641861,42.28205055447877],[-71.04170248400433,42.28204259600263],[-71.04170399366134,42.28203821213345],[-71.04170888723473,42.28202560936659],[-71.04171233392728,42.28200888192628],[-71.04171132308554,42.28199543362219],[-71.04170671179719,42.28196852127978],[-71.04170684680949,42.28194986207393],[-71.04170472830543,42.28193668214291],[-71.041701069051,42.28193117837645],[-71.04168784071872,42.2819212474371],[-71.04168787844372,42.28191603391488],[-71.0416891283048,42.28189628168396],[-71.0416918073045,42.28188394287405],[-71.04169779630655,42.28187326393072],[-71.04169784195854,42.28186695476751],[-71.04169220639966,42.28182878811152],[-71.04168860121042,42.2818161487338],[-71.04168028071037,42.28179114374296],[-71.04167706556879,42.28177603998257],[-71.04167347824861,42.28176093203604],[-71.04167246147775,42.28174830478643],[-71.04167250515825,42.2817422684079],[-71.04167592567804,42.28172965976402],[-71.04168076321358,42.28172446359281],[-71.04168817370727,42.28172174992834],[-71.04170370889031,42.28172016435296],[-71.04171111695122,42.28171745157761],[-71.04171338601043,42.28171032570447],[-71.04171237044477,42.28169769845991],[-71.0417135210202,42.2816916664977],[-71.04171357264386,42.28168453177732],[-71.04171252531613,42.2816762942988],[-71.0417126404713,42.28166037914584],[-71.04171383672885,42.28164803351873],[-71.04171501035053,42.2816389838221],[-71.04171876445685,42.28163104099395],[-71.04171989716275,42.28162747850013],[-71.04172140923995,42.28162309373976],[-71.04172254317093,42.28161952945015],[-71.04172368502267,42.28161487041988],[-71.041722628542,42.28160773037805],[-71.04171902257185,42.28159536739157],[-71.0417143529382,42.28157668991511],[-71.04171079507273,42.28155801417327],[-71.04171084668357,42.28155088125325],[-71.04170618500933,42.28153110453417],[-71.04170516029491,42.28151957472581],[-71.04170526951077,42.28150448062793],[-71.0417079845439,42.28148665639486],[-71.04170917009721,42.28147595738464],[-71.04171637039825,42.28145101521987],[-71.0417238972227,42.2814323864041],[-71.04172726842963,42.28142608690719],[-71.04173694793242,42.28141624736551],[-71.04173957405658,42.28141104506981],[-71.0417418371547,42.28140474115148],[-71.04174451248623,42.28139240232464],[-71.04174349327585,42.28137977596531],[-71.04173878163391,42.28136740856768],[-71.04173882728797,42.28136109850356],[-71.0417388670016,42.28135560949497],[-71.04174489961912,42.28133889416908],[-71.04174392408945,42.2813202305303],[-71.04174137782125,42.28131473120469],[-71.0417329672369,42.28130235084993],[-71.04173189885329,42.28129685652002],[-71.04173466792226,42.28127189667397],[-71.04173693575702,42.28126476989463],[-71.04174066402503,42.28126039487581],[-71.04174293901143,42.28125244704559],[-71.04174201512333,42.28122664598462],[-71.04173992916421,42.28120880259574],[-71.04174112858736,42.2811961850874],[-71.04174602727389,42.2811830331507],[-71.04174718700209,42.28117590195016],[-71.04174840750161,42.28116053859166],[-71.04174741334596,42.28114461721083],[-71.04174639655723,42.28113199176084],[-71.04174532970427,42.28112595095108],[-71.04173696845491,42.28110725784529],[-71.04172860434123,42.28108829103436],[-71.04172165977293,42.28107755958595],[-71.04172166573311,42.28107673582951],[-71.04172591614936,42.28100019254244],[-71.04172960897441,42.2809494381039],[-71.04177572914945,42.28090846099798],[-71.0417712414166,42.28086481245082],[-71.04171521362522,42.28079351513992],[-71.0416940949185,42.28075062491264],[-71.04168962592874,42.28070422780017],[-71.04170435046356,42.28066065680576],[-71.0417414861614,42.28063583227236],[-71.04179080972827,42.28061188102826],[-71.04185113721347,42.28059894928947],[-71.04193621939473,42.28058666632936],[-71.04201319531562,42.28057105676375],[-71.04212274845275,42.28054734551387],[-71.04220198728122,42.28052543459555],[-71.04226672801911,42.28051581264876],[-71.04236291117898,42.28050110407057],[-71.04245049032394,42.28050145297349],[-71.0425273265033,42.28050532693695],[-71.04261845659315,42.28052517158294],[-71.04273096765367,42.28055251169791],[-71.04287325462246,42.28060192237621],[-71.04303810554111,42.28069890029749],[-71.04314231482728,42.28075008130013],[-71.04324515295475,42.28078698690079],[-71.04336358533637,42.2808132524646],[-71.04346070988798,42.28082187094302],[-71.0435625718134,42.28083983803782],[-71.0436691849967,42.2808652334381],[-71.04377834711802,42.28089612802989],[-71.04385608172102,42.28092936635585],[-71.04392213010699,42.2809430747017],[-71.04396282239428,42.28093692332194],[-71.04403365761573,42.28095312104863],[-71.04405396309583,42.28095594668628],[-71.04407659463037,42.28094368792035],[-71.04412738586878,42.28092056348208],[-71.0441362044766,42.28087614136297],[-71.0441155644553,42.28086892812028],[-71.0441050162957,42.2808455602219],[-71.04406680770411,42.28081440021815],[-71.04400711177665,42.28079083721342],[-71.04396390112922,42.28078709774956],[-71.04391698379706,42.28078526660549],[-71.04386574828365,42.2807672235862],[-71.04382378726756,42.28074400820626],[-71.04380368039229,42.28071429206992],[-71.04380133983867,42.2806797047129],[-71.04372864261333,42.28061438143678],[-71.04370365525378,42.28059452405492],[-71.04368687604068,42.28061586127789],[-71.04362333918299,42.28061204183372],[-71.04351038119488,42.28059567555226],[-71.04340037852003,42.28057904901491],[-71.04331888768205,42.28055485072172],[-71.04324816267706,42.28052328746138],[-71.04317999798455,42.28049529865238],[-71.04310815238601,42.28046565120154],[-71.04305224983622,42.28042893130389],[-71.04299972780608,42.2803842688217],[-71.04294460209513,42.28034206459427],[-71.04288996459461,42.28028312378703],[-71.04284489985795,42.28022943292682],[-71.04282128807728,42.28017308330479],[-71.04279755154879,42.28013402176404],[-71.0427423920884,42.28009620539502],[-71.04271286463984,42.28004010859251],[-71.04269657094038,42.27999366893955],[-71.04271225182531,42.27997150370484],[-71.04267391886563,42.27995790410937],[-71.04263586927001,42.27990506397318],[-71.04262338459249,42.27984272295776],[-71.04263197819397,42.27977854552088],[-71.04265052357476,42.27971797292251],[-71.04267984814514,42.27964866435037],[-71.04268989970085,42.27958723504546],[-71.0427298429383,42.27953141211295],[-71.04273879657393,42.27946805897818],[-71.04273929776124,42.27939863383705],[-71.04276733244843,42.27930324902766],[-71.04279937971135,42.27921529060527],[-71.04279139979577,42.27914308846707],[-71.04276882401007,42.27909662200813],[-71.04269557021287,42.27910895537541],[-71.04265489043701,42.27911318329929],[-71.04262015486889,42.27911304498444],[-71.0425792048498,42.27910382572667],[-71.04252908506666,42.27908496636227],[-71.04247892644936,42.27907131959621],[-71.04241658860192,42.27905597852791],[-71.04224355096689,42.27906955709812],[-71.04219211223388,42.27908005582939],[-71.04208635162212,42.27909033438229],[-71.04200838453551,42.27909002352152],[-71.04197352120345,42.27910772317681],[-71.04195748362741,42.27912824113169],[-71.04192263649402,42.27914319310041],[-71.04184096346056,42.27914451580765],[-71.0421105697372,42.27870460542088],[-71.04222940813418,42.27857226317251],[-71.04233295111517,42.27851038357905],[-71.04245609203637,42.27839589781573],[-71.04252014773304,42.27832672401502],[-71.04258420219031,42.2782583739539],[-71.04266267985965,42.27818816273397],[-71.04277355456681,42.27813427064741],[-71.0428255213894,42.2781015478867],[-71.04285172886914,42.27810604299501],[-71.0428817462024,42.27809381385693],[-71.0428770611,42.27807760409431],[-71.0428638067534,42.27807069190523],[-71.04287632291944,42.27802601267945],[-71.04290903982897,42.2779986997353],[-71.04294596467943,42.27800214179983],[-71.04295826266501,42.27798819456802],[-71.04294132069975,42.27797989564635],[-71.04294773399992,42.27796208248894],[-71.04299443188218,42.27794278656685],[-71.04302436123726,42.27794290564898],[-71.04303665645105,42.27792950668454],[-71.04302721279889,42.27790642035879],[-71.04302730387131,42.27789379661967],[-71.04308255261087,42.27786739795031],[-71.04312345364147,42.27788347627614],[-71.04313646718992,42.27787200231328],[-71.04311409903899,42.27784804080366],[-71.04313205119321,42.27781847591528],[-71.04316694879508,42.27779638524802],[-71.04320401923627,42.27783056158153],[-71.04325588952943,42.27781183261055],[-71.04325715189971,42.27779043463763],[-71.04328531544179,42.27772825440423],[-71.0433157954719,42.27765181261099],[-71.04332942763963,42.27760631399039],[-71.04337753706061,42.27754503681674],[-71.04344510837898,42.27750085188392],[-71.04349118175662,42.27746536035926],[-71.04353302823824,42.27745317716644],[-71.04356442692806,42.27745494770913],[-71.04357520872644,42.27744511238881],[-71.04357064059981,42.27741298749376],[-71.043605634565,42.27737662901334],[-71.04366141369124,42.27732800629844],[-71.04372266616406,42.27728900707232],[-71.0437709063291,42.27726065987491],[-71.04380335914816,42.27726957037191],[-71.04381304482528,42.27725890869535],[-71.0438084836011,42.27722513717517],[-71.04383756741527,42.27718875514921],[-71.04388807611035,42.2771532810802],[-71.04396522956193,42.27711270180905],[-71.04400388307936,42.27708157141397],[-71.04405317614244,42.27706118519017],[-71.04410260576182,42.27702131594656],[-71.04418073145888,42.27699940014996],[-71.04424929409581,42.27697195538261],[-71.04433000898612,42.27694922597799],[-71.04433802758251,42.27696434963408],[-71.04432603045537,42.27698845006816],[-71.04431252987563,42.27701611245205],[-71.0443028032918,42.27703281416714],[-71.04431822504354,42.27704632143573],[-71.04435337935267,42.27703932417047],[-71.04439653153069,42.2769994325983],[-71.044410077468,42.27696545833316],[-71.04443881225124,42.27697737353237],[-71.04444965121856,42.27696040162421],[-71.04447752511031,42.27693828450102],[-71.0445317026344,42.27690639261623],[-71.04454410690117,42.2768770800981],[-71.04460776116468,42.27686388641714],[-71.04467709329195,42.27688282105289],[-71.04467830979917,42.27686773403168],[-71.04466557638827,42.27683996760507],[-71.04475907340246,42.2768386924679],[-71.04481395570011,42.27686305801722],[-71.04481782896265,42.27683810245654],[-71.04490439043954,42.27682499669182],[-71.04495459904882,42.27683150857639],[-71.04500724399327,42.27685833381025],[-71.04506018745754,42.27684427636837],[-71.04513438112699,42.27685527127166],[-71.04515824990035,42.27687594501123],[-71.04517970275631,42.27687328853106],[-71.04518938574246,42.27686262312688],[-71.04525171543004,42.27687906104489],[-71.04529117010455,42.27689074387992],[-71.04532132418888,42.27691116697451],[-71.04539303804516,42.2769070627511],[-71.04546499018834,42.27692161648386],[-71.04554051533677,42.27695319920723],[-71.04562794272994,42.27697385062586],[-71.04571897149809,42.27700741671779],[-71.04580007049074,42.27703435412454],[-71.04588737488335,42.27707202065582],[-71.04597024530585,42.27710994148507],[-71.04605740364036,42.27716818651952],[-71.04613724278414,42.27721652529944],[-71.0462052377044,42.27726756136192],[-71.04628883385207,42.27730713148635],[-71.04637275828141,42.27735301579617],[-71.04643120187254,42.27739605708823],[-71.04651098463719,42.27745235049086],[-71.04660069832593,42.27751499779065],[-71.04668900192891,42.27756803408232],[-71.04677625776718,42.2776128319663],[-71.04688369067404,42.27767829309417],[-71.04698786473281,42.27773413589568],[-71.04709645833395,42.27779246646976],[-71.04717291908321,42.27784792432456],[-71.04726170685416,42.27788559474544],[-71.0473009240263,42.27793047835193],[-71.04729581372807,42.27797326598428],[-71.0472667778662,42.2780033370139],[-71.04722927855502,42.27802816099825],[-71.04722904906082,42.27806026682411],[-71.04727429445391,42.27808898398943],[-71.04733083505344,42.27808838395762],[-71.04738275168269,42.27806251838157],[-71.0474295930905,42.27802346310094],[-71.04747567170654,42.27798714712942],[-71.04750449304429,42.27798726067856],[-71.04752325060009,42.27805154803517],[-71.04754557101224,42.27808209603273],[-71.04761669597752,42.27805740349009],[-71.04767178617018,42.27805295687047],[-71.04773555683744,42.27802302341748],[-71.04779587011305,42.27801173336829],[-71.04785349684857,42.27801470617054],[-71.04791432241446,42.27803525021177],[-71.04796959509261,42.27805687074072],[-71.04810460142163,42.27809033249861],[-71.04835821366082,42.27822853672969],[-71.04841091495948,42.27824850117292],[-71.0484429033102,42.27827085730347],[-71.04847053233958,42.27828331452465],[-71.04853378141196,42.27832637092025],[-71.04854224303737,42.27833189064669],[-71.04854589734221,42.27833712228564],[-71.04855067165896,42.2783415309451],[-71.04856608877708,42.27835585959652],[-71.04858038880228,42.27837128312943],[-71.04859321903093,42.27838642809117],[-71.04859686555423,42.27839275266975],[-71.04860524700378,42.27840952500556],[-71.04860890182461,42.27841502583601],[-71.04861478298726,42.2784194397429],[-71.04862914048239,42.27842663199428],[-71.04864463166328,42.2784310827645],[-71.04866635521871,42.27844187187127],[-71.04867446424936,42.27844464516819],[-71.04870803470703,42.27845273578379],[-71.04872614182814,42.27845280692752],[-71.04874423404355,42.27845480016387],[-71.04875974943754,42.27845568399987],[-71.04877637976126,42.27845492645382],[-71.04878375950993,42.27845660210548],[-71.04879813361136,42.27846214774053],[-71.04880401822832,42.2784657387712],[-71.04881095788089,42.27847728815249],[-71.04881350660473,42.27848251273871],[-71.04881564303781,42.27849404775305],[-71.04881818393915,42.27850037068215],[-71.04882184658798,42.2785047758636],[-71.04882884878988,42.27850754480172],[-71.04883734954267,42.27850757819296],[-71.04884586375947,42.27850487020371],[-71.04885553632458,42.27849612660842],[-71.04886258225702,42.27849258546919],[-71.04887219106352,42.27849262321006],[-71.04889842898326,42.27849190428189],[-71.04891431293858,42.27849278864419],[-71.04893461076924,42.27849643717289],[-71.0489560249741,42.27849926270046],[-71.04896561255399,42.27850177079072],[-71.04897631453187,42.27850373316896],[-71.04898739770479,42.27850460137031],[-71.04899810384805,42.27850546809012],[-71.04900512436407,42.27850549565665],[-71.04901364271838,42.27850305686277],[-71.04904137697997,42.27850042252362],[-71.04905097749204,42.27850128489749],[-71.04907493923153,42.27850933587932],[-71.04908196905178,42.2785077159171],[-71.04909049520306,42.27850418147539],[-71.04909753060114,42.27850228874135],[-71.04911674921257,42.27850154310746],[-71.04913377025562,42.27849886488946],[-71.04914930303835,42.27849645632084],[-71.04916001403818,42.2784973221443],[-71.04916739380829,42.27849899687099],[-71.04917916794096,42.27850617891317],[-71.04918764675837,42.27850895362508],[-71.04919614508694,42.27850898698025],[-71.04921388832463,42.27850823373885],[-71.0492297722821,42.2785091189578],[-71.04923789498599,42.27850997551629],[-71.04924526573764,42.27851274767598],[-71.04925114817246,42.27851716065464],[-71.04926439770577,42.27852434847807],[-71.04927141163984,42.27852547167521],[-71.04928100750958,42.27852715779193],[-71.04930501761663,42.27852807578854],[-71.04932055181284,42.27852649098259],[-71.04932904550796,42.27852734628937],[-71.04934341019457,42.27853371289827],[-71.04936037440892,42.27853817025143],[-71.04936736854117,42.27854258848609],[-71.04937912903684,42.27855169170768],[-71.0493864856544,42.27855611136328],[-71.04939497470659,42.27855779042722],[-71.04941158431048,42.27855977774173],[-71.04942966853405,42.27856341299719],[-71.0494381656577,42.27856344632971],[-71.04946441503681,42.27856163074409],[-71.04948950247265,42.27856721651444],[-71.04951463721495,42.27856649221813],[-71.04954126102109,42.27856385070203],[-71.04955680765097,42.27856034736018],[-71.04957602043604,42.27856042270592],[-71.04959896200594,42.2785561218767],[-71.04962152796556,42.27855264245002],[-71.04964222880174,42.27855162434561],[-71.04966846574264,42.27855172721729],[-71.04968508241591,42.27855289164],[-71.04970317322983,42.27855543120547],[-71.04972013674843,42.27856016129543],[-71.04973451512596,42.27856460845587],[-71.04975849108611,42.27857101539105],[-71.0497809821764,42.27857823938076],[-71.04979057566224,42.27857992274453],[-71.04980609452528,42.27857998357266],[-71.04982046875693,42.27858552727911],[-71.04983632031281,42.27859080488125],[-71.04984444424774,42.27859166140161],[-71.04985882971397,42.27859528389362],[-71.04987583346758,42.27859452585123],[-71.04988287347453,42.27859181200789],[-71.0498866068891,42.27858661116449],[-71.04989143664656,42.2785830630781],[-71.04997042933152,42.27859489652868],[-71.04997892181304,42.2785957544835],[-71.04999551096637,42.27860130684608],[-71.05001248230272,42.27860494125061],[-71.05001837527216,42.27860770937146],[-71.0500231426539,42.27861294082172],[-71.05003051930376,42.27861488917367],[-71.05004972747305,42.27861578730191],[-71.05006523706047,42.27861749651938],[-71.05008187104163,42.27861673969884],[-71.0500974140496,42.27861323176824],[-71.05010481259758,42.27861243876863],[-71.0501118319136,42.27861246626276],[-71.05011811292856,42.27861249086467],[-71.05013955135239,42.2786117483524],[-71.05017800127868,42.27860915660818],[-71.0501961325635,42.27860566060131],[-71.05023685390994,42.27859511722487],[-71.0502635088535,42.27858808757074],[-71.05028610716711,42.27858021824706],[-71.05030315571679,42.27857314917011],[-71.05031984107225,42.27856498299599],[-71.05032726494679,42.27856062126734],[-71.05034026147996,42.27855189146154],[-71.05034657244558,42.27854752537471],[-71.05035478357014,42.27853575810619],[-71.05035864234549,42.27851272087101],[-71.05036353756145,42.27850011774088],[-71.05036726971242,42.27849491777734],[-71.05037332168376,42.27847545794115],[-71.05037340544554,42.27846365795497],[-71.05038198313591,42.27845216851337],[-71.05039501740139,42.27843794788119],[-71.050408397273,42.27842730101554],[-71.05043252739497,42.27841147715113],[-71.0504529277917,42.27840085325771],[-71.05046995557502,42.27839653000878],[-71.05048660553932,42.27839385373947],[-71.05052985852205,42.27839127797436],[-71.0506233482331,42.27839082090669],[-71.0506665841606,42.27839099005714],[-71.05068244500045,42.27839462001853],[-71.05069795457632,42.27839632554954],[-71.05071460018416,42.27839392022238],[-71.05073270486605,42.2783939910403],[-71.05074820980019,42.27839652212715],[-71.05078072646012,42.27839664930711],[-71.05079735575796,42.27839671434448],[-71.05082989529369,42.27839327368638],[-71.05085396543556,42.27838623378729],[-71.05088616171685,42.27837922385731],[-71.05090540457468,42.2783757338858],[-71.05091390631479,42.27837494154645],[-71.0509212931441,42.27837579600899],[-71.05092940105271,42.27837856914199],[-71.05093677306266,42.27838134299849],[-71.05094379477806,42.27838137045126],[-71.05095006993049,42.278382218765],[-71.0509570892214,42.27838224620749],[-71.05097740781812,42.27838314762185],[-71.05100621571759,42.27838518239284],[-71.05103131682428,42.27838884842694],[-71.05103869663127,42.27839052303343],[-71.05104716966329,42.27839412316612],[-71.0510552928682,42.27839525239085],[-71.05106379653604,42.27839418815543],[-71.05107604417722,42.27838710199963],[-71.05108418319257,42.27838548715066],[-71.05111413343072,42.27838286007214],[-71.05113817948559,42.27837938523212],[-71.0511611138344,42.27837590784335],[-71.05120808352918,42.27836978113436],[-71.05125465990042,42.27836749177519],[-71.0512631606357,42.2783675249869],[-71.05127167375622,42.2783656387935],[-71.05127760443756,42.27836291692974],[-71.05128612144101,42.27836048246397],[-71.05130387118673,42.27835862965148],[-71.05131606924068,42.27835785442301],[-71.05133529264423,42.27835710663632],[-71.05135452481218,42.27835443672686],[-71.05137006427552,42.27835175239071],[-71.05138669356212,42.27835181734274],[-71.05141814561598,42.27834563083824],[-71.05143480137956,42.27834212797321],[-71.05145553587357,42.27833617149415],[-71.05146999471636,42.27832909393166],[-71.05147967346382,42.27831925086684],[-71.05148087015371,42.27830690874045],[-71.0514857580916,42.27829512841439],[-71.05149396242626,42.27828445671091],[-71.05149878965237,42.27828090764699],[-71.05151325454567,42.27827382920236],[-71.05152176789753,42.27827139380457],[-71.05154581921377,42.27826682412753],[-71.05155916002063,42.27826166254167],[-71.05157100311797,42.27825896374657],[-71.0515843220896,42.27825654350502],[-71.05160838043292,42.27825115096245],[-71.05163355145523,42.27824493717757],[-71.05166836569973,42.27823355005621],[-71.05170465557607,42.27822298796249],[-71.05173575405716,42.27821432865061],[-71.05175132114285,42.27820807645725],[-71.05176945684296,42.27820375643958],[-71.05180314455572,42.2781956555004],[-71.05186086120736,42.27818545336085],[-71.05188970665856,42.27818199979036],[-71.05191373729662,42.27818017318883],[-71.05193888545399,42.27817752626123],[-71.0519651373055,42.27817515642619],[-71.0519736515852,42.27817327108571],[-71.0519880945613,42.27816893752959],[-71.05201585258668,42.2781627328516],[-71.05203844229312,42.27815568512995],[-71.05210099743667,42.27814083815446],[-71.05212616134258,42.27813544621371],[-71.05215020722255,42.27813197476274],[-71.05216241105299,42.27813037478661],[-71.05217424948205,42.27812850059173],[-71.05218165596457,42.27812605902887],[-71.0522042604147,42.27811709277963],[-71.05223685138451,42.27810651609709],[-71.05226090065835,42.27810221905542],[-71.05228127080748,42.27809598821462],[-71.05228977732294,42.27809519849315],[-71.05232086984562,42.27808736187984],[-71.05235236218425,42.27807595800255],[-71.05236904061402,42.27806888717716],[-71.05237756941621,42.27806425682973],[-71.05238720337219,42.27806072646127],[-71.05241126181652,42.27805478456449],[-71.05242681592996,42.2780501815902],[-71.0524486847235,42.27804065873798],[-71.05246165637084,42.27803522281627],[-71.05248459512994,42.27803092140081],[-71.05249052815245,42.27802819948368],[-71.0524990598623,42.27802384193139],[-71.05249433109354,42.27801312246761],[-71.0525783798882,42.2779893018935],[-71.05271203241745,42.27795332494],[-71.05287048458536,42.2779111341307],[-71.05306892688795,42.27785757209919],[-71.0531592678276,42.27783212712402],[-71.05321076685601,42.27781284573869],[-71.05327340921683,42.27778537257106],[-71.05333824366308,42.27776147580752],[-71.05339383499761,42.27773864324138],[-71.05358536720063,42.27761644921602],[-71.05367878519573,42.27762669042686],[-71.05369204277774,42.27763278029751],[-71.05369940250405,42.27763747428241],[-71.05371592985632,42.27765180835537],[-71.05372179850309,42.27765786681114],[-71.05372654362657,42.27766611854859],[-71.05373129843677,42.27767299555592],[-71.05373972245964,42.27768373202715],[-71.05374814407342,42.27769446668773],[-71.05376246238259,42.27770796839079],[-71.05376945767794,42.27771156348192],[-71.05377534493162,42.27771515426784],[-71.05379932558846,42.2777207338974],[-71.0538078110087,42.27772241262136],[-71.05381854584158,42.27771971289084],[-71.05382816034249,42.27771892555918],[-71.05383888868154,42.27771731967358],[-71.05384851184562,42.27771461382139],[-71.05385702602004,42.27771272654057],[-71.0538725792355,42.27770839616021],[-71.05388592841682,42.27770131308383],[-71.05391110262768,42.27769509971356],[-71.05392663503802,42.27769268959821],[-71.05393404697257,42.27768997335039],[-71.05393888873925,42.27768450568819],[-71.053940003788,42.27768368713873],[-71.05394259299942,42.27768287341408],[-71.05394370104125,42.27768287771725],[-71.0539459219741,42.27768288634243],[-71.05394851117907,42.27768207351791],[-71.05394962043324,42.27768207782572],[-71.05395220748052,42.2776820878726],[-71.05395331552234,42.2776820921757],[-71.05395553281832,42.27768210078655],[-71.05395811865331,42.27768211082858],[-71.05395922332539,42.27768293799839],[-71.05396181037275,42.27768294804503],[-71.05396291261394,42.27768377610566],[-71.05398804453621,42.27768304992061],[-71.05400135289366,42.27768227871905],[-71.05401319698457,42.27767958057679],[-71.054026504135,42.27767880846731],[-71.05403834579961,42.27767611031306],[-71.05404577051991,42.27767174924828],[-71.05405060456181,42.27766737722403],[-71.05405654979002,42.2776627349205],[-71.05407210972888,42.27765675697895],[-71.05408173650436,42.27765405202159],[-71.05409283987821,42.27765135009508],[-71.05411431002436,42.27764621977332],[-71.05413949987562,42.27763726138024],[-71.05416469792965,42.27762748103396],[-71.05418875146992,42.27762236072612],[-71.05421281274256,42.27761614116944],[-71.05422836348539,42.27761181073143],[-71.05424282548356,42.27760473373325],[-71.05426838554331,42.27759605134217],[-71.05430804072228,42.27757919034112],[-71.05432584277231,42.27757020413952],[-71.05434177118869,42.27756422939192],[-71.05435732384177,42.27755962435052],[-71.0543728675469,42.27755611854613],[-71.05440397139732,42.27754745853422],[-71.05444508500389,42.27753334637705],[-71.05448584933512,42.27751649141805],[-71.05450884037259,42.2775050548753],[-71.05452551841132,42.27749798373593],[-71.05455218519648,42.27748930827519],[-71.05456664135039,42.27748305319319],[-71.0545811054624,42.27747514877932],[-71.05459778589716,42.27746807943939],[-71.05463256831683,42.27746108119116],[-71.05464701411053,42.27745647001803],[-71.05465554559501,42.27745211230504],[-71.05466406643764,42.27744857833033],[-71.05468223622,42.27743986809283],[-71.05470372961553,42.27743089614469],[-71.05471225988039,42.27742653842278],[-71.05472042375406,42.27742135639995],[-71.05473637816445,42.27741236297183],[-71.05475083886064,42.27740528410415],[-71.05478194546247,42.27739552472689],[-71.05478787517816,42.27739307817226],[-71.05480975108405,42.2773824601267],[-71.054867616691,42.27735140326417],[-71.05488692482461,42.27733803021873],[-71.05489655608676,42.27733450233073],[-71.05491209444527,42.2773320903049],[-71.05492025442533,42.27732745833985],[-71.05494694737753,42.27731521317494],[-71.05496030335578,42.27730730622005],[-71.05497108363342,42.27729829361104],[-71.05498188007049,42.27728680792248],[-71.0549941472626,42.27727615531271],[-71.05502643290325,42.27725679597088],[-71.05505315278324,42.27724071017933],[-71.05507354839104,42.27723008544862],[-71.05509393990799,42.27722055997239],[-71.05514444472973,42.27718508366409],[-71.05516264351529,42.27717170537527],[-71.05518084226156,42.27715833158496],[-71.0552038809964,42.2771405839414],[-71.05522283657402,42.27712474173475],[-71.05524845168217,42.27710782693903],[-71.05527853096051,42.2770865359286],[-71.05530158332299,42.27706632147907],[-71.05531124727878,42.27705812739573],[-71.05533870672252,42.27704149431398],[-71.05536656072562,42.27702184402634],[-71.05537733655125,42.27701310505495],[-71.05539075504356,42.2769969658918],[-71.05539782305543,42.27698985742482],[-71.05540636597642,42.27698385394059],[-71.05542308565352,42.27697047078524],[-71.05544728235422,42.27694559264792],[-71.05547293390478,42.27692346607025],[-71.05550043175971,42.27690134483159],[-71.05552830126894,42.27687895043113],[-71.05554652661706,42.27686228066445],[-71.05556439445756,42.27684369095886],[-71.05557889100572,42.27683112475909],[-71.05558519929619,42.27682758215487],[-71.05559003316115,42.27682321096535],[-71.05559487474383,42.27681773963127],[-71.05559823326519,42.27681336183262],[-71.05560949813623,42.27678760984354],[-71.05561286768977,42.27678131353447],[-71.05563221905139,42.27676190397726],[-71.05565260984787,42.27675210200505],[-71.05565892390486,42.27674773563883],[-71.05571061111957,42.2767015617146],[-71.05573850356384,42.27667587403128],[-71.05575900592046,42.27665015865792],[-71.05578098724142,42.27662444900101],[-71.05580629818226,42.27659847672319],[-71.05582303619555,42.27658262494039],[-71.05584121660431,42.27657199510772],[-71.05585456654457,42.27656491090536],[-71.05586901587645,42.27655975310661],[-71.05588567091797,42.27655625049518],[-71.05590120275423,42.27655439019858],[-71.05591821935026,42.27655171096009],[-71.05593853955578,42.2765517895257],[-71.05595515370071,42.27655377411291],[-71.05596252693061,42.2765565476525],[-71.05597212604899,42.27655740674273],[-71.05599608336458,42.27656628094662],[-71.05601155991698,42.27657265372231],[-71.05601743778755,42.27657706723767],[-71.05601999401537,42.27658146791272],[-71.05602209780412,42.2765976653525],[-71.05602687129151,42.27660207459832],[-71.05604239088821,42.27660213458855],[-71.05604979005111,42.27660051742905],[-71.056056833234,42.27659779961915],[-71.05607281103917,42.27658523818216],[-71.05608578594494,42.2765792499768],[-71.05609429503838,42.27657736431152],[-71.05612055617348,42.2765738978923],[-71.05614460460203,42.27656960003616],[-71.05615905461677,42.27656416851055],[-71.05617241027906,42.27655626231385],[-71.05618092808896,42.2765538238878],[-71.05618942373431,42.27655385671619],[-71.05619646568114,42.27655114069356],[-71.05620130596579,42.27654567112954],[-71.05620503752871,42.27654047007398],[-71.05620516248096,42.27652263548948],[-71.05622187974582,42.27651007418805],[-71.0562353243027,42.27648982242747],[-71.05624501113323,42.27647833323287],[-71.05626794572558,42.27647485482778],[-71.05628459830444,42.27647135124881],[-71.05628472324045,42.27645351576366],[-71.05627778439566,42.27644168864224],[-71.05624534946364,42.27643003850952],[-71.05620006850266,42.27640599012979],[-71.05616299735368,42.27637017224276],[-71.0561451362352,42.27633525146224],[-71.05614070115647,42.27628254929726],[-71.05615432311841,42.27623732193273],[-71.05617735183067,42.27622039873487],[-71.05620639155876,42.27618922620262],[-71.05622322477473,42.27615992865367],[-71.05622819047935,42.27613689819726],[-71.05622574647774,42.27611630595042],[-71.0562034566683,42.27608054698584],[-71.05637927942317,42.27545665937324],[-71.05625760042003,42.27483958018952],[-71.05626474852355,42.27466316121986],[-71.05636354420673,42.27464323556541],[-71.05646865948962,42.27467108469264],[-71.05655480469137,42.2747161472671],[-71.05665042745872,42.27478045530271],[-71.05668580465499,42.27484672387839],[-71.05671549408095,42.27493410248452],[-71.05681862987002,42.27492736467422],[-71.05682615610297,42.27485522424355],[-71.05683277059333,42.2748080493953],[-71.05689947086729,42.27467466794209],[-71.05684995503317,42.27456937600746],[-71.05678388675736,42.27455924110092],[-71.05665849425446,42.27463093021436],[-71.05647323244244,42.2745456959446],[-71.05641589022024,42.27450266400825],[-71.05632880989512,42.27443262590847],[-71.05627027023588,42.27440221517249],[-71.05603640744572,42.27439774438223],[-71.05554218181629,42.27384782874504],[-71.05545755615556,42.27379673472048],[-71.05502341113804,42.27342624007052],[-71.05470933215587,42.27321729043774],[-71.05464714515729,42.27318055266618],[-71.05464024604227,42.27316351371267],[-71.05464286132148,42.27310671898616],[-71.05459277092761,42.27308402156255],[-71.05450788465994,42.27301783576745],[-71.0543902242236,42.27288291395239],[-71.05433703845641,42.27277486340061],[-71.05440285566489,42.27276798204944],[-71.05452642870357,42.27279782494747],[-71.05462703279231,42.27283553465514],[-71.054676780834,42.27290707779522],[-71.05469940509987,42.27294722918013],[-71.05469921606523,42.27297412061707],[-71.05471097944836,42.27298294692076],[-71.05474681964088,42.27298308587476],[-71.05477231362354,42.27298318470926],[-71.05479638463653,42.27297532020857],[-71.05480833723205,42.27295670767934],[-71.05484437123813,42.2729299542842],[-71.05489240137177,42.27293014044096],[-71.05491770759738,42.27295713158552],[-71.05507473597117,42.27295774002618],[-71.05515990674718,42.27293117687955],[-71.0552798629293,42.27294947832412],[-71.05552092003614,42.27298087248946],[-71.05572226367325,42.27298521765833],[-71.05587352567268,42.27296522258377],[-71.05603234119209,42.27292220325104],[-71.05615613411562,42.27286752532694],[-71.05623246351178,42.272783847758],[-71.0563721059164,42.27273472091385],[-71.05651593576738,42.27272100563751],[-71.05669871406515,42.2726852137478],[-71.05683664282418,42.27266955493794],[-71.05701055267438,42.27268724167476],[-71.05723485690035,42.2726837167444],[-71.05737631160336,42.27269221801149],[-71.05747604626201,42.27269616846216],[-71.05758648530851,42.27270180852377],[-71.05760864892912,42.27275540453931],[-71.05765523041293,42.27280470470343],[-71.05768010219344,42.27284129803584],[-71.05773390121627,42.27286181254363],[-71.05778933847384,42.2728603802519],[-71.05790436360033,42.27284380638787],[-71.058022282024,42.27283630423139],[-71.05812281310399,42.27283230117273],[-71.05821782320602,42.27282470887294],[-71.05829104095267,42.27281675538794],[-71.05837963281724,42.27282889820349],[-71.05846312671558,42.27288355364535],[-71.0585030562597,42.27288013923311],[-71.05848055916725,42.27282105204165],[-71.05841366134466,42.27277085122054],[-71.05832987612382,42.27275818042963],[-71.0580824994919,42.27278494567258],[-71.05798414156128,42.27279527001112],[-71.05784854415836,42.27279474805583],[-71.05773242481686,42.27275588125524],[-71.05766783099577,42.27269334116016],[-71.05767659226156,42.27265577988891],[-71.05764316986294,42.272627112333],[-71.0575989173466,42.2726145932681],[-71.05719593972562,42.27259520337976],[-71.05708798554586,42.27260384238938],[-71.0570052644206,42.27259803597267],[-71.05692008547666,42.27257273557131],[-71.05683624514708,42.27256802128858],[-71.05673526978134,42.27258272615485],[-71.05662245045438,42.27260094862343],[-71.056531245494,42.27259263866997],[-71.05643311363116,42.27257085580634],[-71.05636702008957,42.27256428936698],[-71.05631189754003,42.27257395549444],[-71.05624439041942,42.27261101510031],[-71.0562105611491,42.27264052068823],[-71.05618520632353,42.27267335233781],[-71.05615712813203,42.27272565519918],[-71.05611615337628,42.27277269813277],[-71.05603412418384,42.272825890806],[-71.05586243409948,42.27286089983953],[-71.05574812162759,42.27288104143339],[-71.05559707682075,42.27286975421709],[-71.055493127283,42.27283449925478],[-71.05540444612153,42.27283498247091],[-71.05533225292507,42.27285528399356],[-71.05525299109125,42.27283000436523],[-71.05520882876166,42.27280485972292],[-71.05513593295866,42.27276725965818],[-71.05506283346085,42.27275901776909],[-71.05498502081964,42.27273731328619],[-71.05492428917913,42.27270414741536],[-71.05485105796595,42.27266187597557],[-71.05476715474094,42.27266594153344],[-71.05466151417957,42.27266114114738],[-71.05456613949003,42.27261521934211],[-71.05444378666276,42.27256946829071],[-71.05438326321773,42.27250694122363],[-71.0543441995617,42.27243983020652],[-71.05430257350247,42.27236942130917],[-71.05431638028814,42.27229730176889],[-71.05452239022371,42.27216336287755],[-71.05459637189551,42.27204620205196],[-71.05479885482596,42.27194078782186],[-71.05524146193572,42.27178828281992],[-71.0557143289036,42.27158786899616],[-71.0559942568859,42.27150251127804],[-71.05620303863319,42.27149892746499],[-71.05634599559389,42.27150387060261],[-71.05650377465469,42.27139691040337],[-71.0565525609568,42.27128925459478],[-71.05688241436695,42.27109185158511],[-71.05724691481413,42.27095852012454],[-71.05737006397169,42.27083688075946],[-71.05745377677107,42.27075350541149],[-71.057623319977,42.27065454772093],[-71.0577474902184,42.27059794827732],[-71.05781980002918,42.27056063258333],[-71.05785221737831,42.27052178759536],[-71.05795513403892,42.27038662541474],[-71.05803646477742,42.27027387874963],[-71.05807766930778,42.27019363447129],[-71.05834824969047,42.26996389238771],[-71.05853193363316,42.26990313015465],[-71.05857054308507,42.26987666008115],[-71.05864954312921,42.26956769823506],[-71.05884642822275,42.2693618224697],[-71.05891847301955,42.26936209920098],[-71.05914729029303,42.2693986506907],[-71.05958417630724,42.26937453316823],[-71.05964408889299,42.26941921829321],[-71.05972981426251,42.26947113638326],[-71.05974636347888,42.26953541334692],[-71.05978910855721,42.26960500170271],[-71.05982251124712,42.26963641541554],[-71.05998508598086,42.26968862604032],[-71.06015662047443,42.26972770375563],[-71.06029358711241,42.26968980764139],[-71.06031065667256,42.26962593587446],[-71.0602176658978,42.26955587891803],[-71.06009816752416,42.26947254795381],[-71.0599271807161,42.26940795483434],[-71.05976454216412,42.26931183588733],[-71.05976507420597,42.26923527398769],[-71.05973083776631,42.26916461806129],[-71.05976587319226,42.26912029789406],[-71.05995474006654,42.26905763200221],[-71.06008357608457,42.26901998317841],[-71.06024642061155,42.26903295548137],[-71.06052177920178,42.2689645814626],[-71.06053893711234,42.26888808678248],[-71.06072739863768,42.2688833186403],[-71.06101089843322,42.26881332882976],[-71.06121777834743,42.26876308013708],[-71.06129403291085,42.26879547642617],[-71.06137079212328,42.26880839464123],[-71.06143119296183,42.26878283061809],[-71.06147468587554,42.26874457699022],[-71.06153466510074,42.26872614713897],[-71.06154360896608,42.26866196686326],[-71.0614837819259,42.26860465894148],[-71.06150157296021,42.26848975041739],[-71.06137356791898,42.26840748395404],[-71.06130566582227,42.26834301105616],[-71.06130165835418,42.26822801928238],[-71.06142390000498,42.26807536189762],[-71.06150973529076,42.26800434300692],[-71.0617288338123,42.26789650866706],[-71.0618995909896,42.26783377136798],[-71.06208136774869,42.26772662045315],[-71.0623125874429,42.2675752014198],[-71.06239812453602,42.2675478114317],[-71.06251911673915,42.26757516460606],[-71.06256677131556,42.26762968059681],[-71.06266343567964,42.26770222011223],[-71.06277205681853,42.26775614529574],[-71.06284372609872,42.26781075259753],[-71.06288066728271,42.26786522587001],[-71.06295332606818,42.2679368508777],[-71.06307264620409,42.26804597112153],[-71.06309745989131,42.26809134558766],[-71.0630957994359,42.26817146662807],[-71.0630484399058,42.2682346788829],[-71.06299905331763,42.26827016204005],[-71.06291339917959,42.2683151161256],[-71.06288888791785,42.2683871914696],[-71.06288845622625,42.26844975758602],[-71.06291338816392,42.26847729384878],[-71.06296123427335,42.26850436902397],[-71.06299713016406,42.26854895919947],[-71.06309281881003,42.26860365953262],[-71.06312957656566,42.26863069064974],[-71.06326195102488,42.26877635969291],[-71.06332161889134,42.26880320417843],[-71.06344006109026,42.26882615677066],[-71.06351589251256,42.26881299892597],[-71.06360129858474,42.2688042673139],[-71.06390001608277,42.2687768650265],[-71.06397686959534,42.2687763303656],[-71.06403450394819,42.2687765491758],[-71.06409691418547,42.26878117688341],[-71.06416374599276,42.26878692061281],[-71.06424902413127,42.26879712239487],[-71.06428148923735,42.26880438141089],[-71.06431246626842,42.26881245585236],[-71.06435448605069,42.2688268842302],[-71.06439501248991,42.26884377737107],[-71.0644355169842,42.26886368914432],[-71.06447750218646,42.26888333282511],[-71.06450732800273,42.26889771490137],[-71.0645386362521,42.26891210529197],[-71.06459342809565,42.26894990626874],[-71.06466032866709,42.26899982894123],[-71.06468052268509,42.26901774237631],[-71.0647007152283,42.26903675417694],[-71.06470912987216,42.26904913468469],[-71.06471605010162,42.26906342898232],[-71.06472224411947,42.26907580107213],[-71.06472805766848,42.26909009207461],[-71.06473166107018,42.26910355452016],[-71.06473839965381,42.26914446480757],[-71.06474181264063,42.2691856424855],[-71.06474140917946,42.26924436528815],[-71.06473621331378,42.26930142416497],[-71.06473238930167,42.26932006853593],[-71.06472745738449,42.26933870960776],[-71.06472031531818,42.26935652032197],[-71.06471283615011,42.26936993715969],[-71.06470314264557,42.26938225083027],[-71.06469345655971,42.26939401354017],[-71.06468377558708,42.26940467879434],[-71.06467187437914,42.26941615761182],[-71.06465143952123,42.26943309595167],[-71.06462953098691,42.26944892672527],[-71.06460652139171,42.26946393314054],[-71.06458017690902,42.26948002438133],[-71.06456682823162,42.2694871087029],[-71.06455495029861,42.26949501967955],[-71.06454416824359,42.26950485966687],[-71.0645330075992,42.26951634307859],[-71.06452331971852,42.26952783027328],[-71.06451511306257,42.26953932488462],[-71.06450763463124,42.26955191973121],[-71.06450163932587,42.26956424560789],[-71.06449448396937,42.26958397661212],[-71.06448695957341,42.26960343252302],[-71.06448202555377,42.26962289465572],[-71.06447967028478,42.26964264386229],[-71.06447793731982,42.26967995861846],[-71.06448025751608,42.26971838441906],[-71.06449514536476,42.26981009573419],[-71.06450194542536,42.2698422282699],[-71.0645091139867,42.26987436220235],[-71.06450891214925,42.26990372314928],[-71.0645077608463,42.26991003173612],[-71.0645077174746,42.26991634092308],[-71.06450768162857,42.26992155536528],[-71.06450763823827,42.26992786725307],[-71.06450870275499,42.26993418334217],[-71.06451347067443,42.26993941510017],[-71.06451712517574,42.2699449154289],[-71.06452189309043,42.26995014808681],[-71.06453470738805,42.26996720977857],[-71.06454566425263,42.26998591288796],[-71.06454894702064,42.2699922364873],[-71.06455259894688,42.2699982886932],[-71.06455735934367,42.27000461609435],[-71.06456212929184,42.27000902497736],[-71.06456690853922,42.2700126101145],[-71.06457279568322,42.27001620125272],[-71.06457537042624,42.27001813226989],[-71.06457905497145,42.27001979200089],[-71.06458125758985,42.27002172070681],[-71.06458382545931,42.27002447547865],[-71.06458603118362,42.2700261287023],[-71.06458859541701,42.27002888346025],[-71.0645896800159,42.2700324554889],[-71.06459075895928,42.27003685037666],[-71.06459072878177,42.27004124105932],[-71.06459180893756,42.27004563595167],[-71.06459066655188,42.27005029521059],[-71.06459063637436,42.27005468589326],[-71.06458949708168,42.27005907147058],[-71.06458835778261,42.27006345794815],[-71.06458685051312,42.27006811942485],[-71.06458459320514,42.27007414742469],[-71.06458085963639,42.27007961973983],[-71.06457860042769,42.27008592412662],[-71.0645748630769,42.27009194651475],[-71.06457002157782,42.27009741732973],[-71.06456518197146,42.27010261265774],[-71.06456034923242,42.27010698513099],[-71.06455439983318,42.27011244994397],[-71.06454809068715,42.27011681681865],[-71.06454214761129,42.27012118508106],[-71.06453621827146,42.27012390763414],[-71.06453027640624,42.27012827590053],[-71.06452545943239,42.27013017798983],[-71.06451916792756,42.27013180169455],[-71.06451212947546,42.27013451824003],[-71.06450620458996,42.27013641612729],[-71.06447627645923,42.27013630263345],[-71.06444599546035,42.27013426743875],[-71.06440759586224,42.27013055388125],[-71.06440279208863,42.27013053566071],[-71.06439688727482,42.27012969038314],[-71.06439098124903,42.27012884510066],[-71.06438617626335,42.27012882687482],[-71.06438026457947,42.27012880445089],[-71.06437546201813,42.27012878623382],[-71.06436954912212,42.27012876380473],[-71.06436473645591,42.27013039131003],[-71.06435844307104,42.2701322877918],[-71.06435362675548,42.27013391708341],[-71.06434880977588,42.2701358191653],[-71.0643454678434,42.27013827693009],[-71.06434065329374,42.27014017812051],[-71.06433583064199,42.2701429048615],[-71.06433211145372,42.27014645866902],[-71.06432840224913,42.27014891323942],[-71.06432468184796,42.27015246704205],[-71.06432244148924,42.27015602645935],[-71.06431982899825,42.27015958446488],[-71.06431756410785,42.27016671080521],[-71.06431491954334,42.27017493227901],[-71.06431375689777,42.27018288658175],[-71.06431370218201,42.27019084238677],[-71.06431364744763,42.27019880089269],[-71.06431611838745,42.27021582516791],[-71.06431821720848,42.2702328462308],[-71.06432290586427,42.27024960432554],[-71.06432759830554,42.27026581234686],[-71.06435709006089,42.2703290384412],[-71.06436801877695,42.27035130757515],[-71.06437748039018,42.2703727473621],[-71.06438219617618,42.27038538755291],[-71.06438432710074,42.27039774334523],[-71.06438682825907,42.27041037693603],[-71.06438677919813,42.27041751168225],[-71.06438673013102,42.27042464732874],[-71.06438522110213,42.27042903240164],[-71.06438519656848,42.27043260022489],[-71.06438517203482,42.27043616804811],[-71.06438514752593,42.27043973227023],[-71.06438770974556,42.27044330990528],[-71.06438990549006,42.2704460632697],[-71.06439246327042,42.27045046286802],[-71.06439466265188,42.27045321624614],[-71.06439833913518,42.27045569883266],[-71.06440054296301,42.27045762934699],[-71.06440421310046,42.27046121118399],[-71.06441484574231,42.27047277544098],[-71.06442437408928,42.27048433820954],[-71.06443278699584,42.27049699151993],[-71.06444007580015,42.27051128992856],[-71.06444697159222,42.2705291529618],[-71.06444950040454,42.27053794324559],[-71.064452760695,42.27054700999675],[-71.06445750412627,42.27055580957963],[-71.06446224756502,42.27056460826199],[-71.06446847480856,42.27057286698533],[-71.06447543975629,42.2705808494108],[-71.06448277763013,42.27058801307048],[-71.06448755691049,42.27059159911084],[-71.06449233619766,42.27059518425067],[-71.0644982290484,42.27059795253324],[-71.06450411504925,42.27060154096905],[-71.06451000980114,42.27060403286401],[-71.06451590832243,42.27060597648603],[-71.06452216969191,42.27060874346385],[-71.06452917682064,42.27061041489473],[-71.06453768338415,42.27060962516987],[-71.06454469170077,42.27061130020556],[-71.06455207863462,42.27061132821449],[-71.06456758802861,42.27061248269317],[-71.06458199501569,42.27061336019712],[-71.06460707253814,42.2706197682249],[-71.06463103689714,42.27062781778816],[-71.06465499762578,42.27063586733264],[-71.06467305553797,42.27064224513484],[-71.06469111262956,42.27064944851248],[-71.06470287898451,42.27065745182415],[-71.06471354309524,42.27066462537549],[-71.06471832240064,42.27066821050586],[-71.06472309604648,42.27067261939541],[-71.06472898447282,42.27067621052969],[-71.0647352446464,42.27067897749122],[-71.06474224907832,42.27068174907377],[-71.0647496202658,42.27068424655202],[-71.06475662429774,42.27068619435139],[-71.0647640047823,42.27068786808315],[-71.06477211915357,42.27068982098987],[-71.06477950165565,42.2706906718478],[-71.06478910928803,42.27069070825715],[-71.06479723686503,42.27069073905702],[-71.06480574223002,42.27068994840743],[-71.0648190396974,42.27068999879664],[-71.06483234322562,42.27069004920725],[-71.06486594060208,42.27069374172491],[-71.06492574918772,42.27070028127061],[-71.06493413837535,42.27071623047667],[-71.06494583937311,42.27073410988154],[-71.06497343389881,42.27075122841075],[-71.06499733765668,42.27076723457916],[-71.06504289111197,42.27075149149206],[-71.06505969527812,42.2707798211673],[-71.0651648212591,42.27074550612505],[-71.06532627504494,42.27091125249794],[-71.06521567655399,42.27094969378259],[-71.06522517375338,42.27095681875278],[-71.06524903151173,42.27097954818444],[-71.06527288978522,42.27100273496878],[-71.06530257954444,42.27102846017823],[-71.065332259926,42.27105555561114],[-71.06536562682599,42.27108403885613],[-71.06539805981674,42.27111366104621],[-71.06543635934429,42.27114124642403],[-71.06546977724211,42.27116195478201],[-71.06550290224696,42.27118083169839],[-71.06556983189661,42.27120875492313],[-71.06560944779592,42.27122399751524],[-71.065613142511,42.2712240114901],[-71.06561775969264,42.27122402895394],[-71.06562146189184,42.27122312824521],[-71.06562515660686,42.2712231422197],[-71.06563008759738,42.27122247483624],[-71.06563132700884,42.27122133613445],[-71.06563225068754,42.27122133962801],[-71.06563502172369,42.27122135010862],[-71.06563595517203,42.27121975199348],[-71.06563811042233,42.27121976014501],[-71.065639651099,42.27121976597209],[-71.0656418114026,42.27121886033135],[-71.06564304297422,42.27121886498931],[-71.06564550732959,42.27121887430977],[-71.06564673263573,42.27121979275528],[-71.06564919577892,42.27121980207108],[-71.06565042735056,42.27121980672895],[-71.06565165300015,42.27122049829845],[-71.06565255907654,42.27122324586006],[-71.06565409226965,42.27122416637026],[-71.06565408600434,42.27122508015786],[-71.06565407345521,42.27122691043396],[-71.06565529875544,42.27122782977966],[-71.06565529405184,42.27122851579561],[-71.06565527994104,42.27123057384333],[-71.06565527524361,42.27123125895897],[-71.06565526426854,42.27123285966277],[-71.06565525642303,42.27123400392293],[-71.06565401857353,42.27123491485327],[-71.06565400761076,42.27123651375655],[-71.06565398251246,42.27124017430867],[-71.06565518273324,42.27124475150565],[-71.06565607541687,42.27124909886162],[-71.06565728311546,42.27125276227556],[-71.06565971525242,42.27125711725429],[-71.0656633801805,42.27126147599501],[-71.06566674191944,42.27126514755528],[-71.06567041311966,42.27126859160789],[-71.0656740761257,42.27127340769676],[-71.06567898517072,42.27127594171884],[-71.06568357221919,42.27128053172372],[-71.06568848631159,42.27128215285345],[-71.06575178378783,42.2713011419963],[-71.06577114344067,42.27130670436659],[-71.0657806721044,42.27130925585094],[-71.06579019207497,42.27131272201319],[-71.06579970506071,42.27131756111595],[-71.06580797743787,42.27132353711641],[-71.0658162529388,42.27132905757291],[-71.06582943159538,42.27133779625513],[-71.06584384738228,42.27134608315719],[-71.06586195825054,42.27135415534771],[-71.06587976243586,42.27136222727635],[-71.06589880084405,42.27136938735526],[-71.06591908543618,42.27137495139595],[-71.06594306004328,42.27138121721377],[-71.0659670447709,42.27138565274139],[-71.06599102914127,42.27139031784081],[-71.06602087760785,42.27139294519312],[-71.06605227023888,42.27139489323896],[-71.06608120598088,42.27139591818216],[-71.06611107167623,42.27139603101958],[-71.06612186013969,42.27139447013268],[-71.06613389183629,42.27139085764114],[-71.06614468691667,42.27138815338768],[-71.06615670730062,42.27138636937383],[-71.06618320338619,42.27138395400652],[-71.06620938687851,42.27138222348607],[-71.0662392537798,42.27138233629474],[-71.06626819108473,42.27138313251886],[-71.06630295020361,42.27138806512247],[-71.06633802538964,42.27139162864225],[-71.06636786256105,42.27139608528476],[-71.06637863257585,42.27139704156149],[-71.06638817102821,42.27139799138666],[-71.06639893478905,42.27139986144908],[-71.06640629919126,42.27140354899981],[-71.06641335727804,42.27140700491509],[-71.06642072168809,42.27141069156458],[-71.06642745935575,42.27141597659269],[-71.06644187402644,42.27142426341491],[-71.06645629651966,42.27143140777579],[-71.06653404070613,42.27145388208977],[-71.06671631341474,42.27149984812492],[-71.06691379359545,42.27152826302218],[-71.06691665227117,42.27147041830032],[-71.06692382607085,42.27145695335795],[-71.06693713898258,42.2714462565997],[-71.06695165725478,42.27143922143033],[-71.06696980893213,42.2714413479745],[-71.06700671522387,42.27144766142828],[-71.06702363219738,42.27145024156484],[-71.06704023348225,42.27145396119722],[-71.0670737564232,42.27145957674094],[-71.06711128512507,42.27146474911794],[-71.06714850281395,42.27147037766613],[-71.06716971157476,42.27147571719092],[-71.06719154237074,42.27148014524478],[-71.06725149426693,42.27149317622535],[-71.06736282548498,42.27151211948559],[-71.06739052192241,42.271514281919],[-71.06741883848564,42.27151598932578],[-71.06746961139838,42.27152052453684],[-71.0674849093195,42.27153476017838],[-71.06751100072914,42.2715465210083],[-71.06755892646943,42.27156202379568],[-71.06757490854899,42.27156642795281],[-71.06758435997631,42.27157995553343],[-71.06758645088712,42.27158956877655],[-71.06758638377434,42.27159940077154],[-71.06758260474115,42.27161173604748],[-71.06765730145739,42.2716298541446],[-71.06791309226389,42.27155077954846],[-71.06794589908974,42.27152597618711],[-71.06799545000578,42.27143880764697],[-71.06803448250032,42.2713589181141],[-71.06807349931734,42.27128131348616],[-71.06807947211237,42.27126349907573],[-71.06808328844652,42.27124567565446],[-71.06808710979037,42.27122693934099],[-71.06808846418919,42.27120910666046],[-71.06808859046879,42.27119058512812],[-71.06808390740964,42.27115489286749],[-71.06807910273858,42.2711370379235],[-71.06803964236136,42.27104806526057],[-71.06804738685025,42.27103530733457],[-71.06820397736301,42.27094722229607],[-71.06820000058678,42.27095000009509],[-71.06813900004451,42.27100299955286],[-71.06816700013603,42.27108400009008],[-71.06817300031742,42.27111800022224],[-71.06818999946397,42.27121699972967],[-71.06817800038029,42.27134300023252],[-71.06809300035152,42.2715589999497],[-71.06802099957412,42.27177499987624],[-71.0679899999588,42.27194700025994],[-71.06798899972752,42.27211499998071],[-71.06801799959393,42.27221600010141],[-71.0680230001597,42.27228299990563],[-71.06799800023805,42.27245900039531],[-71.06787600005262,42.2729579998596],[-71.06779599958195,42.27325700023757],[-71.06771199962921,42.27354900001555],[-71.06762100015568,42.27389700031787],[-71.06743800022169,42.27457599999862],[-71.0671890002682,42.27550400029956],[-71.06697699959507,42.27625400042573],[-71.06681899961667,42.27678799984938],[-71.06660599953339,42.27752900041092],[-71.06650300018005,42.27790400039459],[-71.06623000034556,42.27883200025491],[-71.06604699964545,42.2795179997366],[-71.06591999983635,42.27992799958948],[-71.065635,42.279991],[-71.065507,42.280027],[-71.064778,42.280234],[-71.064106,42.280429],[-71.063784,42.280531],[-71.063384,42.280657],[-71.062214,42.281015],[-71.061691,42.281168],[-71.061475,42.281242],[-71.061318,42.28129],[-71.06071703246535,42.28145596727881],[-71.05989,42.281721],[-71.059245,42.281908],[-71.058932,42.281991],[-71.058904,42.281998],[-71.058601,42.282087],[-71.05846200000001,42.282128],[-71.057963,42.282259],[-71.05779,42.282309],[-71.057275,42.282449],[-71.056972,42.282509],[-71.056631,42.282575],[-71.05653599999999,42.282583]]]],"type":"MultiPolygon"} +},{ + "id": 1108702003, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000074, + "geom:area_square_m":673232.538314, + "geom:bbox":"-71.0355021908,42.3293545561,-71.0249634489,42.3383367661", + "geom:latitude":42.334591, + "geom:longitude":-71.030661, + "iso:country":"US", + "lbl:latitude":42.333463, + "lbl:longitude":-71.025913, + "lbl:max_zoom":18.0, + "mps:latitude":42.334814, + "mps:longitude":-71.030761, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "City Point" + ], + "name:deu_x_preferred":[ + "City Point" + ], + "name:swe_x_preferred":[ + "City Point" + ], + "reversegeo:latitude":42.334814, + "reversegeo:longitude":-71.030761, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849485, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"db3471ab356dfb20ec493af538ff09a0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108702003, + "neighbourhood_id":85849485, + "region_id":85688645 + } + ], + "wof:id":1108702003, + "wof:lastmodified":1566624101, + "wof:name":"City Point", + "wof:parent_id":85849485, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85811087 + ], + "wof:tags":[] +}, + "bbox": [ + -71.03550219079943, + 42.32935455607377, + -71.02496344888941, + 42.33833676613131 +], + "geometry": {"coordinates":[[[[-71.02496344888941,42.33295509775657],[-71.02559237339887,42.33284351485587],[-71.02678347667344,42.3325151854919],[-71.0281562736679,42.33202268823225],[-71.02944831789797,42.33145556539854],[-71.03110374956775,42.33061979611256],[-71.03229485284236,42.3300974346694],[-71.03372821441008,42.32963476805421],[-71.0347981885381,42.32936612136115],[-71.03517364108355,42.32935455607377],[-71.03550219079943,42.33814677263219],[-71.02512451547483,42.33833676613131],[-71.02496344888941,42.33295509775657]]]],"type":"MultiPolygon"} +},{ + "id": 1108702009, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":43467.795246, + "geom:bbox":"-71.152262,42.3353141686,-71.1482946682,42.3376831277", + "geom:latitude":42.3365, + "geom:longitude":-71.150109, + "iso:country":"US", + "lbl:latitude":42.336951, + "lbl:longitude":-71.15147, + "lbl:max_zoom":18.0, + "mps:latitude":42.336146, + "mps:longitude":-71.149973, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Cleveland Circle" + ], + "name:zho_x_preferred":[ + "\u90a6\u514b\u5c71" + ], + "reversegeo:latitude":42.336146, + "reversegeo:longitude":-71.149973, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807537, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5132091" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7e854b319fd1402b14ec5dd8c62de4c6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108702009, + "neighbourhood_id":85807537, + "region_id":85688645 + } + ], + "wof:id":1108702009, + "wof:lastmodified":1566624101, + "wof:name":"Cleveland Circle", + "wof:parent_id":85807537, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891305 + ], + "wof:tags":[] +}, + "bbox": [ + -71.152262, + 42.33531416859165, + -71.14829466822967, + 42.33768312769252 +], + "geometry": {"coordinates":[[[[-71.15226199999999,42.337185],[-71.14980268252864,42.33768312769252],[-71.1503466383583,42.33681919784541],[-71.14950830643259,42.33695358693274],[-71.14938671630595,42.33698558433449],[-71.14929712358108,42.33704317965762],[-71.14918833241514,42.33711357394146],[-71.14908594072956,42.33715197082356],[-71.14898354904398,42.33717756874495],[-71.14888755683873,42.33719036770565],[-71.14874187079759,42.33686501345657],[-71.14829466822967,42.33580672759312],[-71.15005858742605,42.3353928918141],[-71.15009081019365,42.33531416859165],[-71.15090600000001,42.335983],[-71.15125999999999,42.336341],[-71.15226199999999,42.337185]]]],"type":"MultiPolygon"} +},{ + "id": 1108703033, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":102783.892612, + "geom:bbox":"-71.0741488667,42.2873850274,-71.0682567419,42.2917892117", + "geom:latitude":42.289771, + "geom:longitude":-71.071244, + "iso:country":"US", + "lbl:latitude":42.291531, + "lbl:longitude":-71.073303, + "lbl:max_zoom":18.0, + "mps:latitude":42.288987, + "mps:longitude":-71.071935, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Codman Square District" + ], + "reversegeo:latitude":42.288987, + "reversegeo:longitude":-71.071935, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b43f9039af56d599c5de8e2c9bea26ca", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703033, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108703033, + "wof:lastmodified":1566624099, + "wof:name":"Codman Sq", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891255 + ], + "wof:tags":[] +}, + "bbox": [ + -71.07414886665255, + 42.28738502740819, + -71.06825674185708, + 42.29178921167367 +], + "geometry": {"coordinates":[[[[-71.07023277415688,42.2881223495068],[-71.07127957435455,42.28787942116256],[-71.07131955000396,42.28764955927623],[-71.07257737534758,42.28738502740819],[-71.07314261726837,42.28932369457517],[-71.07301425182391,42.28939235227052],[-71.07292053128141,42.28947572765714],[-71.07275818611627,42.289664777045],[-71.07414886665255,42.29045338210792],[-71.0717383703917,42.29103763418835],[-71.07148028566081,42.29102503123661],[-71.07123429624397,42.29104940547339],[-71.07091790369334,42.29112345099031],[-71.07071995280593,42.29120554740869],[-71.07053515194238,42.29130443935929],[-71.06890717886928,42.29178921167367],[-71.06825674185708,42.29040717673927],[-71.06934529305649,42.29002839989899],[-71.06966878630452,42.28990154599551],[-71.07056805193756,42.29003485402993],[-71.07116516887078,42.29008894224101],[-71.07023277415688,42.2881223495068]]]],"type":"MultiPolygon"} +},{ + "id": 1108703035, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000087, + "geom:area_square_m":798557.893631, + "geom:bbox":"-70.9687174894,42.3438835264,-70.9529605151,42.3569364373", + "geom:latitude":42.351238, + "geom:longitude":-70.959409, + "iso:country":"US", + "lbl:latitude":42.350369, + "lbl:longitude":-70.958349, + "lbl:max_zoom":18.0, + "mps:latitude":42.352139, + "mps:longitude":-70.959295, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Deer Island" + ], + "name:deu_x_preferred":[ + "Deer Island" + ], + "name:eng_x_variant":[ + "Deer Is", + "Deerisland" + ], + "name:fra_x_preferred":[ + "\u00cele Deer" + ], + "name:hun_x_preferred":[ + "Deer Island" + ], + "name:ita_x_preferred":[ + "Deer Island" + ], + "name:jpn_x_preferred":[ + "\u30c7\u30a3\u30a2\u5cf6" + ], + "name:kor_x_preferred":[ + "\ub514\uc5b4\uc12c" + ], + "name:swe_x_preferred":[ + "Deer Island" + ], + "reversegeo:latitude":42.352139, + "reversegeo:longitude":-70.959295, + "src:geom":"bra", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85891271, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a50f97e3fd83ecd44167b90801e41fb6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703035, + "neighbourhood_id":85891271, + "region_id":85688645 + } + ], + "wof:id":1108703035, + "wof:lastmodified":1566624099, + "wof:name":"Deer Island", + "wof:parent_id":85891271, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865507 + ], + "wof:tags":[] +}, + "bbox": [ + -70.96871748942252, + 42.34388352635519, + -70.95296051507167, + 42.35693643725345 +], + "geometry": {"coordinates":[[[[-70.96473690966732,42.35578482504091],[-70.96464199117621,42.35576489898298],[-70.9645616194078,42.35577522752975],[-70.96443960196419,42.35585396470102],[-70.96351239879078,42.35550909932186],[-70.96355319875163,42.35540967809445],[-70.96300260195594,42.35515657009868],[-70.96267899574272,42.35505544696242],[-70.96253121578854,42.35507424060851],[-70.96224765807284,42.35509267291658],[-70.96193608956145,42.35514198150491],[-70.96174673118044,42.3552212227122],[-70.96167914121941,42.35525109239966],[-70.96157154575975,42.35532989405878],[-70.96154337369182,42.3553797043353],[-70.9613938840629,42.35546901239279],[-70.96127176272601,42.35555926773964],[-70.96116277208013,42.35562845721013],[-70.96110849905493,42.35565839075988],[-70.96102805204887,42.3556774961841],[-70.96091959464668,42.35572692910348],[-70.96086478529392,42.35577661524331],[-70.96075734939882,42.35583675733123],[-70.96075709211497,42.35586694128514],[-70.9607213466556,42.35592550544638],[-70.96070357550184,42.35593553604666],[-70.96067017594201,42.35596125305098],[-70.96063307908553,42.355975142608],[-70.96057379881888,42.35598780362951],[-70.96055283149653,42.35598973004534],[-70.96054009908251,42.3559756887056],[-70.96047174704863,42.35596466441776],[-70.96041891751399,42.35595536136576],[-70.96026990566271,42.35594478494623],[-70.96017631480248,42.35594352098629],[-70.96009462510325,42.35593435599886],[-70.9600010306129,42.35593309277948],[-70.95997167575455,42.3559350076134],[-70.95986986587704,42.3559310570343],[-70.95984993416188,42.35592826792814],[-70.95983864488632,42.35584232565594],[-70.95969091520627,42.35581199388438],[-70.95961080380324,42.35579131036295],[-70.95948970857548,42.3557613789758],[-70.95939497700623,42.35571977210195],[-70.95936887712969,42.35570016787442],[-70.95931434412786,42.35576055461252],[-70.95921953064392,42.35572882797025],[-70.95909843450713,42.35569889616497],[-70.95904485508898,42.35564787638103],[-70.95884391236724,42.35556652993033],[-70.95877928812668,42.35553855157053],[-70.95870514333285,42.35548892932961],[-70.95867303829144,42.35546216632105],[-70.95865634503724,42.35543557398565],[-70.95861570295368,42.35538571686006],[-70.95844170909004,42.35522519026706],[-70.9584021563537,42.35525442121266],[-70.95838105272375,42.35523925444473],[-70.95828963147196,42.35517412486464],[-70.9581953640679,42.3551067184531],[-70.95810390956962,42.35504551476205],[-70.95802440729769,42.354984930913],[-70.95796785616464,42.3549424737406],[-70.95790430184744,42.35489996011942],[-70.9578244405501,42.3548602091201],[-70.95773676644539,42.35481927334489],[-70.9576466009908,42.35476369501759],[-70.95757555483344,42.35473243020699],[-70.95749573978895,42.35468365371137],[-70.95742497737496,42.35464111932011],[-70.95736602586253,42.35461552119558],[-70.95730669944743,42.35459104124143],[-70.95723417395419,42.35455468975689],[-70.95714678411632,42.35450533258302],[-70.95706070673465,42.35445934775092],[-70.95700697660129,42.35442139229843],[-70.95695153517947,42.35438455411111],[-70.95688795788433,42.35434486134147],[-70.95681905589778,42.35430570967245],[-70.9567556390613,42.35427109706544],[-70.95667186699745,42.35421949416619],[-70.95661867766336,42.35418603536941],[-70.95655849690226,42.35414805012247],[-70.95650179577773,42.3541044616306],[-70.95644028974104,42.35406534018328],[-70.95640123024428,42.35404152273718],[-70.95633588772938,42.35400915423672],[-70.95625953479467,42.35395702341965],[-70.9562118803464,42.3539179727432],[-70.95614400032137,42.3538512556755],[-70.9560870645178,42.35381102667544],[-70.95604211070435,42.35376805619909],[-70.95599627673819,42.35371551137495],[-70.95592618854693,42.35366115652067],[-70.95586689570739,42.35361191327826],[-70.95586492658994,42.35359671143457],[-70.95582471520565,42.35355432509563],[-70.95576884939047,42.35347809628366],[-70.9557010935755,42.35339394706309],[-70.95567975280072,42.35336289740955],[-70.95565354474691,42.35332112647174],[-70.95562277675548,42.35328497070645],[-70.95559833931613,42.35323534403437],[-70.9555661122878,42.35318961297901],[-70.95556092234615,42.35313331078201],[-70.95555551673206,42.35310009660485],[-70.95549129608776,42.35306883938881],[-70.95541779964587,42.35301503436055],[-70.95532916424804,42.35295553881967],[-70.95524662688806,42.35289437143378],[-70.95516942387076,42.35282930216059],[-70.95509785178294,42.35277155553177],[-70.9550371279949,42.35271105854051],[-70.9549737175052,42.35265233677402],[-70.95409117162679,42.35128081162602],[-70.95398075763732,42.35112881127996],[-70.95390561161298,42.35091990298928],[-70.95389332162554,42.35080047584148],[-70.95373709031938,42.35059449180484],[-70.95377989759599,42.35064623364632],[-70.95382442771316,42.3506953898938],[-70.9538550100432,42.35073493221314],[-70.95389054806697,42.3507711057344],[-70.95393005102574,42.35082813818359],[-70.95398030637519,42.35087282186346],[-70.95398529234674,42.35084526669387],[-70.95397695056113,42.35082104596573],[-70.95396369592392,42.35079790747472],[-70.9539454628049,42.35075617398244],[-70.95391922770403,42.35072060644362],[-70.95387893332722,42.35068833744398],[-70.95385096518216,42.35065275715662],[-70.95382515617136,42.35061100656754],[-70.95378083502543,42.35053765218566],[-70.95374141854377,42.35049299199444],[-70.95371727830575,42.3504754484332],[-70.95368528121216,42.35040551697445],[-70.95366789811254,42.35033228602185],[-70.95362311361352,42.35026737417293],[-70.95356542198323,42.3501843814926],[-70.95352909966526,42.35010880706534],[-70.95349589897313,42.35004449309226],[-70.95345810325824,42.34998410417801],[-70.95343220641108,42.3499310867361],[-70.95340139147532,42.34989775164871],[-70.9533713643484,42.34986103697496],[-70.95333249256738,42.34968585120349],[-70.9533121117408,42.34956477305452],[-70.95329581534584,42.34949606399475],[-70.95329554471083,42.34949297108179],[-70.95345224782676,42.34935582893957],[-70.9534635468892,42.34935393349738],[-70.95352214592697,42.34934019795089],[-70.95360668898735,42.34937793510205],[-70.9536836690621,42.34933110359889],[-70.95371268037107,42.34931340290871],[-70.95375988513459,42.34928755900724],[-70.95380340369665,42.34926032282053],[-70.95384098895332,42.34923470778357],[-70.95391461124873,42.34919142716151],[-70.95393920831241,42.34916949025131],[-70.95395712544592,42.34916438871418],[-70.95397580111697,42.34915549331559],[-70.9540212055048,42.3491450052583],[-70.95397477804065,42.34914085770058],[-70.95396852082469,42.34913993579151],[-70.95399961572407,42.34907218740539],[-70.95405588011462,42.34893991345228],[-70.95405645785944,42.34887295826461],[-70.9540662322474,42.34872592013472],[-70.95408837263096,42.34864672241751],[-70.95411528787074,42.3484857687053],[-70.95412166354029,42.34830386384895],[-70.95410903163858,42.34822449923941],[-70.95412264601173,42.34818998968814],[-70.95411799389619,42.34817212817725],[-70.95410516659933,42.34811499192146],[-70.95408526278572,42.34806412956189],[-70.95407585892458,42.34803911421982],[-70.95407245922455,42.34800424840162],[-70.95406784135672,42.34798199899267],[-70.95406430683508,42.34796332171199],[-70.95405643568517,42.34793199984716],[-70.95404347365046,42.34789105302014],[-70.95404012607825,42.3478501491411],[-70.95402230115711,42.34781521302607],[-70.95401554292594,42.34778389914256],[-70.95400155207984,42.34773306844161],[-70.95398986044086,42.34767346353702],[-70.95398210660134,42.34762869715414],[-70.95398245941942,42.34758781354328],[-70.95398262046491,42.34756915200636],[-70.95396945842204,42.34755125457747],[-70.95394491456587,42.34748061398603],[-70.95393292096442,42.34745558632984],[-70.95392346280241,42.34743688001025],[-70.95391178611946,42.34741816495405],[-70.95390825046167,42.34739948766051],[-70.95390361260358,42.34737970676704],[-70.95391597908095,42.34736110679719],[-70.95392100418924,42.34733615996302],[-70.95391737964019,42.34732736033045],[-70.95391268607173,42.34731389387123],[-70.95390439652135,42.34728888110138],[-70.95389626436015,42.34724521217698],[-70.95389194219447,42.34723174477968],[-70.95388357085146,42.34721578862985],[-70.9538752492937,42.34719434629213],[-70.95386357979555,42.34717480568946],[-70.95384563665191,42.34715331764951],[-70.95381725300514,42.34709884886683],[-70.95379939173,42.34706830329687],[-70.95375410744742,42.34704311747552],[-70.95371575062363,42.34702976297076],[-70.95368967025992,42.34700823534509],[-70.95367398963327,42.34698209357597],[-70.95366123468284,42.34695980368169],[-70.95364815579599,42.34693230131421],[-70.9536362252535,42.3469001372498],[-70.95362838054695,42.34686607406091],[-70.95361520338952,42.34685009595391],[-70.95359029400828,42.34682143719569],[-70.95362439321106,42.34677083495318],[-70.9535121651484,42.3465304654582],[-70.953395683518,42.34613969859328],[-70.95337863555618,42.34614318543597],[-70.95332413590754,42.34620000082011],[-70.95331093761374,42.34618649389655],[-70.95328968736897,42.34616251961726],[-70.95327654242283,42.34614270004304],[-70.95326125369947,42.34611408695152],[-70.95323967487617,42.34608544574791],[-70.95322315954822,42.34607027279149],[-70.95321015337308,42.34603454017447],[-70.95319857678344,42.34600429717827],[-70.95319763590564,42.34598481112208],[-70.95319047488589,42.34595706134569],[-70.95318950556697,42.34594086664912],[-70.95318969765161,42.34591864006686],[-70.95318988263281,42.34589723542422],[-70.95319482965121,42.34588134435491],[-70.9532031589205,42.34585915466857],[-70.95322860027879,42.34586888364958],[-70.95325348180033,42.34590028287406],[-70.95326315530411,42.3458940186723],[-70.95327985440304,42.34588805976605],[-70.95330028087433,42.34587827790195],[-70.95331743077465,42.34586326592069],[-70.95333572412501,42.34584359492124],[-70.953339189293,42.34582769770077],[-70.95333460040393,42.34580270427441],[-70.95333623857458,42.34578405065333],[-70.95334348223891,42.34575911438309],[-70.9533366937622,42.34573136548546],[-70.95333202299246,42.34571542868302],[-70.9533236579888,42.34569919972486],[-70.95331055453231,42.34567416671438],[-70.95329888548892,42.34565462604795],[-70.95329429176613,42.34562963349622],[-70.95326460090264,42.34559820690844],[-70.95329464504859,42.34558874626852],[-70.95329113337687,42.34556732584826],[-70.95328654678109,42.34554150955541],[-70.953283335018,42.34548523996188],[-70.95327536380303,42.34546571957545],[-70.95327093492381,42.34542179270324],[-70.95326277974475,42.34538086591629],[-70.95323639172251,42.34535220183828],[-70.95323452660385,42.34531130405897],[-70.95323849713353,42.34528004112732],[-70.95323736864651,42.34523914865089],[-70.95320887376148,42.34519785234482],[-70.95320928164088,42.34515065337163],[-70.95320944288486,42.34513199452666],[-70.95320152870143,42.34510616330353],[-70.95319323485153,42.34508115224772],[-70.95318173078439,42.34504267904743],[-70.95316400557357,42.3449964922002],[-70.9531557117451,42.34497148204137],[-70.95315215509733,42.34495527503552],[-70.95313937456523,42.34493573266387],[-70.95312738298611,42.34491070401521],[-70.95311795159429,42.34488925272927],[-70.95309826296932,42.34481342226371],[-70.95307733229711,42.34475267941135],[-70.95304765363903,42.34467679871349],[-70.9530563553453,42.34465461350505],[-70.95306868361875,42.34464040059585],[-70.95306998735975,42.3446181810958],[-70.95306053228859,42.34459947650565],[-70.95304849331166,42.3445796612573],[-70.95305268685573,42.3445226039967],[-70.95304106674206,42.34449757710324],[-70.95302423270407,42.34447636608419],[-70.95300659437868,42.34446283799641],[-70.95299455082728,42.34444411838479],[-70.95298625713819,42.34441910821074],[-70.95296146296614,42.34437782853925],[-70.95296051507167,42.34435916531445],[-70.95297026656023,42.34434329530747],[-70.95300031616874,42.34433356017902],[-70.95303774934578,42.34432495673234],[-70.95306776689831,42.34431878752167],[-70.95310990859917,42.34432173208809],[-70.95313108816946,42.34435366382795],[-70.95319117542674,42.34433529088801],[-70.95320376444006,42.34429089484989],[-70.95322065043695,42.34426325942046],[-70.95324272771343,42.34423400292639],[-70.95326812546472,42.34420558419101],[-70.95321765688179,42.34418147184582],[-70.95321782761189,42.34416171467614],[-70.95322638217203,42.34415654262075],[-70.95325164829332,42.3441432140897],[-70.95327352755994,42.34413700792646],[-70.95329879491622,42.34412395578298],[-70.95332780151054,42.34410625605836],[-70.95334123168109,42.34409287393313],[-70.95334951213165,42.34407672320859],[-70.95335444702022,42.34406165314281],[-70.95336304185078,42.34405181681483],[-70.95336690319859,42.3440331755566],[-70.95337560108705,42.34401098760276],[-70.95337587130103,42.34397970886679],[-70.95338897877824,42.34396110976415],[-70.95340240185986,42.34394882416318],[-70.95343141544484,42.34393030247166],[-70.95346156896787,42.34390794371134],[-70.95348689311308,42.34388858249449],[-70.95352059745491,42.34388352635519],[-70.95357232910638,42.34388981143118],[-70.95362722852479,42.34391504304387],[-70.95365227179201,42.34392778425104],[-70.9536776034889,42.34395013212296],[-70.95370726659682,42.34398484818207],[-70.95372847945569,42.34401266470072],[-70.95374051852991,42.34403248078053],[-70.95376162481362,42.34407264619978],[-70.95376140215134,42.3440984387335],[-70.9537912584406,42.34411092998415],[-70.9538534458635,42.34414881921236],[-70.9538628964112,42.34416834839151],[-70.95391330008722,42.34419986781131],[-70.95395112994859,42.34423105830483],[-70.95398465456705,42.34424740850512],[-70.95403992216322,42.34427264256528],[-70.95407831527304,42.34428160548734],[-70.95411991296686,42.34430512615371],[-70.95417518186541,42.34433036195482],[-70.95420498027649,42.34434916302302],[-70.95423372515029,42.34436164798101],[-70.95427686502731,42.34437804283469],[-70.95434016820724,42.34441566339937],[-70.95440573587375,42.34444725546308],[-70.95449204896636,42.34447620450288],[-70.95456769079597,42.34449796978109],[-70.95468721076519,42.34453667969094],[-70.95480983258311,42.34455866491078],[-70.95487678417483,42.34455898235177],[-70.95498524616924,42.34454961663644],[-70.9551342926185,42.34451025970076],[-70.95522952429799,42.34449122666139],[-70.95532447901972,42.34446121937857],[-70.95552538953909,42.34441250051665],[-70.95588980945185,42.3442342107009],[-70.95597195843109,42.34391585010296],[-70.95597041826069,42.34393082380359],[-70.95597139640485,42.34401580052312],[-70.95597155389865,42.34408556189383],[-70.95597836276927,42.34415368107751],[-70.95596753006807,42.34422397203905],[-70.95595257236744,42.34428634605139],[-70.95595261106618,42.34432743591231],[-70.95595249517604,42.34432919905103],[-70.95587013194034,42.34458673705299],[-70.95596355021551,42.34460611331091],[-70.95604826801552,42.34464822591245],[-70.95610721338791,42.34467622048336],[-70.95615838484858,42.34470500202813],[-70.95618690857822,42.34474328083213],[-70.9562286558258,42.34479259681891],[-70.95634304496041,42.34486887454092],[-70.95646462613978,42.34501214232088],[-70.95650364658448,42.34500920003209],[-70.95651580026592,42.34503458830741],[-70.95652088621883,42.34505879349182],[-70.95650586662225,42.3450857440866],[-70.95649409573954,42.34510988849728],[-70.9564872363779,42.34513573338152],[-70.95652199763779,42.34514939498293],[-70.95655297535644,42.34514335094209],[-70.95657969642521,42.34512435667398],[-70.95661000020212,42.34510422244657],[-70.95665570403452,42.34508306442108],[-70.95671503764329,42.34506309435326],[-70.95675300821497,42.34503570928974],[-70.95677983887843,42.3450234452317],[-70.95677564763881,42.3450059830278],[-70.95685957450307,42.34496080454949],[-70.95821809586364,42.34643133096221],[-70.95833668326573,42.3472427106782],[-70.95835085559554,42.34725784934452],[-70.95835153362701,42.34726271775398],[-70.95835410763488,42.3472613227119],[-70.95835415213823,42.34726136973709],[-70.95837157312963,42.34728789177859],[-70.95839137802233,42.34732119259317],[-70.95841636491592,42.34734943742482],[-70.95846272192065,42.34740537075827],[-70.9584886076257,42.34746006068488],[-70.95850489291028,42.34750740757135],[-70.9585267606633,42.34756828342588],[-70.95856047973624,42.3476145879257],[-70.95860155180497,42.34766934843159],[-70.95863462368128,42.34772747438571],[-70.95866352933092,42.3477849991222],[-70.95869331842631,42.34782509462327],[-70.95871494064014,42.34782234966554],[-70.95874682668713,42.34793030244073],[-70.95879418469995,42.3480158655732],[-70.95884385175606,42.3480910140915],[-70.95889410266135,42.34814119194756],[-70.95892264730956,42.34817782438133],[-70.95897377709699,42.34821181716512],[-70.95901443228954,42.34825920930742],[-70.95903935297331,42.3482870404462],[-70.95914766031615,42.34838304641674],[-70.95934912561151,42.34857361115537],[-70.95945637516442,42.34866412363072],[-70.95952326765735,42.34871520230347],[-70.95959017429919,42.34876463705751],[-70.95967038903238,42.34881495628027],[-70.95973682965287,42.34887564068811],[-70.95986856216561,42.34895830735814],[-70.95994856064875,42.34899078955326],[-70.96003854424451,42.34902414145375],[-70.96008758892214,42.34904220756192],[-70.96015210660268,42.34906830853285],[-70.96021082468069,42.34908010620946],[-70.96024572423296,42.34908686742118],[-70.96023038691895,42.34908654514349],[-70.96028307350872,42.34911548676275],[-70.96033333428659,42.3491342850139],[-70.9603683336537,42.34914514391475],[-70.96045315657987,42.3491838100384],[-70.96055147885951,42.34921802173221],[-70.96056683528504,42.34922151580789],[-70.96059160666036,42.34924050496868],[-70.96066457756841,42.34927295099276],[-70.96079514122728,42.349319118408],[-70.9608655189906,42.34935237591623],[-70.96098643671178,42.349402063067],[-70.96110873704338,42.34946300759693],[-70.96118858491452,42.3495133240238],[-70.96130983730232,42.34952377019617],[-70.96141760508308,42.34955363643733],[-70.96156625409184,42.34960510130271],[-70.96161872814774,42.34965529014605],[-70.96168579852832,42.34968578845195],[-70.96172734190436,42.34971644091747],[-70.96180765177314,42.34975605902617],[-70.96188724263612,42.34983655895552],[-70.96194073784926,42.34989745517073],[-70.96204912880236,42.34989796230488],[-70.96214263500957,42.3499082777864],[-70.9622243090249,42.34991826326517],[-70.96241283378113,42.3500553238901],[-70.96246675898709,42.35010140475849],[-70.962527572498,42.35015402065073],[-70.96259482221934,42.35020610030204],[-70.96267288729976,42.35025935942553],[-70.96274356004054,42.35031314664273],[-70.96283456284003,42.3503810968442],[-70.96291651877213,42.35044674586918],[-70.96295702570856,42.35047508557554],[-70.96298344296588,42.35049263691871],[-70.9630713342052,42.35048293429939],[-70.96312637473095,42.35049894650417],[-70.96316121147633,42.35050866040822],[-70.96320697202029,42.35052350477742],[-70.96321198607168,42.35052606702401],[-70.96301265352304,42.35070347186664],[-70.96306641602732,42.35073308613377],[-70.96310713646506,42.35077334042373],[-70.963134263377,42.3508028284927],[-70.96317395031581,42.35083429552661],[-70.96325389597364,42.35087391090435],[-70.96342864752108,42.35094497670802],[-70.96348257566267,42.35095510550296],[-70.96354972853878,42.35097599870961],[-70.96364472082777,42.35098604620089],[-70.96376571949352,42.35102694925891],[-70.96394081028595,42.35105794990548],[-70.96406190223513,42.35108787935459],[-70.96425133936904,42.35112882445665],[-70.96438511333088,42.35119009349471],[-70.96454569522575,42.35123090370111],[-70.96466652887779,42.35129128837888],[-70.96472160035675,42.35134121507141],[-70.964827750548,42.35143171550585],[-70.96486784596193,42.35150242602108],[-70.9649212630362,42.35157292211828],[-70.96497468604913,42.3516428735365],[-70.96508032669932,42.35179374171313],[-70.96514834331647,42.35184400119947],[-70.96518864728402,42.35193419410253],[-70.96522772453851,42.3519941979089],[-70.9652273024021,42.35204413905169],[-70.96521348096914,42.35210362045341],[-70.96522627953617,42.35216514958748],[-70.96519968051179,42.35220426805417],[-70.96517151391343,42.35225407835937],[-70.96513133573644,42.35232413989873],[-70.96504873239046,42.35242364276237],[-70.9652105954939,42.35244497733643],[-70.96521017335617,42.35249491667362],[-70.9649399485286,42.35251314208732],[-70.96487210655992,42.3525734713399],[-70.96485828344838,42.35263295448688],[-70.96484343462815,42.35268282848509],[-70.96484412273945,42.3527327756874],[-70.96485718326038,42.35276302163919],[-70.96485692563006,42.35279347930245],[-70.96486991320585,42.35283278190473],[-70.96488279969689,42.35288360694111],[-70.96495056571383,42.35296404873132],[-70.96502991754156,42.35307390847684],[-70.96515050121273,42.3531644766086],[-70.96528430949874,42.35326580973887],[-70.96556650666437,42.35340706828624],[-70.96574092960408,42.3535184667811],[-70.96603619501677,42.35368997363527],[-70.96622402713676,42.35379073091302],[-70.96642653766587,42.35386192090695],[-70.96662756799918,42.35393337646565],[-70.96683016840501,42.35399386522855],[-70.96713943245281,42.35408530317592],[-70.96732740096067,42.35412623902823],[-70.9675826585606,42.35421660633097],[-70.96783772996376,42.35432919512931],[-70.96821447807314,42.35449119529886],[-70.96838970178611,42.35455182837996],[-70.96857700188946,42.35467288370023],[-70.96863034398453,42.35475326020463],[-70.9686709058461,42.35481326783957],[-70.96860179071183,42.35489307759646],[-70.96856170346837,42.35495271256666],[-70.96852131958282,42.35500329186723],[-70.96843959902411,42.35504215629138],[-70.96827685194127,42.35508146621133],[-70.96811455544628,42.35511090353105],[-70.9679669420433,42.35511022070328],[-70.96789943714467,42.3551304882604],[-70.96788467772637,42.35516966030132],[-70.96784466337103,42.35522024017457],[-70.96781642363605,42.35527883314691],[-70.96778833960514,42.35531876728275],[-70.96777479892704,42.35538922845866],[-70.96776233313055,42.35541935591314],[-70.96777523423455,42.35546935958004],[-70.96780116227097,42.35550954277613],[-70.9679364378858,42.35556999164282],[-70.96817819636058,42.35568224433881],[-70.968499924851,42.3558327371235],[-70.96871748942252,42.35594475260881],[-70.96741048782955,42.35693643725345],[-70.9673713076549,42.35690924330444],[-70.96708943514395,42.3567268284361],[-70.96684646201452,42.35662609075082],[-70.96649794173186,42.3564944014173],[-70.96621530368786,42.35640308633365],[-70.96605445859036,42.35639163602217],[-70.96593352474324,42.35634195428327],[-70.96578357312292,42.35631107356187],[-70.96567682702256,42.35628999686058],[-70.96555623090292,42.356200252188],[-70.96540790046673,42.35610873182032],[-70.96530054869639,42.3560281054249],[-70.96520737039293,42.35597772908856],[-70.96511254435728,42.35594710382478],[-70.96499152613723,42.35590729874685],[-70.96489819283867,42.35587558368795],[-70.964790493807,42.35583584037076],[-70.96473690966732,42.35578482504091]]],[[[-70.95338152546859,42.35013148820332],[-70.95339385609181,42.35008958299461],[-70.95344414063766,42.35013147793406],[-70.95346850500009,42.35016478234899],[-70.95349746174981,42.35021611815934],[-70.95352963708105,42.35026523831731],[-70.9535779605619,42.35033635297221],[-70.95361490238008,42.35036185841326],[-70.95364378898302,42.35039969657304],[-70.95366496383436,42.35045043267601],[-70.95369985091322,42.35049505336988],[-70.95370379027048,42.35054626936626],[-70.95372848249671,42.35058408847612],[-70.95373195157684,42.35058828054111],[-70.95359940607594,42.3504782906264],[-70.95338630957959,42.35013673357799],[-70.95338152546859,42.35013148820332]]],[[[-70.96029992966746,42.34908601448285],[-70.96032989493339,42.34908615512248],[-70.96037310279642,42.3490951394125],[-70.96038583427867,42.3491001580034],[-70.96037007785552,42.34909731834369],[-70.96030981297466,42.34909141224426],[-70.96028614989338,42.34908920798606],[-70.96029992966746,42.34908601448285]]]],"type":"MultiPolygon"} +},{ + "id": 1108703037, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000057, + "geom:area_square_m":522809.282808, + "geom:bbox":"-71.0511617354,42.3311929785,-71.0352527554,42.3356243098", + "geom:latitude":42.333321, + "geom:longitude":-71.042257, + "iso:country":"US", + "lbl:latitude":42.332039, + "lbl:longitude":-71.046081, + "lbl:max_zoom":18.0, + "mps:latitude":42.333421, + "mps:longitude":-71.042257, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Dorchester North" + ], + "name:eng_x_variant":[ + "Dorchester Hts", + "Dorchesterheights" + ], + "name:est_x_preferred":[ + "Dorchester Heights" + ], + "name:spa_x_preferred":[ + "Dorchester Heights" + ], + "name:und_x_variant":[ + "Dorchester Hights" + ], + "reversegeo:latitude":42.333421, + "reversegeo:longitude":-71.042257, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849485, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"785ebe807ea7b4a6ed78dd5cb1d54713", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703037, + "neighbourhood_id":85849485, + "region_id":85688645 + } + ], + "wof:id":1108703037, + "wof:lastmodified":1566624099, + "wof:name":"Dorchester Heights", + "wof:parent_id":85849485, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85814929 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05116173539577, + 42.33119297850943, + -71.03525275536067, + 42.33562430975389 +], + "geometry": {"coordinates":[[[[-71.05116173539577,42.33281705426765],[-71.04565327225708,42.33546245601815],[-71.03540793078474,42.33562430975389],[-71.03525275536067,42.33147170858897],[-71.04854981974339,42.33119297850943],[-71.05116173539577,42.33281705426765]]]],"type":"MultiPolygon"} +},{ + "id": 1108703039, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00003, + "geom:area_square_m":270266.146636, + "geom:bbox":"-71.0645433844,42.3523633379,-71.0572653405,42.3580600584", + "geom:latitude":42.354851, + "geom:longitude":-71.060414, + "iso:country":"US", + "lbl:latitude":42.355243, + "lbl:longitude":-71.061796, + "lbl:max_zoom":18.0, + "mps:latitude":42.354876, + "mps:longitude":-71.060345, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Downtown Crossing" + ], + "name:fra_x_preferred":[ + "Downtown Boston" + ], + "name:zho_x_preferred":[ + "\u4e0b\u57ce\u5341\u5b57" + ], + "reversegeo:latitude":42.354876, + "reversegeo:longitude":-71.060345, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815133, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ac3567552125978e08e6f8ce380ac76d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703039, + "neighbourhood_id":85815133, + "region_id":85688645 + } + ], + "wof:id":1108703039, + "wof:lastmodified":1566624099, + "wof:name":"Downtown Crossing", + "wof:parent_id":85815133, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891261 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06454338443713, + 42.3523633378981, + -71.0572653404996, + 42.35806005838588 +], + "geometry": {"coordinates":[[[[-71.06202072660278,42.35653451238008],[-71.06098197226079,42.35755387637581],[-71.06048177267567,42.35806005838588],[-71.05835708346208,42.35747204095211],[-71.05814686157981,42.35768422506937],[-71.05812133386563,42.35770677401867],[-71.0578739250967,42.35765158297572],[-71.05778783961505,42.35763730784946],[-71.05751519697149,42.35762032424034],[-71.05726574713803,42.35761579581571],[-71.0572653404996,42.35548396073936],[-71.05727124757833,42.35542120078932],[-71.05728630126349,42.35538189703821],[-71.05730930038288,42.35534021113431],[-71.05745119275205,42.35510759380924],[-71.05746277508361,42.35506228552814],[-71.05746595103776,42.35501269874781],[-71.05741886467452,42.35469677653679],[-71.05741428704097,42.35463111663545],[-71.05743148320465,42.35455249129514],[-71.05747175333379,42.35447122875915],[-71.05797619898007,42.35367780659343],[-71.05766578244665,42.35352156672087],[-71.05790492479626,42.35236995975576],[-71.05810771326534,42.3523633378981],[-71.05840085224226,42.35238864942095],[-71.05852368667746,42.35240599883362],[-71.05863203306265,42.3524227415294],[-71.05875519831926,42.35243809781752],[-71.05876120972373,42.35243884741923],[-71.05887833696485,42.3524534493699],[-71.05939278766478,42.35251758681464],[-71.05939353499889,42.35251763649325],[-71.05951809559663,42.35252596783088],[-71.05981711590343,42.3525459667379],[-71.06015072707841,42.35256289034143],[-71.06018278228844,42.35256451643397],[-71.06037541114577,42.35256079567232],[-71.06052473234412,42.35255818480036],[-71.06068136129494,42.35255544590242],[-71.06108119833358,42.35252145351588],[-71.06111652519719,42.35251845083206],[-71.06112927362024,42.35251736691959],[-71.06139279609891,42.35249436156031],[-71.06176183434596,42.35245755566127],[-71.06176663689459,42.35245707610219],[-71.06176852681625,42.35245688794122],[-71.06194724239961,42.3524390633745],[-71.06238879255653,42.35239455328124],[-71.06246810133817,42.35238662009658],[-71.06253915808806,42.35237951164255],[-71.06258426360749,42.35237499900686],[-71.06258514176399,42.35237491141775],[-71.06260897228471,42.35237252716014],[-71.06454338443713,42.35236776058677],[-71.06454251461074,42.35237104695814],[-71.06453942278833,42.35238273903965],[-71.06444909083719,42.35272425111403],[-71.06442990672957,42.3527967788533],[-71.06441664790599,42.35283550328322],[-71.06422862349753,42.35338462497697],[-71.06415752346284,42.35358340813325],[-71.06415387872245,42.35359358921801],[-71.06415379625349,42.35359375545936],[-71.06398597952311,42.35392483161365],[-71.06387895434439,42.35413597530499],[-71.06387420818977,42.35414533743935],[-71.06374073054172,42.35440866508002],[-71.06356456138523,42.35475621122549],[-71.06356139255669,42.35476195566054],[-71.06355722931055,42.35476950410595],[-71.06346715071703,42.35493283512165],[-71.06337120471107,42.3551150679028],[-71.06336245984319,42.35513167747987],[-71.06334062472338,42.35517314840499],[-71.06333148409587,42.35518554311488],[-71.06331444160692,42.35520865099132],[-71.06329067473752,42.35524087578478],[-71.06304196520286,42.35548980770958],[-71.06289600592709,42.35563589781834],[-71.06280148958109,42.35572854488904],[-71.06280081742676,42.35572920314726],[-71.0627987068482,42.35573127209457],[-71.06254197058048,42.35598293000096],[-71.06227065475552,42.35624887526865],[-71.06202590455629,42.35652859468203],[-71.06202545674884,42.35652910614234],[-71.06202072660278,42.35653451238008]]]],"type":"MultiPolygon"} +},{ + "id": 1108703047, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000056, + "geom:area_square_m":507483.344858, + "geom:bbox":"-71.0953047559,42.3287703497,-71.080947773,42.3371904933", + "geom:latitude":42.332853, + "geom:longitude":-71.087697, + "iso:country":"US", + "lbl:latitude":42.328372, + "lbl:longitude":-71.07193, + "lbl:max_zoom":18.0, + "mps:latitude":42.332872, + "mps:longitude":-71.087099, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Dudley Sq" + ], + "reversegeo:latitude":42.332872, + "reversegeo:longitude":-71.087099, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85846283, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8537b25ee4e668ccb966e51272135710", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703047, + "neighbourhood_id":85846283, + "region_id":85688645 + } + ], + "wof:id":1108703047, + "wof:lastmodified":1566624100, + "wof:name":"Dudley Square", + "wof:parent_id":85846283, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865717 + ], + "wof:tags":[] +}, + "bbox": [ + -71.09530475585598, + 42.32877034965647, + -71.08094777299816, + 42.33719049332382 +], + "geometry": {"coordinates":[[[[-71.08869095368476,42.33719049332382],[-71.08731996720608,42.33595660549302],[-71.08688564552338,42.3356329100169],[-71.08656946971735,42.33545285740347],[-71.0862377928449,42.33530015962418],[-71.08453487887556,42.33469864646405],[-71.08402840054374,42.33452399816318],[-71.08356256993176,42.33433059731583],[-71.08276055238491,42.33390761545892],[-71.08180472325371,42.3333637816429],[-71.08135976831333,42.33310559791207],[-71.08094777299816,42.33285840072296],[-71.08138723466769,42.33230907363608],[-71.08166876479974,42.33199458387882],[-71.08198050792153,42.33171580038224],[-71.08261772734232,42.33116647329535],[-71.08321100059617,42.33061714620846],[-71.08333734582619,42.33055122695804],[-71.08345698570243,42.33050922455072],[-71.08386211546798,42.330439822944],[-71.08397266361852,42.3304020789586],[-71.08409111555575,42.33033878794819],[-71.08422500398365,42.33020361406535],[-71.08432727284028,42.33006321682341],[-71.08479306260639,42.32934270736688],[-71.08486658563044,42.32921093844303],[-71.08491611509127,42.32909245435567],[-71.08512595849598,42.32877034965647],[-71.08617684183918,42.32944380547967],[-71.08660904461505,42.32968552146716],[-71.0871304493611,42.32996894024593],[-71.08813655457244,42.33050819497585],[-71.08833072904596,42.33059517312499],[-71.08866845175606,42.33071448493906],[-71.08901835730533,42.33081377299222],[-71.08934603262844,42.33087785996086],[-71.09010177427385,42.33103980070629],[-71.09095695140357,42.33117556617311],[-71.0922012913751,42.33120936113467],[-71.09322302102466,42.33122872828667],[-71.09391801928241,42.33127921282102],[-71.09530475585598,42.33145649884013],[-71.09524624089687,42.33152143294672],[-71.09436725329982,42.33239429283642],[-71.09299971776322,42.33345771556005],[-71.09275332874631,42.33369397855387],[-71.09043371458033,42.33576129552907],[-71.09042822093811,42.3357656675888],[-71.09036068582313,42.33581942836727],[-71.0903553470672,42.33582367853548],[-71.09033996822198,42.33583618462957],[-71.0902477548188,42.33591116914623],[-71.0901799691098,42.33596629016842],[-71.09017450408204,42.33597073524167],[-71.0900937401203,42.33603714284023],[-71.08956033124112,42.33647571546254],[-71.08869095368476,42.33719049332382]]]],"type":"MultiPolygon"} +},{ + "id": 1108703107, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":139398.953005, + "geom:bbox":"-71.0393643456,42.3770307557,-71.0326772416,42.3805970783", + "geom:latitude":42.379289, + "geom:longitude":-71.03667, + "iso:country":"US", + "lbl:latitude":42.379622, + "lbl:longitude":-71.03539, + "lbl:max_zoom":18.0, + "mps:latitude":42.379289, + "mps:longitude":-71.036669, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.379289, + "reversegeo:longitude":-71.036669, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815995, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ceadee8ca6c2c4db7da81a353f93b14a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703107, + "neighbourhood_id":85815995, + "region_id":85688645 + } + ], + "wof:id":1108703107, + "wof:lastmodified":1566624101, + "wof:name":"Eagle Hill", + "wof:parent_id":85815995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891263 + ], + "wof:tags":[] +}, + "bbox": [ + -71.03936434563187, + 42.37703075568721, + -71.032677241646, + 42.38059707826925 +], + "geometry": {"coordinates":[[[[-71.03340219836015,42.3805882948491],[-71.032677241646,42.37944981796841],[-71.0392708073315,42.37703075568721],[-71.03936434563187,42.38059707826925],[-71.03340219836015,42.3805882948491]]]],"type":"MultiPolygon"} +},{ + "id": 1108703311, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000254, + "geom:area_square_m":2325140.6901, + "geom:bbox":"-71.0938727693,42.2665036846,-71.0659199998,42.2815659704", + "geom:latitude":42.27425, + "geom:longitude":-71.081356, + "iso:country":"US", + "lbl:latitude":42.273991, + "lbl:longitude":-71.069588, + "lbl:max_zoom":18.0, + "mps:latitude":42.274793, + "mps:longitude":-71.084418, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Lower Mls" + ], + "reversegeo:latitude":42.274793, + "reversegeo:longitude":-71.084418, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85832891, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"37ce29976a000e6193f4630fe6dbae57", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108703311, + "neighbourhood_id":85832891, + "region_id":85688645 + } + ], + "wof:id":1108703311, + "wof:lastmodified":1566624098, + "wof:name":"Lower Mills", + "wof:parent_id":85832891, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85831585 + ], + "wof:tags":[] +}, + "bbox": [ + -71.0938727693418, + 42.26650368457432, + -71.06591999983635, + 42.28156597040536 +], + "geometry": {"coordinates":[[[[-71.0938727693418,42.26708819852151],[-71.09353486419212,42.27608449739949],[-71.09310158372624,42.27624718995322],[-71.09294148284467,42.27632863293518],[-71.09277610152836,42.27642728505652],[-71.09249376519101,42.27661714611936],[-71.09235135877363,42.27674168959041],[-71.09223803665859,42.27686183998663],[-71.09208853754321,42.27704385459422],[-71.09194438091612,42.2772019243721],[-71.09183420080032,42.2773037028773],[-71.09173388200463,42.27738960360135],[-71.09162414059476,42.27747298917206],[-71.09113819558586,42.27778492187074],[-71.08998181210306,42.27855144742626],[-71.08980799648343,42.27869582100735],[-71.08961075671087,42.27887766587605],[-71.08946910022672,42.27903374876248],[-71.08909902092692,42.2794745045743],[-71.08898299062635,42.27960971786752],[-71.0887832433252,42.2798229323455],[-71.08704949499123,42.28156597040536],[-71.08704799951309,42.28156499958125],[-71.08670300047112,42.28133899970609],[-71.08654100060056,42.28125600017907],[-71.08630199977713,42.28116699988398],[-71.08603399981874,42.28109699992708],[-71.08551400027761,42.28099500007624],[-71.08550399995738,42.28099099995122],[-71.08546299982687,42.28104499986916],[-71.08501199963605,42.28089199963389],[-71.0844889994349,42.28078200038941],[-71.08327599979792,42.28053100010645],[-71.0828130004537,42.28042999964045],[-71.08257000048209,42.28034199975548],[-71.08224499998344,42.2801779999624],[-71.08110199947711,42.27939399980309],[-71.08053299968419,42.27902199981883],[-71.08043800033334,42.27895999998616],[-71.08008170976606,42.27879943048018],[-71.07999199949585,42.27875900020097],[-71.07989599966386,42.27873099986007],[-71.07936800013087,42.27863900007317],[-71.07889099991046,42.27856699964968],[-71.07799999950161,42.27848400030366],[-71.07662900006176,42.27832900016705],[-71.07631600027318,42.27829900024302],[-71.07577899986804,42.27824999969511],[-71.07572400024104,42.27824700019684],[-71.0747279998557,42.27813299965931],[-71.07452599965633,42.27811099985582],[-71.07370200003888,42.27806799977317],[-71.0731659996956,42.2780499999118],[-71.07277399982108,42.27807300017929],[-71.07222300015425,42.27811000008494],[-71.07167600009031,42.27818400040148],[-71.07101499994481,42.27831399991831],[-71.07056700030522,42.27845399962482],[-71.06978599949767,42.27871800033444],[-71.06950500014639,42.27882599964421],[-71.06863199990421,42.27911299978372],[-71.0681420002205,42.27927400028151],[-71.06784999945033,42.27937399998999],[-71.06723700044942,42.27956100006531],[-71.06638600013612,42.27980300038255],[-71.06591999983635,42.27992799958948],[-71.06604699964545,42.2795179997366],[-71.06623000034556,42.27883200025491],[-71.06650300018005,42.27790400039459],[-71.06660599953339,42.27752900041092],[-71.06681899961667,42.27678799984938],[-71.06697699959507,42.27625400042573],[-71.0671890002682,42.27550400029956],[-71.06743800022169,42.27457599999862],[-71.06762100015568,42.27389700031787],[-71.06771199962921,42.27354900001555],[-71.06779599958195,42.27325700023757],[-71.06787600005262,42.2729579998596],[-71.06799800023805,42.27245900039531],[-71.0680230001597,42.27228299990563],[-71.06801799959393,42.27221600010141],[-71.06798899972752,42.27211499998071],[-71.0679899999588,42.27194700025994],[-71.06802099957412,42.27177499987624],[-71.06809300035152,42.2715589999497],[-71.06817800038029,42.27134300023252],[-71.06818999946397,42.27121699972967],[-71.06817300031742,42.27111800022224],[-71.06816700013603,42.27108400009008],[-71.06813900004451,42.27100299955286],[-71.06820000058678,42.27095000009509],[-71.06820397736301,42.27094722229607],[-71.06826300043487,42.27090600038337],[-71.06837499946242,42.27082699992031],[-71.06841399961723,42.2708060000879],[-71.068501999514,42.27077500008838],[-71.06869300035098,42.27073199957801],[-71.06877800037141,42.27071000017045],[-71.06884500051414,42.27069599987254],[-71.06901099989888,42.27066199986703],[-71.06925300044469,42.27064899986111],[-71.06930199992661,42.27064399966844],[-71.06946000043123,42.27063200041957],[-71.06970999984337,42.27061099960363],[-71.06978400031912,42.27060499990282],[-71.07041499961636,42.27061299967357],[-71.07060800058315,42.27062999989386],[-71.07093099956067,42.27070899989269],[-71.07129700009156,42.27078400009193],[-71.07135300008834,42.27079600043528],[-71.07169400056723,42.27081300014065],[-71.07174199954007,42.27081199973907],[-71.07189499971437,42.27078600033636],[-71.07191200047966,42.27078299996605],[-71.07214499958731,42.27074299973651],[-71.07230999983838,42.27071399965143],[-71.0724000005839,42.2706860003433],[-71.07244200038627,42.27066899957419],[-71.07255999957951,42.27060500028531],[-71.07273300046484,42.27048100022479],[-71.07277600027051,42.27044599962583],[-71.07279799983944,42.27042899994877],[-71.07298599987443,42.27033999979572],[-71.0730419995037,42.27033099966705],[-71.07313100018314,42.27032499955926],[-71.07316287648447,42.27032132144572],[-71.07359000059959,42.27029299996005],[-71.0737099999559,42.27028599991762],[-71.07400100042018,42.27029000031627],[-71.07448699986014,42.27031800006797],[-71.07456799972792,42.27031599987421],[-71.07477900054954,42.27030899997578],[-71.0748940000734,42.27030300023116],[-71.07520500025279,42.2702530001081],[-71.07538599996904,42.27027299994559],[-71.07592200002431,42.27033199956768],[-71.07654199961331,42.27019699963811],[-71.07682100046895,42.27005200016973],[-71.07697200017141,42.26997300001418],[-71.07729399943086,42.26992200030602],[-71.07748499947458,42.26989200002316],[-71.07805700026762,42.26980099966171],[-71.07816199978213,42.26978399957818],[-71.07824700012372,42.26976999960019],[-71.07827499959855,42.26976500038778],[-71.07835800041066,42.26975200042784],[-71.0783850004496,42.26974799956015],[-71.07841700009875,42.26974299969356],[-71.07846200033343,42.26973600024198],[-71.07850799939901,42.26972899993723],[-71.07853800014715,42.26972399990304],[-71.07859100011615,42.26971599980877],[-71.0787480004344,42.2696909999072],[-71.078800000303,42.26968299964938],[-71.07899299956708,42.26965200035328],[-71.07927999952663,42.26960600032022],[-71.07956800032589,42.26955999963387],[-71.07975999942749,42.26953000013099],[-71.07980000038059,42.26950600028535],[-71.07992599961305,42.26943199961071],[-71.07995899972236,42.26941299961105],[-71.08031399986149,42.26920300011928],[-71.08080899987911,42.26897400010373],[-71.08083200049168,42.26897000026866],[-71.08109100031977,42.2689209999317],[-71.08232299957504,42.26874500023927],[-71.08261300016406,42.26861199990926],[-71.08283100006636,42.26853200033971],[-71.08292099976242,42.26850500024185],[-71.0829679997106,42.2684960004082],[-71.08321100024249,42.26850799956937],[-71.08355199941371,42.26856600005979],[-71.08369399979601,42.26861600024343],[-71.08399100032327,42.26872099975675],[-71.0841779995867,42.26876300016163],[-71.08436100010847,42.26880999959322],[-71.08464200052519,42.26885700030158],[-71.08481500049038,42.26888599992849],[-71.08534499952621,42.26897499962348],[-71.08540500043645,42.26898499987857],[-71.08551899944391,42.26900800005659],[-71.08555399964304,42.2690530003274],[-71.08560500009573,42.26911900034231],[-71.08565699948106,42.26918500033624],[-71.08569100031745,42.2692290003186],[-71.08594799985752,42.26929199969565],[-71.08609999940175,42.26931100028887],[-71.0866930001843,42.26938200039157],[-71.08681000054914,42.26939700006189],[-71.08734099983442,42.26949300028998],[-71.08775100028063,42.26956699964338],[-71.0881049998941,42.26963099956068],[-71.08867199973422,42.2697329999266],[-71.08915000017495,42.26974199985053],[-71.08917200048076,42.2697380001698],[-71.08940300000738,42.26969000001683],[-71.08955242322469,42.26974753971231],[-71.08958364476835,42.26973864103459],[-71.0896280781311,42.26972370799449],[-71.08968335858101,42.26969783626539],[-71.0897361788669,42.26967149746545],[-71.08980478863157,42.26963172395818],[-71.08986971081882,42.26959102253004],[-71.08992878929239,42.26954915681069],[-71.08998450315281,42.26950384888348],[-71.09002415365006,42.2694667159811],[-71.09006043513241,42.26942682600668],[-71.09009426088585,42.26938578476741],[-71.09013558974088,42.26932716121613],[-71.09017076552996,42.26926760368183],[-71.09022923562713,42.26912969011472],[-71.09027433838099,42.26901116732704],[-71.09028430745634,42.26894534372297],[-71.09028967133058,42.26887767336583],[-71.09029039006965,42.26876653857563],[-71.09026479965955,42.2686292397612],[-71.09024159252044,42.26850429983705],[-71.09020631457801,42.26838914817277],[-71.09018843221813,42.26834540691832],[-71.09018538153026,42.2683410511553],[-71.09018047912899,42.26833737481726],[-71.09017557524322,42.26833392805172],[-71.090170974811,42.26833116660144],[-71.09016606649404,42.26832840495256],[-71.09015992639326,42.26832586758513],[-71.09015408730401,42.26832401822505],[-71.09014794155964,42.2683221659697],[-71.09014056429277,42.26832031021898],[-71.09012304920952,42.26831498721926],[-71.09011075501552,42.26831151407378],[-71.09010001152632,42.26830667349537],[-71.09008833901197,42.26830228785561],[-71.09008344106402,42.26829792459586],[-71.09007885220217,42.26829356333948],[-71.0900739616422,42.26828805851774],[-71.09006936592429,42.26828438236929],[-71.09006571401873,42.26827796635752],[-71.09005507317464,42.26825689002369],[-71.09004564556066,42.26823901950781],[-71.09002756089232,42.26822637677314],[-71.09001806251953,42.26821925475512],[-71.09000826340768,42.26821121605145],[-71.09000000247374,42.26820318373882],[-71.08999512969851,42.26819493304384],[-71.08999179927156,42.26818623140018],[-71.08998816244693,42.26817729998471],[-71.08998452441705,42.26816836766451],[-71.08998007024471,42.26814319811287],[-71.08998109034682,42.26812810902558],[-71.08998487664485,42.26811394452543],[-71.0899899240529,42.26809521097323],[-71.08999367752052,42.26808630594304],[-71.08999496675622,42.26807739121453],[-71.08999594070228,42.26806962054952],[-71.08999599397977,42.26806138834179],[-71.08999604577734,42.2680533848064],[-71.08999517394113,42.26804537797346],[-71.08999275679606,42.26803828033425],[-71.08999033844522,42.26803118179031],[-71.08998669127001,42.26802385108161],[-71.08998181110452,42.26801674464826],[-71.08997722819004,42.26801146869784],[-71.08997021508297,42.26800092448261],[-71.0899607229386,42.26799265909299],[-71.08995582770977,42.26798806805971],[-71.08995123767288,42.26798370589334],[-71.08994757247565,42.26797934792939],[-71.08994390633481,42.26797476128422],[-71.08993905578063,42.26796308140019],[-71.08990124235862,42.26796598040313],[-71.08989796991318,42.26788672017983],[-71.08993618152596,42.26788371996503],[-71.08997157817889,42.26779031716062],[-71.08997884433469,42.26776175928747],[-71.09002550076693,42.26764095443716],[-71.09007517363018,42.26752976479843],[-71.09010452845308,42.26746561113268],[-71.09013357897801,42.26740145637277],[-71.09015556540574,42.26733407490559],[-71.09017294968542,42.26726438933185],[-71.09018409091136,42.26720771790828],[-71.09019309422446,42.26714875117592],[-71.09019188202747,42.26709798038711],[-71.09019098013553,42.26704720980484],[-71.09019067804918,42.26695093538703],[-71.09019703472559,42.26687274937353],[-71.09020940116531,42.26681722570464],[-71.09022639427755,42.26676057335388],[-71.09023737563794,42.26672859764941],[-71.09024829755498,42.26670599842092],[-71.09027027030656,42.26668846773103],[-71.090299011765,42.26667164901965],[-71.09032927482555,42.26665757896237],[-71.09037465313308,42.26663898835871],[-71.09041942279177,42.26661948175549],[-71.09045555778779,42.26660177376337],[-71.0904737854663,42.26659223430097],[-71.09049139322939,42.26658314998058],[-71.09058667335859,42.26656039235521],[-71.0907127992884,42.2665288288597],[-71.09080035685081,42.26651038931128],[-71.09083517576218,42.26650593802099],[-71.09087089905908,42.26650446635457],[-71.09090846516455,42.26650368457432],[-71.09094663397451,42.26650473615141],[-71.0909841732411,42.26650829912857],[-71.09103646667059,42.2665155743827],[-71.0910881301393,42.26652467679202],[-71.09118988599604,42.26654836331404],[-71.09131098050239,42.26658081102722],[-71.09142928808942,42.26661576145121],[-71.09149165761848,42.26663587830109],[-71.09155403013573,42.26665553777199],[-71.09163914979113,42.26668076636647],[-71.09171200475727,42.26669817714898],[-71.09176491296364,42.26670545335576],[-71.09181781207523,42.26671433115035],[-71.09187164711751,42.26672092636956],[-71.09192670577661,42.2667291257556],[-71.09204671115656,42.26673938437598],[-71.09219166715536,42.26674790385673],[-71.09225262374954,42.26674880634277],[-71.09229357067871,42.2667489517244],[-71.09233327755784,42.26675023517775],[-71.09235451481074,42.2667512261786],[-71.09237484758219,42.26674924025394],[-71.09239424470836,42.2667493091044],[-71.09245919117598,42.26675159770899],[-71.09252382337613,42.26675525722823],[-71.09259336855472,42.26676076356291],[-71.09266289463757,42.26676924169806],[-71.09272376797604,42.26678272181481],[-71.09275389384609,42.26678991766423],[-71.09278246860482,42.26679893742727],[-71.09281011534661,42.26680863992588],[-71.09284356437932,42.26682590935546],[-71.09287454483268,42.26684385605669],[-71.09293096409075,42.26687972979008],[-71.09296433731028,42.26690843280204],[-71.09299771445333,42.26693690714019],[-71.09303601490869,42.26696562759364],[-71.09307278216647,42.26699319921247],[-71.09310279483041,42.26701823143124],[-71.09313584711043,42.2670489913544],[-71.0931670913245,42.26707402701894],[-71.09319592421355,42.26709082353539],[-71.09321126648922,42.26709888160368],[-71.09323522776174,42.26710719797691],[-71.09327120464586,42.26711441531436],[-71.09329518845811,42.26711884513391],[-71.09333361660083,42.26712790055477],[-71.09337668047608,42.26713422734434],[-71.09340190849501,42.26713706080303],[-71.09342713652192,42.26713989335585],[-71.09345236479489,42.26714249902693],[-71.09347479848617,42.26714898052025],[-71.09350153799981,42.26715616508461],[-71.09352643150112,42.26716334130806],[-71.09354672328365,42.26716775890699],[-71.0935685647126,42.26717058034253],[-71.09360548169404,42.26717505496889],[-71.09361095608901,42.26707483967665],[-71.0938727693418,42.26708819852151]]]],"type":"MultiPolygon"} +},{ + "id": 1108705213, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000071, + "geom:area_square_m":653685.566022, + "geom:bbox":"-71.1031055341,42.3110622592,-71.088605,42.321576", + "geom:latitude":42.316556, + "geom:longitude":-71.096763, + "iso:country":"US", + "lbl:latitude":42.315726, + "lbl:longitude":-71.100534, + "lbl:max_zoom":18.0, + "mps:latitude":42.315945, + "mps:longitude":-71.097861, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.315945, + "reversegeo:longitude":-71.097861, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85846283, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"ec299415eb14fe8a6d1826d5e38871df", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108705213, + "neighbourhood_id":85846283, + "region_id":85688645 + } + ], + "wof:id":1108705213, + "wof:lastmodified":1566624098, + "wof:name":"Egleston Square", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891361 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1031055340691, + 42.31106225916723, + -71.088605, + 42.321576 +], + "geometry": {"coordinates":[[[[-71.09786190420601,42.31106225916723],[-71.10156137639785,42.31247079909109],[-71.10046800097891,42.31357067980343],[-71.10096569192429,42.31383707444582],[-71.10106103556889,42.31389520110827],[-71.10114219150719,42.3139548985939],[-71.10158351518849,42.31442216906601],[-71.10205205895369,42.31499997225162],[-71.10240156711465,42.31539545610066],[-71.10246715026167,42.3154762111382],[-71.10266903268345,42.31573104562744],[-71.10277008956024,42.31588666160526],[-71.1028397327749,42.31604365921944],[-71.10289639042442,42.31619636307301],[-71.10295285258059,42.31637097360691],[-71.10298028467729,42.31644017677468],[-71.10301837012122,42.3165117819468],[-71.1031055340691,42.31662991917231],[-71.102889,42.316807],[-71.10256,42.317077],[-71.10209399999999,42.317484],[-71.10177,42.317751],[-71.101545,42.317914],[-71.101389,42.318036],[-71.101314,42.318127],[-71.10124999999999,42.31825],[-71.101195,42.318431],[-71.101151,42.318554],[-71.10109199999999,42.318673],[-71.101038,42.31876],[-71.10094100000001,42.318872],[-71.10063,42.319156],[-71.10036100000001,42.319446],[-71.100222,42.319576],[-71.10015199999999,42.319623],[-71.10007,42.319661],[-71.099975,42.31971],[-71.099958,42.319715],[-71.099852,42.319746],[-71.099569,42.319814],[-71.09925699999999,42.319718],[-71.099008,42.319669],[-71.098412,42.319572],[-71.098299,42.319556],[-71.097915,42.319509],[-71.097489,42.319484],[-71.096964,42.319514],[-71.096901,42.319516],[-71.096779,42.319507],[-71.09651599999999,42.31947],[-71.09631899999999,42.319424],[-71.095941,42.31933],[-71.09589200000001,42.319314],[-71.095743,42.31925],[-71.09567199999999,42.319197],[-71.095446,42.318986],[-71.095305,42.318825],[-71.09504099999999,42.319094],[-71.094478,42.319637],[-71.09435499999999,42.319756],[-71.09404000000001,42.320071],[-71.09359000000001,42.320456],[-71.093146,42.3208],[-71.092647,42.321182],[-71.092476,42.321307],[-71.092089,42.321576],[-71.09202399999999,42.321532],[-71.091718,42.321387],[-71.090768,42.320965],[-71.09055600000001,42.320871],[-71.09024100000001,42.320723],[-71.090006,42.320614],[-71.08942399999999,42.320359],[-71.088965,42.320152],[-71.088605,42.319974],[-71.089147,42.319793],[-71.089551,42.319643],[-71.089828,42.319488],[-71.090238,42.319213],[-71.090673,42.318874],[-71.090802,42.318749],[-71.09084300000001,42.318673],[-71.09090500000001,42.318506],[-71.091004,42.318268],[-71.091133,42.317954],[-71.091294,42.317605],[-71.09161899999999,42.316997],[-71.091779,42.316963],[-71.091967,42.316941],[-71.092293,42.316916],[-71.09247000000001,42.316895],[-71.09272199999999,42.316843],[-71.09296399999999,42.316751],[-71.09309,42.316675],[-71.093183,42.316543],[-71.093226,42.316443],[-71.093333,42.316152],[-71.09347200000001,42.315789],[-71.093559,42.315515],[-71.09361800000001,42.31524],[-71.093681,42.315016],[-71.093756,42.314785],[-71.09382100000001,42.314541],[-71.09385899999999,42.314457],[-71.09393799999999,42.31432],[-71.094088,42.314142],[-71.094174,42.314061],[-71.09439500000001,42.313876],[-71.09479,42.313574],[-71.095038,42.313382],[-71.09510821433891,42.31333179363628],[-71.0951518391165,42.31329632435477],[-71.09568012880044,42.31289482030729],[-71.09609606004351,42.31259622902631],[-71.09613718485527,42.31256800518042],[-71.09623856213688,42.31249843078778],[-71.09623940400211,42.31249785305364],[-71.09623949781415,42.31249778856181],[-71.09624331484729,42.31249516770169],[-71.09625006926174,42.31249053239207],[-71.09625148373709,42.31248956233924],[-71.09625969202003,42.31248310543306],[-71.09626327621157,42.31248028568878],[-71.096281840844,42.31246568235944],[-71.09634786176443,42.31241374922966],[-71.09644597124608,42.31235646754281],[-71.09660398630761,42.31229047772131],[-71.0969019257134,42.31219856744008],[-71.09692788011012,42.31219056029856],[-71.09696481664474,42.31217916603466],[-71.09696679406194,42.31217855626576],[-71.09700862307271,42.31216403440634],[-71.0970133240934,42.3121624024464],[-71.09711547247304,42.31212693955971],[-71.09723874177317,42.31207386065908],[-71.09727484217952,42.31204839621498],[-71.09727634087912,42.31204733911582],[-71.09728886903646,42.31203850158255],[-71.0973454759843,42.3119985709689],[-71.0973496016698,42.31199566035735],[-71.09735557940202,42.31199144360073],[-71.09735900691153,42.3119890257063],[-71.09739078780902,42.31196660800371],[-71.09739926093182,42.31196063000199],[-71.09743325572489,42.3119366508248],[-71.09744795887443,42.31192073104933],[-71.09745131038197,42.31191710198559],[-71.09750213375872,42.31186207555128],[-71.09751375407289,42.31184949497732],[-71.09752817503723,42.31183388120461],[-71.09755124587747,42.31180890221599],[-71.0976410423161,42.31171167840028],[-71.09771586109777,42.31160903270851],[-71.09776565004904,42.3115193374724],[-71.09778486830267,42.31147201486741],[-71.09780320914693,42.31142685530435],[-71.09781083777604,42.31138958807056],[-71.09781237122809,42.31138210205996],[-71.09782046676253,42.31134255600513],[-71.0978264742601,42.31131320841721],[-71.0978325405563,42.31128357834105],[-71.09784623285843,42.31118061508999],[-71.0978618027405,42.31106352913234],[-71.09786190332652,42.31106277953625],[-71.09786190421804,42.31106244822982],[-71.09786190420601,42.31106225916723]]]],"type":"MultiPolygon"} +},{ + "id": 1108706651, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000104, + "geom:area_square_m":950371.2977, + "geom:bbox":"-71.122439,42.2442684149,-71.1093473147,42.2581764273", + "geom:latitude":42.250858, + "geom:longitude":-71.114612, + "iso:country":"US", + "lbl:latitude":42.250734, + "lbl:longitude":-71.114166, + "lbl:max_zoom":18.0, + "mps:latitude":42.250734, + "mps:longitude":-71.114166, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.250734, + "reversegeo:longitude":-71.114166, + "src:geom":"mz", + "wof:belongsto":[ + 420524063, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e3d6976a3c807c9c14b4bb514a41092d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108706651, + "neighbourhood_id":420524063, + "region_id":85688645 + } + ], + "wof:id":1108706651, + "wof:lastmodified":1607100251, + "wof:name":"Fairmount Hills", + "wof:parent_id":420524063, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524035 + ], + "wof:tags":[] +}, + "bbox": [ + -71.122439, + 42.24426841487923, + -71.1093473146534, + 42.25817642733091 +], + "geometry": {"coordinates":[[[[-71.122439,42.250058],[-71.122308,42.250164],[-71.121799,42.250467],[-71.121115,42.25085],[-71.120413,42.251261],[-71.1191,42.252017],[-71.11883,42.252179],[-71.118651,42.252298],[-71.118522,42.252405],[-71.118336,42.252595],[-71.117931,42.253056],[-71.117733,42.25331],[-71.11771,42.25334],[-71.116686,42.254466],[-71.115669,42.255624],[-71.115286,42.256052],[-71.11431399999999,42.257032],[-71.11418999999999,42.257146],[-71.114114,42.257216],[-71.113889,42.257394],[-71.11360500000001,42.257604],[-71.113135,42.257881],[-71.11246709911435,42.25817642733091],[-71.10954441147965,42.25541227716445],[-71.10934731465341,42.24799027168467],[-71.11652376800548,42.24426841487923],[-71.11685199999999,42.244613],[-71.117234,42.244915],[-71.11780899999999,42.245523],[-71.118409,42.246119],[-71.118937,42.246634],[-71.119153,42.246846],[-71.119927,42.247586],[-71.12023000000001,42.247891],[-71.121127,42.248754],[-71.12220600000001,42.249806],[-71.122439,42.250058]]]],"type":"MultiPolygon"} +},{ + "id": 1108711411, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000029, + "geom:area_square_m":266201.663068, + "geom:bbox":"-71.0527518644,42.3442299982,-71.0453367232,42.3534875083", + "geom:latitude":42.349155, + "geom:longitude":-71.04919, + "iso:country":"US", + "lbl:latitude":42.351406, + "lbl:longitude":-71.048848, + "lbl:max_zoom":18.0, + "mps:latitude":42.350817, + "mps:longitude":-71.048572, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Fort Point" + ], + "name:eng_x_preferred":[ + "Fort Point" + ], + "name:eng_x_variant":[ + "Fort Point Channel", + "Fort Point Channel Landmark District" + ], + "name:fra_x_preferred":[ + "Fort Point" + ], + "name:zho_x_preferred":[ + "\u6d77\u89d2\u5821" + ], + "reversegeo:latitude":42.350817, + "reversegeo:longitude":-71.048572, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420780909, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1400626" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f3e8ed95b3a4e029a352647cec4c359f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711411, + "neighbourhood_id":420780909, + "region_id":85688645 + } + ], + "wof:id":1108711411, + "wof:lastmodified":1566624149, + "wof:name":"Fort Point", + "wof:parent_id":420780909, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891267 + ], + "wof:tags":[] +}, + "bbox": [ + -71.0527518644417, + 42.34422999824233, + -71.04533672315084, + 42.35348750831121 +], + "geometry": {"coordinates":[[[[-71.04758812921403,42.34888918275617],[-71.04865334789609,42.34755240852459],[-71.04870425500826,42.34742724348705],[-71.04874841168312,42.34724603410627],[-71.04875272622654,42.34710666155561],[-71.04873585329729,42.34695122804321],[-71.04871101545982,42.34686702290514],[-71.0486767229992,42.34677754026922],[-71.04863247314057,42.34668011245947],[-71.04856958382506,42.34658643379574],[-71.0484551849496,42.3464631943699],[-71.04829387174951,42.34632309095281],[-71.05060974715798,42.34422999824233],[-71.0527518644417,42.34503067290478],[-71.05034323411545,42.34812554705289],[-71.05132691893748,42.34862952431619],[-71.05048100827729,42.34969535155816],[-71.05108661180519,42.35016464543197],[-71.05113274870115,42.35025639879828],[-71.05113503797384,42.35034713864292],[-71.05109620792395,42.35045260416334],[-71.05126633782581,42.35052399497204],[-71.05087140168035,42.35102393794759],[-71.05039249827222,42.3516751629527],[-71.04913164433415,42.35329280782805],[-71.04898024091628,42.35348750831121],[-71.04533672315084,42.35186220086589],[-71.04758812921403,42.34888918275617]]]],"type":"MultiPolygon"} +},{ + "id": 1108711415, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000064, + "geom:area_square_m":589592.560299, + "geom:bbox":"-71.0879939093,42.2919662066,-71.0780963077,42.3021090274", + "geom:latitude":42.296989, + "geom:longitude":-71.082738, + "iso:country":"US", + "lbl:latitude":42.298739, + "lbl:longitude":-71.083106, + "lbl:max_zoom":18.0, + "mps:latitude":42.296927, + "mps:longitude":-71.082643, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.296927, + "reversegeo:longitude":-71.082643, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"554512169cc1956b88a411e76c8cadcc", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711415, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711415, + "wof:lastmodified":1566624149, + "wof:name":"Franklin Field North", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891363 + ], + "wof:tags":[] +}, + "bbox": [ + -71.0879939093011, + 42.29196620659524, + -71.07809630769168, + 42.30210902740653 +], + "geometry": {"coordinates":[[[[-71.0879939093011,42.29481832779565],[-71.08699199971156,42.29814200038336],[-71.08693600046306,42.29835699974993],[-71.08679099982635,42.29877399999256],[-71.08669200006982,42.29910500044281],[-71.08654099984261,42.29956199979383],[-71.08640400014842,42.30000299965433],[-71.08625600036983,42.30038899997339],[-71.08616400028394,42.30062999955469],[-71.08591799941665,42.30133399974624],[-71.0859030003825,42.30138099988056],[-71.08572700015119,42.30195299955069],[-71.08567834956609,42.30210902740653],[-71.08291117714717,42.30050793243419],[-71.07908960258065,42.30148855561044],[-71.07916056261179,42.30112824930028],[-71.07922894397548,42.30070697019165],[-71.07926191640051,42.30023216336515],[-71.07925099067864,42.29981375412641],[-71.07912629359885,42.2988574317601],[-71.07898799113208,42.29797456754627],[-71.07876423814707,42.29639325656862],[-71.07856296042563,42.29492631587178],[-71.07809630769168,42.29196620659524],[-71.0879939093011,42.29481832779565]]]],"type":"MultiPolygon"} +},{ + "id": 1108711417, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000111, + "geom:area_square_m":1019667.663377, + "geom:bbox":"-71.0915070746,42.280991,-71.0780697039,42.2948183278", + "geom:latitude":42.288262, + "geom:longitude":-71.08504, + "iso:country":"US", + "lbl:latitude":42.288436, + "lbl:longitude":-71.085133, + "lbl:max_zoom":18.0, + "mps:latitude":42.288436, + "mps:longitude":-71.085133, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.288436, + "reversegeo:longitude":-71.085133, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d9fee0d7b6b3298881bf8bbb43ef1803", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711417, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711417, + "wof:lastmodified":1566624149, + "wof:name":"Franklin Field South", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524021 + ], + "wof:tags":[] +}, + "bbox": [ + -71.09150707463259, + 42.28099099995122, + -71.07806970389842, + 42.29481832779565 +], + "geometry": {"coordinates":[[[[-71.07901885254415,42.28805436370275],[-71.0795336589718,42.28732299509802],[-71.08009344002016,42.28668997784244],[-71.08124217928041,42.28568831841598],[-71.08271144496399,42.28450608179578],[-71.08382473422024,42.28319926416636],[-71.08537478824047,42.2810150743974],[-71.08546299982687,42.28104499986916],[-71.08550399995738,42.28099099995122],[-71.08551400027761,42.28099500007624],[-71.08603399981874,42.28109699992708],[-71.08630199977713,42.28116699988398],[-71.08654100060056,42.28125600017907],[-71.08670300047112,42.28133899970609],[-71.08704799951309,42.28156499958125],[-71.08740999975956,42.28180000038616],[-71.08797399971219,42.28218999991382],[-71.08820500009485,42.28233100015125],[-71.08854499944766,42.28255299998193],[-71.08877900008498,42.28270399955957],[-71.08892899959457,42.28285000028551],[-71.08901299961182,42.2829710000398],[-71.0891079994712,42.28313400041564],[-71.089147000124,42.28325900028807],[-71.08923999946295,42.28348399997555],[-71.08929800023567,42.28357299977872],[-71.08942900001185,42.2837140000199],[-71.08955600055052,42.28382299984356],[-71.08966799963812,42.28388599986299],[-71.0897849996299,42.28393600014729],[-71.09067799987334,42.28410099991554],[-71.09138200017298,42.28423699972182],[-71.09150707463259,42.2842642888728],[-71.0879939093011,42.29481832779565],[-71.07809630769168,42.29196620659524],[-71.07806970389842,42.29139660832203],[-71.0780950756353,42.29079822306117],[-71.07816689793896,42.29026957737093],[-71.07827790865537,42.28978628256287],[-71.07839699341798,42.28938993749227],[-71.07867488826153,42.28870528401823],[-71.07901885254415,42.28805436370275]]]],"type":"MultiPolygon"} +},{ + "id": 1108711419, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":172892.349038, + "geom:bbox":"-71.0638612903,42.3588015007,-71.0569472657,42.3639643597", + "geom:latitude":42.361518, + "geom:longitude":-71.060332, + "iso:country":"US", + "lbl:latitude":42.360547, + "lbl:longitude":-71.058685, + "lbl:max_zoom":18.0, + "mps:latitude":42.361655, + "mps:longitude":-71.059808, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Government Center" + ], + "name:eng_x_preferred":[ + "Government Center" + ], + "name:fra_x_preferred":[ + "Government Center" + ], + "name:ukr_x_preferred":[ + "Lower Burnside" + ], + "reversegeo:latitude":42.361655, + "reversegeo:longitude":-71.059808, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815133, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1540440" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"95f6eaa002085b2cb27c105dbc0b5f89", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711419, + "neighbourhood_id":85815133, + "region_id":85688645 + } + ], + "wof:id":1108711419, + "wof:lastmodified":1566624149, + "wof:name":"Government Center", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891269 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06386129032869, + 42.35880150073837, + -71.05694726573262, + 42.36396435970752 +], + "geometry": {"coordinates":[[[[-71.06285362561282,42.36122842525966],[-71.06376946137614,42.36122847613469],[-71.06385993439774,42.36235901039835],[-71.06386129032869,42.36268858717078],[-71.06382540614551,42.3630104922552],[-71.06376106266657,42.36325123968555],[-71.06365831111211,42.36347260027008],[-71.06343292960598,42.36396435970752],[-71.05950854177181,42.36297546874995],[-71.05924304367272,42.36290283177083],[-71.05893397011866,42.36278705280542],[-71.05867450716569,42.36263732265855],[-71.05839063141931,42.36241898422979],[-71.0581580242757,42.36217913452027],[-71.05793487268947,42.36192004276852],[-71.05773951891371,42.36163341411006],[-71.05756549099172,42.36131875218357],[-71.05745030550337,42.36103296306358],[-71.05694726573262,42.35886470741396],[-71.05727404402666,42.35882052419063],[-71.05748930048549,42.35880150073837],[-71.05769928645518,42.35880492337883],[-71.05811614437832,42.35885891342287],[-71.05854984967739,42.35894910976641],[-71.05924404895273,42.35916999160182],[-71.05956492774222,42.35929203904102],[-71.05965262416601,42.35934820669158],[-71.05971664837958,42.35942496932072],[-71.05995830851298,42.35996927476133],[-71.06005379709119,42.36014815191497],[-71.06020804202485,42.36033964109014],[-71.06042837952508,42.36053585118777],[-71.06074040610442,42.36073659289553],[-71.06101694158208,42.36087700431331],[-71.0611924890563,42.36095075612571],[-71.06145058244815,42.36103039897147],[-71.06172161833379,42.36109767559502],[-71.06204374655564,42.36115464281334],[-71.06232900991263,42.36118975125558],[-71.06285362561282,42.36122842525966]]]],"type":"MultiPolygon"} +},{ + "id": 1108711421, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000047, + "geom:area_square_m":431417.700997, + "geom:bbox":"-71.0864249325,42.3049168582,-71.0762055712,42.3175644724", + "geom:latitude":42.311043, + "geom:longitude":-71.081159, + "iso:country":"US", + "lbl:latitude":42.310968, + "lbl:longitude":-71.081082, + "lbl:max_zoom":18.0, + "mps:latitude":42.310968, + "mps:longitude":-71.081082, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.310968, + "reversegeo:longitude":-71.081082, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"65bb1c65f9764091a5f33ef5f33ca5f3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711421, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711421, + "wof:lastmodified":1566624132, + "wof:name":"Grove Hall", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524067 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08642493253849, + 42.30491685821089, + -71.07620557115465, + 42.3175644724348 +], + "geometry": {"coordinates":[[[[-71.08360141323431,42.30496689258798],[-71.08446339296223,42.30525871149939],[-71.08525519719497,42.3055709636881],[-71.08577239009404,42.30582837512367],[-71.08642493253849,42.30617937736439],[-71.08603535664203,42.30681056118733],[-71.08565601331483,42.30735010968058],[-71.08362180556692,42.30986025310133],[-71.0838204377855,42.31037742122787],[-71.0838576440123,42.31063685608738],[-71.08384510659866,42.31091002715706],[-71.08377573964972,42.31121640809937],[-71.08368298590423,42.3114523869704],[-71.08362891188311,42.31170053526063],[-71.08359189366656,42.31202337275703],[-71.08361049341578,42.31234409059896],[-71.08369957207175,42.31257806009542],[-71.08407202606918,42.3133227552165],[-71.08276107599796,42.31300389151967],[-71.08263659693289,42.3127427682417],[-71.08255948308557,42.31248848932431],[-71.0824968662269,42.31218786813762],[-71.0824748738666,42.31186130683772],[-71.08250272375864,42.31152864139588],[-71.08080773305272,42.31374043358243],[-71.08018133802803,42.3147646346223],[-71.07969363979176,42.31580866582933],[-71.0794185596598,42.31673765181229],[-71.07923179501009,42.3175644724348],[-71.07620557115465,42.31732716310414],[-71.07654701126027,42.31578905544231],[-71.07682865282293,42.31487847343982],[-71.07729878378848,42.31380291354774],[-71.07802046280015,42.31274557365413],[-71.08184106054873,42.30751380285943],[-71.08150584102256,42.3071127593662],[-71.08122294026441,42.30682211369607],[-71.08074578180687,42.30638179239241],[-71.08011077912965,42.30581862271388],[-71.08113076007517,42.30516005376773],[-71.08173206692619,42.30566574013874],[-71.08194678728375,42.30586604236019],[-71.08214186702041,42.30606260646298],[-71.08254703704532,42.30647485239177],[-71.08347538165526,42.30491685821089],[-71.08360141323431,42.30496689258798]]]],"type":"MultiPolygon"} +},{ + "id": 1108711423, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":223316.434836, + "geom:bbox":"-71.0466884341,42.3167199304,-71.0365166098,42.3221236551", + "geom:latitude":42.319257, + "geom:longitude":-71.041772, + "iso:country":"US", + "lbl:latitude":42.314851, + "lbl:longitude":-71.038873, + "lbl:max_zoom":18.0, + "mps:latitude":42.319307, + "mps:longitude":-71.041771, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Harbor Point" + ], + "name:eng_x_preferred":[ + "Harbor Point on the Bay" + ], + "name:eng_x_variant":[ + "Harbor Point" + ], + "reversegeo:latitude":42.319307, + "reversegeo:longitude":-71.041771, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f213f796b91d8a490df3d0417d10604e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711423, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711423, + "wof:lastmodified":1566624132, + "wof:name":"Harbor Point", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891259 + ], + "wof:tags":[] +}, + "bbox": [ + -71.04668843414873, + 42.31671993035004, + -71.03651660976496, + 42.3221236551145 +], + "geometry": {"coordinates":[[[[-71.03931374563437,42.31671993035004],[-71.04668843414873,42.31927365975945],[-71.0434415047138,42.3221236551145],[-71.04342490802416,42.32208379945885],[-71.04338111389362,42.32200349800996],[-71.04333521586346,42.3219072709039],[-71.04329268050695,42.32180639089086],[-71.04327613431974,42.32174211404283],[-71.043272686907,42.32170724978285],[-71.04325734481226,42.32168139435994],[-71.04323611549857,42.32165112478232],[-71.04320964042712,42.32163043873904],[-71.04316800718117,42.32160969334288],[-71.04309132585784,42.32157728118617],[-71.04299067099274,42.32153681681762],[-71.04287561658653,42.32149272900835],[-71.04279196423795,42.32145315405731],[-71.04269387511076,42.32141544644398],[-71.04258362176736,42.32137302048695],[-71.04249034651504,42.32133450538173],[-71.04238971103189,42.32129129824879],[-71.04228680166108,42.32125521323832],[-71.04217914835792,42.32121115509879],[-71.04207257579563,42.32117066544634],[-71.04196454319337,42.32112742756548],[-71.04185580019193,42.32108061886601],[-71.04175517274179,42.3210365847295],[-71.04150148908411,42.32093678412888],[-71.04118772357259,42.32081149875589],[-71.04086330972827,42.32067574181806],[-71.04053884064177,42.32054711770393],[-71.04024318170374,42.32042382334574],[-71.03994157323908,42.32030489246272],[-71.0397524328644,42.3202292213304],[-71.03961970632569,42.32017545417137],[-71.03958372057916,42.32014128321497],[-71.03953668794551,42.32015097468066],[-71.03948529082294,42.32015076875668],[-71.03945170185642,42.32014267552444],[-71.03940262735316,42.32012820912827],[-71.03935845348991,42.32010114105788],[-71.03932136750778,42.32006531626037],[-71.03930246324268,42.32002078641327],[-71.03929907844778,42.31997796541881],[-71.03930671200391,42.3199450657722],[-71.03932135309888,42.31991494012533],[-71.03934559486784,42.3198864978029],[-71.03937681334996,42.3198643963344],[-71.03941799656236,42.31984562808461],[-71.03941071607819,42.31982968071807],[-71.0393653593341,42.3198124859908],[-71.03926471322021,42.31977119548501],[-71.0390936941636,42.31969559499166],[-71.03881570129062,42.31958416707806],[-71.03854180135512,42.31946973531461],[-71.03820043850219,42.31932759072108],[-71.03792172406793,42.31921423648546],[-71.03758771045372,42.31907843159982],[-71.03731605050304,42.31896153637598],[-71.0371173248485,42.31888307725581],[-71.03703579871367,42.31885695530335],[-71.0369098991673,42.31883065360958],[-71.03677333554263,42.31879717302251],[-71.03667260356485,42.3187682283879],[-71.03662355446635,42.31875019120859],[-71.03657091598114,42.31871787518806],[-71.03653393926869,42.31866778286351],[-71.03651660976496,42.31861063578462],[-71.03652295592634,42.31855193663149],[-71.03655332715016,42.31849415903226],[-71.0366016839204,42.31845511175297],[-71.03667624904513,42.31842165923708],[-71.03682453429283,42.31836956958757],[-71.03695318548664,42.31832206689838],[-71.03711589132256,42.31827003407169],[-71.03724566050688,42.31822171178429],[-71.03732286543895,42.31818086091255],[-71.03851812266009,42.31782055938067],[-71.03856938654158,42.31780175224949],[-71.03860635982612,42.31777777527303],[-71.03863624450159,42.31774490535101],[-71.03931374563437,42.31671993035004]]]],"type":"MultiPolygon"} +},{ + "id": 1108711425, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000237, + "geom:area_square_m":2166850.77632, + "geom:bbox":"-71.0262791509,42.3783503599,-70.9944539663,42.3969775021", + "geom:latitude":42.388931, + "geom:longitude":-71.00969, + "iso:country":"US", + "lbl:latitude":42.383882, + "lbl:longitude":-71.000474, + "lbl:max_zoom":18.0, + "mps:latitude":42.390561, + "mps:longitude":-71.009934, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.390561, + "reversegeo:longitude":-71.009934, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815995, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"beee9b8533d0afb2005b607c41a4c4a5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711425, + "neighbourhood_id":85815995, + "region_id":85688645 + } + ], + "wof:id":1108711425, + "wof:lastmodified":1566624132, + "wof:name":"Harbor View", + "wof:parent_id":85815995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891273 + ], + "wof:tags":[] +}, + "bbox": [ + -71.02627915094851, + 42.37835035990678, + -70.99445396634272, + 42.396977502126 +], + "geometry": {"coordinates":[[[[-70.99445396634272,42.39331605212679],[-70.994454,42.393316],[-70.99447499999999,42.393284],[-70.994731,42.392888],[-70.99495,42.392549],[-70.99565800000001,42.391462],[-70.995858,42.391169],[-70.996076,42.390898],[-70.996416,42.390559],[-70.996729,42.390291],[-70.99715399999999,42.389942],[-70.998575,42.388875],[-70.998818,42.388769],[-70.998907,42.388712],[-70.999003,42.388674],[-70.999081,42.388644],[-70.999121,42.388629],[-70.99926499999999,42.388587],[-70.999377,42.388565],[-70.999469,42.388554],[-70.99965,42.38854],[-70.999875,42.388531],[-70.999965,42.388525],[-71.00044,42.388497],[-71.000668,42.388477],[-71.00082,42.388443],[-71.001075,42.388364],[-71.00116300000001,42.388331],[-71.001209,42.388314],[-71.002127,42.38801],[-71.00231700000001,42.387941],[-71.00251799999999,42.387884],[-71.00271499999999,42.387842],[-71.002909,42.387807],[-71.003058,42.387793],[-71.003102,42.387792],[-71.003282,42.387787],[-71.00338475666692,42.38776448382212],[-71.003764885499,42.38763690839919],[-71.004217,42.387472],[-71.004385,42.387417],[-71.005145,42.387166],[-71.00579,42.386953],[-71.005972,42.386893],[-71.006199,42.386819],[-71.006519,42.386716],[-71.006795,42.386664],[-71.007148,42.386582],[-71.008644,42.386074],[-71.00921,42.385883],[-71.01008,42.385593],[-71.01039900000001,42.385478],[-71.012591,42.384747],[-71.014031,42.38426],[-71.01413413362039,42.38422126615094],[-71.01152026570919,42.38034591955665],[-71.01152367794624,42.38034635620124],[-71.01153921266859,42.38034806878806],[-71.0115547391927,42.38035005682634],[-71.01157985338277,42.38035729553851],[-71.01160384771511,42.38036535595626],[-71.01162672708207,42.38037423359965],[-71.01166253299965,42.38038700764139],[-71.01169871802486,42.38039786476546],[-71.01174196728473,42.38040518311423],[-71.01175268747158,42.38040687433861],[-71.01176341522607,42.38040774273013],[-71.01177412692746,42.38041053316915],[-71.01178521533336,42.38041250234184],[-71.01179481087308,42.38041610730514],[-71.01180439246033,42.3804213624379],[-71.01181250900574,42.38042496382451],[-71.01182097620152,42.38043048971538],[-71.01182945674138,42.38043491640958],[-71.01183313784939,42.38043767701012],[-71.01183790610563,42.3804429099152],[-71.01184120415967,42.38044731461806],[-71.01184707742831,42.38045364966356],[-71.0118533210355,42.38045998808073],[-71.01186142758742,42.38046441318567],[-71.01186991447908,42.38046801794011],[-71.01187951121851,42.3804716265025],[-71.01188799328987,42.38047522673369],[-71.01189759516825,42.38047801245241],[-71.01194298279542,42.38049604333116],[-71.01197653255747,42.38051292202282],[-71.01201005902313,42.38053282197492],[-71.01204099155473,42.38055353377912],[-71.01207116582709,42.38057589078764],[-71.01210942014721,42.38060705987003],[-71.0121450647821,42.38064013998947],[-71.01218210740289,42.38068420324599],[-71.01221767322423,42.38072798383977],[-71.01223676914528,42.38074754975188],[-71.0122569813044,42.38076629302765],[-71.01228338333405,42.38079851105365],[-71.01230830789386,42.38082989994629],[-71.0123226331456,42.38084422934723],[-71.01232741415708,42.38084781745781],[-71.01233330231304,42.38085223312513],[-71.01233808576124,42.38085582034532],[-71.01234398147136,42.38085941408053],[-71.01234877249411,42.38086217666789],[-71.01235615565409,42.38086467925542],[-71.0123620525942,42.38086827119427],[-71.01236795859603,42.38087021564294],[-71.01237534567409,42.38087189538195],[-71.0123823627448,42.3808738436388],[-71.01238828476178,42.38087386873876],[-71.0123945846845,42.38087307347655],[-71.01239939321165,42.38087309385661],[-71.01240532368328,42.38087202243989],[-71.01241125840978,42.38087039916392],[-71.01244126120341,42.38086778403812],[-71.0126214295535,42.38087842450498],[-71.01263474380499,42.38087930377207],[-71.0126465814988,42.38088017678271],[-71.01265881099891,42.38087858286027],[-71.01267065260546,42.38087863302115],[-71.01268177073078,42.38087675980048],[-71.01269251761391,42.3808751577937],[-71.0127561970956,42.3808726843265],[-71.01280062308767,42.38087122584254],[-71.01284175545467,42.38086509079968],[-71.01287767541467,42.38086249701478],[-71.01293543529596,42.38085999748363],[-71.01298838843326,42.38085693020025],[-71.01302690085808,42.38085434734317],[-71.01307355254576,42.38085180072294],[-71.01311576485038,42.38084923439586],[-71.01312763756287,42.38084571679742],[-71.01314692001678,42.3808414103915],[-71.01316138424998,42.38083708089247],[-71.01319140089338,42.38083281810162],[-71.01321698687889,42.38082661353948],[-71.01324445598642,42.38081602713157],[-71.01328308451241,42.3807983549418],[-71.01331098127351,42.38078063734012],[-71.01332924013826,42.38076479837716],[-71.01336283814061,42.38072734624478],[-71.0133800257067,42.38070601638297],[-71.01339680434309,42.38069017024785],[-71.01340658700478,42.38066963192553],[-71.01341301418772,42.38065181988912],[-71.01341425133113,42.38063591161876],[-71.01342038684079,42.38060739841705],[-71.01342534499381,42.38058875910328],[-71.01342923700251,42.38056380425634],[-71.01342566169255,42.3805475992432],[-71.01341990439506,42.38052617052904],[-71.01341737558263,42.38051820308186],[-71.01340788975126,42.38050032644141],[-71.01339620203929,42.38047997009463],[-71.01339635406636,42.38046021300122],[-71.01340248808563,42.38043252355729],[-71.01343036232467,42.38041754991082],[-71.01346639209066,42.38040096321965],[-71.01347884948602,42.38036973266886],[-71.01347479946409,42.38027065406911],[-71.01347492822876,42.38025391734528],[-71.0134750992292,42.380231690839],[-71.01346314162946,42.38019843671956],[-71.01344782767801,42.38016818617183],[-71.0134362096766,42.38013877591779],[-71.01339913060451,42.38009937820432],[-71.01337527851105,42.38007265937684],[-71.01333231980433,42.38002774951033],[-71.01329672859606,42.379987534292],[-71.01326919908078,42.37995805580351],[-71.01324798325115,42.37992503707697],[-71.01323004174628,42.37989999075383],[-71.01322280317542,42.37987855665889],[-71.01321705354874,42.37985630599951],[-71.01321145357393,42.37981429913366],[-71.01320919188672,42.37977147902704],[-71.01321211049833,42.37972895812846],[-71.01321729945668,42.37967986032227],[-71.01322345369418,42.37964970237626],[-71.01323220245037,42.37961928262001],[-71.01324427859963,42.3795891461276],[-71.01325407017832,42.37956696032257],[-71.01326496253631,42.37954642670263],[-71.01327618901915,42.37953028430398],[-71.01328814774864,42.37951524155401],[-71.01330045178175,42.37950376900891],[-71.01331238425738,42.37949229399037],[-71.01332950514863,42.37947974436732],[-71.01334624967791,42.37946828970158],[-71.0133655829835,42.37945684508365],[-71.01338713711945,42.379445412557],[-71.0133945654088,42.37944187613191],[-71.01340310714806,42.37943834621645],[-71.01341126979509,42.37943563576044],[-71.01341979675752,42.37943402609754],[-71.01342832854817,42.37943131540105],[-71.01343795655801,42.37943053505831],[-71.01344648564549,42.37942864901371],[-71.01345611124003,42.37942786685861],[-71.01347757400863,42.37942878049117],[-71.01350049731525,42.37943162061237],[-71.01352193774201,42.37943528092369],[-71.01354966044828,42.37943978795828],[-71.01357699924324,42.37944621547984],[-71.01360359346644,42.3794534609104],[-71.0136238930158,42.3794606824235],[-71.01363127851191,42.37946318223947],[-71.01363717928666,42.37946595216683],[-71.01364419499832,42.37946790394327],[-71.01365640035893,42.37946877840567],[-71.01366934762525,42.3794696560031],[-71.01371044313656,42.3794681839927],[-71.01375266324706,42.37946479460404],[-71.01379342186068,42.37945865404237],[-71.0138341891998,42.3794516933399],[-71.01384379102927,42.37945447619612],[-71.01386555933775,42.37946334960127],[-71.01389291805332,42.37946703305115],[-71.01393284889778,42.37947269082967],[-71.01398061178062,42.37947014854014],[-71.01401690488298,42.37946755687899],[-71.01405763605743,42.3794649839528],[-71.0140939354622,42.37946157123049],[-71.01412134779942,42.37945811916271],[-71.01415177169378,42.37944864426999],[-71.01417068812226,42.37944323509416],[-71.01418778564077,42.37943370391396],[-71.0142093345343,42.3794230913749],[-71.0142275253157,42.37941603519803],[-71.01424679853061,42.37941254873269],[-71.01426127322631,42.37940712078738],[-71.01427686526125,42.37940087649429],[-71.01429880342602,42.37938779789021],[-71.01430362392595,42.37938671898897],[-71.01430695970851,42.379385910208],[-71.0143117780855,42.37938510768613],[-71.01431548664144,42.37938430047868],[-71.01432031856545,42.37938157589686],[-71.01432625519094,42.37937968064313],[-71.0143325723712,42.37937614126753],[-71.01433852164806,42.37937259853786],[-71.01434336863693,42.37936822829057],[-71.0143493242315,42.379363862723],[-71.01436382418282,42.37935514341521],[-71.01437832868787,42.37934614683586],[-71.01438910143636,42.37934097873621],[-71.01439987749194,42.37933553786196],[-71.01441100041258,42.3793328398305],[-71.0144228715541,42.37932932209201],[-71.01443139216536,42.3793285342912],[-71.01443842896208,42.37932774112738],[-71.01444693839127,42.37932777704258],[-71.01445767862808,42.37932700040858],[-71.01446990357979,42.37932595365095],[-71.01447805019566,42.37932516516859],[-71.01448658311284,42.37932245799971],[-71.01449510251507,42.37932166928884],[-71.01450214684844,42.3793200523886],[-71.01451068098511,42.3793173443228],[-71.01451810286588,42.37931463246294],[-71.01452515562947,42.37931191724442],[-71.0145325766085,42.37930948086824],[-71.01453854305123,42.37930401608392],[-71.01454559459161,42.37930130175929],[-71.01455192440527,42.37929611399599],[-71.01455677015937,42.3792917437345],[-71.01456273292791,42.37928628253457],[-71.01456757989473,42.37928191227773],[-71.01509733432566,42.37912114908248],[-71.01521803815811,42.37921166056119],[-71.01518110315878,42.37934679042218],[-71.01585377069077,42.38033968962028],[-71.01625379157095,42.38035015284802],[-71.01772023108957,42.38031367299713],[-71.01910972261653,42.38026828302274],[-71.02071544598063,42.38016029625369],[-71.02134298499112,42.38010715972236],[-71.02198289053459,42.38000911628102],[-71.02258095835617,42.37985844723051],[-71.02313106203327,42.37966535339091],[-71.02346202480253,42.37953816165117],[-71.02386620515767,42.37936224743486],[-71.02439780431061,42.37907193489654],[-71.02552436408648,42.37835035990678],[-71.02627915094851,42.37870456024085],[-71.0196460443502,42.38632752083733],[-71.01977441065195,42.38635249193466],[-71.01976542250475,42.38635437318343],[-71.01974722650409,42.38636225577192],[-71.0197293934277,42.3863709618346],[-71.01971229781188,42.38637994646079],[-71.01969555382003,42.38639140203988],[-71.0196784344066,42.38640367801143],[-71.0196460443502,42.38642769209137],[-71.01961446871158,42.38644265177386],[-71.01959886207229,42.38645081973758],[-71.01958436627355,42.38645871414872],[-71.01956760519838,42.38647209265109],[-71.01955158941162,42.38648519877533],[-71.01953853343969,42.38649858824355],[-71.01952507874428,42.38651554478327],[-71.01951161776849,42.38653332685841],[-71.01949851468729,42.3865527534506],[-71.01945328193166,42.38661128756679],[-71.01943049847901,42.38663808578319],[-71.01940623677079,42.38666460143221],[-71.01938084302137,42.38669385642223],[-71.01935656041294,42.38672311604827],[-71.01932261827294,42.38675700330315],[-71.01929726496118,42.38678076939313],[-71.01927302434513,42.38680481561433],[-71.01923755345879,42.38684473198092],[-71.0192024565805,42.3868846471984],[-71.01914310186446,42.38695053424046],[-71.01911884374478,42.38697622698056],[-71.01909459429906,42.38700109598912],[-71.01906808525709,42.38703117091038],[-71.01904120495306,42.38706151525989],[-71.01901584391939,42.38708610681807],[-71.01898937569167,42.38711096652884],[-71.01896023710057,42.3871456975196],[-71.01892998977482,42.3871804184654],[-71.01887296003933,42.38723259291258],[-71.0188476105467,42.38725580974329],[-71.01882226552631,42.3872787556007],[-71.01880392714658,42.38730529679253],[-71.01878448768549,42.38733018585106],[-71.0187710463499,42.3873454966322],[-71.01876507900535,42.38735150719769],[-71.01875909370639,42.38735971708882],[-71.01875156717767,42.38737559998111],[-71.01874552463538,42.38739148998018],[-71.01873568452447,42.38741998701816],[-71.01873561560636,42.38742904181613],[-71.01874041958577,42.38742988477229],[-71.01874038616856,42.38743427533201],[-71.01871520812578,42.38743526926655],[-71.01869470788513,42.38745384196049],[-71.01870050311102,42.38747060523788],[-71.01869568206983,42.38747168432133],[-71.01868719000753,42.38746890382279],[-71.01867905492206,42.38746804692958],[-71.01867053327371,42.38746883414323],[-71.01866201788897,42.38746879852017],[-71.01865608898802,42.38746959657925],[-71.01865126532549,42.38747149851217],[-71.01864533763855,42.38747229657579],[-71.01863902965167,42.38747391591036],[-71.01863420113069,42.38747581782224],[-71.0186282600388,42.38747853614094],[-71.01862343725072,42.38748016348887],[-71.01861859984332,42.38748371108748],[-71.01861376629155,42.38748643313886],[-71.01860893151127,42.38748915698552],[-71.01859435769161,42.38750693249474],[-71.01858237991868,42.3875244442767],[-71.01856399958183,42.38755647340317],[-71.01855536091819,42.38757262711651],[-71.01854450926109,42.38758849788191],[-71.01852882664932,42.38760626874289],[-71.0185131490869,42.3876232158603],[-71.01849367212141,42.38765332097432],[-71.01847642013671,42.38768261073358],[-71.01847154091918,42.38769164539981],[-71.01846444527243,42.38769957243972],[-71.01845698285953,42.38770749974478],[-71.01844988754003,42.38771570227298],[-71.0184424089469,42.38772527523385],[-71.0184341454877,42.38774142960779],[-71.01842551127193,42.38775731054263],[-71.0184135375943,42.38777427224821],[-71.01840007362283,42.38779205237748],[-71.01838285116057,42.38781777440874],[-71.01835852584183,42.38785252359099],[-71.0182822391979,42.38795373408174],[-71.01823860471146,42.38799636093106],[-71.01820584392712,42.38802119411176],[-71.01817455235837,42.38804685629783],[-71.01814660179983,42.38807171140539],[-71.01813688103832,42.38808401993077],[-71.0181260590054,42.38809550008064],[-71.01807749186437,42.38815429336766],[-71.01805321557812,42.3881827298779],[-71.01802781310653,42.38821280738982],[-71.01798185792566,42.3882685938153],[-71.01793660667053,42.38832904935786],[-71.01793435236834,42.38833370429914],[-71.01793319271269,42.3883397376642],[-71.0179331592321,42.38834412912306],[-71.01793311741221,42.38834961439538],[-71.01793307765828,42.3883548286901],[-71.01793414943982,42.38836032132891],[-71.01793521966481,42.38836554027407],[-71.01793628660276,42.38837103109201],[-71.01793996216618,42.38837461432793],[-71.01794362032595,42.38837984321511],[-71.01794839748926,42.38838453031623],[-71.01795317676032,42.38838894103789],[-71.01795795603202,42.38839335175935],[-71.01796642607376,42.3883988735918],[-71.01797601809892,42.38840330357466],[-71.01798412730523,42.38840772914538],[-71.01798891913261,42.38841049329358],[-71.01799371932607,42.38841216002704],[-71.01799851621226,42.38841410133384],[-71.01800331013384,42.38841659090277],[-71.01800699198292,42.38841935040038],[-71.01801177894764,42.38842211542755],[-71.01801397030368,42.3884265144055],[-71.01801762637956,42.38843201786899],[-71.01802017942663,42.38843724212435],[-71.01802235754035,42.38844274119715],[-71.0180234277946,42.3884479574406],[-71.01802597875667,42.38845345537425],[-71.01802593901718,42.3884586687686],[-71.01802700715156,42.38846416319169],[-71.01802696741214,42.388469376586],[-71.0180258156127,42.38847485810894],[-71.01802576122221,42.38848199355417],[-71.018024604022,42.38848802422937],[-71.01802307430944,42.38849433063249],[-71.01802079995615,42.38850145677845],[-71.01801704909323,42.3885077502761],[-71.01801478309724,42.38851377990764],[-71.01801103849159,42.38851925236971],[-71.01800618248895,42.38852554303813],[-71.01800132877875,42.38853073626633],[-71.01799536421412,42.38853619852799],[-71.01798940173474,42.38854138711094],[-71.01798307512829,42.38854575130604],[-71.01797711559838,42.38855039342658],[-71.01797005689411,42.38855393169185],[-71.01796262781767,42.38855746480391],[-71.01795408717382,42.38856072317255],[-71.01794702725272,42.38856426143132],[-71.01793849565159,42.38856697066177],[-71.01793144587425,42.38856885963672],[-71.01792291513715,42.38857129608272],[-71.0179143924654,42.38857235602344],[-71.01790623599848,42.38857396757309],[-71.01789771419146,42.38857475472933],[-71.01788920351589,42.38857471906943],[-71.01788068919711,42.38857468339365],[-71.01787477273078,42.38857383574062],[-71.01786997252131,42.38857216990256],[-71.01786406443708,42.38857022303396],[-71.01785816138569,42.38856745692517],[-71.01785335733157,42.38856661393242],[-71.01784597635603,42.38856383802878],[-71.01783896127112,42.38856133644485],[-71.01783268903714,42.38855856878767],[-71.01782455139418,42.38855771182409],[-71.01781826698081,42.38855685992537],[-71.01781234424212,42.38855683510494],[-71.01780642150337,42.38855681028424],[-71.01780049876469,42.38855678546321],[-71.01779456345511,42.38855840901427],[-71.01778603658802,42.38856001900314],[-71.01777639499826,42.38856272356968],[-71.01776785225687,42.38856625560292],[-71.01775930954197,42.3885697840345],[-71.01775113335076,42.38857414046491],[-71.01774369584847,42.38857877637886],[-71.01773663206649,42.38858313747069],[-71.01772323680369,42.38859186182222],[-71.01771243224361,42.38860087071857],[-71.01770162016216,42.38861070604558],[-71.01769302786022,42.38862137083769],[-71.01768442441423,42.38863285934481],[-71.0176773208469,42.38864243472717],[-71.01765411109821,42.38867636377049],[-71.01760554152369,42.38873488225637],[-71.01758125730997,42.38876414149393],[-71.01755696711557,42.38879449995125],[-71.01751587343836,42.38884317449887],[-71.01749158914156,42.38887243371678],[-71.01746730394122,42.38890196751303],[-71.01741874272953,42.38895966309153],[-71.01737989220584,42.3890056011232],[-71.01732910632772,42.38906356191929],[-71.01730372145359,42.38909171993071],[-71.01727796162267,42.38912015185112],[-71.01725255875191,42.38915050197366],[-71.01720399713959,42.38920819925867],[-71.0171797188415,42.38923663557255],[-71.01715690713074,42.38926672465995],[-71.01711057547941,42.38932278463814],[-71.01706090482992,42.38938047630686],[-71.01703550769022,42.38940973075577],[-71.01701123044651,42.38943816793811],[-71.01696155597241,42.38949585954713],[-71.01693839616232,42.38952347854293],[-71.01689240938596,42.38958283132731],[-71.01686923065878,42.38961291791503],[-71.01684605367014,42.38964245623075],[-71.01680605544333,42.38969305453078],[-71.01675748793947,42.38975157356046],[-71.01670781298075,42.389809265956],[-71.01669325278375,42.38982511916471],[-71.01661931270195,42.38990960115657],[-71.01660476361508,42.38992463063833],[-71.01660103977552,42.38992735996768],[-71.01659768248746,42.38993091279851],[-71.01659506235573,42.38993447052673],[-71.01659282136423,42.38993720518529],[-71.01659020963596,42.38993966369882],[-71.01658796113176,42.38994322208792],[-71.01658682384826,42.38994678514551],[-71.01658679658496,42.38995035106607],[-71.01658528767287,42.38995391346261],[-71.01658526042324,42.38995747758261],[-71.01658522474197,42.38996214451824],[-71.01658519747167,42.38996571133902],[-71.01658665184364,42.38996928258401],[-71.01658662665207,42.38997257752702],[-71.01658770938198,42.38997614991148],[-71.01658990333355,42.38997972696446],[-71.01659246053059,42.38998440119223],[-71.0165957632755,42.3899879829034],[-71.01659944726077,42.38999046696621],[-71.01660422445302,42.38999515322112],[-71.01660900882833,42.38999874115639],[-71.01661491161525,42.39000123454008],[-71.01662117640646,42.3900048286941],[-71.01662708460711,42.39000677292508],[-71.01663298649706,42.39000954269205],[-71.01664368239052,42.39001480028278],[-71.01665585415248,42.39002034136042],[-71.01666653415627,42.39002751919347],[-71.01667501001891,42.39003277015662],[-71.0166819946635,42.39003911050413],[-71.01668935060832,42.39004517692312],[-71.01669154964324,42.39004793113352],[-71.01669301029207,42.39005068224241],[-71.01669520303774,42.39005425928824],[-71.01669629330675,42.39005700524024],[-71.01669738441895,42.39005948201005],[-71.01669883877875,42.39006305595432],[-71.01669992904806,42.39006580190628],[-71.01669990178419,42.390069368727],[-71.01669874859859,42.39007485383053],[-71.01669722711758,42.39008006099912],[-71.01669607517348,42.39008554250669],[-71.01669382159488,42.39008992373829],[-71.01668147656862,42.39010688819992],[-71.0166695154563,42.39012192765967],[-71.01665606637447,42.39013778913125],[-71.01664041353085,42.39015199021826],[-71.0166258595079,42.39016702328249],[-71.01661020300007,42.39018122525022],[-71.01660648786535,42.39018313175435],[-71.01660166483266,42.39018475721597],[-71.01659794726854,42.3901866637096],[-71.01659312179959,42.39018829006091],[-71.01658830052213,42.39018936815516],[-71.0165834750665,42.39019099270555],[-71.01657865589488,42.39019179532058],[-71.01657384665765,42.39019177511525],[-71.01656902660096,42.39019285231349],[-71.01656088247337,42.39019281809632],[-71.01655348512469,42.39019168956695],[-71.01654497809493,42.39019083096197],[-71.01653684147374,42.39018997391275],[-71.01652095090186,42.39018634020905],[-71.01650654440104,42.39018271183888],[-71.01649103054021,42.3901782559518],[-71.01647663387674,42.39017270640776],[-71.0164600246884,42.39016632650279],[-71.01645892726343,42.39016467616725],[-71.01645746154387,42.39016274789596],[-71.0164563578263,42.3901619203958],[-71.01645414166958,42.39016108822073],[-71.01645266368004,42.39016108200956],[-71.01645155996256,42.39016025450939],[-71.01644934591964,42.39015914595512],[-71.01644787179399,42.39015831689829],[-71.01644565177358,42.39015830756868],[-71.01644454054893,42.39015830289874],[-71.01644195519873,42.39015746917187],[-71.01642859663946,42.3901618037288],[-71.01640929684558,42.39016803542619],[-71.01639035853994,42.3901759107623],[-71.01637431176698,42.3901928587323],[-71.01633053803211,42.39025331803803],[-71.01630883678423,42.39028341072089],[-71.01628713792391,42.39031350611047],[-71.01624823781154,42.39036602643892],[-71.01620075971768,42.39042647282081],[-71.01615330740289,42.39048417341728],[-71.01612901941637,42.39051343232617],[-71.01610473505069,42.39054269124507],[-71.01607932471317,42.39057386843519],[-71.01603075221671,42.39063238713083],[-71.01598255877646,42.39069008363787],[-71.01593398730876,42.39074860319641],[-71.01592427113073,42.39076036147503],[-71.01587570707683,42.39081805727758],[-71.01582603048254,42.39087574837782],[-71.01578344650775,42.39092551167212],[-71.01573377460279,42.39098320275156],[-71.0157083909135,42.39101053664763],[-71.01568262330817,42.39103978743238],[-71.01563441328713,42.39109940763303],[-71.01563293527569,42.39109940141136],[-71.01563180778406,42.39110104238868],[-71.01560642045378,42.39112947369563],[-71.01558212595972,42.39115983350964],[-71.01553355377435,42.39121835109224],[-71.01549839502295,42.39126540056846],[-71.01549460377433,42.39127691007062],[-71.01549229451533,42.3912886994999],[-71.01549074944272,42.39129665152535],[-71.01548958085701,42.39130460513604],[-71.01548582204899,42.39131172227739],[-71.01541462925262,42.39137563450254],[-71.01537697537995,42.39141005051819],[-71.01533821685072,42.39144391359414],[-71.01528965295144,42.39150160914526],[-71.01526573580513,42.3915308694305],[-71.01524255434765,42.39156095927279],[-71.01520481101747,42.39160717400684],[-71.01515512478261,42.39166596132012],[-71.01513084671113,42.3916941244075],[-71.01510544055419,42.39172447493299],[-71.01506433832579,42.3917742442002],[-71.01501798014343,42.3918335973542],[-71.01497310025417,42.39189322770653],[-71.01495851686352,42.39191182646716],[-71.0149195746387,42.39196956331687],[-71.01487952231362,42.39202729367224],[-71.01486120617697,42.39205054016562],[-71.01485412795249,42.39205654854234],[-71.01484814893429,42.39206365720148],[-71.0148417931814,42.39207158713351],[-71.01483839354836,42.39208063057922],[-71.01483462952139,42.39208857053808],[-71.01483196563282,42.39209843904707],[-71.01482967330409,42.39210721077348],[-71.01482849378395,42.39211625997859],[-71.01482841165225,42.39212696313504],[-71.01482833796236,42.39213656617735],[-71.0148304807993,42.39214727601426],[-71.01483298674921,42.39215799008304],[-71.01488484707392,42.39225013425607],[-71.0149492407201,42.39234919321724],[-71.01497416096132,42.39238222712846],[-71.01500166843556,42.39241554562579],[-71.01503141650437,42.3924466804625],[-71.01508995657707,42.39248808735368],[-71.01515222141489,42.39252731591182],[-71.01518797656934,42.39254722424213],[-71.01522520202518,42.39256878537874],[-71.01529706605284,42.3926107974691],[-71.01529705765361,42.3926118930819],[-71.01542851495441,42.39270327660687],[-71.01549069488892,42.39275348090796],[-71.0155502605992,42.39280614455316],[-71.01556459560373,42.3928196506758],[-71.01561821098353,42.39287585436621],[-71.01566700138692,42.39293423622033],[-71.0156717682363,42.39294029270181],[-71.01570874066823,42.39299477967278],[-71.0157408865453,42.39305117022986],[-71.01578670264588,42.3931592055872],[-71.01578924730181,42.39316552639924],[-71.01579381929501,42.39319655418642],[-71.01579579209798,42.39322949224613],[-71.01579553152497,42.3932635165556],[-71.0157887425285,42.39337654409081],[-71.01578366250328,42.393411373681],[-71.01577970095893,42.3934451087283],[-71.01577065939044,42.39351367066319],[-71.01576946104517,42.39352519198027],[-71.01576674912749,42.39358939255632],[-71.01576478437063,42.39365277251408],[-71.01575095325363,42.39376659236343],[-71.01574102251898,42.39380661509062],[-71.01572627740563,42.3938466166551],[-71.01571650607099,42.39386550854229],[-71.01570415497071,42.39388329392339],[-71.01569218027092,42.3938999834389],[-71.01567650160206,42.39391693015009],[-71.01566307404526,42.39393031940189],[-71.01564741638926,42.39394452122615],[-71.01563030432334,42.39395515089424],[-71.01561355757195,42.39396660765958],[-71.0155700874584,42.39398700429784],[-71.01552551565518,42.3940062979327],[-71.01549395749241,42.39401851338089],[-71.01546276400039,42.39403100494309],[-71.01542522422211,42.3940503317504],[-71.01538916527599,42.39406993666813],[-71.01534082447965,42.3940982712335],[-71.0153348465238,42.39410538172017],[-71.01532886859421,42.39411248860549],[-71.0153239944075,42.39412042660179],[-71.0153202441297,42.39412672360942],[-71.01529817184746,42.39415681541958],[-71.01528022536249,42.39417978803964],[-71.01526079501106,42.39420303169405],[-71.015216803147,42.39429175408746],[-71.01517275821023,42.39438706453003],[-71.01516512052092,42.39441721622917],[-71.01515896366649,42.39444764875412],[-71.01515517071331,42.39445998109158],[-71.01515062359704,42.39447341040032],[-71.01514424271539,42.39448490717151],[-71.01513940968643,42.39448762997787],[-71.01513456280799,42.3944920002485],[-71.01512972733514,42.39449472484476],[-71.01512489431173,42.39449744675027],[-71.0151200657951,42.39449989768857],[-71.0151152315356,42.39450262228932],[-71.01508511294101,42.3945195071712],[-71.01504642179658,42.3945443162438],[-71.015040452197,42.39455032750114],[-71.01503560052574,42.39455579609594],[-71.01503185022108,42.39456208949252],[-71.01501727255085,42.39457986451423],[-71.01498216359576,42.39462060391281],[-71.01496168484975,42.39463561088421],[-71.01493862424422,42.39464978140681],[-71.01488323676809,42.3946797326973],[-71.01483121708718,42.3947044846063],[-71.01480855057736,42.39471509163315],[-71.01479630014748,42.39471970435964],[-71.01478551847624,42.39472569801425],[-71.01476838743031,42.39473907064409],[-71.01475383824922,42.39475327701993],[-71.01473966700618,42.39476666482744],[-71.01468246391286,42.39484023710794],[-71.01466189444361,42.39486704368714],[-71.01464244081555,42.39489357858141],[-71.01460096449777,42.39494334787917],[-71.01458155206281,42.39496466938255],[-71.01456104062717,42.39498406503685],[-71.0145405779503,42.39499742537836],[-71.01428591144673,42.39513712299014],[-71.0130780630373,42.39540807029883],[-71.01218135816211,42.39555931247691],[-71.01180979628218,42.39574710464037],[-71.00989454192036,42.39547528501759],[-71.00894536953624,42.39519214448539],[-71.00586191459576,42.39389211548507],[-71.00560045018798,42.3939618773513],[-71.00538520703967,42.39408811781199],[-71.00140724592822,42.39674030657089],[-70.99949453996537,42.39693962741562],[-70.99914580197134,42.396977502126],[-70.99876816117141,42.39697359905493],[-70.99830620035,42.39692939137215],[-70.99767000983783,42.39674148116348],[-70.99647572824593,42.3963080791539],[-70.9955644898334,42.39427338266776],[-70.99546227567549,42.39393024390938],[-70.99523621143641,42.39367717841235],[-70.99493077347825,42.3934974705934],[-70.99457950640237,42.39332880704956],[-70.99445396634272,42.39331605212679]]]],"type":"MultiPolygon"} +},{ + "id": 1108711427, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000077, + "geom:area_square_m":707686.309844, + "geom:bbox":"-71.1683081532,42.2806789322,-71.1547800134,42.2934794931", + "geom:latitude":42.287579, + "geom:longitude":-71.161283, + "iso:country":"US", + "lbl:latitude":42.287657, + "lbl:longitude":-71.161181, + "lbl:max_zoom":18.0, + "mps:latitude":42.287657, + "mps:longitude":-71.161181, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Highland" + ], + "reversegeo:latitude":42.287657, + "reversegeo:longitude":-71.161181, + "src:geom":"mz", + "wof:belongsto":[ + 85856255, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8efca18f15d3ea0f3f0b736266f0de60", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711427, + "neighbourhood_id":85856255, + "region_id":85688645 + } + ], + "wof:id":1108711427, + "wof:lastmodified":1566624131, + "wof:name":"Highlands", + "wof:parent_id":85856255, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524013 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1683081531525, + 42.28067893218564, + -71.15478001341822, + 42.29347949305533 +], + "geometry": {"coordinates":[[[[-71.16561911849264,42.28770058546942],[-71.16830815315249,42.29058312894464],[-71.16752946937379,42.29099899860765],[-71.16250414437033,42.29347949305533],[-71.16091241883898,42.2920820605032],[-71.16065308200717,42.29178824563223],[-71.1603610058594,42.29134910699298],[-71.15999727129848,42.29082480614196],[-71.15959442102145,42.29039662324069],[-71.15631020067507,42.28771950785141],[-71.15568520997297,42.28717539626096],[-71.15521120681296,42.28671424656838],[-71.15491456031057,42.28637208723725],[-71.15478001341822,42.28618231825024],[-71.1550253593449,42.28610320055396],[-71.15529455086461,42.28602135285217],[-71.15555248328529,42.28590821860661],[-71.15602569682268,42.28558915593511],[-71.15636002996141,42.28530457172732],[-71.15650247960187,42.28513655139965],[-71.1565917560541,42.28501085072766],[-71.15670966386364,42.28477536060519],[-71.15678643250936,42.28456991713679],[-71.15689425331534,42.28406472309556],[-71.15692675879718,42.28389387531168],[-71.15696613385266,42.28370133540713],[-71.15714583519599,42.28324931364717],[-71.15736147680795,42.28280615191069],[-71.15772087949456,42.28221231029684],[-71.15806830209164,42.28139687687185],[-71.15816713783047,42.28102461027793],[-71.15820008307674,42.28067893218564],[-71.15958411875349,42.28130170757734],[-71.1599317403609,42.28147457767277],[-71.1602062246849,42.28167057497956],[-71.16049773482999,42.28194054939176],[-71.16060870266814,42.28206924279504],[-71.16069082251096,42.28218679069339],[-71.16105236897805,42.28279305051488],[-71.16152112503202,42.28353806468899],[-71.1616546373717,42.28380074465564],[-71.16179165737024,42.28400330627372],[-71.16202297464886,42.28424211330458],[-71.16226550647366,42.28445527246397],[-71.16320935536903,42.28521805358295],[-71.16368508885593,42.28561428756532],[-71.16404653707474,42.28595783659328],[-71.16452771614675,42.28640321580447],[-71.16484630539995,42.28676242088645],[-71.16561911849264,42.28770058546942]]]],"type":"MultiPolygon"} +},{ + "id": 1108711429, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00007, + "geom:area_square_m":636382.404713, + "geom:bbox":"-71.1123322373,42.3168782475,-71.1027483879,42.3291465985", + "geom:latitude":42.322313, + "geom:longitude":-71.108168, + "iso:country":"US", + "lbl:latitude":42.322746, + "lbl:longitude":-71.105863, + "lbl:max_zoom":18.0, + "mps:latitude":42.322212, + "mps:longitude":-71.108647, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.322212, + "reversegeo:longitude":-71.108647, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"42263487c97297a392da92b8358ac5d8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711429, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108711429, + "wof:lastmodified":1566624131, + "wof:name":"Hyde Square", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891367 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1123322373155, + 42.31687824753438, + -71.10274838785651, + 42.32914659848083 +], + "geometry": {"coordinates":[[[[-71.10521656934931,42.32610200163816],[-71.10554887508935,42.32519925863845],[-71.10490132415885,42.32507291983666],[-71.10495528673638,42.32460745890405],[-71.10498226802515,42.32445452098882],[-71.10518013080947,42.32436807765489],[-71.10523304216997,42.32433639090529],[-71.10528041615278,42.32429913743037],[-71.10531508754134,42.32425804353749],[-71.1053420185421,42.32420848964944],[-71.10535529788071,42.32416881910584],[-71.1053611919172,42.32412763397554],[-71.10536000606795,42.32404225171329],[-71.10520711209826,42.3226857337383],[-71.10486663451093,42.32269808570125],[-71.10474071776656,42.32125508812657],[-71.10471515150238,42.32102696391198],[-71.10465335500828,42.32084185048231],[-71.10452486948809,42.32062430239223],[-71.10438118704263,42.32041271720946],[-71.10423064611913,42.32020726043342],[-71.10406104393218,42.32003910505249],[-71.10388314735462,42.31989045486581],[-71.10372314121585,42.31977976101599],[-71.10325546554381,42.31948716135984],[-71.10274838785651,42.31916917795212],[-71.10278726365722,42.31911923153605],[-71.10365134679904,42.31788590717978],[-71.10383468586504,42.31759150171803],[-71.10411829429886,42.31694090668966],[-71.10441087104998,42.31695536522231],[-71.10485360041325,42.31699501924355],[-71.10504760222706,42.31698031236705],[-71.10542971060742,42.31690820035164],[-71.10559127743539,42.31687824753438],[-71.10576172629665,42.31687918433343],[-71.10597488328536,42.31692849930258],[-71.10617256176998,42.31699246393917],[-71.10632294054113,42.31704974925749],[-71.10658243662611,42.31716339613017],[-71.10738378097314,42.31757783073285],[-71.10776509763689,42.31773126615875],[-71.10839829597205,42.31792440279126],[-71.10895264564385,42.3181277478123],[-71.1098827944618,42.31851529638003],[-71.11026558386415,42.31868800773797],[-71.11058503469825,42.31884772257034],[-71.1117325655504,42.31950503760875],[-71.11171384103311,42.31962867352269],[-71.11172751362768,42.31975059237842],[-71.11178895780415,42.32002793385811],[-71.11210811813163,42.32141567077141],[-71.11216381706596,42.32178813061176],[-71.11222322141727,42.32250698899418],[-71.11230495344419,42.32353600071685],[-71.1123322373155,42.32449046735783],[-71.11230604480318,42.3247789993888],[-71.11223874475684,42.32506971073766],[-71.11215204073771,42.32533965485866],[-71.11204054262269,42.32557765307482],[-71.11177401756547,42.32602187363135],[-71.11147937311389,42.32650848765859],[-71.11129272006596,42.32685434363992],[-71.11111959677829,42.32724280025383],[-71.11097203516263,42.3276284324143],[-71.11086800246781,42.32798708276525],[-71.11076602540447,42.32850283859934],[-71.11075476405443,42.32866399282177],[-71.11076912994768,42.3288127859725],[-71.1108016455089,42.32897051620666],[-71.11086087979744,42.32914659848083],[-71.11078700196254,42.32902136688836],[-71.11065090608953,42.3288884115718],[-71.11062152557236,42.32886695168396],[-71.11056905645462,42.32882862579321],[-71.11006758474998,42.32848621861628],[-71.10997153725077,42.3284200794828],[-71.10988111449016,42.32835517295313],[-71.10942889631791,42.32804289096081],[-71.10923623745487,42.32790984795753],[-71.10901510488041,42.32775714078758],[-71.10899866942795,42.32774579069431],[-71.10860417681089,42.32747336328612],[-71.10860415023055,42.32747334518974],[-71.10859474620021,42.32746685085768],[-71.1084282931859,42.32736630449059],[-71.10839594790018,42.3273467659537],[-71.10836795297055,42.32732985488315],[-71.10836731595303,42.32732947008778],[-71.10832617454788,42.32730461863576],[-71.10827554718473,42.32728534907702],[-71.10826457344925,42.32728117212718],[-71.10732398335942,42.32692316764605],[-71.10711160562806,42.3268423310499],[-71.10666599881677,42.32657746740361],[-71.10631452794095,42.32636855544667],[-71.10556846030693,42.32614023362962],[-71.10554537390182,42.32613603826086],[-71.10552228749977,42.32613184288744],[-71.10549919561176,42.32612833351497],[-71.10547587442559,42.32612482335087],[-71.10546107658081,42.32612303139025],[-71.10545254775242,42.3261219991876],[-71.1054292222946,42.32611917502376],[-71.10540566511177,42.32611635005971],[-71.10538210365389,42.32611421110061],[-71.10535854219766,42.32611207213667],[-71.10535297064186,42.32611172800147],[-71.10533497646541,42.32611061917765],[-71.1053157876278,42.32610944682948],[-71.10531117900715,42.32610916541811],[-71.10523699722812,42.32610346389487],[-71.105227089671,42.32610270243057],[-71.10521656934931,42.32610200163816]]]],"type":"MultiPolygon"} +},{ + "id": 1108711433, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000197, + "geom:area_square_m":1803328.090433, + "geom:bbox":"-71.1401702741,42.3001359527,-71.119515,42.3238827329", + "geom:latitude":42.309546, + "geom:longitude":-71.128781, + "iso:country":"US", + "lbl:latitude":42.307504, + "lbl:longitude":-71.128811, + "lbl:max_zoom":18.0, + "mps:latitude":42.30859, + "mps:longitude":-71.128771, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Moss Hill" + ], + "reversegeo:latitude":42.30859, + "reversegeo:longitude":-71.128771, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8fc6dfa94c8d689fd20c9a76c105b106", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711433, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108711433, + "wof:lastmodified":1566624132, + "wof:name":"Jamaica Hills", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891371 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14017027413179, + 42.3001359527229, + -71.119515, + 42.32388273293024 +], + "geometry": {"coordinates":[[[[-71.11953902828239,42.32274657208461],[-71.119607,42.322614],[-71.119575,42.322516],[-71.119525,42.322261],[-71.11951500000001,42.322055],[-71.11954900000001,42.32182],[-71.119608,42.321713],[-71.119699,42.321642],[-71.119817,42.321579],[-71.119924,42.321532],[-71.120214,42.321477],[-71.120518,42.321466],[-71.12074,42.321414],[-71.120974,42.321326],[-71.121132,42.321234],[-71.121257,42.321121],[-71.121404,42.320973],[-71.121551,42.320856],[-71.12168699999999,42.32078],[-71.12183899999999,42.320675],[-71.121948,42.320575],[-71.122041,42.32045],[-71.12219899999999,42.320293],[-71.12236300000001,42.320141],[-71.122564,42.320006],[-71.12286899999999,42.319822],[-71.12327000000001,42.319634],[-71.12357,42.319426],[-71.123726,42.319236],[-71.123817,42.319113],[-71.123918,42.318957],[-71.123909,42.318679],[-71.12388900000001,42.3185],[-71.12381499999999,42.318258],[-71.123699,42.317983],[-71.123642,42.317801],[-71.12359499999999,42.317574],[-71.123575,42.317439],[-71.12352,42.316792],[-71.123452,42.316569],[-71.123362,42.316325],[-71.123231,42.316022],[-71.1232,42.315927],[-71.123189,42.315836],[-71.12318500000001,42.315685],[-71.12320699999999,42.315494],[-71.123285,42.314982],[-71.12327999999999,42.31489],[-71.123265,42.314787],[-71.123197,42.31462],[-71.123059,42.314433],[-71.122709,42.314138],[-71.12240024195101,42.31393034447731],[-71.12223,42.313789],[-71.12216600000001,42.313725],[-71.122114,42.313642],[-71.122077,42.31355],[-71.12224399999999,42.313334],[-71.12246,42.313048],[-71.12270599999999,42.312603],[-71.122776,42.312325],[-71.122787,42.31214],[-71.122788,42.311978],[-71.122738,42.311461],[-71.12260000000001,42.310884],[-71.122435,42.310376],[-71.12228500000001,42.310028],[-71.122141,42.309751],[-71.12209300000001,42.309613],[-71.122083,42.309501],[-71.122102,42.309269],[-71.12214400000001,42.309096],[-71.122365,42.308777],[-71.1225,42.308574],[-71.122631,42.308393],[-71.12291500000001,42.30799],[-71.123294,42.307483],[-71.12357799999999,42.307117],[-71.12392699999999,42.30668],[-71.124146,42.306382],[-71.12427099999999,42.306169],[-71.124348,42.306004],[-71.124409,42.305863],[-71.124551,42.305589],[-71.124634,42.305367],[-71.124672,42.305194],[-71.12474,42.304743],[-71.12478,42.3044],[-71.124826,42.304029],[-71.124876,42.303803],[-71.12499200000001,42.303489],[-71.12516100000001,42.303195],[-71.125399,42.302878],[-71.12566099999999,42.302555],[-71.125816,42.302322],[-71.12598300000001,42.302121],[-71.126158,42.301899],[-71.12625,42.301799],[-71.126448,42.301602],[-71.1267569550119,42.30130769174421],[-71.127123,42.300959],[-71.12807034749662,42.3001359527229],[-71.12815633594721,42.30017596570623],[-71.12816277749843,42.30017854970213],[-71.12816328323755,42.30017875300562],[-71.12816713713794,42.30018003399805],[-71.12816837295645,42.30018044403194],[-71.12817922991447,42.30018410286734],[-71.12817929646158,42.30018412919134],[-71.12818009624533,42.30018444418302],[-71.12818919030485,42.300188026189],[-71.12818925806475,42.30018805251694],[-71.12825927849917,42.30021563014514],[-71.12827084814947,42.30022018707452],[-71.12827409569168,42.30022146520123],[-71.12831627496122,42.30023807801409],[-71.12849359392197,42.30030791323458],[-71.12862736412897,42.30036059719423],[-71.12862932396095,42.30036142280019],[-71.12862955623658,42.30036152078316],[-71.12862985392617,42.30036163158174],[-71.1286299640425,42.30036167335139],[-71.12863001486669,42.30036169242191],[-71.12863008747789,42.30036171876526],[-71.12863077361183,42.30036197486705],[-71.12864390822797,42.30036728226371],[-71.12864837759994,42.30036908470119],[-71.12877353807808,42.30041938548206],[-71.12887490739082,42.30046026598664],[-71.12887494243368,42.30046028770702],[-71.1288756895277,42.30046069615465],[-71.12887643667982,42.30046109469921],[-71.12887722522863,42.30046146546817],[-71.12887800902678,42.30046181911617],[-71.12887881838222,42.30046215754163],[-71.12887965089581,42.30046247623531],[-71.12887992805415,42.30046257256215],[-71.12888048720592,42.3004627679323],[-71.12888133090858,42.30046303984663],[-71.12888220022131,42.30046328753562],[-71.12888279357787,42.30046344070222],[-71.12921679994675,42.30058454590025],[-71.1292314591134,42.30058985184686],[-71.12978582515562,42.30079442345875],[-71.13078713492817,42.30115307676674],[-71.13095943808199,42.30121545017056],[-71.13095982531893,42.30121559636232],[-71.13096017497097,42.30121574063271],[-71.13097401340106,42.30122145875674],[-71.13097984608555,42.30122367331634],[-71.13098848015049,42.30122695202181],[-71.13100320377417,42.30123206978547],[-71.13101815886175,42.30123680206267],[-71.13103332600886,42.30124114879101],[-71.13104868228839,42.30124509009026],[-71.13106421545707,42.30124864572755],[-71.13107990627839,42.30125178683154],[-71.13109573169925,42.30125451512875],[-71.13111168440085,42.30125683779801],[-71.13112772201505,42.30125874119878],[-71.1311438456862,42.30126023703858],[-71.131150931661,42.30126070363286],[-71.1311600300719,42.30126130362883],[-71.13116986191073,42.30126174752593],[-71.13117024987737,42.30126176857788],[-71.13117060031676,42.30126177780544],[-71.13157648810012,42.30127661506567],[-71.13177835529724,42.30128577448483],[-71.13182563908978,42.30128912026282],[-71.13182884921359,42.30128934662047],[-71.13196390230115,42.30129887679767],[-71.13196568435805,42.30129900224538],[-71.13197886308055,42.30129993215084],[-71.13226443597736,42.30133339944701],[-71.13229149651487,42.30133657137129],[-71.13264767956746,42.30137831232429],[-71.13266586113913,42.30138131532626],[-71.13325583169485,42.30148603825849],[-71.13332554272566,42.30150065380544],[-71.13368143865432,42.3015688197746],[-71.13370659663836,42.30157343567915],[-71.13376203845755,42.30158361021659],[-71.1338217508372,42.30159456719143],[-71.13429088890287,42.30168065511307],[-71.13431224649003,42.30168457366199],[-71.13435388237782,42.30168987567592],[-71.13439251034514,42.30169374473302],[-71.1344312739202,42.30169660317412],[-71.13447017069116,42.30169844829059],[-71.13449837428143,42.30169903947579],[-71.13450140466901,42.30169910313329],[-71.13450910614877,42.30169926447658],[-71.13451635277748,42.30169922540667],[-71.13454807298356,42.30169905711058],[-71.13458699960916,42.30169783136667],[-71.13462583271935,42.30169557717222],[-71.13463134508916,42.30169511304152],[-71.13466455277276,42.30169231787281],[-71.13470307258893,42.30168802888341],[-71.13474137016482,42.30168273984415],[-71.1347793921318,42.30167645148582],[-71.13481709236159,42.30166917086454],[-71.13485441385261,42.30166089779949],[-71.13489132859547,42.30165165200852],[-71.13492508525617,42.30164219180401],[-71.13492776377613,42.30164144136339],[-71.13595497474778,42.30136858278359],[-71.13596129206735,42.30136690483729],[-71.13622127484159,42.30129784353058],[-71.13651876483073,42.30121881785995],[-71.13655674560437,42.30121117473612],[-71.13656190951039,42.30121013592107],[-71.13656247774666,42.30121002158001],[-71.13660881328155,42.30120069700058],[-71.13665164104061,42.30119207794689],[-71.13666142853994,42.30119010843575],[-71.13667173813811,42.30118803343929],[-71.13670598649583,42.30118114011578],[-71.1367509307556,42.30117332628123],[-71.13677861024236,42.30116926071106],[-71.13678748433624,42.30116795632271],[-71.13679621762105,42.30116667399601],[-71.13684142594865,42.301161237747],[-71.13684180338385,42.30116119212442],[-71.13684268069089,42.30116111026929],[-71.13688761036302,42.30115689212455],[-71.13693358035393,42.30115377291194],[-71.13695975110365,42.30115267261311],[-71.13697967697655,42.30115183437139],[-71.1370083327048,42.30115136851987],[-71.13702585288962,42.30115108445592],[-71.13707202200555,42.30115152019251],[-71.1371181491262,42.30115314687192],[-71.13716418332872,42.30115596253273],[-71.13721005311994,42.30115995704603],[-71.13722974914533,42.30116219255202],[-71.13725570994056,42.30116513926163],[-71.13728448671273,42.30116916080738],[-71.13730109088461,42.30117148197237],[-71.13734616436616,42.30117899498204],[-71.13739085531532,42.30118765734733],[-71.13749123074422,42.30120991252961],[-71.13751152311784,42.30121602475015],[-71.13921491121522,42.30172907911481],[-71.13934658637264,42.30176733470088],[-71.13937061076153,42.30177431448827],[-71.13943069206897,42.30179373429961],[-71.13943910005656,42.30179697744737],[-71.13961110462239,42.30186331621457],[-71.13963596319159,42.30187290312323],[-71.14008858355025,42.30204746789065],[-71.1401167447347,42.30205832905704],[-71.14013055365673,42.30206365435222],[-71.14017027413179,42.30207897306895],[-71.1400195208,42.30216142096361],[-71.14009599855591,42.30217378304294],[-71.13650173522299,42.30620358419099],[-71.13445166573304,42.30910603301741],[-71.13279606552355,42.31177517724353],[-71.13186272439215,42.31317777989769],[-71.13060713371755,42.3145636805255],[-71.12872929507093,42.31681056559908],[-71.12714038854068,42.31865198284894],[-71.12427585729259,42.32184978048752],[-71.12371197981338,42.32271633910956],[-71.12336752051202,42.32257187414391],[-71.12152860721294,42.32388273293024],[-71.12007029577346,42.32280487451003],[-71.11953902828239,42.32274657208461]]]],"type":"MultiPolygon"} +},{ + "id": 1108711435, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000073, + "geom:area_square_m":666667.287506, + "geom:bbox":"-71.0418472216,42.3604761987,-71.027684498,42.372854", + "geom:latitude":42.367059, + "geom:longitude":-71.035081, + "iso:country":"US", + "lbl:latitude":42.364741, + "lbl:longitude":-71.033442, + "lbl:max_zoom":18.0, + "mps:latitude":42.368023, + "mps:longitude":-71.036353, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Jeffries Point" + ], + "name:eng_x_variant":[ + "Jeffries Pt" + ], + "reversegeo:latitude":42.368023, + "reversegeo:longitude":-71.036353, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815995, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6176380" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2bb8ee0ff4d9374e6e9f1ef1ceb6b997", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711435, + "neighbourhood_id":85815995, + "region_id":85688645 + } + ], + "wof:id":1108711435, + "wof:lastmodified":1566624132, + "wof:name":"Jeffries Point", + "wof:parent_id":85815995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85827413 + ], + "wof:tags":[] +}, + "bbox": [ + -71.04184722163819, + 42.36047619866363, + -71.02768449804881, + 42.372854 +], + "geometry": {"coordinates":[[[[-71.04179169104324,42.36628527476141],[-71.04085499999999,42.367488],[-71.039592,42.368808],[-71.039348,42.369122],[-71.03865999999999,42.370009],[-71.038083,42.370502],[-71.037781,42.37076],[-71.03716799999999,42.371284],[-71.036145,42.372157],[-71.03589599999999,42.37237],[-71.03548000000001,42.372728],[-71.035337,42.372854],[-71.03481499999999,42.372509],[-71.03474199999999,42.372461],[-71.03408399999999,42.372036],[-71.033923,42.371932],[-71.033219,42.371469],[-71.032646,42.371099],[-71.03193,42.370666],[-71.031544,42.370408],[-71.03112538907246,42.37007829349997],[-71.0318034654384,42.36944976461897],[-71.03237177090216,42.368905],[-71.0326,42.368673],[-71.03269400000001,42.368595],[-71.032867,42.368434],[-71.033387,42.367734],[-71.03264799999999,42.3674],[-71.03203600000001,42.367122],[-71.03122399999999,42.366783],[-71.03068399999999,42.366557],[-71.03024000000001,42.366349],[-71.02886599999999,42.365751],[-71.02768449804881,42.36514902695042],[-71.02780240334189,42.36511740668648],[-71.02862398384535,42.36405963512527],[-71.02825615080118,42.36391461069854],[-71.02834584614894,42.36379561074115],[-71.0283941554617,42.36376809427217],[-71.02844756244669,42.36370163137651],[-71.02848008849243,42.36365703645562],[-71.02850330537974,42.36361981095986],[-71.02852871715824,42.3635861632112],[-71.02856167757858,42.36353278770563],[-71.02857497279912,42.36353641005561],[-71.02859165104432,42.3635329105613],[-71.02859762097883,42.36352579932127],[-71.02861110106493,42.36350445194554],[-71.02864375669516,42.36349196369661],[-71.02867757298372,42.36347261817452],[-71.02869305579091,42.36348063929586],[-71.02882421551612,42.36345730456436],[-71.02888910122392,42.36343973198959],[-71.02893503524329,42.36343278802335],[-71.02895062925349,42.36342571618199],[-71.02897101207726,42.36342113344971],[-71.0289972106218,42.36343112053664],[-71.02908848164277,42.36344768510865],[-71.02914144682723,42.36344076534657],[-71.02919553460058,42.36343193253499],[-71.02924848544919,42.36342693568716],[-71.02934708660135,42.36340319070472],[-71.02944116537743,42.36339122725327],[-71.02947345914004,42.36337709065617],[-71.02951339672943,42.3633308773307],[-71.02953042921806,42.36332902758295],[-71.02957876095618,42.36329821474249],[-71.02959268786503,42.3631671064655],[-71.0296060822256,42.36315755784035],[-71.02962904116853,42.36315490674939],[-71.02974450322769,42.36315263390713],[-71.02980555448512,42.3631528835103],[-71.02983540133125,42.36317001742922],[-71.02983781077226,42.36319390300368],[-71.0298413122065,42.36322080721705],[-71.02984443482221,42.363248536349],[-71.02983721319278,42.36327430107333],[-71.02983108191548,42.36330281434218],[-71.02982122484043,42.36333460744546],[-71.02981730690938,42.36336422631614],[-71.02982302702692,42.3633908668108],[-71.02982262929395,42.36344437579535],[-71.02982959913165,42.36350230381727],[-71.02981246746297,42.36351732806569],[-71.02981956253916,42.36355824379627],[-71.02982174816549,42.36356291804014],[-71.02986127567864,42.36357186016146],[-71.02988414092925,42.36358183432012],[-71.0299044515412,42.36358712912259],[-71.02990695561287,42.36359894037442],[-71.02992612647995,42.36360862213503],[-71.02992916351765,42.36364787463945],[-71.02996143358682,42.363687247516],[-71.02998763367631,42.36369640881495],[-71.03002386527014,42.363700947591],[-71.03005858570677,42.36370904803503],[-71.03009440629688,42.36371907238414],[-71.03014136191689,42.36372365493669],[-71.03017392482452,42.36372378795798],[-71.03022911040298,42.36371688036623],[-71.03027247553888,42.36370717678471],[-71.03030740097766,42.36368783711632],[-71.03032459858098,42.36366375973638],[-71.03033657916775,42.36364514832483],[-71.03034146337978,42.36363528937451],[-71.03035365776807,42.36363725949021],[-71.03038947674084,42.36364701185302],[-71.03041571311176,42.36365178248252],[-71.03045190600429,42.36366153545208],[-71.03048406728948,42.36366523459994],[-71.030527385499,42.36366184357245],[-71.03055293063674,42.36366030120841],[-71.03058628210927,42.36365330252435],[-71.03060007453112,42.36344041834646],[-71.03061372255409,42.36339601856742],[-71.03067266292459,42.36323216121475],[-71.03067413727618,42.36318332373069],[-71.03067438974233,42.36314929645279],[-71.03068435303103,42.36310296220601],[-71.030697857033,42.36302837776123],[-71.03071769311637,42.36294805908671],[-71.03129914451183,42.36297732087563],[-71.03133280193781,42.36297910556373],[-71.03138475828005,42.36245903623021],[-71.03146769412412,42.36245223841066],[-71.03141504899791,42.36306505387611],[-71.03152251967798,42.36314287711013],[-71.03151761779998,42.36315547922612],[-71.03153094319917,42.36315471063713],[-71.03145703564572,42.36389119973036],[-71.03148897964263,42.36392425890293],[-71.0315143529304,42.36394576667681],[-71.0316212537325,42.36395059277964],[-71.03167662546809,42.36391871027823],[-71.03168522668207,42.36390639690884],[-71.03173451922981,42.36339592279422],[-71.03173462849824,42.36323127619288],[-71.03181381931819,42.3632305029269],[-71.03181084189208,42.36333229573025],[-71.03193921834564,42.36333528774012],[-71.03195777963471,42.36312681263014],[-71.03198370564162,42.36287391379725],[-71.03196681018474,42.36285710592965],[-71.03195849100135,42.36283100144187],[-71.031960185602,42.36280164623955],[-71.03196372898908,42.36277312232697],[-71.03197526972262,42.36271362222641],[-71.03198270357045,42.36235911686525],[-71.03208804523263,42.36237463706475],[-71.03208016820425,42.36263913670846],[-71.03212677408544,42.36269091390029],[-71.03222495254815,42.36272451688999],[-71.03240731755382,42.36273129670385],[-71.03242061360478,42.36258454296676],[-71.03256724939233,42.36126797040793],[-71.03266078506759,42.36127823122295],[-71.03251533009711,42.36258575085952],[-71.03250748381791,42.36269602985229],[-71.03278853563536,42.36271775165464],[-71.03309111671081,42.3627305077439],[-71.03356079999674,42.36276287126821],[-71.03358223109818,42.36276652513423],[-71.03374925425213,42.36048795898389],[-71.03396209515037,42.36047619866363],[-71.03367074893504,42.36330774564913],[-71.03396422680139,42.36345135402688],[-71.0356071488124,42.36138099627732],[-71.03571737219089,42.36143687042237],[-71.03407413301639,42.36349981903221],[-71.03411608590744,42.36353127318743],[-71.03412663937273,42.36370611282521],[-71.03416603019217,42.36378365777943],[-71.03420954531951,42.36390402555226],[-71.03440294030091,42.36407247067048],[-71.03451313734158,42.36393132166454],[-71.03452637684337,42.36394207790408],[-71.034526239538,42.36396073677682],[-71.03454538254088,42.36397398550326],[-71.03456097723806,42.36396691740836],[-71.03460196975271,42.36392701674338],[-71.03461909916356,42.36391281914528],[-71.03468061832386,42.3638998958953],[-71.03471645752387,42.36390717298922],[-71.03472997355867,42.36388033777884],[-71.03492953528571,42.36386440488275],[-71.03504892634679,42.36393156942701],[-71.03504519832602,42.36398588780818],[-71.03510611570853,42.36400479258039],[-71.0351490918823,42.36404777511059],[-71.03518635737503,42.36406219442699],[-71.03523169711524,42.36408570328426],[-71.03527600193547,42.36409905356198],[-71.03531322837813,42.36411896175197],[-71.03534573908429,42.36412622880197],[-71.03537461859591,42.36412360048271],[-71.03539723723172,42.36411737991368],[-71.03541765367714,42.36410868094731],[-71.03542887176644,42.36409253633091],[-71.03545411076087,42.36408193831756],[-71.03551069380661,42.36403578836187],[-71.03552515145304,42.36403228249685],[-71.0355410877191,42.36402877899986],[-71.03555552766059,42.36402718797798],[-71.03557108881407,42.36402450942906],[-71.03558550741531,42.36402648616963],[-71.03560105405731,42.36402545328962],[-71.03561178540151,42.36402549661915],[-71.03562250748841,42.36402663556414],[-71.03563470653383,42.36402833415013],[-71.03564542941011,42.36402920030811],[-71.03565614063145,42.36403198493768],[-71.03566574105356,42.36403476958324],[-71.03566942225392,42.36403752853099],[-71.03567311512921,42.36403836630528],[-71.03567532457677,42.36404002185678],[-71.03567900938998,42.36404195795308],[-71.03568157860344,42.36404471331159],[-71.03568377154119,42.36404828731594],[-71.03568633714312,42.36405186552553],[-71.03568853006155,42.36405544223059],[-71.03569109566399,42.36405902044007],[-71.0356920299745,42.36408289902274],[-71.03569185272897,42.36410704590611],[-71.0356906908175,42.36411417421924],[-71.03615283052122,42.36431910218403],[-71.03641949306207,42.36398265470703],[-71.0365943061305,42.36375861599167],[-71.03652940505393,42.36372816953162],[-71.03651501988267,42.36372180142531],[-71.03655872179743,42.36366599744441],[-71.03657089950067,42.36367043723087],[-71.03685474613168,42.36331155518475],[-71.03684145046455,42.36330793649249],[-71.03688402418628,42.36325459733975],[-71.03689694716556,42.36325821452658],[-71.0369854551017,42.36314716257444],[-71.0369747645085,42.36314190415145],[-71.03701733677897,42.36308856674303],[-71.03702914415304,42.36309300499117],[-71.03712026024904,42.36297949123293],[-71.03710957044197,42.36297396183781],[-71.03714952586262,42.36292417989974],[-71.03716133924912,42.36292779349224],[-71.0372718522175,42.36279295505093],[-71.03739024100007,42.36284584263528],[-71.03739987343414,42.36284423564694],[-71.03740357709036,42.36284342677728],[-71.03740840194612,42.36284152496245],[-71.03741430823527,42.36284346993864],[-71.0374202297879,42.36284349375507],[-71.03742615012656,42.36284351756633],[-71.03743244873252,42.36284244634427],[-71.0374383690711,42.3628424701549],[-71.03744427536783,42.3628444142293],[-71.03745018968966,42.36284526088102],[-71.03745646379483,42.36284720823456],[-71.03746348163284,42.36284888218942],[-71.03746938311501,42.36285165090961],[-71.03747565121796,42.36285441930325],[-71.03748155350814,42.36285691163675],[-71.03748745255746,42.36285968124653],[-71.03749223607133,42.36286326743534],[-71.037497022007,42.36286685453398],[-71.03750181155138,42.36286961608018],[-71.03750658424178,42.36287484885692],[-71.03751025139533,42.36287953071132],[-71.03751391692839,42.36288393616977],[-71.03751721828252,42.36288834016371],[-71.03752088260917,42.3628927447168],[-71.03752306520666,42.36289823986594],[-71.03752562120819,42.3629026408625],[-71.03752668939082,42.3629081351316],[-71.03752776566395,42.36291335304392],[-71.03752772754778,42.36291856647524],[-71.03752916357196,42.36292405952255],[-71.03752912545593,42.36292927295388],[-71.0375276152068,42.36293393218851],[-71.03752646871675,42.36293831829716],[-71.03752532227364,42.36294352817212],[-71.03752270007492,42.36294818113492],[-71.03752155242398,42.36295339010466],[-71.03751781904273,42.36295776581105],[-71.037515567066,42.36296242386356],[-71.03751183246982,42.36296679956485],[-71.03750847415203,42.3629703521127],[-71.03750474562464,42.36297472783816],[-71.03749619340692,42.36298018072041],[-71.03748653365399,42.36298535545978],[-71.03747798707626,42.36299053467499],[-71.03746833374386,42.36299516296208],[-71.03745868482584,42.36299868931008],[-71.03744423916315,42.36300110161238],[-71.03715331874939,42.36336626589091],[-71.03725880474461,42.36341306792607],[-71.03721251429626,42.36346885995682],[-71.03720440090862,42.36346526035826],[-71.03691797466985,42.36382330999783],[-71.03692755943953,42.36382773840596],[-71.03688647844338,42.3638794369481],[-71.03687687798453,42.36387665330459],[-71.03677978187089,42.36399837322773],[-71.03678937029272,42.36400280256217],[-71.03674716745743,42.36405614316705],[-71.03673757421811,42.36405253667548],[-71.03664048919848,42.36417233710333],[-71.03665117874392,42.3641775928505],[-71.03660862715105,42.36422846250102],[-71.03659792189579,42.36422485331838],[-71.03645264701133,42.36440674872759],[-71.03644630037473,42.36441468171812],[-71.03644516345483,42.36441824498785],[-71.03644402774881,42.36442180826241],[-71.03644138970041,42.36442810776731],[-71.03643800873378,42.36443522894413],[-71.0364365216647,42.36443604671658],[-71.036435396811,42.3644379634032],[-71.03643539077413,42.3644387871448],[-71.03643426836815,42.3644407011404],[-71.03643425025089,42.36444317326552],[-71.03643424222152,42.36444426888686],[-71.03643423619123,42.36444509172821],[-71.03643422411746,42.36444673921146],[-71.03643421607488,42.36444783663334],[-71.03643531839109,42.3644486639418],[-71.03643530631734,42.36445031142504],[-71.0364352982748,42.36445140884691],[-71.03643640301908,42.36445223616516],[-71.03643639699541,42.36445305810624],[-71.03643787199785,42.36445388691676],[-71.03643897350932,42.36445498971088],[-71.03644118056354,42.36445664523774],[-71.03644265678012,42.3644574740531],[-71.03644487590142,42.36445748299695],[-71.03644745362978,42.3644594146063],[-71.03638306392101,42.36456068625443],[-71.03644759795684,42.36459113040858],[-71.03645714379311,42.36460104867012],[-71.03647040872971,42.36460906069911],[-71.03648330579834,42.36461624837844],[-71.03649768995588,42.36462261648256],[-71.03655782764501,42.36464700730897],[-71.03661984356307,42.36466674126512],[-71.03729554838203,42.3649660955897],[-71.03729665795167,42.36496610005339],[-71.03731214701567,42.36497329806581],[-71.03731212693727,42.36497604297075],[-71.03731948474876,42.36498155893956],[-71.03732538039834,42.36498515140735],[-71.03733126281041,42.36499038775204],[-71.03734453998297,42.36499675309667],[-71.03735892145299,42.36500284829305],[-71.03737699677808,42.36501115235298],[-71.03739361186578,42.3650156098977],[-71.037411718882,42.36501924967464],[-71.03742353988649,42.36502204310285],[-71.03742612686133,42.36502205350713],[-71.03742835889702,42.36502096322917],[-71.03742946846762,42.3650209676916],[-71.03743429749147,42.3650185185161],[-71.0374380141097,42.36501578847754],[-71.03744173558347,42.36501305845835],[-71.03744546307411,42.36500950559775],[-71.03744770226771,42.36500677231805],[-71.03745142173265,42.36500431687909],[-71.0374600087089,42.36499365055914],[-71.03746710261646,42.36498462216466],[-71.0374817052715,42.3649616316502],[-71.03749520395627,42.36493753743989],[-71.03750497873123,42.36491617413969],[-71.03750725970625,42.36490822384344],[-71.03750990005612,42.36490109965828],[-71.03750992614884,42.36489753101168],[-71.03750993215859,42.36489670907061],[-71.03750846757711,42.36489478376211],[-71.03750847359348,42.36489396092077],[-71.03750737006779,42.36489313001676],[-71.03750626286073,42.36489230449962],[-71.03750516733282,42.3648903797748],[-71.03750370077688,42.36488872454539],[-71.03750260043348,42.36488762446727],[-71.03750038245755,42.36488679268301],[-71.03749927890577,42.36488596537995],[-71.03749780630721,42.36488513659289],[-71.03749670599036,42.36488403291362],[-71.03749560122466,42.36488320560566],[-71.03749449403111,42.36488237828787],[-71.03749303068417,42.36488045028324],[-71.03749303670074,42.36487962744191],[-71.03749193794515,42.36487797819288],[-71.03749195199917,42.36487605612918],[-71.0374919640323,42.36487441044651],[-71.03749197204343,42.36487331482519],[-71.03749198410289,42.36487166554144],[-71.03749310891253,42.36486975154551],[-71.03749573162645,42.36486537137517],[-71.037497988882,42.36486016686961],[-71.03751739839942,42.36483692019031],[-71.03754539046366,42.36480410371707],[-71.03757448166867,42.36477321197565],[-71.03760464145144,42.36474726351655],[-71.03763737819843,42.36472352031707],[-71.03765300321218,42.36471178392028],[-71.03766861581971,42.3647022423798],[-71.03767712693609,42.3647022765915],[-71.03768563441062,42.36470231078795],[-71.03769377289542,42.36470316636615],[-71.03770226953667,42.36470484894978],[-71.03771077264615,42.36470597878039],[-71.03771889543629,42.36470848362597],[-71.03772628175395,42.36471043183229],[-71.03773809068788,42.36471487091112],[-71.03775026065604,42.36472040799362],[-71.03776095280764,42.364725664547],[-71.03777902402986,42.36473369573987],[-71.0377970932568,42.36474200061019],[-71.0378077938563,42.36474643432759],[-71.03781961484039,42.36474922591474],[-71.03783180809177,42.364751744408],[-71.0378425868395,42.36474465201678],[-71.03785226688689,42.36473673234433],[-71.03786195293705,42.36472799072995],[-71.03787873522386,42.36471022160444],[-71.03789330755083,42.36469052237743],[-71.03792502078711,42.36465497577656],[-71.03794291137362,42.36463721289464],[-71.03796117021679,42.36461972427725],[-71.03796376081715,42.36461973468404],[-71.03796709873789,42.36461865063867],[-71.03796968933823,42.36461866104533],[-71.03797190967934,42.36461866996459],[-71.03797560984324,42.36461868482829],[-71.03799260478117,42.36462232094749],[-71.03857579468912,42.36487245171605],[-71.03857798780595,42.36487602746505],[-71.03858054159375,42.3648812521925],[-71.03857941801111,42.36488316890476],[-71.03857940601283,42.36488481368724],[-71.03857790373237,42.36488755264603],[-71.03857678135695,42.36488947026339],[-71.03857565856967,42.36489111148994],[-71.03857305274923,42.3648930195548],[-71.03857193114949,42.36489466438726],[-71.0385708155785,42.36489548277724],[-71.03856821218564,42.36489739085176],[-71.03856597858918,42.36489903122296],[-71.03856486102154,42.36490012329317],[-71.03856225962487,42.36490175768727],[-71.03856003324479,42.36490257522183],[-71.0385551962741,42.3649061209663],[-71.0385503512706,42.36491076773356],[-71.03854662148035,42.36491514438627],[-71.03854288326532,42.36492034297022],[-71.03853915584152,42.36492389586652],[-71.03853801103742,42.36492855477789],[-71.03853689067635,42.36493019601377],[-71.03853575508555,42.36493375840829],[-71.03853572905723,42.36493732615484],[-71.03853570302893,42.36494089390142],[-71.03853678056699,42.36494528894107],[-71.03853897367756,42.36494886559104],[-71.03854153347461,42.3649532665776],[-71.0385451959956,42.36495794477629],[-71.03854850110469,42.36496152588746],[-71.03855217890332,42.36496510849374],[-71.03855585063907,42.36496869017532],[-71.0385628487174,42.36497310896747],[-71.0385702230606,42.36497670640325],[-71.03857722716297,42.36498029965236],[-71.03858460873072,42.36498307335047],[-71.03859310063839,42.36498557961465],[-71.03860122031534,42.36498835447212],[-71.03864548043629,42.36500801610087],[-71.0387162823823,42.36504150278805],[-71.03875462802962,42.36506031778834],[-71.03879408450508,42.36507913452915],[-71.03883244221636,42.36509630111983],[-71.0388696867922,42.36511428790077],[-71.03890656429066,42.36513117304307],[-71.03894381246478,42.36514833874933],[-71.03902163408463,42.36518349821535],[-71.0390360466148,42.36518602547473],[-71.03905046192746,42.36518800446667],[-71.03906488288385,42.36518970889087],[-71.03910812604241,42.36519619501626],[-71.03912955714264,42.36520067160769],[-71.03914653110354,42.36520705065556],[-71.03916202645166,42.36521342287638],[-71.03917751700244,42.36522062064207],[-71.03922435966895,42.36524111525799],[-71.03924206940934,42.36524831830407],[-71.03924467080924,42.36524668299447],[-71.03924689838037,42.36524586905261],[-71.03924949700043,42.36524478200856],[-71.03925172094254,42.36524396625151],[-71.03925431877633,42.36524315379275],[-71.03925654513326,42.36524233984585],[-71.03925915696075,42.36523960622349],[-71.03926137610988,42.36523961511298],[-71.03926286749996,42.36523770166821],[-71.03926510351165,42.36523606219359],[-71.03926621786573,42.36523524379209],[-71.03926771046295,42.36523333125236],[-71.03926883205061,42.36523168641327],[-71.03926995559888,42.36522977239521],[-71.03927107716675,42.36522813025691],[-71.03927257342527,42.36522621503092],[-71.03927368899302,42.36522539663419],[-71.03927371497983,42.36522182888771],[-71.03927372696666,42.36522018320499],[-71.03927484932683,42.36521826558096],[-71.03927486932017,42.36521552067583],[-71.03930654205939,42.36518546350855],[-71.03932070024783,42.36517207438093],[-71.03932441364391,42.36517044352338],[-71.03932701947278,42.36516853274078],[-71.03933036018465,42.36516689949006],[-71.03942882623403,42.36521257212656],[-71.03944927201852,42.36519948184903],[-71.04063052346815,42.36385960040823],[-71.04064131932385,42.36385058930441],[-71.04064355040154,42.36384894888279],[-71.04064726566681,42.36384704520191],[-71.04064986221131,42.36384623270654],[-71.04065319805784,42.36384542226345],[-71.040655802578,42.36384351144531],[-71.04065951221332,42.36384188142992],[-71.04066285170784,42.36384107010078],[-71.04066655616066,42.36383998654076],[-71.0406713670437,42.36384000575377],[-71.04067617792674,42.36384002496658],[-71.04068209714596,42.3638400486054],[-71.04069060814801,42.3638400825941],[-71.04069911793607,42.36384011657736],[-71.04072791982931,42.36384846294733],[-71.04181600286852,42.36438104356766],[-71.0418388385273,42.36439540143586],[-71.04184104372541,42.36439733234003],[-71.04184250809151,42.36439980676937],[-71.04184359776991,42.36440255609527],[-71.04184468744843,42.36440530542119],[-71.04184577835402,42.36440805295142],[-71.04184576046133,42.36441052327685],[-71.04184722163819,42.36441327048136],[-71.04184720175675,42.36441601538746],[-71.04184567700332,42.36442204576056],[-71.04184452051248,42.36442835308942],[-71.04184337915051,42.36443273925893],[-71.04184074161981,42.36443904158847],[-71.04183848276082,42.36444451895975],[-71.04182613160988,42.36446395384252],[-71.04181307296496,42.36447899338889],[-71.04066805731478,42.36577348126939],[-71.04065014724489,42.36579398857543],[-71.04064864390632,42.36579755132167],[-71.04069435478488,42.36582105588428],[-71.04083668852985,42.36589022808592],[-71.04086434471158,42.36590351063239],[-71.04090269751227,42.36592149937081],[-71.04094214122108,42.36594223653446],[-71.04101883253982,42.3659798632202],[-71.04117447178949,42.36605100661111],[-71.04121617230652,42.36606709007996],[-71.04122245604044,42.36606793710889],[-71.0412283766824,42.36606796072441],[-71.04123319126853,42.36606715796319],[-71.04123911787829,42.36606635873684],[-71.04124762796623,42.36606639267949],[-71.0412546569832,42.36606642071436],[-71.04126205869588,42.36606645023527],[-71.04127388805104,42.36606814224428],[-71.04128608445619,42.36607011210491],[-71.04130749490687,42.366077330489],[-71.04132779100054,42.36608536999116],[-71.04134696346914,42.36609450426329],[-71.04137094547096,42.36610420328561],[-71.04139269116595,42.36611608919362],[-71.04141405786136,42.36612934652872],[-71.04143100047743,42.36614011492539],[-71.04144534213044,42.36615279686995],[-71.04146078819814,42.36616603059185],[-71.04147735017379,42.36617789581796],[-71.04149171374547,42.3661875564706],[-71.04150865761092,42.36619832396034],[-71.04152525704761,42.36620552582645],[-71.0415422255427,42.36621272916118],[-71.04154813228679,42.36621467212306],[-71.04155404099527,42.36621634410518],[-71.04155995447341,42.36621719054007],[-71.04156734947719,42.36621831566746],[-71.04157105889013,42.36621723479903],[-71.04157438766576,42.36621724806636],[-71.041578089138,42.366217262819],[-71.04158290848709,42.36621563629678],[-71.04158661472826,42.36621482550223],[-71.04159625198021,42.36621294449306],[-71.04160588360617,42.36621133714884],[-71.04162141799806,42.36621222192296],[-71.04163695360438,42.36621310669981],[-71.04165247649721,42.36621591354304],[-71.04166836483022,42.36621871823922],[-71.04168388297113,42.36622234882459],[-71.04170050586298,42.36622598200922],[-71.0417160084486,42.3662312573581],[-71.0417318817376,42.36623680967055],[-71.04174147561251,42.36624041304298],[-71.04174959082175,42.36624401322434],[-71.04175807155359,42.36624843772643],[-71.04176543066292,42.3662536806244],[-71.04177354034654,42.36625837913576],[-71.04177720040481,42.36626360819659],[-71.04178086213615,42.36626910915147],[-71.04178453655184,42.36627269163885],[-71.04178671919098,42.36627791301299],[-71.04178929118933,42.36628066824338],[-71.04179147856935,42.36628506767154],[-71.04179169104324,42.36628527476141]]]],"type":"MultiPolygon"} +},{ + "id": 1108711437, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000213, + "geom:area_square_m":1946723.534622, + "geom:bbox":"-71.1381137323,42.356336,-71.1171879794,42.3736210322", + "geom:latitude":42.363957, + "geom:longitude":-71.127777, + "iso:country":"US", + "lbl:latitude":42.359889, + "lbl:longitude":-71.131987, + "lbl:max_zoom":18.0, + "mps:latitude":42.364027, + "mps:longitude":-71.127975, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "North Allston" + ], + "reversegeo:latitude":42.364027, + "reversegeo:longitude":-71.127975, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85802869, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1b26a1d59f3503a8b38c588cf77a7f04", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711437, + "neighbourhood_id":85802869, + "region_id":85688645 + } + ], + "wof:id":1108711437, + "wof:lastmodified":1566624132, + "wof:name":"Lower Allston", + "wof:parent_id":85802869, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891229 + ], + "wof:tags":[] +}, + "bbox": [ + -71.13811373229755, + 42.356336, + -71.11718797940858, + 42.37362103223093 +], + "geometry": {"coordinates":[[[[-71.11718797940858,42.3611236818923],[-71.117558,42.361017],[-71.117655,42.360994],[-71.11779799999999,42.360961],[-71.118165,42.360874],[-71.118448,42.360816],[-71.118719,42.36075],[-71.11917099999999,42.360655],[-71.11958300000001,42.360581],[-71.119861,42.360537],[-71.120029,42.360511],[-71.12048299999999,42.360423],[-71.12056800000001,42.360406],[-71.120599,42.360396],[-71.12073599999999,42.360354],[-71.121009,42.360256],[-71.12114099999999,42.360208],[-71.121374,42.360103],[-71.121578,42.359999],[-71.12188399999999,42.359832],[-71.12223400000001,42.359648],[-71.12259400000001,42.359448],[-71.122956,42.35923],[-71.123245,42.359093],[-71.123451,42.358997],[-71.123932,42.358818],[-71.124707,42.358565],[-71.125147,42.358411],[-71.126487,42.357978],[-71.128124,42.357369],[-71.128632,42.357175],[-71.129266,42.356947],[-71.129707,42.356774],[-71.12987099999999,42.35671],[-71.130404,42.356487],[-71.130802,42.356336],[-71.131457,42.35639],[-71.131934,42.356444],[-71.132019,42.356449],[-71.135065,42.356866],[-71.138042,42.357257],[-71.13811373229755,42.35727237120662],[-71.13809368815014,42.35732816516867],[-71.13796477917116,42.35761369324175],[-71.13736687646474,42.35877721987411],[-71.13715207644623,42.35894146318118],[-71.13693224867619,42.35933729073173],[-71.13661040761667,42.36016471156804],[-71.13628912709929,42.36089444218898],[-71.13583248728783,42.36193190312974],[-71.13530771404677,42.36316782022676],[-71.13536971120993,42.36409551367561],[-71.13538110973825,42.36462131660069],[-71.13568646476033,42.36675518165985],[-71.13568605270198,42.36675526858266],[-71.135682345802,42.36675640110383],[-71.13567863627806,42.36675798916086],[-71.135677397568,42.36675890082723],[-71.13567523378565,42.36675980866323],[-71.1356736867215,42.36676071845263],[-71.13567244407031,42.36676231432315],[-71.13566873190639,42.36676436061661],[-71.13566655758666,42.36676709779833],[-71.1356656035269,42.36677212646971],[-71.13566556665224,42.36677852828024],[-71.13568574977211,42.3668078631786],[-71.13500795325423,42.36702318181564],[-71.13500421202372,42.3670302587884],[-71.13500047079238,42.36703733576104],[-71.13499456575829,42.36704532055662],[-71.13499239667803,42.36704714305259],[-71.13498960438424,42.36704987826043],[-71.13498744179606,42.36705078608723],[-71.1349858947149,42.36705169586731],[-71.1349849684192,42.36705169292777],[-71.1349824909779,42.36705351444498],[-71.13498125347122,42.36705442520741],[-71.13497878262784,42.3670551033834],[-71.13497785226758,42.36705601512055],[-71.13497507702243,42.36705600631326],[-71.13497414412846,42.36705714671473],[-71.13497137009729,42.36705713791117],[-71.13496828131328,42.36705781502614],[-71.13495715647717,42.36706212359537],[-71.13494509346077,42.36706848813784],[-71.1349342757626,42.36707279857992],[-71.13492313660988,42.36707916605233],[-71.13489222530484,42.36709210226331],[-71.13485945590193,42.36710640460189],[-71.13481648538473,42.36712524799203],[-71.1347957644706,42.36713570113378],[-71.1347741317766,42.36714363598017],[-71.13475002932992,42.36715247856976],[-71.1347247108227,42.36715788540587],[-71.13467560612688,42.36717076468062],[-71.13456842382885,42.36720175142465],[-71.13453565032702,42.36721674057548],[-71.13450319046173,42.36723081512373],[-71.13447199310527,42.36723986198172],[-71.13443834073169,42.36724684477774],[-71.13437441616652,42.3672626477634],[-71.13431293972755,42.36728211905594],[-71.13425300517828,42.36730136474561],[-71.13419616743036,42.36731833442911],[-71.13413841250221,42.36733392913276],[-71.13398210624548,42.36738076793611],[-71.13384360392205,42.3674418399935],[-71.13372086358351,42.36749678792315],[-71.13364944107988,42.36752948928739],[-71.13357709871219,42.36756127298732],[-71.13350754214001,42.36759123613894],[-71.13343613410281,42.36762119424837],[-71.1333702459537,42.36765665624496],[-71.13330251152063,42.36769142720078],[-71.13322922778524,42.36772595264979],[-71.13315563694253,42.36776024659967],[-71.13304454025956,42.36782780882402],[-71.13299902772113,42.36785899173464],[-71.13295166881821,42.36788971139052],[-71.13283841313543,42.36795726652561],[-71.13278180180603,42.36798818434874],[-71.13272518377711,42.36802024638479],[-71.1326694310219,42.36806260231368],[-71.13261429360563,42.36810518705262],[-71.13250560553703,42.36818258936027],[-71.1324477045637,42.36822310803831],[-71.13238856750745,42.36826385140898],[-71.13228816890548,42.36834745325641],[-71.13223393480682,42.36839370035783],[-71.13218062706042,42.36843972172332],[-71.1320941456828,42.36851627905957],[-71.13203345153063,42.36855976223486],[-71.13197428982697,42.36860485008731],[-71.13192594366778,42.36864585641653],[-71.13187914837599,42.36868572342654],[-71.13179334293254,42.36875199334207],[-71.13178159696281,42.36875675786082],[-71.13176923159111,42.36876197774017],[-71.13175594643604,42.3687662799841],[-71.13174388688387,42.36877172951218],[-71.13173181389823,42.36877969439187],[-71.13172097693091,42.36878743455533],[-71.13171012421807,42.36879746139094],[-71.13167513059386,42.36882296064565],[-71.13155349407448,42.36889917632332],[-71.13148694948985,42.36894103886193],[-71.13145321727461,42.36896151129842],[-71.13142070385938,42.36898450302627],[-71.13138910086624,42.36901001395859],[-71.13136180049891,42.36903782359438],[-71.13130686574767,42.36909824569543],[-71.13128793238752,42.36911945243462],[-71.13125498393181,42.36916393792093],[-71.13122603201539,42.36921095160631],[-71.13119426083321,42.36926527375944],[-71.13116649321225,42.36932029475796],[-71.13112360617637,42.36942991995079],[-71.13109521383342,42.36953936384083],[-71.13109427925986,42.36954119022209],[-71.13108309154926,42.36960861177571],[-71.13107559882882,42.36967719034048],[-71.13107235690254,42.3698100385569],[-71.13107911887577,42.36991982295211],[-71.13108692732681,42.3699555217752],[-71.13109752426327,42.36998939926176],[-71.13114164129611,42.37009175725795],[-71.13116173937041,42.3701354981129],[-71.13118183201948,42.37018038230789],[-71.13121978701102,42.37028203449412],[-71.13125277609547,42.37038915978081],[-71.13129780400821,42.37049426469339],[-71.13129871726193,42.37049609699884],[-71.13135571596516,42.37061107316271],[-71.13138680668239,42.37067360032658],[-71.13141758908266,42.3707361264931],[-71.13148538559929,42.37085022249465],[-71.13154615489884,42.37095309190378],[-71.13162595860777,42.37107088503131],[-71.13170213285341,42.3711760895059],[-71.13172146097023,42.37119330180602],[-71.13174171678011,42.37121028930082],[-71.13175614689365,42.37122108219145],[-71.13176934469226,42.37123187293597],[-71.13178099127701,42.37124425851864],[-71.13178252374566,42.37124609280203],[-71.13178467187936,42.37124770038396],[-71.1317941583545,42.37126053639501],[-71.1318048798061,42.37127291901385],[-71.13181590831718,42.37128553038639],[-71.13182174759201,42.37128897915988],[-71.13182788858789,42.37129357316021],[-71.13183831631746,42.37130343854093],[-71.13184812739415,42.3713130750754],[-71.13185426428956,42.37131858284975],[-71.13186133710009,42.37132203466877],[-71.13188159177471,42.37133902213451],[-71.1318969336553,42.37135233421959],[-71.13191381079605,42.37136679457638],[-71.13192240954857,42.37137299624138],[-71.13193039020884,42.37137942460019],[-71.13194266958915,42.3713890672238],[-71.13195585680943,42.37140168729018],[-71.13196780652132,42.37141498851199],[-71.13197606375601,42.37142667721342],[-71.13198094718784,42.37143561105372],[-71.13198307271369,42.37144110598712],[-71.13198551570807,42.37144545767485],[-71.13199041255903,42.37145187706354],[-71.1320081816324,42.37147205706486],[-71.13202594273467,42.37149360907107],[-71.13203574843703,42.37150438803253],[-71.13204400824038,42.37151584806478],[-71.13205473909622,42.37152662998392],[-71.13206057175499,42.37153122208485],[-71.13207653580034,42.37154362234664],[-71.13208452315396,42.37154890645449],[-71.13209312061781,42.37155533677442],[-71.1320989439711,42.37156152954906],[-71.13210384749837,42.37156680469277],[-71.13211581189815,42.37157759145148],[-71.13212777631244,42.37158837640839],[-71.13214192068399,42.37159551048041],[-71.13214805641306,42.37160101913513],[-71.13215912361727,42.37160699910325],[-71.13216957671261,42.3716125206624],[-71.1321852324223,42.37162491902249],[-71.1321996519471,42.3716377707722],[-71.13222451128831,42.3716584307537],[-71.13227240884893,42.37169494366249],[-71.13228193283079,42.37170114825768],[-71.13229176398356,42.37170735383398],[-71.13232151630595,42.37173511827299],[-71.1323310243523,42.37174406597912],[-71.13234176182695,42.37175393320304],[-71.13236570275022,42.37177344775703],[-71.1323776713466,42.37178331801185],[-71.13238381896139,42.37178699731404],[-71.1323896569844,42.37179067472628],[-71.13239547917425,42.37179686748171],[-71.13241601197178,42.37181911339921],[-71.1324159588069,42.3718282610172],[-71.13255881150771,42.37202903515288],[-71.1325719524997,42.37204965672391],[-71.13258262110165,42.37207118598535],[-71.13258384135767,42.37207347660471],[-71.132583825417,42.3720762206199],[-71.1325862700289,42.37207988718291],[-71.13258840469912,42.37208423877247],[-71.13259208406075,42.37208791017949],[-71.13259941756266,42.37209959498303],[-71.13261009282381,42.37211998090199],[-71.1326216919196,42.3721405984425],[-71.13262811089228,42.37215045274647],[-71.13263515195588,42.37215939344784],[-71.1326409647976,42.37216741463735],[-71.13264553878088,42.37217634745921],[-71.13264918760362,42.37218527822665],[-71.13265283643261,42.37219420809365],[-71.13265403278707,42.37220061473489],[-71.13265641221545,42.37221571469649],[-71.13265755411756,42.37223149672261],[-71.13266230634414,42.37226283908475],[-71.13266583166119,42.37229303596829],[-71.13266868310664,42.37233306270225],[-71.13266861404604,42.37234495343405],[-71.13266854764159,42.37235638683005],[-71.13267199859968,42.37239938821581],[-71.13267545753091,42.37244101759357],[-71.13267531675586,42.3724652563924],[-71.13267045853742,42.37250525850557],[-71.1326666702376,42.37252033877036],[-71.13265940732718,42.37254958651289],[-71.13264465944079,42.37259321579666],[-71.13261554904079,42.37266721170361],[-71.13260683181878,42.37268136243573],[-71.13259935213522,42.37269483020307],[-71.13259434619509,42.37270716251017],[-71.13258841376538,42.37271971962971],[-71.1325706177697,42.37275716591942],[-71.13254944011273,42.37279277112664],[-71.13253979238382,42.37280783266933],[-71.13252207472887,42.37283178664484],[-71.13250097009841,42.37285481510854],[-71.13248670183037,42.37286894719653],[-71.13239985997495,42.37295327840472],[-71.13237570315026,42.37297103763238],[-71.13233451056048,42.3730013202741],[-71.13232739234412,42.37300564229319],[-71.13231996973063,42.37300927642221],[-71.13231193443524,42.37301199480417],[-71.13230328478836,42.37301471122176],[-71.13229585696466,42.37301903224929],[-71.13228873874367,42.37302335426596],[-71.13228286338685,42.37302607955029],[-71.13227914808655,42.37302858306717],[-71.13227542613834,42.37303222992337],[-71.13227200726122,42.37303679243678],[-71.13226951887097,42.37304044323609],[-71.13226735083089,42.3730420379106],[-71.13226084274223,42.37304750433633],[-71.13225124808501,42.37305342003911],[-71.13224164013484,42.37306162151957],[-71.13223328702161,42.3730661673567],[-71.1322295770305,42.37306775710073],[-71.13222586692889,42.37306957461617],[-71.13222121581644,42.37307390451626],[-71.13221407908338,42.37308119920677],[-71.13220787538147,42.37308735351939],[-71.13219704050957,42.37309440771266],[-71.13218620031591,42.37310237657636],[-71.13217073427404,42.37311032974724],[-71.13214753852104,42.37312168918029],[-71.13212250039399,42.37313167158429],[-71.13209714589301,42.37314302410345],[-71.13206343690976,42.37315915200988],[-71.13204889201323,42.37316779502731],[-71.13204021983876,42.37317416920684],[-71.1320355740275,42.37317758442786],[-71.13203062381129,42.37318031355889],[-71.13202350954539,42.37318394955539],[-71.13201608688821,42.37318758456495],[-71.13199940453386,42.3731925619845],[-71.13198241112524,42.37319799575072],[-71.13196572089812,42.37320411650082],[-71.13194871272911,42.37321229428039],[-71.13193200907061,42.37322093037596],[-71.13190913493332,42.37323000406879],[-71.13188594308227,42.37324067744524],[-71.13186924473169,42.37324839886021],[-71.13185254504597,42.37325634894064],[-71.13183430872657,42.3732633794121],[-71.13182472731361,42.37326700750015],[-71.13181637546923,42.37327132553916],[-71.13180771401871,42.37327564258663],[-71.13179688306376,42.37328201073833],[-71.13178605332074,42.37328837889287],[-71.13176904534031,42.3732960993022],[-71.13174647954345,42.37330517394972],[-71.13172361322084,42.37331310427007],[-71.13170042009386,42.37332377760501],[-71.13167630433146,42.37333421930899],[-71.13161262646484,42.3733598553512],[-71.13158264869318,42.37337050693476],[-71.13155145054952,42.37337909655263],[-71.13153445172344,42.37338544492388],[-71.13151775195422,42.37339339585571],[-71.13150044606699,42.37339951366591],[-71.1314800402676,42.37340836650844],[-71.13141267499239,42.37343147523374],[-71.1313552155177,42.37344821374597],[-71.13128139938044,42.37346672737869],[-71.13118533885716,42.3734922593833],[-71.13109609076557,42.37351324061291],[-71.13104452539622,42.37352382192421],[-71.13100994934086,42.3735301147402],[-71.13096489353487,42.37353500009326],[-71.13092198966379,42.37354126616636],[-71.13089636776117,42.37354552872743],[-71.13087135063316,42.37355185037223],[-71.13081826046007,42.37355968352415],[-71.13070435557455,42.37357784125012],[-71.13067535468532,42.37357980529279],[-71.13058493842641,42.37358911919746],[-71.13052756141253,42.37359167989021],[-71.13047110022922,42.37359584240061],[-71.13029277590606,42.373607847288],[-71.13026654651195,42.37361050615139],[-71.13024031844206,42.3736129381415],[-71.13019342273095,42.37361621747397],[-71.13012216801961,42.37361873244991],[-71.13010674839485,42.37361868286877],[-71.13009009520016,42.37361862931883],[-71.130068188633,42.37362038824948],[-71.13004660115784,42.3736203188252],[-71.1299842993126,42.37362103223093],[-71.12993619008209,42.37362087747331],[-71.12975951853173,42.37361413573712],[-71.12967411804983,42.37360951516965],[-71.12958534789557,42.37360122673472],[-71.12956994032936,42.37359911907124],[-71.12955176526914,42.37359563046068],[-71.12953359155557,42.37359191227915],[-71.12943899816487,42.37357743082957],[-71.12940263211995,42.37357296890627],[-71.12936688663302,42.37356828029868],[-71.12929848399621,42.3735575409697],[-71.1292525883937,42.37354824617404],[-71.12908103672162,42.37350950489581],[-71.12901852302986,42.373493981373],[-71.12899943760983,42.3734879743454],[-71.12898282737126,42.37348060416529],[-71.12896465909023,42.37347597122248],[-71.12890494513117,42.37345634146969],[-71.12887815665107,42.37344916621095],[-71.12885198630211,42.37344176426812],[-71.12883290762358,42.37343461387376],[-71.128814758278,42.37342655178629],[-71.12879691438835,42.37341940537028],[-71.1287827646176,42.3734131855612],[-71.12876829584857,42.3734085654259],[-71.1286627310494,42.37337186673003],[-71.12864242543853,42.37336379675422],[-71.12862058739937,42.37335389335053],[-71.1285990565441,42.37334399093437],[-71.12856921512267,42.37333154628674],[-71.12853937639909,42.37331864429568],[-71.12852492365761,42.37331150878759],[-71.12851170448309,42.37330437726138],[-71.12844927844716,42.37327399092027],[-71.12842159044951,42.37326246787804],[-71.12839421891398,42.37324957381835],[-71.1283773084849,42.37324082964698],[-71.12836655646656,42.37323370607416],[-71.12835579504474,42.37322818317511],[-71.12833888059546,42.37322012500146],[-71.12832350810287,42.37321207180747],[-71.12830198796379,42.3732005686646],[-71.12828017153787,42.37318700651066],[-71.12825896652573,42.37317436101708],[-71.12823590984181,42.37316193730718],[-71.12821192677697,42.37314951149877],[-71.12817012821094,42.37312513804748],[-71.12814862023464,42.37311157596497],[-71.12812711750998,42.37309732877911],[-71.12809853015182,42.37308123020755],[-71.12806964102214,42.37306421416375],[-71.12805766088341,42.37305617280237],[-71.12804568196709,42.3730481305433],[-71.12803246168755,42.37304099895766],[-71.12801924263046,42.37303386647412],[-71.12797283855426,42.37300604707411],[-71.12795839670916,42.3729970821517],[-71.12794396024361,42.3729872034564],[-71.12790676621253,42.37296650175483],[-71.12789108006588,42.37295936217639],[-71.1278741657477,42.37295130393392],[-71.12785972392911,42.37294233899903],[-71.12784928579103,42.37293430170369],[-71.12783853926653,42.3729262634097],[-71.12782409207622,42.37291821314162],[-71.12781088382826,42.37290925219153],[-71.12766952835908,42.37282327134691],[-71.12765048634932,42.37280994672379],[-71.12761702414052,42.37278399844638],[-71.1276108819541,42.37277963379097],[-71.12760413510949,42.3727732091279],[-71.12758969875568,42.37276332948739],[-71.12757649474524,42.37275345383483],[-71.12755838871317,42.37273830284882],[-71.12754550630213,42.37272659885622],[-71.12753230769285,42.37271580852712],[-71.12751204822069,42.37269996454427],[-71.12749024829866,42.37268365822489],[-71.1274816634038,42.37267494088027],[-71.1274721518682,42.37266667787841],[-71.12743652826764,42.37264140856418],[-71.12742209345541,42.37263107066243],[-71.12740642482095,42.37262118790742],[-71.127384932132,42.37260488166248],[-71.12736467286011,42.37258880988176],[-71.12734685375597,42.37257731854645],[-71.12732996655721,42.37256468686638],[-71.12730693722754,42.37254768961156],[-71.1272569382883,42.37250202273794],[-71.12724528697245,42.37249055047187],[-71.12723302562044,42.37247793376694],[-71.12721767905724,42.37246553573467],[-71.12720693269267,42.37245749738081],[-71.12719587929196,42.37244922935865],[-71.12717685366991,42.37243316064179],[-71.12716612349183,42.37242237826985],[-71.12715416799324,42.37240999121976],[-71.12713393163148,42.3723902598157],[-71.12712072224339,42.37238152745321],[-71.12710875853817,42.37237074107718],[-71.12709586967814,42.37235995170075],[-71.127083597595,42.37234916432234],[-71.12707285666052,42.37234021128432],[-71.12706210912155,42.37233217291278],[-71.12703235464738,42.37230532179259],[-71.12700229599284,42.37227755498923],[-71.12699032153854,42.37226859794353],[-71.12697712298507,42.37225803622139],[-71.12696761697288,42.37224885850564],[-71.12695596993164,42.37223647243451],[-71.12694525182894,42.37222386070256],[-71.12692838247442,42.3722080276085],[-71.12691275180163,42.3721917402847],[-71.12686619288344,42.37213808086452],[-71.12685181764036,42.37211768150407],[-71.12683651441272,42.37209796604824],[-71.12681141033451,42.37206678608245],[-71.12680190438041,42.37205760745233],[-71.12679332884029,42.37204774672358],[-71.12676486240035,42.37201129547629],[-71.12671713228995,42.37194711236883],[-71.12670890173766,42.37193084992998],[-71.12670066849029,42.37191504482616],[-71.12668720081633,42.37189785070083],[-71.12667558210369,42.37188089124679],[-71.12666825377626,42.37186851916115],[-71.12666123519058,42.37185591850778],[-71.12665514039865,42.371843551325],[-71.12664812721249,42.37183003689948],[-71.1266411032303,42.37181835181653],[-71.12661489813252,42.37176475654948],[-71.12660912794156,42.37174964635043],[-71.12660427751372,42.37173545202519],[-71.12659697081753,42.37171942124847],[-71.12658904330864,42.37170407447277],[-71.12658418613317,42.37169102438619],[-71.12657932760958,42.37167820296723],[-71.12655438585165,42.37161958189586],[-71.12655195659008,42.37161317208599],[-71.12654528694492,42.37159371238935],[-71.1265262639274,42.37152504894603],[-71.1265226524599,42.37150994485025],[-71.12651904774569,42.37149369741488],[-71.12651693093082,42.37148660170136],[-71.12651450168342,42.37148019099021],[-71.12648856420947,42.37138132034701],[-71.12648733473458,42.37138063033792],[-71.12647324594313,42.37131198290398],[-71.12646161896882,42.37124402857808],[-71.126448197727,42.37111478514831],[-71.12644706833544,42.37109694504151],[-71.12644603591177,42.37106309818856],[-71.12644377415818,42.37102833265386],[-71.12644047877399,42.37095972026118],[-71.12643481945241,42.37092585838093],[-71.12642545958724,42.37089198448209],[-71.1264063207562,42.37084298554932],[-71.1263825576204,42.37079374382083],[-71.1263541985647,42.37073945636698],[-71.12632212834903,42.3706867575556],[-71.12624319499947,42.37058039714917],[-71.12617158620829,42.37048663656739],[-71.12609781600815,42.37039378450228],[-71.12605583081125,42.37034905781405],[-71.12601446365103,42.3703043313186],[-71.12593915080097,42.37021147413088],[-71.12590703507584,42.37016677857984],[-71.12587369130502,42.37012116433561],[-71.12583445057741,42.37008193372531],[-71.12579614057915,42.37004156186689],[-71.12572812501581,42.36996656561742],[-71.12570273426452,42.36993195257121],[-71.12555837683401,42.36999002376765],[-71.12564272099858,42.37011972685465],[-71.12558987916718,42.3701380773291],[-71.12525987204273,42.36967622695968],[-71.12545986885172,42.36959592832396],[-71.12545710432924,42.36959408994319],[-71.12542903466527,42.36954323327033],[-71.12539879967407,42.3694935119998],[-71.12533251681371,42.369386277438],[-71.12528329163158,42.3693147712995],[-71.12525509081313,42.3692860953762],[-71.12522256062964,42.36925946339154],[-71.12518818716369,42.3692314533566],[-71.12515349423352,42.36920572899415],[-71.12507799961259,42.36914397006729],[-71.12501358898736,42.36908499129335],[-71.1249859956434,42.36905791798919],[-71.12497741957898,42.36904805711444],[-71.12496914632212,42.36903934058839],[-71.12495840082538,42.36903130201824],[-71.12495256755692,42.36902693822258],[-71.12494642741702,42.36902211608118],[-71.12493904809051,42.36901866193341],[-71.12493228443257,42.36901498112029],[-71.1249248984696,42.36901244163961],[-71.12492243150997,42.3690124335953],[-71.12491996455036,42.36901242555093],[-71.12491780596064,42.36901241851208],[-71.12491503063107,42.36901240946204],[-71.12491286661715,42.36901331709511],[-71.12490700216898,42.36901421176088],[-71.12490083476973,42.36901419164904],[-71.1248959062695,42.36901326178759],[-71.12489005808943,42.36901141333673],[-71.12488512538431,42.3690113972505],[-71.12488052031982,42.36900772347382],[-71.12487559589431,42.36900610670721],[-71.1248706782501,42.36900334660039],[-71.12486606898156,42.3690005865988],[-71.1248623834561,42.36899806008267],[-71.12485746581305,42.36899529997527],[-71.12485409545019,42.36899162932403],[-71.12480735480749,42.36896929564792],[-71.12469102849623,42.36892889847669],[-71.12457100868255,42.36888734666993],[-71.12443435611304,42.36884253721614],[-71.12429399394125,42.36879908841725],[-71.12417639267591,42.36876577540332],[-71.12413327948401,42.36875580161499],[-71.12409015543345,42.36874765715453],[-71.12404454269806,42.36874316330278],[-71.12399768697919,42.36874026607696],[-71.1238943875739,42.36873924233918],[-71.1237824186337,42.36874390696431],[-71.12373922103427,42.36874833911637],[-71.12369602221472,42.36875277124819],[-71.12366209092319,42.36875426094385],[-71.12362754818889,42.36875506261142],[-71.12361182260032,42.36875501115459],[-71.12359517900342,42.36875335598437],[-71.12357946444918,42.36875124650715],[-71.1235637526178,42.36874867969177],[-71.12354927562322,42.3687458882432],[-71.12353512741403,42.36873966778197],[-71.12352221268193,42.36873345135627],[-71.12350869346541,42.36872517489845],[-71.12332179248591,42.36862577649116],[-71.12331223307656,42.36862574518589],[-71.12329440205831,42.36861676856452],[-71.12328611289448,42.36861056726063],[-71.12327627115013,42.36860596067818],[-71.12326892873183,42.36859633328708],[-71.12326219109993,42.36858830678302],[-71.12325484051892,42.36858005049876],[-71.12324995717269,42.36857134585058],[-71.12324292328891,42.36856148899525],[-71.12323836723479,42.36854981267648],[-71.12322646757514,42.36852850715902],[-71.12320970473587,42.36849552251347],[-71.12319434085056,42.36848632618567],[-71.12317713509884,42.36847552131385],[-71.12305290902215,42.36841566033472],[-71.12294031388348,42.36837047058602],[-71.12292708955525,42.3683644817501],[-71.12284432569896,42.36833288227258],[-71.12276278857212,42.36830243012075],[-71.12265601884056,42.36826274823638],[-71.12260307656507,42.36824656746874],[-71.12254919723811,42.3682319843091],[-71.12254088090545,42.36823035631127],[-71.12253256047926,42.36822941431684],[-71.12251070879284,42.36822225375786],[-71.12248792655404,42.3682160048306],[-71.12244511812322,42.36820694609641],[-71.12240167962381,42.36819971465778],[-71.12237148160969,42.36819595585985],[-71.12234313242391,42.36819243269704],[-71.12232957660667,42.36819033103623],[-71.12231633325796,42.36818754348207],[-71.12229723505523,42.36818405068344],[-71.12227689792887,42.36818146850315],[-71.12226457968185,42.36817868398096],[-71.12225287816754,42.36817590148279],[-71.12222885158178,42.36817147779745],[-71.12219527248924,42.36816587936891],[-71.12216260757201,42.36816211331354],[-71.12215458884812,42.36816208697278],[-71.12214101392958,42.36816318484138],[-71.12213515497996,42.36816316559423],[-71.12212929603034,42.3681631463468],[-71.12211974351686,42.36816197250266],[-71.12207014019904,42.36815472068543],[-71.12205351031724,42.36815100638356],[-71.12203811252297,42.36814752660089],[-71.12200667304049,42.36814490789035],[-71.12197647507602,42.36814114898865],[-71.12196477767604,42.36813768135744],[-71.12195860626844,42.36813834619159],[-71.12195245535106,42.36813558280578],[-71.12194290012224,42.36813486448241],[-71.12192532996283,42.36813389204177],[-71.12190806558333,42.36813315017636],[-71.121890195567,42.36813034736462],[-71.12187819118597,42.36812664824233],[-71.12186617585918,42.36812478026341],[-71.1218446053126,42.36812219305144],[-71.12182427505526,42.36811846835132],[-71.12180733546462,42.36811498166797],[-71.1217916306945,42.3681112721704],[-71.12175343576256,42.36810405772757],[-71.12171368533613,42.36809912488149],[-71.12168008308166,42.36809741275842],[-71.12160670304556,42.3680953429032],[-71.1215659975949,42.36809520898697],[-71.12153947254633,42.36809626417712],[-71.12151417700258,42.3680977816522],[-71.12150737654272,42.36810050334514],[-71.12149873819952,42.36810116183759],[-71.12149131979901,42.36810388059583],[-71.12148638169184,42.3681047790359],[-71.12148328708957,42.36810659823238],[-71.12147340723232,42.3681083950996],[-71.12146014462469,42.36810903747096],[-71.12144687806024,42.36811013807301],[-71.12143021963472,42.36811099793732],[-71.12138428671349,42.36810878779899],[-71.12133989714128,42.36810612627825],[-71.12130875101404,42.36810602374017],[-71.12126433543162,42.3681077068824],[-71.12125013418263,42.36811040509175],[-71.12124272930814,42.36811106582599],[-71.12123563142433,42.36811195714339],[-71.12122823065219,42.3681119327729],[-71.12122113824562,42.36811190941742],[-71.12120664506693,42.36811186168962],[-71.12116068216636,42.36811445528657],[-71.12111534147752,42.36811613532437],[-71.12107306389274,42.36812125552304],[-71.12104312640416,42.36812550167252],[-71.12101193900747,42.36813248776609],[-71.12098908585901,42.36813789970559],[-71.12095418420247,42.36814738894241],[-71.12094553351366,42.36815010540526],[-71.12093595773237,42.36815281791851],[-71.12092791708304,42.36815645018023],[-71.1209192785805,42.36815733550056],[-71.12090231434885,42.36815796650848],[-71.12087610326243,42.36815788011825],[-71.1208520536396,42.368157113929],[-71.12082677434258,42.3681561168092],[-71.12080271633874,42.3681569512896],[-71.12077865848045,42.36815755889353],[-71.12076539875453,42.36815751517673],[-71.12075213902864,42.36815747145841],[-71.12068736577208,42.3681600019443],[-71.12065713358778,42.36816196029642],[-71.12064757014087,42.3681626138734],[-71.12063801080291,42.36816258234592],[-71.12062721372985,42.36816346142541],[-71.12061889745024,42.36816183418883],[-71.12061027433988,42.36815974769431],[-71.12060226643771,42.36815811967309],[-71.12059240558763,42.36815694468499],[-71.12058408383383,42.36815623031735],[-71.1205745244968,42.36815619878458],[-71.12056959064549,42.36815618250927],[-71.12056373169699,42.3681561631821],[-71.1205550864828,42.36815796404331],[-71.12054551753731,42.36815953408439],[-71.12053686684008,42.36816224871594],[-71.12052512698615,42.36816586964613],[-71.120514313611,42.36816926315866],[-71.12050689087559,42.36817289832992],[-71.12050472682709,42.3681738058802],[-71.12050316853438,42.36817654480917],[-71.12050223932097,42.36817722776095],[-71.1205010003698,42.36817813836336],[-71.12049852658869,42.36817927266382],[-71.12049728351596,42.36818087017046],[-71.1204960459366,42.3681815521048],[-71.12049357900995,42.36818154396549],[-71.12049233868655,42.36818268323579],[-71.1204901801257,42.36818267611383],[-71.12048771319895,42.36818266797442],[-71.12048647973562,42.36818266390468],[-71.12048401280894,42.36818265576517],[-71.12048185424803,42.36818264864306],[-71.12047907774149,42.36818263948199],[-71.12046365396111,42.36818350328017],[-71.1204516193022,42.36818506427713],[-71.12044050166517,42.36818777166144],[-71.12042384441959,42.36818863138406],[-71.12041798546815,42.36818861204945],[-71.12041335998019,42.36818859678507],[-71.12040719266288,42.36818857643227],[-71.12040100888277,42.36819129919476],[-71.12039513894669,42.3681931101032],[-71.12038926490389,42.36819560521474],[-71.12038308539256,42.36819741420059],[-71.12037690967595,42.36819899542638],[-71.12037104386125,42.36820011942934],[-71.12036394595516,42.36820101069294],[-71.12035654517295,42.36820098626637],[-71.1203457578558,42.3682000359715],[-71.12033497481529,42.36819817099961],[-71.12032542218202,42.36819722387791],[-71.12031463348794,42.36819650314837],[-71.1202967482656,42.36819644410902],[-71.12026280620974,42.36819976214604],[-71.12024491138152,42.36820130287426],[-71.12022546906111,42.36820398365354],[-71.12015820012965,42.36821107905206],[-71.12010884218742,42.36821434613481],[-71.12005978468363,42.36821852887892],[-71.12002738427387,42.36822208061136],[-71.12000330683621,42.36822634584856],[-71.11997769475411,42.36822900530289],[-71.11994405674803,42.36823323894055],[-71.11991196469036,42.3682367916593],[-71.11986011108625,42.36824462383914],[-71.11983695064659,42.36825003453451],[-71.11981563627123,42.36825613824482],[-71.1197961720836,42.36826224896719],[-71.11977824423047,42.36826927855461],[-71.1197624955572,42.36827288525514],[-71.11975786335044,42.36827378463231],[-71.11975292520539,42.3682746829979],[-71.11974706624622,42.36827466362912],[-71.11974336585092,42.36827465139606],[-71.1197384319905,42.36827463508511],[-71.11972886592285,42.36827551814997],[-71.11970360859968,42.36827086119542],[-71.1196795821561,42.36826643697766],[-71.11966633890825,42.36826364911841],[-71.11966049095031,42.36826180040143],[-71.1196534040331,42.36826086137708],[-71.11963521333293,42.36826011610751],[-71.11961485825758,42.36826073391205],[-71.11960436708621,42.36826161480749],[-71.11959326590275,42.36826157809416],[-71.11958833325748,42.36826156178079],[-71.11958494552178,42.36826063498627],[-71.11957292045393,42.36826059521544],[-71.11955935112699,42.36826055033571],[-71.11954762082692,42.36826257049019],[-71.11953064693031,42.36826480107133],[-71.11952138356386,42.36826682848284],[-71.11951182129798,42.36826748286965],[-71.11950533201269,42.36826951945622],[-71.11950070651902,42.36826950415514],[-71.11949453628127,42.3682701697614],[-71.11948867732254,42.36827015037945],[-71.11948282127683,42.36826944498924],[-71.11947665395195,42.36826942458656],[-71.11947327001586,42.36826827002912],[-71.11946957512387,42.36826734311532],[-71.11946679861371,42.36826733392981],[-71.11946588314517,42.36826573019348],[-71.11946373267432,42.36826457971639],[-71.11946219375643,42.36826388860757],[-71.11946004069593,42.36826296679436],[-71.1194502059961,42.36825744611655],[-71.11942899339513,42.368246628325],[-71.11942036877474,42.36824499908128],[-71.119412973335,42.36824428769383],[-71.11939541175856,42.36824148641515],[-71.11938184915401,42.36824052684661],[-71.11936860042034,42.368238653625],[-71.11935195966053,42.36823676917668],[-71.11933502016912,42.36823328302954],[-71.11931963076732,42.36822842997491],[-71.11931100615222,42.36822680072301],[-71.11930300515121,42.36822403017175],[-71.11928945356283,42.36822124124851],[-71.11927529487856,42.36821684960647],[-71.11925960676018,42.36821039394698],[-71.11924267156762,42.36820599401063],[-71.11921527089505,42.36819881355535],[-71.11918662453188,42.36819345924991],[-71.11917431605065,42.36818907462119],[-71.11916354528063,42.36818537929944],[-71.11914660167727,42.36818258002876],[-71.11911918328248,42.36817814446252],[-71.11910377600913,42.36817626406265],[-71.1190877506335,42.36817460938602],[-71.11907234886519,42.36817181521031],[-71.11905570951443,42.36816970115083],[-71.11903012908803,42.36816710193101],[-71.11900484982117,42.36816610351051],[-71.11896783920915,42.36816689560358],[-71.11893051180625,42.36816928644267],[-71.11891726171775,42.36816764273732],[-71.1189043060597,42.36816851450352],[-71.1188861222895,42.36816662487534],[-71.11887778539183,42.36816842663223],[-71.11886791768808,42.36816839393587],[-71.1188512824735,42.36816559474317],[-71.11883433338804,42.36816370829784],[-71.11882847856806,42.36816300377862],[-71.1188226265152,42.3681618401226],[-71.11881769817074,42.36816091000053],[-71.11880937229674,42.36816088240868],[-71.11878284044239,42.36816285253131],[-71.11876123968143,42.36816529633679],[-71.11875259441467,42.36816709706259],[-71.11874456726264,42.36816867026364],[-71.11874085997654,42.36816980223844],[-71.11873715407411,42.3681707046449],[-71.1187300354724,42.36817502582729],[-71.11871673301255,42.36818207058142],[-71.11871425506394,42.36818389084745],[-71.11871177710975,42.36818571201369],[-71.11871053261331,42.36818753816897],[-71.11870806017276,42.36818844466327],[-71.11870589747647,42.36818912351173],[-71.11870219157784,42.36819002501677],[-71.11870002611899,42.36819116210133],[-71.11869725082636,42.36819115290128],[-71.11869354630601,42.36819182573807],[-71.11869138774503,42.36819181858235],[-71.11868769148499,42.36819112121169],[-71.11868553292406,42.36819111405585],[-71.11868183253391,42.36819110178866],[-71.11867690557864,42.36818994119206],[-71.11866949376952,42.3681917460007],[-71.1186623958349,42.36819263805958],[-71.11864201749836,42.36819691437548],[-71.11863244160578,42.3681996275972],[-71.1186228700189,42.36820142524193],[-71.11861422595729,42.36820322596131],[-71.11860590007778,42.36820319835473],[-71.1185975741983,42.36820317074755],[-71.11858063062064,42.36820037049326],[-71.11856522749491,42.36819780401736],[-71.11854706286813,42.36819294165601],[-71.11854213315162,42.36819223928984],[-71.11853628264004,42.36819061917958],[-71.11853167491573,42.36818785982797],[-71.11852552967065,42.36818417978651],[-71.11851232510249,42.36817498999148],[-71.1184463576883,42.36811966110125],[-71.11844422104065,42.36811622302513],[-71.11843962192776,42.36811163521817],[-71.11843595586866,42.36810613401548],[-71.11843228169337,42.36810177704881],[-71.11842892691983,42.36809559176115],[-71.11842618214563,42.36809032318715],[-71.11842158287594,42.3680859631512],[-71.11841944208679,42.36808321197874],[-71.11841822517427,42.36808046477144],[-71.11841455531122,42.36807519222793],[-71.11841212701066,42.36806878224102],[-71.1184109307974,42.36806260411375],[-71.11840730077216,42.36805092977108],[-71.11839787649187,42.36802871636759],[-71.11838145104154,42.36799115957452],[-71.1183634770544,42.367954512331],[-71.11837091075381,42.36794927752634],[-71.11836226980488,42.36795016444715],[-71.11835496564026,42.36793413223302],[-71.11834825750105,42.36792153388491],[-71.11833603055059,42.36790365595481],[-71.11832071995808,42.36788576869122],[-71.1183051065296,42.36786696573034],[-71.11828856663794,42.36784838836526],[-71.11828122109812,42.36783921708582],[-71.11827419772487,42.36782776014945],[-71.11826594641833,42.36781538444711],[-71.11824788681407,42.36779314327121],[-71.11823472101821,42.36777754983967],[-71.11822278592336,42.36776241783656],[-71.11817292433305,42.3676957077097],[-71.11815398388063,42.36766614607186],[-71.11813472403843,42.36763841275089],[-71.11811698945566,42.36761342946167],[-71.11809893548954,42.36759027268916],[-71.11808947426867,42.36757400552223],[-71.11808339261107,42.3675598085294],[-71.11807669424171,42.36754560768791],[-71.11806814706951,42.36753117383501],[-71.11805960405448,42.3675160521769],[-71.11804926471598,42.36749200722261],[-71.11804562236256,42.36748239087898],[-71.1180407493227,42.36747231310322],[-71.11803374259898,42.36745811303546],[-71.11802643183678,42.36744299546665],[-71.11802187666476,42.36743154671009],[-71.11801701468023,42.36741963958919],[-71.11801213336392,42.3674109338201],[-71.11800756317287,42.36740177173887],[-71.11797676803535,42.36734381439727],[-71.11796155849864,42.36730923521939],[-71.11795519063797,42.36729137760636],[-71.11794727683046,42.36727420087573],[-71.11793504889903,42.36725632379661],[-71.1179280049395,42.36724829595747],[-71.11792555583352,42.36724554465125],[-71.1179234138804,42.36724279346501],[-71.11792064829858,42.36724118357013],[-71.1179185160204,42.36723683080746],[-71.11791761303238,42.3672331699466],[-71.11791609747151,42.36722882013278],[-71.11791490684777,42.36722172732717],[-71.11791495658068,42.36721349437848],[-71.11791498282572,42.36720914968625],[-71.11791408829893,42.36720388724497],[-71.11791288247593,42.36719931068766],[-71.11791044857262,42.36719404313274],[-71.1179080148425,42.36718854600539],[-71.11790557005654,42.36718487912241],[-71.11789976369099,42.36717617027502],[-71.11789610203367,42.3671697561784],[-71.11789246542054,42.36715899558486],[-71.11788759640682,42.36714846046991],[-71.11788302780162,42.36713884104313],[-71.11787815602814,42.36712876326374],[-71.11787118806032,42.36710816048053],[-71.11786390483991,42.36708869821189],[-71.11785235983514,42.36706007577938],[-71.11784378929839,42.36704952836426],[-71.11784012765958,42.36704311336544],[-71.11783676625966,42.36703784272706],[-71.11783433375051,42.36703234650231],[-71.11782371798901,42.36700304203637],[-71.11781920036321,42.36698518966171],[-71.11781560660017,42.36696734125682],[-71.11781446987806,42.36695133039682],[-71.11781241067304,42.36693508779893],[-71.11780971297807,42.36692204449603],[-71.11779823987837,42.36688153131958],[-71.11778734879977,42.36684696556374],[-71.11778034773485,42.3668318499062],[-71.11777458149166,42.36681650967893],[-71.1177722002918,42.36680232406334],[-71.11777100416496,42.36679614592765],[-71.11777102075236,42.36679340101102],[-71.11777104147437,42.3667899718908],[-71.1177686176071,42.36678264631204],[-71.11776253057562,42.36676936307157],[-71.11775799225026,42.36675494161434],[-71.11775437193135,42.36674189434315],[-71.11775106583066,42.36672747698054],[-71.11773898022714,42.36668627664304],[-71.11772257625211,42.36664528882361],[-71.11772013564388,42.36664093593209],[-71.11771799372016,42.36663818474169],[-71.11771676995586,42.36663658086624],[-71.11771431415151,42.36663474242273],[-71.11771216791409,42.36663290590837],[-71.11770940253231,42.36663106733613],[-71.11770724955295,42.36663014548977],[-71.11770478683336,42.36662945128656],[-71.11770232687799,42.36662829974718],[-71.117698636254,42.36662668677206],[-71.1176961818218,42.36662462146068],[-71.11769402868016,42.36662392738587],[-71.1176912619172,42.36662231748124],[-71.11768911584356,42.36662025319464],[-71.11768665312999,42.36661955809078],[-71.1176854418115,42.36661589530235],[-71.11768329988469,42.36661314501153],[-71.1176817802138,42.36660948029787],[-71.11767841868195,42.36660443832644],[-71.11767477367169,42.36659527930522],[-71.11767237176981,42.36658452370749],[-71.11766904479494,42.36657376503471],[-71.11766669541846,42.36655432005121],[-71.11766324928338,42.36651246150333],[-71.11766134942316,42.36646946473168],[-71.1176623448202,42.3664580344084],[-71.11766240978429,42.36644728701016],[-71.11766158578243,42.36643036249552],[-71.11766045878444,42.36641275095568],[-71.11766055692209,42.36639651552416],[-71.1176606481486,42.3663814234328],[-71.11765830569303,42.36636083510806],[-71.11765591469249,42.36634847883708],[-71.11765228922543,42.36633588888949],[-71.11764865805705,42.36632444318635],[-71.11764197909436,42.36630727053512],[-71.11763832597559,42.36629925574867],[-71.11763467270031,42.36629146783358],[-71.11763347797344,42.36628506192795],[-71.11763228325766,42.36627865422179],[-71.11763231919797,42.36627270885233],[-71.11763236757913,42.36626470547034],[-71.11763238831392,42.36626127544952],[-71.11763365491518,42.36625579151647],[-71.1176349159815,42.36625122315589],[-71.11763587423145,42.3662457372975],[-71.11763591016596,42.36623979282825],[-71.11763593228829,42.36623613323904],[-71.11763502380707,42.36623338614713],[-71.1176338332282,42.36622629423724],[-71.11763140370083,42.36622011199896],[-71.11763019792791,42.36621553363714],[-71.1176289852326,42.36621210041613],[-71.11762901149687,42.36620775572298],[-71.11762904467824,42.36620226678928],[-71.1176303168079,42.36619586818399],[-71.11763281545001,42.36619061701931],[-71.11763535141397,42.3661791918169],[-71.11763632486267,42.36617119151],[-71.11763806016407,42.36613918310658],[-71.11763579928073,42.36610510336442],[-71.11763582139758,42.3661014446754],[-71.11762459866907,42.36596854854889],[-71.11762013370296,42.36594200677544],[-71.1176097006996,42.36588251809658],[-71.11759889301582,42.36583400265804],[-71.11758956352034,42.36579601197595],[-71.11757900337977,42.36575756075599],[-71.11757695274309,42.36573971656863],[-71.11757335618559,42.36572255415947],[-71.11755569560657,42.36563445645535],[-71.1175508960649,42.36561225924596],[-71.11754516178878,42.36559165963691],[-71.11754163437992,42.36556306382158],[-71.11753815951471,42.36552577861843],[-71.11753705054166,42.36550519438856],[-71.1175385535677,42.36546060821124],[-71.11754025019083,42.3654350016107],[-71.11754248607919,42.36542220427475],[-71.11755226483882,42.36538587693131],[-71.11756111990292,42.36534931964334],[-71.1175649652991,42.36532532089544],[-71.11756600924753,42.3653056594145],[-71.11756616409716,42.36528004768633],[-71.11756554181834,42.36522996629488],[-71.11756411204736,42.36521143905163],[-71.11756080728392,42.36519702168265],[-71.11755839992428,42.36518718075162],[-71.11755475501306,42.36517802172366],[-71.11755139909782,42.36517206507447],[-71.1175391728986,42.36515418794881],[-71.11752877054123,42.36514066166819],[-71.11752386319688,42.3651363005681],[-71.11752019617047,42.36513080022878],[-71.11751683058739,42.36512644335502],[-71.11751440249103,42.36512003334488],[-71.11751318982843,42.36511659922156],[-71.11751320503841,42.36511408387229],[-71.11751229657868,42.36511133677867],[-71.11751231317142,42.36510859276132],[-71.11751233529506,42.36510493407145],[-71.1175123518878,42.36510219005407],[-71.1175155142103,42.36508916622554],[-71.11752559298294,42.36505421281603],[-71.11753689685551,42.36502063461519],[-71.11754513517697,42.3649840752748],[-71.1175540233816,42.36494202814858],[-71.11756008526109,42.364908434315],[-71.1175626820186,42.36488694771333],[-71.11756410482491,42.36485562428089],[-71.11756521236771,42.36482544316364],[-71.11756812300494,42.36480304201391],[-71.11757040449363,42.36478269772699],[-71.11757170701577,42.36477126842132],[-71.11757177199352,42.36476052101906],[-71.11757660736832,42.3647257788413],[-71.1175805190739,42.36469080491921],[-71.1175857802956,42.36463662697386],[-71.11758471279626,42.36460918269609],[-71.11758251697209,42.36456435553838],[-71.11757785160263,42.36451997751463],[-71.11757454687219,42.3645055601438],[-71.1175708895554,42.36449845912827],[-71.11756723776949,42.36449044344003],[-71.11756357492433,42.36448425709685],[-71.11755898289441,42.36447875278185],[-71.11754703751754,42.36446545094282],[-71.1175292556745,42.3644484691298],[-71.11751944247656,42.36443951825988],[-71.11751147521828,42.36443125954611],[-71.11750658452301,42.36442415442678],[-71.117505393998,42.36441706161241],[-71.11750297008371,42.36440996469627],[-71.11750302815904,42.36440036063394],[-71.11750308899985,42.36439029923527],[-71.11750228840532,42.36436971602524],[-71.11750082133798,42.36435736281778],[-71.11749961422179,42.36435301402108],[-71.1174974889783,42.36434751880729],[-71.11749596383612,42.36434476966218],[-71.1174901702328,42.36433400277517],[-71.11748806988115,42.36432439153437],[-71.11748442917828,42.36431454649793],[-71.1174819886764,42.36431019359911],[-71.11747863004835,42.3643046942829],[-71.11747222390656,42.36429323933943],[-71.11747010419892,42.36428682945238],[-71.11743386190757,42.36411017353797],[-71.11743182104622,42.36409072866424],[-71.11742911508399,42.36407928602522],[-71.11742702719175,42.36406761766955],[-71.11742833111353,42.36405595879524],[-71.11742932667836,42.36404430069585],[-71.11743093755634,42.36403287241556],[-71.11743439851224,42.36402144938864],[-71.11743597895776,42.36401505270823],[-71.11743817610471,42.36400865627845],[-71.11744191220149,42.36400272411355],[-71.11744690105108,42.36399359289588],[-71.11744908021262,42.36399017005237],[-71.11745157325096,42.36398583356175],[-71.11745377592153,42.36397852335922],[-71.117460114306,42.36395018901688],[-71.11747489556909,42.36385145153898],[-71.11747777853151,42.36383362465056],[-71.11747881833945,42.36381464826804],[-71.11748762345113,42.36378632212715],[-71.11750110902773,42.36374886463972],[-71.11751429039251,42.36371072012043],[-71.11752687303357,42.3636695999618],[-71.11753884172535,42.36362802221491],[-71.11754541096126,42.36361249340954],[-71.11755353572569,42.3635946848488],[-71.11756227441265,42.36357733477413],[-71.11756822694556,42.36356180481698],[-71.11757417118621,42.36354764596836],[-71.11758289603661,42.36353258257393],[-71.11759039304035,42.36351660040513],[-71.11759509836483,42.36350335302758],[-71.1175985551041,42.36349261779951],[-71.11760108682441,42.36348187769529],[-71.117608286528,42.36346406605463],[-71.11761483637733,42.36345173859954],[-71.11762077091566,42.36343918132587],[-71.11762297216535,42.36343209978738],[-71.11762548313943,42.36342479060581],[-71.1176280286698,42.36341176471903],[-71.11762810469477,42.36339918796781],[-71.11762818624879,42.36338569654373],[-71.11762703305112,42.36337242968747],[-71.11762835903262,42.36335711301805],[-71.11762845579152,42.36334110624357],[-71.11762858434253,42.36331984010022],[-71.11762397985297,42.36326540066467],[-71.1176207124996,42.3632448092494],[-71.11761261812137,42.36320659397931],[-71.11760545015927,42.3631681531156],[-71.11759504528037,42.36310409013362],[-71.11759391421845,42.36308716368438],[-71.11759310255174,42.36306840981474],[-71.11759322143733,42.3630487443477],[-71.11759055833939,42.36303021389519],[-71.1175861060367,42.36300161408891],[-71.11758133295032,42.36297507217135],[-71.11757927272068,42.36295882955074],[-71.11757659442912,42.36294281354775],[-71.11757450655263,42.36293114429151],[-71.11757211033679,42.36291947400989],[-71.11757010264522,42.36289454199619],[-71.11756747827545,42.3628696079318],[-71.11756541667032,42.36285359397874],[-71.11756397312816,42.36283735340795],[-71.11756196958989,42.36281173538895],[-71.1175596646263,42.36278497300331],[-71.1175573057466,42.36276712867864],[-71.11755494133811,42.36275019902683],[-71.11755164638315,42.36273418097196],[-71.11754723144773,42.36269940711981],[-71.11754374014035,42.36266486681199],[-71.11753771991627,42.36264060747173],[-71.11753047049544,42.36261565712459],[-71.11752382669094,42.36259253907379],[-71.11752116640329,42.36257355038104],[-71.11751571585755,42.36250607376567],[-71.1175102654922,42.36243836847682],[-71.11749750457888,42.362356232484],[-71.11749513467083,42.36234021750244],[-71.1174915369461,42.36232328374586],[-71.11748920990605,42.36230018004802],[-71.11748719258752,42.36227684870723],[-71.11748240577504,42.36225259256359],[-71.11747791900082,42.36222971035495],[-71.1174780323895,42.3622109595574],[-71.11747690689513,42.36219312023106],[-71.11746977094064,42.36214941907979],[-71.11746294332669,42.36210571985342],[-71.1174615039765,42.36208879327379],[-71.1174606868304,42.3620709540721],[-71.11745019653972,42.3620210684942],[-71.11744094099053,42.36197095834897],[-71.11741552787177,42.36183915823752],[-71.11741195768812,42.36181787978322],[-71.11740932374417,42.36179454638717],[-71.11740240355122,42.36176616702865],[-71.11739516672085,42.36173916045401],[-71.11738730372642,42.36171352203244],[-71.11738137062068,42.36167508524891],[-71.11737907683452,42.36164649440678],[-71.1173736057784,42.36158244689484],[-71.1173678319273,42.361517484583],[-71.11735868856195,42.36144885139285],[-71.11735421018335,42.36142459806576],[-71.11734123560993,42.36137744827962],[-71.11733637404943,42.36136576978613],[-71.11733058627932,42.36135408821064],[-71.1173232501019,42.36134331617446],[-71.11731013274165,42.36132017656437],[-71.11730221034746,42.36130437087184],[-71.11729367648208,42.36128810669841],[-71.11728054824583,42.36126656775878],[-71.11726738975048,42.361249830848],[-71.11725668512049,42.36123561840422],[-71.11724382113908,42.36122116829964],[-71.11722327775126,42.36120212007719],[-71.1172113066084,42.36119339066354],[-71.11721040669035,42.3611890428829],[-71.11720888285063,42.36118629373609],[-71.11720772009484,42.3611746275472],[-71.11718797940858,42.3611236818923]]]],"type":"MultiPolygon"} +},{ + "id": 1108711439, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000064, + "geom:area_square_m":582000.514819, + "geom:bbox":"-71.0886909537,42.3320142511,-71.0750231104,42.3416520437", + "geom:latitude":42.336609, + "geom:longitude":-71.0819, + "iso:country":"US", + "lbl:latitude":42.333168, + "lbl:longitude":-71.08017, + "lbl:max_zoom":18.0, + "mps:latitude":42.336681, + "mps:longitude":-71.081796, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.336681, + "reversegeo:longitude":-71.081796, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85846283, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"040d28129a11d67401091b6fd1cb48d3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711439, + "neighbourhood_id":85846283, + "region_id":85688645 + } + ], + "wof:id":1108711439, + "wof:lastmodified":1566624132, + "wof:name":"Lower Roxbury", + "wof:parent_id":85846283, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891277 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08869095368476, + 42.3320142510665, + -71.07502311043693, + 42.34165204368179 +], + "geometry": {"coordinates":[[[[-71.07502311043693,42.33486708587326],[-71.07598532203667,42.33417184376449],[-71.07931286469648,42.3320142510665],[-71.08094777299816,42.33285840072296],[-71.08135976831333,42.33310559791207],[-71.08180472325371,42.3333637816429],[-71.08276055238491,42.33390761545892],[-71.08356256993176,42.33433059731583],[-71.08402840054374,42.33452399816318],[-71.08453487887556,42.33469864646405],[-71.0862377928449,42.33530015962418],[-71.08656946971735,42.33545285740347],[-71.08688564552338,42.3356329100169],[-71.08731996720608,42.33595660549302],[-71.08869095368476,42.33719049332382],[-71.08769103181658,42.3380126010596],[-71.08765875736,42.33803913488604],[-71.08701843225339,42.33856550034191],[-71.08667937501951,42.33884421092489],[-71.08655552727951,42.33894601459762],[-71.08652908498819,42.33896774980961],[-71.08626290333828,42.33918518979446],[-71.08606051045959,42.33935052031195],[-71.08602628491194,42.33937847811838],[-71.08589663797409,42.33948438263711],[-71.08589660380798,42.33948441132344],[-71.08577459388648,42.33958407717188],[-71.08572112193521,42.33962775578035],[-71.08559858561665,42.3397278516847],[-71.08559289906509,42.3397330402827],[-71.08558666681603,42.33973872567568],[-71.08554494670494,42.33977678912007],[-71.08546682665762,42.3398480618599],[-71.08541914948076,42.33988960501868],[-71.08541149700415,42.3398962738024],[-71.08537661049971,42.33992667242565],[-71.0853061246204,42.33998809097186],[-71.08518382241199,42.3400946594809],[-71.08518157424858,42.34009661940971],[-71.08516252471706,42.34011321779879],[-71.08515497959388,42.34011979242189],[-71.08515336907102,42.34012111454265],[-71.08509834894136,42.3401662808592],[-71.08507550876634,42.34018502985829],[-71.08498311204794,42.340260879148],[-71.08492849675447,42.34030571193516],[-71.08492543683757,42.340308024544],[-71.08490942056783,42.34032228407732],[-71.08487883205514,42.34034951643085],[-71.084878740505,42.34034959802693],[-71.08486649605591,42.34036049957619],[-71.08485027468625,42.34037494202037],[-71.08484358912399,42.34038089402313],[-71.08484345485309,42.34038101327724],[-71.0848431472489,42.3403812867558],[-71.08481045913122,42.34041038952024],[-71.08368231606968,42.341367654341],[-71.08342166837383,42.34156693083571],[-71.08335742300594,42.34161371312485],[-71.08330641242122,42.34165204368179],[-71.08314120152259,42.3415280353842],[-71.08303222304008,42.34146028301461],[-71.08234436217842,42.34101053440045],[-71.08230826897839,42.34098607917011],[-71.08217505994766,42.34089136420106],[-71.08217094593654,42.34088843950374],[-71.08201020504734,42.34077747842941],[-71.08200230573313,42.34077202544619],[-71.08199672060492,42.34076823111288],[-71.08195548633614,42.34074022162797],[-71.08194753692652,42.34073482157601],[-71.0819470705935,42.34073450477786],[-71.08193844469471,42.3407282694946],[-71.08180489571936,42.34063172345608],[-71.08175420579322,42.34059507810495],[-71.08174754497156,42.34059026251509],[-71.0817465171032,42.34058952863833],[-71.08163265517069,42.34050814022074],[-71.08138676172882,42.34033237678096],[-71.08129524118003,42.34024191158363],[-71.08128533681588,42.34023212173886],[-71.08103189724518,42.33998121588732],[-71.08069748726024,42.33965014467535],[-71.08064883373272,42.33960197709625],[-71.08064255854634,42.33959576469197],[-71.08064230658003,42.33959551439169],[-71.08063601210441,42.33958928301053],[-71.0806232870365,42.33957630208204],[-71.08051006588363,42.33943920021472],[-71.08045544129635,42.33938292883148],[-71.08035767084118,42.3392903576739],[-71.08034533551218,42.33927937678693],[-71.08027247929887,42.33921452739203],[-71.08015709482522,42.33911672406909],[-71.08013703090269,42.33909931655133],[-71.08011106812147,42.33907679002575],[-71.0801074146132,42.33907362655618],[-71.07981088759449,42.3388169364105],[-71.07976352144021,42.33877593318163],[-71.07968017566442,42.33870761674063],[-71.07865476015458,42.33786444401839],[-71.0785183562828,42.33775527858747],[-71.07851776007537,42.33775479024315],[-71.07851036061736,42.33774872484619],[-71.07821667192404,42.33751159345325],[-71.07802377622555,42.33735584242138],[-71.07736733905406,42.33682580403444],[-71.07736120723591,42.33682056248899],[-71.07734863352393,42.33680981267042],[-71.07734122757424,42.3368034806853],[-71.07729583383018,42.33676540511554],[-71.07728561668328,42.33675683546339],[-71.07728431345221,42.33675574131593],[-71.07701533921292,42.33652961280353],[-71.07698870168214,42.33650778259821],[-71.07695908102504,42.33648293622819],[-71.07694043991017,42.33646732315631],[-71.07664026352421,42.3362158985936],[-71.07662741588764,42.33620513778192],[-71.07661849723991,42.33619766760823],[-71.07650723832607,42.33610826104963],[-71.07650561858534,42.33610695955984],[-71.07648127663113,42.3360873983283],[-71.07525023651534,42.33510352291028],[-71.07524260130295,42.33509742131474],[-71.07521329136067,42.33506191704556],[-71.0751223815098,42.33495179560104],[-71.07511126228962,42.33493832661539],[-71.07502311043693,42.33486708587326]]]],"type":"MultiPolygon"} +},{ + "id": 1108711441, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000043, + "geom:area_square_m":389341.010017, + "geom:bbox":"-71.0457177105,42.3662852748,-71.0354171659,42.3763955875", + "geom:latitude":42.371629, + "geom:longitude":-71.040567, + "iso:country":"US", + "lbl:latitude":42.368724, + "lbl:longitude":-71.039488, + "lbl:max_zoom":18.0, + "mps:latitude":42.371186, + "mps:longitude":-71.040648, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Maverick Square" + ], + "name:eng_x_variant":[ + "Maverick Sq" + ], + "reversegeo:latitude":42.371186, + "reversegeo:longitude":-71.040648, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815995, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6794181" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f58836eafdca93b72d0e5e363d581137", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711441, + "neighbourhood_id":85815995, + "region_id":85688645 + } + ], + "wof:id":1108711441, + "wof:lastmodified":1566624133, + "wof:name":"Maverick Sq", + "wof:parent_id":85815995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891279 + ], + "wof:tags":[] +}, + "bbox": [ + -71.04571771052666, + 42.36628527476141, + -71.0354171658769, + 42.37639558749954 +], + "geometry": {"coordinates":[[[[-71.04116166384806,42.37639558749954],[-71.03541716587689,42.37278336433226],[-71.03548000000001,42.372728],[-71.03589599999999,42.37237],[-71.036145,42.372157],[-71.03716799999999,42.371284],[-71.037781,42.37076],[-71.038083,42.370502],[-71.039348,42.369122],[-71.039592,42.368808],[-71.04085499999999,42.367488],[-71.04179169104324,42.36628527476141],[-71.0417951542006,42.36628865016338],[-71.0418058457394,42.36629390633407],[-71.04181542569118,42.36629943356444],[-71.04182613281576,42.36630304136437],[-71.0418368362734,42.36630665274986],[-71.04185382471283,42.36631111113356],[-71.04187044653401,42.36631556715419],[-71.04188743972377,42.36631920268678],[-71.04190297457892,42.36632036291328],[-71.04191962576857,42.3663204292299],[-71.04193553641977,42.36632049259492],[-71.04195959487777,42.36631949005113],[-71.04198363864282,42.36632068415123],[-71.04201838555885,42.36632603698994],[-71.04203501326029,42.36632884457921],[-71.04205313601669,42.36633056606689],[-71.04207717859329,42.36633175744184],[-71.04208902664479,42.36633070895844],[-71.04210012072237,42.36633184877797],[-71.04211417054491,42.3663335504402],[-71.04212747187249,42.36633634837514],[-71.04213965400898,42.36633996471836],[-71.04215146356336,42.36634440244218],[-71.04216215558171,42.36634993316989],[-71.04217321742432,42.36635519168046],[-71.04218133035916,42.36635961468705],[-71.04218980628065,42.36636403913783],[-71.04219829180083,42.36636764076118],[-71.0422078881501,42.36637124410431],[-71.04221747963147,42.36637484922775],[-71.04222821137883,42.36637489193995],[-71.04223783231747,42.36637493023026],[-71.04224856406481,42.36637497294054],[-71.04226299960641,42.36637420752461],[-71.04227853647548,42.36637509221964],[-71.04229185094812,42.36637624355751],[-71.04230404226968,42.36637876066578],[-71.04230995498069,42.36637988434824],[-71.0423147588894,42.36638072632897],[-71.0423195513447,42.36638348678175],[-71.04232547201654,42.36638351034082],[-71.04233026752446,42.36638517785327],[-71.04233505755276,42.36638793829575],[-71.04233985669676,42.36638960672264],[-71.0423435383448,42.36639236275449],[-71.04234832834817,42.36639512679749],[-71.04235163727316,42.36639788494725],[-71.04235531294269,42.36640146742111],[-71.0423589965657,42.36640395067251],[-71.04235895089258,42.36641026332367],[-71.04235778969016,42.36641739170046],[-71.04235626889742,42.3664228747171],[-71.04235286024853,42.36643356380112],[-71.04234797493322,42.36644397242112],[-71.04234160656902,42.36645464702747],[-71.04233449764297,42.36646532138764],[-71.04232702805972,42.36647516874642],[-71.04231881669367,42.36648501675417],[-71.0423102405807,42.36649376405598],[-71.0423042742394,42.36650005044642],[-71.04229831505216,42.36650551580053],[-71.04229198041865,42.36651152703666],[-71.04228491284607,42.3665169879794],[-71.0422823209533,42.36651697766509],[-71.0422801005449,42.36651696882904],[-71.04227750390514,42.36651778226103],[-71.04227639430795,42.3665177778454],[-71.04227417389956,42.36651776900924],[-71.04233025897723,42.36654021854454],[-71.0417652249253,42.36725252801791],[-71.04212558818536,42.36741449196973],[-71.04213039093663,42.36741533665393],[-71.04228377596677,42.3673382899437],[-71.04261805444216,42.3671159769096],[-71.04271091887254,42.36706667716162],[-71.04277730412653,42.36704636044614],[-71.04284837534583,42.36699230955329],[-71.04288103471106,42.36697899262548],[-71.04291247583892,42.36698103789328],[-71.04294335743366,42.36700860144298],[-71.0428889051562,42.36706738464323],[-71.04289076907244,42.36711706103601],[-71.04286409955652,42.36717156031825],[-71.04291488647802,42.36726149312847],[-71.04272104876613,42.36750851390617],[-71.0428013473916,42.36755960134602],[-71.04271731732723,42.36766628743763],[-71.04266913157662,42.36772838329895],[-71.0426579345183,42.36774178640488],[-71.04263366873398,42.36777105196469],[-71.04260940536167,42.36780031662853],[-71.04256235600775,42.36785885361668],[-71.04255638360526,42.36786596375953],[-71.04250895473615,42.3679255948685],[-71.04248579964876,42.36795486481412],[-71.04246153735158,42.36798412945039],[-71.0424566804883,42.36799042296121],[-71.04245182483811,42.36799671647666],[-71.04240587887647,42.36805607885266],[-71.04235845930549,42.36811488887098],[-71.04235622451228,42.36811652480846],[-71.04230990256121,42.36817698580308],[-71.04228600794318,42.36820625276488],[-71.04226285265639,42.36823552176349],[-71.04224566308919,42.3682587789579],[-71.04222773969596,42.36828093307543],[-71.04222625139724,42.36828175091718],[-71.0422288373875,42.3682825867745],[-71.04225982303269,42.36829615501123],[-71.04227680608166,42.36830143617139],[-71.04229228738673,42.36830972912371],[-71.04229487461262,42.36831056228355],[-71.04229337241171,42.36831330128872],[-71.04228850955836,42.36832041673267],[-71.04228364559259,42.3683283568372],[-71.04227878154254,42.36833546957507],[-71.04227281500488,42.36834175866201],[-71.04226574205742,42.36834776605653],[-71.04223773100827,42.36838332855598],[-71.04205807859665,42.36861256809529],[-71.04205694423943,42.36861530766144],[-71.04205953026063,42.36861614082169],[-71.04231079418344,42.36871867373889],[-71.04234929801123,42.3687160819593],[-71.04238184718005,42.36871813357715],[-71.04241776144984,42.36871553147222],[-71.04244659831095,42.36871921403271],[-71.0424876154881,42.36872733484549],[-71.04259775696512,42.36859248818974],[-71.04260352185372,42.36861391459563],[-71.04262641992833,42.36862004478989],[-71.04264930215629,42.36862836712135],[-71.04267070765945,42.36863641078918],[-71.0426924683661,42.36864637438196],[-71.04271386197635,42.36865606462379],[-71.04272343885094,42.36866241372584],[-71.04273300490955,42.36866958744927],[-71.04274257111145,42.36867758133606],[-71.04275102996738,42.36868475065641],[-71.04278819447208,42.36871425952739],[-71.04279887612964,42.36872061481507],[-71.04279997553363,42.36872253860204],[-71.04280219480545,42.36872254742322],[-71.04280366280952,42.36872420168816],[-71.04287005707963,42.36865147100569],[-71.04293500514791,42.36867670043247],[-71.04279539918349,42.36884353461314],[-71.04288757312237,42.36889027666043],[-71.04284386769754,42.36894717771023],[-71.04297216590068,42.36901354641701],[-71.04299043253297,42.36899496139785],[-71.04313398864916,42.36904986503915],[-71.04315598023594,42.36902772514183],[-71.0432505064564,42.36905663700379],[-71.04312091668868,42.36921994529181],[-71.04309550721878,42.36925386989653],[-71.04305291454781,42.36931050445431],[-71.0430517802276,42.3693132431296],[-71.04305399049697,42.36931517312743],[-71.04307575820488,42.36932404012047],[-71.04343360874425,42.36947693654827],[-71.04363263358086,42.36922911238268],[-71.04356549355266,42.36920030681198],[-71.04360209194945,42.36915407543156],[-71.04378285413196,42.3692324505724],[-71.04374772266902,42.36928033355659],[-71.04368537402648,42.36925429204368],[-71.0434926297677,42.36950296498948],[-71.0438999863711,42.36966757921897],[-71.0439284079513,42.36967757168576],[-71.04394428900486,42.36968202536239],[-71.0439586924289,42.36968564761332],[-71.04397420913676,42.36968927607671],[-71.04398973298643,42.36969208260231],[-71.04400636878064,42.36969407066957],[-71.04402227677866,42.36969495659628],[-71.04403412467549,42.36969418069798],[-71.04404745328597,42.3696931351794],[-71.04405929997458,42.36969235837338],[-71.0440715216628,42.36969076108855],[-71.04408338341301,42.36968806312276],[-71.04409673939442,42.3696837253495],[-71.04411122116301,42.36967664795529],[-71.04412310145321,42.3696712086784],[-71.04414388163543,42.36966333247751],[-71.04416429395179,42.36965545481512],[-71.04418951941433,42.36964650057022],[-71.04419692276142,42.36964652990705],[-71.04420507490326,42.36964491648195],[-71.04421358790235,42.36964495021474],[-71.04422210199415,42.36964415838609],[-71.04423023632746,42.36964501618238],[-71.04423874811253,42.3696450499085],[-71.0442461455368,42.36964590118267],[-71.0442542786696,42.36964675717196],[-71.04426166576518,42.36964870495641],[-71.04427717776022,42.36965315712481],[-71.0442926826148,42.3696584321271],[-71.04430817591017,42.36966480633456],[-71.04432035774046,42.36966924530412],[-71.04433216015026,42.36967478202237],[-71.04434432451457,42.36968114033665],[-71.04435501455966,42.36968721822127],[-71.04436569897355,42.36969357247137],[-71.04437674303134,42.36970157477388],[-71.04438482523557,42.36970983903138],[-71.04438849878457,42.36971342142796],[-71.04439216883489,42.36971782667484],[-71.04439435652132,42.36972222514983],[-71.04439580483719,42.36972662159651],[-71.04439799494584,42.36973102098128],[-71.04439907222198,42.36973568874588],[-71.04440051811032,42.36974008518286],[-71.04439561113267,42.36975351246535],[-71.04438923806113,42.36976501092293],[-71.04438211724077,42.36977733288374],[-71.04432983670972,42.36984325652573],[-71.04427641780249,42.36991247249188],[-71.04421968169558,42.36998002505877],[-71.04416518347512,42.37004566704928],[-71.0441383069022,42.37007766664682],[-71.04411032185574,42.37010966184474],[-71.04406065562563,42.37017175689041],[-71.04402922908169,42.37021882907188],[-71.04401568274429,42.37025005951692],[-71.0440010334476,42.37028018543455],[-71.0439961449257,42.37029086689049],[-71.04399501547211,42.37029360739422],[-71.04399277042231,42.37029716633953],[-71.04399126474337,42.37030072821589],[-71.04399012694167,42.37030428975006],[-71.04399010121232,42.37030785839382],[-71.04399007548949,42.37031142613726],[-71.04399004383409,42.37031581672135],[-71.04399001813719,42.37031938086375],[-71.04398999241435,42.37032294860717],[-71.04399108471632,42.37032569791868],[-71.04399253895045,42.37032927152919],[-71.04399363081713,42.37033174445023],[-71.04399471476525,42.37033531569248],[-71.043996916732,42.37033806940301],[-71.04400317398481,42.37034248491808],[-71.04401016634694,42.37034799989895],[-71.04401604980471,42.37035323679566],[-71.04409646552868,42.37038922949873],[-71.04413003630007,42.37040363032963],[-71.04416471673298,42.37041803824891],[-71.04424991588769,42.3704576158441],[-71.04433729021235,42.37050351571857],[-71.04437305123349,42.3705223158633],[-71.04441029101726,42.37054112275401],[-71.04443056917293,42.37055190570303],[-71.04445344046466,42.37056187605399],[-71.04447595060036,42.37057074571734],[-71.04448076793567,42.37056994012983],[-71.04448557568952,42.37056995916884],[-71.04448928212918,42.37056915098235],[-71.0444941085688,42.37056724977869],[-71.04449892467659,42.37056644598614],[-71.04454853470529,42.37051230728853],[-71.04458022247974,42.37047950648385],[-71.04461045611482,42.37044395223153],[-71.04462982642698,42.37042619329159],[-71.04465030884145,42.37040843604985],[-71.04465402315731,42.37040653223759],[-71.04465736402773,42.37040489613325],[-71.04466107166959,42.37040408794601],[-71.0446658932222,42.37040218851635],[-71.04466960086378,42.37040138032881],[-71.04467552191261,42.37040140376687],[-71.04468033329594,42.37040142281217],[-71.04468625191664,42.37040144624006],[-71.04469255042211,42.37040064470607],[-71.04473684069056,42.37041673621836],[-71.04478001584506,42.37043392075269],[-71.04486597451876,42.37047075771515],[-71.04494048364593,42.37050480433685],[-71.04497884039601,42.37052279169736],[-71.04497993031626,42.37052554098976],[-71.04498100170333,42.37053103518977],[-71.04498098395079,42.37053350281151],[-71.04498094446902,42.37053899081666],[-71.04498091288229,42.37054338140079],[-71.04495044371525,42.3706118637847],[-71.04493465153175,42.37064665239375],[-71.04488486327992,42.37072575916243],[-71.04484428992477,42.37081011504414],[-71.04479786942176,42.37093560987849],[-71.04477702742781,42.37100330834546],[-71.04494842543352,42.37104679345561],[-71.04494355674856,42.37105473184795],[-71.04493866360033,42.37106623888822],[-71.04493970889023,42.37107502354033],[-71.04494224296255,42.37108326490593],[-71.04494588746168,42.37109123787678],[-71.04494696904196,42.37109481000009],[-71.04494805428402,42.37109837943699],[-71.04495061826779,42.37110195742463],[-71.04495280846265,42.37110635679747],[-71.04495537594539,42.37110911103458],[-71.04495868416052,42.37111269286643],[-71.0449612457238,42.37111626994395],[-71.0449671550063,42.37111793814784],[-71.04497305637443,42.37112070647303],[-71.04498044015982,42.37112347886137],[-71.04498524323739,42.37112432252537],[-71.0449863553438,42.37112432692447],[-71.04498893786391,42.37112516000398],[-71.0449900511844,42.37112516440786],[-71.04499115296765,42.37112626621818],[-71.04498022298823,42.37115366558618],[-71.04488392581571,42.37131902598811],[-71.04488391199786,42.37132094624942],[-71.0448816586124,42.37132532804211],[-71.04571771052666,42.37152181683719],[-71.04560835228177,42.37170249507167],[-71.04485684869066,42.37143032868751],[-71.0446744381464,42.37137444969616],[-71.04467107749005,42.37137882710179],[-71.04461827210704,42.37136270366123],[-71.04462053342645,42.37135722265241],[-71.04455592653412,42.37133556430189],[-71.04455480301792,42.37133748106972],[-71.0445533099661,42.37133912178632],[-71.04455218525511,42.37134103584854],[-71.04455217337853,42.37134268513056],[-71.04455105777117,42.37134350357735],[-71.04455104395619,42.37134542203805],[-71.04454992239748,42.37134706692638],[-71.04454843102978,42.3713489795368],[-71.04454730584162,42.37135062261017],[-71.04454618704264,42.37135171563233],[-71.04454506550964,42.37135335691953],[-71.04454247235576,42.37135416861567],[-71.04454024021265,42.37135525993035],[-71.04453764705215,42.37135607252659],[-71.0445354205545,42.37135688567433],[-71.0445328296771,42.37135687541556],[-71.0445306031729,42.37135768946348],[-71.04452690382735,42.37135767481548],[-71.04452430260567,42.37135876376816],[-71.04452207260378,42.37136040066598],[-71.04451837082981,42.3713603860081],[-71.04451613762319,42.37136229928181],[-71.04451353960567,42.37136311185827],[-71.0444989697873,42.3713825364138],[-71.0444615131161,42.3714446781641],[-71.0444247867551,42.37150874671116],[-71.04442477886323,42.37150984233129],[-71.04450264965402,42.37153951183031],[-71.04462151290895,42.37158086996097],[-71.04468978539211,42.37160693439004],[-71.04474848571111,42.37162692445904],[-71.0447665645008,42.37163413169624],[-71.04485254575876,42.37166822466173],[-71.04479427856022,42.37174290711889],[-71.04477374442794,42.37176779536443],[-71.04476179235941,42.37178366606823],[-71.04474720976472,42.37180418805473],[-71.04539160921016,42.37209815730732],[-71.04536232636742,42.37215594183525],[-71.04475517200734,42.37188077831473],[-71.04455252587731,42.37180780809925],[-71.04439798427794,42.37173585092676],[-71.04398199793718,42.3717912772689],[-71.04389483259037,42.37187023811611],[-71.0439326987196,42.37195600120715],[-71.04514712011145,42.37249178908516],[-71.04506947329043,42.37258505711792],[-71.04412427577188,42.37217848369692],[-71.04390962862868,42.37248688917572],[-71.04482418578769,42.37293505704577],[-71.04466921128071,42.3731287241586],[-71.04399113923604,42.3728329699484],[-71.04363529386285,42.37286091986608],[-71.04289592894634,42.37254707944902],[-71.04269490505175,42.37245545033471],[-71.04258937414801,42.37256616778286],[-71.04257496530941,42.37256254264273],[-71.04257269308134,42.37256966929495],[-71.04247442962418,42.37269852394092],[-71.04249103806279,42.37270490012097],[-71.04238688238409,42.37283016701217],[-71.0423499827223,42.37281492597525],[-71.04233883710916,42.37282091806738],[-71.04232918020385,42.3728255467425],[-71.04231844030934,42.37282714973932],[-71.04231361483295,42.37282905265609],[-71.04230768164838,42.37283067477665],[-71.04230173456043,42.37283421805751],[-71.04229541715785,42.37283776076486],[-71.04229057624353,42.37284213221061],[-71.04228462243201,42.37284677201532],[-71.04227977908799,42.37285114345093],[-71.04227120806155,42.37285906789712],[-71.04226411948387,42.37286699734138],[-71.04225702296826,42.37287602330512],[-71.04225066429908,42.3728856022809],[-71.04224578597697,42.37289463797111],[-71.04224238291609,42.3729045041961],[-71.04223861639673,42.3729140934863],[-71.04223859058054,42.372917660327],[-71.04223856475132,42.37292122896819],[-71.04223742436245,42.37292479227377],[-71.04223592096993,42.37292835143398],[-71.04223479139948,42.3729310910185],[-71.04223365465262,42.37293465433854],[-71.04223252507545,42.37293739482337],[-71.04222990831049,42.37294095225364],[-71.04222766185327,42.37294451115754],[-71.04222283958627,42.37294613679435],[-71.04221801411096,42.37294803790654],[-71.04221318939568,42.3729496662341],[-71.04221171180582,42.3729496603538],[-71.04221060209579,42.37294965593753],[-71.04220948752926,42.37294965150191],[-71.04220837429148,42.37295046993536],[-71.04220689427339,42.37295046404533],[-71.04220578456334,42.372950459629],[-71.04220467485329,42.37295045521268],[-71.04220354881539,42.37295237104691],[-71.04220206282817,42.37295318979742],[-71.04220095311807,42.37295318538106],[-71.042200947162,42.37295400822113],[-71.04219982952131,42.3729550994244],[-71.04219871981117,42.37295509500802],[-71.04219871385507,42.37295591784809],[-71.04219870788594,42.37295674248865],[-71.04219981165305,42.3729575679446],[-71.04219980369641,42.37295866716529],[-71.04220090148793,42.37296031816206],[-71.04220200524209,42.3729611454185],[-71.04220347731035,42.37296224962903],[-71.04220458349285,42.37296307689513],[-71.04220457753684,42.37296389973518],[-71.0422056872471,42.3729639041515],[-71.0422082630633,42.3729658365186],[-71.04221046704437,42.37296831388105],[-71.04221156284235,42.37297024035809],[-71.04221302852085,42.37297189191851],[-71.04221411957717,42.37297464124043],[-71.04221522333175,42.37297546849673],[-71.04221630721825,42.37297904065384],[-71.04221629332557,42.37298096001381],[-71.04221775591111,42.37298370991395],[-71.04221773803701,42.37298617933439],[-71.04221772413784,42.37298809959464],[-71.04221770425676,42.372990846296],[-71.04221620394834,42.37299330801631],[-71.0422161900361,42.37299523007707],[-71.04221506047664,42.3729979678609],[-71.04221393883439,42.37299961182558],[-71.04221280806716,42.37300234870421],[-71.04221131853814,42.37300399210511],[-71.04221019494078,42.37300590614853],[-71.04220796115895,42.37300754568714],[-71.04220646129053,42.37301028199715],[-71.04220422994324,42.37301192064512],[-71.04220162388464,42.37301383058927],[-71.04219939850623,42.37301464459656],[-71.04219680281928,42.37301545713007],[-71.04219456705579,42.3730173703483],[-71.04219085570122,42.37301900130529],[-71.04218862710775,42.37302009168818],[-71.04218602777806,42.37302090420696],[-71.04218232237946,42.37302171232362],[-71.04217899324556,42.37302169907392],[-71.04217529137495,42.37302168434064],[-71.04217270285801,42.37302167403838],[-71.04216937482407,42.373020837929],[-71.04216567781005,42.37302082321474],[-71.04216198189603,42.37301998564097],[-71.04215977043086,42.37301887758676],[-71.04215607451707,42.37301804001282],[-71.04215386700798,42.37301638549908],[-71.0421475928497,42.37301361554687],[-71.04214167277138,42.37301359198356],[-71.04213575743587,42.37301274557502],[-71.04212984408836,42.37301162458608],[-71.04212356088607,42.37301077491214],[-71.042118749305,42.37301075575992],[-71.04211541420149,42.37301156714891],[-71.04211060262037,42.37301154799633],[-71.04210577713668,42.37301344910379],[-71.04210096434124,42.37301342994598],[-71.04209725894199,42.37301423805992],[-71.04209243587287,42.37301614097698],[-71.04209131060435,42.37301778222515],[-71.04208871613,42.37301859476106],[-71.04208759846014,42.37301968956429],[-71.0420864708762,42.37302215366694],[-71.0420849769402,42.37302406983608],[-71.04208385532019,42.37302571019844],[-71.04208272925773,42.37302762873224],[-71.042082717349,42.37302927351207],[-71.0420815877636,42.37303201399533],[-71.04208157387333,42.37303393245499],[-71.04208156193199,42.37303558173614],[-71.04208154804171,42.37303750019582],[-71.04208153016882,42.37303996871594],[-71.04208151625247,42.37304189077665],[-71.0420815043307,42.37304353735701],[-71.04208149042086,42.37304545851746],[-71.04208258821731,42.37304710861508],[-71.04208368644105,42.37304903510295],[-71.04208477627897,42.37305178442119],[-71.04208736005367,42.37305261757032],[-71.04208955962324,42.3730553686052],[-71.04209102650167,42.3730570219725],[-71.04209323566484,42.37305895108209],[-71.04209581944001,42.37305978423099],[-71.04209913113745,42.37306254149323],[-71.04210171965605,42.37306255179715],[-71.04210392715885,42.37306420721214],[-71.04210762306161,42.37306504658829],[-71.04211131103233,42.37306698158394],[-71.04211499303304,42.37306974122003],[-71.04211720054296,42.37307139573449],[-71.04212089050874,42.37307305524948],[-71.04212309006094,42.37307580898449],[-71.04212566113628,42.37307856419827],[-71.04212675219716,42.37308131262069],[-71.04212784998893,42.37308296361809],[-71.04212930771646,42.37308571349998],[-71.04213039757656,42.37308846011698],[-71.04213149182026,42.37309093666484],[-71.04213146600448,42.37309450260512],[-71.04213255828653,42.37309725013202],[-71.04213253841473,42.37309999503275],[-71.04213251854294,42.37310273993349],[-71.04213138853103,42.3731052040269],[-71.04213136866571,42.37310794802735],[-71.04213023665272,42.37311068850135],[-71.04212910708749,42.37311342628424],[-71.04212761160315,42.37311589162375],[-71.04212648202467,42.37311863120713],[-71.04212423788957,42.37312136455353],[-71.04212274837501,42.37312300525244],[-71.04212050908306,42.37312574041859],[-71.04211789704705,42.37312847500132],[-71.04211566570633,42.37313011184699],[-71.04211305962716,42.37313202358963],[-71.04210971857293,42.37313365601796],[-71.04210711845074,42.37313474492041],[-71.04210340465882,42.37313637586485],[-71.04210006835386,42.37313718454777],[-71.04209636095935,42.37313826724175],[-71.04209266151015,42.37313825251548],[-71.0420649403076,42.37313347776779],[-71.04203758622245,42.37312897816263],[-71.04197627266856,42.37311281784545],[-71.04195462482798,42.37313770295233],[-71.04199037348543,42.37315815130228],[-71.04198916640264,42.37317159230579],[-71.04201793372323,42.37318515535205],[-71.04206698047399,42.37320922176374],[-71.04208848877761,42.3732032709495],[-71.04210443613731,42.37319867093564],[-71.04212110824965,42.37319626510666],[-71.04213071707169,42.37319795268218],[-71.04213921423106,42.37319990501839],[-71.04214771456031,42.37320158728004],[-71.04215584140469,42.37320353904142],[-71.04216322961169,42.37320521417467],[-71.04217025036529,42.37320716423353],[-71.04217874111713,42.37320966661763],[-71.04218575944341,42.37321161666588],[-71.04219202523856,42.37321520944623],[-71.04219903043953,42.37321880516888],[-71.04220492592647,42.37322239647477],[-71.04221118334607,42.3732268111842],[-71.04221707884747,42.3732304006889],[-71.04217709630556,42.37328375021635],[-71.04215505478253,42.37331220073614],[-71.04213337758,42.37334147736603],[-71.04211990834708,42.37336200344855],[-71.04210790476461,42.37338418469204],[-71.04209443982393,42.3734036124366],[-71.04208847157571,42.37340990150189],[-71.04208472166809,42.37341702136097],[-71.04207986437616,42.37342331124709],[-71.04207869703626,42.37343126515049],[-71.04207716291461,42.3734383947301],[-71.04207710529282,42.37344635305102],[-71.04207706755184,42.37345156557119],[-71.04207592052562,42.37345704916377],[-71.04207476510663,42.3734633564869],[-71.04207361642563,42.37346856548486],[-71.04207098452494,42.37347404136575],[-71.04206725205158,42.37347841721423],[-71.04206389110298,42.3734827945416],[-71.04205904648083,42.37348716596246],[-71.04205531200461,42.37349181819114],[-71.04205047223773,42.37349618963093],[-71.04204563479247,42.37349973731582],[-71.04203968763343,42.37350327968235],[-71.04203374168785,42.37350682205334],[-71.04202742894081,42.37350954280091],[-71.0420203787926,42.3735119833235],[-71.04200107158744,42.37352096335649],[-71.04198396472616,42.37353242073818],[-71.04197690186821,42.37353678332344],[-71.04196835656867,42.37354113730468],[-71.04195759102643,42.37354576063381],[-71.04194572250259,42.37354928121798],[-71.04193349405544,42.37355170111549],[-71.04189975318448,42.37356062185457],[-71.0418058984186,42.3735915312796],[-71.04176732080174,42.37360372686992],[-71.04172983300883,42.37361867086825],[-71.04169974227906,42.3736347408764],[-71.04167185540373,42.37365246628517],[-71.0416078573915,42.37370023086621],[-71.04153674098947,42.37375949523539],[-71.04147973405128,42.37381277846667],[-71.04145549248032,42.37383847510213],[-71.04143493643194,42.37386611034076],[-71.04141919999701,42.37389266373624],[-71.04140346873849,42.37391866887446],[-71.04139485169586,42.37393290409294],[-71.04138402314575,42.3739460339426],[-71.04137282716222,42.37395943421345],[-71.041364653279,42.37396379143121],[-71.04135721083711,42.37396925081681],[-71.04134903936679,42.37397360984366],[-71.04132487529218,42.37398860503158],[-71.04131146647374,42.37400007615793],[-71.04129805454107,42.37401264562215],[-71.04127271259227,42.37403669300384],[-71.04125110760224,42.37405609088839],[-71.04123024922306,42.37407466528168],[-71.04119297728603,42.37411101342265],[-71.04118662783536,42.37411894754791],[-71.04118175888459,42.37412715946492],[-71.04117688108538,42.37413592142263],[-71.04117462977105,42.3741403031496],[-71.04117348145299,42.37414578492696],[-71.04117344363058,42.37415099834625],[-71.04117192254276,42.37415648223786],[-71.04117188472675,42.37416169475688],[-71.04117332617277,42.37416718866436],[-71.04117329432643,42.37417157834359],[-71.04117437099092,42.3741759733445],[-71.04117545727405,42.37417954461988],[-71.04117653071953,42.37418421599645],[-71.0411779753792,42.37418943442839],[-71.04118017492917,42.37419218818074],[-71.0411827388383,42.3741957644493],[-71.04118604457945,42.37419934547718],[-71.04118861643093,42.37420182702661],[-71.04119228453995,42.37420650515058],[-71.04119560058331,42.37420816410355],[-71.04120186884921,42.37421175694671],[-71.04120776437209,42.3742153483029],[-71.04121736062197,42.37421895441815],[-71.04122584350473,42.37422255519207],[-71.04123543975021,42.37422616220611],[-71.04124503246948,42.37423059026823],[-71.04125424206431,42.37423611335295],[-71.04126271110576,42.3742424599485],[-71.04128186219125,42.37425488197264],[-71.04129880937028,42.37426565307946],[-71.04130691121364,42.3742708998556],[-71.04131538381752,42.37427642179721],[-71.04132605322036,42.37428524575229],[-71.04133560969368,42.37429433895657],[-71.04134404804688,42.37430424966523],[-71.04135138226987,42.37431388588448],[-71.04135723205806,42.37432378627131],[-71.04136197087357,42.37433368582956],[-71.04136671048066,42.37434330900224],[-71.04137256028049,42.37435320848797],[-71.04137952941977,42.3743622904727],[-71.04138797451307,42.37437110645418],[-71.04139642922439,42.37437909870946],[-71.04140599290923,42.37438736817251],[-71.04141667063378,42.37439454642492],[-71.04142884124614,42.37440063047519],[-71.04143952736997,42.37440698589538],[-71.04145021228182,42.37441334130973],[-71.04145720808287,42.37441858096528],[-71.04146456258323,42.37442492220251],[-71.04147044500181,42.37443015831946],[-71.04147520617859,42.37443731208245],[-71.04148108183755,42.37444364832423],[-71.04148473562282,42.37444997210843],[-71.04148838341727,42.3744571223333],[-71.04149055601569,42.37446426667816],[-71.04149197595103,42.37447222998624],[-71.04149303396999,42.37447936808796],[-71.04149297628027,42.37448732550642],[-71.04149179491885,42.3744972005617],[-71.04148913108735,42.3745070679075],[-71.04148418056678,42.37452653221501],[-71.0414839796375,42.3745542467896],[-71.04148626706292,42.37459596356298],[-71.0414881821501,42.37463795794121],[-71.0414901994511,42.37471726967527],[-71.04149114208711,42.37474032351295],[-71.04148999255837,42.37474580708837],[-71.0414899547617,42.37475102050703],[-71.04148992094638,42.37475568476577],[-71.04149097896331,42.37476282376725],[-71.04149464910482,42.37476722910156],[-71.04149682282336,42.37477355058675],[-71.04150049297242,42.37477795502055],[-71.04150416190134,42.37478236034966],[-71.04150893581534,42.37478759384648],[-71.04151371129605,42.37479227637294],[-71.04152917020382,42.37480386437554],[-71.04154721296352,42.37481628463668],[-71.04155790162386,42.37482263645391],[-71.04163096220036,42.37485229049433],[-71.0416966003306,42.37488548095867],[-71.04175520841983,42.37491782051757],[-71.04178174983863,42.37493219491019],[-71.04180681837374,42.37494574146684],[-71.04182857040064,42.37495735179327],[-71.04184995684273,42.37496814049694],[-71.04186432401745,42.37497725191422],[-71.04187868841952,42.37498691429503],[-71.04189045981754,42.3749968400354],[-71.04189780724764,42.37500400497917],[-71.04190368302766,42.37501033759751],[-71.04190844307641,42.37501749223708],[-71.0419132043469,42.37502464598099],[-71.04191684626301,42.37503261903101],[-71.04192627452238,42.37505927359472],[-71.04193788848924,42.37509060305439],[-71.04193669650031,42.37510212109622],[-71.04193549532874,42.37511473925358],[-71.04193282325039,42.37512625410256],[-71.041916950328,42.37517146908859],[-71.04189356021088,42.37523311680567],[-71.04187893215817,42.37525967557051],[-71.04187069373737,42.37527309126567],[-71.04186429613046,42.37528733355347],[-71.04186090448665,42.37529610055622],[-71.041858244205,42.37530514595972],[-71.0418559575447,42.37531474292719],[-71.04185705339211,42.37531666670577],[-71.04185814282003,42.37531914143515],[-71.04185923755698,42.37532188897291],[-71.04186069775929,42.37532463796621],[-71.04186178762673,42.37532738728515],[-71.04186872821838,42.37533976417834],[-71.04187820861765,42.37535955965657],[-71.04187815694912,42.37536669243353],[-71.04187809930707,42.3753746498506],[-71.04187693069161,42.3753826037436],[-71.04187575060062,42.37539247700509],[-71.04186969390231,42.37541111495678],[-71.04186325852142,42.37543056976182],[-71.04185234797464,42.37545549940129],[-71.04183922146915,42.37547959374959],[-71.04182949577142,42.37549382458054],[-71.04181718256181,42.37550722134117],[-71.04179552201208,42.3755345767479],[-71.04175284674315,42.37560136298459],[-71.04193638263428,42.37565642543363],[-71.04213760719259,42.37572226331737],[-71.04231521273047,42.37577894818082],[-71.04233183266361,42.37578367779522],[-71.04230004059728,42.37588069238272],[-71.04227285519168,42.37595522439215],[-71.04226948496874,42.37596069913763],[-71.04226574520567,42.37596589602425],[-71.04226200828528,42.375971371111],[-71.0422571647004,42.37597574254255],[-71.04225493557593,42.37597655653588],[-71.04225344280896,42.37597847000996],[-71.04225122328259,42.37597846117821],[-71.04225010754415,42.37597928230259],[-71.04224750930784,42.37598009482703],[-71.04224639954464,42.37598009041111],[-71.0422441720815,42.37598117809839],[-71.04224157980087,42.37598116778319],[-71.04223936027441,42.37598115895122],[-71.04223787775702,42.37598115305194],[-71.0422356582305,42.37598114421989],[-71.04223306594987,42.3759811339045],[-71.04222974581138,42.37598002414195],[-71.04139776016329,42.37582880388425],[-71.04127650067818,42.37581048390613],[-71.0412630832755,42.37587464164661],[-71.04123689582512,42.37601530805252],[-71.04121534404366,42.37612937682191],[-71.04120290090954,42.37621219870567],[-71.04118917628224,42.37626730011067],[-71.04118911258311,42.37627608036514],[-71.04117927393145,42.37630567590372],[-71.04117808773155,42.37631637379593],[-71.04116166384806,42.37639558749954]]]],"type":"MultiPolygon"} +},{ + "id": 1108711925, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000221, + "geom:area_square_m":2023867.680297, + "geom:bbox":"-71.137621,42.2693641181,-71.118911,42.287211", + "geom:latitude":42.278671, + "geom:longitude":-71.128422, + "iso:country":"US", + "lbl:latitude":42.278754, + "lbl:longitude":-71.128599, + "lbl:max_zoom":18.0, + "mps:latitude":42.278754, + "mps:longitude":-71.128599, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.278754, + "reversegeo:longitude":-71.128599, + "src:geom":"mz", + "wof:belongsto":[ + 85846101, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0b978f4fc26dffb4cc0574ba53aa34b6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711925, + "neighbourhood_id":85846101, + "region_id":85688645 + } + ], + "wof:id":1108711925, + "wof:lastmodified":1566624126, + "wof:name":"Metropolitan Hill", + "wof:parent_id":85846101, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524045 + ], + "wof:tags":[] +}, + "bbox": [ + -71.137621, + 42.26936411806565, + -71.118911, + 42.287211 +], + "geometry": {"coordinates":[[[[-71.13351207370496,42.274430154152],[-71.1357083961563,42.27587142663593],[-71.13507197572622,42.27641471236893],[-71.13464404939688,42.276780015333],[-71.13699800000001,42.278323],[-71.13706500000001,42.278794],[-71.137118,42.279599],[-71.137192,42.280377],[-71.137227,42.280627],[-71.137227,42.280696],[-71.137246,42.281067],[-71.137294,42.281523],[-71.137283,42.281662],[-71.137361,42.282432],[-71.137381,42.282674],[-71.13747499999999,42.28366],[-71.137501,42.284329],[-71.13758900000001,42.285367],[-71.137615,42.285847],[-71.137621,42.286052],[-71.13757,42.286143],[-71.137424,42.286251],[-71.13700300000001,42.286261],[-71.135228,42.286302],[-71.134232,42.286314],[-71.13385100000001,42.286325],[-71.133382,42.286351],[-71.133059,42.286373],[-71.132256,42.286463],[-71.13183100000001,42.286528],[-71.131664,42.286572],[-71.131174,42.286699],[-71.130949,42.286781],[-71.130563,42.286899],[-71.130056,42.287074],[-71.12970199999999,42.28718],[-71.129555,42.287211],[-71.128128,42.286448],[-71.127436,42.286003],[-71.12726499999999,42.285892],[-71.126656,42.285515],[-71.126098,42.285175],[-71.125686,42.284911],[-71.12512700000001,42.28449],[-71.12476100000001,42.284186],[-71.124495,42.283906],[-71.124368,42.283702],[-71.124247,42.28345],[-71.124162,42.283213],[-71.12404100000001,42.282998],[-71.123976,42.282933],[-71.123762,42.282702],[-71.123542,42.282538],[-71.12296499999999,42.282163],[-71.122433,42.281826],[-71.122013,42.281546],[-71.12132099999999,42.281091],[-71.12107,42.280926],[-71.12067500000001,42.280696],[-71.11971200000001,42.280288],[-71.118911,42.279949],[-71.11904699999999,42.279345],[-71.119176,42.278637],[-71.119405,42.277431],[-71.119534,42.276868],[-71.119669,42.276248],[-71.11984099999999,42.27529],[-71.119916,42.274751],[-71.119936,42.27461],[-71.120069,42.273238],[-71.12015680051184,42.27258956260327],[-71.12027841790895,42.27142464842641],[-71.12031586685215,42.27115339722474],[-71.12037417080603,42.27098863627161],[-71.12048338831217,42.27069633812037],[-71.12060018419527,42.27033489002343],[-71.12065628502695,42.27034326001027],[-71.12097078973682,42.27053164810491],[-71.12132033771471,42.27079924528597],[-71.1213931687231,42.27087411790884],[-71.12168097195338,42.27106255374022],[-71.12185106997846,42.27117392155009],[-71.12184717788786,42.27112026142618],[-71.12190178523838,42.27098803442478],[-71.12201104657689,42.27100779203717],[-71.12201726642566,42.27095475849899],[-71.12214005134032,42.2704082720073],[-71.1219278825894,42.27037749007228],[-71.12214684656065,42.26936411806565],[-71.1225197866404,42.26941854258358],[-71.12239257503575,42.27002220052928],[-71.12259027717164,42.27004475390762],[-71.12470188999613,42.27028671355629],[-71.12476268332011,42.27028368551812],[-71.12485094332746,42.27123888381288],[-71.12482407367807,42.27130948608677],[-71.12489472327822,42.27133592650462],[-71.12522377084821,42.27141641925066],[-71.12523615388858,42.27137865950888],[-71.12558981624083,42.2714515240239],[-71.12571653203626,42.27151205033748],[-71.12603127534142,42.27158119713236],[-71.12610872691955,42.2716132750421],[-71.12592656722312,42.27200445346737],[-71.12574734036883,42.27233854028933],[-71.12566364121143,42.27247431507008],[-71.12555022588188,42.27257016708048],[-71.12572827873186,42.27248267618023],[-71.12637716166857,42.27215914109539],[-71.12651460459686,42.27209088328475],[-71.12659547750106,42.2721728019843],[-71.12665777013348,42.27223592040921],[-71.12690977451678,42.27209079924898],[-71.12725672928872,42.27199475698451],[-71.12739754630685,42.27195463455126],[-71.12760296838418,42.27190191373244],[-71.12786708093122,42.27195296265007],[-71.12794575837961,42.27196148504547],[-71.12826507168791,42.2712392097955],[-71.12841131596585,42.27091532439028],[-71.12845615868109,42.27087339018215],[-71.12883927336301,42.27067295737621],[-71.12948439724916,42.27033793261754],[-71.12998068222267,42.27008144713625],[-71.13015944144513,42.27000400983481],[-71.13036499600344,42.27038269742562],[-71.130428337913,42.27036727921137],[-71.13074220791532,42.27027711057961],[-71.1308661313533,42.27052084392525],[-71.13099614221423,42.27077684891285],[-71.13152977171816,42.27064004696768],[-71.13161021913876,42.27062082608277],[-71.1317312784883,42.27087978781513],[-71.13190768682823,42.27117691692087],[-71.13187590664208,42.27131290222019],[-71.13175656686771,42.27201597164602],[-71.13167301220646,42.27225282107904],[-71.13156997067864,42.27238498279308],[-71.13149929052551,42.27245355990271],[-71.13115450956604,42.27269805763387],[-71.13095812304347,42.27283249203557],[-71.13101556848454,42.27287472887147],[-71.13115097761539,42.27295987965969],[-71.13128219201157,42.27304099426438],[-71.13133143695541,42.27307241717963],[-71.13134932742186,42.2730838328314],[-71.13136746250389,42.27309508541035],[-71.13150725889804,42.27318182898524],[-71.13164427013569,42.2732679134356],[-71.1318028227119,42.27336745248736],[-71.13198152851467,42.2734784096179],[-71.13213978017851,42.27357775996975],[-71.13232166809304,42.27369143486612],[-71.13233650435266,42.27370070776617],[-71.13252561708559,42.27381809310361],[-71.13273239525839,42.27394639407006],[-71.13292843713154,42.27406802871378],[-71.13307027554366,42.27415603910679],[-71.1332121156091,42.27424404122443],[-71.13335394394095,42.27433204402695],[-71.13351207370496,42.274430154152]]]],"type":"MultiPolygon"} +},{ + "id": 1108711927, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":185324.947313, + "geom:bbox":"-71.0780039164,42.2996656661,-71.0714410585,42.3051980141", + "geom:latitude":42.302945, + "geom:longitude":-71.07429, + "iso:country":"US", + "lbl:latitude":42.303163, + "lbl:longitude":-71.0731, + "lbl:max_zoom":18.0, + "mps:latitude":42.303121, + "mps:longitude":-71.07424, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Mt Bowdoin", + "Mt. Bowdoin" + ], + "reversegeo:latitude":42.303121, + "reversegeo:longitude":-71.07424, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cb05cc342611d49138cbe7bd462bb485", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711927, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711927, + "wof:lastmodified":1566624126, + "wof:name":"Mount Bowdoin", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85835473 + ], + "wof:tags":[] +}, + "bbox": [ + -71.0780039164175, + 42.29966566606019, + -71.07144105847172, + 42.30519801410824 +], + "geometry": {"coordinates":[[[[-71.07671010039235,42.30519801410824],[-71.07621784550336,42.30504450764091],[-71.07605110081913,42.30501762655114],[-71.07587068228437,42.30500330942397],[-71.07551149285963,42.30500723606071],[-71.075110767308,42.30500407749925],[-71.07455426795005,42.30497091387313],[-71.07412256953404,42.30491060788687],[-71.07358165681048,42.30481234971415],[-71.07313948921076,42.30469374314929],[-71.07277163059931,42.30455971857544],[-71.07261249287195,42.304472640817],[-71.0724845441044,42.30439509568174],[-71.07225697577006,42.30420300867948],[-71.0718306474199,42.30379427816145],[-71.07144105847172,42.30336818133477],[-71.07146758343212,42.30307274871905],[-71.0715234075185,42.30264162168915],[-71.07156556922577,42.30244428994567],[-71.07162024654103,42.30223644057755],[-71.07166371901863,42.3021372978026],[-71.07176907969207,42.30201370442172],[-71.07188604645441,42.30187102136322],[-71.07194755985955,42.30170955909328],[-71.07198066656278,42.30149904102905],[-71.07200093415662,42.3011181991704],[-71.07197672058811,42.3007279074122],[-71.0719862393865,42.30048966752201],[-71.07203582603151,42.30027709034211],[-71.07212943648582,42.30011306655202],[-71.07226194814123,42.29995512616],[-71.07259905552959,42.29971290082469],[-71.07268806831706,42.29966566606019],[-71.07276786665398,42.29975671292251],[-71.07318876328301,42.3001676701409],[-71.07373400623894,42.30065971213816],[-71.0746841246284,42.30133120551942],[-71.07617891992381,42.30226622045275],[-71.07683037463194,42.30271298546501],[-71.07734638316627,42.30318966803369],[-71.0780039164175,42.30386143968718],[-71.07787203487685,42.30403123600297],[-71.07763974417949,42.30430654349614],[-71.07742896188005,42.30453883419349],[-71.07729553782475,42.30467430034678],[-71.0771708611052,42.30479263328876],[-71.07671010039235,42.30519801410824]]]],"type":"MultiPolygon"} +},{ + "id": 1108711929, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000064, + "geom:area_square_m":589003.206894, + "geom:bbox":"-71.0714410585,42.3010222271,-71.0559435163,42.3083128676", + "geom:latitude":42.304537, + "geom:longitude":-71.063533, + "iso:country":"US", + "lbl:latitude":42.307285, + "lbl:longitude":-71.060818, + "lbl:max_zoom":18.0, + "mps:latitude":42.305048, + "mps:longitude":-71.064062, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Meeting House Hl" + ], + "reversegeo:latitude":42.305048, + "reversegeo:longitude":-71.064062, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"90c06add5b5a45f694607a79cf76a691", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711929, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711929, + "wof:lastmodified":1566624126, + "wof:name":"Meeting House Hill", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85833697 + ], + "wof:tags":[] +}, + "bbox": [ + -71.07144105847172, + 42.30102222705914, + -71.05594351626797, + 42.30831286759728 +], + "geometry": {"coordinates":[[[[-71.0605461507069,42.30753711605056],[-71.06014960949008,42.30760481530241],[-71.0598409472184,42.3076191023267],[-71.05925330804641,42.30762033701697],[-71.05852152636874,42.30757350930875],[-71.05842705962797,42.30756053480728],[-71.05832566125521,42.30752678717302],[-71.05817320529825,42.30743073565402],[-71.05793882670622,42.30722142256446],[-71.05769936488998,42.30695066218916],[-71.05763521538621,42.306857349347],[-71.05758715613574,42.30674007629209],[-71.05756826926255,42.30662284279697],[-71.05756423400611,42.30649741513232],[-71.05758264205762,42.30625019768999],[-71.05760565652297,42.30594883891815],[-71.05759604954713,42.30585010583169],[-71.05757688944772,42.30574381006613],[-71.05753984035364,42.30566027931538],[-71.05747694206332,42.30555839766584],[-71.05730009511554,42.3053657668131],[-71.05716385617438,42.30525827595558],[-71.05701782075165,42.3051579858033],[-71.05665415558867,42.30492319803955],[-71.05594351626797,42.30449787448544],[-71.05940843591766,42.30308337661998],[-71.05955370506669,42.30244817492346],[-71.06089717613621,42.30203998116124],[-71.06318546323129,42.30140475134593],[-71.06349524828677,42.30198862403742],[-71.06738739361748,42.30102222705914],[-71.07144105847172,42.30336818133477],[-71.07139542870759,42.30346986606095],[-71.07132861286594,42.30355254031534],[-71.07123776876176,42.30362553668424],[-71.07112562702281,42.30368948931419],[-71.07094384053542,42.3037492259482],[-71.07071513247742,42.30380612196745],[-71.07028860455993,42.30394648637122],[-71.07005122194057,42.30405072894467],[-71.06984972300195,42.30415972438995],[-71.06941325673394,42.30445844456636],[-71.06842924756569,42.305134940864],[-71.0673268420115,42.30596196289716],[-71.066523079562,42.30666568890994],[-71.06499730141005,42.30809049658141],[-71.06473900803714,42.30809746553959],[-71.06451519635777,42.30811684510193],[-71.06432606238576,42.30815615858708],[-71.06387369441282,42.30831286759728],[-71.0636478951546,42.30806449102866],[-71.06353893288428,42.30797303582744],[-71.06341899275171,42.30788383307411],[-71.06326671269522,42.30778532118982],[-71.0630403950251,42.30767363404179],[-71.06285637727639,42.30760042611854],[-71.06263718302692,42.30755595783812],[-71.06245524573828,42.30753865367733],[-71.06206977769075,42.30752954963098],[-71.06131316863276,42.30752022697708],[-71.06096257776625,42.30750546228274],[-71.06079287345058,42.30751091574301],[-71.0605461507069,42.30753711605056]]]],"type":"MultiPolygon"} +},{ + "id": 1108711931, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000049, + "geom:area_square_m":444131.772851, + "geom:bbox":"-71.0767101004,42.3033681813,-71.0649973014,42.3118861029", + "geom:latitude":42.307479, + "geom:longitude":-71.070538, + "iso:country":"US", + "lbl:latitude":42.307665, + "lbl:longitude":-71.070138, + "lbl:max_zoom":18.0, + "mps:latitude":42.307665, + "mps:longitude":-71.070138, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.307665, + "reversegeo:longitude":-71.070138, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5d4910d4bf361759e1887096832471af", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711931, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711931, + "wof:lastmodified":1566624128, + "wof:name":"Bowdoin North", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524003 + ], + "wof:tags":[] +}, + "bbox": [ + -71.07671010039235, + 42.30336818133477, + -71.06499730141005, + 42.31188610291728 +], + "geometry": {"coordinates":[[[[-71.07671010039235,42.30519801410824],[-71.07627611175242,42.30557984065201],[-71.07522220025517,42.30652621015975],[-71.07382845607103,42.30781671403395],[-71.07365208720819,42.30803825053241],[-71.07347571834541,42.30827269206951],[-71.0733208578805,42.30847056933022],[-71.07321684500143,42.30864219122605],[-71.07312082978001,42.30884481545374],[-71.07160018604824,42.31188610291728],[-71.07092283484586,42.31161312343244],[-71.0701166273824,42.31130982398078],[-71.0695548268089,42.31106964128781],[-71.06918675485313,42.31091175542394],[-71.06883248625498,42.31079416946731],[-71.06859149322878,42.31072830148926],[-71.06839544649037,42.31065466288951],[-71.0682366438617,42.31057708244128],[-71.06807812862355,42.3104747293064],[-71.06780918419413,42.31028670617542],[-71.06754352636129,42.31011875777327],[-71.06730372833822,42.30997513065358],[-71.06706224609367,42.30983131589221],[-71.06685944392883,42.30968760222208],[-71.06665198367756,42.3095101789386],[-71.06530582927813,42.30821887409618],[-71.06523685518519,42.30816510930604],[-71.06514869194764,42.30811613787572],[-71.06508044960256,42.3080999041096],[-71.06499730141005,42.30809049658141],[-71.066523079562,42.30666568890994],[-71.0673268420115,42.30596196289716],[-71.06842924756569,42.305134940864],[-71.06941325673394,42.30445844456636],[-71.06984972300195,42.30415972438995],[-71.07005122194057,42.30405072894467],[-71.07028860455993,42.30394648637122],[-71.07071513247742,42.30380612196745],[-71.07094384053542,42.3037492259482],[-71.07112562702281,42.30368948931419],[-71.07123776876176,42.30362553668424],[-71.07132861286594,42.30355254031534],[-71.07139542870759,42.30346986606095],[-71.07144105847172,42.30336818133477],[-71.0718306474199,42.30379427816145],[-71.07225697577006,42.30420300867948],[-71.0724845441044,42.30439509568174],[-71.07277163059931,42.30455971857544],[-71.07310721495679,42.30466646399058],[-71.07354938255649,42.30478848049358],[-71.07412256953404,42.30491060788687],[-71.07455426795005,42.30497091387313],[-71.075110767308,42.30500407749925],[-71.07551149285963,42.30500723606071],[-71.07587068228437,42.30500330942397],[-71.07621784550336,42.30504450764091],[-71.07671010039235,42.30519801410824]]]],"type":"MultiPolygon"} +},{ + "id": 1108711933, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":249871.032375, + "geom:bbox":"-71.0423626161,42.2847808904,-71.0373580359,42.293728054", + "geom:latitude":42.289007, + "geom:longitude":-71.040096, + "iso:country":"US", + "lbl:latitude":42.289342, + "lbl:longitude":-71.039798, + "lbl:max_zoom":18.0, + "mps:latitude":42.289342, + "mps:longitude":-71.039798, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.289342, + "reversegeo:longitude":-71.039798, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"51aa971dab4534087463e5a257485e33", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711933, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711933, + "wof:lastmodified":1566624128, + "wof:name":"Port Norfolk", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.0423626161162, + 42.28478089044576, + -71.03735803594485, + 42.29372805399753 +], + "geometry": {"coordinates":[[[[-71.04225109135824,42.28626190798827],[-71.04234040641538,42.28714927877456],[-71.04236261611619,42.28739307112848],[-71.04235914951974,42.28744934162646],[-71.04232010388907,42.28751705425611],[-71.04226013107255,42.28756910333139],[-71.04180297156429,42.28782013918271],[-71.04116817913136,42.28809616135675],[-71.04147386806441,42.28835575858869],[-71.04148381659112,42.28838704022584],[-71.04148535986241,42.28841916296516],[-71.04146656011577,42.28875577680719],[-71.04148045351593,42.28878831637306],[-71.04149769964688,42.28881199296818],[-71.04199330603443,42.28929972002703],[-71.0418919312208,42.28936662962804],[-71.04186906859246,42.28935940263919],[-71.04184881927593,42.28934862176147],[-71.04184069406283,42.28934776557772],[-71.04181999277799,42.28934850679342],[-71.04179964146493,42.28935199262992],[-71.04177928177747,42.28935630040761],[-71.04176003075776,42.28936088899773],[-71.04173485512327,42.28936682601508],[-71.04171447004644,42.28937497618085],[-71.04170002501792,42.28937930934047],[-71.0416855894721,42.28938199677901],[-71.04168300316135,42.28938198646071],[-71.04167930739239,42.28938197171604],[-71.04167708616502,42.28938278483242],[-71.041673387971,42.28938277007789],[-71.04167116673703,42.28938358409442],[-71.04166746854295,42.28938356933969],[-71.04166523814094,42.28938548259166],[-71.0416626446623,42.28938629512287],[-71.04166042100304,42.28938710912951],[-71.04165781956873,42.289389020901],[-71.04165297539618,42.2893942152385],[-71.0416528919759,42.28940574150767],[-71.04165063224013,42.28941204272775],[-71.04163828056699,42.28943339639073],[-71.04162740217657,42.28945558331092],[-71.04161763680177,42.28947694729104],[-71.04161015829378,42.28948926693075],[-71.04160790208816,42.28949474438517],[-71.04160398540617,42.2895249141744],[-71.04160269763139,42.28954987988833],[-71.0416025168791,42.28957485182008],[-71.04159744746541,42.28961132904539],[-71.04159239470179,42.28964533770109],[-71.04159111962039,42.28966838131442],[-71.04158933644035,42.28971035900921],[-71.04159181472002,42.2897254634074],[-71.04159542355329,42.28973782638734],[-71.0416001314905,42.28975129032404],[-71.04160704995894,42.28976558866047],[-71.04161068573396,42.28977356006099],[-71.04161432392847,42.28978153237134],[-71.04161526335797,42.28980486121401],[-71.04162100883059,42.28982793374004],[-71.0416220209581,42.28984138653001],[-71.04162452629316,42.28985292222718],[-71.04164084755915,42.28989579503623],[-71.04165175301608,42.28992081029857],[-71.04165646098539,42.28993427333219],[-71.04165858337802,42.28994745415773],[-71.04166104182387,42.28996530260304],[-71.04166091869807,42.28998231516906],[-71.04165933492737,42.28999657777884],[-71.04165702109623,42.29001001549762],[-71.04165580361683,42.29002510244711],[-71.04165678278488,42.29004294318963],[-71.04165776315949,42.29006078483718],[-71.04165870338389,42.29008383908834],[-71.04165742157466,42.29010798194539],[-71.04165356965198,42.29012936951929],[-71.04165240974929,42.29013650070605],[-71.04165591291864,42.29016313308981],[-71.0416547013849,42.29017739808442],[-71.04165199069399,42.29019440122619],[-71.04164817417957,42.29021139815514],[-71.04164812253507,42.29021853376353],[-71.0416480589796,42.29022731508124],[-71.0416552734261,42.29025149183597],[-71.0416658453077,42.29027184128583],[-71.04166801615614,42.29027816108212],[-71.04167159602808,42.29029436464204],[-71.04167150069966,42.29030753661844],[-71.04167029037266,42.29032180251792],[-71.04166760903767,42.29033441409082],[-71.04166424773122,42.29033961434422],[-71.04164973573049,42.29035300249402],[-71.04164599853377,42.29035820124717],[-71.04164595881298,42.2903636893455],[-71.04164697658589,42.29037686666312],[-71.04164460273211,42.29039826013282],[-71.04164180188808,42.29042788518422],[-71.04164312705525,42.29044901971969],[-71.04164296418303,42.2904715230831],[-71.04164135105586,42.29049017455893],[-71.04163403923663,42.29053021073938],[-71.04162635515026,42.29057024633401],[-71.04162395071525,42.29059603046584],[-71.0416225032597,42.29064322315652],[-71.04162446159019,42.29067890553782],[-71.04162551699855,42.29068604556269],[-71.04163499261178,42.2907047412813],[-71.04163861817017,42.29071463478861],[-71.04163851489123,42.29072890420338],[-71.0416346510065,42.29075193838332],[-71.04163122522195,42.29076537346367],[-71.04162370090519,42.29078400135266],[-71.04161008220608,42.29082758027138],[-71.0416066095321,42.29084732449775],[-71.04160392826226,42.29086075984683],[-71.04160633942347,42.29088464104176],[-71.04161206631521,42.29091046121803],[-71.04161183989564,42.29094174229458],[-71.04158160624172,42.2912890284401],[-71.04160802239659,42.29131602864103],[-71.0416626682227,42.2913749699274],[-71.04169484400906,42.29142311962942],[-71.04171110735307,42.29147422636593],[-71.04172050875133,42.29150252712537],[-71.04170945407382,42.29154886130615],[-71.04173064478107,42.29158297104181],[-71.04175212269327,42.29162833662365],[-71.04178076481266,42.29165424458891],[-71.04180453846358,42.29168918839072],[-71.04181022580799,42.29172049574947],[-71.04183146062816,42.29174802081499],[-71.04184351015653,42.29176865162727],[-71.0419223311428,42.29195968280488],[-71.04207014579801,42.29242348132949],[-71.04206875970087,42.29246189358496],[-71.04207124524258,42.29262929614718],[-71.04207166423549,42.29272479307848],[-71.04207282554383,42.29292155107084],[-71.0421745163102,42.29311980898805],[-71.04221795368731,42.29324648740425],[-71.0421839000917,42.29330425385984],[-71.04210343058253,42.29334070337928],[-71.04197365707806,42.29334622260879],[-71.04187644482087,42.29334693157119],[-71.04178148845131,42.29334188840339],[-71.04128992428666,42.29328833843251],[-71.0412051934925,42.29324957961406],[-71.04121943357593,42.2930696233751],[-71.04113092524426,42.29304265330111],[-71.04114722783051,42.29293487368249],[-71.04108625384413,42.29293380455547],[-71.04107307357839,42.29306903880896],[-71.04098800152596,42.293077754202],[-71.04101424672098,42.29292446253711],[-71.04090496696016,42.2929072856362],[-71.04087800407916,42.29315936478267],[-71.04083479676558,42.29315452762688],[-71.04076706310082,42.29372805399753],[-71.04050593353351,42.29365127181213],[-71.04051849150405,42.29360165226264],[-71.04065005831315,42.29365459408564],[-71.04071983597056,42.29361480682604],[-71.04078640748274,42.29304840893334],[-71.0404147997164,42.29301838331291],[-71.03971877192774,42.29297471129914],[-71.03971639609951,42.29299610651348],[-71.03965285312961,42.29299228400657],[-71.0396816225321,42.29279729164887],[-71.03938883389276,42.29280489969938],[-71.03938348417897,42.29272749169518],[-71.03961380926957,42.29271936056853],[-71.03961030093289,42.29254125191411],[-71.03918543651413,42.2925669915895],[-71.03962630165617,42.29217058510936],[-71.03956889706073,42.29213550337342],[-71.03953910023522,42.29211590136216],[-71.03950070274745,42.2921102573993],[-71.03947782541731,42.29210495293271],[-71.03945868036404,42.29209499894636],[-71.0394576499103,42.29208429109644],[-71.03924043003785,42.29227249122881],[-71.03925328796986,42.29228324291459],[-71.03923282696125,42.29230182236194],[-71.03918971378744,42.29228381170761],[-71.03918493428307,42.29228022733101],[-71.03918867138121,42.29227475226487],[-71.03921391665298,42.29225893704267],[-71.03926601155187,42.29221112464252],[-71.03927200315223,42.29220044585272],[-71.03926838507107,42.29218973032463],[-71.03924345244026,42.29216191446028],[-71.03923297050831,42.29212976576464],[-71.03922863226948,42.29206553595301],[-71.03920605327869,42.29201906890958],[-71.03917753386612,42.29197641963187],[-71.0391587371447,42.29191844385255],[-71.0391579236164,42.29187810064732],[-71.03917071226373,42.29179637819259],[-71.03917104972315,42.29175000396221],[-71.03914746287333,42.29169008681315],[-71.03910460176218,42.29163750274012],[-71.03903870028383,42.2916023866434],[-71.03899064640828,42.29160301669704],[-71.03896652516651,42.29161636864762],[-71.03892855937382,42.29160194465363],[-71.03889839201122,42.29158316566409],[-71.03886845136721,42.29158304548767],[-71.03872374225081,42.29171171225916],[-71.03865207472441,42.29165599182714],[-71.03888157930832,42.29145576811039],[-71.03908535137323,42.29128617619263],[-71.03907611853495,42.29123454899604],[-71.0390356764035,42.29120502419451],[-71.03899368871356,42.29118509762567],[-71.03882124045106,42.29131639823715],[-71.03868108167059,42.29142889665059],[-71.03859748243325,42.29138767268692],[-71.03839831986261,42.29122825874754],[-71.03807088807282,42.29102113389267],[-71.03790502209048,42.29090823215253],[-71.03786801208204,42.29086445091038],[-71.03785873023605,42.29081968373226],[-71.03790232015579,42.29077183772306],[-71.03795652125386,42.29073912618356],[-71.03799553636219,42.29065997794968],[-71.03802502723951,42.29056926570013],[-71.0380342642307,42.29046859295243],[-71.03799645119483,42.29038282370406],[-71.0379536627928,42.29032035952768],[-71.03796001879736,42.29025973965837],[-71.03800023437938,42.29016824676322],[-71.0379932894275,42.29015751780981],[-71.03798868033086,42.29013060626751],[-71.03798630097282,42.29010205793499],[-71.03798649515204,42.29007544120288],[-71.03798807855249,42.29006117683858],[-71.03799034231345,42.29005487570601],[-71.03799298191326,42.2900477514056],[-71.03799783925204,42.29004063422347],[-71.03800495591349,42.29002749138367],[-71.03800874500888,42.2900148843475],[-71.03801103357409,42.29000501630634],[-71.0380125792969,42.28999541716983],[-71.03801605303804,42.28997567394905],[-71.03801984250316,42.28996251682759],[-71.03802249132049,42.28995429419156],[-71.03802365040295,42.28994716483684],[-71.03802490679055,42.28992686261242],[-71.03802996749485,42.28989203126103],[-71.03803492766828,42.28987064825943],[-71.03803613520856,42.28985720796206],[-71.03803624530671,42.28984211479324],[-71.0380352399235,42.28982784181792],[-71.03803168626335,42.28980834222852],[-71.03802951578076,42.28980202416344],[-71.03802586360632,42.28979569743898],[-71.03802220585206,42.28979046816362],[-71.03801528938308,42.28977617231707],[-71.03800692568734,42.28975747626168],[-71.03799634424779,42.28973877578814],[-71.03799161707883,42.28972805305179],[-71.03798584770642,42.28970827265744],[-71.03798225480132,42.2896939892748],[-71.03797983906868,42.28967092815182],[-71.03798001524662,42.28964677908084],[-71.03798014535707,42.28962894456332],[-71.03798175233813,42.28961111418483],[-71.0379797778112,42.28952741029433],[-71.0379788280877,42.28950517794526],[-71.03797411857968,42.28949253582847],[-71.03797305194571,42.28948649499382],[-71.03797310399712,42.2894793602863],[-71.03797062177324,42.28946508226996],[-71.03796491049341,42.28943734341101],[-71.03795771874137,42.28940959679657],[-71.03795562436632,42.28939284990271],[-71.03795466148674,42.28937308703647],[-71.03795215681936,42.289361553959],[-71.03794893619882,42.28934727027099],[-71.03794534932601,42.28933216403156],[-71.03794284710021,42.28932062916302],[-71.03794187743125,42.28930196374087],[-71.03794571370659,42.28928222107736],[-71.03794580378519,42.28926987465681],[-71.03794473559573,42.28926438030052],[-71.03794108467984,42.2892580526772],[-71.03793748742783,42.2892448685467],[-71.03792799634567,42.28922863838556],[-71.03792211492411,42.28922422394106],[-71.03790658622815,42.289224987058],[-71.03789918070512,42.2892268767195],[-71.03788367325042,42.28922489488879],[-71.03786335138821,42.28922398755902],[-71.03785484560348,42.28922477892088],[-71.03784783114105,42.2892239251223],[-71.03783344754076,42.28921947646876],[-71.03781906878598,42.2892150287332],[-71.03781652610159,42.28920870916573],[-71.03782136336352,42.28920433693931],[-71.03783578217286,42.289203295676],[-71.03784172766868,42.28919892880756],[-71.03783844898382,42.28919260627958],[-71.03783479006081,42.28918737789299],[-71.03783112877099,42.28918297237556],[-71.03782635881863,42.28917828780465],[-71.03781316757107,42.2891623200411],[-71.03779669290529,42.28914084630438],[-71.03778938192023,42.28913011586312],[-71.03777765917079,42.28911579886111],[-71.03777034334173,42.28910506839909],[-71.03776561988276,42.28909434746722],[-71.03776575006559,42.28907651114744],[-71.03777205815359,42.28907296862028],[-71.03768765919811,42.28893898951298],[-71.03754889812939,42.28870874786037],[-71.03741747702625,42.28848621788617],[-71.03735803594485,42.28837648879891],[-71.0373617432701,42.28837458157776],[-71.03737732265604,42.28836668562121],[-71.03738848072373,42.2883568524071],[-71.03739933555549,42.28833823459313],[-71.03740418799904,42.28833194479468],[-71.03741013945319,42.28832675509303],[-71.03741983272157,42.28831526751846],[-71.03742954360385,42.28830103588368],[-71.03743925688707,42.28828680695864],[-71.03745164425165,42.28826106219227],[-71.03746098652489,42.28824682817023],[-71.03747070903331,42.28823150000692],[-71.0374804567342,42.28821205754927],[-71.03749021851932,42.2881915158748],[-71.03749769407814,42.28818002116518],[-71.03750736363166,42.28817127761789],[-71.03752072291742,42.28816419558258],[-71.03752556811425,42.28815872862874],[-71.03755314202928,42.28812755582795],[-71.03757254288453,42.2881029358533],[-71.03758113222877,42.28809034814957],[-71.0375882519749,42.28807693075024],[-71.03760541709457,42.28805477400854],[-71.03761625777759,42.2880380782682],[-71.03761740608105,42.28803259282881],[-71.03761634393545,42.28802627741378],[-71.03761274319665,42.28801309145463],[-71.0376047103734,42.28799961216204],[-71.03760216297698,42.28799411364742],[-71.03759531451682,42.28797021088562],[-71.037592853685,42.28795318881181],[-71.03758925374099,42.28793972916205],[-71.0375870825939,42.28793368297534],[-71.03758454721785,42.2879265387506],[-71.0375835287448,42.2879139105704],[-71.03758469147682,42.2879067812318],[-71.03759336058043,42.28788376381121],[-71.03759935204029,42.28787308689986],[-71.03761055606971,42.28785694180835],[-71.03761878442207,42.28784380346207],[-71.03762628675656,42.28782846634836],[-71.03762853403565,42.28782408460477],[-71.03764195733662,42.28780822213542],[-71.03764680129642,42.28780275337058],[-71.03765906786086,42.28779319918424],[-71.03766835671509,42.2877861007492],[-71.03767801300779,42.28777982667124],[-71.03768914487451,42.28777356213207],[-71.03771659199143,42.28776022472856],[-71.03773254220435,42.28775233021587],[-71.0377529633129,42.28773924272455],[-71.03776376786224,42.28772748499875],[-71.03777233630514,42.28771791501938],[-71.03777569983977,42.2877132649719],[-71.03777837979102,42.28770010338839],[-71.03778326421214,42.28768942021226],[-71.03779035783189,42.28767957060447],[-71.03779673229123,42.28766724676466],[-71.03780869945831,42.28764753771437],[-71.03783193389579,42.28760399969786],[-71.03783683711255,42.28759057246435],[-71.0378369072051,42.28758096738893],[-71.0378369852799,42.28757026847461],[-71.03783707139598,42.28755846761891],[-71.03783350468902,42.28754061551991],[-71.03783254464447,42.2875203070714],[-71.03783487802141,42.28750412356739],[-71.03783646495175,42.28748903903391],[-71.03783651101874,42.28748272627823],[-71.03783290911672,42.28747036229868],[-71.03782929633506,42.28745882475554],[-71.03783050268019,42.28744538174807],[-71.03783687345104,42.28743306059162],[-71.0378402489949,42.28742676213127],[-71.03785846638064,42.28741174180232],[-71.03786553513586,42.28740545999961],[-71.03787898389415,42.28738575600133],[-71.0378827672221,42.28737342263276],[-71.03789245546736,42.28736275787586],[-71.03790582654716,42.28735403008478],[-71.03791067044287,42.28734856220861],[-71.03791780926585,42.28733267532662],[-71.0379226955797,42.28732089467939],[-71.03792753147108,42.28731652334221],[-71.03794090253629,42.28730779554692],[-71.03795765584439,42.28729085076241],[-71.03797102326257,42.28728212294896],[-71.03800709970976,42.2872509842334],[-71.03802309099689,42.28723760248418],[-71.03802534543577,42.28723239878254],[-71.03802649969144,42.28722609048316],[-71.03802548156359,42.28721373689989],[-71.03802663579265,42.28720743220163],[-71.038030416723,42.2871959207971],[-71.0380341571784,42.28718962559896],[-71.03804009525042,42.28718608246886],[-71.03804750776473,42.28718336724657],[-71.03806414657065,42.28718261127722],[-71.03807116683124,42.28718263950713],[-71.03808708961381,42.28717831364531],[-71.03809304170684,42.28717284751654],[-71.03809418915007,42.28716763846191],[-71.03809326184691,42.2871426638632],[-71.03809441129221,42.28713718022349],[-71.03809703795278,42.28713197801703],[-71.03810187819725,42.28712650741709],[-71.0381233941001,42.28711589019786],[-71.03813564243752,42.28710880722512],[-71.03813676264477,42.2871071659708],[-71.0381475353504,42.28709925148382],[-71.03816091314292,42.28708942441702],[-71.03817172029122,42.28707711837657],[-71.03817883020967,42.28706534845823],[-71.03818257907436,42.28705822950958],[-71.03819336499826,42.28704866661227],[-71.03820451070061,42.28704047992656],[-71.03823085396105,42.28702631688385],[-71.03829097450519,42.28699198321196],[-71.03830692444643,42.28698408951863],[-71.03833100963196,42.28697512834506],[-71.03834766715644,42.28697163007985],[-71.03836213429177,42.28696455329891],[-71.03837658257724,42.28695939679183],[-71.03839477255617,42.28694876615648],[-71.03841031581155,42.28694526250434],[-71.03843077538318,42.28692750786334],[-71.03857487177996,42.28672941096382],[-71.0388342987964,42.28688357578481],[-71.0388234953768,42.28689505902329],[-71.0389033581056,42.28694175524633],[-71.03892991394321,42.28694899675704],[-71.03893470259331,42.28695093452796],[-71.03894173080479,42.28694986706503],[-71.03896726355889,42.28694557875149],[-71.03897430620017,42.28694286198508],[-71.03897913478126,42.28693931435376],[-71.03899959896201,42.28692073765178],[-71.03900444795963,42.28691471786281],[-71.039007066908,42.28691006389062],[-71.039008263779,42.28689772010519],[-71.03901684354041,42.28688705350607],[-71.03902278873737,42.28688268657445],[-71.03903831083686,42.28688274886219],[-71.03904315582436,42.28687727914205],[-71.03904919289025,42.28686028939597],[-71.0390507136111,42.28685425985085],[-71.03905075356771,42.28684876994898],[-71.03904126055428,42.28683281535738],[-71.03903871427943,42.28682731867875],[-71.03903290489268,42.28681302732706],[-71.0390293179245,42.28679791841295],[-71.03902722457154,42.28678117063438],[-71.03903539292622,42.28677571605132],[-71.03900676257682,42.28674898092962],[-71.03899126526819,42.28674535082664],[-71.03902998500892,42.28670626729912],[-71.03909510798249,42.28664505845745],[-71.03902131212629,42.28657780662834],[-71.0388318682915,42.28640526346168],[-71.03869820155982,42.2862878247977],[-71.03855760390454,42.28615801314255],[-71.0384636515104,42.28606762674917],[-71.0385757321571,42.28600304254334],[-71.03868037785433,42.28594391303157],[-71.03871784843695,42.28592430629985],[-71.03874791508622,42.28590659107874],[-71.0389479631506,42.28578912192845],[-71.03909989127349,42.28568271048658],[-71.03928804264798,42.28552485481758],[-71.03951858434894,42.28538143772055],[-71.03977563939515,42.2851497649913],[-71.04013766384426,42.28486444950339],[-71.04026355065938,42.28478089044576],[-71.04102135056293,42.2851868546798],[-71.04190821972993,42.28568183622719],[-71.04204106631016,42.28578012699864],[-71.04209856728383,42.2858327567086],[-71.04215667419891,42.28590828338447],[-71.04218886444173,42.28597830967452],[-71.04225109135824,42.28626190798827]]]],"type":"MultiPolygon"} +},{ + "id": 1108711937, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000172, + "geom:area_square_m":1575567.276932, + "geom:bbox":"-71.0573563258,42.282583,-71.0411681791,42.2988542847", + "geom:latitude":42.290272, + "geom:longitude":-71.049598, + "iso:country":"US", + "lbl:latitude":42.287765, + "lbl:longitude":-71.051107, + "lbl:max_zoom":18.0, + "mps:latitude":42.290215, + "mps:longitude":-71.049442, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Neponset" + ], + "name:fra_x_preferred":[ + "Neponset" + ], + "name:und_x_variant":[ + "Naponset" + ], + "reversegeo:latitude":42.290215, + "reversegeo:longitude":-71.049442, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q14715757" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dedbf63dc699bc951c929def97805ef7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711937, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711937, + "wof:lastmodified":1566624128, + "wof:name":"Neponset", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85836487 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05735632575546, + 42.282583, + -71.04116817913136, + 42.29885428474769 +], + "geometry": {"coordinates":[[[[-71.05681169427784,42.29414087389902],[-71.05652552551736,42.29454177373722],[-71.0563444908458,42.29483781002446],[-71.05623983557523,42.29506881889785],[-71.05619126830807,42.29527110323063],[-71.05621337194475,42.29551560005657],[-71.05625958326202,42.29576084949892],[-71.05446605483388,42.29591538425003],[-71.05346034569887,42.29598586355345],[-71.05316201346434,42.29601170131092],[-71.05289984330282,42.29606582487795],[-71.05265439904788,42.29621977774733],[-71.05151991003818,42.2972689151944],[-71.05139202444124,42.29736035918815],[-71.05122726704273,42.29741453794213],[-71.05104502036087,42.29745500703731],[-71.05040378209313,42.29759629300749],[-71.04981961229714,42.29778171504376],[-71.04860500280121,42.29822890358619],[-71.04700131872912,42.29885428474769],[-71.04666521668054,42.29834295837782],[-71.0466677647436,42.2982968666233],[-71.04658470196084,42.29802377139029],[-71.04656670881501,42.2980075102338],[-71.04650412245014,42.29802345336486],[-71.04648380668122,42.29802145462959],[-71.04644667773533,42.29799304215551],[-71.04641960541844,42.2979536955788],[-71.0464278620036,42.29793671244848],[-71.04649990191798,42.29794221047565],[-71.04654202885922,42.29794347511765],[-71.04655758828466,42.29793887295662],[-71.0465614252944,42.29791940284338],[-71.0465393686443,42.29779912354872],[-71.04648547453432,42.29763398792642],[-71.04644225556113,42.29747520733923],[-71.0463917185803,42.29730569503498],[-71.04632574815061,42.29712377230322],[-71.0461819726744,42.29676125471854],[-71.0460017328315,42.29627785046473],[-71.04580228059638,42.29584486073154],[-71.04553663021429,42.29536605881127],[-71.04536951310223,42.29506354207209],[-71.04509475373045,42.29456768904375],[-71.04497747082947,42.29437760443894],[-71.04478664561249,42.29403191063385],[-71.04471663477825,42.29389881859797],[-71.04459076629541,42.29372104810607],[-71.04454200515804,42.29366569769248],[-71.04452070886234,42.29364612978753],[-71.04449788036464,42.29363423899658],[-71.04446055625543,42.29363326902974],[-71.0444247896084,42.29362077683611],[-71.04436831331128,42.29361067563442],[-71.04433469436296,42.29360862014975],[-71.04427216676011,42.29361742828964],[-71.04420626117195,42.293633082409],[-71.04419427142054,42.29360449610872],[-71.04415050072024,42.29352337161922],[-71.04414844530295,42.29350113496081],[-71.04410065748797,42.29346444881607],[-71.0440060620375,42.29340974095498],[-71.04391886547032,42.29335396131594],[-71.04382091135147,42.29330362984837],[-71.04377685393479,42.2932625666958],[-71.04367169396052,42.29318641097427],[-71.04353926725341,42.29309862112982],[-71.04341857234995,42.29302405100373],[-71.04331598108296,42.29295064928503],[-71.04321081624546,42.29287531599113],[-71.04313070105567,42.29281188250373],[-71.0430699875959,42.29277404704692],[-71.0430243942558,42.29274093527698],[-71.04297806843665,42.29270699769667],[-71.04293149681781,42.29265604787334],[-71.04290874731457,42.29263263138264],[-71.04290876515202,42.29263016011883],[-71.04290656955936,42.29262740815656],[-71.04289703949517,42.29261666832357],[-71.04287426227609,42.29259709511379],[-71.04285995371879,42.29258276835857],[-71.04284452606947,42.29256926092659],[-71.04282910559915,42.29255492794217],[-71.04279934961451,42.2925298386915],[-71.04276441119765,42.29250555168504],[-71.04274895949449,42.2924958848416],[-71.04272650509159,42.29248317320415],[-71.04270255870026,42.2924723750718],[-71.04268081151227,42.29246433161649],[-71.04267381035361,42.29246073764195],[-71.04265798288877,42.2924518930686],[-71.04264512315144,42.29244113905857],[-71.04263080873831,42.2924276351287],[-71.04261871202165,42.2924133171482],[-71.04261394862101,42.29240781082991],[-71.04260444440877,42.29239350316932],[-71.04259642415323,42.29237755656047],[-71.04259022624217,42.29236600528925],[-71.04258805524313,42.29235968371252],[-71.04258560587886,42.29234019317843],[-71.04258098795104,42.29231438017661],[-71.0425762796407,42.292300912686],[-71.04256210004323,42.29226875137964],[-71.04255407278318,42.29225444959521],[-71.04254456617578,42.29224014281988],[-71.04253394886507,42.29222582982025],[-71.04252185110184,42.29221233650324],[-71.04249909286735,42.29219084294314],[-71.04247522626829,42.29216851758472],[-71.04246240075395,42.29215337470648],[-71.04244701691438,42.29213382995352],[-71.04242651972076,42.29210603245036],[-71.04241482830366,42.29208732617789],[-71.04240277377573,42.2920675209869],[-71.04238375640369,42.29204000396276],[-71.04237092379144,42.29202568212291],[-71.04236249854971,42.29201494844516],[-71.04235883314371,42.29201054306007],[-71.04235045122405,42.29199431859824],[-71.04234353828434,42.2919791983589],[-71.04234247318912,42.29197288118241],[-71.0423414481769,42.29196135320451],[-71.04234154535284,42.29194790664712],[-71.04234269726712,42.29194187469587],[-71.04234643405279,42.29193640222743],[-71.0423523711225,42.2919328579727],[-71.04236535366682,42.29192659675575],[-71.04236908846538,42.29192139887148],[-71.042369128131,42.29191590987438],[-71.04236695517869,42.29190986377802],[-71.04236069499302,42.2919062709347],[-71.04232749487046,42.29189790719413],[-71.04229243997705,42.29188980884651],[-71.04227215011841,42.29188451524551],[-71.04225075991276,42.29187811888537],[-71.04224338669916,42.2918753462795],[-71.04223640118363,42.29187010388264],[-71.04222796895901,42.291861013222],[-71.0422210151721,42.29185138196725],[-71.04221628238145,42.29184148406915],[-71.04221156028281,42.29182993955686],[-71.04220537867492,42.2918156469015],[-71.0422032065141,42.2918093262122],[-71.04220326404577,42.29180136775144],[-71.042203315629,42.29179423214505],[-71.04220337314111,42.29178627638512],[-71.0422023255891,42.2917780380275],[-71.04219618883847,42.29175770900984],[-71.0421951261868,42.29175139184136],[-71.04219628008345,42.291745087107],[-71.04220269851038,42.2917264511762],[-71.04220510033407,42.29170066612826],[-71.04220524315359,42.29168090951902],[-71.04220538400109,42.29166142569407],[-71.04220657680871,42.29164990565156],[-71.04220561013005,42.2916301446209],[-71.04220832669513,42.29161231681601],[-71.04221178764598,42.2915936708997],[-71.04221441415316,42.29158846860377],[-71.04222409635911,42.29157862724544],[-71.04222635259225,42.29157314888097],[-71.04222528794924,42.29156710719775],[-71.04221209707988,42.29155086536214],[-71.04220735043147,42.29154288775688],[-71.04220259904842,42.29153573301078],[-71.04219458144082,42.29151978458022],[-71.04218250251625,42.2915035462718],[-71.04217773008217,42.29149913646867],[-71.04216926891128,42.29149388998707],[-71.04216228420999,42.29148837389585],[-71.04214684551125,42.29147678757105],[-71.04212295593464,42.29145802994927],[-71.04211081950378,42.29144974919415],[-71.04209534784445,42.29144255621618],[-71.04208210237212,42.29143454473],[-71.04207623435471,42.29142820840572],[-71.04206927590741,42.29141939909995],[-71.04206456773993,42.2914059360873],[-71.04206580501709,42.29138810148788],[-71.04206478006468,42.29137657350615],[-71.04205858112944,42.29136502309935],[-71.04204793948763,42.29135427786056],[-71.04203729431103,42.29134435728546],[-71.04202554318385,42.29133360762169],[-71.04200277032676,42.29131403514883],[-71.04199064816792,42.29130328400219],[-71.04198112684769,42.29129171944497],[-71.04196829875178,42.29127630370515],[-71.04195622985523,42.29125869334776],[-71.04194927939399,42.29124878479444],[-71.04194825569712,42.29123725411534],[-71.04194945405615,42.29122463662542],[-71.04195436261229,42.2912103890723],[-71.04195922554656,42.29120244886982],[-71.04196406939967,42.29119697902642],[-71.04197112428798,42.29119261636957],[-71.04198816204081,42.29118747153466],[-71.04199521450124,42.29118310886667],[-71.04199893739734,42.29117955490217],[-71.04199902868078,42.29116693299802],[-71.04199547248643,42.29114743713275],[-71.04198599992509,42.29112846326436],[-71.04197542305234,42.29110893760714],[-71.04196596481772,42.29108831983809],[-71.04196231140234,42.29108226783015],[-71.04195643028787,42.29107758080463],[-71.04194942868077,42.29107508155258],[-71.04192538766455,42.29107745703026],[-71.04191687730294,42.29107851876648],[-71.04190839593471,42.29107573991887],[-71.04190140102313,42.29107214772095],[-71.04189404104892,42.2910677275874],[-71.04188926945456,42.29106304138157],[-71.04188561008252,42.29105781402627],[-71.0418797750943,42.29104708703812],[-71.0418750602619,42.2910347223613],[-71.04187401034642,42.29102648308947],[-71.04187405400761,42.29102044762251],[-71.04187631741625,42.29101414641455],[-71.04188380168954,42.29100155039033],[-71.04188983516809,42.29098483779006],[-71.04189846066906,42.2909678573314],[-71.04190819553398,42.29095005931767],[-71.04191307829655,42.29093937596812],[-71.04191688574366,42.2909242993463],[-71.04191928764678,42.29089851520038],[-71.0419253969992,42.29087164566528],[-71.04193179908943,42.29085493183137],[-71.04193521409793,42.29084314605745],[-71.04194158442499,42.29083082288127],[-71.04195130425309,42.29081576983196],[-71.04195615998685,42.29080865337905],[-71.04196065063076,42.29080071259197],[-71.04196439335304,42.2907944145793],[-71.04197049350699,42.29076864517683],[-71.04197201007167,42.29076316476772],[-71.04196952217663,42.29074970700003],[-71.04196267296955,42.29072580631729],[-71.0419532052136,42.29070601048537],[-71.04194850186293,42.29069172460661],[-71.04194743969286,42.2906856820291],[-71.04194608465446,42.2906686626714],[-71.0419476520695,42.29065631944387],[-71.04195254868539,42.29064371669815],[-71.04196195257224,42.29062070459604],[-71.04198418449188,42.29056179267702],[-71.04200124639648,42.29050231365685],[-71.04200402171267,42.29047653099588],[-71.04200643868286,42.29044882385557],[-71.04200915645282,42.2904309978565],[-71.04201150198378,42.29041316857275],[-71.04201470196794,42.2903286625372],[-71.04201246840232,42.29027953481509],[-71.04201146332861,42.29026526188075],[-71.0420078556031,42.29025289801969],[-71.04200568473465,42.29024657642923],[-71.04200327654668,42.29022159598005],[-71.04200344322923,42.29019854794643],[-71.04200502220871,42.29018510549122],[-71.04200744389912,42.29015657638994],[-71.04201132746947,42.29013079634477],[-71.04201045613252,42.2900978633292],[-71.04200797970469,42.29008248705704],[-71.04200692898198,42.29007452687613],[-71.04200698653672,42.29006656841266],[-71.04200705799184,42.29005668785418],[-71.04201424646351,42.29003366781353],[-71.04201577019606,42.29002736095206],[-71.04201448459547,42.29000073922047],[-71.04201236531874,42.28998728472175],[-71.04200510623949,42.28996859426712],[-71.04199935466329,42.28994634461569],[-71.04199834364694,42.28993289453496],[-71.0419958005297,42.28992657326038],[-71.0419925110436,42.28992134648145],[-71.04198627225193,42.28991583155025],[-71.04198297439099,42.28991142761605],[-71.04198306367691,42.28989908209423],[-71.04198425849722,42.28988728476407],[-71.04199291788385,42.28986509166634],[-71.04199411190885,42.28985357162669],[-71.04199163119532,42.28983929280768],[-71.04198951900025,42.28982418987844],[-71.04198481813189,42.28980990400827],[-71.0419812160545,42.28979726647507],[-71.04197765996858,42.28977776700274],[-71.04197077314417,42.28975908163044],[-71.0419638863499,42.28974039265655],[-71.04195923710911,42.28971897027554],[-71.04195311453796,42.28969671914129],[-71.04194987865039,42.28968408396715],[-71.04194628487215,42.28966979800764],[-71.04193332834207,42.28962172499261],[-71.04192982706557,42.28959481892965],[-71.04192405450219,42.28957531151703],[-71.04191938422618,42.28955663317853],[-71.0419183720205,42.28954318309118],[-71.04191737889002,42.28952726354403],[-71.04191749004222,42.28951189668572],[-71.04192248185065,42.28948612195964],[-71.04192269422181,42.28945676116791],[-71.0419203190806,42.28942738825763],[-71.04191930688332,42.28941393726969],[-71.04191574133962,42.28939608621407],[-71.04191213015544,42.28938454521239],[-71.04190995136858,42.28937932375967],[-71.04189930532651,42.2893694040633],[-71.0418919312208,42.28936662962804],[-71.04199330603443,42.28929972002703],[-71.04149769964688,42.28881199296818],[-71.04148045351593,42.28878831637306],[-71.04146656011577,42.28875577680719],[-71.04148535986241,42.28841916296516],[-71.04148381659112,42.28838704022584],[-71.04147386806441,42.28835575858869],[-71.04116817913136,42.28809616135675],[-71.04180297156429,42.28782013918271],[-71.04226013107255,42.28756910333139],[-71.04232010388907,42.28751705425611],[-71.04235914951974,42.28744934162646],[-71.04236261611619,42.28739307112848],[-71.04234040641538,42.28714927877456],[-71.04225109135824,42.28626190798827],[-71.04218886444173,42.28597830967452],[-71.04215667419891,42.28590828338447],[-71.04209856728383,42.2858327567086],[-71.04204106631016,42.28578012699864],[-71.04190821972993,42.28568183622719],[-71.04200995012748,42.2857298882434],[-71.04210184811512,42.2857563437247],[-71.04219109721757,42.28576584871421],[-71.04226197339673,42.28576609048097],[-71.04233235204912,42.28576300029421],[-71.04242627585957,42.28575216654344],[-71.04251498614055,42.28573212860386],[-71.04289272776673,42.28559900323064],[-71.04527293948107,42.28459264868582],[-71.04596713317298,42.28429572267799],[-71.04763800567638,42.28371648687681],[-71.04790534527697,42.28363015846414],[-71.04828479300227,42.28353309835051],[-71.04872964237859,42.28347142557632],[-71.05099088983319,42.28335446450107],[-71.05169225364496,42.28329688291817],[-71.05231644868589,42.28320408597577],[-71.05288111114345,42.28307053854245],[-71.0535027681633,42.28290889850017],[-71.05440236720689,42.2827495056338],[-71.05523490599181,42.28266940677469],[-71.05653599999999,42.282583],[-71.05615400000001,42.282812],[-71.05600099999999,42.282921],[-71.055869,42.283096],[-71.055787,42.283205],[-71.05566399999999,42.283605],[-71.05542699999999,42.284355],[-71.055211,42.284914],[-71.055148,42.285068],[-71.055009,42.285426],[-71.054963,42.285575],[-71.054776,42.286007],[-71.05468500000001,42.286267],[-71.054547,42.286615],[-71.054528,42.286672],[-71.05450999999999,42.2868],[-71.05450999999999,42.286859],[-71.054537,42.287113],[-71.054654,42.287335],[-71.054725,42.287446],[-71.054877,42.287667],[-71.0551,42.287933],[-71.055347,42.288242],[-71.05547051095564,42.28848119137035],[-71.05553140650382,42.28865713056371],[-71.05566359065303,42.28906481956725],[-71.05588498803652,42.28953992687453],[-71.05625045131409,42.29016891617844],[-71.0564869731222,42.29054508822676],[-71.05672450178831,42.29084327883979],[-71.05700705171402,42.29115597962404],[-71.05723786727184,42.29149125854092],[-71.05729850840295,42.29165547274195],[-71.05733381539854,42.29179419157614],[-71.05735632575546,42.29201283473463],[-71.05734845075095,42.29219674728758],[-71.05732476074384,42.2927715445643],[-71.05728174021054,42.29314827182296],[-71.0572182210872,42.29340438534865],[-71.05712601275903,42.29360581343294],[-71.05703820995905,42.29376394593982],[-71.05681169427784,42.29414087389902]]]],"type":"MultiPolygon"} +},{ + "id": 1108711939, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000112, + "geom:area_square_m":1027488.255862, + "geom:bbox":"-71.1700600343,42.3572723712,-71.135307714,42.3667551817", + "geom:latitude":42.360382, + "geom:longitude":-71.146818, + "iso:country":"US", + "lbl:latitude":42.358036, + "lbl:longitude":-71.141846, + "lbl:max_zoom":18.0, + "mps:latitude":42.361191, + "mps:longitude":-71.142472, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "N Brighton" + ], + "reversegeo:latitude":42.361191, + "reversegeo:longitude":-71.142472, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807537, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f17c78bd1209eb7ccff3eba8b1c8a515", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711939, + "neighbourhood_id":85807537, + "region_id":85688645 + } + ], + "wof:id":1108711939, + "wof:lastmodified":1566624127, + "wof:name":"North Brighton", + "wof:parent_id":85807537, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85837411 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1700600342531, + 42.35727237120662, + -71.13530771404677, + 42.36675518165985 +], + "geometry": {"coordinates":[[[[-71.13811373229755,42.35727237120662],[-71.13814000000001,42.357278],[-71.138228,42.357283],[-71.138572,42.35733],[-71.141464,42.357683],[-71.14397200000001,42.357997],[-71.144863,42.358122],[-71.145432,42.358191],[-71.145945,42.358226],[-71.14646999999999,42.358253],[-71.147288,42.358255],[-71.14768599999999,42.35824],[-71.14785500000001,42.358227],[-71.14795100000001,42.358219],[-71.14798,42.358221],[-71.14885099999999,42.358125],[-71.14968500000001,42.35802],[-71.150132,42.35796],[-71.15047,42.357925],[-71.150921,42.35789],[-71.15194700000001,42.357827],[-71.152449,42.357802],[-71.153248,42.357785],[-71.154093,42.35776],[-71.15487299999999,42.357723],[-71.15583599999999,42.3577],[-71.156463,42.357677],[-71.157797,42.357641],[-71.16059300000001,42.357551],[-71.16203,42.357511],[-71.16347399999999,42.357452],[-71.164844,42.35742],[-71.165753,42.357386],[-71.166455,42.357373],[-71.167191,42.35737],[-71.168558,42.357404],[-71.16932799999999,42.357432],[-71.16997000000001,42.357463],[-71.1700600342531,42.35746683124481],[-71.16862475060319,42.35895633175907],[-71.16843794192299,42.35914196063006],[-71.16839751253787,42.35915070017197],[-71.16834193535254,42.35916563319341],[-71.1683156847586,42.35917356012419],[-71.16827119397601,42.35919126915386],[-71.16825203478145,42.35919921742475],[-71.1682421468815,42.35920353367834],[-71.16823256847786,42.35920716390624],[-71.16822422937065,42.35920988391904],[-71.16821218679075,42.35921327926432],[-71.16820756194824,42.35921326592188],[-71.16820385727675,42.35921416992375],[-71.16820015261493,42.35921530349824],[-71.16819150037034,42.35921870862257],[-71.16818438975358,42.35922234686656],[-71.16817232318441,42.35923031468712],[-71.1681661399427,42.35923372783358],[-71.16816026261934,42.35923736873425],[-71.16815191510821,42.35924168942466],[-71.1681481996239,42.3592444227731],[-71.16814357599299,42.35924440943158],[-71.16813523687232,42.35924713033814],[-71.16809665809141,42.35925410785458],[-71.168058079316,42.3592613140306],[-71.16801484928422,42.35927353756102],[-71.16797254420531,42.35928576374559],[-71.16795678852979,42.35929189241371],[-71.16793762926527,42.35929984063204],[-71.16789187497376,42.35932303310524],[-71.16784488495348,42.35934667933621],[-71.16782819706245,42.35935394865658],[-71.16780410459917,42.3593621112766],[-71.16778000851397,42.35937073122604],[-71.16776084562622,42.35937982276667],[-71.16774138040161,42.359387541396],[-71.16766195381014,42.35942298480479],[-71.16763785409066,42.35943251940369],[-71.16761498884871,42.35944160022045],[-71.16760169848999,42.35944796463738],[-71.16758871642806,42.35945387259898],[-71.1675741963607,42.35945931876865],[-71.16755010983313,42.3594663379905],[-71.16752479961843,42.35947152429021],[-71.16749948819769,42.35947693925328],[-71.16748283028195,42.35947849179919],[-71.16745506309213,42.3594820702727],[-71.1674371730678,42.35948316190448],[-71.16742977328843,42.35948314050663],[-71.1673866331578,42.35947821362799],[-71.1673635220757,42.3594756313893],[-71.16735181537948,42.35947376814993],[-71.1673410288462,42.3594728222607],[-71.16733363028193,42.35947280086015],[-71.16731204638202,42.35947273842545],[-71.16729045888526,42.35947359066602],[-71.16728212451322,42.35947539593446],[-71.16727379014071,42.35947720120235],[-71.16726514744362,42.35947900557755],[-71.1672484895216,42.35948055808952],[-71.16723029358675,42.35948142013156],[-71.16721209644844,42.35948251083974],[-71.16719666821174,42.35948475291976],[-71.16718586603932,42.35948677971246],[-71.16717042216024,42.35949199448543],[-71.16715343184501,42.35949811947057],[-71.16712099643584,42.35950968788849],[-71.16710648714542,42.35951307597845],[-71.16709228136419,42.35951737963489],[-71.16707868018486,42.35952374309176],[-71.16706446356795,42.35953010476538],[-71.16704624595238,42.35953508281959],[-71.16703420204381,42.35953870671025],[-71.1670221641622,42.35954141592733],[-71.1669922362199,42.35954498803324],[-71.16695244430959,42.35954830289455],[-71.16691173464595,42.35955024304949],[-71.16689477440229,42.35955087994493],[-71.1668765856577,42.35955014124482],[-71.16685994215813,42.35954894967299],[-71.16682633479289,42.35954885231853],[-71.16678316936992,42.35954872726165],[-71.16673968598532,42.3595504306468],[-71.16672057950684,42.35954854590045],[-71.16669808025586,42.3595468799909],[-71.16667404179367,42.35954475227098],[-71.16665215437422,42.35954400281544],[-71.16662965151149,42.35954302289937],[-71.16658374491936,42.35953648699332],[-71.16656802399145,42.35953575539877],[-71.16656217667588,42.35953368039399],[-71.16655601741184,42.35953206182936],[-71.16655016889166,42.3595302154929],[-71.16654309671272,42.35952653712896],[-71.1665381780012,42.35952400657018],[-71.16653357000352,42.35952056312263],[-71.16652865249354,42.35951780479474],[-71.16652373858716,42.35951413268761],[-71.1665200483442,42.35951229170747],[-71.16651542830208,42.35951136362115],[-71.16651050836583,42.35950860528544],[-71.16650588833247,42.35950790587125],[-71.1665021884415,42.35950789514243],[-71.16649510059217,42.35950695989913],[-71.16648647354958,42.35950602019194],[-71.16647938209209,42.35950599962705],[-71.16647198109652,42.35950597816402],[-71.16646611811348,42.3595068758507],[-71.16645871954553,42.35950685439388],[-71.16645161964809,42.35950843450995],[-71.16644576148737,42.35950841751981],[-71.16642753537602,42.35951476838648],[-71.1664025056517,42.35952544249152],[-71.16639879611257,42.35952726111097],[-71.16639508777921,42.35952885106134],[-71.16639168535809,42.35953089924386],[-71.16638798184799,42.35953157451822],[-71.16638427230018,42.35953316446474],[-71.16638056637797,42.35953429707672],[-71.16637562957796,42.35953519744555],[-71.16637347009345,42.3595351911811],[-71.16637100109432,42.35953587003608],[-71.16636884522779,42.35953517776473],[-71.16636761193026,42.35953517418698],[-71.16636761675429,42.35953425951116],[-71.1663660751324,42.35953425503899],[-71.16636608116247,42.35953311169425],[-71.16636515980743,42.35953242300407],[-71.16636516824954,42.35953082232141],[-71.16636393616599,42.35953081874716],[-71.1663639421961,42.3595296754024],[-71.16636271734085,42.35952807114197],[-71.16636149489295,42.35952601044387],[-71.16636026882877,42.35952440527962],[-71.16635535493634,42.35952073226503],[-71.16633876090485,42.35951016519081],[-71.16632186097472,42.35949936855416],[-71.1663148032916,42.35949294524846],[-71.16630743486563,42.35948674971315],[-71.16630160083182,42.35948215933661],[-71.16629944739562,42.35948146707095],[-71.16629699406397,42.35947871588303],[-71.16629453591504,42.35947710804333],[-71.16629208017882,42.3594750428657],[-71.16629086497669,42.35947160925286],[-71.16628994482967,42.35947069189311],[-71.16628841286723,42.35946908674073],[-71.16628842372386,42.35946702872016],[-71.16628719887177,42.35946542445889],[-71.16628720490326,42.35946428111412],[-71.16628628716137,42.35946267774397],[-71.16628629078026,42.35946199173713],[-71.16628352672083,42.35945992566461],[-71.16628261019301,42.35945832229793],[-71.16628045795659,42.35945717269054],[-71.16627768665963,42.35945647863161],[-71.16627400607321,42.35945280919218],[-71.1662681672195,42.35944913348971],[-71.16626233198562,42.35944477178014],[-71.16623932471791,42.35942252378541],[-71.16621693049414,42.35940096358255],[-71.16618836498674,42.35938030015291],[-71.16616072446855,42.359359639401],[-71.16614844704037,42.35934908482874],[-71.16613679591778,42.35933670269357],[-71.16613065720746,42.35933142540625],[-71.16612329124382,42.35932500029323],[-71.16611653709124,42.35931949344628],[-71.1660947258013,42.35930433683994],[-71.16607321800727,42.359290097601],[-71.16606002529467,42.35927771098175],[-71.16604559084487,42.35926692146248],[-71.16602532120508,42.35925176931929],[-71.16601087348695,42.3592434951542],[-71.16599550321853,42.35923476096301],[-71.16598229362447,42.35922557660044],[-71.16596570456252,42.35921409479582],[-71.1659561936475,42.35920514894498],[-71.16594638286352,42.35919437194227],[-71.16593535449367,42.35918107780533],[-71.1659310705797,42.3591746616321],[-71.16592494277685,42.35916755498548],[-71.16591879927007,42.35916319236256],[-71.16591419857971,42.35915860644883],[-71.16589852485214,42.35914872710031],[-71.16587454816637,42.35913516666857],[-71.16585056424238,42.35912274867284],[-71.16583026208106,42.35911377055689],[-71.1658198020739,42.35910939538626],[-71.16580995870689,42.35910479333405],[-71.16579797280194,42.35909766965773],[-71.1657909079625,42.3590923896606],[-71.16578477172663,42.35908688368914],[-71.16577279789794,42.35907701597544],[-71.16573686436827,42.35905038553401],[-71.16572979591508,42.35904602111279],[-71.16571657674176,42.35903866427046],[-71.16570365984664,42.35903245256798],[-71.16569136926537,42.35902441330479],[-71.16567969533087,42.35901637583284],[-71.16566155630993,42.35900649018521],[-71.16563481208473,42.3589913200495],[-71.16560867968072,42.35897706637637],[-71.16559055156139,42.35896512269667],[-71.16557150090209,42.35895271898649],[-71.16555981853365,42.35894628218505],[-71.16554628382093,42.35894029734052],[-71.16553460145734,42.3589338605365],[-71.16552384285134,42.35892765509033],[-71.16551769939551,42.35892329244572],[-71.16551278559875,42.35891961939466],[-71.16550327962852,42.35890975882985],[-71.16549532010418,42.35889898807224],[-71.16548797722498,42.35888821910766],[-71.16548094266948,42.3588774510394],[-71.16547453322313,42.35886508408149],[-71.16546782029522,42.35885180155049],[-71.16546047743094,42.35884103168372],[-71.16545220959686,42.35883026092642],[-71.16544270848689,42.35881948568053],[-71.16542581977428,42.35880640221723],[-71.16540924664619,42.35879194763454],[-71.16539112225095,42.35877931701575],[-71.1653766771428,42.35877058543215],[-71.16536498998936,42.35876506328655],[-71.16536129981431,42.35876322406944],[-71.16535637636187,42.35876138036338],[-71.16535269103545,42.35875862466955],[-71.16534562748494,42.35875334464822],[-71.16534102565619,42.35874898738013],[-71.16533457512431,42.35874439425916],[-71.16532415270632,42.35873270253244],[-71.16530758446883,42.35871756103121],[-71.16528946494994,42.35870401662056],[-71.16527626767333,42.35869254458566],[-71.16526338234773,42.35868015876721],[-71.16523452367827,42.3586567501721],[-71.16522131795421,42.35864710748624],[-71.16521425563727,42.3586415987877],[-71.16514812660859,42.35861122149434],[-71.16512782833439,42.35860132947411],[-71.16510599089547,42.35859143296831],[-71.16508846266915,42.35858246369741],[-71.16507154745834,42.35857441089911],[-71.1650484791774,42.35856382478016],[-71.16502479184334,42.35855369419849],[-71.16501065031322,42.35854587814246],[-71.1649971326913,42.35853669186694],[-71.1649876208041,42.35852797460366],[-71.1649768732199,42.3585197110849],[-71.16496489236386,42.35851167264482],[-71.1649541423604,42.35850363778935],[-71.1649387917961,42.3584912447517],[-71.1649243674114,42.35847862483764],[-71.16491854688962,42.35847151993129],[-71.16491365254255,42.35846418815041],[-71.164900497784,42.35844471175687],[-71.16489469180374,42.35843486282138],[-71.1648873490807,42.35842409381733],[-71.1648812105631,42.35841881646225],[-71.16487538157679,42.35841331133634],[-71.164868019477,42.35840620103486],[-71.16485972273097,42.35840091738945],[-71.16484773100665,42.35839470828539],[-71.16482957775544,42.35838756653307],[-71.16481298185285,42.35837745657399],[-71.16479883675335,42.3583703264986],[-71.1647831646091,42.35836044699981],[-71.1647604096202,42.35834894704531],[-71.16473642621304,42.35833652881509],[-71.16471121923531,42.35832204895978],[-71.16469923360241,42.35831492516771],[-71.16468632180322,42.35830779867397],[-71.16467770221524,42.35830503037205],[-71.16467032318718,42.35830134919595],[-71.16465494484753,42.35829421550676],[-71.16464295437098,42.35828777861246],[-71.16463096511703,42.35828088257487],[-71.16462021155986,42.35827376236728],[-71.16460946528068,42.35826549881725],[-71.16460701692056,42.35826206158907],[-71.16460456249268,42.35825953993354],[-71.1645999643943,42.35825472440064],[-71.16459505313081,42.35825036439898],[-71.16458676612258,42.35824325228198],[-71.16457693511217,42.35823681987817],[-71.1645652602521,42.35822901096067],[-71.16455788002078,42.35822533067404],[-71.16455080810356,42.35822165218652],[-71.16454342302363,42.35821888657495],[-71.16453511057017,42.35821657470259],[-71.16451231929635,42.35821170609609],[-71.16447412547531,42.35820473449656],[-71.164434385216,42.35819844528998],[-71.16442114089142,42.35819566257412],[-71.16440942117985,42.35819631349339],[-71.16439001535383,42.35819282677663],[-71.16436138062122,42.35818542568955],[-71.16433242544423,42.35818031038543],[-71.16430962449212,42.35817749976322],[-71.16428436185436,42.35817376726037],[-71.16426740923447,42.35817280308198],[-71.1642603179272,42.35817278238026],[-71.16425168867229,42.35817207117058],[-71.16424214174641,42.35816998524583],[-71.16420364330401,42.35816209797674],[-71.16416422113232,42.35815397932476],[-71.16413156738886,42.35814839582434],[-71.164098292159,42.35814395386213],[-71.16408134076376,42.35814298965985],[-71.16406469647322,42.35814179767961],[-71.16402525125693,42.35813825236344],[-71.16401663051136,42.35813571178061],[-71.16400338864601,42.35813292902368],[-71.16399169444358,42.3581285500792],[-71.16397816248333,42.35812210771105],[-71.16397077865396,42.3581193420662],[-71.16396400781774,42.3581168068845],[-71.16395046614511,42.35811219386508],[-71.16393260317192,42.35810848290664],[-71.16391597225551,42.35810500421844],[-71.16390149470283,42.35810244651118],[-71.1638882370564,42.3581024077654],[-71.1638762138932,42.3581023726261],[-71.16383396469533,42.35810384984505],[-71.16380311837582,42.3581065037461],[-71.16377166149576,42.3581080124911],[-71.16373928209295,42.35810906118508],[-71.16371893314525,42.35810900168547],[-71.16369704868883,42.35810779432933],[-71.16367670338869,42.35810704881529],[-71.16365388790265,42.35810698209098],[-71.16362983914721,42.35810691175503],[-71.16362182289539,42.3581068883086],[-71.16361689954469,42.35810504452773],[-71.16361320460004,42.35810411903002],[-71.16360950965546,42.35810319353213],[-71.16360581835887,42.35810158202715],[-71.16360089622509,42.35809950957668],[-71.16359627997691,42.35809789536583],[-71.16359135541389,42.35809605158038],[-71.16358673673199,42.35809512337968],[-71.16358180730298,42.35809442294236],[-71.16357224946623,42.35809439498293],[-71.16348932670518,42.35809140830605],[-71.16347391084014,42.35809136319742],[-71.16345818179454,42.3580920031879],[-71.16342827623008,42.35809191567074],[-71.16340793580497,42.35809025543318],[-71.16338728463009,42.35808905162759],[-71.16324670412406,42.3580861246732],[-71.16319643501713,42.35808849286438],[-71.16316158055359,42.35809113485506],[-71.16314831803946,42.35809201069996],[-71.16313474233706,42.35809380031616],[-71.16312518450053,42.35809377231959],[-71.16311439339484,42.35809374070961],[-71.16307492025454,42.35809522578167],[-71.16303420775299,42.35809785057166],[-71.16301972049295,42.35809712210528],[-71.16300522957886,42.35809707964405],[-71.16298363274792,42.35809976042842],[-71.16296326918895,42.35810221615044],[-71.16294382813474,42.35810558926274],[-71.16287440798439,42.35811453268807],[-71.16285498398797,42.35811447574702],[-71.16283217216134,42.35811349418015],[-71.16281060090803,42.35811160155586],[-71.16279733838979,42.35811224868775],[-71.16278409048833,42.35811060913534],[-71.16276959348154,42.35811148131679],[-71.16276251071467,42.35810985983981],[-71.16275511719277,42.35810869479621],[-71.16274709484571,42.35810981463376],[-71.16273846317294,42.35810978932102],[-71.1627218055004,42.35811134117782],[-71.16269159039655,42.35811125256132],[-71.16268079807425,42.35811122090709],[-71.16267124511266,42.35811027819687],[-71.16265552092629,42.35811023207422],[-71.16264133344902,42.35811110514743],[-71.16262683887349,42.35811174864551],[-71.16261819988901,42.35811286666508],[-71.16261110371072,42.3581137605376],[-71.16259075597645,42.35811370084196],[-71.16257163054614,42.35811524543693],[-71.16255712987018,42.35811703227109],[-71.16254263407262,42.35811790442753],[-71.16252937642378,42.3581178655251],[-71.16251612365448,42.35811691194521],[-71.16250441125275,42.35811619155677],[-71.16249084528684,42.35811615174512],[-71.16247172106725,42.35811769632702],[-71.16242359426516,42.35812304321122],[-71.16233472805078,42.35813604533521],[-71.16230571324785,42.35814213430075],[-71.16229027417771,42.35814643374406],[-71.16227483876774,42.35815004717834],[-71.16224798583841,42.35815545646022],[-71.16222020917263,42.35816063435016],[-71.16220630436138,42.35816608165127],[-71.16219766413379,42.35816765698078],[-71.16219024985718,42.35817037927352],[-71.16218068224786,42.35817195187773],[-71.16217234668038,42.35817398544535],[-71.1621516661924,42.35817826947332],[-71.16214950430479,42.35817894914005],[-71.16214579350113,42.35818099629186],[-71.16214209002473,42.35818167142965],[-71.16213869852984,42.3581816614662],[-71.16213622710293,42.35818256889591],[-71.16213251751996,42.3581843873783],[-71.16212913579528,42.35818254806277],[-71.1621266692535,42.35818254081637],[-71.16212420392554,42.35818253357345],[-71.16212174226906,42.35818161165103],[-71.16212051266216,42.35818092202085],[-71.16211835322432,42.35818091567651],[-71.16211681652109,42.35817999647144],[-71.16211589278181,42.35817999375751],[-71.16211466561771,42.35817884678928],[-71.16211219907606,42.35817883954257],[-71.16211096580523,42.3581788359192],[-71.16211003963829,42.35817883319809],[-71.16210880758128,42.35817882957824],[-71.1621072647789,42.35817882504539],[-71.16210633493272,42.35817996567629],[-71.16210510166191,42.35817996205282],[-71.16210386350546,42.35818087310528],[-71.16210262535655,42.35818155548514],[-71.16210014781734,42.35818360715921],[-71.16209921553295,42.35818520422767],[-71.1620976629591,42.35818702904653],[-71.16209641625248,42.35818954078169],[-71.16209547664215,42.35819228209173],[-71.16209547175646,42.35819319676763],[-71.16209423237819,42.35819433648893],[-71.16209422870911,42.35819502339614],[-71.16209422382339,42.35819593807204],[-71.16209267978884,42.35819661865278],[-71.16209267368166,42.35819776199764],[-71.1620905056931,42.3581993563356],[-71.16208803915067,42.35819934908836],[-71.16208587603538,42.35820025832315],[-71.16207352866493,42.35820296611356],[-71.16206179914778,42.35820567481796],[-71.1620494517782,42.35820815483353],[-71.16203648777369,42.3582108599077],[-71.16191109685695,42.35825050905436],[-71.16179062420458,42.35829291659898],[-71.16165953892001,42.35835953298769],[-71.16160418721768,42.35838955491025],[-71.16155099000564,42.35842072650942],[-71.16154136973508,42.35843213182544],[-71.16153422211103,42.3584428584001],[-71.16152799334354,42.35845427369625],[-71.16152207777722,42.35846500389619],[-71.16149285228484,42.35851042371603],[-71.16146278378095,42.3585405199857],[-71.16143363408813,42.35857176231497],[-71.16141810918229,42.35859206846707],[-71.16140474128129,42.35861260964014],[-71.16139383503501,42.35863407274952],[-71.16139006787705,42.35864663864812],[-71.16138784354177,42.35865898041655],[-71.16138781049405,42.35866515447801],[-71.16138654416589,42.35867132490829],[-71.16138404455702,42.35867749170738],[-71.16138278189548,42.35868297703106],[-71.16136353752262,42.3587069300844],[-71.16133440239432,42.35873542836016],[-71.16131891536318,42.3587486466613],[-71.16138442114929,42.35878016768821],[-71.16143362273399,42.3588043231595],[-71.16143144980276,42.35880706083309],[-71.16127907745633,42.35899092222512],[-71.16127628786867,42.35899365807949],[-71.16119755715688,42.35895592387556],[-71.16110990234915,42.35891541925042],[-71.16105114040643,42.35889146413765],[-71.16095969596191,42.35892503813069],[-71.16092481397929,42.35893271015937],[-71.16088900826178,42.35893992210867],[-71.16085258954688,42.35894690356657],[-71.16081770019507,42.35895571890374],[-71.16076361518074,42.35897956999779],[-71.16071075237441,42.35900548272487],[-71.16064582449263,42.35903890602118],[-71.16063467705816,42.35904779225672],[-71.16062383304511,42.35905759227608],[-71.16061514727801,42.35906739956373],[-71.1606080129331,42.35907538204876],[-71.16060118690845,42.35908336544323],[-71.16059252076423,42.3590895140265],[-71.16058384847902,42.35909680685393],[-71.160575496793,42.359101812101],[-71.16056590935328,42.35910727284588],[-71.16055509354057,42.35911181347372],[-71.16054428385193,42.35911521255648],[-71.16053471482338,42.35911724146456],[-71.16052391495448,42.35911881029388],[-71.160514353278,42.35911946898734],[-71.16050355095871,42.35912149425231],[-71.16048165639516,42.35912211563588],[-71.16046128627325,42.35912571425884],[-71.16043627533041,42.35913272926408],[-71.16041063547569,42.3591418004596],[-71.16036028809162,42.35915834487913],[-71.16031675812464,42.3591689648272],[-71.16027353157244,42.35918027077234],[-71.16018706001587,42.35920608307459],[-71.16017872178645,42.35920857473538],[-71.16009776431241,42.35924126433951],[-71.16001955708292,42.3592785354675],[-71.16000502657221,42.35928581003294],[-71.1599979081078,42.35929081888383],[-71.15999202046699,42.35929629051873],[-71.15998459244337,42.35930152802639],[-71.15996539528471,42.3593165636559],[-71.15994592175321,42.35932565297926],[-71.15992551464117,42.35933634024646],[-71.15990512350402,42.35934405481441],[-71.15989060650416,42.35934858533498],[-71.15987514607446,42.35935677182409],[-71.15986062412017,42.35936267436137],[-71.15984608744455,42.35937086267828],[-71.15983494228273,42.35937952017035],[-71.15982533014872,42.35938955333067],[-71.15982067824241,42.35939457036651],[-71.1598157192572,42.35939912914878],[-71.15980983772812,42.35940368520198],[-71.15980488118507,42.3594080153185],[-71.159732636295,42.3594256380506],[-71.15961501606726,42.35945295936862],[-71.15955856449308,42.35945805174463],[-71.15954036846,42.35945891257003],[-71.15952124374554,42.35946068533334],[-71.15950211290982,42.35946314409286],[-71.15948389225673,42.35946857828699],[-71.15946720829665,42.35947493171839],[-71.15943076943672,42.35948534275485],[-71.1593718019746,42.35949957448999],[-71.15936008075077,42.35950022579124],[-71.15934773914931,42.35950201861633],[-71.15933600805587,42.35950472793858],[-71.15932365661871,42.35950812143962],[-71.15931315267977,42.35951174908471],[-71.15930448756565,42.35951789757393],[-71.15929736778322,42.35952313595037],[-71.15929024676811,42.35952860299518],[-71.15928280759228,42.3595356698047],[-71.15927599734428,42.35954090909677],[-71.15926856678708,42.35954637522322],[-71.15925775324693,42.3595506879636],[-71.15924693725488,42.35955523026848],[-71.15923581295961,42.35955954208607],[-71.15922408185556,42.35956225049657],[-71.15921173531063,42.35956495798256],[-71.1592000005039,42.3595683532975],[-71.15918797092307,42.35956923234],[-71.15917594012794,42.35957011137761],[-71.15916391668848,42.35957007574567],[-71.15915189082128,42.3595700401053],[-71.15913986616795,42.35957000446726],[-71.15912661928819,42.35956813582521],[-71.15911337860705,42.35956466649235],[-71.15910013544443,42.35956188316815],[-71.15908813542062,42.35955750281972],[-71.15907490583518,42.35955197546256],[-71.15906783409328,42.35954829573869],[-71.15905952905494,42.3595446123583],[-71.15905090950757,42.35954230098037],[-71.15904136503494,42.35953952771407],[-71.15903305137167,42.35953744501384],[-71.15902350194672,42.35953581599428],[-71.15901516856319,42.35953739199474],[-71.15900652190575,42.3595401104284],[-71.15899787281985,42.3595428288542],[-71.15898983787885,42.35954646379045],[-71.15898118878651,42.35954918311527],[-71.15897438837393,42.35955259303854],[-71.15896696272519,42.3595571435697],[-71.15893915681959,42.35956758004959],[-71.15891012006799,42.35957755642757],[-71.15888265206699,42.35958250485508],[-71.15885395815287,42.35958607940502],[-71.15879717341151,42.35959574296964],[-71.15875518329517,42.35960636599534],[-71.15873449717316,42.35961156408289],[-71.15871318946371,42.35961767501227],[-71.15869499337319,42.3596185357039],[-71.158677105602,42.359619398208],[-71.15865892432188,42.35961751396724],[-71.15864104518805,42.35961677578366],[-71.15856767381685,42.35961449903108],[-71.15847516282089,42.35961696842007],[-71.15842828758963,42.35961865949145],[-71.15838264565944,42.35962035330677],[-71.15834193694786,42.3596218321866],[-71.15818097168892,42.35962501354949],[-71.15808975084104,42.35961673795375],[-71.15804260559898,42.35961133831636],[-71.15799730538993,42.35960663016389],[-71.15798744516164,42.35960568615168],[-71.15784228240129,42.35959450766341],[-71.15775070879798,42.35959423518802],[-71.15765943855136,42.35959510600517],[-71.15756694737252,42.35959368818969],[-71.15747445868382,42.35959181116165],[-71.15743962051339,42.3595910213809],[-71.15726204541302,42.35958683356101],[-71.15724508877948,42.35958678302684],[-71.15706601921315,42.35957367222098],[-71.15701333045041,42.35956711226857],[-71.15695909387668,42.35956169103792],[-71.15692826143953,42.35956159906797],[-71.1568968024318,42.35956333460086],[-71.15683450602181,42.35956589280546],[-71.15675870164787,42.3595576630527],[-71.15668165034037,42.35955194582595],[-71.15660858122791,42.35955081298841],[-71.15658329366872,42.35955165217197],[-71.156559244372,42.35955158035754],[-71.1565352000415,42.35955059386266],[-71.15650747444481,42.35954616627972],[-71.15649454094375,42.3595433826797],[-71.15648007704912,42.35953808000927],[-71.15646808220635,42.3595325560396],[-71.15645516115127,42.35952725797451],[-71.15644069350994,42.35952286997808],[-71.15642745419943,42.35951940033957],[-71.15638152880521,42.3595165190628],[-71.15633497185969,42.35951637995117],[-71.15624246967577,42.35951678951738],[-71.1561965256214,42.35951756687186],[-71.15614996124688,42.35951857102592],[-71.1561126540248,42.35951845947875],[-71.15606456664692,42.35951625762839],[-71.15601648794679,42.35951268374853],[-71.15586512820269,42.35950697146897],[-71.15580868623189,42.35951023265351],[-71.15575224301089,42.35951372247921],[-71.15572604168302,42.35951250068607],[-71.15571617531135,42.35951247115081],[-71.15570785429389,42.35951176022324],[-71.1556983012248,42.3595108169341],[-71.15568967810664,42.35950896173797],[-71.15568105872293,42.35950642053475],[-71.15567305349872,42.35950433851468],[-71.1556706018422,42.35950158710379],[-71.15566721899037,42.35949997626763],[-71.1556644590102,42.35949722393343],[-71.15566231567345,42.35949447434569],[-71.15566078277118,42.35949286814788],[-71.15565863943965,42.35949011765983],[-71.15565772318068,42.3594885142085],[-71.1556549594673,42.35948644788063],[-71.15565281613624,42.35948369739244],[-71.15565128201079,42.35948209299139],[-71.15564912869606,42.35948139962609],[-71.15564173891009,42.35947931944656],[-71.15563588075501,42.3594793019058],[-71.15562879801791,42.35947767998997],[-71.15562139447772,42.35947857251136],[-71.15561553632277,42.35947855496954],[-71.15560813281331,42.35947921881758],[-71.15560226967857,42.35948011595046],[-71.15559517200292,42.35948123805865],[-71.15558868848009,42.35948282025097],[-71.15558282036967,42.35948463115793],[-71.15548189257476,42.35950376603005],[-71.15545442560979,42.3595082571978],[-71.15536281473624,42.35951507155864],[-71.15527027263985,42.35952302641807],[-71.15517897129571,42.35952961288783],[-71.15510093535445,42.35953486703234],[-71.15501581795218,42.35953804182908],[-71.15493039217878,42.35954144521042],[-71.15486067343819,42.35954832485467],[-71.15479218555683,42.35955520725095],[-71.15471043967466,42.35956227937543],[-71.15462870001156,42.35956820899793],[-71.15446267536915,42.35959446409273],[-71.15428615879914,42.3596222890182],[-71.15419816256679,42.35964443437999],[-71.15415492834062,42.35965688226856],[-71.15411262032715,42.3596691033536],[-71.15411046205318,42.35966909686257],[-71.15402491474843,42.35969467954577],[-71.15393967069583,42.35972117776814],[-71.1539368957699,42.35972116941832],[-71.15385288494565,42.35974767128727],[-71.1537682374131,42.35977760126668],[-71.153741977149,42.35978735512779],[-71.15366008941764,42.35982003740749],[-71.15357942985737,42.35985386669112],[-71.15357108627819,42.35985727164737],[-71.1534928857149,42.35989248031272],[-71.15345300769575,42.35991133998106],[-71.15341344545701,42.35992905722438],[-71.15338068399201,42.35994313618976],[-71.15334112676476,42.35995971006047],[-71.15330125492422,42.35997742633199],[-71.15322058995717,42.3600121700379],[-71.15321471670576,42.36001489729949],[-71.1530700436676,42.36008306274566],[-71.15301681080453,42.36011926109111],[-71.15300009341055,42.36013155897162],[-71.1529818318655,42.36014430953561],[-71.15296265285832,42.3601556852929],[-71.15293855943135,42.3601636152282],[-71.15291230267889,42.36017245512055],[-71.15288699219585,42.36017763820167],[-71.15280978741599,42.36019958639928],[-71.15274240006639,42.36023071109067],[-71.15267378059512,42.36026160334899],[-71.152608903687,42.36028473200405],[-71.15254370961154,42.36030946037223],[-71.15247605262921,42.36033349524368],[-71.15241024305163,42.36035799300382],[-71.15233799501692,42.36037561108699],[-71.15226452489846,42.3603913960494],[-71.15212507246098,42.36040698140352],[-71.1520180233734,42.36041740606709],[-71.15196873867414,42.3604083378065],[-71.15195704731207,42.36040395764792],[-71.15195212290874,42.36040211336499],[-71.15194627976707,42.36039935161133],[-71.15189073657176,42.36040741571917],[-71.15183549170666,42.36041685363904],[-71.15174536160764,42.36043441631483],[-71.15170091318906,42.36044320084416],[-71.15165646598199,42.36045198355941],[-71.15157221673564,42.36046522093356],[-71.15148088845,42.36047637784101],[-71.15138926571136,42.36048478971271],[-71.15129672170181,42.36049274047283],[-71.1512282386622,42.3604987069743],[-71.15113693422802,42.36050551890247],[-71.1510903614312,42.36050812169261],[-71.15104440528343,42.36051072723519],[-71.15095187128162,42.36051684926817],[-71.15086055796191,42.36052526075779],[-71.15084142641442,42.3605279476488],[-71.15075009285935,42.36054001865065],[-71.15065966910309,42.36055483641435],[-71.15056985443326,42.36057079932048],[-71.15052541081879,42.36057866691979],[-71.15047943059575,42.36058561604213],[-71.15038930492496,42.3606022647802],[-71.15038683829019,42.36060225728203],[-71.15038467492955,42.36060316539592],[-71.15029425100241,42.36061798197187],[-71.15024857272842,42.36062607618327],[-71.15020258738764,42.36063393896944],[-71.15011279140604,42.36064670106019],[-71.15005880216478,42.36065202404066],[-71.14996627418748,42.36065700193689],[-71.1498737689723,42.36065786462202],[-71.14982659454195,42.36065772099844],[-71.14978127008948,42.36065758298892],[-71.14968875727804,42.36065981663727],[-71.14966191740436,42.36066247895271],[-71.14956937924649,42.3606692858793],[-71.14947805918251,42.36067884051479],[-71.14943239090309,42.36068510415197],[-71.14938703733496,42.360689996695],[-71.1492953999557,42.36070137959882],[-71.14925590843589,42.36070560394771],[-71.14916675038593,42.36071447891197],[-71.14907421209875,42.36072128544008],[-71.14898289188493,42.36073083968228],[-71.1489467931694,42.36073507428012],[-71.14885669227392,42.36074714754238],[-71.14876534659675,42.36076127498578],[-71.14867492084539,42.3607760911846],[-71.14865331868265,42.36077945528231],[-71.14856319607127,42.36079541568236],[-71.148474292758,42.36081389513693],[-71.14842612967915,42.36082518154628],[-71.14833934519021,42.36085075622355],[-71.14829855916638,42.36086595256957],[-71.1482562402549,42.36088000085009],[-71.14824172206347,42.36088453079901],[-71.14820001349268,42.36089949471559],[-71.14815769962431,42.36091262828504],[-71.14807336119991,42.36094186900602],[-71.14801094352974,42.36096568861398],[-71.1479287391042,42.36099928053896],[-71.14784961790546,42.36103288184575],[-71.1477701781,42.36106831240321],[-71.14775781427744,42.36107376267898],[-71.1477460696627,42.36107875750474],[-71.14770742887683,42.36109647560988],[-71.14766785676541,42.36111510553931],[-71.14758933277841,42.36115236725767],[-71.14751326394874,42.36119146582759],[-71.1474903773429,42.36120374400074],[-71.14748076807119,42.36121286145045],[-71.14747115624796,42.36122243623671],[-71.14746278157445,42.36123132879658],[-71.14743487872391,42.36125868397185],[-71.14737697708073,42.36130218292001],[-71.14731415605019,42.36134315225555],[-71.14719258968196,42.36141298187969],[-71.14712857980051,42.36144571435428],[-71.1470636460091,42.36147867173021],[-71.14700204906528,42.36152101668652],[-71.14695602642129,42.36159062055191],[-71.14694859826285,42.36159585721865],[-71.14672452666515,42.36174494968814],[-71.14672112093395,42.36174745462488],[-71.14660795100114,42.36180427508489],[-71.14652300972331,42.36188587882929],[-71.14650997528831,42.36190093205675],[-71.14653512726532,42.36192433395794],[-71.14635411926932,42.3620369704339],[-71.14622014036998,42.36212025343918],[-71.14613007540909,42.36218057368412],[-71.14605392511268,42.36223384873266],[-71.14597311634627,42.36229305577717],[-71.14592325897642,42.3623313183822],[-71.1458464340988,42.36239465370723],[-71.14579561313974,42.36243977436541],[-71.14573146311839,42.36249743093348],[-71.14565551277792,42.3625701434966],[-71.14558199579993,42.36264835164781],[-71.14551528766833,42.36272223685958],[-71.14548889810423,42.36275439834498],[-71.14548885838144,42.36276148617006],[-71.14548723210025,42.36277657354292],[-71.14548224483643,42.36278616241567],[-71.14547542162887,42.36279323023142],[-71.14546460409285,42.36279777123677],[-71.14545348975531,42.36280025237337],[-71.14544391968543,42.36280228002412],[-71.14543559450551,42.36280225435954],[-71.14543312778557,42.36280224675511],[-71.14543094505227,42.36280658480377],[-71.14540674967782,42.36283235110438],[-71.14540519772233,42.36283417569966],[-71.14539806103835,42.36284215633405],[-71.14539306350071,42.3628535745512],[-71.14538933906161,42.36285790784568],[-71.14538469344681,42.36286155228232],[-71.14538128118772,42.36286520142183],[-71.14537756572071,42.36286793403606],[-71.14537508874254,42.36286975577881],[-71.14537260791833,42.36287226352717],[-71.14537012196597,42.36287568594967],[-71.14536794307176,42.36287933799138],[-71.14536514749656,42.36288298813161],[-71.14536295449983,42.36288915552733],[-71.14536199871048,42.36289464072028],[-71.14535822426808,42.36290789208722],[-71.14533854880845,42.36295242255493],[-71.14533386343851,42.36296315571441],[-71.14532887613679,42.36297274458008],[-71.14531917781564,42.36299763997528],[-71.14531416749799,42.36301111620181],[-71.14530947314412,42.36302345003997],[-71.14530446525022,42.36303692627347],[-71.14529853503163,42.36304948497228],[-71.14529477588543,42.36306022098645],[-71.14529101552397,42.36307095699671],[-71.14528758530129,42.36307780659256],[-71.14528385058337,42.36308396923175],[-71.14527887608259,42.36309127230988],[-71.14527139125983,42.36310634070971],[-71.1452632692224,42.3631250677041],[-71.14525576387356,42.36314379479941],[-71.14525354014795,42.36315522156528],[-71.1452507060131,42.36316596043085],[-71.14524600521824,42.36317943850895],[-71.14524099102826,42.36319359983707],[-71.14523875946642,42.36320685595824],[-71.14523718062867,42.36321325481831],[-71.14523498369205,42.36322033688898],[-71.14522904055409,42.36323541004109],[-71.14522157884618,42.36324613553183],[-71.14521564595783,42.36325938023515],[-71.14520942004685,42.36327010863688],[-71.14520472950115,42.36328175646442],[-71.14519008221293,42.36330938065055],[-71.14517451116684,42.36333677331233],[-71.14516332489531,42.36335205895777],[-71.14515244823383,42.36336711868537],[-71.14514652943038,42.36337784803098],[-71.1451390343434,42.36339451799741],[-71.14513400200987,42.36341233892425],[-71.14513179621268,42.36342056432779],[-71.14512897622562,42.36342855916372],[-71.14512303425168,42.36344363321361],[-71.14511585383951,42.36345938945934],[-71.14510743627079,42.36347559923212],[-71.14509774163436,42.36349980860029],[-71.14509397223243,42.36351214528266],[-71.14508896425392,42.3635256215053],[-71.14508086142325,42.36354068978507],[-71.14505156403966,42.36359639545749],[-71.14502479495297,42.36364113264659],[-71.14501484325135,42.36365619341463],[-71.14500304660788,42.36367033469772],[-71.14499343146949,42.36368036660863],[-71.14498258038401,42.36369085204864],[-71.14496551106427,42.36371046609205],[-71.14496177628267,42.36371662781965],[-71.14495958192917,42.36372302477529],[-71.14495677852265,42.36372827558813],[-71.14495332647822,42.36373878386534],[-71.1449508032525,42.36374883676443],[-71.14494487154383,42.36376185278378],[-71.14493895779739,42.36377166834401],[-71.14493523198951,42.36377623029138],[-71.14493243121539,42.36378079509434],[-71.14493024327966,42.36378604780656],[-71.14492897909439,42.36379153204293],[-71.14492521863244,42.36380226713922],[-71.14492147869699,42.3638093453399],[-71.14490339058763,42.36384564841784],[-71.1448766315609,42.36388855622199],[-71.14487196786777,42.36389540199602],[-71.14486607849514,42.36390087195053],[-71.14485863840775,42.36390793782377],[-71.14485027841793,42.36391408616616],[-71.14484068504471,42.36392023069936],[-71.14483325393972,42.36392569589147],[-71.14482828574555,42.36393185470602],[-71.14482363103181,42.36393709979851],[-71.14481990648984,42.36394143307353],[-71.14481647873694,42.36394782531702],[-71.14481148100703,42.36395924350607],[-71.14480897828932,42.36396563860602],[-71.14480524860851,42.36397088655445],[-71.14480182598874,42.36397636412351],[-71.14478350389599,42.36399940345672],[-71.14477387968368,42.3640110360279],[-71.14474877395384,42.36403405530431],[-71.14473422133538,42.36404475705955],[-71.1447208982383,42.36405614952849],[-71.14469176213484,42.36408304377429],[-71.14465950914928,42.36411587296656],[-71.14464585326958,42.36413160917512],[-71.1446315781257,42.36414779991328],[-71.14460119834791,42.36417629100036],[-71.14455997487002,42.36421435191152],[-71.14453952888648,42.36423121048552],[-71.14451816299132,42.3642471515229],[-71.14449709393719,42.36426492285336],[-71.14449242889008,42.36427199727985],[-71.14448404311243,42.36428271896453],[-71.14448032366774,42.36428613755433],[-71.14447813953267,42.36429070425192],[-71.14447442008719,42.3642941228415],[-71.14447070449711,42.36429685542556],[-71.1444660638648,42.36429958515],[-71.14445739151556,42.36430664628755],[-71.14445150334909,42.36431188845212],[-71.14444654801218,42.36431553189275],[-71.14443569030018,42.36432716062201],[-71.14442361583333,42.36433604151936],[-71.1444177405923,42.36433876742506],[-71.1444106293184,42.3643421755264],[-71.14440413345322,42.36434581420243],[-71.14439825042577,42.36435014079012],[-71.14439236739751,42.36435446737751],[-71.14437563563719,42.36436882200887],[-71.14434994764375,42.3643856643408],[-71.14433541544379,42.36439270824956],[-71.14432243005078,42.36439907092253],[-71.14431407387322,42.3644043045477],[-71.14430540926956,42.36440976679112],[-71.14429704530706,42.36441660019772],[-71.14428495415858,42.36442822509808],[-71.14427162961384,42.36443984618247],[-71.14426450803268,42.36444508362238],[-71.14426079242462,42.36444781619955],[-71.14425615177221,42.36445054591549],[-71.14424750259502,42.36445326323273],[-71.14423203632111,42.36446190494631],[-71.14421749250988,42.36447100775649],[-71.14420079798491,42.36447873007648],[-71.14416803082685,42.36449303507158],[-71.14413681553705,42.3645059737245],[-71.1441043476201,42.36452210900681],[-71.14408857046583,42.36453097751128],[-71.14407157262984,42.36453801375693],[-71.14405488707163,42.36454413627676],[-71.14402339048232,42.36455204323485],[-71.1439922010247,42.36455995023467],[-71.1439307340402,42.36457873977376],[-71.1438970545282,42.36459098291504],[-71.14386214553896,42.36460230845007],[-71.14384454905993,42.36460591272206],[-71.14367474598092,42.36464288997334],[-71.14359017719896,42.36465703430987],[-71.14355808957862,42.36466036405998],[-71.14354575045809,42.36466124140995],[-71.14353402932899,42.36466189110126],[-71.14348342915576,42.36466722240633],[-71.14343282389295,42.36467323969074],[-71.1433125419608,42.36467744018795],[-71.14313032312238,42.36467413088334],[-71.14297649177726,42.36466747932418],[-71.14283352885975,42.36464736963563],[-71.14274481089268,42.36463177304882],[-71.14272787503539,42.36462737476627],[-71.14271247825359,42.36462366908011],[-71.14269061002858,42.36461925637039],[-71.14266905136942,42.36461484461825],[-71.14263917650058,42.36460834807139],[-71.14260931180762,42.36460048131426],[-71.14258651346667,42.36459675081159],[-71.14256340798862,42.36459302025021],[-71.14254801510648,42.36458862763644],[-71.14253230482694,42.36458583564158],[-71.1425024260252,42.3645802546369],[-71.14248671567638,42.36457769040772],[-71.14247100419335,42.36457489750045],[-71.14246146090238,42.36457212286511],[-71.14245346322252,42.36456866881702],[-71.14244484497888,42.36456589705594],[-71.1424220620883,42.36455965207195],[-71.14239435079746,42.36455247707055],[-71.1423669478563,42.36454530392153],[-71.14231154600017,42.36452729429021],[-71.14225644734064,42.36451020206547],[-71.14224197962918,42.36450558271542],[-71.1422275078759,42.36450210761346],[-71.14220842650158,42.36449564542838],[-71.14219180940914,42.36448941957879],[-71.14217582963349,42.36447976562263],[-71.14216782931416,42.36447699756366],[-71.14216044844328,42.36447331584122],[-71.1421509103558,42.36446962650636],[-71.14208719996722,42.36444884774655],[-71.14206686719631,42.36444535438569],[-71.1420456157739,42.36444094347231],[-71.14202744395128,42.36443722815726],[-71.14201297618798,42.36443283835077],[-71.14199850842671,42.36442844854248],[-71.14198066566642,42.36442107548479],[-71.14193514668497,42.36440035326432],[-71.14191978496089,42.36439047252382],[-71.14190380007362,42.36438173320337],[-71.14187182901773,42.36436448322424],[-71.14183706601987,42.36435019728405],[-71.14180937042572,42.3643402781201],[-71.1417899795006,42.36433404357353],[-71.14177089304168,42.36432849598938],[-71.14175642920627,42.36432342014518],[-71.14174319617229,42.36431880547788],[-71.14172165200993,42.36431164952285],[-71.14170009878559,42.3643060942428],[-71.14163916650679,42.36428463787003],[-71.14162931372987,42.36428186310129],[-71.14162346549841,42.36428001549926],[-71.14157342892112,42.36434937601287],[-71.14160972193631,42.36436572485265],[-71.14158295535434,42.36440931788694],[-71.14118136056287,42.36426720348295],[-71.14120105362578,42.36422015838681],[-71.14124536211079,42.36423698969192],[-71.14128148705248,42.36417398876055],[-71.14127933381329,42.36417306735497],[-71.14127194386901,42.36417121492654],[-71.14126487265165,42.36416753321167],[-71.14125164357677,42.3641622324823],[-71.14120609518818,42.36414676934621],[-71.14119039416249,42.36414237558844],[-71.1411783842162,42.3641395940512],[-71.14116514606889,42.36413589489123],[-71.14115222016642,42.36413150978616],[-71.14113897683831,42.36412872439666],[-71.1411195756652,42.36412431908426],[-71.14110047773492,42.36412060073233],[-71.14108816455676,42.36411713222196],[-71.14107646296613,42.36411435163625],[-71.14105735976733,42.36411177662313],[-71.1410225425934,42.36410709361024],[-71.14098771373378,42.3641044704033],[-71.14095874476423,42.36410163500548],[-71.14093099757882,42.36410063369485],[-71.1409177437929,42.36409990719987],[-71.14090479974607,42.36409872252484],[-71.14087705645751,42.3640970351959],[-71.1408508599211,42.36409489624546],[-71.14083483501111,42.3640932445972],[-71.14081727363897,42.36409044658667],[-71.14080033537395,42.36408673492918],[-71.1407763011737,42.36408391489664],[-71.14075226194512,42.36408155308874],[-71.14073192667854,42.36407874640098],[-71.14071159141886,42.36407593880931],[-71.14067306374508,42.36407307347944],[-71.14061296223591,42.3640683122479],[-71.140584289947,42.36406753663541],[-71.14055531710399,42.36406538894179],[-71.1405349792575,42.3640630386558],[-71.14051309838271,42.36406091221586],[-71.14048813795296,42.36405808922812],[-71.14046193122456,42.36405732129186],[-71.14045453213359,42.36405729816219],[-71.14044589333112,42.36405795717404],[-71.14044095450932,42.36405908509708],[-71.14043632411928,42.36405998531165],[-71.14042798967171,42.36406156086392],[-71.14041843094385,42.36406153098029],[-71.14041009520594,42.36406333339917],[-71.14039930309359,42.36406329965785],[-71.14037371305109,42.36406253452984],[-71.14034997690499,42.3640613169479],[-71.14033794612175,42.36406242269004],[-71.14032592062537,42.36406238508498],[-71.14030680316951,42.36406232529995],[-71.14028614276947,42.36406226068618],[-71.14025961712407,42.36406377753108],[-71.1401960575125,42.36407066756308],[-71.1401457555569,42.36407759904037],[-71.14009760151779,42.36408659526938],[-71.14004945917615,42.36409353346232],[-71.14002262394662,42.36409505018404],[-71.13999763228607,42.36409771603246],[-71.13990384035893,42.364107026669],[-71.13988100190012,42.36411061482369],[-71.13983284267827,42.36412029694326],[-71.13980290305174,42.36412569042478],[-71.13977387812456,42.36413268837108],[-71.13975844647958,42.36413515543628],[-71.13973314002217,42.36413873493132],[-71.13970660780876,42.36414139679132],[-71.13963562299182,42.36415260803148],[-71.13961154470033,42.36415710513756],[-71.13956830582289,42.36416931886151],[-71.13952507605585,42.36417993098996],[-71.13949111752649,42.36418691340236],[-71.13947198439909,42.36418959659937],[-71.13945284604623,42.36419319626732],[-71.13943494108311,42.36419679889846],[-71.13942042011597,42.3642017832705],[-71.13940466835643,42.36420630823753],[-71.13938058602743,42.36421171997267],[-71.13935526117062,42.36421873031482],[-71.13933271143492,42.36422574845338],[-71.13932159008671,42.36422937233866],[-71.13931077838801,42.36423276852141],[-71.13929164001799,42.36423636726231],[-71.13927713858577,42.36423792249028],[-71.13927127347444,42.36423904745804],[-71.13926386802247,42.3642397102494],[-71.13924719120659,42.36424423139326],[-71.13921691321195,42.36425465535648],[-71.13918540051488,42.36426530411089],[-71.13917860896339,42.36426688351262],[-71.13917490227689,42.36426801524675],[-71.13917119568073,42.36426891830848],[-71.13916408413201,42.36427232608547],[-71.13915696606016,42.36427687720411],[-71.13915449537004,42.36427755547028],[-71.13915202328998,42.36427869017673],[-71.13914954737662,42.36428028401669],[-71.13914584599739,42.36428027240398],[-71.13914368356355,42.3642811803095],[-71.13914090722562,42.36428117159888],[-71.13913782496844,42.36428116192839],[-71.13913504863052,42.36428115321764],[-71.13913134846518,42.36428114160829],[-71.13912333144032,42.36428111645426],[-71.13911376615685,42.36428222980428],[-71.13910389634914,42.36428288485292],[-71.13909278672004,42.36428445070035],[-71.13908321230237,42.36428716472669],[-71.13907240450044,42.36428987398151],[-71.13906560920562,42.3642916829376],[-71.13905819051543,42.36429508974425],[-71.13904241661982,42.36430327245205],[-71.13903159044844,42.36430941263321],[-71.13902107019432,42.36431555377347],[-71.13896294820215,42.36434212602587],[-71.13888598815034,42.36437389857272],[-71.13887146326921,42.36437934110854],[-71.13885694090506,42.36438455497788],[-71.13882447823201,42.36439954542814],[-71.13877130009193,42.3644243037283],[-71.13871719033619,42.36445020244001],[-71.13870049382885,42.3644581544306],[-71.13868226080714,42.36446518600167],[-71.13865473685074,42.36447927632826],[-71.13863647769087,42.3644908812599],[-71.13861853209819,42.36450157248385],[-71.13859069060757,42.36451726430549],[-71.1385678114319,42.36452793911871],[-71.13854368839647,42.36454044029861],[-71.13852946908978,42.36454656976902],[-71.13848333567276,42.36457958318574],[-71.13846754454833,42.36459096717535],[-71.13845206568799,42.36460166612694],[-71.13843659205065,42.36461145040283],[-71.13842916955402,42.36461508582943],[-71.13838929191036,42.36463256824405],[-71.13835808322426,42.36464413151742],[-71.13834968197108,42.36465736900636],[-71.13833637468524,42.36466555937302],[-71.13831692908737,42.36466892831339],[-71.138308885863,42.36467347647022],[-71.13830235038597,42.36468397485275],[-71.13830018671221,42.36468488273851],[-71.13829925120446,42.36468670917652],[-71.13829646560214,42.3646885297964],[-71.13829554055485,42.36468852688732],[-71.13829276149033,42.36468920416519],[-71.13828316334609,42.36469626282768],[-71.13827231760604,42.36470537561814],[-71.13826394640905,42.36471335282768],[-71.13825680860695,42.36472133391582],[-71.13823852446129,42.36473728258254],[-71.13821684322127,42.36475413705148],[-71.13817938644688,42.36477963054506],[-71.13815895820136,42.36479305795706],[-71.13814068839477,42.36480649215614],[-71.13812023004323,42.3648251789337],[-71.13810100115413,42.36484455559351],[-71.13809386200833,42.36485276533965],[-71.13809014217962,42.3648561846226],[-71.13808642105245,42.3648598307733],[-71.13808177094486,42.36486416091836],[-71.13807558301197,42.36486780020682],[-71.13806816298688,42.36487120694531],[-71.13806135835257,42.36487484429236],[-71.13805393701743,42.36487847969833],[-71.13804682010603,42.3648828020793],[-71.13803474341704,42.36489168320123],[-71.13801769256675,42.36490763571377],[-71.13800095528239,42.36492267632131],[-71.13797679020448,42.36494226519636],[-71.13795386617134,42.36496094418317],[-71.13791511817182,42.36499649511498],[-71.13787760353172,42.36503204991666],[-71.13787171999405,42.36503637616985],[-71.13786552165423,42.36504161612148],[-71.1378425870784,42.36506212443254],[-71.13782211162533,42.36508355607273],[-71.1378016177368,42.36510841683795],[-71.13778606792761,42.36513146378964],[-71.13776867323692,42.36515359023906],[-71.13775688386107,42.36516613009569],[-71.13773270139295,42.36518914985156],[-71.13772030456354,42.36519985841135],[-71.13770729747964,42.3652096503577],[-71.1376794279502,42.36523014309122],[-71.13765063587113,42.36525040423911],[-71.13763236592051,42.36526360968392],[-71.13761563762588,42.36527704865552],[-71.13760016500412,42.36528660414908],[-71.13758406912271,42.36529730103905],[-71.13757228361408,42.36530915487136],[-71.13755865584973,42.36531963086239],[-71.13754565002648,42.36532919412185],[-71.13753234370918,42.36533738439802],[-71.13752645880911,42.36534193930161],[-71.13751903345725,42.3653462606777],[-71.13751314986067,42.3653505878125],[-71.13750075024507,42.36536198235707],[-71.13747931929282,42.36538889726263],[-71.13745604475467,42.36541466389094],[-71.13743557158637,42.36543586589581],[-71.13741510233669,42.36545638189195],[-71.13739093414448,42.36547665845093],[-71.13736676342224,42.36549716186871],[-71.13734161376952,42.36552726733836],[-71.13731462960462,42.3655548525209],[-71.13730997283724,42.36556032597579],[-71.13730749552126,42.36556214754368],[-71.13730501296043,42.3655648837848],[-71.1373028387579,42.36556762009794],[-71.13730004924656,42.36556989892642],[-71.13730004269055,42.36557104226804],[-71.13729910966593,42.36557264003303],[-71.1372991044211,42.3655735547063],[-71.13729909393145,42.36557538405288],[-71.13729786051792,42.36557538016342],[-71.13729413283875,42.36557994185758],[-71.1372823602385,42.36558973764836],[-71.13726996053444,42.36560113216745],[-71.13726530910247,42.36560546227501],[-71.13725910128244,42.36561276021585],[-71.13724701395491,42.36562324102778],[-71.13723492128015,42.36563486518379],[-71.13720700550635,42.36566336119201],[-71.1371828004479,42.36569003951888],[-71.13716852041361,42.36570668756195],[-71.13715392545895,42.365724477972],[-71.13714679658496,42.36573085831125],[-71.13713966377424,42.36573792465493],[-71.13713221857442,42.36574590470251],[-71.13712631393001,42.36575388960986],[-71.13712259793671,42.36575662195564],[-71.13712040675827,42.36576210318137],[-71.13711760664408,42.36576643912368],[-71.13711760139661,42.36576735379694],[-71.1371175856542,42.36577009781664],[-71.13711757646597,42.36577169939511],[-71.13711756991179,42.36577284183637],[-71.13711756072873,42.36577444251454],[-71.13711755023378,42.36577627186102],[-71.13711754498631,42.36577718653428],[-71.13711754105071,42.36577787253918],[-71.1371166119541,42.36577878429771],[-71.13711536804162,42.36578060975279],[-71.13711381456058,42.36578243423113],[-71.13711288424987,42.36578334598579],[-71.13711072173547,42.36578425385284],[-71.13710793614854,42.36578584577132],[-71.13710422933597,42.36578697743826],[-71.13710206167157,42.36578857130622],[-71.13709836141844,42.36578855963147],[-71.1370946454219,42.3657912919763],[-71.13709247119215,42.36579403008589],[-71.1370875138125,42.36579835832054],[-71.13708285710555,42.36580360309375],[-71.13707912536339,42.36580907945779],[-71.13707539493258,42.36581432715336],[-71.13706824110655,42.36582505308571],[-71.13705582678666,42.36583919160464],[-71.13704279726018,42.36585264216343],[-71.13702574590066,42.36586859452549],[-71.13701397199121,42.36587839028435],[-71.1370003479434,42.36588818110327],[-71.13698982976098,42.3658940924908],[-71.13697992040197,42.36590137963417],[-71.13696660470418,42.365911170522],[-71.13695203983234,42.36592370153468],[-71.13693777937748,42.36593691862343],[-71.13691486395872,42.36595376894901],[-71.13690527475595,42.36595899814432],[-71.13689568030085,42.365965142012],[-71.13688330014432,42.36597310646395],[-71.13686533808134,42.36598654143036],[-71.13684113800664,42.3660123050102],[-71.13681570974151,42.36603715001705],[-71.13680486477412,42.3660462626702],[-71.13679309736263,42.36605491506455],[-71.13676023175265,42.3660861394015],[-71.13675278131035,42.36609480542489],[-71.13674471556661,42.36610301215969],[-71.13673232213218,42.36611349195014],[-71.13672643184914,42.36611896148516],[-71.13672146794656,42.36612420527329],[-71.13671463289337,42.36613310191026],[-71.13671089584651,42.36613949293506],[-71.13670964797517,42.36614200439047],[-71.13670716536571,42.36614474061833],[-71.13670592143414,42.36614656606881],[-71.13670344417724,42.36614815895133],[-71.13670096550737,42.36615020917419],[-71.13669849067817,42.36615180206427],[-71.13669631521006,42.36615453926203],[-71.13669261614963,42.36615452757807],[-71.13669045371594,42.36615520676499],[-71.13668550698165,42.3661572491917],[-71.13668179872685,42.36615883818537],[-71.13667808794447,42.36616065584337],[-71.13667313201499,42.36616429894758],[-71.13666632443481,42.36616862221968],[-71.13665268582675,42.36618092744764],[-71.13663935951061,42.36619254764322],[-71.13660342605242,42.36622078950152],[-71.13657926641004,42.36623969298038],[-71.13655511220873,42.36625722443669],[-71.13654426716613,42.36626633706481],[-71.13653465817556,42.366274996253],[-71.13650088949255,42.36630255890249],[-71.13648510030453,42.36631325750713],[-71.13646930838766,42.36632464121797],[-71.1364525795705,42.36633807911696],[-71.13643677055521,42.36635243551082],[-71.13641262142345,42.36636928183611],[-71.13638754852654,42.36638589566323],[-71.13637515771234,42.36639568850564],[-71.13636183655326,42.36640639489571],[-71.13634605379364,42.36641617791151],[-71.13633058070143,42.36642573323184],[-71.13630269835666,42.36644828364056],[-71.13628349340037,42.36646331529241],[-71.13626551792122,42.3664790368463],[-71.13622680881095,42.36650749848099],[-71.13615933555373,42.36655096149729],[-71.13614231808,42.3665607405793],[-71.13612653120009,42.36657143824151],[-71.13611198179602,42.36658122512691],[-71.13610609799349,42.36658555128828],[-71.13610144630789,42.36659011001991],[-71.13609773022119,42.36659284233202],[-71.13609433433277,42.36659351760532],[-71.13608691146898,42.36659715287912],[-71.13607980870174,42.36659895978583],[-71.13607116667193,42.36660053314946],[-71.13606745331637,42.36660257945204],[-71.13606375301579,42.366602567744],[-71.13606066548491,42.36660324399195],[-71.13605696113542,42.36660414696057],[-71.13605417943305,42.36660505284846],[-71.13605077696479,42.36660687146176],[-71.13604830088735,42.36660846433386],[-71.1360461278034,42.36661120152669],[-71.13603869440843,42.36661666614341],[-71.13601608818352,42.36663328769459],[-71.13599288760061,42.36664601992921],[-71.13595423090401,42.36666533564133],[-71.13591344069121,42.36668029801057],[-71.13587233550798,42.36669640453083],[-71.13586059286015,42.36670071213183],[-71.13584946166253,42.36670593635711],[-71.13582566142203,42.36671569301784],[-71.13580156334314,42.36672362025154],[-71.13577747052521,42.3667306328072],[-71.13576882714794,42.36673243571654],[-71.13576635906189,42.36673242790095],[-71.13576296711278,42.36673241715972],[-71.13576050024072,42.36673240934783],[-71.13575834172767,42.3667324025124],[-71.13575465195927,42.36673056054821],[-71.13575187672831,42.36673055175965],[-71.13574847423941,42.36673237126419],[-71.13574384358691,42.36673327128929],[-71.13574013933334,42.3667339446753],[-71.13573642717323,42.36673599097093],[-71.13573148420537,42.36673757692395],[-71.13572684828453,42.36673939162138],[-71.13572189874188,42.36674211911468],[-71.13571601884856,42.36674575925116],[-71.13571385111632,42.36674735309265],[-71.13571013500365,42.36675008539213],[-71.13570642942662,42.36675098834559],[-71.13570396255385,42.36675098053252],[-71.13570149172482,42.36675165962437],[-71.13569778483573,42.3667527903455],[-71.13568646476033,42.36675518165985],[-71.13538110973825,42.36462131660069],[-71.13536971120993,42.36409551367561],[-71.13530771404677,42.36316782022676],[-71.13583248728783,42.36193190312974],[-71.13628912709929,42.36089444218898],[-71.13661040761667,42.36016471156804],[-71.13693224867619,42.35933729073173],[-71.13715207644623,42.35894146318118],[-71.13736687646474,42.35877721987411],[-71.13796477917116,42.35761369324175],[-71.13809368815014,42.35732816516867],[-71.13811373229755,42.35727237120662]]]],"type":"MultiPolygon"} +},{ + "id": 1108711941, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":480070.978357, + "geom:bbox":"-71.1718463806,42.3463451991,-71.1628312586,42.35438789", + "geom:latitude":42.35043, + "geom:longitude":-71.167046, + "iso:country":"US", + "lbl:latitude":42.349148, + "lbl:longitude":-71.154159, + "lbl:max_zoom":18.0, + "mps:latitude":42.350054, + "mps:longitude":-71.166509, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.350054, + "reversegeo:longitude":-71.166509, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807537, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f8809662e03d5ab7aa638e2a4539076c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711941, + "neighbourhood_id":85807537, + "region_id":85688645 + } + ], + "wof:id":1108711941, + "wof:lastmodified":1566624127, + "wof:name":"Oak Square", + "wof:parent_id":85807537, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891295 + ], + "wof:tags":[] +}, + "bbox": [ + -71.17184638055406, + 42.34634519914921, + -71.16283125859786, + 42.3543878899802 +], + "geometry": {"coordinates":[[[[-71.16300543476302,42.35316719622022],[-71.16310568640421,42.35246322185307],[-71.16283125859786,42.35248118202306],[-71.1630414712877,42.34902691188299],[-71.16445110042802,42.34634519914921],[-71.16770477519361,42.34657147722397],[-71.1682945329196,42.3469991869279],[-71.16846412411344,42.34712587466797],[-71.1686230146076,42.34726536142132],[-71.16881741802554,42.34744155989827],[-71.16898029516649,42.3476048510867],[-71.1695478924924,42.3481563458726],[-71.16979687587808,42.34840548219014],[-71.17001677521849,42.34857736907939],[-71.17026758254531,42.34873591457995],[-71.17043950363062,42.34882559238576],[-71.17062184959582,42.348911907797],[-71.17084528644958,42.34900357912612],[-71.17105151008195,42.34906921490887],[-71.17172554893665,42.34924424010141],[-71.17147893024571,42.35051798261325],[-71.17057712808329,42.35160841998908],[-71.17184638055406,42.35225344052605],[-71.16977427451552,42.3543878899802],[-71.16958120145397,42.35427979742851],[-71.16930692323339,42.35417981742],[-71.16867868498575,42.35403764541161],[-71.16598393459634,42.35351755632256],[-71.16539383446218,42.35342470979172],[-71.16300543476302,42.35316719622022]]]],"type":"MultiPolygon"} +},{ + "id": 1108692887, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":55124.56422, + "geom:bbox":"-118.297930735,34.0684531077,-118.292910063,34.0695419232", + "geom:latitude":34.069, + "geom:longitude":-118.295409, + "iso:country":"US", + "lbl:latitude":34.069, + "lbl:longitude":-118.295409, + "lbl:max_zoom":18.0, + "mps:latitude":34.069, + "mps:longitude":-118.295409, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ben_x_preferred":[ + "\u09b2\u09bf\u099f\u09b2 \u09ac\u09be\u0982\u09b2\u09be\u09a6\u09c7\u09b6" + ], + "reversegeo:latitude":34.069, + "reversegeo:longitude":-118.295409, + "src:geom":"mz", + "wof:belongsto":[ + 85865819, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"34e21660ca817f643bcfa7c6f704cb5b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108692887, + "neighbourhood_id":85865819, + "region_id":85688637 + } + ], + "wof:id":1108692887, + "wof:lastmodified":1566623954, + "wof:name":"Little Bangladesh", + "wof:parent_id":85865819, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780793 + ], + "wof:tags":[] +}, + "bbox": [ + -118.29793073465804, + 34.06845310772229, + -118.29291006292976, + 34.06954192320025 +], + "geometry": {"coordinates":[[[-118.29291006292976,34.06845310772229],[-118.29790994461462,34.06847069504241],[-118.29793073465804,34.0695334963447],[-118.29292543622903,34.06954192320025],[-118.29291006292976,34.06845310772229]]],"type":"Polygon"} +},{ + "id": 1108693177, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":36292.536633, + "geom:bbox":"-118.240037,34.054517,-118.237478,34.057087", + "geom:latitude":34.055851, + "geom:longitude":-118.23859, + "iso:country":"US", + "lbl:latitude":34.055909, + "lbl:longitude":-118.238572, + "lbl:max_zoom":18.0, + "mps:latitude":34.055909, + "mps:longitude":-118.238572, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "El Pueblo" + ], + "name:ceb_x_preferred":[ + "El Pueblo" + ], + "name:deu_x_preferred":[ + "El Pueblo" + ], + "name:glg_x_preferred":[ + "El Pueblo" + ], + "name:spa_x_preferred":[ + "El pueblo" + ], + "name:swe_x_preferred":[ + "El Pueblo" + ], + "reversegeo:latitude":34.055909, + "reversegeo:longitude":-118.238572, + "src:geom":"mz", + "wof:belongsto":[ + 85865837, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"992fb32a1596c3bb09db956646770fa0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108693177, + "neighbourhood_id":85865837, + "region_id":85688637 + } + ], + "wof:id":1108693177, + "wof:lastmodified":1566623960, + "wof:name":"El Pueblo", + "wof:parent_id":85865837, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780785 + ], + "wof:tags":[] +}, + "bbox": [ + -118.240037, + 34.054517, + -118.237478, + 34.057087 +], + "geometry": {"coordinates":[[[-118.23888599999999,34.057087],[-118.23847000000001,34.056835],[-118.23807100000001,34.056592],[-118.237478,34.056195],[-118.237605,34.055597],[-118.237779,34.054775],[-118.23783400000001,34.054517],[-118.238044,34.054615],[-118.23827300000001,34.054736],[-118.239198,34.055312],[-118.23925,34.055344],[-118.240037,34.055835],[-118.2398,34.056092],[-118.23969,34.056212],[-118.23888599999999,34.057087]]],"type":"Polygon"} +},{ + "id": 1108693181, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":20855.528289, + "geom:bbox":"-118.238886,34.056195,-118.237074,34.058247", + "geom:latitude":34.05731, + "geom:longitude":-118.237839, + "iso:country":"US", + "lbl:latitude":34.057247, + "lbl:longitude":-118.237897, + "lbl:max_zoom":18.0, + "mps:latitude":34.057247, + "mps:longitude":-118.237897, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "Olvera Street" + ], + "name:fra_x_preferred":[ + "Olvera Street" + ], + "name:pol_x_preferred":[ + "Olvera Street" + ], + "name:spa_x_preferred":[ + "Placita Olvera" + ], + "reversegeo:latitude":34.057247, + "reversegeo:longitude":-118.237897, + "src:geom":"mz", + "wof:belongsto":[ + 85865837, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"46b289c1794f3b2ae7b302bc9ad89918", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108693181, + "neighbourhood_id":85865837, + "region_id":85688637 + } + ], + "wof:id":1108693181, + "wof:lastmodified":1566623959, + "wof:name":"Olvera Street", + "wof:parent_id":85865837, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -118.238886, + 34.056195, + -118.237074, + 34.058247 +], + "geometry": {"coordinates":[[[-118.237478,34.056195],[-118.23807100000001,34.056592],[-118.23847000000001,34.056835],[-118.23888599999999,34.057087],[-118.23784000000001,34.058247],[-118.237376,34.05818],[-118.237341,34.05817],[-118.23707400000001,34.05809],[-118.237404,34.056544],[-118.237478,34.056195]]],"type":"Polygon"} +},{ + "id": 1108693281, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000065, + "geom:area_square_m":670697.935357, + "geom:bbox":"-118.206517,34.073788,-118.196348871,34.0844987669", + "geom:latitude":34.078552, + "geom:longitude":-118.201945, + "iso:country":"US", + "lbl:latitude":34.078353, + "lbl:longitude":-118.20255, + "lbl:max_zoom":18.0, + "mps:latitude":34.078353, + "mps:longitude":-118.20255, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "Happy Valley" + ], + "name:ceb_x_preferred":[ + "Happy Valley" + ], + "name:deu_x_preferred":[ + "Happy Valley" + ], + "name:fra_x_preferred":[ + "Happy Valley" + ], + "name:hun_x_preferred":[ + "Happy Valley" + ], + "name:ita_x_preferred":[ + "Happy Valley" + ], + "name:kor_x_preferred":[ + "\ud574\ud53c \ubc38\ub9ac" + ], + "name:mlg_x_preferred":[ + "Happy Valley" + ], + "name:nld_x_preferred":[ + "Happy Valley" + ], + "name:pol_x_preferred":[ + "Happy Valley" + ], + "name:rus_x_preferred":[ + "\u0425\u044d\u043f\u043f\u0438-\u0412\u044d\u043b\u043b\u0438" + ], + "name:spa_x_preferred":[ + "Happy Valley" + ], + "name:srp_x_preferred":[ + "\u0425\u0435\u043f\u0438 \u0412\u0430\u043b\u0438" + ], + "name:swe_x_preferred":[ + "Happy Valley" + ], + "name:ukr_x_preferred":[ + "\u0413\u0435\u043f\u043f\u0456-\u0412\u0435\u043b\u043b\u0456" + ], + "name:urd_x_preferred":[ + "\u06c1\u06cc\u067e\u06cc \u0648\u06cc\u0644\u06cc" + ], + "name:vol_x_preferred":[ + "Happy Valley" + ], + "name:zho_x_preferred":[ + "\u6b22\u4e50\u8c37" + ], + "reversegeo:latitude":34.078353, + "reversegeo:longitude":-118.20255, + "src:geom":"mz", + "wof:belongsto":[ + 85830641, + 102191575, + 1108692437, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"09c77187cc5ed81a51686cf01929f773", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692437, + "microhood_id":1108693281, + "neighbourhood_id":85830641, + "region_id":85688637 + } + ], + "wof:id":1108693281, + "wof:lastmodified":1566623960, + "wof:name":"Happy Valley", + "wof:parent_id":85830641, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551125 + ], + "wof:tags":[] +}, + "bbox": [ + -118.206517, + 34.073788, + -118.1963488706062, + 34.08449876693665 +], + "geometry": {"coordinates":[[[-118.1993696452936,34.08424905862029],[-118.19934981588202,34.08424325171819],[-118.1991329490977,34.08401278769219],[-118.19906938224219,34.08394540573821],[-118.19900547905719,34.0838773223407],[-118.19897064198818,34.08384073938026],[-118.19891335604025,34.08378001529573],[-118.1988930843961,34.08375846708815],[-118.1986677673076,34.08351859408572],[-118.19850056747703,34.08334060133483],[-118.19855135642655,34.08317186663515],[-118.19857942938161,34.08307691363163],[-118.19863654186831,34.08288594867178],[-118.19907592372773,34.08139675703533],[-118.1992802916689,34.08070617098106],[-118.19931547377335,34.08058485295508],[-118.19948175593936,34.08002127481547],[-118.19980927450541,34.07888208585312],[-118.19965059878859,34.07812256222804],[-118.19935994008561,34.07673222473435],[-118.19930820591806,34.07648333617073],[-118.19890810886692,34.07626244875813],[-118.19843526804071,34.07600114809767],[-118.1983073382406,34.07593045776734],[-118.19788637943579,34.07569772244786],[-118.19782355575643,34.0756631334724],[-118.19757528836134,34.07540901873119],[-118.19744517089889,34.07527589094645],[-118.19713065609125,34.07495350399553],[-118.19687683744816,34.07469296447291],[-118.1963488706062,34.07415215082336],[-118.19649699999999,34.073918],[-118.197333,34.073906],[-118.198688,34.073886],[-118.19964299999999,34.073871],[-118.200733,34.073855],[-118.20254799999999,34.073828],[-118.202732,34.073825],[-118.203902,34.073808],[-118.20520500000001,34.073788],[-118.205219,34.074312],[-118.205247,34.075567],[-118.205512,34.075562],[-118.205805,34.076415],[-118.205551,34.077237],[-118.205348,34.077894],[-118.205426,34.077974],[-118.205913,34.078471],[-118.20651700000001,34.079088],[-118.20548100000001,34.08044],[-118.204729,34.081421],[-118.204105,34.082235],[-118.20378700000001,34.08265],[-118.20339267932661,34.08378380137041],[-118.20172281721463,34.0842904918408],[-118.20020248686822,34.08449876693665],[-118.19975669052253,34.08436510519555],[-118.19959933642689,34.08431771916214],[-118.19944982417414,34.08427309840634],[-118.1993696452936,34.08424905862029]]],"type":"Polygon"} +},{ + "id": 1108693285, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000097, + "geom:area_square_m":988685.311621, + "geom:bbox":"-118.482363,34.0585,-118.470066,34.075069", + "geom:latitude":34.067135, + "geom:longitude":-118.476039, + "iso:country":"US", + "lbl:latitude":34.066427, + "lbl:longitude":-118.474921, + "lbl:max_zoom":18.0, + "mps:latitude":34.066427, + "mps:longitude":-118.474921, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":34.066427, + "reversegeo:longitude":-118.474921, + "src:geom":"mz", + "wof:belongsto":[ + 85807211, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"cbc08709baeef8c8a51e443c16d01f92", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1108693285, + "neighbourhood_id":85807211, + "region_id":85688637 + } + ], + "wof:id":1108693285, + "wof:lastmodified":1566623960, + "wof:name":"Brentwood Heights", + "wof:parent_id":85807211, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551169 + ], + "wof:tags":[] +}, + "bbox": [ + -118.482363, + 34.0585, + -118.470066, + 34.075069 +], + "geometry": {"coordinates":[[[-118.4733095653726,34.07113361481625],[-118.47261878424399,34.07010469629572],[-118.47211458352741,34.06940457221477],[-118.47166245879359,34.0687574986453],[-118.47134229425185,34.06837711642629],[-118.47035111886852,34.06736312275746],[-118.470378,34.067107],[-118.470398,34.066948],[-118.470403,34.066749],[-118.470388,34.066551],[-118.470373,34.066457],[-118.470144,34.065435],[-118.470066,34.065088],[-118.47071699999999,34.064559],[-118.471712,34.063753],[-118.472289,34.063285],[-118.472781,34.062886],[-118.474682,34.061345],[-118.475944,34.060321],[-118.476623,34.059771],[-118.477098,34.059386],[-118.478238,34.0585],[-118.478624,34.058989],[-118.47826380946263,34.0594418819465],[-118.47823,34.059494],[-118.47819,34.059579],[-118.47816899999999,34.059642],[-118.478149,34.059759],[-118.47815,34.059877],[-118.47815799999999,34.059929],[-118.47819800000001,34.06009],[-118.478247,34.060224],[-118.47828,34.060288],[-118.47835000000001,34.060396],[-118.478385,34.060439],[-118.478532,34.060598],[-118.478622,34.060708],[-118.478702,34.060822],[-118.478756,34.060911],[-118.478846,34.061096],[-118.478893,34.061223],[-118.479005,34.061644],[-118.479039,34.061749],[-118.479094,34.061876],[-118.479135,34.061954],[-118.47922699999999,34.062096],[-118.47928,34.062165],[-118.479337,34.062231],[-118.479398,34.062294],[-118.47948599999999,34.062374],[-118.479794,34.062625],[-118.47985199999999,34.062679],[-118.479919,34.062757],[-118.47995400000001,34.06281],[-118.479997,34.062899],[-118.480023,34.06298],[-118.48004400000001,34.063144],[-118.480048,34.06325],[-118.480045,34.063356],[-118.480031,34.063496],[-118.479973,34.06379],[-118.479958,34.063837],[-118.47993,34.06387],[-118.47964585259491,34.06402518408188],[-118.479399,34.06416],[-118.479337,34.06421],[-118.47928899999999,34.06427],[-118.479259,34.064331],[-118.47924500000001,34.064381],[-118.479231,34.064463],[-118.479167,34.06483],[-118.479164,34.064916],[-118.479176,34.065002],[-118.479202,34.065085],[-118.479257,34.065203],[-118.479263,34.065227],[-118.47927,34.065294],[-118.47926,34.065362],[-118.47918799999999,34.065561],[-118.478956,34.066197],[-118.478909,34.066375],[-118.47888,34.066556],[-118.478871,34.066701],[-118.478874,34.066847],[-118.47889499999999,34.067028],[-118.478961,34.067382],[-118.47897,34.067524],[-118.478961,34.067667],[-118.47893500000001,34.067807],[-118.47889000000001,34.067945],[-118.478797,34.068167],[-118.478736,34.068365],[-118.47871600000001,34.06845],[-118.47869,34.068608],[-118.47867599999999,34.068772],[-118.47867599999999,34.068936],[-118.47869,34.069099],[-118.478717,34.069262],[-118.478754,34.069414],[-118.479009,34.070381],[-118.479063,34.070517],[-118.479134,34.070649],[-118.479221,34.070773],[-118.47932400000001,34.070889],[-118.47944,34.070995],[-118.479569,34.071091],[-118.479865,34.0713],[-118.480007,34.071419],[-118.48011099999999,34.071521],[-118.48016800000001,34.071585],[-118.480271,34.071714],[-118.48033100000001,34.071801],[-118.480768,34.072475],[-118.480846,34.072571],[-118.480936,34.072659],[-118.480996,34.072709],[-118.48110200000001,34.072781],[-118.481239,34.072854],[-118.481342,34.072896],[-118.482193,34.07322],[-118.482288,34.073273],[-118.48236300000001,34.07333],[-118.481257,34.074157],[-118.48120299999999,34.074117],[-118.48075,34.074539],[-118.480571,34.074667],[-118.48042,34.074733],[-118.479816,34.074937],[-118.479231,34.075069],[-118.478673,34.075059],[-118.47860799999999,34.075045],[-118.47854599999999,34.075016],[-118.478494,34.074971],[-118.478464,34.074925],[-118.478325,34.074415],[-118.477796,34.074442],[-118.477762,34.074439],[-118.477727,34.074424],[-118.4777,34.074394],[-118.47769099999999,34.074362],[-118.477729,34.074193],[-118.477732,34.07415],[-118.477689,34.07403],[-118.477661,34.073994],[-118.477616,34.073964],[-118.47756699999999,34.07395],[-118.477521,34.073949],[-118.477158,34.074028],[-118.47705499999999,34.074038],[-118.47697599999999,34.074033],[-118.476894,34.074015],[-118.47684,34.073989],[-118.47679599999999,34.073953],[-118.476767,34.073912],[-118.476748,34.073857],[-118.476748,34.073609],[-118.4768,34.07347],[-118.476805,34.073417],[-118.476795,34.073369],[-118.47677,34.073322],[-118.476721,34.073275],[-118.476665,34.073246],[-118.476585,34.073225],[-118.476533,34.073225],[-118.476479,34.07324],[-118.476364,34.073317],[-118.476313,34.073338],[-118.47626,34.073344],[-118.47620999999999,34.073339],[-118.476153,34.073316],[-118.475942,34.073137],[-118.47589499999999,34.073103],[-118.475818,34.073065],[-118.47573199999999,34.073043],[-118.47559,34.073033],[-118.475511,34.073015],[-118.475437,34.072985],[-118.475365,34.07294],[-118.475311,34.072888],[-118.475157,34.072675],[-118.47506799999999,34.072548],[-118.475042,34.072483],[-118.475033,34.072415],[-118.475044,34.072347],[-118.475094,34.072233],[-118.475145,34.072091],[-118.475178,34.071945],[-118.475194,34.07179],[-118.47521500000001,34.071717],[-118.475257,34.071651],[-118.47575999999999,34.071161],[-118.475627,34.071031],[-118.47553000000001,34.070923],[-118.475461,34.070826],[-118.475391,34.070705],[-118.475256,34.07039],[-118.475075,34.070504],[-118.47493900000001,34.070577],[-118.47479300000001,34.070636],[-118.474656,34.070676],[-118.474592,34.070683],[-118.47452800000001,34.070677],[-118.474447,34.070652],[-118.474355,34.070604],[-118.474583,34.071271],[-118.47461800000001,34.071421],[-118.47464600000001,34.071641],[-118.474643,34.071698],[-118.474622,34.071758],[-118.474585,34.071811],[-118.474529,34.071858],[-118.474465,34.071889],[-118.4744,34.071906],[-118.474321,34.07191],[-118.474238,34.071896],[-118.474159,34.071871],[-118.47412,34.071853],[-118.47356059775103,34.07149827826383],[-118.4733095653726,34.07113361481625]]],"type":"Polygon"} +},{ + "id": 1108720529, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":475429.904002, + "geom:bbox":"-122.725243832,45.5332242034,-122.712552506,45.5441816622", + "geom:latitude":45.538163, + "geom:longitude":-122.71843, + "iso:country":"US", + "lbl:latitude":45.536008, + "lbl:longitude":-122.716221, + "lbl:max_zoom":18.0, + "mps:latitude":45.536008, + "mps:longitude":-122.716221, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Willamette Hts" + ], + "reversegeo:latitude":45.536008, + "reversegeo:longitude":-122.716221, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871509, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ac5a60c5adc1d133b43bd2408f2045d2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108720529, + "neighbourhood_id":85871509, + "region_id":85688513 + } + ], + "wof:id":1108720529, + "wof:lastmodified":1566623894, + "wof:name":"Willamette Heights", + "wof:parent_id":85871509, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857791 + ], + "wof:tags":[] +}, + "bbox": [ + -122.72524383237209, + 45.53322420335908, + -122.71255250590326, + 45.54418166223358 +], + "geometry": {"coordinates":[[[-122.71256164702272,45.53841113485429],[-122.71255250590326,45.53658710848793],[-122.71294264423118,45.53658011146958],[-122.71293925129434,45.53644299238581],[-122.71293390721672,45.5363059107216],[-122.71305094871508,45.53630382859494],[-122.71304560373915,45.53616674722072],[-122.71304025966154,45.5360296655123],[-122.71311828283552,45.53602816290038],[-122.71331335289777,45.53602474930322],[-122.71330291716913,45.53575709746863],[-122.71333751847725,45.53559318085578],[-122.71332799094534,45.53534883284044],[-122.71332545230634,45.53528371883142],[-122.71332032112946,45.53515212072245],[-122.71351733245105,45.5351484975337],[-122.71363259438682,45.53515090753944],[-122.71359673813225,45.53418135893034],[-122.71410605505059,45.53417754941955],[-122.71409429251025,45.53387596924951],[-122.71460126752062,45.53386225770359],[-122.71517529727538,45.53356602142401],[-122.71610088810648,45.5332753506943],[-122.71873401549425,45.53322420335908],[-122.71879115553284,45.53388707566211],[-122.71874876403459,45.53619843223628],[-122.71886692573212,45.53637483416771],[-122.71893185506254,45.53648778724065],[-122.71899427000847,45.53663628454049],[-122.71904284281419,45.536780249133],[-122.7191578693914,45.53697626026326],[-122.71924381480788,45.53707748970962],[-122.71938768718715,45.53721241000568],[-122.7194560912011,45.53731432110152],[-122.71947890122279,45.53734851983248],[-122.71948474656034,45.53734823605441],[-122.72051987885548,45.53731177968146],[-122.72052589127971,45.53731577900443],[-122.72052986003662,45.53751702084367],[-122.72053382160701,45.53766819085259],[-122.72100996104696,45.53766379263168],[-122.7200370065425,45.53794255547452],[-122.72013606646382,45.53797973943755],[-122.72066827515054,45.5381610020961],[-122.72079416235951,45.5382352218443],[-122.72087021103653,45.53828296752134],[-122.72094487900294,45.53834531520274],[-122.7210223892389,45.53843041622505],[-122.72107537906088,45.53848752370758],[-122.7211232215363,45.53856273717047],[-122.72121972305568,45.53863426590652],[-122.72133864652457,45.53868015446134],[-122.72263101140132,45.53893073975273],[-122.72273471920592,45.53893696507703],[-122.72285860856171,45.53891021895473],[-122.72297397110881,45.53886511772026],[-122.72303460739049,45.53881833081416],[-122.72313509922638,45.53874247905097],[-122.72321964686429,45.53870809051884],[-122.72334385152874,45.53868939747923],[-122.72345129812153,45.53869143421485],[-122.72354617189366,45.53872132268788],[-122.72359164102008,45.53873587618259],[-122.72364558395458,45.53876741440447],[-122.72369027783492,45.53881199284929],[-122.72373734506422,45.53886732810946],[-122.72378192755345,45.5389588933895],[-122.72381512479478,45.53900900928193],[-122.72386733308247,45.53904606795798],[-122.72391112056266,45.53906751363111],[-122.72396086027994,45.53909141632295],[-122.7240223517578,45.53911629174769],[-122.72406566313089,45.53912557055833],[-122.72411081066043,45.53913189904984],[-122.72417732102575,45.53913541375958],[-122.72424351608241,45.53913087471263],[-122.72430172152293,45.53912168839528],[-122.72455729581451,45.53906787038778],[-122.7249445415672,45.53898663740208],[-122.72496774145772,45.53898087202948],[-122.72501017248187,45.53896770410008],[-122.72505042419311,45.53894874814048],[-122.72507332224971,45.53893527189458],[-122.72513561951632,45.53898070906632],[-122.72520627470837,45.53908994714042],[-122.72524383237209,45.53915163893033],[-122.72513348062765,45.53922493999919],[-122.72456799474956,45.53954009405602],[-122.72418774148306,45.53970024350842],[-122.72402589740823,45.53975481908795],[-122.72405026241366,45.53982859881475],[-122.72421080932122,45.54033873590378],[-122.72414819494931,45.54028524498001],[-122.72345510697836,45.54038336595443],[-122.7231744068083,45.5401447782111],[-122.72297367825804,45.54015363340827],[-122.72278204155678,45.54019523721231],[-122.722625254997,45.54022947886347],[-122.72293712670744,45.5406658690181],[-122.72428823242062,45.54241404643025],[-122.7238763925921,45.54271524798521],[-122.72381947353908,45.5427573337172],[-122.72376441759191,45.54279715381708],[-122.72340951298614,45.54305678249237],[-122.7233525723735,45.54309835331961],[-122.72294255971826,45.54339660048547],[-122.72285909994015,45.54345891858878],[-122.72250413963881,45.54371734568021],[-122.72239025661698,45.54380048632704],[-122.7218682932161,45.54418166223358],[-122.72073830421681,45.5429446567444],[-122.72011246233144,45.54226739274144],[-122.7198126289441,45.54193879606235],[-122.71931130523518,45.54139990953339],[-122.71774798241756,45.53971167343451],[-122.71731373591092,45.53933970635693],[-122.71678317922601,45.53900080512781],[-122.71614111646154,45.53870572219305],[-122.71554413654789,45.53851522705431],[-122.71514050732105,45.5384269776054],[-122.71459836955553,45.53834105231458],[-122.71435889307384,45.53830725499338],[-122.71402470272012,45.53829757398312],[-122.71256164702272,45.53841113485429]]],"type":"Polygon"} +},{ + "id": 1108720531, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000026, + "geom:area_square_m":223720.974181, + "geom:bbox":"-122.75478883,45.5579703529,-122.739368863,45.5695079835", + "geom:latitude":45.563814, + "geom:longitude":-122.747808, + "iso:country":"US", + "lbl:latitude":45.564553, + "lbl:longitude":-122.749206, + "lbl:max_zoom":18.0, + "mps:latitude":45.564553, + "mps:longitude":-122.749206, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"ship terminal", + "mz:tier_metro":1, + "reversegeo:latitude":45.564553, + "reversegeo:longitude":-122.749206, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85830793, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1d8a6192f9049c430048761ef0a4a798", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108720531, + "neighbourhood_id":85830793, + "region_id":85688513 + } + ], + "wof:id":1108720531, + "wof:lastmodified":1566623893, + "wof:name":"Willbridge", + "wof:parent_id":85830793, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857801 + ], + "wof:tags":[] +}, + "bbox": [ + -122.75478883007703, + 45.55797035288673, + -122.73936886294689, + 45.5695079834529 +], + "geometry": {"coordinates":[[[-122.73936886294689,45.5586012620881],[-122.7394896943384,45.55852195521737],[-122.74035840474401,45.55797035288673],[-122.74056990948441,45.55813394008574],[-122.74062030946342,45.5581739411341],[-122.74068676053992,45.55822477644003],[-122.74107766692738,45.55853011186498],[-122.74133956985015,45.55873352763052],[-122.74173243546325,45.55903882192327],[-122.74186339545865,45.55914070100217],[-122.74208699601434,45.55931365273162],[-122.74219584308067,45.55939949942384],[-122.74343091969682,45.56035988317224],[-122.74351545924989,45.56042356744241],[-122.74380054499518,45.56022508824171],[-122.74380428647837,45.56071476640653],[-122.74365186752746,45.56081119756514],[-122.74336231356193,45.56099553075601],[-122.74348374063551,45.56110308196682],[-122.74360321746663,45.56121066945096],[-122.74369024535304,45.56128785257941],[-122.7437284884313,45.56131660132892],[-122.74385945022333,45.56141830646113],[-122.74399041381197,45.56152001140929],[-122.74427998215054,45.56133601894391],[-122.74452179155702,45.56152455871166],[-122.74465275604398,45.56162626283852],[-122.74478372142927,45.56172796741018],[-122.74506519774376,45.56153692888174],[-122.74519616941724,45.56163880280214],[-122.74532713570082,45.56174050672215],[-122.74545810198441,45.56184220982914],[-122.74558906826799,45.56194391275201],[-122.74572004263642,45.56204578719232],[-122.74585101071663,45.56214749037559],[-122.74593764963252,45.5622147336859],[-122.74598197879686,45.56224919274584],[-122.74570246080968,45.56244036596103],[-122.7458334288899,45.56254206905902],[-122.74596439786842,45.5626437713439],[-122.74609536774527,45.56274547407367],[-122.74622634480865,45.56284734831835],[-122.74635329023302,45.56294604249207],[-122.7465852774602,45.56278751965137],[-122.74762480790699,45.56354075670646],[-122.74786608191758,45.56371523953053],[-122.74858897868457,45.56347594956079],[-122.74859264381094,45.56346987663862],[-122.74863825217624,45.56338873111527],[-122.74840957074927,45.56333489923293],[-122.74850086563332,45.56287885854792],[-122.74887540112303,45.56296636394953],[-122.74930603909718,45.56220290644161],[-122.74991352570639,45.56112234744877],[-122.75028871786459,45.56122664044316],[-122.74989996114562,45.56186375687141],[-122.74986450643799,45.56220089760232],[-122.749781106847,45.5630527358794],[-122.75117212650488,45.56350806069195],[-122.7505235743108,45.56419347868259],[-122.75021552762682,45.56450234385117],[-122.75084548379621,45.56443102475494],[-122.7508877764798,45.56461093863619],[-122.75110537539106,45.5645821563532],[-122.75134665748651,45.56475645984725],[-122.75091229869044,45.56503213121238],[-122.75157284698683,45.5655346732259],[-122.75181812568692,45.56566191110009],[-122.75175177342513,45.56571242580902],[-122.75134700243954,45.56599557889815],[-122.75119688048083,45.56610072129175],[-122.75146807557692,45.56629038651549],[-122.75162391621073,45.56618170252911],[-122.75176237085053,45.56627467795462],[-122.7518988734512,45.5663676915888],[-122.75203528891531,45.56645847752688],[-122.75245309445563,45.56615929052254],[-122.75259867632892,45.56623497699698],[-122.75263057460633,45.5662513283009],[-122.75280602905605,45.56634152012104],[-122.75235238882071,45.56667279220805],[-122.7526614667706,45.56688177560731],[-122.75281795868301,45.56698622959657],[-122.7529724994546,45.56709072049588],[-122.7531270402262,45.56719521182973],[-122.7532815818961,45.5672997023403],[-122.75344014981511,45.5674072012342],[-122.75312142306072,45.56764391805902],[-122.75382586124529,45.56811917937197],[-122.75478883007703,45.56920172808965],[-122.75444422285932,45.56942626575504],[-122.7543127508352,45.5695079834529],[-122.75183073444026,45.56780021102703],[-122.74777277211238,45.56505719074917],[-122.74502598897655,45.56301380623163],[-122.74275554201168,45.56125738740489],[-122.73936886294689,45.5586012620881]]],"type":"Polygon"} +},{ + "id": 1108720799, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":76683.13568, + "geom:bbox":"-122.785929446,45.5918749443,-122.78084358,45.5953906271", + "geom:latitude":45.593534, + "geom:longitude":-122.783493, + "iso:country":"US", + "lbl:latitude":45.593402, + "lbl:longitude":-122.783464, + "lbl:max_zoom":18.0, + "mps:latitude":45.593402, + "mps:longitude":-122.783464, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":45.593402, + "reversegeo:longitude":-122.783464, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85830793, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"2cc358d83e308d1c47ce908ba9eaa570", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108720799, + "neighbourhood_id":85830793, + "region_id":85688513 + } + ], + "wof:id":1108720799, + "wof:lastmodified":1566623890, + "wof:name":"Waldemere", + "wof:parent_id":85830793, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781241 + ], + "wof:tags":[] +}, + "bbox": [ + -122.78592944593233, + 45.59187494433388, + -122.78084358005233, + 45.59539062707123 +], + "geometry": {"coordinates":[[[-122.78357675640657,45.59539062707123],[-122.78084358005233,45.59234616610335],[-122.78113401885842,45.59223134454982],[-122.78122517450358,45.59231150549643],[-122.78133033129073,45.59230256108382],[-122.78139579691536,45.59232698550607],[-122.78149680797748,45.59231212090014],[-122.7815010570088,45.5923206102017],[-122.7815094670365,45.59233536291387],[-122.7815139927489,45.59235070650985],[-122.78151852474947,45.59236622108191],[-122.78151916614662,45.59238215681406],[-122.78151784113156,45.59239778766906],[-122.78155590993669,45.59242121194222],[-122.78176806326071,45.59254612970972],[-122.78202143308658,45.5923356690441],[-122.78204598763656,45.59231460388739],[-122.78212803795797,45.59236270592945],[-122.78222822975656,45.59227892177828],[-122.78256854751879,45.59199556929664],[-122.78271669857376,45.59208385846838],[-122.78276873079164,45.59211437858436],[-122.78280210949266,45.59206981664474],[-122.7828414619903,45.5920280519735],[-122.78288680355598,45.59198942653963],[-122.78293814676604,45.59195428231256],[-122.78299356114096,45.59192317373176],[-122.78305500410977,45.5918962321832],[-122.78311667525067,45.59187494433388],[-122.7831305497302,45.59187981354116],[-122.78338046283888,45.5919719122608],[-122.78368982735141,45.59208460902504],[-122.78424512094423,45.59228742302836],[-122.78433042316702,45.59231916881205],[-122.78432128191066,45.59233478334089],[-122.78431418971151,45.59235275827315],[-122.78431089199611,45.59236791454047],[-122.7843095400316,45.59238285959288],[-122.78430992720548,45.59239245522593],[-122.78431442507012,45.5924071130001],[-122.78431889598528,45.59242108622161],[-122.7843252785154,45.5924339920717],[-122.78433361308458,45.59244685894543],[-122.78434585173201,45.59245964849813],[-122.78435804995527,45.59247141028265],[-122.78437214542038,45.59248176210932],[-122.7843881444156,45.59249087621602],[-122.78440606221224,45.592499094563],[-122.78441995016655,45.59250430630435],[-122.78443777094513,45.59251012590349],[-122.7844574683044,45.59251402135104],[-122.78446733450114,45.59251639809558],[-122.78449098444764,45.59252141622593],[-122.784528543908,45.59253215903378],[-122.78456622104761,45.59254581540885],[-122.78459813010484,45.59256181583599],[-122.78462611352427,45.59257737938059],[-122.78465428289492,45.59259756879717],[-122.78467863083237,45.59261989293537],[-122.78470110218922,45.59264414058273],[-122.78471971707852,45.59266966427838],[-122.78473447550034,45.59269646527782],[-122.78474532175909,45.59272317260311],[-122.78474776427832,45.59273529892018],[-122.78475277328435,45.59276263671217],[-122.78475393390771,45.59279142278292],[-122.78475086346609,45.59281223380673],[-122.78474915307378,45.59281826898334],[-122.78474743549496,45.59282413318044],[-122.78469514546056,45.59307827943979],[-122.78468858506403,45.59310944835408],[-122.78468530890821,45.59312511797938],[-122.78468454354361,45.59315462800564],[-122.78468768315551,45.59318406069924],[-122.78469015352253,45.5931968733419],[-122.78469237505622,45.59320351632794],[-122.7847033111465,45.59323245114939],[-122.78471612381738,45.59325946308761],[-122.78473474589323,45.59328515873803],[-122.78475716963936,45.59330820611352],[-122.78476543503828,45.59331935924209],[-122.78478150410209,45.59333018738585],[-122.78480168475494,45.59334607695702],[-122.78483371867797,45.59336516165992],[-122.78486565558298,45.59338184639057],[-122.78490139415824,45.59339588411438],[-122.78493897517815,45.5934071415718],[-122.7849784049309,45.59341579037013],[-122.78504915085277,45.59342570326547],[-122.78509054611941,45.59343465504221],[-122.78512614006588,45.59344509469403],[-122.7851579188674,45.59345783876064],[-122.78518783456299,45.59347284952494],[-122.78521392882534,45.59348999435235],[-122.78524009854621,45.59350902306171],[-122.78526047952337,45.59352988222092],[-122.78527896325866,45.59355215067227],[-122.78530623161912,45.59359842308542],[-122.78541698940205,45.59367990651656],[-122.7854124367402,45.59371240770482],[-122.78540201358797,45.59374468132525],[-122.78538960246401,45.59377613776274],[-122.78536933377625,45.59380655009855],[-122.78534704298079,45.59383528660405],[-122.78531881162634,45.59386208516111],[-122.78528854468946,45.59388686468473],[-122.78525426946983,45.59390915248062],[-122.78521597878085,45.59392877569051],[-122.78517561837344,45.59394552562654],[-122.7851331810611,45.59395922943023],[-122.78509466220004,45.59397319912237],[-122.78527484268645,45.59408022580688],[-122.78542495566202,45.59416847209834],[-122.78557311749675,45.59425675785175],[-122.78572323765883,45.59434517546843],[-122.78587335243101,45.59443342134332],[-122.78592944593233,45.59446763246201],[-122.78574863662517,45.59453895993115],[-122.7853831310007,45.59468220671773],[-122.78501761639306,45.59482528090881],[-122.78483485864007,45.59489681723898],[-122.78482908426943,45.59489898959565],[-122.78448667972079,45.59503371451607],[-122.78436162075852,45.5950823258863],[-122.78431930651537,45.5950991144496],[-122.78430777753699,45.59510397269141],[-122.78406537883568,45.59519881423716],[-122.78397687950886,45.59523332346084],[-122.7838903250346,45.59526762334903],[-122.78359982154981,45.59538108035071],[-122.78357675640657,45.59539062707123]]],"type":"Polygon"} +},{ + "id": 1108720801, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":188156.495566, + "geom:bbox":"-122.785083257,45.586276,-122.772485,45.5922907056", + "geom:latitude":45.589446, + "geom:longitude":-122.780002, + "iso:country":"US", + "lbl:latitude":45.590393, + "lbl:longitude":-122.781048, + "lbl:max_zoom":18.0, + "mps:latitude":45.590393, + "mps:longitude":-122.781048, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":45.590393, + "reversegeo:longitude":-122.781048, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85830793, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"834b040bfbd46e0f77a4179712883b02", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108720801, + "neighbourhood_id":85830793, + "region_id":85688513 + } + ], + "wof:id":1108720801, + "wof:lastmodified":1566623916, + "wof:name":"Glen Harbor", + "wof:parent_id":85830793, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781243 + ], + "wof:tags":[] +}, + "bbox": [ + -122.78508325718919, + 45.586276, + -122.772485, + 45.59229070560183 +], + "geometry": {"coordinates":[[[-122.78078663674481,45.59229070560183],[-122.77986968593153,45.59136731406846],[-122.77937468593153,45.59089231406846],[-122.77888368593155,45.59047231406846],[-122.77865068593151,45.59029531406846],[-122.77819368593154,45.58997831406845],[-122.77789068593154,45.58980131406846],[-122.77755168593153,45.58961031406847],[-122.77638168593153,45.58896931406846],[-122.77541768593153,45.58844031406846],[-122.77403568593154,45.58769831406846],[-122.77375709422763,45.58753304780344],[-122.772485,45.586276],[-122.772626,45.586327],[-122.772767,45.586395],[-122.77303058685111,45.58660672866451],[-122.773234,45.586774],[-122.773392,45.586864],[-122.77380008639547,45.58704747875958],[-122.77433951868051,45.58725228190532],[-122.77443709817825,45.58729819551809],[-122.77459623742578,45.58736878587992],[-122.77472753518772,45.58742723737583],[-122.77485884103447,45.58748586043458],[-122.77486679471799,45.58748930359676],[-122.77499200998716,45.58754221649213],[-122.77513278138207,45.58759327794208],[-122.77527923192621,45.58763976775413],[-122.77528475926016,45.58763142736485],[-122.7755161059885,45.58740769739035],[-122.77566045896647,45.58745062726125],[-122.77580481284272,45.58749355772797],[-122.775949166719,45.58753648690454],[-122.77571898330892,45.58774047469775],[-122.77571722350929,45.58774531094497],[-122.7759893447684,45.58780731960665],[-122.77599525658128,45.58780857440167],[-122.77600118186891,45.58781017181357],[-122.77603473574139,45.58781859704467],[-122.77611386024994,45.5878427537255],[-122.77618735411828,45.5878726801836],[-122.77625116953774,45.5879048572062],[-122.77625714962258,45.58790782570912],[-122.77627118040901,45.58791663566157],[-122.77630120120749,45.58793439072281],[-122.77635553041755,45.58797361365308],[-122.77635959978579,45.58797764834775],[-122.77636562209148,45.58798164532293],[-122.77647873435876,45.58807372152118],[-122.77648475666443,45.58807771786091],[-122.77648882603269,45.58808175317674],[-122.77652702060193,45.58810843440865],[-122.77657306644676,45.58813598945297],[-122.77662483096668,45.58816000140749],[-122.77667838942224,45.58818003399316],[-122.77673374271173,45.58819608658559],[-122.77673964733809,45.58819716975039],[-122.77674556633751,45.58819859615826],[-122.77675147815039,45.58819985094459],[-122.77733321455199,45.58833289522347],[-122.77726250905427,45.58827513367064],[-122.77765264468721,45.58811324736405],[-122.7772530462011,45.58779620058738],[-122.7768705911638,45.58795467547893],[-122.77673930867324,45.58784803882315],[-122.7766099719336,45.58774119325108],[-122.77661542291072,45.58773096816716],[-122.77716134707519,45.58750752525754],[-122.77722651895071,45.5876221571908],[-122.77727277949293,45.58770372348003],[-122.77734002288352,45.58767529816316],[-122.77736523949186,45.58771938455612],[-122.77737935292326,45.58773025149966],[-122.77751255421529,45.58783599128925],[-122.77784881338908,45.5876948914912],[-122.77811313457659,45.58790315229722],[-122.77818235066754,45.58787520234385],[-122.77834847611304,45.58811953199189],[-122.77838173084656,45.58816911747329],[-122.77855151063861,45.58811533888726],[-122.77855729848397,45.58811350951172],[-122.77888953140865,45.58801810026337],[-122.77890491595622,45.58801196524348],[-122.77925691451209,45.58787363636651],[-122.77942808040464,45.58780576745783],[-122.77955501774417,45.5877555800322],[-122.77966127676422,45.58787145430807],[-122.77975596009348,45.58799098710406],[-122.77980330130893,45.58805075372094],[-122.77985259546183,45.58811048129778],[-122.77994728687594,45.5882301858349],[-122.7794298941032,45.58843421385519],[-122.77941258446599,45.58844107303113],[-122.77925295204338,45.58850425523683],[-122.77914715026584,45.58854562019643],[-122.77918585597651,45.58858497974442],[-122.7792027074729,45.58861534208701],[-122.77922573309026,45.58865346881259],[-122.77924248038212,45.58868125995992],[-122.77925884678827,45.58874815655455],[-122.77926205916371,45.58877947497631],[-122.77927572613247,45.58887643379246],[-122.77928710599048,45.58891650724629],[-122.77931014508256,45.58895497637718],[-122.77933686906397,45.58898788640415],[-122.77936722134079,45.58901386438434],[-122.77940539704542,45.58904003094482],[-122.77945317663874,45.58906206292279],[-122.77957210819245,45.58900706059885],[-122.77970292535571,45.58895611044731],[-122.78032993055943,45.58870823888445],[-122.78042657580924,45.58882790379957],[-122.77986492304248,45.58904892998659],[-122.77978606802854,45.5890801596022],[-122.77979240743947,45.58909203776479],[-122.77979764910916,45.58912520168199],[-122.77984276609601,45.58912962290749],[-122.77999408281403,45.58915114628071],[-122.78007683292306,45.58916819750377],[-122.78015108407118,45.58916826979734],[-122.78024238973498,45.58915514191507],[-122.7803258800558,45.58914199705649],[-122.78036843864071,45.58913137932769],[-122.78041872453369,45.58911855004091],[-122.78047457818478,45.58909840903539],[-122.78049766848083,45.58908954771991],[-122.78055969625289,45.58907717230209],[-122.78060866341903,45.58908014514347],[-122.7806497864961,45.58908241642185],[-122.78070562128259,45.58901323197118],[-122.78094165721677,45.58880928966511],[-122.78101891861941,45.58873847920334],[-122.7810642583884,45.58869985402013],[-122.78112321661713,45.58865975778045],[-122.78151114958102,45.5884919004353],[-122.78152070496068,45.58848656636381],[-122.78153023159429,45.58848054706626],[-122.7815377792393,45.58847388088989],[-122.78154530622307,45.58846670110777],[-122.78155085960815,45.58845904606716],[-122.78155444747939,45.58845108676012],[-122.78155802097758,45.58844278483889],[-122.78155963525015,45.58843434964313],[-122.78156124323453,45.58842574345384],[-122.78156089828144,45.5884171762394],[-122.78155860128928,45.58840864799991],[-122.7815563114836,45.58840029075135],[-122.78155013017614,45.58839235343866],[-122.7815459089926,45.5883845487696],[-122.78153975553293,45.58837729793879],[-122.78153167069536,45.58837059906045],[-122.78152360562075,45.58836441378719],[-122.78151361635477,45.58835895334521],[-122.7815036549366,45.58835417750112],[-122.78149176932708,45.58835012648866],[-122.78148186899433,45.58834689334797],[-122.78146809961764,45.58834459375066],[-122.78146023486734,45.58834337731515],[-122.78104804828911,45.58829684910958],[-122.7809572762246,45.58827464143801],[-122.78089147103677,45.58824164989699],[-122.78086322890256,45.58821957422014],[-122.78084303028341,45.5882031695902],[-122.78082261157699,45.58818128186472],[-122.78080811097168,45.58816081928227],[-122.78079086691149,45.58812069122495],[-122.78077296708113,45.58806428608467],[-122.78077948076526,45.58803191804314],[-122.78078627023218,45.58800640418278],[-122.78079503958598,45.58798153719463],[-122.78080774715397,45.58795744846809],[-122.78082445671657,45.5879356826056],[-122.78113526122847,45.58755054369282],[-122.78114079395232,45.58754237428524],[-122.78114443033257,45.58753561495605],[-122.78115705525556,45.58750947032596],[-122.78112490185661,45.58748730069102],[-122.78111689247754,45.58748248642461],[-122.78111081537463,45.58747711956696],[-122.78110279970737,45.58747213367587],[-122.78109474900579,45.58746629217992],[-122.78104452150332,45.58743196300605],[-122.78101410724274,45.58740444282103],[-122.78098776953691,45.58738112835547],[-122.78098635648698,45.58734600324593],[-122.7809971677114,45.58732332433162],[-122.7810388432524,45.58729077417991],[-122.78109303142698,45.58727786651849],[-122.78114996485306,45.58728462587867],[-122.78144274287213,45.58737433568795],[-122.7814805331995,45.58739090526889],[-122.7815129830425,45.58742044282787],[-122.78153092419537,45.58747787710048],[-122.78150756260808,45.5875771139049],[-122.78165593105535,45.58757399953594],[-122.78173400902659,45.58757210790565],[-122.78184178530111,45.58757991583093],[-122.78189090338422,45.58758665880963],[-122.7827844261563,45.58871820541743],[-122.78281944338438,45.58876295295358],[-122.78286674058242,45.58882151929672],[-122.78292678038274,45.58885685282108],[-122.78297870659942,45.58893333285805],[-122.783095936744,45.58907882374096],[-122.78319063624295,45.58919852558436],[-122.78320295034885,45.58921319990863],[-122.78329764355956,45.58933272984734],[-122.78339429599596,45.58945239280243],[-122.78389071759835,45.58926145296749],[-122.78401388111541,45.58921459360146],[-122.78430537005204,45.58893237606459],[-122.78461607754589,45.58898176594903],[-122.78496415495553,45.58903727246789],[-122.78508325718919,45.58908360769572],[-122.78504498446652,45.58915210432775],[-122.78499202608555,45.58924404156273],[-122.78493999746094,45.58931058167759],[-122.78491027849638,45.58934889777946],[-122.78486934226889,45.58939978345347],[-122.78465549921381,45.58962078475772],[-122.78458359356692,45.5896789730255],[-122.7845684713274,45.5896916198804],[-122.78449658005351,45.58975015130841],[-122.78456028587854,45.58982793956909],[-122.78455460852595,45.58983251035369],[-122.78452031444165,45.58985428428155],[-122.78439811661357,45.58992513231079],[-122.78439240422668,45.58992884689194],[-122.78426383824153,45.5899871310208],[-122.78425807734561,45.58998964617108],[-122.78425231734799,45.58999216132125],[-122.78420426017526,45.59001180790278],[-122.7841984920928,45.59001415080728],[-122.78419273928172,45.59001683820102],[-122.78401239620025,45.59009947156594],[-122.78398370401004,45.59011478874215],[-122.78381385414939,45.59021539192206],[-122.78380621038464,45.59021965904788],[-122.78380244374867,45.59022316364786],[-122.78379479279738,45.59022725915772],[-122.78347705778307,45.59044020262779],[-122.78347135258271,45.5904440887896],[-122.78346563300929,45.59044763172172],[-122.7834351190357,45.59046624279834],[-122.7833853299111,45.59049141042561],[-122.78333342974555,45.59051267554057],[-122.78331797602772,45.590517097914],[-122.78327746470336,45.59053007649377],[-122.78321937604382,45.59054323297114],[-122.78314167985658,45.59055472107719],[-122.78316399849983,45.59057519913109],[-122.78325863781164,45.59069335828677],[-122.78326889657217,45.5907055013866],[-122.78302456918793,45.59094613877516],[-122.78288992160833,45.59099905469808],[-122.7828553086221,45.59101294592105],[-122.7826168023209,45.59110702055197],[-122.78234945740417,45.59121281307034],[-122.78236213083618,45.59123639813525],[-122.78237672127304,45.59125908741226],[-122.78239516907568,45.59128049933251],[-122.78241745987117,45.59130029193049],[-122.78244164072198,45.59131850418215],[-122.78246965019254,45.59133475389086],[-122.78249952995553,45.59134890842051],[-122.78252335956506,45.59135838165038],[-122.78252930641227,45.59136049253974],[-122.7825352388864,45.59136226146246],[-122.78254315214572,45.59136467597269],[-122.7825589094941,45.59136779327437],[-122.78257266629439,45.59136974952411],[-122.78258832752306,45.59137046803101],[-122.78260395371741,45.5913703291071],[-122.78261952511455,45.59136881980259],[-122.78263505429085,45.59136628208402],[-122.78264859010557,45.59136275618247],[-122.78270944647448,45.59141830875006],[-122.78222473620842,45.59160952538041],[-122.78211148110898,45.5916114288183],[-122.78214423098929,45.59164833337319],[-122.78214830125584,45.5916523684323],[-122.7821523715224,45.59165640286254],[-122.78216256829919,45.59166700439835],[-122.78218069181004,45.59168036365075],[-122.7821987739984,45.59169269449181],[-122.78222271320239,45.59170490966572],[-122.78224456921328,45.5917139069769],[-122.78226830899128,45.59172115297643],[-122.78229591242334,45.59172729261978],[-122.78232466030906,45.59176187689698],[-122.78206304484718,45.59186446855925],[-122.78205308971718,45.59185986462381],[-122.78196099263764,45.59190198898451],[-122.78193324457682,45.59189225057336],[-122.78189966644982,45.59188331363723],[-122.78186423958995,45.59187698605679],[-122.78182890974814,45.5918730566202],[-122.781799553703,45.59187192386621],[-122.78176441699895,45.59187279260428],[-122.78175078416621,45.59187391970077],[-122.78173519929436,45.59187508702821],[-122.78169030688633,45.5918763203596],[-122.78164332409865,45.59187416548699],[-122.78159816219608,45.59186871607276],[-122.78155482207688,45.59185997211602],[-122.78151135170197,45.59184797384614],[-122.78110550633134,45.5920082973486],[-122.78120713363774,45.5921059131386],[-122.78113477344327,45.5921529618156],[-122.78107783013571,45.59209750238038],[-122.78096199148152,45.59198662106207],[-122.78090504817399,45.59193116083387],[-122.78076656029653,45.59198586610377],[-122.78082349641753,45.59204115403952],[-122.78087093914263,45.59210331887872],[-122.78091239279973,45.5921623450191],[-122.78095782150197,45.59222300547142],[-122.78078663674481,45.59229070560183]]],"type":"Polygon"} +},{ + "id": 1108711943, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00013, + "geom:area_square_m":1185002.444899, + "geom:bbox":"-71.0141341336,42.380344369,-70.9866428593,42.3933160521", + "geom:latitude":42.386853, + "geom:longitude":-70.998238, + "iso:country":"US", + "lbl:latitude":42.391107, + "lbl:longitude":-71.008863, + "lbl:max_zoom":18.0, + "mps:latitude":42.385286, + "mps:longitude":-70.998446, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Orient Hts", + "Orientheights" + ], + "name:lat_x_preferred":[ + "Colles Orientales" + ], + "reversegeo:latitude":42.385286, + "reversegeo:longitude":-70.998446, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815995, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"025ded38caed5c5564203f9974881317", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711943, + "neighbourhood_id":85815995, + "region_id":85688645 + } + ], + "wof:id":1108711943, + "wof:lastmodified":1566624127, + "wof:name":"Orient Heights", + "wof:parent_id":85815995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85839765 + ], + "wof:tags":[] +}, + "bbox": [ + -71.01413413362039, + 42.38034436904876, + -70.98664285932568, + 42.39331605212679 +], + "geometry": {"coordinates":[[[[-71.01152026570919,42.38034591955665],[-71.01413413362039,42.38422126615094],[-71.014031,42.38426],[-71.012591,42.384747],[-71.01039900000001,42.385478],[-71.01008,42.385593],[-71.00921,42.385883],[-71.008644,42.386074],[-71.007148,42.386582],[-71.006795,42.386664],[-71.006519,42.386716],[-71.006199,42.386819],[-71.005972,42.386893],[-71.00579,42.386953],[-71.005145,42.387166],[-71.004385,42.387417],[-71.004217,42.387472],[-71.003764885499,42.38763690839919],[-71.00338475666692,42.38776448382212],[-71.003282,42.387787],[-71.003102,42.387792],[-71.003058,42.387793],[-71.002909,42.387807],[-71.00271499999999,42.387842],[-71.00251799999999,42.387884],[-71.00231700000001,42.387941],[-71.002127,42.38801],[-71.001209,42.388314],[-71.00116300000001,42.388331],[-71.001075,42.388364],[-71.00082,42.388443],[-71.000668,42.388477],[-71.00044,42.388497],[-70.999965,42.388525],[-70.999875,42.388531],[-70.99965,42.38854],[-70.999469,42.388554],[-70.999377,42.388565],[-70.99926499999999,42.388587],[-70.999121,42.388629],[-70.999081,42.388644],[-70.999003,42.388674],[-70.998907,42.388712],[-70.998818,42.388769],[-70.998575,42.388875],[-70.99715399999999,42.389942],[-70.996729,42.390291],[-70.996416,42.390559],[-70.996076,42.390898],[-70.995858,42.391169],[-70.99565800000001,42.391462],[-70.99495,42.392549],[-70.994731,42.392888],[-70.99447499999999,42.393284],[-70.994454,42.393316],[-70.99445396634272,42.39331605212679],[-70.99426136209699,42.39329648345455],[-70.99426355476257,42.39329354915227],[-70.99427720147034,42.39327290162301],[-70.99428680930576,42.39325610937755],[-70.99430068233131,42.39323753440098],[-70.99431600170168,42.39320501132661],[-70.99434196653372,42.39317811591142],[-70.99427784957065,42.39314632408499],[-70.99422783343503,42.39311288365589],[-70.99417434591476,42.39308843171801],[-70.99408522027932,42.3930857891824],[-70.9940303587362,42.39311147623751],[-70.99397474675011,42.39310952024653],[-70.99394111505836,42.39309307804388],[-70.9939042123822,42.39307544927077],[-70.99389191481816,42.39304892763675],[-70.99388848365443,42.39302253502764],[-70.99385888122778,42.39296733784845],[-70.9939414053992,42.39298396810108],[-70.99409843279039,42.39302028925211],[-70.99425321607279,42.39306022938258],[-70.99425844120239,42.39306264171021],[-70.99425802332038,42.39305946275977],[-70.99425810232482,42.39304958605529],[-70.99425928262451,42.39304080984071],[-70.99425930458814,42.39303806406106],[-70.99426043659641,42.39303532496071],[-70.99426304666626,42.39303259145629],[-70.99426529138049,42.39303013363453],[-70.99427275087278,42.39302303074224],[-70.99427984113908,42.3930159280273],[-70.99428840652696,42.39300965375718],[-70.99429697849453,42.39300255665275],[-70.99430403363156,42.39299984538332],[-70.99431035452227,42.39299630532323],[-70.9943136978885,42.39299467068984],[-70.99431742284187,42.39299194568484],[-70.99432113783926,42.39299031358478],[-70.99432337452124,42.3929884040015],[-70.99432599602548,42.39298484768332],[-70.99432823809522,42.39298211256023],[-70.99432972930326,42.39298047428846],[-70.99433198939256,42.39297609351932],[-70.99433312140377,42.39297335351799],[-70.9943346213812,42.39297061873479],[-70.9943346345718,42.39296896946646],[-70.99433464333433,42.39296787385533],[-70.99433576655396,42.3929662330661],[-70.9943368856361,42.39296541332071],[-70.99433689441298,42.39296431590907],[-70.99433802006148,42.39296267513048],[-70.99434062354416,42.39296076445792],[-70.99434175212984,42.39295830082965],[-70.99434399368967,42.39295638856658],[-70.99434550685655,42.39295200451487],[-70.99434663886674,42.39294926451339],[-70.99434886920605,42.39294845145169],[-70.99435259589943,42.39294490088974],[-70.99435521201967,42.39294216921039],[-70.99435745287215,42.39293943408131],[-70.99436006559594,42.39293697517397],[-70.99436231422143,42.39293341991729],[-70.99436345280388,42.39292985798219],[-70.99436720631225,42.39292356166136],[-70.99436984488331,42.392917263142],[-70.99437472282246,42.39290932603662],[-70.99437959832409,42.39290138982062],[-70.99438449040974,42.39289153156386],[-70.99438936832347,42.39288359715859],[-70.99439647273128,42.39287457058455],[-70.99440394777223,42.39286582292703],[-70.99440733082051,42.39285952857819],[-70.99441107313018,42.39285432785625],[-70.99441221169404,42.39285076772114],[-70.99441223364377,42.39284802284157],[-70.99441374923229,42.39284363879956],[-70.9944149229123,42.39283568721717],[-70.99441871151897,42.39282500034751],[-70.99442212967236,42.39281431545122],[-70.99442368673604,42.39280444073888],[-70.9944237218447,42.39280005019189],[-70.99442486161416,42.39279649096218],[-70.99442714757105,42.39278826607783],[-70.99442864362994,42.39278662782606],[-70.99442977441909,42.3927838878183],[-70.99442978757837,42.39278224215089],[-70.99442980294766,42.39278032010499],[-70.99443092737597,42.39277867932012],[-70.99443094271645,42.39277676087523],[-70.99442985121514,42.39277428389056],[-70.9944287577157,42.39277236057382],[-70.99442877966466,42.39276961569419],[-70.99442621523268,42.39276603658826],[-70.99442253560046,42.3927635518332],[-70.9944203491673,42.39275887513711],[-70.99441777959707,42.39275639435894],[-70.99441557899488,42.39275364151449],[-70.99441449089035,42.39275089175752],[-70.99441303234151,42.39274814307377],[-70.9944119420487,42.3927456669945],[-70.99441084735021,42.39274374187169],[-70.99441086929274,42.39274099789235],[-70.99441087586543,42.39274017595888],[-70.99441088245251,42.39273935222492],[-70.99441088903239,42.39273852939122],[-70.99441090440224,42.3927366073453],[-70.99441202103593,42.39273578938895],[-70.99441202761579,42.39273496655523],[-70.99441203639854,42.39273386824328],[-70.99441315303216,42.39273305028692],[-70.99441315961921,42.39273222655292],[-70.99441464667549,42.39273141022409],[-70.99441576551909,42.39273031588922],[-70.99441687800181,42.39273032077724],[-70.99441948827123,42.39272786365824],[-70.99442060589301,42.39272677021826],[-70.99442283623073,42.3927259562548],[-70.99442543211867,42.39272514569804],[-70.99442914170365,42.39272434003444],[-70.99443247942516,42.39272325724891],[-70.99443729370563,42.39272327840097],[-70.99444100869135,42.39272164539667],[-70.99444582953676,42.39272084551519],[-70.99444952769105,42.39272086176304],[-70.9944591538227,42.39272090405488],[-70.99446729583468,42.39272093982571],[-70.99447210233583,42.39272178200418],[-70.99447691540179,42.39272180314926],[-70.99448062497872,42.39272099838425],[-70.99448543804456,42.39272101952898],[-70.99448914618758,42.39271993836915],[-70.99449285456416,42.39271913179788],[-70.994496202769,42.39271749718047],[-70.99449991747596,42.3927155949871],[-70.99450363243081,42.39271396558176],[-70.99450735080963,42.39271205980313],[-70.99451069290527,42.39271042965989],[-70.99451441786221,42.39270770104731],[-70.99451702397742,42.39270606677047],[-70.99451815597577,42.39270332676715],[-70.99451928797401,42.39270058676382],[-70.99452040996962,42.39269894596735],[-70.9945219045901,42.39269703131983],[-70.99453013821854,42.39268636667342],[-70.99453649295144,42.39267843604818],[-70.99454247968217,42.39267050470632],[-70.9945496083881,42.39265873685432],[-70.9945522286514,42.39265518052536],[-70.99455336843987,42.39265161769323],[-70.99455561706594,42.39264805973175],[-70.9943897904229,42.39250655957376],[-70.99433685659457,42.39250632696938],[-70.9942949040075,42.39252150870717],[-70.99425257414258,42.39253723974732],[-70.99417928046078,42.39253691758298],[-70.99413720403577,42.39252081553271],[-70.99410500165534,42.39252067395972],[-70.99405298317095,42.39254432087096],[-70.9940202871657,42.39255926772123],[-70.99399967160632,42.39259128311713],[-70.9939670392302,42.39259827529267],[-70.99392520584006,42.39259809131497],[-70.99382044929982,42.39259763054289],[-70.99375683930428,42.39258939306718],[-70.99368379365259,42.39255778759134],[-70.99365288467496,42.39253460242444],[-70.99361074706773,42.392526459353],[-70.99354707707415,42.39252617913731],[-70.99347403278605,42.39249457713422],[-70.99333712811358,42.39248601586041],[-70.99316869816911,42.39248527411183],[-70.99306442596766,42.39246972146447],[-70.99295874839184,42.39244510743806],[-70.99289488602086,42.39246897442473],[-70.99284300504978,42.39247588055128],[-70.99281091230907,42.39246146864225],[-70.99274848891946,42.3924441807462],[-70.99259104140032,42.39241220607508],[-70.99249634313269,42.39240382990751],[-70.99239059319176,42.39238827013038],[-70.99231723336814,42.39239590412893],[-70.99226410990137,42.39241899528376],[-70.99217989389911,42.39244167281156],[-70.99209566779179,42.39246544948438],[-70.99205346528835,42.39246526319656],[-70.99198967530924,42.39248007490977],[-70.99193778882544,42.39248780436743],[-70.99186330875521,42.39249652968117],[-70.99176947666453,42.39251834158168],[-70.991736835043,42.39252615504748],[-70.99165268267328,42.39254087663038],[-70.99158987240739,42.39257188052101],[-70.99153680689703,42.3925875622305],[-70.99147300663965,42.39260347016284],[-70.99143081187911,42.39260246081842],[-70.99137942345496,42.39259400235505],[-70.9913045830245,42.39260190285214],[-70.9912420115373,42.39260244908044],[-70.99120018963202,42.39260144129999],[-70.99111603162889,42.39261698532905],[-70.99107377646399,42.39262393232813],[-70.99097844068379,42.39264765814811],[-70.99092524946431,42.39267952889147],[-70.99087250574661,42.39270152093425],[-70.99083017490244,42.39271725161505],[-70.99078785189317,42.39273215765155],[-70.99074595699147,42.39274020267511],[-70.99068327528249,42.39275501677001],[-70.99061954095541,42.39276269319275],[-70.99056646618747,42.39277947366597],[-70.99049299191584,42.39280137555512],[-70.99041957511032,42.39281614107237],[-70.99033492112136,42.39284704934357],[-70.99022916085033,42.39287868691336],[-70.9901665430347,42.39288554516925],[-70.99010286905133,42.39288526303169],[-70.99000773335887,42.39288484142256],[-70.98992370065727,42.39288446895271],[-70.98961842569682,42.39286774831432],[-70.9895344045507,42.3928665491473],[-70.98947189823262,42.39285913976195],[-70.98940835102253,42.39284376448038],[-70.9893566643852,42.39282652238497],[-70.98925128493308,42.39281096136813],[-70.98917797300166,42.39281255805263],[-70.98913584466001,42.39280331503151],[-70.98907223870415,42.39279507588297],[-70.98903010152792,42.39278692933411],[-70.98898833941176,42.39277851254847],[-70.98883082400782,42.39275476105798],[-70.98873631430844,42.39272306068183],[-70.98868344102901,42.39271486810358],[-70.98861033362945,42.39269148955333],[-70.98854673007573,42.39268297553621],[-70.98849502460435,42.39266765598238],[-70.98845288335171,42.39266033296634],[-70.98838940400088,42.39263617601447],[-70.98834763964062,42.39262775898523],[-70.98832697498877,42.39261970855396],[-70.98820000660011,42.39257276917098],[-70.98815830694633,42.39255666750405],[-70.98809580473939,42.39254925738686],[-70.98802270419144,42.39252478284087],[-70.98800086633396,42.39252468567449],[-70.98794805110413,42.39250935733404],[-70.98781140296292,42.39246951102499],[-70.98770739467507,42.39242184772743],[-70.98762330592143,42.39238305714321],[-70.98758177878481,42.39234555259036],[-70.98757919251875,42.39234471730981],[-70.98754564523284,42.39232755517202],[-70.98752536979913,42.39231676225132],[-70.98750510045207,42.39230596845381],[-70.98749071028597,42.39229986793094],[-70.98747632597728,42.39229349464512],[-70.98746931691122,42.39228989648518],[-70.98746305598007,42.39228630075691],[-70.98745975355115,42.39228271820625],[-70.98745607524685,42.39227995684437],[-70.98745129113907,42.39227636769363],[-70.98744652804731,42.39227003635946],[-70.98743697560508,42.39226121240097],[-70.98742373574996,42.39225045170181],[-70.98741049832104,42.39223969191217],[-70.98740131490524,42.39223059320615],[-70.9873998423195,42.39222976468326],[-70.98739291477256,42.39221656261057],[-70.98737279533053,42.39218683730302],[-70.98734034812237,42.39217077655566],[-70.98730913558551,42.39213935338561],[-70.98728896522722,42.39211621434207],[-70.9872786130848,42.39206897152113],[-70.98726799941065,42.39205383090061],[-70.98725739464122,42.39203759286771],[-70.98725759046971,42.39201344531708],[-70.98724808806467,42.39199830964632],[-70.98724827497493,42.39197526220759],[-70.98723729334201,42.39196011904383],[-70.98720651710859,42.3919207428436],[-70.98718548811959,42.39186631584713],[-70.98718568396771,42.39184216919591],[-70.98717495486365,42.39179574664499],[-70.98717508394689,42.39177983192922],[-70.98717520637074,42.39176473824634],[-70.98716589986351,42.39172545771657],[-70.98716603117603,42.3917092684226],[-70.98716640731081,42.3916628953632],[-70.98716659427905,42.39163984432179],[-70.98717647275237,42.39160860514005],[-70.98717679767823,42.39156854467105],[-70.98717697794659,42.3915463191634],[-70.98718859502054,42.3914832553437],[-70.98719951771467,42.39145998115976],[-70.98723111710633,42.39139783014942],[-70.98725353558697,42.39132658222108],[-70.98726352966828,42.39128107577954],[-70.9872853175026,42.39124220749592],[-70.98730606063985,42.39119482502997],[-70.98732827543778,42.39114882745801],[-70.98733944946848,42.39109454215432],[-70.98736006911203,42.39106252974645],[-70.98755274817267,42.39072037642461],[-70.98756300335661,42.39064276503699],[-70.98758515977885,42.39060362374623],[-70.98760583575599,42.39056447495811],[-70.98763843110066,42.39051659963084],[-70.98767026559719,42.39047118679574],[-70.98769198234767,42.39044027666171],[-70.98772389798161,42.3903849898111],[-70.98775555655035,42.39031570412488],[-70.9877776448284,42.39028479562791],[-70.98778746376922,42.39026069180597],[-70.98780918628692,42.39022950348548],[-70.98785182735631,42.39017536179144],[-70.98786274979985,42.39015236032576],[-70.98789441335214,42.39008197626922],[-70.98790570373473,42.390058977337],[-70.98791571168898,42.39001182516302],[-70.98792676520972,42.38997263258855],[-70.98793787648202,42.38992630728526],[-70.98793825870392,42.38987911137021],[-70.98793857649632,42.38983987101605],[-70.98793900982574,42.3897863643061],[-70.98793965206472,42.38970706166211],[-70.98793990316662,42.38967605594749],[-70.98794154317871,42.38947354877102],[-70.98794211205944,42.38940330359684],[-70.98794274761238,42.38932482558023],[-70.98793252312612,42.3892616662555],[-70.98792260312393,42.38916091313695],[-70.98789164412851,42.3890984834893],[-70.98786092667555,42.38905197200827],[-70.98783965880372,42.38898135504164],[-70.98780913482993,42.38891097055456],[-70.98779878039483,42.38886372773431],[-70.98777836257217,42.38882521882729],[-70.98775714859046,42.38879384295934],[-70.9876631596854,42.38865265176261],[-70.98763256915719,42.38859022457657],[-70.98755997271128,42.38850428563058],[-70.98750742478639,42.38845685485518],[-70.98745493114471,42.38840228770837],[-70.98742402528261,42.38837909904008],[-70.98738227609321,42.38832348407165],[-70.9873190533184,42.38826886905903],[-70.98721542716765,42.38817483306759],[-70.98716293522651,42.38812026578942],[-70.98707923074504,42.38803455070258],[-70.9870483998567,42.38800230896016],[-70.98693256002734,42.38790821915361],[-70.98689068143517,42.38786879151385],[-70.98686002988579,42.38781432328752],[-70.98681821478363,42.38776693644947],[-70.98680766874681,42.38774356472824],[-70.98676597985835,42.38768108779085],[-70.98675575134872,42.38761875117712],[-70.98674650363178,42.38757233514416],[-70.98674682213024,42.38753309747303],[-70.9867150676007,42.38747779961776],[-70.98668429995288,42.38739204758024],[-70.98665358178823,42.38734553574764],[-70.98664285932568,42.38729828755809],[-70.98666508217563,42.38725118905893],[-70.98666558785339,42.38718890122097],[-70.98670822665176,42.38713475810657],[-70.98677073055184,42.38709579603317],[-70.98694968879367,42.38712046892236],[-70.98714894641486,42.38715263689193],[-70.98730729625797,42.38720767773907],[-70.9874331408251,42.38725461321009],[-70.98766989733805,42.3872271294235],[-70.98767840902904,42.38722716732401],[-70.98768914427643,42.38722721512458],[-70.98769395692182,42.3872272365534],[-70.98769765961065,42.38722725303988],[-70.98770136229946,42.38722726952625],[-70.98770840031015,42.38722647799887],[-70.98771582185417,42.38722376606189],[-70.98772435052062,42.38722215830646],[-70.98773621917556,42.38721946616804],[-70.98774807873474,42.38721759685198],[-70.98775548712671,42.38721680787098],[-70.9877625196841,42.38721683918008],[-70.98777361987604,42.38721771056132],[-70.987784342567,42.38721885845013],[-70.98779395998407,42.38721972322833],[-70.98780948685507,42.38722253732943],[-70.98781687404443,42.38722421594199],[-70.98782388981957,42.38722616928943],[-70.98783127520237,42.38722867075708],[-70.98783827886315,42.38723226977783],[-70.98784674975445,42.38723779474515],[-70.98785373887347,42.38724303942831],[-70.98786221379116,42.38724746786046],[-70.98786920433182,42.3872529871371],[-70.98788027986413,42.38725660427934],[-70.98788359762136,42.38725826477458],[-70.98788729140944,42.38725938046812],[-70.98789098077188,42.38726104261714],[-70.98789465758884,42.38726380396295],[-70.98789797777557,42.38726546446863],[-70.98790163904857,42.38727014516092],[-70.98790531285303,42.38727372845675],[-70.9879074972098,42.38727812888765],[-70.98791484237739,42.38728529726845],[-70.98792070054171,42.38729328099446],[-70.9879291478142,42.38730127444251],[-70.9879361185519,42.3873095404082],[-70.98794569677894,42.38731479660839],[-70.98794938614621,42.38731645875554],[-70.98795306661214,42.38731922011566],[-70.98795638095118,42.38732115338112],[-70.98795896701675,42.38732198865414],[-70.98796265816851,42.38732283064564],[-70.98796598502332,42.38732366831495],[-70.98797817175357,42.38732728949238],[-70.98801064754446,42.38733923319453],[-70.98802503784621,42.38734533366482],[-70.98803941862654,42.38735171047961],[-70.98805122830603,42.38735615373582],[-70.98805713538769,42.38735809853465],[-70.98806304467091,42.38735977145569],[-70.98807632035695,42.38736614334887],[-70.98808847579632,42.38737333131975],[-70.98810025659996,42.38738134228714],[-70.98810983083222,42.38738769500751],[-70.9881182902274,42.38739404546811],[-70.98813854298662,42.38740730679439],[-70.98814923384738,42.38741284161495],[-70.98816140606961,42.38741810843625],[-70.9881684073414,42.38742170742594],[-70.98819130594394,42.38742812211226],[-70.9882142015344,42.38743535964457],[-70.98824296928559,42.38744810875053],[-70.9882521941296,42.38745171762505],[-70.98826177604766,42.38745697381496],[-70.98827285163817,42.38746059091922],[-70.98829058276444,42.38746506048633],[-70.98831608847696,42.3874695646258],[-70.98837599658185,42.38747696401954],[-70.98839152534207,42.38747895518593],[-70.98840595426475,42.38747984040673],[-70.98843368777059,42.38748353336222],[-70.98845770064085,42.38748912648428],[-70.98846951703199,42.38749274686307],[-70.98848282508435,42.38749527642009],[-70.98850093753266,42.38749809922106],[-70.9885138873077,42.38749897965321],[-70.98852017265017,42.38750010684681],[-70.98852719858354,42.38750096094353],[-70.98853569700033,42.38750264444936],[-70.98854419561084,42.3875046043441],[-70.98855969129902,42.38751098604922],[-70.98857518679696,42.3875170913627],[-70.98859919121828,42.38752433284629],[-70.98861580656697,42.38752907109149],[-70.98863280847179,42.38753271360029],[-70.98864130689572,42.38753439709833],[-70.98864944702208,42.38753443327546],[-70.98865796905245,42.38753364828531],[-70.98867461367571,42.38753536798381],[-70.98868683476974,42.38753459943027],[-70.98869052193434,42.38753653793226],[-70.98869385182059,42.38753655272991],[-70.98869866448985,42.38753657411671],[-70.98870126612347,42.38753548642531],[-70.98870497548418,42.387534680045],[-70.98870719963307,42.38753386706465],[-70.98871091020803,42.38753306068953],[-70.98871462481354,42.38753115507964],[-70.98871796499613,42.38753034705839],[-70.98872167070584,42.38752954156158],[-70.98872538773966,42.3875276359621],[-70.98872909709962,42.38752682958103],[-70.98873501851568,42.38752685589309],[-70.9887409490137,42.38752605938126],[-70.98874687042965,42.38752608569273],[-70.98876018939161,42.38752696773756],[-70.98877202678547,42.38752784319795],[-70.98878053428653,42.38752870476235],[-70.98878793605684,42.38752873764908],[-70.98880088482943,42.38752989353279],[-70.98881309140941,42.38753076972898],[-70.98882161221557,42.38752998562156],[-70.98882975719913,42.38753002180752],[-70.98884308038603,42.38753008099757],[-70.9888489963724,42.38753092924333],[-70.98885491778891,42.38753095554922],[-70.98886343980897,42.3875301714441],[-70.98886714653659,42.38752908955848],[-70.9888719682928,42.3875282872142],[-70.98887567522216,42.38752748081759],[-70.98887900510796,42.38752749560989],[-70.98888531607416,42.38752560422905],[-70.98889123870458,42.38752563053846],[-70.98889716254942,42.38752565685297],[-70.98890308517983,42.38752568316177],[-70.98890788655645,42.38752680104137],[-70.98891269922504,42.38752682241923],[-70.9889141717138,42.3875276518239],[-70.98891528289018,42.38752765675969],[-70.98891639285212,42.38752766169009],[-70.9889174882907,42.3875293131841],[-70.98891897228802,42.38752931977591],[-70.98892008224999,42.38752932470626],[-70.98892007337257,42.38753042301913],[-70.98892117547666,42.38753124987825],[-70.98892227878791,42.38753207764296],[-70.98892227213713,42.38753290047735],[-70.98892374724986,42.38753400628222],[-70.98892374059911,42.38753482911663],[-70.98892482716072,42.38753757892344],[-70.98892702713283,42.38754005728721],[-70.98893328223376,42.38754447667983],[-70.98894026745731,42.38755081963106],[-70.98894763374433,42.38755524305818],[-70.98894984481409,42.38755634853045],[-70.98895205385978,42.38755800497036],[-70.98895573860506,42.38755994345306],[-70.98895942801312,42.38756160556773],[-70.98896423403416,42.3875624497778],[-70.98896902995709,42.38756439319545],[-70.98897272601589,42.38756523247528],[-70.98897752960862,42.38756607667401],[-70.98898233097505,42.38756719635098],[-70.9889871370041,42.38756803965987],[-70.98899195089031,42.38756806103979],[-70.98899528077827,42.38756807582871],[-70.9890000922356,42.38756809719752],[-70.98900639433364,42.38756730322262],[-70.98901233792857,42.38756458553881],[-70.98901826056274,42.38756461184168],[-70.98902418985358,42.38756381440959],[-70.98903159041373,42.38756384727525],[-70.98903862422475,42.38756387851173],[-70.98904490816588,42.38756473018203],[-70.98905785917658,42.38756561055831],[-70.98906637212835,42.38756564836154],[-70.98909266750174,42.38756411849852],[-70.98912044301838,42.38756232061355],[-70.98921782065666,42.38755918510079],[-70.98923595351778,42.38756008846082],[-70.98925371254022,42.38756126654715],[-70.98925852035397,42.38756128788897],[-70.98926111431463,42.38756129940344],[-70.98926333423975,42.38756130925753],[-70.98926592334277,42.38756132075032],[-70.98926814569671,42.38756133061512],[-70.989270731804,42.38756216405816],[-70.98927295294351,42.38756217391747],[-70.98927553660752,42.38756300915009],[-70.98927774101534,42.38756494015121],[-70.98928143707104,42.38756578032142],[-70.98928624066788,42.38756662450726],[-70.98928882433951,42.38756745883934],[-70.98929104547928,42.38756746869829],[-70.98929363944015,42.38756748021203],[-70.98929585815111,42.38756749006011],[-70.98929696689939,42.38756749498143],[-70.98929954535085,42.38756942674206],[-70.9893017807856,42.38756751634839],[-70.98930437353209,42.3875675278565],[-70.98930660010321,42.38756671487536],[-70.98930919828101,42.38756590354357],[-70.98931290399983,42.3875650962272],[-70.98931773218763,42.38756319644079],[-70.98931995211281,42.3875632062938],[-70.98932254485914,42.38756321780149],[-70.98932477143713,42.38756240391975],[-70.98932736296904,42.38756241542195],[-70.98932846749325,42.3875632440884],[-70.98933068741843,42.38756325394121],[-70.98933328016477,42.38756326544866],[-70.98933550008995,42.38756327530136],[-70.98933697501393,42.38756410471141],[-70.98933919615359,42.38756411456944],[-70.98934177881542,42.3875652243842],[-70.9893450954055,42.38756688573211],[-70.98934879146942,42.38756772499986],[-70.98935246294442,42.38757130823841],[-70.98935467519985,42.38757241820958],[-70.98935835433811,42.38757490222939],[-70.98936203488792,42.38757766264402],[-70.989364249383,42.38757849533597],[-70.98936792206659,42.38758207947968],[-70.98937272045401,42.38758402019049],[-70.98937862980043,42.38758569214364],[-70.98938342452348,42.38758763553857],[-70.98938933387051,42.38758930749118],[-70.98939414654404,42.38758932884888],[-70.98940042826796,42.38759045597818],[-70.98940634426017,42.38759130509551],[-70.98941115814824,42.38759132645788],[-70.98941707414069,42.38759217557462],[-70.989426704918,42.38759139544772],[-70.98944374513421,42.38758954894602],[-70.98946042422678,42.38758715436415],[-70.98947598951453,42.3875844784492],[-70.98949157173091,42.38758015687943],[-70.98950121920862,42.38757745830515],[-70.98951235791993,42.38757311791764],[-70.98952051721231,42.38757123200172],[-70.98952903925135,42.38757044514654],[-70.98954720390674,42.38756695969104],[-70.98958092197995,42.38756271856669],[-70.98958794129251,42.38756439543306],[-70.98959387057614,42.38756359797166],[-70.98960126270309,42.38756527739132],[-70.98960828522024,42.38756640689514],[-70.98961568699545,42.38756643972861],[-70.98962420237649,42.38756647750133],[-70.98963234493638,42.38756651361969],[-70.98964347400448,42.38756381800425],[-70.98965533113575,42.38756194938122],[-70.98966385736968,42.38756034147137],[-70.98966868674641,42.38755844347614],[-70.98967201541964,42.38755845824009],[-70.98967349941769,42.38755846482216],[-70.98970943740282,42.38755423350633],[-70.98972278760475,42.38755154773403],[-70.98973465280623,42.3875491299625],[-70.98974317217602,42.3875480711925],[-70.98975058423956,42.38754728029875],[-70.98976131168131,42.38754815163529],[-70.98977203570783,42.38754929574314],[-70.98978165196611,42.38755016305055],[-70.98979608997819,42.38755022707384],[-70.98982125843646,42.3875503386754],[-70.98984644482371,42.38754852913487],[-70.98985496441955,42.38754774314503],[-70.98986349307532,42.38754613523118],[-70.98987053996255,42.38754424435841],[-70.98987796286467,42.38754180867704],[-70.98988612878026,42.38753909990077],[-70.98989951195527,42.38753202444643],[-70.98990694493676,42.38752848955539],[-70.98991400508925,42.38752495391131],[-70.98992253351929,42.38752307230431],[-70.98992957817275,42.38752145780666],[-70.98993588791433,42.38751956366205],[-70.98994070722024,42.38751876216241],[-70.98994663648787,42.38751796558306],[-70.98995625818122,42.3875180082355],[-70.98998254686903,42.38751730190383],[-70.99000548333188,42.38751904929918],[-70.99002583490214,42.3875199623691],[-70.99004505858096,42.38752279255282],[-70.99005356732033,42.38752365312825],[-70.99006428592648,42.38752562004871],[-70.99006796407542,42.38752838043004],[-70.9900712897545,42.38752921803304],[-70.99007498217544,42.38753005816157],[-70.99007868488262,42.38753007457144],[-70.99008238758979,42.38753009098117],[-70.99008571747602,42.38753010573854],[-70.99009053014527,42.3875301270671],[-70.99009683224028,42.38752933123202],[-70.99010164668731,42.38752852970415],[-70.99010981622756,42.38752582182835],[-70.99011723889636,42.38752311244281],[-70.99012578304092,42.3875195824618],[-70.99014620841017,42.38751089155763],[-70.99016182396512,42.38750272851322],[-70.99016889195667,42.38749836912412],[-70.99017632612626,42.38749483512128],[-70.99018486297008,42.38749130600382],[-70.99019673157079,42.38748861361177],[-70.99020155088554,42.38748781030075],[-70.99020526684389,42.38748618283807],[-70.99020897841082,42.3874851000305],[-70.99021232576784,42.38748264627001],[-70.99021603733443,42.38748156346222],[-70.99021864755767,42.38747910553528],[-70.99022088539755,42.38747719423419],[-70.99022201746668,42.38747445697056],[-70.99022461441457,42.38747364561271],[-70.99023171116157,42.38746571850304],[-70.99023804078944,42.38746135583833],[-70.99024399881029,42.38745699152695],[-70.99024624084608,42.3874542582804],[-70.99024995904391,42.38745235263703],[-70.99025255356896,42.38745154036747],[-70.99025366474405,42.38745154529034],[-70.99025589494208,42.38745073230695],[-70.99025738070617,42.38744991692576],[-70.99026071423141,42.38744993169421],[-70.9902633109625,42.38744884574643],[-70.99026553209821,42.38744885558658],[-70.99027033470026,42.387449974315],[-70.99027403740277,42.38744999071857],[-70.99027884222576,42.3874508339681],[-70.9902825382953,42.38745167320588],[-70.99028734188958,42.38745251825025],[-70.99029065870677,42.38745445506017],[-70.99029435479119,42.38745529249705],[-70.99029693845711,42.38745612860704],[-70.99030026192206,42.38745724078169],[-70.99030395434905,42.38745808000262],[-70.99030765705206,42.38745809640513],[-70.9903113518935,42.38745893743714],[-70.99031468299046,42.38745895219325],[-70.99031727451826,42.38745896367315],[-70.99032098386839,42.38745815544021],[-70.99032321042263,42.38745734243936],[-70.99032693645067,42.38745461576491],[-70.99032916301191,42.38745380186373],[-70.99033400321106,42.38745025636025],[-70.99033773103473,42.38744670412865],[-70.99034629603759,42.38744043284459],[-70.99035336400942,42.38743607344411],[-70.99035968335069,42.38743253359108],[-70.99037864323196,42.38742273780228],[-70.99040167916574,42.38741213990044],[-70.99041392897502,42.38740780254641],[-70.99042470848967,42.38740236122744],[-70.990439230272,42.38739172470965],[-70.99045485197276,42.38738218781221],[-70.99046081096947,42.38737754890587],[-70.99046824510128,42.38737401578435],[-70.99047905234916,42.38736528222726],[-70.99048388224494,42.38736256133635],[-70.99048760706059,42.38735983285073],[-70.9904909693295,42.38735627989566],[-70.99050433448933,42.3873511255075],[-70.99052624717194,42.38734216653398],[-70.99054182804244,42.38733784481641],[-70.99054664976282,42.38733704240188],[-70.99055146661831,42.38733624086592],[-70.99055368653573,42.38733625069511],[-70.99055739805887,42.38733517147728],[-70.99055999499674,42.38733436011182],[-70.99056703964186,42.38733274197406],[-70.99057670252108,42.3873281212616],[-70.99058636198679,42.38732377332068],[-70.99059490906404,42.38731942045397],[-70.99060197700524,42.38731506103811],[-70.99060793377281,42.38731069670234],[-70.99061907059006,42.38730717906345],[-70.99062984520509,42.38730173860392],[-70.99063579775529,42.3872981989125],[-70.9906417491122,42.38729465651465],[-70.99065400671034,42.38728949810626],[-70.99066589614921,42.38728406077792],[-70.99067183201367,42.3872824413266],[-70.99067814590829,42.38727972429586],[-70.99068409060429,42.38727700833137],[-70.99069003531426,42.38727429056604],[-70.99069488996366,42.38726909758301],[-70.99069601540263,42.38726718044836],[-70.99069861476471,42.38726636909051],[-70.99069973554865,42.38726472832385],[-70.9907082771897,42.38726119918891],[-70.99072016539697,42.38725576274979],[-70.9907335220983,42.3872522567262],[-70.99074094473002,42.38724954459949],[-70.9907479905465,42.38724793005701],[-70.99075281647006,42.38724630298801],[-70.99075764457581,42.38724440494158],[-70.99076247811531,42.38724168135424],[-70.99076842945256,42.38723813985004],[-70.99077327083226,42.38723459343304],[-70.99077811221136,42.38723104701587],[-70.99078407800687,42.38722586074733],[-70.99078781484003,42.38722148657742],[-70.99079154261747,42.38721793523118],[-70.99079379124025,42.3872143800395],[-70.99080240823771,42.38720179342626],[-70.99081473628478,42.3871875811089],[-70.99082928792473,42.38717337322861],[-70.99083413592186,42.38716900397444],[-70.99084009384508,42.38716464323292],[-70.99085459099369,42.38715674883314],[-70.99090888038022,42.38712652868868],[-70.99092558657904,42.38712029248288],[-70.99093784955207,42.38711430850333],[-70.99094973229478,42.38710969578055],[-70.99096423183866,42.38710180227784],[-70.99097761358604,42.38709472669203],[-70.99099321004826,42.3870887583544],[-70.99100546072843,42.38708414905415],[-70.99101734125028,42.38707981090264],[-70.99102700064782,42.38707546292445],[-70.99103182875399,42.38707356216564],[-70.9910377712053,42.38707112076107],[-70.99104259268043,42.38707004373664],[-70.99104741856836,42.38706841845578],[-70.99105223120279,42.38706843974413],[-70.99105704019405,42.38706846101616],[-70.99106075833751,42.38706655624665],[-70.99106927365209,42.38706659391243],[-70.99107520287036,42.38706579637455],[-70.99108113627508,42.3870641768913],[-70.9910870689028,42.38706310658043],[-70.9910944892945,42.3870606681088],[-70.99114977238597,42.38704472272282],[-70.99118135627214,42.38702977086026],[-70.99120301736097,42.3870057191054],[-70.99124540047119,42.38698285462704],[-70.99127668380227,42.38695966736856],[-70.99129716741601,42.38694384533086],[-70.99133986731734,42.38688174223288],[-70.99136182585325,42.38686674596683],[-70.991382362423,42.38684433403426],[-70.9914044031936,42.38677336266959],[-70.99142514320567,42.38672625490661],[-70.99158543849768,42.38653981579901],[-70.9916281287844,42.3864785372128],[-70.99167027112829,42.38643948432053],[-70.99170185461078,42.38642452961219],[-70.99173314586167,42.38639969743585],[-70.99178607821145,42.3863999312544],[-70.99183894296208,42.38640812330321],[-70.99188064435576,42.38642422368082],[-70.99191210528379,42.38642436261601],[-70.99195430011186,42.38642454893986],[-70.99198650545482,42.38642469114175],[-70.99201803274595,42.38641687178792],[-70.99207114541844,42.3863940543765],[-70.99211310109042,42.38637804969282],[-70.99218639005156,42.38637837318439],[-70.99224881512104,42.38639483858027],[-70.99230162263584,42.38641016585265],[-70.99234375842738,42.38641830942579],[-70.99237596430183,42.38641762865708],[-70.99241815616476,42.3864186376617],[-70.99251205409553,42.38638776862751],[-70.99255431276735,42.38637999646021],[-70.99259613961095,42.38638018092585],[-70.99264838379844,42.3864660278743],[-70.99269063711854,42.38645907849723],[-70.99273296184113,42.38644307611576],[-70.99278558890404,42.38643534867548],[-70.99283856484458,42.38642954576574],[-70.99289150722447,42.38642868346843],[-70.9929229669425,42.38642882212186],[-70.99296485763426,42.38642104818215],[-70.9930381466496,42.38642137113118],[-70.99306960341083,42.38642233259541],[-70.9931225387374,42.38642174294823],[-70.99315474286712,42.38642188481777],[-70.99318620258236,42.38642202339922],[-70.9932487576995,42.38642229893176],[-70.99332297196659,42.38644567586665],[-70.99341674099468,42.38643099722105],[-70.99351218253032,42.38639217561685],[-70.99354444674455,42.38638435908962],[-70.99358677020916,42.38636863187778],[-70.99362915543639,42.38634549284517],[-70.99367122813865,42.38631466755713],[-70.99369165065569,42.38630652608888],[-70.99375599134336,42.38626866757141],[-70.99378714916746,42.38626084610824],[-70.99380750576003,42.38626093566926],[-70.9938713026809,42.38624502553494],[-70.99390276109541,42.38624516391514],[-70.99393502100087,42.38623817372475],[-70.99397734550644,42.38622244367324],[-70.99399788873878,42.38619920844091],[-70.99402960009738,42.38616834015449],[-70.99405131933031,42.3861371524319],[-70.99407192617572,42.38610595981368],[-70.99408321897772,42.38608213651354],[-70.99413597092304,42.38605904377805],[-70.99417841232791,42.38602822352659],[-70.99424103289527,42.38602026746906],[-70.99430474464413,42.38601450747633],[-70.99439951204864,42.386013828309],[-70.99447335942024,42.38599027804246],[-70.99453720686036,42.38596723297352],[-70.99458890880308,42.38593645235389],[-70.99462166462823,42.38591327155656],[-70.99463172931553,42.38585815957442],[-70.99464271431569,42.38582692819146],[-70.99464301914935,42.38578878609583],[-70.99465400416784,42.38575755021],[-70.99466554546377,42.38570244560896],[-70.9946755435696,42.38565611204427],[-70.99467610712956,42.38558559219639],[-70.99471953332365,42.38552431569778],[-70.99480418192562,42.38549258311381],[-70.99489807270885,42.38546198489304],[-70.995099437156,42.38536929810777],[-70.99509981402673,42.38532209941847],[-70.99510018430519,42.3852757262646],[-70.99511632084958,42.38520170690443],[-70.99512030239789,42.38516632681846],[-70.99512429855368,42.3851295729554],[-70.99513050358985,42.38509420082496],[-70.99513820107731,42.38505746410291],[-70.99514081865527,42.38500780935117],[-70.99514153068452,42.38491862805514],[-70.99513850509966,42.38483382196598],[-70.99513117349723,42.38473225970768],[-70.99512295645653,42.38469490397146],[-70.99511585420214,42.38465755222596],[-70.99510240190739,42.3845806589296],[-70.99510478385115,42.38456036426437],[-70.99510864412926,42.38454062436245],[-70.99511599627408,42.38450059196447],[-70.99511629423887,42.38446327359142],[-70.99511770551075,42.38442568641573],[-70.99512650700346,42.38438922822159],[-70.99513531213623,42.38435276914223],[-70.9951426303883,42.38431712910253],[-70.99514157086756,42.38431081342704],[-70.99513940681069,42.38430366823999],[-70.99513685703526,42.38429844347746],[-70.99513469417218,42.38429130099638],[-70.99513104205407,42.38428497214352],[-70.99512738772283,42.38427892056985],[-70.99512262277416,42.3842734096976],[-70.99510830842057,42.38425825623681],[-70.99509287519905,42.38424391712709],[-70.9950763189034,42.38423122331629],[-70.99505461514747,42.38421438718905],[-70.99503067841741,42.38419919148696],[-70.99500673392768,42.38418481680934],[-70.99498904706832,42.38417486120421],[-70.99497098086309,42.38416572409448],[-70.99495290828371,42.38415768980807],[-70.994932602787,42.38415128784386],[-70.99492299888372,42.38414877799099],[-70.99491338405105,42.38414763652873],[-70.99490264932105,42.38414758940217],[-70.99489302570858,42.38414754715266],[-70.99488227928256,42.38414942028951],[-70.99487116637813,42.38415019616453],[-70.99486041336355,42.38415289393519],[-70.99484965016055,42.3841564109232],[-70.99483890347506,42.38415801216754],[-70.99482777768534,42.38416070469728],[-70.9948170375651,42.38416148400449],[-70.99480887353999,42.38416418953712],[-70.99479924992501,42.38416414727977],[-70.99478961852158,42.38416492785166],[-70.99478000026635,42.38416406275199],[-70.99477038565439,42.38416319766755],[-70.99476076861401,42.38416233257161],[-70.99475115914244,42.3841603682551],[-70.99474266100219,42.38415868610734],[-70.99473786392417,42.38415674562425],[-70.99473195477808,42.38415507124427],[-70.99472827660024,42.38415231371068],[-70.99472348490532,42.38414954768558],[-70.99471869442519,42.38414678166557],[-70.99471501407592,42.38414429600932],[-70.99471134250322,42.38414071203877],[-70.99470803107806,42.38413795341434],[-70.99470547062334,42.38413437432344],[-70.99470216699554,42.38413079196857],[-70.99469960532706,42.3841272128722],[-70.99469850856765,42.3841255632271],[-70.9946959532404,42.38412088670608],[-70.99469486306367,42.38411841332531],[-70.9946937750956,42.38411566356545],[-70.99469380359817,42.38411209674517],[-70.99469271562305,42.38410934788555],[-70.99469273755756,42.38410660300037],[-70.9946927660458,42.38410303798058],[-70.99469279455562,42.38409947026002],[-70.9946939242125,42.38409700302748],[-70.99469394611818,42.38409426174331],[-70.9946950779547,42.38409152173275],[-70.99469620979112,42.38408878172218],[-70.99469772099627,42.3840852214138],[-70.99470589818779,42.38408086751747],[-70.99471334122357,42.3840756857314],[-70.99472151063068,42.38407215376371],[-70.99473115856436,42.38406945475404],[-70.99473970855939,42.3840651015922],[-70.99475416164088,42.38406242008151],[-70.99476864052295,42.38405726918923],[-70.99478309066311,42.38405541142653],[-70.99479755931706,42.38405108425022],[-70.99481201846459,42.38404840275891],[-70.99482648710779,42.38404407647923],[-70.99484692311813,42.38403428733566],[-70.99485287512468,42.38403074742342],[-70.99485918851492,42.38402803016122],[-70.99486624679255,42.38402449330479],[-70.9948736595861,42.38402370298597],[-70.9948818082657,42.38402291589747],[-70.99488921205743,42.38402294840238],[-70.99489772989412,42.38402216293346],[-70.99490475431288,42.38402301663612],[-70.99491326921989,42.38402305401743],[-70.99493584853842,42.38402315313992],[-70.99495880991529,42.38402133451869],[-70.99497214674787,42.38401974463284],[-70.99498548938698,42.3840178837839],[-70.99499846363211,42.38401546943918],[-70.99501069808261,42.38401278085889],[-70.99501786495185,42.38399579685124],[-70.99500975252613,42.38399219699958],[-70.9949868807908,42.38398248872247],[-70.99495438762649,42.38397246901935],[-70.99492813917975,42.38396878594738],[-70.99490521678545,42.38396511837163],[-70.99491005111003,42.38396239461331],[-70.99491873038981,42.38394185210614],[-70.9949102724671,42.3839346819845],[-70.9948959156329,42.3839250146711],[-70.99489227255404,42.38391786388562],[-70.99489235146956,42.38390798445896],[-70.99488762212033,42.38389726285895],[-70.99488286256545,42.38389093093605],[-70.99487004059264,42.38387413376565],[-70.99486530831248,42.38386423591636],[-70.99486060453405,42.38385077034602],[-70.99485587763755,42.38384004695472],[-70.99484971870234,42.38382327993647],[-70.99484639776981,42.38382216880321],[-70.99484270428047,42.383821329722],[-70.99483900595557,42.38382048791854],[-70.99483530589301,42.38382047167252],[-70.99483197498672,42.38382045704727],[-70.99482828904328,42.38381852144652],[-70.99482459019521,42.38381850520548],[-70.99482088770414,42.38381848894834],[-70.99481606656286,42.3838195634311],[-70.99481273687094,42.38381954881061],[-70.99480903437976,42.38381953255309],[-70.99480532530762,42.38382034003111],[-70.99480199023458,42.38382115095189],[-70.99479827874077,42.38382195751879],[-70.99478864763158,42.38382301177962],[-70.99477791295685,42.38382296464141],[-70.99476829182248,42.38382292239213],[-70.99475718920586,42.38382287363623],[-70.99474758097872,42.38382091202539],[-70.99472838307953,42.38381451488812],[-70.99471067324114,42.38380730141862],[-70.99469260739414,42.38379844155445],[-70.99466699033326,42.38371545742112],[-70.99466704075107,42.38370914841581],[-70.99466708242775,42.3837039332235],[-70.99466711970872,42.38369926808856],[-70.99466828148468,42.38369323675222],[-70.99466943524332,42.38368775275647],[-70.99467207121184,42.383681727895],[-70.99467430462863,42.38368064025204],[-70.99467690552478,42.38367900414632],[-70.99467914185948,42.3836770954523],[-70.99468285628592,42.38367546513751],[-70.99468509264189,42.38367355374258],[-70.99468880048545,42.3836727471633],[-70.99469251491139,42.38367111684821],[-70.99469622617035,42.38367003479519],[-70.99469845253489,42.38366922170896],[-70.99470327148698,42.38366842000918],[-70.99470809922249,42.38366651909461],[-70.9947118112117,42.38366488966847],[-70.99471515989684,42.38366298225786],[-70.99471999199095,42.38366053578667],[-70.99472370619507,42.38365862908082],[-70.9947263206936,42.38365589828204],[-70.99472745788132,42.38365233543006],[-70.99472858872886,42.38364987000283],[-70.99472861064726,42.38364712691782],[-70.99472974247428,42.38364438690665],[-70.99472977096741,42.38364082098625],[-70.99472979948212,42.38363725236498],[-70.99472871151362,42.38363450350548],[-70.99472873999962,42.38363093848525],[-70.99472766397371,42.38362654304915],[-70.99472768590653,42.38362379816364],[-70.99472771441415,42.38362023044267],[-70.99472774291461,42.38361666362194],[-70.99472777142941,42.38361309500072],[-70.99472890225464,42.38361063227421],[-70.99473004065577,42.38360706942753],[-70.99473748824919,42.38360161397168],[-70.99474603453754,42.3835972607929],[-70.99475421409132,42.38359290690331],[-70.9947627537958,42.38358937745902],[-70.9947712971495,42.38358584712985],[-70.99478094260697,42.38358314450402],[-70.99479057685284,42.38358154108125],[-70.99480022109451,42.38357883844841],[-70.99481098543785,42.38357531876914],[-70.99482174197777,42.38357262371946],[-70.99483396761191,42.38357102897073],[-70.99484582626258,42.383569160722],[-70.994858047715,42.38356839331814],[-70.99486988981086,42.38356844531117],[-70.99488063225834,42.38356766600958],[-70.99489283520644,42.38356936711384],[-70.99490468507496,42.38356859807366],[-70.99491316780947,42.38357219955903],[-70.99492165415913,42.38357580466079],[-70.99492976771914,42.38357940722507],[-70.99493825407072,42.38358301232563],[-70.99497072607436,42.38359550413634],[-70.99500429266359,42.38360991925856],[-70.99503898472503,42.38362269448225],[-70.9950725513299,42.38363711138495],[-70.99510611137302,42.38365235201358],[-70.99513706594924,42.38366950061575],[-70.99514440616211,42.3836774913818],[-70.99514916816298,42.38368382240459],[-70.9951550344469,42.38369070924978],[-70.99515611830871,42.38369427915088],[-70.99515868412601,42.38369703539129],[-70.99515976796654,42.38370060799313],[-70.9951619670574,42.38370336262431],[-70.99516563984449,42.38370694658616],[-70.99516820812016,42.38370969923599],[-70.99517152049911,42.38371218596435],[-70.99520888583194,42.38371426842767],[-70.99524625574448,42.38371608171258],[-70.99530139155441,42.38371824210703],[-70.99538799862475,42.38371862199489],[-70.99543352377295,42.38371882165742],[-70.99546017341044,42.38371893852807],[-70.9955056494106,42.38372545077403],[-70.99553819043757,42.38372916130569],[-70.99555966097071,42.38372925544459],[-70.99557415503601,42.38372218330069],[-70.99558271540079,42.38371590800442],[-70.99559239583715,42.38370881835505],[-70.99561539333776,42.38370260635054],[-70.99563800221358,42.38369913761944],[-70.99565613455061,42.38369921710637],[-70.9956694914557,42.38369570871174],[-70.99568730641978,42.38368975036385],[-70.99570546842099,42.38368626212714],[-70.99572837398685,42.38369157609907],[-70.99574610458319,42.38369604452112],[-70.99574633215602,42.38366750635273],[-70.99572235292329,42.38365779786851],[-70.9956987306971,42.38364946298476],[-70.9956865289262,42.38364776197132],[-70.99567580205016,42.38364689298693],[-70.99566359470052,42.38364573932248],[-70.99565174138658,42.38364678751536],[-70.99560624474762,42.38364302021801],[-70.99556777734932,42.38364010748649],[-70.9955293281953,42.38363445164094],[-70.9955267553309,42.38363196816554],[-70.99552455621951,42.38362921444153],[-70.99552197773133,42.38362728371891],[-70.99551978883497,42.38362370627502],[-70.99551870618249,42.3836201345821],[-70.99551724440575,42.38361765867926],[-70.99551616175354,42.38361408698628],[-70.99551397164365,42.38361050953696],[-70.99551142284152,42.38360501019795],[-70.99550923686812,42.38360060990235],[-70.99550556405337,42.38359702775193],[-70.99550190024669,42.38359262097595],[-70.99549710977472,42.38358985498802],[-70.99549231930315,42.3835870889999],[-70.99548641016877,42.3835854173592],[-70.9954805032398,42.38358346933905],[-70.99547422373688,42.38358179607359],[-70.99546131188228,42.38357625218898],[-70.99544692780691,42.38357015086954],[-70.99543736995915,42.38356187760955],[-70.99542780872299,42.38355387712153],[-70.9954182499107,42.3835458775436],[-70.99540502364702,42.38353347297029],[-70.99538957080782,42.38352160600556],[-70.99537040408632,42.38351191405309],[-70.99535011698883,42.38350277086096],[-70.99534163426746,42.38349916580673],[-70.9953342577958,42.38349556560436],[-70.99532614541626,42.3834919657746],[-70.99531877138219,42.38348836468165],[-70.99531177840889,42.38348312133167],[-70.99530701884989,42.38347678852542],[-70.99530225151733,42.38347127764893],[-70.99529860501279,42.38346440144883],[-70.99529495291165,42.3834580744005],[-70.99527849535305,42.38343303088136],[-70.99526050302291,42.38341511631893],[-70.99524028728005,42.3833971919989],[-70.99522961984691,42.38338918664069],[-70.9952200674162,42.38338008962116],[-70.99521162390731,42.3833712711542],[-70.99520319281143,42.38336135438814],[-70.99519262907371,42.38333990456176],[-70.99518427854422,42.38331928820996],[-70.99517854032817,42.38329621112549],[-70.99517286902761,42.38326490479003],[-70.99516941652901,42.38323388277822],[-70.99516856052067,42.38320177290601],[-70.99517640560059,42.38310027450381],[-70.99518815648671,42.38301910196304],[-70.99519306202633,42.38300759888364],[-70.99519906310988,42.38299774453923],[-70.99520130258863,42.38299528487164],[-70.99520279573765,42.38299337110593],[-70.99520504882662,42.38298981494558],[-70.9952061718608,42.38298817234358],[-70.99518994884967,42.38293376780128],[-70.99519489698541,42.38291677584444],[-70.995162490984,42.38289605483845],[-70.99513631697641,42.38288249416309],[-70.9950727421497,42.38287151162586],[-70.99497286394562,42.38286421483662],[-70.9948958919606,42.38286195481457],[-70.9948193017768,42.38285887355293],[-70.99474826514097,42.38285499466515],[-70.9946772594383,42.38284754982303],[-70.99466286415715,42.38284227301934],[-70.99464848788151,42.3828350741795],[-70.9946355918466,42.38282788274016],[-70.99463561378315,42.38282513785417],[-70.99464550448849,42.38279142944997],[-70.99467310244735,42.38262663025397],[-70.99467111072728,42.38259808503167],[-70.99469847384121,42.38260094839657],[-70.9947010729601,42.3826001369474],[-70.99470219818015,42.382598221572],[-70.9947033146598,42.38259740000989],[-70.99470481265733,42.38259548807227],[-70.99470481923234,42.38259466523663],[-70.99470482580733,42.38259384240095],[-70.99470334973618,42.38259301035266],[-70.99470335849807,42.38259191383861],[-70.99470336507309,42.38259109100295],[-70.9947022617652,42.38259026419296],[-70.99470226834023,42.38258944135728],[-70.99470007173677,42.3825866867273],[-70.9946986097886,42.38258393532389],[-70.99469863829742,42.38258036760208],[-70.99469866023114,42.38257762271593],[-70.99470017259274,42.38257406511237],[-70.99470017919658,42.38257323867567],[-70.99470018576444,42.38257241674026],[-70.99470130976255,42.3825705022598],[-70.99470131633758,42.38256967942413],[-70.99470132291263,42.38256885658846],[-70.99470132950205,42.38256803195226],[-70.99470022742327,42.38256720334709],[-70.99470023619241,42.38256610593279],[-70.99470024276027,42.38256528399737],[-70.99466770652825,42.38256075038137],[-70.99473923997161,42.38231684033206],[-70.99476106140057,42.38231885648059],[-70.99483245414091,42.38209278408144],[-70.99484121383369,42.38206153838309],[-70.9948219915932,42.38205870989736],[-70.99484166976976,42.38200446382869],[-70.9948800555306,42.38201807639141],[-70.99493503957805,42.38203889930462],[-70.99499956781708,42.38206937017468],[-70.99499953275438,42.38207376073282],[-70.99506784795028,42.38209381743235],[-70.99513874427979,42.38211470918259],[-70.99520972414034,42.38212544689012],[-70.9952156528359,42.38212465003825],[-70.99522158811391,42.38212302854975],[-70.99522159468933,42.38212220481373],[-70.995222721085,42.38212029123886],[-70.99522272765321,42.3821194684031],[-70.99522422443819,42.38211755285216],[-70.99522423757456,42.38211590718058],[-70.99522425291711,42.38211398512983],[-70.99522425948531,42.38211316229405],[-70.9952242726217,42.38211151662246],[-70.99522428796425,42.38210959457171],[-70.99522429453243,42.38210877173591],[-70.99522282843287,42.3821068431853],[-70.9952228415693,42.38210519751374],[-70.99522173705599,42.38210436980305],[-70.99522064909965,42.38210162004695],[-70.9952195545536,42.38209969582731],[-70.99521808210135,42.38209886740259],[-70.99521697640263,42.38209803608552],[-70.99521477076819,42.38209610789119],[-70.99521329954474,42.38209527767116],[-70.99521219623882,42.382094450866],[-70.99521111121574,42.38209087735771],[-70.99521002203144,42.38208812939668],[-70.99521005051115,42.38208456167432],[-70.99521006364792,42.38208291600273],[-70.99521009212764,42.38207934828039],[-70.99521011403898,42.38207660339378],[-70.99521013595032,42.3820738585072],[-70.99521126892103,42.3820711211964],[-70.99521240215716,42.38206865487389],[-70.99521353390622,42.382065918458],[-70.9952150336228,42.38206317915513],[-70.9952161653932,42.38206044003841],[-70.99521840191274,42.38205880322177],[-70.995221006127,42.38205689343005],[-70.9952232402033,42.38205525840316],[-70.99522583809312,42.38205444513622],[-70.99522807195397,42.38205253281913],[-70.99523178332409,42.38205172803853],[-70.99523400719615,42.38205091493099],[-70.9952377207722,42.38204983377105],[-70.99524031744727,42.3820490204984],[-70.99524365483546,42.38204821137581],[-70.99524625270318,42.38204740080916],[-70.99524848776308,42.38204549029752],[-70.99525108322356,42.38204467701933],[-70.99525479874653,42.38204304759103],[-70.99525703259168,42.38204113707391],[-70.99525816047202,42.38203949359205],[-70.9952501804601,42.38201887796345],[-70.99524183251484,42.3819982616202],[-70.99523013186244,42.38198037464893],[-70.99522284757218,42.38196524933522],[-70.99521450208589,42.38194463119987],[-70.99520758400161,42.38193033305733],[-70.9951992599561,42.3819064217556],[-70.99520324050967,42.38187159081326],[-70.99520338289533,42.38185375400106],[-70.99520840760748,42.38182715808678],[-70.99521555346479,42.38181292075087],[-70.99522795833711,42.38178882761105],[-70.99523621284007,42.38177459423759],[-70.99524854370414,42.38176037964816],[-70.99525935203464,42.38175054638912],[-70.99527645132379,42.38174183998165],[-70.99529208497515,42.38173038666052],[-70.99530772229961,42.38171892885197],[-70.99532334231765,42.38170994316052],[-70.99533565298206,42.38169764699016],[-70.99537553268802,42.38166297080795],[-70.99540345674274,42.38164251356583],[-70.99543583992515,42.38161960547873],[-70.9954590940345,42.38158129030426],[-70.99546777061123,42.38156102322341],[-70.99548354870851,42.38153145488221],[-70.99549920807135,42.38151752854999],[-70.99551966504437,42.38150499619478],[-70.99555123615244,42.38149086413827],[-70.99558721015315,42.38148224314387],[-70.99562350686907,42.38147883442927],[-70.99564608528027,42.38147893341245],[-70.99567495247247,42.381479059959],[-70.99571445548743,42.38149157969017],[-70.99573719224993,42.38151857190005],[-70.99577288693607,42.38154452254415],[-70.9958042819996,42.38155261779678],[-70.99582828910916,42.38155903583583],[-70.99585227532937,42.38156792237231],[-70.99587968665801,42.38156529750469],[-70.99591224991583,42.38156653944062],[-70.99594006416733,42.3815595256118],[-70.99597129157232,42.38154264875237],[-70.99603514174071,42.38151878089821],[-70.99611487688696,42.38149882411837],[-70.99614245337253,42.3814756183917],[-70.99621372656581,42.38144931435397],[-70.9962342018474,42.38143431065749],[-70.9962691598754,42.38141388310544],[-70.99629807074542,42.38140852242204],[-70.99638102646638,42.38140284734777],[-70.99642070000444,42.38139396499871],[-70.99644479766917,42.38138885869891],[-70.9964641618147,42.38137384919796],[-70.99648829492617,42.38136489970799],[-70.99650052882201,42.38136220826683],[-70.99652463302655,42.38135627821399],[-70.9965594477157,42.38135368558353],[-70.99659173857681,42.38134230317549],[-70.99662336202049,42.38132186092501],[-70.99665468497547,42.38129263682694],[-70.99668386150097,42.38125434551642],[-70.99671176189189,42.3812366328369],[-70.99672756141509,42.38120459402486],[-70.99676360473573,42.38118691605332],[-70.9968036680895,42.38117556578335],[-70.99684704036291,42.38116697405364],[-70.99689856016927,42.38115814604967],[-70.99692636418717,42.38115222939133],[-70.99698155673332,42.38114698255703],[-70.99703710313804,42.381143657561],[-70.99707670440164,42.3811438306833],[-70.9971163056655,42.38114400379197],[-70.99716437780499,42.38114970297656],[-70.99718842854277,42.38115063185759],[-70.99721095546302,42.38115703953845],[-70.99724716148405,42.38116515632358],[-70.99726744906744,42.38117402550231],[-70.99729032086694,42.38118318325862],[-70.9973224331742,42.38119484637834],[-70.99735705216052,42.38121640111859],[-70.99742080755777,42.38125125707022],[-70.99748433102141,42.3812685482244],[-70.99752746465099,42.38129013920319],[-70.99759098164553,42.38130825313441],[-70.99763636336736,42.38132628874273],[-70.99769880545016,42.38134000720834],[-70.99776236201656,42.38135345681714],[-70.99785470392547,42.38137718459782],[-70.99787277194523,42.3813860448813],[-70.99788934498785,42.38139599428954],[-70.99792287862265,42.38141480183856],[-70.99797932281176,42.38143837105124],[-70.99803800705183,42.38145893403981],[-70.99810041450571,42.38147704284663],[-70.99816245405975,42.38149515091491],[-70.99821189112684,42.38151512430088],[-70.99826095596077,42.38153564251775],[-70.9983185767418,42.38155098714799],[-70.998375817281,42.38156742664377],[-70.99842746113595,42.38158905528721],[-70.99847762845248,42.38161067747058],[-70.99853191491293,42.38162600835826],[-70.99858582984174,42.38164133580032],[-70.99866115059658,42.38166498694371],[-70.99869583798348,42.38167830932771],[-70.99873089354521,42.38169191059442],[-70.99874355176354,42.38172928634151],[-70.99874965692756,42.38175263493697],[-70.99875181357558,42.38176060199081],[-70.99875395862472,42.38177049201213],[-70.99875649964626,42.38177653952302],[-70.99876602285738,42.38178920307022],[-70.99877666583998,42.38180077494258],[-70.99878879436945,42.38181152862069],[-70.99880166359955,42.38182228822519],[-70.9988149056359,42.38183304765169],[-70.9988292666869,42.38184189163407],[-70.998871276079,42.38186539842254],[-70.99891441178211,42.38188699158446],[-70.99900664283733,42.38192471024595],[-70.99907346055015,42.38194723023623],[-70.999140641667,42.38197002275653],[-70.99924028424516,42.38200695333094],[-70.9992808428546,42.38202661481967],[-70.99932028947016,42.38204654334206],[-70.99942100086456,42.38208869288492],[-70.99947855076849,42.38211309082934],[-70.99952761428995,42.38213388488243],[-70.99957073905291,42.38215629791104],[-70.99961015205649,42.38218034230875],[-70.99964732267433,42.38220739651045],[-70.99968301285078,42.38223416787305],[-70.99972721431506,42.38226125442397],[-70.99977514210521,42.38228533758949],[-70.99982680125598,42.3823053199345],[-70.99987956963191,42.38232585355338],[-70.99997760781835,42.38237814354305],[-71.00007194792862,42.38243096475429],[-71.00011651885963,42.38245805095796],[-71.0001607228649,42.38248485916116],[-71.00025024516746,42.38253793568095],[-71.00029594495743,42.38256310460012],[-71.00034238306787,42.38258827850788],[-71.00038326915885,42.38261315189769],[-71.00042378880632,42.38263830007025],[-71.00047169615948,42.38266457865739],[-71.00051962456733,42.38268865790954],[-71.00056127100355,42.38271106774395],[-71.00060438621875,42.38273540065388],[-71.00065009780586,42.38275865006499],[-71.00069543282549,42.38278299527569],[-71.00078163503531,42.38283495771282],[-71.00081881182027,42.38286118869075],[-71.00085562044531,42.38288714257068],[-71.00096479268977,42.38293645863975],[-71.00106657966511,42.38298327758566],[-71.00111565087559,42.38300324812143],[-71.00116471780626,42.38302376509291],[-71.00121633037291,42.38304978484194],[-71.00126534542649,42.38307688805882],[-71.00130696547501,42.38310286354901],[-71.0013478537558,42.38312801118761],[-71.0014277965507,42.38317555709406],[-71.00152470514487,42.38323113230493],[-71.00157741520999,42.38325907696058],[-71.00163124793666,42.38328510343776],[-71.00167555694055,42.38329874207803],[-71.00173943574157,42.38331850279231],[-71.00184944740924,42.38335547598547],[-71.00197310099097,42.38339881825007],[-71.00208307378679,42.38344045454565],[-71.00213360892658,42.38346289956961],[-71.00218488118271,42.38348534956116],[-71.00230372934865,42.38352784871072],[-71.00236943358229,42.38355118211239],[-71.00243439994318,42.38357369122175],[-71.0024952654386,42.38359974950524],[-71.00255650905524,42.38362498472655],[-71.00267979045041,42.38366914747922],[-71.00280933323494,42.38371718048952],[-71.00286213461096,42.38373332486],[-71.00291604833231,42.38374947491231],[-71.00296625988273,42.38376588083268],[-71.00301684277346,42.38378201374697],[-71.00306818984662,42.38379486118504],[-71.00311991719833,42.38380660648846],[-71.00314869329696,42.38381908002116],[-71.0031774559416,42.38383264913973],[-71.00323610864517,42.38385787640868],[-71.00330332588737,42.38387682599767],[-71.00337053819399,42.38389687297762],[-71.00342185433799,42.38391383444226],[-71.00344842044304,42.38392382616804],[-71.00347464097072,42.38393189698094],[-71.00351678057417,42.38393921452084],[-71.00355893070687,42.38394488276195],[-71.003601844324,42.38394781290295],[-71.00365475810435,42.38394968691753],[-71.00370879834718,42.38394992003936],[-71.00375953323768,42.38394657193587],[-71.00381098734124,42.38394597009111],[-71.00393015014825,42.38394922892674],[-71.0039745462183,42.38395188983213],[-71.00401893648842,42.3839548261837],[-71.00408258863432,42.38395674629326],[-71.00414771647444,42.38395894731552],[-71.00420653227599,42.3839635914925],[-71.00426532133081,42.38397180336763],[-71.00429043892511,42.3839782217136],[-71.00431554846044,42.38398628844766],[-71.00433954847918,42.38399352753255],[-71.00436353589512,42.38400268507301],[-71.00438160679838,42.38401154343384],[-71.00439928376319,42.38402232311121],[-71.00441625766582,42.3840295319139],[-71.00443543269823,42.38403866870988],[-71.00444612412468,42.3840439292317],[-71.00445830995916,42.38404754776084],[-71.00447012662306,42.38405116649921],[-71.00448343001059,42.3840539687758],[-71.00449526173838,42.38405566546046],[-71.00450857038236,42.3840576421922],[-71.00451820043502,42.38405686080146],[-71.00452784029351,42.38405498290075],[-71.00453858792339,42.38405338165686],[-71.00454821891205,42.38405232567968],[-71.00455786064299,42.3840498986085],[-71.0045674928522,42.38404884173463],[-71.00456860396861,42.38404884651928],[-71.00457880063603,42.38397589863444],[-71.00461571947515,42.38370439192864],[-71.00478147890662,42.38371224121605],[-71.0047540575447,42.38385810767419],[-71.00513612795508,42.38389460094638],[-71.00513110481138,42.38392119907147],[-71.0051322207829,42.38392120387155],[-71.0051429356113,42.38392316847304],[-71.0051551465716,42.38392404385736],[-71.00516588127115,42.38392409002734],[-71.00517402215645,42.38392412504067],[-71.00518141584601,42.38392498150416],[-71.00518992215855,42.38392611553966],[-71.00519805903416,42.38392697339773],[-71.00520766114191,42.38392975967256],[-71.00521615673436,42.38393226389915],[-71.00522574996276,42.38393587479855],[-71.00523423453448,42.38393947732833],[-71.00524122378279,42.3839449973437],[-71.00524970433335,42.38394942451937],[-71.00525559228386,42.38395384054576],[-71.0052618494136,42.3839582554585],[-71.00526662409555,42.38396294218537],[-71.00527251326987,42.38396735731585],[-71.0052758009698,42.38397258502368],[-71.00528057043769,42.38397809369091],[-71.00528423213953,42.38398332480727],[-71.0052878852775,42.38398965063745],[-71.0052900621378,42.3839951490566],[-71.00529149920266,42.38400036790613],[-71.00529257718351,42.38400476324824],[-71.00529254068627,42.38400942838626],[-71.00529251278157,42.38401299520921],[-71.00529248486981,42.38401656293245],[-71.00529356928833,42.38402013543858],[-71.00529465006402,42.384023707929],[-71.00530089430774,42.38402977121228],[-71.00530677369812,42.38403528285019],[-71.00531376512552,42.38404052648177],[-71.00532112719274,42.38404604809508],[-71.00532959647521,42.38405129717957],[-71.00533659312872,42.38405571796854],[-71.00534619003976,42.38405932707293],[-71.00535467704954,42.38406293140471],[-71.00538088443682,42.38407209917677],[-71.00540858069739,42.38408017499128],[-71.00543740216746,42.38408660990862],[-71.00546512997252,42.38409111980246],[-71.0055560919653,42.38410303624534],[-71.00560195346688,42.38410762403522],[-71.0056485447051,42.38411331329422],[-71.00566924955854,42.38411614453451],[-71.00575908885959,42.38412970172003],[-71.00585040630892,42.38414354247264],[-71.00594022088882,42.38416011807719],[-71.00602670917587,42.38417640294156],[-71.0060699034062,42.3841908597578],[-71.00611309404145,42.38420531294112],[-71.00625571750642,42.38423803207787],[-71.00634332750617,42.38425267759035],[-71.00643241783303,42.38426732848607],[-71.0064992688804,42.38428545086533],[-71.00656650618222,42.38430247831082],[-71.00665555901271,42.38432179506671],[-71.00674424608722,42.38434083649766],[-71.00675976063238,42.38434446725222],[-71.00684994545624,42.38436159470731],[-71.00689429336563,42.38437001612282],[-71.00693975055584,42.38437899145089],[-71.0069482590809,42.3843798534783],[-71.00699260545125,42.38438909861296],[-71.00703806266212,42.38439807480238],[-71.00712713838755,42.38441464541048],[-71.00718000069516,42.38442365326596],[-71.00726985115172,42.38443556358838],[-71.00731681437743,42.38444125286247],[-71.00736230068135,42.38444666120551],[-71.00739818014134,42.38444955800806],[-71.00744402948487,42.38445606712504],[-71.00748951459596,42.38446147541259],[-71.00758085429936,42.38447256720261],[-71.00764557822471,42.3844791561191],[-71.00773694573398,42.38448668276249],[-71.00782942441755,42.38449421048541],[-71.00787529917538,42.38449715169662],[-71.0079219058553,42.38450091888336],[-71.00793411696561,42.38450179397262],[-71.00794706518296,42.384502672213],[-71.00811058473289,42.38451325209124],[-71.00820309124755,42.38451721179025],[-71.00829560170848,42.38452035306971],[-71.0083570374936,42.38452143757541],[-71.00842295465971,42.38451732852695],[-71.00848926074713,42.38451130258814],[-71.00866121713612,42.3844843216912],[-71.00875165791287,42.3844679679281],[-71.00884064543405,42.38444859102448],[-71.00884287164411,42.38444777766472],[-71.00887179564465,42.38444076455221],[-71.00889850739033,42.38443292362752],[-71.00892596965714,42.38442398304699],[-71.00895159677796,42.38441256693764],[-71.00897914485854,42.38439210392236],[-71.00900596737299,42.38436999297756],[-71.00905444690532,42.38432382511146],[-71.00911981294206,42.38424754170982],[-71.00915496371454,42.3842013178322],[-71.00917217766933,42.38417751922807],[-71.00919160353517,42.38415427653211],[-71.00921326043117,42.38413022138673],[-71.00923748893706,42.38410809842171],[-71.00926282703604,42.38408680034684],[-71.00929073672326,42.38406743715048],[-71.00943513834765,42.38401372055215],[-71.00947745113197,42.38399880672706],[-71.0095182833103,42.38398361378702],[-71.00960143363909,42.38395296141015],[-71.00961478375224,42.38394945137095],[-71.00972812194196,42.38389203415789],[-71.00980320139001,42.38385228854246],[-71.00987681290852,42.38381061901064],[-71.0099032228711,42.38379371966783],[-71.00996130118183,42.3837503354849],[-71.01001680929751,42.383704196248],[-71.01007644453711,42.38365121616272],[-71.01013201169059,42.38359712037352],[-71.01013574181087,42.38359356841318],[-71.01018910123319,42.38353836394408],[-71.01023989225712,42.38347985706255],[-71.01025333999496,42.38346372442287],[-71.01030042964996,42.38340520085788],[-71.01034530701637,42.38334584589452],[-71.01035017462604,42.38333873092569],[-71.01039173073546,42.38327826345687],[-71.0104329267101,42.38321614871295],[-71.0104437969476,42.38319835845526],[-71.01048166801192,42.38313513209368],[-71.01051805511817,42.38307299595687],[-71.01053155791605,42.38304972963306],[-71.0105646255881,42.382985932731],[-71.01059510670527,42.38292102646423],[-71.01060114783955,42.38290568513955],[-71.01064538276053,42.38278568299489],[-71.01065795515642,42.38273936171309],[-71.01067126220609,42.38269414010544],[-71.01072514115654,42.38257116027579],[-71.01075226590083,42.38250980663184],[-71.01077902140912,42.38244845591214],[-71.0108161257113,42.3823407699268],[-71.01082849220684,42.38227331617524],[-71.01084378957052,42.38216197411336],[-71.01084612605773,42.38214689071021],[-71.01085677153299,42.38201494466738],[-71.01085985587051,42.38195074559908],[-71.01086146027528,42.38188681572601],[-71.01086659088584,42.38184567724511],[-71.01087061588819,42.38180398308649],[-71.01087110616865,42.38174059765053],[-71.01087157523065,42.38167995530286],[-71.01087431070781,42.38161328525443],[-71.01087741471083,42.38154716684808],[-71.01087766940738,42.38151423807266],[-71.01087904668304,42.38147966924216],[-71.01088519675596,42.38145005968636],[-71.01089283494764,42.38141990457956],[-71.0109077357279,42.38135932628168],[-71.01092055821073,42.38123287672487],[-71.01092415661626,42.38110282370791],[-71.01092079808807,42.38105835407228],[-71.01091892430665,42.38101361796046],[-71.01092023486362,42.38098782845809],[-71.01092265282533,42.38096204546387],[-71.01092752018657,42.3809549304667],[-71.01093239511776,42.38094699353783],[-71.01094101903684,42.38093193955766],[-71.01094701989786,42.3809220843976],[-71.01095191360922,42.38091140436777],[-71.01095681491049,42.38089989970545],[-71.01095949015246,42.38088920844433],[-71.01096179896061,42.38087769456214],[-71.01096447298656,42.38086700329571],[-71.01096456423035,42.38085520449866],[-71.01096465336461,42.38084367848006],[-71.01096214485473,42.38083296698434],[-71.01095849771575,42.38082581579205],[-71.01095373222398,42.38081975999856],[-71.01095043755701,42.38081507979647],[-71.01094788146682,42.38081067822231],[-71.01094569573024,42.38080627822239],[-71.01094424312274,42.38080270420291],[-71.01094316722525,42.38079830982112],[-71.01094208010034,42.38079473915581],[-71.0109410063336,42.38079006929466],[-71.01094595038826,42.38077334944118],[-71.01095311258962,42.38075636712932],[-71.01101276856814,42.38065234655156],[-71.01109065885839,42.38053523040642],[-71.01111979110826,42.38050132958917],[-71.01113545405562,42.38048630190389],[-71.01115370459097,42.38047128611181],[-71.0111730522153,42.38045792340721],[-71.01119462194558,42.3804445692404],[-71.01134317023924,42.38038016522879],[-71.01138883841583,42.38036169980859],[-71.01141295568566,42.38035384548175],[-71.01143111829653,42.38035035387008],[-71.01144890418396,42.38034768532035],[-71.0114681654231,42.38034612048497],[-71.01148741635463,42.38034510387856],[-71.01150814898854,42.38034436904876],[-71.01152026570919,42.38034591955665]]]],"type":"MultiPolygon"} +},{ + "id": 1108711963, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":163792.190984, + "geom:bbox":"-71.0856802009,42.3452273545,-71.0785458137,42.3495867082", + "geom:latitude":42.347443, + "geom:longitude":-71.081961, + "iso:country":"US", + "lbl:latitude":42.348532, + "lbl:longitude":-71.079862, + "lbl:max_zoom":18.0, + "mps:latitude":42.347299, + "mps:longitude":-71.081907, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:note":"same as Prudential Center", + "mz:tier_metro":1, + "name:aze_x_preferred":[ + "Prudensial" + ], + "name:deu_x_preferred":[ + "Prudential" + ], + "name:eng_x_preferred":[ + "Prudential Center" + ], + "name:eng_x_variant":[ + "Prudential" + ], + "name:fra_x_preferred":[ + "Prudential" + ], + "name:ind_x_preferred":[ + "Prudential" + ], + "name:jpn_x_preferred":[ + "\u30d7\u30eb\u30c7\u30f3\u30b7\u30e3\u30eb" + ], + "name:kor_x_preferred":[ + "\ud478\ub974\ub374\uc15c" + ], + "name:lit_x_preferred":[ + "Prudential" + ], + "name:rus_x_preferred":[ + "Prudential" + ], + "name:swe_x_preferred":[ + "Prudential" + ], + "reversegeo:latitude":42.347299, + "reversegeo:longitude":-71.081907, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85804161, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fee31467657f07a7c527be76d659b3b1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711963, + "neighbourhood_id":85804161, + "region_id":85688645 + } + ], + "wof:id":1108711963, + "wof:lastmodified":1566624135, + "wof:name":"Prudential", + "wof:parent_id":85804161, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891281 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08568020087179, + 42.34522735446343, + -71.07854581369978, + 42.34958670821143 +], + "geometry": {"coordinates":[[[[-71.08474147424417,42.34602883388509],[-71.08568020087179,42.34793464733426],[-71.07941621452837,42.34958670821143],[-71.07854581369978,42.34766853621563],[-71.08174111761558,42.34522735446343],[-71.08222804647491,42.34556687692017],[-71.08233761459647,42.34561939906937],[-71.0824608510152,42.34566244301386],[-71.08262856659648,42.34570638966195],[-71.08279765622625,42.34574289952812],[-71.08339939281053,42.34583966519005],[-71.08474147424417,42.34602883388509]]]],"type":"MultiPolygon"} +},{ + "id": 1108711969, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000276, + "geom:area_square_m":2525861.397016, + "geom:bbox":"-71.1445557153,42.2280971629,-71.1224639811,42.25171347", + "geom:latitude":42.239246, + "geom:longitude":-71.133065, + "iso:country":"US", + "lbl:latitude":42.237297, + "lbl:longitude":-71.135168, + "lbl:max_zoom":18.0, + "mps:latitude":42.238337, + "mps:longitude":-71.133986, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Readville" + ], + "name:eng_x_preferred":[ + "Readville" + ], + "name:fra_x_preferred":[ + "Readville" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30fc\u30c9\u30d3\u30eb" + ], + "reversegeo:latitude":42.238337, + "reversegeo:longitude":-71.133986, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420524063, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2134571" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8efec2daaec0181d581669e4a0316828", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711969, + "neighbourhood_id":420524063, + "region_id":85688645 + } + ], + "wof:id":1108711969, + "wof:lastmodified":1566624135, + "wof:name":"Readville", + "wof:parent_id":420524063, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85843927 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14455571530726, + 42.22809716290507, + -71.12246398112516, + 42.25171347001552 +], + "geometry": {"coordinates":[[[[-71.14455571530726,42.24520652868149],[-71.14402559956295,42.24512014442333],[-71.1436896212748,42.24501636334084],[-71.14332947188679,42.24487679540781],[-71.14296207116882,42.24471038710923],[-71.14262367577069,42.24452250623133],[-71.14231670280239,42.24432925680453],[-71.14203631804392,42.24417895135737],[-71.14176560172542,42.24409127300126],[-71.14144896031718,42.2440590645949],[-71.14105497138935,42.24406980073637],[-71.14062472581172,42.24409664108224],[-71.14016789202424,42.24414674301272],[-71.13970380690679,42.2442451574015],[-71.13922280201945,42.24442767084314],[-71.13841307017393,42.24481595690226],[-71.13715859009086,42.24541717027668],[-71.13593794954761,42.24596112179098],[-71.13502186486267,42.24629214254897],[-71.13431123452659,42.24649433253648],[-71.13376980188957,42.24662495050841],[-71.1333129681021,42.24672157178973],[-71.13288755674445,42.24683787494885],[-71.13252015602647,42.24699533119323],[-71.13233306367187,42.24711856967016],[-71.13219626328826,42.24728400276178],[-71.13203075784985,42.24747507634474],[-71.13180329448097,42.24760189214064],[-71.13142762231251,42.24771998304098],[-71.13098770829495,42.24779155314513],[-71.13055504560734,42.24786133389524],[-71.13024082130906,42.24799373807738],[-71.13005470384007,42.24825317785193],[-71.12990967724087,42.24867901444858],[-71.1297235597719,42.24921220146378],[-71.12954952785286,42.24967918440571],[-71.12948426588322,42.25000660704915],[-71.12953260808297,42.25024814713468],[-71.12956161340281,42.25047537274092],[-71.12942867235354,42.25072943504331],[-71.1291265336052,42.25098349643444],[-71.12875671577724,42.25121071948512],[-71.12840381771919,42.25136995412805],[-71.12813793562066,42.2513878456695],[-71.12798324058151,42.25129659896311],[-71.12787447063211,42.25121429795994],[-71.12777778623264,42.25121966541833],[-71.12768351894317,42.251305544725],[-71.12755541211388,42.251384267379],[-71.12739588285476,42.2513914239872],[-71.12723635359563,42.25135743014326],[-71.12708649277647,42.25134132779427],[-71.12694146617727,42.25136458674112],[-71.12679402246809,42.25142541779135],[-71.12664899586888,42.25151129683736],[-71.12649671793972,42.25155781462976],[-71.12632510313067,42.2515238208719],[-71.12612206589179,42.25145046586042],[-71.12589244044307,42.25137353247337],[-71.12564589522441,42.2513198579806],[-71.12538001312589,42.25130375562126],[-71.12512621657729,42.25132164713062],[-71.12488208846864,42.25136995418347],[-71.12463312614001,42.25145404413326],[-71.12433582161165,42.25156854945053],[-71.12398534066358,42.25166516319754],[-71.12366144792537,42.25171347001552],[-71.12342215403669,42.25169736773515],[-71.12331338408728,42.2516114889027],[-71.12330371564734,42.25147372469115],[-71.12333755518716,42.25125902652396],[-71.12339073160686,42.25099244218293],[-71.12344149091659,42.25077237522081],[-71.12351883843615,42.25060419334542],[-71.1236541965954,42.25044316770577],[-71.12382097718449,42.25030003349934],[-71.12402401442337,42.25019983937153],[-71.12426814253203,42.25014079632335],[-71.12448568243082,42.25008533156304],[-71.12463554325001,42.25000302892633],[-71.12471289076959,42.24989030991707],[-71.12474673030938,42.24973286077603],[-71.12475156452935,42.24954857330244],[-71.12471289076957,42.24933386863904],[-71.12468871966971,42.24905832996912],[-71.12474914741938,42.24877384418066],[-71.12490625956852,42.24851798475014],[-71.12514313634721,42.24824065324211],[-71.12545494353549,42.24788996128869],[-71.12583201269339,42.24749990393641],[-71.12625742405103,42.24711521197318],[-71.12669250384863,42.24675556771341],[-71.12705990456661,42.24646570379939],[-71.12733062088512,42.24625277816794],[-71.12752157257407,42.24608458426123],[-71.12765693073331,42.24593786153295],[-71.12774394669282,42.24580187430205],[-71.12777536912265,42.24564441496094],[-71.12777536912265,42.24544222230299],[-71.12774636380281,42.24522392515362],[-71.12763034252346,42.24503425658483],[-71.12742730528458,42.24490184613697],[-71.1272436049256,42.24480522207438],[-71.12715175474609,42.2446746003265],[-71.1271493376361,42.24446703646223],[-71.12723151937564,42.24419684460196],[-71.12748773303423,42.24369582177884],[-71.12787205352213,42.24298901769792],[-71.12813793562066,42.24249156794244],[-71.12825153979003,42.24222852547369],[-71.12825395690001,42.24200305957005],[-71.12811859874077,42.2418098024684],[-71.12787447063212,42.24167380641082],[-71.12760617142359,42.24159328227084],[-71.12738379730482,42.24152528399703],[-71.12720251405582,42.24143044416041],[-71.12706715589657,42.24128728939525],[-71.12696080305716,42.24108687218614],[-71.12684719888779,42.24077192923176],[-71.12673359471842,42.24034424899273],[-71.12665624719884,42.2399505664179],[-71.12661032210909,42.23963203937672],[-71.12646287839991,42.23934572157784],[-71.1263766953702,42.239161923256],[-71.12629609498771,42.23906316795053],[-71.12614076346833,42.23891790231788],[-71.12607883810998,42.23879549623128],[-71.12602456215897,42.23869929692458],[-71.12595095140449,42.23856521349156],[-71.12587357608808,42.23840781593046],[-71.12576905759811,42.23820087402491],[-71.12570002753908,42.23795623474768],[-71.12568077063446,42.23790088484888],[-71.12562543530839,42.2378550460896],[-71.12554050391573,42.23778111743329],[-71.12538057541718,42.23767875077727],[-71.12485313765248,42.23747624923686],[-71.12476333197596,42.2374293988813],[-71.1246893119164,42.23736513856633],[-71.12461163093491,42.23726012722046],[-71.1245457146986,42.23714933650142],[-71.12445736610978,42.23686097179923],[-71.12423603252046,42.23654599342497],[-71.12408424168498,42.23638836984192],[-71.12367102025432,42.23607856062656],[-71.1234781262761,42.23592577926167],[-71.12333952113869,42.235853423954],[-71.12326947578593,42.23577753743088],[-71.1229652514141,42.23557575858427],[-71.12275471510598,42.23542375261211],[-71.12267259352096,42.23540603466632],[-71.12263751075459,42.23537971400619],[-71.12261835000577,42.23530981126081],[-71.12251720171965,42.23519892238043],[-71.12247501953141,42.23505037293395],[-71.12246398112516,42.23493102753473],[-71.12248406004979,42.23484671921647],[-71.1225660911856,42.23476596648683],[-71.12259880959458,42.23464339871578],[-71.12260396604621,42.23443681880003],[-71.12263956078743,42.23437583088073],[-71.12273782868476,42.2343150498678],[-71.12293789964595,42.23424878455057],[-71.12311031020128,42.23423188119891],[-71.12337644193742,42.23425312429386],[-71.1236072493169,42.23428879904797],[-71.12381066462167,42.23432147015757],[-71.12405343453781,42.23432226559216],[-71.12423375542919,42.23428503405265],[-71.12439620607321,42.23420269493474],[-71.12446161669664,42.23416065291408],[-71.12451722733729,42.23410574577619],[-71.12458777750349,42.23401267381233],[-71.124678870393,42.23384129247983],[-71.1247185716572,42.23374539971506],[-71.12471529095158,42.2336406315953],[-71.12466172406324,42.23350536758825],[-71.1246079546172,42.23331106324394],[-71.12452984277004,42.23321809108749],[-71.12451062278905,42.23315692325136],[-71.1245031736343,42.2330928760154],[-71.1245238758077,42.23290381735512],[-71.1245833563494,42.23277888409338],[-71.12474480306825,42.23262228539154],[-71.12488062715072,42.23253989543268],[-71.12497282349248,42.23246879850907],[-71.12506352626379,42.23235851962528],[-71.12511909486962,42.23223067970141],[-71.12522975716389,42.23205644299919],[-71.12535184051958,42.2319375315337],[-71.12547746412314,42.2318826543672],[-71.12560671550803,42.23187725915629],[-71.12581426539113,42.23186920029084],[-71.12595163177726,42.23181727879609],[-71.12604986830915,42.23175649393959],[-71.12616413723893,42.23163465264803],[-71.12623932003231,42.2315010393467],[-71.12638887611561,42.2313705860275],[-71.12660876736932,42.23126364518801],[-71.1267812754604,42.2312263617327],[-71.12699659983022,42.2312270617294],[-71.12721990240053,42.23120742581372],[-71.12741978513004,42.23117607062405],[-71.12752977239401,42.23111532354731],[-71.12763238678407,42.2309759805466],[-71.12775491388082,42.23078141126754],[-71.12796178918693,42.23054416238899],[-71.12807836340879,42.23037218745957],[-71.12825176159599,42.23018359488275],[-71.12838158323854,42.23007925786919],[-71.12852305883831,42.22998660664832],[-71.12877511450644,42.22981903440658],[-71.1288297518043,42.2297693492151],[-71.1288635689442,42.22972041685473],[-71.1288891783976,42.22964733141927],[-71.12890565793623,42.22951062751311],[-71.12895375717848,42.22931581624285],[-71.12906834687831,42.22913868949348],[-71.12920247527289,42.22896744356241],[-71.12935581899113,42.22885446372149],[-71.12948544300833,42.2287821245566],[-71.1296735521468,42.22875363184832],[-71.12995559172595,42.22873127214331],[-71.13010081709528,42.22866772280427],[-71.13019128479094,42.22859527464065],[-71.1302661509737,42.22850431527172],[-71.13034690339977,42.22831628259315],[-71.13051966780816,42.22809716290507],[-71.13144507827494,42.2283819235848],[-71.14267659232118,42.23597903894057],[-71.14454273499453,42.24514550191525],[-71.14455571530726,42.24520652868149]]]],"type":"MultiPolygon"} +},{ + "id": 1108711973, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000052, + "geom:area_square_m":473937.823621, + "geom:bbox":"-71.0538181606,42.3041930316,-71.0424193218,42.3134955175", + "geom:latitude":42.309997, + "geom:longitude":-71.04857, + "iso:country":"US", + "lbl:latitude":42.311123, + "lbl:longitude":-71.054817, + "lbl:max_zoom":18.0, + "mps:latitude":42.310572, + "mps:longitude":-71.048485, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Savin Hill" + ], + "name:eng_x_variant":[ + "Savin Hl" + ], + "reversegeo:latitude":42.310572, + "reversegeo:longitude":-71.048485, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7428250" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"237e88cd108cd313a3129ef639244f87", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711973, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711973, + "wof:lastmodified":1566624136, + "wof:name":"Savin Hill", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85847213 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05381816063675, + 42.3041930316388, + -71.04241932176777, + 42.31349551747803 +], + "geometry": {"coordinates":[[[[-71.05311448524738,42.30780142672353],[-71.05381816063675,42.30785114120643],[-71.053725,42.308595],[-71.053569,42.309165],[-71.053359,42.309799],[-71.053183,42.310244],[-71.053056,42.310529],[-71.05282800000001,42.31111],[-71.05278800000001,42.31119],[-71.052683,42.311442],[-71.052588,42.311653],[-71.05240999999999,42.312115],[-71.052165,42.312679],[-71.05194299999999,42.313211],[-71.05181960926215,42.31349551747803],[-71.04623696232723,42.31325617117732],[-71.0462565162033,42.31318239299434],[-71.04625549070219,42.31311899881424],[-71.0462451443796,42.31306627330039],[-71.04623360018272,42.31302616166192],[-71.04623226365322,42.31300667118871],[-71.0462408595063,42.31299408292105],[-71.04625794014666,42.31298372398543],[-71.04626497704817,42.31298182962804],[-71.04619862673722,42.31285067390318],[-71.04614460618076,42.31285649798707],[-71.04607257369484,42.31284743196073],[-71.04599468702047,42.3128301113172],[-71.04593125395145,42.31280763409124],[-71.04587050118957,42.31277254161156],[-71.04581051200789,42.31273416242006],[-71.04576281109047,42.31268320865841],[-71.04571550945259,42.31262868766431],[-71.04568219225023,42.31258300346418],[-71.04565708409434,42.31252692263057],[-71.04565634642366,42.31247505791701],[-71.04567959397332,42.31242987102294],[-71.04571348092027,42.31239597813543],[-71.04574242273492,42.31238182278069],[-71.0457735471475,42.31237234140162],[-71.0457736751156,42.31235450605836],[-71.04574600587128,42.31234616164472],[-71.04572097081217,42.31233179472495],[-71.04569973633156,42.31230234928952],[-71.04569992733589,42.312275732666],[-71.04570237502195,42.31224363583226],[-71.04570257981156,42.312215098022],[-71.04570163659231,42.31219204120318],[-71.04568276486988,42.31214284891331],[-71.04566392940528,42.31208843952256],[-71.04563954982933,42.31198242099731],[-71.04562868276825,42.31200268520662],[-71.04560896852058,42.31207038547083],[-71.04560867504674,42.31211127325147],[-71.04561445474199,42.31213023122102],[-71.04563463638635,42.31215171385605],[-71.04564878578124,42.31218908994811],[-71.04564736870481,42.31223189182546],[-71.04564936042924,42.31226400620996],[-71.0456538703164,42.31230491207924],[-71.04563917733815,42.31234327070285],[-71.04559715231207,42.3123776796735],[-71.04553068662612,42.31241748290881],[-71.04545243886599,42.31245037741559],[-71.0453704887688,42.31248380370496],[-71.04528897401258,42.31250845373066],[-71.04520357499973,42.31250729292292],[-71.04513420567987,42.31248808325825],[-71.04504786368632,42.31246386911374],[-71.04496041160074,42.31244019789098],[-71.04488969356414,42.31240259770444],[-71.04481943632346,42.31235237618771],[-71.04476909444193,42.31230937019992],[-71.04473102047902,42.31225680388496],[-71.04468383176892,42.31218691747737],[-71.04463363496903,42.31212360392662],[-71.04459552491379,42.31207625466172],[-71.04456364671653,42.31203606316122],[-71.04451911106163,42.31200817090564],[-71.04445848697453,42.3119552423255],[-71.04439525051822,42.31190614763847],[-71.04433534798324,42.31185596776849],[-71.04427582493398,42.31180414092115],[-71.04421859401087,42.31174244503577],[-71.04416982249562,42.3116868218913],[-71.04411518843315,42.31162348960295],[-71.04407458397385,42.31156350624815],[-71.04403662881954,42.31149475455894],[-71.04400865389155,42.31142603795582],[-71.04398254850312,42.31135458824841],[-71.04396503727381,42.31127082411562],[-71.04394625372156,42.31120928065052],[-71.04394082647475,42.31114147817981],[-71.04394104391015,42.3111112946636],[-71.04394234428253,42.31108468153569],[-71.0439539762375,42.31100981368079],[-71.04395893727758,42.31098843052099],[-71.0439649835652,42.31096979128245],[-71.04397213507637,42.31095280668048],[-71.04397961564717,42.31094048874183],[-71.04399046647278,42.31092269504325],[-71.04400015728638,42.31091203072307],[-71.04401095549336,42.31090137259672],[-71.04402433968654,42.31089072292959],[-71.04403623586822,42.31088171490712],[-71.04404960150326,42.31087380927985],[-71.04406407695689,42.31086590985482],[-71.04407742478816,42.31086047547902],[-71.04409298560287,42.31085614644737],[-71.0441159392483,42.31085184674158],[-71.04414001064028,42.31084645219805],[-71.0441566800688,42.31084212755547],[-71.04418076558181,42.31083426533529],[-71.04420114342548,42.31082803505425],[-71.04421078281014,42.31082450719574],[-71.04422040594307,42.31082289961326],[-71.04423487909172,42.31081582123178],[-71.04426159600185,42.31080165652258],[-71.04428681591767,42.31079105556288],[-71.0443302149482,42.31077146965802],[-71.04437359999564,42.31075298024752],[-71.04439139181009,42.31074674148029],[-71.04441695158245,42.31073997982126],[-71.0444491765527,42.31073187612164],[-71.04445880679928,42.31072944567264],[-71.04449032576258,42.31071612282071],[-71.04450479641133,42.31070904709638],[-71.04452151119607,42.31069840967244],[-71.04453823066913,42.31068695119048],[-71.04456607473512,42.31067087143685],[-71.04459391209905,42.31065589001676],[-71.04460947510186,42.31065073894947],[-71.04462875137069,42.31064367955209],[-71.04464802050384,42.31063744299803],[-71.04466727702204,42.31063312853268],[-71.04469023721431,42.31062773307247],[-71.04472502636339,42.31062265636267],[-71.04473315905679,42.31062268858219],[-71.04474902777241,42.31062714311477],[-71.0447741460039,42.3106299876361],[-71.04478744835963,42.31063086230493],[-71.04479926743785,42.31063255577227],[-71.04481365988289,42.3106361806731],[-71.04482804687821,42.31064090121645],[-71.04485568098136,42.31065418206689],[-71.04487964282853,42.31066333129205],[-71.04489402706771,42.31066860550104],[-71.04490841711997,42.31067222767954],[-71.0449228107997,42.31067585167121],[-71.0449320461975,42.31067671201848],[-71.04495496026766,42.31067790112181],[-71.04497900117151,42.31067689794872],[-71.04499823901978,42.3106745045957],[-71.04501748020398,42.31067265953573],[-71.04504151670568,42.31067193092386],[-71.0450570387241,42.3106728161497],[-71.04507401367439,42.31067727411636],[-71.04508691257132,42.31068281341157],[-71.04510860367353,42.31069991315775],[-71.04511226444701,42.31070514038925],[-71.04512175225895,42.31072219182678],[-71.04512392656649,42.31072851334139],[-71.04512493933895,42.31074168874849],[-71.04512263262332,42.31075430183269],[-71.04512475400327,42.31076748342853],[-71.04512610321419,42.31078532372445],[-71.04513043213861,42.3108007080907],[-71.04513769559594,42.31081857449703],[-71.04514349079525,42.31083533852517],[-71.04515071971453,42.31085868852481],[-71.04516592588591,42.31090320555435],[-71.04517429451519,42.31092189740619],[-71.04518222934533,42.31094964546471],[-71.04519408648945,42.31099771622563],[-71.04519762143207,42.31101995593604],[-71.0452008077973,42.31103972654286],[-71.04520325504483,42.31105921783206],[-71.04520786872543,42.31108612986946],[-71.04521365017314,42.3111048141796],[-71.04521842550955,42.31110922384364],[-71.04522105805634,42.31110292135424],[-71.04522109550776,42.31109770786193],[-71.04521859897955,42.31108507576822],[-71.04522344209981,42.31107988039361],[-71.0452293891405,42.31107551316243],[-71.04523312090163,42.31107086257271],[-71.04523685766607,42.31106483994462],[-71.04523688328811,42.31106127305519],[-71.04523690891662,42.31105770526546],[-71.04523804681571,42.311054140977],[-71.04523696805036,42.31104947315109],[-71.04523698578272,42.31104700459712],[-71.04523711391869,42.31102916654871],[-71.04524057745842,42.31101052152545],[-71.04524215732212,42.31099625711295],[-71.04524071937425,42.31099076499089],[-71.0452385533891,42.31098361973682],[-71.04523490167877,42.31097729597951],[-71.04523124680968,42.31097124320001],[-71.04522908080686,42.31096410064652],[-71.04522690769365,42.31095777913903],[-71.04522699638959,42.31094543186748],[-71.04522556787246,42.31093828953154],[-71.04522341096782,42.31093004954751],[-71.04521981521894,42.31091576735383],[-71.04521879530002,42.31090341479461],[-71.04521624512076,42.31089791466932],[-71.04521298581358,42.31088829826416],[-71.04520824642084,42.31087922518478],[-71.04519876674586,42.31086052803782],[-71.04519405345431,42.31084815996086],[-71.04519156044626,42.31083470230415],[-71.04519161168878,42.31082756942518],[-71.04519170829479,42.31081412201726],[-71.04519916889912,42.31080454803712],[-71.04520033361329,42.31079741956485],[-71.0451993049226,42.31078561345288],[-71.04519677019175,42.31077847033954],[-71.04519459754137,42.31077242342464],[-71.04517664509591,42.31074902918536],[-71.04517410373008,42.31074297901014],[-71.04516616056601,42.31071605739277],[-71.04516361205195,42.31071083366492],[-71.04515041765947,42.31069459133515],[-71.04514712334782,42.31069018752981],[-71.04514238157938,42.31068111083663],[-71.04513615576495,42.31067312933678],[-71.04512918293294,42.31066596865481],[-71.04511854344445,42.31065439999144],[-71.04510532147305,42.31064199912989],[-71.04509943952181,42.31063731228894],[-71.04509357533516,42.31063015329235],[-71.04508260579757,42.31061337057817],[-71.04506354179989,42.31059106758582],[-71.0450565862976,42.31058116015053],[-71.04504818740887,42.31056685893503],[-71.04503867036829,42.31055337436624],[-71.04502585554893,42.31053630884871],[-71.04500535398599,42.31050796453879],[-71.04499113388832,42.31048019337948],[-71.04497111518165,42.31043648284199],[-71.04495959320748,42.31039362701993],[-71.04495971548656,42.3103766145216],[-71.04496579066461,42.31035441285391],[-71.04498626962651,42.31033391216776],[-71.04503077946679,42.31031378211367],[-71.04503940675224,42.31029680238684],[-71.04503695126486,42.31027813123206],[-71.04504340544713,42.31025483359385],[-71.04506288343251,42.3102195108812],[-71.04505341179841,42.31019971448378],[-71.04503655453529,42.3101790668708],[-71.04503085481826,42.31014885992194],[-71.0449973217262,42.31013363361293],[-71.04493483235875,42.31013503372426],[-71.04490595572713,42.31014040760343],[-71.04488929366268,42.31014390950866],[-71.04488188666225,42.31014552502349],[-71.04487593056969,42.31015099146863],[-71.04486998723021,42.31015535869678],[-71.04486405208873,42.31015807930702],[-71.04484704451363,42.31015801194579],[-71.04483155267538,42.3101532843269],[-71.04481717566165,42.31014719086394],[-71.04481015997433,42.31014634110004],[-71.04480277149489,42.31014521166613],[-71.04476543294959,42.31014506375764],[-71.04474878271024,42.31014691993956],[-71.04473065939871,42.31014767101595],[-71.04472251493151,42.31014928449912],[-71.04468994249308,42.31015464548253],[-71.04465515831025,42.31015889842568],[-71.04462147135865,42.31016507424727],[-71.04461407388699,42.31016586960862],[-71.04458191436977,42.31016491748817],[-71.0445564180193,42.31016289790134],[-71.04454827037036,42.31016478415073],[-71.0445360206898,42.31017187138443],[-71.04452789945682,42.31016991705401],[-71.04452052446354,42.31016741919819],[-71.04450873311791,42.31016188422822],[-71.04449767496649,42.31015745053016],[-71.04448589668502,42.31015026895945],[-71.0444608823875,42.31013233394437],[-71.04444762085717,42.31012596936481],[-71.0444402375318,42.3101242934454],[-71.04441660156094,42.31012063185141],[-71.04440333882467,42.31011426726198],[-71.04438897811286,42.31010625256796],[-71.04437458701257,42.31010262941887],[-71.04436608201983,42.31010259569756],[-71.04434202126728,42.31010689106301],[-71.04432645398074,42.31011231576868],[-71.04430494042802,42.3101218348686],[-71.044289010304,42.31012643885667],[-71.04426641973775,42.3101315629114],[-71.04424566990568,42.31013861370331],[-71.04422676126931,42.31014567359452],[-71.04421082598648,42.31015082403388],[-71.04419637561799,42.31015543297793],[-71.0441785942713,42.31016057519032],[-71.04415933542471,42.31016489136507],[-71.04413861112671,42.31016755057171],[-71.04412084161581,42.31017104797255],[-71.04410050349624,42.31017179016332],[-71.04408128341149,42.31017089103632],[-71.0440509886469,42.31016802582385],[-71.04402107202711,42.3101635181546],[-71.04399965934959,42.31015986529673],[-71.04398268096848,42.31015540805671],[-71.04395168630889,42.31014732729895],[-71.04392070307803,42.31013732443594],[-71.0439133348186,42.31013372730048],[-71.04389418240309,42.31012377408536],[-71.04387391578729,42.31011408833538],[-71.04385954206597,42.31010772017352],[-71.04383778747322,42.31009967516101],[-71.04381639337453,42.31009328002622],[-71.04379499444795,42.31008688216738],[-71.04378650131672,42.31008520270033],[-71.0437757978129,42.310083238065],[-71.04376472420867,42.31008045268556],[-71.04375399410711,42.310081505751],[-71.04374328816608,42.31007954290357],[-71.0437347856026,42.31007950914519],[-71.04371699982842,42.31008492676073],[-71.04369626014571,42.31009005805259],[-71.04367699109187,42.31009629354752],[-71.04365919937679,42.31010253400556],[-71.04364214829265,42.31010850461086],[-71.04363508944532,42.31011314013672],[-71.04362055915303,42.31012899975067],[-71.04360974594302,42.31014157992441],[-71.04360488178048,42.31014951746502],[-71.04359856126126,42.31015470690502],[-71.04358554468649,42.31016535528303],[-71.04357923832863,42.31016807525305],[-71.04355659746381,42.31018033385276],[-71.04353249111132,42.31019094177728],[-71.04349020679525,42.31020970623504],[-71.04342865177954,42.3102352580085],[-71.04333616499073,42.31024367114867],[-71.04329801403837,42.3102533976359],[-71.04322307108043,42.31028959706787],[-71.04316674765188,42.31030720903617],[-71.04310312007985,42.31031217061935],[-71.04297204203689,42.31034018802759],[-71.04288542048373,42.31035521073265],[-71.04274494861161,42.31035272973678],[-71.04266442720349,42.31034253211225],[-71.04257943998374,42.31033615733874],[-71.0425122489859,42.31032244207449],[-71.0424835477742,42.3103036690749],[-71.04243597202732,42.31023652247564],[-71.04242101858526,42.31015715813022],[-71.04241932176777,42.31008498055261],[-71.04242656516256,42.31005482320538],[-71.04245077949041,42.31002912599832],[-71.04247714172966,42.31001386372269],[-71.04256485201533,42.31000104149354],[-71.04263004782867,42.30998346513232],[-71.04263837592642,42.30995660538942],[-71.04261817266168,42.30993868821751],[-71.04255957505359,42.30991265865317],[-71.04251052923398,42.30989572681381],[-71.04248292616673,42.30987860033232],[-71.04246764189553,42.30984451350567],[-71.04247385992103,42.30980282731917],[-71.04249108507869,42.30977243691616],[-71.04252012390938,42.30974428667459],[-71.04257550815063,42.30970334628646],[-71.04264047326367,42.30966628378719],[-71.04268158224667,42.30965657019025],[-71.04275227037114,42.30964614870166],[-71.04279933235206,42.30963124330597],[-71.04283904950371,42.30960917378653],[-71.04292470562848,42.30957384008934],[-71.04301738208564,42.30953935892208],[-71.04305441964476,42.3095299026927],[-71.04315559495278,42.30949627628296],[-71.04322193157105,42.30947431335421],[-71.0434072465043,42.3094100129746],[-71.04357215669374,42.30935551115637],[-71.04362628768465,42.30933432329013],[-71.04369116872847,42.30930878641762],[-71.04374303105303,42.30929472167237],[-71.04378146108719,42.30929734647485],[-71.04379696056502,42.30930097409985],[-71.04381499147186,42.30931284682491],[-71.04382924791551,42.30933512914887],[-71.04384469368986,42.30934671701534],[-71.04386236733737,42.30935666347123],[-71.04389111398184,42.30936912700145],[-71.04390699768841,42.30937111218694],[-71.04397649125403,42.30937221085841],[-71.04398499022155,42.30937306746011],[-71.04399569253664,42.30937585494704],[-71.04414225820963,42.30935311055702],[-71.04416770082699,42.30931150144021],[-71.04414052507686,42.30923483384574],[-71.04444683441844,42.30920750810762],[-71.04445909425108,42.30919932255575],[-71.04447467072352,42.30919225121801],[-71.04449771971504,42.30917478041189],[-71.04451107901205,42.30916769757976],[-71.04453964845247,42.30915354374812],[-71.04455413137235,42.30914454322188],[-71.04457829802337,42.30912597936234],[-71.04461841333448,42.30909951913917],[-71.04463289271222,42.30909134506523],[-71.04464700959402,42.3090817974944],[-71.04466893048951,42.30906651621716],[-71.04469789544787,42.30904879512036],[-71.04472202924624,42.30903462006766],[-71.04474615983997,42.3090207204893],[-71.04477143452533,42.30900188638699],[-71.04479783006884,42.30898168556067],[-71.04481862377577,42.30896914570783],[-71.0448390557529,42.30895495596737],[-71.04485689635328,42.30894185432673],[-71.04486322103511,42.30893639204238],[-71.0448691691122,42.30893202483269],[-71.04487511006029,42.30892848046956],[-71.04488959044224,42.30891948169153],[-71.04490403620227,42.30891597371031],[-71.04490996927123,42.3089135249805],[-71.0449211435932,42.30890177078877],[-71.0449405210984,42.30888071656076],[-71.04495843932807,42.30885663964237],[-71.04497412413758,42.30883447511977],[-71.04498383418088,42.30882106757289],[-71.04499244156089,42.30880683098343],[-71.04500326836386,42.30879178300681],[-71.04501446996547,42.30877673381222],[-71.04504962362678,42.30872061768437],[-71.04505673742401,42.30870829912001],[-71.04506422543037,42.30869488006815],[-71.045076203861,42.30867434750836],[-71.04508965533944,42.30865491824562],[-71.04512113047758,42.30859604341514],[-71.0451297870774,42.30857494761621],[-71.04513845230301,42.30855248159248],[-71.04516282586987,42.30850455420944],[-71.04517367593256,42.30848676219066],[-71.04518453662455,42.30846732086133],[-71.04521005341512,42.30841473443299],[-71.04521981808591,42.30839336842025],[-71.0452247075327,42.30838186391694],[-71.04523330054535,42.30836927390242],[-71.04524189398872,42.3083569611816],[-71.04525269748055,42.30834547738034],[-71.04526461075265,42.30833399886997],[-71.04527799538567,42.30832335175678],[-71.04529843857192,42.30830806451127],[-71.04532033856349,42.30829580353649],[-71.04533856731447,42.30827995743794],[-71.04536723864943,42.30825153223063],[-71.04539779309822,42.30821845000589],[-71.04540746339532,42.30820970762527],[-71.04541570900147,42.30819464669661],[-71.045424299525,42.30818205665769],[-71.04543400148702,42.30816974740715],[-71.04544481277843,42.30815716795199],[-71.04545565484268,42.30814047064038],[-71.0454874480935,42.30808873185025],[-71.0454934401277,42.30807805547165],[-71.04550434594941,42.30805230407914],[-71.04551183074383,42.30803998425191],[-71.04552748956583,42.30802138474125],[-71.04553981325614,42.30800442048987],[-71.04555179140185,42.30798388787755],[-71.04555899911006,42.30795812275466],[-71.04556390225791,42.30794469614752],[-71.04557139597262,42.30793045420864],[-71.04557851549853,42.30791731095751],[-71.04559083916138,42.3079003458],[-71.04560059649924,42.30787980350001],[-71.04560924693573,42.30785953051371],[-71.04561642430788,42.30783815603541],[-71.04562618405357,42.30781761374256],[-71.04564559081435,42.3077918968492],[-71.04566388673823,42.30776699663513],[-71.04568943903992,42.30770919749203],[-71.04569809139495,42.30768864991423],[-71.04570637063496,42.30766837545252],[-71.04573077567927,42.30761578450758],[-71.04575026277529,42.30757936333232],[-71.0457697402809,42.30754376859219],[-71.04577950113141,42.3075232280904],[-71.04579188994579,42.30749665605387],[-71.04580280583174,42.307469809004],[-71.04581743504785,42.30744050530296],[-71.0458320421597,42.30741394292983],[-71.04584775902045,42.30738738674127],[-71.04586726321006,42.30734822509565],[-71.04588083620908,42.30731178052398],[-71.04589402972145,42.30727615822651],[-71.04590753378669,42.3072493204934],[-71.04592210811393,42.30722714874771],[-71.04592701581034,42.30721290016651],[-71.04593192473675,42.30719864888903],[-71.0459406256599,42.30717097019711],[-71.04596621728825,42.3071079565977],[-71.04597970390371,42.30708303552794],[-71.04600634815135,42.3070279856413],[-71.04601615289191,42.30700113327898],[-71.04602703622695,42.30697812406151],[-71.04603453454868,42.30696388570984],[-71.04604165933863,42.30694964138049],[-71.04604655443093,42.30693731308645],[-71.04605294722688,42.30692197019792],[-71.04605522621971,42.30691402413868],[-71.04605787030825,42.30690607592048],[-71.04606123775353,42.30690059918589],[-71.04606871744556,42.3068882802006],[-71.04607842105268,42.3068756963082],[-71.04609518131068,42.30685819943594],[-71.04610114286156,42.30685191367284],[-71.04610862573432,42.30683931830496],[-71.0461183713871,42.30682069805493],[-71.04614015529144,42.30677276292496],[-71.04615745036139,42.3067327660245],[-71.04616123398175,42.30672015874345],[-71.04616580089665,42.30670233820996],[-71.04616963263389,42.30668369459817],[-71.04617454615001,42.30666862045187],[-71.04617834277872,42.30665436657032],[-71.0461821548469,42.30663846609847],[-71.04618332362081,42.30663023745861],[-71.04618559654189,42.30662228867152],[-71.04619198034032,42.30660886878266],[-71.04620763271727,42.30659109112563],[-71.0462136291795,42.30657959094896],[-71.04622340155832,42.30655740109996],[-71.04623095682484,42.30653520429546],[-71.04623437882222,42.30652177270813],[-71.04624086592646,42.30649325877165],[-71.0462469855313,42.3064647433835],[-71.04625306577968,42.30644171877753],[-71.04625797804428,42.30642664462212],[-71.04626288805459,42.30641239243268],[-71.04626786050345,42.3063890888595],[-71.04627179445839,42.30635617496961],[-71.04627306941093,42.30633312778678],[-71.04627441393139,42.30630020367188],[-71.04627464399269,42.30626810073262],[-71.04627754488651,42.30622447907921],[-71.04628377380274,42.3061808732669],[-71.04628764706665,42.30615591780012],[-71.04630895646015,42.30601961797358],[-71.04631132691721,42.30599822176548],[-71.04631406970836,42.30597682792761],[-71.04632133511757,42.30594310431121],[-71.04632776162045,42.30592337256833],[-71.04633271238383,42.30590308671513],[-71.04633880631947,42.30587814001266],[-71.04634490813301,42.3058520931725],[-71.04635854101554,42.30580686903179],[-71.04637180714354,42.30576136884933],[-71.04637673654874,42.30574355243635],[-71.04638055442059,42.30572682730209],[-71.04639792207139,42.30567613056165],[-71.04640621232491,42.30565475861889],[-71.04641485930236,42.30563421275979],[-71.04642089375935,42.30561722178157],[-71.04642582133535,42.30560050372669],[-71.04646997367325,42.30547499500617],[-71.04648351083517,42.30544294098132],[-71.0464955707243,42.30541088562595],[-71.04650425395224,42.30538594733108],[-71.04651293126675,42.30536183368841],[-71.0465287215541,42.30532457580367],[-71.04654334405819,42.30529609304906],[-71.04655796877793,42.30526679102677],[-71.04657263646439,42.30523199553181],[-71.04657867913984,42.30521418440188],[-71.04658620859722,42.30519555176116],[-71.04659442900922,42.30518323746189],[-71.04661384954595,42.30515559830619],[-71.04663325872811,42.3051298812462],[-71.04664075065631,42.30511563922447],[-71.04664787159693,42.30510222311572],[-71.04665646434108,42.30508990758],[-71.04666878352629,42.30507294228261],[-71.04668073520664,42.30505597733465],[-71.0466915889625,42.30503735780122],[-71.04669908100728,42.30502394315317],[-71.04670877861196,42.30501163197203],[-71.04671847274757,42.30500014365203],[-71.04673154592075,42.30498153647098],[-71.04674124200045,42.30496977536529],[-71.04675465002747,42.30495555667225],[-71.04676805381169,42.30494243812942],[-71.04679228649631,42.30491399504773],[-71.04681504662136,42.30488472327749],[-71.04682364715839,42.30487131029198],[-71.04683824023802,42.30484639707808],[-71.04684795048784,42.30483298936742],[-71.04685655204878,42.3048187535077],[-71.04686514350105,42.30480643795088],[-71.04687337755773,42.30479220244116],[-71.04688196900312,42.304779886883],[-71.04690024936113,42.30475663305227],[-71.04691963866186,42.30473366088404],[-71.04694011517311,42.30471315982579],[-71.04695465486279,42.30469620505278],[-71.04697629380678,42.30466884737217],[-71.04698712140816,42.30465352281093],[-71.04703935413693,42.30458704608072],[-71.04705276787678,42.30457200810031],[-71.04706135457728,42.30456051628575],[-71.04706471814681,42.30455504310585],[-71.04711326902863,42.30448662878374],[-71.04716287363532,42.30442535528483],[-71.04719939933121,42.30438351545554],[-71.04722353667565,42.3043685170112],[-71.04725722739892,42.30436151577107],[-71.04727648061773,42.30435720085814],[-71.04728351651714,42.30435530823554],[-71.0472894431639,42.30435368493393],[-71.04729685261439,42.30435179288195],[-71.04730649776879,42.30434661723419],[-71.04731615563202,42.30434034236727],[-71.04732433189628,42.30433433715508],[-71.04737162033274,42.30428704963082],[-71.04741035739784,42.30424631681311],[-71.04742971724235,42.30422690873623],[-71.04743829671402,42.30421624244134],[-71.04744908854457,42.30420640503397],[-71.04746729669695,42.3041930316388],[-71.04748015134639,42.30420460612569],[-71.04774762118829,42.30443643889506],[-71.04775349097889,42.30444277491282],[-71.04776048888671,42.30444637035046],[-71.04776675165755,42.30444913821805],[-71.04777375078604,42.30445273275937],[-71.04778112569362,42.30445550680376],[-71.04778813854523,42.30445718015445],[-71.04779662420243,42.30445913569347],[-71.0478180086717,42.30446717761475],[-71.04783827874692,42.30447603982314],[-71.04785043336911,42.30448239696563],[-71.04786221685387,42.30448875534733],[-71.04787325464302,42.30449593456972],[-71.04788391788315,42.30450393249208],[-71.04789347381498,42.30451192785723],[-71.04790153983626,42.30452101752812],[-71.04790408609635,42.30452706316856],[-71.04790515076419,42.30453337757163],[-71.04790621420008,42.30453969467076],[-71.0479061691311,42.30454600650818],[-71.04790612602274,42.30455204376135],[-71.04790497243555,42.30455835213762],[-71.04790488429006,42.30457069672678],[-71.0479059026511,42.3045833265635],[-71.04790839900043,42.30459568312177],[-71.04792484316351,42.30462264072892],[-71.0479438774621,42.30464933213086],[-71.04796550924347,42.30467438889677],[-71.0479989015362,42.30470937183052],[-71.04801540798877,42.3047272735351],[-71.04803080470995,42.30474517267287],[-71.04804651233076,42.30477185097173],[-71.04805926188797,42.30479851943449],[-71.04806864654279,42.30482984002413],[-71.0480733373859,42.3048460485964],[-71.04807803608387,42.3048611570308],[-71.04808863793447,42.30487793803382],[-71.04809961118836,42.30489417221277],[-71.04812082349693,42.30492636218772],[-71.04815189006412,42.30497642678266],[-71.04815289794273,42.30499070322622],[-71.04815166093364,42.30500853333535],[-71.04814897289535,42.30502251795247],[-71.04814516290551,42.30503787021711],[-71.04813686175343,42.30506171266992],[-71.04812560645644,42.30508499161997],[-71.04810493780511,42.30513211044588],[-71.04808158621445,42.3051926620181],[-71.04808297651185,42.30520501602136],[-71.04808511250073,42.30521655098205],[-71.04808873401839,42.30522726800913],[-71.04809440490708,42.30526131630626],[-71.04810343759257,42.30534230243723],[-71.04810561130859,42.30540021207414],[-71.04810524114362,42.30545207518477],[-71.04809767732363,42.3054759205327],[-71.04809164678397,42.30549208783722],[-71.04809162131859,42.3054956556317],[-71.04809158998003,42.3055000462786],[-71.04809267549435,42.30550361484113],[-71.04809374679182,42.30550883540086],[-71.04809520445477,42.30551158255141],[-71.04809985935691,42.30553300462442],[-71.04809967523562,42.30555880113764],[-71.04809690174056,42.30558458386626],[-71.04809295163511,42.30562024007457],[-71.04808678321825,42.30565589205979],[-71.04807467312958,42.30569508677031],[-71.04806218483081,42.3057351001664],[-71.04805602105912,42.30576992749145],[-71.04805097142567,42.30580448280541],[-71.04805185786812,42.30583576996454],[-71.04805433591426,42.30585087146305],[-71.04805311964179,42.30586596023197],[-71.04804932572409,42.30587939041082],[-71.04804443939665,42.30589089685035],[-71.04804065376871,42.30590350508632],[-71.04803686767373,42.30591583872839],[-71.0480356259464,42.30593449259023],[-71.04803549078156,42.30595342719692],[-71.04803523025222,42.30598992348906],[-71.04802795987648,42.30602447006581],[-71.04801919488435,42.30606093380669],[-71.04801790809,42.30608589950327],[-71.04801782385913,42.30609769852128],[-71.04801514040636,42.30611086027508],[-71.04798212218243,42.30617933245698],[-71.04797012090017,42.30620343402925],[-71.04796637786441,42.30620973221768],[-71.04796301139399,42.30621493081883],[-71.04795927199538,42.30622122902135],[-71.04795663751776,42.30622752886944],[-71.04795654347288,42.30624070080807],[-71.04794814880594,42.30627743879029],[-71.04794058482817,42.30630128412381],[-71.04793192994732,42.30632265383786],[-71.04792364377278,42.30634402410146],[-71.04791490070218,42.3063777429],[-71.04790726178007,42.30641174063364],[-71.04789242773495,42.3064704071225],[-71.04789123688907,42.30648192809407],[-71.04787910693882,42.3065238650179],[-71.04786808552588,42.30656580540158],[-71.04786424961323,42.30658527462833],[-71.04786037916935,42.30660940908001],[-71.04785790732896,42.30664507199032],[-71.0478550663197,42.30668045795553],[-71.04785122375235,42.30670102732331],[-71.04784885380866,42.30672242085923],[-71.04784764681693,42.30673586120848],[-71.0478449520071,42.30675094415489],[-71.04784107566918,42.30677590145734],[-71.0478386743625,42.30680168563836],[-71.04783741883236,42.30682226158375],[-71.04783368015281,42.30682828249159],[-71.04782627750532,42.30682935353038],[-71.04780111315057,42.30683281969826],[-71.0477807423471,42.3068379549775],[-71.04776407003295,42.30684337579945],[-71.04775552944244,42.30684855673174],[-71.04774475093261,42.30685647297373],[-71.04773022513366,42.30687178304467],[-71.0477216485193,42.30688217567639],[-71.04771417847385,42.30689284995566],[-71.04770816265807,42.30690709335054],[-71.04770325414761,42.306921345605],[-71.04769945420762,42.30693559952182],[-71.04768248611784,42.30698190724683],[-71.04767647614582,42.30699533048848],[-71.04767156176194,42.30701040289262],[-71.04766780810399,42.30701834677936],[-71.04766553097377,42.30702656926942],[-71.04766276991042,42.30705125726335],[-71.04766036954817,42.30707621856797],[-71.04766016565762,42.30710475641225],[-71.04766120604772,42.307114641313],[-71.04766478009441,42.30713166837309],[-71.04767058742156,42.30714678118072],[-71.04767385986695,42.30715475362476],[-71.04768594980041,42.30716989566319],[-71.04769181986393,42.30717622807938],[-71.04770027349552,42.30718339624062],[-71.04771830873237,42.30719417090791],[-71.04773378018244,42.30720219046366],[-71.04774924017146,42.30721130563866],[-71.04775881609565,42.30721655696978],[-71.04776579228418,42.30722289643622],[-71.04777313739116,42.30723005752844],[-71.04778486573548,42.30724437615812],[-71.0477943733606,42.30725868154595],[-71.04780165573663,42.30727462662757],[-71.04781691434545,42.30731228144671],[-71.04782742396667,42.30734168432269],[-71.04783828634429,42.30737383360366],[-71.04784518268004,42.30739169750526],[-71.04785354919758,42.30741039096665],[-71.04786406248428,42.30743979475326],[-71.04786874637928,42.30745682617247],[-71.04787454079404,42.30747358826926],[-71.04788033447029,42.3074906240543],[-71.04788873133397,42.30750575063914],[-71.047892380677,42.30751207520745],[-71.04790780127362,42.3075272303251],[-71.04790887066152,42.30753272096712],[-71.04793171507937,42.30754351271941],[-71.04794976193898,42.30755318902749],[-71.04796632836634,42.30756313230021],[-71.04797589288147,42.30756948193503],[-71.04800834811238,42.3075803123776],[-71.0480227170158,42.30758750288074],[-71.04804887298779,42.30759995428528],[-71.04810153595976,42.30762870004132],[-71.04813393099492,42.30764831174771],[-71.04815048918415,42.30765907693595],[-71.04818404521897,42.30767101002417],[-71.04820101372553,42.30767628858326],[-71.04824995918462,42.30770776557218],[-71.04833252393622,42.30774266528749],[-71.04844502319473,42.30777878184406],[-71.0485936920433,42.30782299633939],[-71.04877461702146,42.30785499057828],[-71.04891716779073,42.3078761311238],[-71.04905056642839,42.30788461335739],[-71.04909010245389,42.30788751351926],[-71.04912966045671,42.30788766873614],[-71.04917288869881,42.307891405331],[-71.04921502205481,42.30789321637226],[-71.0492508671129,42.30789527732384],[-71.04928819503908,42.30789707128925],[-71.04941168015034,42.30789590800886],[-71.0494512369463,42.30789606311028],[-71.04948969176846,42.30789511641105],[-71.04962426519874,42.30789482104884],[-71.04975736476862,42.30789369687922],[-71.04990043219217,42.30789425734901],[-71.05004424607313,42.30789372129615],[-71.050209872808,42.30789354683776],[-71.0502845219256,42.30789740689796],[-71.05035770082375,42.30790043828178],[-71.05042127668942,42.30790233278145],[-71.05048375203428,42.30790257719091],[-71.05054841262127,42.3079074945722],[-71.05061307879956,42.3079121382475],[-71.0506578039069,42.30791313602008],[-71.05070068422793,42.3079141265623],[-71.05080269108279,42.30791809324933],[-71.05090469015947,42.30792315818241],[-71.0512155464307,42.30793150572082],[-71.0515001730874,42.30793700773121],[-71.05178332954543,42.30794168042696],[-71.05202700130664,42.307935494829],[-71.05212317458847,42.30792791375185],[-71.05215313997158,42.30792528642291],[-71.05218086758812,42.30792539448222],[-71.05220711185426,42.30792549675451],[-71.05224558073031,42.30792290163748],[-71.05228293860654,42.30792030217894],[-71.05231883422343,42.30791522838688],[-71.0523539989447,42.30790905517004],[-71.05237549308215,42.30790200311562],[-71.05238623431876,42.3078993017397],[-71.05239697774596,42.3078957756958],[-71.05243435305722,42.30789070673107],[-71.05250279401406,42.30788384109525],[-71.05253645500538,42.30788122715776],[-71.05257012423482,42.30787779036754],[-71.05262048648335,42.30786563792528],[-71.05266863714535,42.30785320316029],[-71.05269643015973,42.3078437069415],[-71.05272274202116,42.3078347514334],[-71.05274943660929,42.30782415616065],[-71.05276279930428,42.30781624861002],[-71.05277468470621,42.30780833620864],[-71.05279883438023,42.30779141721068],[-71.05282185973638,42.30777723704875],[-71.0528374014885,42.30777455521207],[-71.05285547486707,42.30778093484815],[-71.05288537498372,42.30778736319989],[-71.0528982921342,42.30779015847588],[-71.05291269918283,42.30779186027993],[-71.05292600226113,42.30779273491224],[-71.05293672287269,42.30779277662107],[-71.05294782381911,42.30779117405881],[-71.05296928103898,42.30778933539159],[-71.0529933003516,42.30779052809621],[-71.05301623485283,42.30778869516683],[-71.05304027717673,42.30778714383445],[-71.05306431443529,42.30778613805963],[-71.05308944474284,42.30778733506521],[-71.05311448524738,42.30780142672353]]]],"type":"MultiPolygon"} +},{ + "id": 1108711975, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000132, + "geom:area_square_m":1203875.835068, + "geom:bbox":"-71.1597589959,42.33816,-71.1397279788,42.3503379539", + "geom:latitude":42.345313, + "geom:longitude":-71.150423, + "iso:country":"US", + "lbl:latitude":42.345567, + "lbl:longitude":-71.150427, + "lbl:max_zoom":18.0, + "mps:latitude":42.345567, + "mps:longitude":-71.150427, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.345567, + "reversegeo:longitude":-71.150427, + "src:geom":"mz", + "wof:belongsto":[ + 85807537, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cf2cf83ccc83fd348009971533584d52", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711975, + "neighbourhood_id":85807537, + "region_id":85688645 + } + ], + "wof:id":1108711975, + "wof:lastmodified":1566624136, + "wof:name":"St. Elizabeth's", + "wof:parent_id":85807537, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524031 + ], + "wof:tags":[] +}, + "bbox": [ + -71.15975899591034, + 42.33816, + -71.13972797881547, + 42.35033795386697 +], + "geometry": {"coordinates":[[[[-71.15975899591034,42.34005808241216],[-71.1596043037086,42.34032307936024],[-71.15927600000001,42.34089],[-71.15904,42.341336],[-71.158953,42.341507],[-71.158666,42.341982],[-71.15854400000001,42.342155],[-71.158288,42.342567],[-71.158136,42.342806],[-71.15803,42.342974],[-71.15797600000001,42.343089],[-71.157901,42.343248],[-71.15786199999999,42.343398],[-71.157831,42.343571],[-71.15782516458896,42.34385635159969],[-71.157821,42.34406],[-71.157811,42.344132],[-71.15776129399478,42.34440206228648],[-71.157721,42.344589],[-71.157698,42.344691],[-71.15768799999999,42.344807],[-71.157681,42.344897],[-71.15768799999999,42.345121],[-71.157724,42.345317],[-71.15778299999999,42.345554],[-71.157887,42.345772],[-71.158103,42.346091],[-71.158214,42.346388],[-71.15822799999999,42.346522],[-71.158227,42.346634],[-71.158159,42.34679],[-71.158053,42.346912],[-71.15785,42.347106],[-71.15781200000001,42.347154],[-71.157661,42.34734],[-71.1576,42.34743],[-71.157539,42.347614],[-71.157476,42.348111],[-71.157462,42.348191],[-71.157438,42.348328],[-71.15733899999999,42.34858],[-71.15718699999999,42.348912],[-71.157079,42.34909],[-71.156475,42.349105],[-71.15574599999999,42.349114],[-71.155224,42.349125],[-71.154715,42.349129],[-71.154438,42.349138],[-71.15402,42.349137],[-71.15344899999999,42.349146],[-71.15315334204236,42.3491248294302],[-71.15263899999999,42.349088],[-71.152091,42.349049],[-71.151993,42.349042],[-71.151106,42.349009],[-71.150927,42.348988],[-71.15061300000001,42.348976],[-71.150499,42.34897],[-71.150364,42.34897],[-71.150154,42.348986],[-71.14994299999999,42.349036],[-71.149525,42.349178],[-71.14934100000001,42.34924],[-71.14890422589005,42.3494454762989],[-71.14861999999999,42.349579],[-71.14721213606525,42.35012502537063],[-71.14645929449797,42.34986174852722],[-71.144127841299,42.34968168342295],[-71.14136052385935,42.34919095076174],[-71.14112592573755,42.34946187814077],[-71.14107914679272,42.3502745303722],[-71.14003739293997,42.35033795386697],[-71.13992861977924,42.34942959784654],[-71.13972797881547,42.34899952010554],[-71.14036281921442,42.34866837723777],[-71.1402321652982,42.34861040630986],[-71.14023299999999,42.34861],[-71.140491,42.348389],[-71.140557,42.348317],[-71.14065100000001,42.348179],[-71.140705,42.348039],[-71.14072,42.347999],[-71.140766,42.347789],[-71.14081299999999,42.347416],[-71.14084800000001,42.347185],[-71.140883,42.347047],[-71.140923,42.346917],[-71.141009,42.346695],[-71.14108299999999,42.346536],[-71.141209,42.346313],[-71.141451,42.345928],[-71.141516,42.345824],[-71.14210300000001,42.344992],[-71.14245099999999,42.344526],[-71.142792,42.344049],[-71.14296,42.343794],[-71.14327299999999,42.343368],[-71.14345899999999,42.343149],[-71.144093,42.343478],[-71.144425,42.343681],[-71.14478,42.343368],[-71.14510900000001,42.343113],[-71.145439,42.342894],[-71.145686,42.342746],[-71.145961,42.34262],[-71.146157,42.342555],[-71.14635199999999,42.343042],[-71.14639099999999,42.343105],[-71.14657699999999,42.34301],[-71.146826,42.34296],[-71.147001,42.342919],[-71.147125,42.342865],[-71.147227,42.342781],[-71.147256,42.34271],[-71.147262,42.34263],[-71.147251,42.342525],[-71.14713399999999,42.342223],[-71.14704,42.341937],[-71.147007,42.341782],[-71.14697301876581,42.34161056592172],[-71.1470031253879,42.34160948386553],[-71.147267,42.3416],[-71.147729,42.341618],[-71.14788928471015,42.34162921525669],[-71.148072,42.341642],[-71.14814574496548,42.34165025503345],[-71.148206,42.341657],[-71.148529,42.341653],[-71.148633,42.341814],[-71.148805,42.342027],[-71.14892399999999,42.342139],[-71.149044,42.342201],[-71.149171,42.342241],[-71.149404,42.342258],[-71.149529,42.342258],[-71.149682,42.342258],[-71.15004999999999,42.342232],[-71.150524,42.342144],[-71.151291,42.341895],[-71.15150632946055,42.34187090654212],[-71.15152649229984,42.34173810675068],[-71.151505,42.341588],[-71.15144600000001,42.341482],[-71.151349,42.341403],[-71.151184,42.341336],[-71.150944,42.341274],[-71.150712,42.3412],[-71.150487,42.341055],[-71.15092199999999,42.340764],[-71.15115,42.340601],[-71.151308,42.340479],[-71.151382,42.340423],[-71.15164799999999,42.340535],[-71.15196299999999,42.340598],[-71.15219500000001,42.340621],[-71.15262300000001,42.340628],[-71.153111,42.340696],[-71.15353,42.340793],[-71.153778,42.340855],[-71.154061,42.340979],[-71.154462,42.341198],[-71.154537,42.341225],[-71.154623,42.341233],[-71.154734,42.341206],[-71.154909,42.340967],[-71.15525700000001,42.340432],[-71.155288,42.340337],[-71.155536,42.340262],[-71.15567900000001,42.34024],[-71.15508800000001,42.339746],[-71.15364700000001,42.338423],[-71.15336499999999,42.338185],[-71.153503,42.33816],[-71.15371,42.33816],[-71.15392900000001,42.338197],[-71.154259,42.33829],[-71.154678,42.33846],[-71.154726,42.338482],[-71.155193,42.338693],[-71.155406,42.338797],[-71.155852,42.339017],[-71.15623600000001,42.339187],[-71.156547,42.339305],[-71.156655,42.339347],[-71.157033,42.339471],[-71.157623,42.339658],[-71.157878,42.33973],[-71.158964,42.339953],[-71.159758,42.340058],[-71.15975899591034,42.34005808241216]]]],"type":"MultiPolygon"} +},{ + "id": 1108711977, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":104637.132516, + "geom:bbox":"-71.0659957936,42.2907348505,-71.0617503977,42.2947537501", + "geom:latitude":42.292979, + "geom:longitude":-71.063841, + "iso:country":"US", + "lbl:latitude":42.293058, + "lbl:longitude":-71.063801, + "lbl:max_zoom":18.0, + "mps:latitude":42.293058, + "mps:longitude":-71.063801, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.293058, + "reversegeo:longitude":-71.063801, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"85d7febc3aeaf507c531274f35ef4191", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711977, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711977, + "wof:lastmodified":1566624136, + "wof:name":"St. Marks", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524027 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06599579361435, + 42.2907348504806, + -71.06175039771911, + 42.29475375005874 +], + "geometry": {"coordinates":[[[[-71.06547990412798,42.29202527948271],[-71.06599579361435,42.29402903210968],[-71.06491643425876,42.29436831896253],[-71.06453634799855,42.29447589504866],[-71.06418327360809,42.29455392725346],[-71.06312586632527,42.29473975556051],[-71.06295528813189,42.29475375005874],[-71.06280523354849,42.29474917922355],[-71.06175039771911,42.2946058566977],[-71.06224269580086,42.29291198570623],[-71.06274449703253,42.29104966620877],[-71.06326519918613,42.29113195609565],[-71.06330735227378,42.29113661549347],[-71.06335087432549,42.29113488132436],[-71.06339311200388,42.29112837194328],[-71.06401203099306,42.29094988380343],[-71.06468252631596,42.2907348504806],[-71.0650772299545,42.29215019880588],[-71.06547990412798,42.29202527948271]]]],"type":"MultiPolygon"} +},{ + "id": 1108711979, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":460931.879657, + "geom:bbox":"-71.0809710902,42.3804725438,-71.0695443685,42.3905658615", + "geom:latitude":42.384876, + "geom:longitude":-71.075306, + "iso:country":"US", + "lbl:latitude":42.384086, + "lbl:longitude":-71.074399, + "lbl:max_zoom":18.0, + "mps:latitude":42.384938, + "mps:longitude":-71.075307, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Sullivan Square" + ], + "name:eng_x_variant":[ + "Sullivan Sq" + ], + "name:fra_x_preferred":[ + "Sullivan Square" + ], + "reversegeo:latitude":42.384938, + "reversegeo:longitude":-71.075307, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85810461, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7636429" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"680a82f7188f6b248cf391582454a884", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711979, + "neighbourhood_id":85810461, + "region_id":85688645 + } + ], + "wof:id":1108711979, + "wof:lastmodified":1566624136, + "wof:name":"Sullivan Square", + "wof:parent_id":85810461, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85881045 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08097109016927, + 42.38047254379374, + -71.06954436851113, + 42.39056586146427 +], + "geometry": {"coordinates":[[[[-71.06954436851113,42.38563540062472],[-71.07731190367174,42.38047254379374],[-71.08070165007065,42.38103998159833],[-71.08097109016927,42.38232333239089],[-71.08081241116467,42.38242066389311],[-71.08047573973411,42.38257875828135],[-71.07971270950668,42.38292056720507],[-71.07549313726581,42.38885128989779],[-71.07426323426849,42.39056492753753],[-71.07426381093786,42.39056586146427],[-71.0742623816128,42.39056511974415],[-71.07425870273099,42.39056153831002],[-71.07425539788069,42.39055796186079],[-71.0742517165768,42.39055437951718],[-71.07424692455726,42.39055161772308],[-71.07423843950737,42.39054719564591],[-71.07422884870957,42.39054249579046],[-71.0742144265713,42.39053997204652],[-71.07420741330435,42.39053720113093],[-71.07420002285843,42.3905352534785],[-71.07419411776428,42.39053276124931],[-71.07418931777249,42.39053082318237],[-71.07418452453695,42.3905280622814],[-71.07417862563256,42.3905244708285],[-71.07417493813431,42.39052198950579],[-71.07417126047446,42.3905184080733],[-71.0741679476849,42.39051565084986],[-71.07415951929627,42.39050299768716],[-71.07415364994228,42.39049501926221],[-71.07403901604252,42.39053218717829],[-71.07393904645758,42.39037046559324],[-71.07377177830122,42.39008830682014],[-71.07361106438672,42.38982208367645],[-71.0734434386447,42.38953827463514],[-71.07326771481664,42.38924784971825],[-71.07309310994697,42.38895687948602],[-71.07292772299613,42.38867115582007],[-71.07293043818483,42.3886525066189],[-71.07283306284876,42.38849161826966],[-71.07275546916979,42.38836126168466],[-71.07268676800122,42.38822929054842],[-71.07273327763878,42.38813945649745],[-71.07272112055432,42.38813035719848],[-71.07271141463805,42.3881429431335],[-71.07259773579847,42.38809340233525],[-71.0725656010848,42.38802824916213],[-71.07248580156026,42.38789596387715],[-71.07247885116905,42.38788358885873],[-71.07243387880982,42.38780137347916],[-71.07242041146384,42.38782190482249],[-71.07236507718437,42.38779398213889],[-71.07235315820623,42.38780464131466],[-71.07234716436061,42.38781531981092],[-71.07234347396809,42.38781365947526],[-71.07201953537258,42.38771092547935],[-71.07201621411389,42.38770981387877],[-71.07205743478485,42.38763532916138],[-71.072046730984,42.38763062407875],[-71.07194975054961,42.38757593209223],[-71.07184540135871,42.38751599725758],[-71.07170782186384,42.38744331575428],[-71.07158426320198,42.38737782284213],[-71.07143929992613,42.38730236675324],[-71.07130284555893,42.38722776864356],[-71.07114499649782,42.3871426644377],[-71.07095433774339,42.38703767913599],[-71.07077956204104,42.38693714345153],[-71.0706062174163,42.38684484413606],[-71.07046127272257,42.38676664550074],[-71.07026249176062,42.38665915743226],[-71.07004194969599,42.38653979217374],[-71.06989000739675,42.38645717597196],[-71.06985165070721,42.38643672576707],[-71.06985165816648,42.3864356292487],[-71.07034442749999,42.38609528498816],[-71.07029174874889,42.38605776787069],[-71.07023649283752,42.38601832169602],[-71.07011605705497,42.38592978795305],[-71.07005125144367,42.3858796007248],[-71.07001921162872,42.38585533356383],[-71.06998792184537,42.38583024633694],[-71.06994114736329,42.38579549518853],[-71.06982549696656,42.38571109602134],[-71.06979186881439,42.38570218981206],[-71.06978227162156,42.38569858609924],[-71.06969580902967,42.38567603654212],[-71.06960823779737,42.38565348007171],[-71.06954436851113,42.38563540062472]]]],"type":"MultiPolygon"} +},{ + "id": 1108711981, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":460122.586331, + "geom:bbox":"-71.0983235511,42.3367217099,-71.0849474663,42.3480716907", + "geom:latitude":42.342684, + "geom:longitude":-71.090559, + "iso:country":"US", + "lbl:latitude":42.344522, + "lbl:longitude":-71.086765, + "lbl:max_zoom":18.0, + "mps:latitude":42.343071, + "mps:longitude":-71.088787, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:afr_x_preferred":[ + "Simfonie" + ], + "name:als_x_preferred":[ + "Sinfonie" + ], + "name:ara_x_preferred":[ + "\u0633\u064a\u0645\u0641\u0648\u0646\u064a\u0629" + ], + "name:arg_x_preferred":[ + "Sinfon\u00eda" + ], + "name:arz_x_preferred":[ + "\u0633\u064a\u0645\u0641\u0648\u0646\u064a\u0647" + ], + "name:ast_x_preferred":[ + "Sinfon\u00eda" + ], + "name:aze_x_preferred":[ + "Simfoniya" + ], + "name:bak_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u044f" + ], + "name:bel_x_preferred":[ + "\u0421\u0456\u043c\u0444\u043e\u043d\u0456\u044f" + ], + "name:ben_x_preferred":[ + "\u09b8\u09bf\u09ae\u09cd\u09ab\u09a8\u09bf" + ], + "name:bos_x_preferred":[ + "Simfonija" + ], + "name:bre_x_preferred":[ + "Sinfonienn" + ], + "name:bul_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u044f" + ], + "name:cat_x_preferred":[ + "Simfonia" + ], + "name:ces_x_preferred":[ + "Symfonie" + ], + "name:ckb_x_preferred":[ + "\u0633\u06cc\u0645\u0641\u06c6\u0646\u06cc" + ], + "name:cym_x_preferred":[ + "Symffoni" + ], + "name:dan_x_preferred":[ + "Symfoni" + ], + "name:deu_x_preferred":[ + "Sinfonie" + ], + "name:ell_x_preferred":[ + "\u03a3\u03c5\u03bc\u03c6\u03c9\u03bd\u03af\u03b1" + ], + "name:epo_x_preferred":[ + "Simfonio" + ], + "name:est_x_preferred":[ + "S\u00fcmfoonia" + ], + "name:eus_x_preferred":[ + "Sinfonia" + ], + "name:fas_x_preferred":[ + "\u0633\u0645\u0641\u0648\u0646\u06cc" + ], + "name:fin_x_preferred":[ + "Sinfonia" + ], + "name:fra_x_preferred":[ + "Symphonie" + ], + "name:gle_x_preferred":[ + "Siansa" + ], + "name:glg_x_preferred":[ + "Sinfon\u00eda" + ], + "name:heb_x_preferred":[ + "\u05e1\u05d9\u05de\u05e4\u05d5\u05e0\u05d9\u05d4" + ], + "name:hif_x_preferred":[ + "Symphony" + ], + "name:hin_x_preferred":[ + "\u0938\u093f\u0902\u092b\u0928\u0940" + ], + "name:hrv_x_preferred":[ + "Simfonija" + ], + "name:hun_x_preferred":[ + "Szimf\u00f3nia" + ], + "name:hye_x_preferred":[ + "\u054d\u056b\u0574\u0586\u0578\u0576\u056b\u0561" + ], + "name:ido_x_preferred":[ + "Simfonio" + ], + "name:ina_x_preferred":[ + "Symphonia" + ], + "name:ind_x_preferred":[ + "Simfoni" + ], + "name:isl_x_preferred":[ + "Sinf\u00f3n\u00eda" + ], + "name:ita_x_preferred":[ + "Sinfonia" + ], + "name:jpn_x_preferred":[ + "\u4ea4\u97ff\u66f2" + ], + "name:kat_x_preferred":[ + "\u10e1\u10d8\u10db\u10e4\u10dd\u10dc\u10d8\u10d0" + ], + "name:kaz_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u044f" + ], + "name:kir_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u044f" + ], + "name:kor_x_preferred":[ + "\uad50\ud5a5\uace1" + ], + "name:lat_x_preferred":[ + "Symphonia" + ], + "name:lav_x_preferred":[ + "Simfonija" + ], + "name:lim_x_preferred":[ + "Symfonie" + ], + "name:lit_x_preferred":[ + "Simfonija" + ], + "name:mal_x_preferred":[ + "\u0d38\u0d3f\u0d02\u0d2b\u0d23\u0d3f" + ], + "name:mar_x_preferred":[ + "\u0938\u093f\u0902\u092b\u0928\u0940" + ], + "name:mkd_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u0458\u0430" + ], + "name:mya_x_preferred":[ + "\u1006\u1004\u103a\u1016\u102d\u102f\u1014\u102e" + ], + "name:new_x_preferred":[ + "\u0938\u093f\u092e\u094d\u092b\u094b\u0928\u0940" + ], + "name:nld_x_preferred":[ + "Symfonie" + ], + "name:nno_x_preferred":[ + "Symfoni" + ], + "name:nor_x_preferred":[ + "Symfoni" + ], + "name:oci_x_preferred":[ + "Sinfonia" + ], + "name:pan_x_preferred":[ + "\u0a38\u0a3f\u0a70\u0a2b\u0a28\u0a40" + ], + "name:pnb_x_preferred":[ + "\u0633\u0645\u0641\u0646\u06cc" + ], + "name:pol_x_preferred":[ + "Symfonia" + ], + "name:por_x_preferred":[ + "Sinfonia" + ], + "name:ron_x_preferred":[ + "Simfonie" + ], + "name:rue_x_preferred":[ + "\u0421\u0456\u043c\u0444\u043e\u043d\u0456\u044f" + ], + "name:rus_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u044f" + ], + "name:slk_x_preferred":[ + "Symf\u00f3nia" + ], + "name:slv_x_preferred":[ + "Simfonija" + ], + "name:spa_x_preferred":[ + "Sinfon\u00eda" + ], + "name:srp_x_preferred":[ + "Simfonija" + ], + "name:stq_x_preferred":[ + "Sinfonie" + ], + "name:swa_x_preferred":[ + "Simfoni" + ], + "name:swe_x_preferred":[ + "Symfoni" + ], + "name:tam_x_preferred":[ + "\u0b92\u0ba4\u0bcd\u0ba4\u0bbf\u0ba9\u0bcd\u0ba9\u0bbf\u0baf\u0bae\u0bcd" + ], + "name:tat_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0438\u044f" + ], + "name:tel_x_preferred":[ + "\u0c38\u0c3f\u0c02\u0c2b\u0c4a\u0c28\u0c40" + ], + "name:tha_x_preferred":[ + "\u0e0b\u0e34\u0e21\u0e42\u0e1f\u0e19\u0e35" + ], + "name:tur_x_preferred":[ + "Senfoni" + ], + "name:ukr_x_preferred":[ + "\u0421\u0438\u043c\u0444\u043e\u043d\u0456\u044f" + ], + "name:urd_x_preferred":[ + "\u06c1\u0645 \u0646\u0648\u0627\u0626\u06cc" + ], + "name:uzb_x_preferred":[ + "Simfoniya" + ], + "name:vep_x_preferred":[ + "Simfonii" + ], + "name:vie_x_preferred":[ + "Giao h\u01b0\u1edfng" + ], + "name:war_x_preferred":[ + "Simponiya" + ], + "name:wuu_x_preferred":[ + "\u4ea4\u54cd\u66f2" + ], + "name:yid_x_preferred":[ + "\u05e1\u05d9\u05de\u05e4\u05d0\u05e0\u05d9\u05e2" + ], + "name:zho_x_preferred":[ + "\u4ea4\u97ff\u66f2" + ], + "reversegeo:latitude":42.343071, + "reversegeo:longitude":-71.088787, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869235, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"af04ad553ff01489eeb6fc4d67d42e00", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711981, + "neighbourhood_id":85869235, + "region_id":85688645 + } + ], + "wof:id":1108711981, + "wof:lastmodified":1566624134, + "wof:name":"Symphony", + "wof:parent_id":85869235, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866977 + ], + "wof:tags":[] +}, + "bbox": [ + -71.09832355111958, + 42.33672170994766, + -71.08494746626704, + 42.34807169066622 +], + "geometry": {"coordinates":[[[[-71.09721579995659,42.33840011713794],[-71.096678,42.339257],[-71.09633599999999,42.339715],[-71.09621,42.339827],[-71.096019,42.339941],[-71.09571800000001,42.340101],[-71.09528229541829,42.34027879086286],[-71.094973,42.340405],[-71.094553,42.340564],[-71.094041,42.340704],[-71.093746,42.340774],[-71.093217,42.340889],[-71.092991,42.340956],[-71.092795,42.341018],[-71.092669,42.341074],[-71.09245199999999,42.341184],[-71.09220500000001,42.341335],[-71.09214799999999,42.341395],[-71.092029,42.3415],[-71.091989,42.341539],[-71.09172100000001,42.341867],[-71.091667,42.341967],[-71.091595,42.342112],[-71.091531,42.342316],[-71.09151799999999,42.342541],[-71.09152400000001,42.342663],[-71.09151900000001,42.342772],[-71.09151,42.342959],[-71.0915,42.343049],[-71.091453,42.34318],[-71.091354,42.343352],[-71.091223,42.343489],[-71.091019,42.343723],[-71.09092,42.343877],[-71.09087700000001,42.344004],[-71.090844,42.344077],[-71.090796,42.344356],[-71.090784,42.344487],[-71.090799,42.344642],[-71.090756,42.344865],[-71.09064499999999,42.345262],[-71.090632,42.345437],[-71.090636,42.345615],[-71.09067840269309,42.34579548254089],[-71.090824,42.346159],[-71.090891,42.346252],[-71.090953,42.346322],[-71.091043,42.346401],[-71.09114599999999,42.346448],[-71.09128699999999,42.346486],[-71.091819,42.346632],[-71.092111,42.346724],[-71.09217599999999,42.346745],[-71.09224399999999,42.346789],[-71.092279,42.346811],[-71.092356,42.346877],[-71.092388,42.346959],[-71.09240200000001,42.347397],[-71.09240200000001,42.347498],[-71.09240200000001,42.347629],[-71.092399,42.34796114985993],[-71.09165977490971,42.34796213102614],[-71.08813955077252,42.34807169066622],[-71.08797951952796,42.34776460242058],[-71.08774151391012,42.34728133997921],[-71.08774128034253,42.34728086468827],[-71.08774123361492,42.34728077179072],[-71.08754984103983,42.34690564795072],[-71.08740594187907,42.34662360876327],[-71.08734309267554,42.3464879919926],[-71.08732208306449,42.34644298214218],[-71.08728418852786,42.34636179738909],[-71.08728334293561,42.34636007389688],[-71.08726419731424,42.34632105676317],[-71.08718864032684,42.34616707514856],[-71.08707814768891,42.34594189630381],[-71.08705328688107,42.34589104227865],[-71.08702082149055,42.34582475154297],[-71.0869392325323,42.34565815659913],[-71.08686148011569,42.3454993944083],[-71.08683653762488,42.34544846441216],[-71.08681542065067,42.34540606491655],[-71.08681394599836,42.34540310576024],[-71.08681257227146,42.34540030271704],[-71.0868093313761,42.34539369013188],[-71.08680454069012,42.3453839164548],[-71.08678708823834,42.34534831021904],[-71.08677647688639,42.34532666148126],[-71.08676481159277,42.34530286265905],[-71.08669630274579,42.3451630910055],[-71.08663029730224,42.34502842665835],[-71.08663024580002,42.34502832203931],[-71.08659353883512,42.34495343253599],[-71.08619006259146,42.34413024509885],[-71.08618807334976,42.34412618482491],[-71.08618722303949,42.3441244496028],[-71.08618667571886,42.34412333397177],[-71.08618607092386,42.34412209929535],[-71.08618602189738,42.34412198748269],[-71.08616966041275,42.34408427028134],[-71.08615917997592,42.34406011193611],[-71.08612908971115,42.34399075136556],[-71.08604012727868,42.34378568218538],[-71.08586494199338,42.34345138326059],[-71.0858585781949,42.34344522304725],[-71.0858399872824,42.343427225864],[-71.08576891354342,42.34335842428307],[-71.08575927208871,42.34334907782529],[-71.0857297809583,42.34332048812686],[-71.08569930582105,42.34329094326607],[-71.08508422855191,42.34286909097198],[-71.08503162952886,42.34283301549451],[-71.08495726784643,42.34278541151778],[-71.08494746626704,42.34277916416904],[-71.084958,42.34277],[-71.085307,42.342501],[-71.085672,42.342195],[-71.086422,42.341593],[-71.086614,42.341474],[-71.08698099999999,42.341233],[-71.087148,42.341155],[-71.08772399999999,42.34093],[-71.087953,42.340841],[-71.08827700000001,42.340715],[-71.088522,42.340622],[-71.088965,42.340454],[-71.089797,42.340119],[-71.09066,42.339766],[-71.091026,42.339608],[-71.091376,42.339457],[-71.092192,42.339139],[-71.092266,42.339107],[-71.092461,42.339033],[-71.092719,42.338934],[-71.09316809311743,42.33874583959233],[-71.09435556652245,42.33823155242215],[-71.09480325743402,42.33802767527573],[-71.09559822716373,42.33769146314026],[-71.09810833985203,42.33672170994766],[-71.09832355111958,42.33716613356749],[-71.09824253274886,42.33724180637096],[-71.09823831520363,42.33724574481784],[-71.09824613643964,42.33725026641105],[-71.09824990015613,42.33725244296688],[-71.09824697599421,42.33725526236844],[-71.09800079365573,42.33749261387018],[-71.09781503439417,42.33767521606306],[-71.09766115946965,42.33783854983897],[-71.09764738550831,42.33785396596197],[-71.09755892276964,42.33795297751997],[-71.09745613455746,42.33807354407347],[-71.09738499124643,42.33817123418601],[-71.09730063318464,42.33828907783157],[-71.09727655802772,42.33832313079539],[-71.09726302468202,42.33834227492553],[-71.09723103043913,42.33838201519586],[-71.09722050506653,42.33839452569944],[-71.09722047695053,42.33839455801148],[-71.09721835059727,42.33839708578589],[-71.09721579995659,42.33840011713794]]]],"type":"MultiPolygon"} +},{ + "id": 1108711983, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":178030.547435, + "geom:bbox":"-71.070681,42.34842,-71.062609,42.352519", + "geom:latitude":42.350928, + "geom:longitude":-71.066138, + "iso:country":"US", + "lbl:latitude":42.351441, + "lbl:longitude":-71.065714, + "lbl:max_zoom":18.0, + "mps:latitude":42.350729, + "mps:longitude":-71.065254, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.350729, + "reversegeo:longitude":-71.065254, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 102084423, + 404476573, + 85950361, + 85815133, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"483765994e54469b87dfe00c5220d7b9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711983, + "neighbourhood_id":85815133, + "region_id":85688645 + } + ], + "wof:id":1108711983, + "wof:lastmodified":1613773792, + "wof:name":"Theatre District", + "wof:parent_id":85815133, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891285 + ], + "wof:tags":[] +}, + "bbox": [ + -71.070681, + 42.34842, + -71.062609, + 42.352519 +], + "geometry": {"coordinates":[[[-71.06662799999999,42.348774],[-71.066627,42.348775],[-71.06661800000001,42.348782],[-71.06657300000001,42.348816],[-71.06657300000001,42.348817],[-71.06656700000001,42.348821],[-71.066518,42.348885],[-71.06651599999999,42.348888],[-71.066512,42.348893],[-71.066458,42.34906],[-71.066458,42.349061],[-71.066456,42.349173],[-71.06646000000001,42.349195],[-71.06647100000001,42.34925],[-71.066487,42.349334],[-71.06649,42.349348],[-71.06649,42.34935],[-71.066502,42.34941],[-71.066507,42.349437],[-71.06651100000001,42.349453],[-71.066512,42.349456],[-71.06652,42.349495],[-71.066552,42.349636],[-71.06656099999999,42.349683],[-71.06656599999999,42.349706],[-71.066569,42.349722],[-71.066684,42.350211],[-71.066688,42.350232],[-71.06669100000001,42.350244],[-71.066703,42.350295],[-71.06685299999999,42.350935],[-71.066856,42.350946],[-71.067091,42.350895],[-71.067571,42.35079],[-71.067668,42.350765],[-71.06774900000001,42.350744],[-71.06798999999999,42.350679],[-71.06799100000001,42.350678],[-71.06813,42.350641],[-71.06813099999999,42.35064],[-71.068138,42.350638],[-71.068659,42.350497],[-71.06866100000001,42.350496],[-71.068905,42.350427],[-71.069379,42.350294],[-71.069388,42.350291],[-71.06939,42.350291],[-71.069766,42.350185],[-71.06982499999999,42.350169],[-71.069895,42.350149],[-71.069896,42.350149],[-71.06989799999999,42.350148],[-71.07068099999999,42.351893],[-71.070289,42.352001],[-71.070234,42.352016],[-71.069484,42.352185],[-71.06926,42.352235],[-71.068726,42.352342],[-71.068445,42.352402],[-71.0675,42.352495],[-71.067418,42.352499],[-71.06741700000001,42.352499],[-71.067398,42.3525],[-71.067384,42.352501],[-71.06717,42.352511],[-71.067036,42.352518],[-71.067035,42.352518],[-71.067009,42.352519],[-71.066884,42.352515],[-71.066774,42.352512],[-71.066733,42.352511],[-71.066661,42.352509],[-71.066563,42.352503],[-71.065967,42.352467],[-71.06572,42.352451],[-71.065296,42.352421],[-71.065181,42.352413],[-71.064677,42.352377],[-71.06455200000001,42.352368],[-71.064543,42.352368],[-71.06260899999999,42.352373],[-71.062659,42.352169],[-71.062665,42.352146],[-71.062686,42.352058],[-71.062714,42.351946],[-71.062714,42.351945],[-71.062721,42.35192],[-71.062726,42.351897],[-71.062749,42.351791],[-71.06274999999999,42.351788],[-71.062754,42.351767],[-71.06277,42.351695],[-71.062793,42.351589],[-71.062822,42.351485],[-71.06285,42.351392],[-71.062923,42.351152],[-71.062988,42.350937],[-71.062991,42.350926],[-71.062996,42.35091],[-71.063119,42.350627],[-71.06352200000001,42.349865],[-71.063723,42.349446],[-71.063903,42.348978],[-71.06406,42.34842],[-71.064125,42.348429],[-71.06471999999999,42.348507],[-71.06473200000001,42.348509],[-71.065038,42.348549],[-71.06554300000001,42.348616],[-71.065561,42.348618],[-71.066011,42.348673],[-71.066293,42.348719],[-71.06660100000001,42.34877],[-71.066602,42.34877],[-71.066607,42.348771],[-71.066626,42.348774],[-71.06662799999999,42.348774]]],"type":"Polygon"} +},{ + "id": 1108711985, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":150537.205932, + "geom:bbox":"-71.0538741875,42.3522286896,-71.0476550384,42.3607189651", + "geom:latitude":42.357162, + "geom:longitude":-71.050829, + "iso:country":"US", + "lbl:latitude":42.358013, + "lbl:longitude":-71.049652, + "lbl:max_zoom":18.0, + "mps:latitude":42.357384, + "mps:longitude":-71.050526, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Waterfront" + ], + "name:fra_x_preferred":[ + "Waterfront" + ], + "name:ita_x_preferred":[ + "Waterfront" + ], + "name:nld_x_preferred":[ + "Waterfront" + ], + "name:swe_x_preferred":[ + "Waterfront" + ], + "reversegeo:latitude":42.357384, + "reversegeo:longitude":-71.050526, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815133, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3cc0a80cca2922d4f5e613375ddba7ef", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711985, + "neighbourhood_id":85815133, + "region_id":85688645 + } + ], + "wof:id":1108711985, + "wof:lastmodified":1566624134, + "wof:name":"Waterfront", + "wof:parent_id":85815133, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891287 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05387418747581, + 42.35222868960224, + -71.04765503835169, + 42.36071896509259 +], + "geometry": {"coordinates":[[[[-71.05216959897848,42.35222868960224],[-71.05387418747581,42.35384580841156],[-71.05345257703159,42.35403397216769],[-71.05284142828957,42.35433850111108],[-71.05191024902953,42.35485902582769],[-71.05170957847153,42.35498684868539],[-71.05149464032112,42.35516265343326],[-71.05140862582913,42.35527374003266],[-71.05134826733394,42.35538170931729],[-71.05126292842058,42.35560931429963],[-71.05117472234897,42.35625780231173],[-71.05116962750601,42.35647468184038],[-71.05119051774929,42.35669284192099],[-71.0512865012987,42.35711697039006],[-71.05206069150277,42.35968632948072],[-71.05219408796523,42.35994793183486],[-71.05230546316714,42.36012219360516],[-71.05245991346494,42.36034060086403],[-71.05077957903326,42.36062159765687],[-71.05077809930283,42.36062159187711],[-71.0507074154734,42.36062323788754],[-71.05070845018086,42.36063394278397],[-71.05051357288551,42.36066967819925],[-71.0504864824304,42.36057682257839],[-71.05033976329923,42.3606047882465],[-71.04993332193369,42.36068167857146],[-71.04986323521696,42.36070363155539],[-71.04971438030509,42.36071896509259],[-71.04958874602889,42.36064383274172],[-71.049307401718,42.36066386039086],[-71.04923972591583,42.36039906454593],[-71.04914343096793,42.36041213203387],[-71.04911619594044,42.36033985705701],[-71.04848454041603,42.36050394535985],[-71.04778185933208,42.36061341750032],[-71.04770262535051,42.3606210635941],[-71.04767180832242,42.36037699239537],[-71.04772366845927,42.3603689640895],[-71.04765503835169,42.3600319952958],[-71.05016574807745,42.35973615005854],[-71.05016102531778,42.35972378229683],[-71.05067814161603,42.3596393650533],[-71.05072145254319,42.35963679287073],[-71.05071375124339,42.35921005552868],[-71.05044551451039,42.35926059398889],[-71.0504380606679,42.35926852432389],[-71.04845754928063,42.35956837686887],[-71.04837537972649,42.35926153935414],[-71.04851395177401,42.35923436977632],[-71.0484378316611,42.35896130794377],[-71.0487360572025,42.35890814594847],[-71.04867271625913,42.35871114417526],[-71.04933758822595,42.35860755403267],[-71.04941019446869,42.35885480817218],[-71.0495838780901,42.35893726376214],[-71.05032247454919,42.35882078538547],[-71.05016797417304,42.35822608450516],[-71.04943933596493,42.35834781537966],[-71.04937468916629,42.35812583748208],[-71.04948548451264,42.35810212395021],[-71.04941487613114,42.35788616096215],[-71.04952306703667,42.35786435841181],[-71.04946580356305,42.35764488166132],[-71.04974494101593,42.35756941499015],[-71.04968186808364,42.35733399843901],[-71.04908627095537,42.35747874981694],[-71.04905055795534,42.35740177442027],[-71.04902330305748,42.35738492842831],[-71.04899090304808,42.35736257407608],[-71.04897446550558,42.35733287201978],[-71.04896729371089,42.35730073770171],[-71.048965288822,42.35727054576945],[-71.04897516391298,42.35723491225274],[-71.04895261954687,42.35717966568164],[-71.04986363558099,42.35695520392241],[-71.04986070563909,42.35684734744633],[-71.04921803147099,42.35684922083264],[-71.04922102480084,42.35679215678783],[-71.04919095628073,42.35675471914065],[-71.04917699112707,42.35668962733947],[-71.04918947806034,42.35665043708439],[-71.04921751250612,42.35661048220429],[-71.04921903105165,42.35655341147545],[-71.0498616915045,42.35655236090793],[-71.04986823170542,42.35630926098582],[-71.04997618332781,42.3563212063045],[-71.05001156120441,42.35608068870785],[-71.04976064502846,42.3560388189787],[-71.04968553685522,42.35614280207134],[-71.049709188706,42.35619887391275],[-71.04967029432589,42.35625744583155],[-71.04958837640513,42.35627852765371],[-71.04950091898237,42.35624635437821],[-71.04948099798267,42.35618645376492],[-71.0495236116973,42.35612515328946],[-71.04960067961173,42.35610926430656],[-71.04992308650345,42.35567147324359],[-71.04994511131927,42.35564384396155],[-71.05032574450517,42.35497714634687],[-71.0504339073416,42.3548027694876],[-71.05068277942875,42.35445469269805],[-71.05086440299813,42.35456297175917],[-71.05098411005679,42.35463835250498],[-71.05106032709598,42.35453355180754],[-71.05112341578348,42.35445367120897],[-71.051185414625,42.35437186509871],[-71.05099675880541,42.35421169416818],[-71.05093784291688,42.35406795038654],[-71.05113079733734,42.35377837756491],[-71.0512752412251,42.35354816223983],[-71.05135299659641,42.35343431309597],[-71.05143068190587,42.35333116179474],[-71.05149723998747,42.35323181218947],[-71.05170369361961,42.35291622126314],[-71.05180457625221,42.35293253166353],[-71.05184758857663,42.35297111566047],[-71.05223279381951,42.35254234410882],[-71.05206184012516,42.35239020236034],[-71.05216959897848,42.35222868960224]]]],"type":"MultiPolygon"} +},{ + "id": 1108712091, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":185550.57979, + "geom:bbox":"-71.0694356444,42.3144522438,-71.0617302067,42.3192892386", + "geom:latitude":42.31652, + "geom:longitude":-71.065089, + "iso:country":"US", + "lbl:latitude":42.320914, + "lbl:longitude":-71.057801, + "lbl:max_zoom":18.0, + "mps:latitude":42.316586, + "mps:longitude":-71.064709, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Uphams Corner" + ], + "name:eng_x_variant":[ + "Uphams Cor" + ], + "name:fra_x_preferred":[ + "Uphams Corner" + ], + "name:und_x_variant":[ + "Burying Place Corner" + ], + "reversegeo:latitude":42.316586, + "reversegeo:longitude":-71.064709, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7898299" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2c0d2b722e6740aff164452c0964b784", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712091, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108712091, + "wof:lastmodified":1566624141, + "wof:name":"Uphams Corner", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85853211 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06943564438882, + 42.3144522438337, + -71.061730206706, + 42.31928923860814 +], + "geometry": {"coordinates":[[[[-71.06943564438882,42.3144522438337],[-71.06663173058146,42.31765036613663],[-71.06634505480274,42.31750519043837],[-71.06503011618682,42.31928923860814],[-71.06362224106483,42.31868663282209],[-71.06341695384316,42.31861026628835],[-71.06318880079222,42.31852989202897],[-71.06272336969012,42.31838391832698],[-71.0625288189334,42.31832882941713],[-71.061730206706,42.3181171922628],[-71.0633364271731,42.31448336941001],[-71.06373343829549,42.31456017866527],[-71.06407144247589,42.31462649329171],[-71.06457535730408,42.314704510283],[-71.06498582015831,42.3147542343283],[-71.06530695851653,42.31478070420881],[-71.06564159383407,42.31479067826032],[-71.0659818548026,42.31476773406408],[-71.06641204054532,42.31470730374411],[-71.06707847183633,42.31459086414957],[-71.06736602645715,42.314561185909],[-71.06763736792243,42.31455862928719],[-71.06805676524966,42.31457395639686],[-71.06835962302101,42.31458602912917],[-71.06869540505991,42.31458626363721],[-71.06890894608692,42.31456404842411],[-71.06943564438882,42.3144522438337]]]],"type":"MultiPolygon"} +},{ + "id": 1108712093, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000645, + "geom:area_square_m":5898401.749218, + "geom:bbox":"-71.1852975678,42.253002738,-71.140359726,42.2814527087", + "geom:latitude":42.268695, + "geom:longitude":-71.159079, + "iso:country":"US", + "lbl:latitude":42.268315, + "lbl:longitude":-71.159086, + "lbl:max_zoom":18.0, + "mps:latitude":42.268315, + "mps:longitude":-71.159086, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Upper Washington" + ], + "reversegeo:latitude":42.268315, + "reversegeo:longitude":-71.159086, + "src:geom":"mz", + "wof:belongsto":[ + 85856255, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1ab8480f22f36298bcfec378cfd0c2e7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712093, + "neighbourhood_id":85856255, + "region_id":85688645 + } + ], + "wof:id":1108712093, + "wof:lastmodified":1566624142, + "wof:name":"Upper Washington - Spring Street", + "wof:parent_id":85856255, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420523795 + ], + "wof:tags":[] +}, + "bbox": [ + -71.18529756775669, + 42.25300273799271, + -71.14035972602885, + 42.28145270872481 +], + "geometry": {"coordinates":[[[[-71.18529756775669,42.27947887211297],[-71.18321618467728,42.27973297996261],[-71.18001678061259,42.28013613224515],[-71.178861995708,42.28028037876555],[-71.1785570525081,42.28031736499965],[-71.17824711023933,42.2803469539713],[-71.17790717355747,42.28037284431008],[-71.17755223966903,42.28039503602058],[-71.17712981835112,42.28040613187289],[-71.17683237375448,42.28040798118142],[-71.17654242776112,42.28039873463823],[-71.17607251528912,42.28037654292904],[-71.17575507441707,42.28035250190193],[-71.17525516753199,42.2802951732618],[-71.17477025785342,42.28023969388298],[-71.17409538355854,42.28015647472316],[-71.17245818850982,42.27994935100375],[-71.17052104933005,42.2796959933855],[-71.16851142365192,42.27944263474855],[-71.16605438131164,42.27915783623247],[-71.1653845060856,42.27908201303395],[-71.16513455264305,42.27905797151293],[-71.1649045954759,42.27904502607474],[-71.16466214063664,42.27903947802898],[-71.1643546979023,42.27904317672621],[-71.16409974539089,42.27906721825288],[-71.16369981988281,42.2791171506251],[-71.16336238273536,42.27918372705986],[-71.16303744326004,42.27927249553012],[-71.16268750844046,42.27939085329592],[-71.1623975624471,42.27951475884382],[-71.16209761831605,42.27967195209874],[-71.16180267325383,42.27982174765911],[-71.16154022213915,42.28001777587922],[-71.16131026497199,42.28020270760331],[-71.16095533108357,42.28053743264363],[-71.16068288183119,42.2807833896891],[-71.16044042699191,42.28100715428739],[-71.16023546516901,42.28118283667958],[-71.15988776445619,42.28145270872481],[-71.15958411875349,42.28130170757734],[-71.15820008307674,42.28067893218564],[-71.15800501814235,42.2806149664038],[-71.15776879985279,42.28052825139807],[-71.15744533743484,42.280368706642],[-71.156930193584,42.28004961591796],[-71.15610356740478,42.27943802084692],[-71.15509723988224,42.27865800692582],[-71.15461803630008,42.27821481289639],[-71.15427061370301,42.27789571126512],[-71.15333616671778,42.27727523124527],[-71.15194647632951,42.27629131468888],[-71.15159605871007,42.27609519434983],[-71.1513175216279,42.27596112303258],[-71.15115100604332,42.27589651511816],[-71.15097608907564,42.27585696825847],[-71.15032916423971,42.27583037552262],[-71.14943065752315,42.27583037552262],[-71.1483779071536,42.27584256386084],[-71.14787923592593,42.27583813173839],[-71.1476456241796,42.27583037552262],[-71.14723231108998,42.27579713458668],[-71.14707057988103,42.27577608198546],[-71.14691073192638,42.27574327586315],[-71.14679204279889,42.27571181610548],[-71.14667523692572,42.27567081887188],[-71.14646826831718,42.27556869997874],[-71.14624395370178,42.27542261883445],[-71.1457407899405,42.27506693761222],[-71.14557165560558,42.27495412010239],[-71.14538895063382,42.27482510419669],[-71.1452735664479,42.27472233488778],[-71.14387189597007,42.27296715865307],[-71.14361956533384,42.27267739474431],[-71.14359036386556,42.27263473340624],[-71.14356116239726,42.27259816652167],[-71.14352158699427,42.27257171203785],[-71.14347655301479,42.27255051873202],[-71.14324893131327,42.27249733045875],[-71.14312132844101,42.27248146736865],[-71.14302430463414,42.27247295248519],[-71.14294164075547,42.27245619608784],[-71.14287904604829,42.27243416932596],[-71.14276972773111,42.27238208904603],[-71.1425449101541,42.27228702886804],[-71.14261088621768,42.2722496780749],[-71.14264983398495,42.2722277130415],[-71.14265005774095,42.27222758769533],[-71.14266978881253,42.27221646102507],[-71.14300099471454,42.27215255221015],[-71.14339830853027,42.2720993776677],[-71.14350264365557,42.2720861367215],[-71.14368104973062,42.2720634949756],[-71.14371508525844,42.27205917557983],[-71.14371581553331,42.27205908331356],[-71.14372229462198,42.27205826072979],[-71.14373379588847,42.27205550637028],[-71.14373487864742,42.27205524684072],[-71.14379967901731,42.27203972675271],[-71.14397549586546,42.271997617376],[-71.14410122231529,42.27195057010779],[-71.14410159403629,42.27195043081252],[-71.14410574369319,42.27194887804535],[-71.14424076816117,42.27189137811301],[-71.14424254939716,42.27189021143652],[-71.14434750209,42.27182150398463],[-71.14443772497235,42.27174631366945],[-71.14455659984375,42.27161855865566],[-71.14465185370175,42.27148897574285],[-71.14471020979717,42.27136073529664],[-71.14473509761642,42.27130604416612],[-71.1447451666303,42.27128391706017],[-71.14476165505395,42.27124370562011],[-71.14488892094411,42.27093333986898],[-71.14492622102556,42.27084583051851],[-71.14492675290633,42.27084458164227],[-71.14498231097353,42.2707142400902],[-71.1450225248358,42.27064664541069],[-71.14502295436888,42.27064592199452],[-71.14508966277049,42.27053379556899],[-71.14519502475073,42.27038127219361],[-71.14524452077916,42.27030962053494],[-71.14531768910319,42.27017242698353],[-71.14533049569164,42.27014841584027],[-71.14541437169146,42.26993981714676],[-71.14543299718693,42.26984423906144],[-71.14543305334639,42.26984395113785],[-71.1454390862653,42.2698129948371],[-71.1454391536767,42.26981264572765],[-71.14545573231628,42.26972757685698],[-71.14546620497373,42.26954507813829],[-71.14544122337503,42.26936422464829],[-71.1453998188982,42.26916225964557],[-71.1453431244896,42.26903023427165],[-71.14534262073569,42.26902906142144],[-71.14529718258039,42.26892324799876],[-71.14518995733313,42.26865965009164],[-71.1451665970459,42.26858600693207],[-71.14516643267619,42.26858548784949],[-71.14514816089221,42.2685278876066],[-71.14510886470516,42.26837156175056],[-71.1451069181136,42.26836007236601],[-71.14507226667033,42.26815557030723],[-71.14505258191846,42.26787293664271],[-71.14506328280207,42.26765007079103],[-71.1450806799395,42.26749743039035],[-71.14512158663914,42.2673659234355],[-71.14513408060469,42.26724485951758],[-71.14513738675534,42.26707637972711],[-71.14510062223064,42.26689022468302],[-71.14508477312434,42.26684966113899],[-71.14503539398891,42.26672328775194],[-71.14488311167676,42.26648938711198],[-71.14467867795214,42.26628516186842],[-71.14463572917138,42.26624996304049],[-71.14463459018296,42.26624902860181],[-71.14458482077103,42.26620823936862],[-71.14438531543031,42.2660447324729],[-71.14438428262237,42.26604388568998],[-71.14435408259703,42.26601913554511],[-71.14404587341129,42.26578124135253],[-71.14392703525098,42.26570409411711],[-71.14372803593444,42.26557490720636],[-71.14356568380434,42.26548127416306],[-71.14356466168871,42.26548068489267],[-71.14340065122518,42.26538609484429],[-71.14303333548963,42.26515503399291],[-71.14299117426306,42.26511502395998],[-71.14298410319067,42.26510831361805],[-71.14298378972796,42.26510801554318],[-71.14290155682581,42.26502997718876],[-71.14277362705272,42.26490857303143],[-71.14274531884217,42.26488170902378],[-71.14261027527417,42.26475355277444],[-71.14235612641519,42.26456847557191],[-71.14208285776952,42.26442194954797],[-71.14191361774502,42.26433028503558],[-71.14191217615557,42.26432950447797],[-71.14184493390556,42.2642930845393],[-71.1418078790409,42.26426532962295],[-71.14180773300399,42.26426521933029],[-71.14165434812539,42.26415032652012],[-71.14162388607593,42.26411503406249],[-71.14160270222342,42.26409049137734],[-71.14156613852342,42.26402909084362],[-71.14156291114443,42.2640236726421],[-71.14152935311827,42.26396211492123],[-71.14152915278032,42.26396174787201],[-71.14150444674983,42.26391642865457],[-71.14148597079475,42.26384090116607],[-71.14148473464309,42.26383230660323],[-71.14147687684461,42.26377768851834],[-71.14147181300335,42.26372454395078],[-71.14147171919997,42.26372355692435],[-71.14146349418365,42.26363723797579],[-71.14145276308294,42.2634458979008],[-71.14143685937695,42.26333352086782],[-71.14142766621715,42.26328785933374],[-71.14142305944176,42.26326169110607],[-71.14142130937461,42.26324453484261],[-71.14141868621697,42.26321845743728],[-71.14141648601745,42.26319924167212],[-71.1414140426738,42.26318208324341],[-71.14141044936386,42.26316423519152],[-71.14139711860687,42.26311274026445],[-71.14138332487262,42.26306124478971],[-71.14137365256961,42.26302701381795],[-71.14137180484731,42.26302047543837],[-71.14137177038144,42.26302035468994],[-71.14136838507962,42.26300837366946],[-71.14135342201151,42.26295961866584],[-71.14129509626061,42.26278038213145],[-71.14123561700475,42.26260114105592],[-71.14118604226945,42.26244939378179],[-71.1411859886619,42.26244922885859],[-71.14117706163456,42.26242190372965],[-71.14112560004735,42.26225453564455],[-71.14112556316852,42.26225441308791],[-71.14112174291222,42.26224199044979],[-71.14111405205037,42.26221383819695],[-71.14110953532892,42.26219598724587],[-71.14110548038535,42.26217813773778],[-71.14110188721926,42.26216028967279],[-71.1410987597164,42.26214175703097],[-71.14109008603127,42.26208341719158],[-71.14108501596132,42.26204086735327],[-71.14108241242306,42.26201135983435],[-71.14108113980168,42.261991460925],[-71.14108056044785,42.26197156418246],[-71.14107864797766,42.26190158292731],[-71.14109170890222,42.26167454620943],[-71.14114723823994,42.26145038723758],[-71.14115476643536,42.26142571360511],[-71.14116181731387,42.2614037826092],[-71.14116909458106,42.26138253835241],[-71.14117919029333,42.26135307051599],[-71.1411890545108,42.26132360105485],[-71.14120125863769,42.26128865154688],[-71.14121346275111,42.26125370203737],[-71.14124045666966,42.26117557870575],[-71.14126932599258,42.26109265900016],[-71.14128364621693,42.26105085577063],[-71.14129819791179,42.2610090532621],[-71.1413120497763,42.26096862062988],[-71.14132590041112,42.26092818799184],[-71.14133881317993,42.26089049565125],[-71.14135126295064,42.2608528027631],[-71.14139067965978,42.2607286225849],[-71.14140929118662,42.26063032510583],[-71.14140937239574,42.26062989591402],[-71.14141257321563,42.26061299098236],[-71.14141134780449,42.26059201815527],[-71.14141133670375,42.26059183805963],[-71.14140611909043,42.26050253042962],[-71.14139264416259,42.26038152968582],[-71.14137867846475,42.26034317719562],[-71.14135902365241,42.26028919924843],[-71.14135430121358,42.26027622821046],[-71.14129030434241,42.26016040484391],[-71.14127954169278,42.26014459247693],[-71.14126831461606,42.26012946469025],[-71.14125294991129,42.2601108938135],[-71.14123596262746,42.26009248982318],[-71.14123491943961,42.26009136028228],[-71.14113545810913,42.2599836097834],[-71.14111615747404,42.25996708468366],[-71.14109592944489,42.25995124271416],[-71.14107569753973,42.25993608676137],[-71.14104696136347,42.25991404389601],[-71.14101822253248,42.25989268704744],[-71.14100075344201,42.25987891178343],[-71.14098328047204,42.25986582253699],[-71.14096580750922,42.25985273328787],[-71.14094833455368,42.25983964403606],[-71.14090925228109,42.25981002242659],[-71.14087017004502,42.25978040080368],[-71.14082901710778,42.25974940062515],[-71.14078809958475,42.25971771513557],[-71.14074718210264,42.25968602963125],[-71.14070649493397,42.25965434483266],[-71.14066787853606,42.25962403856462],[-71.14062949755024,42.25959304698759],[-71.14062221548816,42.25958714880542],[-71.14062131910291,42.25958642305497],[-71.14059548322382,42.25956549922767],[-71.14058406114081,42.25955595175236],[-71.14058351832311,42.25955549810008],[-71.14056170309071,42.25953726615811],[-71.14054585484648,42.25952280896436],[-71.14053047493232,42.25950698206992],[-71.14051602364151,42.25949047204814],[-71.14050296030554,42.2594732803375],[-71.14048739296,42.25944990649296],[-71.14047137944139,42.25942378711918],[-71.14046040631374,42.25940454385063],[-71.14044578197549,42.25937774279035],[-71.14043620191401,42.25935713181651],[-71.14042754536803,42.25933652373374],[-71.1404198123366,42.25931591854233],[-71.14041300671218,42.2592946302221],[-71.14040735097834,42.25927403153502],[-71.14040177432867,42.25923971244499],[-71.14039665433327,42.25920608081717],[-71.14039200120224,42.25917176461845],[-71.14038734686433,42.25913744841556],[-71.14038315549628,42.25910313366222],[-71.14037919440825,42.25906881872939],[-71.1403756950718,42.25903450614271],[-71.14037242600925,42.25900019427693],[-71.14036938843222,42.25896588313578],[-71.14036681261008,42.25893157344061],[-71.14036446437865,42.25889795049053],[-71.14036258058276,42.25886364296228],[-71.1403611558579,42.2588300229042],[-71.14035972602885,42.25879708886249],[-71.14036961748059,42.25876281821483],[-71.1403783101343,42.25866323296938],[-71.14039906162625,42.25858673690368],[-71.14043078447551,42.25852975779674],[-71.14048731818396,42.25846215443858],[-71.14054298950423,42.2584162277033],[-71.14060769885965,42.25836892205317],[-71.14064065828022,42.25834922029615],[-71.14064111431335,42.25834894713026],[-71.14091727320324,42.25818386052572],[-71.1411587053778,42.25802441948421],[-71.14116083182488,42.25802301445108],[-71.14128765548378,42.25793926009379],[-71.14160771606956,42.257727890129],[-71.14183485583803,42.25752430429309],[-71.14184812278054,42.25750782597352],[-71.14203760133965,42.25727247561667],[-71.14226592974701,42.25690547368328],[-71.14252171848874,42.25641781410345],[-71.14261472797328,42.25626814155194],[-71.14261477932988,42.2562680606843],[-71.14274200576726,42.25606332470132],[-71.14296332278154,42.25570717519772],[-71.1429660243778,42.25570282791998],[-71.14296703579853,42.25570119971129],[-71.14296800196352,42.25569964518691],[-71.14306251605603,42.25554754881297],[-71.14311442700505,42.25546401146403],[-71.1433543723264,42.25499962580603],[-71.14355299195158,42.25469907411684],[-71.14356652632112,42.25468032765266],[-71.14360891382518,42.25462162064919],[-71.14360925337675,42.25462114994288],[-71.14361249985507,42.25461665398961],[-71.14361674544566,42.25461077286592],[-71.14364606665913,42.25458088189127],[-71.14364753662187,42.25457938294299],[-71.14390188137862,42.25432009353506],[-71.14427113053372,42.25401458050016],[-71.14464110455572,42.25374405710265],[-71.14474340165157,42.25367841186563],[-71.14510079824505,42.25346486173702],[-71.14562486166237,42.25326781357615],[-71.14595325577244,42.25311996653082],[-71.14598464161094,42.25309589549846],[-71.145984704898,42.25309584707708],[-71.14608840043321,42.25301631863403],[-71.14609621887651,42.25301032238845],[-71.14610168229396,42.25300613209938],[-71.14613411956775,42.25300273799271],[-71.14664274673785,42.25575580889515],[-71.15231237699696,42.2583363660419],[-71.15859343458223,42.25514816784649],[-71.16347681676453,42.25908982289427],[-71.16485739062425,42.26018147664144],[-71.16894907858504,42.26343419833839],[-71.1713241789009,42.26534778519922],[-71.17132312803595,42.26569146555266],[-71.17137900775622,42.26590534292475],[-71.17154134715533,42.2661416227369],[-71.17169459301454,42.26627784909201],[-71.17186728063113,42.2663712340761],[-71.17207855750857,42.2664433080993],[-71.17238609998462,42.26650849899987],[-71.17279483553595,42.26654426746698],[-71.17315523603374,42.26661788067897],[-71.17360675530142,42.26674779469829],[-71.17390436391999,42.26687726458576],[-71.17415377244591,42.26702089644203],[-71.17431652177807,42.26717858511699],[-71.17444073989336,42.26734329562131],[-71.17452597458067,42.26760795419428],[-71.17458244874028,42.26785106979042],[-71.1746004883113,42.26808695505765],[-71.17460863358058,42.26837281145328],[-71.17450138756931,42.26865121854136],[-71.17430788855339,42.26885790595738],[-71.1739409236735,42.2691212824475],[-71.1736221080926,42.26937049061191],[-71.17321592168146,42.26977665372297],[-71.17302219372678,42.27002621607388],[-71.17296391607593,42.27013324007129],[-71.17295342965548,42.27029757291193],[-71.17299123199801,42.27043346407504],[-71.17315358292991,42.27066974588297],[-71.17341210872966,42.27091345478019],[-71.17352653380998,42.27111388116545],[-71.17358271265161,42.27141417260252],[-71.17370637364436,42.27169323126295],[-71.17385880280277,42.27198665565441],[-71.17404019863793,42.2722658589509],[-71.17432733628991,42.27261672242692],[-71.17460251705602,42.27300112711095],[-71.17478486012794,42.27340658738127],[-71.17486336772778,42.27373434912619],[-71.17488669724814,42.27387138788092],[-71.17486999915506,42.27400233982211],[-71.17485326427571,42.27413926425081],[-71.17477208411945,42.27432960202006],[-71.17461043657038,42.27457925858736],[-71.1745131861602,42.27478145711082],[-71.1744155741296,42.2750491739198],[-71.17443835807759,42.27529934749455],[-71.17450963667328,42.27547224162625],[-71.17460486917764,42.27566307904615],[-71.17476431807643,42.27584218726103],[-71.17497199901418,42.27600356528082],[-71.17544388350134,42.27624310666255],[-71.17593188819583,42.27646481610069],[-71.17636399965123,42.27664469555451],[-71.1767813414057,42.27679894886732],[-71.17692433141202,42.27683684058392],[-71.17710873937816,42.27685918513876],[-71.17746143948905,42.27686811408435],[-71.17855280781707,42.27671038813129],[-71.17913875526172,42.27659888577837],[-71.17976481039251,42.27648747336714],[-71.18040690025299,42.27637016558509],[-71.18124169636793,42.27620574890305],[-71.18249526569939,42.27596550980092],[-71.18277962532179,42.27587964612356],[-71.18289535660902,42.27585300441188],[-71.18304770414262,42.27585342493322],[-71.18315967477757,42.27591330225138],[-71.18325752989006,42.27599350622766],[-71.18528786825294,42.2794576692013],[-71.18529756775669,42.27947887211297]]]],"type":"MultiPolygon"} +},{ + "id": 1108712095, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":384886.571298, + "geom:bbox":"-71.0996142757,42.2771673833,-71.0915070746,42.2876680001", + "geom:latitude":42.282628, + "geom:longitude":-71.095045, + "iso:country":"US", + "lbl:latitude":42.287368, + "lbl:longitude":-71.086621, + "lbl:max_zoom":18.0, + "mps:latitude":42.282718, + "mps:longitude":-71.095112, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.282718, + "reversegeo:longitude":-71.095112, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85832891, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2d0370a261873a7dc2995a58ed499b8e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712095, + "neighbourhood_id":85832891, + "region_id":85688645 + } + ], + "wof:id":1108712095, + "wof:lastmodified":1566624142, + "wof:name":"Wellington Hill", + "wof:parent_id":85832891, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891439 + ], + "wof:tags":[] +}, + "bbox": [ + -71.09961427566081, + 42.27716738326333, + -71.09150707463259, + 42.28766800013997 +], + "geometry": {"coordinates":[[[[-71.09961427566081,42.28231942903949],[-71.09577940903037,42.28639221996045],[-71.09513466933203,42.28708251593652],[-71.09499381103491,42.28718159925833],[-71.09481490214966,42.28728054338335],[-71.09446357853626,42.28745715496762],[-71.09431693841377,42.28751753281766],[-71.09388700000179,42.28766800013997],[-71.09372299948225,42.28728199990969],[-71.09366300006067,42.28711900041797],[-71.09343399980622,42.28655700012523],[-71.09341499975064,42.2865100001071],[-71.0931959994855,42.285935000068],[-71.09293200021357,42.28532200035178],[-71.09285999969576,42.28512999959408],[-71.09286399967093,42.28495100025967],[-71.09274099968842,42.2848549997969],[-71.09235700039702,42.28462800021467],[-71.09196999955959,42.28444200016836],[-71.09154700023493,42.28427299997012],[-71.09150707463259,42.2842642888728],[-71.09281389304115,42.2801585061454],[-71.09311382443232,42.27928682104189],[-71.093365237321,42.27853924707749],[-71.09341373632229,42.27832079620944],[-71.09344350552554,42.27807708147807],[-71.09350176625874,42.27716738326333],[-71.09453915040052,42.27790178881456],[-71.09488365003749,42.27815722138183],[-71.09515616012169,42.278372228587],[-71.09550508056338,42.27868952586626],[-71.09580042683594,42.27898926253069],[-71.09646485748715,42.27963241048081],[-71.09695342461289,42.28011146167932],[-71.09727584054181,42.28046452708085],[-71.09750698231353,42.28076482563743],[-71.09772916275432,42.28104059300464],[-71.09788321036552,42.28123227610529],[-71.0981065588859,42.28144810348301],[-71.0983494062134,42.28164870497968],[-71.09867599678235,42.28181825935862],[-71.09915344241314,42.28206690328286],[-71.09961427566081,42.28231942903949]]]],"type":"MultiPolygon"} +},{ + "id": 1108712099, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000043, + "geom:area_square_m":389973.309184, + "geom:bbox":"-71.102519,42.34061,-71.092399,42.3479611499", + "geom:latitude":42.344509, + "geom:longitude":-71.097573, + "iso:country":"US", + "lbl:latitude":42.346643, + "lbl:longitude":-71.094917, + "lbl:max_zoom":18.0, + "mps:latitude":42.344456, + "mps:longitude":-71.097495, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.344456, + "reversegeo:longitude":-71.097495, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869235, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fe014f64c0808121ab5784e766b49781", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712099, + "neighbourhood_id":85869235, + "region_id":85688645 + } + ], + "wof:id":1108712099, + "wof:lastmodified":1566624141, + "wof:name":"West Fens", + "wof:parent_id":85869235, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891291 + ], + "wof:tags":[] +}, + "bbox": [ + -71.102519, + 42.34061, + -71.092399, + 42.34796114985993 +], + "geometry": {"coordinates":[[[[-71.09240200000001,42.347397],[-71.092473,42.34722],[-71.092516,42.347149],[-71.09254199999999,42.347105],[-71.09262,42.347012],[-71.092776,42.346878],[-71.09300399999999,42.346743],[-71.09309500000001,42.34667],[-71.093295,42.346511],[-71.094185,42.345701],[-71.094303,42.345577],[-71.094401,42.345325],[-71.09445100000001,42.345189],[-71.09457399999999,42.344854],[-71.094612,42.34469],[-71.094644,42.344549],[-71.094701,42.344246],[-71.094703,42.344039],[-71.094679,42.343802],[-71.094612,42.343513],[-71.094593,42.343271],[-71.094582,42.343129],[-71.094579,42.343087],[-71.094611,42.34294],[-71.09469199999999,42.342756],[-71.094842,42.342559],[-71.095072,42.342353],[-71.095308,42.342217],[-71.095488,42.342135],[-71.095625,42.342085],[-71.09589699999999,42.342012],[-71.096493,42.341843],[-71.097162,42.341667],[-71.097348,42.341585],[-71.097516,42.341465],[-71.09789499999999,42.341154],[-71.09818799999999,42.34092],[-71.098361,42.34081],[-71.09840800000001,42.340791],[-71.098634,42.3407],[-71.098876,42.340628],[-71.099062,42.34061],[-71.09926,42.340629],[-71.099536,42.340704],[-71.099795,42.340804],[-71.099993,42.340881],[-71.10017999999999,42.34097],[-71.100308,42.341046],[-71.100415,42.341131],[-71.100452,42.341161],[-71.100767,42.341441],[-71.10082,42.341493],[-71.101071,42.341738],[-71.101823,42.342503],[-71.102068,42.342752],[-71.102351,42.343056],[-71.10247200000001,42.343194],[-71.102519,42.343375],[-71.102422,42.343518],[-71.10189699999999,42.344013],[-71.10182399999999,42.344082],[-71.101668,42.344221],[-71.100982,42.344881],[-71.100804,42.345036],[-71.100595,42.345223],[-71.100318,42.34547],[-71.09970199999999,42.346067],[-71.099501,42.346273],[-71.09934699999999,42.346439],[-71.098955,42.346815],[-71.098575,42.347173],[-71.09816600000001,42.347599],[-71.09801299999999,42.347754],[-71.09783384038624,42.34789274423079],[-71.09771000000001,42.347891],[-71.096510630312,42.3478982251186],[-71.09571800000001,42.347903],[-71.09316679125382,42.34794779125382],[-71.09288847475229,42.34795573906727],[-71.09254810775532,42.34795952862996],[-71.092399,42.34796114985993],[-71.09240200000001,42.347629],[-71.09240200000001,42.347498],[-71.09240200000001,42.347397]]]],"type":"MultiPolygon"} +},{ + "id": 1108712101, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00003, + "geom:area_square_m":271292.935807, + "geom:bbox":"-71.1192584169,42.288498,-71.113113,42.296690711", + "geom:latitude":42.292, + "geom:longitude":-71.116386, + "iso:country":"US", + "lbl:latitude":42.288253, + "lbl:longitude":-71.116408, + "lbl:max_zoom":18.0, + "mps:latitude":42.291907, + "mps:longitude":-71.116635, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Woodbourne" + ], + "name:deu_x_preferred":[ + "Woodbourne" + ], + "name:eng_x_variant":[ + "Mt Hope", + "Mt. Hope" + ], + "name:spa_x_preferred":[ + "Woodbourne" + ], + "reversegeo:latitude":42.291907, + "reversegeo:longitude":-71.116635, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0b4044e02313021231538a2b84f5a38e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712101, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712101, + "wof:lastmodified":1566624129, + "wof:name":"Woodbourne", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85835509 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11925841685623, + 42.288498, + -71.113113, + 42.2966907110221 +], + "geometry": {"coordinates":[[[[-71.11734101759714,42.2966907110221],[-71.11621599999999,42.296068],[-71.11602600000001,42.295933],[-71.115956,42.295838],[-71.115916,42.295695],[-71.11585599999999,42.295411],[-71.11582900000001,42.29522],[-71.11576100000001,42.295054],[-71.11563700000001,42.294868],[-71.115368,42.294572],[-71.115092,42.294401],[-71.114234,42.293896],[-71.114,42.29374],[-71.113969,42.293714],[-71.113758,42.293538],[-71.1134,42.293118],[-71.113501,42.293],[-71.113632,42.292824],[-71.1139,42.292482],[-71.11422,42.292022],[-71.114329,42.291834],[-71.11443199999999,42.291572],[-71.114476,42.291346],[-71.114484,42.291188],[-71.11444299999999,42.290818],[-71.114402,42.290649],[-71.11419600000001,42.290039],[-71.11414000000001,42.289803],[-71.113983,42.28948],[-71.11384,42.289308],[-71.113769,42.289238],[-71.113744,42.289222],[-71.11351000000001,42.289066],[-71.113113,42.288849],[-71.113169,42.288792],[-71.113246,42.288773],[-71.11354300000001,42.288748],[-71.113812,42.288727],[-71.11421199999999,42.288688],[-71.114897,42.288603],[-71.11540100000001,42.288553],[-71.116382,42.288498],[-71.11646624391204,42.28850083852296],[-71.11653511374726,42.288515341084],[-71.11659998488074,42.28854632171865],[-71.1168955746183,42.28872524692894],[-71.11925841685623,42.29017623098452],[-71.11925057342722,42.29025374968887],[-71.11924813820004,42.29027781475509],[-71.1191800739973,42.29063739606367],[-71.11914035396993,42.29084723427226],[-71.11909314369579,42.29110402080005],[-71.11898428790089,42.29169609078937],[-71.11853577805837,42.2930872390178],[-71.11843378759292,42.29331874110119],[-71.1182781134814,42.29367209949574],[-71.11816416457683,42.29393074074068],[-71.11815322756105,42.29395370345299],[-71.11793282882708,42.29441641990386],[-71.11791738411725,42.29444884685878],[-71.1179168240552,42.29445002258841],[-71.11777394990814,42.29473045440426],[-71.11733468785374,42.29551203601117],[-71.11775582669665,42.29570521797087],[-71.11801013917302,42.29583161328299],[-71.11810349881749,42.29588178584321],[-71.11734101759714,42.2966907110221]]]],"type":"MultiPolygon"} +},{ + "id": 1108712103, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.0560630735,42.2827928126,-71.0560630735,42.2827928126", + "geom:latitude":42.282793, + "geom:longitude":-71.056063, + "iso:country":"US", + "lbl:latitude":42.282793, + "lbl:longitude":-71.056063, + "lbl:max_zoom":18.0, + "mps:latitude":42.282793, + "mps:longitude":-71.056063, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.282793, + "reversegeo:longitude":-71.056063, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"edae71ce30059e9b5835224f770c3217", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712103, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108712103, + "wof:lastmodified":1613672362, + "wof:name":"Adams Village", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780911 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05606307350565, + 42.28279281255512, + -71.05606307350565, + 42.28279281255512 +], + "geometry": {"coordinates":[-71.05606307350565,42.28279281255512],"type":"Point"} +},{ + "id": 1108712105, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":64669.270665, + "geom:bbox":"-71.0583202905,42.3279996425,-71.0551298793,42.3308983091", + "geom:latitude":42.329524, + "geom:longitude":-71.0569, + "iso:country":"US", + "lbl:latitude":42.329481, + "lbl:longitude":-71.05677, + "lbl:max_zoom":18.0, + "mps:latitude":42.329481, + "mps:longitude":-71.05677, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.329481, + "reversegeo:longitude":-71.05677, + "src:geom":"mz", + "wof:belongsto":[ + 85849485, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"16ebb0b1bcf2fc1757857c996c3ffda4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712105, + "neighbourhood_id":85849485, + "region_id":85688645 + } + ], + "wof:id":1108712105, + "wof:lastmodified":1566624129, + "wof:name":"Andrew Square", + "wof:parent_id":85849485, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780923 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05832029050572, + 42.32799964246156, + -71.05512987929532, + 42.33089830910151 +], + "geometry": {"coordinates":[[[[-71.05522113622234,42.32854931816298],[-71.05686379715138,42.32853052197046],[-71.05686429977932,42.32799964246156],[-71.05750715343812,42.32800102024817],[-71.05792918158761,42.32811859756318],[-71.05781084035782,42.3283545887964],[-71.05822758333075,42.32848957284087],[-71.05825690696338,42.32850822703781],[-71.05827346305868,42.32853705902495],[-71.05828449144622,42.32857105666139],[-71.05829127113196,42.3286286742558],[-71.05832029050572,42.33089233368904],[-71.05689479164347,42.33089830910151],[-71.05690071839008,42.33042604600672],[-71.05651187378417,42.33043781496892],[-71.05560934069761,42.33087116318248],[-71.05516600475083,42.330399708778],[-71.05584524003793,42.33008785438699],[-71.05512987929532,42.32928286737109],[-71.05522113622234,42.32854931816298]]]],"type":"MultiPolygon"} +},{ + "id": 1108712107, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1048285544,42.3341054507,-71.1048285544,42.3341054507", + "geom:latitude":42.334105, + "geom:longitude":-71.104829, + "iso:country":"US", + "lbl:latitude":42.334105, + "lbl:longitude":-71.104829, + "lbl:max_zoom":18.0, + "mps:latitude":42.334105, + "mps:longitude":-71.104829, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.334105, + "reversegeo:longitude":-71.104829, + "src:geom":"mz", + "wof:belongsto":[ + 85869493, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"94b021e6a7fc6f6664b5889266b49983", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712107, + "neighbourhood_id":85869493, + "region_id":85688645 + } + ], + "wof:id":1108712107, + "wof:lastmodified":1613672360, + "wof:name":"Brigham Circle", + "wof:parent_id":85869493, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780929 + ], + "wof:tags":[] +}, + "bbox": [ + -71.10482855435414, + 42.33410545068413, + -71.10482855435414, + 42.33410545068413 +], + "geometry": {"coordinates":[-71.10482855435414,42.33410545068413],"type":"Point"} +},{ + "id": 1108712109, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":193442.42478, + "geom:bbox":"-71.106998,42.3094407456,-71.100468001,42.3166299192", + "geom:latitude":42.312748, + "geom:longitude":-71.103787, + "iso:country":"US", + "lbl:latitude":42.31305, + "lbl:longitude":-71.103514, + "lbl:max_zoom":18.0, + "mps:latitude":42.31305, + "mps:longitude":-71.103514, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ara_x_preferred":[ + "\u0628\u0631\u0648\u0643\u0633\u0627\u064a\u062f" + ], + "name:deu_x_preferred":[ + "Brookside" + ], + "name:fra_x_preferred":[ + "Brookside" + ], + "name:ita_x_preferred":[ + "Brookside" + ], + "name:nld_x_preferred":[ + "Brookside" + ], + "name:pol_x_preferred":[ + "Brookside" + ], + "name:rus_x_preferred":[ + "\u0411\u0440\u0443\u043a\u0441\u0430\u0439\u0434" + ], + "name:zho_x_preferred":[ + "\u5e03\u9b6f\u514b\u8cfd\u5fb7" + ], + "reversegeo:latitude":42.31305, + "reversegeo:longitude":-71.103514, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e69f581751b17588515aa71902ac2dea", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712109, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712109, + "wof:lastmodified":1566624129, + "wof:name":"Brookside", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780931 + ], + "wof:tags":[] +}, + "bbox": [ + -71.106998, + 42.30944074561463, + -71.1004680009789, + 42.31662991917231 +], + "geometry": {"coordinates":[[[[-71.1031055340691,42.31662991917231],[-71.10301837012122,42.3165117819468],[-71.10298028467729,42.31644017677468],[-71.10295285258059,42.31637097360691],[-71.10289639042442,42.31619636307301],[-71.1028397327749,42.31604365921944],[-71.10277008956024,42.31588666160526],[-71.10266903268345,42.31573104562744],[-71.10246715026167,42.3154762111382],[-71.10240156711465,42.31539545610066],[-71.10205205895369,42.31499997225162],[-71.10158351518849,42.31442216906601],[-71.10114219150719,42.3139548985939],[-71.10106103556889,42.31389520110827],[-71.10096569192429,42.31383707444582],[-71.10046800097891,42.31357067980343],[-71.10156137639785,42.31247079909109],[-71.10457350848827,42.30944074561463],[-71.10489,42.309558],[-71.105408,42.309787],[-71.10565200000001,42.309886],[-71.106109,42.310091],[-71.106174,42.31012],[-71.106438,42.310234],[-71.106998,42.310463],[-71.106858,42.310678],[-71.106185,42.311669],[-71.105991,42.311978],[-71.10576399999999,42.312371],[-71.10562400000001,42.312624],[-71.105559,42.312747],[-71.105537,42.312793],[-71.10547699999999,42.312921],[-71.105401,42.313127],[-71.105304,42.313353],[-71.105222,42.313568],[-71.10517400000001,42.313722],[-71.10506599999999,42.31392],[-71.104806,42.314443],[-71.104682,42.314688],[-71.10463900000001,42.314808],[-71.104412,42.315188],[-71.104283,42.315351],[-71.10403599999999,42.315636],[-71.10360900000001,42.31609],[-71.103499,42.316202],[-71.10312500000001,42.316614],[-71.1031055340691,42.31662991917231]]]],"type":"MultiPolygon"} +},{ + "id": 1108721785, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":80760.304124, + "geom:bbox":"-75.2264045347,39.9567968052,-75.2235884601,39.9617064316", + "geom:latitude":39.959252, + "geom:longitude":-75.224998, + "iso:country":"US", + "lbl:latitude":39.959718, + "lbl:longitude":-75.224764, + "lbl:max_zoom":18.0, + "mps:latitude":39.959251, + "mps:longitude":-75.224999, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "52nd Street" + ], + "name:eng_x_variant":[ + "52nd St Discount Shopping", + "The Strip" + ], + "reversegeo:latitude":39.959251, + "reversegeo:longitude":-75.224999, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85854345, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"e459648e9395bf448bee9534b110b3b2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108721785, + "neighbourhood_id":85854345, + "region_id":85688481 + } + ], + "wof:id":1108721785, + "wof:lastmodified":1566623925, + "wof:name":"52nd St Discount Shopping", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893313 + ], + "wof:tags":[] +}, + "bbox": [ + -75.2264045346729, + 39.95679680521155, + -75.2235884601045, + 39.9617064315544 +], + "geometry": {"coordinates":[[[-75.22358846010449,39.96147339977576],[-75.22463952451049,39.95679680521155],[-75.22640453467289,39.95702319180774],[-75.22536215748701,39.9617064315544],[-75.22358846010449,39.96147339977576]]],"type":"Polygon"} +},{ + "id": 1108712111, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":102043.549073, + "geom:bbox":"-71.0634329296,42.363036142,-71.0578105256,42.3668412935", + "geom:latitude":42.364624, + "geom:longitude":-71.06023, + "iso:country":"US", + "lbl:latitude":42.364622, + "lbl:longitude":-71.059955, + "lbl:max_zoom":18.0, + "mps:latitude":42.364622, + "mps:longitude":-71.059955, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.364622, + "reversegeo:longitude":-71.059955, + "src:geom":"mz", + "wof:belongsto":[ + 85869769, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3fe4059affa5fcfa9436d33f2c7e40eb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712111, + "neighbourhood_id":85869769, + "region_id":85688645 + } + ], + "wof:id":1108712111, + "wof:lastmodified":1566624128, + "wof:name":"Bulfinch Triangle", + "wof:parent_id":85869769, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780921 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06343292960598, + 42.36303614199233, + -71.0578105255587, + 42.36684129351843 +], + "geometry": {"coordinates":[[[[-71.06343292960598,42.36396435970752],[-71.06333318035198,42.36416400824159],[-71.06327566092462,42.36429473421287],[-71.06323919897805,42.36435402020739],[-71.063191996303,42.36440977306759],[-71.06313702313994,42.36444979719526],[-71.06304035417634,42.36449866672805],[-71.06169126215283,42.36524119024486],[-71.05994476317667,42.36616150108259],[-71.05854032758326,42.36684129351843],[-71.05838421538981,42.36517684293747],[-71.05832813272752,42.36440301975271],[-71.05815995879901,42.36433513481055],[-71.05788782506939,42.36404526900007],[-71.05781052555869,42.3639605318834],[-71.05920389916847,42.36318766112617],[-71.05928742307567,42.36316479694611],[-71.05949099959501,42.36310399972406],[-71.05960600011919,42.36307000044481],[-71.05974932194322,42.36303614199233],[-71.06343292960598,42.36396435970752]]]],"type":"MultiPolygon"} +},{ + "id": 1108721787, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000137, + "geom:area_square_m":1294645.456238, + "geom:bbox":"-75.2515120004,39.939718,-75.2268073648,39.9503587669", + "geom:latitude":39.945718, + "geom:longitude":-75.239916, + "iso:country":"US", + "lbl:latitude":39.945856, + "lbl:longitude":-75.239813, + "lbl:max_zoom":18.0, + "mps:latitude":39.945656, + "mps:longitude":-75.240759, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Angora" + ], + "name:fra_x_preferred":[ + "Angora" + ], + "reversegeo:latitude":39.945656, + "reversegeo:longitude":-75.240759, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85811587, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4763845" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"717e6a1534fab81e908c2e7ec6c2b64a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108721787, + "neighbourhood_id":85811587, + "region_id":85688481 + } + ], + "wof:id":1108721787, + "wof:lastmodified":1566623925, + "wof:name":"Angora", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85803155 + ], + "wof:tags":[] +}, + "bbox": [ + -75.25151200039994, + 39.939718, + -75.2268073647732, + 39.95035876694286 +], + "geometry": {"coordinates":[[[-75.22680736477319,39.94726619389012],[-75.226833,39.947248],[-75.228202,39.94627],[-75.228342,39.946167],[-75.228686,39.945913],[-75.229574,39.945303],[-75.230104,39.944932],[-75.23050000000001,39.944656],[-75.230947,39.944336],[-75.232319,39.94337],[-75.233074,39.942849],[-75.233829,39.942316],[-75.235033,39.941474],[-75.23660599999999,39.940365],[-75.23675900000001,39.940262],[-75.236929,39.940184],[-75.23708000000001,39.940154],[-75.237199,39.940153],[-75.237585,39.940186],[-75.237736,39.940174],[-75.23787,39.940144],[-75.238079,39.940063],[-75.238451,39.939828],[-75.238731,39.939737],[-75.239,39.939718],[-75.239205,39.939735],[-75.23943800000001,39.939819],[-75.23984799999999,39.94001],[-75.23989974939012,39.9400400114484],[-75.23987899976576,39.94007200001467],[-75.239836000129,39.94012100016172],[-75.23979600018512,39.94016499965439],[-75.2396359995486,39.94030199974664],[-75.23960190610967,39.94034266142697],[-75.23952700047974,39.94043199980653],[-75.23948279806937,39.94049906546913],[-75.23941100041063,39.94060799995736],[-75.23939800036804,39.94074399978904],[-75.23943099942363,39.9408900002132],[-75.23946099984933,39.94102699982961],[-75.23949399952475,39.94115999979709],[-75.23956099956845,39.94129800023357],[-75.23963100039597,39.94142099987755],[-75.23973500007958,39.94159299991549],[-75.23984500053108,39.94172700020142],[-75.23998499960663,39.94189000032284],[-75.24007399943977,39.94199500001092],[-75.24008834070061,39.94201240118737],[-75.2401489996649,39.94208599997799],[-75.24025100001468,39.94214000031783],[-75.24036699968883,39.94217099995944],[-75.24051899995759,39.94218800002373],[-75.24056504951038,39.94219396929525],[-75.24069816093005,39.94221122439892],[-75.24078899959818,39.94222300005512],[-75.24095299953454,39.94224500037463],[-75.24117899995719,39.94226400030526],[-75.24140000039425,39.94227300022596],[-75.24144600057519,39.94227399998222],[-75.24158000007611,39.94225099996498],[-75.24182300043393,39.94223399999613],[-75.24202900027764,39.94223000000994],[-75.24228300054736,39.94223099997137],[-75.24259899942615,39.94224700025779],[-75.24295299997307,39.94225300036067],[-75.2430259998775,39.94221099957743],[-75.24311299985487,39.94223200034604],[-75.24320399986048,39.94227599982334],[-75.24334099951828,39.94232599962213],[-75.24336399952284,39.94235499977404],[-75.24354200024649,39.94230600045406],[-75.24342400047502,39.94240499977634],[-75.24353100041826,39.94244200013657],[-75.2437607811037,39.94246777644177],[-75.24384300003769,39.9424769998134],[-75.24406800042087,39.9425009997082],[-75.24440999965474,39.94255099975733],[-75.24465900004515,39.94258899980242],[-75.24501200036539,39.94259699979614],[-75.24522600009396,39.94261599991316],[-75.24540799991655,39.94261000021566],[-75.24546881815165,39.94260960282499],[-75.24556100032102,39.94260900004634],[-75.24573999943026,39.94260400017772],[-75.24588500020532,39.94259700000436],[-75.24605099961525,39.94260600017552],[-75.24619000057312,39.94261299980126],[-75.24634799952436,39.94264500021868],[-75.24646899993216,39.9426670000418],[-75.24656599953998,39.94270199979205],[-75.2466609997503,39.94276500010148],[-75.24674299997393,39.94285599965625],[-75.24682200055761,39.9429699999824],[-75.24687200000974,39.94313100010437],[-75.24696399968255,39.94326500040702],[-75.24697799995707,39.94329199961307],[-75.24698382153242,39.94330377828034],[-75.24702099947353,39.9433789997975],[-75.24702800017681,39.94341400023137],[-75.24704100056979,39.94347800027104],[-75.24704800026576,39.94352999969698],[-75.24705100033562,39.94355800041892],[-75.24707599988942,39.94361600039617],[-75.2471059998086,39.94368100026563],[-75.24719099948592,39.943866999729],[-75.24720800052212,39.94390399961663],[-75.24722131516359,39.94391901414954],[-75.24730199997215,39.94400999987092],[-75.24737700012386,39.94413800038604],[-75.24739700009175,39.94420799962909],[-75.2474210004379,39.94428999996283],[-75.24746599979127,39.94435000031455],[-75.24750799944641,39.94440499956889],[-75.24763500016842,39.94452299992694],[-75.24764700025105,39.94451100012223],[-75.24776699948305,39.94463699975437],[-75.24790700030668,39.9447769999875],[-75.2480999999097,39.94492299977686],[-75.24817600046535,39.94501000028539],[-75.24822200004822,39.94509999992376],[-75.24824000047492,39.94522799996427],[-75.24832700022618,39.94534199970722],[-75.24842100024371,39.94545399957629],[-75.24846999992693,39.94548500002922],[-75.24850699960176,39.94551000034953],[-75.2485690005759,39.9455509996813],[-75.24871300037667,39.94566799995441],[-75.2489020005421,39.94582799988942],[-75.24908399959952,39.9459869999175],[-75.24924900052112,39.94615199996639],[-75.2494309995421,39.94631200040688],[-75.24949700018662,39.94635600020555],[-75.24955800050482,39.94638999988313],[-75.24961800008369,39.94640999973553],[-75.24971400030525,39.94645099981305],[-75.24981399982128,39.94653300008368],[-75.24992100013836,39.94662599987846],[-75.24996999966235,39.94670700015318],[-75.24999961575944,39.9467527303205],[-75.25003800032768,39.94681199976444],[-75.25007925420317,39.9468934771861],[-75.25011800037183,39.94697000034981],[-75.25015600014333,39.94711200026909],[-75.25019799965081,39.94722900014359],[-75.25020499948366,39.94724400011942],[-75.25021700055748,39.9473170004591],[-75.25022999988771,39.94738599962643],[-75.25023499983985,39.94740900006526],[-75.25027100044274,39.94757500021311],[-75.25030799949528,39.94771799998208],[-75.25033799994614,39.94784599979707],[-75.25036500051787,39.94797800040306],[-75.25041500014855,39.94809200031575],[-75.25047299986186,39.94817799963833],[-75.25051989536584,39.94821924531974],[-75.250556000285,39.94825099998305],[-75.25072100006385,39.9483770000987],[-75.25065800050925,39.94844500015171],[-75.25099200016822,39.94873699994138],[-75.25112499975332,39.94886599996015],[-75.2512509999444,39.94897200002467],[-75.25137600001271,39.94906500028863],[-75.25144199951444,39.94913900004055],[-75.25149600051911,39.94925099988195],[-75.25151200039994,39.94945500017243],[-75.25146800030053,39.94965499966039],[-75.25136799970701,39.94985600030743],[-75.251301295014,39.94994788907699],[-75.25126999945869,39.94999100003611],[-75.25120899944731,39.95014899977281],[-75.25116500008193,39.95028900041646],[-75.25114732588113,39.95035876694286],[-75.247333,39.949905],[-75.245356,39.949658],[-75.243381,39.949411],[-75.241405,39.949171],[-75.23943,39.948931],[-75.238769,39.948844],[-75.238195,39.948767],[-75.237481,39.948686],[-75.236783,39.948599],[-75.235479,39.948433],[-75.23477099999999,39.948344],[-75.234139,39.948262],[-75.233413,39.948175],[-75.231936,39.947991],[-75.2312581098372,39.9479207244183],[-75.22954597233695,39.9478497323861],[-75.2294324058973,39.94784502232308],[-75.22838827839767,39.94780171444024],[-75.22761796626396,39.94779556319838],[-75.22741872373929,39.94781301836185],[-75.22738132859816,39.9477706798229],[-75.22680736477319,39.94726619389012]]],"type":"Polygon"} +},{ + "id": 1108721789, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000174, + "geom:area_square_m":1644822.432105, + "geom:bbox":"-75.1684934508,39.9377299113,-75.1526942794,39.9972465234", + "geom:latitude":39.967217, + "geom:longitude":-75.160676, + "iso:country":"US", + "lbl:latitude":39.966295, + "lbl:longitude":-75.160605, + "lbl:max_zoom":18.0, + "mps:latitude":39.967333, + "mps:longitude":-75.160647, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Avenue of the Arts" + ], + "name:eng_x_variant":[ + "Avenue Of The Arts - North" + ], + "name:nld_x_preferred":[ + "Avenue of the Arts" + ], + "reversegeo:latitude":39.967333, + "reversegeo:longitude":-75.160647, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85820539, + 102191575, + 1108721811, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4828224" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"02f439e89548974fa66c47ccb1fd9a7b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721811, + "microhood_id":1108721789, + "neighbourhood_id":85820539, + "region_id":85688481 + } + ], + "wof:id":1108721789, + "wof:lastmodified":1566623925, + "wof:name":"Avenue of the Arts", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871447, + 85893317, + 85893315 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16849345076378, + 39.93772991130973, + -75.15269427942046, + 39.9972465233544 +], + "geometry": {"coordinates":[[[-75.15269427942046,39.9972465233544],[-75.15343574196783,39.99382717461239],[-75.15442606711981,39.98926016435045],[-75.16201150879301,39.95427893632347],[-75.16243642547423,39.95219237312313],[-75.16311335562817,39.94919762965049],[-75.16393414951142,39.94541243437379],[-75.16560005245117,39.93772991130973],[-75.16687169126064,39.93788948161849],[-75.16844686336158,39.93808617728254],[-75.16849345076378,39.93809163499039],[-75.15589177498799,39.99604469923337],[-75.15550441467236,39.9961793438859],[-75.15399505718301,39.99678238011308],[-75.15389835242836,39.99681652481421],[-75.15341832793875,39.99697608878618],[-75.15269427942046,39.9972465233544]]],"type":"Polygon"} +},{ + "id": 1108712113, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000103, + "geom:area_square_m":943492.412778, + "geom:bbox":"-71.0986475468,42.318825,-71.0851259585,42.3314564988", + "geom:latitude":42.325887, + "geom:longitude":-71.093226, + "iso:country":"US", + "lbl:latitude":42.326325, + "lbl:longitude":-71.093353, + "lbl:max_zoom":18.0, + "mps:latitude":42.326325, + "mps:longitude":-71.093353, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Fort Hill" + ], + "name:swe_x_preferred":[ + "Fort Hill" + ], + "reversegeo:latitude":42.326325, + "reversegeo:longitude":-71.093353, + "src:geom":"mz", + "wof:belongsto":[ + 85846283, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"56e4f043c2aed5ff441d4ed508c5e914", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712113, + "neighbourhood_id":85846283, + "region_id":85688645 + } + ], + "wof:id":1108712113, + "wof:lastmodified":1566624128, + "wof:name":"Fort Hill", + "wof:parent_id":85846283, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780927 + ], + "wof:tags":[] +}, + "bbox": [ + -71.0986475467844, + 42.318825, + -71.08512595849598, + 42.33145649884013 +], + "geometry": {"coordinates":[[[[-71.08512595849598,42.32877034965647],[-71.08569670873629,42.32861778155221],[-71.08616000000001,42.328461],[-71.08637299999999,42.328372],[-71.086583,42.328268],[-71.086741,42.328148],[-71.08678999999999,42.328098],[-71.086853,42.328035],[-71.086939,42.327891],[-71.08695899999999,42.327857],[-71.086996,42.327782],[-71.087262,42.327159],[-71.08739199999999,42.326875],[-71.087695,42.326184],[-71.08789,42.32571],[-71.087964,42.325553],[-71.088134,42.325194],[-71.08821399999999,42.324993],[-71.088301,42.324819],[-71.08843,42.324619],[-71.088537,42.324482],[-71.088691,42.32432],[-71.08878799999999,42.324218],[-71.089017,42.323965],[-71.08931,42.323654],[-71.0896,42.323394],[-71.08983499999999,42.323228],[-71.091084,42.322318],[-71.091498,42.322007],[-71.09194100000001,42.321692],[-71.092089,42.321576],[-71.092476,42.321307],[-71.092647,42.321182],[-71.093146,42.3208],[-71.09359000000001,42.320456],[-71.09404000000001,42.320071],[-71.09435499999999,42.319756],[-71.094478,42.319637],[-71.09504099999999,42.319094],[-71.095305,42.318825],[-71.095446,42.318986],[-71.09567199999999,42.319197],[-71.095743,42.31925],[-71.09589200000001,42.319314],[-71.095941,42.31933],[-71.09631899999999,42.319424],[-71.09651599999999,42.31947],[-71.096779,42.319507],[-71.096901,42.319516],[-71.096964,42.319514],[-71.097489,42.319484],[-71.097915,42.319509],[-71.098299,42.319556],[-71.09836437199196,42.31956525621126],[-71.09838211928324,42.32059771967281],[-71.09838234599222,42.32060558274949],[-71.09840405322532,42.3213549046301],[-71.09840446019217,42.32136896687185],[-71.09841610926561,42.32157200356489],[-71.09843295608408,42.3219283373525],[-71.09844546618802,42.32213279499165],[-71.09846357017001,42.3223101273495],[-71.09846770024889,42.32239019606322],[-71.09846794875016,42.3223950090113],[-71.09847723944705,42.3225751473991],[-71.09847725992154,42.32257555350395],[-71.09847740037438,42.32257827468781],[-71.0984780726733,42.32258723317662],[-71.09852269784969,42.32318182897117],[-71.09852270347018,42.32318189921381],[-71.09853348290591,42.32332552498345],[-71.09853501657311,42.32334213808979],[-71.09856840705558,42.32370395738258],[-71.09856914610225,42.32371195998812],[-71.09858547770324,42.32392172821582],[-71.09864754678441,42.32481259891662],[-71.09857784120592,42.32525897929157],[-71.09830556545586,42.3263043211883],[-71.09796321697722,42.32726663778192],[-71.09759066992871,42.32800970678584],[-71.09718451819749,42.32877746885577],[-71.09681242851839,42.32944609952846],[-71.09633969583109,42.3301640006808],[-71.09586727051013,42.33083227578553],[-71.09530475585598,42.33145649884013],[-71.09391801928241,42.33127921282102],[-71.09322302102466,42.33122872828667],[-71.0922012913751,42.33120936113467],[-71.09095695140357,42.33117556617311],[-71.09010177427385,42.33103980070629],[-71.08934603262844,42.33087785996086],[-71.08901835730533,42.33081377299222],[-71.08866845175606,42.33071448493906],[-71.08833072904596,42.33059517312499],[-71.08813655457244,42.33050819497585],[-71.0871304493611,42.32996894024593],[-71.08660904461505,42.32968552146716],[-71.08617684183918,42.32944380547967],[-71.08512595849598,42.32877034965647]]]],"type":"MultiPolygon"} +},{ + "id": 1108712119, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":218893.706535, + "geom:bbox":"-71.0811307601,42.296539542,-71.071153352,42.3058186227", + "geom:latitude":42.300717, + "geom:longitude":-71.075759, + "iso:country":"US", + "lbl:latitude":42.300866, + "lbl:longitude":-71.075759, + "lbl:max_zoom":18.0, + "mps:latitude":42.300866, + "mps:longitude":-71.075759, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ara_x_preferred":[ + "\u0627\u0644\u0632\u0648\u0627\u064a\u0627 \u0627\u0644\u0623\u0631\u0628\u0639" + ], + "name:ces_x_preferred":[ + "\u010cty\u0159i rohy" + ], + "name:dan_x_preferred":[ + "Four Corners" + ], + "name:epo_x_preferred":[ + "Kvar Anguloj" + ], + "name:fin_x_preferred":[ + "Four Corners" + ], + "name:fra_x_preferred":[ + "Four Corners" + ], + "name:heb_x_preferred":[ + "\u05d0\u05e8\u05d1\u05e2 \u05d4\u05e4\u05d9\u05e0\u05d5\u05ea" + ], + "name:hun_x_preferred":[ + "N\u00e9gysarok r\u00e9gi\u00f3" + ], + "name:hye_x_preferred":[ + "\u0549\u0578\u0580\u057d \u0561\u0576\u056f\u0575\u0578\u0582\u0576" + ], + "name:ita_x_preferred":[ + "Four Corners" + ], + "name:jpn_x_preferred":[ + "\u30d5\u30a9\u30fc\u30fb\u30b3\u30fc\u30ca\u30fc\u30ba" + ], + "name:kor_x_preferred":[ + "\ud3ec \ucf54\ub108\uc2a4" + ], + "name:lit_x_preferred":[ + "Keturi Kampai" + ], + "name:nor_x_preferred":[ + "Hj\u00f8rnestatene" + ], + "name:pol_x_preferred":[ + "Four Corners" + ], + "name:por_x_preferred":[ + "Quatro Cantos" + ], + "name:ron_x_preferred":[ + "Four Corners" + ], + "name:rus_x_preferred":[ + "\u0427\u0435\u0442\u044b\u0440\u0435 \u0423\u0433\u043b\u0430" + ], + "name:slk_x_preferred":[ + "\u0160tyri rohy" + ], + "name:spa_x_preferred":[ + "Cuatro Esquinas" + ], + "name:ukr_x_preferred":[ + "\u0427\u043e\u0442\u0438\u0440\u0438 \u043a\u0443\u0442\u0438" + ], + "name:urd_x_preferred":[ + "\u0686\u0627\u0631 \u06a9\u0648\u0646\u06d2" + ], + "name:vie_x_preferred":[ + "Four Corners" + ], + "name:zho_x_preferred":[ + "\u56db\u89d2\u843d" + ], + "reversegeo:latitude":42.300866, + "reversegeo:longitude":-71.075759, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8443dd5a273b72ac7b0b6ffc57a29cb6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712119, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108712119, + "wof:lastmodified":1566624128, + "wof:name":"Four Corners", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780917 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08113076007517, + 42.2965395419716, + -71.07115335203927, + 42.30581862271388 +], + "geometry": {"coordinates":[[[[-71.07617891992381,42.30226622045275],[-71.0746841246284,42.30133120551942],[-71.07373400623894,42.30065971213816],[-71.07318876328301,42.3001676701409],[-71.07276786665398,42.29975671292251],[-71.072396524486,42.29933302565597],[-71.07201146231192,42.29874449790199],[-71.07171481780509,42.29823446307969],[-71.071415546279,42.29753671476998],[-71.07115335203927,42.29675294470228],[-71.07229126965743,42.29665351569936],[-71.07334160707619,42.29657285976409],[-71.07395756685699,42.2965395419716],[-71.07468574056419,42.2981872184663],[-71.07502689895118,42.298878533242],[-71.07544001739014,42.29940635303727],[-71.07588139999247,42.29985193184878],[-71.07657215812617,42.30036925863037],[-71.07789312635451,42.30133474124687],[-71.07841593251275,42.3017670613734],[-71.07889885969843,42.3022474806611],[-71.07982352208967,42.30342246589545],[-71.08113076007517,42.30516005376773],[-71.08011077912965,42.30581862271388],[-71.07845795198995,42.30432530706828],[-71.07734638316627,42.30318966803369],[-71.07683037463194,42.30271298546501],[-71.07617891992381,42.30226622045275]]]],"type":"MultiPolygon"} +},{ + "id": 1108712121, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000033, + "geom:area_square_m":305385.206055, + "geom:bbox":"-71.1055488751,42.319169178,-71.0983055655,42.3264119826", + "geom:latitude":42.323543, + "geom:longitude":-71.102272, + "iso:country":"US", + "lbl:latitude":42.323627, + "lbl:longitude":-71.102344, + "lbl:max_zoom":18.0, + "mps:latitude":42.323627, + "mps:longitude":-71.102344, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:ceb_x_preferred":[ + "Jackson Square" + ], + "name:fra_x_preferred":[ + "Jackson Square" + ], + "reversegeo:latitude":42.323627, + "reversegeo:longitude":-71.102344, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cbc0a944fa3c317a97361befe2527fa1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712121, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712121, + "wof:lastmodified":1566624137, + "wof:name":"Jackson Square", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780935 + ], + "wof:tags":[] +}, + "bbox": [ + -71.10554887508935, + 42.31916917795212, + -71.09830556545586, + 42.3264119825601 +], + "geometry": {"coordinates":[[[[-71.10274838785651,42.31916917795212],[-71.10325546554381,42.31948716135984],[-71.10372314121585,42.31977976101599],[-71.10388314735462,42.31989045486581],[-71.10406104393218,42.32003910505249],[-71.10423064611913,42.32020726043342],[-71.10438118704263,42.32041271720946],[-71.10452486948809,42.32062430239223],[-71.10465335500828,42.32084185048231],[-71.10471515150238,42.32102696391198],[-71.10474071776656,42.32125508812657],[-71.10486663451093,42.32269808570125],[-71.10520711209826,42.3226857337383],[-71.10536000606795,42.32404225171329],[-71.1053611919172,42.32412763397554],[-71.10535529788071,42.32416881910584],[-71.1053420185421,42.32420848964944],[-71.10531508754134,42.32425804353749],[-71.10528041615278,42.32429913743037],[-71.10523304216997,42.32433639090529],[-71.10518013080947,42.32436807765489],[-71.10498226802515,42.32445452098882],[-71.10495528673638,42.32460745890405],[-71.10490132415885,42.32507291983666],[-71.10554887508935,42.32519925863845],[-71.10521656934931,42.32610200163816],[-71.10517279716035,42.3260990858321],[-71.10517080908551,42.32609901328174],[-71.10507973347811,42.32609572043393],[-71.10507837494086,42.32609567075165],[-71.10502606627061,42.32609377956203],[-71.10499158300003,42.32609301735582],[-71.10487908961753,42.32609053033325],[-71.10484927569503,42.32609042784552],[-71.10478557867573,42.326090208856],[-71.10476283667316,42.32609013066075],[-71.10464975459657,42.32609293242071],[-71.1046169733966,42.32609374516974],[-71.1045818473832,42.32609293831589],[-71.10457952514214,42.32609294923346],[-71.10450002648018,42.32609334284438],[-71.1044773017054,42.32609419645684],[-71.10444985988812,42.3260952282963],[-71.10441080807854,42.3260967027316],[-71.10439992502013,42.32609711452382],[-71.10434998586089,42.32609968673937],[-71.10430004240875,42.32610294494295],[-71.10425032517593,42.32610688992821],[-71.10420060486018,42.32611152090583],[-71.10416098360004,42.32611577790674],[-71.10416039235126,42.32611584069183],[-71.10415764247482,42.32611613642194],[-71.10415111076061,42.32611683866548],[-71.10410161236179,42.32612284241354],[-71.10405256565636,42.32613092017446],[-71.10404404472058,42.32613212062502],[-71.10404066403825,42.32613259603887],[-71.10391006307685,42.32615099554637],[-71.10374607463648,42.32617032505581],[-71.1035753602916,42.32619306125805],[-71.10340512217452,42.32621374077667],[-71.10337879911782,42.32621706296904],[-71.10323580412935,42.32623510924381],[-71.10322929635255,42.32623586013359],[-71.10305100025869,42.32625642398501],[-71.10287706386326,42.32627708995096],[-71.10283446803017,42.32628203484703],[-71.1026647341974,42.32630173909344],[-71.10251905672246,42.32631855710639],[-71.10245703231243,42.32632571782491],[-71.10229652641908,42.32634231501559],[-71.1022151113842,42.32635163584133],[-71.10203934152338,42.32636955009804],[-71.10187215508191,42.32638269164432],[-71.10174333351955,42.32639596587734],[-71.10162887597878,42.32640380155222],[-71.10152714365617,42.32640962315347],[-71.10141618805443,42.3264119825601],[-71.1014062776602,42.32641186356708],[-71.101405988927,42.32641185986498],[-71.10133598168554,42.32641101838725],[-71.1012530575952,42.32641044176068],[-71.10074525782117,42.32640691001333],[-71.10029895172735,42.32640769701429],[-71.10012005455216,42.32640679480798],[-71.10009176198727,42.32640648841124],[-71.10002692239257,42.32640578475415],[-71.09997296727448,42.32639985131566],[-71.09996894931895,42.32639940879231],[-71.09988141127516,42.3263901857935],[-71.09978184939422,42.32638160688876],[-71.09965892753425,42.32637569063929],[-71.09957763074321,42.32637142906344],[-71.09953277433908,42.32636907697589],[-71.09948873705535,42.32636574010152],[-71.09940941078011,42.32635972879736],[-71.09929319212098,42.32635383551704],[-71.09914139263216,42.32634575996781],[-71.09903303093178,42.32633989382403],[-71.09895791714291,42.32633963178034],[-71.09891908008434,42.32634086832255],[-71.09855417474223,42.32632000766903],[-71.09849562215256,42.32631666023205],[-71.09834680850976,42.32630650897929],[-71.09830556545586,42.3263043211883],[-71.09857784120592,42.32525897929157],[-71.09878239789658,42.32475566002532],[-71.09913909909575,42.32399400457575],[-71.0996359749788,42.32307364354375],[-71.09979221005571,42.32280898859067],[-71.09998304272263,42.32254069676705],[-71.10086520697452,42.32143262594178],[-71.10242109030079,42.31958967964209],[-71.10274838785651,42.31916917795212]]]],"type":"MultiPolygon"} +},{ + "id": 1108712123, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":208687.790519, + "geom:bbox":"-71.065841655,42.310072,-71.058881,42.3159847282", + "geom:latitude":42.313022, + "geom:longitude":-71.061854, + "iso:country":"US", + "lbl:latitude":42.312975, + "lbl:longitude":-71.061564, + "lbl:max_zoom":18.0, + "mps:latitude":42.312975, + "mps:longitude":-71.061564, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Jones Hill" + ], + "reversegeo:latitude":42.312975, + "reversegeo:longitude":-71.061564, + "src:geom":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9a8f22b5a6f23671926508c33c976d5b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712123, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108712123, + "wof:lastmodified":1566624137, + "wof:name":"Jones Hill", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780919 + ], + "wof:tags":[] +}, + "bbox": [ + -71.06584165502765, + 42.310072, + -71.058881, + 42.31598472817079 +], + "geometry": {"coordinates":[[[[-71.06267279736292,42.31598472817079],[-71.061936,42.315638],[-71.06148,42.315406],[-71.060885,42.315126],[-71.060457,42.31493],[-71.06001995303662,42.31472861996077],[-71.060029,42.314664],[-71.06003200000001,42.314575],[-71.06001500000001,42.314418],[-71.05996,42.314264],[-71.059866,42.314169],[-71.059608,42.313978],[-71.059425,42.313853],[-71.059331,42.31375],[-71.059224,42.313525],[-71.059011,42.313055],[-71.058924,42.312903],[-71.058891,42.312816],[-71.058881,42.312771],[-71.058881,42.312651],[-71.058927,42.312474],[-71.05925499999999,42.311409],[-71.05937900000001,42.311039],[-71.059434,42.310882],[-71.05950900000001,42.310681],[-71.059574,42.310551],[-71.059772,42.310237],[-71.05981,42.31019],[-71.05989099999999,42.310147],[-71.05999300000001,42.3101],[-71.060061,42.31008],[-71.06022400000001,42.310072],[-71.06045399999999,42.310097],[-71.06074599999999,42.310205],[-71.06093,42.310288],[-71.061724,42.310556],[-71.062067,42.310721],[-71.062172,42.310776],[-71.062397,42.311003],[-71.062511,42.311104],[-71.062646,42.311225],[-71.062864,42.311419],[-71.063236,42.311772],[-71.063422,42.311911],[-71.06352,42.311978],[-71.063749,42.312136],[-71.06398797225474,42.31228501165691],[-71.064267,42.312459],[-71.064413,42.312569],[-71.064584,42.312689],[-71.064752,42.312833],[-71.064891,42.312997],[-71.064998,42.313168],[-71.065136,42.313448],[-71.065201,42.313558],[-71.065465,42.31402],[-71.06572,42.31447],[-71.065817,42.314693],[-71.06584165502765,42.31477718789936],[-71.06564159383407,42.31479067826032],[-71.06530695851653,42.31478070420881],[-71.06498582015831,42.3147542343283],[-71.06457535730408,42.314704510283],[-71.06407144247589,42.31462649329171],[-71.06373343829549,42.31456017866527],[-71.0633364271731,42.31448336941001],[-71.06267279736292,42.31598472817079]]]],"type":"MultiPolygon"} +},{ + "id": 1108712125, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000235, + "geom:area_square_m":2145215.717508, + "geom:bbox":"-71.129555,42.2743354516,-71.0996142757,42.2958817858", + "geom:latitude":42.284358, + "geom:longitude":-71.115161, + "iso:country":"US", + "lbl:latitude":42.281817, + "lbl:longitude":-71.111223, + "lbl:max_zoom":18.0, + "mps:latitude":42.281817, + "mps:longitude":-71.111223, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.281817, + "reversegeo:longitude":-71.111223, + "src:geom":"mz", + "wof:belongsto":[ + 85846101, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b05456141bec6578271bcaba2cb9e055", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712125, + "neighbourhood_id":85846101, + "region_id":85688645 + } + ], + "wof:id":1108712125, + "wof:lastmodified":1566624137, + "wof:name":"Lower Washington - Mount Hope", + "wof:parent_id":85846101, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780941 + ], + "wof:tags":[] +}, + "bbox": [ + -71.129555, + 42.2743354516166, + -71.09961427566081, + 42.29588178584321 +], + "geometry": {"coordinates":[[[[-71.1149392118031,42.27771609512154],[-71.11615085201393,42.27869170234914],[-71.11633510381355,42.27883260106888],[-71.11650475102452,42.27894467306169],[-71.11668370172011,42.27903817646482],[-71.11688361638544,42.2791319531788],[-71.118911,42.279949],[-71.11971200000001,42.280288],[-71.12067500000001,42.280696],[-71.12107,42.280926],[-71.12132099999999,42.281091],[-71.122013,42.281546],[-71.122433,42.281826],[-71.12296499999999,42.282163],[-71.123542,42.282538],[-71.123762,42.282702],[-71.123976,42.282933],[-71.12404100000001,42.282998],[-71.124162,42.283213],[-71.124247,42.28345],[-71.124368,42.283702],[-71.124495,42.283906],[-71.12476100000001,42.284186],[-71.12512700000001,42.28449],[-71.125686,42.284911],[-71.126098,42.285175],[-71.126656,42.285515],[-71.12726499999999,42.285892],[-71.127436,42.286003],[-71.128128,42.286448],[-71.129555,42.287211],[-71.12915767820031,42.28739266274355],[-71.12886245762232,42.28757154883175],[-71.12606484635741,42.29000412094007],[-71.12604365832189,42.29002542600048],[-71.12600593789658,42.29006607780778],[-71.1259852703291,42.29008999812341],[-71.12597004189585,42.29010762503927],[-71.12593601058573,42.29015002551359],[-71.12590549781966,42.29019001022589],[-71.12581211157992,42.29030787049749],[-71.12572635144868,42.29041598727943],[-71.12564097818645,42.29052363439954],[-71.12555515519422,42.29063182467066],[-71.12537830491939,42.29085480345123],[-71.12528981763863,42.29096636725938],[-71.12521755792081,42.29105746519786],[-71.12510811293321,42.29119545542338],[-71.12504305342981,42.29127747651197],[-71.12497392048641,42.29136464748664],[-71.12491249284248,42.29144208072227],[-71.12485460795689,42.29151505910439],[-71.12479829767075,42.29158606283941],[-71.12473541449832,42.29166533503913],[-71.12468109902235,42.29173382349101],[-71.12464765991629,42.29177769479978],[-71.12464455699632,42.29178176662213],[-71.12455722279203,42.29189638833899],[-71.12448163644132,42.29199559203777],[-71.12445154874121,42.29204149991777],[-71.12441893476968,42.29208890213136],[-71.12439339053853,42.29212603071871],[-71.12439287559927,42.29212677808471],[-71.12438858601989,42.29213301214207],[-71.12429438910779,42.29225881094811],[-71.12422129392807,42.29235145763054],[-71.12419455769059,42.29238180751614],[-71.12410524380145,42.29248319609836],[-71.12400924604398,42.29259208384105],[-71.12397339330333,42.29263282661008],[-71.12391481430927,42.29268694095292],[-71.12379993319585,42.29278477944032],[-71.12368133291352,42.29288175304556],[-71.12358114170763,42.29296433793321],[-71.12348212106046,42.29304559142454],[-71.12335560081701,42.29314979335128],[-71.12330195596243,42.29319701645486],[-71.12325170021465,42.2932458873924],[-71.12316124800196,42.29333697927115],[-71.12313280456129,42.29336551370411],[-71.12295191066478,42.29354699229995],[-71.1229518850553,42.29354701652398],[-71.12289779568918,42.29358549156567],[-71.12289533696716,42.29358724088036],[-71.12288642273981,42.29359358124092],[-71.12288528897577,42.29359438778917],[-71.1228763735231,42.29360072994551],[-71.12281101949077,42.29364721574837],[-71.12265239067621,42.29378426874826],[-71.12253343080924,42.29388704691318],[-71.12231127905967,42.29408020986541],[-71.12230649341127,42.29408437062312],[-71.12220254586401,42.2941678890667],[-71.12192506981961,42.29439316217573],[-71.12168231120816,42.29458677646189],[-71.1215778422941,42.29467264420308],[-71.12115229058176,42.29500305976423],[-71.12115201280817,42.29500327492018],[-71.12108799254155,42.29504872519091],[-71.12073744478845,42.29484326442248],[-71.12012154830447,42.29448227380521],[-71.11978272703053,42.29428367942744],[-71.11978222071491,42.29428338245346],[-71.11944241284671,42.29460425589393],[-71.11943072689589,42.29461529087191],[-71.11927451652598,42.2947645678931],[-71.1192347579302,42.29480256292581],[-71.11922674108156,42.2948102231153],[-71.11911461821788,42.29491638392285],[-71.11911082402617,42.29491997704454],[-71.11910822383673,42.29492243794633],[-71.11878233431968,42.29523099354284],[-71.11878133910923,42.29523193645558],[-71.11878034870601,42.2952328865867],[-71.11874980243292,42.29526217100764],[-71.11842816099474,42.2955705326176],[-71.11810349881749,42.29588178584321],[-71.11801013917302,42.29583161328299],[-71.11775582669665,42.29570521797087],[-71.11733468785374,42.29551203601117],[-71.11777394990814,42.29473045440426],[-71.1179168240552,42.29445002258841],[-71.11791738411725,42.29444884685878],[-71.11793282882708,42.29441641990386],[-71.11815322756105,42.29395370345299],[-71.11816416457683,42.29393074074068],[-71.1182781134814,42.29367209949574],[-71.11843378759292,42.29331874110119],[-71.11853577805837,42.2930872390178],[-71.11898428790089,42.29169609078937],[-71.11909314369579,42.29110402080005],[-71.11914035396993,42.29084723427226],[-71.1191800739973,42.29063739606367],[-71.11924813820004,42.29027781475509],[-71.11925057342722,42.29025374968887],[-71.11944624912424,42.2883198344958],[-71.11956370408625,42.28635268659605],[-71.1194161938425,42.28635763309561],[-71.11888836739558,42.28637532875689],[-71.11867901704542,42.28638234508961],[-71.11867887394139,42.28638235001637],[-71.11867875993664,42.28638235503976],[-71.11867778370264,42.28638238420999],[-71.11832333546205,42.28639298571025],[-71.11827925332146,42.2863943040249],[-71.1182666750512,42.28639468086695],[-71.11789021591424,42.28640593892967],[-71.11756136472694,42.28641106296075],[-71.11720090317569,42.28641667851772],[-71.11667313050643,42.2864276992518],[-71.11654444539204,42.28643038660599],[-71.11621651713568,42.28643723214537],[-71.1158646523153,42.28644457650163],[-71.1156159693642,42.28644976765384],[-71.11550113141891,42.28645216346088],[-71.1154253576215,42.28645396879814],[-71.11538300875739,42.28645476782889],[-71.11507709840177,42.28646054225215],[-71.11486978497928,42.28646445603152],[-71.11486102130604,42.28646461391229],[-71.11486097158918,42.2864646146459],[-71.11463006749278,42.28646877840741],[-71.11461821282185,42.2864689925224],[-71.11461359876886,42.28646907517574],[-71.11460720249876,42.28646933190993],[-71.11441231405921,42.28647713173608],[-71.11413569616307,42.28648052524401],[-71.1140819482159,42.28648118467085],[-71.11400465302597,42.28648213317511],[-71.11376413341748,42.28648594507961],[-71.11357567131928,42.28648893137485],[-71.11313438578057,42.28649859361094],[-71.11252020147485,42.2865120375386],[-71.11222901143897,42.28651841131812],[-71.11183567346784,42.28658192079732],[-71.11120421494272,42.28674189003156],[-71.11056026558246,42.28690501942923],[-71.11055858242781,42.28690544586786],[-71.11047006586456,42.28698884138655],[-71.11028885089655,42.28715904817965],[-71.11022580557461,42.28722104962144],[-71.11007737940446,42.28736701867099],[-71.11006214771628,42.28738199930359],[-71.11004678916252,42.2873971028448],[-71.11004376014746,42.28740008156361],[-71.10996420049935,42.28747832315753],[-71.10981848613628,42.28758798021239],[-71.10981232221754,42.28759261833639],[-71.10981173749742,42.28759305839835],[-71.1097745801499,42.28761643005234],[-71.10967188787632,42.28768102441578],[-71.10965664195575,42.28769061394041],[-71.10949822894815,42.28779025569814],[-71.10944652390404,42.28781710427324],[-71.10815333990116,42.28848857747546],[-71.10815280223375,42.28848885653548],[-71.10797550351765,42.28861861527682],[-71.10797459606067,42.28861928020371],[-71.10724654516928,42.28808342505227],[-71.10694171125483,42.2878590590303],[-71.10677147695634,42.287735181923],[-71.10670761587184,42.28768871210657],[-71.1066612496579,42.28765445443037],[-71.10645514694542,42.2874963659011],[-71.10643166248506,42.28747926524066],[-71.10637716157217,42.28743958226831],[-71.10591391142597,42.28710227506276],[-71.10559395256134,42.28686036693611],[-71.10542169467519,42.2867301283075],[-71.10541257522964,42.2867227676251],[-71.10475934069599,42.28619549102374],[-71.10395264191601,42.28554921535179],[-71.10350080796317,42.28518680381634],[-71.10341791367549,42.28512057141901],[-71.10328099552231,42.28501117286358],[-71.10322340534317,42.28496515846999],[-71.10319684218263,42.28494393391804],[-71.10303219392402,42.28481237735713],[-71.10268676848762,42.28453637661384],[-71.10236481303043,42.28429090428311],[-71.10200531454169,42.28401680368057],[-71.10162200334157,42.28372454396824],[-71.10047660700815,42.2828925817339],[-71.10033607467001,42.28279050268202],[-71.09981681446895,42.28243195877795],[-71.09961427566081,42.28231942903949],[-71.09966128705297,42.28227897572859],[-71.09966155280526,42.28227874707751],[-71.09966419813544,42.28227647132828],[-71.09985486404375,42.28211240005145],[-71.10000018769753,42.28203195456627],[-71.10017642054838,42.28195779076877],[-71.10047428888875,42.28186003786038],[-71.10093513450867,42.28174914880479],[-71.10094384673809,42.28174705255697],[-71.10103088643959,42.28172610866238],[-71.10103638455286,42.28172478540759],[-71.10105855314696,42.28172097759715],[-71.10130498789228,42.28167864480319],[-71.10198760608482,42.28156138078974],[-71.10199152759205,42.28156070744679],[-71.10302717913164,42.28138863234141],[-71.10303102038041,42.28138799379748],[-71.10386244609258,42.28124679771803],[-71.10392104308706,42.2812257607436],[-71.1039549572219,42.28121358494678],[-71.10412880978596,42.28115116934807],[-71.10414777419557,42.28114436089341],[-71.10415202955132,42.28114283333953],[-71.10541078812352,42.28047279431262],[-71.10562127157193,42.28038625983172],[-71.10571602157187,42.28034730579649],[-71.10577154517509,42.28032447833044],[-71.10593447239214,42.28022367229539],[-71.10595679453515,42.28020986080105],[-71.10597704735686,42.28019055755762],[-71.10656713611974,42.27962813888786],[-71.10710970236175,42.27913605285369],[-71.10725839452485,42.27899386692283],[-71.10736864590118,42.2788462196042],[-71.10737322782909,42.27884008349496],[-71.10737751771168,42.2788311878582],[-71.10745497853924,42.2786705657286],[-71.10745980283752,42.27864487945886],[-71.10746039336843,42.2786417304157],[-71.10752957432288,42.27827336826059],[-71.10753271613771,42.27825663335458],[-71.10757239711845,42.27809775736362],[-71.10761858962941,42.27791280650608],[-71.10763526174667,42.27784605014696],[-71.10763633799257,42.2778427722177],[-71.1076534750205,42.27779059425551],[-71.10774801307075,42.27750273363353],[-71.10778535260599,42.27740269968837],[-71.10814523162371,42.27653403948965],[-71.10830928697951,42.27616057425171],[-71.10833871639861,42.27609357948229],[-71.10837162278163,42.27600871562917],[-71.10841921250004,42.27588598643811],[-71.10842027482052,42.27588259591506],[-71.10844479232004,42.27580433507404],[-71.10845655700807,42.27576677849844],[-71.10850334597212,42.27561742095531],[-71.10858129903772,42.27536858430037],[-71.10878252188444,42.27502007896211],[-71.10884274974046,42.27492750328723],[-71.1090746602038,42.27457103610477],[-71.10907549092138,42.27456941388377],[-71.10911603415917,42.27449022519863],[-71.10919550881803,42.2743354516166],[-71.10919564732019,42.27433559883743],[-71.10921586221824,42.27435695620781],[-71.10925807458712,42.27440155503609],[-71.10926158546684,42.27440526362852],[-71.10935967442249,42.27449279803358],[-71.10953737039702,42.27461897127183],[-71.10965649506885,42.27468492012185],[-71.10967154016616,42.27469324864793],[-71.10976731756574,42.27474627249691],[-71.11037300236057,42.27506269421322],[-71.11065847789715,42.2752246780304],[-71.11071858417033,42.27525878360655],[-71.11126585096027,42.27556930721299],[-71.11408701824747,42.2770242302566],[-71.11423513667074,42.2771496268986],[-71.11423665273819,42.27715091042111],[-71.11423680953038,42.27715104329229],[-71.11423713035018,42.27715131536107],[-71.1143151988753,42.27721740680859],[-71.11460124535544,42.27744600593864],[-71.11460137565383,42.27744610991069],[-71.11460902459758,42.27745222252566],[-71.11462212552338,42.27746269289427],[-71.11462635295801,42.27746607061093],[-71.1149392118031,42.27771609512154]]]],"type":"MultiPolygon"} +},{ + "id": 1108712127, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000029, + "geom:area_square_m":267940.714127, + "geom:bbox":"-71.10621148,42.305962148,-71.0978619042,42.3124707991", + "geom:latitude":42.30915, + "geom:longitude":-71.101811, + "iso:country":"US", + "lbl:latitude":42.309127, + "lbl:longitude":-71.101873, + "lbl:max_zoom":18.0, + "mps:latitude":42.309127, + "mps:longitude":-71.101873, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Parkside" + ], + "name:deu_x_preferred":[ + "Parkside" + ], + "name:swe_x_preferred":[ + "Parkside" + ], + "reversegeo:latitude":42.309127, + "reversegeo:longitude":-71.101873, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ed418d90baa35670e682fd868b8ec4b2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712127, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712127, + "wof:lastmodified":1566624137, + "wof:name":"Parkside", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780937 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1062114800433, + 42.30596214795024, + -71.09786190420601, + 42.31247079909109 +], + "geometry": {"coordinates":[[[[-71.10156137639785,42.31247079909109],[-71.09786190420601,42.31106225916723],[-71.09786274493426,42.31077694603191],[-71.09786370135942,42.31045222094395],[-71.09790757784639,42.31019475152687],[-71.0979078575738,42.31019310586071],[-71.09792481211809,42.31009361743894],[-71.09793450580356,42.31003673541859],[-71.09794437136638,42.30999862521091],[-71.09794514725665,42.30999563173384],[-71.09795270496249,42.30996643630391],[-71.09797650828578,42.30987449112016],[-71.09798330246259,42.30984824869477],[-71.09801007110705,42.30979913114883],[-71.09802211159266,42.30977703673991],[-71.09805326659861,42.30973836087816],[-71.09810653920796,42.3096722285472],[-71.09812002911323,42.30965548246545],[-71.09812295840226,42.30965184650264],[-71.0981263284589,42.30964890080916],[-71.09813446636048,42.30964178720384],[-71.09813991113865,42.30963702836273],[-71.09818060425182,42.309601460338],[-71.09819804728932,42.30958621266114],[-71.09821168360173,42.30957429447844],[-71.09821520245971,42.30957121785908],[-71.09821887762081,42.30956854962115],[-71.09822431481849,42.3095646010177],[-71.09825192117115,42.30954455696627],[-71.09826914056272,42.30953205350536],[-71.09826988875292,42.3095315105403],[-71.09827050290004,42.30953106523917],[-71.09828319657454,42.30952184824795],[-71.0982894855315,42.30951728141334],[-71.09834913156379,42.30948520161383],[-71.09835484824602,42.30948212636991],[-71.09836018397273,42.30947925686276],[-71.09847450768423,42.30941776808952],[-71.09879096133578,42.30930434285919],[-71.09892564702537,42.30925606817802],[-71.09898929270159,42.30923356947344],[-71.09898961120169,42.30923345714731],[-71.09939809854463,42.30908905521297],[-71.09939653381325,42.30908657123759],[-71.09936867971157,42.30904235052348],[-71.09934901486676,42.30901334728335],[-71.09933688236394,42.30899545477236],[-71.09923558784033,42.30884605810056],[-71.09923551814749,42.30884595432323],[-71.09925731904555,42.30882338065188],[-71.09934074612757,42.30873700165841],[-71.09943802554757,42.30863627962442],[-71.09949736768864,42.3085730190429],[-71.09968059772501,42.30833763082828],[-71.0996807224644,42.30833746920916],[-71.09983606545947,42.30813790548628],[-71.09986135710945,42.30807131296883],[-71.09988313957531,42.30801396149179],[-71.09993312190275,42.30791614705366],[-71.09993592631974,42.30791631166845],[-71.09993932969559,42.30791651077918],[-71.09994023903833,42.3079165643617],[-71.09994269183912,42.30791670884602],[-71.10013089945676,42.30792774976014],[-71.10022353113141,42.30787751581156],[-71.10024981874035,42.30786325920901],[-71.10025073989041,42.30786105848329],[-71.10025077806949,42.3078609667857],[-71.100253280404,42.3078549948093],[-71.10025632951046,42.30784771750182],[-71.10028274201559,42.30778466606056],[-71.10029571920867,42.30775368512139],[-71.10031525761418,42.30770704290553],[-71.10035023837924,42.30762432452287],[-71.1003622649385,42.3075948257614],[-71.10039180635515,42.30752430549575],[-71.10042842487,42.30743688962369],[-71.10043382153704,42.30742374512707],[-71.10044274984467,42.30740200245675],[-71.10044952020246,42.30738624916965],[-71.10045419053699,42.30737537900096],[-71.10048653523735,42.30729786233367],[-71.10048946501705,42.3072908420898],[-71.10048973842122,42.30729018582255],[-71.10049035048303,42.30728871956388],[-71.10041170251658,42.30726817678608],[-71.10039056867973,42.30726265738933],[-71.10038845082057,42.30726210354327],[-71.10064373909211,42.30670883216774],[-71.10071300153834,42.30655872121602],[-71.10071745496241,42.30655934259145],[-71.10071761492313,42.30655936475447],[-71.10071934176081,42.30655960573265],[-71.10112968003652,42.30661685651926],[-71.10113184606698,42.30660860650049],[-71.10113345910398,42.30660246126057],[-71.10114984407555,42.30654005992839],[-71.10115632918864,42.30654066403076],[-71.10115781894297,42.30654080334606],[-71.10147921038059,42.30657074327271],[-71.10148546878425,42.30656323938273],[-71.1014862790334,42.30656226897013],[-71.10179753631432,42.30618909393608],[-71.10196904760618,42.30598346128044],[-71.1019711801723,42.30598340744712],[-71.1019732181139,42.30598335688714],[-71.1019757133772,42.30598329530701],[-71.10262037281474,42.30596722791859],[-71.10271006447483,42.30596222539521],[-71.10271005889648,42.30596214795024],[-71.1062114800433,42.30775163965528],[-71.104558,42.309435],[-71.10457350848827,42.30944074561463],[-71.10156137639785,42.31247079909109]]]],"type":"MultiPolygon"} +},{ + "id": 1108712129, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000113, + "geom:area_square_m":1032217.007221, + "geom:bbox":"-71.123918,42.3087470189,-71.111713841,42.3215949175", + "geom:latitude":42.315642, + "geom:longitude":-71.118203, + "iso:country":"US", + "lbl:latitude":42.315688, + "lbl:longitude":-71.118319, + "lbl:max_zoom":18.0, + "mps:latitude":42.315688, + "mps:longitude":-71.118319, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.315688, + "reversegeo:longitude":-71.118319, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bb16cd9acb697cf16cecde655b18de60", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712129, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712129, + "wof:lastmodified":1566624137, + "wof:name":"Pondside", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780939 + ], + "wof:tags":[] +}, + "bbox": [ + -71.123918, + 42.30874701889712, + -71.11171384103311, + 42.32159491749654 +], + "geometry": {"coordinates":[[[[-71.120214,42.321477],[-71.11981299999999,42.321475],[-71.119618,42.321455],[-71.119193,42.321385],[-71.118506,42.321257],[-71.117824,42.321134],[-71.117491,42.321088],[-71.11711699999999,42.321055],[-71.11657,42.321021],[-71.116321,42.321012],[-71.11599,42.321031],[-71.115814,42.321048],[-71.115599,42.321066],[-71.115426,42.321095],[-71.115194,42.321133],[-71.114946,42.321173],[-71.114501,42.321235],[-71.114154,42.321283],[-71.11388100000001,42.321321],[-71.113213,42.321425],[-71.112815,42.321496],[-71.112312,42.321567],[-71.11213492330762,42.32159491749654],[-71.11210811813163,42.32141567077141],[-71.11178895780415,42.32002793385811],[-71.11172751362768,42.31975059237842],[-71.11171384103311,42.31962867352269],[-71.1117325655504,42.31950503760875],[-71.11193400000001,42.319106],[-71.112146,42.318805],[-71.112387,42.318464],[-71.112764,42.317917],[-71.113084,42.317484],[-71.113242,42.317252],[-71.113354,42.317087],[-71.113624,42.316697],[-71.11376199999999,42.31648],[-71.113838,42.316378],[-71.113945,42.316206],[-71.114017,42.316022],[-71.114058,42.315879],[-71.11408900000001,42.315707],[-71.114091,42.315499],[-71.114092,42.31532],[-71.114092,42.315213],[-71.114116,42.314638],[-71.114113,42.314136],[-71.11409500000001,42.313669],[-71.114093,42.313444],[-71.11409999999999,42.313229],[-71.11410100000001,42.313027],[-71.114149,42.312522],[-71.114232,42.312157],[-71.11449500000001,42.31123],[-71.114572,42.310982],[-71.114654,42.31075],[-71.114762,42.310548],[-71.114853,42.310394],[-71.11536,42.30986],[-71.115656,42.309667],[-71.116213,42.309313],[-71.11641899999999,42.309212],[-71.117164,42.308985],[-71.11731399999999,42.308954],[-71.117999,42.308805],[-71.11825399999999,42.308767],[-71.118393,42.308751],[-71.1185088299259,42.30874701889712],[-71.1186748771687,42.30875601889713],[-71.11888494330863,42.30877402834568],[-71.11914194330863,42.30879609448561],[-71.11955194330864,42.30883418897121],[-71.12006132125107,42.30889230235395],[-71.12045224566258,42.30895724566258],[-71.120727,42.309009],[-71.121149,42.309129],[-71.12145131037251,42.30923045578085],[-71.12172108398249,42.30935065439346],[-71.12191521330203,42.3094768207191],[-71.12209300000001,42.309613],[-71.122141,42.309751],[-71.12228500000001,42.310028],[-71.122435,42.310376],[-71.12260000000001,42.310884],[-71.122738,42.311461],[-71.122788,42.311978],[-71.122787,42.31214],[-71.122776,42.312325],[-71.12270599999999,42.312603],[-71.12246,42.313048],[-71.12224399999999,42.313334],[-71.122077,42.31355],[-71.122114,42.313642],[-71.12216600000001,42.313725],[-71.12223,42.313789],[-71.12240024195101,42.31393034447731],[-71.122709,42.314138],[-71.123059,42.314433],[-71.123197,42.31462],[-71.123265,42.314787],[-71.12327999999999,42.31489],[-71.123285,42.314982],[-71.12320699999999,42.315494],[-71.12318500000001,42.315685],[-71.123189,42.315836],[-71.1232,42.315927],[-71.123231,42.316022],[-71.123362,42.316325],[-71.123452,42.316569],[-71.12352,42.316792],[-71.123575,42.317439],[-71.12359499999999,42.317574],[-71.123642,42.317801],[-71.123699,42.317983],[-71.12381499999999,42.318258],[-71.12388900000001,42.3185],[-71.123909,42.318679],[-71.123918,42.318957],[-71.123817,42.319113],[-71.123726,42.319236],[-71.12357,42.319426],[-71.12327000000001,42.319634],[-71.12286899999999,42.319822],[-71.122564,42.320006],[-71.12236300000001,42.320141],[-71.12219899999999,42.320293],[-71.122041,42.32045],[-71.121948,42.320575],[-71.12183899999999,42.320675],[-71.12168699999999,42.32078],[-71.121551,42.320856],[-71.121404,42.320973],[-71.121257,42.321121],[-71.121132,42.321234],[-71.120974,42.321326],[-71.12074,42.321414],[-71.120518,42.321466],[-71.120214,42.321477]]]],"type":"MultiPolygon"} +},{ + "id": 1108712131, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":294819.357668, + "geom:bbox":"-71.1119365302,42.3010543872,-71.1026860559,42.3077516397", + "geom:latitude":42.304131, + "geom:longitude":-71.106675, + "iso:country":"US", + "lbl:latitude":42.304069, + "lbl:longitude":-71.106605, + "lbl:max_zoom":18.0, + "mps:latitude":42.304069, + "mps:longitude":-71.106605, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Stony Brook" + ], + "name:deu_x_preferred":[ + "Stony Brook" + ], + "name:eng_x_variant":[ + "Stonybrook" + ], + "name:fra_x_preferred":[ + "Stony Brook" + ], + "name:kor_x_preferred":[ + "\uc2a4\ud1a0\ub2c8\ube0c\ub8e9" + ], + "name:pol_x_preferred":[ + "Stony Brook" + ], + "name:rus_x_preferred":[ + "\u0421\u0442\u043e\u0443\u043d\u0438-\u0411\u0440\u0443\u043a" + ], + "name:swe_x_preferred":[ + "Stony Brook" + ], + "name:ukr_x_preferred":[ + "\u0421\u0442\u043e\u0443\u043d\u0456-\u0411\u0440\u0443\u043a" + ], + "reversegeo:latitude":42.304069, + "reversegeo:longitude":-71.106605, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"227a0c259f22592f6047763939778e0b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712131, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712131, + "wof:lastmodified":1566624141, + "wof:name":"Stony Brook", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780943, + 420524041 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11193653020183, + 42.30105438722767, + -71.10268605585173, + 42.30775163965528 +], + "geometry": {"coordinates":[[[[-71.11193653020183,42.30185762110305],[-71.1062114800433,42.30775163965528],[-71.10271005889648,42.30596214795024],[-71.10268985143439,42.30567935373804],[-71.10268605585173,42.30554762333441],[-71.10268645109043,42.30552155565562],[-71.10268775667139,42.30550948626568],[-71.10269381735638,42.30545343302454],[-71.10270437064821,42.30539058545722],[-71.10271194057152,42.30536248450127],[-71.10271550749269,42.3053514825806],[-71.10271971631182,42.30533850042152],[-71.10273707617813,42.30529671276005],[-71.10274738847815,42.30527342347512],[-71.10275101683426,42.30526538644892],[-71.10276285260987,42.30523917555852],[-71.10276555279314,42.30523370477535],[-71.10277690142502,42.30521071076691],[-71.10277752425993,42.3052094489007],[-71.10277806355484,42.30520835690216],[-71.10279327139411,42.30517822426047],[-71.10280496131051,42.30515631178717],[-71.1028171090031,42.30513508692249],[-71.10282995351582,42.30511317843744],[-71.10283883197845,42.30509997203401],[-71.10284697953483,42.30508785426564],[-71.10285910138211,42.30507074547238],[-71.10288496175509,42.30503653346918],[-71.10291176664001,42.30500391195051],[-71.10292430988062,42.30498864661755],[-71.10293664921835,42.30497359665024],[-71.10293760805018,42.30497252140571],[-71.10294944754743,42.30495923429517],[-71.10296201422112,42.30494487113819],[-71.10297434923962,42.30493050717942],[-71.10302068927918,42.3048715995882],[-71.10306921873655,42.30479774557978],[-71.10308137917347,42.30477446264737],[-71.10309567119526,42.30474295474514],[-71.10310575162447,42.30471966462525],[-71.10311187202001,42.30470451393154],[-71.10312333669455,42.30467612929931],[-71.10312429268441,42.30467376481563],[-71.10313395830794,42.30464292695652],[-71.10317210758285,42.30445282829003],[-71.10317548657628,42.30443598996793],[-71.1031922125225,42.30435263775026],[-71.10319241532889,42.30435162831542],[-71.10320068312961,42.30431042768439],[-71.10323184845527,42.30403517711441],[-71.10327217719497,42.30391968648203],[-71.10327232292342,42.30391926924653],[-71.10327673802597,42.30390662448795],[-71.10328496760671,42.30389202394529],[-71.10328511477351,42.30389176426706],[-71.1033454298028,42.30378474869865],[-71.10337154742199,42.30375097141164],[-71.10339612680667,42.30371918477181],[-71.10340122560901,42.30371258967545],[-71.1034246873911,42.30368224775282],[-71.10342839593288,42.30367745205588],[-71.1034855268561,42.3036078130338],[-71.10349035069812,42.30360193362247],[-71.10352427647135,42.30356058021974],[-71.10356069905512,42.30351618340797],[-71.10374822528316,42.30328760244412],[-71.10374895246744,42.30328671455616],[-71.10382808281575,42.30319368403213],[-71.10396971629774,42.30307045499521],[-71.10404877325814,42.30300167091615],[-71.10409283166379,42.30296628793009],[-71.10434842431336,42.30276101964605],[-71.10451090161889,42.30262457419553],[-71.10465939124599,42.30248691630117],[-71.10485540958835,42.30230519628183],[-71.10505389551351,42.30215311775126],[-71.10517261591349,42.30206215350675],[-71.10538018141227,42.30190311658726],[-71.10555660171312,42.30178219097572],[-71.10560204251591,42.30175104355938],[-71.10568049553011,42.30168598981823],[-71.10578463922059,42.30162048849065],[-71.10582240892964,42.30160278134245],[-71.10610713247965,42.30146729581615],[-71.10612122430187,42.30146059007939],[-71.10628636903067,42.30138200627557],[-71.10629986235284,42.30137558566156],[-71.10643647160931,42.30131057940768],[-71.10653519730022,42.30126152351266],[-71.10656848728837,42.30123843139459],[-71.10657760302792,42.3012321073957],[-71.10665845211575,42.30117602456841],[-71.10665929133782,42.30117544224688],[-71.10670185042254,42.30114591947334],[-71.10670398927626,42.30114443589905],[-71.10674317194935,42.30111725583523],[-71.10674711591628,42.30111451982004],[-71.10675957509386,42.30110587727542],[-71.10681714884031,42.30105438722767],[-71.10752916570429,42.30140726721655],[-71.10780360911563,42.30151202276382],[-71.10808098755084,42.30159841378413],[-71.10852426814232,42.30169959147688],[-71.10890598826283,42.30174335373668],[-71.11193653020183,42.30185762110305]]]],"type":"MultiPolygon"} +},{ + "id": 1108721821, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000035, + "geom:area_square_m":335008.265613, + "geom:bbox":"-75.1927715269,39.9401000613,-75.1806165797,39.9465675404", + "geom:latitude":39.943373, + "geom:longitude":-75.187157, + "iso:country":"US", + "lbl:latitude":39.943091, + "lbl:longitude":-75.187188, + "lbl:max_zoom":18.0, + "mps:latitude":39.943405, + "mps:longitude":-75.187571, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Devil's Pocket" + ], + "reversegeo:latitude":39.943405, + "reversegeo:longitude":-75.187571, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85847359, + 102191575, + 1108721801, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5267207" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"76ad3de705245a585dec69a39437d6c6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721801, + "microhood_id":1108721821, + "neighbourhood_id":85847359, + "region_id":85688481 + } + ], + "wof:id":1108721821, + "wof:lastmodified":1566623926, + "wof:name":"Devil's Pocket", + "wof:parent_id":85847359, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871435 + ], + "wof:tags":[] +}, + "bbox": [ + -75.1927715269162, + 39.94010006130485, + -75.1806165796596, + 39.9465675404453 +], + "geometry": {"coordinates":[[[-75.1806165796596,39.94462940243211],[-75.181005,39.944394],[-75.181285,39.944217],[-75.181962,39.943809],[-75.182169,39.943695],[-75.182198,39.943679],[-75.18227899999999,39.943635],[-75.182867,39.943269],[-75.18294899999999,39.943217],[-75.18336600000001,39.942946],[-75.183854,39.94264],[-75.18447399999999,39.942274],[-75.185374,39.941742],[-75.185811,39.94147],[-75.186106,39.941287],[-75.186849,39.940815],[-75.18757929942662,39.94038060598665],[-75.18805074966005,39.94010006130485],[-75.1888921750018,39.94060683795812],[-75.1897180399416,39.94110423000173],[-75.19118873343282,39.94192491491266],[-75.19172528758421,39.94213809057722],[-75.1927715269162,39.94262669842465],[-75.19151040130035,39.94316498162625],[-75.18875133700709,39.94591514041631],[-75.18780277038567,39.9465675404453],[-75.18570331416549,39.94527728025879],[-75.18500788476395,39.94517971673572],[-75.1827811660629,39.94490703884711],[-75.1806165796596,39.94462940243211]]],"type":"Polygon"} +},{ + "id": 1108712135, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":292410.324014, + "geom:bbox":"-71.1156494195,42.3073366595,-71.106998,42.3132856237", + "geom:latitude":42.309975, + "geom:longitude":-71.111724, + "iso:country":"US", + "lbl:latitude":42.31029, + "lbl:longitude":-71.112073, + "lbl:max_zoom":18.0, + "mps:latitude":42.31029, + "mps:longitude":-71.112073, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.31029, + "reversegeo:longitude":-71.112073, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2fb3074cf349a65f3f57f6ede4466436", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712135, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712135, + "wof:lastmodified":1566624141, + "wof:name":"Sumner Hill", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780945 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11564941946904, + 42.30733665948253, + -71.106998, + 42.31328562374546 +], + "geometry": {"coordinates":[[[[-71.1090518925667,42.30733665948253],[-71.10955699890695,42.30758323663451],[-71.10991233930234,42.30774993334261],[-71.11007190168584,42.30780948875685],[-71.11021543443601,42.30785704212821],[-71.11038711689815,42.30789455495194],[-71.11063971425008,42.30793358563955],[-71.11081166087772,42.30794680749892],[-71.11102706949656,42.3079585136635],[-71.111309113651,42.30796055133423],[-71.11160893256167,42.30794866747753],[-71.11330495209052,42.30780761947481],[-71.11554513182737,42.30761556798551],[-71.11560718854736,42.30831072147399],[-71.11564941946904,42.30923690997913],[-71.11564269944249,42.30937723700997],[-71.1156271488516,42.3095074863221],[-71.11560019826781,42.30961983330797],[-71.11555075841358,42.30973562035872],[-71.11536,42.30986],[-71.114853,42.310394],[-71.114762,42.310548],[-71.114654,42.31075],[-71.114572,42.310982],[-71.11449500000001,42.31123],[-71.114232,42.312157],[-71.114149,42.312522],[-71.11410100000001,42.313027],[-71.11409999999999,42.313229],[-71.11409815643619,42.31328562374546],[-71.11333643784492,42.31307116942777],[-71.1126056486664,42.31285975471513],[-71.11199036285279,42.31263951944539],[-71.11086483607191,42.31216790594537],[-71.10882490226396,42.31128560599894],[-71.106998,42.310463],[-71.10744212841981,42.30976684287054],[-71.1090518925667,42.30733665948253]]]],"type":"MultiPolygon"} +},{ + "id": 1108721877, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":4592.268747, + "geom:bbox":"-75.1431030919,39.9525229058,-75.1416870326,39.9530497296", + "geom:latitude":39.952788, + "geom:longitude":-75.142382, + "iso:country":"US", + "lbl:latitude":39.952722, + "lbl:longitude":-75.142406, + "lbl:max_zoom":18.0, + "mps:latitude":39.952791, + "mps:longitude":-75.142394, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Elfreth's Alley" + ], + "name:eng_x_variant":[ + "Elfreth's Aly" + ], + "name:fra_x_preferred":[ + "Elfreth's Alley" + ], + "name:kor_x_preferred":[ + "\uc5d8\ud504\ub808\uc2a4 \uc568\ub9ac" + ], + "name:nld_x_preferred":[ + "Elfreth's Alley" + ], + "reversegeo:latitude":39.952791, + "reversegeo:longitude":-75.142394, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85839299, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3050836" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"26e7116c79ac32e8054ea1f536da5322", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108721877, + "neighbourhood_id":85839299, + "region_id":85688481 + } + ], + "wof:id":1108721877, + "wof:lastmodified":1566623898, + "wof:name":"Elfreth's Alley", + "wof:parent_id":85839299, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871417 + ], + "wof:tags":[] +}, + "bbox": [ + -75.1431030918653, + 39.95252290577668, + -75.14168703259631, + 39.95304972958564 +], + "geometry": {"coordinates":[[[-75.1431030918653,39.95270596986359],[-75.14302940328768,39.95304972958564],[-75.14171072016764,39.95288134425713],[-75.14168703259631,39.95252290577668],[-75.1431030918653,39.95270596986359]]],"type":"Polygon"} +},{ + "id": 1108712141, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":182823.9019, + "geom:bbox":"-71.1160230307,42.3239283148,-71.1107547641,42.3300678232", + "geom:latitude":42.327028, + "geom:longitude":-71.113183, + "iso:country":"US", + "lbl:latitude":42.326999, + "lbl:longitude":-71.113234, + "lbl:max_zoom":18.0, + "mps:latitude":42.326999, + "mps:longitude":-71.113234, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.326999, + "reversegeo:longitude":-71.113234, + "src:geom":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4d040f62ca8770610494cace7ecbc90d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712141, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108712141, + "wof:lastmodified":1607094451, + "wof:name":"South Huntington", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780947 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11602303074065, + 42.32392831476427, + -71.11075476405443, + 42.33006782317904 +], + "geometry": {"coordinates":[[[[-71.11231616792307,42.32392831476427],[-71.11239795976678,42.32395022803902],[-71.11250164985267,42.32397164590663],[-71.11291443944184,42.32402579351758],[-71.11346704485958,42.32407501857801],[-71.11398636079433,42.324139011099],[-71.1141315966551,42.32416406530788],[-71.11426599245151,42.32419808106059],[-71.11439748590934,42.32424607536355],[-71.11451899252228,42.32429776149474],[-71.1146253263049,42.3243567210577],[-71.11472538731685,42.32441959292262],[-71.11479346079487,42.32448700366064],[-71.11483191366244,42.3245426547312],[-71.11496507159443,42.32482323475466],[-71.115138176906,42.32511858079592],[-71.11532459801079,42.32539915825084],[-71.11539700263631,42.32548591550006],[-71.11547772963257,42.32556651964568],[-71.11566415073735,42.32571911347058],[-71.1157656836605,42.32579048787452],[-71.11587720342852,42.32584709510284],[-71.11594632388585,42.3258707139678],[-71.11594526705689,42.32595434693244],[-71.11602303074065,42.32613489871459],[-71.11601469736415,42.32624601037286],[-71.11596470900001,42.32637932996393],[-71.11581131423016,42.32656117461673],[-71.11576134075223,42.32662757801461],[-71.11568078841401,42.3267118931369],[-71.11556308581662,42.3267801856698],[-71.11544551586765,42.32682560565841],[-71.11534645395521,42.32687565645429],[-71.11527203544385,42.3269349573415],[-71.11504003510288,42.32730813117583],[-71.11403909759971,42.32946752231964],[-71.11395640147023,42.32948559801423],[-71.11394852014908,42.3294873208164],[-71.1124976051526,42.32980444334108],[-71.11249752375112,42.32980446107255],[-71.11227355115437,42.32985333092729],[-71.11220085111,42.32986895066513],[-71.1121605954793,42.32987624767688],[-71.11204348834936,42.3298974766593],[-71.11203818981299,42.32989885063085],[-71.11172439379891,42.3299698569473],[-71.11170745767738,42.32997368900907],[-71.11170090387375,42.32997517216195],[-71.11153029591213,42.3300137774137],[-71.11134005058643,42.33005682559001],[-71.11128668136637,42.33006782317904],[-71.11118438307041,42.32982032863331],[-71.11110087868455,42.32963800229611],[-71.11105739664211,42.32954306056815],[-71.11098051109479,42.32938391837973],[-71.11086087979744,42.32914659848083],[-71.1108016455089,42.32897051620666],[-71.11076912994768,42.3288127859725],[-71.11075476405443,42.32866399282177],[-71.11076602540447,42.32850283859934],[-71.11086800246781,42.32798708276525],[-71.11097203516263,42.3276284324143],[-71.11111959677829,42.32724280025383],[-71.11129272006596,42.32685434363992],[-71.11147937311389,42.32650848765859],[-71.11177401756547,42.32602187363135],[-71.11204054262269,42.32557765307482],[-71.11215204073771,42.32533965485866],[-71.11223874475684,42.32506971073766],[-71.11230604480318,42.3247789993888],[-71.1123322373155,42.32449046735783],[-71.11231616792307,42.32392831476427]]]],"type":"MultiPolygon"} +},{ + "id": 1108721879, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":17133.129675, + "geom:bbox":"-75.1504190461,39.9375667083,-75.1491371356,39.940583732", + "geom:latitude":39.939066, + "geom:longitude":-75.149773, + "iso:country":"US", + "lbl:latitude":39.940362, + "lbl:longitude":-75.149469, + "lbl:max_zoom":18.0, + "mps:latitude":39.939028, + "mps:longitude":-75.149781, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fabric Row" + ], + "reversegeo:latitude":39.939028, + "reversegeo:longitude":-75.149781, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420539461, + 102191575, + 1108721801, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0d0a9838fac7e19fef8a4d83ffdb8e79", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721801, + "microhood_id":1108721879, + "neighbourhood_id":420539461, + "region_id":85688481 + } + ], + "wof:id":1108721879, + "wof:lastmodified":1566623897, + "wof:name":"Tattoo Alley", + "wof:parent_id":420539461, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893307, + 85893311 + ], + "wof:tags":[] +}, + "bbox": [ + -75.15041904610163, + 39.93756670826983, + -75.14913713564228, + 39.94058373202788 +], + "geometry": {"coordinates":[[[-75.14980681402125,39.93756670826983],[-75.15041904610163,39.93766193877539],[-75.14971778483176,39.94058373202788],[-75.14913713564228,39.94050652056341],[-75.14980681402125,39.93756670826983]]],"type":"Polygon"} +},{ + "id": 1108712143, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":88253.869748, + "geom:bbox":"-71.1002989517,42.3263043212,-71.0953047559,42.331782", + "geom:latitude":42.329071, + "geom:longitude":-71.097855, + "iso:country":"US", + "lbl:latitude":42.329117, + "lbl:longitude":-71.098025, + "lbl:max_zoom":18.0, + "mps:latitude":42.329117, + "mps:longitude":-71.098025, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":42.329117, + "reversegeo:longitude":-71.098025, + "src:geom":"mz", + "wof:belongsto":[ + 85869493, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a135ad2189bdad07b78a14de47212ed5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712143, + "neighbourhood_id":85869493, + "region_id":85688645 + } + ], + "wof:id":1108712143, + "wof:lastmodified":1566624141, + "wof:name":"Roxbury Crossing", + "wof:parent_id":85869493, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780925 + ], + "wof:tags":[] +}, + "bbox": [ + -71.10029895172735, + 42.3263043211883, + -71.09530475585598, + 42.331782 +], + "geometry": {"coordinates":[[[[-71.09935040655068,42.3280150119304],[-71.09921,42.328242],[-71.099102,42.328427],[-71.099051,42.328537],[-71.098963,42.328964],[-71.098941,42.329133],[-71.09890900000001,42.329282],[-71.09890300000001,42.329311],[-71.09881799999999,42.329576],[-71.09876,42.329707],[-71.098738,42.329756],[-71.098645,42.329893],[-71.098495,42.330067],[-71.098403,42.330156],[-71.098038,42.330452],[-71.097949,42.330501],[-71.09768099999999,42.330689],[-71.09760300000001,42.330772],[-71.09750099999999,42.330979],[-71.097313,42.33147],[-71.097185,42.331782],[-71.09656138520046,42.33167404203017],[-71.09530475585598,42.33145649884013],[-71.09586727051013,42.33083227578553],[-71.09633969583109,42.3301640006808],[-71.09681242851839,42.32944609952846],[-71.09718451819749,42.32877746885577],[-71.09759066992871,42.32800970678584],[-71.09796321697722,42.32726663778192],[-71.09830556545586,42.3263043211883],[-71.09834680850976,42.32630650897929],[-71.09849562215256,42.32631666023205],[-71.09855417474223,42.32632000766903],[-71.09891908008434,42.32634086832255],[-71.09895791714291,42.32633963178034],[-71.09903303093178,42.32633989382403],[-71.09914139263216,42.32634575996781],[-71.09929319212098,42.32635383551704],[-71.09940941078011,42.32635972879736],[-71.09948873705535,42.32636574010152],[-71.09953277433908,42.32636907697589],[-71.09957763074321,42.32637142906344],[-71.09965892753425,42.32637569063929],[-71.09978184939422,42.32638160688876],[-71.09988141127516,42.3263901857935],[-71.09996894931895,42.32639940879231],[-71.09997296727448,42.32639985131566],[-71.10002692239257,42.32640578475415],[-71.10009176198727,42.32640648841124],[-71.10012005455216,42.32640679480798],[-71.10029895172735,42.32640769701429],[-71.1000358972569,42.3264938754109],[-71.0999183845644,42.32654610327423],[-71.09984657125233,42.32659833113755],[-71.09976822945734,42.32667667293255],[-71.09970294462818,42.32676154321047],[-71.09966377373067,42.32687252742004],[-71.09965724524776,42.32699004011253],[-71.099637659799,42.32713366673669],[-71.09958543193568,42.32730993577543],[-71.09950056165776,42.32759066054084],[-71.09935040655068,42.3280150119304]]]],"type":"MultiPolygon"} +},{ + "id": 1108721881, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":43723.622486, + "geom:bbox":"-75.1687253329,39.9585327902,-75.1653284982,39.9603757265", + "geom:latitude":39.959455, + "geom:longitude":-75.16702, + "iso:country":"US", + "lbl:latitude":39.960021, + "lbl:longitude":-75.166175, + "lbl:max_zoom":18.0, + "mps:latitude":39.959456, + "mps:longitude":-75.16702, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Franklintown" + ], + "name:eng_x_variant":[ + "Franklin Town" + ], + "name:fra_x_preferred":[ + "Franklintown" + ], + "reversegeo:latitude":39.959456, + "reversegeo:longitude":-75.16702, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871427, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5492157" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"485f3447411050d267426b9c37066308", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108721881, + "neighbourhood_id":85871427, + "region_id":85688481 + } + ], + "wof:id":1108721881, + "wof:lastmodified":1566623902, + "wof:name":"Franklintown", + "wof:parent_id":85871427, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871423 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16872533294105, + 39.95853279018639, + -75.16532849815862, + 39.96037572650464 +], + "geometry": {"coordinates":[[[-75.16872533294105,39.95892366372965],[-75.16840220469648,39.96037572650464],[-75.16532849815862,39.95999234415955],[-75.16562656237579,39.95853279018639],[-75.16872533294105,39.95892366372965]]],"type":"Polygon"} +},{ + "id": 1108721883, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":153123.159043, + "geom:bbox":"-75.1639341495,39.9449066593,-75.1589434501,39.9491976297", + "geom:latitude":39.947052, + "geom:longitude":-75.161444, + "iso:country":"US", + "lbl:latitude":39.947383, + "lbl:longitude":-75.162087, + "lbl:max_zoom":18.0, + "mps:latitude":39.94705, + "mps:longitude":-75.161444, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":39.94705, + "reversegeo:longitude":-75.161444, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871431, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"df04db0563e153aa44971b566196904f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108721883, + "neighbourhood_id":85871431, + "region_id":85688481 + } + ], + "wof:id":1108721883, + "wof:lastmodified":1566623902, + "wof:name":"Gayborhood", + "wof:parent_id":85871431, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893343 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16393414951142, + 39.94490665928802, + -75.15894345009802, + 39.94919762965049 +], + "geometry": {"coordinates":[[[-75.15978362950096,39.94490665928802],[-75.16393414951142,39.94541243437379],[-75.16311335562817,39.94919762965049],[-75.15894345009802,39.94868320689722],[-75.15978362950096,39.94490665928802]]],"type":"Polygon"} +},{ + "id": 1108712147, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":565441.907724, + "geom:bbox":"-71.144219735,42.348926602,-71.130802,42.3573281652", + "geom:latitude":42.3531, + "geom:longitude":-71.136702, + "iso:country":"US", + "lbl:latitude":42.352995, + "lbl:longitude":-71.135686, + "lbl:max_zoom":18.0, + "mps:latitude":42.352995, + "mps:longitude":-71.135686, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Union Square" + ], + "name:deu_x_preferred":[ + "Union Square" + ], + "name:eng_x_variant":[ + "Union Sq" + ], + "name:eus_x_preferred":[ + "Union Square" + ], + "name:fra_x_preferred":[ + "Union Square" + ], + "name:ita_x_preferred":[ + "Union Square" + ], + "name:jpn_x_preferred":[ + "\u30e6\u30cb\u30aa\u30f3\u30b9\u30af\u30a8\u30a2" + ], + "name:kor_x_preferred":[ + "\uc720\ub2c8\uc5b8 \uc2a4\ud018\uc5b4" + ], + "name:nld_x_preferred":[ + "Union Square" + ], + "name:rus_x_preferred":[ + "\u042e\u043d\u0438\u043e\u043d-\u0441\u043a\u0432\u0435\u0440" + ], + "name:swe_x_preferred":[ + "Union Square" + ], + "reversegeo:latitude":42.352995, + "reversegeo:longitude":-71.135686, + "src:geom":"mz", + "wof:belongsto":[ + 85802869, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7bf7df143f8f67a5637fc2075530b7f5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712147, + "neighbourhood_id":85802869, + "region_id":85688645 + } + ], + "wof:id":1108712147, + "wof:lastmodified":1566624141, + "wof:name":"Union Square", + "wof:parent_id":85802869, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780949, + 1108713421 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14421973496268, + 42.3489266019919, + -71.130802, + 42.35732816516867 +], + "geometry": {"coordinates":[[[[-71.14298889477548,42.35164100027234],[-71.14299233002789,42.35164699482882],[-71.14421973496268,42.35491739780006],[-71.14258688365079,42.3544908434837],[-71.14068809980257,42.35398962430501],[-71.13962103774794,42.35387487111727],[-71.13946563390168,42.35459333555876],[-71.1388326140879,42.35452905833689],[-71.13857907897199,42.35519562231369],[-71.1386603184871,42.35548098507713],[-71.13834738087614,42.3566366344704],[-71.13826098961685,42.35686247254089],[-71.13809368815014,42.35732816516867],[-71.13811373229755,42.35727237120662],[-71.138042,42.357257],[-71.135065,42.356866],[-71.132019,42.356449],[-71.131934,42.356444],[-71.131457,42.35639],[-71.130802,42.356336],[-71.13274023206428,42.35554744293078],[-71.13227838085832,42.35404926807871],[-71.13173158292224,42.35204446913674],[-71.13159268003717,42.35163972739264],[-71.13137663061715,42.35116458087831],[-71.13281965725992,42.35048252905698],[-71.13403490542119,42.34983920103564],[-71.13481983304303,42.34940476307929],[-71.13518904961835,42.34922334916875],[-71.13553834778826,42.34907508304782],[-71.13586733437397,42.34897153290462],[-71.13603131508199,42.34893861920992],[-71.13619577645812,42.3489266019919],[-71.13634244419448,42.34892904049083],[-71.13647644289628,42.3489485029734],[-71.13733623714775,42.34928516050653],[-71.14003739293997,42.35033795386697],[-71.1402331117355,42.35258059188705],[-71.14298889477548,42.35164100027234]]]],"type":"MultiPolygon"} +},{ + "id": 1108721885, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":98695.502514, + "geom:bbox":"-75.1599489507,39.9357427813,-75.1555830456,39.9391811908", + "geom:latitude":39.93754, + "geom:longitude":-75.157738, + "iso:country":"US", + "lbl:latitude":39.935568, + "lbl:longitude":-75.158664, + "lbl:max_zoom":18.0, + "mps:latitude":39.937566, + "mps:longitude":-75.157739, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Italian Market" + ], + "name:eng_x_variant":[ + "South 9th Street Curb Market" + ], + "name:fra_x_preferred":[ + "march\u00e9 italien de Philadelphie" + ], + "name:jpn_x_preferred":[ + "\u30a4\u30bf\u30ea\u30a2\u30f3\u30fb\u30de\u30fc\u30b1\u30c3\u30c8\u5730\u533a" + ], + "reversegeo:latitude":39.937566, + "reversegeo:longitude":-75.157739, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85805405, + 102191575, + 1108721801, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6092834" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8833f495a079cef6795dba2b1d484191", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721801, + "microhood_id":1108721885, + "neighbourhood_id":85805405, + "region_id":85688481 + } + ], + "wof:id":1108721885, + "wof:lastmodified":1566623902, + "wof:name":"Italian Market", + "wof:parent_id":85805405, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871441 + ], + "wof:tags":[] +}, + "bbox": [ + -75.15994895074522, + 39.93574278128526, + -75.15558304558843, + 39.93918119075858 +], + "geometry": {"coordinates":[[[-75.15941757583177,39.93918119075858],[-75.15941599999999,39.939181],[-75.159046,39.939138],[-75.15863299999999,39.939091],[-75.158294,39.939043],[-75.157848,39.938982],[-75.15717100000001,39.938792],[-75.156781,39.938682],[-75.156317,39.938569],[-75.15558304558843,39.93836533980235],[-75.15610680337517,39.93574278128526],[-75.15625421767317,39.93578284394334],[-75.15932183943046,39.93660327766165],[-75.15994895074522,39.93677094991532],[-75.15968367180726,39.93799500116798],[-75.15941757583177,39.93918119075858]]],"type":"Polygon"} +},{ + "id": 1108712161, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":294683.120077, + "geom:bbox":"-71.1544391478,42.3525947139,-71.145345521,42.358255", + "geom:latitude":42.355918, + "geom:longitude":-71.149531, + "iso:country":"US", + "lbl:latitude":42.350777, + "lbl:longitude":-71.168207, + "lbl:max_zoom":18.0, + "mps:latitude":42.355732, + "mps:longitude":-71.14899, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Faneuil" + ], + "reversegeo:latitude":42.355732, + "reversegeo:longitude":-71.14899, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807537, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5423418df6d4b40117696adc90537e05", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712161, + "neighbourhood_id":85807537, + "region_id":85688645 + } + ], + "wof:id":1108712161, + "wof:lastmodified":1566624128, + "wof:name":"Faneuil Square", + "wof:parent_id":85807537, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85818899 + ], + "wof:tags":[] +}, + "bbox": [ + -71.15443914775994, + 42.35259471393321, + -71.14534552099792, + 42.358255 +], + "geometry": {"coordinates":[[[[-71.15443914775994,42.35563158762289],[-71.15408322912016,42.35671394179008],[-71.15369560396297,42.3577717572792],[-71.153248,42.357785],[-71.152449,42.357802],[-71.15194700000001,42.357827],[-71.150921,42.35789],[-71.15047,42.357925],[-71.150132,42.35796],[-71.14968500000001,42.35802],[-71.14885099999999,42.358125],[-71.14798,42.358221],[-71.14795100000001,42.358219],[-71.14785500000001,42.358227],[-71.14768599999999,42.35824],[-71.147288,42.358255],[-71.14646999999999,42.358253],[-71.145945,42.358226],[-71.145432,42.358191],[-71.14534552099792,42.35818051309113],[-71.14604292122401,42.35575497924994],[-71.14615141960874,42.35537568711548],[-71.14630371337036,42.35538829940042],[-71.14803884160551,42.35259471393321],[-71.15092888689654,42.3533284905875],[-71.15078256218841,42.35357584534501],[-71.15145973362841,42.35377611944897],[-71.15174410223257,42.35387827617662],[-71.15203589182191,42.35400134763563],[-71.15132160779501,42.35527830741145],[-71.15147246929357,42.35532259202345],[-71.1516624142857,42.35537664819453],[-71.1517796156335,42.355401575639],[-71.15189142545064,42.35542081375807],[-71.15201155270209,42.35543738937127],[-71.15213453398178,42.35545146874259],[-71.15443914775994,42.35563158762289]]]],"type":"MultiPolygon"} +},{ + "id": 1108721887, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000096, + "geom:area_square_m":913694.054998, + "geom:bbox":"-75.181935768,39.9108607531,-75.1598528056,39.9180185188", + "geom:latitude":39.914433, + "geom:longitude":-75.170914, + "iso:country":"US", + "lbl:latitude":39.915398, + "lbl:longitude":-75.17086, + "lbl:max_zoom":18.0, + "mps:latitude":39.914433, + "mps:longitude":-75.170914, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Marconi Plaza" + ], + "name:eng_x_preferred":[ + "Marconi Plaza" + ], + "name:eng_x_variant":[ + "Marconi Plz" + ], + "name:fra_x_preferred":[ + "Marconi Plaza" + ], + "reversegeo:latitude":39.914433, + "reversegeo:longitude":-75.170914, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893371, + 102191575, + 1108721801, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6757790" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"39e69394cb90a8d26eb56915d6b7dfc3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721801, + "microhood_id":1108721887, + "neighbourhood_id":85893371, + "region_id":85688481 + } + ], + "wof:id":1108721887, + "wof:lastmodified":1566623902, + "wof:name":"Marconi Plaza", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871395 + ], + "wof:tags":[] +}, + "bbox": [ + -75.18193576800738, + 39.91086075312879, + -75.15985280559613, + 39.9180185188075 +], + "geometry": {"coordinates":[[[-75.15985280559613,39.9153244634194],[-75.16081808962058,39.91086075312879],[-75.1723051871535,39.91234894672695],[-75.17267655191138,39.91239618084741],[-75.17334814341122,39.91249004679879],[-75.17395646814732,39.91257833536721],[-75.17460213572831,39.91266253549217],[-75.1751996774214,39.91274045498569],[-75.17579867350273,39.9128185616677],[-75.17644703987564,39.91290310202513],[-75.17703663701779,39.91297997665455],[-75.1776372860008,39.91305828823242],[-75.17844485599201,39.91316230550184],[-75.17916801512175,39.91317852086019],[-75.17941932562147,39.91318415495082],[-75.18101876223491,39.91323976176029],[-75.18193576800738,39.91328797041691],[-75.18097336769733,39.9180185188075],[-75.17126634331676,39.91673693998956],[-75.17126634331679,39.91673693998945],[-75.17126634331657,39.91673693998953],[-75.17067178712045,39.91667033054157],[-75.17017252449632,39.91660765793846],[-75.16929749691117,39.91650657608592],[-75.16872895083992,39.91643427716564],[-75.1684167593327,39.91639193199835],[-75.16822545658728,39.91636979151127],[-75.16769206021908,39.91630507795902],[-75.16754939642055,39.91628659338877],[-75.16715410640683,39.9162371200967],[-75.1669347659428,39.91620947312406],[-75.16665126328465,39.91617373776845],[-75.16629508238701,39.91612884044767],[-75.16609518915637,39.9161036429636],[-75.16556558013721,39.91603688108698],[-75.16523104926952,39.9159947092751],[-75.16509218510235,39.91597720288853],[-75.16454700250328,39.91590847323035],[-75.16396448874538,39.91583503358309],[-75.16385073930651,39.91582069248155],[-75.1635213495791,39.91577916410072],[-75.16294817978277,39.91570689772606],[-75.162803331143,39.91568863450753],[-75.16256449322813,39.91565851994524],[-75.16241703511881,39.91563992703934],[-75.16194631002409,39.91558057169949],[-75.16148599763186,39.91552252801561],[-75.16087405162892,39.91544536168261],[-75.16050898618778,39.91539932474412],[-75.16044750134699,39.91539157036259],[-75.15988229872252,39.91532769205688],[-75.15985280559613,39.9153244634194]]],"type":"Polygon"} +},{ + "id": 1108721891, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":144174.511196, + "geom:bbox":"-75.1624364255,39.9513260753,-75.1547159364,39.9542789363", + "geom:latitude":39.952798, + "geom:longitude":-75.158584, + "iso:country":"US", + "lbl:latitude":39.951319, + "lbl:longitude":-75.156613, + "lbl:max_zoom":18.0, + "mps:latitude":39.952798, + "mps:longitude":-75.158584, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Market East" + ], + "name:fra_x_preferred":[ + "Market East" + ], + "reversegeo:latitude":39.952798, + "reversegeo:longitude":-75.158584, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893325, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6770674" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9fd1ced5a324edc5c2f366baf242659f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108721891, + "neighbourhood_id":85893325, + "region_id":85688481 + } + ], + "wof:id":1108721891, + "wof:lastmodified":1566623899, + "wof:name":"Market East", + "wof:parent_id":85893325, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871425 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16243642547423, + 39.95132607528503, + -75.15471593642906, + 39.95427893632347 +], + "geometry": {"coordinates":[[[-75.16229918558719,39.95221725574984],[-75.16241403424604,39.95220075928428],[-75.16243642547423,39.95219237312313],[-75.16201150879301,39.95427893632347],[-75.15786229632556,39.95374932094017],[-75.15471593642906,39.9533495432305],[-75.15515775781211,39.95132607528503],[-75.16229918558719,39.95221725574984]]],"type":"Polygon"} +},{ + "id": 1108721899, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000073, + "geom:area_square_m":694789.95317, + "geom:bbox":"-75.2586061698,39.9820376906,-75.2423995259,39.9922168512", + "geom:latitude":39.987097, + "geom:longitude":-75.250538, + "iso:country":"US", + "lbl:latitude":39.989367, + "lbl:longitude":-75.245534, + "lbl:max_zoom":18.0, + "mps:latitude":39.987127, + "mps:longitude":-75.250551, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Overbrook Farms" + ], + "reversegeo:latitude":39.987127, + "reversegeo:longitude":-75.250551, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85839965, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7113567" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e782dabfeb0a61ddb9e9e9d8c3c480d4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108721899, + "neighbourhood_id":85839965, + "region_id":85688481 + } + ], + "wof:id":1108721899, + "wof:lastmodified":1566623899, + "wof:name":"Overbrook Farms", + "wof:parent_id":85839965, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871453 + ], + "wof:tags":[] +}, + "bbox": [ + -75.25860616975022, + 39.98203769061173, + -75.24239952594611, + 39.99221685116942 +], + "geometry": {"coordinates":[[[-75.25567767050073,39.98203769061173],[-75.25860616975022,39.98548915109257],[-75.25854500006314,39.98552699977123],[-75.25695000037285,39.98670999996371],[-75.25687399999052,39.9867710002308],[-75.25628699947872,39.98718999979234],[-75.25611899961895,39.98730100033376],[-75.25567599994767,39.98749900035924],[-75.25399899959868,39.98830399954451],[-75.25159999981305,39.98942899999896],[-75.25154599949838,39.98945400011382],[-75.2514379999201,39.98950400029266],[-75.25078599940375,39.98980300033968],[-75.25033600017802,39.99001699989724],[-75.25012999989984,39.9901160002921],[-75.25000000014877,39.99017999981776],[-75.24976799971198,39.99029000019204],[-75.24921399940888,39.9905470002843],[-75.24794799956706,39.99113799996807],[-75.24568899976671,39.9921910000502],[-75.24563496123383,39.99221685116942],[-75.24239952594611,39.98806309959937],[-75.24544550480918,39.98663148024296],[-75.24547547656613,39.9866173931469],[-75.24669637137536,39.98607073106117],[-75.25567767050073,39.98203769061173]]],"type":"Polygon"} +},{ + "id": 1108712227, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000629, + "geom:area_square_m":5744288.281962, + "geom:bbox":"-71.029459,42.34667,-70.986259,42.38035", + "geom:latitude":42.36315, + "geom:longitude":-71.011893, + "iso:country":"US", + "lbl:latitude":42.361221, + "lbl:longitude":-71.016981, + "lbl:max_zoom":18.0, + "mps:latitude":42.361221, + "mps:longitude":-71.016981, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.361221, + "reversegeo:longitude":-71.016981, + "src:geom":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 102084423, + 404476573, + 85950361, + 85815995, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"299da8e446c4637a6ae3a1bff17bb0cf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712227, + "neighbourhood_id":85815995, + "region_id":85688645 + } + ], + "wof:id":1108712227, + "wof:lastmodified":1613773792, + "wof:name":"Logan International Airport District", + "wof:parent_id":85815995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.029459, + 42.34667, + -70.986259, + 42.38035 +], + "geometry": {"coordinates":[[[-71.02633899999999,42.357134],[-71.02629899999999,42.357203],[-71.02621600000001,42.357343],[-71.025971,42.357841],[-71.025758,42.358341],[-71.025533,42.359007],[-71.02552,42.359043],[-71.025471,42.359224],[-71.02531500000001,42.359977],[-71.02498799999999,42.361807],[-71.02481,42.362849],[-71.024638,42.364054],[-71.024618,42.364432],[-71.024618,42.364784],[-71.024655,42.365185],[-71.024689,42.365433],[-71.024721,42.365621],[-71.024762,42.365839],[-71.024829,42.366091],[-71.024908,42.366333],[-71.02502200000001,42.366675],[-71.02506,42.366775],[-71.02506700000001,42.366791],[-71.025105,42.366889],[-71.025865,42.368843],[-71.025915,42.368971],[-71.02597900000001,42.369135],[-71.02602,42.369232],[-71.026044,42.369316],[-71.026053,42.369347],[-71.026066,42.36939],[-71.026095,42.369568],[-71.026191,42.370069],[-71.026224,42.370199],[-71.026259,42.370332],[-71.026312,42.370486],[-71.026355,42.370577],[-71.026438,42.370755],[-71.026533,42.370903],[-71.02665500000001,42.371049],[-71.026794,42.371193],[-71.028035,42.372324],[-71.02880999999999,42.373054],[-71.028964,42.373211],[-71.029084,42.373361],[-71.029201,42.373526],[-71.029338,42.37381],[-71.02939000000001,42.373992],[-71.02943500000001,42.374152],[-71.02945200000001,42.374327],[-71.029459,42.374534],[-71.029443,42.374838],[-71.029421,42.374933],[-71.029382,42.375073],[-71.02930000000001,42.375281],[-71.029185,42.375484],[-71.029121,42.375583],[-71.029065,42.375672],[-71.02894999999999,42.375807],[-71.028814,42.375951],[-71.02869,42.376059],[-71.028046,42.376727],[-71.027704,42.377062],[-71.026279,42.378705],[-71.025524,42.37835],[-71.02439800000001,42.379072],[-71.023866,42.379362],[-71.02346199999999,42.379538],[-71.02313100000001,42.379665],[-71.022581,42.379858],[-71.02198300000001,42.380009],[-71.021343,42.380107],[-71.020715,42.38016],[-71.01911,42.380268],[-71.01772,42.380314],[-71.016254,42.38035],[-71.016547,42.380244],[-71.019418,42.3777],[-71.019412,42.377692],[-71.019463,42.377652],[-71.01946700000001,42.377649],[-71.019468,42.377624],[-71.01949999999999,42.377603],[-71.019527,42.377588],[-71.01954600000001,42.377593],[-71.01959600000001,42.377559],[-71.01961300000001,42.377509],[-71.01961300000001,42.377445],[-71.01959100000001,42.37739],[-71.019565,42.377332],[-71.01951,42.377225],[-71.019462,42.377133],[-71.019358,42.37704],[-71.019273,42.376945],[-71.019205,42.376892],[-71.01912400000001,42.376812],[-71.01907,42.376746],[-71.018985,42.37668],[-71.01890299999999,42.376624],[-71.018855,42.376626],[-71.018852,42.376578],[-71.01880800000001,42.376535],[-71.01871199999999,42.376469],[-71.01865100000001,42.376434],[-71.018598,42.376427],[-71.018524,42.376381],[-71.018494,42.376368],[-71.018429,42.376368],[-71.01830200000001,42.376312],[-71.018064,42.376219],[-71.01790200000001,42.376158],[-71.01784000000001,42.376124],[-71.01778899999999,42.376091],[-71.01769400000001,42.376046],[-71.017622,42.37603],[-71.017487,42.375998],[-71.01743999999999,42.375988],[-71.017387,42.375957],[-71.01735100000001,42.375933],[-71.01727099999999,42.375879],[-71.01720899999999,42.375825],[-71.017173,42.375797],[-71.017105,42.375747],[-71.01706900000001,42.375747],[-71.01706299999999,42.375774],[-71.01703999999999,42.375781],[-71.01696800000001,42.375752],[-71.016913,42.37572],[-71.016857,42.375705],[-71.016847,42.375674],[-71.016847,42.375647],[-71.016822,42.37562],[-71.01673700000001,42.375596],[-71.016673,42.375562],[-71.016614,42.375549],[-71.016519,42.375549],[-71.016431,42.375548],[-71.016352,42.375544],[-71.016306,42.375534],[-71.016274,42.375509],[-71.01624200000001,42.375477],[-71.016223,42.375442],[-71.01622,42.375388],[-71.01622399999999,42.375342],[-71.016198,42.375305],[-71.016167,42.375291],[-71.016126,42.375293],[-71.016097,42.37531],[-71.01607300000001,42.37533],[-71.016034,42.375327],[-71.01601100000001,42.37531],[-71.015952,42.375307],[-71.015913,42.37529],[-71.01586500000001,42.375263],[-71.01582500000001,42.375236],[-71.015767,42.375202],[-71.01571800000001,42.375173],[-71.015693,42.375141],[-71.01567,42.37511],[-71.01568399999999,42.375063],[-71.015681,42.375025],[-71.015694,42.374995],[-71.015727,42.374967],[-71.015788,42.37496],[-71.015792,42.374938],[-71.015788,42.374903],[-71.015773,42.37488],[-71.01576,42.374827],[-71.015764,42.37479],[-71.01581,42.374708],[-71.015833,42.374684],[-71.015869,42.37466],[-71.01593099999999,42.3746],[-71.016013,42.374544],[-71.016092,42.374518],[-71.016158,42.37448],[-71.0162,42.374456],[-71.016201,42.374393],[-71.016195,42.374344],[-71.016203,42.374273],[-71.013113,42.371974],[-71.01276799999999,42.371949],[-71.012137,42.371729],[-71.01201399999999,42.371574],[-71.011898,42.371565],[-71.011563,42.371707],[-71.011562,42.371741],[-71.011431,42.371779],[-71.011399,42.371808],[-71.01121500000001,42.371879],[-71.011123,42.371966],[-71.010965,42.372058],[-71.010848,42.37211],[-71.010605,42.372294],[-71.010341,42.372535],[-71.010256,42.372655],[-71.010124,42.3728],[-71.010097,42.372887],[-71.01012299999999,42.373018],[-71.01013500000001,42.373096],[-71.010232,42.373183],[-71.010375,42.373281],[-71.01045999999999,42.37333],[-71.010498,42.373393],[-71.010459,42.373513],[-71.010419,42.373562],[-71.01035299999999,42.373687],[-71.010261,42.37376],[-71.01012900000001,42.373851],[-71.01003799999999,42.373914],[-71.009873,42.374049],[-71.009643,42.374237],[-71.009603,42.374284],[-71.00949799999999,42.374332],[-71.00941400000001,42.374409],[-71.009263,42.37453],[-71.009294,42.374574],[-71.009275,42.374637],[-71.00917,42.37469],[-71.00906500000001,42.374728],[-71.00902499999999,42.374791],[-71.009018,42.374844],[-71.00896,42.374858],[-71.008906,42.374902],[-71.008926,42.374979],[-71.008905,42.375027],[-71.008867,42.375066],[-71.00880100000001,42.375075],[-71.008762,42.375085],[-71.00879399999999,42.375153],[-71.008865,42.375202],[-71.008962,42.375275],[-71.00902000000001,42.375414],[-71.00906500000001,42.375517],[-71.008967,42.375614],[-71.00874899999999,42.375715],[-71.00851400000001,42.375771],[-71.00814200000001,42.376458],[-71.007926,42.376894],[-71.007064,42.378439],[-71.006556,42.378834],[-71.00633999999999,42.378876],[-71.006117,42.378866],[-71.005993,42.378952],[-71.005751,42.379033],[-71.005606,42.379202],[-71.005168,42.379244],[-71.004913,42.379146],[-71.004184,42.379028],[-71.003382,42.378608],[-71.00048099999999,42.377753],[-71.000479,42.377753],[-71.00030099999999,42.377805],[-71.000253,42.377792],[-71.000085,42.377769],[-71.006123,42.376052],[-71.006518,42.3751],[-71.01036000000001,42.365039],[-71.00069499999999,42.364641],[-71.00069499999999,42.364625],[-71.00067900000001,42.364624],[-71.000674,42.364607],[-71.000637,42.364588],[-71.00062,42.36458],[-71.001576,42.364616],[-71.001576,42.364614],[-71.001591,42.364205],[-71.00181499999999,42.363983],[-71.00185500000001,42.363751],[-71.00180400000001,42.363635],[-71.00116800000001,42.36303],[-71.000883,42.362836],[-71.000857,42.362758],[-71.000688,42.362748],[-71.000506,42.36265],[-71.000181,42.362465],[-70.999831,42.362192],[-70.999234,42.361705],[-70.998985,42.361714],[-70.99872499999999,42.361703],[-70.99847699999999,42.361566],[-70.998192,42.361274],[-70.998063,42.361002],[-70.99776300000001,42.360952],[-70.997371,42.361038],[-70.997201,42.361182],[-70.99695199999999,42.361162],[-70.996636,42.361509],[-70.996324,42.36145],[-70.99606300000001,42.361314],[-70.995846,42.361338],[-70.994613,42.361462],[-70.994168,42.36145],[-70.993877,42.361672],[-70.993657,42.36187],[-70.99303,42.361506],[-70.99140300000001,42.361499],[-70.989311,42.362093],[-70.98835200000001,42.361972],[-70.987672,42.361627],[-70.987083,42.360949],[-70.98656200000001,42.359573],[-70.986761,42.359373],[-70.98626299999999,42.357965],[-70.986259,42.357934],[-70.986322,42.357641],[-70.98974,42.355136],[-70.991265,42.35399],[-70.991741,42.35383],[-70.992141,42.353859],[-70.992577,42.354041],[-70.993098,42.354115],[-70.99415500000001,42.353949],[-70.994533,42.35404],[-70.995885,42.355037],[-70.996072,42.35516],[-70.996267,42.355288],[-70.996449,42.355434],[-70.99672700000001,42.355635],[-70.996877,42.355716],[-70.99700799999999,42.355727],[-70.997151,42.355717],[-70.99725599999999,42.355681],[-70.997401,42.355631],[-70.997479,42.355564],[-70.997545,42.355526],[-70.997624,42.355439],[-70.99769000000001,42.35541],[-70.99776900000001,42.355245],[-70.99784699999999,42.355227],[-70.99796499999999,42.355208],[-70.998069,42.355228],[-70.99825199999999,42.355229],[-70.998474,42.355248],[-70.99861799999999,42.355317],[-70.99863000000001,42.355385],[-70.99858999999999,42.355433],[-70.99851200000001,42.355452],[-70.998368,42.355422],[-70.99817299999999,42.355402],[-70.998003,42.35545],[-70.99789800000001,42.355527],[-70.99783100000001,42.355623],[-70.997792,42.355701],[-70.997727,42.355759],[-70.997621,42.355826],[-70.99749,42.355874],[-70.99728,42.35595],[-70.997176,42.35598],[-70.99752599999999,42.356311],[-70.997721,42.356408],[-70.99793,42.356525],[-70.998137,42.356642],[-70.998254,42.356692],[-70.998424,42.35676],[-70.998475,42.35676],[-70.99852799999999,42.356731],[-70.998553,42.356741],[-70.998632,42.356819],[-70.999075,42.356956],[-70.99915300000001,42.356957],[-70.999337,42.356939],[-70.999415,42.356939],[-70.999414,42.356968],[-70.999675,42.356969],[-70.999937,42.35697],[-71.00021099999999,42.356971],[-71.00049799999999,42.356962],[-71.00073399999999,42.356935],[-71.000917,42.356887],[-71.001086,42.356869],[-71.001426,42.356821],[-71.001727,42.356765],[-71.002211,42.35667],[-71.002486,42.356603],[-71.002826,42.356537],[-71.002852,42.356557],[-71.002983,42.356557],[-71.003075,42.356528],[-71.00332299999999,42.356433],[-71.003441,42.356394],[-71.003586,42.356308],[-71.00361100000001,42.356308],[-71.00366699999999,42.356361],[-71.003733,42.356304],[-71.003837,42.356227],[-71.004074,42.356063],[-71.004323,42.355919],[-71.00443799999999,42.355837],[-71.004546,42.355804],[-71.004634,42.355731],[-71.00474199999999,42.35578],[-71.004807,42.355751],[-71.004897,42.355665],[-71.00496200000001,42.355635],[-71.005145,42.355608],[-71.00524900000001,42.355589],[-71.005354,42.355589],[-71.005589,42.3556],[-71.005706,42.355639],[-71.005824,42.355659],[-71.005965,42.355693],[-71.006046,42.355612],[-71.00609900000001,42.355544],[-71.00617699999999,42.355496],[-71.00625599999999,42.355418],[-71.006348,42.355341],[-71.006388,42.355283],[-71.00645400000001,42.355148],[-71.006468,42.355041],[-71.00643100000001,42.354916],[-71.006365,42.354857],[-71.00633999999999,42.35475],[-71.006275,42.354674],[-71.006224,42.354556],[-71.006199,42.354479],[-71.00612099999999,42.354401],[-71.005926,42.354274],[-71.005796,42.354167],[-71.005706,42.354089],[-71.005588,42.354069],[-71.00553600000001,42.354079],[-71.00545700000001,42.354068],[-71.005301,42.354038],[-71.005222,42.354086],[-71.005078,42.354144],[-71.004987,42.354154],[-71.004946,42.354309],[-71.00487099999999,42.354464],[-71.004814,42.354521],[-71.004801,42.354559],[-71.004774,42.354627],[-71.004734,42.354704],[-71.004668,42.35478],[-71.00458999999999,42.354801],[-71.004498,42.35484],[-71.00451099999999,42.354878],[-71.00452300000001,42.354946],[-71.004497,42.354985],[-71.00440500000001,42.355052],[-71.00431399999999,42.35508],[-71.00413,42.35507],[-71.003947,42.355091],[-71.00382,42.355115],[-71.00364,42.355114],[-71.00348,42.355057],[-71.00335699999999,42.354945],[-71.003364,42.354866],[-71.003376,42.354773],[-71.00391,42.353577],[-71.004536,42.351939],[-71.004577,42.351666],[-71.004615,42.351058],[-71.00478,42.350358],[-71.004957,42.349278],[-71.005003,42.348925],[-71.00498399999999,42.348088],[-71.004972,42.34786],[-71.00494999999999,42.347736],[-71.004912,42.347586],[-71.004886,42.347484],[-71.00482599999999,42.347363],[-71.004775,42.34727],[-71.004766,42.347125],[-71.004789,42.347071],[-71.004929,42.347114],[-71.005402,42.34706],[-71.00587,42.346972],[-71.00761300000001,42.34667],[-71.007733,42.346699],[-71.011684,42.349237],[-71.014043,42.350752],[-71.014065,42.350868],[-71.01520499999999,42.351607],[-71.015336,42.351578],[-71.016617,42.352403],[-71.016834,42.352525],[-71.02019900000001,42.354154],[-71.024096,42.356054],[-71.02633899999999,42.357134]]],"type":"Polygon"} +},{ + "id": 1108721901, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":517038.640188, + "geom:bbox":"-75.1826403119,39.9536704572,-75.1646961011,39.9671323287", + "geom:latitude":39.960343, + "geom:longitude":-75.173369, + "iso:country":"US", + "lbl:latitude":39.961542, + "lbl:longitude":-75.17537, + "lbl:max_zoom":18.0, + "mps:latitude":39.960353, + "mps:longitude":-75.173369, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":39.960353, + "reversegeo:longitude":-75.173369, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871427, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"502b318d823c71dba394e8db3e3e7961", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108721901, + "neighbourhood_id":85871427, + "region_id":85688481 + } + ], + "wof:id":1108721901, + "wof:lastmodified":1566623909, + "wof:name":"Parkway Museums District", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893359 + ], + "wof:tags":[] +}, + "bbox": [ + -75.18264031188865, + 39.95367045719527, + -75.16469610108291, + 39.96713232870245 +], + "geometry": {"coordinates":[[[-75.18016052025025,39.96713232870245],[-75.16469610108291,39.95555503064696],[-75.16510589448941,39.95367045719527],[-75.16701065864518,39.95391036541088],[-75.18264031188865,39.96558102794009],[-75.18016052025025,39.96713232870245]]],"type":"Polygon"} +},{ + "id": 1108721903, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":83493.987708, + "geom:bbox":"-75.1732559183,39.9525920252,-75.1651058945,39.9546704309", + "geom:latitude":39.95363, + "geom:longitude":-75.169191, + "iso:country":"US", + "lbl:latitude":39.952265, + "lbl:longitude":-75.168158, + "lbl:max_zoom":18.0, + "mps:latitude":39.953629, + "mps:longitude":-75.169192, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Penn Center" + ], + "name:eng_x_variant":[ + "Penn Ctr" + ], + "name:fra_x_preferred":[ + "Penn Center" + ], + "reversegeo:latitude":39.953629, + "reversegeo:longitude":-75.169192, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871427, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7163164" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4d34388db224f1768d5f722d393eb415", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108721903, + "neighbourhood_id":85871427, + "region_id":85688481 + } + ], + "wof:id":1108721903, + "wof:lastmodified":1566623909, + "wof:name":"Penn Center", + "wof:parent_id":85871427, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871429 + ], + "wof:tags":[] +}, + "bbox": [ + -75.17325591830611, + 39.95259202521503, + -75.16510589448941, + 39.95467043093906 +], + "geometry": {"coordinates":[[[-75.17325591830611,39.95358202758035],[-75.17304523970533,39.95467043093906],[-75.16510589448941,39.95367045719527],[-75.165340395466,39.95259202521503],[-75.17317748972151,39.9535726286552],[-75.17325591830611,39.95358202758035]]],"type":"Polygon"} +},{ + "id": 1108712229, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":213776.818557, + "geom:bbox":"-71.0694409371,42.3523677606,-71.0620207266,42.3577093708", + "geom:latitude":42.355118, + "geom:longitude":-71.065744, + "iso:country":"US", + "lbl:latitude":42.354747, + "lbl:longitude":-71.066043, + "lbl:max_zoom":18.0, + "mps:latitude":42.354747, + "mps:longitude":-71.066043, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ast_x_preferred":[ + "Boston Common" + ], + "name:ceb_x_preferred":[ + "Boston Common" + ], + "name:deu_x_preferred":[ + "Boston Common" + ], + "name:fas_x_preferred":[ + "\u06a9\u0648\u0645\u0648\u0646 \u0628\u0648\u0633\u062a\u0648\u0646" + ], + "name:fra_x_preferred":[ + "Boston Common" + ], + "name:gle_x_preferred":[ + "Boston Common" + ], + "name:heb_x_preferred":[ + "\u05d1\u05d5\u05e1\u05d8\u05d5\u05df \u05e7\u05d5\u05de\u05d5\u05df" + ], + "name:jpn_x_preferred":[ + "\u30dc\u30b9\u30c8\u30f3\u30b3\u30e2\u30f3" + ], + "name:kor_x_preferred":[ + "\ubcf4\uc2a4\ud134 \ucf54\uba3c" + ], + "name:spa_x_preferred":[ + "Boston Common" + ], + "name:tam_x_preferred":[ + "\u0baa\u0bbe\u0b9a\u0bc1\u0b9f\u0ba9\u0bcd \u0b95\u0bbe\u0bae\u0ba9\u0bcd" + ], + "name:urd_x_preferred":[ + "\u0628\u0648\u0633\u0679\u0646 \u06a9\u0627\u0645\u0646" + ], + "name:zho_x_preferred":[ + "\u6ce2\u58eb\u987f\u516c\u56ed" + ], + "reversegeo:latitude":42.354747, + "reversegeo:longitude":-71.066043, + "src:geom":"mz", + "wof:belongsto":[ + 85805015, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"21829961ac67ed5fb35e46904586e78c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712229, + "neighbourhood_id":85805015, + "region_id":85688645 + } + ], + "wof:id":1108712229, + "wof:lastmodified":1566624140, + "wof:name":"Boston Common", + "wof:parent_id":85805015, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.06944093713987, + 42.35236776058677, + -71.06202072660278, + 42.35770937076999 +], + "geometry": {"coordinates":[[[[-71.06739779044931,42.35249987938674],[-71.06944093713987,42.35620089367765],[-71.06319973753065,42.35770937076999],[-71.06314787044408,42.35764676652128],[-71.06300693116646,42.35747665053499],[-71.06299347000638,42.35746040315675],[-71.06297812196742,42.35744441059106],[-71.06278201966992,42.35724007170064],[-71.06277738208696,42.35723577498804],[-71.06261404774376,42.35708446865343],[-71.06238442212128,42.35687174949179],[-71.06227014721166,42.35676588784067],[-71.06217862720932,42.35668110568433],[-71.06202518461802,42.35653895788864],[-71.06202293281126,42.35653687234192],[-71.06202072660278,42.35653451238008],[-71.06202545674884,42.35652910614234],[-71.06202590455629,42.35652859468203],[-71.06227065475552,42.35624887526865],[-71.06254197058048,42.35598293000096],[-71.0627987068482,42.35573127209457],[-71.06280081742676,42.35572920314726],[-71.06280148958109,42.35572854488904],[-71.06289600592709,42.35563589781834],[-71.06304196520286,42.35548980770958],[-71.06329067473752,42.35524087578478],[-71.06331444160692,42.35520865099132],[-71.06333148409587,42.35518554311488],[-71.06334062472338,42.35517314840499],[-71.06336245984319,42.35513167747987],[-71.06337120471107,42.3551150679028],[-71.06346715071703,42.35493283512165],[-71.06355722931055,42.35476950410595],[-71.06356139255669,42.35476195566054],[-71.06356456138523,42.35475621122549],[-71.06374073054172,42.35440866508002],[-71.06387420818977,42.35414533743935],[-71.06387895434439,42.35413597530499],[-71.06398597952311,42.35392483161365],[-71.06415379625349,42.35359375545936],[-71.06415387872245,42.35359358921801],[-71.06415752346284,42.35358340813325],[-71.06422862349753,42.35338462497697],[-71.06441664790599,42.35283550328322],[-71.06442990672957,42.3527967788533],[-71.06444909083719,42.35272425111403],[-71.06453942278833,42.35238273903965],[-71.06454251461074,42.35237104695814],[-71.06454338443713,42.35236776058677],[-71.06455159033074,42.35236834173846],[-71.06467664409973,42.35237719692552],[-71.06518063734977,42.35241288358048],[-71.06529642386013,42.35242108184976],[-71.06572042832785,42.35245110159738],[-71.06596680623205,42.35246674795073],[-71.06656311002077,42.35250298938782],[-71.06666110816971,42.35250884689684],[-71.06673256880222,42.35251094735575],[-71.06677360280933,42.35251215439394],[-71.06688353208219,42.35251538549715],[-71.06700902841091,42.35251907574087],[-71.06703470343081,42.35251780036869],[-71.06703642756224,42.3525177150305],[-71.06716964449666,42.35251114023615],[-71.06738354942404,42.35250058258233],[-71.06739779044931,42.35249987938674]]]],"type":"MultiPolygon"} +},{ + "id": 1108712231, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000013, + "geom:area_square_m":115655.270875, + "geom:bbox":"-71.0725100533,42.3518927845,-71.0673977904,42.3562008937", + "geom:latitude":42.35403, + "geom:longitude":-71.070005, + "iso:country":"US", + "lbl:latitude":42.354057, + "lbl:longitude":-71.070044, + "lbl:max_zoom":18.0, + "mps:latitude":42.354057, + "mps:longitude":-71.070044, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.354057, + "reversegeo:longitude":-71.070044, + "src:geom":"mz", + "wof:belongsto":[ + 85805015, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b1048c28d7e5bd009697d4cfe4eebf6d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712231, + "neighbourhood_id":85805015, + "region_id":85688645 + } + ], + "wof:id":1108712231, + "wof:lastmodified":1566624137, + "wof:name":"Public Garden", + "wof:parent_id":85805015, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.07251005330028, + 42.35189278450834, + -71.0673977904493, + 42.35620089367765 +], + "geometry": {"coordinates":[[[[-71.06944093713987,42.35620089367765],[-71.06739779044931,42.35249987938674],[-71.06741661991838,42.35249894962226],[-71.06741698174042,42.35249893207724],[-71.06741812671034,42.35249887516455],[-71.06749961849771,42.35249485308788],[-71.06844461388684,42.35240211363135],[-71.06872631334436,42.35234235668425],[-71.06925985372274,42.35223526994189],[-71.06948406912709,42.35218480468224],[-71.07023440678995,42.35201591861578],[-71.07028917561286,42.35200083184306],[-71.07068139718203,42.35189278450834],[-71.07251005330028,42.35545909855627],[-71.06944093713987,42.35620089367765]]]],"type":"MultiPolygon"} +},{ + "id": 1108721905, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000199, + "geom:area_square_m":1882214.912476, + "geom:bbox":"-75.1452995301,39.9325858944,-75.1313953654,39.9604380884", + "geom:latitude":39.945769, + "geom:longitude":-75.13897, + "iso:country":"US", + "lbl:latitude":39.947069, + "lbl:longitude":-75.140785, + "lbl:max_zoom":18.0, + "mps:latitude":39.945976, + "mps:longitude":-75.139444, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Penn's Landing" + ], + "name:eng_x_variant":[ + "Penn's Lndg" + ], + "name:fra_x_preferred":[ + "Penn's Landing" + ], + "reversegeo:latitude":39.945976, + "reversegeo:longitude":-75.139444, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893367, + 102191575, + 1108721801, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7163122" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"da37c8a4ec082714b85c33ba19689494", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721801, + "microhood_id":1108721905, + "neighbourhood_id":85893367, + "region_id":85688481 + } + ], + "wof:id":1108721905, + "wof:lastmodified":1566623909, + "wof:name":"Penn's Landing", + "wof:parent_id":85893367, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871405 + ], + "wof:tags":[] +}, + "bbox": [ + -75.14529953011733, + 39.93258589435414, + -75.13139536538092, + 39.96043808840775 +], + "geometry": {"coordinates":[[[-75.13608724555128,39.93258589435414],[-75.14529953011733,39.9334547981892],[-75.14480966949802,39.93540161256193],[-75.14376594039489,39.93825487442981],[-75.14423042120663,39.93832536350688],[-75.14465707808817,39.93831637637274],[-75.14459238421939,39.93860786694416],[-75.14454803056589,39.93880771345672],[-75.14447555788882,39.93913424733129],[-75.14439043047501,39.93954402205738],[-75.14427284782235,39.94005557861833],[-75.14406093503005,39.94097303880968],[-75.14393213512612,39.94153250531501],[-75.14385021975227,39.94188747957688],[-75.14362679040073,39.94285250739537],[-75.14351258164557,39.94342867130742],[-75.14337256430217,39.94420056252871],[-75.1430884042142,39.94531864112326],[-75.14288043955095,39.94630672426522],[-75.14280944446499,39.94664403117831],[-75.14280708220126,39.94665525648708],[-75.14267802480728,39.94726856847446],[-75.14263456594722,39.94747488252756],[-75.14258044142485,39.94773387029077],[-75.14248381381407,39.94819110078984],[-75.14178500366508,39.95142031056321],[-75.14167496923214,39.95160152453699],[-75.14168324433689,39.95160843793029],[-75.14093032540323,39.9536391638619],[-75.14074371761846,39.95410442652391],[-75.14037966010903,39.95553179353644],[-75.13993019024039,39.95690303524655],[-75.13965496519468,39.95765301026724],[-75.1391996933075,39.95930080849766],[-75.13898939754614,39.96031106534338],[-75.13898810232467,39.96031728626669],[-75.13898425183233,39.96032842268635],[-75.13894633901509,39.96043808840775],[-75.13886543001253,39.96042866488116],[-75.13717105696503,39.96021089823675],[-75.13139536538092,39.95773378651592],[-75.13177700051452,39.95731900033329],[-75.13246300055204,39.95635499984305],[-75.13369800005844,39.95462000039317],[-75.13375999941724,39.95446000018737],[-75.13385500014459,39.95421699956039],[-75.13417000003915,39.95340900006438],[-75.13427000012695,39.95315499991001],[-75.13430700054323,39.953058999601],[-75.13437000020214,39.95289800017105],[-75.13438599994129,39.95285699982011],[-75.13443200032043,39.95274100009879],[-75.13463599980356,39.95221700001859],[-75.13502453532546,39.95122472877976],[-75.13523900004395,39.95067700002313],[-75.13534152734393,39.95001448427023],[-75.13543600038683,39.94940400017358],[-75.13546999948036,39.94918299955333],[-75.13560600025909,39.94831199980158],[-75.13581600017991,39.94696800044863],[-75.13595499965304,39.94606200000196],[-75.13600299987664,39.94564099983513],[-75.13626800040201,39.94328200021175],[-75.13625700059362,39.94292499961482],[-75.13625699942889,39.94263699964176],[-75.13626499969169,39.94047800043881],[-75.1362480004386,39.9402070001596],[-75.13622099981409,39.93976399967826],[-75.13620400021291,39.93866299962935],[-75.13623000058213,39.93769699976126],[-75.13619500044014,39.93679300036501],[-75.13617700009361,39.9365479997137],[-75.13618599961188,39.93589599976335],[-75.13606199945556,39.93449500005726],[-75.13606300048261,39.93436099991786],[-75.13607099985659,39.9338289999685],[-75.13608900026071,39.93364600030998],[-75.13615100033218,39.93297400001561],[-75.13608724555128,39.93258589435414]]],"type":"Polygon"} +},{ + "id": 1108722073, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":523264.404774, + "geom:bbox":"-75.0967330001,40.0613327975,-75.0834114235,40.0718870341", + "geom:latitude":40.06694, + "geom:longitude":-75.089301, + "iso:country":"US", + "lbl:latitude":40.064951, + "lbl:longitude":-75.085832, + "lbl:max_zoom":18.0, + "mps:latitude":40.067006, + "mps:longitude":-75.089295, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Ryers" + ], + "reversegeo:latitude":40.067006, + "reversegeo:longitude":-75.089295, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85808477, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q15273922" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"55a5e09994e3b52f615e7b6a08a5b352", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108722073, + "neighbourhood_id":85808477, + "region_id":85688481 + } + ], + "wof:id":1108722073, + "wof:lastmodified":1566623918, + "wof:name":"Ryers", + "wof:parent_id":85808477, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85846529 + ], + "wof:tags":[] +}, + "bbox": [ + -75.09673300009527, + 40.0613327975381, + -75.08341142352025, + 40.07188703409072 +], + "geometry": {"coordinates":[[[-75.08354429669991,40.0613327975381],[-75.08742500042021,40.06359899981758],[-75.08787500009858,40.06385000039791],[-75.08806400016491,40.06395599969682],[-75.08876000055074,40.06434200036112],[-75.08891200018616,40.06443200024052],[-75.08927200034091,40.06464399981893],[-75.08937799954171,40.06470499995933],[-75.08975199971131,40.06492200030935],[-75.09036999970688,40.06528499974614],[-75.09178299962986,40.06610999974354],[-75.09191899995511,40.06618900033249],[-75.09322300040557,40.06693500033473],[-75.09494800042459,40.06794700028178],[-75.09663400052054,40.06893200029034],[-75.09671355479934,40.06897780400435],[-75.09673300009527,40.0689889996079],[-75.09621400026295,40.06949199996519],[-75.09518399997373,40.07049899978806],[-75.09400200051273,40.07168600043159],[-75.09381900000098,40.07184999984707],[-75.09373082378852,40.07188703409072],[-75.09391509471581,40.07170731321252],[-75.09383743259124,40.07166925066294],[-75.09268991832275,40.0710848291222],[-75.09207203296167,40.07077013554103],[-75.09126807823007,40.070360666163],[-75.08983587063835,40.06963119007665],[-75.08910691725058,40.06925989343454],[-75.08839603165357,40.06889779195945],[-75.08730537442376,40.06834223096059],[-75.08636559443205,40.06789051944782],[-75.08551166815015,40.06746945271616],[-75.08402522396977,40.06668976146501],[-75.08341142352025,40.06553858904378],[-75.08348948690644,40.06456871819028],[-75.08355698522352,40.0636399083319],[-75.08355433183667,40.06279178106692],[-75.08355175774417,40.06196863684569],[-75.08354429669991,40.0613327975381]]],"type":"Polygon"} +},{ + "id": 1108722077, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":268400.266267, + "geom:bbox":"-75.160374067,39.9403242716,-75.1438034479,39.9440753544", + "geom:latitude":39.942186, + "geom:longitude":-75.151861, + "iso:country":"US", + "lbl:latitude":39.941604, + "lbl:longitude":-75.148938, + "lbl:max_zoom":18.0, + "mps:latitude":39.941708, + "mps:longitude":-75.14979, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "S St", + "S Street", + "South St", + "Southstreet" + ], + "reversegeo:latitude":39.941708, + "reversegeo:longitude":-75.14979, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849249, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"3d7756eaf1091fd0cb6459bdb4cbe032", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108722077, + "neighbourhood_id":85849249, + "region_id":85688481 + } + ], + "wof:id":1108722077, + "wof:lastmodified":1566623918, + "wof:name":"South Street", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867161 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16037406697308, + 39.94032427163911, + -75.14380344786896, + 39.94407535442726 +], + "geometry": {"coordinates":[[[-75.14417406715899,39.94048324192895],[-75.14766034699225,39.940921530907],[-75.1477886816204,39.94032427163911],[-75.14913713564228,39.94050652056341],[-75.14971778483176,39.94058373202788],[-75.1510543384845,39.94076349572757],[-75.15091868989066,39.94133068273504],[-75.16037406697308,39.94251987745525],[-75.16000973787928,39.94407535442726],[-75.14380344786896,39.94208949497104],[-75.14385021975227,39.94188747957688],[-75.14393213512612,39.94153250531501],[-75.14406093503005,39.94097303880968],[-75.14417406715899,39.94048324192895]]],"type":"Polygon"} +},{ + "id": 1108712233, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000231, + "geom:area_square_m":2110013.362655, + "geom:bbox":"-71.1068442273,42.2919730002,-71.0847307477,42.3133246325", + "geom:latitude":42.302692, + "geom:longitude":-71.094928, + "iso:country":"US", + "lbl:latitude":42.302933, + "lbl:longitude":-71.094761, + "lbl:max_zoom":18.0, + "mps:latitude":42.302933, + "mps:longitude":-71.094761, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "Franklin Park" + ], + "name:ceb_x_preferred":[ + "Franklin Park" + ], + "name:deu_x_preferred":[ + "Franklin Park" + ], + "name:ita_x_preferred":[ + "Franklin Park" + ], + "name:nld_x_preferred":[ + "Franklin Park" + ], + "name:pol_x_preferred":[ + "Franklin Park" + ], + "name:srp_x_preferred":[ + "\u0424\u0440\u0430\u043d\u043a\u043b\u0438\u043d \u041f\u0430\u0440\u043a" + ], + "name:swe_x_preferred":[ + "Franklin Park" + ], + "name:vol_x_preferred":[ + "Franklin Park" + ], + "reversegeo:latitude":42.302933, + "reversegeo:longitude":-71.094761, + "src:geom":"mz", + "wof:belongsto":[ + 85846283, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"34f379a351ab23f2b95383a1db1724cd", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712233, + "neighbourhood_id":85846283, + "region_id":85688645 + } + ], + "wof:id":1108712233, + "wof:lastmodified":1566624138, + "wof:name":"Franklin Park", + "wof:parent_id":85846283, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.10684422725849, + 42.29197300022192, + -71.0847307476966, + 42.31332463246549 +], + "geometry": {"coordinates":[[[[-71.09509938326192,42.31332463246549],[-71.09481051629473,42.31309347284211],[-71.09465899999999,42.312993],[-71.094617,42.312972],[-71.094269,42.312843],[-71.094109,42.312768],[-71.093977,42.312694],[-71.093861,42.312586],[-71.09375199999999,42.31245],[-71.093642,42.31226],[-71.093603,42.31215],[-71.09357199999999,42.312061],[-71.09354500000001,42.31186],[-71.093535,42.311789],[-71.09344299999999,42.31137],[-71.093296,42.310988],[-71.093132,42.31072],[-71.09298200000001,42.310555],[-71.092951,42.310521],[-71.092692,42.310269],[-71.09217200000001,42.309859],[-71.09189600000001,42.309665],[-71.091092,42.309053],[-71.09071400000001,42.30878],[-71.08991,42.308171],[-71.08923799999999,42.30764],[-71.089079,42.30753],[-71.088593,42.307233],[-71.08845700000001,42.30716],[-71.08822499999999,42.307043],[-71.08791600000001,42.306902],[-71.08749231884913,42.30670095654737],[-71.08726,42.30657361597193],[-71.08642493253849,42.30617937736439],[-71.08577239009404,42.30582837512367],[-71.08525519719497,42.3055709636881],[-71.0847307476966,42.3053641442535],[-71.08474024872484,42.30528338743105],[-71.08474100014176,42.30527699982058],[-71.08484999970496,42.30470599965016],[-71.08492299939981,42.30442799965687],[-71.08500000042791,42.30417799987169],[-71.08524599980019,42.30344599995006],[-71.08536200037906,42.30309299959016],[-71.08555800057816,42.30249500004186],[-71.08572700015119,42.30195299955069],[-71.0859030003825,42.30138099988056],[-71.08591799941665,42.30133399974624],[-71.08616400028394,42.30062999955469],[-71.08625600036983,42.30038899997339],[-71.08640400014842,42.30000299965433],[-71.08654099984261,42.29956199979383],[-71.08669200006982,42.29910500044281],[-71.08679099982635,42.29877399999256],[-71.08693600046306,42.29835699974993],[-71.08699199971156,42.29814200038336],[-71.0874199995334,42.29804299972436],[-71.08859800008706,42.29774500009146],[-71.08963500053605,42.29749800008435],[-71.09005900043169,42.2973909995614],[-71.09048000024916,42.29725899983733],[-71.09092099966666,42.29710799961452],[-71.09118199977024,42.29700000033443],[-71.09135000004277,42.29692199994816],[-71.09143700056137,42.29686499981639],[-71.09156799972816,42.29674899997772],[-71.09171500004969,42.29656000014559],[-71.0922079995934,42.29587899981235],[-71.09232899940992,42.29575599977528],[-71.09257599970059,42.29543199967006],[-71.09317300056108,42.29461300020539],[-71.09322600008582,42.29454099992844],[-71.09427299983665,42.29330200032493],[-71.09435099943495,42.29321800036048],[-71.0944409994259,42.29312200027599],[-71.09458299990652,42.29297999998069],[-71.09483800007675,42.29272599996018],[-71.09537700027737,42.29223899994189],[-71.09575900014647,42.29197300022192],[-71.09578699948851,42.29204400017688],[-71.09603199996884,42.29255899972929],[-71.09619999970319,42.2929290001538],[-71.09632999969148,42.29315599979566],[-71.0964590377647,42.29322448707924],[-71.09661899981006,42.29346099976051],[-71.0968959996904,42.29373500001385],[-71.09740199978197,42.29421899981693],[-71.09885199952701,42.29564000003074],[-71.09916399957527,42.295940999801],[-71.10022100054013,42.29696199957327],[-71.10186399990427,42.29850999982065],[-71.10295200043319,42.29949400040339],[-71.10329099980598,42.29980599982666],[-71.10348499950528,42.29993200019401],[-71.10376199965637,42.30007800035257],[-71.10392999940392,42.3001349995645],[-71.10409100006773,42.30018199999417],[-71.10426999955581,42.3002290000688],[-71.10466099945542,42.30027099999757],[-71.10495997643355,42.30026852165306],[-71.10534900053646,42.30031299997191],[-71.10578200003397,42.3003750000365],[-71.10591399985792,42.30040400044557],[-71.10606400019249,42.30044500038892],[-71.10612400024101,42.30050100033739],[-71.10617700001418,42.3005900001393],[-71.10623628035074,42.3007032655982],[-71.10625844661111,42.30075058296513],[-71.1062587613923,42.30075125476682],[-71.10626228860075,42.30075878525321],[-71.10631025851056,42.3008143810531],[-71.10638029270467,42.30085374890209],[-71.10645917049888,42.30088336524688],[-71.10653815088727,42.30089667836948],[-71.10663913226429,42.30090354499281],[-71.10670816958302,42.30090917861646],[-71.10672034329494,42.30091017280205],[-71.10672254457731,42.30091035229372],[-71.10678834854484,42.30092362014304],[-71.10683214917483,42.3009433335321],[-71.10684422725849,42.30098199679674],[-71.10684105115622,42.30101712910854],[-71.10681714884031,42.30105438722767],[-71.10675957509386,42.30110587727542],[-71.10674711591628,42.30111451982004],[-71.10674317194935,42.30111725583523],[-71.10670398927626,42.30114443589905],[-71.10670185042254,42.30114591947334],[-71.10665929133782,42.30117544224688],[-71.10665845211575,42.30117602456841],[-71.10657760302792,42.3012321073957],[-71.10656848728837,42.30123843139459],[-71.10653519730022,42.30126152351266],[-71.10643647160931,42.30131057940768],[-71.10629986235284,42.30137558566156],[-71.10628636903067,42.30138200627557],[-71.10612122430187,42.30146059007939],[-71.10610713247965,42.30146729581615],[-71.10582240892964,42.30160278134245],[-71.10578463922059,42.30162048849065],[-71.10568049553011,42.30168598981823],[-71.10560204251591,42.30175104355938],[-71.10555660171312,42.30178219097572],[-71.10538018141227,42.30190311658726],[-71.10517261591349,42.30206215350675],[-71.10505389551351,42.30215311775126],[-71.10485540958835,42.30230519628183],[-71.10465939124599,42.30248691630117],[-71.10451090161889,42.30262457419553],[-71.10434842431336,42.30276101964605],[-71.10409283166379,42.30296628793009],[-71.10404877325814,42.30300167091615],[-71.10396971629774,42.30307045499521],[-71.10382808281575,42.30319368403213],[-71.10374895246744,42.30328671455616],[-71.10374822528316,42.30328760244412],[-71.10356069905512,42.30351618340797],[-71.10352427647135,42.30356058021974],[-71.10349035069812,42.30360193362247],[-71.1034855268561,42.3036078130338],[-71.10342839593288,42.30367745205588],[-71.1034246873911,42.30368224775282],[-71.10340122560901,42.30371258967545],[-71.10339612680667,42.30371918477181],[-71.10337154742199,42.30375097141164],[-71.1033454298028,42.30378474869865],[-71.10328511477351,42.30389176426706],[-71.10328496760671,42.30389202394529],[-71.10327673802597,42.30390662448795],[-71.10327232292342,42.30391926924653],[-71.10327217719497,42.30391968648203],[-71.10323184845527,42.30403517711441],[-71.10320068312961,42.30431042768439],[-71.10319241532889,42.30435162831542],[-71.1031922125225,42.30435263775026],[-71.10317548657628,42.30443598996793],[-71.10317210758285,42.30445282829003],[-71.10313395830794,42.30464292695652],[-71.10312429268441,42.30467376481563],[-71.10312333669455,42.30467612929931],[-71.10311187202001,42.30470451393154],[-71.10310575162447,42.30471966462525],[-71.10309567119526,42.30474295474514],[-71.10308137917347,42.30477446264737],[-71.10306921873655,42.30479774557978],[-71.10302068927918,42.3048715995882],[-71.10297434923962,42.30493050717942],[-71.10296201422112,42.30494487113819],[-71.10294944754743,42.30495923429517],[-71.10293760805018,42.30497252140571],[-71.10293664921835,42.30497359665024],[-71.10292430988062,42.30498864661755],[-71.10291176664001,42.30500391195051],[-71.10288496175509,42.30503653346918],[-71.10285910138211,42.30507074547238],[-71.10284697953483,42.30508785426564],[-71.10283883197845,42.30509997203401],[-71.10282995351582,42.30511317843744],[-71.1028171090031,42.30513508692249],[-71.10280496131051,42.30515631178717],[-71.10279327139411,42.30517822426047],[-71.10277806355484,42.30520835690216],[-71.10277752425993,42.3052094489007],[-71.10277690142502,42.30521071076691],[-71.10276555279314,42.30523370477535],[-71.10276285260987,42.30523917555852],[-71.10275101683426,42.30526538644892],[-71.10274738847815,42.30527342347512],[-71.10273707617813,42.30529671276005],[-71.10271971631182,42.30533850042152],[-71.10271550749269,42.3053514825806],[-71.10271194057152,42.30536248450127],[-71.10270437064821,42.30539058545722],[-71.10269381735638,42.30545343302454],[-71.10268775667139,42.30550948626568],[-71.10268645109043,42.30552155565562],[-71.10268605585173,42.30554762333441],[-71.10268985143439,42.30567935373804],[-71.10271005889648,42.30596214795024],[-71.10271006447483,42.30596222539521],[-71.10262037281474,42.30596722791859],[-71.1019757133772,42.30598329530701],[-71.1019732181139,42.30598335688714],[-71.1019711801723,42.30598340744712],[-71.10196904760618,42.30598346128044],[-71.10179753631432,42.30618909393608],[-71.1014862790334,42.30656226897013],[-71.10148546878425,42.30656323938273],[-71.10147921038059,42.30657074327271],[-71.10115781894297,42.30654080334606],[-71.10115632918864,42.30654066403076],[-71.10114984407555,42.30654005992839],[-71.10113345910398,42.30660246126057],[-71.10113184606698,42.30660860650049],[-71.10112968003652,42.30661685651926],[-71.10071934176081,42.30655960573265],[-71.10071761492313,42.30655936475447],[-71.10071745496241,42.30655934259145],[-71.10071300153834,42.30655872121602],[-71.10064373909211,42.30670883216774],[-71.10038845082057,42.30726210354327],[-71.10039056867973,42.30726265738933],[-71.10041170251658,42.30726817678608],[-71.10049035048303,42.30728871956388],[-71.10048973842122,42.30729018582255],[-71.10048946501705,42.3072908420898],[-71.10048653523735,42.30729786233367],[-71.10045419053699,42.30737537900096],[-71.10044952020246,42.30738624916965],[-71.10044274984467,42.30740200245675],[-71.10043382153704,42.30742374512707],[-71.10042842487,42.30743688962369],[-71.10039180635515,42.30752430549575],[-71.1003622649385,42.3075948257614],[-71.10035023837924,42.30762432452287],[-71.10031525761418,42.30770704290553],[-71.10029571920867,42.30775368512139],[-71.10028274201559,42.30778466606056],[-71.10025632951046,42.30784771750182],[-71.100253280404,42.3078549948093],[-71.10025077806949,42.3078609667857],[-71.10025073989041,42.30786105848329],[-71.10024981874035,42.30786325920901],[-71.10022353113141,42.30787751581156],[-71.10013089945676,42.30792774976014],[-71.09994269183912,42.30791670884602],[-71.09994023903833,42.3079165643617],[-71.09993932969559,42.30791651077918],[-71.09993592631974,42.30791631166845],[-71.09993312190275,42.30791614705366],[-71.09988313957531,42.30801396149179],[-71.09986135710945,42.30807131296883],[-71.09983606545947,42.30813790548628],[-71.0996807224644,42.30833746920916],[-71.09968059772501,42.30833763082828],[-71.09949736768864,42.3085730190429],[-71.09943802554757,42.30863627962442],[-71.09934074612757,42.30873700165841],[-71.09925731904555,42.30882338065188],[-71.09923551814749,42.30884595432323],[-71.09923558784033,42.30884605810056],[-71.09933688236394,42.30899545477236],[-71.09934901486676,42.30901334728335],[-71.09936867971157,42.30904235052348],[-71.09938882214669,42.30907432832248],[-71.099384,42.309076],[-71.099057,42.309191],[-71.098904,42.309244],[-71.09857523312556,42.30938166546808],[-71.09847450768423,42.30941776808952],[-71.09836018397273,42.30947925686276],[-71.09835484824602,42.30948212636991],[-71.09834913156379,42.30948520161383],[-71.0982894855315,42.30951728141334],[-71.09828319657454,42.30952184824795],[-71.09827050290004,42.30953106523917],[-71.09826988875292,42.3095315105403],[-71.09826914056272,42.30953205350536],[-71.09825192117115,42.30954455696627],[-71.09824159547995,42.30955205410608],[-71.098191,42.309585],[-71.09816243857949,42.30961733813727],[-71.09813991113865,42.30963702836273],[-71.09813446636048,42.30964178720384],[-71.0981263284589,42.30964890080916],[-71.09812295840226,42.30965184650264],[-71.09812002911323,42.30965548246545],[-71.09810653920796,42.3096722285472],[-71.09805326659861,42.30973836087816],[-71.09802211159266,42.30977703673991],[-71.09801007110705,42.30979913114883],[-71.09798330246259,42.30984824869477],[-71.09797650828578,42.30987449112016],[-71.09795463450288,42.3099589830612],[-71.097926,42.310036],[-71.097903,42.310214],[-71.097866,42.310437],[-71.09786598772492,42.310438804437],[-71.09786370135942,42.31045222094395],[-71.09786274493426,42.31077694603191],[-71.09786226576439,42.31093955917153],[-71.097848,42.311067],[-71.09783299999999,42.31126],[-71.097796,42.311419],[-71.097746,42.311545],[-71.097638,42.311685],[-71.097488,42.311857],[-71.097302,42.312015],[-71.09714768634421,42.31211306849153],[-71.09711547247304,42.31212693955971],[-71.0970133240934,42.3121624024464],[-71.09700862307271,42.31216403440634],[-71.09696679406194,42.31217855626576],[-71.09696481664474,42.31217916603466],[-71.09692788011012,42.31219056029856],[-71.0969019257134,42.31219856744008],[-71.09660398630761,42.31229047772131],[-71.09644597124608,42.31235646754281],[-71.09634786176443,42.31241374922966],[-71.096281840844,42.31246568235944],[-71.09626327621157,42.31248028568878],[-71.09625969202003,42.31248310543306],[-71.09625148373709,42.31248956233924],[-71.09625006926174,42.31249053239207],[-71.09624540925491,42.31249373038571],[-71.09598,42.312671],[-71.09554199999999,42.312993],[-71.095359,42.313129],[-71.095145,42.313282],[-71.09509938326192,42.31332463246549]]]],"type":"MultiPolygon"} +},{ + "id": 1108722081, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":145706.880982, + "geom:bbox":"-75.2178788509,39.9430801265,-75.2113720456,39.9479458045", + "geom:latitude":39.945516, + "geom:longitude":-75.214623, + "iso:country":"US", + "lbl:latitude":39.94664, + "lbl:longitude":-75.216259, + "lbl:max_zoom":18.0, + "mps:latitude":39.945522, + "mps:longitude":-75.214624, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Squirrel Hill" + ], + "name:fra_x_preferred":[ + "Squirrel Hill" + ], + "reversegeo:latitude":39.945522, + "reversegeo:longitude":-75.214624, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420539465, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7582328" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9745918a42b7aed9ef281054335de9d8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108722081, + "neighbourhood_id":420539465, + "region_id":85688481 + } + ], + "wof:id":1108722081, + "wof:lastmodified":1566623920, + "wof:name":"Squirrel Hill", + "wof:parent_id":420539465, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893369 + ], + "wof:tags":[] +}, + "bbox": [ + -75.21787885087261, + 39.94308012645784, + -75.2113720456138, + 39.94794580447653 +], + "geometry": {"coordinates":[[[-75.21573765320039,39.94345370744942],[-75.21787885087261,39.94521034983202],[-75.21394610772116,39.94794580447653],[-75.2113720456138,39.94579055302743],[-75.21139918413299,39.94576958005016],[-75.21503099981079,39.94329201906237],[-75.2152460353316,39.94308012645784],[-75.21573765320039,39.94345370744942]]],"type":"Polygon"} +},{ + "id": 1108712237, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000025, + "geom:area_square_m":228466.337436, + "geom:bbox":"-71.1269714377,42.3828676647,-71.1191634527,42.3881885042", + "geom:latitude":42.385781, + "geom:longitude":-71.122776, + "iso:country":"US", + "lbl:latitude":42.38573, + "lbl:longitude":-71.122775, + "lbl:max_zoom":18.0, + "mps:latitude":42.38573, + "mps:longitude":-71.122775, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_variant":[ + "Avon Hl" + ], + "reversegeo:latitude":42.38573, + "reversegeo:longitude":-71.122775, + "src:geom":"mz", + "wof:belongsto":[ + 1108712243, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"edf2924ae72ddf0c372c975b0ab7bb72", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108712237, + "neighbourhood_id":1108712243, + "region_id":85688645 + } + ], + "wof:id":1108712237, + "wof:lastmodified":1566624137, + "wof:name":"Avon Hill", + "wof:parent_id":1108712243, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867959 + ], + "wof:tags":[] +}, + "bbox": [ + -71.12697143767812, + 42.38286766473011, + -71.11916345266093, + 42.38818850424562 +], + "geometry": {"coordinates":[[[-71.12437546429224,42.38311268160805],[-71.12489295336296,42.38286766473011],[-71.12563843517425,42.38411376440863],[-71.1261050689013,42.38492776195912],[-71.1265967892908,42.38575682907636],[-71.12697143767812,42.38636101387627],[-71.12635539203423,42.38656498175855],[-71.12524246324372,42.38692579391095],[-71.12421407451981,42.38722642516327],[-71.12343305984767,42.3874350322581],[-71.12173097474671,42.38789314875117],[-71.1215510949423,42.38793088224252],[-71.12134875582048,42.38796452366845],[-71.1205851008678,42.38804897778545],[-71.11941825430854,42.38818850424562],[-71.1194140844357,42.38817298949848],[-71.11935173132879,42.38796217654563],[-71.11922145009571,42.38750623083288],[-71.1191940355102,42.38737168080889],[-71.11916345266093,42.38707179082905],[-71.11918110970734,42.3868289998358],[-71.11921083679347,42.38657938821239],[-71.11924928901864,42.38622553132056],[-71.11928748053002,42.38583805829525],[-71.11931459249853,42.38556168326787],[-71.11936895980456,42.38510017422198],[-71.11939907014842,42.3848251815828],[-71.1194001704521,42.38481517991441],[-71.11993785899806,42.3847251746103],[-71.12072873561007,42.38457789887546],[-71.12096331513045,42.38452980039099],[-71.12149911006203,42.38439881737317],[-71.12165809733204,42.38435098751797],[-71.12178860406534,42.38430152634882],[-71.12220549721543,42.38410475254002],[-71.12330594720723,42.38360985990256],[-71.12437546429224,42.38311268160805]]],"type":"Polygon"} +},{ + "id": 1108722089, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":163846.002435, + "geom:bbox":"-75.1871174857,40.033588038,-75.1799482817,40.0403967247", + "geom:latitude":40.037097, + "geom:longitude":-75.183637, + "iso:country":"US", + "lbl:latitude":40.037385, + "lbl:longitude":-75.192375, + "lbl:max_zoom":18.0, + "mps:latitude":40.037123, + "mps:longitude":-75.183637, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Tulpohocken" + ], + "name:eng_x_variant":[ + "Tulpehocken Station Historic District" + ], + "name:und_x_variant":[ + "Tulpenhocken" + ], + "reversegeo:latitude":40.037123, + "reversegeo:longitude":-75.183637, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108722085, + 102191575, + 1108721809, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4b39efb81356bd4fdb68da6be06bf243", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721809, + "microhood_id":1108722089, + "neighbourhood_id":1108722085, + "region_id":85688481 + } + ], + "wof:id":1108722089, + "wof:lastmodified":1566623920, + "wof:name":"Tulpehocken", + "wof:parent_id":1108722085, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85852797 + ], + "wof:tags":[] +}, + "bbox": [ + -75.18711748570007, + 40.03358803799176, + -75.1799482817207, + 40.04039672473743 +], + "geometry": {"coordinates":[[[-75.18562791181353,40.03358803799176],[-75.18711748570007,40.03529236226533],[-75.18192729819867,40.04039672473743],[-75.1799482817207,40.03912938761467],[-75.18562791181353,40.03358803799176]]],"type":"Polygon"} +},{ + "id": 1108722091, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000118, + "geom:area_square_m":1120131.107731, + "geom:bbox":"-75.0220817752,40.0337054221,-75.0055579051,40.0474714881", + "geom:latitude":40.04066, + "geom:longitude":-75.015182, + "iso:country":"US", + "lbl:latitude":40.044913, + "lbl:longitude":-75.009053, + "lbl:max_zoom":18.0, + "mps:latitude":40.041195, + "mps:longitude":-75.015306, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Upper Holmesburg" + ], + "name:fra_x_preferred":[ + "Upper Holmesburg" + ], + "reversegeo:latitude":40.041195, + "reversegeo:longitude":-75.015306, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85826057, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7898692" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3ae21052205c90a2ef2ec1b670bb05a1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108722091, + "neighbourhood_id":85826057, + "region_id":85688481 + } + ], + "wof:id":1108722091, + "wof:lastmodified":1566623918, + "wof:name":"Upper Holmesburg", + "wof:parent_id":85826057, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85853249 + ], + "wof:tags":[] +}, + "bbox": [ + -75.02208177517545, + 40.03370542207951, + -75.00555790509414, + 40.04747148811106 +], + "geometry": {"coordinates":[[[-75.00555790509414,40.04069834174971],[-75.00592,40.040435],[-75.006305,40.040185],[-75.006715,40.039922],[-75.00709999999999,40.039709],[-75.00756800000001,40.039467],[-75.008144,40.039208],[-75.00882900000001,40.038937],[-75.011042,40.038131],[-75.01216100000001,40.037722],[-75.014944,40.036701],[-75.015918,40.036325],[-75.01696,40.035854],[-75.017528,40.035575],[-75.018112,40.035259],[-75.018474,40.035047],[-75.01866800000001,40.034931],[-75.018901,40.034787],[-75.01915099999999,40.034613],[-75.019336,40.034473],[-75.019504,40.034344],[-75.019721,40.034157],[-75.019914,40.033981],[-75.02001199999999,40.033877],[-75.02012898886906,40.03375569675387],[-75.02033705867639,40.03377854886642],[-75.02055365593483,40.03378507803986],[-75.02072591044744,40.03376810218737],[-75.02088111005781,40.03372500961891],[-75.02101925476595,40.03370542207951],[-75.0212443794755,40.03370542207951],[-75.02135353084982,40.03372239794751],[-75.02146268222417,40.03374720882449],[-75.02159912144207,40.03380466555703],[-75.0217219167382,40.03386734557368],[-75.0218719998779,40.03397181214009],[-75.02192487007483,40.03403057451328],[-75.02195386340864,40.0340815018626],[-75.02196950725417,40.0341574525464],[-75.02197432929134,40.03421730794128],[-75.02196068536954,40.0344001233894],[-75.02192657556506,40.0345359288336],[-75.02183789007341,40.03475530628761],[-75.02173556065999,40.0349642365401],[-75.02160594340297,40.03516794292001],[-75.02150361398954,40.03532986294179],[-75.02146974099635,40.03542489145705],[-75.02145586026327,40.03550222899413],[-75.02144903830236,40.03566414822222],[-75.02145244928283,40.03588874522469],[-75.02146268222417,40.03603499403796],[-75.02147964378472,40.0361267111311],[-75.02149679202864,40.03620735830809],[-75.0215513677158,40.03640583783706],[-75.02169633438484,40.03681324137616],[-75.02171680026753,40.03692162075385],[-75.02174238262089,40.0370117191417],[-75.0218788218388,40.0372924597315],[-75.0219756038225,40.03748970216775],[-75.02200843909581,40.03758103373785],[-75.0220493708612,40.03776384016885],[-75.0220715422341,40.0378774410613],[-75.02208177517545,40.03802629711662],[-75.02208006968522,40.03852248162074],[-75.02207432005288,40.03871444830076],[-75.02206301478299,40.03884499961203],[-75.02202890497851,40.0390225797173],[-75.02198115125223,40.03922627397444],[-75.02193339752597,40.03938818436017],[-75.02181060222983,40.03971722686271],[-75.02167416301194,40.04005149063629],[-75.02150361398955,40.04049020935233],[-75.02127848927998,40.04114305935876],[-75.02121932014056,40.04130526004374],[-75.02114887202296,40.04146164789235],[-75.02101243280505,40.04171756219362],[-75.02089645946985,40.0419264711152],[-75.02083040412805,40.04208079084459],[-75.02077878064439,40.04225550136817],[-75.02074801448609,40.04240859691161],[-75.02072591044745,40.04256363937259],[-75.02068497868207,40.04295011557826],[-75.02067133476027,40.04307545874205],[-75.0206508688776,40.04317991120252],[-75.02060311515132,40.04334703480641],[-75.0205502642609,40.04357968159479],[-75.01947603113977,40.04362566264782],[-75.0184621164921,40.04415025515546],[-75.01830128387112,40.04426839402809],[-75.01752841863323,40.04483608864044],[-75.01738256506475,40.04493931418871],[-75.01645793888558,40.04571115406367],[-75.01577951812119,40.0462212142256],[-75.01490660397627,40.04688417288817],[-75.01410835052543,40.04747148811106],[-75.014103441931,40.04746327879099],[-75.01348690254667,40.04705271081103],[-75.01224446782662,40.04604607537255],[-75.01092157737996,40.04499227476487],[-75.00959321339799,40.04392927975552],[-75.00867228278808,40.04319034239604],[-75.00786176506986,40.0425399799369],[-75.00687413049135,40.04174747232237],[-75.00633356879372,40.04123111827907],[-75.00555824238833,40.04069861078499],[-75.00555790509414,40.04069834174971]]],"type":"Polygon"} +},{ + "id": 1108723353, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000045, + "geom:area_square_m":425769.251519, + "geom:bbox":"-75.1679653354,39.9301921148,-75.1557624901,39.9356990398", + "geom:latitude":39.932865, + "geom:longitude":-75.162002, + "iso:country":"US", + "lbl:latitude":39.93292, + "lbl:longitude":-75.15824, + "lbl:max_zoom":18.0, + "mps:latitude":39.932861, + "mps:longitude":-75.162002, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Wharton" + ], + "name:fra_x_preferred":[ + "Wharton" + ], + "reversegeo:latitude":39.932861, + "reversegeo:longitude":-75.162002, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893365, + 102191575, + 1108721801, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7990695" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cb34a164a4eee48526d70e9f34d673cf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721801, + "microhood_id":1108723353, + "neighbourhood_id":85893365, + "region_id":85688481 + } + ], + "wof:id":1108723353, + "wof:lastmodified":1566623908, + "wof:name":"Wharton", + "wof:parent_id":85893365, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857335 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16796533541111, + 39.93019211483777, + -75.15576249006999, + 39.93569903975016 +], + "geometry": {"coordinates":[[[-75.15656986128333,39.93019211483777],[-75.157139,39.930268],[-75.15756399999999,39.930326],[-75.15812099999999,39.930394],[-75.15967999999999,39.930596],[-75.16125099999999,39.930814],[-75.162042,39.930912],[-75.162153,39.930929],[-75.162919,39.931026],[-75.163419,39.931087],[-75.163539,39.931113],[-75.16409,39.931181],[-75.164216,39.931207],[-75.164407,39.931227],[-75.164843,39.931282],[-75.165311,39.931341],[-75.16596800000001,39.931427],[-75.16654800000001,39.931502],[-75.167118,39.931572],[-75.167441,39.93162],[-75.16796533541111,39.93169908009478],[-75.16772311227426,39.93291668777801],[-75.16765044263425,39.93411538788093],[-75.16759511577276,39.93440392125932],[-75.16733655292619,39.93565517044085],[-75.16732755742862,39.93569903975016],[-75.167303,39.935695],[-75.167236,39.935685],[-75.167168,39.935676],[-75.167046,39.935649],[-75.166251,39.935525],[-75.165598,39.935414],[-75.165115,39.935334],[-75.16471,39.935264],[-75.16355,39.935065],[-75.161919,39.934802],[-75.160932,39.934628],[-75.160437,39.934549],[-75.158869,39.93429],[-75.1584,39.934209],[-75.158209,39.934175],[-75.157302,39.934057],[-75.15576249006999,39.93385020015865],[-75.15647216957431,39.93062763543737],[-75.15656986128333,39.93019211483777]]],"type":"Polygon"} +},{ + "id": 1108723359, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000208, + "geom:area_square_m":1973005.058891, + "geom:bbox":"-75.1583159972,39.9703817211,-75.1431697304,39.9892601644", + "geom:latitude":39.979558, + "geom:longitude":-75.150708, + "iso:country":"US", + "lbl:latitude":39.982612, + "lbl:longitude":-75.152832, + "lbl:max_zoom":18.0, + "mps:latitude":39.979638, + "mps:longitude":-75.150709, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:note":"don't use this name for the hood.", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Cecil B. Moore" + ], + "name:eng_x_variant":[ + "Templetown" + ], + "name:fra_x_preferred":[ + "Templetown" + ], + "reversegeo:latitude":39.979638, + "reversegeo:longitude":-75.150709, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85824155, + 102191575, + 1108721811, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7698839" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"f1924538019decce64229ac9a6e36eee", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721811, + "microhood_id":1108723359, + "neighbourhood_id":85824155, + "region_id":85688481 + } + ], + "wof:id":1108723359, + "wof:lastmodified":1566623908, + "wof:name":"Templetown", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871433, + 420782591 + ], + "wof:tags":[] +}, + "bbox": [ + -75.15831599719372, + 39.97038172112357, + -75.14316973044585, + 39.98926016435045 +], + "geometry": {"coordinates":[[[-75.15442606711981,39.98926016435045],[-75.14316973044585,39.98776778253766],[-75.14350127762062,39.98627679106881],[-75.14350282921659,39.98626966048167],[-75.14384521061001,39.98468401064034],[-75.1440518347196,39.98372278403923],[-75.14406112786577,39.98372149755495],[-75.1440490900946,39.98361500730709],[-75.14424522283676,39.98306688040796],[-75.14451146611297,39.98156880513597],[-75.14479379711572,39.98006572546767],[-75.14494773725937,39.97917620245674],[-75.14496932522438,39.97900384958675],[-75.14504313993984,39.97858040438818],[-75.14532626917587,39.97707527049409],[-75.14532826836755,39.977064642373],[-75.14551102082284,39.97620457936064],[-75.14560769439196,39.97563639368442],[-75.1458553585603,39.97418248166009],[-75.14608455945593,39.9729179359931],[-75.14610527975297,39.97280361879331],[-75.14629414229637,39.97156053974695],[-75.14654716912347,39.97038172112357],[-75.15043258254778,39.97049972290485],[-75.15097468678928,39.97051794350995],[-75.15257454601789,39.97057170008362],[-75.15831599719372,39.97132125758839],[-75.15442606711981,39.98926016435045]]],"type":"Polygon"} +},{ + "id": 1108723361, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000013, + "geom:area_square_m":122788.960042, + "geom:bbox":"-75.163612,40.019343753,-75.1570504679,40.0239590859", + "geom:latitude":40.021488, + "geom:longitude":-75.160404, + "iso:country":"US", + "lbl:latitude":40.022894, + "lbl:longitude":-75.158829, + "lbl:max_zoom":18.0, + "mps:latitude":40.021786, + "mps:longitude":-75.160181, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:note":"Philly.com \"WJ is not a neighborhood\"", + "mz:tier_metro":1, + "reversegeo:latitude":40.021786, + "reversegeo:longitude":-75.160181, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108723471, + 102191575, + 1108721809, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"fab43d15e1a34ea168186f6a6df1b77c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721809, + "microhood_id":1108723361, + "neighbourhood_id":1108723471, + "region_id":85688481 + } + ], + "wof:id":1108723361, + "wof:lastmodified":1566623881, + "wof:name":"Wayne Junction", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85885405 + ], + "wof:tags":[] +}, + "bbox": [ + -75.163612, + 40.01934375296068, + -75.15705046786445, + 40.02395908594964 +], + "geometry": {"coordinates":[[[-75.16351806949785,40.01942790172009],[-75.1635,40.019444],[-75.163161,40.019706],[-75.16303499999999,40.019869],[-75.162902,40.020107],[-75.16278200000001,40.020368],[-75.16272600000001,40.020597],[-75.162691,40.020821],[-75.16267499999999,40.021086],[-75.162666,40.021327],[-75.162601,40.021604],[-75.162462,40.021954],[-75.162024,40.022286],[-75.16033899999999,40.023469],[-75.15988,40.023793],[-75.159707,40.023878],[-75.15962013205608,40.02392805589098],[-75.15960259644547,40.02395908594964],[-75.1590454368137,40.02280825811329],[-75.158272,40.021859],[-75.158022,40.02154],[-75.157703,40.02126],[-75.15755,40.0211],[-75.157135,40.020684],[-75.15705046786445,40.02059774271882],[-75.15929346938871,40.02044748263339],[-75.16070350728718,40.02019593944573],[-75.16079815665407,40.020167453561],[-75.16079815665412,40.020167453561],[-75.16154360578612,40.01994311026068],[-75.16353502970857,40.01934375296068],[-75.16358920160687,40.01934487164974],[-75.163612,40.019346],[-75.163555,40.019395],[-75.16351806949785,40.01942790172009]]],"type":"Polygon"} +},{ + "id": 1108723363, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00012, + "geom:area_square_m":1138756.58046, + "geom:bbox":"-75.1544260671,39.9863150046,-75.1254922563,39.9938271746", + "geom:latitude":39.98996, + "geom:longitude":-75.141099, + "iso:country":"US", + "lbl:latitude":39.999216, + "lbl:longitude":-75.130531, + "lbl:max_zoom":18.0, + "mps:latitude":39.98985, + "mps:longitude":-75.141099, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":15.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "reversegeo:latitude":39.98985, + "reversegeo:longitude":-75.141099, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85855755, + 102191575, + 1108721813, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"56c3367963095697040cb66e7c303573", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721813, + "microhood_id":1108723363, + "neighbourhood_id":85855755, + "region_id":85688481 + } + ], + "wof:id":1108723363, + "wof:lastmodified":1566623881, + "wof:name":"The Badlands", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893373 + ], + "wof:tags":[] +}, + "bbox": [ + -75.15442606711981, + 39.98631500458396, + -75.12549225633947, + 39.99382717461239 +], + "geometry": {"coordinates":[[[-75.15442606711981,39.98926016435045],[-75.15343574196783,39.99382717461239],[-75.14216638486913,39.99233362422322],[-75.14153194967682,39.99224241944626],[-75.14088854490319,39.99218003456582],[-75.14025718555679,39.99212747166398],[-75.13976249765771,39.99207323887341],[-75.13926762941864,39.9920237761525],[-75.13836769529594,39.99190566489327],[-75.13789530028815,39.99184366253038],[-75.13736210456598,39.99177367698218],[-75.13616815430251,39.99161695570444],[-75.13614740315749,39.99161423058887],[-75.13550017414839,39.9915292674541],[-75.13490320437982,39.99145089872563],[-75.13436321160006,39.99138000720996],[-75.13382491813391,39.99130933567016],[-75.13338208209359,39.99125119412698],[-75.13292351573517,39.99119098655449],[-75.13245001670009,39.99112826151897],[-75.13194047906646,39.99106191030619],[-75.1314523182352,39.9909978096051],[-75.13091620566725,39.99092741011214],[-75.12899911026614,39.99072117861047],[-75.12704828772546,39.99041498253343],[-75.12598966543139,39.99027056853354],[-75.12549225633947,39.9898383182852],[-75.12551367102986,39.98982663182391],[-75.1259990400355,39.98957671505494],[-75.12645567835263,39.98932923845948],[-75.12695027250427,39.98906352219323],[-75.12744070148068,39.98881720061268],[-75.12799092473988,39.98848549672522],[-75.12840117434982,39.98825085859668],[-75.12865998694177,39.98810961894842],[-75.12974074239955,39.98755111009838],[-75.13000967078435,39.98737306718425],[-75.13194850260246,39.98631500458396],[-75.14316973044585,39.98776778253766],[-75.15442606711981,39.98926016435045]]],"type":"Polygon"} +},{ + "id": 1108723367, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":33742.011589, + "geom:bbox":"-75.1535554732,39.9460677948,-75.1510706182,39.9479643063", + "geom:latitude":39.947023, + "geom:longitude":-75.152318, + "iso:country":"US", + "lbl:latitude":39.946018, + "lbl:longitude":-75.153279, + "lbl:max_zoom":18.0, + "mps:latitude":39.94702, + "mps:longitude":-75.152316, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Washington Square" + ], + "name:deu_x_preferred":[ + "Washington Square" + ], + "name:fra_x_preferred":[ + "Washington Square" + ], + "name:ita_x_preferred":[ + "Washington Square" + ], + "name:jpn_x_preferred":[ + "\u30ef\u30b7\u30f3\u30c8\u30f3\u30fb\u30b9\u30af\u30a8\u30a2" + ], + "name:nld_x_preferred":[ + "Washington Square" + ], + "name:zho_x_preferred":[ + "\u534e\u76db\u987f\u5e7f\u573a" + ], + "reversegeo:latitude":39.94702, + "reversegeo:longitude":-75.152316, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849249, + 102191575, + 1108721797, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0765e9570fe17c950c4370a0b7d162c0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721797, + "microhood_id":1108723367, + "neighbourhood_id":85849249, + "region_id":85688481 + } + ], + "wof:id":1108723367, + "wof:lastmodified":1566623880, + "wof:name":"Washington Square", + "wof:parent_id":85849249, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893375 + ], + "wof:tags":[] +}, + "bbox": [ + -75.15355547322427, + 39.94606779481197, + -75.15107061822913, + 39.94796430627971 +], + "geometry": {"coordinates":[[[-75.15355547322427,39.94636284532824],[-75.15323438023917,39.94796430627971],[-75.15107061822913,39.94769266618653],[-75.1514248993396,39.94606779481197],[-75.15355547322427,39.94636284532824]]],"type":"Polygon"} +},{ + "id": 1108723369, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00027, + "geom:area_square_m":2556068.162937, + "geom:bbox":"-75.0704172067,40.0566234668,-75.0417046909,40.0767776178", + "geom:latitude":40.067441, + "geom:longitude":-75.053296, + "iso:country":"US", + "lbl:latitude":40.067463, + "lbl:longitude":-75.054275, + "lbl:max_zoom":18.0, + "mps:latitude":40.067463, + "mps:longitude":-75.054275, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "Bells Corner" + ], + "reversegeo:latitude":40.067463, + "reversegeo:longitude":-75.054275, + "src:geom":"mz", + "wof:belongsto":[ + 85844347, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"41893c87149335950b852ccdaa4ce0f3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108723369, + "neighbourhood_id":85844347, + "region_id":85688481 + } + ], + "wof:id":1108723369, + "wof:lastmodified":1566623880, + "wof:name":"Bell's Corner", + "wof:parent_id":85844347, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782519 + ], + "wof:tags":[] +}, + "bbox": [ + -75.07041720669987, + 40.05662346679149, + -75.04170469086675, + 40.07677761777729 +], + "geometry": {"coordinates":[[[-75.04666746459446,40.05662346679149],[-75.05486913031338,40.06102247846942],[-75.05557887961115,40.06144331800744],[-75.05643121748737,40.06199321341145],[-75.06299798416565,40.06615033292406],[-75.06411519623883,40.06683706048172],[-75.06732812993424,40.0687437041695],[-75.06777035858802,40.06898988414805],[-75.06884515846242,40.069512117378],[-75.07041720669987,40.07027512322],[-75.06978127672865,40.0708785730581],[-75.06930422286553,40.07147701830441],[-75.06928688031338,40.07162900675583],[-75.06937300544125,40.07174422169304],[-75.06951760705557,40.07178225417002],[-75.06902280740935,40.0720667223004],[-75.06888442590882,40.07180706475912],[-75.06864026300853,40.0716692518247],[-75.06870077022779,40.07166214251178],[-75.06759165503364,40.07117640185189],[-75.06550373272303,40.07023715771627],[-75.06332300124012,40.07138289662184],[-75.06095565042077,40.07283592692313],[-75.05840702380341,40.07474783409189],[-75.05722185693483,40.07372385778712],[-75.05631948631668,40.07301632449725],[-75.0560697179626,40.07325495454403],[-75.05577254859425,40.07344206382987],[-75.05039190463064,40.07624747749055],[-75.04975010875077,40.07657014135191],[-75.04903586996387,40.07677761777729],[-75.04818659263145,40.07671075053084],[-75.04742078784221,40.07653419032237],[-75.04677453360904,40.07608672318808],[-75.04607673553291,40.07525522573137],[-75.04526465582717,40.0741445725429],[-75.04434245790414,40.07308726817679],[-75.04416005761273,40.072761399203],[-75.04403877230556,40.07233798072151],[-75.04407605808264,40.07199586196425],[-75.04486248278859,40.07050031530034],[-75.04510364431468,40.07012476859756],[-75.04529560892618,40.06996905728551],[-75.04547445583431,40.06987196819268],[-75.04577431695505,40.06976068343414],[-75.04594600130848,40.06978335817958],[-75.04736924305475,40.07062013373283],[-75.04791412808757,40.07002818353669],[-75.04762621381317,40.06929608052655],[-75.04738449861861,40.06879640810858],[-75.04731506760552,40.06822895497867],[-75.04750017781461,40.06766493863238],[-75.04821791178549,40.06691475143633],[-75.04638880124811,40.0658734847949],[-75.04497490666839,40.06508318314378],[-75.04471769882753,40.06500394181902],[-75.04448552201583,40.06498836180603],[-75.04411593983356,40.0650602532797],[-75.04369077358547,40.0651172547124],[-75.04346127281241,40.06517747154207],[-75.04301599458026,40.06514882689271],[-75.04242467876217,40.06507070835011],[-75.04202143652027,40.06494198953779],[-75.04199231487704,40.06493122046069],[-75.04170469086675,40.06482485469173],[-75.04183879617544,40.06464322467685],[-75.04213941295041,40.06397775903677],[-75.04237629462838,40.06345337199076],[-75.04289474801135,40.06230564121952],[-75.04332539619378,40.06135225704129],[-75.04383391212808,40.06022645075645],[-75.04421420448509,40.05938449079793],[-75.04464405241953,40.05873648511611],[-75.04523992155687,40.05811424603632],[-75.04593511799682,40.05738826507108],[-75.04666746459446,40.05662346679149]]],"type":"Polygon"} +},{ + "id": 1108723371, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":187150.018145, + "geom:bbox":"-75.1976602594,40.0310974193,-75.1891205294,40.0361698199", + "geom:latitude":40.033624, + "geom:longitude":-75.193583, + "iso:country":"US", + "lbl:latitude":40.034201, + "lbl:longitude":-75.19423, + "lbl:max_zoom":18.0, + "mps:latitude":40.034201, + "mps:longitude":-75.19423, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Blue Bell Hill" + ], + "name:fin_x_preferred":[ + "Blue Bell Hill" + ], + "name:nno_x_preferred":[ + "Blue Bell Hill" + ], + "name:swe_x_preferred":[ + "Blue Bell Hill" + ], + "reversegeo:latitude":40.034201, + "reversegeo:longitude":-75.19423, + "src:geom":"mz", + "wof:belongsto":[ + 85855969, + 102191575, + 1108721809, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7e4c520e218b2218c57296bf562ab40c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721809, + "microhood_id":1108723371, + "neighbourhood_id":85855969, + "region_id":85688481 + } + ], + "wof:id":1108723371, + "wof:lastmodified":1566623884, + "wof:name":"Blue Bell Hill", + "wof:parent_id":85855969, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782561 + ], + "wof:tags":[] +}, + "bbox": [ + -75.19766025936632, + 40.03109741929773, + -75.18912052938109, + 40.03616981987052 +], + "geometry": {"coordinates":[[[-75.19398099999999,40.03616981987052],[-75.19311202424277,40.03541530935028],[-75.19267323585591,40.03503433976132],[-75.19191146208478,40.03440670868007],[-75.1911717409607,40.03371356757283],[-75.190417145064,40.03310838481697],[-75.18975823582245,40.03258491662758],[-75.18912052938109,40.03199401195195],[-75.19082309303586,40.03109741929773],[-75.19184479484404,40.03210028793603],[-75.19247724004596,40.03205265608864],[-75.19321022398333,40.03206163196359],[-75.19390579733066,40.03223954780781],[-75.19689741027709,40.03328274628165],[-75.19713147617905,40.03338955024869],[-75.19756495957229,40.03358734815797],[-75.19764160905075,40.03424924072839],[-75.19766025936632,40.03441029212185],[-75.19727,40.034589],[-75.19398099999999,40.03616981987052]]],"type":"Polygon"} +},{ + "id": 1108712253, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000037, + "geom:area_square_m":334855.411566, + "geom:bbox":"-71.1414412506,42.3749678683,-71.1175678563,42.3800517694", + "geom:latitude":42.377219, + "geom:longitude":-71.127744, + "iso:country":"US", + "lbl:latitude":42.378613, + "lbl:longitude":-71.118212, + "lbl:max_zoom":18.0, + "mps:latitude":42.378281, + "mps:longitude":-71.122588, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.378281, + "reversegeo:longitude":-71.122588, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108712243, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"99f33bba87894743dc943b981967b6fb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108712253, + "neighbourhood_id":1108712243, + "region_id":85688645 + } + ], + "wof:id":1108712253, + "wof:lastmodified":1566624140, + "wof:name":"Old Cambridge", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85839289 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14144125058343, + 42.37496786831012, + -71.11756785625042, + 42.38005176943341 +], + "geometry": {"coordinates":[[[-71.1245319458055,42.37877099071175],[-71.12404699165012,42.37905940492958],[-71.1234902627713,42.37928958349512],[-71.12290691703738,42.37947987777628],[-71.12237747111392,42.3796268552318],[-71.12184670076313,42.37974703280701],[-71.12117525686766,42.37987368027171],[-71.12066270575446,42.37995095122245],[-71.11993098229794,42.38005176943341],[-71.11998543282404,42.37983497590682],[-71.11998777388446,42.37975334751773],[-71.12000034274438,42.37931708221109],[-71.12002739038471,42.37905031099934],[-71.12003907927358,42.37895293483489],[-71.12004816118518,42.37886584065393],[-71.1201478759988,42.37790025783872],[-71.12016778265036,42.37770549449885],[-71.12007450415328,42.37752270602032],[-71.11982677865024,42.37686674077357],[-71.11979947119225,42.37679187439909],[-71.11963247576094,42.37667469939986],[-71.11954467031302,42.37662089959662],[-71.11942035515101,42.37656080490127],[-71.1191047516716,42.37638482590518],[-71.1190634886501,42.37636136457429],[-71.11874917570469,42.37620185351191],[-71.11859615613854,42.37614577881252],[-71.11844998477801,42.37610481873641],[-71.11820921073084,42.37606354506912],[-71.11804158212115,42.37605201253402],[-71.11781447092476,42.3760464556746],[-71.1176965724883,42.37603508784185],[-71.11756785625042,42.37601476533158],[-71.11763988904072,42.37592239248715],[-71.11771919280108,42.37592814408995],[-71.11780038842417,42.37592704187097],[-71.11788346830342,42.37592045781156],[-71.11797190462393,42.37590771743321],[-71.11804442272685,42.37588806355676],[-71.11810631276288,42.37586631633715],[-71.11817520868988,42.37583361625389],[-71.11823369197491,42.37580156757942],[-71.11828873399912,42.37576470541977],[-71.11834735377803,42.37571001844042],[-71.11839531648546,42.37565804010057],[-71.11846663721433,42.37556840839535],[-71.11849677343881,42.37544228073654],[-71.11854375092918,42.37524692132229],[-71.1185459112107,42.37523389438427],[-71.11855957919133,42.3751536755023],[-71.11856820787764,42.37510362519635],[-71.1185907695573,42.37496786831012],[-71.11917376838359,42.37514130429383],[-71.11942061128453,42.37524982561092],[-71.11942822342378,42.37525328134673],[-71.11971659480008,42.37537977606578],[-71.11993610454248,42.37549506648341],[-71.12014016416786,42.37560275940292],[-71.12085163203234,42.37591655864713],[-71.12098312989397,42.37597461745406],[-71.12117229667996,42.37605893422551],[-71.12139090416953,42.37615580631454],[-71.12294032441494,42.37583552274919],[-71.12418586123673,42.37561153996221],[-71.12460806811158,42.37555357911125],[-71.12508773555112,42.37552990588367],[-71.12534810152778,42.37555452530766],[-71.12561014560453,42.3755984323001],[-71.12616220775381,42.3757214500928],[-71.12663484527424,42.37585346020985],[-71.12707030130082,42.37601777896759],[-71.12742164180435,42.37621651518582],[-71.1278816778335,42.37646739099706],[-71.12854666855844,42.37676306095969],[-71.1289510945103,42.37689514926335],[-71.12936920428598,42.37701524092127],[-71.12983579477435,42.37710707413939],[-71.13021702982392,42.37713804720853],[-71.13061150969261,42.37713721979681],[-71.13214556178707,42.37696638698252],[-71.1346864859229,42.37664982274753],[-71.13624642313195,42.37644193907578],[-71.13775695378234,42.37618630225421],[-71.14093156375294,42.37559312381889],[-71.14144125058343,42.37675236863281],[-71.13785901407908,42.3773863775337],[-71.13647767295686,42.37760769600339],[-71.13563130068215,42.37772618237879],[-71.13470328904555,42.37782496577773],[-71.13199561942277,42.3781181776226],[-71.13055345235293,42.37829891409719],[-71.13012564300135,42.37832372371575],[-71.12972666255637,42.37829423575868],[-71.12931481809477,42.37821247870482],[-71.12885918505749,42.37807309920306],[-71.12839721639726,42.37792036030554],[-71.12803219812899,42.37777152492258],[-71.12770219959985,42.37762155375562],[-71.12717825667795,42.37733734743702],[-71.12682917065717,42.37716979857877],[-71.12636634108271,42.37699904900332],[-71.12591397184947,42.37686784591037],[-71.12545123496055,42.37675616973319],[-71.12516115886118,42.37671718469148],[-71.12494492078748,42.37669814055997],[-71.12449248722014,42.37672178103688],[-71.12407182369269,42.37678180685173],[-71.12288738333903,42.37701780715505],[-71.12263212427059,42.37706220837386],[-71.12286335109484,42.37730686866675],[-71.12295663279994,42.37741282075861],[-71.12308942121652,42.3775655521203],[-71.12316476334678,42.37765429513784],[-71.12322999363596,42.37773202838432],[-71.1235327038421,42.37809523672972],[-71.12368878708284,42.37829880846692],[-71.12370852442938,42.37832494173099],[-71.12393956067933,42.37844986614082],[-71.12439263930527,42.37869556868333],[-71.12449732175307,42.3787521638442],[-71.1245319458055,42.37877099071175]]],"type":"Polygon"} +},{ + "id": 1108723373, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000033, + "geom:area_square_m":312007.59809, + "geom:bbox":"-75.1693984825,39.9716923316,-75.1602328493,39.9772598418", + "geom:latitude":39.974552, + "geom:longitude":-75.164403, + "iso:country":"US", + "lbl:latitude":39.974356, + "lbl:longitude":-75.164403, + "lbl:max_zoom":18.0, + "mps:latitude":39.974356, + "mps:longitude":-75.164403, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Cabot" + ], + "name:ceb_x_preferred":[ + "Cabot" + ], + "name:ces_x_preferred":[ + "Cabot" + ], + "name:deu_x_preferred":[ + "Cabot" + ], + "name:fra_x_preferred":[ + "Cabot" + ], + "name:heb_x_preferred":[ + "\u05e7\u05d1\u05d5\u05d8" + ], + "name:hun_x_preferred":[ + "Cabot" + ], + "name:ita_x_preferred":[ + "Cabot" + ], + "name:nld_x_preferred":[ + "Cabot" + ], + "name:nrm_x_preferred":[ + "Cabot" + ], + "name:pol_x_preferred":[ + "Cabot" + ], + "name:por_x_preferred":[ + "Cabot" + ], + "name:rus_x_preferred":[ + "\u041a\u0430\u0431\u043e\u0442" + ], + "name:spa_x_preferred":[ + "Cabot" + ], + "name:srp_x_preferred":[ + "\u041a\u0430\u0431\u043e\u0442" + ], + "name:swe_x_preferred":[ + "Cabot" + ], + "name:ukr_x_preferred":[ + "\u041a\u0430\u0431\u043e\u0442" + ], + "name:vol_x_preferred":[ + "Cabot" + ], + "reversegeo:latitude":39.974356, + "reversegeo:longitude":-75.164403, + "src:geom":"mz", + "wof:belongsto":[ + 85837447, + 102191575, + 1108721811, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7c182523beba8ae97d9660d34b1715ed", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721811, + "microhood_id":1108723373, + "neighbourhood_id":85837447, + "region_id":85688481 + } + ], + "wof:id":1108723373, + "wof:lastmodified":1566623885, + "wof:name":"Cabot", + "wof:parent_id":85837447, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782593 + ], + "wof:tags":[] +}, + "bbox": [ + -75.16939848252878, + 39.97169233158101, + -75.16023284932056, + 39.97725984179772 +], + "geometry": {"coordinates":[[[-75.16939848252878,39.97725984179772],[-75.169382,39.977258],[-75.168987,39.97721],[-75.16852799999999,39.977146],[-75.168038,39.977084],[-75.167473,39.977016],[-75.167253,39.976985],[-75.16704300000001,39.976955],[-75.16646299999999,39.976877],[-75.165677,39.976786],[-75.164888,39.976668],[-75.164107,39.976573],[-75.163325,39.976471],[-75.16252900000001,39.976374],[-75.16175,39.976262],[-75.160962,39.976164],[-75.16023284932056,39.97608080203786],[-75.16118710571013,39.97169233158101],[-75.16270394803894,39.97187996003125],[-75.1663376492605,39.97235629574329],[-75.16653967505727,39.97238159652829],[-75.16722015021664,39.97339870539037],[-75.16773195823569,39.97432080822901],[-75.16854948232834,39.97574651893439],[-75.16939848252878,39.97725984179772]]],"type":"Polygon"} +},{ + "id": 1108723375, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000262, + "geom:area_square_m":2476871.154168, + "geom:bbox":"-75.0809596903,40.0351873135,-75.0544158282,40.0532978673", + "geom:latitude":40.043503, + "geom:longitude":-75.067875, + "iso:country":"US", + "lbl:latitude":40.043392, + "lbl:longitude":-75.068076, + "lbl:max_zoom":18.0, + "mps:latitude":40.043392, + "mps:longitude":-75.068076, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Castor Gardens" + ], + "name:fra_x_preferred":[ + "Castor Gardens" + ], + "reversegeo:latitude":40.043392, + "reversegeo:longitude":-75.068076, + "src:geom":"mz", + "wof:belongsto":[ + 85840075, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5050688" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"266f5075a3769318b0c4359e119aca10", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108723375, + "neighbourhood_id":85840075, + "region_id":85688481 + } + ], + "wof:id":1108723375, + "wof:lastmodified":1566623885, + "wof:name":"Castor Gardens", + "wof:parent_id":85840075, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782525 + ], + "wof:tags":[] +}, + "bbox": [ + -75.0809596903455, + 40.03518731350928, + -75.05441582815104, + 40.0532978672704 +], + "geometry": {"coordinates":[[[-75.08095969034549,40.04138640989394],[-75.06969016779769,40.0532978672704],[-75.06610616837911,40.0512735310971],[-75.06539152664766,40.05089641127099],[-75.06485426463725,40.05055203749864],[-75.06415406267477,40.05018668768345],[-75.06348474800691,40.04979345212313],[-75.06245081270448,40.04920861130309],[-75.06143222321518,40.04861267754259],[-75.05991834142156,40.04774197134527],[-75.05839143783021,40.04682517054012],[-75.05773660942178,40.04644368168456],[-75.05708178723914,40.04606218816225],[-75.05641255305085,40.04566891130003],[-75.05575774578531,40.04528741021741],[-75.05441582815104,40.0445064399938],[-75.06132086600324,40.03801507745673],[-75.0618163378868,40.03749329695074],[-75.0621525121625,40.0373046557297],[-75.06245219724299,40.03711516064995],[-75.06282596796996,40.03689932613266],[-75.0632317793708,40.03679652811172],[-75.0636033241661,40.03663678315164],[-75.06426228170304,40.03645184141616],[-75.06433565353974,40.03647456404487],[-75.06518713368614,40.0362762807647],[-75.0669559120298,40.03586436294994],[-75.0682812075249,40.03555570291461],[-75.06944610788868,40.03528438465398],[-75.06986285358019,40.03518731350928],[-75.08095969034549,40.04138640989394]]],"type":"Polygon"} +},{ + "id": 1108712257, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":170968.508955, + "geom:bbox":"-71.1473862984,42.3752791312,-71.1411440455,42.3802659248", + "geom:latitude":42.377535, + "geom:longitude":-71.144343, + "iso:country":"US", + "lbl:latitude":42.379058, + "lbl:longitude":-71.124879, + "lbl:max_zoom":18.0, + "mps:latitude":42.377581, + "mps:longitude":-71.144401, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":42.377581, + "reversegeo:longitude":-71.144401, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85835463, + 102191575, + 404476459, + 85633793, + 85950335, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9ef8eb7fba2e46882bcb257f02339e23", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476459, + "locality_id":85950335, + "microhood_id":1108712257, + "neighbourhood_id":85835463, + "region_id":85688645 + } + ], + "wof:id":1108712257, + "wof:lastmodified":1566624140, + "wof:name":"Larchwood", + "wof:parent_id":85835463, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867963, + 420785107 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14738629843794, + 42.37527913124919, + -71.14114404546518, + 42.38026592482368 +], + "geometry": {"coordinates":[[[-71.14738629843794,42.37872501691424],[-71.14721702845399,42.37872847486926],[-71.14705086412823,42.37874824696244],[-71.14685539142233,42.37879224675502],[-71.14652674801926,42.37890311373089],[-71.14612841977643,42.37905023680715],[-71.14593646887985,42.37917135175005],[-71.14580346778888,42.37931350882008],[-71.14568229969753,42.37941945683954],[-71.14557256360453,42.37947240139869],[-71.1454365865126,42.37952257698522],[-71.14534224561289,42.37957056282459],[-71.14514308149158,42.37974713090574],[-71.14507751796964,42.3797876513575],[-71.14474475324876,42.37992522482342],[-71.14463468886578,42.37996364990632],[-71.14424160178416,42.38008008868908],[-71.14353928619815,42.38026592482368],[-71.1428998645452,42.37879470703308],[-71.14280515983992,42.37862511013902],[-71.14256443023545,42.37824492732717],[-71.14246484817457,42.37815938020115],[-71.14230237218098,42.37805908521128],[-71.1422413509578,42.3779855768547],[-71.14218706663699,42.37780355140389],[-71.14214774318927,42.37758761790819],[-71.14213465502611,42.37755576005213],[-71.14212155212319,42.37753961290227],[-71.14209851287364,42.37752484706281],[-71.14185163232726,42.37746283804314],[-71.14174564782445,42.37741483481805],[-71.14144282176227,42.37719955827097],[-71.14137131475815,42.37710817934382],[-71.14130917215448,42.3769982259357],[-71.14120375327633,42.37679440254276],[-71.14144125058343,42.37675236863281],[-71.14114404546518,42.37607639768086],[-71.14218706663699,42.37583668062807],[-71.14258365332164,42.37576689647754],[-71.14478668253747,42.37542626281606],[-71.14531866038807,42.37534119939767],[-71.14585587939976,42.37527913124919],[-71.14738629843794,42.37872501691424]]],"type":"Polygon"} +},{ + "id": 1108723377, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":216901.003674, + "geom:bbox":"-75.2268090659,39.9714289832,-75.2184733951,39.9772217844", + "geom:latitude":39.973923, + "geom:longitude":-75.223639, + "iso:country":"US", + "lbl:latitude":39.973864, + "lbl:longitude":-75.224049, + "lbl:max_zoom":18.0, + "mps:latitude":39.973864, + "mps:longitude":-75.224049, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Cathedral Park" + ], + "reversegeo:latitude":39.973864, + "reversegeo:longitude":-75.224049, + "src:geom":"mz", + "wof:belongsto":[ + 420782491, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5052258" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7e6b2525da31c571b3628b4f3c1f3792", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108723377, + "neighbourhood_id":420782491, + "region_id":85688481 + } + ], + "wof:id":1108723377, + "wof:lastmodified":1566623884, + "wof:name":"Cathedral Park", + "wof:parent_id":420782491, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782493 + ], + "wof:tags":[] +}, + "bbox": [ + -75.22680906585579, + 39.97142898317096, + -75.21847339513096, + 39.9772217844453 +], + "geometry": {"coordinates":[[[-75.2258142094613,39.97142898317106],[-75.22581420946251,39.97142898317096],[-75.22680906585579,39.9772217844453],[-75.2260297027106,39.97685433907047],[-75.22357518793658,39.97569520559437],[-75.22049737271483,39.97424848900941],[-75.21965163065857,39.97367728105923],[-75.21847339513096,39.97300853551906],[-75.22205491804682,39.97223819600533],[-75.22580338088737,39.97143024242609],[-75.2258142094613,39.97142898317106]]],"type":"Polygon"} +},{ + "id": 1108712261, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000045, + "geom:area_square_m":412580.02243, + "geom:bbox":"-71.1905059314,42.2794788721,-71.17687116,42.2851639034", + "geom:latitude":42.282012, + "geom:longitude":-71.182495, + "iso:country":"US", + "lbl:latitude":42.282542, + "lbl:longitude":-71.180894, + "lbl:max_zoom":18.0, + "mps:latitude":42.282542, + "mps:longitude":-71.180894, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.282542, + "reversegeo:longitude":-71.180894, + "src:geom":"mz", + "wof:belongsto":[ + 85856255, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2544fc29b5f02ea291035b6b71881666", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712261, + "neighbourhood_id":85856255, + "region_id":85688645 + } + ], + "wof:id":1108712261, + "wof:lastmodified":1566624129, + "wof:name":"Millenium Park", + "wof:parent_id":85856255, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.19050593143834, + 42.27947887211297, + -71.1768711599789, + 42.28516390343722 +], + "geometry": {"coordinates":[[[[-71.19050593143834,42.28164589436111],[-71.187865679613,42.28243512841762],[-71.18784455116008,42.28243512841777],[-71.18782704472763,42.28242619606323],[-71.18732298020767,42.2819626051251],[-71.18521737895534,42.28360614917897],[-71.18419355449321,42.28312023627193],[-71.18148911251777,42.28516390343722],[-71.17745176699728,42.28444219635284],[-71.1771731973588,42.28066141145485],[-71.1768711599789,42.28040774003501],[-71.17712981835112,42.28040613187289],[-71.17755223966903,42.28039503602058],[-71.17790717355747,42.28037284431008],[-71.17824711023933,42.2803469539713],[-71.1785570525081,42.28031736499965],[-71.178861995708,42.28028037876555],[-71.18001678061259,42.28013613224515],[-71.18321618467728,42.27973297996261],[-71.18529756775669,42.27947887211297],[-71.18531659468711,42.27952046458359],[-71.18535778817481,42.27959125545989],[-71.18542387044768,42.2796412752511],[-71.1855113210505,42.27968219386329],[-71.18599055886821,42.27977158852874],[-71.18706012431957,42.28003475713738],[-71.18780860831536,42.28026451838991],[-71.18819873293165,42.28045519643722],[-71.18842602340278,42.28057102812042],[-71.18866234477676,42.28069963386704],[-71.18908494894737,42.2809087197963],[-71.18952908890724,42.28111785696495],[-71.18993034711927,42.28128957185343],[-71.19025244212364,42.28149837667611],[-71.19050593143834,42.28164589436111]]]],"type":"MultiPolygon"} +},{ + "id": 1108712263, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000112, + "geom:area_square_m":1023183.484281, + "geom:bbox":"-71.1912490997,42.2816458944,-71.1717623543,42.2946232108", + "geom:latitude":42.28779, + "geom:longitude":-71.180558, + "iso:country":"US", + "lbl:latitude":42.288678, + "lbl:longitude":-71.178789, + "lbl:max_zoom":18.0, + "mps:latitude":42.288678, + "mps:longitude":-71.178789, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Brook Farm" + ], + "name:fra_x_preferred":[ + "Brook Farm" + ], + "name:ita_x_preferred":[ + "Brook Farm" + ], + "name:nor_x_preferred":[ + "Brook Farm" + ], + "name:por_x_preferred":[ + "Fazenda Brook" + ], + "name:rus_x_preferred":[ + "\u0411\u0440\u0443\u043a\u0444\u0430\u0440\u043c" + ], + "name:spa_x_preferred":[ + "Brook Farm" + ], + "name:srp_x_preferred":[ + "Bruk farma" + ], + "name:swe_x_preferred":[ + "Brook Farm" + ], + "reversegeo:latitude":42.288678, + "reversegeo:longitude":-71.178789, + "src:geom":"mz", + "wof:belongsto":[ + 85856255, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b9a9a10365ec684f58360cfdb6fca759", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108712263, + "neighbourhood_id":85856255, + "region_id":85688645 + } + ], + "wof:id":1108712263, + "wof:lastmodified":1566624129, + "wof:name":"Brook Farm", + "wof:parent_id":85856255, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.19124909972187, + 42.28164589436111, + -71.17176235430404, + 42.29462321079467 +], + "geometry": {"coordinates":[[[[-71.17859203580311,42.29462321079467],[-71.17711513491199,42.29392403691767],[-71.17685729332293,42.29378186193448],[-71.17658964852303,42.29360901452386],[-71.17641763657436,42.29345505538049],[-71.17625346778973,42.29326734173996],[-71.17594013429071,42.29288104726042],[-71.17562680079172,42.29255269508997],[-71.17526124504289,42.29224365618935],[-71.17489568929405,42.29199256096607],[-71.17432124454588,42.29162557383909],[-71.17403569521109,42.29138090366074],[-71.17176235430404,42.28847712273364],[-71.17348954775737,42.28672677591048],[-71.17435161206694,42.28596206757648],[-71.1751593980935,42.28534211888638],[-71.17647441365344,42.28430576288744],[-71.17745176699728,42.28444219635284],[-71.18148911251777,42.28516390343722],[-71.18419355449321,42.28312023627193],[-71.18521737895534,42.28360614917897],[-71.18732298020767,42.2819626051251],[-71.18782704472763,42.28242619606323],[-71.18784455116008,42.28243512841777],[-71.187865679613,42.28243512841762],[-71.19050593143834,42.28164589436111],[-71.19051020074102,42.28164837887469],[-71.19075336379437,42.28184097935637],[-71.19097458314201,42.28212415698021],[-71.19113138062704,42.28236452368995],[-71.19123049450293,42.28265271475649],[-71.19124909972187,42.28299133475804],[-71.19090454668087,42.28324818707762],[-71.17861156383402,42.29461026614293],[-71.17859203580311,42.29462321079467]]]],"type":"MultiPolygon"} +},{ + "id": 1108713379, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000144, + "geom:area_square_m":1315699.021733, + "geom:bbox":"-71.1584313512,42.3886222185,-71.1405147215,42.4010528002", + "geom:latitude":42.394326, + "geom:longitude":-71.148995, + "iso:country":"US", + "lbl:latitude":42.394758, + "lbl:longitude":-71.148996, + "lbl:max_zoom":18.0, + "mps:latitude":42.394758, + "mps:longitude":-71.148996, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:bul_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:cat_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:ceb_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:epo_x_preferred":[ + "Riverharingo" + ], + "name:eus_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:fin_x_preferred":[ + "Harmaasilli" + ], + "name:fra_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:hun_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:ita_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:jpn_x_preferred":[ + "\u30a8\u30fc\u30eb\u30ef\u30a4\u30d5" + ], + "name:nld_x_preferred":[ + "Amerikaanse rivierharing" + ], + "name:pol_x_preferred":[ + "Aloza t\u0119czowa" + ], + "name:rus_x_preferred":[ + "\u0421\u0435\u0440\u043e\u0441\u043f\u0438\u043d\u043a\u0430" + ], + "name:spa_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:swe_x_preferred":[ + "Gumsill" + ], + "name:ukr_x_preferred":[ + "\u0421\u0456\u0440\u043e\u0441\u043f\u0438\u043d\u043a\u0430" + ], + "name:war_x_preferred":[ + "Alosa pseudoharengus" + ], + "name:zho_x_preferred":[ + "\u7070\u897f\u9be1" + ], + "reversegeo:latitude":42.394758, + "reversegeo:longitude":-71.148996, + "src:geom":"mz", + "wof:belongsto":[ + 85815901, + 102191575, + 404476319, + 85633793, + 85950613, + 102084643, + 85688645, + 85837429, + 404476475, + 85950329 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"126fd7707647ff4273fad6b4b2594b95", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476319, + "locality_id":85950613, + "microhood_id":1108713379, + "neighbourhood_id":85815901, + "region_id":85688645 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713379, + "neighbourhood_id":85837429, + "region_id":85688645 + } + ], + "wof:id":1108713379, + "wof:lastmodified":1566624126, + "wof:name":"Alewife", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780895 + ], + "wof:tags":[] +}, + "bbox": [ + -71.15843135124656, + 42.3886222184756, + -71.14051472146262, + 42.40105280021989 +], + "geometry": {"coordinates":[[[-71.14290460525723,42.39791827110018],[-71.14167812365004,42.39743817120666],[-71.14139025814096,42.39732251209926],[-71.14134393495559,42.39729929880203],[-71.14129387433303,42.39726891856766],[-71.1412575071223,42.39723424400346],[-71.14123143579111,42.39719870774815],[-71.14092261455532,42.3966057466801],[-71.14071085142221,42.39608445759675],[-71.14067035806389,42.39595582171489],[-71.14060496985564,42.39565439084316],[-71.14059025140612,42.39552640905862],[-71.14056085253625,42.39511354513598],[-71.14051673521685,42.39448798284209],[-71.14051472146262,42.39438023802081],[-71.14052555868074,42.39410351958858],[-71.140531844615,42.39401068316221],[-71.14054681205545,42.39389379454328],[-71.14056305840222,42.39379073418668],[-71.14060386692267,42.3936127553398],[-71.14078143913325,42.39300224740352],[-71.14120496539948,42.39165332555677],[-71.14139025814096,42.39112547868156],[-71.14145410321653,42.39097550952242],[-71.14154466875885,42.39082897015624],[-71.14172113803643,42.39056830216497],[-71.1418865025734,42.39035088954309],[-71.1430667162781,42.38890163060086],[-71.14312737759231,42.38882627905681],[-71.14317517789793,42.38878672351299],[-71.14324318555572,42.38874685435854],[-71.14331464256861,42.38871799283589],[-71.1433909785757,42.38869146066338],[-71.14347525754336,42.38866842026161],[-71.14355310972448,42.38864910074591],[-71.14365663685072,42.3886321551091],[-71.14374502006388,42.3886222184756],[-71.1438299459037,42.38862425501159],[-71.14392038640848,42.38863036461954],[-71.14416964926309,42.38867516839073],[-71.1451225833621,42.38892932736172],[-71.14613728170828,42.38919651901652],[-71.14736374318757,42.38945719270563],[-71.1492254940662,42.3898530887997],[-71.14994240992479,42.39000691277688],[-71.15019904169957,42.39005829088892],[-71.15044313208162,42.3900958386689],[-71.15100783376992,42.39016752301426],[-71.15684014339446,42.39088436196529],[-71.1572706763708,42.39092410889575],[-71.1574998123242,42.39161584070684],[-71.15751359071709,42.39165743425428],[-71.15757210787983,42.3918340843729],[-71.15843135124656,42.39458557570115],[-71.15836957874849,42.39462075819774],[-71.15835021616147,42.394631355295],[-71.15831703615881,42.39464951418798],[-71.15819280601841,42.39471750386852],[-71.1581138310338,42.39476537875267],[-71.15794036904583,42.39487053212108],[-71.15762282196734,42.39506302948485],[-71.15754073009279,42.39511279277662],[-71.15747879900957,42.39515033534304],[-71.15725831441857,42.39528399139742],[-71.15711822895807,42.39536890910571],[-71.15683950242865,42.39553786872013],[-71.1565931757132,42.39568718657087],[-71.15652844501136,42.39572642422389],[-71.15650819755464,42.39573869812426],[-71.15641184356649,42.39585615272102],[-71.15640110808498,42.39586880536806],[-71.15635055856674,42.39593021930866],[-71.15628055197617,42.39601527264971],[-71.15622694145399,42.39608040567936],[-71.15604287468265,42.39630403164487],[-71.1553679177461,42.39712403358367],[-71.15521061123174,42.39731514119251],[-71.15286899627871,42.40018960316412],[-71.15259765923415,42.40046631302435],[-71.15239396355346,42.40070790071237],[-71.15221428007324,42.40092100794905],[-71.15210315686635,42.40105280021989],[-71.15076342156955,42.40048637960061],[-71.15035734585602,42.40031469131341],[-71.15008764327673,42.40020066050557],[-71.14879568201668,42.39962209501316],[-71.14871141878552,42.39958435926954],[-71.14863639675522,42.39955076189467],[-71.14796458495823,42.39924989980633],[-71.14695447699104,42.39879752345436],[-71.14686687134424,42.39875828888068],[-71.14652258071796,42.39861343636112],[-71.14638132040852,42.39855400422027],[-71.14633911373107,42.39853624630107],[-71.1436368614465,42.39739927083727],[-71.14355504206027,42.3973648436467],[-71.14335102044056,42.39727899694529],[-71.14332161160536,42.39726729375781],[-71.14331723367548,42.39727889222802],[-71.14329125287631,42.39736947798337],[-71.14327422191312,42.39742990532879],[-71.14321214803982,42.39758503739245],[-71.14315536366716,42.3977316302736],[-71.14297349017116,42.39786700007993],[-71.14290460525723,42.39791827110018]]],"type":"Polygon"} +},{ + "id": 1108713387, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":626163.976217, + "geom:bbox":"-71.14433755,42.3647836207,-71.1301519007,42.3750721955", + "geom:latitude":42.37032, + "geom:longitude":-71.137477, + "iso:country":"US", + "lbl:latitude":42.370739, + "lbl:longitude":-71.136993, + "lbl:max_zoom":18.0, + "mps:latitude":42.370739, + "mps:longitude":-71.136993, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.370739, + "reversegeo:longitude":-71.136993, + "src:geom":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"920674a32af87dc93b68b30e76384b51", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713387, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713387, + "wof:lastmodified":1607000407, + "wof:name":"Coolidge Hill", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420785105 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14433755000441, + 42.3647836206838, + -71.13015190069903, + 42.37507219548104 +], + "geometry": {"coordinates":[[[-71.14004090900339,42.37356524028176],[-71.13990094811558,42.374986935026],[-71.13948279044453,42.37491525085382],[-71.13913631694565,42.37485402062342],[-71.13884659341645,42.37482116537783],[-71.13856284356822,42.37480324433479],[-71.13830149502382,42.37480324433479],[-71.13812265958349,42.37481744599835],[-71.13795800836544,42.37484207326139],[-71.13768471245901,42.37489583639052],[-71.13726058110694,42.37497498766397],[-71.13685735763843,42.37505264551717],[-71.13668277171124,42.37507219548104],[-71.13646757495218,42.37507205998047],[-71.13595831864566,42.37503472447412],[-71.13127495272987,42.37473604042337],[-71.13015190069903,42.37467630361322],[-71.13018249740023,42.37430914319883],[-71.13048872382018,42.37431499389992],[-71.13086677268021,42.37429986588056],[-71.13127790081549,42.37425099071307],[-71.13158821592143,42.37418931486647],[-71.13186860215929,42.37410320129104],[-71.13218206767239,42.37398101293535],[-71.1324388258565,42.37385300583274],[-71.13277906983052,42.37359000833036],[-71.13311458819379,42.37329209887127],[-71.13334299271339,42.37307913910283],[-71.13351468990399,42.37289527169811],[-71.13359817569392,42.37277191729193],[-71.13364858220858,42.37265554496049],[-71.13369426311249,42.37250891550773],[-71.13373994401641,42.37232155514806],[-71.13376042166298,42.37215630526164],[-71.13375997575315,42.3720534800091],[-71.13375045112912,42.3719785638412],[-71.13369099752926,42.37190800533296],[-71.1334154520782,42.37163029522621],[-71.13311616339736,42.37127069761299],[-71.13281529951293,42.37093204543824],[-71.13258059417899,42.37066554487423],[-71.13248923237117,42.37044908487013],[-71.13245930350308,42.37024193439804],[-71.1324561530959,42.37007900652914],[-71.13248765716756,42.36990909557137],[-71.13255224051449,42.36970310698445],[-71.13264990313667,42.36948547996299],[-71.13279482186634,42.36928996412229],[-71.13307993371495,42.3690176372761],[-71.13353674275413,42.36869061103639],[-71.1341494969481,42.36835543629185],[-71.13460788119089,42.36811336485369],[-71.13478902960298,42.3680132772573],[-71.13493079792549,42.36793879336251],[-71.13509619430175,42.36788409419249],[-71.135299395564,42.36784452455155],[-71.13550417202987,42.36781310158101],[-71.13573257654946,42.36776654899842],[-71.13598933473357,42.36767344371596],[-71.13623034088184,42.3675489152184],[-71.13656113363436,42.36737317824566],[-71.13704629633806,42.36706127292594],[-71.13747475171276,42.3667412196218],[-71.1378417741477,42.36640603433304],[-71.1384135730485,42.36588812298706],[-71.13896489430269,42.36542956509685],[-71.13938074804872,42.3651188141903],[-71.13969736396899,42.36491513785349],[-71.13985173392018,42.36484414189661],[-71.13999035183552,42.36480224260069],[-71.14014944739745,42.3647836206838],[-71.14034162223463,42.36479642325237],[-71.14079685607024,42.36489302432634],[-71.14131194764201,42.36500708334331],[-71.14163328917304,42.36507342366783],[-71.14201921405099,42.3651642050384],[-71.14253903123353,42.36529804912629],[-71.14297221221898,42.36540279653555],[-71.1432069175529,42.36544469543716],[-71.14338649076142,42.36546448101969],[-71.14355346234126,42.36547030030716],[-71.14369995627453,42.3654656448771],[-71.14386355628548,42.36544275135468],[-71.14391620109642,42.3655748892595],[-71.1439766326248,42.36568889492431],[-71.14397891159635,42.36569462781332],[-71.14407068507926,42.36587768665385],[-71.14426209611908,42.36619560440876],[-71.14433755000441,42.36638378283143],[-71.14425873000279,42.36640221064285],[-71.14423945241572,42.36640662846898],[-71.14415137677477,42.36641961213083],[-71.14382901544347,42.36646661372637],[-71.14380290936376,42.36647033642817],[-71.14358332569593,42.36650252346333],[-71.14349164250193,42.36651586948322],[-71.14349103256889,42.36651596649539],[-71.14336466571775,42.36654133311039],[-71.14335366795778,42.36654329600241],[-71.1432929958773,42.36655552803705],[-71.14322911022272,42.36656812043093],[-71.14320711922376,42.36657275062056],[-71.14318157508947,42.36657782641927],[-71.14311996037929,42.36659554664158],[-71.14311767749089,42.3665962997412],[-71.14309485763053,42.36660273388979],[-71.14304083191803,42.36661823968176],[-71.14300066620351,42.36662994178459],[-71.14294873378445,42.36664786083767],[-71.14293258536887,42.36665351602495],[-71.1428417864182,42.36668521177181],[-71.14283094253116,42.36668906423812],[-71.142822724193,42.36669191110411],[-71.14278275032734,42.36670994981112],[-71.14276150959545,42.3667195163321],[-71.14271285547272,42.36674141419368],[-71.14269154984476,42.36675254400419],[-71.14267372559651,42.36676186597421],[-71.14264916040575,42.36677471486929],[-71.14263750600311,42.36678076117518],[-71.14260551619786,42.36679747470986],[-71.14258677914059,42.36680713157222],[-71.14254916546911,42.36683117745247],[-71.14251840768367,42.36685118804035],[-71.14248373017422,42.36687988934608],[-71.14247480023337,42.36688763386654],[-71.14244820706796,42.36691661175533],[-71.14243812010623,42.36692798682348],[-71.14240367280111,42.36696602302346],[-71.14239678179332,42.36697588555406],[-71.14238529960527,42.36699224086933],[-71.14237645806014,42.36700454727966],[-71.14235047435905,42.3670470456681],[-71.14232448445065,42.36709013376458],[-71.14230522695061,42.3671217984897],[-71.14229594772094,42.3671377318928],[-71.1422888955301,42.36714911901563],[-71.14225169769271,42.36721071754133],[-71.14222088059425,42.36726173332538],[-71.14218695829157,42.36731789290139],[-71.14216821361116,42.36734892264328],[-71.14214993029192,42.36737928043745],[-71.14211808028308,42.36743164447343],[-71.14209933669595,42.36746284518225],[-71.14208473387968,42.36748704667901],[-71.14204207238947,42.36755754041953],[-71.14201315162038,42.36760573279903],[-71.14198337119255,42.36765464006548],[-71.14195910885157,42.36769486264458],[-71.14195140405369,42.36770759499996],[-71.14191299564348,42.3677712587068],[-71.14186711410096,42.36784706468528],[-71.14185734037164,42.36786334056639],[-71.14182583372826,42.36791536784428],[-71.14178213627612,42.36798754749375],[-71.14175235214374,42.36803704547134],[-71.14172648085611,42.36807971345871],[-71.14169658242029,42.36812921106502],[-71.14167366302939,42.36816786742148],[-71.14165520712993,42.36819779899819],[-71.14153271262809,42.36839589020663],[-71.14142331798335,42.36857443097558],[-71.14126042985031,42.36884036416102],[-71.14121160870451,42.36891946604371],[-71.1411171768019,42.36903894149202],[-71.14111326662224,42.36904402119958],[-71.14104187860062,42.36913259985593],[-71.14103358170813,42.36914384255092],[-71.14097773922229,42.36923084725486],[-71.14090987252487,42.36949173940033],[-71.14070123090379,42.36983012132958],[-71.14053544047029,42.37010192749405],[-71.14044262596101,42.37043517436436],[-71.14038008458797,42.37071838952819],[-71.14032392833818,42.37102347261114],[-71.14024118985297,42.37136137130197],[-71.14020621897237,42.37162011892333],[-71.1401499303297,42.37243711799485],[-71.14004582741433,42.37351434243339],[-71.14004090900339,42.37356524028176]]],"type":"Polygon"} +},{ + "id": 1108713389, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000061, + "geom:area_square_m":561670.579252, + "geom:bbox":"-71.1415872597,42.3772282572,-71.1304339206,42.3867942095", + "geom:latitude":42.381539, + "geom:longitude":-71.136446, + "iso:country":"US", + "lbl:latitude":42.381259, + "lbl:longitude":-71.136531, + "lbl:max_zoom":18.0, + "mps:latitude":42.381259, + "mps:longitude":-71.136531, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":42.381259, + "reversegeo:longitude":-71.136531, + "src:geom":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"533efdb4a604338b6649aa31675ea202", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713389, + "region_id":85688645 + } + ], + "wof:id":1108713389, + "wof:lastmodified":1566624125, + "wof:name":"Huron Village", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420785111, + 420785113 + ], + "wof:tags":[] +}, + "bbox": [ + -71.14158725971402, + 42.37722825720756, + -71.13043392061817, + 42.3867942095081 +], + "geometry": {"coordinates":[[[-71.13100177967013,42.38240746863744],[-71.13213498914409,42.38156273440168],[-71.13206124234213,42.38137132844302],[-71.13201130681848,42.3812230466209],[-71.13190212154475,42.38085100791043],[-71.13178687042246,42.38044661800779],[-71.13174845338173,42.38033338883499],[-71.13169588269436,42.38018983041958],[-71.13163884977362,42.38003518614298],[-71.13157424688393,42.37990684566323],[-71.13149368774305,42.37976724297123],[-71.13130746676563,42.37950117847245],[-71.13109738563843,42.37921727270359],[-71.13043392061817,42.37830584600911],[-71.13055345235293,42.37829891409719],[-71.13199561942277,42.3781181776226],[-71.13470328904555,42.37782496577773],[-71.13563130068215,42.37772618237879],[-71.13647767295686,42.37760769600339],[-71.13785901407908,42.3773863775337],[-71.13875241542345,42.37722825720756],[-71.14117408737707,42.38431617514033],[-71.14121319905405,42.38439952930649],[-71.141263966381,42.3844776749228],[-71.1413284501763,42.38455521941901],[-71.14136990014129,42.38460172425785],[-71.14142270413053,42.38465312843584],[-71.14149728296069,42.38471293148106],[-71.14154352076962,42.38474304728917],[-71.14158725971402,42.38476550216841],[-71.14129314599604,42.38551262157186],[-71.14109042995069,42.38610101941912],[-71.14106910880457,42.38619039408171],[-71.14098304301002,42.3867942095081],[-71.14048457963875,42.38665468809038],[-71.14041437618317,42.3866325160927],[-71.1398861260251,42.38640379281938],[-71.1396754390972,42.38631052124216],[-71.13963228710128,42.38629117801491],[-71.13903138247771,42.38602517798853],[-71.13887146335487,42.38595470280972],[-71.1386910059733,42.38587524434784],[-71.13823294639862,42.38567280244277],[-71.13808180013717,42.38560578375412],[-71.13793757922294,42.38554153067019],[-71.13745206587465,42.38532665064758],[-71.13727946236497,42.3852499592354],[-71.13712485600647,42.38518155583606],[-71.1366785807655,42.38498326086417],[-71.13653135861431,42.38491831051876],[-71.13637975724099,42.38485060213015],[-71.13596255681556,42.38466611630113],[-71.13579272427307,42.38459080340944],[-71.13565820016805,42.38453069415348],[-71.13425018974874,42.38390469615193],[-71.13408936394436,42.38383283936882],[-71.13396961628254,42.38377826313913],[-71.13309769694982,42.38338171251009],[-71.13295326679187,42.38331539443521],[-71.13292488465339,42.38330295529456],[-71.13287228100106,42.38327877679827],[-71.13281137284797,42.38325045575253],[-71.13203270968077,42.38289123980048],[-71.13195611214161,42.38285600807989],[-71.13184605982465,42.38280557665274],[-71.13117652539852,42.38249815479638],[-71.13101622935118,42.38241600531335],[-71.13100177967013,42.38240746863744]]],"type":"Polygon"} +},{ + "id": 1108713391, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.0769210478,42.3706155683,-71.0769210478,42.3706155683", + "geom:latitude":42.370616, + "geom:longitude":-71.076921, + "iso:country":"US", + "lbl:latitude":42.370616, + "lbl:longitude":-71.076921, + "lbl:max_zoom":18.0, + "mps:latitude":42.370616, + "mps:longitude":-71.076921, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Lechmere Square" + ], + "reversegeo:latitude":42.370616, + "reversegeo:longitude":-71.076921, + "src:geom":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"44cdc52d047b17c276e6c3a41b6d99ae", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713391, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713391, + "wof:lastmodified":1613672357, + "wof:name":"Lechmere Square", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780893 + ], + "wof:tags":[] +}, + "bbox": [ + -71.07692104776189, + 42.37061556834166, + -71.07692104776189, + 42.37061556834166 +], + "geometry": {"coordinates":[-71.07692104776189,42.37061556834166],"type":"Point"} +},{ + "id": 1108713395, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1026929331,42.3645368004,-71.1026929331,42.3645368004", + "geom:latitude":42.364537, + "geom:longitude":-71.102693, + "iso:country":"US", + "lbl:latitude":42.364537, + "lbl:longitude":-71.102693, + "lbl:max_zoom":18.0, + "mps:latitude":42.365609, + "mps:longitude":-71.104065, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Central Sq" + ], + "name:jpn_x_preferred":[ + "\u30bb\u30f3\u30c8\u30e9\u30eb\u30b9\u30af\u30a8\u30a2" + ], + "reversegeo:latitude":42.365609, + "reversegeo:longitude":-71.104065, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ee51950fc9f2dcdac69bdd0102b6ab42", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713395, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713395, + "wof:lastmodified":1613672359, + "wof:name":"Central Square", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85810255 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1026929331, + 42.3645368004, + -71.1026929331, + 42.3645368004 +], + "geometry": {"coordinates":[-71.1026929331,42.3645368004],"type":"Point"} +},{ + "id": 1108723379, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":501069.996681, + "geom:bbox":"-75.1707655581,39.9946323274,-75.158581,40.000622", + "geom:latitude":39.997591, + "geom:longitude":-75.164625, + "iso:country":"US", + "lbl:latitude":39.997611, + "lbl:longitude":-75.164625, + "lbl:max_zoom":18.0, + "mps:latitude":39.997611, + "mps:longitude":-75.164625, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":39.997611, + "reversegeo:longitude":-75.164625, + "src:geom":"mz", + "wof:belongsto":[ + 85893347, + 102191575, + 1108721811, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"42c586562dea33d7a59892218d1a5749", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721811, + "microhood_id":1108723379, + "neighbourhood_id":85893347, + "region_id":85688481 + } + ], + "wof:id":1108723379, + "wof:lastmodified":1566623884, + "wof:name":"Forgotten Blocks", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782587 + ], + "wof:tags":[] +}, + "bbox": [ + -75.17076555805151, + 39.9946323273712, + -75.158581, + 40.000622 +], + "geometry": {"coordinates":[[[-75.17076555805151,39.99604257395534],[-75.17041999999999,39.997618],[-75.170087,39.999116],[-75.169754,40.000622],[-75.1692,40.000546],[-75.168724,40.000485],[-75.16817899999999,40.000409],[-75.16761,40.000342],[-75.16737500000001,40.00031],[-75.167134,40.000282],[-75.166562,40.000199],[-75.16575400000001,40.000098],[-75.165357,40.00005],[-75.164968,39.999997],[-75.16445899999999,39.999933],[-75.163993,39.999876],[-75.163093,39.999752],[-75.161973,39.999607],[-75.16153,39.999549],[-75.159931,39.999351],[-75.15955099999999,39.999291],[-75.159541,39.999285],[-75.159412,39.999221],[-75.158996,39.998827],[-75.158599,39.998327],[-75.158581,39.998205],[-75.15871300000001,39.997651],[-75.158754,39.997454],[-75.15892599999999,39.996639],[-75.159049,39.99607],[-75.159113,39.995773],[-75.159178,39.99547],[-75.15931973534416,39.99480856839402],[-75.15979706373821,39.9946323273712],[-75.1598068422377,39.99463361032565],[-75.16418917605407,39.99520862732883],[-75.16504761531122,39.99532698640701],[-75.16607197620445,39.99545719764667],[-75.16758409202124,39.99564493195355],[-75.16760701164733,39.9956477767014],[-75.16820247147619,39.99572186444624],[-75.16869337895194,39.99578352736537],[-75.16926313698306,39.99585457451931],[-75.16983467645993,39.99592599944472],[-75.17028861706856,39.99598300064671],[-75.17076555805151,39.99604257395534]]],"type":"Polygon"} +},{ + "id": 1108723381, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000092, + "geom:area_square_m":875315.865824, + "geom:bbox":"-75.0902308771,39.998935506,-75.0688482422,40.0107952916", + "geom:latitude":40.005231, + "geom:longitude":-75.080859, + "iso:country":"US", + "lbl:latitude":40.004644, + "lbl:longitude":-75.08159, + "lbl:max_zoom":18.0, + "mps:latitude":40.004644, + "mps:longitude":-75.08159, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":40.004644, + "reversegeo:longitude":-75.08159, + "src:geom":"mz", + "wof:belongsto":[ + 85820547, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a1e094c6400ac104582f743e0fdba486", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108723381, + "neighbourhood_id":85820547, + "region_id":85688481 + } + ], + "wof:id":1108723381, + "wof:lastmodified":1566623880, + "wof:name":"Frankford Valley", + "wof:parent_id":85820547, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782529 + ], + "wof:tags":[] +}, + "bbox": [ + -75.09023087713378, + 39.99893550601496, + -75.06884824216564, + 40.01079529159739 +], + "geometry": {"coordinates":[[[-75.09023087713378,40.00420964826237],[-75.08947170575608,40.00475000306466],[-75.08916865094248,40.00498718642143],[-75.08888865464728,40.00520166001873],[-75.08850654205622,40.00546155065899],[-75.08797619613235,40.00579208974937],[-75.08745243835665,40.00606207088308],[-75.08691879835877,40.00631691189459],[-75.08640821687932,40.0065086728253],[-75.08600963391793,40.00665501633023],[-75.08559458058623,40.00679631320973],[-75.08506752873646,40.00695022554926],[-75.08426706873962,40.00716469298469],[-75.08356543096463,40.00734383585546],[-75.08236638800641,40.00763904209574],[-75.08126946134406,40.0079140621453],[-75.07930948727774,40.00839345224322],[-75.07750433469229,40.00882994661464],[-75.07648975988148,40.00908225422688],[-75.07496789766527,40.00946323695405],[-75.07415096729814,40.00966508124581],[-75.07184182138133,40.0102251960292],[-75.06953020995037,40.01079529159739],[-75.06928546784236,40.01009408069942],[-75.06905667120954,40.00927702329392],[-75.06884824216564,40.00859325116128],[-75.06886816026031,40.00855145646943],[-75.06887600257561,40.0085812785421],[-75.07259909928835,40.00811727519246],[-75.07487209606339,40.00632901820406],[-75.07573362381348,40.0056043638843],[-75.07643901513457,40.00503716641231],[-75.07690544319227,40.00475621396603],[-75.07751157408006,40.00413023978626],[-75.07955601932602,40.00252427346042],[-75.08605545859751,39.99910632274817],[-75.0863819863052,39.99893550601496],[-75.08711022804135,39.9998386594714],[-75.0874812744197,40.00060540596595],[-75.0874770921279,40.00129952641102],[-75.0875472902086,40.00179505046035],[-75.0879902236011,40.00277967066898],[-75.08841645273921,40.00329897147561],[-75.0892430096515,40.0037784171039],[-75.09020660304247,40.00419905191256],[-75.09023087713378,40.00420964826237]]],"type":"Polygon"} +},{ + "id": 1108723385, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":224378.351134, + "geom:bbox":"-75.2656444137,39.9784515545,-75.2587113747,39.9850206294", + "geom:latitude":39.98157, + "geom:longitude":-75.261727, + "iso:country":"US", + "lbl:latitude":39.981109, + "lbl:longitude":-75.262016, + "lbl:max_zoom":18.0, + "mps:latitude":39.981109, + "mps:longitude":-75.262016, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":39.981109, + "reversegeo:longitude":-75.262016, + "src:geom":"mz", + "wof:belongsto":[ + 85839965, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ad33a41bb8cbab95ea3eea1af8dca011", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108723385, + "neighbourhood_id":85839965, + "region_id":85688481 + } + ], + "wof:id":1108723385, + "wof:lastmodified":1566623880, + "wof:name":"Green Hill Farms", + "wof:parent_id":85839965, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782615 + ], + "wof:tags":[] +}, + "bbox": [ + -75.2656444136922, + 39.9784515545306, + -75.25871137465275, + 39.98502062936536 +], + "geometry": {"coordinates":[[[-75.25936921269204,39.98502062936536],[-75.25916706274492,39.98473478624096],[-75.25904212467719,39.98455485597294],[-75.25896957999271,39.98444574482721],[-75.25891987344963,39.98436566123871],[-75.25889300504798,39.98431460520746],[-75.25886855480246,39.98425922582351],[-75.2588465227131,39.98419952308687],[-75.25882690877989,39.98413549699753],[-75.25880971300282,39.98406714755549],[-75.25879278590978,39.98400044502915],[-75.25877612750075,39.98393538941852],[-75.25875973777573,39.98387198072357],[-75.25874361673475,39.98381021894433],[-75.25873071990195,39.98374248676737],[-75.25872104727735,39.98366878419269],[-75.25871459886095,39.9835891112203],[-75.25871137465275,39.9835034678502],[-75.25871325544087,39.98341700087251],[-75.25872024122529,39.98332971028726],[-75.25873233200605,39.98324159609444],[-75.25874952778311,39.98315265829405],[-75.25876323066797,39.98307957281169],[-75.25877344066059,39.98302233964736],[-75.25878015776101,39.98298095880108],[-75.2587833819692,39.98295543027284],[-75.25879224854174,39.98293175461585],[-75.25880675747865,39.98290993183014],[-75.25882690877989,39.98288996191569],[-75.25885270244548,39.98287184487249],[-75.25887983953116,39.982853110197],[-75.25890832003692,39.9828337578892],[-75.25893814396277,39.9828137879491],[-75.2589693113087,39.98279320037669],[-75.25900155339069,39.98277261279808],[-75.25903487020875,39.98275202521327],[-75.25906926176287,39.98273143762225],[-75.25910472805306,39.98271085002503],[-75.2591490609158,39.98268676252232],[-75.25920226035109,39.98265917511411],[-75.25926432635893,39.98262808780041],[-75.2593352589393,39.98259350058122],[-75.25940001178731,39.98256035448279],[-75.25945858490294,39.98252864950511],[-75.25951097828617,39.9824983856482],[-75.25955719193703,39.98246956291204],[-75.25961683978872,39.98243662261758],[-75.25968992184123,39.98239956476483],[-75.25977643809458,39.98235838935376],[-75.25987638854878,39.98231309638439],[-75.25996236743408,39.98227500910724],[-75.26003437475053,39.98224412752234],[-75.26009241049812,39.98222045162965],[-75.26013647467683,39.98220398142919],[-75.26015501387397,39.98217495266029],[-75.26014802808955,39.98213336532294],[-75.26011551732353,39.98207921941714],[-75.26005748157596,39.98201251494289],[-75.26000589424476,39.98195178089652],[-75.25996075532998,39.98189701727803],[-75.25992206483158,39.98184822408741],[-75.25988982274959,39.98180540132469],[-75.25986134224382,39.98176546084632],[-75.2598366233143,39.98172840265231],[-75.25981566596101,39.98169422674268],[-75.25979847018394,39.9816629331174],[-75.2597815430909,39.98162855128149],[-75.25976488468187,39.98159108123494],[-75.25974849495685,39.98155052297774],[-75.25973237391587,39.98150687650991],[-75.25971947708307,39.98145334774575],[-75.25970980445847,39.98138993668528],[-75.25970335604207,39.98131664332847],[-75.25970013183387,39.98123346767535],[-75.25969905709781,39.98114988015729],[-75.25970013183385,39.9810658807743],[-75.25970335604205,39.98098146952636],[-75.2597087297224,39.9808966464135],[-75.2597119539306,39.98080173492252],[-75.25971302866665,39.98069673505344],[-75.25971195393059,39.98058164680624],[-75.25970872972239,39.98045647018093],[-75.25970362472607,39.98035044057634],[-75.25969663894165,39.98026355799245],[-75.25968777236909,39.98019582242927],[-75.25967702500843,39.9801472338868],[-75.25966896448793,39.98010008650125],[-75.25966359080759,39.98005438027266],[-75.25966090396743,39.980010115201],[-75.25966090396743,39.97996729128627],[-75.25966090396743,39.97993043800494],[-75.25966090396743,39.97989955535701],[-75.25966090396743,39.97987464334247],[-75.25966090396743,39.97985570196134],[-75.25966493422769,39.9798322311043],[-75.25967299474817,39.97980423077138],[-75.25968508552893,39.97977170096256],[-75.25970120656993,39.97973464167784],[-75.25971947708305,39.9796992294574],[-75.25973989706833,39.97966546430121],[-75.25976246652571,39.97963334620929],[-75.25978718545525,39.97960287518163],[-75.25981244175281,39.97957240414038],[-75.2598382354184,39.97954193308554],[-75.25986456645202,39.97951146201713],[-75.2598914348537,39.97948099093512],[-75.2599223335156,39.97945072572575],[-75.25995726243775,39.97942066638905],[-75.25999622162016,39.97939081292498],[-75.26003921106283,39.97936116533355],[-75.26008031971736,39.97933707666351],[-75.2601195475838,39.97931854691486],[-75.26015689466209,39.97930557608758],[-75.26019236095229,39.97929816418169],[-75.26022648382239,39.97929178170691],[-75.26025926327242,39.97928642866324],[-75.26029069930237,39.9792821050507],[-75.26032079191222,39.97927881086927],[-75.26034900373398,39.97927016363796],[-75.2603753347676,39.97925616335676],[-75.26039978501311,39.97923681002568],[-75.26042235447051,39.9792121036447],[-75.26044949155617,39.97918348540087],[-75.26048119627013,39.97915095529416],[-75.26051746861238,39.9791145133246],[-75.26055830858292,39.97907415949217],[-75.26061688169854,39.97901671692847],[-75.26069318795925,39.97894218563347],[-75.26078722736506,39.9788505656072],[-75.26089899991598,39.97874185684965],[-75.26098900906153,39.97865497217835],[-75.26105725480176,39.97858991159328],[-75.26110373713662,39.97854667509446],[-75.26112845606615,39.97852526268187],[-75.26115102552353,39.97850776215121],[-75.26117144550881,39.97849417350248],[-75.26118971602193,39.97848449673566],[-75.26120583706292,39.97847873185076],[-75.2612249136281,39.97847317285422],[-75.26124694571746,39.97846781974605],[-75.261271933331,39.97846267252623],[-75.26129987646874,39.97845773119477],[-75.26132755092245,39.97845423108502],[-75.26135495669214,39.97845217219696],[-75.26138209377783,39.9784515545306],[-75.26140896217949,39.97845237808595],[-75.26143717400123,39.9784538193077],[-75.26146672924307,39.97845587819585],[-75.26149762790497,39.97845855475042],[-75.26152986998696,39.97846184897138],[-75.26156318680502,39.97846720207922],[-75.26159757835914,39.9784746140739],[-75.26163304464933,39.97848408495545],[-75.26166958567559,39.97849561472385],[-75.26171284380226,39.97851208581176],[-75.26176281902936,39.97853349821918],[-75.26181951135686,39.9785598519461],[-75.26188292078477,39.97859114699254],[-75.26195519678524,39.9786288245447],[-75.26203633935826,39.97867288460259],[-75.26212634850383,39.97872332716621],[-75.26222522422194,39.97878015223554],[-75.26234048966506,39.9788456244989],[-75.26247214483321,39.97891974395624],[-75.26262018972636,39.97900251060759],[-75.2627846243445,39.97909392445295],[-75.2629415358102,39.97918472051982],[-75.26309092412345,39.97927489880819],[-75.2632327892842,39.97936445931806],[-75.26336713129251,39.97945340204944],[-75.2634834714717,39.97953307985951],[-75.26358180982177,39.97960349274827],[-75.26366214634274,39.9796646407157],[-75.26372448103459,39.97971652376182],[-75.26378278546619,39.97976470085196],[-75.26383705963755,39.97980917198612],[-75.26388730354866,39.97984993716428],[-75.2639335171995,39.97988699638647],[-75.26398671663479,39.97993167328598],[-75.26404690185451,39.97998396786279],[-75.26411407285866,39.98004388011694],[-75.26418822964726,39.98011141004842],[-75.26425325117927,39.9801729693102],[-75.26430913745473,39.98022855790228],[-75.26435588847362,39.98027817582468],[-75.26439350423594,39.98032182307738],[-75.26444562893516,39.98038132322361],[-75.26451226257127,39.98045667626337],[-75.2645934051443,39.98054788219666],[-75.26468905665421,39.98065494102347],[-75.26481426340595,39.98079988151252],[-75.26496902539951,39.98098270366378],[-75.26520681075421,39.98126805384619],[-75.2656444136922,39.98179714372893],[-75.26551099943092,39.98185699970801],[-75.26474799969624,39.98219300035636],[-75.26435100034108,39.98237199980873],[-75.26368700017231,39.98265800036054],[-75.26294600046299,39.98304499964116],[-75.26279399950023,39.98312399997462],[-75.26251199991496,39.9832800001242],[-75.26077999959705,39.984241000304],[-75.26068899951954,39.9842950004288],[-75.25947599964729,39.98495500029071],[-75.25936921269204,39.98502062936536]]],"type":"Polygon"} +},{ + "id": 1108723387, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000198, + "geom:area_square_m":1878949.605415, + "geom:bbox":"-75.1368304094,40.0035044713,-75.1122385233,40.0150740373", + "geom:latitude":40.009324, + "geom:longitude":-75.124436, + "iso:country":"US", + "lbl:latitude":40.009298, + "lbl:longitude":-75.124439, + "lbl:max_zoom":18.0, + "mps:latitude":40.009298, + "mps:longitude":-75.124439, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":40.009298, + "reversegeo:longitude":-75.124439, + "src:geom":"mz", + "wof:belongsto":[ + 420539527, + 102191575, + 1108721811, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6edc51760022d184cb11216e2d7d6937", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721811, + "microhood_id":1108723387, + "neighbourhood_id":420539527, + "region_id":85688481 + } + ], + "wof:id":1108723387, + "wof:lastmodified":1566623880, + "wof:name":"Hunting Park Industrial", + "wof:parent_id":420539527, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782565 + ], + "wof:tags":[] +}, + "bbox": [ + -75.13683040935543, + 40.00350447131861, + -75.11223852325274, + 40.01507403734762 +], + "geometry": {"coordinates":[[[-75.13683040935543,40.00748636870554],[-75.1351765180123,40.01507403734759],[-75.13517651801219,40.01507403734762],[-75.13232380480966,40.01469547914937],[-75.12989905880309,40.01438612882713],[-75.12597818947052,40.0138610815579],[-75.12233857032395,40.01338770269746],[-75.11943196329216,40.01303080708234],[-75.11732238526156,40.0127518348155],[-75.11586316879037,40.01255884269776],[-75.11300413978806,40.01219380188166],[-75.11223852325274,40.0120834342126],[-75.11248282822277,40.01120549922526],[-75.11266033293835,40.01056760095525],[-75.11269651038137,40.01040899380589],[-75.1129540623902,40.00908480282646],[-75.11359830300988,40.00602845968417],[-75.11382654962026,40.00491228636077],[-75.1140793170234,40.00360659446221],[-75.11410017569324,40.00350447131861],[-75.1156857147365,40.00368827222584],[-75.11680364322021,40.00381785260258],[-75.11844450430144,40.00400802706383],[-75.12004628902267,40.00421107742289],[-75.12232951662597,40.00450047222478],[-75.12400776709016,40.00471315591233],[-75.12397129380328,40.00488266074185],[-75.12784831702896,40.00531480625705],[-75.12997095492156,40.00521921076335],[-75.13193118973797,40.00519745181234],[-75.13194862290453,40.00532555066174],[-75.13165366649011,40.00681568957747],[-75.13406011060383,40.00707702326529],[-75.13683040935543,40.00748636870554]]],"type":"Polygon"} +},{ + "id": 1108723393, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000137, + "geom:area_square_m":1299501.553956, + "geom:bbox":"-75.255918,39.9659224629,-75.2454864142,39.9856938705", + "geom:latitude":39.976106, + "geom:longitude":-75.250599, + "iso:country":"US", + "lbl:latitude":39.978071, + "lbl:longitude":-75.250698, + "lbl:max_zoom":18.0, + "mps:latitude":39.978071, + "mps:longitude":-75.250698, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Morris Park" + ], + "name:pol_x_preferred":[ + "Morris Park" + ], + "name:swe_x_preferred":[ + "Morris Park" + ], + "reversegeo:latitude":39.978071, + "reversegeo:longitude":-75.250698, + "src:geom":"mz", + "wof:belongsto":[ + 85839965, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fcff515c06733a24132a0e00947c7222", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108723393, + "neighbourhood_id":85839965, + "region_id":85688481 + } + ], + "wof:id":1108723393, + "wof:lastmodified":1566623886, + "wof:name":"Morris Park", + "wof:parent_id":85839965, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782495 + ], + "wof:tags":[] +}, + "bbox": [ + -75.255918, + 39.96592246288465, + -75.24548641421414, + 39.9856938705129 +], + "geometry": {"coordinates":[[[-75.24753561346949,39.9856938705129],[-75.24752100000001,39.985665],[-75.24737,39.985053],[-75.247094,39.983595],[-75.246576,39.980887],[-75.24654,39.980645],[-75.246354,39.979649],[-75.24622100000001,39.978983],[-75.24609,39.9783],[-75.24548641421414,39.97533142032614],[-75.24653796415005,39.97517965319039],[-75.24681118858383,39.97515375077577],[-75.24751080766895,39.9750749686748],[-75.2472483212634,39.97357403038579],[-75.2468759315006,39.97207069473299],[-75.24695025175777,39.97169210474815],[-75.24717076214296,39.97056880221925],[-75.24749040745097,39.96906772696742],[-75.24649165902103,39.96894187696856],[-75.24681675811613,39.96740895427812],[-75.2469764782537,39.966649647453],[-75.24713197015858,39.96592246288465],[-75.247169,39.965927],[-75.24815700000001,39.966051],[-75.248752,39.966126],[-75.249291,39.966192],[-75.25013300000001,39.966299],[-75.250218,39.966292],[-75.25039700000001,39.966307],[-75.250601,39.966326],[-75.250935,39.966366],[-75.251119,39.966398],[-75.250985,39.967115],[-75.250918,39.967427],[-75.250828,39.967794],[-75.250801,39.967937],[-75.25048419324841,39.96946032156515],[-75.250941,39.969512],[-75.251468,39.969578],[-75.252566,39.969716],[-75.253441,39.969822],[-75.255104,39.970034],[-75.25500212722102,39.97136034363234],[-75.25490000000001,39.97269],[-75.25500700000001,39.973273],[-75.255196,39.97426],[-75.255325,39.974946],[-75.255432,39.975523],[-75.25549100000001,39.975854],[-75.255661,39.976755],[-75.25591799999999,39.978122],[-75.25545700000001,39.978297],[-75.25502299999999,39.978468],[-75.25567767050073,39.98203769061173],[-75.24753561346949,39.9856938705129]]],"type":"Polygon"} +},{ + "id": 1108723395, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":32012.122458, + "geom:bbox":"-75.1358446615,39.981721877,-75.1335078183,39.9836369607", + "geom:latitude":39.98268, + "geom:longitude":-75.134679, + "iso:country":"US", + "lbl:latitude":39.982679, + "lbl:longitude":-75.134679, + "lbl:max_zoom":18.0, + "mps:latitude":39.982679, + "mps:longitude":-75.134679, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":39.982679, + "reversegeo:longitude":-75.134679, + "src:geom":"mz", + "wof:belongsto":[ + 85855755, + 102191575, + 1108721813, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a0ccd6faa52c35aa254e04649dcd2fbb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721813, + "microhood_id":1108723395, + "neighbourhood_id":85855755, + "region_id":85688481 + } + ], + "wof:id":1108723395, + "wof:lastmodified":1566623886, + "wof:name":"Norris Square", + "wof:parent_id":85855755, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782575 + ], + "wof:tags":[] +}, + "bbox": [ + -75.13584466148536, + 39.9817218769527, + -75.13350781834204, + 39.98363696071648 +], + "geometry": {"coordinates":[[[-75.13386533206686,39.9817218769527],[-75.13584466148536,39.9819814407691],[-75.13549948829471,39.98363696071648],[-75.13350781834204,39.98337796891843],[-75.13386533206686,39.9817218769527]]],"type":"Polygon"} +},{ + "id": 1108723397, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000074, + "geom:area_square_m":699262.937771, + "geom:bbox":"-75.1275805959,39.9745384456,-75.11344856,39.9847567033", + "geom:latitude":39.979443, + "geom:longitude":-75.12046, + "iso:country":"US", + "lbl:latitude":39.979797, + "lbl:longitude":-75.121048, + "lbl:max_zoom":18.0, + "mps:latitude":39.979797, + "mps:longitude":-75.121048, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Olde Richmond" + ], + "reversegeo:latitude":39.979797, + "reversegeo:longitude":-75.121048, + "src:geom":"mz", + "wof:belongsto":[ + 85819391, + 102191575, + 1108721813, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q28175124" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8c4e9c3c1958bf98ab6e9998a66c0c87", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721813, + "microhood_id":1108723397, + "neighbourhood_id":85819391, + "region_id":85688481 + } + ], + "wof:id":1108723397, + "wof:lastmodified":1566623886, + "wof:name":"Olde Richmond", + "wof:parent_id":85819391, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782567 + ], + "wof:tags":[] +}, + "bbox": [ + -75.12758059593655, + 39.97453844564558, + -75.11344855998676, + 39.98475670333241 +], + "geometry": {"coordinates":[[[-75.11830927739283,39.97453844564558],[-75.11832800000001,39.974586],[-75.118465,39.974902],[-75.11874299999999,39.975212],[-75.119034,39.975541],[-75.11927300000001,39.97582],[-75.119518,39.976095],[-75.1199,39.975913],[-75.11995899999999,39.975915],[-75.119984,39.975892],[-75.120431,39.975697],[-75.12056200000001,39.975592],[-75.12105,39.975264],[-75.12119,39.97533],[-75.12155199999999,39.975563],[-75.121906,39.975798],[-75.12236900000001,39.976086],[-75.12283100000001,39.976378],[-75.12363999999999,39.9769],[-75.12391,39.977217],[-75.12477,39.978196],[-75.12559299999999,39.979124],[-75.12618500000001,39.979789],[-75.12673599999999,39.98043],[-75.12718700000001,39.980926],[-75.12757913177354,39.98137928994008],[-75.12758059593655,39.98138434160965],[-75.12439391491171,39.98267579330127],[-75.12153917227923,39.98406330512253],[-75.12025206106694,39.98475670333241],[-75.11969085296039,39.98411339915449],[-75.11919036415733,39.98355014190223],[-75.11740914050212,39.98146894323783],[-75.11739675199212,39.9814552283049],[-75.11689072144669,39.98089499558259],[-75.11619079464074,39.98010329788607],[-75.11586851122956,39.97974742747542],[-75.11554623126436,39.97939155435562],[-75.11519736942405,39.97896762512251],[-75.1148193151889,39.97854302348154],[-75.1146099155476,39.97829090990172],[-75.11435715665867,39.97802655971319],[-75.11406365439687,39.97768258604761],[-75.11344855998676,39.97705301290423],[-75.1146294574029,39.97642996113483],[-75.11589493432845,39.97576226046212],[-75.11691266237615,39.97524383357585],[-75.11830927739283,39.97453844564558]]],"type":"Polygon"} +},{ + "id": 1108723399, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000093, + "geom:area_square_m":878621.113345, + "geom:bbox":"-75.2757007613,39.9700625028,-75.2596759397,39.9807141513", + "geom:latitude":39.975598, + "geom:longitude":-75.267357, + "iso:country":"US", + "lbl:latitude":39.976143, + "lbl:longitude":-75.267903, + "lbl:max_zoom":18.0, + "mps:latitude":39.976143, + "mps:longitude":-75.267903, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Overbrook Park" + ], + "name:fra_x_preferred":[ + "Overbrook Park" + ], + "name:zho_x_preferred":[ + "\u6b50\u4f5b\u5e03\u9b6f\u514b\u516c\u5712" + ], + "reversegeo:latitude":39.976143, + "reversegeo:longitude":-75.267903, + "src:geom":"mz", + "wof:belongsto":[ + 85839965, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7113573" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"acf96ab11e38b1f3a94e3864d7b52f00", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108723399, + "neighbourhood_id":85839965, + "region_id":85688481 + } + ], + "wof:id":1108723399, + "wof:lastmodified":1566623886, + "wof:name":"Overbrook Park", + "wof:parent_id":85839965, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782613 + ], + "wof:tags":[] +}, + "bbox": [ + -75.27570076126808, + 39.97006250284613, + -75.25967593965919, + 39.98071415132892 +], + "geometry": {"coordinates":[[[-75.26806935280896,39.98071415132892],[-75.26793024718926,39.98059894663324],[-75.26778994734455,39.98049382911518],[-75.26763561751538,39.98038632240124],[-75.26746725770172,39.98027642649142],[-75.26731292787255,39.98016891946877],[-75.26717262802785,39.98006380133326],[-75.26704635816762,39.97996107208492],[-75.26693411829186,39.97986073172373],[-75.26682655507759,39.97977114204937],[-75.2667236685248,39.97969230306184],[-75.26662545863351,39.97962421476115],[-75.26653192540371,39.97956687714728],[-75.26643839217391,39.97950834494549],[-75.26634485894411,39.97944861815579],[-75.26625132571431,39.97938769677818],[-75.26615779248449,39.97932558081266],[-75.26605802370604,39.97926346479066],[-75.26595201937893,39.97920134871219],[-75.26583977950317,39.97913923257727],[-75.26572130407875,39.97907711638588],[-75.26539393777445,39.97893257548532],[-75.26485768059024,39.9787056098756],[-75.26411253252616,39.9783962195567],[-75.26315849358217,39.97800440452864],[-75.26241334551808,39.97769859752378],[-75.26187708833388,39.97747879854212],[-75.26154972202957,39.97734500758366],[-75.26143124660516,39.9772972246484],[-75.26132524227805,39.97725063625796],[-75.26123170904825,39.97720524241232],[-75.26115064691575,39.97716104311151],[-75.26108205588055,39.97711803835552],[-75.26102125928118,39.97706906066296],[-75.26096825711763,39.97701411003382],[-75.26092304938989,39.97695318646812],[-75.26088563609797,39.97688628996585],[-75.26084198725739,39.97679789077051],[-75.26079210286817,39.97668798888212],[-75.26073598293029,39.97655658430067],[-75.26067362744375,39.97640367702615],[-75.26059100642409,39.97623165570084],[-75.26048811987131,39.97604052032472],[-75.26036496778541,39.97583027089782],[-75.26022155016638,39.9756009074201],[-75.26009528030615,39.97540738178733],[-75.25998615820471,39.97524969399949],[-75.25989418386207,39.97512784405659],[-75.25981935727823,39.97504183195861],[-75.25976011956602,39.97496298747534],[-75.25971647072545,39.97489131060674],[-75.25968841075651,39.97482680135285],[-75.25967593965919,39.97476945971364],[-75.25968061632068,39.97470375565366],[-75.25970244074097,39.9746296891729],[-75.25974141292005,39.97454726027137],[-75.25979753285795,39.97445646894906],[-75.26017634243864,39.97411957618735],[-75.26087784166216,39.97353658198623],[-75.26190203052849,39.97270748634572],[-75.26324890903766,39.97163228926581],[-75.26427153901682,39.9708330596559],[-75.26496992046602,39.97030979751601],[-75.26534405338522,39.97006250284613],[-75.26539393777445,39.97009117564627],[-75.26545317548666,39.97012104313121],[-75.26552176652184,39.97015210530095],[-75.26559971088001,39.97018436215551],[-75.26568700856116,39.97021781369486],[-75.26578054179096,39.97025604399248],[-75.26588031056941,39.97029905304835],[-75.26598631489652,39.97034684086249],[-75.2660985547723,39.97039940743488],[-75.26619988243792,39.97045077927738],[-75.26629029789339,39.97050095638996],[-75.26636980113872,39.97054993877263],[-75.26643839217391,39.97059772642541],[-75.26650854209626,39.97065148747213],[-75.26658025090578,39.97071122191281],[-75.26665351860245,39.97077692974744],[-75.26672834518629,39.97084861097602],[-75.2668047306573,39.97091909744964],[-75.26688267501547,39.97098838916829],[-75.2669621782608,39.97105648613199],[-75.26704324039331,39.97112338834071],[-75.26711027254133,39.97118192774879],[-75.26716327470488,39.97123210435623],[-75.26720224688397,39.97127391816301],[-75.26722718907858,39.97130736916915],[-75.26725369016036,39.97134798820459],[-75.2672817501293,39.97139577526936],[-75.2673113689854,39.97145073036343],[-75.26734254672867,39.97151285348681],[-75.26737060669761,39.97157019787532],[-75.26739554889222,39.97162276352896],[-75.26741737331251,39.97167055044771],[-75.26743607995847,39.97171355863161],[-75.26745322771727,39.97175417745324],[-75.2674688165889,39.9717924069126],[-75.26748284657337,39.97182824700971],[-75.26749531767068,39.97186169774456],[-75.26750467099366,39.97189873245832],[-75.26751090654231,39.97193935115099],[-75.26751402431664,39.97198355382257],[-75.26751402431664,39.97203134047305],[-75.26750934765515,39.97207554310487],[-75.26749999433217,39.97211616171802],[-75.2674859643477,39.9721531963125],[-75.26746725770172,39.97218664688833],[-75.26743140329697,39.97222368142602],[-75.26737840113341,39.97226429992558],[-75.26730825121106,39.972308502387],[-75.26722095352991,39.9723562888103],[-75.26717418691501,39.97240646451066],[-75.26716795136636,39.97245902948809],[-75.26720224688395,39.97251398374257],[-75.26727707346781,39.97257132727412],[-75.26737996002059,39.97259402574117],[-75.26751090654231,39.97258207914369],[-75.26766991303298,39.97253548748171],[-75.26785697949258,39.97245425075522],[-75.26800819154742,39.97239332321035],[-75.26812354919751,39.9723527048471],[-75.26820305244284,39.97233239566548],[-75.26824670128342,39.97233239566548],[-75.26829970344697,39.97233478498597],[-75.2683620589335,39.97233956362696],[-75.26843376774302,39.97234673158845],[-75.26851482987551,39.97235628887044],[-75.26858809757219,39.97237301410055],[-75.26865357083305,39.97239690727879],[-75.2687112496581,39.97242796840516],[-75.26876113404734,39.97246619747964],[-75.26881101843657,39.97250562118715],[-75.26886090282579,39.97254623952767],[-75.26891078721502,39.97258805250122],[-75.26896067160423,39.97263106010779],[-75.26903082152658,39.97269557135527],[-75.26912123698206,39.97278158624366],[-75.26923191797066,39.97288910477295],[-75.26936286449239,39.97301812694317],[-75.26952810653171,39.97308383268234],[-75.26972764408862,39.97308622199047],[-75.26996147716312,39.97302529486757],[-75.27022960575523,39.97290105131363],[-75.27045408550676,39.97279831140629],[-75.27063491641771,39.97271707514552],[-75.27077209848808,39.97265734253136],[-75.27086563171788,39.97261911356378],[-75.27095292939903,39.97257849525566],[-75.27103399153152,39.97253548760699],[-75.27110881811537,39.97249009061779],[-75.27117740915055,39.97244230428804],[-75.27124132352425,39.97240526988065],[-75.27130056123646,39.97237898739562],[-75.27135512228718,39.97236345683293],[-75.27140500667642,39.97235867819261],[-75.27145021440415,39.97235987285068],[-75.2714907454704,39.97236704080716],[-75.27152659987516,39.97238018206204],[-75.27155777761843,39.97239929661532],[-75.27185708395379,39.97274334566469],[-75.27242451888127,39.97341232921015],[-75.27353600542875,39.9747359603861],[-75.27570076126808,39.97732272684196],[-75.27546799954875,39.97742899972099],[-75.2752840001241,39.97751200034318],[-75.27355200038579,39.97827900003347],[-75.27315400050325,39.97845499988124],[-75.27302600028383,39.97851200038967],[-75.27225499966835,39.97885499984453],[-75.27153000056026,39.97917600005594],[-75.27130899966043,39.97927499965762],[-75.26925699964032,39.98018599989651],[-75.26806935280896,39.98071415132892]]],"type":"Polygon"} +},{ + "id": 1108723403, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":207131.388283, + "geom:bbox":"-75.187821,40.0002703062,-75.1788270816,40.006102", + "geom:latitude":40.004006, + "geom:longitude":-75.184502, + "iso:country":"US", + "lbl:latitude":40.004023, + "lbl:longitude":-75.185627, + "lbl:max_zoom":18.0, + "mps:latitude":40.004023, + "mps:longitude":-75.185627, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ara_x_preferred":[ + "\u0641\u0631\u062f\u0648\u0633" + ], + "name:arg_x_preferred":[ + "Paradiso" + ], + "name:aze_x_preferred":[ + "C\u0259nn\u0259t" + ], + "name:bak_x_preferred":[ + "\u041e\u0436\u043c\u0430\u0445" + ], + "name:bel_x_preferred":[ + "\u0420\u0430\u0439" + ], + "name:bos_x_preferred":[ + "Raj" + ], + "name:bre_x_preferred":[ + "Baradoz" + ], + "name:bul_x_preferred":[ + "\u0420\u0430\u0439" + ], + "name:cat_x_preferred":[ + "Parad\u00eds" + ], + "name:ces_x_preferred":[ + "R\u00e1j" + ], + "name:ckb_x_preferred":[ + "\u067e\u0627\u0631\u062f\u06ce\u0632" + ], + "name:cos_x_preferred":[ + "Paradisu" + ], + "name:dan_x_preferred":[ + "Paradis" + ], + "name:deu_x_preferred":[ + "Paradies" + ], + "name:ell_x_preferred":[ + "\u03a0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03c3\u03bf\u03c2" + ], + "name:epo_x_preferred":[ + "Paradizo" + ], + "name:eus_x_preferred":[ + "Paradisu" + ], + "name:fas_x_preferred":[ + "\u067e\u0631\u062f\u06cc\u0633" + ], + "name:fin_x_preferred":[ + "Paratiisi" + ], + "name:fra_x_preferred":[ + "Paradis" + ], + "name:fry_x_preferred":[ + "Paradys" + ], + "name:fur_x_preferred":[ + "Parad\u00ees" + ], + "name:gla_x_preferred":[ + "P\u00e0rras" + ], + "name:hin_x_preferred":[ + "\u092a\u0948\u0930\u093e\u0921\u093e\u0907\u091c" + ], + "name:hrv_x_preferred":[ + "Raj" + ], + "name:hye_x_preferred":[ + "\u0534\u0580\u0561\u056d\u057f" + ], + "name:ido_x_preferred":[ + "Paradizo" + ], + "name:ind_x_preferred":[ + "Firdaus" + ], + "name:ita_x_preferred":[ + "Paradiso" + ], + "name:jav_x_preferred":[ + "Swarga" + ], + "name:jpn_x_preferred":[ + "\u697d\u5712" + ], + "name:kat_x_preferred":[ + "\u10e1\u10d0\u10db\u10dd\u10d7\u10ee\u10d4" + ], + "name:kaz_x_preferred":[ + "\u0416\u04d9\u043d\u043d\u04d9\u0442" + ], + "name:lav_x_preferred":[ + "Parad\u012bze" + ], + "name:lit_x_preferred":[ + "Rojus" + ], + "name:mlg_x_preferred":[ + "Paradisa" + ], + "name:msa_x_preferred":[ + "Firdaus" + ], + "name:nau_x_preferred":[ + "Paradis" + ], + "name:nld_x_preferred":[ + "Paradijs" + ], + "name:nno_x_preferred":[ + "Paradis" + ], + "name:nor_x_preferred":[ + "Paradis" + ], + "name:nrm_x_preferred":[ + "Paradis" + ], + "name:oci_x_preferred":[ + "Parad\u00eds" + ], + "name:por_x_preferred":[ + "Para\u00edso" + ], + "name:ron_x_preferred":[ + "Rai" + ], + "name:rus_x_preferred":[ + "\u0420\u0430\u0439" + ], + "name:slk_x_preferred":[ + "Raj" + ], + "name:slv_x_preferred":[ + "Raj" + ], + "name:som_x_preferred":[ + "Jano" + ], + "name:spa_x_preferred":[ + "Para\u00edso" + ], + "name:sqi_x_preferred":[ + "Parajsa" + ], + "name:srp_x_preferred":[ + "\u0420\u0430\u0458" + ], + "name:swa_x_preferred":[ + "Paradiso" + ], + "name:swe_x_preferred":[ + "Paradis" + ], + "name:tat_x_preferred":[ + "\u0496\u04d9\u043d\u043d\u04d9\u0442" + ], + "name:tgl_x_preferred":[ + "Paraiso" + ], + "name:ukr_x_preferred":[ + "\u0420\u0430\u0439" + ], + "name:urd_x_preferred":[ + "\u0641\u0631\u062f\u0648\u0633" + ], + "name:zho_x_preferred":[ + "\u6a02\u5712" + ], + "reversegeo:latitude":40.004023, + "reversegeo:longitude":-75.185627, + "src:geom":"mz", + "wof:belongsto":[ + 85802763, + 102191575, + 1108721811, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"57b003461ce969de951a942ec18aff70", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721811, + "microhood_id":1108723403, + "neighbourhood_id":85802763, + "region_id":85688481 + } + ], + "wof:id":1108723403, + "wof:lastmodified":1566623903, + "wof:name":"Paradise", + "wof:parent_id":85802763, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782563 + ], + "wof:tags":[] +}, + "bbox": [ + -75.187821, + 40.00027030624614, + -75.17882708155976, + 40.006102 +], + "geometry": {"coordinates":[[[-75.18713191102242,40.00027030624614],[-75.186787,40.000589],[-75.18675029856367,40.00068344502949],[-75.186712,40.000782],[-75.18668099999999,40.000876],[-75.186666,40.000946],[-75.186661,40.001009],[-75.18667000000001,40.001107],[-75.186688,40.00117],[-75.187163,40.002633],[-75.18728,40.002961],[-75.187302,40.003034],[-75.18733400000001,40.003214],[-75.187347,40.003326],[-75.187431,40.004641],[-75.187454,40.004966],[-75.187821,40.006102],[-75.186477,40.005921],[-75.1857,40.005821],[-75.18530154018983,40.0057722289094],[-75.184883,40.005721],[-75.184122,40.005623],[-75.18335,40.005521],[-75.182543,40.005413],[-75.18171100000001,40.005313],[-75.181,40.005215],[-75.18037,40.005138],[-75.17882708155976,40.00492745695456],[-75.179277,40.00469],[-75.179738,40.004439],[-75.180347,40.004125],[-75.180611,40.004002],[-75.180978,40.00379],[-75.181141,40.003697],[-75.182351,40.003311],[-75.183953,40.002838],[-75.18412600000001,40.002771],[-75.18431,40.002675],[-75.18441900000001,40.002605],[-75.18456399999999,40.002493],[-75.184617,40.002447],[-75.184695,40.002361],[-75.18521200000001,40.001842],[-75.185643,40.0014],[-75.185802,40.001233],[-75.185911,40.001131],[-75.18601200000001,40.001052],[-75.186397,40.000735],[-75.186584,40.000594],[-75.186707,40.000511],[-75.186812,40.000434],[-75.18713191102242,40.00027030624614]]],"type":"Polygon"} +},{ + "id": 1108723405, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000012, + "geom:area_square_m":115488.847479, + "geom:bbox":"-75.202356456,39.9591678602,-75.1958534147,39.9629098719", + "geom:latitude":39.960643, + "geom:longitude":-75.200059, + "iso:country":"US", + "lbl:latitude":39.960592, + "lbl:longitude":-75.200654, + "lbl:max_zoom":18.0, + "mps:latitude":39.960592, + "mps:longitude":-75.200654, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Saunders Park" + ], + "name:fra_x_preferred":[ + "Saunders Park" + ], + "reversegeo:latitude":39.960592, + "reversegeo:longitude":-75.200654, + "src:geom":"mz", + "wof:belongsto":[ + 85871455, + 102191575, + 1108721805, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7427460" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"83173d8d2f741b2e8e2a6ddcfafd259b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721805, + "microhood_id":1108723405, + "neighbourhood_id":85871455, + "region_id":85688481 + } + ], + "wof:id":1108723405, + "wof:lastmodified":1566623904, + "wof:name":"Saunders Park", + "wof:parent_id":85871455, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782611 + ], + "wof:tags":[] +}, + "bbox": [ + -75.20235645602736, + 39.95916786020504, + -75.1958534147382, + 39.96290987188888 +], + "geometry": {"coordinates":[[[-75.20085944152557,39.95925131368625],[-75.20196717404129,39.95916786020504],[-75.20235645602736,39.96287401870796],[-75.20193573513093,39.96290987188888],[-75.20013230255789,39.96192842570689],[-75.19888877480086,39.96126270964615],[-75.19783495942579,39.9607173017137],[-75.1958534147382,39.95969169439898],[-75.19585976191655,39.95968260038603],[-75.19867733516136,39.95942835265342],[-75.20085944152557,39.95925131368625]]],"type":"Polygon"} +},{ + "id": 1108723407, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000071, + "geom:area_square_m":671839.950957, + "geom:bbox":"-75.2541785953,40.0446419714,-75.2385979551,40.0561556275", + "geom:latitude":40.050562, + "geom:longitude":-75.2469, + "iso:country":"US", + "lbl:latitude":40.051147, + "lbl:longitude":-75.246782, + "lbl:max_zoom":18.0, + "mps:latitude":40.051147, + "mps:longitude":-75.246782, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Shawmont" + ], + "name:und_x_variant":[ + "Roxboro" + ], + "reversegeo:latitude":40.051147, + "reversegeo:longitude":-75.246782, + "src:geom":"mz", + "wof:belongsto":[ + 85853279, + 102191575, + 1108721809, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e9325e24beeb65fbb68408b429e6e18b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721809, + "microhood_id":1108723407, + "neighbourhood_id":85853279, + "region_id":85688481 + } + ], + "wof:id":1108723407, + "wof:lastmodified":1566623903, + "wof:name":"Shawmont Valley", + "wof:parent_id":85853279, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782557 + ], + "wof:tags":[] +}, + "bbox": [ + -75.25417859529873, + 40.04464197141726, + -75.23859795511353, + 40.05615562750225 +], + "geometry": {"coordinates":[[[-75.2500065104832,40.04464197141726],[-75.25053221830581,40.04497621001416],[-75.25101026131733,40.04528780672071],[-75.25135320521693,40.04552117187892],[-75.25166324035847,40.04574127686462],[-75.25194036674196,40.04594812167781],[-75.25222095720525,40.04616026947669],[-75.25250501174835,40.04637772026127],[-75.25279253037122,40.04660047403154],[-75.2530835130739,40.04682853078751],[-75.25331781166969,40.04701277012551],[-75.25349542615859,40.04715319204551],[-75.25361635654062,40.04724979654753],[-75.25368060281573,40.04730258363156],[-75.25374087160164,40.04735632382498],[-75.25379716289828,40.04741101712777],[-75.2538494767057,40.04746666353995],[-75.25389781302385,40.04752326306151],[-75.25393969439214,40.04758195487256],[-75.25397512081057,40.0476427389731],[-75.2540040922791,40.04770561536313],[-75.25402660879776,40.04777058404265],[-75.25404717677154,40.04783273515551],[-75.25406579620044,40.0478920687017],[-75.25408246708444,40.04794858468124],[-75.25409718942356,40.0480022830941],[-75.25411104574275,40.04805681014511],[-75.25412403604196,40.04811216583427],[-75.25413616032125,40.04816835016157],[-75.25414741858057,40.048225363127],[-75.254157161305,40.04828171310277],[-75.2541653884945,40.04833740008886],[-75.25417210014911,40.04839242408527],[-75.25417729626879,40.04844678509201],[-75.25417859529873,40.04849567682619],[-75.25417599723887,40.04853909928784],[-75.25416950208927,40.04857705247692],[-75.25415910984988,40.04860953639344],[-75.2541437379958,40.04864235176903],[-75.25412338652701,40.04867549860369],[-75.25409805544352,40.04870897689741],[-75.25406774474533,40.04874278665019],[-75.25403440297731,40.04877808798419],[-75.25399803013946,40.04881488089939],[-75.25395862623181,40.0488531653958],[-75.25391619125433,40.04889294147344],[-75.2532313859801,40.04937221901872],[-75.25190421040911,40.05029099803165],[-75.24993466454137,40.05164927851224],[-75.24732274837686,40.05344706046048],[-75.2434118022897,40.05615562750225],[-75.2411861310222,40.0542505337606],[-75.23859795511353,40.05204210609941],[-75.23860120907821,40.05204087468319],[-75.24108414978321,40.05094232151613],[-75.24375035487779,40.04991440585821],[-75.24558066793294,40.04936362914252],[-75.24680424579724,40.04845662201041],[-75.24771406065686,40.04698065983584],[-75.24870262423273,40.0459534907146],[-75.24990537726826,40.04470371477954],[-75.2500065104832,40.04464197141726]]],"type":"Polygon"} +},{ + "id": 1108723409, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00009, + "geom:area_square_m":850818.636695, + "geom:bbox":"-75.1405865545,39.9979808011,-75.1239712938,40.0053148063", + "geom:latitude":40.001867, + "geom:longitude":-75.131559, + "iso:country":"US", + "lbl:latitude":40.001981, + "lbl:longitude":-75.131558, + "lbl:max_zoom":18.0, + "mps:latitude":40.001981, + "mps:longitude":-75.131558, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":40.001981, + "reversegeo:longitude":-75.131558, + "src:geom":"mz", + "wof:belongsto":[ + 1108723479, + 102191575, + 1108721813, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"3eb77ca64530b129f157c57cc12b8273", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721813, + "microhood_id":1108723409, + "neighbourhood_id":1108723479, + "region_id":85688481 + } + ], + "wof:id":1108723409, + "wof:lastmodified":1566623903, + "wof:name":"St. Hugh", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782583 + ], + "wof:tags":[] +}, + "bbox": [ + -75.140586554493, + 39.99798080107378, + -75.12397129380328, + 40.00531480625705 +], + "geometry": {"coordinates":[[[-75.12552572047744,39.99798080107378],[-75.13443275222045,39.99913125870008],[-75.140586554493,39.99992992369202],[-75.1405756590097,39.9999833294382],[-75.14005645234671,40.00196753782853],[-75.13987525635316,40.00293213769767],[-75.13988280984969,40.00296133225935],[-75.13946422378424,40.00310478005017],[-75.13907252263951,40.00324227836531],[-75.13833977782278,40.00349948764866],[-75.13768333187545,40.00372990942805],[-75.13560200043688,40.00454224358749],[-75.13473678307113,40.00479476294077],[-75.1341694697313,40.00491461991991],[-75.1341694697313,40.00491461991995],[-75.13274855284486,40.00521480386238],[-75.13197780313911,40.0051969335156],[-75.13193118973797,40.00519745181234],[-75.12997095492156,40.00521921076335],[-75.12784831702896,40.00531480625705],[-75.12397129380328,40.00488266074185],[-75.12400776709016,40.00471315591233],[-75.12552572047744,39.99798080107378]]],"type":"Polygon"} +},{ + "id": 1108723451, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000199, + "geom:area_square_m":1886840.990469, + "geom:bbox":"-75.0883749166,40.0413864099,-75.0696901678,40.0613235608", + "geom:latitude":40.051259, + "geom:longitude":-75.080314, + "iso:country":"US", + "lbl:latitude":40.051737, + "lbl:longitude":-75.079678, + "lbl:max_zoom":18.0, + "mps:latitude":40.051737, + "mps:longitude":-75.079678, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":40.051737, + "reversegeo:longitude":-75.079678, + "src:geom":"mz", + "wof:belongsto":[ + 85840075, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bb75453f4a1d918bf066d85cda5f9849", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108723451, + "neighbourhood_id":85840075, + "region_id":85688481 + } + ], + "wof:id":1108723451, + "wof:lastmodified":1566623923, + "wof:name":"Upper Northwood", + "wof:parent_id":85840075, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782523 + ], + "wof:tags":[] +}, + "bbox": [ + -75.08837491656685, + 40.04138640989394, + -75.06969016779769, + 40.06132356084387 +], + "geometry": {"coordinates":[[[-75.06969016779769,40.0532978672704],[-75.08095969034549,40.04138640989394],[-75.08837491656685,40.04552882480301],[-75.08835519621648,40.04557184242797],[-75.08797565281348,40.04639498231241],[-75.08768473660523,40.04714849324899],[-75.08699986360369,40.04862504207946],[-75.08668764552067,40.04929305149054],[-75.08622983722098,40.05006798924189],[-75.08605766022488,40.05088070978957],[-75.08670748596107,40.05224159345799],[-75.08693427503931,40.05278729778642],[-75.08695476352689,40.05296792139431],[-75.08694561844817,40.05320084260959],[-75.08641421031041,40.05387288631566],[-75.08640330249571,40.05388668057518],[-75.08587535706013,40.05446886624344],[-75.08590795463972,40.05550345422262],[-75.08585202265554,40.05611615946001],[-75.08580793859716,40.0572384186797],[-75.08578209910564,40.05754513234575],[-75.0849791841965,40.05895138462041],[-75.08383383251548,40.06084776849759],[-75.08352355678606,40.06132356084387],[-75.08312573376614,40.06103338345444],[-75.08229413017807,40.06056140414593],[-75.08134389019787,40.06002506991962],[-75.08052368551873,40.05954199879692],[-75.07964767469403,40.05901639209611],[-75.07881088182559,40.058515505539],[-75.07804645023208,40.058096635682],[-75.07775566858312,40.05791824384401],[-75.07671945940361,40.05738497350011],[-75.0750307267905,40.05640743017914],[-75.0740709744172,40.05582442598851],[-75.07330102138842,40.05533737137923],[-75.06969016779769,40.0532978672704]]],"type":"Polygon"} +},{ + "id": 1108723453, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":474633.869132, + "geom:bbox":"-74.9913012694,40.0899862599,-74.9799204318,40.0992975616", + "geom:latitude":40.094701, + "geom:longitude":-74.985568, + "iso:country":"US", + "lbl:latitude":40.094711, + "lbl:longitude":-74.985563, + "lbl:max_zoom":18.0, + "mps:latitude":40.094711, + "mps:longitude":-74.985563, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":40.094711, + "reversegeo:longitude":-74.985563, + "src:geom":"mz", + "wof:belongsto":[ + 85840807, + 102191575, + 1108721807, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b24a89b21f51c0c45625c45e46028073", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721807, + "microhood_id":1108723453, + "neighbourhood_id":85840807, + "region_id":85688481 + } + ], + "wof:id":1108723453, + "wof:lastmodified":1566623923, + "wof:name":"Walton Park", + "wof:parent_id":85840807, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782497 + ], + "wof:tags":[] +}, + "bbox": [ + -74.9913012694466, + 40.08998625987466, + -74.97992043177918, + 40.09929756157101 +], + "geometry": {"coordinates":[[[-74.98665039789033,40.09929756157101],[-74.98662528957036,40.09927703457192],[-74.97992043177918,40.0937962308893],[-74.97996267496518,40.0937645211886],[-74.98039514781216,40.09340379052789],[-74.98070723148918,40.09314347352731],[-74.98092729481023,40.09295991217061],[-74.98116949317939,40.09275788550049],[-74.98157014902694,40.09242367942722],[-74.98188574435373,40.09215069030099],[-74.98247793131054,40.09181421202378],[-74.98307869045296,40.0912674948375],[-74.98323838904597,40.09108428017761],[-74.98361921663023,40.0906327425196],[-74.98371798619216,40.0905156336384],[-74.98386972036224,40.09033416379516],[-74.98415776967795,40.08998625987466],[-74.98416192607206,40.08998925591612],[-74.98471628580576,40.09038881166307],[-74.98520885046575,40.0907438225743],[-74.98573159944911,40.0911427821701],[-74.98605985222218,40.09139329848229],[-74.98645559378026,40.09169531847801],[-74.98696606898893,40.09214065669576],[-74.98738665528384,40.0925075686879],[-74.98772719421717,40.0927893484067],[-74.98808850039686,40.0930883101479],[-74.98859347851649,40.09350614317124],[-74.9891174072329,40.09393965066013],[-74.9896252406091,40.09436293126233],[-74.99015202865687,40.09480200245406],[-74.99051097726912,40.09510117695579],[-74.99125193627081,40.09571873504188],[-74.99130126944659,40.09575956037516],[-74.99126578921432,40.09577920179648],[-74.98996324781363,40.09671520055458],[-74.98845261601922,40.09780068053812],[-74.98781255018108,40.09840343327017],[-74.98686286145829,40.09914759519523],[-74.98665039789033,40.09929756157101]]],"type":"Polygon"} +},{ + "id": 1108723457, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":172988.164392, + "geom:bbox":"-75.210889859,39.9412851377,-75.2039446517,39.9457608171", + "geom:latitude":39.943211, + "geom:longitude":-75.207518, + "iso:country":"US", + "lbl:latitude":39.943167, + "lbl:longitude":-75.20757, + "lbl:max_zoom":18.0, + "mps:latitude":39.943167, + "mps:longitude":-75.20757, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":39.943167, + "reversegeo:longitude":-75.20757, + "src:geom":"mz", + "wof:belongsto":[ + 85850351, + 102191575, + 1108721803, + 404483701, + 85633793, + 101718083, + 102081353, + 85688481 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e802cad4ed8033fb4fa78796bbd80ad5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081353, + "localadmin_id":404483701, + "locality_id":101718083, + "macrohood_id":1108721803, + "microhood_id":1108723457, + "neighbourhood_id":85850351, + "region_id":85688481 + } + ], + "wof:id":1108723457, + "wof:lastmodified":1566623923, + "wof:name":"West Shore", + "wof:parent_id":85850351, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782609 + ], + "wof:tags":[] +}, + "bbox": [ + -75.21088985904204, + 39.94128513765327, + -75.2039446517294, + 39.9457608171429 +], + "geometry": {"coordinates":[[[-75.20812095544611,39.94128513765327],[-75.20821171650107,39.94128541911167],[-75.20831016263584,39.94129408498552],[-75.20842559748922,39.94133317571833],[-75.20852445571911,39.94138776138023],[-75.20860812905316,39.9414453387412],[-75.21088985904204,39.94333645341491],[-75.210795027703,39.94349169552553],[-75.21071316967698,39.94361137208323],[-75.21063435657496,39.94370070747392],[-75.21056356424631,39.94377153873964],[-75.21040235578943,39.94391619194924],[-75.20860929680936,39.94546284382747],[-75.20823701122875,39.9457608171429],[-75.20744863685999,39.94528090181261],[-75.20549382823165,39.944117047688],[-75.20516374836959,39.94374301252076],[-75.2039446517294,39.9429131002051],[-75.2046522096624,39.94251511604794],[-75.20525224557207,39.94131511992043],[-75.20601168980701,39.94132589599359],[-75.20710671203383,39.9413047408076],[-75.207962930915,39.94128819295842],[-75.20812095544611,39.94128513765327]]],"type":"Polygon"} +},{ + "id": 1108713397, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1000029203,42.373123101,-71.1000029203,42.373123101", + "geom:latitude":42.373123, + "geom:longitude":-71.100003, + "iso:country":"US", + "lbl:latitude":42.373123, + "lbl:longitude":-71.100003, + "lbl:max_zoom":18.0, + "mps:latitude":42.373838, + "mps:longitude":-71.101091, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Inman Square" + ], + "name:eng_x_preferred":[ + "Inman Square" + ], + "name:eng_x_variant":[ + "Inman Sq" + ], + "name:fra_x_preferred":[ + "Inman Square" + ], + "reversegeo:latitude":42.373838, + "reversegeo:longitude":-71.101091, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85876611, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6035057" + }, + "wof:country":"US", + "wof:geomhash":"baaded161940bd24291c7340f1d12c51", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713397, + "neighbourhood_id":85876611, + "region_id":85688645 + } + ], + "wof:id":1108713397, + "wof:lastmodified":1613672355, + "wof:name":"Inman Square", + "wof:parent_id":85876611, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865511 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1000029203, + 42.373123101, + -71.1000029203, + 42.373123101 +], + "geometry": {"coordinates":[-71.1000029203,42.373123101],"type":"Point"} +},{ + "id": 1108713403, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.0890666085,42.3635229473,-71.0890666085,42.3635229473", + "geom:latitude":42.363523, + "geom:longitude":-71.089067, + "iso:country":"US", + "lbl:latitude":42.363523, + "lbl:longitude":-71.089067, + "lbl:max_zoom":18.0, + "mps:latitude":42.362404, + "mps:longitude":-71.084353, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":12.0, + "mz:tier_metro":1, + "name:ell_x_preferred":[ + "\u03a0\u03bb\u03b1\u03c4\u03b5\u03af\u03b1 \u039a\u03ad\u03bd\u03c4\u03b1\u03bb\u03bb" + ], + "name:eng_x_preferred":[ + "Kendall Square" + ], + "name:eng_x_variant":[ + "Kendall Sq", + "Kendallsquare" + ], + "name:fra_x_preferred":[ + "Kendall Square" + ], + "name:zho_x_preferred":[ + "\u80af\u5fb7\u723e\u5ee3\u5834" + ], + "name:zho_x_variant":[ + "\u54c8\u4f5b\u5927\u5b66" + ], + "reversegeo:latitude":42.362404, + "reversegeo:longitude":-71.084353, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108713381, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6388934" + }, + "wof:country":"US", + "wof:geomhash":"8cc77c870350e433e3d53ae1e8b7f691", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713403, + "neighbourhood_id":1108713381, + "region_id":85688645 + } + ], + "wof:id":1108713403, + "wof:lastmodified":1613672372, + "wof:name":"Kendall Square", + "wof:parent_id":1108713381, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868529 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08906660848497, + 42.36352294729265, + -71.08906660848497, + 42.36352294729265 +], + "geometry": {"coordinates":[-71.08906660848497,42.36352294729265],"type":"Point"} +},{ + "id": 1108713405, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1190351453,42.3886757521,-71.1190351453,42.3886757521", + "geom:latitude":42.388676, + "geom:longitude":-71.119035, + "iso:country":"US", + "lbl:latitude":42.388676, + "lbl:longitude":-71.119035, + "lbl:max_zoom":18.0, + "mps:latitude":42.388718, + "mps:longitude":-71.11957, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Porter Square" + ], + "name:eng_x_preferred":[ + "Porter Square" + ], + "name:eng_x_variant":[ + "Porter Sq", + "Portersquare" + ], + "name:fra_x_preferred":[ + "Porter Square" + ], + "name:jpn_x_preferred":[ + "\u30dd\u30fc\u30bf\u30fc\u30b9\u30af\u30a8\u30a2\u30fc" + ], + "name:zho_x_preferred":[ + "\u6ce2\u7279\u5ee3\u5834" + ], + "reversegeo:latitude":42.388718, + "reversegeo:longitude":-71.11957, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85837429, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7231656" + }, + "wof:country":"US", + "wof:geomhash":"2a1d944200addcf994f5c6b3265655be", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713405, + "neighbourhood_id":85837429, + "region_id":85688645 + } + ], + "wof:id":1108713405, + "wof:lastmodified":1613672373, + "wof:name":"Porter Square", + "wof:parent_id":85837429, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865513 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1190351453, + 42.3886757521, + -71.1190351453, + 42.3886757521 +], + "geometry": {"coordinates":[-71.1190351453,42.3886757521],"type":"Point"} +},{ + "id": 1108713407, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":281664.394002, + "geom:bbox":"-71.1201677827,42.3760147653,-71.1116088368,42.3810000865", + "geom:latitude":42.378362, + "geom:longitude":-71.116017, + "iso:country":"US", + "lbl:latitude":42.378045, + "lbl:longitude":-71.116098, + "lbl:max_zoom":18.0, + "mps:latitude":42.378045, + "mps:longitude":-71.116098, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:afr_x_preferred":[ + "Harvard-universiteit" + ], + "name:als_x_preferred":[ + "Harvard-Universit\u00e4t" + ], + "name:amh_x_preferred":[ + "\u1203\u122d\u1268\u122d\u12f5 \u12e9\u1292\u1268\u122d\u1232\u1272" + ], + "name:ara_x_preferred":[ + "\u062c\u0627\u0645\u0639\u0629 \u0647\u0627\u0631\u0641\u0627\u0631\u062f" + ], + "name:arz_x_preferred":[ + "\u062c\u0627\u0645\u0639\u0629 \u0647\u0627\u0631\u0641\u0627\u0631\u062f" + ], + "name:azb_x_preferred":[ + "\u0647\u0627\u0631\u0648\u0627\u0631\u062f \u0628\u06cc\u0644\u06cc\u0645\u200c\u06cc\u0648\u0631\u062f\u0648" + ], + "name:aze_x_preferred":[ + "Harvard Universiteti" + ], + "name:bak_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u044b" + ], + "name:bel_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434\u0441\u043a\u0456 \u045e\u043d\u0456\u0432\u0435\u0440\u0441\u0456\u0442\u044d\u0442" + ], + "name:ben_x_preferred":[ + "\u09b9\u09be\u09b0\u09cd\u09ad\u09be\u09b0\u09cd\u09a1 \u09ac\u09bf\u09b6\u09cd\u09ac\u09ac\u09bf\u09a6\u09cd\u09af\u09be\u09b2\u09af\u09bc" + ], + "name:bos_x_preferred":[ + "Univerzitet Harvard" + ], + "name:bre_x_preferred":[ + "Skol-veur Harvard" + ], + "name:bul_x_preferred":[ + "\u0425\u0430\u0440\u0432\u0430\u0440\u0434\u0441\u043a\u0438 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:cat_x_preferred":[ + "Universitat Harvard" + ], + "name:ces_x_preferred":[ + "Harvardova univerzita" + ], + "name:chv_x_preferred":[ + "\u0425\u0430\u0440\u0432\u0103\u0440\u0442 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0447\u0115" + ], + "name:ckb_x_preferred":[ + "\u0632\u0627\u0646\u06a9\u06c6\u06cc \u06be\u0627\u0631\u06a4\u0627\u0631\u062f" + ], + "name:csb_x_preferred":[ + "\u00d9niwersytet Harvarda" + ], + "name:cym_x_preferred":[ + "Prifysgol Harvard" + ], + "name:dan_x_preferred":[ + "Harvard University" + ], + "name:deu_x_preferred":[ + "Harvard University" + ], + "name:ell_x_preferred":[ + "\u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03a7\u03ac\u03c1\u03b2\u03b1\u03c1\u03bd\u03c4" + ], + "name:epo_x_preferred":[ + "Universitato Harvard" + ], + "name:est_x_preferred":[ + "Harvardi \u00fclikool" + ], + "name:eus_x_preferred":[ + "Harvard Unibertsitatea" + ], + "name:fao_x_preferred":[ + "Harvard University" + ], + "name:fas_x_preferred":[ + "\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0647\u0627\u0631\u0648\u0627\u0631\u062f" + ], + "name:fin_x_preferred":[ + "Harvardin yliopisto" + ], + "name:fra_x_preferred":[ + "Universit\u00e9 Harvard" + ], + "name:fry_x_preferred":[ + "Universiteit fan Harvard" + ], + "name:gla_x_preferred":[ + "Oilthigh Harvard" + ], + "name:gle_x_preferred":[ + "Ollscoil Harvard" + ], + "name:glg_x_preferred":[ + "Universidade Harvard" + ], + "name:grn_x_preferred":[ + "Mbo'ehaorusu Harvard" + ], + "name:hak_x_preferred":[ + "Harvard Thai-ho\u030dk" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d5\u05e0\u05d9\u05d1\u05e8\u05e1\u05d9\u05d8\u05ea \u05d4\u05e8\u05d5\u05d5\u05d0\u05e8\u05d3" + ], + "name:hin_x_preferred":[ + "\u0939\u093e\u0930\u094d\u0935\u0930\u094d\u0921 \u0935\u093f\u0936\u094d\u0935\u0935\u093f\u0926\u094d\u092f\u093e\u0932\u092f" + ], + "name:hrv_x_preferred":[ + "Harvardovo sveu\u010dili\u0161te" + ], + "name:hun_x_preferred":[ + "Harvard Egyetem" + ], + "name:hye_x_preferred":[ + "\u0540\u0561\u0580\u057e\u0561\u0580\u0564\u056b \u0570\u0561\u0574\u0561\u056c\u057d\u0561\u0580\u0561\u0576" + ], + "name:ind_x_preferred":[ + "Universitas Harvard" + ], + "name:isl_x_preferred":[ + "Harvard-h\u00e1sk\u00f3li" + ], + "name:jav_x_preferred":[ + "Universitas Harvard" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30fc\u30d0\u30fc\u30c9\u5927\u5b66" + ], + "name:kan_x_preferred":[ + "\u0cb9\u0cbe\u0cb0\u0ccd\u0cb5\u0cb0\u0ccd\u0ca1\u0ccd \u0cb5\u0cbf\u0cb6\u0ccd\u0cb5\u0cb5\u0cbf\u0ca6\u0ccd\u0caf\u0cbe\u0ca8\u0cbf\u0cb2\u0caf" + ], + "name:kat_x_preferred":[ + "\u10f0\u10d0\u10e0\u10d5\u10d0\u10e0\u10d3\u10d8\u10e1 \u10e3\u10dc\u10d8\u10d5\u10d4\u10e0\u10e1\u10d8\u10e2\u10d4\u10e2\u10d8" + ], + "name:kaz_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0456" + ], + "name:kbp_x_preferred":[ + "Harvard sukul\u0269 k\u0269t\u025bz\u028a\u028a" + ], + "name:khm_x_preferred":[ + "Harvard University" + ], + "name:kir_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434 \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0438" + ], + "name:kor_x_preferred":[ + "\ud558\ubc84\ub4dc \ub300\ud559\uad50" + ], + "name:krc_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:kur_x_preferred":[ + "Zan\u00eengeha Harvard\u00ea" + ], + "name:lat_x_preferred":[ + "Universitas Harvardiana" + ], + "name:lav_x_preferred":[ + "H\u0101rvarda Universit\u0101te" + ], + "name:lfn_x_preferred":[ + "Universia Harvard" + ], + "name:lit_x_preferred":[ + "Harvardo universitetas" + ], + "name:ltz_x_preferred":[ + "Harvard Universit\u00e9it" + ], + "name:mal_x_preferred":[ + "\u0d39\u0d3e\u0d7c\u0d35\u0d3e\u0d7c\u0d21\u0d4d \u0d38\u0d7c\u0d35\u0d15\u0d32\u0d3e\u0d36\u0d3e\u0d32" + ], + "name:mar_x_preferred":[ + "\u0939\u093e\u0930\u094d\u0935\u0930\u094d\u0921 \u0935\u093f\u0926\u094d\u092f\u093e\u092a\u0940\u0920" + ], + "name:mkd_x_preferred":[ + "\u0425\u0430\u0440\u0432\u0430\u0440\u0434" + ], + "name:msa_x_preferred":[ + "Universiti Harvard" + ], + "name:mya_x_preferred":[ + "\u101f\u102c\u1038\u1017\u1010\u103a \u1010\u1000\u1039\u1000\u101e\u102d\u102f\u101c\u103a" + ], + "name:nds_x_preferred":[ + "Harvard University" + ], + "name:nld_x_preferred":[ + "Harvard-universiteit" + ], + "name:nno_x_preferred":[ + "Harvard University" + ], + "name:nor_x_preferred":[ + "Harvard University" + ], + "name:oci_x_preferred":[ + "Universitat Harvard" + ], + "name:pan_x_preferred":[ + "\u0a39\u0a3e\u0a30\u0a35\u0a30\u0a21 \u0a2f\u0a42\u0a28\u0a40\u0a35\u0a30\u0a38\u0a3f\u0a1f\u0a40" + ], + "name:pnb_x_preferred":[ + "\u06c1\u0627\u0631\u0648\u0631\u0688 \u06cc\u0648\u0646\u06cc\u0648\u0631\u0633\u0679\u06cc" + ], + "name:pol_x_preferred":[ + "Uniwersytet Harvarda" + ], + "name:por_x_preferred":[ + "Universidade Harvard" + ], + "name:que_x_preferred":[ + "Harvard Yachay Suntur" + ], + "name:ron_x_preferred":[ + "Universitatea Harvard" + ], + "name:rus_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:san_x_preferred":[ + "\u0939\u093e\u0930\u094d\u0935\u0930\u094d\u0921\u094d \u0935\u093f\u0936\u094d\u0935\u0935\u093f\u0926\u094d\u092f\u093e\u0932\u092f\u0903" + ], + "name:sco_x_preferred":[ + "Harvard Varsity" + ], + "name:slk_x_preferred":[ + "Harvard University" + ], + "name:slv_x_preferred":[ + "Univerza Harvard" + ], + "name:sqi_x_preferred":[ + "Harvard University" + ], + "name:srp_x_preferred":[ + "\u0423\u043d\u0438\u0432\u0435\u0440\u0437\u0438\u0442\u0435\u0442 \u0425\u0430\u0440\u0432\u0430\u0440\u0434" + ], + "name:swa_x_preferred":[ + "Chuo Kikuu cha Harvard" + ], + "name:swe_x_preferred":[ + "Harvard University" + ], + "name:tam_x_preferred":[ + "\u0b86\u0bb0\u0bcd\u0bb5\u0bb0\u0bcd\u0b9f\u0bc1 \u0baa\u0bb2\u0bcd\u0b95\u0bb2\u0bc8\u0b95\u0bcd\u0b95\u0bb4\u0b95\u0bae\u0bcd" + ], + "name:tat_x_preferred":[ + "Harvard universitet\u0131" + ], + "name:tel_x_preferred":[ + "\u0c39\u0c3e\u0c30\u0c4d\u0c35\u0c30\u0c4d\u0c21\u0c4d \u0c35\u0c3f\u0c36\u0c4d\u0c35\u0c35\u0c3f\u0c26\u0c4d\u0c2f\u0c3e\u0c32\u0c2f\u0c02" + ], + "name:tgl_x_preferred":[ + "Pamantasang Harvard" + ], + "name:tha_x_preferred":[ + "\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e2e\u0e32\u0e23\u0e4c\u0e27\u0e32\u0e23\u0e4c\u0e14" + ], + "name:tur_x_preferred":[ + "Harvard \u00dcniversitesi" + ], + "name:uig_x_preferred":[ + "\u062e\u0627\u0631\u06cb\u0627\u0631\u062f \u0626\u06c7\u0646\u0649\u06cb\u06d0\u0631\u0633\u0649\u062a\u06d0\u062a\u0649" + ], + "name:ukr_x_preferred":[ + "\u0413\u0430\u0440\u0432\u0430\u0440\u0434\u0441\u044c\u043a\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:urd_x_preferred":[ + "\u06c1\u0627\u0631\u0648\u0631\u0688 \u06cc\u0648\u0646\u06cc\u0648\u0631\u0633\u0679\u06cc" + ], + "name:uzb_x_preferred":[ + "Harvard universiteti" + ], + "name:vie_x_preferred":[ + "\u0110\u1ea1i h\u1ecdc Harvard" + ], + "name:war_x_preferred":[ + "Unibersidad Harvard" + ], + "name:wuu_x_preferred":[ + "\u54c8\u4f5b\u5927\u5b66" + ], + "name:yid_x_preferred":[ + "\u05d4\u05d0\u05e8\u05d5\u05d5\u05d0\u05e8\u05d3 \u05d0\u05d5\u05e0\u05d9\u05d5\u05d5\u05e2\u05e8\u05e1\u05d9\u05d8\u05e2\u05d8" + ], + "name:yor_x_preferred":[ + "Yunif\u00e1s\u00edt\u00ec Harvard" + ], + "name:zho_x_preferred":[ + "\u54c8\u4f5b\u5927\u5b66" + ], + "reversegeo:latitude":42.378045, + "reversegeo:longitude":-71.116098, + "src:geom":"mz", + "wof:belongsto":[ + 85876607, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"62bc50977e61ddb8f8a1e714fe95069e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108713407, + "neighbourhood_id":85876607, + "region_id":85688645 + } + ], + "wof:id":1108713407, + "wof:lastmodified":1566624133, + "wof:name":"Harvard University", + "wof:parent_id":85876607, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -71.12016778265036, + 42.37601476533158, + -71.11160883679138, + 42.38100008654741 +], + "geometry": {"coordinates":[[[-71.11993098229794,42.38005176943341],[-71.1163967988029,42.37985762962739],[-71.11629599378055,42.38084327873486],[-71.11450390449426,42.38072007259643],[-71.11410068440483,42.38024964915878],[-71.11291342525266,42.38100008654741],[-71.11227499344442,42.37940960730582],[-71.11160883679138,42.37715996352667],[-71.11224620405142,42.3770246059197],[-71.11233375639858,42.37700569231674],[-71.11250120971367,42.37697058368585],[-71.11259362275338,42.3769510007788],[-71.11266195086827,42.3769361382172],[-71.11273953945103,42.37691993477861],[-71.1137264275602,42.37671195942487],[-71.11381374354121,42.37669372990876],[-71.11391843569284,42.37667075713285],[-71.11394784939225,42.37666468127046],[-71.11408079932237,42.37663562859831],[-71.11423435516176,42.3766032148469],[-71.11476218614214,42.37649247666703],[-71.11562908270572,42.37631083786017],[-71.11564437007861,42.3763074589115],[-71.11565223428735,42.37630748518636],[-71.11568183309249,42.37630895608379],[-71.11756785625042,42.37601476533158],[-71.1176965724883,42.37603508784185],[-71.11781447092476,42.3760464556746],[-71.11804158212115,42.37605201253402],[-71.11820921073084,42.37606354506912],[-71.11844998477801,42.37610481873641],[-71.11859615613854,42.37614577881252],[-71.11874917570469,42.37620185351191],[-71.1190634886501,42.37636136457429],[-71.1191047516716,42.37638482590518],[-71.11942035515101,42.37656080490127],[-71.11954467031302,42.37662089959662],[-71.11963247576094,42.37667469939986],[-71.11979947119225,42.37679187439909],[-71.11982677865024,42.37686674077357],[-71.12007450415328,42.37752270602032],[-71.12016778265036,42.37770549449885],[-71.1201478759988,42.37790025783872],[-71.12004816118518,42.37886584065393],[-71.12003907927358,42.37895293483489],[-71.12002739038471,42.37905031099934],[-71.12000034274438,42.37931708221109],[-71.11998777388446,42.37975334751773],[-71.11998584777521,42.37982050733714],[-71.11993098229794,42.38005176943341]]],"type":"Polygon"} +},{ + "id": 1108713413, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1114797773,42.3996757519,-71.1114797773,42.3996757519", + "geom:latitude":42.399676, + "geom:longitude":-71.11148, + "iso:country":"US", + "lbl:latitude":42.399676, + "lbl:longitude":-71.11148, + "lbl:max_zoom":18.0, + "mps:latitude":42.399676, + "mps:longitude":-71.11148, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Ball Square" + ], + "name:eng_x_preferred":[ + "Ball Square" + ], + "name:fra_x_preferred":[ + "Ball Square" + ], + "reversegeo:latitude":42.399676, + "reversegeo:longitude":-71.11148, + "src:geom":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476445, + 85633793, + 85950339, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4851213" + }, + "wof:country":"US", + "wof:geomhash":"4a6f59498e0d4fc080ce944348cb37f6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476445, + "locality_id":85950339, + "microhood_id":1108713413, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713413, + "wof:lastmodified":1613672368, + "wof:name":"Ball Square", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780899 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1114797772965, + 42.39967575192899, + -71.1114797772965, + 42.39967575192899 +], + "geometry": {"coordinates":[-71.11147977729649,42.39967575192899],"type":"Point"} +},{ + "id": 1108713415, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1207630142,42.3970710318,-71.1207630142,42.3970710318", + "geom:latitude":42.397071, + "geom:longitude":-71.120763, + "iso:country":"US", + "lbl:latitude":42.397071, + "lbl:longitude":-71.120763, + "lbl:max_zoom":18.0, + "mps:latitude":42.39632, + "mps:longitude":-71.122308, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":12.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Davis Square" + ], + "name:eng_x_variant":[ + "Davis Sq" + ], + "name:fin_x_preferred":[ + "Davis Square" + ], + "name:fra_x_preferred":[ + "Davis Square" + ], + "name:zho_x_preferred":[ + "\u6234\u7dad\u65af\u5ee3\u5834" + ], + "reversegeo:latitude":42.39632, + "reversegeo:longitude":-71.122308, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476445, + 85633793, + 85950339, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5241972" + }, + "wof:country":"US", + "wof:geomhash":"9428283f5eea2a94fd97daa04bf991c4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476445, + "locality_id":85950339, + "microhood_id":1108713415, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713415, + "wof:lastmodified":1613672370, + "wof:name":"Davis Square", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85881035 + ], + "wof:tags":[] +}, + "bbox": [ + -71.12076301417115, + 42.39707103182472, + -71.12076301417115, + 42.39707103182472 +], + "geometry": {"coordinates":[-71.12076301417115,42.39707103182472],"type":"Point"} +},{ + "id": 1108713417, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1038304195,42.3966221921,-71.1038304195,42.3966221921", + "geom:latitude":42.396622, + "geom:longitude":-71.10383, + "iso:country":"US", + "lbl:latitude":42.396622, + "lbl:longitude":-71.10383, + "lbl:max_zoom":18.0, + "mps:latitude":42.39735, + "mps:longitude":-71.104329, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Magoun Square" + ], + "name:eng_x_variant":[ + "Magoun Sq" + ], + "name:fra_x_preferred":[ + "Magoun Square" + ], + "reversegeo:latitude":42.39735, + "reversegeo:longitude":-71.104329, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476445, + 85633793, + 85950339, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6732388" + }, + "wof:country":"US", + "wof:geomhash":"5736f6ee389726e0c48045d23b0aaf65", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476445, + "locality_id":85950339, + "microhood_id":1108713417, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713417, + "wof:lastmodified":1613672366, + "wof:name":"Magoun Square", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85881037 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1038304195, + 42.3966221921, + -71.1038304195, + 42.3966221921 +], + "geometry": {"coordinates":[-71.1038304195,42.3966221921],"type":"Point"} +},{ + "id": 1108713419, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1285940111,42.4008046091,-71.1285940111,42.4008046091", + "geom:latitude":42.400805, + "geom:longitude":-71.128594, + "iso:country":"US", + "lbl:latitude":42.400805, + "lbl:longitude":-71.128594, + "lbl:max_zoom":18.0, + "mps:latitude":42.403073, + "mps:longitude":-71.126954, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Teele Square" + ], + "name:eng_x_variant":[ + "Teele Sq" + ], + "name:fra_x_preferred":[ + "Teele Square" + ], + "reversegeo:latitude":42.403073, + "reversegeo:longitude":-71.126954, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85688645, + 102191575, + 404476445, + 85633793, + 85950339, + 102084643 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7694227" + }, + "wof:country":"US", + "wof:geomhash":"ce4bea66d7bf51f008d70e542754b8de", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476445, + "locality_id":85950339, + "microhood_id":1108713419, + "neighbourhood_id":-1, + "region_id":85688645 + } + ], + "wof:id":1108713419, + "wof:lastmodified":1613672364, + "wof:name":"Teele Square", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85881047 + ], + "wof:tags":[] +}, + "bbox": [ + -71.1285940111, + 42.4008046091, + -71.1285940111, + 42.4008046091 +], + "geometry": {"coordinates":[-71.12859401110001,42.4008046091],"type":"Point"} +},{ + "id": 1108713433, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":147849.712774, + "geom:bbox":"-71.0897502283,42.3751319143,-71.0828074178,42.3808429488", + "geom:latitude":42.377859, + "geom:longitude":-71.086868, + "iso:country":"US", + "lbl:latitude":42.377974, + "lbl:longitude":-71.087105, + "lbl:max_zoom":18.0, + "mps:latitude":42.377974, + "mps:longitude":-71.087105, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":42.377974, + "reversegeo:longitude":-71.087105, + "src:geom":"mz", + "wof:belongsto":[ + 420780901, + 102191575, + 404476445, + 85633793, + 85950339, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"62286570c9339596223c83f97c6b2dc7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476445, + "locality_id":85950339, + "microhood_id":1108713433, + "neighbourhood_id":420780901, + "region_id":85688645 + } + ], + "wof:id":1108713433, + "wof:lastmodified":1566624150, + "wof:name":"Brickbottom", + "wof:parent_id":420780901, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780903 + ], + "wof:tags":[] +}, + "bbox": [ + -71.08975022831024, + 42.37513191428646, + -71.08280741781593, + 42.38084294876703 +], + "geometry": {"coordinates":[[[[-71.08803428157779,42.38084294876703],[-71.08280741781593,42.37513191428646],[-71.08594000310575,42.37558000339358],[-71.08596839578659,42.37559704514262],[-71.08636140479383,42.37589477923901],[-71.08665790400956,42.37614785333867],[-71.0868752947701,42.37630161646492],[-71.08707001194324,42.37641879124865],[-71.08788580336736,42.37682370961974],[-71.08845745283242,42.37711697768685],[-71.08860928558427,42.37721038448957],[-71.08874327756496,42.37730603886224],[-71.08883056931181,42.37740382758361],[-71.08891000865893,42.37751445272337],[-71.08897561670413,42.37763870701065],[-71.08901719293362,42.37774073063662],[-71.08913628657218,42.37821710519084],[-71.08975022831024,42.38020440998422],[-71.0893440815087,42.38038969130575],[-71.08896235120278,42.38055517714978],[-71.08864857104278,42.38065695382625],[-71.08826021747092,42.38077603127986],[-71.08803428157779,42.38084294876703]]]],"type":"MultiPolygon"} +},{ + "id": 1108713505, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":197714.493263, + "geom:bbox":"-122.658558846,45.5585997904,-122.633766571,45.5595412708", + "geom:latitude":45.55907, + "geom:longitude":-122.646171, + "iso:country":"US", + "lbl:latitude":45.55907, + "lbl:longitude":-122.646172, + "lbl:max_zoom":18.0, + "mps:latitude":45.55907, + "mps:longitude":-122.646172, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":45.55907, + "reversegeo:longitude":-122.646172, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893257, + 102191575, + 1108720843, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"faea7db92412d45da1514249a7a3fb8e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108720843, + "microhood_id":1108713505, + "neighbourhood_id":85893257, + "region_id":85688513 + } + ], + "wof:id":1108713505, + "wof:lastmodified":1566624135, + "wof:name":"Alberta Arts District", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893149 + ], + "wof:tags":[] +}, + "bbox": [ + -122.65855884566659, + 45.55859979037599, + -122.6337665706434, + 45.559541270813 +], + "geometry": {"coordinates":[[[-122.65855884566659,45.55861793957162],[-122.65854887294758,45.559541270813],[-122.6337665706434,45.55951941883696],[-122.63377648700303,45.55859979037599],[-122.65855884566659,45.55861793957162]]],"type":"Polygon"} +},{ + "id": 1108713507, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000144, + "geom:area_square_m":1243452.042538, + "geom:bbox":"-122.653653,45.516428,-122.602003528,45.5193397321", + "geom:latitude":45.517905, + "geom:longitude":-122.62834, + "iso:country":"US", + "lbl:latitude":45.517875, + "lbl:longitude":-122.62834, + "lbl:max_zoom":18.0, + "mps:latitude":45.517875, + "mps:longitude":-122.62834, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Belmont District" + ], + "reversegeo:latitude":45.517875, + "reversegeo:longitude":-122.62834, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85851483, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"3de8b99c39a73e3fe1950084f91f8fb3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108713507, + "neighbourhood_id":85851483, + "region_id":85688513 + } + ], + "wof:id":1108713507, + "wof:lastmodified":1566624135, + "wof:name":"Belmont District", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893157 + ], + "wof:tags":[] +}, + "bbox": [ + -122.653653, + 45.516428, + -122.60200352834842, + 45.51933973206144 +], + "geometry": {"coordinates":[[[-122.65365300000001,45.516493],[-122.653644,45.517203],[-122.653639,45.517917],[-122.65363499999999,45.51863],[-122.65363002291683,45.51933973206144],[-122.63732474084323,45.5193138572582],[-122.63707878301676,45.51931174429025],[-122.63196784695387,45.51930672150636],[-122.61730792901523,45.51928097815836],[-122.61300872771103,45.51927369763528],[-122.61300872115591,45.51927431560902],[-122.61255990064899,45.51927354846229],[-122.60207164741371,45.51924783625213],[-122.60200352834842,45.51676496975127],[-122.60419899999999,45.516758],[-122.606447,45.516751],[-122.60682,45.516641],[-122.607097,45.516551],[-122.607861,45.516551],[-122.608836,45.516553],[-122.609892,45.516554],[-122.61042999999999,45.516555],[-122.611239,45.516557],[-122.612566,45.516558],[-122.613501,45.516559],[-122.614425,45.51656],[-122.614619,45.51656],[-122.615212,45.51656],[-122.616148,45.516561],[-122.617081,45.516563],[-122.617783,45.516564],[-122.619462,45.516568],[-122.62116899999999,45.516573],[-122.621736,45.516576],[-122.62284200000001,45.51657],[-122.62295399999999,45.516521],[-122.62306700000001,45.516473],[-122.623344,45.51644],[-122.624416,45.516442],[-122.62585199999999,45.516446],[-122.628193,45.516449],[-122.629558,45.516451],[-122.630943,45.516453],[-122.632328,45.516455],[-122.63369400000001,45.516457],[-122.634666,45.516458],[-122.634783,45.516443],[-122.6349,45.516428],[-122.63608600000001,45.516432],[-122.6371,45.516435],[-122.638115,45.516438],[-122.639129,45.516441],[-122.64014299999999,45.516444],[-122.642495,45.516452],[-122.645557,45.516463],[-122.64655,45.516466],[-122.647516,45.51647],[-122.648577,45.516473],[-122.649592,45.516477],[-122.650606,45.51648],[-122.65161999999999,45.516484],[-122.652635,45.516487],[-122.65365300000001,45.516493]]],"type":"Polygon"} +},{ + "id": 1108713515, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00014, + "geom:area_square_m":1213931.671153, + "geom:bbox":"-122.732958191,45.4453640367,-122.712697754,45.4558137428", + "geom:latitude":45.449376, + "geom:longitude":-122.720925, + "iso:country":"US", + "lbl:latitude":45.449546, + "lbl:longitude":-122.721118, + "lbl:max_zoom":18.0, + "mps:latitude":45.449546, + "mps:longitude":-122.721118, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0643\u0627\u0628\u064a\u062a\u0648\u0644 \u0647\u064a\u0644" + ], + "name:deu_x_preferred":[ + "Capitol Hill" + ], + "name:fas_x_preferred":[ + "\u06a9\u067e\u06cc\u062a\u0627\u0644 \u0647\u06cc\u0644" + ], + "name:fra_x_preferred":[ + "Capitol Hill" + ], + "name:kor_x_preferred":[ + "\uce90\ud53c\ud2c0\ud790" + ], + "name:nor_x_preferred":[ + "Capitol Hill" + ], + "name:sco_x_preferred":[ + "Capitol Hill" + ], + "name:tur_x_preferred":[ + "Capitol Hill" + ], + "name:urd_x_preferred":[ + "\u06a9\u06cc\u067e\u0679\u0644 \u06c1\u0644" + ], + "name:vie_x_preferred":[ + "Capitol Hill" + ], + "name:wuu_x_preferred":[ + "\u56fd\u4f1a\u5c71" + ], + "name:zho_x_preferred":[ + "\u56fd\u4f1a\u5c71" + ], + "reversegeo:latitude":45.449546, + "reversegeo:longitude":-122.721118, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420781231, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d48c3dbf762c2c66bb9685d1f27c93e1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108713515, + "neighbourhood_id":420781231, + "region_id":85688513 + } + ], + "wof:id":1108713515, + "wof:lastmodified":1566624136, + "wof:name":"Capitol Hill", + "wof:parent_id":420781231, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85809397 + ], + "wof:tags":[] +}, + "bbox": [ + -122.73295819123129, + 45.4453640367166, + -122.71269775360328, + 45.45581374284464 +], + "geometry": {"coordinates":[[[-122.71284250218923,45.44536425818701],[-122.72664259101617,45.44537250977272],[-122.73107803710457,45.4453640367166],[-122.73104588101063,45.44608421799614],[-122.73295819123129,45.44609383546004],[-122.73217853620967,45.44648918995706],[-122.7307796365301,45.44759384102336],[-122.72846040835039,45.4509775627541],[-122.72760649768907,45.45196749416085],[-122.72581289085007,45.4530032569691],[-122.72414641089513,45.45350355111557],[-122.72329218402686,45.4536410002184],[-122.72104609667755,45.45372564834253],[-122.72013543674481,45.4535662964687],[-122.71763833674893,45.45351220128354],[-122.71636415826511,45.45402760635883],[-122.71478874951369,45.45471686552835],[-122.71281202739223,45.45581374284464],[-122.71280758791811,45.45389697267163],[-122.71269775360328,45.4538294675062],[-122.71275614589337,45.45367709237568],[-122.71281533948068,45.453445132357],[-122.71282132315879,45.45319824981175],[-122.71281554519489,45.44919401953124],[-122.71281708939884,45.44683006951295],[-122.71284250218923,45.44536425818701]]],"type":"Polygon"} +},{ + "id": 1108713517, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000297, + "geom:area_square_m":2573065.484283, + "geom:bbox":"-122.6684512,45.5011552523,-122.653557,45.5285437877", + "geom:latitude":45.514011, + "geom:longitude":-122.660094, + "iso:country":"US", + "lbl:latitude":45.513569, + "lbl:longitude":-122.660839, + "lbl:max_zoom":18.0, + "mps:latitude":45.513569, + "mps:longitude":-122.660839, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Central Eastside" + ], + "reversegeo:latitude":45.513569, + "reversegeo:longitude":-122.660839, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871515, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"65ac4a425374cc2ae1c2b406de55b694", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108713517, + "neighbourhood_id":85871515, + "region_id":85688513 + } + ], + "wof:id":1108713517, + "wof:lastmodified":1566624136, + "wof:name":"Central Eastside Industrial District", + "wof:parent_id":85871515, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893163 + ], + "wof:tags":[] +}, + "bbox": [ + -122.66845120014797, + 45.50115525228695, + -122.653557, + 45.52854378773314 +], + "geometry": {"coordinates":[[[-122.65359608798828,45.5243214528705],[-122.6626906331842,45.52432789909248],[-122.66272594111177,45.52223346427808],[-122.65361102116658,45.52219297741104],[-122.653616,45.521482],[-122.65362,45.520769],[-122.65362500000001,45.520056],[-122.65363000000001,45.519343],[-122.65363499999999,45.51863],[-122.653639,45.517917],[-122.653644,45.517203],[-122.65365300000001,45.516493],[-122.653657,45.515773],[-122.65365799999999,45.515064],[-122.65366299999999,45.514351],[-122.653668,45.513638],[-122.65367500000001,45.512925],[-122.65367500000001,45.51221],[-122.65368100000001,45.511496],[-122.653685,45.510786],[-122.65369,45.510073],[-122.653695,45.50936],[-122.653699,45.508596],[-122.653704,45.507933],[-122.65370799999999,45.50722],[-122.653711,45.506507],[-122.653712,45.506328],[-122.653712,45.505794],[-122.653718,45.505605],[-122.65372000000001,45.504854],[-122.65373599999999,45.504176],[-122.65374,45.5035],[-122.653741,45.503379],[-122.653741,45.503319],[-122.65375899999999,45.503303],[-122.654095,45.503006],[-122.654231,45.50284],[-122.654229,45.502115],[-122.654222,45.501574],[-122.65421304814865,45.50115525228695],[-122.65592188843391,45.50153404300379],[-122.66033506887965,45.50154543724214],[-122.66144350348745,45.50146588448401],[-122.66144729369417,45.50147357675143],[-122.66145169723569,45.50148472859794],[-122.66145480001667,45.50149583133179],[-122.66145685446374,45.50150701528454],[-122.66145806449444,45.50151820112395],[-122.66145856934763,45.50152930888821],[-122.66145845256663,45.5015402510601],[-122.66145775188069,45.50155092878943],[-122.66145414694149,45.50157660973071],[-122.66145425204435,45.50158693738454],[-122.66145627235544,45.50159724048132],[-122.66145992310877,45.50160679936594],[-122.66146954586208,45.5016259297227],[-122.66148177462804,45.50165210928803],[-122.66148631291686,45.50166067651349],[-122.66149547573275,45.50167559407291],[-122.66150095006608,45.50168522094303],[-122.6615161315944,45.50171410846933],[-122.66152149453664,45.50172308493724],[-122.66152940420271,45.501735053349],[-122.66153372689585,45.5017429399448],[-122.66153729859744,45.50175107209049],[-122.66154016871477,45.50175927223373],[-122.66154235701079,45.50176736282226],[-122.66154422550659,45.50177603013943],[-122.66154668599215,45.50178433605474],[-122.66154980853611,45.50179066245158],[-122.66155373866546,45.50179689629388],[-122.6615597762425,45.50180522990932],[-122.66156712805477,45.50181320023437],[-122.66157304705418,45.50181814524784],[-122.66157961194227,45.50182297126329],[-122.66159817922089,45.5018356278252],[-122.66160825831837,45.50184192336499],[-122.66161885843871,45.50184799727896],[-122.66163002539599,45.50185368208911],[-122.66164265301396,45.50185922775336],[-122.66167951627995,45.5018736346412],[-122.66169033109765,45.50187766355736],[-122.66170462149719,45.50188234286703],[-122.66171935476618,45.5018866185922],[-122.66176426424217,45.50189880229801],[-122.66177885827229,45.50190321024132],[-122.66179293397448,45.50190809417415],[-122.66180625419348,45.50191366942504],[-122.66181797002143,45.50191968792505],[-122.6618508762086,45.50193939616279],[-122.66186211503113,45.50194542221547],[-122.66187401411538,45.50195058443476],[-122.66188682409134,45.50195458249424],[-122.66190041021169,45.5019575335027],[-122.66191457035551,45.50195961438226],[-122.66192913833449,45.50196094538961],[-122.66194397311307,45.50196159515291],[-122.66195895252044,45.50196158948636],[-122.66197522640013,45.50196090635345],[-122.66200759808969,45.50195885947318],[-122.66202353510116,45.50195831233721],[-122.66203916578709,45.50195866869967],[-122.66205243570049,45.50196002741008],[-122.66206527172758,45.50196231795157],[-122.66207754810425,45.5019654502889],[-122.66208910043881,45.5019693853858],[-122.66209971762716,45.50197413709363],[-122.6621091301747,45.5019797708922],[-122.66211755457543,45.50198667147618],[-122.66212501598217,45.50199428982066],[-122.66213831374333,45.50200911914554],[-122.66214436120184,45.50201616201893],[-122.66215116773674,45.50202508555103],[-122.66215744246901,45.50203441203514],[-122.6621632276194,45.50204402184434],[-122.6621685339678,45.5020538161289],[-122.66217819355205,45.50207333984271],[-122.66218342354364,45.50208287849884],[-122.66219020492572,45.50209313932071],[-122.66219797625122,45.5021028674873],[-122.66220667463814,45.50211194526106],[-122.66221940017245,45.50212330601287],[-122.66222724246488,45.50213064856808],[-122.66223468500704,45.50213835503897],[-122.66224155622062,45.50214641849966],[-122.66224766117129,45.50215485091265],[-122.6622528740949,45.50216365605548],[-122.66227123296436,45.50220143284134],[-122.66228724273934,45.50223187524575],[-122.66229223288076,45.50224219774253],[-122.66229708019003,45.50225341743491],[-122.66230559711724,45.50227618421124],[-122.66232095741027,45.50232197650668],[-122.66232497467622,45.5023332692181],[-122.66232925694518,45.50234440956132],[-122.66233392908296,45.50235533457529],[-122.66233914649811,45.50236596367001],[-122.66234509963353,45.50237619610778],[-122.6623619897575,45.5024008705548],[-122.66238022286281,45.50242942968691],[-122.66238652813779,45.50243860247915],[-122.66239320711195,45.50244736980102],[-122.66240341197357,45.50245958486594],[-122.66240961304399,45.50246807074888],[-122.66241530836288,45.50247701057921],[-122.66242573870163,45.50249577105942],[-122.66244585287917,45.5025349472436],[-122.66245055196643,45.50254529801715],[-122.662454006887,45.50255560786427],[-122.66245645210121,45.50256611666588],[-122.6624580861367,45.50257673438779],[-122.66245905272396,45.50258737792167],[-122.66245944618605,45.50259796667761],[-122.66245931772696,45.5026084143993],[-122.66245868441469,45.50261862853439],[-122.66245537591949,45.50264390037311],[-122.66245530225764,45.5026508109494],[-122.66245604246943,45.50265776685664],[-122.66245835024141,45.50266763406892],[-122.66246405364514,45.50268703416683],[-122.66246648268967,45.50269663630932],[-122.66246857666259,45.50270643425802],[-122.66247024034249,45.5027163820515],[-122.6624714809159,45.50272698589377],[-122.66247333593697,45.50274833586337],[-122.6624745369845,45.50275897180953],[-122.66247634798812,45.50276950197979],[-122.66247913995203,45.5027798577471],[-122.66248373932626,45.50279106662903],[-122.66248973468248,45.5028019726682],[-122.66249689156034,45.50281255949498],[-122.66250508060249,45.50282278114828],[-122.6625142685712,45.5028325564092],[-122.66252451745028,45.5028417650233],[-122.66253559637268,45.50285014381569],[-122.66254736699784,45.50285810265992],[-122.66257136549066,45.50287373261536],[-122.66259495165677,45.50289019175646],[-122.66260689296182,45.5028981594095],[-122.66264044413938,45.50291824569723],[-122.66265095263157,45.50292526012466],[-122.66266085925253,45.50293294822826],[-122.66267983885784,45.50294895907364],[-122.66268890555401,45.50295602764321],[-122.66270777556487,45.50296955721156],[-122.66272476091027,45.50298111926369],[-122.66273252594758,45.50298588851505],[-122.66274379531282,45.50299159209844],[-122.66275595401018,45.5029964753072],[-122.66276881788507,45.50300052114233],[-122.66278225039351,45.50300364964426],[-122.66279615182255,45.5030057134859],[-122.66281104229667,45.50300660626422],[-122.66282621574014,45.50300644571518],[-122.6628415427955,45.50300549501335],[-122.66285690937676,45.50300395059497],[-122.66287220588943,45.50300195789855],[-122.66288732363736,45.5029996195495],[-122.66290214673785,45.50299700543378],[-122.66293888423971,45.50298970076782],[-122.6629529536537,45.50298788561926],[-122.66296736891906,45.50298670007475],[-122.66299671148948,45.50298482196568],[-122.66301138816461,45.50298343809578],[-122.66302589685475,45.50298126533185],[-122.66303990697993,45.50297808142349],[-122.66305368713638,45.50297405825251],[-122.66306729032472,45.50296947914063],[-122.66310732015211,45.50295495164922],[-122.66312041309739,45.50295070244855],[-122.66313333895599,45.5029472427717],[-122.66314474756011,45.50294506622873],[-122.66315573665098,45.50294388383135],[-122.66316603942896,45.50294380450114],[-122.66317534597533,45.50294500578669],[-122.66318329337062,45.50294773638162],[-122.66319056343622,45.50295312012982],[-122.66319609436344,45.50296038954265],[-122.6632005005999,45.5029690037894],[-122.66321206012096,45.50299901450007],[-122.66321691821003,45.50300943822241],[-122.66322225869438,45.50301866569567],[-122.66322833130573,45.50302778802362],[-122.66324806280093,45.50305497304324],[-122.66327512993877,45.50309565233],[-122.66328189515116,45.50310487727073],[-122.66329117744299,45.50311673143071],[-122.66329620172037,45.50312433451178],[-122.66330948870176,45.50314737984978],[-122.66331791669572,45.50316002289227],[-122.66332556495207,45.50317213958468],[-122.66333329765003,45.50318251416597],[-122.66334846390698,45.50320504257716],[-122.66335719822646,45.50321636281392],[-122.66336344421265,45.50322561417816],[-122.66337560650329,45.50324462499022],[-122.66338193872772,45.50325392356985],[-122.66339546825422,45.50327265357033],[-122.66340979458637,45.50329098880493],[-122.66341714370373,45.50329976795643],[-122.66342455210984,45.50330813094067],[-122.66343931053166,45.50332326023887],[-122.66344564724767,45.50333029035583],[-122.66344995826273,45.50333747787196],[-122.66345139287222,45.50334452813436],[-122.66345056013395,45.5033518787151],[-122.663447753797,45.50335931617965],[-122.66344315262612,45.50336662835284],[-122.6634368320798,45.50337359550441],[-122.66342779951961,45.50338084156778],[-122.66341743026628,45.50338764816971],[-122.66339576649489,45.50340102275283],[-122.66338597395996,45.50340812337524],[-122.66337795110617,45.50341587752081],[-122.66337266721567,45.50342392065134],[-122.66336939285645,45.50343253671595],[-122.66336788728006,45.50344146631956],[-122.66336803370542,45.50345046140001],[-122.66336983392927,45.50345927389534],[-122.66337341102071,45.50346763874467],[-122.66337784330833,45.50347414501752],[-122.66338322062363,45.50348025023533],[-122.66339065777585,45.50348725640797],[-122.6633991109227,45.50349338554909],[-122.6634089025593,45.50349815034984],[-122.66341991949794,45.50350107546389],[-122.6634321078397,45.50350247254261],[-122.66344505615622,45.50350255124238],[-122.66345918126575,45.50350141985415],[-122.66347354712377,45.50349948132082],[-122.66350225907688,45.50349501494983],[-122.66351624943911,45.50349337484592],[-122.6635297385414,45.5034927672834],[-122.66354249282182,45.50349374945695],[-122.6635550225234,45.50349697488964],[-122.66356680392836,45.50350194305041],[-122.66357816402345,45.50350800608211],[-122.66358923665764,45.5035147194881],[-122.66359955740191,45.50352211978488],[-122.66360844353672,45.5035304235538],[-122.66361443350303,45.50353839048664],[-122.66361899065646,45.50354702605126],[-122.66362223626959,45.50355616214475],[-122.66362421435986,45.50356566718097],[-122.66362501925036,45.50357684253778],[-122.66362480006141,45.50358824832502],[-122.66362362596334,45.5036114269477],[-122.66362378047357,45.50362307764114],[-122.66362495726659,45.50363405151557],[-122.66362706471423,45.5036449662058],[-122.66362995549282,45.50365578330637],[-122.66363353527923,45.50366645685688],[-122.66363776185264,45.50367692956414],[-122.66364264509453,45.50368712776548],[-122.66364824339539,45.50369695765122],[-122.66365467263788,45.50370629896869],[-122.66366210889178,45.50371499683754],[-122.66367139208195,45.50372359648811],[-122.66369120891711,45.50373941634114],[-122.6637160940471,45.5037599669702],[-122.66373344321018,45.50377666446882],[-122.66375669520302,45.50379855423292],[-122.66376388711517,45.50380636687702],[-122.66377010255862,45.5038143948415],[-122.66377566133362,45.50382276152683],[-122.66378555178487,45.50384008041667],[-122.6637953856423,45.50385904191288],[-122.66379983320127,45.50386939622057],[-122.66380299976262,45.50388021642605],[-122.66380500031079,45.50389133379778],[-122.6638061366796,45.50390267089553],[-122.66380663973617,45.50391416601908],[-122.66380668644857,45.50392577509673],[-122.66380591299909,45.50394920478819],[-122.66380145555866,45.50402000629236],[-122.663800376682,45.50404353164259],[-122.66380019162906,45.50406688762278],[-122.66380067582099,45.5040784582638],[-122.66380173583302,45.50408992187189],[-122.6638035728878,45.50410124193068],[-122.66380644300513,45.50411237059146],[-122.66381024018384,45.5041226108965],[-122.66381479823558,45.50413270765288],[-122.66382465365257,45.50415274439209],[-122.66382921439926,45.50416281344106],[-122.66383302415437,45.50417300336971],[-122.66383585654249,45.50418364974976],[-122.66383780588664,45.50419443526733],[-122.66383917851239,45.50420530514793],[-122.66384249868568,45.50423790029667],[-122.66384420009481,45.50424858632859],[-122.66384666686859,45.50425908474077],[-122.6638538911201,45.50428015522115],[-122.66386437445949,45.50431472912556],[-122.66386829470737,45.50432638659899],[-122.66387258506117,45.50433716453412],[-122.66387740362435,45.50434789650721],[-122.66388800913461,45.50436927608241],[-122.66390452106785,45.50440129506288],[-122.6639146280131,45.50442272435526],[-122.66391902885967,45.50443349912404],[-122.66392314314368,45.50444515153614],[-122.66393078690845,45.50446833421312],[-122.6639351347544,45.50447969134148],[-122.66394473235491,45.50450070948362],[-122.6639487639939,45.5045105033408],[-122.66395243630679,45.50452046088893],[-122.66396629641331,45.50456103523501],[-122.66397024361066,45.50457117094711],[-122.66397533256675,45.50458272637443],[-122.66398091469792,45.50459420373069],[-122.66399304285257,45.50461700166932],[-122.66402511450484,45.50467366436931],[-122.66403730464323,45.50469637098594],[-122.66404296941943,45.5047077626955],[-122.6640482039026,45.50471919028907],[-122.66406117827025,45.50474988379545],[-122.66406666068843,45.50476082030475],[-122.66407842592369,45.50478240496752],[-122.66408400266499,45.5047932004437],[-122.66409679826789,45.5048210387482],[-122.66410154137257,45.50483009404824],[-122.66410769932385,45.50484008301898],[-122.66412079406574,45.50485989096772],[-122.66413348097252,45.50488160465698],[-122.66414019318431,45.50489248384867],[-122.66415480967233,45.50491421893116],[-122.6641783724822,45.50494678596782],[-122.66420277881016,45.50497930324863],[-122.6642276962795,45.50501165681947],[-122.66424480918567,45.50503296688866],[-122.66425365309962,45.50504346641369],[-122.66426279345767,45.50505380539361],[-122.66427234344744,45.50506392338876],[-122.66428245218934,45.50507374044246],[-122.66429266154255,45.50508272015221],[-122.66430333981633,45.50509144802826],[-122.66433653795596,45.50511700143846],[-122.66434750279232,45.50512557254375],[-122.66435816759137,45.50513430419064],[-122.66436835897827,45.5051432901865],[-122.66437844166903,45.50515311541093],[-122.66438796111609,45.5051632434615],[-122.66439706643982,45.50517359375181],[-122.66440587172625,45.50518410647182],[-122.66442290737727,45.50520544291803],[-122.66448109664812,45.50528092816527],[-122.66449831555548,45.50530216132395],[-122.66450722324984,45.50531259972974],[-122.66451642469328,45.50532285933338],[-122.66452601331063,45.505332879066],[-122.66455470909408,45.50536029843455],[-122.6645638503504,45.50536947074927],[-122.66457216156341,45.50537855429208],[-122.66458812282939,45.50539673396483],[-122.66460226500691,45.50541222219022],[-122.66460879216575,45.50542014226807],[-122.6646151890689,45.50542937941941],[-122.66462084306528,45.50543894457877],[-122.66463633271573,45.50546840813008],[-122.66464190586376,45.50547812689938],[-122.66465488831624,45.5054981600118],[-122.66466098967366,45.50550832325651],[-122.66466609030783,45.50551866215106],[-122.66467037527175,45.50552928813024],[-122.66467402961833,45.50554012753349],[-122.66467718809484,45.50555112055107],[-122.66467994232953,45.50556221933511],[-122.6646844249228,45.50558458436366],[-122.66468615597634,45.50559578765058],[-122.66468748907621,45.50560696638185],[-122.66468833439092,45.50561809222665],[-122.66468855896973,45.5056291318175],[-122.66468798045467,45.50564004926876],[-122.66468635899558,45.50565080051027],[-122.66468389940835,45.50566028567604],[-122.6646777908644,45.50567908790652],[-122.66467512466465,45.50568858188156],[-122.66467312591315,45.50569914361209],[-122.66467196798475,45.50570987091855],[-122.66467142630063,45.50572072036022],[-122.66467131221459,45.50573165542178],[-122.66467197786622,45.50576467779635],[-122.6646718709667,45.50578661400542],[-122.66467121968812,45.5057974772829],[-122.6646699440804,45.50580822597607],[-122.66466478415741,45.50583618150862],[-122.66466373492514,45.50584790854946],[-122.66466378882407,45.5058597092478],[-122.66466496022721,45.50587152001676],[-122.66466735423744,45.50588327664015],[-122.66467096995645,45.50589468699665],[-122.66467558190715,45.50590601235874],[-122.66468089903529,45.50591727790921],[-122.6646866895756,45.50592850694235],[-122.66471127736328,45.50597340668359],[-122.66471708946315,45.50598471440188],[-122.66472248294812,45.50599609640715],[-122.6647272781551,45.50600757788227],[-122.664731298116,45.50601901717379],[-122.66473478268099,45.50603052823402],[-122.66474420870327,45.50606493359792],[-122.6647477076413,45.5060761493806],[-122.6647517743146,45.50608710514894],[-122.66475669798064,45.50609769072837],[-122.6647628307791,45.50610777013213],[-122.6647694657358,45.50611617613949],[-122.66477691726108,45.506124235253],[-122.66479259465942,45.50613996188484],[-122.66480002103187,45.50614793474402],[-122.6648078929687,45.50615755077631],[-122.66482657343502,45.50618188800607],[-122.66483271431831,45.50619149081164],[-122.66483817158367,45.50620151920361],[-122.66484313028404,45.50621186489607],[-122.66484774492966,45.50622243911981],[-122.66486514170343,45.50626577100373],[-122.66486976263727,45.50627662033827],[-122.66487472313426,45.50628738908611],[-122.66488016692489,45.50629803128888],[-122.66488648836955,45.50630901975151],[-122.6649067040567,45.50634170308059],[-122.6649128817709,45.50635261283887],[-122.66491871632866,45.5063636365465],[-122.66492969913133,45.5063858967487],[-122.66495602785398,45.5064415554],[-122.66496729721925,45.50646317026699],[-122.66497338689854,45.50647364434266],[-122.66497993022708,45.50648379230174],[-122.66499071989197,45.50649907939685],[-122.66499702876017,45.50650896922978],[-122.66500889281015,45.5065292147682],[-122.66501512262666,45.50653929661294],[-122.66502202528127,45.50654916314497],[-122.66502985320068,45.50655871615227],[-122.66505554771275,45.5065867361572],[-122.66506353014236,45.50659636722408],[-122.66507019474345,45.50660566336143],[-122.66507625298172,45.50661521258178],[-122.66509846921701,45.50665414351753],[-122.66510445648838,45.50666363103247],[-122.66512533333558,45.50669308261067],[-122.66514182909916,45.50671910998391],[-122.66514815144211,45.50672738935792],[-122.66515659201252,45.50673624100272],[-122.66516623991868,45.50674456381403],[-122.66517684902219,45.50675238549273],[-122.66518823966,45.50675969974344],[-122.66520029415278,45.50676646060838],[-122.66521293973705,45.50677258498555],[-122.66524093034296,45.50678414059057],[-122.66525300280207,45.50678960770355],[-122.6652646934772,45.50679553502546],[-122.66527590535026,45.50680188478244],[-122.66528650906388,45.5068086443832],[-122.66529633573475,45.50681582704832],[-122.6653051652757,45.50682347181043],[-122.66531271920893,45.50683164918021],[-122.66531887177031,45.50684051339985],[-122.66532391042072,45.5068498170516],[-122.66533710667225,45.50687860938245],[-122.66534236091833,45.50688796276321],[-122.66534826913798,45.50689640076162],[-122.66535503075711,45.50690450131442],[-122.66536247060429,45.50691226253311],[-122.66537044494905,45.50691966804931],[-122.66538449549843,45.50693155917962],[-122.66539126699904,45.50693759288217],[-122.66541701720665,45.50696429314156],[-122.66544280514351,45.50698943837677],[-122.66545131937578,45.50699803249062],[-122.66545949494319,45.50700681043447],[-122.66546713241974,45.50701583264584],[-122.66547388505572,45.50702483911682],[-122.66549266074348,45.50705261336188],[-122.66549963077176,45.50706234948528],[-122.66550688736264,45.50707200313485],[-122.66553661171706,45.5071101323274],[-122.66555141864788,45.50713003768837],[-122.66555958074055,45.50714020756362],[-122.66556833122974,45.50714935566511],[-122.66557801147526,45.50715811029175],[-122.66558839330499,45.50716653502896],[-122.66559929795422,45.50717466765033],[-122.66561058977733,45.50718251822887],[-122.6656221663664,45.50719007228498],[-122.66563395316123,45.50719728889752],[-122.66564589356798,45.50720409944488],[-122.66566276752232,45.50721322046505],[-122.6656868064393,45.50722748307338],[-122.66569898939119,45.50723435090677],[-122.66570747757231,45.50723862622547],[-122.66573807508922,45.5072531985691],[-122.66574945584556,45.50725806629887],[-122.66576133157359,45.5072623831665],[-122.66577428078841,45.50726607551402],[-122.66578776989073,45.50726913767548],[-122.6658016228107,45.50727179503217],[-122.66584382386613,45.5072793276714],[-122.6658576049209,45.50728234639282],[-122.6658729858752,45.50728652727448],[-122.66588767243178,45.50729147558454],[-122.66590146516465,45.50729720076616],[-122.66591180207863,45.50730238515874],[-122.66592151376518,45.50730791769517],[-122.66593069993725,45.50731361769289],[-122.66593794844329,45.50731842372102],[-122.66594465885846,45.50732347653449],[-122.66595220021529,45.50733054518436],[-122.66595882798545,45.5073381741377],[-122.66596484310456,45.50734613927253],[-122.66597526625682,45.50736135310508],[-122.6659795323561,45.50736861376451],[-122.66598285163109,45.50737572647755],[-122.66598868349391,45.50739057516027],[-122.66599314991751,45.50740088160179],[-122.66599826941629,45.50741129191802],[-122.66600400336276,45.50742172426667],[-122.66601035085857,45.50743210058304],[-122.66601735502283,45.50744234406155],[-122.6660251056871,45.50745236971247],[-122.66603299648855,45.50746139311153],[-122.66604141819437,45.50747022827254],[-122.66606800114022,45.50749629180054],[-122.66607675073111,45.50750504259588],[-122.6660851733352,45.50751393252114],[-122.66609378817877,45.50752374788851],[-122.66611836159336,45.5075535786372],[-122.66612683989302,45.50756329578736],[-122.66613583741892,45.50757270508453],[-122.66614450346648,45.50758083575857],[-122.66617149424748,45.50760455730023],[-122.66617991595329,45.50761272007683],[-122.66618868261212,45.50762239944367],[-122.66619683392503,45.5076323910667],[-122.66621265325716,45.507652678381],[-122.66622097524996,45.50766267692374],[-122.6662296395009,45.50767215230721],[-122.66624769923135,45.50769083802825],[-122.66625645331381,45.50770033355263],[-122.66626383566879,45.50770904339543],[-122.66627089552861,45.50771791062467],[-122.66629175261289,45.50774469613284],[-122.66632138533917,45.50778000637222],[-122.66632816761957,45.50778896235688],[-122.66634257390177,45.50781039161875],[-122.66634938223331,45.50781997840773],[-122.66635655348422,45.50782949279682],[-122.66638626705887,45.50786718645756],[-122.66640872763593,45.50789730724641],[-122.66641692566121,45.50790666864199],[-122.66644346009808,45.5079339979905],[-122.66645168327618,45.50794331531162],[-122.66645890393444,45.50795298454881],[-122.66646450043866,45.50796256942487],[-122.66646909711797,45.50797251251231],[-122.66647297963664,45.50798271937867],[-122.66647639053973,45.50799311133036],[-122.66648579949404,45.50802478703478],[-122.66648928316073,45.50803534077243],[-122.66649326449406,45.50804581266694],[-122.66649791237734,45.50805620082968],[-122.66650310104642,45.50806648952204],[-122.66650867329611,45.50807670833277],[-122.66653224958075,45.50811738965675],[-122.66653789279736,45.50812763301056],[-122.66654319465417,45.50813795820356],[-122.66654825576246,45.5081488147318],[-122.66655296113794,45.50815975058077],[-122.66656642239248,45.50819264058548],[-122.6665711601073,45.50820349647363],[-122.6665762742162,45.50821422204373],[-122.66658194617891,45.50822475874811],[-122.6665875875989,45.508233991662],[-122.66660542454717,45.50826135232887],[-122.6666111279509,45.50827111783184],[-122.66661645226559,45.50828097272846],[-122.66663641462783,45.50831994846893],[-122.66665054692389,45.50834434960682],[-122.6666554966411,45.50835465902148],[-122.66666372071752,45.50837528477007],[-122.66666794549431,45.50838511383719],[-122.66667289251656,45.50839424977506],[-122.66667910436675,45.50840235829636],[-122.66668481226208,45.50840763513005],[-122.66669969734636,45.50841972928849],[-122.66670826278258,45.5084274248258],[-122.66671694769475,45.50843628942371],[-122.6667251448217,45.50844579174729],[-122.66673275355218,45.50845580085137],[-122.66673962476578,45.50846622734056],[-122.66674554107021,45.50847702022168],[-122.66675020691982,45.50848816438548],[-122.66675323783558,45.50849896922371],[-122.66675519885787,45.50851000887915],[-122.66675639900707,45.50852121221335],[-122.66675709430309,45.50853252256751],[-122.66675815072189,45.50856668465816],[-122.66675874450829,45.50857803529387],[-122.66675975151972,45.50858931478908],[-122.66676137208049,45.50860048788956],[-122.66676915688073,45.50863558543678],[-122.66677072893251,45.50864621901162],[-122.66677464199387,45.50868917256464],[-122.66677632184343,45.50869987286058],[-122.66677877244756,45.50871059770659],[-122.66678181863468,45.50872126526239],[-122.66679558890965,45.50876363895226],[-122.66679842219605,45.50877420640123],[-122.66680473555587,45.50880388350925],[-122.66680752751978,45.50881361240483],[-122.66681145764913,45.50882372091064],[-122.66681617200778,45.50883372491118],[-122.66683171555711,45.50886369535269],[-122.66683632121959,45.50887387058057],[-122.66684062145484,45.50888543960399],[-122.6668513922551,45.50892088007165],[-122.66685543287727,45.50893266061007],[-122.66685987504634,45.50894441722362],[-122.66686461365947,45.50895615494861],[-122.6668746658075,45.50897958947135],[-122.66690084271487,45.50903801488887],[-122.66691100445736,45.50906128129134],[-122.66692830241647,45.50910343942405],[-122.66693264307592,45.5091127250748],[-122.66693771765895,45.50912175261446],[-122.66694459965234,45.50913160043728],[-122.66696832685395,45.50916045077732],[-122.66697577748091,45.5091704906015],[-122.66698263252485,45.50918080112389],[-122.6669888937824,45.50919133890644],[-122.66699451454113,45.50920207561993],[-122.66699939957964,45.50921299930313],[-122.66700339708264,45.50922411121498],[-122.66700639386245,45.50923544975691],[-122.66700856688711,45.50924693812571],[-122.66701014432874,45.50925853288341],[-122.66701130764706,45.50927019625788],[-122.66701456224332,45.509316922128],[-122.66701564201827,45.5093284532884],[-122.66701710896714,45.50933983209949],[-122.66701915712599,45.50935099183077],[-122.66702202903997,45.50936184245926],[-122.66702603822108,45.5093722687806],[-122.66703158531796,45.50938212033681],[-122.66703824991905,45.50939049248993],[-122.66704614161883,45.50939838242003],[-122.66705486246359,45.50940591666326],[-122.66706406480534,45.50941319594488],[-122.66708961558699,45.50943264722839],[-122.66709659190349,45.50943783394241],[-122.66711117695044,45.50944779439617],[-122.66712135126936,45.50945523798016],[-122.66713098659908,45.5094632317739],[-122.66713978020741,45.50947180788322],[-122.66714649062259,45.50947966821391],[-122.66715259108167,45.5094878684905],[-122.66718305924117,45.50953301468688],[-122.66718896835911,45.5095431230635],[-122.66719373571833,45.50955374198768],[-122.66719745743853,45.50956470274491],[-122.66720040570929,45.50957591594171],[-122.66720279432963,45.50958731170005],[-122.66720652143975,45.50961045133993],[-122.66721111272918,45.50964553818493],[-122.66721447063169,45.5096689245764],[-122.66721648914614,45.50968056016657],[-122.66721887417323,45.50969212839471],[-122.66722176315517,45.50970360282062],[-122.66722505458236,45.50971436650617],[-122.66722875114975,45.50972503764893],[-122.6672443234452,45.50976701272129],[-122.667252662506,45.50979422659244],[-122.66725642644703,45.50980429148469],[-122.66726079405596,45.50981434315511],[-122.66727478262158,45.50984477011133],[-122.66727880348076,45.50985474119503],[-122.66729366431051,45.50989491194674],[-122.66729783249345,45.5099047810382],[-122.66730251720764,45.50991447008331],[-122.66731971365712,45.50994484914143],[-122.66733490866014,45.50997426249037],[-122.66734533450735,45.50999346995353],[-122.66735097233406,45.51000273783072],[-122.66736096160001,45.51001804285592],[-122.66736629489787,45.51002740767597],[-122.66737621229859,45.51004667240781],[-122.66738773049718,45.51006796420324],[-122.66739317788107,45.51007876810868],[-122.66739784373064,45.51008977975518],[-122.66740139926254,45.51010113323134],[-122.66740398730889,45.51011271522256],[-122.66740586388951,45.5101244646649],[-122.66740723022704,45.51013633371432],[-122.66740824442499,45.51014828522893],[-122.66741106603332,45.51019636762272],[-122.66741315371804,45.51022023096387],[-122.66741479853331,45.51023201060087],[-122.66741709193225,45.51024362655937],[-122.66742028454476,45.51025501399878],[-122.66742470425594,45.51026608856306],[-122.66743044988053,45.51027654745207],[-122.66743729234803,45.51028671424075],[-122.6674448363998,45.51029667643279],[-122.66746843244736,45.51032598635624],[-122.66748399486134,45.51034608321369],[-122.66750552298711,45.51036988542778],[-122.66751205284091,45.51037801255017],[-122.66751767629461,45.51038648150148],[-122.6675226260118,45.51039521925706],[-122.66754240421942,45.51043341040965],[-122.66754650053711,45.51044344245253],[-122.66754983149021,45.51045372944947],[-122.66755247792703,45.51046420655973],[-122.66755447218695,45.51047482342155],[-122.66755580169357,45.51048553911606],[-122.66755640715807,45.51049632090815],[-122.66755621581693,45.51050805327331],[-122.66755249499501,45.51055494430896],[-122.66755238180728,45.51056653564962],[-122.66755328461417,45.51057801493346],[-122.66755551962257,45.5105896245254],[-122.66755864036986,45.51060115605459],[-122.66756896740237,45.51063595333298],[-122.66757294424414,45.51064747163281],[-122.6675778023332,45.51065878030065],[-122.66758359736509,45.51066938075834],[-122.66759022064369,45.51067977221397],[-122.66761153317381,45.51071042847634],[-122.6676255810282,45.51073155382812],[-122.6676477568393,45.5107604241221],[-122.66766216401984,45.510781304573],[-122.66768195660052,45.51080792620814],[-122.6676882151631,45.5108169465512],[-122.66769381526055,45.51082617400376],[-122.6676990892696,45.51083693243847],[-122.66770347304818,45.51084795023182],[-122.66771819733401,45.51089251429433],[-122.66772258111259,45.51090325571943],[-122.66772786949467,45.51091358921651],[-122.66773446223054,45.51092334733464],[-122.66774259018722,45.5109323815086],[-122.66775179971553,45.51094095424647],[-122.66777100749295,45.5109578302859],[-122.66777981906756,45.51096667874739],[-122.66778778712414,45.51097648218139],[-122.66780216106699,45.51099720517352],[-122.66780914097676,45.51100785844663],[-122.6678158208492,45.51101868357513],[-122.66782199047857,45.51102967741133],[-122.66782738486185,45.51104085380445],[-122.66783167521565,45.51105224423013],[-122.66783453994309,45.51106354274444],[-122.66783639226921,45.51107501437271],[-122.6678375843336,45.51108659364551],[-122.66784010949786,45.51112145546363],[-122.66784150368316,45.51113295163115],[-122.66784366323313,45.51114429482467],[-122.66784694298221,45.51115541768649],[-122.66785123513266,45.51116552388316],[-122.66785643997139,45.51117545318505],[-122.66787387806768,45.51120489673696],[-122.66787914668684,45.51121482477286],[-122.66788353226207,45.51122493032938],[-122.6678868784865,45.51123582781],[-122.66788912966457,45.51124694561759],[-122.66789057864712,45.511258227096],[-122.66789145989442,45.51126962566133],[-122.66789314513389,45.5113273134331],[-122.66789389432884,45.51133882970293],[-122.66789511693597,45.51135028994395],[-122.6678969944149,45.51136166897577],[-122.66789948364656,45.51137237631776],[-122.66790807154068,45.51140438879685],[-122.66791028948111,45.51141560225666],[-122.66791194238124,45.51142688873738],[-122.66791312276752,45.51143822305853],[-122.66791388723381,45.51144958255777],[-122.66791426093299,45.51146094520227],[-122.66791423578016,45.51147229021826],[-122.66791377045283,45.5114835930548],[-122.66791278769591,45.51149482727264],[-122.66791117252502,45.51150596076681],[-122.66790877042996,45.51151695513731],[-122.6679053631201,45.51152823215505],[-122.66789780739025,45.51155055767227],[-122.66789488157737,45.51156178117506],[-122.66789334006833,45.51157216365286],[-122.66789289450394,45.51158263363032],[-122.66789349098529,45.51159314704191],[-122.6678952247338,45.51160439571652],[-122.66789782625483,45.51161565005447],[-122.66790102246064,45.51162691194424],[-122.66791568835595,45.5116721149691],[-122.66791897349495,45.51168348889981],[-122.66792955744562,45.51172829717873],[-122.66793262698897,45.51173936830558],[-122.66794415417068,45.51177434680743],[-122.66794693715143,45.51178523033254],[-122.66794921258403,45.51179620450438],[-122.66795664614303,45.51184039137204],[-122.66795887037168,45.5118513680511],[-122.66796157340237,45.51186225533836],[-122.66797248344149,45.51189727782914],[-122.66797534098239,45.51190917797996],[-122.66797760563523,45.51192119395705],[-122.66797948401251,45.51193328799005],[-122.66798456398541,45.51196974381644],[-122.66798662472068,45.51198186679618],[-122.66798916964787,45.51199393122946],[-122.66799179003357,45.51200404545916],[-122.66800056837052,45.51203427986277],[-122.66800313036573,45.51204441108176],[-122.66800550281638,45.51205623880865],[-122.6680073254981,45.51206814144386],[-122.66800983359437,45.51209209778728],[-122.66801190061783,45.51212821609781],[-122.66801257974421,45.51216431298214],[-122.66801199134767,45.51218820192799],[-122.66801118376225,45.5122000340312],[-122.66800988210339,45.51221174904468],[-122.66800793096259,45.51222330542156],[-122.66800150261841,45.51225113501558],[-122.66799992158353,45.51226150981221],[-122.66799728682479,45.51229248059256],[-122.66799619267677,45.51230255196257],[-122.6679945370817,45.51231237656688],[-122.66799083512441,45.51232830479816],[-122.66798937895534,45.51233850961569],[-122.66798894237411,45.51234892783165],[-122.66798952088918,45.51235943921156],[-122.66799118995895,45.51236992226204],[-122.66799410768702,45.51238024982434],[-122.66799724550231,45.51238784284129],[-122.66800117383501,45.51239522749312],[-122.66800586393913,45.51240235404947],[-122.66801233450413,45.51241043681347],[-122.66803377728993,45.51243354885375],[-122.66804692862571,45.51244890043031],[-122.66805383217869,45.51245622967829],[-122.66806164213175,45.51246301818642],[-122.66807087860948,45.5124691620877],[-122.66808122989652,45.51247474132868],[-122.66809235642964,45.51247998504666],[-122.66811578808547,45.51249029936933],[-122.6681290292528,45.51249636835739],[-122.66815037242965,45.51250633442012],[-122.66816907524985,45.51251506758484],[-122.6682055297824,45.51253095547096],[-122.66821716745689,45.51253644342865],[-122.66822820505679,45.51254227383235],[-122.66823839105379,45.51254861601661],[-122.66824883037573,45.51255665658329],[-122.66825833904299,45.51256525425364],[-122.66827657753819,45.51258277000426],[-122.66828625868202,45.5125910327784],[-122.66829652373077,45.51259834941791],[-122.66830756133068,45.51260485400594],[-122.66832943081624,45.5126154138093],[-122.66833994918993,45.51262085517604],[-122.66835010015264,45.51262744285498],[-122.66835888208287,45.51263491749336],[-122.66836592756964,45.51264326020578],[-122.66837097969477,45.51265245273667],[-122.66837454690479,45.51266230623668],[-122.66838238111237,45.51269404981698],[-122.6683857453031,45.51270500555622],[-122.66838967363583,45.512716006617],[-122.66840698417136,45.51276034635922],[-122.66841705698066,45.51278972802106],[-122.66842082002337,45.51279939390773],[-122.66842583082605,45.51281051329497],[-122.66843635818284,45.51283259657777],[-122.66844090006491,45.51284377324238],[-122.66844448164797,45.51285549252839],[-122.66844709305047,45.51286740066001],[-122.66844895256312,45.51287944224173],[-122.66845020840789,45.51289157320889],[-122.66845094772138,45.5129037564214],[-122.66845120014797,45.51291595914558],[-122.66845093963654,45.51292814927722],[-122.66845008174545,45.51294029597123],[-122.66844848184591,45.51295236271707],[-122.66844592524062,45.51296430733876],[-122.66844269220391,45.51297485952072],[-122.66843880699031,45.51298531664742],[-122.66842615332122,45.51301648028347],[-122.66842242710943,45.5130269002624],[-122.66840906197463,45.51306760381774],[-122.66840536720387,45.51307712613268],[-122.66839895772431,45.51309222636677],[-122.66839613431935,45.51310080255264],[-122.66839145050348,45.51311779251178],[-122.66838867470925,45.51312595952476],[-122.66838321115567,45.51313841651492],[-122.66838018203656,45.51314644126008],[-122.66837761195653,45.51315489091009],[-122.66837547755941,45.51316366348735],[-122.66837377165868,45.51317266897459],[-122.66837251132233,45.51318182994448],[-122.6683700759896,45.51321402772334],[-122.66836875546615,45.51322451942749],[-122.66836652405097,45.51323470456833],[-122.66836316884337,45.51324449690597],[-122.66835592123566,45.51326326386965],[-122.66835381378802,45.51327244874536],[-122.66835390451784,45.51328211958506],[-122.66835659676879,45.51329150841207],[-122.66836174860694,45.51330040182987],[-122.66837515057264,45.51331832777824],[-122.66838078570441,45.51332738234085],[-122.66838561504737,45.51333699714665],[-122.66838959368579,45.51334705951691],[-122.66839282672247,45.51335802268287],[-122.66839526295354,45.51336928359454],[-122.66839709012685,45.51338075978877],[-122.66839844927786,45.51339238957566],[-122.66840012104258,45.51341593430007],[-122.66840067170988,45.51343967541465],[-122.66840051899625,45.51345157586882],[-122.66839933950831,45.51347524394792],[-122.66839739645235,45.51349889942729],[-122.66839499076401,45.51352251964547],[-122.66839217993548,45.51354607690519],[-122.66838879418518,45.51356952462451],[-122.6683867612977,45.51358118269925],[-122.66838439423692,45.51359277719353],[-122.6683815780185,45.51360428607548],[-122.66837816531874,45.51361568416562],[-122.66837435376698,45.51362621859987],[-122.6683616587754,45.51365757702131],[-122.66835791010571,45.51366811270675],[-122.66835452615204,45.51367980790062],[-122.66835180156178,45.51369161954672],[-122.6683495701466,45.51370351931813],[-122.66834770793903,45.51371548266491],[-122.66834473631206,45.51373953524764],[-122.66834241237045,45.51376367657727],[-122.66834054567128,45.51378783929896],[-122.6683391541809,45.51381196487076],[-122.66833844361351,45.51383597586639],[-122.66833887031326,45.51386837281692],[-122.66833873287104,45.51387851818383],[-122.6683379603199,45.5138885974533],[-122.66833599390772,45.51390030141416],[-122.6683278946971,45.51393456725872],[-122.66832086807497,45.51396731917995],[-122.66831825218088,45.51397810093449],[-122.66831525180783,45.51398872720517],[-122.66831168729277,45.51399913063759],[-122.66830734214173,45.51400923254677],[-122.66829418541609,45.51403425251551],[-122.66828994177469,45.51404363429278],[-122.6682861625623,45.51405320617152],[-122.66828292772895,45.51406294360197],[-122.66828034597081,45.51407283210594],[-122.66827830859178,45.5140841640058],[-122.66827703208575,45.51409563187098],[-122.66827630984025,45.51410719730324],[-122.66827598195516,45.51411883134639],[-122.66827625773796,45.51416564194782],[-122.66827598914169,45.51418897736174],[-122.66827537649068,45.51420056228866],[-122.66827424551172,45.51421205782717],[-122.66827239947381,45.51422342935616],[-122.66826958684868,45.51423463218266],[-122.66826549412424,45.51424595460774],[-122.66826049769462,45.51425710518303],[-122.66824381238654,45.51429000736174],[-122.66823883212659,45.51430091557948],[-122.66823474748701,45.5143118458268],[-122.66823194025173,45.51432209434807],[-122.66822714234981,45.51434251962456],[-122.66822084336304,45.5143634151129],[-122.66821828406277,45.51437404445822],[-122.66821237674147,45.51440696985915],[-122.6682101390381,45.51441810214776],[-122.66820748900803,45.51442892662033],[-122.6682044491091,45.51443975046133],[-122.66819091509102,45.51448306405938],[-122.66818779703868,45.51449391118057],[-122.66818506346527,45.51450477529552],[-122.66818289313552,45.51451566395784],[-122.66818150434011,45.51452658786875],[-122.66818107045383,45.5145380883765],[-122.66818149445866,45.51454962727988],[-122.66818253919929,45.51456119387776],[-122.66818401333468,45.51457277998697],[-122.66819133280762,45.51461919804847],[-122.66819288958804,45.51463079736474],[-122.66819406368612,45.51464238408911],[-122.66819467723545,45.51465395255634],[-122.66819451194543,45.51466549395383],[-122.66819339893279,45.51467699191532],[-122.66819152414877,45.51468846091871],[-122.66818912205372,45.51469990662923],[-122.66817776285696,45.51474548109259],[-122.66817522242131,45.51475680593283],[-122.66816888570533,45.51478970593094],[-122.66816636323601,45.51480033771358],[-122.66816317691168,45.51481068560243],[-122.66815685187377,45.51482678434297],[-122.66815325412105,45.51483733806418],[-122.66815020523899,45.51484819518861],[-122.66814521330095,45.5148705376435],[-122.66813449819624,45.51492791517217],[-122.6681319209297,45.51493939419593],[-122.66812893762463,45.51495080712294],[-122.66812539017756,45.5149621218503],[-122.66812144387852,45.51497265414415],[-122.66810809760835,45.51500398726598],[-122.66810391774733,45.51501448870798],[-122.66809988700666,45.51502602940212],[-122.6680962982371,45.51503764940693],[-122.66808337148017,45.51508416276428],[-122.66807980786342,45.51509559706389],[-122.66807581036042,45.51510685259208],[-122.66807119122322,45.51511786136645],[-122.66806082466485,45.51513854317718],[-122.66805611749277,45.51514893947291],[-122.66805263292777,45.51515898389408],[-122.66804990654087,45.51516923792628],[-122.66804342519609,45.51520069809113],[-122.66804094494762,45.51521126307258],[-122.66803754302762,45.51522301648627],[-122.66803357516901,45.51523474220095],[-122.66802920576349,45.51524644839971],[-122.66800570224238,45.51530500957131],[-122.66800147117738,45.51531681080482],[-122.66799771532119,45.51532868253607],[-122.66799467362564,45.51534015518341],[-122.66799208737592,45.5153516945518],[-122.66798780420865,45.51537489980402],[-122.66797846711958,45.51543311148892],[-122.66797379228686,45.51545626635045],[-122.66797089252513,45.51546776729769],[-122.66796754630067,45.51547903156396],[-122.66796380841078,45.51549024295296],[-122.6679430088187,45.51554603234253],[-122.6679390652146,45.51555722924057],[-122.66793541985119,45.51556847208719],[-122.66793197032048,45.51558045014465],[-122.66792887562431,45.51559248296281],[-122.66792339320615,45.51561665811804],[-122.66790648421755,45.51570151090444],[-122.66790119403888,45.51572553431254],[-122.66789826103943,45.51573743176546],[-122.66789503698588,45.51574921402446],[-122.66789142126687,45.51576083828625],[-122.66788728632164,45.5157722535645],[-122.66787860140947,45.515793502279],[-122.66787536927107,45.51580301532025],[-122.66786714609295,45.51583204604304],[-122.66786006736851,45.51585522528931],[-122.66785697626564,45.51586691058683],[-122.66785475024037,45.51587822513],[-122.66785309284865,45.5158896259069],[-122.66784917439736,45.51592394404425],[-122.66784748017474,45.51593529319619],[-122.66784520025055,45.51594652715483],[-122.66783736873791,45.51597449338868],[-122.66783477170843,45.5159854528955],[-122.66782786546051,45.51601862724861],[-122.66782491539313,45.51602963206783],[-122.66782140837026,45.5160400961804],[-122.66780913109528,45.5160713500257],[-122.66780534739128,45.51608186637547],[-122.66780180084253,45.51609361016548],[-122.66779882472403,45.51610547166152],[-122.66779627350861,45.51611742064963],[-122.66779202447732,45.51614149108946],[-122.6677817190044,45.51621419898806],[-122.66777804040329,45.5162384066079],[-122.66777361889545,45.51626250154475],[-122.66777092574623,45.51627447693663],[-122.66776775289665,45.51628637930916],[-122.66776416322878,45.51629774160661],[-122.66774763153262,45.5163428766755],[-122.66774377506511,45.51635420874768],[-122.66773700895436,45.516377648373],[-122.66772522485446,45.51642471076538],[-122.66772203942847,45.51643638965005],[-122.66771853689718,45.51644798292668],[-122.66771458071669,45.51645945786364],[-122.66770358623592,45.51648743769053],[-122.66769987170221,45.51649855446069],[-122.66769665393687,45.51650979334251],[-122.66769381166729,45.51652112412223],[-122.66768887811976,45.51654397199268],[-122.66767592171843,45.51661299582004],[-122.66767106542599,45.51663587827299],[-122.66766525691936,45.51665851837797],[-122.66765814226233,45.51668206803044],[-122.66765505924425,45.5166938607923],[-122.66765278291334,45.51670582161505],[-122.66765116594583,45.51671785671041],[-122.66764768856736,45.51675401485485],[-122.66764618388927,45.5167659517457],[-122.66764407374666,45.51677775141395],[-122.66764104283089,45.51678935217362],[-122.66763765708059,45.51679883860966],[-122.66762613169547,45.51682705368185],[-122.6676224477045,45.51683857763853],[-122.66761294712207,45.51687376887209],[-122.66760080998425,45.51690877817303],[-122.66759713407811,45.51692034806272],[-122.66758396567435,45.51696685231051],[-122.66758041822729,45.51697830699932],[-122.66757649438614,45.51698958166386],[-122.6675720297592,45.51700060077052],[-122.6675668285137,45.51701126990228],[-122.66755695602872,45.51702812272028],[-122.66755237641739,45.51703659822427],[-122.66754802767312,45.51704706340849],[-122.66754485841678,45.51705784772022],[-122.66754274288429,45.51706884415341],[-122.66754164154973,45.51707995766147],[-122.66754160202386,45.51709109760414],[-122.66754276893543,45.51710217208213],[-122.66754538662617,45.51711308416087],[-122.66754937065444,45.51712308354083],[-122.66755469496914,45.51713281288671],[-122.66756119877179,45.51714222499026],[-122.66756879492586,45.51715125250087],[-122.66757708188433,45.51715957440162],[-122.66760357949029,45.51718340017088],[-122.6676115277839,45.51719141993311],[-122.66761824897888,45.51719970783781],[-122.66762320139101,45.51720818016872],[-122.66762645958056,45.51721691938302],[-122.6676279489873,45.51722580147993],[-122.66762749174482,45.517234711271],[-122.66762451472796,45.51724462061875],[-122.66761944283988,45.51725444498975],[-122.66761283932424,45.5172642051557],[-122.66760513986392,45.51727391874108],[-122.6675966804289,45.51728360148201],[-122.66758772242888,45.51729326848514],[-122.66755975697578,45.51732232991132],[-122.66754175833074,45.51734195848226],[-122.667533433643,45.5173519370499],[-122.66752583120075,45.51736208430657],[-122.66751921331205,45.51737246004931],[-122.66751424293358,45.51738208864116],[-122.66751004151301,45.51739187773936],[-122.66750634225068,45.51740175055173],[-122.66749601252322,45.51743114489695],[-122.66749213180118,45.51744062493035],[-122.66748479256532,45.51745665430933],[-122.66748076811282,45.51746724719215],[-122.66747736978613,45.51747814031684],[-122.66746548058332,45.51752312400242],[-122.66746187474578,45.51753440736994],[-122.66745794731136,45.51754487875601],[-122.66744489119702,45.51757617708526],[-122.66744089908389,45.51758670826042],[-122.66743725821205,45.51759792867113],[-122.66743411770183,45.51760925419619],[-122.66742885806583,45.51763211358421],[-122.66741568337386,45.51770114048288],[-122.66741053333234,45.51772389282887],[-122.66740747277218,45.51773512328329],[-122.66740392442681,45.51774620770559],[-122.66739972929442,45.51775709637017],[-122.66739540839791,45.51776653165855],[-122.66738614856396,45.51778513660739],[-122.66738187078658,45.51779446236875],[-122.66737816703267,45.51780388254432],[-122.66736818764818,45.51783223181229],[-122.66735970395865,45.51785331924225],[-122.66735630922518,45.51786349284492],[-122.66735340048027,45.5178738118458],[-122.66734558064574,45.51790495011509],[-122.6673426215952,45.5179151545508],[-122.6673391298437,45.51792513616397],[-122.6673348466764,45.51793479676256],[-122.66732947205604,45.51794401612428],[-122.6673222567877,45.51795337962552],[-122.66730574665107,45.51797120527019],[-122.66729785405303,45.5179801917345],[-122.66729116160414,45.51798957851882],[-122.66728606995311,45.51799998561768],[-122.66728256293023,45.51801094095338],[-122.66728016622505,45.51802228276064],[-122.66727848996875,45.51803387696937],[-122.66727464068774,45.51806908633845],[-122.66727278387005,45.51808062829442],[-122.66727012126356,45.51809188951992],[-122.66726627288088,45.51810273531606],[-122.66726198522204,45.51811138878828],[-122.66725232473947,45.51812821484052],[-122.6672480766065,45.51813672920376],[-122.6672444465144,45.51814665979346],[-122.66723649013596,45.51817730884132],[-122.66723293280742,45.51818736279292],[-122.66722816904148,45.5181971492333],[-122.66721713233989,45.51821628905847],[-122.66721222214854,45.51822587785163],[-122.66720863427729,45.51823531180252],[-122.66720638579413,45.51824475330501],[-122.66720560964973,45.51825405129512],[-122.66720607138377,45.51826063516749],[-122.66720740987355,45.5182669836311],[-122.66721469431221,45.51828633555142],[-122.66721687991328,45.51829384405696],[-122.66721863791632,45.51830394771293],[-122.66721928739825,45.5183144221029],[-122.66721895053003,45.51832511301575],[-122.66721767941389,45.51833587945845],[-122.66721545608355,45.51834658484417],[-122.66721219160581,45.5183570906978],[-122.66720772158898,45.51836724532643],[-122.66720279432963,45.51837571559327],[-122.66719194807089,45.5183921047408],[-122.66718714208413,45.51840032134289],[-122.66718392791202,45.51840738041904],[-122.66718160576701,45.51841452446755],[-122.66718025200591,45.51842168802752],[-122.66717993490057,45.5184284418268],[-122.66718053138196,45.51843508358643],[-122.66718227770686,45.51844286461582],[-122.66718447229108,45.51845055752383],[-122.66718630754923,45.51845834106881],[-122.66718710255826,45.51846723052292],[-122.66718633719364,45.51847627481566],[-122.66718382730073,45.51848529770627],[-122.66717955401491,45.51849394860189],[-122.66717378503417,45.51850242451453],[-122.66716687159973,45.51851073299737],[-122.66715909757927,45.51851887090331],[-122.66715069024653,45.51852682816163],[-122.66712136115081,45.51855201229136],[-122.66711234835357,45.51856120952195],[-122.66710558403949,45.51857019463311],[-122.66709997316221,45.51857971538759],[-122.66709520670132,45.51858963456932],[-122.66709102773864,45.51859984013974],[-122.66707614355268,45.51864189293668],[-122.66707199243774,45.51865239244091],[-122.66705660160198,45.51868588685973],[-122.66705186837875,45.51869710516295],[-122.6670481206074,45.51870747814181],[-122.66704113620607,45.51872839026282],[-122.66703677308874,45.51874003027427],[-122.66703198955983,45.5187516425885],[-122.66702157988232,45.51877480930248],[-122.66699382014342,45.51883261274884],[-122.66698311581848,45.51885577754123],[-122.66697336011448,45.5188790203729],[-122.66696103433047,45.51891216028994],[-122.66695653107597,45.51892299333947],[-122.66695138911926,45.51893360545844],[-122.66694545125524,45.51894395951095],[-122.66693297275765,45.51896454235454],[-122.66692708430095,45.51897575871399],[-122.66692179052896,45.51898721047616],[-122.66691692255846,45.51899882525707],[-122.66689901913483,45.51904570607125],[-122.66689432274252,45.51905722516761],[-122.66688925893931,45.51906851200408],[-122.66688364267213,45.51907945894927],[-122.66687723948077,45.51908993004776],[-122.66687186845371,45.51909737298597],[-122.66685877371181,45.51911435484046],[-122.66685065833153,45.51912381696645],[-122.66684180543439,45.51913229781959],[-122.66683188084713,45.51914032422769],[-122.66682173257938,45.51914756196726],[-122.66680086381702,45.51916171517886],[-122.66679097785732,45.51916907313547],[-122.66678205129833,45.51917693274126],[-122.66677386225621,45.51918624190694],[-122.66676705572129,45.51919624406557],[-122.66676138286029,45.51920677304926],[-122.66675668556965,45.51921770486139],[-122.66675288839096,45.51922894949436],[-122.66675014583438,45.51923949987223],[-122.66674795394511,45.5192502038272],[-122.66674457717794,45.51927190063564],[-122.66673861865267,45.51931570649848],[-122.66673671871584,45.51932664017775],[-122.66673418995831,45.51933885472703],[-122.6667281946021,45.51936318688677],[-122.66671481060268,45.51941164220725],[-122.66670855742998,45.51943583019835],[-122.66670582475487,45.51944792135758],[-122.66670350440653,45.51946001062597],[-122.66669754228798,45.5195027079349],[-122.66669568097871,45.51951315881325],[-122.66669326091734,45.51952344100528],[-122.66668666009662,45.5195448557287],[-122.66668369835112,45.51955638479355],[-122.66667609680722,45.51959163978688],[-122.66667327250391,45.51960218569089],[-122.66666403422958,45.51963358672978],[-122.66665842245399,45.51965501777614],[-122.66665534572411,45.51966544219064],[-122.66665160513929,45.51967553175312],[-122.66664679016937,45.51968515869207],[-122.66664023695937,45.51969484038865],[-122.6666329812668,45.51970429486399],[-122.66662603010316,45.51971398411033],[-122.6666202728005,45.51972406170518],[-122.66661547489856,45.5197346585671],[-122.66661138217414,45.51974564440652],[-122.66660778531973,45.51975691474002],[-122.66660451096052,45.5197683890022],[-122.66659525471984,45.51980345440851],[-122.66658833320058,45.51982707890407],[-122.66657248961391,45.51987426681221],[-122.66656503269873,45.51989761433546],[-122.66656183739126,45.5199091798341],[-122.66655923946347,45.51992063895931],[-122.66655748595201,45.51993195520505],[-122.6665568957589,45.51994308073593],[-122.66655787941411,45.51995395261067],[-122.66656051327455,45.51996410820991],[-122.66656753630345,45.51998442380878],[-122.66657018453688,45.51999487774473],[-122.66657198026914,45.52000561239724],[-122.66657300884012,45.52001654342474],[-122.66657331606397,45.520027599074],[-122.66657290373725,45.52003871199773],[-122.66657182575892,45.5200496184717],[-122.66656704402665,45.52008186078592],[-122.66656584926734,45.52009225994487],[-122.66656536148213,45.52010235257789],[-122.66656595976012,45.5201120253909],[-122.66656810134376,45.52012113424871],[-122.66657234678176,45.5201294959926],[-122.66657894760249,45.52013684438144],[-122.66658743039369,45.52014360426894],[-122.66661813121688,45.52016369887939],[-122.66662858670846,45.52017111461085],[-122.66663836127705,45.52017882050022],[-122.66664705786734,45.52018681717669],[-122.66665420306707,45.52019512226374],[-122.66665921746302,45.52020348084957],[-122.66666222412425,45.52021194202821],[-122.66666310626988,45.52022028991151],[-122.66666239210922,45.52022623407199],[-122.66665764361464,45.52024621598837],[-122.66665614163148,45.52025369465004],[-122.66665453903703,45.5202643776415],[-122.66665339458332,45.52027544520087],[-122.66665257711642,45.52028678906931],[-122.66665015166517,45.52033352530488],[-122.66664909524637,45.52034531856033],[-122.66664752588957,45.52035708915455],[-122.66664540945878,45.52036824481304],[-122.66664273876744,45.52037935137538],[-122.66663959286731,45.52039040443572],[-122.66663600948763,45.52040139581175],[-122.66663199401833,45.520412315433],[-122.66662751411999,45.52042314756427],[-122.66662266860736,45.52043363288913],[-122.66661746197197,45.52044404331242],[-122.66658967708024,45.52049571523715],[-122.66657938598034,45.52051655871744],[-122.66657424851523,45.52052832801704],[-122.66656948834255,45.52054017724895],[-122.66656066778476,45.52056400410441],[-122.66654796650496,45.5205997122689],[-122.66653901658981,45.52062317656081],[-122.66653415400916,45.52063469029897],[-122.66652889167821,45.52064598185424],[-122.66651839486413,45.52066677492635],[-122.66650588133223,45.52069635324072],[-122.66649650651391,45.52071702607773],[-122.66649268957229,45.52072694425332],[-122.66647590455118,45.52077423651737],[-122.66647308473952,45.52078443665631],[-122.66646609315166,45.52081508237922],[-122.66646331376417,45.52082507166022],[-122.66645981482614,45.52083481547172],[-122.6664479453863,45.52086032459978],[-122.66643166342176,45.52090044595545],[-122.66642291113594,45.52092081723315],[-122.66641738649696,45.52093226482307],[-122.66639997894337,45.52096642568126],[-122.66639461420452,45.52097786193264],[-122.66638986211665,45.52098938315103],[-122.66638647367139,45.52099912945168],[-122.66637712849749,45.52102849862979],[-122.66637312290965,45.52103892216041],[-122.66635965985849,45.52107008322476],[-122.6663554054373,45.52108056276448],[-122.66635130193306,45.52109196878133],[-122.66634762962019,45.52110347801777],[-122.66634117163161,45.52112670670353],[-122.66633541971883,45.52115010280034],[-122.66631658923387,45.52123230879786],[-122.66631070706539,45.52125569163336],[-122.6663039966502,45.5212788894157],[-122.66630012850459,45.52129037154969],[-122.66629576269231,45.5213017385013],[-122.66629065487162,45.52131332007568],[-122.66627393722418,45.52134760091771],[-122.66626876562307,45.52135901506264],[-122.66626425877531,45.52137048836875],[-122.66626059005569,45.52138211335745],[-122.66625121344075,45.52141680263685],[-122.66624437276985,45.52143809768348],[-122.66624170477346,45.52144961314306],[-122.66623979405684,45.52146131741952],[-122.66623573726501,45.5214968443776],[-122.66623407538177,45.52150859962537],[-122.66623180623736,45.52152019248633],[-122.66622860823495,45.52153153736262],[-122.66621618004298,45.52156272647698],[-122.6662131904497,45.52157311969766],[-122.66621099496717,45.52158373005803],[-122.66620934386366,45.52159448958324],[-122.66620554219338,45.52162709291464],[-122.66620400787089,45.52163789145408],[-122.66620200193286,45.52164856159484],[-122.66619521516088,45.52167590315244],[-122.66619051427702,45.521703213227],[-122.6661886098486,45.52171209776272],[-122.66618596790335,45.52172077459682],[-122.66618243033777,45.52172912162689],[-122.66617443084014,45.5217458150539],[-122.66617049262595,45.52175593634242],[-122.66616722186001,45.5217664107192],[-122.66616445145564,45.52177715006886],[-122.66616204666565,45.52178808389921],[-122.6661539627264,45.52183273622525],[-122.66614957086297,45.52185505010182],[-122.66614694329077,45.52186606762626],[-122.66614385937439,45.52187692780031],[-122.66614015651879,45.52188757209061],[-122.66613623896585,45.52189690157775],[-122.6661279493124,45.52191516717721],[-122.66612431472878,45.52192423797954],[-122.66611910719507,45.52194057070697],[-122.6661085600753,45.5219705322807],[-122.6661053683611,45.52198070954466],[-122.66610287284125,45.52199100827934],[-122.66610131336593,45.52200145617793],[-122.66610046086471,45.52201200729474],[-122.66609900110235,45.52204390924272],[-122.66609788719141,45.52205452266126],[-122.66609583813425,45.52206624254664],[-122.66609100519803,45.52208972888501],[-122.66608929211077,45.52210111833313],[-122.6660880299778,45.52211259211729],[-122.66608409356023,45.52215874339199],[-122.66608259427201,45.52217021149985],[-122.66607702831054,45.52220233301491],[-122.66607581378825,45.52221303325928],[-122.66607541134302,45.52222320229732],[-122.66607627821728,45.52225394290358],[-122.66607617760594,45.52227745119217],[-122.66607489211678,45.52230102115096],[-122.66607244061437,45.52232450550315],[-122.66607068261136,45.52233616302293],[-122.66606846556921,45.52234772927905],[-122.66606567540197,45.52235917028475],[-122.66605731747656,45.5223872994897],[-122.66605478871904,45.52239877321546],[-122.66605294357944,45.52241038162769],[-122.66605161586946,45.52242209136877],[-122.66605067712997,45.52243387789255],[-122.66604958388028,45.52245760576181],[-122.66604847895248,45.5225411000889],[-122.66604764531589,45.5225647347639],[-122.66604685479847,45.52257642307378],[-122.66604566902225,45.52258797732222],[-122.66604393257884,45.52259934841734],[-122.66604144514379,45.52261047027386],[-122.66603794440915,45.52262125981322],[-122.66602638488807,45.52264707212392],[-122.66600986756494,45.52268739046126],[-122.66600531310645,45.52269754242025],[-122.66600028074424,45.52270759241722],[-122.66599392067202,45.5227186166979],[-122.665986837456,45.52272940495774],[-122.66597909577487,45.52273991943377],[-122.66597069383205,45.52275009341164],[-122.66596156155885,45.52275982241394],[-122.66595155522489,45.52276895664779],[-122.6659404466581,45.52277729093467],[-122.66592917819118,45.52278403099406],[-122.66591697906959,45.52279001201724],[-122.66590404063457,45.5227953151948],[-122.66589049673502,45.52279997199602],[-122.6658764345076,45.52280396920407],[-122.66586089994138,45.52280751640338],[-122.66584503120188,45.52281051918676],[-122.66579708901347,45.52281854192327],[-122.66578152659949,45.52282158624529],[-122.66576647083532,45.52282518819978],[-122.66575158305615,45.52282973548601],[-122.66573758820233,45.52283508460471],[-122.66572465875045,45.52284120345715],[-122.66568695645795,45.52286310909435],[-122.66567603833401,45.52286966410524],[-122.66566545168837,45.52287649856076],[-122.6656554857786,45.52288374777794],[-122.66564683590074,45.52289104105093],[-122.66562230830021,45.52291372080764],[-122.66561345719973,45.52292082652108],[-122.66560292624968,45.52292797503161],[-122.66558038482422,45.52294168609623],[-122.66556946310699,45.52294872383308],[-122.66554818291625,45.52296363763912],[-122.6655378127646,45.52297135195731],[-122.66551769948538,45.52298697758662],[-122.66550144364312,45.52300034755967],[-122.66549879983013,45.52300252202149],[-122.66549005652747,45.52301015010931],[-122.66548399020435,45.52301580383079],[-122.66547859582107,45.52302164888324],[-122.6654723543265,45.52303084475378],[-122.6654676300864,45.52304078077348],[-122.66546397394319,45.52305124421159],[-122.66546101848591,45.52306206135908],[-122.66545353911286,45.52309528629607],[-122.66545071121632,45.52310623749284],[-122.66544733355086,45.52311694385904],[-122.6654413346014,45.52313310190232],[-122.6654381716333,45.52314406504995],[-122.66543579379272,45.52315536176597],[-122.66543399895878,45.52316690771365],[-122.66543157171088,45.52319049618112],[-122.66542945348345,45.52322652995508],[-122.66542202980597,45.52342042579051],[-122.66541364313444,45.52361426494339],[-122.66541296131317,45.52363842847035],[-122.66541293705863,45.52366246107736],[-122.66541336735166,45.52367438706206],[-122.66541425488717,45.52368621800895],[-122.66541577034504,45.52369791804391],[-122.66541813740581,45.52370943870532],[-122.66542164442869,45.5237207183148],[-122.66542636956707,45.52373149694186],[-122.66544338455689,45.52376318518719],[-122.66544817078072,45.52377389835144],[-122.66545179997446,45.52378528179432],[-122.66545414996725,45.52379685152876],[-122.66545538335413,45.52380852007215],[-122.66545557020373,45.52382020686486],[-122.66545468985471,45.52383183197677],[-122.66545263091611,45.52384331484851],[-122.66544626994556,45.52386467443122],[-122.66544344294738,45.52387497596794],[-122.66544097976686,45.52388544806206],[-122.66543269370669,45.52392821187269],[-122.66542805750149,45.5239496500944],[-122.66542520894374,45.52396027385266],[-122.66542205945036,45.52397026005776],[-122.66541168211219,45.52399980202014],[-122.66540857034805,45.52400955472233],[-122.66540597691183,45.52401927658379],[-122.66540126973975,45.52404337574119],[-122.66539460154539,45.52407087599449],[-122.66539267286247,45.52408260112419],[-122.66539145744187,45.52409451002688],[-122.66539075855259,45.52410655487046],[-122.66539042348097,45.5241186978929],[-122.66539059146594,45.52418007568915],[-122.66539001564585,45.52420466883058],[-122.66538924129806,45.52421692952333],[-122.66538808336968,45.52422880063562],[-122.66538388554237,45.52426418549744],[-122.66538290548037,45.52427589107646],[-122.66538250483177,45.52428753749269],[-122.66538295668434,45.5242991083826],[-122.6653842825977,45.52430972766933],[-122.6653880734882,45.52433090141223],[-122.66538964464164,45.52434154335011],[-122.66539051780408,45.52435250689156],[-122.66539074058629,45.52436354784277],[-122.66539049085463,45.52437464732281],[-122.66538687693223,45.52443050028069],[-122.66538652209772,45.52444165953704],[-122.66538659665788,45.52445278795237],[-122.66538726859773,45.52446386979255],[-122.66538873734319,45.52447553756821],[-122.66539267735402,45.52449875793877],[-122.66539434732215,45.52451035270103],[-122.66539526001048,45.52452196319501],[-122.66539507765246,45.52453381473261],[-122.66539397182635,45.52454569081292],[-122.66539223178967,45.52455757947795],[-122.66538347770721,45.524605003835],[-122.66538189667232,45.5246167426993],[-122.66538103878119,45.52462838401007],[-122.66538106842562,45.52463809443603],[-122.66538181672225,45.52464766514201],[-122.6653832998408,45.52465704389103],[-122.66538557078184,45.52466617215261],[-122.66539097235162,45.52468207360084],[-122.66539380294309,45.52469215408203],[-122.66539600471386,45.52470255238879],[-122.66539769264827,45.52471319551511],[-122.66539895208629,45.52472402430087],[-122.66539983872349,45.52473499091464],[-122.6654005915117,45.52475720105434],[-122.66540044059471,45.52476839234328],[-122.66539986118136,45.52478048424461],[-122.66539776181854,45.52480473349299],[-122.66539338253155,45.52484117468745],[-122.66538215628542,45.524926233839],[-122.66537949906882,45.52495054533106],[-122.66537844354835,45.52496270768139],[-122.66537766201408,45.52497487695204],[-122.66537704307483,45.52499911667629],[-122.66537750660551,45.52503551557782],[-122.6653786986699,45.52507191760265],[-122.66538032821383,45.52510822897658],[-122.66538182211215,45.52513227165476],[-122.66538400411999,45.52515600782624],[-122.66538553215427,45.52516767797577],[-122.66538749497316,45.52517915050517],[-122.66539003720543,45.52519035618533],[-122.66539334480228,45.52520120942414],[-122.66539942909171,45.52521718057961],[-122.66540269267114,45.52522793752184],[-122.6654051819028,45.52523903494323],[-122.66540706836491,45.52525038158704],[-122.66540848321145,45.52526190255986],[-122.66540951717235,45.52527353177938],[-122.66541023133301,45.5252852107155],[-122.66541078289859,45.52530849179919],[-122.66541058976081,45.52531997248143],[-122.66541001483901,45.52533124925058],[-122.66540896470845,45.52534223210919],[-122.66540731091001,45.52535280903228],[-122.66540488366213,45.52536284093305],[-122.66540068942805,45.52537588366002],[-122.66539850292867,45.52538562164856],[-122.66539723899906,45.52539582598628],[-122.66539676648522,45.52540635506848],[-122.665397008132,45.52541708302433],[-122.66539793699003,45.52542790034627],[-122.66539957192386,45.5254387006736],[-122.66540197851049,45.5254493814218],[-122.66540799632456,45.52547021551467],[-122.66541002472049,45.52548073262524],[-122.66541106137633,45.52549140833066],[-122.66541112695336,45.52550215515083],[-122.66541018372229,45.52551289064066],[-122.66540813197021,45.52552353298432],[-122.6654053409046,45.52553290844055],[-122.66539872840578,45.52555153410737],[-122.6653958843396,45.52556093284497],[-122.66539381192622,45.52557110820075],[-122.66539272316811,45.52558139557922],[-122.66539253811517,45.5255917282691],[-122.66539323700445,45.52560204270587],[-122.66539485846354,45.52561227406647],[-122.66539749951048,45.52562235312224],[-122.6654014143685,45.52563285006518],[-122.66540970581856,45.52565310005273],[-122.66542099315012,45.52568298538599],[-122.66542507689138,45.52569296247437],[-122.66542958733244,45.52570285334004],[-122.66543472210259,45.52571259441868],[-122.66544138221211,45.52572327133881],[-122.66544878433004,45.52573375315851],[-122.66548046072359,45.52577494722593],[-122.66548766072059,45.52578531952923],[-122.66549401809786,45.52579582147653],[-122.66549917442759,45.52580651159719],[-122.66550284494384,45.52581732192139],[-122.66550545365143,45.52582825622522],[-122.66550937659429,45.52584999643939],[-122.66551157656842,45.52586052858333],[-122.66551454370381,45.52587061829358],[-122.66551879093846,45.52588006103222],[-122.66552323490417,45.52588685799053],[-122.66552836608108,45.52589328552084],[-122.66553515195471,45.52590081818511],[-122.66554253790297,45.52590773345833],[-122.66555076197942,45.52591369463963],[-122.66555925555045,45.52591819195776],[-122.66557696314131,45.52592615949789],[-122.6655851090643,45.52593081855734],[-122.66559253094519,45.52593687602634],[-122.6655991964446,45.52594395555473],[-122.66560564006012,45.52595173743376],[-122.66561803591274,45.5259675126492],[-122.66562402587905,45.52597590687952],[-122.66562953524669,45.52598465039616],[-122.6656349493929,45.52599497294239],[-122.66563963680204,45.52600565232632],[-122.66564380229003,45.52601657652397],[-122.66564761114682,45.52602765994416],[-122.66566169313721,45.52607228247281],[-122.665665404976,45.5260832349781],[-122.66567353562762,45.5261045433627],[-122.66567725016132,45.52611508993394],[-122.66567960195073,45.5261243205422],[-122.66568132761438,45.52613369463964],[-122.66568558113727,45.52616232102778],[-122.66568795268961,45.52617383237366],[-122.66569661155064,45.52620856967545],[-122.66569918791886,45.52622025659892],[-122.66570118307713,45.52623156654285],[-122.66570279016317,45.52624292997871],[-122.66570791684849,45.52628848250627],[-122.66570947362887,45.52629978928976],[-122.66571140859999,45.52631101362702],[-122.66571389154345,45.52632212153352],[-122.66571713086836,45.52633307336086],[-122.66572061633165,45.5263423328831],[-122.66572843257295,45.52636074619343],[-122.66573717857055,45.52638351014191],[-122.66575705110128,45.52644088474177],[-122.66576130911569,45.52645208513587],[-122.66576584381126,45.52646306022352],[-122.66577383342741,45.5264812790279],[-122.6657771185664,45.52649028553056],[-122.66577929518434,45.52649933986176],[-122.66578000305677,45.52650865662664],[-122.66577951616988,45.52651809737017],[-122.66577828278301,45.52652764824674],[-122.66577518449358,45.52654706277729],[-122.66577409124389,45.52655693083651],[-122.66577372832451,45.52656775423269],[-122.66577411280348,45.5265786858733],[-122.66577505244123,45.52658969743792],[-122.6657763837445,45.52660076815842],[-122.66578299803993,45.52664538582704],[-122.66578435719097,45.52665658618047],[-122.66578532557483,45.52666779785973],[-122.66578572712177,45.52667902023556],[-122.66578539923668,45.52669070643194],[-122.66578443534439,45.5267024008073],[-122.66578121039251,45.52672580843086],[-122.66577696495447,45.52674923177818],[-122.66576767008624,45.52679603313121],[-122.66576367887143,45.52681929722693],[-122.66576218587143,45.52683084179325],[-122.66576123725048,45.52684229006861],[-122.66576105668912,45.52685360114612],[-122.66576193613979,45.52686471964425],[-122.66576425648817,45.52687557318937],[-122.66576854684196,45.52688651672753],[-122.66577449368914,45.52689707510957],[-122.66578179250084,45.52690722064482],[-122.66578846698337,45.52691509930842],[-122.665802404345,45.52693070496223],[-122.66580989180289,45.52693992284989],[-122.66583143250512,45.52696796480409],[-122.66583924874641,45.52697686298312],[-122.66584793096361,45.52698519790531],[-122.66585682159,45.52699212689054],[-122.66586651800515,45.52699845234223],[-122.66587681898652,45.52700421453795],[-122.66588755654911,45.52700942291789],[-122.66591383676274,45.52702056844668],[-122.66594043677662,45.52703307774247],[-122.66596714907993,45.52704431829612],[-122.66597973088379,45.52705029068495],[-122.66599211326167,45.52705683954396],[-122.66600429711185,45.52706383334187],[-122.66601626985798,45.52707117201437],[-122.66602800095727,45.52707878004107],[-122.66603944369734,45.52708660078187],[-122.66605052980627,45.52709459836455],[-122.66606116406263,45.52710274824495],[-122.66608377555661,45.52712094166878],[-122.66610676344474,45.52713789089351],[-122.66613040261142,45.52715682062645],[-122.6661407260507,45.52716450290299],[-122.666166592141,45.52718304747491],[-122.66617369691656,45.52718881091035],[-122.66618111969576,45.5271958820999],[-122.66620120512719,45.52721821776395],[-122.66620829373309,45.52722538649636],[-122.66621496372406,45.52723127390605],[-122.66624246115494,45.52725367500666],[-122.66625283130658,45.52726124461945],[-122.66626406563752,45.52726847690898],[-122.66627608868927,45.52727528313948],[-122.66628888249556,45.52728154310874],[-122.6663029025022,45.52728735813937],[-122.66631748934576,45.52729266970364],[-122.66636220658231,45.527307629558],[-122.66637667215333,45.52731292790435],[-122.66639050710701,45.5273187284571],[-122.66640340781281,45.52732528357813],[-122.66641426934292,45.52733214644169],[-122.66642445803487,45.52733960654014],[-122.66644434134535,45.52735528696667],[-122.66645445008726,45.52736291761089],[-122.66648592974977,45.52738553955432],[-122.6665065496788,45.52740096320096],[-122.66651631706087,45.5274089808775],[-122.66652577721915,45.52741745985242],[-122.66654406422336,45.52743475260232],[-122.66655347407598,45.52744324856529],[-122.6665628740471,45.527451081842],[-122.66659226871984,45.52747393534346],[-122.66660185733718,45.52748167547505],[-122.66663988931138,45.5275150746435],[-122.66664980311884,45.52752300482697],[-122.66666114524762,45.52753114520539],[-122.66669576811529,45.52755432026164],[-122.66671593888668,45.52756902705609],[-122.66672645366708,45.52757586031142],[-122.66673856116049,45.52758232918445],[-122.66675139449262,45.52758825242858],[-122.66677756062025,45.52759987109788],[-122.66679008133865,45.52760626004341],[-122.66679865306307,45.52761135697642],[-122.66682583518528,45.5276292041051],[-122.66684752590615,45.52764294171444],[-122.66689816483701,45.52767427029822],[-122.66690606731657,45.5276787649583],[-122.66691627756809,45.52768370958744],[-122.66694897534612,45.52769721684948],[-122.6669597299767,45.52770213315726],[-122.66697208091352,45.5277087650116],[-122.66700814647557,45.52773087894882],[-122.66702107502914,45.52773820620634],[-122.66704749537995,45.52775263604884],[-122.6670801060214,45.5277713522331],[-122.66709118135051,45.52777729433711],[-122.66712861774167,45.52779565809026],[-122.66714099562797,45.52780259138098],[-122.66717655723514,45.52782464549528],[-122.66718846081098,45.52783166688808],[-122.66720068059377,45.5278381162226],[-122.66721341241629,45.52784370086235],[-122.66722650715819,45.52784815019739],[-122.66725347907459,45.52785553722563],[-122.66726671305538,45.52785939562277],[-122.66727933708005,45.52786398277897],[-122.66729064327622,45.52786938617036],[-122.66730141317814,45.5278755460107],[-122.66732268348746,45.52788880212578],[-122.66733384505484,45.52789527285079],[-122.66734506411444,45.52790098838457],[-122.66735681946827,45.52790637037531],[-122.66736893684312,45.52791154028289],[-122.66740596360249,45.52792688323169],[-122.66744617758449,45.52794498324884],[-122.66745958583843,45.5279507044415],[-122.66748806692451,45.52796226891402],[-122.66750092720613,45.52796847027961],[-122.66751330239748,45.52797530977968],[-122.66752521495646,45.5279826709889],[-122.66753664871342,45.52799047335363],[-122.6675475560576,45.52799866463963],[-122.66755784805581,45.52800721967393],[-122.66756742769,45.52801604972153],[-122.66758555209917,45.52803388350602],[-122.66759463586331,45.52804243287098],[-122.66760409602158,45.52805039885157],[-122.66761423440785,45.52805747496734],[-122.66762539507695,45.52806329369372],[-122.66763870182128,45.52806781286633],[-122.66765314044282,45.52807097521712],[-122.66766829502166,45.52807326721331],[-122.66769932462822,45.5280768776421],[-122.6677145286144,45.52807895692673],[-122.66772905616916,45.52808174545876],[-122.66774250125403,45.52808569698027],[-122.66775072173718,45.52808917084509],[-122.66775863499652,45.52809317774647],[-122.66776800833038,45.5280983978115],[-122.66737407430824,45.52814164379864],[-122.66693977120772,45.52791045029148],[-122.66651429944476,45.52791058433774],[-122.66486984528224,45.52660215774103],[-122.66359861776415,45.52658425868061],[-122.66352454268582,45.52586955973],[-122.66285809155967,45.52574252188672],[-122.66242125880332,45.5253926962115],[-122.66189128692167,45.52521061199641],[-122.66100873617248,45.52540486475979],[-122.66023949442163,45.52570483956865],[-122.65957020282258,45.52606723511861],[-122.65883459848754,45.52643104498254],[-122.65835019814025,45.52672891358728],[-122.65757739546764,45.52714142586224],[-122.65673706014691,45.52752330690521],[-122.65547058022506,45.52799068228931],[-122.65434092899235,45.52830972306177],[-122.65356080359766,45.52854378773314],[-122.65356,45.528521],[-122.653558,45.528396],[-122.65356,45.528179],[-122.65355700000001,45.527943],[-122.65356911108563,45.52724207091962],[-122.653581,45.526554],[-122.653587,45.52576],[-122.65358999999999,45.525049],[-122.65359599999999,45.524334],[-122.65359608798828,45.5243214528705]]],"type":"Polygon"} +},{ + "id": 1108713579, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000052, + "geom:area_square_m":446547.995845, + "geom:bbox":"-122.645127892,45.5054980788,-122.635725175,45.5112515225", + "geom:latitude":45.508401, + "geom:longitude":-122.640617, + "iso:country":"US", + "lbl:latitude":45.508375, + "lbl:longitude":-122.640617, + "lbl:max_zoom":18.0, + "mps:latitude":45.508375, + "mps:longitude":-122.640617, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Colonial Heights" + ], + "name:deu_x_preferred":[ + "Colonial Heights" + ], + "name:ita_x_preferred":[ + "Colonial Heights" + ], + "name:nld_x_preferred":[ + "Colonial Heights" + ], + "name:por_x_preferred":[ + "Colonial Heights" + ], + "name:srp_x_preferred":[ + "\u041a\u043e\u043b\u043e\u043d\u0438\u0458\u0430\u043b \u0425\u0430\u0458\u0442\u0441" + ], + "name:swe_x_preferred":[ + "Colonial Heights" + ], + "name:vol_x_preferred":[ + "Colonial Heights" + ], + "reversegeo:latitude":45.508375, + "reversegeo:longitude":-122.640617, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893193, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"2c9010dc5e232ade02acc60ffd23f46d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108713579, + "neighbourhood_id":85893193, + "region_id":85688513 + } + ], + "wof:id":1108713579, + "wof:lastmodified":1566624135, + "wof:name":"Colonial Heights", + "wof:parent_id":85893193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893171 + ], + "wof:tags":[] +}, + "bbox": [ + -122.64512789241158, + 45.50549807877516, + -122.63572517549552, + 45.51125152246471 +], + "geometry": {"coordinates":[[[-122.63671124924048,45.50549807877516],[-122.63679253715425,45.50549823185975],[-122.63775953715427,45.50549923185975],[-122.63877353715428,45.50550023185974],[-122.63973653715425,45.50550123185975],[-122.64054253715427,45.50550023185974],[-122.64135653715427,45.50550423185975],[-122.64166153715428,45.50550423185975],[-122.64270953715427,45.50550823185974],[-122.64371753715426,45.50551223185975],[-122.64473753715424,45.50551523185975],[-122.64509633837709,45.50551747436739],[-122.645098,45.505611],[-122.645101,45.50632],[-122.645105,45.50703],[-122.64510900000001,45.507749],[-122.64511299999999,45.508494],[-122.64511899999999,45.509716],[-122.64511299999999,45.510719],[-122.645126,45.510948],[-122.64512789241158,45.5112482626373],[-122.6361196598062,45.51125152246471],[-122.63613376791427,45.50845644235565],[-122.63573768723079,45.50845591857593],[-122.63572517549552,45.50677429676396],[-122.63672215274728,45.50677496221072],[-122.63671758661071,45.5061868779648],[-122.63671129570876,45.50550108313316],[-122.63671124924048,45.50549807877516]]],"type":"Polygon"} +},{ + "id": 1108713581, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000063, + "geom:area_square_m":548003.875142, + "geom:bbox":"-122.65372,45.504823,-122.645084,45.5122259982", + "geom:latitude":45.508515, + "geom:longitude":-122.649408, + "iso:country":"US", + "lbl:latitude":45.508522, + "lbl:longitude":-122.649407, + "lbl:max_zoom":18.0, + "mps:latitude":45.508522, + "mps:longitude":-122.649407, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Ladd's Addition" + ], + "reversegeo:latitude":45.508522, + "reversegeo:longitude":-122.649407, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893193, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"324d0da3456460af8df8b834394a4d91", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108713581, + "neighbourhood_id":85893193, + "region_id":85688513 + } + ], + "wof:id":1108713581, + "wof:lastmodified":1566624136, + "wof:name":"Ladd's Addition", + "wof:parent_id":85893193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85828991 + ], + "wof:tags":[] +}, + "bbox": [ + -122.65372, + 45.504823, + -122.645084, + 45.51222599816625 +], + "geometry": {"coordinates":[[[-122.65367500000001,45.51222599816625],[-122.64537820024744,45.51218546926323],[-122.64523069238619,45.51210282765241],[-122.64513100000001,45.511936],[-122.645129,45.511424],[-122.645126,45.510948],[-122.64511299999999,45.510719],[-122.64511899999999,45.509716],[-122.64511299999999,45.508494],[-122.64510900000001,45.507749],[-122.645105,45.50703],[-122.645101,45.50632],[-122.645098,45.505611],[-122.645084,45.504823],[-122.65372000000001,45.504854],[-122.653718,45.505605],[-122.653712,45.505794],[-122.653712,45.506328],[-122.653711,45.506507],[-122.65370799999999,45.50722],[-122.653704,45.507933],[-122.653699,45.508596],[-122.653695,45.50936],[-122.65369,45.510073],[-122.653685,45.510786],[-122.65368100000001,45.511496],[-122.65367500000001,45.51221],[-122.65367500000001,45.51222599816625]]],"type":"Polygon"} +},{ + "id": 1108714043, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":155423.417056, + "geom:bbox":"-122.67782,45.50007,-122.673667873,45.5054528272", + "geom:latitude":45.502815, + "geom:longitude":-122.676033, + "iso:country":"US", + "lbl:latitude":45.502852, + "lbl:longitude":-122.676075, + "lbl:max_zoom":18.0, + "mps:latitude":45.502852, + "mps:longitude":-122.676075, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Corbett" + ], + "name:deu_x_preferred":[ + "Corbett" + ], + "name:epo_x_preferred":[ + "Corbett" + ], + "name:fra_x_preferred":[ + "Corbett" + ], + "name:ita_x_preferred":[ + "Corbett" + ], + "name:lav_x_preferred":[ + "Korbets" + ], + "name:por_x_preferred":[ + "Corbett" + ], + "name:rus_x_preferred":[ + "\u041a\u043e\u0440\u0431\u0435\u0442\u0442" + ], + "name:ukr_x_preferred":[ + "\u041a\u043e\u0440\u0431\u0435\u0442\u0442" + ], + "reversegeo:latitude":45.502852, + "reversegeo:longitude":-122.676075, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849969, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b37c7d9b8902177ad16bbc90b61a78a1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108714043, + "neighbourhood_id":85849969, + "region_id":85688513 + } + ], + "wof:id":1108714043, + "wof:lastmodified":1566624149, + "wof:name":"Corbett", + "wof:parent_id":85849969, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893175 + ], + "wof:tags":[] +}, + "bbox": [ + -122.67782, + 45.50007, + -122.67366787322415, + 45.50545282719034 +], + "geometry": {"coordinates":[[[-122.67366787322415,45.50535404506046],[-122.673818,45.505197],[-122.673875,45.505138],[-122.67394299999999,45.505024],[-122.67399399999999,45.504968],[-122.67429,45.504464],[-122.67446200000001,45.50404],[-122.674511,45.503831],[-122.674548,45.50356],[-122.674539,45.503019],[-122.674516,45.502752],[-122.674387,45.502196],[-122.674238,45.501763],[-122.674162,45.501611],[-122.673905,45.500934],[-122.67376400000001,45.500506],[-122.67401700000001,45.500484],[-122.674228,45.500482],[-122.67433,45.500478],[-122.67524400000001,45.500389],[-122.676247,45.500295],[-122.67663,45.500273],[-122.676783,45.500261],[-122.676947,45.500243],[-122.677537,45.500134],[-122.677683,45.5001],[-122.677787,45.50007],[-122.677812,45.500874],[-122.677819,45.501542],[-122.67782,45.502151],[-122.677795,45.50298],[-122.677787,45.503713],[-122.677705,45.504706],[-122.677694,45.505257],[-122.67766899999999,45.505342],[-122.67766,45.505371],[-122.67765054258606,45.50545282719034],[-122.67522349397207,45.50535922374564],[-122.67366787322415,45.50535404506046]]],"type":"Polygon"} +},{ + "id": 1108714045, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":243121.202774, + "geom:bbox":"-122.682029,45.4955718007,-122.677650543,45.506285174", + "geom:latitude":45.502129, + "geom:longitude":-122.679575, + "iso:country":"US", + "lbl:latitude":45.50302, + "lbl:longitude":-122.679835, + "lbl:max_zoom":18.0, + "mps:latitude":45.50302, + "mps:longitude":-122.679835, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":45.50302, + "reversegeo:longitude":-122.679835, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85849969, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"164887355c7c2af9a9c25e1abdfdf129", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108714045, + "neighbourhood_id":85849969, + "region_id":85688513 + } + ], + "wof:id":1108714045, + "wof:lastmodified":1566624149, + "wof:name":"Lair Hill", + "wof:parent_id":85849969, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781247 + ], + "wof:tags":[] +}, + "bbox": [ + -122.682029, + 45.49557180070469, + -122.67765054258606, + 45.50628517400177 +], + "geometry": {"coordinates":[[[-122.67935232798598,45.49800264230686],[-122.679738,45.49872],[-122.68017,45.499433],[-122.68056,45.500202],[-122.680831,45.500714],[-122.68091699999999,45.50086],[-122.68133,45.501567],[-122.681727,45.502286],[-122.681926,45.502682],[-122.682006,45.502867],[-122.682029,45.503012],[-122.68202599999999,45.50353],[-122.682023,45.504043],[-122.682017,45.505125],[-122.682014,45.505867],[-122.682001,45.506186],[-122.6819951167965,45.50628517400177],[-122.68199376838338,45.50628473734903],[-122.68086130542383,45.5059060079517],[-122.6800102091843,45.50569049263827],[-122.679120381183,45.50553315246555],[-122.67786509786285,45.50546110189603],[-122.67765054258606,45.50545282719034],[-122.67766,45.505371],[-122.67766899999999,45.505342],[-122.677694,45.505257],[-122.677705,45.504706],[-122.677787,45.503713],[-122.677795,45.50298],[-122.67782,45.502151],[-122.677819,45.501542],[-122.677812,45.500874],[-122.677787,45.50007],[-122.67778800000001,45.499969],[-122.67778800000001,45.499395],[-122.677831,45.498682],[-122.677874,45.497977],[-122.67791699999999,45.497264],[-122.67795099999999,45.496704],[-122.67794499999999,45.49638],[-122.677954,45.495996],[-122.67794000000001,45.4958],[-122.67784168488858,45.49557180070469],[-122.67850915578556,45.49651543853524],[-122.67935232798598,45.49800264230686]]],"type":"Polygon"} +},{ + "id": 1108714047, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000043, + "geom:area_square_m":371241.163005, + "geom:bbox":"-122.673764,45.4931007272,-122.667382758,45.5009815371", + "geom:latitude":45.497105, + "geom:longitude":-122.6707, + "iso:country":"US", + "lbl:latitude":45.497073, + "lbl:longitude":-122.670659, + "lbl:max_zoom":18.0, + "mps:latitude":45.497073, + "mps:longitude":-122.670659, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "South Waterfront" + ], + "name:war_x_preferred":[ + "Johns Landing" + ], + "reversegeo:latitude":45.497073, + "reversegeo:longitude":-122.670659, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85849969, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7568812" + }, + "wof:country":"US", + "wof:geomhash":"a958ab49c14705f63b0a9489db414298", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108714047, + "neighbourhood_id":85849969, + "region_id":85688513 + } + ], + "wof:id":1108714047, + "wof:lastmodified":1566624148, + "wof:name":"South Waterfront", + "wof:parent_id":85849969, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781249 + ], + "wof:tags":[] +}, + "bbox": [ + -122.673764, + 45.49310072718643, + -122.66738275832208, + 45.50098153705682 +], + "geometry": {"coordinates":[[[-122.66898196384322,45.49310072718643],[-122.670438,45.493141],[-122.67366,45.493221],[-122.673637,45.493625],[-122.67355999999999,45.494848],[-122.673513,45.497856],[-122.67357,45.49916],[-122.673586,45.499529],[-122.67376400000001,45.500506],[-122.67348200000001,45.500526],[-122.67327400000001,45.500545],[-122.672973,45.500565],[-122.672787,45.500581],[-122.672506,45.500606],[-122.67164200000001,45.500671],[-122.67148400000001,45.500683],[-122.671389,45.50069],[-122.66831000000001,45.500922],[-122.66757346899064,45.50098153705682],[-122.66757070923572,45.50096106416275],[-122.66756718334821,45.50092446142894],[-122.66753873100824,45.5005695552171],[-122.66753637742218,45.50053284204326],[-122.66753536412254,45.50050840477838],[-122.66753513954373,45.50049621321612],[-122.66753521230724,45.50045138151415],[-122.66753482513336,45.50044035035239],[-122.6675339681406,45.50042944070763],[-122.66753244100461,45.50041869161711],[-122.66753000028199,45.50040815093302],[-122.66751883601962,45.50037606986632],[-122.66751252625309,45.5003536158791],[-122.66750711570012,45.50033067832419],[-122.66749213719108,45.50026091674405],[-122.66748632239624,45.50023773989012],[-122.66748298066339,45.50022622890469],[-122.66746969547866,45.50018597821525],[-122.6674667957169,45.50017587004721],[-122.66746400015974,45.50016397056392],[-122.66746174359176,45.50015199615145],[-122.66745988767236,45.50013996695813],[-122.66745696994434,45.5001157964885],[-122.6674536246182,45.50007939091104],[-122.66744562332399,45.49998205782082],[-122.66744316463505,45.49995772672572],[-122.66744012024454,45.49993343528729],[-122.66743604099484,45.49990923639525],[-122.6674333990496,45.49989720211296],[-122.66742367478665,45.49986190392929],[-122.66742067351528,45.49985013912241],[-122.66741830735282,45.49983833842364],[-122.66741693382876,45.49982745447745],[-122.66741627895689,45.49981655478815],[-122.66741626099061,45.49980567461557],[-122.66741684938711,45.49979485425663],[-122.66741807019758,45.49978414534191],[-122.66742000606702,45.49977361272438],[-122.66742280521746,45.49976333888696],[-122.6674266877361,45.49975343275761],[-122.66743195905018,45.49974403348696],[-122.66743932164225,45.49973479729166],[-122.667448293117,45.49972628832973],[-122.6674586075731,45.49971853052777],[-122.66747010960201,45.49971161266549],[-122.667482751593,45.49970569152377],[-122.66749529297266,45.49970126325988],[-122.66750856558099,45.49969759937967],[-122.66752235831386,45.49969448328683],[-122.66753650588127,45.49969173931161],[-122.6675964863928,45.49968154290515],[-122.6676131375649,45.49967887637516],[-122.6676298938399,45.49967672237291],[-122.66764516160646,45.49967544105321],[-122.66766055783212,45.49967465211287],[-122.66770712829309,45.49967331475509],[-122.66772267902896,45.49967263474262],[-122.6677395143557,45.49967149761065],[-122.66775632722455,45.49967003180596],[-122.66780670923725,45.49966497074981],[-122.66782351581793,45.49966349109285],[-122.66784034575477,45.49966235522],[-122.66785770479932,45.49966168968915],[-122.66787506923374,45.49966154927916],[-122.66789240582042,45.49966194847175],[-122.66790967683008,45.49966294204566],[-122.66792519881987,45.49966438014635],[-122.66798678462081,45.49967178283809],[-122.66800210628631,45.49967308619533],[-122.66801740369726,45.49967373661463],[-122.66803110390369,45.49967359494536],[-122.66804474302462,45.49967281293109],[-122.66805828063598,45.49967146423966],[-122.6680716673303,45.49966959168678],[-122.6680848438189,45.4996672097541],[-122.6681287462835,45.49965735901622],[-122.6681703957733,45.49964879778231],[-122.66818376360305,45.49964566342717],[-122.66819654573122,45.49964212799023],[-122.66820848074808,45.49963799817142],[-122.6682178807192,45.49963380286961],[-122.66822623774632,45.49962899807436],[-122.66823491816689,45.49962231442783],[-122.66824214421504,45.49961511510381],[-122.66824826084382,45.49960779614695],[-122.66825208317536,45.49960254682225],[-122.66825507007367,45.49959719675438],[-122.66825740120184,45.49958866825269],[-122.66825731765852,45.49957981548403],[-122.66825579501412,45.4995727156381],[-122.66825187027463,45.49955823008587],[-122.66825092255201,45.49954980609893],[-122.66825132589557,45.49954124862654],[-122.66825318181495,45.49953279063639],[-122.66825689275539,45.49952362681537],[-122.66826122263502,45.49951452406823],[-122.66826479253999,45.49950512286878],[-122.66826632416756,45.49949702754765],[-122.66826663588294,45.49948862370015],[-122.66826591094252,45.49948004355134],[-122.66826427870365,45.49947141051111],[-122.66826181462483,45.49946284987858],[-122.66824763561637,45.49942746327247],[-122.66824394803213,45.49941996169441],[-122.66823934596293,45.49941309353737],[-122.6682333074876,45.49940711254804],[-122.66822450220118,45.49940175427617],[-122.66821382392737,45.4993974626212],[-122.66820176763798,45.49939392402045],[-122.66818872499834,45.49939087780132],[-122.66816088890268,45.49938541941449],[-122.66813503628708,45.49938069834072],[-122.66812180140801,45.49937871684967],[-122.6681057485139,45.49937697273449],[-122.66808943151507,45.49937575059456],[-122.6680231421353,45.49937238955221],[-122.66800659606608,45.4993711113738],[-122.66799097885486,45.49936947303873],[-122.66797542811898,45.4993675047698],[-122.66791341831323,45.49935864629952],[-122.6678978415262,45.49935673280934],[-122.66788110591247,45.49935503906506],[-122.66784744334385,45.49935244744734],[-122.66779677566684,45.4993492973346],[-122.66776309782688,45.49934685431277],[-122.66774635502658,45.4993452978308],[-122.66769998578826,45.49934001259187],[-122.66768448266306,45.49933852851888],[-122.66766794198375,45.4993373945284],[-122.66765134201563,45.49933661125008],[-122.66760179363949,45.4993347770944],[-122.66758563564247,45.49933378477396],[-122.66756985942945,45.49933226921853],[-122.66755624546133,45.49933029024434],[-122.66754322707622,45.49932761991989],[-122.66753099920858,45.49932414364959],[-122.66751981248835,45.49931969520703],[-122.66750894107676,45.49931344031214],[-122.66749988246546,45.49930588079158],[-122.66749289357254,45.4992973686166],[-122.66748735725544,45.49928799319638],[-122.66748284861104,45.49927799379582],[-122.66747901999129,45.49926755741939],[-122.66746891394436,45.4992349197253],[-122.66746523713987,45.49922390721459],[-122.66746107255024,45.4992128884053],[-122.66745649024398,45.49920192059523],[-122.66744644797741,45.49918011845374],[-122.66741429996831,45.49911522325232],[-122.66740936911572,45.49910436750046],[-122.66740481286061,45.49909345696717],[-122.66740077583174,45.49908246709612],[-122.6673973415724,45.49907124299394],[-122.66739445977697,45.4990599345167],[-122.66739200378296,45.49904856370201],[-122.66738988286059,45.49903714692067],[-122.66738643602486,45.49901422331138],[-122.6673839710477,45.49899123043138],[-122.66738317424206,45.4989797179318],[-122.66738275832208,45.4989681978741],[-122.66738278796647,45.49895640706485],[-122.66738386324988,45.49893281095711],[-122.66738679355434,45.49889739757256],[-122.66739399444965,45.49882658584828],[-122.66739817071741,45.49879133421726],[-122.667401725351,45.49876805286596],[-122.66740396215604,45.49875653969109],[-122.66740667327157,45.49874515685178],[-122.6674100311741,45.49873395031256],[-122.66741425864583,45.4987229798906],[-122.66741938892443,45.49871242818497],[-122.66744226901471,45.49866930708753],[-122.66744831826982,45.49865850099225],[-122.66745476458031,45.49864786804939],[-122.66746821595336,45.49862770719838],[-122.66747450955026,45.49861757419413],[-122.66747972516882,45.49860774845875],[-122.66749320977952,45.4985778833759],[-122.66749796276568,45.49856813948858],[-122.66750334906415,45.49855868775882],[-122.66750886292336,45.4985505394107],[-122.66752049610626,45.49853453046277],[-122.66753394208945,45.49851402074276],[-122.66754778153472,45.49849465950487],[-122.66755452428924,45.49848479156118],[-122.66756006419959,45.49847566408958],[-122.66756520885124,45.49846637038762],[-122.6675807056882,45.49843725263025],[-122.6675859428663,45.49842678587454],[-122.66759003738738,45.49841699284793],[-122.66759357585128,45.49840701658996],[-122.66760292641506,45.49837654441256],[-122.6676062600631,45.49836636539825],[-122.66761003029234,45.49835624934768],[-122.66761509948547,45.49834471216169],[-122.66762079121112,45.49833328138526],[-122.66764586139408,45.49828796123646],[-122.66765182710587,45.49827658333967],[-122.66765728886281,45.49826512106649],[-122.66766199872983,45.49825353348931],[-122.66766542310769,45.49824299995574],[-122.66766823303792,45.49823236945304],[-122.66767062704814,45.49822168039019],[-122.66767695388269,45.498189621375],[-122.66767927512936,45.49817905823563],[-122.66768195749883,45.49816862480375],[-122.66768517346753,45.49815837145222],[-122.66769331489894,45.49813716015586],[-122.66770579788813,45.4980990204782],[-122.66771917739598,45.4980657895975],[-122.6677229458286,45.49805455647746],[-122.66772564796096,45.49804336050501],[-122.66772753621972,45.4980320071155],[-122.66772886752295,45.49802053912564],[-122.66773268087135,45.49797409478178],[-122.66773602979073,45.49794977793081],[-122.66774037673838,45.49792547555155],[-122.66775268814933,45.49786478756093],[-122.66775728393034,45.49784054118489],[-122.66776100205732,45.49781631935521],[-122.66776228754648,45.49780422228903],[-122.66776300350377,45.49779213907282],[-122.66776309423359,45.49778228926625],[-122.66776255254948,45.49775279020921],[-122.66776280856932,45.49774297061957],[-122.66776371946102,45.49773188162787],[-122.66776514598573,45.497720792634],[-122.66777046401221,45.49768745700602],[-122.66777193185936,45.49767629496242],[-122.66777301792256,45.49766430742766],[-122.66777367548933,45.49765228274015],[-122.6677740150525,45.4976402309745],[-122.66777406266321,45.49761607013608],[-122.66777283466622,45.49756765083011],[-122.66777100479797,45.49753137772376],[-122.66776887668907,45.49750731695544],[-122.66776729206093,45.49749536275697],[-122.66776517203685,45.49748348852346],[-122.66776232258077,45.49747172636796],[-122.66775876525223,45.49746061591422],[-122.66775451981421,45.49744962509485],[-122.66774975155668,45.49743874320555],[-122.66774458175222,45.4974279689871],[-122.6677333734724,45.49740678512093],[-122.6677213351493,45.49738625798914],[-122.66771005859755,45.49736863613322],[-122.6677054080193,45.49736087737674],[-122.66770079247539,45.49735130202961],[-122.66769702134781,45.49734140429124],[-122.66769380358247,45.4973312697962],[-122.66768497943144,45.49730014155254],[-122.66767470899281,45.4972684560355],[-122.66767176701023,45.4972577856797],[-122.66766927059207,45.49724578105479],[-122.66766750540255,45.49723368890337],[-122.66766632771119,45.49722155519124],[-122.66766564948314,45.49720942525451],[-122.66766543029422,45.49719734757769],[-122.66766567463598,45.49718537757165],[-122.66766643101744,45.49717358135175],[-122.6676677919651,45.49716204392345],[-122.66766962901984,45.49715178598095],[-122.66767187390974,45.49714191654261],[-122.66767626577318,45.49712532349041],[-122.66767758539834,45.49711833163818],[-122.66767779470578,45.49711215394812],[-122.66767700688328,45.49710609211664],[-122.66767519048977,45.49709986782968],[-122.66767049140252,45.49708719068343],[-122.66766815757943,45.49707822606984],[-122.66766660349397,45.49706866515706],[-122.66766567643262,45.49705865402831],[-122.66766526141095,45.49704830791307],[-122.66766527398737,45.49703772252113],[-122.66766566026293,45.49702697215342],[-122.66766746587668,45.49700522143247],[-122.66766890946933,45.49699432056715],[-122.66767076898196,45.49698346251741],[-122.66767311987306,45.49697269010085],[-122.66767812348918,45.49695395296715],[-122.66768031448015,45.49694455574787],[-122.66768205541518,45.49693337970427],[-122.66768299595128,45.49692207961304],[-122.66768332742963,45.49691068758747],[-122.66768320256381,45.49689922629561],[-122.66768203655057,45.49687616958473],[-122.66767605197413,45.49680660018255],[-122.66767455717752,45.49678340742423],[-122.66767417988508,45.49677182520915],[-122.66767418437664,45.49676025810388],[-122.66767470629783,45.49674871114576],[-122.66767588668411,45.49673695198516],[-122.66767760426295,45.49672521423105],[-122.66768211650063,45.49670178027392],[-122.66769032440737,45.49666668976877],[-122.66769930396694,45.49663165150475],[-122.66770563169982,45.49660834848119],[-122.66771244901452,45.49658514430709],[-122.66772021584846,45.49656213721196],[-122.66772469574678,45.49655075707738],[-122.66772969037976,45.49653952113641],[-122.66773511979733,45.49652837586652],[-122.66774685448988,45.49650626477799],[-122.66776561760122,45.49647333898033],[-122.66780403854592,45.49640766426673],[-122.66782243514466,45.49637465025651],[-122.66783360839014,45.49635241380166],[-122.66783859583659,45.49634117152427],[-122.66784321677042,45.49632937701657],[-122.66784736608872,45.49631748679523],[-122.66785116596236,45.49630552793639],[-122.66785804256585,45.49628148616431],[-122.66786714878789,45.49624532431245],[-122.6678724272885,45.49622129195984],[-122.66787472607732,45.49620934126641],[-122.66787670686253,45.49619746046494],[-122.66787827352438,45.49618567600201],[-122.66788000188298,45.49616924701461],[-122.66788120382884,45.49616111721112],[-122.66788321695337,45.49615190057789],[-122.66788818733184,45.49613341441368],[-122.66789091821032,45.49612219161266],[-122.66790044035234,45.49607650698782],[-122.66790312721334,45.49606511793954],[-122.6679062272994,45.49605383782391],[-122.66791506672178,45.49602593221611],[-122.66791791797451,45.49601426861627],[-122.66792492124047,45.49597955675149],[-122.66792798898715,45.49596843718778],[-122.66793212393239,45.49595777162314],[-122.66793608729944,45.49595017576009],[-122.66794648170558,45.49593275684234],[-122.66795311037407,45.495922949529],[-122.66795920813821,45.49591534169731],[-122.66797230557508,45.49590039301662],[-122.66799348784946,45.49587478189999],[-122.66800842952756,45.49585781759064],[-122.66801403950652,45.49584937478927],[-122.66801646405949,45.49584353698934],[-122.66801783219366,45.49583761984864],[-122.66801914373397,45.49581575595482],[-122.66802055768221,45.49580704742034],[-122.66802297864193,45.49579827024892],[-122.6680329984506,45.49577432397235],[-122.66803616860524,45.49576417219377],[-122.66803858058179,45.49575361111814],[-122.66804411689887,45.49572072958807],[-122.66804626566902,45.49570971009324],[-122.66804901271718,45.495698815274],[-122.66805590549035,45.49567757597466],[-122.66805879806554,45.4956669090955],[-122.66806583906074,45.49563449159363],[-122.66807428322441,45.49560242858671],[-122.66807606727858,45.49559118301116],[-122.66807685959266,45.49557973845232],[-122.66807688474549,45.49556815724902],[-122.66807630173886,45.49555649607311],[-122.66807521567567,45.4955448071885],[-122.66807367955654,45.49553314222962],[-122.66807170056799,45.49552155849803],[-122.66806923918409,45.49551012085159],[-122.66806620737002,45.49549891052015],[-122.66806246409023,45.49548802825387],[-122.66805780991876,45.49547760124997],[-122.66805375492355,45.49547042910235],[-122.66804912770154,45.49546362846986],[-122.66804395071054,45.49545725917303],[-122.66803313140127,45.49544613069054],[-122.668025828098,45.49543816198295],[-122.66801964679053,45.49542981420167],[-122.66801529265634,45.4954209998198],[-122.66801322742951,45.49541112315155],[-122.668013086394,45.49540070998658],[-122.66801516958716,45.49537928607585],[-122.66802253487415,45.49532364608313],[-122.66802792386756,45.49528955340781],[-122.66803261756492,45.49526703127472],[-122.66803560266661,45.49525593046102],[-122.66803922826709,45.49524499462412],[-122.66804348807817,45.49523463117399],[-122.66804843689707,45.49522448748409],[-122.66805400914676,45.4952145881125],[-122.6680601760812,45.49520497272984],[-122.66807122086762,45.49518944139612],[-122.66807814508182,45.49517884746871],[-122.66808461744345,45.49516801929408],[-122.66810327365526,45.49513529673415],[-122.6681098996288,45.49512471476071],[-122.6681171050157,45.49511453389923],[-122.66814335558496,45.4950826084989],[-122.66815089065354,45.49507429529798],[-122.66816261815957,45.49506277821943],[-122.66818666336478,45.49503752249836],[-122.66819496649295,45.49502967274491],[-122.66822121526555,45.49500602713495],[-122.66822949863079,45.4949977580013],[-122.66823785386126,45.49498825781552],[-122.66824548684622,45.49497838233074],[-122.66825249460375,45.49496821151788],[-122.66825892654118,45.49495780393824],[-122.66826478535346,45.49494719674374],[-122.66827002163325,45.49493641134374],[-122.6682745374642,45.49492545088671],[-122.66827839303339,45.49491385002832],[-122.66828156408636,45.49490210874572],[-122.66828663507613,45.49487838814848],[-122.66829312360744,45.49484271529841],[-122.66829792600092,45.49481922514474],[-122.66830077994859,45.49480767652923],[-122.66830410102021,45.49479632374671],[-122.66831114830357,45.49477481522677],[-122.66831387019889,45.49476321937496],[-122.66831580157678,45.49475144720584],[-122.66831977392697,45.49471575412506],[-122.66832139628437,45.49470395172058],[-122.66832365195403,45.49469232248024],[-122.66832689217726,45.4946809577102],[-122.66833103610567,45.49467053622415],[-122.66834373918209,45.49464264189511],[-122.66834791904311,45.4946339923708],[-122.66835240702626,45.49462556827688],[-122.66835737021823,45.49461746973542],[-122.66837151239575,45.49459745542036],[-122.66837702625496,45.49458747155903],[-122.66838644329407,45.49456650324044],[-122.66839155919963,45.49455593186499],[-122.6683971943314,45.49454609975362],[-122.66840915270446,45.49452643993357],[-122.66841925336152,45.4945074142135],[-122.66842458576106,45.49449791709354],[-122.66843098176587,45.49448799366563],[-122.66844456519127,45.49446816317678],[-122.66845105192594,45.49445769757239],[-122.66847885568232,45.49440762888507],[-122.66848290349095,45.4943997374836],[-122.66848679319617,45.4943900293959],[-122.668489852858,45.49438003101467],[-122.66849714268653,45.49434911460819],[-122.66849986368354,45.49433873147247],[-122.66850310390677,45.49432833511113],[-122.66851011885083,45.49430764439427],[-122.66851324678463,45.49429730218152],[-122.66851565247299,45.4942869316303],[-122.66851702689537,45.49427659004342],[-122.66851743293387,45.49426626230807],[-122.66851695503016,45.49425601769146],[-122.66851562103193,45.49424592923906],[-122.6685134093797,45.49423608133103],[-122.66851024461495,45.49422657031183],[-122.66850278320821,45.49421022576266],[-122.6684994495602,45.49420204530019],[-122.66849710944888,45.49419327543502],[-122.66849600272444,45.49418428391321],[-122.66849613118353,45.49417516456035],[-122.66849756309811,45.49416600616441],[-122.66850085452531,45.49415547249598],[-122.66850543413662,45.49414495016018],[-122.66852186432317,45.49411288819428],[-122.66852682751511,45.4941019206502],[-122.66853137119381,45.49409078308406],[-122.668547985535,45.49404564843199],[-122.66855240973776,45.49403447559124],[-122.6685572534538,45.49402346332289],[-122.66856272329555,45.49401268719156],[-122.66856907168965,45.49400224102337],[-122.66857637589123,45.49399231121109],[-122.66858439964336,45.49398266350482],[-122.66860104452725,45.4939636879774],[-122.66860892275228,45.4939541202388],[-122.66861599159527,45.49394434154728],[-122.66862150635279,45.49393514218295],[-122.66862635456039,45.49392578727988],[-122.66863541496834,45.49390710706528],[-122.66864029821022,45.49389804119249],[-122.6686458920195,45.49388935188234],[-122.66865259614647,45.49388120978532],[-122.6686610555815,45.49387343417599],[-122.66867066306348,45.49386614910667],[-122.66869141773977,45.49385190137475],[-122.66870244905145,45.49384396707541],[-122.66873505250639,45.49381940915242],[-122.66874605686863,45.49381150318526],[-122.6687572831147,45.49380402541763],[-122.66877897203894,45.49379087336013],[-122.66878893884704,45.49378422869213],[-122.66879546600589,45.49377911861952],[-122.66880777831516,45.49376822279706],[-122.66881351315995,45.49376240115377],[-122.6688184359277,45.4937562180579],[-122.66882359135911,45.49374657849737],[-122.66882692500712,45.49373612157479],[-122.66882888423277,45.49372507650331],[-122.66882978793795,45.49371361960078],[-122.66882984812506,45.49370189129175],[-122.66882918157512,45.49369000240477],[-122.66882782242411,45.49367804550678],[-122.66882572575624,45.49366610120043],[-122.66882276940063,45.49365424568041],[-122.66881874943971,45.49364255829012],[-122.66881412131937,45.49363227892609],[-122.66880881676764,45.49362213242875],[-122.66879762286088,45.49360198363189],[-122.6687924341918,45.4935918572798],[-122.66878801088734,45.49358160813256],[-122.66878448320323,45.4935705246185],[-122.66878206853174,45.49355928934222],[-122.6687806195492,45.49354796338559],[-122.66878006618697,45.49353659838462],[-122.66878041114001,45.49352524660528],[-122.66878173705338,45.49351395842438],[-122.66878420203054,45.49350278673759],[-122.66878766413764,45.49349242044802],[-122.66879194011838,45.49348215302105],[-122.66880621344994,45.49345141999719],[-122.6688104013958,45.49344102284233],[-122.66881384284163,45.49343051611586],[-122.66881666624658,45.4934198784075],[-122.66881904498545,45.49340914561073],[-122.66882697171953,45.49336581012842],[-122.66882923008416,45.49335499293998],[-122.66883189448727,45.49334423116413],[-122.66883514189703,45.49333340893383],[-122.66883889415999,45.49332266730465],[-122.66884308210582,45.49331200627656],[-122.66884766980199,45.49330143277649],[-122.66885265185854,45.49329095939875],[-122.66885805342835,45.49328060755358],[-122.6688639284103,45.49327040620788],[-122.66886978901924,45.49326114565132],[-122.66888804368411,45.4932336486029],[-122.66891369328042,45.49319052268015],[-122.6689205752738,45.49318007824859],[-122.66894252650609,45.4931509407554],[-122.66895725528347,45.49313062932369],[-122.66897780244899,45.49310602700958],[-122.66898196384322,45.49310072718643]]],"type":"Polygon"} +},{ + "id": 1108723521, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":196129.760421, + "geom:bbox":"-77.0463151949,38.9143795889,-77.0416341332,38.9226611343", + "geom:latitude":38.91809, + "geom:longitude":-77.043734, + "iso:country":"US", + "lbl:latitude":38.917855, + "lbl:longitude":-77.043504, + "lbl:max_zoom":18.0, + "mps:latitude":38.917855, + "mps:longitude":-77.043504, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Washington Heights" + ], + "name:ita_x_preferred":[ + "Washington Heights" + ], + "name:jpn_x_preferred":[ + "\u30ef\u30b7\u30f3\u30c8\u30f3\u30cf\u30a4\u30c4" + ], + "name:kor_x_preferred":[ + "\uc6cc\uc2f1\ud134\ud558\uc774\uce20" + ], + "name:vol_x_preferred":[ + "Washington Heights" + ], + "reversegeo:latitude":38.917855, + "reversegeo:longitude":-77.043504, + "src:geom":"wapo", + "wapo:quadrant":"NW", + "wapo:subhood":"Washington Heights", + "wof:belongsto":[ + 85802425, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3f1da228563a338b71b4f1bd9aba1bc3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723521, + "neighbourhood_id":85802425, + "region_id":85688741 + } + ], + "wof:id":1108723521, + "wof:lastmodified":1566623887, + "wof:name":"Washington Heights", + "wof:parent_id":85802425, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.04631519488322, + 38.91437958887371, + -77.041634133182, + 38.92266113433171 +], + "geometry": {"coordinates":[[[[-77.0428077879197,38.92255935554292],[-77.04293770023445,38.92245757660775],[-77.04300294277898,38.92245755261779],[-77.04306789881109,38.92240676299156],[-77.04306786803114,38.9223557974319],[-77.04313285462976,38.92235577346376],[-77.04313282392431,38.92230500776863],[-77.04319777960389,38.92225401820378],[-77.04319774909439,38.92220365223763],[-77.04326270475647,38.92215286250069],[-77.0432626738374,38.92210189693871],[-77.04326264303964,38.92205113124123],[-77.04332788521224,38.92205110706988],[-77.04332785436806,38.92200034137192],[-77.0434576411762,38.92169549904778],[-77.04358742675259,38.92139045669728],[-77.043652288172,38.92118736962092],[-77.0437172114637,38.92108581391532],[-77.0437171802203,38.9210348483434],[-77.04384718836357,38.92067943959097],[-77.04391211079228,38.92057768390249],[-77.04391207940979,38.92052671832577],[-77.04404195534072,38.9203745721416],[-77.04423694513068,38.92001913840216],[-77.0443015473612,38.91981565128061],[-77.0443667241985,38.9197138952263],[-77.04436669261582,38.91966312950664],[-77.04443164500687,38.91961213923099],[-77.0444316136271,38.91956177324046],[-77.04469155079133,38.91915494864285],[-77.0447564708783,38.91905359218666],[-77.04482139052949,38.91895183596237],[-77.0448863420734,38.91890104529234],[-77.04508135571695,38.91859637577708],[-77.04508129140892,38.9184946444516],[-77.04521119307455,38.91839286291236],[-77.04527611147546,38.91829110642301],[-77.04527607949986,38.91824074042044],[-77.04534103007232,38.91818994949102],[-77.04540588333265,38.91798646159089],[-77.04547083358108,38.91793567058693],[-77.04553575119535,38.91783391394478],[-77.04560092471613,38.91773255689502],[-77.0456655861241,38.91763080027677],[-77.04566555361778,38.91758003453792],[-77.04573075914655,38.91752924328567],[-77.04579567602001,38.91742748649152],[-77.04586062573881,38.91737709499591],[-77.04586059296527,38.91732612938961],[-77.04592550946856,38.91722437251948],[-77.04599045865288,38.91717358121956],[-77.04599039304931,38.91707184986785],[-77.04605559788213,38.9170210584296],[-77.04605556496939,38.91697009282002],[-77.04605553244392,38.91691972680539],[-77.04612051408802,38.91691970117573],[-77.04612048125817,38.91686893543032],[-77.04625031250561,38.91666542134625],[-77.04625027958353,38.91661465559849],[-77.04625024653187,38.91656368998516],[-77.04631519488322,38.91651289849855],[-77.04631516217461,38.91646253247971],[-77.04631509610853,38.9163608011149],[-77.04631506301067,38.91630983549921],[-77.04631503004263,38.91625906974816],[-77.04631496397695,38.91615733837948],[-77.04631486520324,38.91600524098592],[-77.04631463404067,38.91564928110323],[-77.0463144362369,38.91534468655293],[-77.04624925850338,38.91504011772297],[-77.04624912656209,38.91483665493811],[-77.0462490609805,38.91473552313853],[-77.0462490279306,38.91468455750753],[-77.04618398244567,38.91458285181051],[-77.04618391669788,38.91448132027569],[-77.04618385082085,38.91437958887371],[-77.04605392494268,38.91443040593599],[-77.04598872260608,38.91448139726275],[-77.04592377587225,38.91453218858685],[-77.04572890269377,38.9146339964386],[-77.04553377313353,38.91473580406313],[-77.04527395106723,38.9148880024898],[-77.04501387231778,38.91504060016346],[-77.04488394440179,38.91509141591866],[-77.04481899645123,38.91514240648819],[-77.04468906796046,38.91519282229535],[-77.04462386382595,38.91524361298816],[-77.04449396705826,38.91534539393352],[-77.04436403834087,38.91539640897291],[-77.04423410931366,38.91544722400226],[-77.04410392427314,38.91549803898316],[-77.04403897539463,38.91554902911531],[-77.04390904585777,38.91559984378175],[-77.04390907686677,38.91565020980921],[-77.04384409637861,38.9156502342091],[-77.04358401191227,38.915803028544],[-77.04351903128476,38.91580305276311],[-77.04345408158849,38.91585384270216],[-77.04345411251988,38.91590460845777],[-77.04338913179976,38.91590463260461],[-77.0433241510796,38.91590465671536],[-77.04319399542305,38.91600643629805],[-77.04273902601339,38.91626043241534],[-77.0421540908107,38.91651447370555],[-77.04176406646955,38.91671807652535],[-77.041634133182,38.9167688886513],[-77.04163419257128,38.916870620011],[-77.04163425161067,38.91697175177336],[-77.04163431100027,38.9170734831293],[-77.04163434075346,38.91712444873907],[-77.04163437039003,38.91717521448328],[-77.04163448917009,38.91737867718552],[-77.04163469662844,38.91773403736825],[-77.04163475578595,38.91783536897962],[-77.0416347854231,38.91788613471716],[-77.04163481517698,38.91793710031934],[-77.04163484481424,38.91798786605592],[-77.04163487456819,38.91803883165709],[-77.04163490420552,38.91808959739275],[-77.04163493384287,38.91814036312788],[-77.04169994640124,38.91819130555632],[-77.04169997608496,38.91824207129049],[-77.04170021367302,38.91864839701193],[-77.04170027292439,38.91874972860616],[-77.04170033240963,38.91885145992865],[-77.0417006888573,38.91946104836317],[-77.04170071865896,38.91951201395049],[-77.04170074834377,38.91956277967228],[-77.04170077779487,38.91961314566349],[-77.04170080759665,38.91966411124936],[-77.04170083728158,38.91971487696975],[-77.04170086708345,38.91976584255466],[-77.04196150805812,38.92052743501892],[-77.04202626717951,38.92057837733512],[-77.04202632713138,38.920680108623],[-77.04222183887464,38.92118789520538],[-77.04241709767068,38.92169588137063],[-77.04254765869074,38.92225425671364],[-77.04261276677666,38.92245769554465],[-77.04261279711197,38.92250846123846],[-77.04267784473276,38.92261016877445],[-77.04267787523406,38.92266113433171],[-77.0428077879197,38.92255935554292]]]],"type":"MultiPolygon"} +},{ + "id": 1108723523, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000037, + "geom:area_square_m":354536.640976, + "geom:bbox":"-77.0426778752,38.9167688887,-77.0364987456,38.926523417", + "geom:latitude":38.92162, + "geom:longitude":-77.039185, + "iso:country":"US", + "lbl:latitude":38.922069, + "lbl:longitude":-77.03805, + "lbl:max_zoom":18.0, + "mps:latitude":38.921574, + "mps:longitude":-77.039244, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Reed-Cooke" + ], + "name:eng_x_variant":[ + "Cooke", + "Reed" + ], + "reversegeo:latitude":38.921574, + "reversegeo:longitude":-77.039244, + "src:geom":"wapo", + "src:lbl_centroid":"mz", + "wapo:quadrant":"NW", + "wapo:subhood":"Reed-Cooke", + "wof:belongsto":[ + 85802425, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7306609" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3db061c1c5906bbf5f682362900bb629", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723523, + "neighbourhood_id":85802425, + "region_id":85688741 + } + ], + "wof:id":1108723523, + "wof:lastmodified":1566623887, + "wof:name":"Reed-Cooke", + "wof:parent_id":85802425, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869619 + ], + "wof:tags":[] +}, + "bbox": [ + -77.04267787523406, + 38.9167688886513, + -77.03649874562576, + 38.92652341700292 +], + "geometry": {"coordinates":[[[[-77.04267784473276,38.92261016877445],[-77.04261279711197,38.92250846123846],[-77.04261276677666,38.92245769554465],[-77.04254765869074,38.92225425671364],[-77.04241709767068,38.92169588137063],[-77.04222183887464,38.92118789520538],[-77.04202632713138,38.920680108623],[-77.04202626717951,38.92057837733512],[-77.04196150805812,38.92052743501892],[-77.04170086708345,38.91976584255466],[-77.04170083728158,38.91971487696975],[-77.04170080759665,38.91966411124936],[-77.04170077779487,38.91961314566349],[-77.04170074834377,38.91956277967228],[-77.04170071865896,38.91951201395049],[-77.0417006888573,38.91946104836317],[-77.04170033240963,38.91885145992865],[-77.04170027292439,38.91874972860616],[-77.04170021367302,38.91864839701193],[-77.04169997608496,38.91824207129049],[-77.04169994640124,38.91819130555632],[-77.04163493384287,38.91814036312788],[-77.04163490420552,38.91808959739275],[-77.04163487456819,38.91803883165709],[-77.04163484481424,38.91798786605592],[-77.04163481517698,38.91793710031934],[-77.0416347854231,38.91788613471716],[-77.04163475578595,38.91783536897962],[-77.04163469662844,38.91773403736825],[-77.04163448917009,38.91737867718552],[-77.04163437039003,38.91717521448328],[-77.04163434075346,38.91712444873907],[-77.04163431100027,38.9170734831293],[-77.04163425161067,38.91697175177336],[-77.04163419257128,38.916870620011],[-77.041634133182,38.9167688886513],[-77.04150394387642,38.91681970072313],[-77.04143899193538,38.91687068939773],[-77.04130908731157,38.91697186717665],[-77.04124413509264,38.91702285574149],[-77.04117889751929,38.91702287874953],[-77.04111420087939,38.91707366728643],[-77.04104899259441,38.91712465583189],[-77.04098401076186,38.91712467864125],[-77.04091905805667,38.91717546715888],[-77.04085407617777,38.91717548989597],[-77.04085410525893,38.9172262556399],[-77.04059435104945,38.91753114054602],[-77.04052914186093,38.91758192893196],[-77.04052917071098,38.91763269467213],[-77.04046424613644,38.91773444853651],[-77.04039929261894,38.91778543662462],[-77.04033408283293,38.91783582516911],[-77.04033411154423,38.91788659090697],[-77.04026944229732,38.91798834457002],[-77.04020420384046,38.91798836703389],[-77.04020423257204,38.91803933263547],[-77.04013924990578,38.91803935497508],[-77.0400742957659,38.91809014301454],[-77.0399443303407,38.9180901875131],[-77.03981413741913,38.9181409976898],[-77.03968420026105,38.91819200749926],[-77.03961921745554,38.91819202954971],[-77.0394892799544,38.91824283927677],[-77.03916413751556,38.91829331471536],[-77.03896898857192,38.91839511130824],[-77.03890426141966,38.91839513287574],[-77.03877406730905,38.91844614175594],[-77.03857914565909,38.9184969720129],[-77.03851416257532,38.91849699344876],[-77.03844892365265,38.9184970149327],[-77.03649874562576,38.91915779478757],[-77.0364987716074,38.91920856051391],[-77.03649879769138,38.91925952610486],[-77.0364989278049,38.91951375445718],[-77.03649910967893,38.91986911450821],[-77.03649931763951,38.92027544011729],[-77.03649934372427,38.92032640569817],[-77.03649936970677,38.92037717141352],[-77.03649939579158,38.92042813699344],[-77.03649962973829,38.92088522827094],[-77.03649965551658,38.92093559425109],[-77.0364997075848,38.92103732553485],[-77.03649973367011,38.92108829110857],[-77.03650001969021,38.92164711360237],[-77.03650043563449,38.92245976452176],[-77.03650051368906,38.92261226147107],[-77.03650056555509,38.92271359299333],[-77.03650059153932,38.92276435868617],[-77.03650079951677,38.92317068407679],[-77.03650082560365,38.92322164963025],[-77.03650087767519,38.92332338087084],[-77.03650092964459,38.92342491224458],[-77.03650134571191,38.92423776275997],[-77.03650157968362,38.92469485371365],[-77.03650160566929,38.92474561938779],[-77.03650163175729,38.92479658492631],[-77.03650204773831,38.92560923536885],[-77.03650215158157,38.92581209816293],[-77.03650217756807,38.92586286382648],[-77.03650222964347,38.92596459501691],[-77.0365023337947,38.92616805739198],[-77.03650238566593,38.926269388847],[-77.03650241165275,38.9263201545062],[-77.03650251570271,38.92652341700292],[-77.03656748006831,38.92647263102849],[-77.03663244434139,38.92642184501749],[-77.03669743464764,38.92642182462804],[-77.03682761858732,38.92632005247857],[-77.03695757270322,38.92626924578744],[-77.03702253651318,38.92621845955766],[-77.03715271972173,38.92611688690697],[-77.03734760993595,38.92596432791321],[-77.0378676231612,38.92565956654052],[-77.03793258576759,38.92560877979906],[-77.03806279366421,38.92555797178914],[-77.03838765905502,38.92540516877442],[-77.03845262105925,38.92535438174149],[-77.0385178388343,38.9253035945876],[-77.03858282812082,38.92530357314971],[-77.03864779000183,38.92525298587218],[-77.03884270230887,38.92515119003035],[-77.03890791962026,38.92510040265688],[-77.0389726251139,38.92504961541722],[-77.03903784213047,38.92499862810541],[-77.03910280330129,38.9249478407072],[-77.0391677922634,38.92494781894401],[-77.03916776426979,38.92489685340758],[-77.03923272547532,38.92484646566588],[-77.039297714345,38.92484644383039],[-77.03936293105362,38.92479565620017],[-77.03942789169751,38.92474466875442],[-77.03949288047437,38.92474464681045],[-77.03955784108972,38.92469385915693],[-77.03968779029678,38.9246430494144],[-77.03994791535294,38.924490264002],[-77.04007783560417,38.92438908787732],[-77.04014279536652,38.92433810003038],[-77.04033770315179,38.92423650154267],[-77.04040291844865,38.92418551346135],[-77.04046787790652,38.92413472529668],[-77.04092287639691,38.92382977284655],[-77.04131291262577,38.92357540741899],[-77.04137787111172,38.9235250184725],[-77.04150778722656,38.92342324114524],[-77.04157277479848,38.92342321804465],[-77.04183286170311,38.9232198625799],[-77.04189784908961,38.92321983929848],[-77.04209297732586,38.92306767194712],[-77.04209294724241,38.92301670639355],[-77.04222286141059,38.9229149282617],[-77.04228784851907,38.92291490476342],[-77.04267787523406,38.92266113433171],[-77.04267784473276,38.92261016877445]]]],"type":"MultiPolygon"} +},{ + "id": 1108723525, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":221265.0754, + "geom:bbox":"-77.0448255413,38.9226611343,-77.0365025157,38.9278925327", + "geom:latitude":38.925534, + "geom:longitude":-77.041482, + "iso:country":"US", + "lbl:latitude":38.925202, + "lbl:longitude":-77.043201, + "lbl:max_zoom":18.0, + "mps:latitude":38.925311, + "mps:longitude":-77.042457, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Lanier Heights" + ], + "name:eng_x_variant":[ + "Lanier Hts" + ], + "reversegeo:latitude":38.925311, + "reversegeo:longitude":-77.042457, + "src:geom":"wapo", + "src:lbl_centroid":"mz", + "wapo:quadrant":"NW", + "wapo:subhood":"Lanier Heights", + "wof:belongsto":[ + 85802425, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6487061" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9dfb73d10bceabba7b6f63069cc7cc36", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723525, + "neighbourhood_id":85802425, + "region_id":85688741 + } + ], + "wof:id":1108723525, + "wof:lastmodified":1566623887, + "wof:name":"Lanier Heights", + "wof:parent_id":85802425, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829771 + ], + "wof:tags":[] +}, + "bbox": [ + -77.04482554133169, + 38.92266113433171, + -77.03650251570271, + 38.92789253271468 +], + "geometry": {"coordinates":[[[[-77.04326335176319,38.92321934175679],[-77.04319836437762,38.92321936579752],[-77.04313334616489,38.92316842425031],[-77.04306835882571,38.92316844821877],[-77.04306832816579,38.92311768253123],[-77.0430033408728,38.92311770646357],[-77.04293806739784,38.92306736449562],[-77.04287304950967,38.92301642280211],[-77.04280806230889,38.92301644662582],[-77.04280803183437,38.92296568093685],[-77.04274301413179,38.92291473917],[-77.0427429837036,38.92286397348003],[-77.04274295327544,38.92281320778962],[-77.04267787523406,38.92266113433171],[-77.04228784851907,38.92291490476342],[-77.04222286141059,38.9229149282617],[-77.04209294724241,38.92301670639355],[-77.04209297732586,38.92306767194712],[-77.04189784908961,38.92321983929848],[-77.04183286170311,38.9232198625799],[-77.04157277479848,38.92342321804465],[-77.04150778722656,38.92342324114524],[-77.04137787111172,38.9235250184725],[-77.04131291262577,38.92357540741899],[-77.04092287639691,38.92382977284655],[-77.04046787790652,38.92413472529668],[-77.04040291844865,38.92418551346135],[-77.04033770315179,38.92423650154267],[-77.04014279536652,38.92433810003038],[-77.04007783560417,38.92438908787732],[-77.03994791535294,38.924490264002],[-77.03968779029678,38.9246430494144],[-77.03955784108972,38.92469385915693],[-77.03949288047437,38.92474464681045],[-77.03942789169751,38.92474466875442],[-77.03936293105362,38.92479565620017],[-77.039297714345,38.92484644383039],[-77.03923272547532,38.92484646566588],[-77.03916776426979,38.92489685340758],[-77.0391677922634,38.92494781894401],[-77.03910280330129,38.9249478407072],[-77.03903784213047,38.92499862810541],[-77.0389726251139,38.92504961541722],[-77.03890791962026,38.92510040265688],[-77.03884270230887,38.92515119003035],[-77.03864779000183,38.92525298587218],[-77.03858282812082,38.92530357314971],[-77.0385178388343,38.9253035945876],[-77.03845262105925,38.92535438174149],[-77.03838765905502,38.92540516877442],[-77.03806279366421,38.92555797178914],[-77.03793258576759,38.92560877979906],[-77.0378676231612,38.92565956654052],[-77.03734760993595,38.92596432791321],[-77.03715271972173,38.92611688690697],[-77.03702253651318,38.92621845955766],[-77.03695757270322,38.92626924578744],[-77.03682761858732,38.92632005247857],[-77.03669743464764,38.92642182462804],[-77.03663244434139,38.92642184501749],[-77.03656748006831,38.92647263102849],[-77.03650251570271,38.92652341700292],[-77.03650256767676,38.92662494831599],[-77.03650267172762,38.92682821080112],[-77.03650269771485,38.926878976455],[-77.03650274968942,38.92698050776132],[-77.03663273132025,38.92698046709057],[-77.03702290572366,38.92692957847713],[-77.03741310620551,38.92692945421373],[-77.03773836975728,38.92703108082154],[-77.0385838176265,38.92713233607844],[-77.04020935905461,38.92713178810737],[-77.04105478239808,38.92718225983737],[-77.04157496625055,38.92718207594486],[-77.04216048701358,38.92733416316356],[-77.04242051207734,38.92743580025198],[-77.04281086783138,38.92768968605989],[-77.04307118153406,38.92784188737859],[-77.043396426294,38.92789253271468],[-77.04339636450305,38.9277910014291],[-77.04346135605505,38.92779097727822],[-77.04352634760701,38.92779095309125],[-77.04359130812472,38.92774016322466],[-77.04359127709054,38.92768939758069],[-77.04352622353349,38.92758769064964],[-77.04352616155801,38.92748615935831],[-77.04346110827927,38.92738445238711],[-77.04352603760753,38.92728309676981],[-77.04352597551059,38.92718136560791],[-77.04359090443958,38.92707981008596],[-77.04372085512087,38.92702899588156],[-77.04391592711434,38.9267748945603],[-77.04404584552755,38.92667311447334],[-77.04424101000185,38.9265715094236],[-77.04437092770485,38.92646992883614],[-77.04443588641756,38.92641913848753],[-77.04450081323188,38.92631738258079],[-77.04443579138854,38.92626664165241],[-77.04456570838352,38.92616526070738],[-77.04456567653143,38.92611429518394],[-77.044630602883,38.92601253919926],[-77.04463057110968,38.92596177353914],[-77.04463050743811,38.9258600423527],[-77.04469572127546,38.92580925175618],[-77.04469568945589,38.92575848609414],[-77.04476064754012,38.92570809528785],[-77.04476058368319,38.92560636409667],[-77.04482554133169,38.92555557352323],[-77.04482550929416,38.92550460799404],[-77.04482547738232,38.92545384232917],[-77.04482544534488,38.92540287679901],[-77.04482541343313,38.92535211113314],[-77.04482538152142,38.92530134546683],[-77.0448253497354,38.92525077966484],[-77.04482531782379,38.92520001399761],[-77.04482525387505,38.92509828279675],[-77.04476023291245,38.92504754203732],[-77.04469524386127,38.9250475669105],[-77.04462999894767,38.92504759184519],[-77.04462990338025,38.9248948951063],[-77.04462987185812,38.92484452916533],[-77.04462984008585,38.92479376349414],[-77.04469508476724,38.92479373855952],[-77.04469505282329,38.92474277302297],[-77.04469502100466,38.92469200735083],[-77.04469498918607,38.9246412416782],[-77.04475991401193,38.92453948559376],[-77.04469479815027,38.92433644776761],[-77.0446947345138,38.92423491641517],[-77.04482464718787,38.9241331354141],[-77.04482458324104,38.92403140419301],[-77.04449922836176,38.92377770007442],[-77.0441089508127,38.92362535108643],[-77.04371864393082,38.92342243497124],[-77.04345863177282,38.92332100055977],[-77.04332859500455,38.92321931758505],[-77.04326335176319,38.92321934175679]]]],"type":"MultiPolygon"} +},{ + "id": 1108723531, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":300767.172135, + "geom:bbox":"-76.9834457718,38.9001139473,-76.9702381793,38.9073259297", + "geom:latitude":38.904143, + "geom:longitude":-76.977725, + "iso:country":"US", + "lbl:latitude":38.904683, + "lbl:longitude":-76.97783, + "lbl:max_zoom":18.0, + "mps:latitude":38.904683, + "mps:longitude":-76.97783, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "Carver" + ], + "name:ceb_x_preferred":[ + "Carver" + ], + "name:deu_x_preferred":[ + "Carver" + ], + "name:fas_x_preferred":[ + "\u06a9\u0627\u0631\u0648\u0631" + ], + "name:fra_x_preferred":[ + "Carver" + ], + "name:ido_x_preferred":[ + "Carver" + ], + "name:ita_x_preferred":[ + "Carver" + ], + "name:jpn_x_preferred":[ + "\u30ab\u30fc\u30f4\u30a1\u30fc" + ], + "name:nld_x_preferred":[ + "Carver" + ], + "name:pol_x_preferred":[ + "Carver" + ], + "name:por_x_preferred":[ + "Carver" + ], + "name:rus_x_preferred":[ + "\u041a\u0430\u0440\u0432\u0435\u0440" + ], + "name:spa_x_preferred":[ + "Carver" + ], + "name:srp_x_preferred":[ + "\u041a\u0430\u0440\u0432\u0435\u0440" + ], + "name:ukr_x_preferred":[ + "\u041a\u0430\u0440\u0432\u0435\u0440" + ], + "name:vol_x_preferred":[ + "Carver" + ], + "reversegeo:latitude":38.904683, + "reversegeo:longitude":-76.97783, + "src:geom":"mz", + "wof:belongsto":[ + 1108723529, + 102191575, + 1108723667, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f898ee95ce85f875732d02c16443d08b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723667, + "microhood_id":1108723531, + "neighbourhood_id":1108723529, + "region_id":85688741 + } + ], + "wof:id":1108723531, + "wof:lastmodified":1566623884, + "wof:name":"Carver", + "wof:parent_id":1108723529, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420510937, + 420781817 + ], + "wof:tags":[] +}, + "bbox": [ + -76.9834457717888, + 38.9001139472986, + -76.97023817925057, + 38.90732592972474 +], + "geometry": {"coordinates":[[[[-76.97137079080456,38.90505549004971],[-76.98344577178879,38.9001139472986],[-76.98331607108415,38.9002156605276],[-76.98325059310262,38.90021565115818],[-76.98325058127658,38.90026601733129],[-76.98325056935666,38.90031678323545],[-76.98318585860351,38.90031677393976],[-76.98318584659042,38.90036773970925],[-76.98312086800487,38.90041849624402],[-76.98312085599262,38.90046926214679],[-76.98305587722092,38.90052021851024],[-76.98305585305637,38.9006219501792],[-76.98299061837179,38.90067270660207],[-76.98292561511491,38.90082479495918],[-76.98286038015213,38.9008755513075],[-76.98286036790641,38.90092651707187],[-76.98279590013249,38.90097727349581],[-76.9824054229816,38.90163737186342],[-76.98234018685611,38.90168832777959],[-76.98234017428804,38.90173909367072],[-76.98227519385159,38.9017898497226],[-76.9819502259529,38.90229785859889],[-76.98175498722023,38.90260262345544],[-76.98169051714497,38.90265337925416],[-76.98162475493764,38.9027551005631],[-76.9815602453136,38.90295795406401],[-76.98110452046066,38.90361843726662],[-76.98103953737983,38.90366939247975],[-76.98103952388574,38.90372015835262],[-76.98084480262952,38.90397395595731],[-76.98084478899679,38.90402472182742],[-76.98071453850072,38.90422776388395],[-76.98064928502635,38.90432948469944],[-76.98058430102692,38.90438023978713],[-76.98051981459331,38.90448196065498],[-76.98032429403297,38.90483728895496],[-76.98025929523476,38.90493900958448],[-76.98019431034707,38.90498996431531],[-76.98012905560056,38.90509108522944],[-76.97999905679936,38.90529452622389],[-76.97999904256446,38.90534529208176],[-76.97993431291263,38.905396246708],[-76.97986931304894,38.90549796711031],[-76.97980405737695,38.90559908783358],[-76.97973907156268,38.90565004230514],[-76.97967407124622,38.90575156272857],[-76.97954378508889,38.90605633498512],[-76.97921880793808,38.90646260431334],[-76.97921879314762,38.90651337016039],[-76.97908853336135,38.90671681004385],[-76.97902351627611,38.90686889606398],[-76.9789582730089,38.90691965017802],[-76.97889379698243,38.90697060425933],[-76.97882879425948,38.90707212418823],[-76.9787635354937,38.90717384389809],[-76.97876352031955,38.90722480960402],[-76.97869853245982,38.90727516388525],[-76.97869851729891,38.90732592972474],[-76.97746342494722,38.90681823943537],[-76.97687822728041,38.90661466196725],[-76.97570811491593,38.90615713215006],[-76.97492855983934,38.90585237233767],[-76.97434339559183,38.90559801628325],[-76.97414822579259,38.90559797326087],[-76.9740832544571,38.90559795886658],[-76.97382336911545,38.90559790092793],[-76.97356297218892,38.90559784229546],[-76.97330334264079,38.90559778325797],[-76.97317314417788,38.90559775343475],[-76.97310817284279,38.90559773849817],[-76.97284828750277,38.90559767839058],[-76.972522919243,38.90559760232283],[-76.9721980625693,38.9055975254707],[-76.97180772297644,38.90559743193236],[-76.97148286630427,38.90559735309159],[-76.97115800963282,38.90559727334758],[-76.97109303829862,38.90559725729038],[-76.97076818162806,38.90559717646244],[-76.97057301183341,38.90559712746767],[-76.97044281337291,38.9055970946018],[-76.97023817925057,38.90559704265296],[-76.97137079080456,38.90505549004971]]]],"type":"MultiPolygon"} +},{ + "id": 1108723535, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000056, + "geom:area_square_m":539923.026926, + "geom:bbox":"-76.9834457718,38.8976216826,-76.96879747,38.90505549", + "geom:latitude":38.900953, + "geom:longitude":-76.974083, + "iso:country":"US", + "lbl:latitude":38.901306, + "lbl:longitude":-76.973361, + "lbl:max_zoom":18.0, + "mps:latitude":38.901306, + "mps:longitude":-76.973361, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":38.901306, + "reversegeo:longitude":-76.973361, + "src:geom":"mz", + "wof:belongsto":[ + 1108723529, + 102191575, + 1108723667, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9d304877b977812bd37e4fc0b7e8e45d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723667, + "microhood_id":1108723535, + "neighbourhood_id":1108723529, + "region_id":85688741 + } + ], + "wof:id":1108723535, + "wof:lastmodified":1566623884, + "wof:name":"Langston", + "wof:parent_id":1108723529, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420510941, + 420781813 + ], + "wof:tags":[] +}, + "bbox": [ + -76.9834457717888, + 38.89762168259523, + -76.96879746999403, + 38.90505549004971 +], + "geometry": {"coordinates":[[[[-76.98344577178879,38.9001139472986],[-76.97137079080456,38.90505549004971],[-76.97161346890726,38.90458186775793],[-76.97186400125261,38.90364216012171],[-76.96879746999403,38.9034521085856],[-76.96901639661453,38.89762168259523],[-76.96921101114955,38.89767249998177],[-76.96934093938191,38.89767253415327],[-76.96947112337861,38.89767256824716],[-76.96960128565746,38.89772356798751],[-76.9696657382914,38.89772358474147],[-76.96979592238142,38.89772361847336],[-76.96986114230869,38.8977236353179],[-76.96999104927903,38.89777443469172],[-76.97005626925282,38.89777445142733],[-76.97018566492508,38.89782525045312],[-76.97031584920086,38.8978252836056],[-76.97038106922123,38.89782530015988],[-76.97064116103344,38.89787633161043],[-76.97083577742055,38.89792714628785],[-76.9709659618826,38.89792717871587],[-76.97116109008967,38.89797819284383],[-76.97122631024999,38.8979782089262],[-76.9713557275094,38.89797824073089],[-76.9718756585651,38.89807949918467],[-76.97207104360523,38.89813051185292],[-76.97213600813912,38.89813052736627],[-76.97226617323642,38.89818132426736],[-76.97265594125905,38.89823218207616],[-76.97291578041558,38.89828320839881],[-76.97304570976192,38.89828323844985],[-76.9731758757856,38.89833403433595],[-76.97343571568506,38.89838505950124],[-76.97389096200098,38.89843592805804],[-76.97402112905074,38.89848632326932],[-76.9741508030003,38.8984863520344],[-76.97441115568657,38.89853737514181],[-76.97460577656241,38.8985881835326],[-76.97486587417801,38.89863920557015],[-76.97493109494349,38.89863921958414],[-76.97525564655568,38.89869005470094],[-76.97545103575376,38.89874086184467],[-76.97558045439852,38.89874088896904],[-76.97571064034759,38.89874091610962],[-76.9761011641134,38.89884272836041],[-76.97616561775986,38.89884274152819],[-76.9762305829432,38.89884275476457],[-76.97642571748527,38.89889356022469],[-76.97655590371329,38.89889358642329],[-76.9766855618778,38.89894417842471],[-76.97733569385319,38.89904603806644],[-76.9774006592219,38.89904605065209],[-76.97753082973838,38.8990968416788],[-76.97759579515339,38.89909685415589],[-76.9780507775266,38.89919867222603],[-76.97863569239991,38.89930051235616],[-76.97909069249505,38.89935136059474],[-76.97928583058135,38.89940176154119],[-76.97941549149022,38.89945275023974],[-76.98019580534022,38.89960538273223],[-76.98091091432485,38.8997072334604],[-76.98130069684632,38.89975806241228],[-76.98136591863583,38.89975807283375],[-76.98149583760656,38.89980845966353],[-76.98156105944219,38.89980846997604],[-76.98208101816994,38.89991028257272],[-76.98247080258551,38.89996130748442],[-76.982536024561,38.89996131725268],[-76.98266594463122,38.90001210251084],[-76.98299076377336,38.90006291616341],[-76.98305598584184,38.9000629256413],[-76.9831209521375,38.9000629350459],[-76.98318591843318,38.90006294441433],[-76.98344577178879,38.9001139472986]]]],"type":"MultiPolygon"} +},{ + "id": 1108723539, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":48004.930393, + "geom:bbox":"-77.0230260984,38.8997402902,-77.0188488343,38.9009463051", + "geom:latitude":38.900339, + "geom:longitude":-77.020944, + "iso:country":"US", + "lbl:latitude":38.900285, + "lbl:longitude":-77.020487, + "lbl:max_zoom":18.0, + "mps:latitude":38.900339, + "mps:longitude":-77.020944, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0627\u0644\u062d\u064a \u0627\u0644\u0635\u064a\u0646\u064a" + ], + "name:ast_x_preferred":[ + "Barriu chinu" + ], + "name:aze_x_preferred":[ + "\u00c7in q\u0259s\u0259b\u0259si" + ], + "name:cat_x_preferred":[ + "Barri xin\u00e8s" + ], + "name:cdo_x_preferred":[ + "D\u00f2ng-\u00ecng-g\u0103\u0324" + ], + "name:dan_x_preferred":[ + "Chinatown" + ], + "name:deu_x_preferred":[ + "Chinatown" + ], + "name:est_x_preferred":[ + "Hiinalinn" + ], + "name:eus_x_preferred":[ + "Chinatown" + ], + "name:fas_x_preferred":[ + "\u0645\u062d\u0644\u0647 \u0686\u06cc\u0646\u06cc\u200c\u0647\u0627" + ], + "name:fin_x_preferred":[ + "Chinatown" + ], + "name:fra_x_preferred":[ + "Quartier chinois" + ], + "name:fry_x_preferred":[ + "Chinatown" + ], + "name:heb_x_preferred":[ + "\u05e6'\u05d9\u05d9\u05e0\u05d8\u05d0\u05d5\u05df" + ], + "name:hun_x_preferred":[ + "K\u00ednai negyed" + ], + "name:ind_x_preferred":[ + "Pecinan" + ], + "name:isl_x_preferred":[ + "K\u00ednahverfi" + ], + "name:ita_x_preferred":[ + "Chinatown" + ], + "name:jpn_x_preferred":[ + "\u4e2d\u83ef\u8857" + ], + "name:kaz_x_preferred":[ + "\u0427\u0430\u0439\u043d\u0430\u0442\u0430\u0443\u043d" + ], + "name:kor_x_preferred":[ + "\ucc28\uc774\ub098\ud0c0\uc6b4" + ], + "name:lit_x_preferred":[ + "Kin\u0173 kvartalas" + ], + "name:msa_x_preferred":[ + "Pekan Cina" + ], + "name:nld_x_preferred":[ + "Chinatown" + ], + "name:nno_x_preferred":[ + "Chinatown" + ], + "name:nor_x_preferred":[ + "Chinatown" + ], + "name:pol_x_preferred":[ + "Chinatown" + ], + "name:por_x_preferred":[ + "Chinatown" + ], + "name:ron_x_preferred":[ + "Chinatown" + ], + "name:rus_x_preferred":[ + "\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:sah_x_preferred":[ + "\u0427\u0430\u0439\u043d\u0430\u0442\u0430\u0443\u043d" + ], + "name:sco_x_preferred":[ + "Chinatown" + ], + "name:spa_x_preferred":[ + "Barrio chino" + ], + "name:swe_x_preferred":[ + "Chinatown" + ], + "name:tam_x_preferred":[ + "\u0b9a\u0bc0\u0ba9 \u0ba8\u0b95\u0bb0\u0bcd" + ], + "name:tgl_x_preferred":[ + "China Town" + ], + "name:tur_x_preferred":[ + "\u00c7in mahallesi" + ], + "name:ukr_x_preferred":[ + "\u041a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:zho_x_preferred":[ + "\u5510\u4eba\u8857" + ], + "reversegeo:latitude":38.900339, + "reversegeo:longitude":-77.020944, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2da03700715f2e3025183533c51477f4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723539, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723539, + "wof:lastmodified":1566623884, + "wof:name":"Chinatown", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85810891 + ], + "wof:tags":[] +}, + "bbox": [ + -77.02302609835205, + 38.89974029022419, + -77.018848834331, + 38.9009463050841 +], + "geometry": {"coordinates":[[[[-77.02302394672137,38.89974029022419],[-77.02302609835205,38.9009463050841],[-77.02006660500636,38.90093183540675],[-77.01884950160202,38.90092588469442],[-77.018848834331,38.89974267307977],[-77.02007436564256,38.89974197363414],[-77.02302394672137,38.89974029022419]]]],"type":"MultiPolygon"} +},{ + "id": 1108723541, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000139, + "geom:area_square_m":1336844.46063, + "geom:bbox":"-77.0336280677,38.8920882256,-77.0090564518,38.9062218254", + "geom:latitude":38.898645, + "geom:longitude":-77.024468, + "iso:country":"US", + "lbl:latitude":38.898049, + "lbl:longitude":-77.020289, + "lbl:max_zoom":18.0, + "mps:latitude":38.899323, + "mps:longitude":-77.029735, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "E End" + ], + "reversegeo:latitude":38.899323, + "reversegeo:longitude":-77.029735, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"43e18facd98bfbe8a8e1c71ca204e296", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723541, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723541, + "wof:lastmodified":1566623883, + "wof:name":"East End", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85816283 + ], + "wof:tags":[] +}, + "bbox": [ + -77.03362806765197, + 38.89208822557948, + -77.00905645183062, + 38.90622182536342 +], + "geometry": {"coordinates":[[[[-77.01432838182943,38.89208822557948],[-77.01430243550061,38.89951945943196],[-77.01425760093286,38.89950445964354],[-77.01412740353344,38.89945370954781],[-77.01406269356286,38.89945371735529],[-77.01367235842253,38.89930166581428],[-77.01341247688374,38.89919996424464],[-77.01243767646609,38.89884451081011],[-77.01191715371121,38.89864130152495],[-77.01120197929562,38.89833657689539],[-77.01107229773454,38.89828582333519],[-77.0105517829162,38.89808240808027],[-77.00977216727752,38.89777788033677],[-77.009317135483,38.89757485379851],[-77.00925216486826,38.89752409303212],[-77.00905675494261,38.89747334241457],[-77.00905658080171,38.89610166279816],[-77.00905656791204,38.8960001309117],[-77.00905649694343,38.89544110590582],[-77.00905648410476,38.89533997373933],[-77.00905645183062,38.89508574425359],[-77.00951191080361,38.8947809124661],[-77.009901637445,38.89447628434221],[-77.01022641432345,38.89427279279392],[-77.01055118192966,38.89401913397205],[-77.01068135163517,38.89396815631364],[-77.01081151346123,38.89386641254715],[-77.01087645863539,38.89376487459026],[-77.01100661987398,38.89366353033472],[-77.01113678068036,38.89356178620028],[-77.01321600704382,38.89208835691706],[-77.01354105795927,38.8920883196884],[-77.01360601699346,38.89208831214012],[-77.01373593506182,38.89208829693511],[-77.01412594501078,38.89208825042224],[-77.01419115978908,38.89208824251761],[-77.01432838182943,38.89208822557948]]],[[[-77.01486331026518,38.89970710488554],[-77.018848834331,38.89974267307977],[-77.01884950160202,38.90092588469442],[-77.02006660500636,38.90093183540675],[-77.02302609835205,38.9009463050841],[-77.02302394672137,38.89974029022419],[-77.02590777668073,38.89972206656086],[-77.02588831066012,38.89738614408804],[-77.02427688914177,38.89738979396691],[-77.02420449987764,38.89738614408804],[-77.0241071697746,38.89734721204683],[-77.02401957268187,38.89729854699531],[-77.02393197558914,38.89723041592319],[-77.02385411150671,38.89720121689228],[-77.02371784936247,38.89719148388198],[-77.02199510653877,38.89719148388198],[-77.02191724245634,38.89720060857913],[-77.02189908188616,38.89721421509704],[-77.02187283559684,38.89725961495409],[-77.02184606981849,38.89729854699531],[-77.02181017934301,38.89732774602622],[-77.02174204827088,38.89733747903652],[-77.02158632010602,38.89733747903652],[-77.02009004847919,38.89733747903652],[-77.02011954032588,38.89281578518257],[-77.02069090872386,38.89300165921121],[-77.02075612433624,38.89300164764143],[-77.02192600700897,38.89330602973543],[-77.02309617204321,38.89366176560751],[-77.02335628614436,38.89371208012291],[-77.02387627702169,38.89386447275869],[-77.02394123767164,38.89386445946293],[-77.02602120536082,38.89442303983888],[-77.0270614666879,38.89472739923617],[-77.0281014811363,38.89503174941475],[-77.02881665366245,38.89523503873073],[-77.02959679209762,38.89543770762224],[-77.02985666175275,38.89548860730959],[-77.02998658600796,38.89548857403049],[-77.03018172814693,38.89548852377481],[-77.0307666430494,38.89548837118662],[-77.0319367286031,38.89548805715403],[-77.03356155231867,38.89549459694773],[-77.03356155409033,38.8954983628311],[-77.03356155625028,38.89550295408399],[-77.03356155921111,38.89550924767648],[-77.03356156293637,38.89551716620771],[-77.03356156738971,38.8955266322768],[-77.03356157253465,38.8955375684829],[-77.03356157833481,38.89554989742508],[-77.03356158475378,38.89556354170239],[-77.03356159175512,38.8955784239141],[-77.03356159930246,38.89559446665919],[-77.03356160735936,38.89561159253682],[-77.03356161588941,38.89562972414612],[-77.03356162485622,38.89564878408619],[-77.03356163422333,38.89566869495614],[-77.03356164395437,38.89568937935513],[-77.0335616540129,38.89571075988216],[-77.03356166436252,38.89573275913646],[-77.03356167496683,38.89575529971718],[-77.03356168578938,38.89577830422332],[-77.0335616967938,38.89580169525404],[-77.03356170794365,38.89582539540852],[-77.03356171920251,38.8958493272858],[-77.03356173053398,38.89587341348503],[-77.03356174190165,38.89589757660537],[-77.0335617532691,38.89592173924598],[-77.03356176459994,38.89594582400589],[-77.03356177585772,38.89596975348429],[-77.03356178700604,38.89599345028025],[-77.03356179800848,38.89601683699298],[-77.03356180882864,38.89603983622162],[-77.03356181943008,38.89606237056525],[-77.03356182977643,38.89608436262303],[-77.03356183983124,38.89610573499406],[-77.03356184955813,38.89612641027755],[-77.03356185892061,38.89614631107256],[-77.03356186788234,38.89616535997825],[-77.03356187640688,38.89618347959382],[-77.03356188445782,38.89620059251838],[-77.03356189199876,38.89621662135099],[-77.03356189899324,38.89623148869096],[-77.03356190540487,38.89624511713725],[-77.03356191119725,38.89625742928914],[-77.03356191633395,38.89626834774568],[-77.03356192077857,38.89627779510606],[-77.03356192449468,38.89628569396946],[-77.03356192744586,38.89629196693492],[-77.03356192959569,38.89629653660161],[-77.03356193090781,38.89629932556871],[-77.03356193134574,38.89630025643533],[-77.03356197920664,38.89640198817585],[-77.03362694216507,38.89640196949383],[-77.03362701404851,38.8965544671682],[-77.03362706200238,38.89665619890411],[-77.03362720558218,38.89696079450309],[-77.03362732523294,38.89721462415636],[-77.03362737318768,38.89731635588028],[-77.03362744507297,38.89746885352979],[-77.03362778019626,38.89817977633133],[-77.03362785208327,38.89833227395734],[-77.03362790003952,38.898434005661],[-77.03362794780749,38.89853533763117],[-77.03362799576401,38.89863706933112],[-77.03362804362646,38.89873860116342],[-77.03362806765197,38.8987895669447],[-77.03361059085242,38.90622182536342],[-77.03356659216982,38.90620580136412],[-77.03233143053613,38.90579982298488],[-77.03226622618925,38.90585060686838],[-77.03220130037128,38.90595195662928],[-77.03213632871476,38.90595197451845],[-77.03207135705824,38.90595199237153],[-77.032071379884,38.90600275822145],[-77.0320064081812,38.90600277603836],[-77.03194143647835,38.90600279381918],[-77.03187620898137,38.90600281163365],[-77.03181149307255,38.90600282927242],[-77.03181147043176,38.90595206342246],[-77.03174624298114,38.90595208116439],[-77.0316812713244,38.90595209880048],[-77.03161627734295,38.90590175028112],[-77.03155130573201,38.90590176784495],[-77.03155128318802,38.90585080212847],[-77.03155126073246,38.90580003627706],[-77.03148628921417,38.90580005380477],[-77.03148626671666,38.90574908808732],[-77.0314862443074,38.90569832223495],[-77.03148622189815,38.90564755638211],[-77.03148619940075,38.90559659066327],[-77.03155112599974,38.90549544115878],[-77.02999057942674,38.90498779381058],[-77.02960069138634,38.90483519591574],[-77.02888540005706,38.90458174548274],[-77.02836530008369,38.90437840970633],[-77.02804015318343,38.90427675658912],[-77.02771500744285,38.90417570216205],[-77.02752007766068,38.90412478250356],[-77.02706495479531,38.90392162546517],[-77.02699998498696,38.90392164049803],[-77.02680480062304,38.90387071970292],[-77.02660985338593,38.90376903265211],[-77.02628471198607,38.90366797423515],[-77.02595957128929,38.90356631531459],[-77.02569940091168,38.90346464121385],[-77.02524456119441,38.90331224287922],[-77.02485443689096,38.90316022875165],[-77.02452930054697,38.90305856584132],[-77.02433412037669,38.9030078407763],[-77.02413919619956,38.90295691546625],[-77.02413893837337,38.90219502749845],[-77.02192870820944,38.90209393149024],[-77.02166883563062,38.90209397997977],[-77.02166882014866,38.90204301422664],[-77.02160359627041,38.90204302630602],[-77.02153862817205,38.90204303830178],[-77.02121350182446,38.9019419657403],[-77.0208886170774,38.90178932687375],[-77.02075866656908,38.9017385841437],[-77.02069344296902,38.90173859571492],[-77.02043354254258,38.90163690980891],[-77.02023836917489,38.9015861778884],[-77.02006263316666,38.90154079839853],[-77.02004345197524,38.90153584532892],[-77.01997847006442,38.90148489069868],[-77.01991350247411,38.9014849017907],[-77.01978329743632,38.90143415801651],[-77.01971831580398,38.90138320324063],[-77.01952339941651,38.90133247008016],[-77.01945843196496,38.90133248091917],[-77.01913329802609,38.90118003706287],[-77.01906833071332,38.90118004768493],[-77.01893812678016,38.90112910310026],[-77.01880817896749,38.90107875792607],[-77.01874321174691,38.90107876836728],[-77.01861326405921,38.90102802324434],[-77.01848306072853,38.90097707815115],[-77.01815819919211,38.90087539742983],[-77.01815818626953,38.90082463153091],[-77.01770313632197,38.90072296970427],[-77.01653287067975,38.9003168140835],[-77.01640292595252,38.90026606649508],[-77.01620774771321,38.9001647617891],[-77.01594785941545,38.90006306587533],[-77.0155577837231,38.89996158665746],[-77.01516769826141,38.89980894049523],[-77.01486331026518,38.89970710488554]]]],"type":"MultiPolygon"} +},{ + "id": 1108723543, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":513268.373433, + "geom:bbox":"-77.0020054376,38.8827080638,-76.9914289018,38.889946893", + "geom:latitude":38.88724, + "geom:longitude":-76.995948, + "iso:country":"US", + "lbl:latitude":38.882305, + "lbl:longitude":-76.994224, + "lbl:max_zoom":18.0, + "mps:latitude":38.88724, + "mps:longitude":-76.995948, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Easternmarket" + ], + "name:rus_x_preferred":[ + "\u0418\u0441\u0442\u0435\u0440\u043d-\u041c\u0430\u0440\u043a\u0435\u0442" + ], + "reversegeo:latitude":38.88724, + "reversegeo:longitude":-76.995948, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85809405, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"805e35de7cc0f5cdedfc568ae5288ef5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723543, + "neighbourhood_id":85809405, + "region_id":85688741 + } + ], + "wof:id":1108723543, + "wof:lastmodified":1566623883, + "wof:name":"Eastern Market", + "wof:parent_id":85809405, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866873 + ], + "wof:tags":[] +}, + "bbox": [ + -77.00200543756952, + 38.88270806382553, + -76.99142890183346, + 38.88994689298294 +], + "geometry": {"coordinates":[[[[-77.00200543756952,38.88703783938288],[-77.00199689341351,38.88760069360506],[-77.00199694080085,38.88929376008088],[-77.00199804276613,38.88988725109062],[-76.99264542528275,38.88994002811464],[-76.99218650679367,38.88994261780166],[-76.99142890183346,38.88994689298294],[-76.99142893192976,38.88919027407184],[-76.99142918977503,38.88270806382553],[-77.00200543756952,38.88703783938288]]]],"type":"MultiPolygon"} +},{ + "id": 1108723547, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":68560.349429, + "geom:bbox":"-77.0005132096,38.9223479595,-76.996161529,38.9251035796", + "geom:latitude":38.923351, + "geom:longitude":-76.997956, + "iso:country":"US", + "lbl:latitude":38.923452, + "lbl:longitude":-76.997674, + "lbl:max_zoom":18.0, + "mps:latitude":38.923341, + "mps:longitude":-76.997779, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Edgewood Ter" + ], + "reversegeo:latitude":38.923341, + "reversegeo:longitude":-76.997779, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85817535, + 102191575, + 1108723667, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4ce61ac9ecd3e10007d0eceacc0d5e27", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723667, + "microhood_id":1108723547, + "neighbourhood_id":85817535, + "region_id":85688741 + } + ], + "wof:id":1108723547, + "wof:lastmodified":1566623883, + "wof:name":"Edgewood Terrace", + "wof:parent_id":85817535, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85817573 + ], + "wof:tags":[] +}, + "bbox": [ + -77.00051320955012, + 38.92234795950802, + -76.99616152899304, + 38.92510357961294 +], + "geometry": {"coordinates":[[[[-77.00051067328151,38.92237041343894],[-77.00051320955012,38.92303133577649],[-76.99616628266112,38.92510357961294],[-76.99616152899304,38.92291847929184],[-76.99714206518128,38.92242241933388],[-76.99720039091699,38.92240049321579],[-76.99728439235747,38.92237807833889],[-76.99741476890719,38.92235904136791],[-76.99754887483937,38.92235146847062],[-76.99769662502727,38.92234795950802],[-76.99810021408479,38.92234854018456],[-76.99883581510652,38.92235475842527],[-77.00051067328151,38.92237041343894]]]],"type":"MultiPolygon"} +},{ + "id": 1108723549, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000096, + "geom:area_square_m":924026.677294, + "geom:bbox":"-77.0862469765,38.9093355561,-77.0436211573,38.9383209098", + "geom:latitude":38.922043, + "geom:longitude":-77.063832, + "iso:country":"US", + "lbl:latitude":38.91599, + "lbl:longitude":-77.056121, + "lbl:max_zoom":18.0, + "mps:latitude":38.919103, + "mps:longitude":-77.062075, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:nor_x_preferred":[ + "Embassy Row" + ], + "name:por_x_preferred":[ + "Embassy Row" + ], + "reversegeo:latitude":38.919103, + "reversegeo:longitude":-77.062075, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869563, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"3ac7906b3ecbb38b96d0814c8438fc20", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723549, + "neighbourhood_id":85869563, + "region_id":85688741 + } + ], + "wof:id":1108723549, + "wof:lastmodified":1566623883, + "wof:name":"Embassy Row", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85888509 + ], + "wof:tags":[] +}, + "bbox": [ + -77.08624697654427, + 38.90933555606961, + -77.04362115734266, + 38.93832090981076 +], + "geometry": {"coordinates":[[[[-77.08624697654427,38.93728906150152],[-77.08542521255826,38.93832090981076],[-77.08493915734266,38.93797769517644],[-77.08484315734266,38.93791569517644],[-77.08480615734265,38.93789369517644],[-77.08434815734266,38.93756769517645],[-77.08417015734265,38.93743969517644],[-77.08408815734266,38.93738069517644],[-77.08374515734266,38.93712869517644],[-77.08371015734267,38.93710269517644],[-77.08368115734265,38.93708269517644],[-77.08350515734266,38.93695369517644],[-77.08308415734265,38.93664769517644],[-77.08283215734266,38.93646169517644],[-77.08146715734266,38.93546669517644],[-77.08128215734266,38.93533069517644],[-77.08121715734266,38.93528269517644],[-77.08103915734266,38.93515369517644],[-77.08082815734267,38.93499869517644],[-77.08035215734266,38.93465169517644],[-77.07967815734266,38.93415869517644],[-77.07957415734266,38.93408369517644],[-77.07937415734266,38.93393869517644],[-77.07933115734266,38.93390569517644],[-77.07921715734265,38.93382269517645],[-77.07860715734266,38.93337569517644],[-77.07824215734266,38.93310969517644],[-77.07774315734265,38.93274369517644],[-77.07754815734266,38.93260069517644],[-77.07712315734265,38.93229169517645],[-77.07670115734265,38.93198269517644],[-77.07662715734266,38.93192969517644],[-77.07646115734266,38.93180269517645],[-77.07632215734266,38.93170669517644],[-77.07580315734266,38.93132569517644],[-77.07436115734266,38.93027369517644],[-77.07418815734266,38.93013869517644],[-77.07405215734266,38.93004769517644],[-77.07358915734265,38.92970869517644],[-77.07332215734266,38.92951569517644],[-77.07318815734267,38.92941669517644],[-77.07297515734265,38.92925769517644],[-77.07278415734265,38.92912069517644],[-77.07261415734266,38.92900169517644],[-77.07241515734266,38.92886269517644],[-77.07227715734267,38.92875369517644],[-77.07213615734265,38.92864569517644],[-77.07206515734266,38.92859269517644],[-77.07184915734265,38.92843469517644],[-77.07170315734265,38.92833169517644],[-77.07147515734266,38.92816869517645],[-77.07113115734266,38.92791669517644],[-77.07100815734266,38.92782669517644],[-77.07059215734266,38.92751669517644],[-77.06566708692591,38.92751324376125],[-77.06563565812448,38.92475428279339],[-77.06562662374803,38.9246865022912],[-77.06554215734266,38.92466369517644],[-77.06546015734266,38.92464469517644],[-77.06538415734268,38.92462869517644],[-77.06534815734265,38.92461869517644],[-77.06530815734266,38.92460969517644],[-77.06522315734266,38.92458869517644],[-77.06519315734266,38.92457869517644],[-77.06512115734266,38.92455769517644],[-77.06509415734266,38.92454769517644],[-77.06502715734266,38.92452569517645],[-77.06500015734267,38.92451569517644],[-77.06496915734266,38.92450569517644],[-77.06493015734266,38.92448969517644],[-77.06488015734266,38.92447569517644],[-77.06469915734266,38.92439969517644],[-77.06457615734266,38.92434969517645],[-77.06448515734266,38.92430569517644],[-77.06438115734267,38.92425269517644],[-77.06427315734265,38.92419169517644],[-77.06416315734266,38.92412669517644],[-77.06411415734266,38.92409569517644],[-77.06406115734266,38.92406369517644],[-77.06397215734266,38.92400269517644],[-77.06392615734266,38.92396969517644],[-77.06379715734266,38.92387169517644],[-77.06368515734266,38.92377869517644],[-77.06355215734266,38.92365769517645],[-77.06351715734266,38.92362269517644],[-77.06348115734266,38.92358869517644],[-77.06335415734266,38.92344469517644],[-77.06330915734266,38.92339069517644],[-77.06327315734266,38.92334269517644],[-77.06324015734266,38.92330269517644],[-77.06320215734266,38.92324969517644],[-77.06316915734266,38.92320569517644],[-77.06311215734266,38.92311569517644],[-77.06304815734266,38.92300869517645],[-77.06302015734266,38.92295969517644],[-77.06300015734266,38.92291669517644],[-77.06297815734266,38.92288069517645],[-77.06296415734266,38.92284669517644],[-77.06291615734266,38.92274869517644],[-77.06288415734267,38.92267169517644],[-77.06285215734266,38.92258669517644],[-77.06282515734266,38.92250669517644],[-77.06279815734266,38.92241369517645],[-77.06277415734266,38.92231069517644],[-77.06274815734265,38.92218269517645],[-77.06270815734266,38.92204969517644],[-77.06268315734266,38.92198669517644],[-77.06265215734265,38.92192769517644],[-77.06258615734266,38.92179669517644],[-77.06256115734266,38.92174669517645],[-77.06247115734266,38.92163469517644],[-77.06238015734266,38.92153869517644],[-77.06235215734267,38.92151169517644],[-77.06228415734266,38.92145369517644],[-77.06224415734266,38.92142169517644],[-77.06165715734267,38.92098869517644],[-77.06094515734266,38.92047069517644],[-77.06080315734266,38.92036569517645],[-77.06067415734266,38.92027169517644],[-77.06022715734268,38.91994269517645],[-77.05996315734266,38.91975169517644],[-77.05955115734265,38.91944769517644],[-77.05942415734266,38.91935669517644],[-77.05928215734266,38.91925269517644],[-77.05915615734266,38.91916169517644],[-77.05903315734265,38.91907769517644],[-77.05898015734266,38.91903569517644],[-77.05888715734265,38.91896369517644],[-77.05879115734265,38.91889669517644],[-77.05870015734266,38.91882969517644],[-77.05853615734266,38.91870369517644],[-77.05834615734265,38.91857469517644],[-77.05824815734266,38.91850369517644],[-77.05794315734266,38.91827669517644],[-77.05781215734265,38.91818069517644],[-77.05777215734265,38.91815269517645],[-77.05771015734265,38.91810669517644],[-77.05765315734266,38.91806569517644],[-77.05753015734265,38.91797869517644],[-77.05750849233483,38.91795669517644],[-77.05713557613883,38.91772191157173],[-77.05538217942964,38.91798175098362],[-77.05523703545406,38.91790804151032],[-77.05594864300666,38.91728483038073],[-77.05497520926907,38.91659115786428],[-77.0546192510063,38.91633292854532],[-77.0545468334835,38.91630288824977],[-77.05446168876867,38.91628734842487],[-77.05261713402354,38.91626762176229],[-77.05265793111465,38.91409197336226],[-77.04800036682038,38.91410819341641],[-77.04789863529984,38.9141015477242],[-77.04780199090014,38.91408472257441],[-77.04771333156836,38.91404910415708],[-77.04761890372041,38.91400074703175],[-77.04743063653071,38.91388778738462],[-77.04693139436753,38.91360714925248],[-77.04755164126561,38.91262714449085],[-77.04761358200562,38.91254775927305],[-77.04768283616214,38.91246840016152],[-77.0478856020157,38.91227197004199],[-77.04827149731138,38.91190311007702],[-77.04800815734266,38.91180969517644],[-77.04787815734268,38.91176569517644],[-77.04717715734266,38.91151969517644],[-77.04619415734265,38.91117769517644],[-77.04608315734266,38.91113969517644],[-77.04520115734266,38.91083269517645],[-77.04456715734266,38.91061069517644],[-77.04433915734266,38.91053269517645],[-77.04393615734266,38.91039469517644],[-77.04362115734266,38.91028569517644],[-77.04377814153057,38.91024542138343],[-77.0439151021949,38.91021118121735],[-77.04407488963663,38.91014270088518],[-77.04422326368966,38.91003998038693],[-77.04429745071617,38.90994581993019],[-77.0443373975766,38.90983453939043],[-77.0443488109653,38.90967475194871],[-77.0443373975766,38.90952637789568],[-77.04429454727564,38.90933555606961],[-77.04514597654428,38.90963106150151],[-77.04554897654428,38.90976906150151],[-77.04577697654427,38.90984706150152],[-77.04641097654428,38.91006906150152],[-77.04729297654428,38.91037606150152],[-77.04740397654427,38.91041406150151],[-77.04838697654429,38.91075606150152],[-77.04908797654429,38.91100206150152],[-77.04921797654428,38.91104606150152],[-77.04945197654428,38.91112806150151],[-77.05004097654428,38.91133106150151],[-77.05022597654428,38.91139706150151],[-77.05095497654428,38.91165006150151],[-77.05116899165023,38.91174121801161],[-77.05137554269872,38.91185426081698],[-77.05160097654428,38.91200506150151],[-77.05193897654428,38.91223606150152],[-77.05209197654428,38.91234106150151],[-77.05229597654429,38.91249106150151],[-77.0525449765443,38.91267206150151],[-77.05287597654429,38.91291506150151],[-77.05301897654428,38.91302006150151],[-77.05323997654428,38.91317906150152],[-77.05333197654429,38.91324706150152],[-77.05389297654428,38.91366006150152],[-77.05408997654428,38.91380606150151],[-77.05434697654428,38.91399206150152],[-77.05461097654428,38.91418506150151],[-77.05489497654428,38.91438906150152],[-77.05540397654428,38.91476206150151],[-77.05563697654428,38.91493006150152],[-77.05581197654428,38.91506406150151],[-77.05591397654428,38.91513806150152],[-77.05603597654428,38.91522706150151],[-77.05607697654428,38.91525606150152],[-77.05645197654428,38.91553206150152],[-77.05684297654427,38.91581806150151],[-77.05714097654429,38.91603406150151],[-77.05742897654427,38.91624906150151],[-77.05751597654428,38.91631006150151],[-77.05758797654428,38.91636206150152],[-77.05787897654427,38.91657906150152],[-77.05801697654428,38.91668706150151],[-77.05814997654429,38.91679306150152],[-77.05831397654428,38.91691406150152],[-77.05844697654427,38.91700406150152],[-77.05855097654428,38.91707806150151],[-77.05866297654428,38.91715906150151],[-77.05871097654428,38.91719306150151],[-77.05873997654427,38.91721506150152],[-77.05886297654428,38.91730206150152],[-77.05891997654429,38.91734306150151],[-77.05898197654427,38.91738906150152],[-77.05902197654427,38.91741706150151],[-77.05915297654428,38.91751306150152],[-77.05928561483192,38.91761177917789],[-77.0599541835461,38.91659031192798],[-77.061259874456,38.91677561577571],[-77.06379215635833,38.91716232832372],[-77.06390121044193,38.91852442011638],[-77.06456648692719,38.91855782690381],[-77.064678115962,38.91857069328554],[-77.06472485898784,38.91858632096967],[-77.06476834671848,38.91860427307491],[-77.06487989583268,38.91868126125554],[-77.06493770234425,38.91872595202834],[-77.06497616873372,38.91876794502796],[-77.065000870451,38.91882437748365],[-77.0650029201941,38.91885162390235],[-77.06499857772999,38.91888260611977],[-77.06498802099121,38.91890690939306],[-77.06497053480702,38.9189273340514],[-77.06467580352584,38.91909174328573],[-77.06449661500535,38.91922270742234],[-77.06432417982049,38.91937950034397],[-77.06410501197239,38.91962480772168],[-77.06387694474738,38.91990417854451],[-77.06366198781572,38.92020479658564],[-77.06356577582133,38.92036351712422],[-77.06349693218779,38.9205273800658],[-77.06345397654428,38.92065806150151],[-77.06349397654428,38.92069006150151],[-77.06356197654428,38.92074806150151],[-77.06358997654428,38.92077506150152],[-77.06368097654428,38.92087106150151],[-77.06377097654428,38.92098306150152],[-77.06379597654428,38.92103306150151],[-77.06386197654427,38.92116406150151],[-77.06389297654428,38.92122306150151],[-77.06391797654427,38.92128606150151],[-77.06395797654427,38.92141906150152],[-77.06398397654428,38.92154706150151],[-77.06400797654427,38.92165006150152],[-77.06403497654428,38.92174306150152],[-77.06406197654428,38.92182306150151],[-77.06409397654429,38.92190806150151],[-77.06412597654428,38.92198506150152],[-77.06417397654428,38.92208306150151],[-77.06418797654428,38.92211706150152],[-77.06420997654428,38.92215306150151],[-77.06422997654428,38.92219606150152],[-77.06425797654428,38.92224506150151],[-77.06432197654428,38.92235206150152],[-77.06437897654428,38.92244206150151],[-77.06441197654428,38.92248606150152],[-77.06444997654428,38.92253906150151],[-77.06448297654428,38.92257906150152],[-77.06451897654428,38.92262706150152],[-77.06456397654428,38.92268106150151],[-77.06469097654428,38.92282506150151],[-77.06472697654428,38.92285906150151],[-77.06476197654428,38.92289406150152],[-77.06489497654428,38.92301506150152],[-77.06500697654428,38.92310806150152],[-77.06513597654428,38.92320606150151],[-77.06518197654428,38.92323906150151],[-77.06527097654428,38.92330006150151],[-77.06532397654428,38.92333206150151],[-77.06537297654428,38.92336306150151],[-77.06548297654427,38.92342806150151],[-77.06559097654429,38.92348906150151],[-77.06569497654428,38.92354206150151],[-77.06578597654428,38.92358606150152],[-77.06590897654428,38.92363606150151],[-77.06608997654428,38.92371206150151],[-77.06613997654428,38.92372606150151],[-77.06617897654428,38.92374206150151],[-77.06620997654429,38.92375206150151],[-77.06623697654427,38.92376206150151],[-77.06630397654428,38.92378406150151],[-77.06633097654428,38.92379406150151],[-77.06640297654428,38.92381506150151],[-77.06643297654428,38.92382506150151],[-77.06651797654428,38.92384606150151],[-77.06655797654427,38.92385506150151],[-77.06659397654428,38.92386506150152],[-77.06666997654428,38.92388106150151],[-77.06675197654428,38.92390006150151],[-77.06688697654428,38.92392406150152],[-77.0670149765443,38.92395006150151],[-77.06715097654428,38.92396506150151],[-77.06729397654428,38.92397506150152],[-77.06750797654428,38.92399306150151],[-77.06757897654428,38.92400206150151],[-77.06769797654428,38.92402106150151],[-77.06774297654428,38.92403006150151],[-77.06783197654428,38.92405106150152],[-77.06788597654428,38.92406606150151],[-77.06803397654429,38.92411206150151],[-77.06824097654427,38.92420106150151],[-77.06828197654428,38.92422106150151],[-77.06835497654428,38.92425906150152],[-77.06845997654428,38.92432106150152],[-77.06849297654429,38.92434306150151],[-77.06854197654428,38.92437906150151],[-77.06935597654427,38.92496806150152],[-77.06973497654428,38.92524406150152],[-77.07005697654428,38.92548006150151],[-77.07036097654428,38.92570706150151],[-77.07050897654428,38.92580806150151],[-77.07079597654428,38.92602306150151],[-77.07154697654428,38.92657006150151],[-77.07180197654428,38.92675306150151],[-77.07221797654428,38.92706306150151],[-77.07234097654428,38.92715306150151],[-77.07268497654428,38.92740506150152],[-77.07291297654429,38.92756806150151],[-77.07305897654427,38.92767106150151],[-77.07327497654428,38.92782906150151],[-77.07334597654427,38.92788206150151],[-77.07348697654427,38.92799006150151],[-77.07362497654428,38.92809906150151],[-77.07382397654429,38.92823806150151],[-77.07399397654427,38.92835706150152],[-77.07418497654427,38.92849406150151],[-77.07439797654428,38.92865306150151],[-77.07453197654428,38.92875206150151],[-77.07479897654427,38.92894506150152],[-77.07526197654428,38.92928406150152],[-77.07539797654428,38.92937506150151],[-77.07557097654428,38.92951006150151],[-77.07701297654428,38.93056206150151],[-77.07753197654428,38.93094306150152],[-77.0776709765443,38.93103906150152],[-77.07783697654428,38.93116606150151],[-77.07791097654427,38.93121906150152],[-77.07833297654427,38.93152806150152],[-77.0787579765443,38.93183706150151],[-77.07895297654427,38.93198006150151],[-77.07945197654429,38.93234606150151],[-77.07981697654428,38.93261206150152],[-77.08042697654427,38.93305906150152],[-77.08054097654428,38.93314206150151],[-77.08058397654428,38.93317506150152],[-77.08078397654428,38.93332006150151],[-77.08088797654428,38.93339506150151],[-77.08156197654428,38.93388806150151],[-77.08203797654429,38.93423506150151],[-77.08224897654428,38.93439006150151],[-77.08242697654428,38.93451906150151],[-77.08249197654428,38.93456706150151],[-77.08267697654428,38.93470306150152],[-77.0840419765443,38.93569806150151],[-77.08429397654427,38.93588406150151],[-77.08471497654428,38.93619006150151],[-77.08489097654427,38.93631906150151],[-77.08491997654428,38.93633906150151],[-77.08495497654428,38.93636506150151],[-77.08529797654428,38.93661706150152],[-77.08537997654427,38.93667606150152],[-77.08555797654428,38.93680406150151],[-77.08601597654427,38.93713006150151],[-77.08605297654428,38.93715206150151],[-77.08614897654428,38.93721406150151],[-77.08624697654427,38.93728906150152]]]],"type":"MultiPolygon"} +},{ + "id": 1108723605, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":12579.614539, + "geom:bbox":"-77.0395031407,38.9012913034,-77.0384616865,38.9025656898", + "geom:latitude":38.901929, + "geom:longitude":-77.038983, + "iso:country":"US", + "lbl:latitude":38.901767, + "lbl:longitude":-77.045101, + "lbl:max_zoom":18.0, + "mps:latitude":38.901929, + "mps:longitude":-77.038984, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Farragut Square" + ], + "name:eng_x_variant":[ + "Farragut Sq" + ], + "name:nld_x_preferred":[ + "Farragut Square" + ], + "name:zho_x_preferred":[ + "\u6cd5\u62c9\u683c\u7279\u5e7f\u573a" + ], + "reversegeo:latitude":38.901929, + "reversegeo:longitude":-77.038984, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e88eb05fd5c51cb76182663d28ca8627", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723605, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723605, + "wof:lastmodified":1566623911, + "wof:name":"Farragut Square", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85819011 + ], + "wof:tags":[] +}, + "bbox": [ + -77.03950314074102, + 38.90129130341575, + -77.03846168649122, + 38.9025656898424 +], + "geometry": {"coordinates":[[[[-77.03950314074102,38.90129602570021],[-77.03949285232883,38.90256207404118],[-77.03846168649122,38.9025656898424],[-77.03847598854298,38.90129130341575],[-77.03950314074102,38.90129602570021]]]],"type":"MultiPolygon"} +},{ + "id": 1108723607, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":210410.473689, + "geom:bbox":"-76.9305782899,38.8918634148,-76.9256592573,38.8983666067", + "geom:latitude":38.895471, + "geom:longitude":-76.928461, + "iso:country":"US", + "lbl:latitude":38.895466, + "lbl:longitude":-76.928461, + "lbl:max_zoom":18.0, + "mps:latitude":38.895466, + "mps:longitude":-76.928461, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Lincoln Heights" + ], + "reversegeo:latitude":38.895466, + "reversegeo:longitude":-76.928461, + "src:geom":"mz", + "wof:belongsto":[ + 85869341, + 102191575, + 1108723667, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6550702" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a512464ed3df1bb9e1bfafed43b7d531", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723667, + "microhood_id":1108723607, + "neighbourhood_id":85869341, + "region_id":85688741 + } + ], + "wof:id":1108723607, + "wof:lastmodified":1566623911, + "wof:name":"Lincoln Heights", + "wof:parent_id":85869341, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420510995, + 420781755 + ], + "wof:tags":[] +}, + "bbox": [ + -76.93057828992893, + 38.89186341478749, + -76.9256592572682, + 38.89836660672969 +], + "geometry": {"coordinates":[[[[-76.93035377810125,38.89226611483794],[-76.93038678667385,38.89279031747147],[-76.93039392492548,38.89297432357925],[-76.93040621592571,38.89419880365716],[-76.93043079792618,38.89469624265868],[-76.93043387067618,38.89484571283177],[-76.93043694342627,38.8949043050536],[-76.93045537992664,38.89498322511315],[-76.93049071655228,38.89509921352614],[-76.93054141692824,38.89521281024182],[-76.93056868814062,38.89529332824927],[-76.93057828992893,38.89548065862051],[-76.9305659989287,38.89628419769551],[-76.92993608516697,38.89629137211059],[-76.9299330124169,38.89690836909647],[-76.92992686691679,38.89720251693417],[-76.92992686691679,38.89753731786934],[-76.92991841685405,38.89774357837393],[-76.9298930666661,38.8979271198266],[-76.92983350372337,38.89812692766729],[-76.92976202754745,38.89831599889667],[-76.92975464315808,38.89831599445843],[-76.92968916693854,38.89831595506878],[-76.929624713785,38.8983159162587],[-76.92955949333208,38.89831587695043],[-76.92949452864572,38.89831583776009],[-76.92942930819294,38.89831579837916],[-76.92936434350671,38.89831575911644],[-76.92929937882056,38.89831571981756],[-76.92916919368197,38.8983156409564],[-76.92916914307735,38.89836660672969],[-76.92877909891766,38.89836636958742],[-76.92851949575707,38.89836621102993],[-76.92832434579573,38.89836609145866],[-76.92793455740835,38.89836585165357],[-76.92754400172362,38.89836561007201],[-76.92747954852638,38.8983655700784],[-76.92741432802927,38.89836552957252],[-76.92734936329887,38.89836548918922],[-76.92728439856859,38.89836544876984],[-76.92702453964804,38.89836528673101],[-76.92682938969176,38.89836516466242],[-76.9265045660439,38.89836496075836],[-76.92617923086458,38.89836475562802],[-76.92585440722043,38.89836454991621],[-76.92578944249183,38.89836450866544],[-76.92565925726819,38.89836442589286],[-76.92572438098583,38.89821176976515],[-76.92572443384334,38.89816100385788],[-76.92578986518821,38.89795818153894],[-76.92591985507238,38.897653068779],[-76.92598513518263,38.89734851447527],[-76.92605020444336,38.89724682392029],[-76.92611552928086,38.89714513348901],[-76.92611563402353,38.89704400138584],[-76.92611568680873,38.89699303560193],[-76.92624623692716,38.89663775642605],[-76.92624628961876,38.89658679063838],[-76.9263113051674,38.89653606571276],[-76.92631135781245,38.89648509992413],[-76.92631141025096,38.8964343340009],[-76.92637647821279,38.89633264324765],[-76.9264412898179,38.89623135202696],[-76.92650697352491,38.89602812966598],[-76.92650713062753,38.89587563201643],[-76.92657163403321,38.89582470675186],[-76.92657173812734,38.89572357462451],[-76.92663700862042,38.89567264980471],[-76.92670223210793,38.89541846119407],[-76.92676755372629,38.89531736996276],[-76.92676765815744,38.89521563822845],[-76.92683272435733,38.89511394719905],[-76.92689784239188,38.89496149019475],[-76.92696275616333,38.89475846691739],[-76.92702843702875,38.89455524421005],[-76.9270285406779,38.89445391219355],[-76.92709304222166,38.89440318649412],[-76.92709319827216,38.89425048893384],[-76.92722358293737,38.89404770619656],[-76.92728911034038,38.89374275139639],[-76.92735417404661,38.89364145978181],[-76.9273542259445,38.89359049396652],[-76.92741934147401,38.89343803663037],[-76.92748476366857,38.89323521319184],[-76.92754941885745,38.89303178963569],[-76.92761473769845,38.89293009828994],[-76.92761484071525,38.89282856637778],[-76.92767985206849,38.89277764079071],[-76.92774512020425,38.89247308523978],[-76.9278756541392,38.89211760409206],[-76.92794097147629,38.89201611241344],[-76.9279410229538,38.89196514658324],[-76.92794107422937,38.89191438061861],[-76.92794112570675,38.89186341478749],[-76.92807048045509,38.89191446037601],[-76.92813620654213,38.89191450083033],[-76.92820065391166,38.89191454046167],[-76.92826556172366,38.89196534633638],[-76.928265510478,38.89201631216669],[-76.92852585776357,38.89201647175823],[-76.9285907658999,38.89206727745132],[-76.92891556088024,38.89206747555485],[-76.92917534646844,38.89211839935128],[-76.92924030551123,38.89211843871914],[-76.92937042888487,38.89216948333056],[-76.92963077673184,38.89216964045947],[-76.92969522433265,38.89216967926619],[-76.92976069491131,38.89216971865257],[-76.92982534832181,38.89222052350445],[-76.92989030745795,38.89222056251085],[-76.92995526659416,38.89222060148108],[-76.93002048147507,38.89222064056845],[-76.93008544061141,38.89222067946633],[-76.93015065549247,38.89222071848104],[-76.93035377810125,38.89226611483794]]]],"type":"MultiPolygon"} +},{ + "id": 1108723609, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":12539.76263, + "geom:bbox":"-77.0346442188,38.9012902187,-77.0336191746,38.9025714669", + "geom:latitude":38.901929, + "geom:longitude":-77.034131, + "iso:country":"US", + "lbl:latitude":38.897924, + "lbl:longitude":-77.035678, + "lbl:max_zoom":18.0, + "mps:latitude":38.90193, + "mps:longitude":-77.034128, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "McPherson Square" + ], + "name:eng_x_variant":[ + "Franklin Mcpherson Sq" + ], + "reversegeo:latitude":38.90193, + "reversegeo:longitude":-77.034128, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d65531c5269332262f6a5ec42d2afd81", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723609, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723609, + "wof:lastmodified":1566623911, + "wof:name":"Franklin Mcpherson Square", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85820595 + ], + "wof:tags":[] +}, + "bbox": [ + -77.0346442188336, + 38.90129021865514, + -77.03361917459364, + 38.90257146691302 +], + "geometry": {"coordinates":[[[[-77.03464421883361,38.90129021865514],[-77.03463938055323,38.90256405028019],[-77.03361917459364,38.90257146691302],[-77.03362218105237,38.90129292743642],[-77.03464421883361,38.90129021865514]]]],"type":"MultiPolygon"} +},{ + "id": 1108723611, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000039, + "geom:area_square_m":374508.447576, + "geom:bbox":"-77.0713898511,38.8996946179,-77.0557342947,38.9052321785", + "geom:latitude":38.903606, + "geom:longitude":-77.06244, + "iso:country":"US", + "lbl:latitude":38.903134, + "lbl:longitude":-77.059954, + "lbl:max_zoom":18.0, + "mps:latitude":38.903134, + "mps:longitude":-77.059954, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.903134, + "reversegeo:longitude":-77.059954, + "src:geom":"wapo", + "wapo:quadrant":"NW", + "wapo:subhood":"Waterfront Georgetown", + "wof:belongsto":[ + 85821305, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"574dbfbfce5842b2df4a9532831f2b07", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723611, + "neighbourhood_id":85821305, + "region_id":85688741 + } + ], + "wof:id":1108723611, + "wof:lastmodified":1566623905, + "wof:name":"Waterfront Georgetown", + "wof:parent_id":85821305, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.07138985105931, + 38.8996946179024, + -77.05573429473539, + 38.90523217851597 +], + "geometry": {"coordinates":[[[[-77.05592920771355,38.90523208537128],[-77.0560591496987,38.90523202309418],[-77.05631928945958,38.90523189798306],[-77.0565142024362,38.90523180386239],[-77.05664440021162,38.90523174081062],[-77.05677434219552,38.90523167773807],[-77.05690428417917,38.90523161452096],[-77.05696925517091,38.90523158285821],[-77.05709945294552,38.90523151929933],[-77.05807452939555,38.90523103868227],[-77.05820447137688,38.90523097401911],[-77.05826944236746,38.90523094163333],[-77.05839938434843,38.90523087675339],[-77.05865952410097,38.90523074643148],[-77.05885469286257,38.90523064827779],[-77.05904960583233,38.90523054992727],[-77.05917954781189,38.90523048417962],[-77.05924451880156,38.9052304512516],[-77.05937471657205,38.90523038515719],[-77.05963460052971,38.90523025279419],[-77.05982972653949,38.9051791872968],[-77.06002463936728,38.90517908731961],[-77.06008961030975,38.90517905392165],[-77.06015458125216,38.90517902048755],[-77.06028477892792,38.90517895337895],[-77.06034974987017,38.9051789198363],[-77.06047969175442,38.90517885264261],[-77.06073983131336,38.90517871768873],[-77.06093474413858,38.90517861619323],[-77.06106494181286,38.90517854821525],[-77.06112991275432,38.90517851423875],[-77.06119488369576,38.90517848022612],[-77.06125985463713,38.90517844617735],[-77.06145476746087,38.90517834381431],[-77.06171490701607,38.90517820668929],[-77.06190981983849,38.9051781035671],[-77.06197504657027,38.90517806898507],[-77.06216995939194,38.90517796542883],[-77.06249506988456,38.90517779197574],[-77.06262501176471,38.905177722396],[-77.06268998270471,38.90517768755195],[-77.06282018037558,38.90517761761793],[-77.06288489552426,38.90517758280302],[-77.0629501222551,38.9051775476766],[-77.06308006413438,38.90517747759078],[-77.06340491883144,38.90517730174393],[-77.06366531417014,38.90517716013732],[-77.06392515242942,38.90512625238203],[-77.06412006510661,38.90512614557247],[-77.06438020446619,38.9051260025129],[-77.06464008803383,38.90512585901561],[-77.06483525649978,38.90512575087136],[-77.06503042496514,38.90512564240104],[-77.06509539585649,38.9051256062193],[-77.06516036674778,38.90512557000147],[-77.06529030853015,38.90512549745743],[-77.06535527942124,38.90512546113116],[-77.06568038966658,38.90512527881424],[-77.06594052901984,38.90512513228042],[-77.06600524411935,38.90512509573713],[-77.0661354416909,38.90512502210854],[-77.06626538347128,38.90512494848004],[-77.06646050444543,38.90507387190747],[-77.0667856144528,38.90507368651505],[-77.06704549782488,38.90507353766711],[-77.06717543951051,38.90507346302638],[-77.06756552035651,38.90507323808911],[-77.06769546204104,38.90507316287],[-77.06782565951602,38.90507308735788],[-77.06795560120004,38.90507301184945],[-77.06828071119952,38.90507282229659],[-77.06841065288255,38.90507274628204],[-77.06860556540657,38.90507263198926],[-77.06880073372068,38.90507251722062],[-77.06893062673034,38.9050220745117],[-77.07138985105931,38.905074761288],[-77.07120512250764,38.90425842275211],[-77.07114010177891,38.90420769647781],[-77.07107513172686,38.90420773602101],[-77.07101016167471,38.90420777552809],[-77.07094519162247,38.90420781499904],[-77.07088022157019,38.90420785443381],[-77.07081494572805,38.90415752786446],[-77.0707499757215,38.90415756722682],[-77.07068500571485,38.90415760655308],[-77.07062003570819,38.90415764584321],[-77.07055506570141,38.90415768509721],[-77.07049009569455,38.90415772431508],[-77.07049004532931,38.90410675859464],[-77.0704250753688,38.90410679777637],[-77.07036010540821,38.90410683692194],[-77.07029487966035,38.90410687618525],[-77.07029482963158,38.9040561103299],[-77.0702298597171,38.90405614940304],[-77.07016488980256,38.90405618844005],[-77.07009986980154,38.90400526171941],[-77.07009981991158,38.90395449586301],[-77.07003485008958,38.90395453482773],[-77.06996962448079,38.9039545739095],[-77.06990465465863,38.90395461280179],[-77.0698396848364,38.90395465165795],[-77.06983963513169,38.90390388580099],[-77.0697746653556,38.90390392462098],[-77.06970969557948,38.90390396340484],[-77.06964472580326,38.9039040021526],[-77.06957975602701,38.90390404086423],[-77.06951478625065,38.9039040795397],[-77.0694495606877,38.90390411833111],[-77.06944951106607,38.90385315260794],[-77.06938454133601,38.90385319121098],[-77.06931957160586,38.90385322977794],[-77.06918963214538,38.9038533068034],[-77.06899467385082,38.90380265621236],[-77.06892944838035,38.90380269471341],[-77.06892939913041,38.90375172898908],[-77.06886442949246,38.90375176730291],[-77.0687994598544,38.90375180558061],[-77.0687344902163,38.90375184382214],[-77.06873444168346,38.90370147769404],[-77.06866947209116,38.90370151589948],[-77.06860424671299,38.90370155421894],[-77.06853922834149,38.90365082649213],[-77.06847425879523,38.90365086458893],[-77.06840928924886,38.90365090264969],[-77.06840924037068,38.90359993692373],[-77.06834427087071,38.90359997494831],[-77.06827930137064,38.90360001293672],[-77.06827925277668,38.90354924707584],[-77.06821402753755,38.90354928517749],[-77.06814931386882,38.90354932294428],[-77.06808403998379,38.90349839524634],[-77.06801907057609,38.90349843309006],[-77.06795410116835,38.90349847089767],[-77.06788913176054,38.90349850866913],[-77.06788908344433,38.90344774280714],[-77.06782411408268,38.90344778054243],[-77.06775914472097,38.90344781824163],[-77.06769387139704,38.90339709019035],[-77.0676938230302,38.9033461244618],[-77.06762906141448,38.90329539607698],[-77.06730386390376,38.90319425195359],[-77.06684847307872,38.90309278176018],[-77.06678380753989,38.90314378450189],[-77.0667185826707,38.9031438217686],[-77.0665236278836,38.90309296718202],[-77.06639364255341,38.90304227523154],[-77.06626340162472,38.90299158328106],[-77.06613336941263,38.90288992530675],[-77.06606835390835,38.90283959592864],[-77.06606830670329,38.90278863019429],[-77.0660030821585,38.90278866706156],[-77.0659383691787,38.90278870360368],[-77.06587309775277,38.90273797452915],[-77.06574311334759,38.902687081986],[-77.06567814467762,38.90268711852794],[-77.06554816068787,38.90263642563309],[-77.06548293628195,38.90263646220995],[-77.06548288967879,38.90258569633913],[-77.06541792110106,38.90258573273637],[-77.06535295252324,38.90258576909745],[-77.06528793729804,38.9025348396854],[-77.06522296876652,38.90253487597421],[-77.06515795386308,38.90248414635499],[-77.06509298537767,38.90248418257153],[-77.06509293886974,38.90243321683351],[-77.06502797043065,38.90243325301388],[-77.06496274621026,38.90243328930034],[-77.06489777777107,38.9024333254083],[-77.06489773194815,38.90238295926672],[-77.06483276355476,38.9023829953385],[-77.06483280933182,38.90243336148016],[-77.0647678408925,38.90243339751586],[-77.06444269741198,38.90238321115175],[-77.06366268479924,38.90223114124316],[-77.06320730530274,38.90212965683929],[-77.0628821639523,38.90207906639801],[-77.06275222771703,38.90207913626376],[-77.06255727866763,38.90202827504872],[-77.06229706227951,38.9019272820251],[-77.06177688645394,38.90172409490425],[-77.06177684248887,38.90167332902367],[-77.06171187474024,38.90167336335996],[-77.06164690699156,38.90167339766013],[-77.06164686294629,38.90162243191335],[-77.06158189524398,38.90162246617734],[-77.06151667176321,38.90162250053989],[-77.06138673635829,38.90162256888694],[-77.0613217686557,38.90162260300628],[-77.06132172501459,38.90157183712462],[-77.06125680095307,38.9016226370895],[-77.06125675735819,38.9015718712078],[-77.06119178970175,38.90157190525485],[-77.06119174649605,38.901521539104],[-77.06112673521186,38.90147060736653],[-77.06106176764756,38.90147064134127],[-77.06060635357458,38.90131838090126],[-77.06060631044279,38.90126761501656],[-77.06054134306314,38.9012676487019],[-77.06054129980802,38.901216682951],[-77.06047633247471,38.9012167166002],[-77.06047628943551,38.9011659507145],[-77.06041132214838,38.90116598432753],[-77.0603463548612,38.90116601790444],[-77.06034631174543,38.90111505215258],[-77.06028134450459,38.90111508569331],[-77.0602163772637,38.9011151191979],[-77.06015115424621,38.90111515279811],[-77.0600861870052,38.90111518623036],[-77.06002121976411,38.90111521962645],[-77.05976101029734,38.9010142209376],[-77.05950105684308,38.90091262193994],[-77.05924084835385,38.90081102249173],[-77.05911091442486,38.90081108830761],[-77.05904594746029,38.90081112116133],[-77.05904590543931,38.90076035527143],[-77.05898089638094,38.90070942233292],[-77.0589808547368,38.90065905617348],[-77.05891563213572,38.90065908908387],[-77.05891559020756,38.90060832319254],[-77.05885087920228,38.90060835580881],[-77.05878561464715,38.90055742288914],[-77.05878557281157,38.90050665699684],[-77.05872060612411,38.90050668966967],[-77.0586555975292,38.90045575654783],[-77.05859058919125,38.90040502325506],[-77.05852562259625,38.90040505581949],[-77.05839535035292,38.90030338931383],[-77.05839530879523,38.90025262341907],[-77.05833059811239,38.90025265574717],[-77.05833055692767,38.90020228958341],[-77.05826529311557,38.90015135636929],[-77.0582002437508,38.90004965709416],[-77.05813523610679,38.89999892354432],[-77.05807026988145,38.89999895585552],[-77.05807022855529,38.89994818995787],[-77.05794004042453,38.89994825459864],[-77.05787503289584,38.89989732103735],[-77.05781006676288,38.89989735320383],[-77.05774514188643,38.89994835109813],[-77.05768021675554,38.89999914909014],[-77.05768017570696,38.89994838319238],[-77.05768013449682,38.89989741742841],[-77.0577451006299,38.8998973853342],[-77.05781002562193,38.89984658730513],[-77.05780998431912,38.89979562154029],[-77.05774505953519,38.89984661943548],[-77.05774501827875,38.89979565367059],[-77.05768005223834,38.89979568576476],[-77.05761504551859,38.89974535165464],[-77.05754978279668,38.8996946179024],[-77.05748507261966,38.89969464976219],[-77.05741989176283,38.89974544773766],[-77.05741993230431,38.8997958139059],[-77.05741997332848,38.89984677967094],[-77.05735504805847,38.89989757748318],[-77.05735508903635,38.89994854324723],[-77.05735512985359,38.89999930914512],[-77.05735517067087,38.90005007504256],[-77.05735521164894,38.90010104080529],[-77.05742021883123,38.90015177478822],[-77.05742025985579,38.90020274054999],[-77.05748548204033,38.90020270847445],[-77.05748552262835,38.90025307463849],[-77.05755027426825,38.90030380867354],[-77.0576155377093,38.90035474228575],[-77.05768054530795,38.90040547612153],[-77.05774555299905,38.90045620992065],[-77.05781051964098,38.90045617779007],[-77.0578105609446,38.90050714354892],[-77.05787552763289,38.90050711138217],[-77.05787556882083,38.90055787727478],[-77.0579405355553,38.9005578450719],[-77.05794057695186,38.90060881082975],[-77.05800579950743,38.90060877846368],[-77.05800584078813,38.90065954435538],[-77.05807080761514,38.90065951208],[-77.05813581548952,38.90070984592828],[-77.05820082394489,38.90076077933701],[-77.05826579086398,38.90076074695328],[-77.05826583232981,38.90081151284345],[-77.05826587379569,38.90086227873318],[-77.05833109658286,38.9008622461855],[-77.05839584954069,38.90091317961209],[-77.05852612289837,38.90101484610604],[-77.05859121497716,38.90116691133748],[-77.05852624768828,38.90116694390223],[-77.05859125667479,38.9012176772239],[-77.05859129853665,38.90126864297548],[-77.05859134023443,38.90131940886094],[-77.05859138193225,38.90137017474591],[-77.05859142379431,38.90142114049609],[-77.05852645627387,38.90142117306096],[-77.05852649792558,38.90147193894506],[-77.05852653974134,38.90152290469432],[-77.05846161340618,38.9015733033749],[-77.05846165501184,38.9016240692576],[-77.05846169678135,38.90167503500555],[-77.05839647325108,38.90167506762613],[-77.05839651481043,38.90172583350791],[-77.05839655636984,38.90177659938925],[-77.05833188598136,38.90182759746461],[-77.05833192749482,38.90187836334503],[-77.05826670377859,38.90187839589316],[-77.05826674540894,38.90192936163882],[-77.05826678654962,38.90197972778703],[-77.05820185994129,38.90203052605042],[-77.05813697477829,38.90213229002116],[-77.05807204793864,38.90218308821105],[-77.05800712116908,38.90223408623002],[-77.05800716245167,38.90228485210688],[-77.05794197976218,38.9023358502157],[-77.05794202099845,38.90238661609168],[-77.05787713481649,38.90248798018028],[-77.0578121663241,38.90248801234787],[-77.05774723892937,38.902538810354],[-77.05768235265543,38.90264057406297],[-77.05768239370713,38.9026913399362],[-77.05761746619635,38.90274233773398],[-77.05761750720193,38.90279310360633],[-77.05755232376941,38.90284410149308],[-77.05755236440615,38.90289446763326],[-77.05748769223958,38.9029452653654],[-77.0574225085752,38.90299626317833],[-77.05729269314821,38.90314882444648],[-77.05729273392286,38.90319959031522],[-77.05716287684561,38.90330098583492],[-77.05703280452384,38.90345354693108],[-77.0570328451137,38.90350431279711],[-77.05696787569525,38.90350434449523],[-77.05696791639856,38.90355531022643],[-77.05696795694229,38.90360607609158],[-77.05696799764573,38.90365704182182],[-77.05696803818959,38.90370780768605],[-77.05690306858578,38.90370783934812],[-77.05683809898188,38.90370787097406],[-77.05683813911483,38.90375823710661],[-77.056773169465,38.90375826869646],[-77.05670819981512,38.90375830025017],[-77.05651315605638,38.90391109213836],[-77.05651319627668,38.90396185800035],[-77.05651323649704,38.90401262386195],[-77.05651327687579,38.90406358958862],[-77.05644834712194,38.9041143868585],[-77.05644842731242,38.90421571871285],[-77.05638349737391,38.90426651594522],[-77.05638353766012,38.90431748166962],[-77.05638357778838,38.90436824752798],[-77.05618861164574,38.90462257057009],[-77.05605883020318,38.90482549654551],[-77.05592900868716,38.90497825611363],[-77.05579914627693,38.9050794502194],[-77.05573429473539,38.90523217851597],[-77.05586423672088,38.90523211645566],[-77.05592920771355,38.90523208537128]]]],"type":"MultiPolygon"} +},{ + "id": 1108723615, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000059, + "geom:area_square_m":567526.629099, + "geom:bbox":"-77.0730338379,38.9050220745,-77.0628201804,38.9167054699", + "geom:latitude":38.909302, + "geom:longitude":-77.067671, + "iso:country":"US", + "lbl:latitude":38.908751, + "lbl:longitude":-77.066734, + "lbl:max_zoom":18.0, + "mps:latitude":38.908751, + "mps:longitude":-77.066734, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.908751, + "reversegeo:longitude":-77.066734, + "src:geom":"wapo", + "wapo:quadrant":"NW", + "wapo:subhood":"West Village Georgetown", + "wof:belongsto":[ + 85821305, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"74a0022d3dc377882536ab94a2ae221f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723615, + "neighbourhood_id":85821305, + "region_id":85688741 + } + ], + "wof:id":1108723615, + "wof:lastmodified":1566623905, + "wof:name":"West Village Georgetown", + "wof:parent_id":85821305, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.0730338379287, + 38.9050220745117, + -77.06282018037558, + 38.91670546992219 +], + "geometry": {"coordinates":[[[[-77.06295146740933,38.9067017221095],[-77.06301652961484,38.90680341861712],[-77.06308163654928,38.90695548118777],[-77.06314674411517,38.90710794344891],[-77.06327682444162,38.90725997076824],[-77.06334223358454,38.90746319860093],[-77.06340699611319,38.90751412918923],[-77.06340708654875,38.90761586070708],[-77.06347236068454,38.90766659111468],[-77.06347240550436,38.90771695720878],[-77.06353742415675,38.90776788758345],[-77.06353751477866,38.90786961909654],[-77.06373270711872,38.90817410786494],[-77.06379802758339,38.9082758037706],[-77.06386309225279,38.90837729991225],[-77.06386318333999,38.90847903141383],[-77.06392820296608,38.90852996156401],[-77.06405837891755,38.90878371946986],[-77.06405842451088,38.90883448528433],[-77.06412349024014,38.90893618113607],[-77.0641888572865,38.90908824289046],[-77.06425366762775,38.90918993880559],[-77.06431898958529,38.90929143453585],[-77.06444921436938,38.9095961576438],[-77.06457930237184,38.90974858317503],[-77.06457934833657,38.90979934898043],[-77.06464446133764,38.90995141059737],[-77.06483992045493,38.91025649685527],[-77.06490498805006,38.91035759264944],[-77.06497005637587,38.91045928800154],[-77.0649701490446,38.91056101946371],[-77.06510049573112,38.91071344424563],[-77.06510058822137,38.91081477597228],[-77.06516565724314,38.91091647120695],[-77.06536091139428,38.91127172287788],[-77.06549109781427,38.91152587879127],[-77.06568656449974,38.9118305638146],[-77.06581675310028,38.91208471933923],[-77.06594719789102,38.91233827496676],[-77.06601206086394,38.91249093549134],[-77.06601210748028,38.91254130154024],[-77.06607734094393,38.91254126466793],[-77.06614241293353,38.91264295932663],[-77.06614250727732,38.91274469074727],[-77.06620757935993,38.91284618550063],[-77.06640309998973,38.91320163502489],[-77.06653324572915,38.91340442432097],[-77.06659841415158,38.91360785011386],[-77.06666348785734,38.91370954446251],[-77.0667285617486,38.91381123877296],[-77.06685875730318,38.91406499331403],[-77.06711940720457,38.91457270164365],[-77.06718448253353,38.91467439568412],[-77.06724955767115,38.91477568995612],[-77.06737975721769,38.91502984360206],[-77.0675101648975,38.91523263159449],[-77.0675752413858,38.91533432540503],[-77.067705490927,38.91563884468154],[-77.06770553931054,38.91568981029611],[-77.06777077565317,38.91568977247844],[-77.06777082389345,38.91574053822733],[-77.06777087232373,38.91579150384089],[-77.06783585293022,38.9157914661353],[-77.0678359012169,38.91584223188322],[-77.06790093020254,38.91589295988882],[-77.06790097872592,38.9159439255009],[-77.0679660564205,38.91604561908046],[-77.06816144864736,38.91624836849404],[-77.0684216649607,38.9165528110393],[-77.06842171385665,38.91660377664499],[-77.06848679289591,38.91670546992219],[-77.06861670673811,38.91665442807393],[-77.06861665789508,38.91660366233395],[-77.06868189507315,38.91660362400761],[-77.06900705763418,38.91660343243401],[-77.06926698301609,38.91660327864499],[-77.0693319643614,38.91660324010738],[-77.06939694570663,38.91660320153363],[-77.06939684671545,38.91650147018773],[-77.06939669871542,38.91634937282814],[-77.06939645133698,38.91609514438053],[-77.06939620434926,38.91584131565125],[-77.06939600637143,38.91563785292898],[-77.06939595736334,38.91558748691014],[-77.06939585837497,38.91548575554525],[-77.06939575958137,38.91538422404356],[-77.06933063090712,38.91523156563017],[-77.06933053259529,38.9151304338541],[-77.06933028545696,38.91487620534933],[-77.06933003870896,38.9146223765631],[-77.0693299891653,38.91457141093922],[-77.06932989046672,38.91446987942047],[-77.06932974203082,38.9143171824084],[-77.06932959417841,38.91416508498766],[-77.06932939658954,38.91396182206788],[-77.06926422044241,38.91375879754185],[-77.06926417114046,38.9137080317751],[-77.06926412164448,38.91365706614267],[-77.06926402304094,38.91355553460681],[-77.06926382583474,38.91335247152949],[-77.06926352963931,38.91304747716881],[-77.06926328313523,38.91279364829732],[-77.06926323383463,38.91274288252158],[-77.06926318433997,38.91269191688016],[-77.06939309051026,38.91264107399637],[-77.07004337949546,38.91264068598607],[-77.07082331751391,38.91258925017182],[-77.07095352870604,38.91258917117413],[-77.07108348408022,38.912589092187],[-77.07114846176721,38.91258905263919],[-77.07179875026839,38.9125886548595],[-77.07257873831544,38.91258817296917],[-77.07264397181841,38.9125881324308],[-77.07277392718882,38.91258805156353],[-77.0730338379287,38.91258788939533],[-77.07303378594443,38.91253712361934],[-77.0729690125941,38.91248679800982],[-77.07303274586498,38.91152140827],[-77.07303269388224,38.91147064248414],[-77.0729679730289,38.91147068292004],[-77.06932702658209,38.91152366576703],[-77.06932707612154,38.91157463141933],[-77.06919712259389,38.91157470845302],[-77.06919707314729,38.91152374280069],[-77.06919682649716,38.91126951412773],[-77.06913155477628,38.9109649578437],[-77.06913135814808,38.91076209453531],[-77.06913130874908,38.91071112887538],[-77.06913121014495,38.9106093974194],[-77.06913116093985,38.91055863162335],[-77.06913086571076,38.9102540368374],[-77.0691304718822,38.90984771056441],[-77.06913042248443,38.90979674489596],[-77.06913032388285,38.90969501342304],[-77.069130274679,38.90964424761856],[-77.06913012687423,38.90949175033695],[-77.06906465041634,38.90923795987695],[-77.06906420781438,38.9087808677161],[-77.0690641584647,38.90872990203775],[-77.0691943626132,38.90872982500041],[-77.06945420986797,38.90867890498129],[-77.06997425867526,38.90867859468222],[-77.07023441097903,38.90867843858777],[-77.07036461503232,38.90867836024627],[-77.07042958915702,38.90867832109827],[-77.07049456328166,38.90867828191405],[-77.07114456032774,38.90867788792917],[-77.07153466087341,38.9086776497399],[-77.07159958383551,38.90862664426298],[-77.07159953287494,38.90857587844967],[-77.07159897231342,38.90801745447264],[-77.07159887019344,38.90791572296894],[-77.07159871711438,38.90776322564258],[-77.07159861539638,38.90766189386505],[-77.07159856443718,38.9076111280429],[-77.07159841115877,38.90745843084262],[-77.07159795233062,38.90700133854389],[-77.071532776287,38.90679851489117],[-77.07153272517482,38.90674754919559],[-77.0715326742632,38.90669678336493],[-77.07153257223968,38.90659505183685],[-77.07153211363854,38.90613775960081],[-77.07153190979547,38.90593449638763],[-77.07153180817497,38.90583316457645],[-77.07138985105931,38.905074761288],[-77.06893062673034,38.9050220745117],[-77.06880073372068,38.90507251722062],[-77.06860556540657,38.90507263198926],[-77.06841065288255,38.90507274628204],[-77.06828071119952,38.90507282229659],[-77.06795560120004,38.90507301184945],[-77.06782565951602,38.90507308735788],[-77.06769546204104,38.90507316287],[-77.06756552035651,38.90507323808911],[-77.06717543951051,38.90507346302638],[-77.06704549782488,38.90507353766711],[-77.0667856144528,38.90507368651505],[-77.06646050444543,38.90507387190747],[-77.06626538347128,38.90512494848004],[-77.0661354416909,38.90512502210854],[-77.06600524411935,38.90512509573713],[-77.06594052901984,38.90512513228042],[-77.06568038966658,38.90512527881424],[-77.06535527942124,38.90512546113116],[-77.06529030853015,38.90512549745743],[-77.06516036674778,38.90512557000147],[-77.06509539585649,38.9051256062193],[-77.06503042496514,38.90512564240104],[-77.06483525649978,38.90512575087136],[-77.06464008803383,38.90512585901561],[-77.06438020446619,38.9051260025129],[-77.06412006510661,38.90512614557247],[-77.06392515242942,38.90512625238203],[-77.06366531417014,38.90517716013732],[-77.06340491883144,38.90517730174393],[-77.06308006413438,38.90517747759078],[-77.0629501222551,38.9051775476766],[-77.06288489552426,38.90517758280302],[-77.06282018037558,38.90517761761793],[-77.06282026997125,38.90527934917931],[-77.06282035956718,38.90538108073876],[-77.06282044916335,38.90548281229638],[-77.06282058311805,38.90563490996548],[-77.06282067253882,38.9057364416529],[-77.06282085138118,38.90593950502214],[-77.06282094097872,38.90604123656949],[-77.06282098568963,38.90609200240969],[-77.06282103040056,38.90614276824942],[-77.06282120959699,38.90634623133473],[-77.06282125395619,38.90639659744117],[-77.06282129884353,38.90644756314363],[-77.06288614959318,38.90660002570153],[-77.06295146740933,38.9067017221095]]]],"type":"MultiPolygon"} +},{ + "id": 1108723619, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000116, + "geom:area_square_m":1116397.416244, + "geom:bbox":"-77.0685518231,38.9051776176,-77.0503416034,38.9176715226", + "geom:latitude":38.911002, + "geom:longitude":-77.059919, + "iso:country":"US", + "lbl:latitude":38.910661, + "lbl:longitude":-77.059774, + "lbl:max_zoom":18.0, + "mps:latitude":38.910661, + "mps:longitude":-77.059774, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.910661, + "reversegeo:longitude":-77.059774, + "src:geom":"wapo", + "wapo:quadrant":"NW", + "wapo:subhood":"East Village Georgetown", + "wof:belongsto":[ + 85821305, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f120acca6b8bbd5e0ddf3121111cc146", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723619, + "neighbourhood_id":85821305, + "region_id":85688741 + } + ], + "wof:id":1108723619, + "wof:lastmodified":1566623905, + "wof:name":"East Village Georgetown", + "wof:parent_id":85821305, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.06855182313166, + 38.90517761761793, + -77.05034160341164, + 38.91767152257954 +], + "geometry": {"coordinates":[[[[-77.05040701376861,38.91006015184102],[-77.05060208429663,38.91026353054146],[-77.05066709593757,38.91031426818894],[-77.05073210738669,38.91036460606897],[-77.05073214363804,38.91041557173889],[-77.05079711935457,38.91041554350851],[-77.05079715551008,38.91046630931255],[-77.05086216761715,38.91051724671497],[-77.05092743548481,38.91056798410386],[-77.05092747173315,38.91061874990646],[-77.05099244763471,38.91061872156745],[-77.05105746002016,38.91066965885975],[-77.0510574963611,38.9107204246614],[-77.05112247235523,38.91072039625008],[-77.05112250888571,38.91077136191661],[-77.05118755750647,38.9108724653392],[-77.05125253363904,38.91087243685559],[-77.05125257026255,38.91092340252064],[-77.0513175829677,38.91097413980002],[-77.05131761949394,38.91102490559874],[-77.05138285157744,38.91102487693031],[-77.05138288829416,38.91107584259388],[-77.05144790123097,38.91112657979936],[-77.0514479379942,38.91117754546197],[-77.05151291440461,38.91117751683355],[-77.05157792723753,38.91122785423504],[-77.05157796394919,38.91127862003133],[-77.05164297735432,38.91132955699173],[-77.05170799070743,38.91138029405013],[-77.0517732231158,38.91138026516376],[-77.05177326011162,38.91143123082389],[-77.05183823675303,38.91143120201457],[-77.05190325033766,38.91148193896338],[-77.05190328728104,38.91153270475722],[-77.0519682640148,38.91153267587561],[-77.05203327793026,38.91158361261647],[-77.05203331496624,38.91163437840932],[-77.05209829179259,38.91163434945536],[-77.05209832858286,38.91168471551704],[-77.05216330545504,38.91168468652695],[-77.05216334272978,38.91173565218413],[-77.05222831964835,38.91173562315787],[-77.05229358960281,38.91178635977234],[-77.05229362697071,38.91183732542855],[-77.05235860398183,38.91183729632986],[-77.05235864124951,38.91188806212024],[-77.05242365562079,38.91193879877524],[-77.05248863272433,38.91193876960425],[-77.05248867023168,38.91198973525895],[-77.05255364738159,38.91198970605175],[-77.05255368478817,38.91204047184068],[-77.05261866198425,38.91204044259736],[-77.05268393264299,38.91209137885625],[-77.05274890988541,38.9120913495405],[-77.05281392442365,38.9121416862459],[-77.05287893934999,38.91219242264522],[-77.05294391668443,38.91219239322104],[-77.05300893189802,38.9122433294129],[-77.05307390927874,38.91224329991645],[-77.05313914247587,38.91224327026745],[-77.05313918029933,38.91229403605383],[-77.0532041577262,38.91229400648488],[-77.05326913515302,38.91229397687984],[-77.05333415054201,38.91234471302453],[-77.05339912801497,38.91234468334715],[-77.05346414369251,38.9123956192843],[-77.05352937702878,38.91239558941747],[-77.053594098731,38.91239555974892],[-77.0536593320672,38.91239552980955],[-77.05365937026096,38.91244629559432],[-77.05372434782635,38.91244626573617],[-77.05378932539166,38.9124462358418],[-77.05378936382874,38.91249720149134],[-77.05385434144043,38.91249717156089],[-77.05391931905208,38.91249714159426],[-77.05398455248101,38.91249711147331],[-77.05398459060378,38.91254747752648],[-77.05404956826119,38.91254744748743],[-77.05411454591857,38.91254741741224],[-77.05411458443643,38.91259818319546],[-77.05417956213999,38.91259815308415],[-77.05424453984349,38.91259812293666],[-77.0543095563558,38.91264905840099],[-77.05437478992356,38.91264902806222],[-77.05450478421871,38.91269973329615],[-77.05456976201461,38.91269970296781],[-77.05463477885178,38.91275063825024],[-77.05469979562855,38.91280137363082],[-77.05476477351698,38.912801343194],[-77.05482975140535,38.9128013127211],[-77.05489502418564,38.91285204787251],[-77.05495978557515,38.91290298309282],[-77.05502501937488,38.91290295239102],[-77.05509003656807,38.91295368755297],[-77.0551550145951,38.91295365689921],[-77.05515505354469,38.91300402294775],[-77.05522003161754,38.91300399225781],[-77.05522007107727,38.91305495790168],[-77.05528504919651,38.91305492717558],[-77.05528508854779,38.91310569295372],[-77.05528512805408,38.91315665859663],[-77.05535036208568,38.91315662771313],[-77.05535040148351,38.91320739349031],[-77.05541537974159,38.91320736269171],[-77.05541541918574,38.91325812846837],[-77.05541545878525,38.91330909410983],[-77.05548043713593,38.91330906327507],[-77.05548047662646,38.91335982905077],[-77.05554545502332,38.91335979817982],[-77.05554549424882,38.91341016422452],[-77.05561051243049,38.91346109895743],[-77.05567553054905,38.91351183378841],[-77.05574080473745,38.91356276832595],[-77.05580582304134,38.91361350308347],[-77.05587080166919,38.91361347203166],[-77.05593578029699,38.91361344094369],[-77.05593582011178,38.9136642067164],[-77.05600079878577,38.91366417559225],[-77.05600083880383,38.91371514122972],[-77.05606581752417,38.91371511006941],[-77.05606585743158,38.91376587584111],[-77.05613083619812,38.91376584464467],[-77.05613087630917,38.91381681028114],[-77.05613091594833,38.9138671763214],[-77.05619589480717,38.91386714508879],[-77.05619593480728,38.91391791085901],[-77.05626116953475,38.91391787946709],[-77.05632618869039,38.913968813797],[-77.05639120778085,38.91401954822506],[-77.05645618677839,38.91401951684764],[-77.05652120616595,38.91407045106816],[-77.05658622548782,38.91412118538666],[-77.05665146040107,38.91412115377683],[-77.05665150072556,38.91417191954458],[-77.05671647986182,38.91417188802243],[-77.05671652039155,38.91422285365491],[-77.05678149957419,38.91422282209663],[-77.05684647875674,38.91422279050222],[-77.05684651922012,38.91427355626894],[-77.05691149844887,38.91427352463835],[-77.05697651791414,38.91432385900747],[-77.05704153795079,38.9143747929355],[-77.05710681374453,38.91442552683667],[-77.05717179311164,38.91442549506137],[-77.05717183396689,38.91447646069128],[-77.05723681338037,38.91447642887981],[-77.05730183358139,38.91452716279643],[-77.05736685387492,38.91457789667633],[-77.05743187442192,38.91462883038482],[-77.0574971097991,38.91462879830289],[-77.05749715072585,38.91467956406559],[-77.05756187449903,38.91467953219921],[-77.05756191563319,38.91473049782665],[-77.0576271511033,38.91473046567209],[-77.05762719179968,38.9147808317034],[-77.05769217149026,38.91478079963868],[-77.05769221255592,38.91483156539991],[-77.05775719229271,38.91483153329907],[-77.05775723356653,38.914882498925],[-77.05782221334968,38.91488246678798],[-77.05782225450797,38.91493323254821],[-77.05788723433734,38.91493320037503],[-77.05788727554194,38.91498396613475],[-77.05795225541746,38.91498393392543],[-77.05801753257916,38.91503486717733],[-77.05801757387655,38.91508563293608],[-77.05808255384467,38.91508560065431],[-77.05814757536565,38.9151365339598],[-77.05821259649009,38.91518686763307],[-77.05821263792643,38.91523763339031],[-77.05827761803295,38.91523760100006],[-77.05827765967892,38.91528856662198],[-77.05834293718833,38.9153392998241],[-77.05840770329881,38.91539023311021],[-77.05847293937204,38.91539020048343],[-77.05853796128544,38.91544093370365],[-77.05860294157705,38.91544090113247],[-77.0586679218686,38.91544086852515],[-77.05866796362919,38.91549163427987],[-77.05873298593841,38.91554256725583],[-77.05873302774538,38.91559333300955],[-77.05879804969948,38.91564366635284],[-77.05879809171758,38.91569463197077],[-77.05879813357097,38.91574539772309],[-77.0587981755892,38.91579636334009],[-77.05879821744273,38.91584712909146],[-77.05879825929631,38.9158978948423],[-77.05873327858842,38.91589792752212],[-77.05873332056041,38.91594889313773],[-77.05873336236785,38.91599965888765],[-77.05879834316842,38.91599962620779],[-77.05879838518698,38.91605059182244],[-77.05879842671121,38.91610095784112],[-77.05899358355775,38.9160504934369],[-77.05925342242305,38.91594863055769],[-77.05970901186782,38.91620222749738],[-77.05970896919847,38.91615126188453],[-77.06029388196659,38.91594809832072],[-77.0608137670352,38.91569360031117],[-77.06139884754856,38.91569329434508],[-77.06165902545776,38.91569315734478],[-77.06464998695755,38.91604750081847],[-77.06556104623112,38.91665618244445],[-77.06692737657981,38.91767152257954],[-77.06855182313166,38.91675619755753],[-77.06848679289591,38.91670546992219],[-77.06842171385665,38.91660377664499],[-77.0684216649607,38.9165528110393],[-77.06816144864736,38.91624836849404],[-77.0679660564205,38.91604561908046],[-77.06790097872592,38.9159439255009],[-77.06790093020254,38.91589295988882],[-77.0678359012169,38.91584223188322],[-77.06783585293022,38.9157914661353],[-77.06777087232373,38.91579150384089],[-77.06777082389345,38.91574053822733],[-77.06777077565317,38.91568977247844],[-77.06770553931054,38.91568981029611],[-77.067705490927,38.91563884468154],[-77.0675752413858,38.91533432540503],[-77.0675101648975,38.91523263159449],[-77.06737975721769,38.91502984360206],[-77.06724955767115,38.91477568995612],[-77.06718448253353,38.91467439568412],[-77.06711940720457,38.91457270164365],[-77.06685875730318,38.91406499331403],[-77.0667285617486,38.91381123877296],[-77.06666348785734,38.91370954446251],[-77.06659841415158,38.91360785011386],[-77.06653324572915,38.91340442432097],[-77.06640309998973,38.91320163502489],[-77.06620757935993,38.91284618550063],[-77.06614250727732,38.91274469074727],[-77.06614241293353,38.91264295932663],[-77.06607734094393,38.91254126466793],[-77.06601210748028,38.91254130154024],[-77.06601206086394,38.91249093549134],[-77.06594719789102,38.91233827496676],[-77.06581675310028,38.91208471933923],[-77.06568656449974,38.9118305638146],[-77.06549109781427,38.91152587879127],[-77.06536091139428,38.91127172287788],[-77.06516565724314,38.91091647120695],[-77.06510058822137,38.91081477597228],[-77.06510049573112,38.91071344424563],[-77.0649701490446,38.91056101946371],[-77.06497005637587,38.91045928800154],[-77.06490498805006,38.91035759264944],[-77.06483992045493,38.91025649685527],[-77.06464446133764,38.90995141059737],[-77.06457934833657,38.90979934898043],[-77.06457930237184,38.90974858317503],[-77.06444921436938,38.9095961576438],[-77.06431898958529,38.90929143453585],[-77.06425366762775,38.90918993880559],[-77.0641888572865,38.90908824289046],[-77.06412349024014,38.90893618113607],[-77.06405842451088,38.90883448528433],[-77.06405837891755,38.90878371946986],[-77.06392820296608,38.90852996156401],[-77.06386318333999,38.90847903141383],[-77.06386309225279,38.90837729991225],[-77.06379802758339,38.9082758037706],[-77.06373270711872,38.90817410786494],[-77.06353751477866,38.90786961909654],[-77.06353742415675,38.90776788758345],[-77.06347240550436,38.90771695720878],[-77.06347236068454,38.90766659111468],[-77.06340708654875,38.90761586070708],[-77.06340699611319,38.90751412918923],[-77.06334223358454,38.90746319860093],[-77.06327682444162,38.90725997076824],[-77.06314674411517,38.90710794344891],[-77.06308163654928,38.90695548118777],[-77.06301652961484,38.90680341861712],[-77.06295146740933,38.9067017221095],[-77.06288614959318,38.90660002570153],[-77.06282129884353,38.90644756314363],[-77.06282125395619,38.90639659744117],[-77.06282120959699,38.90634623133473],[-77.06282103040056,38.90614276824942],[-77.06282098568963,38.90609200240969],[-77.06282094097872,38.90604123656949],[-77.06282085138118,38.90593950502214],[-77.06282067253882,38.9057364416529],[-77.06282058311805,38.90563490996548],[-77.06282044916335,38.90548281229638],[-77.06282035956718,38.90538108073876],[-77.06282026997125,38.90527934917931],[-77.06282018037558,38.90517761761793],[-77.06268998270471,38.90517768755195],[-77.06262501176471,38.905177722396],[-77.06249506988456,38.90517779197574],[-77.06216995939194,38.90517796542883],[-77.06197504657027,38.90517806898507],[-77.06190981983849,38.9051781035671],[-77.06171490701607,38.90517820668929],[-77.06145476746087,38.90517834381431],[-77.06125985463713,38.90517844617735],[-77.06119488369576,38.90517848022612],[-77.06112991275432,38.90517851423875],[-77.06106494181286,38.90517854821525],[-77.06093474413858,38.90517861619323],[-77.06073983131336,38.90517871768873],[-77.06047969175442,38.90517885264261],[-77.06034974987017,38.9051789198363],[-77.06028477892792,38.90517895337895],[-77.06015458125216,38.90517902048755],[-77.06008961030975,38.90517905392165],[-77.06002463936728,38.90517908731961],[-77.05982972653949,38.9051791872968],[-77.05963460052971,38.90523025279419],[-77.05937471657205,38.90523038515719],[-77.05924451880156,38.9052304512516],[-77.05917954781189,38.90523048417962],[-77.05904960583233,38.90523054992727],[-77.05885469286257,38.90523064827779],[-77.05865952410097,38.90523074643148],[-77.05839938434843,38.90523087675339],[-77.05826944236746,38.90523094163333],[-77.05820447137688,38.90523097401911],[-77.05807452939555,38.90523103868227],[-77.05709945294552,38.90523151929933],[-77.05696925517091,38.90523158285821],[-77.05690428417917,38.90523161452096],[-77.05677434219552,38.90523167773807],[-77.05664440021162,38.90523174081062],[-77.0565142024362,38.90523180386239],[-77.05631928945958,38.90523189798306],[-77.0560591496987,38.90523202309418],[-77.05592920771355,38.90523208537128],[-77.05586423672088,38.90523211645566],[-77.05573429473539,38.90523217851597],[-77.05560421583652,38.9053847379684],[-77.05553936313316,38.90553686655169],[-77.05547451046409,38.90568939482586],[-77.05540961808168,38.90579115721466],[-77.05534476459378,38.90594328567872],[-77.05521472286233,38.90614661052029],[-77.05514994729289,38.90640047041263],[-77.05502019928224,38.90665476060346],[-77.05489045003878,38.90690865090744],[-77.05476044438032,38.9071629409065],[-77.05463065440546,38.90736606506771],[-77.054501019005,38.90777245225637],[-77.05443578989731,38.90777248266568],[-77.05443582864123,38.90782324849299],[-77.05443586753778,38.90787421418521],[-77.05437118863657,38.90792501014645],[-77.0543712273346,38.9079757759724],[-77.0543059980409,38.90797580630921],[-77.05430603684475,38.90802677200016],[-77.05430607549648,38.9080775378251],[-77.05424110191122,38.90807756800684],[-77.054176167037,38.90812856384243],[-77.05417620529273,38.90817892993561],[-77.05411127012822,38.90822972586874],[-77.05476157512878,38.90863574946373],[-77.05476161425852,38.90868671514836],[-77.05476180944767,38.90894094396824],[-77.05476200433131,38.90919477304556],[-77.05476208228515,38.90929630467318],[-77.0547621603927,38.90939803616433],[-77.05463217193213,38.9093473311862],[-77.05424210628108,38.90939827875413],[-77.05398220712706,38.90939839912188],[-77.05391697653216,38.90939842924151],[-77.05385200174346,38.90939845920686],[-77.05378702695472,38.90939848913603],[-77.05346197315747,38.90949997011641],[-77.05294199380988,38.90960193840763],[-77.05281208145007,38.9096527630287],[-77.05274710642922,38.90965279237957],[-77.05268213140833,38.90965282169437],[-77.05229202547464,38.90965299693863],[-77.05216181962489,38.90965305514007],[-77.05060165167592,38.90965374124252],[-77.05040672660789,38.90965382549916],[-77.05040676248515,38.90970459131036],[-77.05040679850372,38.90975555698644],[-77.05034160341164,38.9098063509203],[-77.0503416393837,38.90985731659554],[-77.05034167493258,38.90990768267405],[-77.05034171076366,38.90995844848293],[-77.050406977891,38.91000938603314],[-77.05040701376861,38.91006015184102]]]],"type":"MultiPolygon"} +},{ + "id": 1108723621, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000049, + "geom:area_square_m":473234.647724, + "geom:bbox":"-77.079534764,38.9058324826,-77.0690641585,38.9126867736", + "geom:latitude":38.90948, + "geom:longitude":-77.074344, + "iso:country":"US", + "lbl:latitude":38.909013, + "lbl:longitude":-77.074758, + "lbl:max_zoom":18.0, + "mps:latitude":38.909013, + "mps:longitude":-77.074758, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u062c\u0627\u0645\u0639\u0629 \u062c\u0648\u0631\u062c\u062a\u0627\u0648\u0646" + ], + "name:arz_x_preferred":[ + "\u062c\u0627\u0645\u0639\u0629 \u062c\u0648\u0631\u062c\u062a\u0627\u0648\u0646" + ], + "name:azb_x_preferred":[ + "\u062c\u0648\u0631\u062c\u200c\u062a\u0627\u0648\u0646 \u0628\u06cc\u0644\u06cc\u0645\u200c\u06cc\u0648\u0631\u062f\u0648" + ], + "name:bel_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u045e\u043d\u0441\u043a\u0456 \u045e\u043d\u0456\u0432\u0435\u0440\u0441\u0456\u0442\u044d\u0442" + ], + "name:bul_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u0443\u043d\u0441\u043a\u0438 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:ces_x_preferred":[ + "Georgetownsk\u00e1 univerzita" + ], + "name:dan_x_preferred":[ + "Georgetown University" + ], + "name:deu_x_preferred":[ + "Georgetown University" + ], + "name:epo_x_preferred":[ + "Universitato Georgetown" + ], + "name:est_x_preferred":[ + "Georgetowni \u00dclikool" + ], + "name:eus_x_preferred":[ + "Georgetown Unibertsitatea" + ], + "name:fas_x_preferred":[ + "\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u062c\u0631\u062c\u200c\u062a\u0627\u0648\u0646" + ], + "name:fin_x_preferred":[ + "Georgetownin yliopisto" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d5\u05e0\u05d9\u05d1\u05e8\u05e1\u05d9\u05d8\u05ea \u05d2'\u05d5\u05e8\u05d2'\u05d8\u05d0\u05d5\u05df" + ], + "name:hrv_x_preferred":[ + "Sveu\u010dili\u0161te Georgetown" + ], + "name:hun_x_preferred":[ + "Georgetowni Egyetem" + ], + "name:hye_x_preferred":[ + "\u054b\u0578\u0580\u057b\u0569\u0561\u0578\u0582\u0576\u056b \u0570\u0561\u0574\u0561\u056c\u057d\u0561\u0580\u0561\u0576" + ], + "name:ind_x_preferred":[ + "Universitas Georgetown" + ], + "name:jpn_x_preferred":[ + "\u30b8\u30e7\u30fc\u30b8\u30bf\u30a6\u30f3\u5927\u5b66" + ], + "name:kor_x_preferred":[ + "\uc870\uc9c0\ud0c0\uc6b4 \ub300\ud559\uad50" + ], + "name:lat_x_preferred":[ + "Universitas Georgiopolitana" + ], + "name:lav_x_preferred":[ + "D\u017eord\u017etaunas Universit\u0101te" + ], + "name:lit_x_preferred":[ + "D\u017eord\u017etauno universitetas" + ], + "name:mya_x_preferred":[ + "\u1002\u103b\u1031\u102c\u1037\u1002\u103b\u103a\u1010\u1031\u102c\u1004\u103a\u1038 \u1010\u1000\u1039\u1000\u101e\u102d\u102f\u101c\u103a" + ], + "name:nld_x_preferred":[ + "Universiteit van Georgetown" + ], + "name:nor_x_preferred":[ + "Georgetown University" + ], + "name:pol_x_preferred":[ + "Georgetown University" + ], + "name:ron_x_preferred":[ + "Universitatea Georgetown" + ], + "name:rus_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u0443\u043d\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:swe_x_preferred":[ + "Georgetown University" + ], + "name:tam_x_preferred":[ + "\u0b9c\u0bbe\u0bb0\u0bcd\u0b9c\u0bcd\u0b9f\u0bb5\u0bc1\u0ba9\u0bcd \u0baa\u0bb2\u0bcd\u0b95\u0bb2\u0bc8\u0b95\u0bcd\u0b95\u0bb4\u0b95\u0bae\u0bcd" + ], + "name:tgl_x_preferred":[ + "Unibersidad ng Georgetown" + ], + "name:tur_x_preferred":[ + "Georgetown \u00dcniversitesi" + ], + "name:ukr_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u0443\u043d\u0441\u044c\u043a\u0438\u0439 \u0443\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:vie_x_preferred":[ + "\u0110\u1ea1i h\u1ecdc Georgetown" + ], + "name:wuu_x_preferred":[ + "\u4e54\u6cbb\u57ce\u5927\u5b66" + ], + "name:zho_x_preferred":[ + "\u4e54\u6cbb\u57ce\u5927\u5b66" + ], + "reversegeo:latitude":38.909013, + "reversegeo:longitude":-77.074758, + "src:geom":"wapo", + "wapo:quadrant":"NW", + "wapo:subhood":"Georgetown University", + "wof:belongsto":[ + 85821305, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1d47191c5ff85d87782e01628c5ba3f5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723621, + "neighbourhood_id":85821305, + "region_id":85688741 + } + ], + "wof:id":1108723621, + "wof:lastmodified":1566623882, + "wof:name":"Georgetown University", + "wof:parent_id":85821305, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.07953476395595, + 38.90583248263403, + -77.0690641584647, + 38.91268677362574 +], + "geometry": {"coordinates":[[[[-77.07774201535287,38.90658329031425],[-77.07762800837092,38.90642007591034],[-77.07732426663128,38.90631654707256],[-77.07692596145671,38.90628703002551],[-77.07656548272622,38.90622810659106],[-77.07616682759152,38.9061096469817],[-77.07549764231823,38.90608449852258],[-77.07536769879998,38.90608458241928],[-77.07504258420873,38.90608479169315],[-77.07484761565917,38.9060341508896],[-77.07458747301017,38.90603431725596],[-77.07452250129629,38.9060343587162],[-77.07445727378814,38.90603440030337],[-77.0743922489193,38.90598347598984],[-77.07432753304556,38.90598351717885],[-77.0742623055838,38.90598355865716],[-77.07387216720541,38.90593304011708],[-77.07328716681033,38.9059334085393],[-77.07322219518761,38.90593344927647],[-77.07315722356481,38.90593348997756],[-77.07315717190754,38.90588312387115],[-77.07309220033052,38.90588316453602],[-77.07302697295984,38.90588320532467],[-77.07296225717627,38.90588324575741],[-77.0726370915952,38.90583248263403],[-77.0725718642706,38.9058325231686],[-77.0716617512396,38.90583308494602],[-77.07159677970732,38.90583312477932],[-77.07153180817497,38.90583316457645],[-77.07153190979547,38.90593449638763],[-77.07153211363854,38.90613775960081],[-77.07153257223968,38.90659505183685],[-77.0715326742632,38.90669678336493],[-77.07153272517482,38.90674754919559],[-77.071532776287,38.90679851489117],[-77.07159795233062,38.90700133854389],[-77.07159841115877,38.90745843084262],[-77.07159856443718,38.9076111280429],[-77.07159861539638,38.90766189386505],[-77.07159871711438,38.90776322564258],[-77.07159887019344,38.90791572296894],[-77.07159897231342,38.90801745447264],[-77.07159953287494,38.90857587844967],[-77.07159958383551,38.90862664426298],[-77.07153466087341,38.9086776497399],[-77.07114456032774,38.90867788792917],[-77.07049456328166,38.90867828191405],[-77.07042958915702,38.90867832109827],[-77.07036461503232,38.90867836024627],[-77.07023441097903,38.90867843858777],[-77.06997425867526,38.90867859468222],[-77.06945420986797,38.90867890498129],[-77.0691943626132,38.90872982500041],[-77.0690641584647,38.90872990203775],[-77.06906420781438,38.9087808677161],[-77.06906465041634,38.90923795987695],[-77.06913012687423,38.90949175033695],[-77.069130274679,38.90964424761856],[-77.06913032388285,38.90969501342304],[-77.06913042248443,38.90979674489596],[-77.0691304718822,38.90984771056441],[-77.06913086571076,38.9102540368374],[-77.06913116093985,38.91055863162335],[-77.06913121014495,38.9106093974194],[-77.06913130874908,38.91071112887538],[-77.06913135814808,38.91076209453531],[-77.06913155477628,38.9109649578437],[-77.06919682649716,38.91126951412773],[-77.06919707314729,38.91152374280069],[-77.06919712259389,38.91157470845302],[-77.06932707612154,38.91157463141933],[-77.06932702658209,38.91152366576703],[-77.0729679730289,38.91147068292004],[-77.07303269388224,38.91147064248414],[-77.07303274586498,38.91152140827],[-77.0729690125941,38.91248679800982],[-77.07303378594443,38.91253712361934],[-77.0730338379287,38.91258788939533],[-77.07329400448508,38.91258772648852],[-77.07355391522259,38.91258756316348],[-77.07361914872446,38.91258752208067],[-77.07368412640857,38.91258748112279],[-77.07374910409263,38.91258744012879],[-77.07381408177659,38.91258739909861],[-77.0738790594605,38.91258735803233],[-77.0739440371443,38.91258731692994],[-77.0740092706457,38.91258727562937],[-77.07407424832938,38.91258723445451],[-77.07413922601297,38.91258719324355],[-77.07420420369651,38.9125871519965],[-77.07426918137993,38.91258711071325],[-77.07433441488095,38.91258706923115],[-77.07439913674659,38.91258702803838],[-77.07446411442982,38.91258698664673],[-77.07478925866243,38.91258677898285],[-77.07517963639317,38.91258652846017],[-77.07543960103007,38.91263732658039],[-77.07556955648687,38.91263724260377],[-77.07563453421515,38.91263720056128],[-77.07608963412881,38.91263690508539],[-77.07647975631149,38.91263665038557],[-77.07732497839469,38.91263609409584],[-77.07745524479625,38.91268677362574],[-77.07856037855032,38.91268603581812],[-77.0790154787632,38.91268572894639],[-77.07921041207409,38.91268559696157],[-77.07927522034132,38.91253305571118],[-77.07940509230555,38.9122283726464],[-77.07953476395595,38.91197445537311],[-77.07953470712202,38.9119234897292],[-77.07946973004633,38.9119235339406],[-77.07940469645207,38.91187281233668],[-77.0793396629503,38.91182209069608],[-77.07914436329686,38.91172049164351],[-77.07907932989751,38.91166956999133],[-77.07894926426242,38.91156852603812],[-77.07888417499328,38.9114668384927],[-77.07881883009648,38.91136515108173],[-77.07875374119894,38.91126346345989],[-77.07868859691978,38.91111140974391],[-77.07855836422947,38.91085726851856],[-77.07842818894893,38.91065449252369],[-77.07829795802077,38.91040035098691],[-77.0781675282864,38.91019737499087],[-77.078102330203,38.90999415539056],[-77.07803724357805,38.90989246734417],[-77.0779721020786,38.9097404131907],[-77.07790707132162,38.90968949086771],[-77.0779069047514,38.90953699359913],[-77.07790673861852,38.90938489605709],[-77.0779066274998,38.90928316458441],[-77.07790646093147,38.90913066730456],[-77.07784111956889,38.9090289793035],[-77.07784100919869,38.90892784742035],[-77.07784089817443,38.90882611593919],[-77.07784073174771,38.90867361864656],[-77.07784062072426,38.90857188716065],[-77.07784051013734,38.9084705554037],[-77.07784034371228,38.90831805810127],[-77.07784028831013,38.90826729228796],[-77.07784012232224,38.90811519471067],[-77.07783990027912,38.90791173171637],[-77.07783951225197,38.90755617112189],[-77.07777462867092,38.90740371689249],[-77.07777435189833,38.90714988777908],[-77.07777413026375,38.90694662461446],[-77.07777396442,38.90679452700068],[-77.07777390884834,38.90674356130789],[-77.07774201535287,38.90658329031425]]]],"type":"MultiPolygon"} +},{ + "id": 1108723623, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00006, + "geom:area_square_m":578676.727195, + "geom:bbox":"-76.9855818446,38.8767794532,-76.9772746415,38.8875685145", + "geom:latitude":38.883321, + "geom:longitude":-76.982193, + "iso:country":"US", + "lbl:latitude":38.883576, + "lbl:longitude":-76.980121, + "lbl:max_zoom":18.0, + "mps:latitude":38.884702, + "mps:longitude":-76.98269, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":38.884702, + "reversegeo:longitude":-76.98269, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85809405, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"908d3373f7ef33ca124bb6677d7248c6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723623, + "neighbourhood_id":85809405, + "region_id":85688741 + } + ], + "wof:id":1108723623, + "wof:lastmodified":1566623882, + "wof:name":"Hill East", + "wof:parent_id":85809405, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869337 + ], + "wof:tags":[] +}, + "bbox": [ + -76.98558184463457, + 38.87677945317493, + -76.9772746414623, + 38.88756851453203 +], + "geometry": {"coordinates":[[[[-76.98558173147852,38.87733947933462],[-76.98555010861952,38.88756851453203],[-76.9772746414623,38.88756592174718],[-76.97727467373835,38.88746458957657],[-76.97727473854481,38.88726112576505],[-76.97727480328724,38.88705786181254],[-76.97727483556282,38.8869565296329],[-76.97727486796562,38.886854797719],[-76.97727488413518,38.8868040316945],[-76.97727490036837,38.88675306580331],[-76.977274997385,38.88644846964402],[-76.97727506199864,38.8862456053951],[-76.97727509440078,38.88614387346853],[-76.97727512680288,38.88604214154017],[-76.97727520777582,38.88578791164448],[-76.97727532102239,38.88543234953084],[-76.97727535336017,38.88533081745609],[-76.97727536959269,38.88527985155176],[-76.97727546660531,38.88497525531409],[-76.97727556361713,38.88467065906019],[-76.97727559601785,38.88456892710565],[-76.97727562841851,38.88446719514931],[-76.97727566069175,38.88436586292381],[-76.97727570926055,38.88421336491636],[-76.97727572542891,38.88416259886843],[-76.97727574166088,38.8841116329537],[-76.97727577399745,38.88401010085558],[-76.97727583867034,38.88380703665392],[-76.97727585483848,38.88375627060243],[-76.97727588723841,38.88365453863167],[-76.97727591951092,38.88355320639179],[-76.97727595191061,38.88345147441746],[-76.97727612988467,38.88289264805864],[-76.97727614605245,38.88284188199908],[-76.97903056487729,38.88289297622649],[-76.98078544704344,38.8821823533344],[-76.98083827209841,38.88257949655755],[-76.983356997263,38.88156835870981],[-76.9831471397211,38.88124014792746],[-76.98346219399994,38.88113106588538],[-76.98202108368059,38.87893132226849],[-76.98163094227584,38.87872799729966],[-76.98098155480335,38.87842309688887],[-76.9805914190307,38.87822016816268],[-76.98039686344715,38.87811840359423],[-76.98002310002691,38.87789888678086],[-76.98084316795949,38.87767817162559],[-76.9818585971817,38.87738732804701],[-76.98300954037154,38.87707011303051],[-76.98416017655659,38.8769379630797],[-76.98497252573056,38.87683234100741],[-76.98558184463457,38.87677945317493],[-76.98558173147852,38.87733947933462]]]],"type":"MultiPolygon"} +},{ + "id": 1108723637, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000045, + "geom:area_square_m":437989.695975, + "geom:bbox":"-76.9937846536,38.8552032426,-76.9845598588,38.8633317719", + "geom:latitude":38.858674, + "geom:longitude":-76.990131, + "iso:country":"US", + "lbl:latitude":38.858233, + "lbl:longitude":-76.990218, + "lbl:max_zoom":18.0, + "mps:latitude":38.858233, + "mps:longitude":-76.990218, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "Hillsdale" + ], + "name:ceb_x_preferred":[ + "Hillsdale" + ], + "name:deu_x_preferred":[ + "Hillsdale" + ], + "name:fas_x_preferred":[ + "\u0647\u06cc\u0644\u0632\u062f\u06cc\u0644" + ], + "name:ita_x_preferred":[ + "Hillsdale" + ], + "name:nld_x_preferred":[ + "Hillsdale" + ], + "name:pol_x_preferred":[ + "Hillsdale" + ], + "name:por_x_preferred":[ + "Hillsdale" + ], + "name:rus_x_preferred":[ + "\u0425\u0438\u043b\u0441\u0434\u0435\u0439\u043b" + ], + "name:spa_x_preferred":[ + "Hillsdale" + ], + "name:srp_x_preferred":[ + "\u0425\u0438\u043b\u0441\u0434\u0435\u0458\u043b" + ], + "name:swe_x_preferred":[ + "Hillsdale" + ], + "name:ukr_x_preferred":[ + "\u0413\u0456\u043b\u043b\u0441\u0434\u0435\u0439\u043b" + ], + "name:urd_x_preferred":[ + "\u06c1\u0644\u0632\u0688\u06cc\u0644" + ], + "name:vol_x_preferred":[ + "Hillsdale" + ], + "reversegeo:latitude":38.858233, + "reversegeo:longitude":-76.990218, + "src:geom":"mz", + "wof:belongsto":[ + 420510991, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a05f6e6a6d3359adfbca099f9d3eef38", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723637, + "neighbourhood_id":420510991, + "region_id":85688741 + } + ], + "wof:id":1108723637, + "wof:lastmodified":1566623888, + "wof:name":"Hillsdale", + "wof:parent_id":420510991, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420510967, + 420781791 + ], + "wof:tags":[] +}, + "bbox": [ + -76.99378465356948, + 38.85520324264771, + -76.98455985881208, + 38.86333177186127 +], + "geometry": {"coordinates":[[[[-76.98691406489351,38.85621423518158],[-76.98699468739804,38.85619563293073],[-76.98707055760316,38.85617113555589],[-76.98712237140178,38.85614519714647],[-76.98716678322917,38.85611397497908],[-76.98720379308534,38.85607746905374],[-76.9872408029415,38.85603856139601],[-76.98727781279766,38.85599725200586],[-76.98731482265381,38.85595354088333],[-76.98735183250999,38.85590742802841],[-76.9873845245496,38.85585939376674],[-76.98741289877265,38.85580943809831],[-76.98743695517916,38.85575756102315],[-76.9874566937691,38.85570376254123],[-76.98748013334469,38.8556514050557],[-76.98750727390586,38.85560048856654],[-76.98753811545268,38.85555101307376],[-76.9875726579851,38.85550297857737],[-76.98760411636285,38.85546070820772],[-76.9876324905859,38.8554242019648],[-76.98765778065427,38.85539345984864],[-76.98767998656795,38.85536848185922],[-76.98770034198884,38.85534446455486],[-76.98771884691692,38.85532140793553],[-76.98773550135219,38.85529931200126],[-76.98775030529467,38.85527817675205],[-76.98777559536305,38.85525944323305],[-76.98781137155733,38.85524311144427],[-76.98785763387752,38.8552291813857],[-76.98791438232365,38.85521765305737],[-76.98799457034532,38.85520948715825],[-76.98809819794258,38.85520468368837],[-76.98822526511539,38.85520324264771],[-76.98837577186379,38.85520516403629],[-76.98855465283523,38.85520708542482],[-76.98876190802973,38.85520900681328],[-76.98899753744729,38.8552109282017],[-76.98926154108791,38.85521284959006],[-76.9894737309299,38.85521477097837],[-76.98963410697327,38.85521669236664],[-76.98974266921802,38.85521861375485],[-76.98979941766413,38.85522053514301],[-76.989858633434,38.85522341722494],[-76.9899203165276,38.85522726000065],[-76.98998446694495,38.85523206347011],[-76.99005108468603,38.85523782763336],[-76.99011276777964,38.85524455248943],[-76.99016951622575,38.85525223803834],[-76.99022133002438,38.85526088428009],[-76.99026820917551,38.85527049121467],[-76.99031693881946,38.85528201953289],[-76.99036751895622,38.85529546923476],[-76.99041994958579,38.85531084032027],[-76.99047423070814,38.85532813278944],[-76.99052419401397,38.8553449449087],[-76.99056983950322,38.85536127667807],[-76.99061116717594,38.85537712809754],[-76.9906481770321,38.85539249916712],[-76.99068642055013,38.85540738988804],[-76.99072589773003,38.85542180026033],[-76.99076660857182,38.85543573028396],[-76.99080855307547,38.85544917995893],[-76.99085604905756,38.85546262963137],[-76.99090909651804,38.85547607930126],[-76.99096769545696,38.85548952896861],[-76.99103184587432,38.85550297863342],[-76.99110833291037,38.85551498726157],[-76.99119715656516,38.85552555485307],[-76.99129831683867,38.8555346814079],[-76.99141181373091,38.85554236692608],[-76.99154751653683,38.85555149347692],[-76.99170542525646,38.85556206106042],[-76.99188553988978,38.85557406967658],[-76.99208786043678,38.8555875193254],[-76.99230066710972,38.85560144931571],[-76.99252395990855,38.8556158596475],[-76.99281880509596,38.85563459307447],[-76.99319695200661,38.85565838895411],[-76.99333042442402,38.8558197060292],[-76.99346046225607,38.85658200722257],[-76.99333026300964,38.85754715885367],[-76.99333018707138,38.85835981900672],[-76.99372033626396,38.86049342279944],[-76.99378465356948,38.86166144972442],[-76.99345969243851,38.86211702344681],[-76.99341252922606,38.86217066722043],[-76.99336005141778,38.86221976812968],[-76.99329347526786,38.86227118754627],[-76.99323269865404,38.86230914336805],[-76.99278858038009,38.86253968658832],[-76.99263543113936,38.8626155955017],[-76.99119051695456,38.86333177186127],[-76.99049119314462,38.86250246855268],[-76.98965689734459,38.86176169018823],[-76.98931872843342,38.86151482386377],[-76.98848397355772,38.86059755426701],[-76.98825829456965,38.86033290768668],[-76.98800294407656,38.86018817790852],[-76.98642456402685,38.85912205996658],[-76.98514463636656,38.85825753190613],[-76.98482003841285,38.85805402531887],[-76.98468995929522,38.85790190937083],[-76.98455985881208,38.85785112596052],[-76.98468999200529,38.8577494106736],[-76.98475518629471,38.85769845305819],[-76.98488455202698,38.85759693731898],[-76.98501469491022,38.85744465525342],[-76.98520975408597,38.85734314756293],[-76.98533988542697,38.85724143154308],[-76.98540507878842,38.85719047356049],[-76.98546950507769,38.85714011504737],[-76.98559963567838,38.85703839873456],[-76.98559964592036,38.85698763245098],[-76.98566457301035,38.85698764044107],[-76.98566458320613,38.85693687415705],[-76.98572951024995,38.85693688211105],[-76.98585963005259,38.85688593178989],[-76.98592483272894,38.85678420722875],[-76.98605469645724,38.85673345652539],[-76.9861193775708,38.85668269794581],[-76.98618431417088,38.85663213922752],[-76.98631443305501,38.85658138826421],[-76.98637936946292,38.85653062956932],[-76.98650897682779,38.85647967846139],[-76.98657442423773,38.85642891971622],[-76.98670403127871,38.85637796839094],[-76.98670404073511,38.85632720210169],[-76.98676922284059,38.85632720950661],[-76.98683415869384,38.85627645055661],[-76.98689908513707,38.8562764578602],[-76.98689909441804,38.85622589143735],[-76.98691406489351,38.85621423518158]]]],"type":"MultiPolygon"} +},{ + "id": 1108723641, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000043, + "geom:area_square_m":418153.435328, + "geom:bbox":"-77.0201195403,38.8917833573,-77.0143024355,38.8997426731", + "geom:latitude":38.895954, + "geom:longitude":-77.017164, + "iso:country":"US", + "lbl:latitude":38.895663, + "lbl:longitude":-77.016057, + "lbl:max_zoom":18.0, + "mps:latitude":38.895992, + "mps:longitude":-77.017203, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Judiciary Square" + ], + "name:eng_x_preferred":[ + "Judiciary Square" + ], + "name:eng_x_variant":[ + "Judiciary Sq", + "Judiciarysquare" + ], + "name:zho_x_preferred":[ + "\u53f8\u6cd5\u5ee3\u5834" + ], + "reversegeo:latitude":38.895992, + "reversegeo:longitude":-77.017203, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6303071" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6dd3b869b434ef3742fcb7e607801f0d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723641, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723641, + "wof:lastmodified":1566623888, + "wof:name":"Judiciary Square", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85827673 + ], + "wof:tags":[] +}, + "bbox": [ + -77.02011954032588, + 38.89178335726009, + -77.01430243550061, + 38.89974267307977 +], + "geometry": {"coordinates":[[[[-77.018848834331,38.89974267307977],[-77.01486331026518,38.89970710488554],[-77.01430243550061,38.89951945943196],[-77.01432838182943,38.89208822557948],[-77.0146461287714,38.89208818635809],[-77.01497092394105,38.89208814518263],[-77.01503588297491,38.89208813683918],[-77.0152310158207,38.89208811155869],[-77.01555605566448,38.89203730274425],[-77.01581589161445,38.89203726785207],[-77.01627082544525,38.89188450769383],[-77.01640097563609,38.89178335726009],[-77.01724575656674,38.8920370655003],[-77.01757081974907,38.89208778303647],[-77.01854605176399,38.89239262787481],[-77.01991106375391,38.89274796487531],[-77.02011954032588,38.89281578518257],[-77.02007436564256,38.89974197363414],[-77.018848834331,38.89974267307977]]]],"type":"MultiPolygon"} +},{ + "id": 1108714049, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000184, + "geom:area_square_m":1595948.443684, + "geom:bbox":"-122.679302,45.4643555888,-122.667822976,45.493221", + "geom:latitude":45.479116, + "geom:longitude":-122.674243, + "iso:country":"US", + "lbl:latitude":45.478238, + "lbl:longitude":-122.674811, + "lbl:max_zoom":18.0, + "mps:latitude":45.478238, + "mps:longitude":-122.674811, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Fulton" + ], + "reversegeo:latitude":45.478238, + "reversegeo:longitude":-122.674811, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849969, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"bcd36e65c769330afa3beb958df86fc1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108714049, + "neighbourhood_id":85849969, + "region_id":85688513 + } + ], + "wof:id":1108714049, + "wof:lastmodified":1566624148, + "wof:name":"Johns Landing", + "wof:parent_id":85849969, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85885301 + ], + "wof:tags":[] +}, + "bbox": [ + -122.679302, + 45.46435558876581, + -122.66782297593042, + 45.493221 +], + "geometry": {"coordinates":[[[-122.67845251089268,45.47022405129994],[-122.678451,45.470225],[-122.678084,45.470491],[-122.677854,45.470752],[-122.67768599999999,45.471005],[-122.677559,45.471212],[-122.677469,45.471588],[-122.67742800000001,45.47189],[-122.677447,45.472124],[-122.677502,45.472453],[-122.677627,45.472726],[-122.678164,45.47422],[-122.678246,45.474443],[-122.67832199999999,45.474648],[-122.678736,45.475773],[-122.678771,45.475943],[-122.6789,45.476565],[-122.67893599999999,45.479846],[-122.678955,45.481524],[-122.67926799999999,45.4847],[-122.67928999999999,45.485107],[-122.67930200000001,45.485328],[-122.67930200000001,45.485507],[-122.67930200000001,45.485832],[-122.67927299999999,45.486119],[-122.679214,45.486372],[-122.67918899999999,45.486477],[-122.67913299999999,45.486589],[-122.67893599999999,45.486987],[-122.678788,45.487212],[-122.67815400000001,45.487797],[-122.677662,45.488163],[-122.677604,45.488207],[-122.67624600000001,45.489242],[-122.675845,45.489608],[-122.675708,45.489734],[-122.675462,45.489947],[-122.67517700000001,45.490276],[-122.674949,45.490574],[-122.674791,45.49079],[-122.674662,45.491031],[-122.674561,45.491174],[-122.674494,45.491283],[-122.67442699999999,45.491392],[-122.674179,45.491833],[-122.673711,45.492957],[-122.67366,45.493221],[-122.670438,45.493141],[-122.66898196384322,45.49310072718643],[-122.66898579026848,45.49309585396942],[-122.66899354272941,45.49308546052722],[-122.66900100593277,45.49307487942801],[-122.66900810891173,45.49306412830379],[-122.66901474656335,45.49305321219214],[-122.6690207850387,45.49304212416605],[-122.66902608599717,45.49303097064745],[-122.66904026141238,45.49299726197023],[-122.66904528748638,45.49298623438585],[-122.66905092980468,45.49297547505839],[-122.66905752074391,45.49296510930148],[-122.66906411797137,45.4929565936491],[-122.66908613657732,45.4929317834525],[-122.66909411900693,45.49292208392779],[-122.66911715181082,45.49289242111713],[-122.66912532468326,45.49288277763043],[-122.66913419195343,45.49287349559976],[-122.6691440761165,45.49286456306066],[-122.66917573993365,45.49283876605613],[-122.66918562948659,45.4928297831341],[-122.66919462162259,45.49282028069345],[-122.66920285288553,45.49281035948884],[-122.66921056043066,45.49280015113102],[-122.66923991827247,45.49275857839181],[-122.6692477605649,45.4927485041547],[-122.66925618586397,45.49273878570683],[-122.66926405510586,45.49273073475268],[-122.66928858090975,45.49270760391731],[-122.66930098933874,45.49269534202666],[-122.66931021593503,45.49268691701305],[-122.66931986923107,45.49267876151809],[-122.66934344731234,45.49265982648311],[-122.66935183039057,45.49265175032887],[-122.66935955230875,45.49264311309317],[-122.66936681608615,45.49263406653822],[-122.66939459648628,45.49259610764135],[-122.66940196087501,45.49258665239031],[-122.66942656573063,45.49255747806629],[-122.66943414391837,45.49254756563143],[-122.66944054621139,45.49253785974332],[-122.66944614361395,45.49252791833787],[-122.66945095678722,45.49251779242233],[-122.66945495788352,45.49250752229884],[-122.6694581316314,45.49249724965455],[-122.66946619580771,45.49246661055149],[-122.66946960311758,45.49245675351616],[-122.66947401743889,45.492447247864],[-122.66947909920844,45.49243903943763],[-122.66948492568137,45.4924310413373],[-122.66949819739138,45.49241388266574],[-122.66950555818684,45.49240467990285],[-122.66951351815857,45.49239564023653],[-122.66952184823619,45.49238734364153],[-122.66953076671034,45.4923792391107],[-122.66955849680484,45.49235506153138],[-122.66956725178561,45.49234670951473],[-122.66957521355397,45.49233828381924],[-122.66958270101183,45.49232964086793],[-122.66958985429646,45.49232086756261],[-122.66961689717978,45.49228645442921],[-122.66962302548666,45.49227833728936],[-122.66962843693791,45.49227003186093],[-122.66963360853902,45.49225959166675],[-122.66963757729593,45.49224876985775],[-122.66964073667079,45.49223770686231],[-122.66964856279354,45.49220431131315],[-122.66965160898067,45.49219353483372],[-122.66965540076947,45.49218318404631],[-122.66966032263893,45.49217345164693],[-122.66966477379117,45.49216684016358],[-122.66968714184173,45.49213817129157],[-122.66969425200722,45.49213054027846],[-122.66970076658964,45.49212489164043],[-122.66970791897594,45.49211949489213],[-122.6697154567395,45.49211421590194],[-122.66973339070582,45.49210240476581],[-122.6697428526607,45.49209690474024],[-122.66976765963729,45.49208447646896],[-122.66979189169206,45.49207165083772],[-122.66980457320895,45.49206577675182],[-122.66981593420235,45.49206156262375],[-122.66982780633712,45.49205780819561],[-122.66985212552851,45.49205052918866],[-122.66987933100687,45.49204133896091],[-122.66989302312842,45.49203692898606],[-122.6699070161856,45.4920331575536],[-122.66991939137696,45.49203064494448],[-122.66995699036319,45.49202472047612],[-122.6699690816869,45.49202228154463],[-122.66998249353411,45.49201862912959],[-122.66999523074652,45.49201435391453],[-122.67000609407324,45.49201019582831],[-122.67001605099985,45.49200564416246],[-122.67002465955522,45.49200048795838],[-122.67003139242829,45.49199447469538],[-122.67003631339941,45.49198629076237],[-122.67003879813949,45.49197697080034],[-122.67003953206309,45.49196681770746],[-122.67003905326101,45.4919560613339],[-122.67003779202635,45.49194487359486],[-122.67003256832298,45.4919098292443],[-122.67003127654561,45.49189788078456],[-122.67003061448726,45.49188642791839],[-122.6700304527905,45.4918749441932],[-122.67003069264068,45.49186345416842],[-122.67003212186029,45.49184054967917],[-122.6700346317532,45.4918179084074],[-122.67003631339941,45.49180676472199],[-122.6700383471852,45.49179579861799],[-122.67004081934888,45.4917850692901],[-122.67004385565454,45.4917746541952],[-122.67004762498547,45.49176465157126],[-122.67005234832723,45.49175518358605],[-122.67006679413532,45.49173255991236],[-122.67007265923581,45.49172232931864],[-122.67007833209684,45.49171174796337],[-122.67008929783148,45.49168988813528],[-122.67011108557038,45.49164518040578],[-122.67011684377137,45.49163411540255],[-122.67012288943323,45.49162321475701],[-122.67012933843866,45.49161255655587],[-122.67013633990797,45.49160223714822],[-122.67014260745374,45.49159406638261],[-122.67014925858007,45.49158621174108],[-122.67016778004462,45.49156658300409],[-122.67017549926786,45.49155697959322],[-122.67018239114269,45.4915467980867],[-122.6701886739598,45.49153620347404],[-122.67019451660241,45.49152533429617],[-122.67020004752963,45.4915143045344],[-122.67021050481783,45.49149215999053],[-122.67021514731121,45.49148174232249],[-122.67021898042255,45.49147123774942],[-122.6702213645513,45.49146107952754],[-122.67022272909223,45.49145073301362],[-122.6702233920489,45.49144025803222],[-122.67022376574808,45.49140856543961],[-122.67022413226069,45.49139806211233],[-122.67022501350799,45.49138766646762],[-122.67022667449295,45.49137743014365],[-122.67023248749115,45.49135618921444],[-122.6702410906566,45.49132163883923],[-122.67024451952608,45.491310088247],[-122.67024857452127,45.49129895453685],[-122.67025726841658,45.49127672174537],[-122.6702609092884,45.49126546208157],[-122.67026348116509,45.49125417407748],[-122.67026517718436,45.49124272863722],[-122.67026621563681,45.49123116480437],[-122.67026676899903,45.49121951595483],[-122.67026697201828,45.49120780412933],[-122.67026670791357,45.49118426082111],[-122.67026492475775,45.49112513486938],[-122.6702647163486,45.4911014743955],[-122.67026494092744,45.49108965360091],[-122.6702654969846,45.4910778428796],[-122.67026647614826,45.49106584827251],[-122.67026779846834,45.49105386373867],[-122.67027112672648,45.49102990914734],[-122.67028120851889,45.49097001475263],[-122.67029231349245,45.49091017004362],[-122.67029734315972,45.49088644146759],[-122.67030014231014,45.49087470501295],[-122.67030864666094,45.49084435974542],[-122.67031090502557,45.49083504274308],[-122.67031261451956,45.49082500405708],[-122.67031606405024,45.49079549631756],[-122.67031786696901,45.4907862051265],[-122.6703206751026,45.49077741961568],[-122.67032498432103,45.49076933185618],[-122.67033188967059,45.49076152495989],[-122.67034089528133,45.49075494164914],[-122.6703517559131,45.4907497727357],[-122.67036357055572,45.49074632742292],[-122.6703765458217,45.4907440068274],[-122.67039036550405,45.49074247907569],[-122.67040477807443,45.49074146771162],[-122.67044978726344,45.49073925417181],[-122.67046493465577,45.49073809481855],[-122.6704799715553,45.49073636114133],[-122.67049594090611,45.49073366270072],[-122.67051171172922,45.49073023313046],[-122.67052732085563,45.49072625316621],[-122.67054280331952,45.49072186324012],[-122.67055818427383,45.49071717166757],[-122.67058872340023,45.49070719215626],[-122.67063419162834,45.49069144358076],[-122.67072471845276,45.4906593821677],[-122.67075499077953,45.49064900275989],[-122.67078548948174,45.49063916429874],[-122.67080088930065,45.49063459677856],[-122.67081644273151,45.49063038317315],[-122.67083220367314,45.49062664817163],[-122.67084755677968,45.49062360462692],[-122.6708630931425,45.49062097923099],[-122.67087875526948,45.49061862966214],[-122.6709260336029,45.49061210364119],[-122.67094175501867,45.49060976729655],[-122.67095738929788,45.49060718535219],[-122.67097339368298,45.49060419911304],[-122.67102107356332,45.49059461128164],[-122.67103700967645,45.49059176421492],[-122.67105304280766,45.49058941464486],[-122.67106925739853,45.49058773889939],[-122.67108555912598,45.49058670864025],[-122.67110188780289,45.49058627159879],[-122.67111818054721,45.49058642777497],[-122.67113436908694,45.49058723006727],[-122.67115037706533,45.49058878742107],[-122.67116610836257,45.49059126860742],[-122.67118104554912,45.49059469125894],[-122.67119570335961,45.49059891431319],[-122.67121014826937,45.49060369657846],[-122.67122442968574,45.49060883338841],[-122.6712665489945,45.49062458450599],[-122.67128035610043,45.49062933969021],[-122.67129401498431,45.49063348465376],[-122.67130747803546,45.49063672971542],[-122.67132067698194,45.49063871340336],[-122.67133351839892,45.49063897663559],[-122.67134496473226,45.49063735504946],[-122.67135597628102,45.49063418240815],[-122.6713665009429,45.49062977421238],[-122.67137645337792,45.4906243647259],[-122.67138571141523,45.49061812020049],[-122.67139242901693,45.49061275731387],[-122.67141561902601,45.49059241347966],[-122.67142373799953,45.4905847129854],[-122.67143137457775,45.49057670391611],[-122.67143847845504,45.49056818097542],[-122.67145846058021,45.49054191564949],[-122.67148016387749,45.49051654139843],[-122.67148662096773,45.49050799829681],[-122.67149193989253,45.49049918440409],[-122.6714960820243,45.49048890950428],[-122.67149855239133,45.49047826620237],[-122.67149964743766,45.4904673936716],[-122.67149954682635,45.49045641345243],[-122.67149832601591,45.49044543763937],[-122.67149596165008,45.49043457643767],[-122.67149233425293,45.49042394446084],[-122.67148747167229,45.49041371236996],[-122.67146722634077,45.49037648122141],[-122.6714580123209,45.49036032447846],[-122.67145416124326,45.49035292056259],[-122.67145127495627,45.49034580506913],[-122.6714489213702,45.49033856929334],[-122.6714443956578,45.49032289681396],[-122.67144232324446,45.49031447459419],[-122.6714410117041,45.49030596546822],[-122.67144075658258,45.49029733605945],[-122.67144172137318,45.49027960177958],[-122.67144200074927,45.49026853776759],[-122.67144187947667,45.49025723948772],[-122.67144065327633,45.49022257697316],[-122.67144048529137,45.49021092350677],[-122.67144074041292,45.49019928452217],[-122.67144164591473,45.49018769402571],[-122.6714434784779,45.49017618980223],[-122.67144617611871,45.49016563334639],[-122.67144956007238,45.49015513608481],[-122.67145697027516,45.49013413525834],[-122.67146031470295,45.49012353660149],[-122.67146319649839,45.4901121054157],[-122.67146545396469,45.49010055961339],[-122.67146722993401,45.49008893005222],[-122.67146862950923,45.49007724129228],[-122.67147055549719,45.49005378000854],[-122.67147140710007,45.49003035901898],[-122.67147133523486,45.49001873196232],[-122.6714708025339,45.49000721133084],[-122.67146964370718,45.48999584939386],[-122.67146763327757,45.4899847147942],[-122.67146446222461,45.48997389569685],[-122.67145972450982,45.48996350860573],[-122.67145288473725,45.48995338474818],[-122.6714444064376,45.48994371934673],[-122.6714347270904,45.48993439463842],[-122.67142417997066,45.48992532623689],[-122.67141300942011,45.48991645431598],[-122.67140139150854,45.48990774297997],[-122.67138944930515,45.48989917522574],[-122.67136487409391,45.48988250069087],[-122.67135230217153,45.48987445625565],[-122.67133953711134,45.48986668324194],[-122.67132654747232,45.48985927044461],[-122.67131328115221,45.48985233562731],[-122.67128799447528,45.48984051583003],[-122.67127571630199,45.48983454327024],[-122.67126304556488,45.4898276254532],[-122.67123833291141,45.4898136267109],[-122.67122117508949,45.48980496636892],[-122.67118899923264,45.48978823260948],[-122.67117805056596,45.489782940176],[-122.67115141192453,45.48977098307827],[-122.67113950655207,45.48976464714422],[-122.67112833959476,45.48975766130535],[-122.67111806376623,45.48975010616972],[-122.67111138748704,45.48974446547973],[-122.67109705307006,45.48973140189899],[-122.67108946050926,45.48972398908391],[-122.67108258839735,45.48971633444283],[-122.67107687690878,45.48970830572772],[-122.67107247067229,45.48969922280548],[-122.67106965086062,45.48968971731762],[-122.6710682027764,45.48967994103443],[-122.67106801143521,45.48967002683364],[-122.67106905348095,45.48966009373853],[-122.67107139718554,45.4896502551046],[-122.67107529048398,45.48963999768302],[-122.67108466081071,45.48961950487558],[-122.67108902033476,45.48960832611873],[-122.67109699647618,45.48958553784669],[-122.67110153117174,45.48957416574855],[-122.67110669828126,45.48956335979722],[-122.67111814012301,45.4895419185517],[-122.67112359379512,45.48953113400582],[-122.67112831084867,45.48952020083578],[-122.67113173971811,45.48950990623497],[-122.6711344822747,45.48949946804812],[-122.67114156908396,45.48946780585115],[-122.67114451196483,45.48945728893715],[-122.67114819415919,45.48944678146744],[-122.67115248541127,45.48943634515823],[-122.67115721414292,45.48942595670844],[-122.67117779813935,45.48938451750598],[-122.67118742987584,45.48936360707708],[-122.6711919528933,45.48935233443572],[-122.67119610580487,45.4893409975569],[-122.67121510786805,45.48928457510765],[-122.67121923562678,45.48927363559217],[-122.67122372360996,45.48926294671804],[-122.67122871375135,45.48925259602182],[-122.67123718576279,45.48923698810528],[-122.6712417060853,45.48922754488548],[-122.67125022570745,45.48920836875239],[-122.67126003261541,45.48918801748357],[-122.67127202512447,45.48915823179259],[-122.67128712490609,45.48912541757441],[-122.67129175302641,45.48911433066434],[-122.67129517201438,45.48910470353423],[-122.67130139374603,45.48908527104717],[-122.6713047866829,45.48907556330285],[-122.67130949654991,45.48906405948198],[-122.67131476966063,45.48905261548598],[-122.67133159420759,45.48901826648045],[-122.6713367909615,45.48900668077904],[-122.67134136608125,45.48899523425234],[-122.67134555133215,45.48898369262945],[-122.67135736866972,45.48894886307416],[-122.67136157368355,45.4889373000299],[-122.67136619731231,45.48892582200101],[-122.67137133837069,45.48891455053153],[-122.67137694745131,45.4889033779324],[-122.67138290956989,45.48889228216196],[-122.67139558479853,45.48887026820739],[-122.67140899215416,45.4888484778098],[-122.67141595230098,45.48883768872282],[-122.67143054183948,45.48881645061439],[-122.67143830957174,45.48880609038961],[-122.67144653634314,45.48879599025499],[-122.67145537666383,45.48878624089647],[-122.67146381453929,45.48877795447573],[-122.67149053492743,45.48875416139533],[-122.67151223463142,45.4887338288553],[-122.67152206579388,45.48872524328915],[-122.67153257159114,45.48871691529499],[-122.67154367746301,45.48870886943381],[-122.67155536005329,45.4887011567165],[-122.67156763822658,45.48869385208523],[-122.67158036825248,45.48868709471785],[-122.67159354743599,45.48868070072359],[-122.67160701497875,45.48867455737474],[-122.6716612256112,45.48865083289499],[-122.67169606137961,45.48863432046979],[-122.67170707292834,45.48862946813338],[-122.67171968258002,45.4886246353193],[-122.6717454085331,45.4886154376051],[-122.67175886260111,45.48861006004318],[-122.67178572492305,45.48859869089696],[-122.67183498493998,45.48857895468847],[-122.67184691456694,45.48857366654976],[-122.67187971744785,45.48855755715186],[-122.67189156892138,45.48855222240844],[-122.67192801357245,45.48853712377832],[-122.67193997553881,45.48853200315337],[-122.67196073291009,45.48852271158894],[-122.67197368392154,45.48851740518171],[-122.67198693946185,45.48851237335198],[-122.67202688035603,45.48849781127189],[-122.67203968584039,45.48849278951665],[-122.6720519173013,45.48848750703775],[-122.67207690573757,45.48847536892205],[-122.6720894390324,45.48847006125085],[-122.67210014605227,45.48846656226845],[-122.67213315913897,45.4884577291633],[-122.67214369098737,45.48845416720349],[-122.67215238398438,45.48845043520643],[-122.67218086237551,45.48843622829881],[-122.67223953673661,45.4884084133814],[-122.67225024195984,45.48840346719027],[-122.67226122655912,45.48839897002269],[-122.67227555828117,45.48839422472646],[-122.67230521885521,45.48838611143405],[-122.67231986858087,45.48838180445487],[-122.67235407013871,45.48836972488479],[-122.672384033445,45.48836043581265],[-122.67239913142998,45.48835548898753],[-122.67241412251543,45.48835012147706],[-122.67242888003894,45.48834433391097],[-122.67244324320203,45.48833808535415],[-122.67245700629047,45.48833129015809],[-122.6724699025047,45.48832380914376],[-122.67248008041685,45.48831673118003],[-122.67248941481097,45.48830910531706],[-122.67249789760223,45.48830100271844],[-122.67250546501016,45.48829245991055],[-122.67251199037237,45.4882834831909],[-122.67251811957756,45.48827258126708],[-122.67252304953185,45.48826123661373],[-122.67252712788323,45.48824957581412],[-122.67253061963476,45.48823769522268],[-122.67253658444822,45.48821354294556],[-122.67254734536701,45.48816492095625],[-122.67255770114564,45.48812037542857],[-122.67255929835019,45.48811141946387],[-122.6725598813568,45.48810265557778],[-122.67255891476958,45.48809359317902],[-122.67255629707883,45.48808488470998],[-122.67255204535259,45.48807669076235],[-122.67254606975932,45.48806921097373],[-122.67253845653728,45.48806275519176],[-122.67252936378999,45.48805719683283],[-122.67251906280862,45.4880525648666],[-122.67250774942592,45.48804893990402],[-122.67249591322376,45.48804641830034],[-122.67248346616715,45.48804460770821],[-122.67244415319539,45.48804018356545],[-122.67242779936564,45.48803755867889],[-122.67241142397633,45.48803432039499],[-122.67239503960387,45.48803064945794],[-122.67234579845157,45.48801852698808],[-122.67232929550147,45.48801456194675],[-122.67231269822827,45.48801086077938],[-122.67229596800443,45.48800757966946],[-122.67227971478599,45.48800491447597],[-122.67223108179314,45.487998041148],[-122.67221534151273,45.48799540051519],[-122.67220011237373,45.48799217923266],[-122.67218562344652,45.48798807375034],[-122.67217420496094,45.48798377681705],[-122.67216330570159,45.48797885829855],[-122.67215275678521,45.48797353735536],[-122.67214005820036,45.48796658215318],[-122.67212809892898,45.48795910990723],[-122.67211737843438,45.48795086681908],[-122.67210959992232,45.48794309731851],[-122.67210296586394,45.48793471001012],[-122.67209736396985,45.48792583777562],[-122.67209274842592,45.48791657948914],[-122.67208914528331,45.48790700883389],[-122.67208647459196,45.48789664466322],[-122.67208480372553,45.48788607770374],[-122.67208397997041,45.4878753803793],[-122.67208391888499,45.4878646093693],[-122.67208459980797,45.48785381379613],[-122.67208606136693,45.48784303459498],[-122.67208849669966,45.48783157334702],[-122.67209811945301,45.48779739867403],[-122.67210103897769,45.48778601676829],[-122.67210329734229,45.4877746065204],[-122.6721046205607,45.4877638008536],[-122.6721064126997,45.48773131960366],[-122.67210729304868,45.48772054037904],[-122.67210884264253,45.48770982412987],[-122.6721112896534,45.48769920234493],[-122.67212436912394,45.48765679642621],[-122.67212707484956,45.48764554611518],[-122.67212931884114,45.48763424793896],[-122.67213525401021,45.48760081691185],[-122.67213766598675,45.48759016172821],[-122.67214071666544,45.48757998832149],[-122.67214474111792,45.48757050262889],[-122.67215015616246,45.48756197482483],[-122.67215749090677,45.48755475002741],[-122.67216724391579,45.48754908203717],[-122.67217895615047,45.48754482285703],[-122.67219210568959,45.48754171050015],[-122.67220628559635,45.48753957807582],[-122.67222117876544,45.48753833741547],[-122.67223547185995,45.48753791483518],[-122.6722500110928,45.48753796395776],[-122.6722793276121,45.48753847785569],[-122.67229388930285,45.48753847848548],[-122.67230825156764,45.48753799607641],[-122.6723223084052,45.48753677304974],[-122.67233700753818,45.48753447940234],[-122.67236617853041,45.48752881078028],[-122.67238117949735,45.48752653413658],[-122.6723964634336,45.48752490868215],[-122.67241189110027,45.48752398102065],[-122.67242733044506,45.48752384372924],[-122.67244264582233,45.48752463535897],[-122.67245802138673,45.48752646045265],[-122.67248813201675,45.48753133240717],[-122.67250291199812,45.48753326960095],[-122.67251749614677,45.48753408201316],[-122.67253113706435,45.48753331620443],[-122.67254430906135,45.48753102948446],[-122.67255671479545,45.48752724578455],[-122.67256837492783,45.4875217868775],[-122.67257880167332,45.48751496261318],[-122.67258785130149,45.48750697011138],[-122.67259465154818,45.4874989498982],[-122.67260034147721,45.48749027849406],[-122.67260504056446,45.48748111082399],[-122.67260880181054,45.4874715627667],[-122.67261161263907,45.48746171871232],[-122.67261363384847,45.48745032855165],[-122.67261466241948,45.48743874126816],[-122.67261493101574,45.48742703747334],[-122.67261460223233,45.48741527825565],[-122.67261378027385,45.48740351525677],[-122.67261252353077,45.48739179445065],[-122.67261085176605,45.48738015929194],[-122.67260510614149,45.4873473566335],[-122.67260392665349,45.48733675115447],[-122.67260371914266,45.4873263679855],[-122.67260492378347,45.48731626380685],[-122.67260793583461,45.48730618985584],[-122.67261214534003,45.48729631995155],[-122.67262645460418,45.48726567046178],[-122.67263414508135,45.48725041404178],[-122.67263799166737,45.4872407236151],[-122.67264084022516,45.48723077119817],[-122.67264263685571,45.48722066826192],[-122.67264341749171,45.48720991161172],[-122.67264387473418,45.48718863321334],[-122.67264492755972,45.48717832810991],[-122.6726475129111,45.48716841724746],[-122.67265091213613,45.48716113005126],[-122.67265521865959,45.48715398896337],[-122.67266104513254,45.48714543464546],[-122.67266739801821,45.48713696156801],[-122.67267419736662,45.4871286994661],[-122.67268139466866,45.48712079507891],[-122.67268897105977,45.48711341529863],[-122.67269771166748,45.4871058258001],[-122.67270585489553,45.4870982589727],[-122.67271107141239,45.48709219417398],[-122.67273441503337,45.48706153701576],[-122.67274032325297,45.48705280445541],[-122.67274564038114,45.48704371921561],[-122.67275018046659,45.48703416541614],[-122.67275402795097,45.48702430680032],[-122.67276044551535,45.48700399441871],[-122.67276913941066,45.48697292911299],[-122.67277587497867,45.4869502751781],[-122.67277887086014,45.48693906377255],[-122.67278117054728,45.48692795627906],[-122.67278235003525,45.48691698544648],[-122.67278188919948,45.48690620039801],[-122.67277952663029,45.48689623154755],[-122.67277543839744,45.48688654043014],[-122.67276982392693,45.48687720324983],[-122.67276277305024,45.48686832203182],[-122.67275388961041,45.4868595944798],[-122.67274379524157,45.48685147340893],[-122.67273278189617,45.48684395630035],[-122.67272105618676,45.48683709227747],[-122.67268135873606,45.48681706889963],[-122.67267032293279,45.48681174532752],[-122.6726593437234,45.48680693754889],[-122.67264838607355,45.48680292581814],[-122.67263741315237,45.4868000388833],[-122.67262898246341,45.48679877553438],[-122.67262069640321,45.48679830130618],[-122.67261073857833,45.48679859541584],[-122.67260119218176,45.48679926550719],[-122.6725919781619,45.48679959677417],[-122.67258303633156,45.48679885677667],[-122.67257365881831,45.4867962425386],[-122.6725644124591,45.4867920387226],[-122.67255517687968,45.4867867088503],[-122.67252634185735,45.48676769877934],[-122.67250552340063,45.48675500041366],[-122.67249537153963,45.48674850795352],[-122.67248594641565,45.4867416363616],[-122.67247757052395,45.48673432706764],[-122.67246134245835,45.48671932493731],[-122.6724515894493,45.48671187645777],[-122.67244082224232,45.48670504390811],[-122.67242915133015,45.48669896017343],[-122.67241743190894,45.4866939565216],[-122.67239318907438,45.48668448075637],[-122.67238242456233,45.48667973594551],[-122.67234869012846,45.48666408826933],[-122.67231193466027,45.48664776545731],[-122.6723003787325,45.48664216980132],[-122.67228392339311,45.48663369853756],[-122.67225075759282,45.4866186063208],[-122.67223995624984,45.48661308623638],[-122.6722280347077,45.48660580778537],[-122.67221664137494,45.4865978749843],[-122.67218745241642,45.48657604466083],[-122.67217887081051,45.48656898914985],[-122.67217036915464,45.4865612282757],[-122.6721623418093,45.48655325579175],[-122.67213966922981,45.48652946869928],[-122.67212051175808,45.48651096741052],[-122.67209953519787,45.48648768602045],[-122.67208173867381,45.48647092734354],[-122.67207318850893,45.48646222555129],[-122.67206566332177,45.48645283161962],[-122.67205875527726,45.48644297164246],[-122.67205237723874,45.48643343096671],[-122.67204650764668,45.48642356027973],[-122.67204153187831,45.48641307743568],[-122.67203742118757,45.48640220475],[-122.6720339500973,45.48639104613766],[-122.67203094433435,45.48637968158189],[-122.67202583112379,45.48635655821486],[-122.67200860682651,45.48626277232052],[-122.67200132238787,45.48622818544188],[-122.67199548783009,45.48620580201797],[-122.67199208591011,45.4861949588925],[-122.67198823752743,45.48618444451633],[-122.67198189991313,45.4861685359686],[-122.67197901272777,45.48615836356473],[-122.67197704002741,45.48614786996485],[-122.67197575184333,45.4861371301142],[-122.67197495863091,45.48612620636199],[-122.67197450318507,45.48611514846189],[-122.67197356534392,45.48607029586343],[-122.67197296437098,45.48605906790812],[-122.67197195017303,45.48604788403606],[-122.67197034757855,45.48603677258811],[-122.67196794368685,45.48602576568372],[-122.67196490558456,45.48601580108599],[-122.67196125033968,45.486005914581],[-122.67194894162364,45.48597635141411],[-122.67194511659719,45.48596640822068],[-122.67194147303037,45.48595548128644],[-122.67193831185888,45.48594445358291],[-122.67193553696299,45.48593334904228],[-122.67193089087634,45.48591097494815],[-122.67192725180114,45.485888453473],[-122.67192581270004,45.48587715242517],[-122.67192360464108,45.48585307660082],[-122.67192157534683,45.48581688286085],[-122.6719206976928,45.48579275599717],[-122.67192018026321,45.48576867824737],[-122.67192023416212,45.48574471385067],[-122.67192061145452,45.48573280690923],[-122.67192133639497,45.48572097617075],[-122.67192252756104,45.48570924871655],[-122.67192433766634,45.48569765792593],[-122.67193023510619,45.48566957273258],[-122.67193155473133,45.48565852418977],[-122.67193213953458,45.48564737235792],[-122.67193220960317,45.48563615124607],[-122.67193118732037,45.48560238461015],[-122.6719310058607,45.48559119812828],[-122.67193120259175,45.48558010611397],[-122.67193199221087,45.48556915265326],[-122.67193362534807,45.48555839190885],[-122.67193908441003,45.48553716704937],[-122.67194167694795,45.48552579035513],[-122.67194852839862,45.48549143667976],[-122.67195156290765,45.48548024891624],[-122.67195557388538,45.48546938486768],[-122.67196827336856,45.48544415822394],[-122.67197253946786,45.48543340438352],[-122.67197591443838,45.48542227077129],[-122.67197861746905,45.4854108518572],[-122.67198082103647,45.48539922132775],[-122.67198423732947,45.48537554207375],[-122.67199197182408,45.48530322953317],[-122.67199518060627,45.48527909426211],[-122.6719972090022,45.48526706567042],[-122.67199959492758,45.48525521594007],[-122.67200525161891,45.48523160842303],[-122.6720151519517,45.48519637914202],[-122.67202252622184,45.48517304115613],[-122.67202651204673,45.48516144269755],[-122.67203077275616,45.4851499147746],[-122.67203539548662,45.48513848006021],[-122.67204049881573,45.48512717130428],[-122.67204570724775,45.48511686204489],[-122.67206243836991,45.48508627183048],[-122.67206772944694,45.48507603310171],[-122.6720725399253,45.48506569675133],[-122.67207673056608,45.48505523128918],[-122.67208758580797,45.48502348660883],[-122.67209143419065,45.48501296382655],[-122.67209582515574,45.48500256763312],[-122.6721015007117,45.48499139173883],[-122.67210799103965,45.4849804224185],[-122.67211516857878,45.48496965085497],[-122.67212296326049,45.48495908775504],[-122.67213136879661,45.48494876334958],[-122.67214043639108,45.48493873306153],[-122.67215027923166,45.48492907939576],[-122.67216090001325,45.48491994594816],[-122.67217221159932,45.48491116833956],[-122.6721840244453,45.48490264958001],[-122.67219619392245,45.48489431661208],[-122.67222119403682,45.48487800399401],[-122.67229749244548,45.48483006624512],[-122.67233440511882,45.48480619340102],[-122.67235742893956,45.4847902756468],[-122.67238196821818,45.4847715816954],[-122.67239643738243,45.48476140714985],[-122.67240663775249,45.48475391621427],[-122.67241653628861,45.48474604361402],[-122.67242598746371,45.48473783532494],[-122.67243879294809,45.48472584755525],[-122.67244757308167,45.48471808705695],[-122.67247546846617,45.48469494915207],[-122.67248460882419,45.48468708725034],[-122.67249331619425,45.48467903703466],[-122.67250586925202,45.48466628151536],[-122.67253352388806,45.48463891630961],[-122.67254244236219,45.48462953026141],[-122.67255070865944,45.48461985638868],[-122.67255809460772,45.48460974038802],[-122.67256457415586,45.48459930633162],[-122.67257020569437,45.48458862853689],[-122.672574968562,45.48457776242692],[-122.6725787585542,45.48456674767974],[-122.67258138792302,45.4845556101174],[-122.67258269227682,45.48454377220376],[-122.67258258986885,45.4845318946096],[-122.67258115346273,45.48452005039289],[-122.67257833814264,45.48450831450111],[-122.67257414390858,45.48449681289657],[-122.67256897230747,45.48448542843447],[-122.67255751878761,45.48446277349926],[-122.67255204984417,45.48445138714089],[-122.67254728877316,45.48443988048616],[-122.6725437404278,45.48442892617393],[-122.67254092690432,45.48441787234933],[-122.67253860655593,45.48440678136362],[-122.67253249980864,45.48437393162722],[-122.67253006088262,45.48436337786279],[-122.67252703895004,45.4843531868684],[-122.67252315104146,45.48434349027499],[-122.67251806028877,45.48433445309379],[-122.67251355793256,45.48432844216137],[-122.672502287669,45.48431495786914],[-122.6724961225312,45.48430704867845],[-122.67249040295781,45.48429880379621],[-122.6724854379692,45.48429019488076],[-122.67248076672973,45.48427936461263],[-122.67247720401132,45.48426812055504],[-122.6724743518603,45.48425661008403],[-122.67246939944812,45.48423330571878],[-122.67246663712862,45.48422175493258],[-122.67246321185247,45.48421044284351],[-122.67245871039457,45.48419952249664],[-122.67245321989155,45.4841896898369],[-122.67244694875255,45.4841802010541],[-122.67243984218032,45.48417042759353],[-122.67243175824107,45.48416116428113],[-122.6724222307092,45.48415265548523],[-122.67239068097811,45.4841287137042],[-122.67238107798771,45.48412060105707],[-122.67236190434629,45.48410289443378],[-122.67235192226686,45.48409473769586],[-122.6723307193312,45.48407884997172],[-122.67232032312842,45.48407078140449],[-122.67231063928966,45.48406239037045],[-122.6723021547018,45.48405346966008],[-122.67229546764283,45.48404422963161],[-122.67228994659709,45.48403447630161],[-122.67228519091596,45.48402437909027],[-122.67227208449597,45.48399345762901],[-122.67226701081125,45.48398338560298],[-122.6722609947938,45.48397366942162],[-122.67225430414156,45.48396509068773],[-122.67224666846163,45.48395693015094],[-122.67223827011203,45.48394917584489],[-122.6722292519249,45.48394183595743],[-122.67221972349469,45.4839349413497],[-122.67220428055667,45.48392476917227],[-122.67219366965649,45.48391720632632],[-122.67218370464508,45.48390909742761],[-122.67217466220342,45.48390039272036],[-122.67216726188211,45.48389171635357],[-122.67216065656982,45.48388260100248],[-122.67215459743322,45.48387317577956],[-122.67213185837844,45.48383432860292],[-122.67211472660766,45.48380693339154],[-122.67210972658478,45.48379763286005],[-122.67210497719189,45.48378668975968],[-122.67210117462328,45.48377550921541],[-122.67209815358899,45.48376415483889],[-122.67209581257934,45.48375267386645],[-122.67209410937356,45.48374110471692],[-122.67209306014132,45.48372947384274],[-122.67209273764612,45.48371780517697],[-122.67209317332905,45.48370642370658],[-122.67209416237415,45.48369503089713],[-122.6720996007749,45.48364945774681],[-122.67210039668225,45.48363809137827],[-122.67210055568405,45.483626747681],[-122.67209984960824,45.48361492027917],[-122.67209837996444,45.48360313822191],[-122.67209631383926,45.48359141536539],[-122.67209377250533,45.48357977060424],[-122.67209083321772,45.48356823102079],[-122.67208754268884,45.48355683377467],[-122.67208391349509,45.48354562547264],[-122.6720799348567,45.48353466846724],[-122.67206878227245,45.48350823232891],[-122.67206582861179,45.48349847890612],[-122.67206377506305,45.48348842442663],[-122.67206236201311,45.48347814320932],[-122.67205892685548,45.48343582795653],[-122.67205767999386,45.48342516064826],[-122.67205588785485,45.48341452734841],[-122.67205340401311,45.48340388396937],[-122.67204473976217,45.48337194248342],[-122.67204233048061,45.48336022713665],[-122.67204045659491,45.48334841605427],[-122.67203898784942,45.48333653442911],[-122.67203689028324,45.48331263261002],[-122.67203508017792,45.48327661610797],[-122.67203463820682,45.48325259459678],[-122.67203512419538,45.48322864046659],[-122.67203592189935,45.4832167159881],[-122.67203710318395,45.48320580174682],[-122.67203871565988,45.48319494796666],[-122.67204075932715,45.48318417165294],[-122.67204326652511,45.48317349484966],[-122.67204630013585,45.48316294715861],[-122.67204995538073,45.48315256510978],[-122.67206225601191,45.48312426072768],[-122.67206580256065,45.48311475790926],[-122.67206881281516,45.48310369374959],[-122.67207086546561,45.48309243875026],[-122.67207220305704,45.483081040778],[-122.67207302052397,45.48306953636272],[-122.67207347147823,45.48305795573606],[-122.67207401585729,45.48299961987542],[-122.67207507946259,45.48297637734313],[-122.67207618259376,45.48296484330459],[-122.67207784447703,45.4829533980694],[-122.67208275736331,45.48292977321227],[-122.67208485223459,45.48291795196236],[-122.67208594817923,45.48290703388421],[-122.67208631648847,45.48289604778247],[-122.67208610448606,45.4828850182204],[-122.67208542176647,45.48287396598232],[-122.67208433660159,45.48286291311224],[-122.67208288941566,45.48285188354368],[-122.67208108200532,45.4828409037295],[-122.6720788892177,45.48283000327166],[-122.67207624996739,45.48281922058987],[-122.67207306903298,45.48280860229155],[-122.67206921256546,45.48279820506153],[-122.6720650416876,45.48278892262856],[-122.67205620765509,45.48277070668399],[-122.67205234310273,45.48276159744984],[-122.67204919271104,45.48275221738718],[-122.67204393487167,45.48273339742322],[-122.67204094438011,45.48272411057079],[-122.67203246787709,45.48270387788676],[-122.67202377757502,45.48268215816417],[-122.6720190263855,45.48267142898977],[-122.67201333555816,45.48266103299407],[-122.67200784146189,45.48265303035609],[-122.67199574474827,45.48263727386018],[-122.67197814765019,45.4826124320352],[-122.67197191873198,45.48260419572262],[-122.67196508704423,45.48259617607108],[-122.67195704442751,45.48258805816457],[-122.67194835143053,45.48258017392467],[-122.67193020276682,45.48256455030305],[-122.6719213085472,45.48255653946353],[-122.67191201817054,45.48254741570859],[-122.67190313922227,45.48253802742244],[-122.67187737194665,45.48250932530696],[-122.67186857025351,45.48249990930176],[-122.67185940025108,45.482490742709],[-122.67183476305611,45.48246810649647],[-122.67182658569206,45.4824599054335],[-122.67181878202719,45.48245152990535],[-122.67177654593748,45.48240388863317],[-122.67176899020762,45.48239419422359],[-122.67175091340917,45.48236979947403],[-122.67174477791576,45.48236008301436],[-122.67173916703851,45.48234999872945],[-122.67172827406736,45.4823292884961],[-122.67172239189888,45.48231891070252],[-122.67171577850176,45.48230844032122],[-122.67169472917804,45.4822771633206],[-122.6716883565294,45.48226651657754],[-122.67168311845298,45.48225638944705],[-122.6716783996028,45.48224610926459],[-122.67166514675743,45.48221497583211],[-122.67166034256726,45.48220469312274],[-122.67164274097759,45.48217175896388],[-122.67163733401789,45.48216066816579],[-122.67163276608467,45.48214955154226],[-122.67162881619237,45.48213827304832],[-122.67162527413522,45.48212688244109],[-122.67161536302268,45.48209242339958],[-122.67161175808346,45.48208095027434],[-122.67160766805395,45.48206925166474],[-122.67160323037643,45.48205760155024],[-122.67159853218752,45.48204598859384],[-122.67158860939689,45.4820228401439],[-122.67155748097566,45.48195361895986],[-122.67154755279515,45.48193050070427],[-122.67153857323554,45.48190726906802],[-122.67153470149668,45.48189557861033],[-122.67153144869705,45.48188381256935],[-122.6715289837199,45.4818721668254],[-122.67152710085105,45.48186044927726],[-122.67152561863084,45.48184868007972],[-122.67152104979931,45.48180137589251],[-122.67151968346177,45.48178954873727],[-122.67151799552735,45.48177774173446],[-122.67151595724998,45.4817662937388],[-122.6715109751934,45.48174345820524],[-122.67149368801408,45.4816751512091],[-122.67148882273851,45.48165243845791],[-122.67148696861577,45.48164111199643],[-122.67148570558444,45.48162982017402],[-122.67148517018855,45.48161832868915],[-122.67148531302067,45.4816069367171],[-122.67148603077459,45.48159569968423],[-122.67148727044969,45.48158468687333],[-122.67148902665609,45.48157398646269],[-122.67149134071623,45.48156371056465],[-122.67149430336003,45.48155399837484],[-122.67149908329567,45.48154122892122],[-122.67150111169157,45.48153428867098],[-122.6715047211224,45.48151968888584],[-122.67150772868197,45.48150955658237],[-122.67151135068917,45.4814992126494],[-122.67151550360077,45.48148874211576],[-122.67152014609412,45.48147822371198],[-122.67152528266094,45.48146773490897],[-122.67153096630175,45.48145735758649],[-122.67153729762785,45.48144718244234],[-122.67154443653939,45.48143731655029],[-122.67155260761523,45.4814278883989],[-122.67156213963874,45.48141884949031],[-122.67157263106292,45.48141023446616],[-122.67158373603645,45.48140188019676],[-122.67160662241497,45.48138538517185],[-122.67161787561052,45.48137697295292],[-122.67162864461416,45.481368261556],[-122.67163847757325,45.48135937632024],[-122.67164776166173,45.48135016797208],[-122.67165665588135,45.48134073161811],[-122.67169925668708,45.48129265418252],[-122.67172327224787,45.48126742503864],[-122.67173037612514,45.48125932331669],[-122.67173750874849,45.48124982018369],[-122.67174376731109,45.48123996811373],[-122.67174925601745,45.48122984205843],[-122.67175401708847,45.48121950059345],[-122.67175803165948,45.48120898528865],[-122.67176121708547,45.48119832826618],[-122.67176342065287,45.48118754968102],[-122.67176452019076,45.48117646183843],[-122.67176464056502,45.48116530408056],[-122.67176397671003,45.4811541167176],[-122.67176265349163,45.48114293754043],[-122.67176072750365,45.48113181000863],[-122.67175819515286,45.4811207813609],[-122.67175498457402,45.48110991206265],[-122.67175096191818,45.48109927517658],[-122.67174597716668,45.48108900612031],[-122.67173991084357,45.48107914961325],[-122.67173260843862,45.48106982658673],[-122.67172366391335,45.48106090414282],[-122.67171350127252,45.48105262540351],[-122.67170238012932,45.48104494879905],[-122.67169047924844,45.48103787747895],[-122.67165384864609,45.48101911110939],[-122.67164164503295,45.48101197050258],[-122.67162990944209,45.4810044204924],[-122.6715957932242,45.48098145993976],[-122.6715800053331,45.48097141886777],[-122.67156981035292,45.48096429589069],[-122.67154982104125,45.48094942134308],[-122.67153949400873,45.48094213775133],[-122.67152856151172,45.48093528560636],[-122.67151620698164,45.48092877106055],[-122.67150310595152,45.48092284038567],[-122.67148948839011,45.48091733800878],[-122.67146145736,45.48090715268949],[-122.67142247047666,45.48089375260832],[-122.67141143108013,45.4808902701613],[-122.67139786023114,45.48088669512592],[-122.67136990825276,45.4808803355179],[-122.67135656557585,45.48087706910911],[-122.67134335764622,45.48087350037142],[-122.67133038597353,45.48086961355856],[-122.67131776823702,45.48086537213908],[-122.67130564906553,45.48086071942623],[-122.67129420542715,45.48085557227955],[-122.671285304021,45.48085088681362],[-122.67126047458653,45.48083630637685],[-122.67125269607449,45.48083147100458],[-122.67124322603478,45.48082476560165],[-122.67123442164666,45.48081749648038],[-122.67122640148781,45.48080972284668],[-122.67121934162799,45.48080147241381],[-122.67121348640899,45.48079274203231],[-122.6712085564547,45.48078231923618],[-122.67120510782232,45.48077142467858],[-122.67120280184699,45.48076020448505],[-122.67120140766166,45.48074877265881],[-122.67120078512917,45.4807372243074],[-122.67120087675731,45.48072563753265],[-122.67120170500401,45.48071408350788],[-122.67120336868395,45.48070263340648],[-122.67120604386683,45.48069135903189],[-122.67120913766469,45.48068215561338],[-122.67121276326517,45.48067308005359],[-122.67122088942524,45.48065418255297],[-122.67122543759551,45.48064442233753],[-122.67123064153594,45.48063490713358],[-122.6712479880041,45.48060921853135],[-122.67125470021588,45.4805987673578],[-122.67126742036032,45.48057731703135],[-122.67127331330857,45.48056638401298],[-122.67127877147223,45.4805553388783],[-122.67128365381582,45.4805441879258],[-122.67128776630318,45.4805329273763],[-122.67129085111787,45.4805215452625],[-122.67129270613893,45.48050992758048],[-122.67129350833449,45.48049820785943],[-122.67129351013112,45.48048642137127],[-122.67129289388683,45.48047460023854],[-122.67129177548428,45.4804627715451],[-122.67129021690728,45.48045096300451],[-122.67128822983388,45.48043920359028],[-122.67128577563649,45.4804275260549],[-122.67128276538199,45.48041597133912],[-122.67127905444156,45.48040458794196],[-122.67127443889764,45.48039343821936],[-122.67126965087716,45.48038409114482],[-122.67125367972972,45.48035637995703],[-122.67124848207752,45.4803461712316],[-122.67123923751491,45.4803253563352],[-122.67122609336568,45.48029388612703],[-122.67122132780307,45.48028352370497],[-122.6712160924216,45.48027331685595],[-122.67121018150704,45.48026333234502],[-122.67120382682472,45.48025411877882],[-122.67117573021756,45.48021801151149],[-122.67116890571637,45.48020818508527],[-122.67116255822057,45.48019817788787],[-122.67115662394981,45.48018803085998],[-122.67115106158157,45.48017777675421],[-122.67114585404786,45.48016744013499],[-122.6711410076369,45.48015704115782],[-122.67113654929814,45.48014659682888],[-122.67112511823615,45.48011777760086],[-122.67112066169405,45.48010838639041],[-122.67111546583843,45.48009918161692],[-122.67109088074572,45.48006126214182],[-122.67108436706162,45.48005042413227],[-122.67107188317412,45.48002845081257],[-122.67104810746346,45.47998388562365],[-122.67100187566737,45.47989414039453],[-122.67098431180695,45.47986055612642],[-122.67097218994049,45.47983829929434],[-122.670959341337,45.47981627424316],[-122.67095246293688,45.47980540721274],[-122.67094502578463,45.4797944463306],[-122.6709292253171,45.47977281996596],[-122.67087933558115,45.47970875775631],[-122.67086311649871,45.47968733984393],[-122.67084782357931,45.47966575500926],[-122.67082711920862,45.47963383785829],[-122.67082006204377,45.47962350491847],[-122.67081258716229,45.47961350958469],[-122.67080039702387,45.47959874931598],[-122.67079285207383,45.47958900907338],[-122.67077161230723,45.47955975117344],[-122.67076435571636,45.47955053308313],[-122.67075422271998,45.47953832564608],[-122.67074795876748,45.47952928139539],[-122.67074240268747,45.47951967782181],[-122.67073736852859,45.47950965286585],[-122.67073270447565,45.47949931927344],[-122.67072829015434,45.47948876900489],[-122.67071125540161,45.47944575664196],[-122.67070675933361,45.47943508227956],[-122.67069230454237,45.47940338356202],[-122.67068851275356,45.47939242827044],[-122.67068550339737,45.47938125504245],[-122.67067835819759,45.47934715523628],[-122.67067575398158,45.47933582390225],[-122.67067259999662,45.47932463554617],[-122.67066853511994,45.47931318705201],[-122.67066397796653,45.47930196845773],[-122.67065170877636,45.47927328862869],[-122.67064751723724,45.47926505875656],[-122.67064267891112,45.47925747135002],[-122.67063719649296,45.47925096605822],[-122.67063101788042,45.47924536714803],[-122.67062432004167,45.47924082893768],[-122.67061850704347,45.47923794791402],[-122.67061276770713,45.47923574651958],[-122.67060204182263,45.47923218460652],[-122.67059647765775,45.47922973567304],[-122.67059118658072,45.47922657246716],[-122.67058655486713,45.47922261436541],[-122.6705818090675,45.47921599632291],[-122.670578348757,45.47920820483191],[-122.67057562057347,45.47919961529442],[-122.67057037620887,45.47918126150748],[-122.67056547230573,45.47916632098259],[-122.67056342594351,45.47915713747084],[-122.67056205062281,45.47914754706111],[-122.67055876458549,45.47910690779207],[-122.67055748358791,45.47909649224251],[-122.6705553680554,45.47908453791533],[-122.67055272611017,45.47907258673498],[-122.6705439648412,45.47903690324414],[-122.67054156544107,45.47902512715806],[-122.67053990086285,45.47901345373873],[-122.67053934660231,45.47900192518757],[-122.67054036888513,45.47899059567377],[-122.67054326864685,45.47897970013985],[-122.67054765781535,45.47896904080607],[-122.67055304411376,45.47895861137383],[-122.67055901611378,45.47894842947972],[-122.67056556662884,45.47893828285663],[-122.67057301635749,45.47892869303953],[-122.67058083439539,45.47892073774173],[-122.67060569527088,45.47889895609288],[-122.67061230148147,45.47889182340572],[-122.67061684605851,45.47888449104773],[-122.67061864807896,45.47887597830547],[-122.67061692600856,45.47886741580195],[-122.67061212451338,45.47885946490463],[-122.67060505746706,45.47885167210457],[-122.67057840535088,45.47882764744693],[-122.67057004023894,45.47881882542782],[-122.67056352745313,45.47881026858443],[-122.6705578474056,45.47880124311315],[-122.6705527297034,45.47879188506658],[-122.67053835486223,45.47876290956657],[-122.67053312487066,45.47875325736202],[-122.67052667586525,45.47874263766751],[-122.6705129496077,45.47872158849493],[-122.67050639280443,45.47871098013221],[-122.67050054926352,45.47870018343473],[-122.67049570285253,45.47868906927776],[-122.67049171073943,45.4786777277334],[-122.67048832858239,45.47866622241897],[-122.67048535695544,45.47865460057513],[-122.67047453854447,45.4786076275408],[-122.67047144654325,45.47859588663814],[-122.67046459958415,45.47857370741126],[-122.67044939469969,45.47852946167944],[-122.67044581940483,45.47851836449551],[-122.67044256211362,45.4785072345557],[-122.6704397764379,45.4784960605223],[-122.67043756119241,45.47848462886649],[-122.67043591727544,45.47847317075352],[-122.6704347746184,45.47846171641749],[-122.67043411435668,45.47845030365113],[-122.6704339697279,45.47843897717576],[-122.67043442876702,45.4784277943105],[-122.67043564778086,45.47841683001097],[-122.67043785583984,45.47840618442805],[-122.67044137274418,45.47839598479747],[-122.67044662878692,45.47838640118689],[-122.67045340208414,45.47837818315288],[-122.67046176000953,45.47837060759459],[-122.67047139983087,45.47836364301838],[-122.67048210954566,45.47835729824267],[-122.67049375350838,45.47835162869714],[-122.67050626165039,45.47834673390297],[-122.67052035801385,45.47834248158563],[-122.67053512182555,45.47833897945466],[-122.67055031323531,45.47833599508458],[-122.67059644801336,45.47832831118134],[-122.67061136004709,45.47832562852319],[-122.67062566212469,45.47832260446997],[-122.67063906139548,45.47831903871993],[-122.67065119134678,45.47831469002882],[-122.67066159024448,45.47830926361268],[-122.67067058956701,45.47830187511959],[-122.67067782280166,45.47829331063915],[-122.67068357381613,45.47828450932239],[-122.67068792166209,45.47827506426653],[-122.67069035968977,45.47826525702781],[-122.67069129842925,45.47825497107808],[-122.67069110079989,45.47824434688051],[-122.67069003270301,45.47823349907324],[-122.67068827380169,45.47822251961874],[-122.67068593279204,45.47821149166128],[-122.67068305099663,45.47820049330605],[-122.67067960595752,45.47818960328828],[-122.67067551053813,45.47817891168109],[-122.67067061022827,45.47816852493453],[-122.67066467326255,45.47815857469409],[-122.67065700793823,45.47814866098506],[-122.67064798256457,45.47813949557399],[-122.67063764205733,45.47813121262616],[-122.67062591005973,45.47812401937314],[-122.67061350881723,45.47811838507752],[-122.67060008349532,45.47811364269459],[-122.6705859413178,45.4781095194855],[-122.67057133111803,45.47810578554338],[-122.6705266399326,45.47809498243105],[-122.67051202074967,45.47809089701356],[-122.67049782646988,45.47808622895445],[-122.67048380376828,45.47808064504567],[-122.67047028771651,45.47807439283086],[-122.67045716063529,45.47806763796896],[-122.67044433179473,45.47806050643631],[-122.67043173651611,45.47805309523476],[-122.6704071020161,45.47803769081684],[-122.67038317269355,45.47802173650658],[-122.67037154220556,45.47801357510892],[-122.67036022343299,45.4780052707265],[-122.67034932237701,45.47799678556633],[-122.6703389899546,45.47798806482842],[-122.67032942289683,45.47797903040701],[-122.67032088351172,45.47796957711145],[-122.67031349307189,45.47795949393038],[-122.67030712401653,45.47794899376429],[-122.67030147630834,45.47793819692076],[-122.67029630740221,45.47792719851219],[-122.67027675018015,45.47788258756938],[-122.67027133154235,45.47787156773389],[-122.67026535235583,45.47786071733532],[-122.67025909289492,45.47785069901295],[-122.67025237080166,45.47784082493249],[-122.67023140861451,45.4778114899086],[-122.67022479252242,45.47780162463972],[-122.67021870284312,45.47779162016428],[-122.67021328600197,45.47778140341559],[-122.67020841982806,45.47777104997972],[-122.6701908487811,45.47772951716872],[-122.67018610477808,45.47771942827571],[-122.67018087029493,45.47770961275175],[-122.67017493063427,45.47770017137882],[-122.67016896582081,45.47769213843152],[-122.67015652774735,45.47767642338054],[-122.67014939332736,45.47766638234946],[-122.67012869704153,45.47763710392461],[-122.67012244925871,45.47762727263915],[-122.67011687341579,45.47761645179825],[-122.67010728839168,45.4775940737711],[-122.67010218865582,45.47758281641136],[-122.6700967098309,45.47757243522391],[-122.6700905976937,45.47756217686285],[-122.67008400675448,45.47755204321778],[-122.67007706367565,45.47754204562683],[-122.67006251545962,45.47752255561047],[-122.67004176257993,45.47749694558514],[-122.67003633136572,45.47748990090498],[-122.67002069978145,45.47746591975899],[-122.6700075727002,45.47744657900018],[-122.67000148481753,45.4774367306744],[-122.66999626560572,45.47742673306298],[-122.66999299214484,45.47741886447795],[-122.66998341340897,45.47739352462847],[-122.66998059898717,45.47738460979095],[-122.66997834421582,45.47737448619218],[-122.66997696440355,45.4773641711049],[-122.66997637241376,45.47735373318703],[-122.66997653321219,45.47734323353792],[-122.66997746296852,45.47733272758792],[-122.66997923175131,45.47732226824795],[-122.66998187549319,45.47731183095222],[-122.66999132217671,45.47728082707034],[-122.66999360030428,45.47727050314742],[-122.66999475823269,45.47726086139533],[-122.66999497652331,45.47725123601882],[-122.66999428571884,45.47724167677931],[-122.66999267593783,45.47723223658778],[-122.66998676053171,45.47721115724604],[-122.66998414373928,45.47720034010456],[-122.66998204707143,45.47718929619974],[-122.66997890566286,45.4771667510814],[-122.6699739900816,45.47712094210939],[-122.66997070134937,45.47709816327318],[-122.66996845196792,45.47708691211327],[-122.66996559263035,45.47707580519682],[-122.66995659061288,45.47704795947429],[-122.66995370971578,45.47703618927154],[-122.66995159687822,45.47702425718346],[-122.66995009579338,45.47701220541288],[-122.66994909776511,45.47700006923382],[-122.66994853811468,45.47698787762145],[-122.6699483916893,45.47697565325188],[-122.66994866837041,45.47696341754153],[-122.66994941666704,45.4769511893873],[-122.66995061501962,45.47693933538824],[-122.66995504012071,45.47690395478602],[-122.66995604623382,45.47689224313346],[-122.66995639927173,45.47688059131863],[-122.66995578662069,45.4768690176085],[-122.66995416605994,45.47685840070835],[-122.66995181876212,45.47684782726908],[-122.66994643515859,45.47682665329901],[-122.66993724988484,45.47678431730309],[-122.66993457829517,45.47677381880765],[-122.66993138478433,45.47676343243204],[-122.66992066698467,45.47673572954189],[-122.66991693807792,45.47672496899996],[-122.66991359544677,45.47671408184651],[-122.66990127505262,45.47667002677347],[-122.66989773748705,45.47665905898241],[-122.66989367800028,45.47664818441418],[-122.66988877409713,45.47663706796278],[-122.66988327371266,45.47662606300126],[-122.669871062913,45.47660427479627],[-122.66985788193284,45.47658267051344],[-122.66983712905314,45.47655051792326],[-122.66982270749956,45.47652935643949],[-122.6698152335164,45.47651893474438],[-122.66980749453025,45.47650868249048],[-122.66979939172637,45.47649866896693],[-122.66979078945923,45.4764889855094],[-122.66978151076064,45.47647975557852],[-122.66977272793211,45.47647212811317],[-122.66976350133582,45.47646484394264],[-122.66973667314987,45.47644521245589],[-122.66972868263542,45.47643970649222],[-122.66972040466008,45.47643454445394],[-122.66971214644765,45.47643004507109],[-122.66970359807941,45.47642576363362],[-122.66967861593136,45.47641395046761],[-122.66966566042834,45.47640848670427],[-122.66963744344697,45.47639789491342],[-122.66960374404739,45.47638404589985],[-122.66958906827058,45.47637879944963],[-122.66957380499558,45.47637413250847],[-122.66955802878257,45.47637010491717],[-122.66954211872056,45.4763668237591],[-122.66952589155328,45.47636404778212],[-122.66950946585831,45.47636159809407],[-122.66945996868617,45.47635475673029],[-122.66944369839975,45.47635219743893],[-122.66942770748935,45.47634925894651],[-122.66941211992255,45.47634576362059],[-122.66939748995985,45.47634176059344],[-122.66936873758256,45.47633320652341],[-122.66933784362159,45.47632495102575],[-122.66929957988206,45.47631370727029],[-122.66928677978758,45.47631015336123],[-122.66925929044159,45.47630337498145],[-122.66924574923698,45.47629982611096],[-122.66923172563708,45.47629557615875],[-122.66920414466293,45.4762866617774],[-122.66917487216108,45.47627802140237],[-122.66915349405394,45.47627116302102],[-122.66914154556234,45.47626768847708],[-122.66910483141669,45.4762578267173],[-122.66909276614409,45.47625422808161],[-122.66907099277824,45.47624694136331],[-122.66905643108748,45.47624234936968],[-122.66901146501763,45.47622889715691],[-122.66899663652724,45.47622395178608],[-122.66898253297727,45.47621870343127],[-122.66895460884668,45.47620774689063],[-122.66894040109213,45.47620256782371],[-122.66892624633819,45.47619798968435],[-122.66888300413537,45.47618531287256],[-122.66886888621235,45.47618074040094],[-122.6688552291251,45.47617560731449],[-122.66884115432123,45.47616920749082],[-122.66882771103299,45.47616206437962],[-122.66881477708955,45.47615435813328],[-122.66880228332057,45.47614621851179],[-122.66879020816651,45.47613773307163],[-122.66877858486505,45.47612894842567],[-122.66876749965444,45.47611987654184],[-122.66875709985842,45.47611049663321],[-122.66874760825911,45.47610075011851],[-122.66873933028378,45.47609054440149],[-122.66873269442877,45.47608010939722],[-122.66872719763754,45.47606925928356],[-122.6687225335846,45.47605810870308],[-122.66871847230119,45.47604674395256],[-122.66871151754425,45.47602360752567],[-122.6687054772723,45.4760001807027],[-122.66869747957132,45.47596481966782],[-122.66869302302918,45.47594116920362],[-122.66869123358514,45.47592931940142],[-122.66868978729754,45.47591699338724],[-122.66868785052979,45.47589231615444],[-122.66868674380535,45.47586768426422],[-122.66868627308817,45.47584322243826],[-122.66868657132883,45.47581913539686],[-122.66868714355566,45.47580733596165],[-122.66868811732944,45.4757957815582],[-122.6686896202109,45.47578455722435],[-122.66869296104545,45.47576428362385],[-122.66869339313509,45.47575577670936],[-122.66869366532464,45.4757385890216],[-122.66869479360862,45.47572768592988],[-122.66869785955868,45.47570520510737],[-122.66869855934628,45.4756940651633],[-122.66869863749972,45.47568274128346],[-122.6686982485292,45.4756712800811],[-122.66869653005205,45.47564808050909],[-122.66869408663447,45.47562465856927],[-122.66867750014106,45.47548378720358],[-122.66867459049786,45.47546142470723],[-122.66867303102254,45.47545187335296],[-122.66867092447322,45.47544268419653],[-122.66866783516694,45.47543396369321],[-122.66866326903036,45.47542584727443],[-122.66865561448581,45.47541723007414],[-122.66864607437749,45.47540926987121],[-122.66863543023972,45.47540161580462],[-122.66861722049059,45.47538947990866],[-122.66860770194184,45.47538368912125],[-122.66858546324866,45.47537118850185],[-122.66857502662167,45.47536462606925],[-122.6685680503052,45.47535944944449],[-122.6685613875007,45.47535400762587],[-122.66855210520889,45.47534605434307],[-122.6685431373274,45.47533783271608],[-122.66853479108011,45.47532932573716],[-122.6685207549038,45.47531274830559],[-122.66851352256742,45.47530463753853],[-122.66849421507705,45.47528616216938],[-122.66848580415103,45.47527730432063],[-122.6684777857888,45.47526801686912],[-122.66845460835616,45.4752390956194],[-122.66843445195784,45.47521471540949],[-122.66842824819247,45.4752060043196],[-122.66842275499449,45.47519700472741],[-122.66841795799088,45.47518778088407],[-122.66841388502938,45.47517838444254],[-122.66841060438198,45.47516885697706],[-122.66840789326643,45.47515810117523],[-122.66840170926402,45.47512606871604],[-122.66839881309555,45.47511579605143],[-122.66839271353476,45.47509996374755],[-122.66838944097219,45.47509052130744],[-122.6683866265504,45.47508079414373],[-122.66838424331993,45.47507084587772],[-122.66838229397578,45.4750607294223],[-122.66838080995895,45.47505048572189],[-122.6683798559481,45.47504015068178],[-122.66837953345292,45.47502975138826],[-122.66837998710211,45.47501847272897],[-122.66838113514906,45.47500717139039],[-122.66838282308349,45.47499586815981],[-122.66838493861599,45.47498458634414],[-122.66839019106546,45.47496217892555],[-122.66839327049026,45.47495111316486],[-122.66840280520869,45.47492175647927],[-122.66840539594993,45.47491261133061],[-122.66840742165093,45.47490276508167],[-122.66841127093188,45.47487376805427],[-122.66841285556005,45.47486455486663],[-122.66841513638256,45.47485573789631],[-122.66841848260701,45.47484744879652],[-122.66842340447646,45.47483927119114],[-122.66842896055648,45.47483134177261],[-122.66843414203903,45.47482314778696],[-122.66843847641029,45.47481344766361],[-122.66844162500534,45.47480306092661],[-122.66844400015097,45.47479219607897],[-122.66845004581285,45.47475839459722],[-122.66845285035313,45.4747471977732],[-122.66845668795604,45.47473626614326],[-122.66846955991574,45.47470980886872],[-122.668474524006,45.47469893833381],[-122.66848405602947,45.4746766637149],[-122.66850260983335,45.47463158657677],[-122.66850735383638,45.474620513822],[-122.66851699096273,45.47459930058982],[-122.66852126245192,45.4745890391678],[-122.66852416670523,45.47458016861102],[-122.66852906432017,45.47456248670593],[-122.6685318940133,45.47455382338934],[-122.6685355555464,45.47454538810321],[-122.66854063641765,45.47453680919353],[-122.66854663446881,45.47452842807817],[-122.66855945432623,45.47451166206413],[-122.66856534817281,45.47450297795226],[-122.66857043892553,45.47449383273568],[-122.66857482180581,45.4744843807452],[-122.66859031415117,45.47444538158265],[-122.66859486681304,45.47443575698505],[-122.66860003751583,45.47442642026083],[-122.66861688541897,45.47439902740413],[-122.66862189532331,45.47438989602895],[-122.66862632850925,45.47438031362683],[-122.66863719363261,45.47435353240412],[-122.66864003590214,45.47434572890208],[-122.66864261406702,45.47433541389032],[-122.66864427774694,45.47432482800907],[-122.6686467202662,45.47430334316798],[-122.66864840370903,45.47429268420944],[-122.66865103936607,45.47428224824233],[-122.66865518149784,45.47427217762987],[-122.66866067559414,45.47426335237784],[-122.66866745697622,45.47425482822872],[-122.66867506570668,45.474246476048],[-122.66869113836371,45.47422980695863],[-122.66869883153581,45.47422124752863],[-122.66870576922476,45.47421236368551],[-122.66871178703886,45.47420280267066],[-122.66871686431683,45.47419286495838],[-122.66872126516341,45.47418265511631],[-122.66872521056415,45.47417225755432],[-122.66873616641735,45.47414063587681],[-122.66874008397029,45.47413015263704],[-122.6687444165449,45.47411979727047],[-122.66875808800521,45.47409169307692],[-122.66876220408585,45.47408229708252],[-122.66876604079042,45.47407163556249],[-122.66877589171582,45.47403942358623],[-122.66877993772788,45.47402888678374],[-122.66878444906725,45.47401943660509],[-122.6687996458669,45.47399147031578],[-122.66880405659495,45.47398199745343],[-122.66880791665572,45.4739714203248],[-122.66881102302997,45.47396066807402],[-122.66881932705645,45.47392814043992],[-122.66882800029052,45.47390060497697],[-122.66883083357692,45.47388909112802],[-122.66884190710944,45.47383445417232],[-122.66884269942352,45.47382472238227],[-122.66884318451375,45.47380521155234],[-122.6688441726606,45.47379550180479],[-122.66884581388261,45.47378795649706],[-122.66884821777431,45.4737805000085],[-122.66885131157214,45.47377317265477],[-122.66886422036278,45.473748542358],[-122.66886848107215,45.47373776423751],[-122.66887188928035,45.47372659933718],[-122.66888585718472,45.4736723483722],[-122.66888786402106,45.47366190725077],[-122.66888912256077,45.47365203054652],[-122.66889092458123,45.47363243524586],[-122.66889218761251,45.47362279854072],[-122.66889621296332,45.47360172540797],[-122.6688974104176,45.47359162002758],[-122.66889800061071,45.47358141385613],[-122.66889858900724,45.47354115987151],[-122.6688993157443,45.47353169386271],[-122.66890072340433,45.47352269904259],[-122.66890308687185,45.47351432974516],[-122.66891076656924,45.47349711113695],[-122.66891325849582,45.47348857616306],[-122.668918458843,45.47345966344915],[-122.66892468596456,45.47342791979447],[-122.6689264637305,45.47341700302703],[-122.66892779503374,45.47340597286921],[-122.66892855500848,45.47339426867886],[-122.66892876431595,45.47338248637407],[-122.66892856578825,45.4733706511523],[-122.66892734407946,45.47334688432115],[-122.66892545402411,45.47332305889594],[-122.66892314715047,45.47329922968103],[-122.66892045130631,45.47327544077199],[-122.668917182337,45.47325175894215],[-122.66891290096633,45.47322829947002],[-122.66891015032493,45.47321671430081],[-122.66890681218536,45.47320527401479],[-122.66890270868113,45.47319403026682],[-122.66889811559507,45.4731837893768],[-122.66888798978519,45.47316371012132],[-122.66888325656195,45.47315375647738],[-122.66887931475448,45.47314379212276],[-122.66887666023283,45.47313377107199],[-122.66887572149336,45.47312418656638],[-122.66887623982129,45.47311457686167],[-122.66887808316424,45.47310501125099],[-122.66888120121661,45.47309556406711],[-122.66888643120818,45.47308476125414],[-122.66889316677617,45.4730742847473],[-122.66890125969859,45.47306421076927],[-122.66890920619558,45.47305592140597],[-122.66891777792,45.47304787897742],[-122.66894426564448,45.4730241126401],[-122.66896192831958,45.47300672883804],[-122.66897106149109,45.47299825930361],[-122.66898173886656,45.47298947542809],[-122.66900384191412,45.47297208090633],[-122.66901263192918,45.47296436918425],[-122.66902095032872,45.47295633052229],[-122.66902877016325,45.47294799389763],[-122.66903604112717,45.47293937442864],[-122.6690438295207,45.47292895773906],[-122.66907208333299,45.47288638951647],[-122.66907975494554,45.47287627455871],[-122.66908828085589,45.47286674607407],[-122.66909806889923,45.47285806737823],[-122.6691092879588,45.47285055029231],[-122.66912180059239,45.47284393969063],[-122.66913528071154,45.4728380617098],[-122.66914948038125,45.4728328105199],[-122.66916421724349,45.47282813950544],[-122.66917936194088,45.47282406189529],[-122.66919482464185,45.47282064950298],[-122.66921055324416,45.47281803461628],[-122.66922652079835,45.47281641944652],[-122.66924191612567,45.47281595580962],[-122.66925744350534,45.47281630794688],[-122.6692730328688,45.47281718923492],[-122.66931947666731,45.47282055375191],[-122.66933458543207,45.47282111943922],[-122.66934933217578,45.47282095817427],[-122.66936357137133,45.47281973608796],[-122.66937403854101,45.47281787020156],[-122.66938401882383,45.47281518224155],[-122.66939341250676,45.47281168039699],[-122.66940561432327,45.47280541058915],[-122.66941692950259,45.47279803397321],[-122.66943684605076,45.47278309679536],[-122.66944568277819,45.47277600931979],[-122.66945412963679,45.4727687467195],[-122.66946196025114,45.47276127182778],[-122.66947315325959,45.47274892748225],[-122.66948500652978,45.47273503599568],[-122.66949744460317,45.47271787888375],[-122.66950397715193,45.47270941812512],[-122.6695119982091,45.47270062601533],[-122.66952935186374,45.47268363015827],[-122.66953753821095,45.47267505348501],[-122.66954459178253,45.47266616372866],[-122.66954990082588,45.47265726578165],[-122.66955924150821,45.47263873221974],[-122.66956451012734,45.47262987395486],[-122.6695827629956,45.47260300055847],[-122.66958864696072,45.47259378321992],[-122.66959390300343,45.47258433028086],[-122.6695986901256,45.4725735733558],[-122.66960264630609,45.47256254240299],[-122.66961251968939,45.47252867973918],[-122.66961603389876,45.4725173722318],[-122.66962010326704,45.47250616110376],[-122.66962458765693,45.4724957972495],[-122.66964479705588,45.4724547607271],[-122.66964916735971,45.47244435591693],[-122.66965292411423,45.47243340809161],[-122.66965601701376,45.47242232419592],[-122.66965862392473,45.47241114139649],[-122.66966089217081,45.47239989308048],[-122.6696709586919,45.47234356579393],[-122.66967339761788,45.47233246676181],[-122.66967623629419,45.47232150064632],[-122.6696796220445,45.47231071595347],[-122.66968373093862,45.47230017252833],[-122.66969394298674,45.47227941828433],[-122.66969875885498,45.47226900084282],[-122.66970242038808,45.47225891097217],[-122.66970526086101,45.47224861825658],[-122.669707434784,45.47223818317081],[-122.66970905534478,45.47222766115033],[-122.66971019800182,45.47221710070105],[-122.66971090677258,45.47220654906902],[-122.66971119333513,45.47219605539031],[-122.66971104421482,45.47218566880088],[-122.66971041898736,45.47217544725608],[-122.66970870769677,45.47215754159465],[-122.66970860439049,45.47214869081351],[-122.6697096033171,45.47213982302236],[-122.66971143318534,45.47213088845524],[-122.6697192188839,45.47209929209018],[-122.6697242377714,45.47207615656242],[-122.66972633623588,45.47206445083597],[-122.66972800800065,45.47205268022223],[-122.66972910125034,45.4720408585801],[-122.66972949111918,45.47202973051069],[-122.6697293815247,45.47201857787098],[-122.66972823886766,45.47199624297728],[-122.66972589875637,45.47196282975822],[-122.66972509925573,45.47194077013111],[-122.66972526634241,45.47192986315485],[-122.66972600116429,45.47191907712713],[-122.66972917491219,45.47189600452059],[-122.66973034272208,45.47188462066208],[-122.6697304091974,45.47187323554139],[-122.66972927013362,45.4718619915277],[-122.66972519537548,45.47184106766517],[-122.66972387575034,45.47182994081619],[-122.66972336101568,45.47181856513376],[-122.66972343108426,45.47180700361299],[-122.66972390269979,45.47179530476009],[-122.66972681683457,45.47174783086455],[-122.66972708453252,45.47173591592534],[-122.66972683480085,45.47172402303202],[-122.66972584665405,45.47171217486287],[-122.66972398354817,45.4717004652811],[-122.66972149790978,45.47168880168354],[-122.66971597237246,45.4716655399964],[-122.66971355770096,45.4716539154488],[-122.66971186347834,45.47164326984812],[-122.66971064356621,45.47163265637315],[-122.66970983777739,45.4716221178608],[-122.669709409281,45.47161170596738],[-122.66970934370399,45.47160148179867],[-122.66971066871902,45.47157052328159],[-122.66970991862576,45.47156080936933],[-122.6697083995746,45.4715542773608],[-122.66970469761732,45.47154123161024],[-122.66970324144827,45.4715315548603],[-122.6697027788159,45.47152131366823],[-122.66970296207221,45.47151066048305],[-122.66970444698737,45.47147739375594],[-122.66970432930806,45.47146617927123],[-122.66970210687604,45.47143735749348],[-122.66970189487365,45.47142795034724],[-122.66970259376291,45.47141868556978],[-122.66970472366847,45.47140849601367],[-122.66971026627377,45.47138802366221],[-122.66971208715886,45.47137707878154],[-122.66971303308485,45.47136585734732],[-122.66971335827496,45.47135443747418],[-122.66971249679064,45.47130797051054],[-122.66971267465705,45.47129640447534],[-122.66971342475031,45.47128495749988],[-122.66971501297172,45.47127369006034],[-122.66971776361314,45.47126267271216],[-122.66972171170882,45.47125225004304],[-122.66973081703254,45.47123150549253],[-122.66973441568358,45.47122135244022],[-122.66973732622507,45.47121097512057],[-122.66973962052231,45.47120042582001],[-122.66974133630451,45.47118974548592],[-122.66974247267335,45.47117896813601],[-122.66974298920464,45.47116811896862],[-122.66974280954159,45.47115616988899],[-122.66974200914264,45.47114417796958],[-122.66973920011077,45.4711201178979],[-122.66972988368295,45.47105992326147],[-122.66972692463243,45.47103601497445],[-122.66972602092723,45.47102415658131],[-122.66972572358488,45.47101239771958],[-122.66972626526898,45.47100077555713],[-122.66972794332193,45.47098933986094],[-122.66973031487429,45.47098017202547],[-122.66973660487788,45.47096210597392],[-122.66974427828707,45.4709422703523],[-122.66974884622029,45.47093257397069],[-122.66975457208191,45.47092253866752],[-122.66976671640624,45.47090267972334],[-122.66977185836292,45.47089250582305],[-122.66977573549167,45.47088170069792],[-122.66977839180997,45.47087056609995],[-122.66978013543995,45.47085918266433],[-122.66978120443511,45.47084761338717],[-122.66978178295017,45.47083590803553],[-122.66978198686775,45.47081222392064],[-122.6697814613533,45.47078833064771],[-122.66978054417339,45.47076435231948],[-122.66977930898989,45.47074039287997],[-122.66977760398747,45.47071659155147],[-122.66977500516136,45.47069319024079],[-122.66977314025881,45.47068176708152],[-122.66977071301093,45.47067063433398],[-122.66976753297483,45.4706599022423],[-122.66975969607229,45.47064024227478],[-122.66975451189478,45.47062633262944],[-122.66975173340562,45.47061973373621],[-122.66974734333881,45.47061141944469],[-122.66973878149582,45.47059669398597],[-122.66973625094167,45.47059037416437],[-122.66973562122269,45.47058444366129],[-122.66973556642544,45.47057877144383],[-122.6697347579417,45.47057440010657],[-122.66973271607104,45.47057002120938],[-122.66972857932917,45.47056519440563],[-122.66971730457401,45.470555236523],[-122.66971187156318,45.47054953343418],[-122.6697071814591,45.47054229133587],[-122.66970406879662,45.47053437580198],[-122.66970262969555,45.47052618560136],[-122.66970308783634,45.47051810753367],[-122.66970580973164,45.47051053721844],[-122.66970983148917,45.47050518312701],[-122.66971547380749,45.47050060074498],[-122.66972470309871,45.4704960593105],[-122.66973556462881,45.47049245967689],[-122.6697591867275,45.47048573036477],[-122.66977056928049,45.47048143083663],[-122.66978081456631,45.47047582097557],[-122.66978955517402,45.47046895873828],[-122.66979640752301,45.4704609783074],[-122.66980099521915,45.4704522085257],[-122.66980390576066,45.47044269034072],[-122.66980563322095,45.4704326341614],[-122.66980659082508,45.47042220629901],[-122.66980819791111,45.47038993049998],[-122.669809314517,45.47037917189618],[-122.66981125847128,45.47036770835523],[-122.66981560272397,45.4703453331193],[-122.66981874503085,45.4703226655687],[-122.66982248651401,45.47030372931852],[-122.6698231979797,45.47029725701144],[-122.66982339471076,45.47029094597584],[-122.66982304167286,45.47027740666653],[-122.6698241726518,45.47026350953102],[-122.66982443316321,45.470253552855],[-122.66982402442979,45.47024299140585],[-122.66982185499837,45.47022063564943],[-122.66981864531785,45.47019729209014],[-122.66980956874023,45.4701372508111],[-122.66980652075647,45.47011300257801],[-122.66980534486176,45.47010086113333],[-122.66980451122518,45.47008871149641],[-122.66980409350857,45.47007700031742],[-122.66980435402,45.4700188475684],[-122.66980412584792,45.47000745766097],[-122.66980349253565,45.4699962422538],[-122.66980225735215,45.46998526812408],[-122.66980016787079,45.46997462661805],[-122.66979690069809,45.46996443302102],[-122.66979203991407,45.46995483789692],[-122.66978493334187,45.46994548342101],[-122.66976758867037,45.4699274535763],[-122.66976019463726,45.46991943905015],[-122.66973809248802,45.46989434214826],[-122.66973016126239,45.46988602774974],[-122.66972121853371,45.46987751868793],[-122.66971172244287,45.46986924208537],[-122.66970177899098,45.4698611872326],[-122.66969146273827,45.4698533591695],[-122.6696808150072,45.46984577994528],[-122.66966985196744,45.46983848798854],[-122.66965856463594,45.46983154251699],[-122.66964691618162,45.46982502542745],[-122.66961599616955,45.46980915257875],[-122.66960324997397,45.46980215859548],[-122.66955213583429,45.46977288175451],[-122.66953908600816,45.46976560805761],[-122.66952581160324,45.46975850886305],[-122.66951224165254,45.46975167992709],[-122.66949855581919,45.46974528819356],[-122.66944357083895,45.46972112924844],[-122.66943078871078,45.46971492965407],[-122.66941896418669,45.46970845097964],[-122.66940852216983,45.46970156281989],[-122.66940001063254,45.46969411209044],[-122.66939458390992,45.46968706013507],[-122.66939104185272,45.46967967177139],[-122.66938937457958,45.46967216938099],[-122.66938968809158,45.46966477282564],[-122.66939220696764,45.46965770826707],[-122.66939728604228,45.46965100783424],[-122.6694045246668,45.46964493359756],[-122.66941350961631,45.46963953595549],[-122.66942394624327,45.46963490121506],[-122.66943804260673,45.46963039813942],[-122.66945334900082,45.46962668316471],[-122.66948582399665,45.46961992855011],[-122.66953434829337,45.46960909483209],[-122.66955084226032,45.4696060312525],[-122.66956690952746,45.46960375577444],[-122.66958307650764,45.4696020107372],[-122.66964507104201,45.46959683736299],[-122.66965862302638,45.46959518808212],[-122.66967062362028,45.4695930354492],[-122.66968047634232,45.46959014511261],[-122.66968741492957,45.46958623358226],[-122.66969081325628,45.4695807263185],[-122.66969014760468,45.4695744227624],[-122.6696860701516,45.46956833528795],[-122.66967940375389,45.46956240026751],[-122.66966058135375,45.46955001742268],[-122.66962975476645,45.46952740373033],[-122.66962108782059,45.46952059051586],[-122.66961300837292,45.46951350514997],[-122.66960515619901,45.4695053954382],[-122.66959831103654,45.46949718177888],[-122.66959234352811,45.46948915522194],[-122.66958817624352,45.4694829178034],[-122.66958505729285,45.46947687063773],[-122.66958352297034,45.4694715580267],[-122.66958321035662,45.46946643944866],[-122.66958450033736,45.46945987002867],[-122.66958666348057,45.46945359984795],[-122.6695883693813,45.46944729564768],[-122.66958874128382,45.46944151999919],[-122.66958861372306,45.46943540542129],[-122.66958884638672,45.46942888387612],[-122.6695902378771,45.46942154146709],[-122.66959280346553,45.46941387209776],[-122.66959639852332,45.46940607925143],[-122.66960093681213,45.46939836263153],[-122.66960638419602,45.46939092068168],[-122.66961346471707,45.46938314358165],[-122.66962115070265,45.46937603614914],[-122.66962729068761,45.46937084511477],[-122.66963307044817,45.46936555139315],[-122.66963979343974,45.46935758214568],[-122.66964575196504,45.46934882353194],[-122.66965046183205,45.46934118502173],[-122.66965471984651,45.46933334365683],[-122.66965815051255,45.46932535865532],[-122.66966032892712,45.46931727915558],[-122.66966078167803,45.46930756107508],[-122.66965886377491,45.46929808490547],[-122.66965635837359,45.46929199362132],[-122.66964975755288,45.46927861660711],[-122.66964639426044,45.46927099320697],[-122.66964319715633,45.46926232214715],[-122.66964059653361,45.4692533675944],[-122.66963869569844,45.4692442442053],[-122.66963763478812,45.46923506285638],[-122.66963759885549,45.46922593946427],[-122.66963881517441,45.46921664597566],[-122.66964119121832,45.46920769456557],[-122.66964458954504,45.46919925784928],[-122.66964893469607,45.46919155254074],[-122.66965421499332,45.46918484890252],[-122.66966118232665,45.46917892014154],[-122.66966889705832,45.46917501677242],[-122.6696769477599,45.46917363900151],[-122.66968270506256,45.46917443970878],[-122.66968870041873,45.46917645817148],[-122.66969717153187,45.46918039366957],[-122.66970634243262,45.46918538123732],[-122.66973712500244,45.46920330422257],[-122.6697483413671,45.46920937157697],[-122.66977305132559,45.4692215207735],[-122.66978517948027,45.46922775318113],[-122.66979566371792,45.46923379470369],[-122.66980559279679,45.46924009073813],[-122.66981497480161,45.46924647874909],[-122.66983034407779,45.46925777305312],[-122.66983623163617,45.46926284944137],[-122.66984287018613,45.46927028825817],[-122.6698479241079,45.46927804773433],[-122.66985153084379,45.4692857927198],[-122.66985562087326,45.46929785118265],[-122.66985807147736,45.46930308443245],[-122.66986136380289,45.46930810852822],[-122.66986681478002,45.46931400388669],[-122.66988609891425,45.46933021958419],[-122.66989133160077,45.46933577538093],[-122.66989551236007,45.46934272532346],[-122.66989771592749,45.46934959966752],[-122.66989897087394,45.46935805841061],[-122.66990033990642,45.46936270640343],[-122.66990299802136,45.46936718493125],[-122.66990877239199,45.46937225626981],[-122.66991693717962,45.46937635617894],[-122.66992638296483,45.46937911927061],[-122.669936959729,45.46938100921008],[-122.66994811770311,45.46938229436887],[-122.66996010392396,45.46938339179371],[-122.66997208205996,45.46938513431777],[-122.6699839559914,45.46938835351432],[-122.66999557839453,45.46939290196786],[-122.67000676870803,45.4693984489387],[-122.67001729875977,45.46940472605536],[-122.67002687929228,45.46941151597457],[-122.67003513480975,45.46941864041201],[-122.6700415784253,45.46942594502269],[-122.67004557952157,45.46943329058105],[-122.67004647154863,45.46944090387958],[-122.67004381882361,45.46944781223053],[-122.67003779921288,45.4694535929182],[-122.67002965688316,45.46945862078045],[-122.67002080578264,45.46946344011923],[-122.67001260506244,45.4694685706671],[-122.67000679655582,45.46947372767364],[-122.67000283768033,45.46947907619326],[-122.67000104015145,45.46948413240229],[-122.67000184953353,45.46948839294782],[-122.67000614348059,45.46949182948111],[-122.67002189813405,45.46949786971543],[-122.67004230246741,45.46950715748787],[-122.67005403446501,45.46951210974792],[-122.67006551673099,45.46951608428123],[-122.6700898341257,45.46952356338319],[-122.67011242316184,45.46953092089844],[-122.67012364222144,45.46953404684987],[-122.67013492595972,45.46953621775439],[-122.67014599050907,45.46953704806552],[-122.67015690234484,45.46953665810911],[-122.67016735244655,45.46953514616168],[-122.67017699945438,45.46953254561205],[-122.67018545529615,45.46952883000094],[-122.67019263014029,45.46952379143533],[-122.67019822484788,45.4695178986187],[-122.6702023445218,45.46951154780724],[-122.67020501161986,45.46950509682844],[-122.67020616954829,45.46949888902063],[-122.67020522362228,45.46948536968038],[-122.67020620817583,45.46947820934254],[-122.67020936575406,45.46947097088646],[-122.67021383577092,45.46946514484208],[-122.67022519676431,45.46945385120959],[-122.67023060372401,45.46944802264353],[-122.67023482041594,45.46944181545939],[-122.67023686408322,45.46943653938386],[-122.67023775521197,45.46943103084549],[-122.6702375854304,45.46942470270346],[-122.67023459763377,45.4694004025055],[-122.67023287556337,45.46939112542513],[-122.67022831212171,45.46937409140127],[-122.67022638972701,45.46936547957543],[-122.67022552644602,45.4693567593917],[-122.670226290014,45.46934722905209],[-122.67022845764878,45.46933754688562],[-122.67023150922581,45.46932772486182],[-122.67023840649057,45.46930764864236],[-122.67024135206637,45.46929735727772],[-122.67024349005676,45.4692866242946],[-122.67024479351221,45.46927573318417],[-122.67024538550201,45.46926474127471],[-122.67024533789129,45.46925369455472],[-122.67024467583293,45.4692426358629],[-122.67024337417409,45.46923160488809],[-122.67024136284617,45.46922064131918],[-122.67023851967828,45.46920978610498],[-122.67023487521317,45.46919932525735],[-122.67022193677815,45.46916821170516],[-122.67021811354829,45.4691577281704],[-122.6702147098317,45.469145836623],[-122.67021207507295,45.46913379450722],[-122.67020997571012,45.46912164655178],[-122.670203345245,45.4690726981333],[-122.67020134110363,45.46906054827475],[-122.67019886444839,45.46904852189033],[-122.67019570956512,45.46903668323851],[-122.67019240196824,45.4690268989613],[-122.6701886263491,45.46901732383704],[-122.67018455518424,45.46900798810509],[-122.67017278815231,45.46898285425831],[-122.67017015519022,45.46897559746905],[-122.67016872327564,45.46896691061418],[-122.67016930987552,45.46895830817587],[-122.6701720470422,45.468950004349],[-122.67017579481357,45.46894375301109],[-122.67018060169866,45.46893765664878],[-122.67018606345557,45.46893154516615],[-122.67020285476487,45.46891391818748],[-122.67021195290206,45.46890517714436],[-122.67022157296044,45.46889684244037],[-122.67023183800922,45.46888923662818],[-122.67024293579622,45.46888274840904],[-122.67025513042621,45.46887785720228],[-122.67026769695873,45.46887506447673],[-122.67028112317895,45.46887363881958],[-122.67029505604903,45.46887311656164],[-122.67033664355507,45.46887305230311],[-122.67034927476629,45.46887228813071],[-122.67036058365741,45.46887047440242],[-122.67037001147632,45.4688671184694],[-122.67037663116164,45.46886228018008],[-122.67038130599438,45.46885603954223],[-122.67038418509486,45.46884875123733],[-122.67038530349738,45.46884070883841],[-122.6703844689625,45.46883065048333],[-122.67038201027356,45.46882008813756],[-122.67037545616526,45.46879950333837],[-122.67037199944804,45.46878980973805],[-122.67036820316763,45.46878024087341],[-122.67036393078016,45.46877096180096],[-122.67035899813092,45.46876215836701],[-122.67035316357318,45.46875404854718],[-122.67034611808641,45.46874689630626],[-122.67033672799674,45.46874049563896],[-122.67032573800755,45.46873580034581],[-122.67031302504964,45.46873285074646],[-122.67029932574155,45.46873124616936],[-122.67027058773732,45.46872942361674],[-122.67025625601526,45.46872797590635],[-122.67024273187864,45.4687256172345],[-122.67022963174688,45.46872261345575],[-122.67021772906936,45.46871947422955],[-122.67020660253627,45.4687158259735],[-122.67019669771193,45.4687113083347],[-122.67018880062226,45.46870605424035],[-122.67018184945857,45.46870009266962],[-122.67016868105485,45.46868755591836],[-122.67016062855663,45.46868093663856],[-122.67015220864748,45.46867503932393],[-122.67014380850125,45.4686701084099],[-122.67013583325816,45.46866644125103],[-122.67012430248317,45.46866276401208],[-122.67011982348315,45.46866071466157],[-122.67011678627919,45.4686580983219],[-122.6701146527804,45.46865482931461],[-122.67011350024188,45.46865115522484],[-122.67011330800239,45.46863865437202],[-122.67011261090975,45.46863352500856],[-122.67011103526475,45.46862819530834],[-122.67010840230266,45.46862278307918],[-122.67010144215583,45.46861126122209],[-122.67008746886158,45.46858547830999],[-122.67006167104324,45.46854512814863],[-122.67005487618644,45.46853484609458],[-122.67004774356309,45.46852506047033],[-122.67004002523817,45.46851609887057],[-122.67003140769965,45.46850836952905],[-122.67002149838375,45.46850238651778],[-122.67000994065928,45.46849857382035],[-122.66999724387108,45.46849670905083],[-122.66998466296552,45.46849630963736],[-122.66997150174829,45.46849639153605],[-122.66994173337642,45.46849610804067],[-122.66992606136795,45.46849645894491],[-122.6699124456032,45.46849744550882],[-122.66989859537816,45.46849893228445],[-122.66985597031791,45.46850425569701],[-122.6698393946043,45.46850586154049],[-122.66982271378778,45.46850708624029],[-122.66980601231002,45.46850794932602],[-122.66978937730758,45.4685084400879],[-122.66977290400192,45.4685085100167],[-122.66975670468237,45.468508069024],[-122.66974092038453,45.46850697536212],[-122.66972572807646,45.46850502554431],[-122.66971135772684,45.46850194237507],[-122.66970097140553,45.46849858768012],[-122.66969134685557,45.468494371159],[-122.6696805931233,45.46848809079104],[-122.66967055265337,45.46848097946576],[-122.66962134653538,45.4684443329426],[-122.66961186032599,45.46843686629722],[-122.6696029113091,45.46842925097307],[-122.66957772883676,45.46840503287473],[-122.66956570219173,45.46839424113253],[-122.66954824433252,45.46837664485541],[-122.66954216543299,45.46837010869794],[-122.66951564806409,45.46833733277055],[-122.66950952065555,45.4683288682043],[-122.66950382174338,45.46832007289119],[-122.66949849473376,45.46831103691985],[-122.66949350638896,45.46830183714918],[-122.66947951423012,45.46827295453399],[-122.6694743821549,45.46826340448137],[-122.66946816760976,45.46825358731036],[-122.669455133055,45.46823437820818],[-122.66944946288891,45.46822464923111],[-122.66944503868615,45.46821494104208],[-122.66943710476555,45.46819510634363],[-122.66943200772462,45.46818457411842],[-122.66941448069511,45.46815288923196],[-122.66940990467705,45.46814396285269],[-122.66939704170052,45.46811741806425],[-122.66938480125644,45.46809364901779],[-122.66938182603623,45.46808630832479],[-122.66937313034428,45.4680619036007],[-122.66936194811561,45.46803340704945],[-122.66935867734966,45.46802369819754],[-122.66935602552296,45.46801386775486],[-122.66935414445076,45.4680037153829],[-122.66935291375881,45.4679934622099],[-122.66935072546276,45.46796249919102],[-122.66934975977382,45.46795223404058],[-122.66934829462161,45.46794206149769],[-122.66934616920766,45.46793216993115],[-122.66934338443026,45.46792244531186],[-122.66933998340861,45.46791292984966],[-122.66933597692243,45.46790367457434],[-122.66932814271483,45.46788785662421],[-122.66932387122567,45.46787762044005],[-122.66932023754035,45.46786707240562],[-122.66931704762277,45.46785630198031],[-122.66930846422024,45.46782341298461],[-122.66930539377857,45.46781248757162],[-122.66930192448497,45.46780170075596],[-122.66929784343861,45.46779113632739],[-122.66929289641637,45.46778089256565],[-122.669286892077,45.46777095876102],[-122.66927378475869,45.46775163735474],[-122.66926091010404,45.46773114099506],[-122.66925109960283,45.46771605820474],[-122.66924608790185,45.4677069591367],[-122.66924160710522,45.46769754758788],[-122.66922927323637,45.46766833706364],[-122.66922486879653,45.46765853490895],[-122.66921997028328,45.46764882284241],[-122.66921417704802,45.46763885877454],[-122.66920785470504,45.46762901629474],[-122.66918803786987,45.467599712495],[-122.66918188890175,45.46758985677842],[-122.66917635797454,45.4675798744301],[-122.66917109564361,45.46756858230985],[-122.66916158338309,45.46754586513251],[-122.66915621684757,45.46753471853557],[-122.66914983341916,45.46752396190681],[-122.66914242950459,45.46751357760634],[-122.66913409942696,45.46750362359456],[-122.66912679163212,45.46749593128423],[-122.66911182839442,45.46748085473096],[-122.66908960227765,45.46745653290496],[-122.66908173842567,45.46744883050815],[-122.66907174107489,45.46744037651855],[-122.66905129272406,45.46742413444733],[-122.66903251523966,45.46740739340991],[-122.66901269301464,45.46739171014098],[-122.66900338287502,45.46738381495469],[-122.66899592236658,45.46737623728844],[-122.66898948683587,45.46736857709087],[-122.66898393165415,45.46736112920306],[-122.66898046954705,45.46735595058311],[-122.66897784556812,45.46735077448274],[-122.66897640826367,45.46734539615102],[-122.66897617829494,45.46733987921826],[-122.66897739461383,45.46733293028879],[-122.66898185834249,45.46731875522604],[-122.66898345464874,45.4673114043521],[-122.66898376726249,45.46730276134095],[-122.66898262011387,45.46727669747885],[-122.66898276204766,45.46724979569989],[-122.66898184935934,45.46724041242491],[-122.66897906188701,45.46723112490894],[-122.66897492604345,45.46722182479137],[-122.66896975264572,45.46721189214819],[-122.66896355606691,45.46720210251424],[-122.66895740081057,45.46719421297144],[-122.66894408059154,45.46717878605498],[-122.66893796845434,45.46717098344955],[-122.6689324123743,45.46716219614583],[-122.66892821364868,45.46715334584027],[-122.66892548995671,45.46714465807455],[-122.66892446318236,45.46713637288063],[-122.668925476482,45.46712876179085],[-122.66892901404758,45.46712213791798],[-122.66893554659633,45.46711661844331],[-122.6689442539664,45.4671119463251],[-122.6689643789237,45.46710311554181],[-122.66897402593153,45.4670979608384],[-122.66898234792433,45.46709166330471],[-122.66898862535152,45.46708430610107],[-122.66899207128897,45.46707703961732],[-122.6689936145946,45.46706926975809],[-122.66899336755792,45.46706121324517],[-122.66899133916199,45.46705306916028],[-122.66898696436655,45.46704392777485],[-122.66898102470593,45.46703483552839],[-122.66896729665174,45.46701676002213],[-122.66896000502656,45.46700788764352],[-122.66895217171729,45.46699928490624],[-122.66893282110777,45.46698024358842],[-122.6689255285843,45.46697177440835],[-122.66891882355901,45.46696289761264],[-122.66889996881952,45.46693523400524],[-122.6688933805752,45.46692609449071],[-122.6688862605283,45.46691720697763],[-122.66887869581525,45.4669088870999],[-122.66886290702583,45.46689269212606],[-122.66885546178875,45.46688449635622],[-122.66884885917143,45.46687601393162],[-122.66884295005349,45.46686627022984],[-122.66883807309982,45.46685613151142],[-122.6688252316828,45.4668246859114],[-122.66880944199507,45.46679199665659],[-122.66880473841626,45.46678095764209],[-122.66880121881697,45.46677070235661],[-122.6687982831226,45.46676034311778],[-122.66879058186568,45.46672929815037],[-122.66878763808649,45.46671918334761],[-122.66878068871947,45.4666981681145],[-122.66877828662439,45.46668843005212],[-122.66877290302088,45.46665888761954],[-122.66877066801248,45.46664918546097],[-122.66876765057143,45.46663969750424],[-122.66876345454072,45.46663052644129],[-122.66875718968993,45.46662094586988],[-122.66874955670497,45.46661172314297],[-122.66874106043899,45.46660271902832],[-122.66872321899915,45.46658488341774],[-122.6687150048042,45.46657630392633],[-122.66868600089862,45.46654524940737],[-122.66868075922893,45.46653928445804],[-122.66867592629271,45.46653262586524],[-122.66867186051773,45.46652558107449],[-122.66866858256526,45.46651820300661],[-122.66866546002134,45.46650806737561],[-122.66866341635405,45.46649755373554],[-122.66866215332276,45.46648676540824],[-122.66866104480169,45.46646468347745],[-122.66866026147078,45.46643118003738],[-122.668659586836,45.46642011512167],[-122.66865840016152,45.46640919321679],[-122.6686564705803,45.46639848047413],[-122.66865351242804,45.46638805816559],[-122.66864917176861,45.46637802646336],[-122.6686430659196,45.46636826692523],[-122.66863569793763,45.46635884948277],[-122.66861934680283,45.46634036614086],[-122.66861135808502,45.46633097830437],[-122.66860415718971,45.46632127041923],[-122.66859808637504,45.46631102009027],[-122.66859304143638,45.46630037852055],[-122.66858875467585,45.46628944777225],[-122.66858500690451,45.46627830974709],[-122.66858162025586,45.46626702933639],[-122.66857213494478,45.46623285670285],[-122.66856873841469,45.46622150635142],[-122.66856497357531,45.46621025365003],[-122.66856065267881,45.46619915341012],[-122.66855555204464,45.46618827367342],[-122.66854985762404,45.4661782431957],[-122.66854349845013,45.46616841369122],[-122.66853671527142,45.4661587271986],[-122.66851587615349,45.46613010872215],[-122.66850941008005,45.46612060366765],[-122.66849609525093,45.46609959829163],[-122.66848568557342,45.46608433740001],[-122.66848043492057,45.46607575972251],[-122.66846083098611,45.46603986450612],[-122.66845453649093,45.46602952340351],[-122.66844775960041,45.46601927806158],[-122.66844055511184,45.46600914612099],[-122.66843294458475,45.4659991584526],[-122.66842491005288,45.46598936167782],[-122.66841639582059,45.46597981879849],[-122.66840730486994,45.46597061801731],[-122.66839748987712,45.46596187651781],[-122.6683866804493,45.46595361824082],[-122.66837505445291,45.46594597171028],[-122.66836268285482,45.46593896653739],[-122.66835104338368,45.46593325353125],[-122.66831494548229,45.46591731847477],[-122.6683032251628,45.46591172958012],[-122.66829052298468,45.46590493230909],[-122.6682542265556,45.46588351230029],[-122.66824208312961,45.46587692230209],[-122.66822958217412,45.46587112360707],[-122.66821648922884,45.46586650934739],[-122.66820347623363,45.46586352242679],[-122.66818993952063,45.46586157692765],[-122.66817609019391,45.46586031373925],[-122.66813452514569,45.46585765757838],[-122.66811227297779,45.46585576752073],[-122.66809702138089,45.46585537753884],[-122.66808155239171,45.46585592439554],[-122.66806844776835,45.46585706977046],[-122.66805555245244,45.46585871223048],[-122.66804303892052,45.46586072451176],[-122.66801332175262,45.46586640665427],[-122.66799949039219,45.46586766039226],[-122.66798526377302,45.46586743358539],[-122.66797325778926,45.46586602990285],[-122.66796154196133,45.46586361944973],[-122.66795038039392,45.46586030050887],[-122.66794008210752,45.46585611214125],[-122.66793102259786,45.46585103481617],[-122.66792365910747,45.46584499167097],[-122.66791794851721,45.46583715485986],[-122.66791451335956,45.46582839569909],[-122.66791305090227,45.46581906510917],[-122.66791341382165,45.46580946549926],[-122.66791560481262,45.46579986903783],[-122.6679199688283,45.4657899273238],[-122.66792607108401,45.46578048521395],[-122.66793356303346,45.46577176132549],[-122.66795051064965,45.46575587599497],[-122.66795555918155,45.46575029968469],[-122.66796020526819,45.46574449089633],[-122.6679650265263,45.46573780511879],[-122.66796909140297,45.46573081000034],[-122.66797227233741,45.46572248616737],[-122.66797408064605,45.46571371879847],[-122.6679746591611,45.46570463452773],[-122.66797408513766,45.46569534297862],[-122.66797213669176,45.46568460993966],[-122.667969205489,45.46567376790496],[-122.66795848050282,45.46564079069284],[-122.6679554280275,45.46562966766],[-122.66795309689934,45.46561856163556],[-122.66794929163578,45.46559638108125],[-122.66794701440654,45.4655854287757],[-122.66794392240534,45.46557465791444],[-122.66794026446551,45.46556532287232],[-122.66792753623625,45.46553752249419],[-122.66792332044263,45.46552609829],[-122.66791284698471,45.46549101041354],[-122.66790284963392,45.46545945127778],[-122.66790011785714,45.46544888578021],[-122.6678980643084,45.46543828625934],[-122.6678932619149,45.46540653682676],[-122.6678910349913,45.46539613197547],[-122.66788791424399,45.46538591234949],[-122.66788362838179,45.46537589369943],[-122.66787846666216,45.46536606279503],[-122.66786152084264,45.46533713268373],[-122.66785661963446,45.46532752102131],[-122.6678527676585,45.46531785391499],[-122.66785034939377,45.46530821767826],[-122.66784928039858,45.46529859530044],[-122.66784948521448,45.46528909766603],[-122.66785175346055,45.46527338041639],[-122.66785282155743,45.46526332772497],[-122.66785340007247,45.46525295938876],[-122.66785421574276,45.46522080600491],[-122.66785486791964,45.46520997144132],[-122.66785609591665,45.46519918664778],[-122.66785817551653,45.46518851903711],[-122.66786152084264,45.46517734488284],[-122.66787390681378,45.46514491361391],[-122.66787698264532,45.46513447217274],[-122.66787850888298,45.46512425942961],[-122.66787772465372,45.46511433019696],[-122.66787425446179,45.46510508391256],[-122.66786871994132,45.46509603419524],[-122.66786191340641,45.46508705881979],[-122.66784729332517,45.46506887369414],[-122.66784084162481,45.46505942957344],[-122.66783599341721,45.4650501303576],[-122.6678324594449,45.4650406295312],[-122.66783024779266,45.46503108586127],[-122.66782946625837,45.46502166189512],[-122.66783032235283,45.46501253215082],[-122.66783314306281,45.46500389067728],[-122.66783758882517,45.46499674615094],[-122.6678437270135,45.46499026819424],[-122.6678514031176,45.46498458281322],[-122.66786084980112,45.46497957534287],[-122.66787135649668,45.46497518278044],[-122.66789374970008,45.46496670384866],[-122.66790691271395,45.46496092774107],[-122.66791926454911,45.46495428597264],[-122.66793026352143,45.46494661095527],[-122.66793910563881,45.46493817738134],[-122.6679465176382,45.46492886554494],[-122.66795278608225,45.46491890288635],[-122.66795810051546,45.46490846707364],[-122.66796256604076,45.46489769419291],[-122.66796620601427,45.46488669197925],[-122.66796895935062,45.46487554422644],[-122.66797067872608,45.46486432086779],[-122.66797119615566,45.46485328399596],[-122.66797056553835,45.46484231453516],[-122.66796877070441,45.46483149942978],[-122.66796569846613,45.46482093318451],[-122.6679611350245,45.46481072479477],[-122.66795486568215,45.46480084968959],[-122.66794740876698,45.46479128014778],[-122.6679312004643,45.4647723615703],[-122.66792347944443,45.4647626773579],[-122.66791654894202,45.46475266363738],[-122.66791021222598,45.46474240420275],[-122.6678980643084,45.46472163583518],[-122.66789164225241,45.4647113606441],[-122.66787247669585,45.46468414199465],[-122.66786649211943,45.46467502794649],[-122.66786127111098,45.46466574000785],[-122.66785680738235,45.46465549819827],[-122.6678533129359,45.46464504028565],[-122.66785048773434,45.46463445762453],[-122.66784128090097,45.46459251821097],[-122.6678385311579,45.46458256494341],[-122.66783372606945,45.46456690293974],[-122.66783193932034,45.46455735351932],[-122.66783123414284,45.46454758988576],[-122.66783156921443,45.46453770906418],[-122.66783268043044,45.46452875817116],[-122.66783547419098,45.46451061192754],[-122.66783629255619,45.46450095791184],[-122.66783648210071,45.46449117473744],[-122.66783606348579,45.4644813052466],[-122.66783503042325,45.46447138913148],[-122.66783308916391,45.46445981665308],[-122.66782572477521,45.46442495114536],[-122.66782395599242,45.46441325013026],[-122.66782307025353,45.46440141806532],[-122.66782297593042,45.46438956142648],[-122.66782351222466,45.46437771738588],[-122.66782457133837,45.46436592815595],[-122.6678259217871,45.46435558876581],[-122.66884094501376,45.46435968387011],[-122.66889790808425,45.4646262911379],[-122.66901340987022,45.46504749620955],[-122.66912119782283,45.46541980450564],[-122.66932111699101,45.46590732133986],[-122.6694971104299,45.46632978442803],[-122.67000938639876,45.46728760094557],[-122.67009623911369,45.4674687580794],[-122.67030707640582,45.46768015332289],[-122.67044168176463,45.46783537159072],[-122.67069643409774,45.46802244198751],[-122.67090309691874,45.46822654109929],[-122.67105010890994,45.46840021533546],[-122.6712049425323,45.46862552919805],[-122.67131414263653,45.46883009861562],[-122.67138266163485,45.46899051045658],[-122.67144675104048,45.46918804480121],[-122.67151924688054,45.46960560349793],[-122.67244775364303,45.46987200956268],[-122.67274013909835,45.46849307842009],[-122.67278001621213,45.46836319832498],[-122.67435360677341,45.46836821305465],[-122.67453313777787,45.4683214280033],[-122.67845230500451,45.46832908807138],[-122.67845547965072,45.46978525321082],[-122.67845251089268,45.47022405129994]]],"type":"Polygon"} +},{ + "id": 1108714051, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":541232.377512, + "geom:bbox":"-122.682754431,45.4851984062,-122.673513,45.500506", + "geom:latitude":45.492827, + "geom:longitude":-122.677276, + "iso:country":"US", + "lbl:latitude":45.496706, + "lbl:longitude":-122.675736, + "lbl:max_zoom":18.0, + "mps:latitude":45.496706, + "mps:longitude":-122.675736, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Terwilliger" + ], + "reversegeo:latitude":45.496706, + "reversegeo:longitude":-122.675736, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85849969, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b40b72fd041abbb15dd2f0d659a51470", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108714051, + "neighbourhood_id":85849969, + "region_id":85688513 + } + ], + "wof:id":1108714051, + "wof:lastmodified":1566624145, + "wof:name":"Terwilliger", + "wof:parent_id":85849969, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.68275443122327, + 45.48519840619092, + -122.673513, + 45.500506 +], + "geometry": {"coordinates":[[[-122.67930200000001,45.48556289339874],[-122.67932618694071,45.48551425608221],[-122.67939570517379,45.48541449016718],[-122.67944702452687,45.48536328898326],[-122.67949634061269,45.4853270724162],[-122.67956979826658,45.48529463639967],[-122.67964631866414,45.48526919859165],[-122.67973003332054,45.48524991398324],[-122.67994983214423,45.48521197203479],[-122.68019472491886,45.48519840619092],[-122.68058080895993,45.48520179765356],[-122.68085170269586,45.48522214641122],[-122.68114436467843,45.48526453963918],[-122.68141283972028,45.48531032429952],[-122.68164019696295,45.48535610891393],[-122.68185546073524,45.48541376356017],[-122.6819876797247,45.48547672053066],[-122.68210443902977,45.48555281188959],[-122.68217597097753,45.48579032687257],[-122.68256733460746,45.48699200398229],[-122.6827024070902,45.4874111103832],[-122.68272557464138,45.48786183710765],[-122.68275443122327,45.48830834077843],[-122.68270624469311,45.48878014479136],[-122.6825644743716,45.48910059372469],[-122.68238316919445,45.48940739024665],[-122.68205059131668,45.48968585063535],[-122.68162000724143,45.48995176818029],[-122.68134553419289,45.49011817492725],[-122.68103889696562,45.49020888186709],[-122.68056282849257,45.49035716504624],[-122.67999346458741,45.49046314730699],[-122.67979830828688,45.49051109411646],[-122.67959157629561,45.49056234640649],[-122.67874019439182,45.49079096722421],[-122.67823878893621,45.49104175262503],[-122.67793603063433,45.49123389470798],[-122.67755000299717,45.4915435360747],[-122.67725591882763,45.49186034960688],[-122.67699988280199,45.49225395122809],[-122.67695052576704,45.49254383138677],[-122.67692150479346,45.49280451822526],[-122.67696498325321,45.4931247062305],[-122.67702996019433,45.49364957765136],[-122.67717392240515,45.49419953089869],[-122.67735831509194,45.49473551400075],[-122.67759857220962,45.49520218760593],[-122.67780586205468,45.49552115612765],[-122.67784168488858,45.49557180070469],[-122.67794000000001,45.4958],[-122.677954,45.495996],[-122.67794499999999,45.49638],[-122.67795099999999,45.496704],[-122.67791699999999,45.497264],[-122.677874,45.497977],[-122.677831,45.498682],[-122.67778800000001,45.499395],[-122.67778800000001,45.499969],[-122.677787,45.50007],[-122.677683,45.5001],[-122.677537,45.500134],[-122.676947,45.500243],[-122.676783,45.500261],[-122.67663,45.500273],[-122.676247,45.500295],[-122.67524400000001,45.500389],[-122.67433,45.500478],[-122.674228,45.500482],[-122.67401700000001,45.500484],[-122.67376400000001,45.500506],[-122.673586,45.499529],[-122.67357,45.49916],[-122.673513,45.497856],[-122.67355999999999,45.494848],[-122.673637,45.493625],[-122.67366,45.493221],[-122.673711,45.492957],[-122.674179,45.491833],[-122.67442699999999,45.491392],[-122.674494,45.491283],[-122.674561,45.491174],[-122.674662,45.491031],[-122.674791,45.49079],[-122.674949,45.490574],[-122.67517700000001,45.490276],[-122.675462,45.489947],[-122.675708,45.489734],[-122.675845,45.489608],[-122.67624600000001,45.489242],[-122.677604,45.488207],[-122.677662,45.488163],[-122.67815400000001,45.487797],[-122.678788,45.487212],[-122.67893599999999,45.486987],[-122.67913299999999,45.486589],[-122.67918899999999,45.486477],[-122.679214,45.486372],[-122.67927299999999,45.486119],[-122.67930200000001,45.485832],[-122.67930200000001,45.48556289339874]]],"type":"Polygon"} +},{ + "id": 1108723659, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":265509.818, + "geom:bbox":"-77.0705074685,38.918799554,-77.0634539765,38.9241653873", + "geom:latitude":38.921391, + "geom:longitude":-77.067095, + "iso:country":"US", + "lbl:latitude":38.921417, + "lbl:longitude":-77.067094, + "lbl:max_zoom":18.0, + "mps:latitude":38.921417, + "mps:longitude":-77.067094, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.921417, + "reversegeo:longitude":-77.067094, + "src:geom":"mz", + "wof:belongsto":[ + 85869563, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ac77d11b085bc6855e8cb4a784164c13", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723659, + "neighbourhood_id":85869563, + "region_id":85688741 + } + ], + "wof:id":1108723659, + "wof:lastmodified":1566623881, + "wof:name":"Naval Observatory", + "wof:parent_id":85869563, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420510989 + ], + "wof:tags":[] +}, + "bbox": [ + -77.07050746850061, + 38.91879955398111, + -77.06345397654428, + 38.92416538733092 +], + "geometry": {"coordinates":[[[[-77.07037829846574,38.92254600382494],[-77.07033,38.922714],[-77.07027600000001,38.922799],[-77.07024699999999,38.922841],[-77.07018600000001,38.922923],[-77.070122,38.923004],[-77.070053,38.923082],[-77.069979,38.923161],[-77.0699,38.923241],[-77.06986000000001,38.92328],[-77.06977500000001,38.923356],[-77.069732,38.923393],[-77.069643,38.923465],[-77.069547,38.923537],[-77.06949299999999,38.923575],[-77.069339,38.923675],[-77.06922900000001,38.923739],[-77.06911700000001,38.923799],[-77.069003,38.923857],[-77.068889,38.923912],[-77.068831,38.923938],[-77.068712,38.923987],[-77.068591,38.924032],[-77.068467,38.924074],[-77.06831699999999,38.924122],[-77.068215,38.924151],[-77.06815800403515,38.92416538733092],[-77.06803397654429,38.92411206150151],[-77.06788597654428,38.92406606150151],[-77.06783197654428,38.92405106150152],[-77.06774297654428,38.92403006150151],[-77.06769797654428,38.92402106150151],[-77.06757897654428,38.92400206150151],[-77.06750797654428,38.92399306150151],[-77.06729397654428,38.92397506150152],[-77.06715097654428,38.92396506150151],[-77.0670149765443,38.92395006150151],[-77.06688697654428,38.92392406150152],[-77.06675197654428,38.92390006150151],[-77.06666997654428,38.92388106150151],[-77.06659397654428,38.92386506150152],[-77.06655797654427,38.92385506150151],[-77.06651797654428,38.92384606150151],[-77.06643297654428,38.92382506150151],[-77.06640297654428,38.92381506150151],[-77.06633097654428,38.92379406150151],[-77.06630397654428,38.92378406150151],[-77.06623697654427,38.92376206150151],[-77.06620997654429,38.92375206150151],[-77.06617897654428,38.92374206150151],[-77.06613997654428,38.92372606150151],[-77.06608997654428,38.92371206150151],[-77.06590897654428,38.92363606150151],[-77.06578597654428,38.92358606150152],[-77.06569497654428,38.92354206150151],[-77.06559097654429,38.92348906150151],[-77.06548297654427,38.92342806150151],[-77.06537297654428,38.92336306150151],[-77.06532397654428,38.92333206150151],[-77.06527097654428,38.92330006150151],[-77.06518197654428,38.92323906150151],[-77.06513597654428,38.92320606150151],[-77.06500697654428,38.92310806150152],[-77.06489497654428,38.92301506150152],[-77.06476197654428,38.92289406150152],[-77.06472697654428,38.92285906150151],[-77.06469097654428,38.92282506150151],[-77.06456397654428,38.92268106150151],[-77.06451897654428,38.92262706150152],[-77.06448297654428,38.92257906150152],[-77.06444997654428,38.92253906150151],[-77.06441197654428,38.92248606150152],[-77.06437897654428,38.92244206150151],[-77.06432197654428,38.92235206150152],[-77.06425797654428,38.92224506150151],[-77.06422997654428,38.92219606150152],[-77.06420997654428,38.92215306150151],[-77.06418797654428,38.92211706150152],[-77.06417397654428,38.92208306150151],[-77.06412597654428,38.92198506150152],[-77.06409397654429,38.92190806150151],[-77.06406197654428,38.92182306150151],[-77.06403497654428,38.92174306150152],[-77.06400797654427,38.92165006150152],[-77.06398397654428,38.92154706150151],[-77.06395797654427,38.92141906150152],[-77.06391797654427,38.92128606150151],[-77.06389297654428,38.92122306150151],[-77.06386197654427,38.92116406150151],[-77.06379597654428,38.92103306150151],[-77.06377097654428,38.92098306150152],[-77.06368097654428,38.92087106150151],[-77.06358997654428,38.92077506150152],[-77.06356197654428,38.92074806150151],[-77.06349397654428,38.92069006150151],[-77.06345397654428,38.92065806150151],[-77.06349693218779,38.9205273800658],[-77.06356577582133,38.92036351712422],[-77.06366198781572,38.92020479658564],[-77.06387694474738,38.91990417854451],[-77.06410501197239,38.91962480772168],[-77.06432417982049,38.91937950034397],[-77.06449661500535,38.91922270742234],[-77.06467580352584,38.91909174328573],[-77.06496113150388,38.91893257947314],[-77.06502026929691,38.91895893149769],[-77.06552824700877,38.91882633702186],[-77.06623920200174,38.91879955398111],[-77.06701828442746,38.91885207402582],[-77.06781085584942,38.91909825037237],[-77.06783904170976,38.91914380326427],[-77.06894452139595,38.91939738471378],[-77.06979042041544,38.92000667105557],[-77.07018143263582,38.92086985407926],[-77.07050746850061,38.92173327474875],[-77.07037829846574,38.92254600382494]]]],"type":"MultiPolygon"} +},{ + "id": 1108714053, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000054, + "geom:area_square_m":467022.078292, + "geom:bbox":"-122.653736182,45.5040673891,-122.611002,45.5059975293", + "geom:latitude":45.504858, + "geom:longitude":-122.630518, + "iso:country":"US", + "lbl:latitude":45.504788, + "lbl:longitude":-122.630522, + "lbl:max_zoom":18.0, + "mps:latitude":45.504788, + "mps:longitude":-122.630522, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Linnton" + ], + "name:fra_x_preferred":[ + "Linnton" + ], + "name:und_x_variant":[ + "Linton" + ], + "reversegeo:latitude":45.504788, + "reversegeo:longitude":-122.630522, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871465, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6554632" + }, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"705ab135a507a78c9d2cf2734c310842", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108714053, + "neighbourhood_id":85871465, + "region_id":85688513 + } + ], + "wof:id":1108714053, + "wof:lastmodified":1566624145, + "wof:name":"Division/Clinton", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893169 + ], + "wof:tags":[] +}, + "bbox": [ + -122.65373618151908, + 45.50406738912487, + -122.611002, + 45.5059975293146 +], + "geometry": {"coordinates":[[[-122.63671124924048,45.50549807877516],[-122.63573053715426,45.50549623185975],[-122.63477853715426,45.50549523185975],[-122.63370153715427,45.50549423185974],[-122.63274053715426,45.50549223185975],[-122.63167253715426,45.50549123185974],[-122.63128353715425,45.50549423185974],[-122.63065753715428,45.50549023185975],[-122.62969853715424,45.50548823185974],[-122.62870653715427,45.50548723185975],[-122.62771753715427,45.50548723185975],[-122.62738553715425,45.50548523185974],[-122.62636853715426,45.50548423185975],[-122.62583753715424,45.50548423185975],[-122.62533653715425,45.50547723185974],[-122.62439053715426,45.50548123185975],[-122.62400653715426,45.50547123185975],[-122.62278853715425,45.50549623185975],[-122.62160153715423,45.50548323185976],[-122.62050053715426,45.50547923185975],[-122.61997853715425,45.50548123185975],[-122.61970153715426,45.50549023185975],[-122.61958153715426,45.50550623185975],[-122.61948753715426,45.50553423185975],[-122.61940553715426,45.50556823185975],[-122.61901853715426,45.50582523185975],[-122.61889453715428,45.50588623185975],[-122.61879153715425,45.50591523185976],[-122.61866553715426,45.50594023185975],[-122.61850153715427,45.50595823185976],[-122.61817253715424,45.50597123185975],[-122.61725253715427,45.50597523185975],[-122.61627653715425,45.50597923185975],[-122.61530253715425,45.50598323185975],[-122.61423553715424,45.50598723185975],[-122.61334353715426,45.50599023185975],[-122.61310053715427,45.50599023185975],[-122.61215653715425,45.50599623185975],[-122.61125753715426,45.50599723185975],[-122.61122075190461,45.5059975293146],[-122.61118076948755,45.50530146375611],[-122.611124,45.505302],[-122.61107699999999,45.50524],[-122.61103300000001,45.50517],[-122.61101499999999,45.50513],[-122.611002,45.505071],[-122.61100333424824,45.50459467337736],[-122.61116215347265,45.50459338912487],[-122.61206115347264,45.50459238912487],[-122.61300515347266,45.50458638912487],[-122.61324815347265,45.50458638912487],[-122.61414015347263,45.50458338912487],[-122.61520715347264,45.50457938912487],[-122.61618115347264,45.50457538912487],[-122.61715715347266,45.50457138912487],[-122.61807715347263,45.50456738912487],[-122.61840615347266,45.50455438912488],[-122.61857015347265,45.50453638912487],[-122.61869615347264,45.50451138912488],[-122.61879915347266,45.50448238912487],[-122.61892315347265,45.50442138912487],[-122.61931015347265,45.50416438912487],[-122.61939215347265,45.50413038912487],[-122.61948615347265,45.50410238912487],[-122.61960615347265,45.50408638912487],[-122.61988315347264,45.50407738912487],[-122.62040515347265,45.50407538912487],[-122.62150615347262,45.50407938912488],[-122.62269315347264,45.50409238912487],[-122.62391115347265,45.50406738912487],[-122.62429515347264,45.50407738912487],[-122.62524115347264,45.50407338912486],[-122.62574215347263,45.50408038912487],[-122.62627315347265,45.50408038912487],[-122.62729015347264,45.50408138912486],[-122.62762215347266,45.50408338912487],[-122.62861115347266,45.50408338912487],[-122.62960315347263,45.50408438912486],[-122.63056215347267,45.50408638912487],[-122.63118815347264,45.50409038912486],[-122.63157715347265,45.50408738912486],[-122.63264515347265,45.50408838912487],[-122.63360615347266,45.50409038912486],[-122.63468315347265,45.50409138912487],[-122.63563515347265,45.50409238912487],[-122.63669715347264,45.50409438912487],[-122.63766415347266,45.50409538912487],[-122.63867815347267,45.50409638912486],[-122.63964115347264,45.50409738912487],[-122.64044715347266,45.50409638912486],[-122.64126115347266,45.50410038912486],[-122.64156615347267,45.50410038912486],[-122.64261415347266,45.50410438912486],[-122.64362215347265,45.50410838912487],[-122.64464215347263,45.50411138912487],[-122.64512215347266,45.50411438912487],[-122.64539015347265,45.50411438912487],[-122.64567015347265,45.50410738912487],[-122.64599915347266,45.50411438912487],[-122.64693215347266,45.50411138912487],[-122.64768515347265,45.50412238912487],[-122.64869915347265,45.50412638912487],[-122.64946315347264,45.50412838912487],[-122.64971315347266,45.50412938912487],[-122.65072715347264,45.50413438912487],[-122.65174015347263,45.50413638912487],[-122.65204115347265,45.50413838912487],[-122.65275715347263,45.50414238912487],[-122.65373618151908,45.50414532327486],[-122.65373599999999,45.504176],[-122.65372000000001,45.504854],[-122.645084,45.504823],[-122.64509633837709,45.50551747436739],[-122.64473753715424,45.50551523185975],[-122.64371753715426,45.50551223185975],[-122.64270953715427,45.50550823185974],[-122.64166153715428,45.50550423185975],[-122.64135653715427,45.50550423185975],[-122.64054253715427,45.50550023185974],[-122.63973653715425,45.50550123185975],[-122.63877353715428,45.50550023185974],[-122.63775953715427,45.50549923185975],[-122.63679253715425,45.50549823185975],[-122.63671124924048,45.50549807877516]]],"type":"Polygon"} +},{ + "id": 1108723805, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":136353.615893, + "geom:bbox":"-77.0259077767,38.8971914839,-77.0200743656,38.8997419736", + "geom:latitude":38.898518, + "geom:longitude":-77.022972, + "iso:country":"US", + "lbl:latitude":38.895086, + "lbl:longitude":-77.022647, + "lbl:max_zoom":18.0, + "mps:latitude":38.898466, + "mps:longitude":-77.022972, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Penn Quarter" + ], + "name:eng_x_variant":[ + "Pennquarter" + ], + "name:urd_x_preferred":[ + "\u067e\u06cc\u0646 \u06a9\u0648\u0627\u0631\u0679\u0631" + ], + "name:zho_x_preferred":[ + "\u6f58\u6069\u5340" + ], + "reversegeo:latitude":38.898466, + "reversegeo:longitude":-77.022972, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q12065534" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"62974770cc40f967c3bbe4715abf1c9f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723805, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723805, + "wof:lastmodified":1566623924, + "wof:name":"Penn Quarter", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869581 + ], + "wof:tags":[] +}, + "bbox": [ + -77.02590777668073, + 38.89719148388198, + -77.02007436564256, + 38.89974197363414 +], + "geometry": {"coordinates":[[[[-77.02009004847919,38.89733747903652],[-77.02158632010602,38.89733747903652],[-77.02174204827088,38.89733747903652],[-77.02181017934301,38.89732774602622],[-77.02184606981849,38.89729854699531],[-77.02187283559684,38.89725961495409],[-77.02189908188616,38.89721421509704],[-77.02191724245634,38.89720060857913],[-77.02199510653877,38.89719148388198],[-77.02371784936247,38.89719148388198],[-77.02385411150671,38.89720121689228],[-77.02393197558914,38.89723041592319],[-77.02401957268187,38.89729854699531],[-77.0241071697746,38.89734721204683],[-77.02420449987764,38.89738614408804],[-77.02427688914177,38.89738979396691],[-77.02588831066012,38.89738614408804],[-77.02590777668073,38.89972206656086],[-77.02302394672137,38.89974029022419],[-77.02007436564256,38.89974197363414],[-77.02009004847919,38.89733747903652]]]],"type":"MultiPolygon"} +},{ + "id": 1108723807, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-77.0346793511,38.9104834804,-77.0346793511,38.9104834804", + "geom:latitude":38.910483, + "geom:longitude":-77.034679, + "iso:country":"US", + "lbl:latitude":38.910483, + "lbl:longitude":-77.034679, + "lbl:max_zoom":18.0, + "mps:latitude":38.907247, + "mps:longitude":-77.036545, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Scott Cir" + ], + "name:nld_x_preferred":[ + "Scott Circle" + ], + "name:zho_x_preferred":[ + "\u65af\u79d1\u7279\u5706\u73af" + ], + "reversegeo:latitude":38.907247, + "reversegeo:longitude":-77.036545, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866031, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b8fde1a6c1bad25abe89f107dd9e0080", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723807, + "neighbourhood_id":85866031, + "region_id":85688741 + } + ], + "wof:id":1108723807, + "wof:lastmodified":1566623924, + "wof:name":"Scott Circle", + "wof:parent_id":85866031, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85847421 + ], + "wof:tags":[] +}, + "bbox": [ + -77.0346793511, + 38.9104834804, + -77.0346793511, + 38.9104834804 +], + "geometry": {"coordinates":[-77.0346793511,38.9104834804],"type":"Point"} +},{ + "id": 1108723809, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000077, + "geom:area_square_m":742965.626133, + "geom:bbox":"-77.006322764,38.8485052798,-76.9958609313,38.86054433", + "geom:latitude":38.8537, + "geom:longitude":-77.00049, + "iso:country":"US", + "lbl:latitude":38.853785, + "lbl:longitude":-77.000487, + "lbl:max_zoom":18.0, + "mps:latitude":38.853785, + "mps:longitude":-77.000487, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.853785, + "reversegeo:longitude":-77.000487, + "src:geom":"wapo", + "wapo:quadrant":"SE", + "wapo:subhood":"St. Elizabeths Hospital West", + "wof:belongsto":[ + 85869701, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"57ef640b390355626e4495ee867953d9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723809, + "neighbourhood_id":85869701, + "region_id":85688741 + } + ], + "wof:id":1108723809, + "wof:lastmodified":1566623923, + "wof:name":"St. Elizabeths Hospital West", + "wof:parent_id":85869701, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.00632276399281, + 38.84850527981114, + -76.99586093131997, + 38.86054432995957 +], + "geometry": {"coordinates":[[[[-76.99610971964529,38.85579964512254],[-76.99618895897359,38.85581983433341],[-76.99625414061637,38.85581983644288],[-76.99625413792079,38.85587120233882],[-76.9965135816676,38.85597234322692],[-76.99670860875221,38.85612484763239],[-76.99709841394872,38.85632792313437],[-76.99742354845782,38.85658216194137],[-76.99774817566767,38.85678503393466],[-76.99813773179822,38.856988505674],[-76.99839769122909,38.85719137479817],[-76.99865739746134,38.85734407665425],[-76.99878750618639,38.85744561064003],[-76.99898254287851,38.8575473449301],[-76.99937210624516,38.85780117906837],[-77.00015200805309,38.85825847687312],[-77.00106126819512,38.85886806713698],[-77.00242531188648,38.85968070674711],[-77.00268554894534,38.8598837660948],[-77.00268555659335,38.86008703099832],[-77.00268556232375,38.8602393297711],[-77.00262037850871,38.86029009750896],[-77.0025554575161,38.86054432995957],[-77.00268557188954,38.86049356078467],[-77.00281568808055,38.86049355771936],[-77.00288061836051,38.86049355613547],[-77.00301073669291,38.86054431910737],[-77.00301073455151,38.86049355285281],[-77.00307514918634,38.86039181879635],[-77.00307514699048,38.86034085267339],[-77.00314007266471,38.86023931843221],[-77.00314007044007,38.86018875204222],[-77.00314006820668,38.86013798578462],[-77.00320524922442,38.86003625162972],[-77.00320524694466,38.85998548537088],[-77.00320524237615,38.85988375298469],[-77.0032701721014,38.85988375118417],[-77.00327016979378,38.85983338465834],[-77.00340026297698,38.85937568511211],[-77.00340025814963,38.85927435244997],[-77.00346518239127,38.85917281800992],[-77.00346517745233,38.85907108561001],[-77.00346517251342,38.85896935320831],[-77.00352984076997,38.85886801860197],[-77.00352983573889,38.85876628619683],[-77.00359475933405,38.85866475167616],[-77.00359475421048,38.85856301926758],[-77.0036599331419,38.85846128483218],[-77.00365992794596,38.85835995215461],[-77.00372485363572,38.85830918382815],[-77.00372484832674,38.85820745141358],[-77.00378977112558,38.85810571690784],[-77.00378976573472,38.85800418435703],[-77.00385494389946,38.85790284953777],[-77.0038549384051,38.85780111711633],[-77.00391986064892,38.85769938253129],[-77.00391985507304,38.85759784997369],[-77.00398503268207,38.8574965150749],[-77.00398502700233,38.85739478264658],[-77.00404944034346,38.85734401414901],[-77.00404943457195,38.85724228171813],[-77.00411435605329,38.85714094675004],[-77.00411435312706,38.85709018046674],[-77.00417952997299,38.85698844571631],[-77.00417952700036,38.85693767943174],[-77.00424444799621,38.85683594465166],[-77.00424444496556,38.85678497849852],[-77.00430936574207,38.85668344354703],[-77.0043093626892,38.85663287712714],[-77.00437453572832,38.85648037597172],[-77.00443945603031,38.85637864107549],[-77.00450462858458,38.85622653957562],[-77.0045046221644,38.85612480712587],[-77.00456903074036,38.85602327203861],[-77.00463445830852,38.85587117044729],[-77.00469912207184,38.85576943540654],[-77.00476403787634,38.85561693402214],[-77.00476403108649,38.85551520156221],[-77.00482894995551,38.85541346643312],[-77.00489412079857,38.85526136469148],[-77.00495903925133,38.85515962948578],[-77.00502421313058,38.85505789423132],[-77.00502420601218,38.85495676136392],[-77.0050891240025,38.85485502608076],[-77.00515353058682,38.85475329078241],[-77.00521870381787,38.85465155541253],[-77.0052836212534,38.8545498200161],[-77.00534879033913,38.85439771799896],[-77.00534878273098,38.85429618538584],[-77.00547862420794,38.85419444688246],[-77.00554379252267,38.85404194501281],[-77.00560870897189,38.8539406091601],[-77.00567310995589,38.85378810724872],[-77.0057387928106,38.85368677128214],[-77.00580319741489,38.85358503560578],[-77.00586836447984,38.8534325335396],[-77.00593328833688,38.8534325302581],[-77.00593328411715,38.85338176394367],[-77.00599820364532,38.85333079444389],[-77.00606337009546,38.85317869199721],[-77.0061282849877,38.85307695610643],[-77.00632276399281,38.85267061531557],[-77.00521850699489,38.8519593417636],[-77.00424412483406,38.85140095163342],[-77.00372447458801,38.85104500543642],[-77.00294462870461,38.85058773095074],[-77.00190536093598,38.84997855645146],[-77.00132081232137,38.84962300024874],[-77.00086611028151,38.84931800668861],[-77.00054150816564,38.84911494324771],[-77.00015198815026,38.84891167913257],[-76.99995697341566,38.84875958003322],[-76.99989179821941,38.84875957999101],[-76.99956720141668,38.8485561140874],[-76.99612443009102,38.84850528420258],[-76.99599433575104,38.84850527981114],[-76.99586093131997,38.85269689578845],[-76.99610971964529,38.85579964512254]]]],"type":"MultiPolygon"} +},{ + "id": 1108723811, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000075, + "geom:area_square_m":725740.039813, + "geom:bbox":"-76.9961894471,38.8440348464,-76.9850816617,38.8557996451", + "geom:latitude":38.849029, + "geom:longitude":-76.991694, + "iso:country":"US", + "lbl:latitude":38.848604, + "lbl:longitude":-76.991778, + "lbl:max_zoom":18.0, + "mps:latitude":38.848604, + "mps:longitude":-76.991778, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.848604, + "reversegeo:longitude":-76.991778, + "src:geom":"wapo", + "wapo:quadrant":"SE", + "wapo:subhood":"St. Elizabeths Hospital East", + "wof:belongsto":[ + 85869701, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7119ef618c4638f4a0fd5844c17171c2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723811, + "neighbourhood_id":85869701, + "region_id":85688741 + } + ], + "wof:id":1108723811, + "wof:lastmodified":1566623924, + "wof:name":"St. Elizabeths Hospital East", + "wof:parent_id":85869701, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.99618944708578, + 38.84403484636336, + -76.98508166167477, + 38.85579964512254 +], + "geometry": {"coordinates":[[[[-76.99599433575104,38.84850527981114],[-76.99599435285383,38.84820048180406],[-76.99599435570241,38.84814971544603],[-76.99599436141078,38.84804798286111],[-76.99599436708549,38.84794684987712],[-76.99599437565357,38.84779415106025],[-76.99599438705897,38.84759088574447],[-76.99599438991872,38.84753991951379],[-76.99599439276726,38.84748915315028],[-76.99599439845308,38.84738782028954],[-76.99599440416132,38.84728608769196],[-76.99605958081442,38.84723532354447],[-76.9960595836166,38.84718455717839],[-76.99605958642977,38.84713359094432],[-76.99605958923193,38.84708282457741],[-76.99605959203407,38.8470320582101],[-76.99605959482517,38.84698149171],[-76.9961245155714,38.84693072751507],[-76.99612451833821,38.84687976127892],[-76.99612452109417,38.84682899490989],[-76.99612452385013,38.84677822854046],[-76.99618944165552,38.84677823067763],[-76.99618944437599,38.84672726444016],[-76.99618944708578,38.84667649806993],[-76.99612453762988,38.84652439668709],[-76.99553978736506,38.84621917796819],[-76.99553979051184,38.84616881132897],[-76.99547487326065,38.84616880883057],[-76.99547487647855,38.8461180424557],[-76.99540995927354,38.84611803992117],[-76.99476030591693,38.8457112819509],[-76.99456582258271,38.84555897392175],[-76.99450065030855,38.84555897086967],[-76.99404625883528,38.84525435029219],[-76.99398108683926,38.84525434695003],[-76.99398109111937,38.84520358056769],[-76.99339662110826,38.84484758467561],[-76.99333144948361,38.84484758097073],[-76.99235752383595,38.84418735835243],[-76.99229235281405,38.84418735406746],[-76.99216228308508,38.84403484636336],[-76.99177278537137,38.84408558595372],[-76.99164269311942,38.84413654297189],[-76.9915128623134,38.8441365336045],[-76.9909937818534,38.84423802749244],[-76.99066868656996,38.84428896821596],[-76.9906035154554,38.8442889629881],[-76.99047342202496,38.84433971883378],[-76.99034359084962,38.84433970816595],[-76.98988891181124,38.84444100257969],[-76.98982450727858,38.84444099698329],[-76.98975933602532,38.84444099128417],[-76.98969442034559,38.84444098557118],[-76.98962924909235,38.84444097979939],[-76.9894342389664,38.8444917287004],[-76.98930491866221,38.84449171692358],[-76.98917483163689,38.84449170493245],[-76.98859006269855,38.8445933818837],[-76.98852513872052,38.84464414190761],[-76.98839505141758,38.84464412904742],[-76.98820055097525,38.84469507580427],[-76.98800553913964,38.84474582231643],[-76.98768095056138,38.84479675476744],[-76.98748593814872,38.8448471006754],[-76.98742056060583,38.84601571975599],[-76.9871604904221,38.84682835314597],[-76.98521152223751,38.84880900995889],[-76.98508166167477,38.84891072600967],[-76.98514657085562,38.84896150063897],[-76.98527664504319,38.84906324968776],[-76.9853415545014,38.84911402420739],[-76.98527662406089,38.84916498225461],[-76.98540669892716,38.84926613155255],[-76.98560117273777,38.84941885448333],[-76.98586107894883,38.84957138516189],[-76.98618564141478,38.84977428953732],[-76.98638063918627,38.84987604500673],[-76.98657565664494,38.84987606759522],[-76.98664032167387,38.84987607501328],[-76.98735487869689,38.85033345141751],[-76.98832910579267,38.8509431486696],[-76.989952762293,38.85200979238247],[-76.99092754563632,38.85261966769365],[-76.99170682554499,38.85307682239378],[-76.99287613992412,38.85383879404979],[-76.99456511487706,38.85485501049699],[-76.99573449194268,38.85556598713691],[-76.99599392810056,38.85576946124427],[-76.99610971964529,38.85579964512254],[-76.99586093131997,38.85269689578845],[-76.99599433575104,38.84850527981114]]]],"type":"MultiPolygon"} +},{ + "id": 1108723817, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":198940.278654, + "geom:bbox":"-77.0147787932,38.9024310942,-77.0090573844,38.9073275204", + "geom:latitude":38.904509, + "geom:longitude":-77.01146, + "iso:country":"US", + "lbl:latitude":38.904587, + "lbl:longitude":-77.01111, + "lbl:max_zoom":18.0, + "mps:latitude":38.904469, + "mps:longitude":-77.01146, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Sursum Corda Cooperative" + ], + "reversegeo:latitude":38.904469, + "reversegeo:longitude":-77.01146, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108723813, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7646941" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e962701b501e55eb667053b9edc55e38", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723817, + "neighbourhood_id":1108723813, + "region_id":85688741 + } + ], + "wof:id":1108723817, + "wof:lastmodified":1566623924, + "wof:name":"Sursum Corda", + "wof:parent_id":1108723813, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869719 + ], + "wof:tags":[] +}, + "bbox": [ + -77.01477879324646, + 38.90243109421532, + -77.00905738440791, + 38.90732752043978 +], + "geometry": {"coordinates":[[[[-77.00905738440791,38.90243109421532],[-77.01370556365598,38.90245102959537],[-77.01373794026067,38.90250150874907],[-77.01373796963041,38.9026540062656],[-77.01380320389197,38.90270476446029],[-77.01386820228117,38.90285745414279],[-77.0139332206638,38.90311107594631],[-77.01399822958557,38.90331413169108],[-77.01412821845361,38.9035683451596],[-77.01412822850858,38.9036191110339],[-77.01412824865817,38.90372084264676],[-77.01419349423475,38.90382216662053],[-77.01425848428997,38.90392389031847],[-77.01432350515273,38.90417811145294],[-77.01438851611766,38.90438096707588],[-77.01445352757385,38.90458442225206],[-77.01451851857233,38.90468554619456],[-77.01451852894594,38.90473651192424],[-77.01458378646709,38.90488900125528],[-77.01464879882015,38.90509185670736],[-77.01471379068153,38.90519358012877],[-77.01477879324646,38.90534606937052],[-77.00905800617311,38.90732752043978],[-77.00905799333015,38.90722638848913],[-77.00905796104524,38.90697215954559],[-77.0090579352581,38.90676909616724],[-77.00905786429342,38.90621027210713],[-77.00905780622304,38.90575297970111],[-77.00905772234208,38.90509242395173],[-77.00905763851343,38.90443226785474],[-77.00905758047129,38.90397517516756],[-77.00905749659454,38.90331461920619],[-77.00905742568749,38.90275619452889],[-77.00905738440791,38.90243109421532]]]],"type":"MultiPolygon"} +},{ + "id": 1108723819, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-77.0313416906,38.9058096427,-77.0313416906,38.9058096427", + "geom:latitude":38.90581, + "geom:longitude":-77.031342, + "iso:country":"US", + "lbl:latitude":38.90581, + "lbl:longitude":-77.031342, + "lbl:max_zoom":18.0, + "mps:latitude":38.905668, + "mps:longitude":-77.03199, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Thomas Circle" + ], + "name:eng_x_variant":[ + "Thomas Cir", + "Thomascircle" + ], + "name:fra_x_preferred":[ + "Rond-point Thomas" + ], + "name:nld_x_preferred":[ + "Thomas Circle" + ], + "name:zho_x_preferred":[ + "\u6258\u9a6c\u65af\u5706\u73af" + ], + "reversegeo:latitude":38.905668, + "reversegeo:longitude":-77.03199, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"3f93fe06d916c41aafc9c2c776449b84", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723819, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723819, + "wof:lastmodified":1566623924, + "wof:name":"Thomas Circle", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85852157 + ], + "wof:tags":[] +}, + "bbox": [ + -77.0313416906, + 38.9058096427, + -77.0313416906, + 38.9058096427 +], + "geometry": {"coordinates":[-77.0313416906,38.9058096427],"type":"Point"} +},{ + "id": 1108723821, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":75473.127171, + "geom:bbox":"-77.0810736215,38.9269543721,-77.0770352433,38.9302686565", + "geom:latitude":38.928528, + "geom:longitude":-77.079223, + "iso:country":"US", + "lbl:latitude":38.923074, + "lbl:longitude":-77.081616, + "lbl:max_zoom":18.0, + "mps:latitude":38.928562, + "mps:longitude":-77.079393, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":19.0, + "mz:note":"condos?", + "mz:tier_metro":1, + "name:bul_x_preferred":[ + "\u0423\u0435\u0441\u0442\u0447\u0435\u0441\u0442\u044a\u0440" + ], + "name:cat_x_preferred":[ + "Westchester" + ], + "name:ceb_x_preferred":[ + "Westchester" + ], + "name:ces_x_preferred":[ + "Westchester" + ], + "name:deu_x_preferred":[ + "Westchester" + ], + "name:eng_x_preferred":[ + "The Westchester" + ], + "name:eng_x_variant":[ + "Westchester" + ], + "name:fra_x_preferred":[ + "Westchester" + ], + "name:ita_x_preferred":[ + "Westchester" + ], + "name:jpn_x_preferred":[ + "\u30a6\u30a8\u30b9\u30c8\u30c1\u30a7\u30b9\u30bf\u30fc" + ], + "name:kor_x_preferred":[ + "\uc6e8\uc2a4\ud2b8\uccb4\uc2a4\ud130" + ], + "name:nld_x_preferred":[ + "Westchester" + ], + "name:pol_x_preferred":[ + "Westchester" + ], + "name:por_x_preferred":[ + "Westchester" + ], + "name:rus_x_preferred":[ + "\u0423\u044d\u0441\u0442\u0447\u0435\u0441\u0442\u0435\u0440" + ], + "name:sco_x_preferred":[ + "Westchester" + ], + "name:spa_x_preferred":[ + "Westchester" + ], + "name:srp_x_preferred":[ + "\u0412\u0435\u0441\u0442\u0447\u0435\u0441\u0442\u0435\u0440" + ], + "name:vol_x_preferred":[ + "Westchester" + ], + "reversegeo:latitude":38.928562, + "reversegeo:longitude":-77.079393, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85809813, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"95e6e4e1c57f7154c6c93665d75b6bbf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723821, + "neighbourhood_id":85809813, + "region_id":85688741 + } + ], + "wof:id":1108723821, + "wof:lastmodified":1566623902, + "wof:name":"Westchester", + "wof:parent_id":85809813, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85856725 + ], + "wof:tags":[] +}, + "bbox": [ + -77.08107362153068, + 38.92695437206747, + -77.07703524332535, + 38.93026865651068 +], + "geometry": {"coordinates":[[[[-77.08040834172238,38.93026865651068],[-77.08032946985534,38.93023057388546],[-77.08023036895057,38.93018410012559],[-77.08015446187454,38.93015020160111],[-77.08008136617173,38.93011903681283],[-77.0800110818421,38.93009060576075],[-77.07994360888566,38.93006272144955],[-77.07987894730238,38.93003538387924],[-77.0798170970923,38.93000859304983],[-77.07975805825542,38.92998234896129],[-77.0797039393216,38.92995610486305],[-77.07965474029085,38.9299298607551],[-77.07961046116318,38.92990361663743],[-77.07957110193858,38.92987737251006],[-77.07952822849751,38.92984948811107],[-77.07948184083995,38.92981996344047],[-77.07943193896591,38.92978879849824],[-77.07937852287537,38.9297559932844],[-77.07932510678486,38.92972373481044],[-77.07927169069433,38.92969202307636],[-77.07921827460382,38.92966085808214],[-77.07916485851329,38.92963023982782],[-77.07911355095267,38.92960016831618],[-77.07906435192191,38.92957064354727],[-77.07901726142106,38.92954166552105],[-77.07897227945011,38.92951323423755],[-77.07892308041937,38.92948425618584],[-77.07886966432883,38.92945473136594],[-77.07881203117853,38.92942465977785],[-77.07875018096846,38.92939404142157],[-77.07868481654188,38.92936232953637],[-77.07861593789885,38.92932952412226],[-77.07854354503932,38.92929562517924],[-77.07846763796331,38.92926063270732],[-77.0783945422605,38.92923001428791],[-77.07832425793086,38.92920376992102],[-77.07825678497441,38.92918189960665],[-77.07819212339115,38.92916440334479],[-77.07812324474811,38.92914636031959],[-77.07805014904528,38.92912777053105],[-77.07797283628268,38.92910863397918],[-77.07789130646032,38.92908895066395],[-77.07780907379464,38.92907200114076],[-77.07772613828567,38.9290577854096],[-77.0776424999334,38.92904630347046],[-77.07755815873786,38.92903755532334],[-77.07747944028867,38.92903044745365],[-77.07740634458585,38.92902497986137],[-77.07733887162939,38.9290211525465],[-77.07727702141932,38.92901896550905],[-77.07722219964219,38.92901623171203],[-77.07717440629804,38.92901295115546],[-77.07713364138685,38.92900912383931],[-77.07709990490864,38.92900474976359],[-77.07707319686337,38.92890961265391],[-77.07705351725107,38.92872371251028],[-77.07704086607174,38.92844704933268],[-77.07703524332535,38.92807962312113],[-77.07705492293766,38.92780295992061],[-77.07709990490862,38.92761705973112],[-77.07717018923826,38.92752192255267],[-77.07726577592656,38.92751754838525],[-77.07734871143553,38.92751153390387],[-77.07741899576516,38.92750387910853],[-77.07747662891546,38.92749458399923],[-77.07752161088644,38.92748364857596],[-77.0776256316943,38.92750770639973],[-77.07778869133904,38.92756675747054],[-77.07801078982069,38.92766080178838],[-77.07821614033297,38.92776234831627],[-77.07829192713923,38.92778983935327],[-77.07843005489239,38.92781796341551],[-77.07855127631559,38.92782537916042],[-77.07867919379549,38.92780405578193],[-77.07878883734975,38.92776742120982],[-77.07885631030618,38.9277280548869],[-77.07892546000168,38.92768433716883],[-77.07900461024173,38.92761596550149],[-77.079081510446,38.92752705371864],[-77.07919859499152,38.92737101203542],[-77.07934900345694,38.92718237595898],[-77.07945583563797,38.92705005727217],[-77.07951909153465,38.92697405597501],[-77.07953877114696,38.92695437206747],[-77.07966036303722,38.92699537988834],[-77.07988386720547,38.92709707943759],[-77.08031611583272,38.92731524146676],[-77.08107362153068,38.9277106903066],[-77.08098313832518,38.92792329747114],[-77.08065878599153,38.92868540646406],[-77.08046421039711,38.92904129992755],[-77.08059450900016,38.92909197580345],[-77.0809195302088,38.92914251687462],[-77.08098458063134,38.92919323747306],[-77.08098463828836,38.92924400308849],[-77.08059571465829,38.93015865324382],[-77.08040834172238,38.93026865651068]]]],"type":"MultiPolygon"} +},{ + "id": 1108723825, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":31116.33373, + "geom:bbox":"-77.0260325258,38.914076548,-77.0239180284,38.9156171037", + "geom:latitude":38.914844, + "geom:longitude":-77.024974, + "iso:country":"US", + "lbl:latitude":38.914798, + "lbl:longitude":-77.025154, + "lbl:max_zoom":18.0, + "mps:latitude":38.914845, + "mps:longitude":-77.024972, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:ang_x_preferred":[ + "Westmynster" + ], + "name:ara_x_preferred":[ + "\u0648\u0633\u062a\u0645\u0646\u0633\u062a\u0631" + ], + "name:azb_x_preferred":[ + "\u0648\u0633\u062a\u200c\u0645\u06cc\u0646\u0633\u062a\u0631" + ], + "name:bel_x_preferred":[ + "\u0412\u044d\u0441\u0442\u043c\u0456\u043d\u0441\u0442\u044d\u0440" + ], + "name:bul_x_preferred":[ + "\u0423\u0435\u0441\u0442\u043c\u0438\u043d\u0441\u0442\u044a\u0440" + ], + "name:ces_x_preferred":[ + "Westminster" + ], + "name:cor_x_preferred":[ + "Westminster" + ], + "name:cym_x_preferred":[ + "Westminster" + ], + "name:dan_x_preferred":[ + "Westminster" + ], + "name:deu_x_preferred":[ + "Westminster" + ], + "name:ell_x_preferred":[ + "\u039f\u03c5\u03ad\u03c3\u03c4\u03bc\u03b9\u03bd\u03c3\u03c4\u03b5\u03c1" + ], + "name:epo_x_preferred":[ + "Westminster" + ], + "name:eus_x_preferred":[ + "Westminster" + ], + "name:fas_x_preferred":[ + "\u0648\u0633\u062a\u200c\u0645\u06cc\u0646\u0633\u062a\u0631" + ], + "name:fin_x_preferred":[ + "Westminster" + ], + "name:fra_x_preferred":[ + "Westminster" + ], + "name:fry_x_preferred":[ + "Westminster" + ], + "name:gle_x_preferred":[ + "Westminster" + ], + "name:heb_x_preferred":[ + "\u05d5\u05e1\u05d8\u05de\u05d9\u05e0\u05e1\u05d8\u05e8" + ], + "name:hin_x_preferred":[ + "\u0935\u0947\u0938\u094d\u091f\u092e\u093f\u0902\u0938\u094d\u091f\u0930" + ], + "name:hye_x_preferred":[ + "\u054e\u0565\u057d\u0569\u0574\u056b\u0576\u057d\u0569\u0565\u0580" + ], + "name:isl_x_preferred":[ + "Westminster" + ], + "name:ita_x_preferred":[ + "Westminster" + ], + "name:jpn_x_preferred":[ + "\u30a6\u30a7\u30b9\u30c8\u30df\u30f3\u30b9\u30bf\u30fc" + ], + "name:kab_x_preferred":[ + "Westminster" + ], + "name:kat_x_preferred":[ + "\u10d5\u10d4\u10e1\u10e2\u10db\u10d8\u10dc\u10e1\u10e2\u10d4\u10e0\u10d8" + ], + "name:kir_x_preferred":[ + "\u0412\u0435\u0441\u0442\u043c\u0438\u043d\u0441\u0442\u0435\u0440" + ], + "name:kor_x_preferred":[ + "\uc6e8\uc2a4\ud2b8\ubbfc\uc2a4\ud130" + ], + "name:mkd_x_preferred":[ + "\u0412\u0435\u0441\u0442\u043c\u0438\u043d\u0441\u0442\u0435\u0440" + ], + "name:mlg_x_preferred":[ + "Westminster" + ], + "name:nld_x_preferred":[ + "Westminster" + ], + "name:nno_x_preferred":[ + "Westminster" + ], + "name:nor_x_preferred":[ + "Westminster" + ], + "name:pan_x_preferred":[ + "\u0a35\u0a48\u0a38\u0a1f\u0a2e\u0a3f\u0a70\u0a38\u0a1f\u0a30" + ], + "name:pol_x_preferred":[ + "Westminster" + ], + "name:por_x_preferred":[ + "Westminster" + ], + "name:rus_x_preferred":[ + "\u0412\u0435\u0441\u0442\u043c\u0438\u043d\u0441\u0442\u0435\u0440" + ], + "name:sco_x_preferred":[ + "Wastmeenster" + ], + "name:slk_x_preferred":[ + "Westminster" + ], + "name:spa_x_preferred":[ + "Westminster" + ], + "name:srp_x_preferred":[ + "\u0412\u0435\u0441\u0442\u043c\u0438\u043d\u0441\u0442\u0435\u0440" + ], + "name:tam_x_preferred":[ + "\u0bb5\u0bc6\u0bb8\u0bcd\u0b9f\u0bcd\u0bae\u0bbf\u0ba9\u0bcd\u0bb8\u0bcd\u0b9f\u0bb0\u0bcd" + ], + "name:tha_x_preferred":[ + "\u0e40\u0e27\u0e2a\u0e15\u0e4c\u0e21\u0e34\u0e19\u0e2a\u0e40\u0e15\u0e2d\u0e23\u0e4c" + ], + "name:tur_x_preferred":[ + "Westminster" + ], + "name:ukr_x_preferred":[ + "\u0412\u0435\u0441\u0442\u043c\u0456\u043d\u0441\u0442\u0435\u0440" + ], + "name:urd_x_preferred":[ + "\u0648\u06cc\u0633\u0679 \u0645\u0646\u0633\u0679\u0631" + ], + "name:vie_x_preferred":[ + "Westminster" + ], + "name:xmf_x_preferred":[ + "\u10d5\u10d4\u10e1\u10e2\u10db\u10d8\u10dc\u10e1\u10e2\u10d4\u10e0\u10d8" + ], + "name:yor_x_preferred":[ + "Westminster" + ], + "name:zho_x_preferred":[ + "\u897f\u654f" + ], + "reversegeo:latitude":38.914845, + "reversegeo:longitude":-77.024972, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866875, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"57f3c4b8efbe0b8e5c4186b1a4bdf4c6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723825, + "neighbourhood_id":85866875, + "region_id":85688741 + } + ], + "wof:id":1108723825, + "wof:lastmodified":1566623902, + "wof:name":"Westminster", + "wof:parent_id":85866875, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857005 + ], + "wof:tags":[] +}, + "bbox": [ + -77.02603252580012, + 38.91407654803778, + -77.02391802837046, + 38.91561710371968 +], + "geometry": {"coordinates":[[[[-77.02602952942856,38.91407959497478],[-77.02603252580012,38.91560478507911],[-77.02392430459919,38.91561710371968],[-77.02391802837046,38.91407654803778],[-77.02602952942856,38.91407959497478]]]],"type":"MultiPolygon"} +},{ + "id": 1108723831, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":32020.044539, + "geom:bbox":"-77.0867020725,38.9345470572,-77.0836965059,38.9365318195", + "geom:latitude":38.935362, + "geom:longitude":-77.085261, + "iso:country":"US", + "lbl:latitude":38.937899, + "lbl:longitude":-77.086884, + "lbl:max_zoom":18.0, + "mps:latitude":38.93538, + "mps:longitude":-77.085239, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"no ref", + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Westover Pl" + ], + "reversegeo:latitude":38.93538, + "reversegeo:longitude":-77.085239, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420510947, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"973871076cdef651f9f7a3e887fcc4fc", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723831, + "neighbourhood_id":420510947, + "region_id":85688741 + } + ], + "wof:id":1108723831, + "wof:lastmodified":1566623898, + "wof:name":"Westover Place", + "wof:parent_id":420510947, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857115 + ], + "wof:tags":[] +}, + "bbox": [ + -77.08670207248704, + 38.93454705724228, + -77.0836965059213, + 38.93653181946449 +], + "geometry": {"coordinates":[[[[-77.0836965059213,38.93544623493017],[-77.08501662640857,38.93456049324557],[-77.08643824681428,38.93454705724228],[-77.08654893349954,38.93475416518335],[-77.08670207248704,38.93501219346711],[-77.08518195266056,38.93653181946449],[-77.08495497654428,38.93636506150151],[-77.08491997654428,38.93633906150151],[-77.08489097654427,38.93631906150151],[-77.08471497654428,38.93619006150151],[-77.08429397654427,38.93588406150151],[-77.0840419765443,38.93569806150151],[-77.0836965059213,38.93544623493017]]]],"type":"MultiPolygon"} +},{ + "id": 1108723835, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000057, + "geom:area_square_m":548568.255571, + "geom:bbox":"-77.0466692787,38.8987368582,-77.0364918317,38.9056461002", + "geom:latitude":38.902728, + "geom:longitude":-77.041367, + "iso:country":"US", + "lbl:latitude":38.902708, + "lbl:longitude":-77.042238, + "lbl:max_zoom":18.0, + "mps:latitude":38.902708, + "mps:longitude":-77.042238, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Golden Triangle" + ], + "name:eng_x_preferred":[ + "Golden Triangle" + ], + "reversegeo:latitude":38.902708, + "reversegeo:longitude":-77.042238, + "src:geom":"mz", + "wof:belongsto":[ + 85866033, + 102191575, + 1108723661, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5579914" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"69c6cd3896e16f60112ff05237f5a986", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723661, + "microhood_id":1108723835, + "neighbourhood_id":85866033, + "region_id":85688741 + } + ], + "wof:id":1108723835, + "wof:lastmodified":1566623898, + "wof:name":"Golden Triangle", + "wof:parent_id":85866033, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781819 + ], + "wof:tags":[] +}, + "bbox": [ + -77.04666927871884, + 38.89873685818846, + -77.03649183173314, + 38.90564610015446 +], + "geometry": {"coordinates":[[[[-77.04666763891088,38.90133931563076],[-77.04666927871884,38.9055788478441],[-77.04660099036749,38.90559813512982],[-77.04351282751222,38.90563490216168],[-77.04351280178625,38.90559273052985],[-77.04117232868686,38.9056445444891],[-77.03649183173314,38.90564610015446],[-77.03651669754591,38.90021114467701],[-77.0365540178576,38.9002111330307],[-77.03798430232608,38.90021067674266],[-77.0379835177777,38.89873726621423],[-77.03921836590041,38.89873685818846],[-77.039478510206,38.89878773635498],[-77.03960849683916,38.89888922420126],[-77.03967346206092,38.89888920215678],[-77.04025877519224,38.89909206560178],[-77.04116872243183,38.89939634399443],[-77.04155886114305,38.89954870347597],[-77.04168907834239,38.89959962286236],[-77.04181901007846,38.89959957642315],[-77.04188400575336,38.89965031905513],[-77.04194925740977,38.89970126142437],[-77.0423391131968,38.89980225288257],[-77.04279422293858,38.89995478453024],[-77.0428592196308,38.90000552661637],[-77.04305440475531,38.90005622075874],[-77.04318436817567,38.90010713856802],[-77.04331458743336,38.90015785627166],[-77.0434445512246,38.90020877379062],[-77.04357451483513,38.90025909156725],[-77.04363948130315,38.90025906731721],[-77.04435478207182,38.90051302721056],[-77.0448099005327,38.90066535112057],[-77.04487489905472,38.90071569234735],[-77.0450048328215,38.90071564236485],[-77.04500486497601,38.90076660812539],[-77.04526502068359,38.9008172735219],[-77.04585011001645,38.9010205087129],[-77.04611029980721,38.90112153838469],[-77.04617526705981,38.90112151272454],[-77.04637023494784,38.90122316717383],[-77.04663042660643,38.90132479528064],[-77.04666763891088,38.90133931563076]],[[-77.03950314074102,38.90129602570021],[-77.03847598854298,38.90129130341575],[-77.03846168649122,38.9025656898424],[-77.03949285232883,38.90256207404118],[-77.03950314074102,38.90129602570021]]]],"type":"MultiPolygon"} +},{ + "id": 1108723837, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":38976.361632, + "geom:bbox":"-76.9914337671,38.8891648405,-76.9882087305,38.8904413314", + "geom:latitude":38.889809, + "geom:longitude":-76.989818, + "iso:country":"US", + "lbl:latitude":38.889808, + "lbl:longitude":-76.989818, + "lbl:max_zoom":18.0, + "mps:latitude":38.889808, + "mps:longitude":-76.989818, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Lincoln Park" + ], + "name:fra_x_preferred":[ + "Lincoln Park" + ], + "reversegeo:latitude":38.889808, + "reversegeo:longitude":-76.989818, + "src:geom":"mz", + "wof:belongsto":[ + 85809405, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6550911" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c3603691a0712414d0c92fd904f099bf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723837, + "neighbourhood_id":85809405, + "region_id":85688741 + } + ], + "wof:id":1108723837, + "wof:lastmodified":1566623898, + "wof:name":"Lincoln Park", + "wof:parent_id":85809405, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781809 + ], + "wof:tags":[] +}, + "bbox": [ + -76.99143376708425, + 38.88916484045394, + -76.98820873050086, + 38.89044133137615 +], + "geometry": {"coordinates":[[[[-76.99142893192976,38.88919027407184],[-76.99142890183346,38.88994689298294],[-76.99143376708425,38.89043642264937],[-76.98820873050086,38.89044133137615],[-76.98822980427552,38.88916484045394],[-76.99142893192976,38.88919027407184]]]],"type":"MultiPolygon"} +},{ + "id": 1108723839, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000081, + "geom:area_square_m":776091.101443, + "geom:bbox":"-77.0035316378,38.8898872511,-76.9926454253,38.8973211954", + "geom:latitude":38.893614, + "geom:longitude":-76.998093, + "iso:country":"US", + "lbl:latitude":38.893615, + "lbl:longitude":-76.998093, + "lbl:max_zoom":18.0, + "mps:latitude":38.893615, + "mps:longitude":-76.998093, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:zho_x_preferred":[ + "\u65af\u5766\u987f\u516c\u56ed" + ], + "reversegeo:latitude":38.893615, + "reversegeo:longitude":-76.998093, + "src:geom":"mz", + "wof:belongsto":[ + 85809405, + 102191575, + 1108723665, + 85633793, + 85931779, + 102084889, + 85688741 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"526f1e575079ea38b397eda67465c57e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084889, + "locality_id":85931779, + "macrohood_id":1108723665, + "microhood_id":1108723839, + "neighbourhood_id":85809405, + "region_id":85688741 + } + ], + "wof:id":1108723839, + "wof:lastmodified":1566623898, + "wof:name":"Stanton Park", + "wof:parent_id":85809405, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781811 + ], + "wof:tags":[] +}, + "bbox": [ + -77.0035316378362, + 38.88988725109062, + -76.99264542528275, + 38.8973211954352 +], + "geometry": {"coordinates":[[[[-76.99264542528275,38.89732096430533],[-76.99264542528275,38.88994002811464],[-77.00199804276613,38.88988725109062],[-77.00353137553972,38.88988875056492],[-77.00353161772124,38.89478124634434],[-77.00353162275736,38.89488297811915],[-77.0035316328099,38.89508604193131],[-77.0035316378362,38.89518757383468],[-77.00351000000001,38.896118],[-77.00350899999999,38.896801],[-77.00350899999999,38.89732114311752],[-77.00340207162429,38.89732114629091],[-77.00333710782444,38.89732114816469],[-77.00327188826164,38.89732115000957],[-77.00320692446179,38.89732115181101],[-77.00314170489897,38.89732115358323],[-77.00307674109912,38.89732115531229],[-77.00301228882526,38.89732115699203],[-77.00294655773644,38.89732115866845],[-77.00288210546255,38.89732116027636],[-77.00281714166272,38.89732116186109],[-77.0022969197378,38.89732117324806],[-77.0022319559379,38.89732117450733],[-77.00216699213802,38.89732117573048],[-77.00203680877527,38.8973211780728],[-77.0019066254125,38.89732118027008],[-77.00158180641301,38.89732118511996],[-77.00073702125124,38.8973211935043],[-77.0006720574513,38.8973211938961],[-77.00054187408847,38.89732119457248],[-77.00047691028857,38.89732119485578],[-76.99969657740056,38.8973211954352],[-76.99963161360064,38.89732119524838],[-76.99950194176381,38.89732119476753],[-76.99937175840098,38.89732119413995],[-76.99885179223868,38.89732119018643],[-76.99852646171318,38.89732118653579],[-76.99846200943927,38.89732118570502],[-76.99833182607647,38.89732118391853],[-76.99761671275174,38.89732117151797],[-76.99683689139043,38.89732115300566],[-76.996251961429,38.89732113570314],[-76.99618674186621,38.89732113359243],[-76.9961217780664,38.89732113145377],[-76.99605681426661,38.89732112927904],[-76.99592663090402,38.89732112481225],[-76.99586192286723,38.89732112253802],[-76.99573199526768,38.89732111786336],[-76.99560181190512,38.89732111303455],[-76.99553659234238,38.89732111056089],[-76.99540666474286,38.8973211055244],[-76.99527648138036,38.89732110033303],[-76.99521202910661,38.89732109770917],[-76.99508184574415,38.89732109230093],[-76.99495166238171,38.89732108674762],[-76.99482147901928,38.89732108104921],[-76.99462684338317,38.897321072259],[-76.99443169622111,38.89732106312016],[-76.99436673242144,38.89732106000552],[-76.99423706058511,38.89732105368051],[-76.99384651049827,38.89732103376104],[-76.99378154669866,38.897321030321],[-76.99365136333645,38.89732102331863],[-76.99306694490325,38.89732099009613],[-76.99274161437964,38.89732097033526],[-76.99264542528275,38.89732096430533]]]],"type":"MultiPolygon"} +},{ + "id": 1108724971, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000163, + "geom:area_square_m":1565546.769022, + "geom:bbox":"-77.0857313071,38.82926,-77.064325,38.8441977731", + "geom:latitude":38.836516, + "geom:longitude":-77.074705, + "iso:country":"US", + "lbl:latitude":38.836089, + "lbl:longitude":-77.073921, + "lbl:max_zoom":18.0, + "mps:latitude":38.836506, + "mps:longitude":-77.072753, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Beverley Hills" + ], + "name:eng_x_variant":[ + "Beverley Hls" + ], + "name:und_x_variant":[ + "Beverly Hills" + ], + "reversegeo:latitude":38.836506, + "reversegeo:longitude":-77.072753, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420547829, + 102191575, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6e941a5d160138a53e2a2c6cc56ef043", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108724971, + "neighbourhood_id":420547829, + "region_id":85688747 + } + ], + "wof:id":1108724971, + "wof:lastmodified":1566623894, + "wof:name":"Beverley Hills", + "wof:parent_id":420547829, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85805965 + ], + "wof:tags":[] +}, + "bbox": [ + -77.0857313071169, + 38.82926, + -77.064325, + 38.8441977730954 +], + "geometry": {"coordinates":[[[[-77.08534716601783,38.83392146125546],[-77.08517640663386,38.83383187903063],[-77.0848514352797,38.8336184547165],[-77.08442524333984,38.83330898816811],[-77.0838605390195,38.83288391570547],[-77.08315732231873,38.83234323732859],[-77.08259109588433,38.83196855706052],[-77.08216185971631,38.83175987490127],[-77.08186961381469,38.83171719085085],[-77.08171435817945,38.83184050490924],[-77.08158497848342,38.83193891898904],[-77.0814814747266,38.83201243309026],[-77.08140384690898,38.83206104721287],[-77.08135209503057,38.8320847613569],[-77.08130414843734,38.83210313981809],[-77.08126000712927,38.83211618259644],[-77.0812196711064,38.83212388969195],[-77.08118314036868,38.83212626110462],[-77.08113671588951,38.83212744681095],[-77.0810803976689,38.83212744681095],[-77.08101418570681,38.83212626110462],[-77.08093808000326,38.83212388969195],[-77.08086730169896,38.83211736830427],[-77.08080185079392,38.83210669694159],[-77.08074172728811,38.8320918756039],[-77.08068693118155,38.83207290429121],[-77.08063517930313,38.83205452582789],[-77.08058647165286,38.83203674021394],[-77.08054080823074,38.83201954744936],[-77.08049818903675,38.83200294753416],[-77.08043958764502,38.83198516190504],[-77.08036500405554,38.83196619056201],[-77.08027443826832,38.83194603350506],[-77.08016789028335,38.83192469073418],[-77.08007808555317,38.83190690509037],[-77.08000502407776,38.83189267657362],[-77.07994870585713,38.83188200518391],[-77.07990913089129,38.83187489092127],[-77.0798665116973,38.83191461200187],[-77.07982084827518,38.83200116842573],[-77.0797721406249,38.83213456019284],[-77.07972038874649,38.8323147873032],[-77.07955447831276,38.83245173618361],[-77.07927440932369,38.83254540683409],[-77.07888018177931,38.83259579925462],[-77.07837179567963,38.83260291344521],[-77.07798365659153,38.83297224354135],[-77.07771576451505,38.83370378954302],[-77.07756811945016,38.83479755145024],[-77.07754072139689,38.83625352926299],[-77.07751332334361,38.8375458747077],[-77.07748592529033,38.83867458778435],[-77.07745852723706,38.83963966849296],[-77.07743112918378,38.84044111683353],[-77.07741058064383,38.84105583686732],[-77.07739688161718,38.84148382859435],[-77.07739003210386,38.84172509201461],[-77.07739003210386,38.84177962712809],[-77.07745396089484,38.84183416219979],[-77.0775818184768,38.84188869722968],[-77.07777360484974,38.84194323221778],[-77.07802932001367,38.84199776716409],[-77.07825078761098,38.84204222499388],[-77.07843800764172,38.84207660570713],[-77.07859098010584,38.84210090930389],[-77.07870970500339,38.84211513578412],[-77.07883299624314,38.84212876949217],[-77.07896085382509,38.84214181042804],[-77.07909327774927,38.84215425859173],[-77.07923026801565,38.84216611398323],[-77.07937791308053,38.84217441275744],[-77.07953621294391,38.84217915491435],[-77.07970516760578,38.84218034045398],[-77.07988477706616,38.84217796937632],[-77.08006514758355,38.84217144890989],[-77.08024627915802,38.84216077905469],[-77.08042817178949,38.84214595981072],[-77.080610825478,38.84212699117799],[-77.08078130225395,38.84210505868561],[-77.08093960211734,38.84208016233359],[-77.08108572506815,38.84205230212191],[-77.0812196711064,38.84202147805058],[-77.08135209503057,38.84198591178624],[-77.08148299684066,38.84194560332886],[-77.0816123765367,38.84190055267846],[-77.08174023411867,38.84185075983503],[-77.08186276430138,38.84179622475876],[-77.08197996708485,38.84173694744964],[-77.08209184246905,38.84167292790767],[-77.08219839045401,38.84160416613285],[-77.08229656681158,38.8415371826233],[-77.08238637154179,38.84147197737902],[-77.08246780464458,38.84140855040001],[-77.08254086611998,38.84134690168626],[-77.08261316653835,38.8412846601399],[-77.08268470589971,38.8412218257609],[-77.082755484204,38.84115839854928],[-77.08282550145125,38.84109437850505],[-77.08289019129927,38.84102917284027],[-77.08294955374802,38.84096278155496],[-77.08300358879755,38.84089520464912],[-77.08305229644783,38.84082644212275],[-77.08310633149736,38.84074167433754],[-77.08316569394611,38.84064090129349],[-77.08323038379413,38.8405241229906],[-77.0833004010414,38.84039133942887],[-77.08335824137609,38.84027396814292],[-77.08340390479823,38.84017200913274],[-77.0834373913078,38.84008546239835],[-77.08345870090477,38.84001432793973],[-77.08348001050177,38.83993074478767],[-77.08350132009876,38.83983471294214],[-77.08352262969576,38.83972623240316],[-77.08354393929275,38.83960530317072],[-77.08355839937643,38.83945295541265],[-77.08356600994678,38.83926918912894],[-77.08356677100382,38.83905400431959],[-77.08356068254753,38.83880740098461],[-77.08355307197718,38.83857561699046],[-77.08354393929275,38.83835865233715],[-77.08353328449425,38.83815650702469],[-77.0835211075817,38.83796918105305],[-77.0835104527832,38.83780023175554],[-77.08350132009878,38.83764965913215],[-77.08349370952843,38.83751746318288],[-77.08348762107214,38.83740364390773],[-77.08348533790104,38.83729634540431],[-77.0834868600151,38.83719556767262],[-77.08349218741435,38.83710131071265],[-77.08350132009878,38.83701357452443],[-77.08351349701134,38.83691991005941],[-77.08352871815205,38.83682031731761],[-77.0835469835209,38.83671479629902],[-77.08356829311789,38.83660334700363],[-77.08358960271489,38.83649604727859],[-77.08361091231188,38.83639289712386],[-77.08363222190889,38.83629389653949],[-77.08365353150586,38.83619904552543],[-77.08375094680642,38.83613976365746],[-77.0839244678105,38.83611605093554],[-77.08425552762095,38.83613976375226],[-77.08482113132212,38.8362221137952],[-77.0847753061924,38.8366647711049],[-77.0847503064757,38.8369717711941],[-77.08472030567781,38.8373697715261],[-77.0846953062384,38.8376797717164],[-77.0846973061647,38.8377847715311],[-77.08469830559829,38.8378767712201],[-77.08469830583159,38.8378837715846],[-77.0846953058191,38.8379217716084],[-77.0846673057534,38.8381837718362],[-77.08468730612231,38.8383237715744],[-77.084732306183,38.8385357719451],[-77.0847493060086,38.8386217714381],[-77.084799306184,38.8388587720758],[-77.08483330644241,38.8390197713636],[-77.08488530621619,38.8392177715196],[-77.0849343057953,38.8393127716302],[-77.08495230590761,38.8393717718376],[-77.084985306422,38.8395267722083],[-77.08502130676381,38.8397097723201],[-77.0850623063339,38.8399247721477],[-77.08506330653201,38.8399317719498],[-77.08511330683299,38.8401927717809],[-77.0851323062565,38.8402967718713],[-77.0851603068528,38.8404327721734],[-77.0851963061975,38.8406217724747],[-77.0852753060643,38.8410287723805],[-77.08531130662401,38.8412127723731],[-77.08543830684209,38.84186377195],[-77.08561430667901,38.8425477723545],[-77.0856493068019,38.8426807728491],[-77.0855983064784,38.8426827728511],[-77.0856383071463,38.8427507726679],[-77.0857003071588,38.8428567727761],[-77.08570030621441,38.8428847723716],[-77.085702306844,38.842967772723],[-77.0857073067467,38.8431057723337],[-77.0857103065913,38.8431357730476],[-77.0856983073112,38.84331177245],[-77.0857203064763,38.8435407724172],[-77.0857313071169,38.8436017728782],[-77.0857123069373,38.8439257728032],[-77.08569930682209,38.8440187730806],[-77.08561130639799,38.8441977730954],[-77.0823763054152,38.8437497730988],[-77.08234230537229,38.8437417728915],[-77.0822263056816,38.8437177724939],[-77.0822083055272,38.8437147729532],[-77.0820563059784,38.8436827732004],[-77.08203330518791,38.8436777725856],[-77.08190530505421,38.8436527728018],[-77.081860305595,38.8436437728548],[-77.0802543054216,38.8433197728031],[-77.0800993051823,38.8433537727104],[-77.0800363045396,38.8433677726058],[-77.0797173044035,38.8434267731061],[-77.079136305188,38.8435347726945],[-77.0787653042967,38.8436027731719],[-77.07865730413189,38.8436237728974],[-77.0784503042118,38.8436617727356],[-77.0783013046197,38.8436897732764],[-77.0781633043453,38.8437137733212],[-77.0778803048842,38.8437667730771],[-77.07766730381771,38.8438067728161],[-77.0772683037539,38.8438717733186],[-77.07726704279301,38.84387175297677],[-77.077172,38.843656],[-77.077129,38.843532],[-77.07709800000001,38.843449],[-77.07704699999999,38.843327],[-77.077006,38.843243],[-77.076928,38.843139],[-77.07684500000001,38.843056],[-77.07673800000001,38.842975],[-77.076634,38.842909],[-77.076505,38.842842],[-77.076296,38.842773],[-77.07603,38.842718],[-77.07571900000001,38.842652],[-77.075428,38.842598],[-77.07472199999999,38.842451],[-77.073579,38.84218],[-77.073335,38.842117],[-77.073122,38.842058],[-77.072828,38.841981],[-77.072451,38.841875],[-77.071893,38.841704],[-77.07097899999999,38.841404],[-77.070609,38.841271],[-77.070504,38.841236],[-77.07041700000001,38.841213],[-77.070295,38.841187],[-77.070172,38.841166],[-77.069857,38.841123],[-77.06956700000001,38.841077],[-77.069357,38.841031],[-77.06914,38.840967],[-77.06893100000001,38.840897],[-77.06890300000001,38.840887],[-77.068656,38.840799],[-77.068426,38.840706],[-77.068203,38.8406],[-77.06796,38.840461],[-77.06773800000001,38.840328],[-77.067728,38.840321],[-77.06753399999999,38.840166],[-77.06728200000001,38.839956],[-77.067064,38.839802],[-77.066866,38.839673],[-77.066637,38.839548],[-77.06625099999999,38.839376],[-77.066233,38.839369],[-77.06530100000001,38.838957],[-77.065088,38.838853],[-77.064949,38.838784],[-77.064599,38.838565],[-77.064325,38.83838],[-77.064527,38.8381],[-77.06464699999999,38.837934],[-77.064859,38.837681],[-77.06501299999999,38.837518],[-77.065146,38.837396],[-77.06539600000001,38.837181],[-77.065646,38.836982],[-77.065831,38.836828],[-77.06638100000001,38.836376],[-77.06649899999999,38.836258],[-77.066599,38.836155],[-77.06671799999999,38.836017],[-77.066801,38.835904],[-77.066903,38.835729],[-77.067306,38.835036],[-77.067398,38.834873],[-77.06749600000001,38.834708],[-77.067554,38.834604],[-77.067589,38.834429],[-77.067588,38.834307],[-77.067547,38.834091],[-77.067289,38.833168],[-77.067078,38.832403],[-77.066987,38.832061],[-77.066869,38.831645],[-77.06698900000001,38.831616],[-77.06728200000001,38.83152],[-77.067409,38.831498],[-77.067493,38.831491],[-77.067841,38.831494],[-77.068774,38.831515],[-77.069006,38.83152],[-77.06934699999999,38.831504],[-77.06967400000001,38.83146],[-77.069857,38.831429],[-77.070033,38.831405],[-77.070269,38.83136],[-77.070375,38.831325],[-77.070481,38.831287],[-77.070588,38.831244],[-77.070789,38.831156],[-77.070914,38.831083],[-77.071145,38.830917],[-77.071281,38.830808],[-77.071403,38.830672],[-77.07157100000001,38.830511],[-77.07165999999999,38.830444],[-77.071816,38.830354],[-77.071877,38.830321],[-77.072177,38.830211],[-77.072509,38.830142],[-77.07265,38.830109],[-77.072869,38.830049],[-77.073347,38.829849],[-77.073651,38.82972],[-77.07391699999999,38.829612],[-77.074352,38.829616],[-77.07525099999999,38.829587],[-77.076238,38.829557],[-77.076295,38.829555],[-77.07720399999999,38.82954],[-77.07829700000001,38.829502],[-77.078767,38.829485],[-77.079386,38.829477],[-77.079797,38.829459],[-77.079902,38.82946],[-77.07999,38.829453],[-77.080061,38.829423],[-77.080178,38.829346],[-77.080282,38.82926],[-77.081883,38.830465],[-77.082679,38.831072],[-77.083236,38.831479],[-77.084879,38.832711],[-77.085032,38.832824],[-77.085104,38.832867],[-77.08520900000001,38.832899],[-77.0853299648704,38.83290678136592],[-77.0853303058057,38.8329177701924],[-77.0853413061927,38.833420770726],[-77.0853373055939,38.8338207705651],[-77.08534330659199,38.8338707707473],[-77.08534716601783,38.83392146125546]]]],"type":"MultiPolygon"} +},{ + "id": 1108724979, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":299727.766013, + "geom:bbox":"-77.048468,38.807913,-77.040832,38.813303", + "geom:latitude":38.810606, + "geom:longitude":-77.044654, + "iso:country":"US", + "lbl:latitude":38.810604, + "lbl:longitude":-77.044654, + "lbl:max_zoom":18.0, + "mps:latitude":38.810604, + "mps:longitude":-77.044654, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.810604, + "reversegeo:longitude":-77.044654, + "src:geom":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"c1819c4c52782d2add06106bac7c77e9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108724979, + "neighbourhood_id":-1, + "region_id":85688747 + } + ], + "wof:id":1108724979, + "wof:lastmodified":1566623894, + "wof:name":"The Berg", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781831 + ], + "wof:tags":[] +}, + "bbox": [ + -77.048468, + 38.807913, + -77.040832, + 38.813303 +], + "geometry": {"coordinates":[[[[-77.04624099999999,38.808472],[-77.047386,38.808616],[-77.048468,38.808754],[-77.04822299999999,38.809896],[-77.048058,38.810685],[-77.04798599999999,38.811026],[-77.047746,38.812163],[-77.047488,38.813303],[-77.04642,38.813164],[-77.045265,38.813019],[-77.044116,38.812875],[-77.04303400000001,38.812733],[-77.041921,38.812591],[-77.04083199999999,38.812458],[-77.041077,38.811315],[-77.04132799999999,38.81018],[-77.04139000000001,38.809885],[-77.041448,38.809613],[-77.041572,38.80904],[-77.041692,38.80848],[-77.041813,38.807913],[-77.042894,38.808049],[-77.044015,38.808184],[-77.04510000000001,38.808324],[-77.04624099999999,38.808472]]]],"type":"MultiPolygon"} +},{ + "id": 1108724987, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000044, + "geom:area_square_m":425230.568334, + "geom:bbox":"-77.1274263226,38.8038805249,-77.1159134513,38.8122109394", + "geom:latitude":38.807876, + "geom:longitude":-77.120707, + "iso:country":"US", + "lbl:latitude":38.808137, + "lbl:longitude":-77.119181, + "lbl:max_zoom":18.0, + "mps:latitude":38.808137, + "mps:longitude":-77.119181, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_variant":[ + "Cameron" + ], + "reversegeo:latitude":38.808137, + "reversegeo:longitude":-77.119181, + "src:geom":"mz", + "wof:belongsto":[ + 1108724983, + 102191575, + 1108724981, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1ef887768889d7e27c17424749af0b11", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "macrohood_id":1108724981, + "microhood_id":1108724987, + "neighbourhood_id":1108724983, + "region_id":85688747 + } + ], + "wof:id":1108724987, + "wof:lastmodified":1566623895, + "wof:name":"Cameron Station", + "wof:parent_id":1108724983, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781835 + ], + "wof:tags":[] +}, + "bbox": [ + -77.12742632259835, + 38.80388052490205, + -77.1159134512925, + 38.8122109394222 +], + "geometry": {"coordinates":[[[[-77.12647081242285,38.80388052490205],[-77.12742632259835,38.80625610636537],[-77.12158646034177,38.80792038931183],[-77.12058534109778,38.8122109394222],[-77.1159134512925,38.81165188239994],[-77.11694794117795,38.80639913225389],[-77.11961759249525,38.80568400017727],[-77.12647081242285,38.80388052490205]]]],"type":"MultiPolygon"} +},{ + "id": 1108724989, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":463468.382295, + "geom:bbox":"-77.054382,38.8064734666,-77.0472527254,38.8161809321", + "geom:latitude":38.811164, + "geom:longitude":-77.050825, + "iso:country":"US", + "lbl:latitude":38.805681, + "lbl:longitude":-77.051336, + "lbl:max_zoom":18.0, + "mps:latitude":38.811167, + "mps:longitude":-77.050757, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Parker-Gray" + ], + "reversegeo:latitude":38.811167, + "reversegeo:longitude":-77.050757, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85875827, + 102191575, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b971a6ef950f91c733d266b768d951de", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108724989, + "neighbourhood_id":85875827, + "region_id":85688747 + } + ], + "wof:id":1108724989, + "wof:lastmodified":1566623895, + "wof:name":"Parker-Gray Historic District", + "wof:parent_id":85875827, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85875843 + ], + "wof:tags":[] +}, + "bbox": [ + -77.054382, + 38.80647346658009, + -77.04725272544607, + 38.81618093213974 +], + "geometry": {"coordinates":[[[[-77.04725272544607,38.81444046615945],[-77.047488,38.813303],[-77.04798599999999,38.811026],[-77.048058,38.810685],[-77.04822299999999,38.809896],[-77.048468,38.808754],[-77.04895761093778,38.80647346658009],[-77.054382,38.807175],[-77.054141,38.80832],[-77.05388600000001,38.809457],[-77.053639,38.8106],[-77.05340200000001,38.811715],[-77.05320500000001,38.812632],[-77.053158,38.812861],[-77.05291800000001,38.813995],[-77.05283883293978,38.81437821446536],[-77.05288477449503,38.81440044186353],[-77.05305891645861,38.81448905902334],[-77.05309988157387,38.81451864426823],[-77.05312438257913,38.8145457815032],[-77.05313928237543,38.81457082370814],[-77.05313978816787,38.8145941007636],[-77.05313608771586,38.81461661382888],[-77.05311532242848,38.81465015775454],[-77.05308923270857,38.81468157190714],[-77.05233103350004,38.81579757298936],[-77.05215213256319,38.81607018394075],[-77.05210368022612,38.81612875269983],[-77.0520488385699,38.8161665561716],[-77.05200784043845,38.81617773748015],[-77.05195619344188,38.81618093213974],[-77.049176,38.815841],[-77.04930899999999,38.815259],[-77.04941100000001,38.814711],[-77.04725272544607,38.81444046615945]]]],"type":"MultiPolygon"} +},{ + "id": 1108724993, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000101, + "geom:area_square_m":976077.258415, + "geom:bbox":"-77.089639,38.8067007464,-77.07523,38.817416", + "geom:latitude":38.811458, + "geom:longitude":-77.082712, + "iso:country":"US", + "lbl:latitude":38.811588, + "lbl:longitude":-77.081143, + "lbl:max_zoom":18.0, + "mps:latitude":38.811171, + "mps:longitude":-77.08285, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":38.811171, + "reversegeo:longitude":-77.08285, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108724991, + 102191575, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c92847068263310c2a0a961b50910e0f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108724993, + "neighbourhood_id":1108724991, + "region_id":85688747 + } + ], + "wof:id":1108724993, + "wof:lastmodified":1566623894, + "wof:name":"Clover-College Park", + "wof:parent_id":1108724991, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85811479 + ], + "wof:tags":[] +}, + "bbox": [ + -77.089639, + 38.80670074641811, + -77.07523, + 38.817416 +], + "geometry": {"coordinates":[[[[-77.089551,38.817416],[-77.089488,38.817407],[-77.089232,38.817362],[-77.089173,38.817346],[-77.08910299999999,38.817331],[-77.089012,38.817307],[-77.088915,38.81728],[-77.088893,38.817273],[-77.08881700000001,38.81725],[-77.08834299999999,38.817083],[-77.087855,38.816906],[-77.08723500000001,38.81668],[-77.08712300000001,38.816642],[-77.086715,38.816484],[-77.085712,38.816085],[-77.08556299999999,38.816026],[-77.084727,38.815689],[-77.084479,38.815592],[-77.084215,38.815477],[-77.083923,38.815333],[-77.083631,38.815166],[-77.08344099999999,38.815046],[-77.08335099999999,38.814992],[-77.08309,38.814851],[-77.082927,38.814772],[-77.082708,38.81467],[-77.082596,38.814624],[-77.08249499999999,38.814585],[-77.08229300000001,38.814507],[-77.081892,38.814378],[-77.081641,38.814303],[-77.08146600000001,38.814258],[-77.081281,38.814225],[-77.08107800000001,38.814195],[-77.080822,38.814168],[-77.08058699999999,38.814174],[-77.08016499999999,38.814188],[-77.07926999999999,38.814213],[-77.078863,38.814217],[-77.07862,38.814213],[-77.078445,38.814215],[-77.078259,38.814205],[-77.078227,38.814204],[-77.077015,38.814125],[-77.076973,38.814122],[-77.07693,38.814123],[-77.076835,38.813959],[-77.076657,38.813731],[-77.07640499999999,38.813369],[-77.07631600000001,38.813238],[-77.07619699999999,38.813059],[-77.076108,38.812934],[-77.07607400000001,38.812863],[-77.076048,38.812792],[-77.076008,38.812659],[-77.075986,38.812557],[-77.075951,38.812333],[-77.07589400000001,38.812041],[-77.075841,38.811862],[-77.075738,38.811593],[-77.07550000000001,38.811038],[-77.075435,38.810935],[-77.07536,38.810822],[-77.075265,38.810645],[-77.075236,38.810558],[-77.07523,38.810477],[-77.07526300000001,38.810225],[-77.075433,38.809292],[-77.07561099999999,38.808285],[-77.07563399999999,38.808141],[-77.075776,38.807368],[-77.07582601821595,38.80705182166939],[-77.0758957285752,38.80670074641811],[-77.07834475355712,38.80699974831342],[-77.081492,38.807433],[-77.08271000000001,38.807585],[-77.083956,38.807771],[-77.08727925061029,38.80828880140915],[-77.088669,38.808513],[-77.088669,38.808976],[-77.088739,38.809499],[-77.088741,38.809514],[-77.08874400000001,38.809546],[-77.08891199999999,38.810961],[-77.088919,38.811005],[-77.089068,38.812166],[-77.089236,38.813439],[-77.089403,38.814666],[-77.089423,38.814805],[-77.089586,38.815972],[-77.089609,38.816229],[-77.08963300000001,38.816452],[-77.08963900000001,38.816662],[-77.089624,38.816926],[-77.08959,38.817193],[-77.089551,38.817416]]]],"type":"MultiPolygon"} +},{ + "id": 1108724997, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000124, + "geom:area_square_m":1197020.36926, + "geom:bbox":"-77.1281346594,38.8117598593,-77.1089212084,38.8247074285", + "geom:latitude":38.818477, + "geom:longitude":-77.118483, + "iso:country":"US", + "lbl:latitude":38.818971, + "lbl:longitude":-77.118344, + "lbl:max_zoom":18.0, + "mps:latitude":38.818971, + "mps:longitude":-77.118344, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Brookville", + "Seminary Valley" + ], + "reversegeo:latitude":38.818971, + "reversegeo:longitude":-77.118344, + "src:geom":"mz", + "wof:belongsto":[ + 85875847, + 102191575, + 1108724981, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"27be999253caa8ff2be63b96cc0a0c7a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "macrohood_id":1108724981, + "microhood_id":1108724997, + "neighbourhood_id":85875847, + "region_id":85688747 + } + ], + "wof:id":1108724997, + "wof:lastmodified":1566623894, + "wof:name":"Brookville-Seminary Valley", + "wof:parent_id":85875847, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420547847 + ], + "wof:tags":[] +}, + "bbox": [ + -77.12813465944632, + 38.81175985930844, + -77.10892120843089, + 38.82470742852363 +], + "geometry": {"coordinates":[[[[-77.10893981129375,38.81542360707136],[-77.108963,38.815358],[-77.10901200000001,38.815177],[-77.109039,38.815064],[-77.10905099999999,38.815001],[-77.10912,38.814492],[-77.109161,38.81421],[-77.10919199999999,38.814063],[-77.109222,38.813932],[-77.10924900000001,38.813832],[-77.109256,38.813804],[-77.10929400000001,38.813691],[-77.109312,38.813635],[-77.10950800000001,38.813135],[-77.109545,38.813029],[-77.109572,38.812936],[-77.10959099999999,38.812851],[-77.109607,38.812755],[-77.10962000000001,38.812588],[-77.10962499999999,38.81254],[-77.10963099999999,38.812423],[-77.10962600000001,38.812323],[-77.109627,38.812223],[-77.10962000000001,38.812111],[-77.111589,38.811948],[-77.11262499999999,38.811841],[-77.113417,38.811768],[-77.11348298244738,38.81175985930844],[-77.1134881242303,38.81177017611527],[-77.11352644390595,38.81184549794254],[-77.11356352746303,38.81191677428535],[-77.11359937490154,38.81198400514372],[-77.11363398622149,38.81204719051763],[-77.11366711419915,38.81210979792353],[-77.11369875883452,38.81217182736141],[-77.11372892012761,38.81223327883127],[-77.11375759807844,38.81229415233313],[-77.11378405101581,38.81235040250031],[-77.11380827893979,38.81240202933286],[-77.11383028185031,38.81244903283075],[-77.11385005974742,38.81249141299399],[-77.11387033209195,38.81253205940391],[-77.1138910988839,38.81257097206051],[-77.11391236012331,38.8126081509638],[-77.11393411581014,38.81264359611376],[-77.11396106319495,38.81267904124609],[-77.11399320227775,38.81271448636079],[-77.11403053305855,38.81274993145784],[-77.11407305553732,38.81278537653728],[-77.1141205224904,38.81282082159906],[-77.11417293391773,38.8128562666432],[-77.11423028981935,38.81289171166971],[-77.11429259019525,38.81292715667858],[-77.11435983504541,38.81296375748171],[-77.11443202436988,38.81300151407911],[-77.1145091581686,38.81304042647078],[-77.1145912364416,38.81308049465672],[-77.11467628139917,38.81312287443783],[-77.11476429304132,38.81316756581411],[-77.11485527136801,38.81321456878555],[-77.11494921637927,38.81326388335218],[-77.11504810586482,38.81331300525042],[-77.11515193982464,38.81336193448028],[-77.11526071825875,38.81341067104179],[-77.11537444116713,38.81345921493492],[-77.1154913779838,38.81350775879496],[-77.11561152870874,38.81355630262192],[-77.11573489334197,38.81360484641579],[-77.11586147188346,38.81365339017658],[-77.11601277279635,38.81371021712347],[-77.11618879608064,38.81377532725647],[-77.1163895417363,38.81384872057558],[-77.11661500976334,38.8139303970808],[-77.11687756134747,38.81403229980027],[-77.11717719648868,38.81415442873401],[-77.11751391518698,38.81429678388201],[-77.11788771744234,38.81445936524427],[-77.11823061673348,38.81460576534417],[-77.1185426130604,38.81473598418172],[-77.11882370642307,38.8148500217569],[-77.1190738968215,38.81494787806973],[-77.11930455654655,38.81503745119559],[-77.1195156855982,38.81511874113448],[-77.11970728397645,38.81519174788642],[-77.11987935168131,38.81525647145139],[-77.12003164148905,38.81531387506444],[-77.12016415339968,38.81536395872558],[-77.12027688741321,38.8154067224348],[-77.12036984352964,38.81544216619211],[-77.12048183587203,38.81549032339731],[-77.12061286444039,38.81555119405039],[-77.1207629292347,38.81562477815136],[-77.12093203025498,38.81571107570021],[-77.12112387585694,38.81580796762003],[-77.12133846604057,38.81591545391081],[-77.12157580080589,38.81603353457253],[-77.12183588015289,38.81616220960521],[-77.12205071756024,38.81626776932064],[-77.12222031302795,38.81635021371882],[-77.12234466655602,38.81640954279974],[-77.12242377814448,38.81644575656341],[-77.12250387862777,38.81648177768285],[-77.12258496800592,38.81651760615804],[-77.12266704627892,38.81655324198901],[-77.12275011344678,38.81658868517576],[-77.12282947225893,38.81662432097029],[-77.12290512271538,38.81666014937261],[-77.12297706481611,38.81669617038275],[-77.12304529856115,38.81673238400066],[-77.12312688238673,38.81677533947146],[-77.12322181629285,38.81682503679511],[-77.12333010027953,38.81688147597163],[-77.12345173434674,38.816944657001],[-77.12357064895312,38.81700957159058],[-77.12368684409864,38.81707621974035],[-77.12380031978331,38.81714460145031],[-77.12391107600712,38.81721471672044],[-77.12401144883495,38.81727635649134],[-77.12410143826681,38.817329520763],[-77.12418104430267,38.81737420953539],[-77.12425026694255,38.81741042280855],[-77.12431108397617,38.81744316884424],[-77.12436349540351,38.81747244764246],[-77.12440750122458,38.81749825920321],[-77.12444310143937,38.81752060352648],[-77.12447721831188,38.81754198472709],[-77.12450985184212,38.817562402805],[-77.12454100203007,38.81758185776023],[-77.12457066887572,38.81760034959277],[-77.12459934682653,38.81762134551824],[-77.1246270358825,38.81764484553662],[-77.12465373604358,38.81767084964792],[-77.12467944730983,38.81769935785213],[-77.12470491135235,38.81772748079983],[-77.12473012817118,38.81775521849104],[-77.12475509776628,38.81778257092574],[-77.12477982013766,38.81780953810392],[-77.12480157582448,38.8178343864265],[-77.12482036482675,38.81785711589345],[-77.12483618714442,38.81787772650479],[-77.12484904277756,38.8178962182605],[-77.12486659566123,38.81791567312209],[-77.12488884579548,38.81793609108956],[-77.12491579318029,38.8179574721629],[-77.12494743781566,38.81797981634211],[-77.12498229635932,38.81800119740484],[-77.12502036881126,38.81802161535109],[-77.12506165517148,38.81804107018088],[-77.12510615543997,38.81805956189417],[-77.12514917236618,38.8180774757375],[-77.12519070595012,38.81809481171085],[-77.12523075619177,38.81811156981422],[-77.12526932309112,38.81812775004761],[-77.12531036222762,38.81814431552043],[-77.12535387360127,38.81816126623269],[-77.12539985721205,38.81817860218439],[-77.12544831305998,38.81819632337552],[-77.1255111078833,38.81821905271465],[-77.12558824168202,38.8182467902018],[-77.12567971445615,38.81827953583694],[-77.12578552620568,38.81831728962007],[-77.12588342679636,38.81835215407132],[-77.12597341622822,38.81838412919066],[-77.12605549450123,38.8184132149781],[-77.12612966161538,38.81843941143364],[-77.12620630096669,38.81846714884385],[-77.12628541255513,38.81849642720874],[-77.12636699638071,38.81852724652828],[-77.12645105244341,38.8185596068025],[-77.12653585017728,38.8185962047034],[-77.12662138958227,38.81863704023098],[-77.12670767065842,38.81868211338525],[-77.12679469340569,38.81873142416619],[-77.12687924391584,38.81877957919622],[-77.12696132218883,38.81882657847531],[-77.1270409282247,38.81887242200349],[-77.12711806202343,38.81891710978075],[-77.1271853068736,38.81895678943303],[-77.12724266277522,38.81899146096035],[-77.12729012972828,38.81902112436268],[-77.1273277077328,38.81904577964005],[-77.12736256627646,38.81907139800355],[-77.12739470535925,38.81909797945318],[-77.1274241249812,38.81912552398894],[-77.1274508251423,38.81915403161084],[-77.12747628918484,38.81918080565354],[-77.12750051710879,38.81920584611706],[-77.12752350891418,38.81922915300139],[-77.12754526460101,38.81925072630653],[-77.12756553694554,38.81927229960514],[-77.12758432594779,38.81929387289721],[-77.12760163160777,38.81931544618275],[-77.12761745392547,38.81933701946176],[-77.12763327624315,38.81936148200647],[-77.12764909856084,38.81938883381689],[-77.12766492087852,38.81941907489303],[-77.12768074319622,38.8194522052349],[-77.12770670168615,38.81952405155645],[-77.12774279634839,38.81963461385771],[-77.12778902718287,38.81978389213868],[-77.12784539418963,38.81997188639936],[-77.1279054695521,38.82018414946399],[-77.12796925327027,38.82042068133259],[-77.12805454545156,38.82075274937428],[-77.12813465944632,38.82107350663202],[-77.12751400000001,38.821564],[-77.127137,38.821844],[-77.12655599999999,38.822273],[-77.12593699999999,38.822747],[-77.12552599999999,38.823082],[-77.125209,38.823328],[-77.12486,38.823595],[-77.124568,38.823808],[-77.124234,38.824036],[-77.12325981298352,38.82470742852363],[-77.12045946356668,38.82328399509912],[-77.12038215857977,38.82345793131964],[-77.12028552734616,38.82364153066353],[-77.12020822235925,38.82375748814388],[-77.1201574909616,38.82381667477448],[-77.12010675956394,38.82384747598019],[-77.120063,38.823859],[-77.12004899999999,38.823862],[-77.12000399999999,38.823861],[-77.11993699999999,38.823852],[-77.119878,38.823835],[-77.11983600000001,38.823819],[-77.119062,38.823538],[-77.118351,38.823292],[-77.11806799999999,38.823197],[-77.11793900000001,38.823159],[-77.11783699999999,38.823145],[-77.117739,38.823158],[-77.117682,38.823191],[-77.11758,38.823209],[-77.117482,38.823196],[-77.117136,38.823104],[-77.116654,38.822979],[-77.11630100000001,38.822889],[-77.116179,38.822854],[-77.11607100000001,38.822814],[-77.11599099999999,38.822783],[-77.115855,38.822714],[-77.115821,38.822694],[-77.115793,38.822679],[-77.115734,38.822641],[-77.115651,38.82258],[-77.115585,38.822525],[-77.11552,38.822461],[-77.11541,38.822326],[-77.11532800000001,38.822197],[-77.11521999999999,38.821961],[-77.114913,38.82132],[-77.114859,38.821221],[-77.11478,38.821117],[-77.114712,38.821044],[-77.114577,38.820933],[-77.114446,38.820819],[-77.114328,38.820731],[-77.11400999999999,38.820487],[-77.11334600000001,38.819948],[-77.112668,38.819418],[-77.11260299999999,38.819369],[-77.112478,38.819266],[-77.11201800000001,38.818901],[-77.112309,38.818578],[-77.112494,38.818375],[-77.112517,38.818351],[-77.112836,38.818007],[-77.113321,38.817438],[-77.11305400000001,38.81727],[-77.11291900000001,38.817142],[-77.11239,38.816564],[-77.112225,38.816389],[-77.112149,38.816322],[-77.112076,38.816265],[-77.111969,38.816202],[-77.111844,38.81614],[-77.11170799999999,38.816081],[-77.11166299999999,38.816065],[-77.111569,38.81603],[-77.111411,38.815984],[-77.111304,38.81596],[-77.11127500000001,38.815954],[-77.11067,38.815857],[-77.11034100000001,38.815807],[-77.110026,38.815762],[-77.10983299999999,38.815729],[-77.109441,38.815673],[-77.10925899999999,38.815644],[-77.108958,38.815601],[-77.10892120843089,38.81559293609444],[-77.10893981129375,38.81542360707136]]]],"type":"MultiPolygon"} +},{ + "id": 1108725005, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":597262.505852, + "geom:bbox":"-77.0853843062,38.8317171909,-77.0773900321,38.8421803405", + "geom:latitude":38.836893, + "geom:longitude":-77.080807, + "iso:country":"US", + "lbl:latitude":38.836841, + "lbl:longitude":-77.080483, + "lbl:max_zoom":18.0, + "mps:latitude":38.836841, + "mps:longitude":-77.080483, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.836841, + "reversegeo:longitude":-77.080483, + "src:geom":"mz", + "wof:belongsto":[ + 420547829, + 102191575, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0d8626583b7104a752bbb0a402cc0c80", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108725005, + "neighbourhood_id":420547829, + "region_id":85688747 + } + ], + "wof:id":1108725005, + "wof:lastmodified":1566623909, + "wof:name":"Parkfairfax", + "wof:parent_id":420547829, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420547845 + ], + "wof:tags":[] +}, + "bbox": [ + -77.0853843062224, + 38.83171719085085, + -77.07739003210386, + 38.84218034045398 +], + "geometry": {"coordinates":[[[[-77.08482113132212,38.8362221137952],[-77.08425552762095,38.83613976375226],[-77.0839244678105,38.83611605093554],[-77.08375094680642,38.83613976365746],[-77.08365353150586,38.83619904552543],[-77.08363222190889,38.83629389653949],[-77.08361091231188,38.83639289712386],[-77.08358960271489,38.83649604727859],[-77.08356829311789,38.83660334700363],[-77.0835469835209,38.83671479629902],[-77.08352871815205,38.83682031731761],[-77.08351349701134,38.83691991005941],[-77.08350132009878,38.83701357452443],[-77.08349218741435,38.83710131071265],[-77.0834868600151,38.83719556767262],[-77.08348533790104,38.83729634540431],[-77.08348762107214,38.83740364390773],[-77.08349370952843,38.83751746318288],[-77.08350132009878,38.83764965913215],[-77.0835104527832,38.83780023175554],[-77.0835211075817,38.83796918105305],[-77.08353328449425,38.83815650702469],[-77.08354393929275,38.83835865233715],[-77.08355307197718,38.83857561699046],[-77.08356068254753,38.83880740098461],[-77.08356677100382,38.83905400431959],[-77.08356600994678,38.83926918912894],[-77.08355839937643,38.83945295541265],[-77.08354393929275,38.83960530317072],[-77.08352262969576,38.83972623240316],[-77.08350132009876,38.83983471294214],[-77.08348001050177,38.83993074478767],[-77.08345870090477,38.84001432793973],[-77.0834373913078,38.84008546239835],[-77.08340390479823,38.84017200913274],[-77.08335824137609,38.84027396814292],[-77.0833004010414,38.84039133942887],[-77.08323038379413,38.8405241229906],[-77.08316569394611,38.84064090129349],[-77.08310633149736,38.84074167433754],[-77.08305229644783,38.84082644212275],[-77.08300358879755,38.84089520464912],[-77.08294955374802,38.84096278155496],[-77.08289019129927,38.84102917284027],[-77.08282550145125,38.84109437850505],[-77.082755484204,38.84115839854928],[-77.08268470589971,38.8412218257609],[-77.08261316653835,38.8412846601399],[-77.08254086611998,38.84134690168626],[-77.08246780464458,38.84140855040001],[-77.08238637154179,38.84147197737902],[-77.08229656681158,38.8415371826233],[-77.08219839045401,38.84160416613285],[-77.08209184246905,38.84167292790767],[-77.08197996708485,38.84173694744964],[-77.08186276430138,38.84179622475876],[-77.08174023411867,38.84185075983503],[-77.0816123765367,38.84190055267846],[-77.08148299684066,38.84194560332886],[-77.08135209503057,38.84198591178624],[-77.0812196711064,38.84202147805058],[-77.08108572506815,38.84205230212191],[-77.08093960211734,38.84208016233359],[-77.08078130225395,38.84210505868561],[-77.080610825478,38.84212699117799],[-77.08042817178949,38.84214595981072],[-77.08024627915802,38.84216077905469],[-77.08006514758355,38.84217144890989],[-77.07988477706616,38.84217796937632],[-77.07970516760578,38.84218034045398],[-77.07953621294391,38.84217915491435],[-77.07937791308053,38.84217441275744],[-77.07923026801565,38.84216611398323],[-77.07909327774927,38.84215425859173],[-77.07896085382509,38.84214181042804],[-77.07883299624314,38.84212876949217],[-77.07870970500339,38.84211513578412],[-77.07859098010584,38.84210090930389],[-77.07843800764172,38.84207660570713],[-77.07825078761098,38.84204222499388],[-77.07802932001367,38.84199776716409],[-77.07777360484974,38.84194323221778],[-77.0775818184768,38.84188869722968],[-77.07745396089484,38.84183416219979],[-77.07739003210386,38.84177962712809],[-77.07739003210386,38.84172509201461],[-77.07739688161718,38.84148382859435],[-77.07741058064383,38.84105583686732],[-77.07743112918378,38.84044111683353],[-77.07745852723706,38.83963966849296],[-77.07748592529033,38.83867458778435],[-77.07751332334361,38.8375458747077],[-77.07754072139689,38.83625352926299],[-77.07756811945016,38.83479755145024],[-77.07771576451505,38.83370378954302],[-77.07798365659153,38.83297224354135],[-77.07837179567963,38.83260291344521],[-77.07888018177931,38.83259579925462],[-77.07927440932369,38.83254540683409],[-77.07955447831276,38.83245173618361],[-77.07972038874649,38.8323147873032],[-77.0797721406249,38.83213456019284],[-77.07982084827518,38.83200116842573],[-77.0798665116973,38.83191461200187],[-77.07990913089129,38.83187489092127],[-77.07994870585713,38.83188200518391],[-77.08000502407776,38.83189267657362],[-77.08007808555317,38.83190690509037],[-77.08016789028335,38.83192469073418],[-77.08027443826832,38.83194603350506],[-77.08036500405554,38.83196619056201],[-77.08043958764502,38.83198516190504],[-77.08049818903675,38.83200294753416],[-77.08054080823074,38.83201954744936],[-77.08058647165286,38.83203674021394],[-77.08063517930313,38.83205452582789],[-77.08068693118155,38.83207290429121],[-77.08074172728811,38.8320918756039],[-77.08080185079392,38.83210669694159],[-77.08086730169896,38.83211736830427],[-77.08093808000326,38.83212388969195],[-77.08101418570681,38.83212626110462],[-77.0810803976689,38.83212744681095],[-77.08113671588951,38.83212744681095],[-77.08118314036868,38.83212626110462],[-77.0812196711064,38.83212388969195],[-77.08126000712927,38.83211618259644],[-77.08130414843734,38.83210313981809],[-77.08135209503057,38.8320847613569],[-77.08140384690898,38.83206104721287],[-77.0814814747266,38.83201243309026],[-77.08158497848342,38.83193891898904],[-77.08171435817945,38.83184050490924],[-77.08186961381469,38.83171719085085],[-77.08216185971631,38.83175987490127],[-77.08259109588433,38.83196855706052],[-77.08315732231873,38.83234323732859],[-77.0838605390195,38.83288391570547],[-77.08442524333984,38.83330898816811],[-77.0848514352797,38.8336184547165],[-77.08517640663386,38.83383187903063],[-77.08534716601783,38.83392146125546],[-77.0853583056013,38.8340677708807],[-77.08538430622239,38.8346097712212],[-77.0853503063929,38.8347947711094],[-77.08526930574909,38.8350617709136],[-77.0851643058741,38.8352807707454],[-77.08504530604181,38.8355377712566],[-77.0849763059766,38.835725770846],[-77.0848223055666,38.8362107709379],[-77.08482113132212,38.8362221137952]]]],"type":"MultiPolygon"} +},{ + "id": 1108725007, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":1155165.3687, + "geom:bbox":"-77.085358,38.833871,-77.085343,38.834068", + "geom:latitude":38.833953, + "geom:longitude":-77.085349, + "iso:country":"US", + "lbl:latitude":38.826355, + "lbl:longitude":-77.069907, + "lbl:max_zoom":18.0, + "mps:latitude":38.826355, + "mps:longitude":-77.069907, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.826355, + "reversegeo:longitude":-77.069907, + "src:geom":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 102080641, + 101728581, + 420547829, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ea2a43181476ce8ec92765843b4d1c68", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108725007, + "neighbourhood_id":420547829, + "region_id":85688747 + } + ], + "wof:id":1108725007, + "wof:lastmodified":1613774418, + "wof:name":"Braddock Heights", + "wof:parent_id":420547829, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420547831 + ], + "wof:tags":[] +}, + "bbox": [ + -77.085358, + 38.833871, + -77.085343, + 38.834068 +], + "geometry": {"coordinates":[[[-77.08534299999999,38.833871],[-77.085347,38.833921],[-77.085358,38.834068],[-77.08534299999999,38.833871]]],"type":"Polygon"} +},{ + "id": 1108725009, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000114, + "geom:area_square_m":1100755.357821, + "geom:bbox":"-77.089551,38.813736,-77.071551,38.8267167526", + "geom:latitude":38.819054, + "geom:longitude":-77.082465, + "iso:country":"US", + "lbl:latitude":38.819598, + "lbl:longitude":-77.089153, + "lbl:max_zoom":18.0, + "mps:latitude":38.81914, + "mps:longitude":-77.082599, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Chapel Hill" + ], + "name:deu_x_preferred":[ + "Chapel Hill" + ], + "name:eng_x_variant":[ + "Chapel Hl" + ], + "name:fra_x_preferred":[ + "Chapel Hill" + ], + "name:ita_x_preferred":[ + "Chapel Hill" + ], + "name:jpn_x_preferred":[ + "\u30c1\u30e3\u30da\u30eb\u30d2\u30eb" + ], + "name:kor_x_preferred":[ + "\ucc44\ud50c\ud790" + ], + "name:nld_x_preferred":[ + "Chapel Hill" + ], + "name:pol_x_preferred":[ + "Chapel Hill" + ], + "name:por_x_preferred":[ + "Chapel Hill" + ], + "name:srp_x_preferred":[ + "\u0427\u0430\u043f\u0435\u043b \u0425\u0438\u043b" + ], + "name:swe_x_preferred":[ + "Chapel Hill" + ], + "name:ukr_x_preferred":[ + "\u0427\u0430\u043f\u0435\u043b-\u0413\u0456\u043b\u043b" + ], + "name:vol_x_preferred":[ + "Chapel Hill" + ], + "name:wuu_x_preferred":[ + "\u6559\u5802\u5c71" + ], + "name:zho_x_preferred":[ + "\u6559\u5802\u5c71" + ], + "reversegeo:latitude":38.81914, + "reversegeo:longitude":-77.082599, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108724991, + 102191575, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e7f396769e916c8057bcad378bce6cf0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "microhood_id":1108725009, + "neighbourhood_id":1108724991, + "region_id":85688747 + } + ], + "wof:id":1108725009, + "wof:lastmodified":1566623909, + "wof:name":"Chapel Hill", + "wof:parent_id":1108724991, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85810399 + ], + "wof:tags":[] +}, + "bbox": [ + -77.089551, + 38.813736, + -77.071551, + 38.8267167526492 +], + "geometry": {"coordinates":[[[[-77.071551,38.814045],[-77.071697,38.813953],[-77.071761,38.81392],[-77.07181,38.813902],[-77.07186299999999,38.813891],[-77.072412,38.813845],[-77.072998,38.813798],[-77.073055,38.813794],[-77.073357,38.813773],[-77.0736,38.813755],[-77.074088,38.813736],[-77.07434000000001,38.813757],[-77.07453599999999,38.813782],[-77.074781,38.813822],[-77.07562799999999,38.813974],[-77.07623,38.814062],[-77.07639899999999,38.814077],[-77.076482,38.814084],[-77.07655,38.814091],[-77.07658000000001,38.814094],[-77.07660799999999,38.814097],[-77.076718,38.814105],[-77.07680999999999,38.814113],[-77.07693,38.814123],[-77.076973,38.814122],[-77.077015,38.814125],[-77.078227,38.814204],[-77.078259,38.814205],[-77.078445,38.814215],[-77.07862,38.814213],[-77.078863,38.814217],[-77.07926999999999,38.814213],[-77.08016499999999,38.814188],[-77.08058699999999,38.814174],[-77.080822,38.814168],[-77.08107800000001,38.814195],[-77.081281,38.814225],[-77.08146600000001,38.814258],[-77.081641,38.814303],[-77.081892,38.814378],[-77.08229300000001,38.814507],[-77.08249499999999,38.814585],[-77.082596,38.814624],[-77.082708,38.81467],[-77.082927,38.814772],[-77.08309,38.814851],[-77.08335099999999,38.814992],[-77.08344099999999,38.815046],[-77.083631,38.815166],[-77.083923,38.815333],[-77.084215,38.815477],[-77.084479,38.815592],[-77.084727,38.815689],[-77.08556299999999,38.816026],[-77.085712,38.816085],[-77.086715,38.816484],[-77.08712300000001,38.816642],[-77.08723500000001,38.81668],[-77.087855,38.816906],[-77.08834299999999,38.817083],[-77.08881700000001,38.81725],[-77.088893,38.817273],[-77.088915,38.81728],[-77.089012,38.817307],[-77.08910299999999,38.817331],[-77.089173,38.817346],[-77.089232,38.817362],[-77.089488,38.817407],[-77.089551,38.817416],[-77.08944,38.818431],[-77.08940200000001,38.818742],[-77.089355,38.819169],[-77.089253,38.820031],[-77.08923299999999,38.820201],[-77.08915,38.820998],[-77.08905,38.821843],[-77.089029,38.822],[-77.089012,38.822128],[-77.08897399999999,38.822462],[-77.088767,38.824238],[-77.088707,38.824788],[-77.088703,38.824845],[-77.08868699999999,38.824954],[-77.08868200000001,38.824995],[-77.08859727361012,38.82565722925425],[-77.08744588676103,38.82555928133431],[-77.08735643242795,38.82555758157459],[-77.08731552343419,38.82555715663454],[-77.08729620783603,38.82556446061873],[-77.08728879622491,38.82557967844738],[-77.08728006897289,38.82568166392511],[-77.08717556806721,38.8267167526492],[-77.086831,38.82646],[-77.08638500000001,38.826155],[-77.085089,38.825277],[-77.08468999999999,38.825011],[-77.084531,38.824906],[-77.083602,38.824294],[-77.083332,38.824124],[-77.08224300000001,38.823426],[-77.081602,38.823011],[-77.081225,38.82274],[-77.080844,38.822455],[-77.08033,38.822013],[-77.08009199999999,38.82179],[-77.079937,38.821656],[-77.07982699999999,38.821557],[-77.079627,38.821375],[-77.079564,38.821318],[-77.079223,38.820994],[-77.07881,38.820606],[-77.07850999999999,38.820329],[-77.07839300000001,38.820222],[-77.078315,38.820151],[-77.077896,38.819766],[-77.077455,38.819362],[-77.076803,38.818767],[-77.076793,38.818759],[-77.0766,38.818581],[-77.07581,38.81787],[-77.075327,38.817426],[-77.074752,38.816907],[-77.074714,38.816875],[-77.07381700000001,38.816076],[-77.073245,38.815552],[-77.072372,38.814769],[-77.07213900000001,38.814558],[-77.071748,38.814202],[-77.071551,38.814045]]]],"type":"MultiPolygon"} +},{ + "id": 1108725011, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":258156.636477, + "geom:bbox":"-77.1041153458,38.809863296,-77.0948933759,38.8149944123", + "geom:latitude":38.812294, + "geom:longitude":-77.099727, + "iso:country":"US", + "lbl:latitude":38.813008, + "lbl:longitude":-77.101718, + "lbl:max_zoom":18.0, + "mps:latitude":38.813008, + "mps:longitude":-77.101718, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.813008, + "reversegeo:longitude":-77.101718, + "src:geom":"mz", + "wof:belongsto":[ + 85875847, + 102191575, + 1108724981, + 85633793, + 101728581, + 102080641, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"351f3559eaa76b99c88d850170a83453", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102080641, + "locality_id":101728581, + "macrohood_id":1108724981, + "microhood_id":1108725011, + "neighbourhood_id":85875847, + "region_id":85688747 + } + ], + "wof:id":1108725011, + "wof:lastmodified":1566623908, + "wof:name":"Dalecrest", + "wof:parent_id":85875847, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420547825 + ], + "wof:tags":[] +}, + "bbox": [ + -77.10411534583929, + 38.80986329602753, + -77.09489337587532, + 38.81499441233135 +], + "geometry": {"coordinates":[[[[-77.10411534583929,38.81162741156461],[-77.10403369178619,38.81175906171615],[-77.10395256680897,38.8118942832971],[-77.10390459725724,38.81198003348841],[-77.10387073639718,38.81204709445184],[-77.10385098422881,38.81209546618741],[-77.1038333483642,38.81214328821351],[-77.10381782880334,38.81219056053016],[-77.10380442554623,38.81223728313736],[-77.10379313859289,38.81228345603509],[-77.1037832625087,38.81232688052597],[-77.1037747972937,38.81236755660999],[-77.10376774294784,38.81240548428715],[-77.10376209947117,38.81244066355745],[-77.10375927773282,38.81247859118188],[-77.10375927773282,38.81251926716043],[-77.10376209947117,38.81256269149311],[-77.10376774294784,38.81260886417991],[-77.1037747972937,38.81265283814542],[-77.1037832625087,38.81269461338963],[-77.10379313859289,38.81273418991255],[-77.10380442554623,38.81277156771419],[-77.10381006902291,38.8128127931973],[-77.10381006902291,38.81285786636189],[-77.10380442554623,38.81290678720796],[-77.10379313859289,38.81295955573552],[-77.10375786686366,38.81307993308599],[-77.10369861035856,38.81326791925936],[-77.1036153690776,38.81352351425566],[-77.10350814302076,38.81384671807487],[-77.10341855282854,38.81411385563225],[-77.10334659850092,38.81432492692779],[-77.10329228003792,38.81447993196149],[-77.10325559743953,38.81457887073336],[-77.10320339528027,38.81466351830803],[-77.10313567356017,38.81473387468549],[-77.10305243227921,38.81478993986576],[-77.10295367143738,38.81483171384882],[-77.10286055407224,38.81486744159017],[-77.10277308018377,38.81489712308978],[-77.10269124977196,38.81492075834768],[-77.10261506283683,38.81493834736386],[-77.10253746503254,38.8149537377514],[-77.10245845635907,38.81496692951027],[-77.10237803681645,38.81497792264049],[-77.10229620640466,38.81498671714207],[-77.10221014338535,38.81499221370569],[-77.10211984775854,38.81499441233135],[-77.10202531952422,38.81499331301906],[-77.10192655868241,38.81498891576882],[-77.10183061957892,38.81498177023504],[-77.10173750221377,38.81497187641771],[-77.10164720658696,38.81495923431685],[-77.10155973269848,38.81494384393243],[-77.10147437511375,38.8149268045725],[-77.10139113383281,38.81490811623704],[-77.10131000885559,38.81488777892606],[-77.10123100018212,38.81486579263954],[-77.10115269694325,38.81484215737139],[-77.10107509913897,38.81481687312161],[-77.10099820676925,38.81478993989019],[-77.10092201983414,38.81476135767714],[-77.10084583289901,38.81473112647451],[-77.10076964596389,38.8146992462823],[-77.10069345902876,38.81466571710052],[-77.10061727209364,38.81463053892916],[-77.10041057976039,38.81447883117731],[-77.10007338202902,38.81421059384499],[-77.09960567889952,38.81382582693217],[-77.09900747037189,38.81332453043886],[-77.09855317049949,38.81294471034261],[-77.09824277928233,38.81268636664341],[-77.09801986195365,38.81251102207851],[-77.09765585770806,38.81276167289388],[-77.09741318821101,38.81292877343747],[-77.09721637196193,38.81305629752566],[-77.09706540896087,38.81314424515845],[-77.09696029920778,38.81319261633587],[-77.09690104270268,38.81320141105788],[-77.09684178619759,38.81320360973729],[-77.09678252969249,38.81319921237412],[-77.09672327318739,38.81318821896834],[-77.09666401668231,38.81317062951997],[-77.09659911670055,38.81314149695969],[-77.0965285732421,38.81310082128749],[-77.09645238630698,38.8130486025034],[-77.09637055589518,38.81298484060738],[-77.09628237657212,38.81291887995589],[-77.09618784833781,38.81285072054888],[-77.09608697119222,38.81278036238638],[-77.09597974513539,38.81270780546838],[-77.09586193755979,38.81262645363608],[-77.0957335484654,38.8125363068895],[-77.09559457785227,38.81243736522863],[-77.09544502572037,38.81232962865349],[-77.09532157466808,38.81224003136437],[-77.09522422469543,38.81216857336128],[-77.09515297580239,38.81211525464423],[-77.095107827989,38.81208007521322],[-77.0950669127831,38.81204599512517],[-77.09503023018469,38.81201301438008],[-77.09499778019381,38.81198113297798],[-77.09496956281043,38.81195035091883],[-77.09494628346914,38.81191627075884],[-77.09492794216996,38.81187889249801],[-77.09491453891285,38.81183821613634],[-77.09490607369783,38.81179424167382],[-77.09489972478657,38.81174971750131],[-77.09489549217906,38.8117046436188],[-77.09489337587532,38.81165902002629],[-77.09489337587532,38.81161284672378],[-77.09489619761365,38.81156557402259],[-77.09490184109033,38.81151720192271],[-77.09491030630534,38.81146773042414],[-77.0949215932587,38.81141715952689],[-77.09494134542706,38.81135394579761],[-77.09496956281045,38.81127808923632],[-77.09500624540884,38.81118958984301],[-77.09505139322223,38.81108844761766],[-77.09510994429274,38.81094113099131],[-77.09518189862037,38.81074763996394],[-77.09529194641554,38.81043651457819],[-77.0954898208165,38.80986329602753],[-77.09571699999999,38.809911],[-77.096259,38.810021],[-77.09699999999999,38.810172],[-77.097346,38.810243],[-77.09754599999999,38.810285],[-77.09768200000001,38.810308],[-77.09790599999999,38.810357],[-77.09813,38.810403],[-77.09937499999999,38.810626],[-77.099564,38.810659],[-77.100326,38.81079],[-77.100627,38.810842],[-77.10107499999999,38.810918],[-77.101403,38.810979],[-77.102082,38.811123],[-77.102459,38.811216],[-77.102812,38.811304],[-77.103458,38.81146],[-77.103475,38.811465],[-77.10408700000001,38.81162],[-77.10411534583929,38.81162741156461]]]],"type":"MultiPolygon"} +},{ + "id": 1108725077, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000064, + "geom:area_square_m":618943.145378, + "geom:bbox":"-77.1050203128,38.834775,-77.0880341505,38.8432497645", + "geom:latitude":38.838708, + "geom:longitude":-77.097327, + "iso:country":"US", + "lbl:latitude":38.837693, + "lbl:longitude":-77.097325, + "lbl:max_zoom":18.0, + "mps:latitude":38.837693, + "mps:longitude":-77.097325, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "N Fairlington" + ], + "reversegeo:latitude":38.837693, + "reversegeo:longitude":-77.097325, + "src:geom":"mz", + "wof:belongsto":[ + 85875983, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"51e6c39fcf0a5c843b48f79c52f09dad", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108725077, + "neighbourhood_id":85875983, + "region_id":85688747 + } + ], + "wof:id":1108725077, + "wof:lastmodified":1566623909, + "wof:name":"North Fairlington", + "wof:parent_id":85875983, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.1050203128498, + 38.834775, + -77.08803415053076, + 38.84324976448299 +], + "geometry": {"coordinates":[[[[-77.08803415053076,38.8382923064129],[-77.088048,38.838285],[-77.08837,38.838114],[-77.088526,38.838033],[-77.08934499999999,38.837621],[-77.08953200000001,38.837529],[-77.089673,38.83746],[-77.09012300000001,38.837241],[-77.09014999999999,38.837227],[-77.090919,38.836877],[-77.09119800000001,38.836764],[-77.09160799999999,38.836589],[-77.091857,38.836491],[-77.09210299999999,38.836401],[-77.09254900000001,38.836237],[-77.092608,38.836216],[-77.09308799999999,38.83605],[-77.093537,38.835911],[-77.094151,38.83574],[-77.09466999999999,38.835597],[-77.09487,38.835541],[-77.095473,38.835373],[-77.09562099999999,38.835333],[-77.095674,38.835315],[-77.09572900000001,38.835303],[-77.096097,38.835201],[-77.097094,38.834925],[-77.097365,38.834852],[-77.097662,38.834775],[-77.09783,38.834874],[-77.09793000000001,38.834932],[-77.098033,38.834989],[-77.09926382635132,38.83559081288448],[-77.09948331017441,38.8357047708248],[-77.1006753109625,38.8363247709941],[-77.10071845074638,38.83634766117516],[-77.100323,38.836867],[-77.100302,38.836861],[-77.100236,38.836855],[-77.10019699999999,38.83686],[-77.100162,38.836864],[-77.100127,38.836873],[-77.100088,38.83689],[-77.100061,38.836907],[-77.10005,38.836914],[-77.100024,38.83694],[-77.100005,38.836977],[-77.10000100000001,38.837003],[-77.099997,38.837026],[-77.099997,38.837048],[-77.09999999999999,38.837068],[-77.100003,38.837091],[-77.10000492494815,38.83709581237039],[-77.1000053108927,38.8370987708969],[-77.1000153105867,38.8371237706807],[-77.10004231085212,38.8371667705191],[-77.10006631047349,38.8371837711184],[-77.10007731103239,38.8371927712344],[-77.1001123105042,38.8372097705861],[-77.1001333106634,38.8372147708424],[-77.10019231105269,38.8372227712868],[-77.10024831033989,38.8372267708498],[-77.1003403105727,38.8372127708797],[-77.1004043111776,38.8371777710696],[-77.1007193113462,38.8373967708696],[-77.1008953114431,38.8375217705499],[-77.10093431058,38.8375487709705],[-77.1011493106831,38.8376887709848],[-77.10131531149899,38.8378067712181],[-77.1015263114669,38.8379487706937],[-77.1017103119393,38.8380707705829],[-77.1017723119183,38.8381127706762],[-77.1022423116751,38.8384317714674],[-77.1022893115463,38.8384637714426],[-77.102327311371,38.8385067710702],[-77.10233373333701,38.83851337634822],[-77.102352,38.838534],[-77.10240899999999,38.838607],[-77.102465,38.838681],[-77.10259000000001,38.838852],[-77.102647,38.83896],[-77.10271400000001,38.839082],[-77.102773,38.839251],[-77.102802,38.839363],[-77.102802,38.839513],[-77.102884,38.839543],[-77.10288595663792,38.83954374538587],[-77.1028863123868,38.8395507711901],[-77.1029073114878,38.839558771069],[-77.1029823121785,38.8395907715894],[-77.1031253123532,38.839656771243],[-77.10322231194429,38.8397117714495],[-77.1034503120011,38.8398297711351],[-77.10357131170571,38.8398887711981],[-77.10394031196169,38.8400607714852],[-77.1039583125856,38.8400677714974],[-77.1040153124855,38.840092771328],[-77.1040443117537,38.8401047717416],[-77.10437831229372,38.840251771193],[-77.1044233119967,38.8402747712875],[-77.1044283128919,38.8402757713337],[-77.1050203128498,38.8407367717854],[-77.10408132720227,38.84141360597084],[-77.10359471713984,38.8418147786257],[-77.10327308554038,38.84207637190928],[-77.10300783431632,38.84228851115927],[-77.10279896346765,38.84245119637566],[-77.10261027363185,38.8425944693377],[-77.10244176480896,38.84271833004537],[-77.10229343699891,38.84282277849869],[-77.10216529020175,38.84290781469763],[-77.10204525796328,38.84298345256862],[-77.10193334028354,38.84304969211168],[-77.10182953716247,38.84310653332678],[-77.10173384860012,38.84315397621391],[-77.10164627459646,38.84319202077311],[-77.10156681515151,38.84322066700435],[-77.10149547026526,38.84323991490764],[-77.10143223993771,38.84324976448299],[-77.10135905083357,38.84324795852049],[-77.10127590295285,38.84323449702013],[-77.10118279629553,38.84320937998194],[-77.10107973086164,38.84317260740592],[-77.10096670665115,38.84312417929203],[-77.10084372366407,38.84306409564032],[-77.1007107819004,38.84299235645074],[-77.10056788136012,38.84290896172334],[-77.10041502204328,38.84281391145808],[-77.10025220394985,38.84270720565499],[-77.10007942707983,38.84258884431404],[-77.0998966914332,38.84245882743527],[-77.09970399701001,38.84231715501863],[-77.09950134381022,38.84216382706417],[-77.09928873183384,38.84199884357185],[-77.09906616108087,38.84182220454169],[-77.09885660523699,38.84165660545091],[-77.09866006430218,38.84150204629952],[-77.09847653827649,38.84135852708752],[-77.09830602715986,38.8412260478149],[-77.09814853095233,38.84110460848166],[-77.09800404965389,38.84099420908782],[-77.09787258326452,38.84089484963336],[-77.09775413178426,38.84080653011827],[-77.09764869521307,38.84072925054258],[-77.09755627355096,38.84066301090627],[-77.09747686679796,38.84060781120935],[-77.09741047495402,38.84056365145181],[-77.09735709801919,38.84053053163365],[-77.09731673599345,38.84050845175489],[-77.09728938887679,38.8404974118155],[-77.0972750566692,38.8404974118155],[-77.09726072446163,38.84049778118859],[-77.09724639225405,38.84049851993478],[-77.09723206004648,38.84049962805405],[-77.09721772783891,38.84050110554642],[-77.09720339563134,38.84050295241187],[-77.09718906342374,38.84050516865042],[-77.09717473121617,38.84050775426207],[-77.0971603990086,38.8405107092468],[-77.09714606680103,38.84051403360463],[-77.09713173459343,38.84051772733554],[-77.09711740238586,38.84052179043955],[-77.09710307017829,38.84052622291666],[-77.09708873797072,38.84053102476685],[-77.09707440576312,38.84053619599013],[-77.09706007355555,38.84054173658651],[-77.09704574134797,38.84054764655598],[-77.09703156721622,38.84055343340081],[-77.09701755116026,38.840559097121],[-77.09700369318014,38.84056463771656],[-77.09698999327586,38.84057005518748],[-77.09697645144736,38.84057534953376],[-77.0969630676947,38.84058052075542],[-77.09694984201785,38.84058556885243],[-77.09693677441683,38.84059049382481],[-77.09692386489162,38.84059529567254],[-77.09691111344223,38.84059997439564],[-77.09689852006866,38.84060452999411],[-77.0968860847709,38.84060896246794],[-77.09687380754897,38.84061327181713],[-77.09686168840287,38.84061745804168],[-77.09684972733257,38.84062152114161],[-77.0968379243381,38.84062546111689],[-77.09682612134363,38.84062919588511],[-77.09681431834915,38.84063272544626],[-77.09680251535468,38.84063604980034],[-77.09679071236019,38.84063916894735],[-77.09677890936572,38.84064208288729],[-77.09676710637125,38.84064479162018],[-77.09675530337677,38.84064729514599],[-77.0967435003823,38.84064959346473],[-77.09673169738782,38.84065168657641],[-77.09671989439335,38.84065357448102],[-77.09670809139888,38.84065525717857],[-77.09669628840439,38.84065673466905],[-77.09668448540992,38.84065800695245],[-77.09667268241543,38.8406590740288],[-77.09666087942097,38.84065993589807],[-77.09664907642649,38.84066059256028],[-77.09663722074008,38.84066124922248],[-77.09662531236172,38.84066190588467],[-77.09661335129142,38.84066256254687],[-77.09660133752919,38.84066321920905],[-77.09658927107502,38.84066387587123],[-77.0965771519289,38.8406645325334],[-77.09656498009085,38.84066518919556],[-77.09655275556085,38.84066584585773],[-77.09654047833891,38.84066650251988],[-77.09652814842505,38.84066715918203],[-77.09651576581923,38.84066781584417],[-77.09650333052149,38.84066847250629],[-77.09649084253179,38.84066912916843],[-77.09647830185017,38.84066978583055],[-77.0964657084766,38.84067044249267],[-77.09645306241109,38.84067109915478],[-77.09644025826977,38.84067167373412],[-77.09642729605261,38.8406721662307],[-77.09641417575965,38.84067257664452],[-77.09640089739086,38.84067290497558],[-77.09638746094626,38.84067315122387],[-77.09637386642585,38.8406733153894],[-77.0963601138296,38.84067339747216],[-77.09634620315754,38.84067339747216],[-77.09633213440966,38.8406733153894],[-77.09631790758596,38.84067315122387],[-77.09630352268644,38.84067290497558],[-77.09628897971112,38.84067257664452],[-77.09627427865996,38.8406721662307],[-77.09625941953297,38.84067167373412],[-77.09624440233019,38.84067109915478],[-77.09622922705158,38.84067044249267],[-77.0962139463891,38.84066892396],[-77.09619856034271,38.84066654355679],[-77.09618306891247,38.84066330128302],[-77.09616747209834,38.84065919713869],[-77.09615176990033,38.84065423112381],[-77.09613596231846,38.84064840323838],[-77.09612004935269,38.8406417134824],[-77.09610403100302,38.84063416185586],[-77.09608790726951,38.84062574835877],[-77.0960716781521,38.84061647299112],[-77.09605534365082,38.84060633575292],[-77.09603890376566,38.84059533664417],[-77.09602235849661,38.84058347566486],[-77.09600570784369,38.840570752815],[-77.09598895180689,38.84055716809459],[-77.09597209038621,38.84054272150362],[-77.0959500124635,38.84052421175652],[-77.09592271803878,38.84050163885328],[-77.09589020711202,38.84047500279391],[-77.09585247968326,38.8404443035784],[-77.09580953575247,38.84040954120675],[-77.09576137531964,38.84037071567897],[-77.09570799838481,38.84032782699506],[-77.09564940494795,38.84028087515501],[-77.09558559500907,38.84022986015882],[-77.09551656856817,38.8401747820065],[-77.09544232562524,38.84011564069804],[-77.09536286618028,38.84005243623345],[-77.0952781902333,38.83998516861271],[-77.09518829778432,38.83991383783585],[-77.09509318883329,38.83983844390285],[-77.09499286338026,38.83975898681371],[-77.09489754366147,38.83968683519113],[-77.09480722967696,38.83962198903512],[-77.09472192142671,38.83956444834567],[-77.09464161891071,38.83951421312278],[-77.094566322129,38.83947128336646],[-77.09449603108155,38.8394356590767],[-77.09443074576836,38.8394073402535],[-77.09437046618942,38.83938632689686],[-77.09431519234477,38.83937261900679],[-77.09426492423435,38.83936621658327],[-77.09421966185823,38.83936711962632],[-77.09417940521635,38.83937532813594],[-77.09414415430875,38.83939084211211],[-77.0941139091354,38.83941366155485],[-77.09408866969632,38.83944378646415],[-77.09406843599152,38.83948121684001],[-77.09403713697938,38.83951400946114],[-77.09399477265991,38.83954216432754],[-77.09394134303314,38.8395656814392],[-77.09387684809904,38.83958456079612],[-77.09380128785762,38.83959880239831],[-77.09371466230888,38.83960840624577],[-77.09361697145282,38.83961337233849],[-77.09350821528943,38.83961370067648],[-77.09338839381874,38.83960939125974],[-77.0932575070407,38.83960044408825],[-77.09311555495536,38.83958685916204],[-77.0929625375627,38.83956863648109],[-77.0927984548627,38.83954577604541],[-77.09262330685542,38.83951827785499],[-77.09243709354078,38.83948614190983],[-77.09223981491883,38.83944936820994],[-77.09205455005912,38.83941542641497],[-77.09188129896162,38.83938431652493],[-77.09172006162639,38.8393560385398],[-77.09157083805339,38.8393305924596],[-77.09143362824261,38.83930797828432],[-77.09130843219405,38.83928819601397],[-77.09119524990774,38.83927124564853],[-77.09109408138367,38.83925712718802],[-77.09100492662182,38.83924584063243],[-77.09092778562223,38.83923738598176],[-77.09086265838485,38.83923176323601],[-77.09080954490969,38.83922897239518],[-77.09076844519679,38.83922901345927],[-77.09073935924611,38.83923188642829],[-77.09072228705767,38.83923759130222],[-77.09071722863149,38.83924612808109],[-77.09070663755162,38.83925392610035],[-77.09069051381809,38.83926098536003],[-77.0906688574309,38.83926730586013],[-77.09064166839006,38.83927288760064],[-77.09060894669555,38.83927773058156],[-77.09057069234738,38.8392818348029],[-77.09052690534556,38.83928520026464],[-77.09047758569008,38.8392878269668],[-77.09042273338093,38.83928971490936],[-77.09036234841813,38.83929086409235],[-77.09029643080166,38.83929127451574],[-77.09022498053152,38.83929094617955],[-77.09014799760773,38.83928987908376],[-77.09006548203028,38.83928807322839],[-77.08997743379918,38.83928552861344],[-77.0898838529144,38.83928224523889],[-77.08979612083493,38.8392783462301],[-77.08971423756076,38.83927383158708],[-77.08963820309188,38.83926870130981],[-77.08956801742831,38.83926295539829],[-77.08950368057002,38.83925659385254],[-77.08944519251705,38.83924961667253],[-77.08939255326936,38.8392420238583],[-77.08934576282697,38.83923381540981],[-77.08930482118988,38.83922499132709],[-77.08926972835809,38.83921555161012],[-77.08924048433161,38.83920549625891],[-77.08921708911041,38.83919482527347],[-77.08919954269452,38.83918353865377],[-77.08918784508393,38.83917163639984],[-77.08918199627863,38.83915911851166],[-77.08918199627863,38.83914598498924],[-77.08918178551087,38.83913293354927],[-77.08918136397534,38.83911996419173],[-77.08918073167207,38.83910707691664],[-77.08917988860104,38.83909427172399],[-77.08917883476224,38.83908154861378],[-77.0891775701557,38.83906890758603],[-77.08917609478138,38.8390563486407],[-77.08917440863932,38.83904387177783],[-77.08917251172949,38.83903147699739],[-77.08917040405191,38.83901916429939],[-77.08916808560656,38.83900693368385],[-77.08916555639347,38.83899478515074],[-77.0891628164126,38.83898271870008],[-77.08915986566399,38.83897073433185],[-77.0891567041476,38.83895883204607],[-77.08915333186347,38.83894701184274],[-77.08914964342769,38.83893547893504],[-77.08914563884028,38.838924233323],[-77.08914131810123,38.83891327500659],[-77.08913668121055,38.83890260398582],[-77.08913172816823,38.83889222026069],[-77.08912645897426,38.83888212383121],[-77.08912087362866,38.83887231469737],[-77.08911497213141,38.83886279285917],[-77.08910875448254,38.83885355831662],[-77.08910222068202,38.8388446110697],[-77.08909537072988,38.83883595111843],[-77.08908820462608,38.8388275784628],[-77.08908072237065,38.83881949310282],[-77.0890729239636,38.83881169503847],[-77.0890648094049,38.83880418426977],[-77.08905637869455,38.83879696079671],[-77.08904810606003,38.83878977836548],[-77.08903999150134,38.83878263697606],[-77.08903203501845,38.83877553662848],[-77.08902423661141,38.83876847732272],[-77.08901659628016,38.83876145905877],[-77.08900911402473,38.83875448183667],[-77.08900178984513,38.83874754565637],[-77.08899462374131,38.83874065051791],[-77.08898761571335,38.83873379642127],[-77.08898076576119,38.83872698336646],[-77.08897407388487,38.83872021135347],[-77.08896754008435,38.8387134803823],[-77.08896116435966,38.83870679045295],[-77.0889549467108,38.83870014156544],[-77.08894888713773,38.83869353371974],[-77.08894298564049,38.83868696691587],[-77.08893692606742,38.83868023594088],[-77.08893070841856,38.83867334079478],[-77.08892433269386,38.83866628147757],[-77.08891779889335,38.83865905798925],[-77.08891110701703,38.8386516703298],[-77.08890425706487,38.83864411849925],[-77.0888972490369,38.83863640249757],[-77.08889008293309,38.83862852232478],[-77.08888275875348,38.83862047798087],[-77.08887527649806,38.83861226946586],[-77.08886763616681,38.83860389677972],[-77.08885983775977,38.83859535992248],[-77.08885188127688,38.83858665889412],[-77.08884376671818,38.83857779369463],[-77.08883549408365,38.83856876432404],[-77.08882706337332,38.83855957078234],[-77.08881884343073,38.83855078766638],[-77.08881083425591,38.83854241497617],[-77.08880303584884,38.83853445271171],[-77.08879544820954,38.83852690087302],[-77.08878807133799,38.83851975946007],[-77.0887809052342,38.83851302847286],[-77.08877394989817,38.83850670791141],[-77.0887672053299,38.83850079777571],[-77.08876067152939,38.83849529806575],[-77.08875434849664,38.83849020878156],[-77.08874823623164,38.83848552992311],[-77.08874233473439,38.83848126149041],[-77.08873664400491,38.83847740348347],[-77.0887311640432,38.83847395590228],[-77.08872589484923,38.83847091874684],[-77.08872083642304,38.83846829201715],[-77.08871098303032,38.83846459817543],[-77.08869633467111,38.83845983722168],[-77.08867689134539,38.8384540091559],[-77.08865265305317,38.8384471139781],[-77.08862361979443,38.83843915168826],[-77.08858979156919,38.83843012228641],[-77.08855116837745,38.83842002577252],[-77.08850775021919,38.8384088621466],[-77.08845953709444,38.83839663140866],[-77.08840652900318,38.83838333355869],[-77.08834872594541,38.83836896859668],[-77.08828612792114,38.83835353652266],[-77.08821873493036,38.8383370373366],[-77.08814654697308,38.83831947103852],[-77.08806956404929,38.8383008376284],[-77.08803415053076,38.8382923064129]]]],"type":"MultiPolygon"} +},{ + "id": 1108725079, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000077, + "geom:area_square_m":745513.533773, + "geom:bbox":"-77.097662,38.8273631563,-77.0846673058,38.8388016397", + "geom:latitude":38.833506, + "geom:longitude":-77.08946, + "iso:country":"US", + "lbl:latitude":38.832173, + "lbl:longitude":-77.089106, + "lbl:max_zoom":18.0, + "mps:latitude":38.833359, + "mps:longitude":-77.089362, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "S Fairlington" + ], + "reversegeo:latitude":38.833359, + "reversegeo:longitude":-77.089362, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85875983, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"535dba42ea0c72269fd20fd5d4763833", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108725079, + "neighbourhood_id":85875983, + "region_id":85688747 + } + ], + "wof:id":1108725079, + "wof:lastmodified":1566623909, + "wof:name":"South Fairlington", + "wof:parent_id":85875983, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85849647 + ], + "wof:tags":[] +}, + "bbox": [ + -77.097662, + 38.82736315632507, + -77.0846673057534, + 38.83880163966025 +], + "geometry": {"coordinates":[[[[-77.097662,38.834775],[-77.097365,38.834852],[-77.097094,38.834925],[-77.096097,38.835201],[-77.09572900000001,38.835303],[-77.095674,38.835315],[-77.09562099999999,38.835333],[-77.095473,38.835373],[-77.09487,38.835541],[-77.09466999999999,38.835597],[-77.094151,38.83574],[-77.093537,38.835911],[-77.09308799999999,38.83605],[-77.092608,38.836216],[-77.09254900000001,38.836237],[-77.09210299999999,38.836401],[-77.091857,38.836491],[-77.09160799999999,38.836589],[-77.09119800000001,38.836764],[-77.090919,38.836877],[-77.09014999999999,38.837227],[-77.09012300000001,38.837241],[-77.089673,38.83746],[-77.08953200000001,38.837529],[-77.08934499999999,38.837621],[-77.088526,38.838033],[-77.08837,38.838114],[-77.088048,38.838285],[-77.08803415053076,38.8382923064129],[-77.08798778615899,38.83828113710626],[-77.08791022362387,38.83826357080789],[-77.08783687644392,38.83824813873328],[-77.08776774461913,38.83823484088244],[-77.08770282814952,38.83822367725535],[-77.08764212703507,38.83821464785203],[-77.08758564127579,38.83820775267249],[-77.08753337087168,38.83820299171671],[-77.08748531582275,38.83820036498469],[-77.08744147612897,38.83819987247644],[-77.08740185179037,38.83820151419194],[-77.08736644280695,38.83820529013122],[-77.08733524917869,38.83821120029426],[-77.08730827090561,38.83821924468107],[-77.0872855079877,38.83822942329164],[-77.08726696042496,38.83824173612598],[-77.08725262821737,38.83825618318407],[-77.0872380325501,38.83827042502627],[-77.08722317342313,38.83828446165257],[-77.08720805083647,38.83829829306296],[-77.08719266479009,38.83831191925746],[-77.08717701528403,38.83832534023605],[-77.08716110231826,38.83833855599873],[-77.0871449258928,38.83835156654552],[-77.08712848600763,38.83836437187641],[-77.08711178266277,38.83837697199139],[-77.08709481585821,38.83838936689047],[-77.08707758559396,38.83840155657364],[-77.08706009187,38.83841354104092],[-77.08704233468636,38.83842532029229],[-77.08702431404301,38.83843689432776],[-77.08700602993994,38.83844826314733],[-77.0869874823772,38.83845942675099],[-77.08696930365801,38.83847034409776],[-77.08695149378244,38.83848101518763],[-77.08693405275042,38.8384914400206],[-77.08691698056197,38.83850161859669],[-77.08690027721711,38.83851155091588],[-77.08688394271583,38.83852123697816],[-77.08686797705812,38.83853067678355],[-77.08685238024401,38.83853987033204],[-77.08683715227346,38.83854881762364],[-77.08682229314647,38.83855751865834],[-77.08680780286308,38.83856597343615],[-77.08679368142326,38.83857418195705],[-77.08677992882701,38.83858214422106],[-77.08676654507437,38.83858986022818],[-77.08675353016528,38.8385973299784],[-77.08674088409975,38.83860455347173],[-77.08672760573097,38.83861173592184],[-77.08671369505893,38.83861887732873],[-77.08669915208358,38.83862597769242],[-77.08668397680498,38.8386330370129],[-77.08666816922309,38.83864005529016],[-77.08665172933792,38.83864703252421],[-77.08663465714949,38.83865396871505],[-77.08661695265776,38.83866086386267],[-77.08659861586278,38.83866771796708],[-77.08657964676451,38.83867453102829],[-77.08656004536297,38.83868130304627],[-77.08653981165817,38.83868803402106],[-77.08651894565008,38.83869472395263],[-77.0864974473387,38.83870137284097],[-77.08647531672406,38.83870798068612],[-77.08645255380615,38.83871454748805],[-77.08643031780763,38.83872086803475],[-77.0864086087285,38.83872694232619],[-77.08638742656878,38.8387327703624],[-77.08636677132844,38.83873835214335],[-77.08634664300752,38.83874368766907],[-77.08632704160597,38.83874877693955],[-77.08630796712383,38.83875361995479],[-77.08628941956107,38.83875821671479],[-77.08627139891772,38.83876256721954],[-77.08625390519377,38.83876667146905],[-77.08623693838921,38.83877052946332],[-77.08622049850405,38.83877414120234],[-77.08620458553828,38.83877750668612],[-77.08618919949191,38.83878062591467],[-77.08617434036495,38.83878349888796],[-77.08616000815735,38.83878612560602],[-77.08614499095457,38.83878854711174],[-77.08612928875655,38.83879076340511],[-77.08611290156334,38.83879277448616],[-77.0860958293749,38.83879458035486],[-77.08607807219124,38.83879618101122],[-77.08605963001239,38.83879757645524],[-77.0860405028383,38.83879876668692],[-77.08602069066899,38.83879975170628],[-77.08600019350447,38.83880053151328],[-77.08597901134476,38.83880110610794],[-77.08595714418981,38.83880147549027],[-77.08593459203965,38.83880163966025],[-77.08591135489428,38.83880159861791],[-77.08588743275368,38.83880135236321],[-77.08586282561788,38.83880090089619],[-77.08583753348687,38.83880024421682],[-77.08581224135585,38.83879934128252],[-77.08578694922483,38.83879819209329],[-77.08576165709381,38.83879679664912],[-77.08573636496278,38.83879515495002],[-77.08571107283177,38.83879326699599],[-77.08568578070074,38.83879113278702],[-77.08566048856973,38.83878875232311],[-77.08563519643872,38.83878612560429],[-77.08560990430769,38.83878325263052],[-77.08558461217667,38.83878013340181],[-77.08555932004566,38.83877676791818],[-77.08553402791463,38.83877315617961],[-77.08550873578362,38.83876929818612],[-77.08548344365261,38.83876519393769],[-77.08545815152158,38.83876084343432],[-77.08543285939056,38.83875624667603],[-77.0854083049467,38.83875173200251],[-77.08538448818999,38.8387472994138],[-77.08536140912044,38.83874294890986],[-77.08533906773803,38.83873868049071],[-77.08531746404279,38.83873449415636],[-77.0852965980347,38.83873038990679],[-77.08527646971376,38.838726367742],[-77.08525707907998,38.83872242766201],[-77.08523842613336,38.8387185696668],[-77.08522051087388,38.83871479375637],[-77.08520333330156,38.83871109993075],[-77.08518689341641,38.8387074881899],[-77.08517119121839,38.83870395853384],[-77.08515622670754,38.83870051096257],[-77.08514199988385,38.83869714547609],[-77.08512851074731,38.83869386207441],[-77.0851141258478,38.83869037345966],[-77.0850988451853,38.83868667963183],[-77.08508266875984,38.83868278059096],[-77.0850655965714,38.83867867633703],[-77.08504762861999,38.83867436687003],[-77.0850287649056,38.83866985218998],[-77.08500900542825,38.83866513229687],[-77.0849883501879,38.83866020719069],[-77.08496506035058,38.83865466644579],[-77.0849391359163,38.83864851006217],[-77.08491057688502,38.83864173803981],[-77.08487938325676,38.83863435037873],[-77.0848403385295,38.83862511580192],[-77.08479344270324,38.83861403430939],[-77.08474554074272,38.83860272353932],[-77.084732306183,38.8385357719451],[-77.08468730612231,38.8383237715744],[-77.0846673057534,38.8381837718362],[-77.08467584066103,38.83810390960408],[-77.08472500000001,38.837777],[-77.08472500000001,38.837672],[-77.084757,38.837364],[-77.084796,38.836968],[-77.084828,38.836662],[-77.084884,38.836211],[-77.085032,38.835725],[-77.085099,38.835537],[-77.08521399999999,38.835279],[-77.08531600000001,38.83506],[-77.08539399999999,38.834792],[-77.085432,38.834606],[-77.085418,38.83406],[-77.085407,38.833862],[-77.085401,38.833812],[-77.085399,38.833412],[-77.08538,38.83291],[-77.08536599999999,38.832492],[-77.08534299999999,38.832012],[-77.085335,38.831876],[-77.085328,38.831539],[-77.085325,38.831346],[-77.085313,38.831056],[-77.085319,38.830954],[-77.085346,38.830722],[-77.085351,38.830682],[-77.085419,38.830421],[-77.085471,38.830263],[-77.085555,38.830087],[-77.08565400000001,38.829878],[-77.085661,38.829869],[-77.085718,38.829764],[-77.08578900000001,38.829634],[-77.08587199999999,38.829455],[-77.085947,38.829312],[-77.086004,38.829204],[-77.086054,38.829115],[-77.086091,38.829043],[-77.086129,38.828968],[-77.08626,38.828737],[-77.086281,38.828699],[-77.086535,38.82834],[-77.08672799999999,38.828112],[-77.08693,38.827942],[-77.086986,38.827891],[-77.087295,38.827656],[-77.08748900000001,38.827531],[-77.08769397575492,38.82741813360331],[-77.08781334082751,38.82736315632507],[-77.087931,38.82745],[-77.08793406289148,38.82745226914641],[-77.0879333066124,38.8274577693806],[-77.09028330714381,38.8291987693796],[-77.090298307686,38.8292097699622],[-77.09040673775084,38.82929241217772],[-77.092715,38.831177],[-77.09272799999999,38.831188],[-77.09500800000001,38.832961],[-77.095319,38.833202],[-77.095707,38.83349],[-77.096526,38.834045],[-77.096947,38.834324],[-77.09725899999999,38.834533],[-77.097379,38.83461],[-77.09744999999999,38.834655],[-77.097662,38.834775]]]],"type":"MultiPolygon"} +},{ + "id": 1108726413, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000076, + "geom:area_square_m":736383.307878, + "geom:bbox":"-77.0683923537,38.8427198889,-77.0560168241,38.8532094035", + "geom:latitude":38.848295, + "geom:longitude":-77.062557, + "iso:country":"US", + "lbl:latitude":38.856852, + "lbl:longitude":-77.056883, + "lbl:max_zoom":18.0, + "mps:latitude":38.847865, + "mps:longitude":-77.062439, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Aurora Hls" + ], + "reversegeo:latitude":38.847865, + "reversegeo:longitude":-77.062439, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420546571, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"701049b8b2823b2763cb4a0b2293fbe4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726413, + "neighbourhood_id":420546571, + "region_id":85688747 + } + ], + "wof:id":1108726413, + "wof:lastmodified":1566623917, + "wof:name":"Aurora Hills", + "wof:parent_id":420546571, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85803979 + ], + "wof:tags":[] +}, + "bbox": [ + -77.06839235374943, + 38.8427198888839, + -77.05601682407215, + 38.85320940352571 +], + "geometry": {"coordinates":[[[[-77.06742951214184,38.8491002824955],[-77.0674168105644,38.84937058062748],[-77.0673841462571,38.84957119517653],[-77.06729189197677,38.84988424367725],[-77.06725235442804,38.85011004788253],[-77.06723258565368,38.8503255876383],[-77.06723258565368,38.85053086294455],[-77.0672853023853,38.85074126949591],[-77.06739073584856,38.85095680729238],[-77.06752252767762,38.85116849557184],[-77.0676806778725,38.8513763343343],[-77.06782260156496,38.85154637685317],[-77.06794829875496,38.85167862312846],[-77.06806032180965,38.85181076667074],[-77.06815867072905,38.85194280747999],[-77.06822835238079,38.85206972289993],[-77.06826936676487,38.85219151293059],[-77.0683089043136,38.85232365548302],[-77.06834696502695,38.85246615055723],[-77.06837258497508,38.8526926322626],[-77.06839235374943,38.8531583347674],[-77.0668240309836,38.8531737298178],[-77.06318988320271,38.85320940352571],[-77.06318164258195,38.85276089686272],[-77.06317540778703,38.85230610507632],[-77.06315358600476,38.85195610949519],[-77.06311617723516,38.85171091011932],[-77.06306318147823,38.8515705069487],[-77.06299459873398,38.85153489998333],[-77.06292653555596,38.85149726987058],[-77.0628589919442,38.85145761661042],[-77.06279196789868,38.85141594020288],[-77.0627254634194,38.85137224064795],[-77.06263350019415,38.85131235595671],[-77.06251607822293,38.85123628612914],[-77.06237319750574,38.85114403116526],[-77.06220485804255,38.85103559106506],[-77.06206353602408,38.85094535915459],[-77.06194923145033,38.85087333543385],[-77.06186194432127,38.85081951990283],[-77.06180167463694,38.85078391256154],[-77.0617403658201,38.85075194687177],[-77.06167801787078,38.85072362283353],[-77.06161463078897,38.85069894044681],[-77.06155020457464,38.85067789971163],[-77.06147954356541,38.85065645433995],[-77.06140264776126,38.8506346043318],[-77.06131951716216,38.85061234968717],[-77.06123015176813,38.85058969040605],[-77.06114442333782,38.85057026816288],[-77.0610623318712,38.85055408295767],[-77.0609838773683,38.8505411347904],[-77.06090905982913,38.85053142366107],[-77.0608373596874,38.85052333105301],[-77.06076877694315,38.85051685696622],[-77.06070331159636,38.85051200140067],[-77.06064096364702,38.85050876435639],[-77.06056822437282,38.85050674120373],[-77.06048509377371,38.8505059319427],[-77.06039157184972,38.85050633657329],[-77.06028765860086,38.85050795509551],[-77.06012919089632,38.85050997824817],[-77.05991616873614,38.85051240603127],[-77.05964859212028,38.85051523844481],[-77.05932646104878,38.8505184754888],[-77.05901056477219,38.85052130790224],[-77.05870090329057,38.85052373568512],[-77.05839747660386,38.85052575883745],[-77.05810028471205,38.85052737735921],[-77.05785504944471,38.850505931889],[-77.05766177080181,38.85046142242679],[-77.05752044878335,38.85039384897259],[-77.05743108338932,38.85030321152639],[-77.05733080710417,38.85020974152197],[-77.05721961992786,38.85011343895929],[-77.05709752186044,38.85001430383838],[-77.05696451290189,38.84991233615923],[-77.05683721917201,38.84981481934008],[-77.05671564067083,38.84972175338095],[-77.05659977739833,38.84963313828183],[-77.05648962935453,38.84954897404272],[-77.05639454873182,38.84947209319353],[-77.05631453553016,38.84940249573428],[-77.05624958974963,38.84934018166496],[-77.05619971139016,38.84928515098555],[-77.05615658739188,38.84923295273727],[-77.05612021775478,38.84918358692011],[-77.05609060247885,38.84913705353404],[-77.05606774156411,38.8490933525791],[-77.05605059587805,38.8490488423173],[-77.05603916542066,38.84900352274867],[-77.05603345019198,38.84895739387319],[-77.05603345019198,38.84891045569086],[-77.0560360480232,38.84886149427157],[-77.05604124368564,38.84881050961533],[-77.05604903717931,38.84875750172213],[-77.0560594285042,38.84870247059197],[-77.05606930026283,38.84864743941925],[-77.05607865245524,38.84859240820395],[-77.05608748508139,38.84853737694608],[-77.0560957981413,38.84848234564564],[-77.05610359163497,38.84842812359015],[-77.05611086556239,38.84837471077959],[-77.05611761992357,38.84832210721397],[-77.05612385471851,38.8482703128933],[-77.05612749168222,38.8482189231798],[-77.05612853081472,38.84816793807346],[-77.05612697211598,38.8481173575743],[-77.05612281558602,38.8480671816823],[-77.05611346339361,38.84801457787823],[-77.05609891553877,38.84795954616209],[-77.05607917202148,38.84790208653389],[-77.05605423284175,38.84784219899362],[-77.05601682407215,38.84775236768321],[-77.05639714656303,38.84773051677819],[-77.05665069489028,38.84771594950816],[-77.05703101738116,38.84769409860314],[-77.05702166518877,38.8476503967394],[-77.05701543039383,38.84762126216356],[-77.05701543039383,38.84758929503974],[-77.05702166518877,38.8475544953679],[-77.05703413477863,38.84751686314807],[-77.05705283916342,38.84747639838024],[-77.0570715435482,38.84743633823843],[-77.05709024793302,38.84739668272265],[-77.0571089523178,38.8473574318329],[-77.05712765670262,38.84731858556916],[-77.05714064585872,38.84727447883233],[-77.05714791978615,38.84722511162239],[-77.05714947848487,38.84717048393934],[-77.05714532195492,38.84711059578319],[-77.05713648932876,38.84705232618331],[-77.05712298060641,38.84699567513972],[-77.05710479578785,38.84694064265241],[-77.05708193487311,38.84688722872138],[-77.05706219135583,38.84682774495387],[-77.057045565236,38.84676219134989],[-77.05703205651365,38.84669056790942],[-77.05702166518877,38.84661287463248],[-77.05701750865882,38.84653437196035],[-77.05701958692379,38.84645505989302],[-77.05702789998369,38.8463749384305],[-77.05704244783854,38.84629400757278],[-77.05706219135583,38.84621671853497],[-77.05708713053555,38.84614307131706],[-77.05711726537773,38.84607306591904],[-77.05715259588234,38.84600670234092],[-77.05718896551946,38.84594155267543],[-77.05722637428904,38.84587761692254],[-77.05726482219113,38.84581489508227],[-77.0573043092257,38.84575338715463],[-77.05734899192271,38.8456922838333],[-77.05739887028219,38.8456315851183],[-77.05745394430409,38.84557129100962],[-77.05751421398841,38.84551140150726],[-77.05757240540778,38.84545272593686],[-77.05762851856218,38.8453952642984],[-77.0576825534516,38.8453390165919],[-77.05773451007603,38.84528398281735],[-77.05778334930301,38.84523906553834],[-77.0578290711325,38.84520426475489],[-77.05787167556454,38.84517958046698],[-77.05791116259913,38.84516501267463],[-77.05800260625813,38.84515530081339],[-77.05814600654158,38.84515044488326],[-77.05834136344944,38.84515044488425],[-77.05858867698177,38.84515530081637],[-77.05895964728023,38.84516258471454],[-77.05901420173589,38.84398985517895],[-77.05907327956912,38.8427198888839],[-77.0593502985628,38.8428797733005],[-77.0598272988137,38.84313777397951],[-77.0603032990722,38.8433687733407],[-77.0606562992453,38.8435737737912],[-77.0611572989536,38.8438367733614],[-77.06161429941869,38.8441207732726],[-77.0621472995461,38.8443927737021],[-77.0624332994545,38.8445397736428],[-77.06279029996659,38.84473377352991],[-77.06306429930591,38.8448617734911],[-77.0632583001714,38.8449307734169],[-77.06358230025489,38.8449947734745],[-77.06387329948981,38.8450187739675],[-77.06420829968312,38.8449847736966],[-77.0642962997821,38.8449717736433],[-77.0643322998344,38.8449987739368],[-77.0647032997626,38.844918774044],[-77.06480930061581,38.8448917740366],[-77.0649333001969,38.8448587738317],[-77.06575530078401,38.844430773761],[-77.066420300448,38.8442397732665],[-77.06645709268707,38.84422903562159],[-77.06647380909442,38.84432518057558],[-77.06649929990388,38.84447360970293],[-77.06651872147302,38.84458894931696],[-77.06653733381009,38.84470145252444],[-77.06655513691513,38.84481111932539],[-77.06657091694004,38.84490534448349],[-77.06658467388485,38.84498412799878],[-77.06659640774953,38.84504746987123],[-77.06660611853408,38.84509537010085],[-77.06662311240709,38.84515587555303],[-77.06664738936848,38.84522898622775],[-77.06667894941832,38.84531470212502],[-77.06671779255656,38.84541302324484],[-77.06675420799867,38.84550472651105],[-77.06678819574464,38.84558981192366],[-77.06681975579447,38.84566827948266],[-77.06684888814817,38.84574012918806],[-77.06687761588583,38.84582174778986],[-77.06690593900748,38.84591313528805],[-77.06693385751309,38.84601429168265],[-77.0669613714027,38.84612521697366],[-77.06699009914036,38.84624370510255],[-77.06702004072611,38.84636975606933],[-77.06705119615991,38.846503369874],[-77.06708356544178,38.84664454651656],[-77.06711472087559,38.84678509263356],[-77.06714466246132,38.846925008225],[-77.067173390199,38.84706429329087],[-77.06720090408859,38.84720294783119],[-77.06723165490638,38.84734191722152],[-77.06726564265236,38.84748120146187],[-77.0673028673265,38.84762080055226],[-77.06734332892887,38.84776071449267],[-77.06737812590688,38.84788203617066],[-77.06740725826057,38.84798476558625],[-77.06743072598994,38.84806890273943],[-77.06744852909495,38.84813444763021],[-77.06746390450384,38.84819621104388],[-77.0674768522166,38.84825419298045],[-77.06748737223322,38.84830839343992],[-77.06749546455369,38.8483588124223],[-77.06750031994598,38.84840324413621],[-77.06750193841006,38.84844168858166],[-77.06750031994596,38.84847414575865],[-77.06749546455369,38.84850061566718],[-77.06748939531333,38.8485283460347],[-77.06748211222491,38.84855733686122],[-77.06747361528841,38.84858758814672],[-77.06746390450385,38.84861909989122],[-77.06745500295133,38.84865502325207],[-77.06744691063086,38.84869535822929],[-77.06743962754244,38.84874010482285],[-77.06743315368607,38.84878926303278],[-77.06742748906174,38.84884188747705],[-77.06742263366945,38.84889797815565],[-77.06741858750922,38.8489575350686],[-77.06741535058103,38.84902055821589],[-77.06741899212524,38.84906814069153],[-77.06742951214184,38.8491002824955]]]],"type":"MultiPolygon"} +},{ + "id": 1108726419, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":68246.148557, + "geom:bbox":"-77.0752244398,38.8497148546,-77.0715556454,38.8531343996", + "geom:latitude":38.851541, + "geom:longitude":-77.073272, + "iso:country":"US", + "lbl:latitude":38.851636, + "lbl:longitude":-77.073302, + "lbl:max_zoom":18.0, + "mps:latitude":38.851636, + "mps:longitude":-77.073302, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Forest Hills" + ], + "name:urd_x_preferred":[ + "\u0641\u0627\u0631\u0633\u0679 \u06c1\u0644\u0632" + ], + "reversegeo:latitude":38.851636, + "reversegeo:longitude":-77.073302, + "src:geom":"mz", + "wof:belongsto":[ + 420546571, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5468954" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ca22a1a7971d04c3e3f01f2761ab2077", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726419, + "neighbourhood_id":420546571, + "region_id":85688747 + } + ], + "wof:id":1108726419, + "wof:lastmodified":1566623917, + "wof:name":"Forest Hills", + "wof:parent_id":420546571, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420546581 + ], + "wof:tags":[] +}, + "bbox": [ + -77.07522443983386, + 38.84971485463635, + -77.07155564543932, + 38.85313439960155 +], + "geometry": {"coordinates":[[[[-77.0743677470067,38.85312740586601],[-77.07342777290398,38.85313439960155],[-77.07287858070026,38.85312355489934],[-77.07260006801376,38.85309576536304],[-77.07245558955762,38.85305204768128],[-77.07244514533188,38.85299240185408],[-77.07243470110613,38.85292801139602],[-77.0724242568804,38.8528588763071],[-77.07241381265464,38.85278499658732],[-77.07240336842891,38.85270637223668],[-77.0723955352596,38.85263215350099],[-77.07239031314671,38.85256234038025],[-77.07238770209028,38.85249693287444],[-77.07238770209028,38.85243593098359],[-77.07238944279457,38.85236510089656],[-77.07239292420316,38.85228444261337],[-77.07239814631603,38.85219395613401],[-77.07240510913319,38.85209364145848],[-77.07241076642214,38.85199298773766],[-77.07241511818286,38.85189199497155],[-77.07241816441538,38.85179066316016],[-77.07241990511966,38.85168899230348],[-77.0724194699436,38.85160019970178],[-77.07241685888715,38.85152428535507],[-77.07241207195035,38.85146124926332],[-77.07240510913319,38.85141109142657],[-77.07239510008351,38.85136127246017],[-77.07238204480133,38.85131179236411],[-77.07236594328664,38.85126265113843],[-77.07234679553945,38.85121384878309],[-77.07232808296833,38.85117046889721],[-77.07230980557327,38.85113251148079],[-77.07229196335429,38.85109997653383],[-77.07227455631137,38.85107286405633],[-77.07225366785988,38.85104405703445],[-77.0722292979998,38.85101355546819],[-77.07220144673116,38.85098135935756],[-77.07217011405393,38.85094746870255],[-77.0721357351442,38.85091561147605],[-77.07209831000193,38.85088578767804],[-77.07205783862719,38.85085799730854],[-77.07201432101992,38.85083224036753],[-77.0719686275323,38.85080207761291],[-77.0719207581643,38.85076750904466],[-77.07187071291594,38.85072853466279],[-77.07181849178723,38.85068515446731],[-77.0717710575953,38.85064143533633],[-77.07172841034017,38.85059737726986],[-77.07169055002184,38.85055298026792],[-77.07165747664033,38.85050824433048],[-77.07162875501953,38.85046215272513],[-77.07160438515945,38.85041470545185],[-77.07158436706011,38.85036590251065],[-77.07156870072149,38.85031574390151],[-77.07155912684789,38.85026660198977],[-77.07155564543932,38.8502184767754],[-77.07155825649575,38.85017136825841],[-77.07156696001721,38.8501252764388],[-77.07157566353865,38.85008359043997],[-77.07158436706011,38.85004631026192],[-77.07159307058157,38.85001343590464],[-77.07160177410302,38.84998496736814],[-77.0716165700895,38.84995378752372],[-77.07163745854098,38.84991989637139],[-77.07166443945749,38.84988329391113],[-77.07169751283899,38.84984398014295],[-77.07173493798125,38.84981144460625],[-77.07177671488424,38.84978568730102],[-77.07182284354795,38.84976670822726],[-77.07187332397237,38.84975450738499],[-77.07192641545325,38.84974366219095],[-77.07198211799054,38.84973417264514],[-77.07204043158428,38.84972603874758],[-77.07210135623447,38.84971926049825],[-77.07217925275148,38.84971553246118],[-77.07227412113531,38.84971485463635],[-77.07241816441537,38.84971858267368],[-77.07250248731751,38.84972213241225],[-77.07251836786894,38.849728934635],[-77.07257339564813,38.84975666452598],[-77.07261871264275,38.84978439440615],[-77.0726713127258,38.84981653583485],[-77.07273119589728,38.84985308881208],[-77.07279836215717,38.84989405333783],[-77.07287281150549,38.84993942941212],[-77.07295535317428,38.84998480545745],[-77.07304598716354,38.85003018147385],[-77.07314471347325,38.8500755574613],[-77.07325153210346,38.85012093341981],[-77.07337939076686,38.85017072088182],[-77.0735282894635,38.85022491984733],[-77.07369822819335,38.85028353031635],[-77.07388920695642,38.85034655228885],[-77.07417567510103,38.85044108524763],[-77.07415625353191,38.85048267964336],[-77.07414330581916,38.85051040924051],[-77.07412631194617,38.85054381077303],[-77.07410527191297,38.85058288424089],[-77.07408018571951,38.85062762964412],[-77.07405105336582,38.85067804698271],[-77.0740300133326,38.85073161535472],[-77.07401706561986,38.85078833476013],[-77.07401221022758,38.85084820519895],[-77.07401544715576,38.85091122667118],[-77.0740211117801,38.85097172724137],[-77.07402920410055,38.85102970690953],[-77.07403972411717,38.85108516567564],[-77.07405267182992,38.85113810353972],[-77.07406804723881,38.85118852052426],[-77.07408585034383,38.85123641662929],[-77.074106081145,38.85128179185479],[-77.07412873964233,38.85132464620075],[-77.0741611089242,38.85136813072955],[-77.07420318899064,38.85141224544118],[-77.07425497984164,38.85145699033563],[-77.07431648147721,38.85150236541293],[-77.07437717388073,38.85154458942517],[-77.07443705705219,38.85158366237238],[-77.07449613099162,38.85161958425456],[-77.074554395699,38.85165235507171],[-77.07463450967164,38.85168890710983],[-77.07473647290956,38.85172924036892],[-77.07486028541274,38.85177335484899],[-77.07500594718118,38.85182125055002],[-77.07522443983386,38.85189309410158],[-77.0743677470067,38.85312740586601]]]],"type":"MultiPolygon"} +},{ + "id": 1108726421, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000094, + "geom:area_square_m":901936.076731, + "geom:bbox":"-77.0966867517,38.8419085967,-77.0833020407,38.8551313691", + "geom:latitude":38.847582, + "geom:longitude":-77.089113, + "iso:country":"US", + "lbl:latitude":38.84758, + "lbl:longitude":-77.089013, + "lbl:max_zoom":18.0, + "mps:latitude":38.84758, + "mps:longitude":-77.089013, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.84758, + "reversegeo:longitude":-77.089013, + "src:geom":"mz", + "wof:belongsto":[ + 85875989, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8bbff0eb23945e19d8274c7508b81c10", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726421, + "neighbourhood_id":85875989, + "region_id":85688747 + } + ], + "wof:id":1108726421, + "wof:lastmodified":1566623891, + "wof:name":"Fort Barnard Heights", + "wof:parent_id":85875989, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420546593, + 420547823 + ], + "wof:tags":[] +}, + "bbox": [ + -77.09668675167961, + 38.84190859672946, + -77.08330204065503, + 38.85513136911608 +], + "geometry": {"coordinates":[[[[-77.08851380580732,38.85513136911608],[-77.08821111016933,38.85475421630017],[-77.08782016452332,38.8542703215638],[-77.08751503621424,38.85389656939772],[-77.08721626474494,38.85353395358415],[-77.0869238501154,38.8531824741231],[-77.08665050600518,38.85286812198305],[-77.08639623241427,38.85259089716398],[-77.0861610293427,38.85235079966591],[-77.08594489679044,38.85214782948883],[-77.08576531606687,38.85195723515754],[-77.08562228717199,38.85177901667205],[-77.08551581010579,38.85161317403235],[-77.08544588486831,38.85145970723843],[-77.08535212148166,38.85126415976476],[-77.08523451994586,38.85102653161132],[-77.08509308026093,38.85074682277811],[-77.08492780242685,38.85042503326514],[-77.08476888143254,38.85011190608698],[-77.08461631727799,38.84980744124366],[-77.08447010996322,38.84951163873514],[-77.08433025948823,38.84922449856145],[-77.0842078903226,38.84893116870874],[-77.08410300246635,38.84863164917699],[-77.08401559591948,38.84832593996622],[-77.08394567068197,38.84801404107642],[-77.08387892386438,38.84770709172265],[-77.08381535546664,38.84740509190493],[-77.08375496548881,38.84710804162324],[-77.08369775393086,38.84681594087758],[-77.0836325963232,38.84655478246281],[-77.08355949266581,38.84632456637894],[-77.08347844295872,38.84612529262596],[-77.0833894472019,38.84595696120385],[-77.08333064643401,38.84580595783034],[-77.08330204065503,38.8456722825054],[-77.08330362986497,38.84555593522904],[-77.08333541406382,38.84545691600126],[-77.08340533930132,38.84535789663567],[-77.08351340557745,38.84525887713227],[-77.08365961289222,38.84515985749105],[-77.08384396124562,38.84506083771203],[-77.08405373695811,38.84496058003744],[-77.08428894002969,38.84485908446729],[-77.08454957046037,38.84475635100159],[-77.08483562825013,38.84465237964033],[-77.08506606369188,38.84456821232548],[-77.08524087678563,38.84450384905706],[-77.08536006753137,38.84445928983505],[-77.08542363592909,38.84443453465946],[-77.08547607985722,38.84439740184439],[-77.08551739931573,38.84434789138984],[-77.08556348640408,38.84428491817182],[-77.08561130639799,38.8441977730954],[-77.08569930682209,38.8440187730806],[-77.0857123069373,38.8439257728032],[-77.0857313071169,38.8436017728782],[-77.0857203064763,38.8435407724172],[-77.0856983073112,38.84331177245],[-77.0857103065913,38.8431357730476],[-77.0857073067467,38.8431057723337],[-77.08570438487752,38.84302512740246],[-77.08571538329113,38.84301370565208],[-77.08574578238147,38.84298231686564],[-77.08577948194448,38.84294768095551],[-77.08581648198015,38.84290979792168],[-77.08585678248849,38.84286866776417],[-77.08589673557864,38.84282956704367],[-77.08593634125063,38.84279249576016],[-77.08597559950444,38.84275745391368],[-77.08601451034008,38.84272444150421],[-77.08605307375754,38.84269345853175],[-77.08609128975681,38.8426645049963],[-77.08612915833793,38.84263758089786],[-77.08616667950085,38.84261268623644],[-77.08620524291831,38.84258752097099],[-77.0862448485903,38.84256208510151],[-77.08628549651681,38.84253637862801],[-77.08632718669784,38.84251040155049],[-77.0863699191334,38.84248415386894],[-77.0864136938235,38.84245763558337],[-77.08645851076813,38.84243084669376],[-77.08650436996726,38.84240378720013],[-77.08654953433006,38.84237794537832],[-77.0865940038565,38.84235332122832],[-77.08663777854659,38.84232991475013],[-77.08668085840034,38.84230772594375],[-77.08672324341772,38.84228675480919],[-77.08676493359876,38.84226700134645],[-77.08680592894345,38.84224846555551],[-77.08684622945178,38.84223114743638],[-77.08688566141468,38.84221423520757],[-77.08692422483215,38.84219772886907],[-77.08696191970417,38.84218162842089],[-77.08699874603074,38.84216593386302],[-77.0870347038119,38.84215064519546],[-77.08706979304759,38.84213576241822],[-77.08710401373787,38.84212128553128],[-77.0871373658827,38.84210721453466],[-77.08717262882749,38.84209395532516],[-77.08720980257226,38.84208150790277],[-77.08724888711697,38.84206987226749],[-77.08728988246166,38.84205904841933],[-77.0873327886063,38.84204903635828],[-77.08737760555093,38.84203983608435],[-77.0874243332955,38.84203144759752],[-77.08747297184006,38.84202387089782],[-77.08751865733011,38.84201656479404],[-77.08756138976567,38.84200952928617],[-77.08760116914674,38.84200276437424],[-77.08763799547333,38.84199627005823],[-77.08767186874542,38.84199004633815],[-77.08770278896303,38.84198409321398],[-77.08773075612613,38.84197841068574],[-77.08775577023476,38.84197299875343],[-77.08778460594331,38.84196745152227],[-77.08781726325179,38.84196176899225],[-77.08785374216021,38.84195595116338],[-77.08789404266854,38.84194999803566],[-77.0879381647768,38.84194390960909],[-77.087986108485,38.84193768588367],[-77.08803787379311,38.8419313268594],[-77.08809346070117,38.84192483253628],[-77.08814748422743,38.84191942060041],[-77.08819994437191,38.8419150910518],[-77.0882508411346,38.84191184389043],[-77.08830017451547,38.84190967911632],[-77.08834794451458,38.84190859672946],[-77.08839415113189,38.84190859672986],[-77.08843879436743,38.84190967911751],[-77.08848187422117,38.84191184389241],[-77.08852443294765,38.84191400866725],[-77.08856647054688,38.84191617344202],[-77.08860798701882,38.84191833821672],[-77.08864898236351,38.84192050299136],[-77.08868945658092,38.84192266776593],[-77.08872940967109,38.84192483254044],[-77.08876884163399,38.84192699731487],[-77.08880775246962,38.84192916208925],[-77.08884857410523,38.8419328151444],[-77.08889130654079,38.84193795648032],[-77.08893594977631,38.84194458609703],[-77.08898250381181,38.84195270399452],[-77.08903096864726,38.84196231017278],[-77.08908134428268,38.84197340463181],[-77.08913363071807,38.84198598737162],[-77.08918782795341,38.84200005839222],[-77.08924080922515,38.8420150764953],[-77.08929257453327,38.84203104168087],[-77.08934312387778,38.84204795394893],[-77.08939245725867,38.84206581329949],[-77.08944057467596,38.84208461973253],[-77.08948747612962,38.84210437324808],[-77.08953316161968,38.8421250738461],[-77.08957763114611,38.84214672152662],[-77.08962244809074,38.84216836920055],[-77.08966761245352,38.84219001686789],[-77.08971312423449,38.84221166452866],[-77.08975898343364,38.84223331218283],[-77.08980519005095,38.84225495983042],[-77.08985174408645,38.84227660747142],[-77.08989864554012,38.84229825510584],[-77.08994589441195,38.84231990273367],[-77.08999227473836,38.84234263273183],[-77.09003778651933,38.84236644510032],[-77.09008242975486,38.84239133983912],[-77.09012620444494,38.84241731694826],[-77.09016911058958,38.84244437642773],[-77.09021114818881,38.84247251827752],[-77.09025231724259,38.84250174249764],[-77.09029261775092,38.84253204908809],[-77.09033048633204,38.84256154388581],[-77.09036592298591,38.8425902268908],[-77.09039892771257,38.84261809810306],[-77.09042950051199,38.84264515752259],[-77.09045764138419,38.8426714051494],[-77.09048335032917,38.84269684098347],[-77.09050662734691,38.84272146502482],[-77.09052747243744,38.84274527727344],[-77.09054953349158,38.84276949540298],[-77.09057281050931,38.84279411941345],[-77.09059730349068,38.84281914930486],[-77.09062301243564,38.8428445850772],[-77.09064993734424,38.84287042673046],[-77.09067807821643,38.84289667426464],[-77.09070743505225,38.84292332767976],[-77.09073800785167,38.84295038697581],[-77.09077170741467,38.84297852862794],[-77.09080853374127,38.84300775263615],[-77.09084848683142,38.84303805900045],[-77.09089156668517,38.84306944772084],[-77.09093777330249,38.8431019187973],[-77.09098710668337,38.84313547222985],[-77.09103956682785,38.8431701080185],[-77.09109515373589,38.84320582616321],[-77.09115021951668,38.84324100310913],[-77.0912047641702,38.84327563885622],[-77.09125878769646,38.8433097334045],[-77.09131229009547,38.84334328675398],[-77.09136527136721,38.84337629890463],[-77.09141773151168,38.84340876985648],[-77.09146967052889,38.84344069960951],[-77.09152108841884,38.84347208816372],[-77.09157337485424,38.84350361199886],[-77.09162652983505,38.84353527111492],[-77.09168055336131,38.84356706551191],[-77.09173544543302,38.84359899518979],[-77.09179120605015,38.84363106014862],[-77.09184783521273,38.84366326038836],[-77.09190533292075,38.84369559590903],[-77.0919636991742,38.84372806671061],[-77.09202050204587,38.84375986102584],[-77.09207574153574,38.84379097885472],[-77.09212941764383,38.84382142019724],[-77.09218153037011,38.84385118505342],[-77.09223207971462,38.84388027342323],[-77.09228106567735,38.8439086853067],[-77.09232848825827,38.84393642070381],[-77.09237434745742,38.84396347961458],[-77.09242020665656,38.84398972675113],[-77.09246606585572,38.84401516211349],[-77.09251192505485,38.84403978570163],[-77.09255778425398,38.84406359751557],[-77.09260364345312,38.8440865975553],[-77.09264950265228,38.84410878582083],[-77.09269536185141,38.84413016231215],[-77.09274122105056,38.84415072702927],[-77.09279333377685,38.84417277997039],[-77.09285170003031,38.84419632113553],[-77.09291631981091,38.84422135052466],[-77.09298719311869,38.8442478681378],[-77.0930643199536,38.84427587397495],[-77.09314770031568,38.8443053680361],[-77.09323733420491,38.84433635032125],[-77.09333322162131,38.84436882083041],[-77.0934235503469,38.84439926192719],[-77.09350832038166,38.84442767361159],[-77.09358753172563,38.84445405588361],[-77.09366118437882,38.84447840874326],[-77.09372927834117,38.84450073219052],[-77.09379181361273,38.8445210262254],[-77.09384879019348,38.84453929084791],[-77.09390020808343,38.84455552605803],[-77.09395145226429,38.84457149067832],[-77.09400252273605,38.84458718470879],[-77.09405341949874,38.84460260814941],[-77.09410414255234,38.84461776100021],[-77.09415469189685,38.84463264326117],[-77.09420506753226,38.8446472549323],[-77.09425526945859,38.84466159601359],[-77.09430529767585,38.84467566650507],[-77.09435584702035,38.84469000757944],[-77.09440691749211,38.84470461923675],[-77.09445850909115,38.84471950147697],[-77.09451062181745,38.8447346543001],[-77.09456325567101,38.84475007770616],[-77.09461641065184,38.84476577169512],[-77.09467008675992,38.84478173626701],[-77.09472428399526,38.84479797142181],[-77.09477848123061,38.84481474774311],[-77.09483267846596,38.84483206523093],[-77.09488687570131,38.84484992388526],[-77.09494107293666,38.84486832370609],[-77.09499527017202,38.84488726469344],[-77.09504946740736,38.84490674684729],[-77.09510366464272,38.84492677016765],[-77.09515786187806,38.84494733465452],[-77.09521049573164,38.84496803442764],[-77.0952615662034,38.84498886948703],[-77.09531107329339,38.84500983983266],[-77.09535901700158,38.84503094546455],[-77.09540539732798,38.84505218638269],[-77.0954502142726,38.84507356258709],[-77.09549346783542,38.84509507407775],[-77.09553515801646,38.84511672085465],[-77.09557893270654,38.84513917937585],[-77.09562479190569,38.84516244964133],[-77.09567273561387,38.84518653165111],[-77.09572276383113,38.84521142540517],[-77.09577487655743,38.84523713090352],[-77.09582907379277,38.84526364814616],[-77.09588535553718,38.84529097713308],[-77.09594372179062,38.84531911786429],[-77.09601702702561,38.8453551054541],[-77.09610527124215,38.8453989399025],[-77.09620845444022,38.8454506212095],[-77.09632657661983,38.84551014937509],[-77.09645963778098,38.84557752439928],[-77.09660763792365,38.84565274628207],[-77.09668675167961,38.84569307962843],[-77.0966446561383,38.84571766881583],[-77.09651623039996,38.84579298649891],[-77.09643117466506,38.84584327114963],[-77.09636085630997,38.84588524788721],[-77.09630527533469,38.84591891671167],[-77.09625488753134,38.84594985266273],[-77.09620969289992,38.84597805574043],[-77.09616969144044,38.84600352594474],[-77.09613488315289,38.84602626327567],[-77.09610168895931,38.84604850868769],[-77.09607010885972,38.84607026218082],[-77.09604014285411,38.84609152375504],[-77.09601179094247,38.84611229341036],[-77.09598505312482,38.84613257114678],[-77.09595992940115,38.84615235696431],[-77.09593641977145,38.84617165086293],[-77.09591452423572,38.84619045284264],[-77.09588125986414,38.84622335616804],[-77.09583662665673,38.84627036083911],[-77.09578062461345,38.84633146685587],[-77.09571325373433,38.8464066742183],[-77.09563451401935,38.84649598292641],[-77.09554440546852,38.8465993929802],[-77.09544292808182,38.84671690437966],[-77.09533008185927,38.84684851712481],[-77.09520523519888,38.84699745520323],[-77.09506838810066,38.84716371861492],[-77.09491954056458,38.8473473073599],[-77.09475869259066,38.84754822143816],[-77.09458584417889,38.84776646084968],[-77.09440099532928,38.84800202559449],[-77.09420414604182,38.84825491567257],[-77.09399529631652,38.84852513108392],[-77.09379163976315,38.84878780336661],[-77.09359317638172,38.84904293252065],[-77.09339990617221,38.84929051854601],[-77.09321182913465,38.84953056144273],[-77.093028945269,38.84976306121078],[-77.09285125457531,38.84998801785016],[-77.09267875705353,38.85020543136088],[-77.0925114527037,38.85041530174294],[-77.0923484993898,38.85062047144017],[-77.09218989711187,38.85082094045258],[-77.09203564586986,38.85101670878016],[-77.09188574566379,38.85120777642292],[-77.09174019649367,38.85139414338086],[-77.09159899835949,38.85157580965397],[-77.09146215126125,38.85175277524225],[-77.09132965519898,38.85192504014571],[-77.09120922975254,38.85207894175011],[-77.09110087492192,38.85221448005548],[-77.09100459070717,38.85233165506179],[-77.09092037710825,38.85243046676905],[-77.09084823412519,38.85251091517726],[-77.09078816175796,38.85257300028643],[-77.09074016000659,38.85261672209655],[-77.09070422887103,38.85264208060762],[-77.09066605203952,38.85266711119922],[-77.09062562951206,38.85269181387136],[-77.09058296128862,38.85271618862403],[-77.09053804736919,38.85274023545722],[-77.09049088775382,38.85276395437096],[-77.09044148244244,38.85278734536522],[-77.09038983143512,38.85281040844002],[-77.09033593473181,38.85283314359536],[-77.09028105553652,38.85285620665302],[-77.09022519384925,38.85287959761298],[-77.09016834966998,38.85290331647528],[-77.09011052299873,38.8529273632399],[-77.09005171383549,38.85295173790684],[-77.08999192218026,38.85297644047608],[-77.08993114803305,38.85300147094767],[-77.08986939139383,38.85302682932156],[-77.08981072258659,38.85305295280624],[-77.08975514161131,38.85307984140168],[-77.08970264846799,38.8531074951079],[-77.08965324315662,38.85313591392489],[-77.08960692567722,38.85316509785265],[-77.08956369602978,38.85319504689119],[-77.0895235542143,38.8532257610405],[-77.08948650023078,38.85325724030058],[-77.08944621805929,38.85329473116279],[-77.08940270769986,38.85333823362714],[-77.08935596915246,38.85338774769362],[-77.0893060024171,38.85344327336222],[-77.08925280749379,38.85350481063297],[-77.08919638438252,38.85357235950583],[-77.08913673308329,38.85364591998083],[-77.08907385359612,38.85372549205798],[-77.08901476372088,38.85380134781143],[-77.0889594634576,38.85387348724122],[-77.08890795280627,38.85394191034734],[-77.08886023176687,38.85400661712978],[-77.08881630033945,38.85406760758856],[-77.08877615852396,38.85412488172366],[-77.08873980632043,38.85417843953509],[-77.08870724372885,38.85422828102286],[-77.08867734790124,38.85427724807062],[-77.08865011883758,38.85432534067841],[-77.08862555653789,38.85437255884622],[-77.0886036610022,38.85441890257404],[-77.08858443223045,38.85446437186187],[-77.08856787022265,38.85450896670972],[-77.08855397497884,38.85455268711759],[-77.08854274649897,38.85459553308547],[-77.0885332022911,38.85464307892398],[-77.0885253423552,38.85469532463312],[-77.08851916669128,38.85475227021289],[-77.08851467529934,38.85481391566329],[-77.08851186817938,38.85488026098431],[-77.08851074533139,38.85495130617596],[-77.08851130675538,38.85502705123824],[-77.08851355245136,38.85510749617116],[-77.08851380580732,38.85513136911608]]]],"type":"MultiPolygon"} +},{ + "id": 1108726423, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000045, + "geom:area_square_m":437351.161653, + "geom:bbox":"-77.1225838353,38.8968602602,-77.1122156411,38.9057243773", + "geom:latitude":38.901776, + "geom:longitude":-77.117577, + "iso:country":"US", + "lbl:latitude":38.898076, + "lbl:longitude":-77.117338, + "lbl:max_zoom":18.0, + "mps:latitude":38.901659, + "mps:longitude":-77.117222, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Lee Hts" + ], + "reversegeo:latitude":38.901659, + "reversegeo:longitude":-77.117222, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85875981, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"8aa3b3dfd92a93f48dfb06d35a1381ee", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726423, + "neighbourhood_id":85875981, + "region_id":85688747 + } + ], + "wof:id":1108726423, + "wof:lastmodified":1566623891, + "wof:name":"Lee Heights", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85830133 + ], + "wof:tags":[] +}, + "bbox": [ + -77.12258383532597, + 38.89686026021236, + -77.11221564108023, + 38.90572437733559 +], + "geometry": {"coordinates":[[[[-77.11649376647998,38.8993437604955],[-77.11688293736749,38.89912491020732],[-77.11714039027362,38.89898307323345],[-77.1172984686601,38.89890006122487],[-77.11741664376456,38.89884243052507],[-77.11749491558697,38.89881018113405],[-77.11756819949916,38.89877763312208],[-77.11763649550109,38.89874478648916],[-77.11769980359276,38.89871164123531],[-77.11775812377419,38.89867819736052],[-77.11781145604536,38.898638184114],[-77.11785980040626,38.89859160149575],[-77.11790315685693,38.89853844950578],[-77.11794152539733,38.89847872814408],[-77.11798833501662,38.89840288185384],[-77.1180435857148,38.89831091063505],[-77.11810727749187,38.89820281448772],[-77.11817941034785,38.89807859341185],[-77.11825768217028,38.89792092750585],[-77.11834209295917,38.8977298167697],[-77.11843264271452,38.89750526120341],[-77.11852933143635,38.89724726080699],[-77.11867436451908,38.89686026021236],[-77.1188930651994,38.89692834405798],[-77.11903886565295,38.89697373328839],[-77.11916586552169,38.89701494191684],[-77.11927406480565,38.89705196994334],[-77.1193634635048,38.89708481736788],[-77.11943406161915,38.89711348419046],[-77.11951617029561,38.89714424128505],[-77.11960978953421,38.89717708865167],[-77.11971491933492,38.8972120262903],[-77.11983155969777,38.89724905420096],[-77.11995318797086,38.89728638070354],[-77.1200798041542,38.89732400579805],[-77.1202114082478,38.8973619294845],[-77.12034800025165,38.89740015176289],[-77.12047231432257,38.89743270041594],[-77.12058435046056,38.89745957544368],[-77.12068410866561,38.89748077684608],[-77.12077158893773,38.89749630462317],[-77.12086520817633,38.8975112351754],[-77.12096496638138,38.8975255685028],[-77.12107086355292,38.89753930460534],[-77.12118289969089,38.89755244348304],[-77.12127805367112,38.89756229764131],[-77.12135632549354,38.89756886708015],[-77.12141771515819,38.89757215179958],[-77.12146222266506,38.89757215179958],[-77.12150826491354,38.89757424207431],[-77.12155584190364,38.89757842262377],[-77.12160495363537,38.89758469344797],[-77.1216556001087,38.89759305454689],[-77.12171698977335,38.897638741796],[-77.12178912262932,38.89772175519528],[-77.12189540348625,38.89788151116966],[-77.12202330323326,38.89809690923741],[-77.12199069794251,38.89810814421296],[-77.12187510037532,38.89814748132451],[-77.12176652290331,38.89818390453853],[-77.12165396737737,38.89822123830822],[-77.1215374337975,38.8982594826336],[-77.12141692216369,38.89829863751467],[-77.12129243247595,38.89833870295142],[-77.12116396473428,38.89837967894387],[-77.12103151893868,38.89842156549201],[-77.12089509508914,38.89846436259584],[-77.12075469318569,38.89850807025536],[-77.12061171724731,38.89855141366011],[-77.12046616727406,38.89859439281009],[-77.1203180432659,38.8986370077053],[-77.12016734522285,38.89867925834574],[-77.1200140731449,38.89872114473143],[-77.11985822703205,38.89876266686234],[-77.11969980688431,38.89880382473848],[-77.11953881270168,38.89884461835986],[-77.11937290445242,38.89888413716518],[-77.11920208213654,38.89892238115447],[-77.11902634575404,38.8989593503277],[-77.11900473570526,38.89896362021357],[-77.11930963635396,38.89933800908889],[-77.11952295375508,38.89960377048823],[-77.11966040513489,38.89978020366426],[-77.11977018773045,38.89992649022075],[-77.11985230154175,38.90004263015769],[-77.11992281231451,38.90014835067635],[-77.11998172004873,38.90024365177673],[-77.12002902474437,38.90032853345884],[-77.12006472640147,38.90040299572266],[-77.12009935700884,38.90047912495181],[-77.12013291656652,38.90055692114629],[-77.12016540507447,38.90063638430611],[-77.12019682253272,38.90071751443126],[-77.12022716894126,38.90080031152173],[-77.12025644430007,38.90088477557755],[-77.12028464860917,38.90097090659869],[-77.12031178186857,38.90105870458517],[-77.12033516645396,38.90113997326011],[-77.12035480236536,38.90121471262351],[-77.12037068960277,38.90128292267539],[-77.12038282816619,38.90134460341572],[-77.1203912180556,38.90139975484453],[-77.12039585927103,38.90144837696181],[-77.12039675181245,38.90149046976755],[-77.12039389567987,38.90152603326175],[-77.12039068253073,38.90156243025222],[-77.12038711236502,38.90159966073895],[-77.12038318518273,38.90163772472194],[-77.12037890098389,38.90167662220118],[-77.12037425976847,38.90171635317668],[-77.12036926153647,38.90175691764846],[-77.12036390628791,38.90179831561648],[-77.12035819402278,38.90184054708077],[-77.12034766203394,38.90188166717299],[-77.1203323103214,38.90192167589314],[-77.12031213888514,38.90196057324123],[-77.12028714772516,38.90199835921725],[-77.12025733684149,38.9020350338212],[-77.12022270623412,38.90207059705308],[-77.12018325590303,38.9021050489129],[-77.12013898584823,38.90213838940065],[-77.12009346623543,38.90217145203688],[-77.12004669706465,38.90220423682159],[-77.11999867833586,38.90223674375478],[-77.11994941004906,38.90226897283644],[-77.11989889220428,38.90230092406658],[-77.1198471248015,38.9023325974452],[-77.1197941078407,38.9023639929723],[-77.11973984132193,38.90239511064786],[-77.11969110855999,38.90242858990417],[-77.11964790955491,38.90246443074121],[-77.11961024430667,38.90250263315899],[-77.11957811281529,38.9025431971575],[-77.11955151508076,38.90258612273674],[-77.11953045110306,38.90263140989673],[-77.11951492088224,38.90267905863745],[-77.11950492441825,38.90272906895889],[-77.11950224679397,38.90277866249588],[-77.1195068880094,38.90282783924842],[-77.11951884806452,38.90287659921648],[-77.11953812695936,38.9029249424001],[-77.11956472469389,38.90297286879925],[-77.11959864126813,38.90302037841393],[-77.11963987668207,38.90306747124416],[-77.11968843093571,38.90311414728993],[-77.11974073386335,38.90315998981046],[-77.119796785465,38.90320499880576],[-77.11985658574062,38.9032491742758],[-77.11992013469026,38.90329251622061],[-77.11998743231388,38.90333502464018],[-77.12005847861148,38.9033766995345],[-77.12013327358309,38.90341754090359],[-77.12021181722869,38.90345754874744],[-77.12029089639915,38.90349172211562],[-77.12037051109446,38.90352006100814],[-77.12045066131463,38.90354256542501],[-77.12053134705968,38.9035592353662],[-77.12061256832956,38.90357007083174],[-77.1206943251243,38.90357507182161],[-77.12077661744391,38.90357423833583],[-77.12085944528836,38.90356757037438],[-77.12093781042569,38.90356034674809],[-77.12101171285586,38.90355256745694],[-77.12108115257891,38.90354423250096],[-77.12114612959482,38.90353534188012],[-77.12120664390359,38.90352589559444],[-77.12126269550524,38.90351589364392],[-77.12131428439973,38.90350533602854],[-77.1213614105871,38.90349422274834],[-77.12140460959218,38.90348047005423],[-77.12144388141499,38.90346407794624],[-77.12147922605551,38.90344504642435],[-77.12151064351374,38.90342337548859],[-77.12153813378971,38.90339906513893],[-77.12156169688339,38.90337211537538],[-77.12158133279479,38.90334252619795],[-77.12159704152391,38.90331029760662],[-77.12161721296016,38.90328126408933],[-77.12164184710356,38.90325542564609],[-77.12167094395409,38.90323278227687],[-77.12170450351176,38.9032133339817],[-77.12174252577657,38.90319708076056],[-77.12178501074851,38.90318402261347],[-77.12183195842759,38.90317415954041],[-77.1218833688138,38.90316749154138],[-77.12193656428286,38.90316235162551],[-77.1219915448348,38.9031587397928],[-77.12204831046958,38.90315665604324],[-77.12210686118721,38.90315610037682],[-77.1221671969877,38.90315707279356],[-77.12222931787105,38.90315957329346],[-77.12229322383723,38.90316360187651],[-77.12235891488629,38.90316915854271],[-77.12241621604592,38.90317791028394],[-77.12246512731613,38.90318985710019],[-77.12250564869694,38.90320499899148],[-77.12253778018832,38.9032233359578],[-77.12256152179029,38.90324486799914],[-77.12257687350285,38.90326959511552],[-77.12258383532597,38.90329751730692],[-77.1225824072597,38.90332863457336],[-77.12258044366855,38.90336100206619],[-77.12257794455256,38.9033946197854],[-77.12257490991171,38.90342948773102],[-77.12257133974599,38.90346560590304],[-77.12256723405542,38.90350297430143],[-77.12256259284,38.90354159292623],[-77.12255741609972,38.90358146177742],[-77.1225517038346,38.903622580855],[-77.12254617007775,38.90366217184452],[-77.12254081482919,38.90370023474594],[-77.12253563808892,38.9037367695593],[-77.1225306398569,38.90377177628458],[-77.12252582013321,38.90380525492179],[-77.12252117891778,38.90383720547091],[-77.12251671621065,38.90386762793197],[-77.1225124320118,38.90389652230495],[-77.1225052916804,38.90392388860477],[-77.1224952952164,38.90394972683145],[-77.12248244261986,38.90397403698498],[-77.12246673389072,38.90399681906534],[-77.12244816902904,38.90401807307256],[-77.12242674803477,38.90403779900664],[-77.12240247090796,38.90405599686756],[-77.12237533764856,38.90407266665533],[-77.12234981096374,38.90408961426817],[-77.12232589085349,38.90410683970607],[-77.12230357731781,38.90412434296903],[-77.12228287035668,38.90414212405706],[-77.12226376997015,38.90416018297015],[-77.12224627615817,38.90417851970831],[-77.12223038892076,38.90419713427153],[-77.12221610825793,38.90421602665982],[-77.12220200610338,38.90423630818398],[-77.1221880824571,38.90425797884399],[-77.12217433731912,38.90428103863987],[-77.12216077068943,38.90430548757162],[-77.12214738256802,38.90433132563923],[-77.1221341729549,38.90435855284271],[-77.12212114185004,38.90438716918204],[-77.1221082892535,38.90441717465725],[-77.12209329455752,38.90444940273407],[-77.12207615776211,38.9044838534125],[-77.12205687886728,38.90452052669254],[-77.12203545787303,38.9045594225742],[-77.12201189477935,38.90460054105746],[-77.12198618958624,38.90464388214235],[-77.12195834229371,38.90468944582884],[-77.12192835290175,38.90473723211694],[-77.12189818500151,38.90478307359609],[-77.12186783859298,38.90482697026628],[-77.12183731367617,38.90486892212752],[-77.12180661025106,38.9049089291798],[-77.12177572831767,38.90494699142313],[-77.121744667876,38.90498310885749],[-77.12171342892604,38.90501728148291],[-77.12168201146781,38.90504950929936],[-77.121653985667,38.90508090362741],[-77.12162935152359,38.90511146446704],[-77.12160810903762,38.90514119181826],[-77.12159025820907,38.90517008568105],[-77.12157579903794,38.90519814605544],[-77.12156473152424,38.90522537294141],[-77.12155705566798,38.90525176633896],[-77.12155277146913,38.90527732624811],[-77.12155562760171,38.90529732965615],[-77.12155611415261,38.90529803282035],[-77.12126538996823,38.90542667732259],[-77.1210277701487,38.90551721510543],[-77.12085423866225,38.90556478579883],[-77.12069451081675,38.90559164021482],[-77.12054858661223,38.90559777835342],[-77.12039970448464,38.90560775282446],[-77.12024786443399,38.90562156362794],[-77.12009306646027,38.90563921076387],[-77.11993531056349,38.90566069423224],[-77.11978840038461,38.9056798758975],[-77.11965233592363,38.90569675575968],[-77.11952711718057,38.90571133381874],[-77.1194127441554,38.9057236100747],[-77.11931809061733,38.90572437733559],[-77.11924315656637,38.90571363560141],[-77.1191879420025,38.90569138487215],[-77.11915244692571,38.90565762514781],[-77.11911793782329,38.90561158909202],[-77.11908441469524,38.90555327670477],[-77.11905187754152,38.90548268798607],[-77.11902032636218,38.90539982293591],[-77.11899271908024,38.90532079415915],[-77.11896905569571,38.90524560165579],[-77.11894933620862,38.90517424542583],[-77.11893356061894,38.90510672546927],[-77.11891679905492,38.90504534365714],[-77.11889905151651,38.90499009998946],[-77.11888031800376,38.90494099446621],[-77.11886059851668,38.90489802708739],[-77.11883693513215,38.90485122329387],[-77.11880932785022,38.90480058308565],[-77.11877777667087,38.90474610646272],[-77.11874228159408,38.90468779342509],[-77.11870382859425,38.90463331674087],[-77.11866241767135,38.90458267641004],[-77.11861804882537,38.90453587243263],[-77.11857072205635,38.90449290480863],[-77.11852142333859,38.9044530062847],[-77.11847015267215,38.90441617686086],[-77.11841691005698,38.9043824165371],[-77.11836169549311,38.90435172531341],[-77.11830845287794,38.90432333592361],[-77.11825718221149,38.90429724836768],[-77.11820788349374,38.90427346264564],[-77.11816055672472,38.90425197875749],[-77.11811618787874,38.90423202942878],[-77.11807477695584,38.90421361465955],[-77.11803632395601,38.90419673444977],[-77.11800082887922,38.90418138879944],[-77.11796730575116,38.90416681042926],[-77.1179357545718,38.90415299933919],[-77.11790617534116,38.90413995552926],[-77.11787856805923,38.90412767899944],[-77.11785096077729,38.90412230801732],[-77.11782335349535,38.90412384258289],[-77.11779574621342,38.90413228269614],[-77.11776813893148,38.90414762835707],[-77.11774644749568,38.90416450857852],[-77.11773067190599,38.9041829233605],[-77.11772081216245,38.904202872703],[-77.11771686826502,38.90422435660602],[-77.11770996644454,38.90425274602487],[-77.11770010670099,38.90428804095958],[-77.11768728903438,38.90433024141013],[-77.11767151344469,38.90437934737652],[-77.11765770980372,38.90442308236291],[-77.11764587811147,38.9044614463693],[-77.11763601836792,38.90449443939569],[-77.11762813057308,38.90452206144209],[-77.11761432693211,38.90455045075494],[-77.11759460744501,38.90457960733425],[-77.1175689721118,38.90460953118003],[-77.11753742093242,38.90464022229227],[-77.11750488377871,38.90467014611536],[-77.11747136065065,38.9046993026493],[-77.11743685154823,38.90472769189409],[-77.11740135647145,38.90475531384973],[-77.11735797359984,38.90478293579463],[-77.11730670293338,38.90481055772877],[-77.11724754447209,38.90483817965217],[-77.11718049821596,38.90486580156482],[-77.1171035922163,38.90489495801359],[-77.11701682647305,38.90492564899846],[-77.11692020098627,38.90495787451944],[-77.11681371575595,38.90499163457652],[-77.1167141323461,38.90501925643862],[-77.11662145075675,38.90504074010575],[-77.11653567098787,38.90505608557788],[-77.11645679303948,38.90506529285503],[-77.11637495716802,38.90507143103993],[-77.11629016337351,38.90507450013259],[-77.11620241165593,38.90507450013298],[-77.11611170201527,38.90507143104112],[-77.11601606250287,38.90506068921088],[-77.11591549311865,38.90504227464225],[-77.11580999386268,38.90501618733523],[-77.11569956473494,38.90498242728981],[-77.11560688314557,38.90494866722835],[-77.11553194909462,38.90491490715083],[-77.11547476258202,38.90488114705725],[-77.11543532360783,38.90484738694763],[-77.11539489865928,38.90481439409929],[-77.11535348773639,38.90478216851224],[-77.11531109083913,38.90475071018648],[-77.11526770796752,38.904720019122],[-77.11521249340365,38.9046839570908],[-77.11514544714751,38.90464252409285],[-77.11506656919912,38.90459572012818],[-77.11497585955847,38.90454354519677],[-77.11489500966137,38.90449827575772],[-77.11482401950781,38.90445991181104],[-77.1147628890978,38.90442845335672],[-77.11471161843136,38.90440390039474],[-77.11466231971362,38.90437934742428],[-77.11461499294458,38.90435479444533],[-77.11456963812427,38.90433024145788],[-77.11452625525264,38.90430568846196],[-77.11448878822716,38.90428343730508],[-77.1144572370478,38.90426348798726],[-77.11443160171459,38.90424584050849],[-77.11441188222747,38.90423049486879],[-77.11439314871474,38.90420517453581],[-77.11437540117635,38.90416987950956],[-77.11435863961232,38.90412460979004],[-77.11434286402263,38.90406936537725],[-77.11432906038166,38.90401642278215],[-77.11431722868942,38.90396578200474],[-77.11430736894586,38.90391744304503],[-77.11429948115101,38.90387140590303],[-77.11428764945875,38.90382153228607],[-77.11427187386907,38.90376782219418],[-77.11425215438197,38.90371027562736],[-77.11422849099748,38.90364889258559],[-77.11420877151038,38.90358904407451],[-77.1141929959207,38.90353073009408],[-77.11418116422844,38.90347395064433],[-77.11417327643359,38.90341870572524],[-77.11416440266439,38.90336806452553],[-77.11415454292086,38.90332202704519],[-77.11414369720295,38.90328059328424],[-77.11413186551069,38.90324376324266],[-77.11411806186972,38.90320539859187],[-77.11410228628004,38.90316549933185],[-77.11408453874165,38.90312406546263],[-77.11406481925457,38.9030810969842],[-77.11404411379311,38.90303352469511],[-77.11402242235729,38.90298134859536],[-77.11399974494714,38.90292456868496],[-77.11397608156261,38.90286318496391],[-77.11394847428068,38.90280793958948],[-77.11391692310131,38.90275883256168],[-77.11388142802454,38.90271586388052],[-77.11384198905036,38.90267903354599],[-77.11379860617873,38.90264066859004],[-77.11375127940971,38.90260076901268],[-77.11370000874325,38.90255933481389],[-77.11364479417938,38.90251636599369],[-77.11359056558986,38.90247339714749],[-77.11353732297469,38.90243042827527],[-77.11348506633388,38.90238745937706],[-77.11343379566745,38.90234449045284],[-77.11338252500099,38.90229921958701],[-77.11333125433454,38.90225164677955],[-77.11327998366808,38.90220177203049],[-77.11322871300163,38.90214959533982],[-77.11317941428388,38.90209895322585],[-77.11313208751486,38.90204984568859],[-77.11308673269453,38.90200227272803],[-77.11304334982292,38.90195623434419],[-77.11299602305388,38.90191096323981],[-77.11294475238742,38.90186645941489],[-77.11288953782355,38.90182272286944],[-77.11283037936225,38.90177975360345],[-77.11277516479838,38.90173678431145],[-77.11272389413193,38.90169381499346],[-77.1126765673629,38.90165084564946],[-77.11263318449127,38.90160787627946],[-77.11259275954272,38.90156260494396],[-77.11255529251724,38.90151503164297],[-77.11252078341482,38.90146515637647],[-77.11248923223548,38.9014129791445],[-77.11245866703048,38.90136156918972],[-77.11242908779982,38.90131092651215],[-77.11240049454354,38.9012610511118],[-77.11237288726159,38.90121194298865],[-77.11234823790272,38.90116436946649],[-77.1123265464669,38.90111833054532],[-77.11230781295417,38.90107382622514],[-77.1122920373645,38.90103085650594],[-77.1122742898261,38.90098865407987],[-77.11226022476181,38.90095910017686],[-77.11227119078879,38.90095688762718],[-77.11228720173321,38.90095302670724],[-77.11230298717136,38.9009485807989],[-77.11231854710327,38.90094354990215],[-77.11233388152891,38.90093793401701],[-77.1123489904483,38.90093173314345],[-77.11236387386143,38.90092494728149],[-77.11237853176829,38.90091757643113],[-77.1123929641689,38.90090962059237],[-77.11240656971322,38.90090148925601],[-77.11241934840126,38.90089318242208],[-77.112431300233,38.90088470009056],[-77.11244242520849,38.90087604226146],[-77.11245272332766,38.90086720893477],[-77.11246219459055,38.90085820011049],[-77.11247083899715,38.90084901578864],[-77.11247865654749,38.90083965596921],[-77.11248512106026,38.90083082263908],[-77.11249023253546,38.90082251579827],[-77.11249399097312,38.90081473544679],[-77.11249639637323,38.90080748158461],[-77.11249744873577,38.90080075421177],[-77.11249714806075,38.90079455332823],[-77.11249549434818,38.90078887893401],[-77.11249248759806,38.90078373102912],[-77.11248715061659,38.90077700365052],[-77.11247948340376,38.90076869679824],[-77.11246948595959,38.90075881047225],[-77.11245715828407,38.90074734467258],[-77.11244250037721,38.90073429939922],[-77.112425512239,38.90071967465215],[-77.11240619386945,38.9007034704314],[-77.11238454526853,38.90068568673696],[-77.11236394903017,38.90066819553388],[-77.11234440515436,38.90065099682215],[-77.11232591364109,38.90063409060179],[-77.11230847449033,38.90061747687279],[-77.11229208770214,38.90060115563514],[-77.11227675327652,38.90058512688887],[-77.11226247121343,38.90056939063395],[-77.11224924151287,38.90055394687039],[-77.11223819170617,38.9005395560896],[-77.11222932179329,38.90052621829158],[-77.11222263177426,38.90051393347633],[-77.11221812164908,38.90050270164384],[-77.11221579141773,38.90049252279412],[-77.11221564108023,38.90048339692717],[-77.11221767063655,38.900475324043],[-77.11222188008672,38.90046830414159],[-77.11222774324946,38.90045952926067],[-77.11223526012478,38.90044899940023],[-77.11224443071266,38.90043671456026],[-77.11225525501312,38.90042267474079],[-77.11226773302616,38.9004068799418],[-77.11228186475174,38.90038933016329],[-77.1122976501899,38.90037002540527],[-77.11231508934063,38.90034896566772],[-77.11233425737268,38.90032808142236],[-77.11235515428606,38.90030737266917],[-77.11237778008076,38.90028683940816],[-77.11240213475678,38.90026648163933],[-77.11242821831412,38.90024629936268],[-77.11245603075278,38.9002262925782],[-77.11248557207277,38.9002064612859],[-77.11251684227409,38.90018680548578],[-77.11254578224404,38.90016872916828],[-77.11257239198267,38.9001522323334],[-77.11259667148992,38.90013731498114],[-77.11261862076584,38.90012397711149],[-77.11263823981042,38.90011221872447],[-77.11265552862363,38.90010203982007],[-77.11267048720552,38.90009344039829],[-77.11268311555604,38.90008642045912],[-77.11269672110036,38.90007934201969],[-77.11271130383847,38.90007220508002],[-77.11272686377038,38.90006500964008],[-77.11274340089606,38.90005775569989],[-77.11276091521555,38.90005044325943],[-77.11277940672883,38.90004307231872],[-77.11279887543589,38.90003564287775],[-77.11281932133674,38.90002815493652],[-77.11283909071881,38.90002224648298],[-77.11285818358212,38.90001791751713],[-77.11287659992664,38.90001516803896],[-77.11289433975239,38.90001399804849],[-77.11291140305936,38.9000144075457],[-77.11292778984753,38.9000163965306],[-77.11294350011694,38.90001996500318],[-77.11295853386757,38.90002511296345],[-77.11297386829321,38.9000309629171],[-77.11298950339386,38.90003751486412],[-77.11300543916953,38.90004476880453],[-77.11302167562022,38.9000527247383],[-77.11303821274591,38.90006138266546],[-77.11305505054661,38.900070742586],[-77.11307218902232,38.9000808044999],[-77.11308962817307,38.90009156840719],[-77.11310661631128,38.900102507811],[-77.11312315343696,38.90011362271133],[-77.11313923955014,38.90012491310819],[-77.1131548746508,38.90013637900157],[-77.11317005873894,38.90014802039147],[-77.11318479181455,38.9001598372779],[-77.11319907387765,38.90017182966085],[-77.11321290492822,38.90018399754032],[-77.11322628496629,38.90019546342588],[-77.11323921399182,38.90020622731754],[-77.11325169200485,38.90021628921528],[-77.11326371900535,38.90022564911911],[-77.11327529499333,38.90023430702903],[-77.1132864199688,38.90024226294504],[-77.11329709393175,38.90024951686715],[-77.11330731688219,38.90025606879534],[-77.11331753983262,38.9002619772305],[-77.11332776278303,38.90026724217265],[-77.11333798573347,38.90027186362175],[-77.1133482086839,38.90027584157785],[-77.11335843163434,38.90027917604091],[-77.11336865458475,38.90028186701095],[-77.11337887753518,38.90028391448796],[-77.11338910048561,38.90028531847193],[-77.11339917309853,38.90028549396951],[-77.11340909537395,38.9002844409807],[-77.11341886731185,38.90028215950547],[-77.11342848891226,38.90027864954385],[-77.11343796017515,38.90027391109582],[-77.11344728110055,38.90026794416139],[-77.11345645168842,38.90026074874056],[-77.11346547193881,38.90025232483334],[-77.11347434185167,38.90024419342227],[-77.11348306142703,38.90023635450734],[-77.1134916306649,38.90022880808858],[-77.11350004956525,38.90022155416599],[-77.1135083181281,38.90021459273954],[-77.11351643635344,38.90020792380925],[-77.11352440424128,38.90020154737512],[-77.11353222179159,38.90019546343715],[-77.11354154271699,38.90018926249972],[-77.11355236701743,38.90018294456284],[-77.11356469469295,38.9001765096265],[-77.11357852574353,38.90016995769071],[-77.11359386016917,38.90016328875546],[-77.11361069796989,38.90015650282076],[-77.11362903914565,38.9001495998866],[-77.11364888369648,38.900142579953],[-77.11366760071601,38.90013678850785],[-77.11368519020425,38.90013222555117],[-77.1137016521612,38.90012889108296],[-77.11371698658684,38.9001267851032],[-77.11373119348119,38.90012590761192],[-77.11374427284423,38.9001262586091],[-77.11375622467598,38.90012783809475],[-77.11376704897643,38.90013064606885],[-77.11377847462691,38.90013392203821],[-77.11379050162741,38.90013766600283],[-77.11380312997794,38.9001418779627],[-77.11381635967848,38.90014655791782],[-77.11383019072906,38.9001517058682],[-77.11384462312967,38.90015732181384],[-77.11385965688029,38.90016340575472],[-77.11387529198096,38.90016995769086],[-77.11389017539409,38.90017656812575],[-77.11390430711967,38.90018323705941],[-77.11391768715774,38.90018996449182],[-77.11393031550826,38.900196750423],[-77.11394219217125,38.90020359485293],[-77.11395331714672,38.90021049778162],[-77.11396369043466,38.90021745920907],[-77.11397331203507,38.90022447913528],[-77.11398315914174,38.90023179155733],[-77.11399323175466,38.90023939647524],[-77.11400352987384,38.90024729388898],[-77.11401405349928,38.90025548379857],[-77.11402480263098,38.90026396620401],[-77.11403577726894,38.90027274110529],[-77.11404697741317,38.90028180850243],[-77.11405840306364,38.9002911683954],[-77.1140693777016,38.90029976779678],[-77.11407990132705,38.90030760670657],[-77.11408997393997,38.90031468512475],[-77.11409959554037,38.90032100305135],[-77.11410876612825,38.90032656048635],[-77.11411748570362,38.90033135742975],[-77.11412575426647,38.90033539388156],[-77.11413357181678,38.90033866984176],[-77.11414131419836,38.90034124381051],[-77.11414898141118,38.90034311578781],[-77.11415657345525,38.90034428577364],[-77.11416409033056,38.90034475376802],[-77.11417153203712,38.90034451977094],[-77.11417889857493,38.9003435837824],[-77.11418618994399,38.9003419458024],[-77.1141934061443,38.90033960583094],[-77.11420167470715,38.90033603737323],[-77.11421099563255,38.90033124042926],[-77.11422136892048,38.90032521499904],[-77.11423279457094,38.90031796108256],[-77.11424527258396,38.90030947867982],[-77.11425880295954,38.90029976779083],[-77.11427338569764,38.90028882841557],[-77.11428902079831,38.90027666055406],[-77.11430826399911,38.90026133371542],[-77.11433111530008,38.90024284789967],[-77.11435757470117,38.90022120310679],[-77.11438764220243,38.90019639933678],[-77.11442131780385,38.90016843658965],[-77.11445860150539,38.9001373148654],[-77.11449949330711,38.90010303416402],[-77.11454399320898,38.90006559448552],[-77.11458683939827,38.90003026078051],[-77.114628031875,38.89999703304902],[-77.11466757063914,38.89996591129102],[-77.11470545569074,38.89993689550653],[-77.11474168702975,38.89990998569554],[-77.11477626465619,38.89988518185804],[-77.11480918857006,38.89986248399405],[-77.1148404587714,38.89984189210355],[-77.11486902289759,38.89982223620498],[-77.11489488094867,38.89980351629831],[-77.11491803292463,38.89978573238356],[-77.11493847882549,38.89976888446072],[-77.11495621865123,38.8997529725298],[-77.11497125240186,38.89973799659079],[-77.11498358007738,38.89972395664369],[-77.11499320167778,38.8997108526885],[-77.11500222192817,38.89969283472594],[-77.1150106408285,38.899669902756],[-77.11501845837884,38.89964205677869],[-77.11502567457913,38.89960929679398],[-77.11503289077945,38.89956507080014],[-77.11504010697973,38.89950937879715],[-77.11504912723012,38.89942256477967],[-77.11505235039729,38.89938744680158],[-77.1151224708282,38.89938695294445],[-77.11522613423358,38.89938658871858],[-77.11533003164215,38.89938658871858],[-77.11543416305389,38.89938695294445],[-77.11553852846879,38.89938768139617],[-77.11564312788687,38.89938877407376],[-77.11574796130813,38.89939023097722],[-77.11585934681821,38.89938895618398],[-77.11597728441711,38.89938494969405],[-77.11610177410486,38.89937821150743],[-77.11623281588143,38.8993687416241],[-77.11637040974682,38.8993565400441],[-77.11649376647998,38.8993437604955]]]],"type":"MultiPolygon"} +},{ + "id": 1108726433, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000052, + "geom:area_square_m":497092.752255, + "geom:bbox":"-77.0633624516,38.8503521356,-77.0574793208,38.861297824", + "geom:latitude":38.855369, + "geom:longitude":-77.060596, + "iso:country":"US", + "lbl:latitude":38.855378, + "lbl:longitude":-77.060539, + "lbl:max_zoom":18.0, + "mps:latitude":38.855378, + "mps:longitude":-77.060539, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.855378, + "reversegeo:longitude":-77.060539, + "src:geom":"mz", + "wof:belongsto":[ + 85875961, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9b3fd03cd0cca51800df4efab1f84609", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726433, + "neighbourhood_id":85875961, + "region_id":85688747 + } + ], + "wof:id":1108726433, + "wof:lastmodified":1566623890, + "wof:name":"Virginia Highlands", + "wof:parent_id":85875961, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420546551 + ], + "wof:tags":[] +}, + "bbox": [ + -77.06336245163502, + 38.85035213560459, + -77.05747932084203, + 38.86129782400997 +], + "geometry": {"coordinates":[[[[-77.05772194263245,38.85763689616336],[-77.05747932084203,38.85035213560459],[-77.05752044878335,38.85039384897259],[-77.05766177080181,38.85046142242679],[-77.05785504944471,38.850505931889],[-77.05810028471205,38.85052737735921],[-77.05839747660386,38.85052575883745],[-77.05870090329057,38.85052373568512],[-77.05901056477219,38.85052130790224],[-77.05932646104878,38.8505184754888],[-77.05964859212028,38.85051523844481],[-77.05991616873614,38.85051240603127],[-77.06012919089632,38.85050997824817],[-77.06028765860086,38.85050795509551],[-77.06039157184972,38.85050633657329],[-77.06048509377371,38.8505059319427],[-77.06056822437282,38.85050674120373],[-77.06064096364702,38.85050876435639],[-77.06070331159636,38.85051200140067],[-77.06076877694315,38.85051685696622],[-77.0608373596874,38.85052333105301],[-77.06090905982913,38.85053142366107],[-77.0609838773683,38.8505411347904],[-77.0610623318712,38.85055408295767],[-77.06114442333782,38.85057026816288],[-77.06123015176813,38.85058969040605],[-77.06131951716216,38.85061234968717],[-77.06140264776126,38.8506346043318],[-77.06147954356541,38.85065645433995],[-77.06155020457464,38.85067789971163],[-77.06161463078897,38.85069894044681],[-77.06167801787078,38.85072362283353],[-77.0617403658201,38.85075194687177],[-77.06180167463694,38.85078391256154],[-77.06186194432127,38.85081951990283],[-77.06194923145033,38.85087333543385],[-77.06206353602408,38.85094535915459],[-77.06220485804255,38.85103559106506],[-77.06237319750574,38.85114403116526],[-77.06251607822293,38.85123628612914],[-77.06263350019415,38.85131235595671],[-77.0627254634194,38.85137224064795],[-77.06279196789868,38.85141594020288],[-77.0628589919442,38.85145761661042],[-77.06292653555596,38.85149726987058],[-77.06299459873398,38.85153489998333],[-77.06306318147823,38.8515705069487],[-77.06311617723516,38.85171091011932],[-77.06315358600476,38.85195610949519],[-77.06317540778703,38.85230610507632],[-77.06318164258195,38.85276089686272],[-77.06319099477436,38.85326990228005],[-77.06320346436422,38.85383312132834],[-77.06321905135155,38.85445055400756],[-77.06323775573634,38.85512220031773],[-77.06325801881987,38.8558431991718],[-77.06327984060214,38.85661355056979],[-77.06330322108313,38.85743325451168],[-77.06332816026286,38.85830231099746],[-77.06334634508141,38.85900629371952],[-77.06335777553879,38.85954520267784],[-77.063362451635,38.85991903787243],[-77.06336037337003,38.86012779930329],[-77.06335933423755,38.86031066761129],[-77.06335933423756,38.86046764279643],[-77.06336037337005,38.8605987248587],[-77.06336245163502,38.86070391379813],[-77.06336193206877,38.86079291978236],[-77.0633588146713,38.86086574281139],[-77.06335309944262,38.86092238288524],[-77.0633447863827,38.8609628400039],[-77.06333283635908,38.86100006053992],[-77.06331724937175,38.86103404449329],[-77.06329802542071,38.86106479186402],[-77.06327516450595,38.86109230265212],[-77.06324191226631,38.86112385912247],[-77.0631982687018,38.86115946127507],[-77.06314423381238,38.86119910910993],[-77.06307980759807,38.86124280262703],[-77.06305330971961,38.86129782400997],[-77.06289783879953,38.86120005459783],[-77.06279697180211,38.86114107999924],[-77.06269888508734,38.86108831041018],[-77.06258630410852,38.86103088256261],[-77.06245922886568,38.86096879645653],[-77.06232280985496,38.8609086504968],[-77.0621770470764,38.86085044468342],[-77.06202194052997,38.86079417901638],[-77.06185749021571,38.86073985349569],[-77.06169117114786,38.86069425885219],[-77.06152298332646,38.86065739508588],[-77.06135292675145,38.86062926219678],[-77.06118100142288,38.86060986018487],[-77.06101032193003,38.86059579372647],[-77.06084088827289,38.86058706282159],[-77.06067270045148,38.86058366747022],[-77.06050575846577,38.86058560767236],[-77.06035688109792,38.86058415251996],[-77.06022606834793,38.86057930201301],[-77.06011332021579,38.86057105615151],[-77.06001863670151,38.86055941493548],[-77.05994762406581,38.86053855773622],[-77.05990028230866,38.86050848455376],[-77.0598766114301,38.86046919538808],[-77.0598766114301,38.8604206902392],[-77.05987162808724,38.86036102881331],[-77.05986166140153,38.86029021111043],[-77.05984671137296,38.86020823713056],[-77.05982677800151,38.86011510687369],[-77.05980435295865,38.86002440178036],[-77.05977943624437,38.85993612185055],[-77.05975202785865,38.85985026708428],[-77.05972212780154,38.85976683748154],[-77.05969035899082,38.85967807212602],[-77.05965672142653,38.85958397101772],[-77.05962121510868,38.85948453415665],[-77.05958384003725,38.8593797615428],[-77.05954459621225,38.85927838421208],[-77.05950348363368,38.8591804021645],[-77.05946050230153,38.85908581540004],[-77.05941565221582,38.85899462391872],[-77.05936457295154,38.85890391738523],[-77.05930726450867,38.85881369579958],[-77.05924372688725,38.85872395916176],[-77.05917396008726,38.85863470747178],[-77.05909111201225,38.85854109006297],[-77.05899518266227,38.85844310693533],[-77.05888617203728,38.85834075808886],[-77.05876408013728,38.85823404352357],[-77.05863575905872,38.85813314964119],[-77.05850120880159,38.85803807644176],[-77.05836042936588,38.85794882392525],[-77.0582134207516,38.85786539209167],[-77.05807264131589,38.85779117652272],[-77.05793809105876,38.85772617721842],[-77.0578097699802,38.85767039417874],[-77.05772194263245,38.85763689616336]]]],"type":"MultiPolygon"} +},{ + "id": 1108726435, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000051, + "geom:area_square_m":487559.471896, + "geom:bbox":"-77.1519943136,38.9059747305,-77.1392119421,38.9140159256", + "geom:latitude":38.909953, + "geom:longitude":-77.145944, + "iso:country":"US", + "lbl:latitude":38.910344, + "lbl:longitude":-77.145508, + "lbl:max_zoom":18.0, + "mps:latitude":38.910344, + "mps:longitude":-77.145508, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.910344, + "reversegeo:longitude":-77.145508, + "src:geom":"mz", + "wof:belongsto":[ + 85876017, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d6aa93a764141515ab529f817fbf6039", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726435, + "neighbourhood_id":85876017, + "region_id":85688747 + } + ], + "wof:id":1108726435, + "wof:lastmodified":1566623890, + "wof:name":"Woodland Acres", + "wof:parent_id":85876017, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420546561 + ], + "wof:tags":[] +}, + "bbox": [ + -77.15199431360321, + 38.90597473048052, + -77.13921194205797, + 38.91401592560816 +], + "geometry": {"coordinates":[[[[-77.14579654867904,38.91401592560816],[-77.14566242693093,38.91396283079033],[-77.14546184598169,38.91388341701816],[-77.14530308226213,38.91382054771573],[-77.1451457360758,38.91375822984275],[-77.14498980742269,38.91369646339921],[-77.14484025766902,38.91363304243465],[-77.14469708681477,38.91356796694907],[-77.14456029486,38.91350123694249],[-77.14442988180468,38.91343285241491],[-77.14431718791448,38.91337108571226],[-77.14422221318939,38.91331593683454],[-77.14414495762944,38.91326740578177],[-77.14408542123461,38.91322549255394],[-77.14401808840711,38.91317420393095],[-77.14394295914698,38.91311353991281],[-77.14386003345417,38.91304350049951],[-77.14376931132873,38.91296408569107],[-77.14363748074017,38.91285488994069],[-77.14346454168853,38.91271591324839],[-77.1432504941738,38.91254715561416],[-77.14299533819596,38.91234861703799],[-77.1427345120853,38.91214787188472],[-77.14246801584179,38.91194492015433],[-77.14219584946542,38.91173976184682],[-77.14191801295624,38.9115323969622],[-77.14165647807896,38.9113437828408],[-77.14141124483361,38.91117391948265],[-77.14118231322016,38.91102280688771],[-77.14096968323864,38.91089044505601],[-77.14078469515471,38.91078014347475],[-77.14062734896837,38.91069190214392],[-77.14049764467964,38.91062572106352],[-77.14039558228851,38.91058160023356],[-77.14028784976453,38.91053968542534],[-77.14017444710771,38.91049997663888],[-77.14005537431805,38.91046247387417],[-77.13993063139557,38.91042717713121],[-77.13979880080701,38.91039629247454],[-77.13965988255242,38.91036981990415],[-77.13951387663177,38.91034775942006],[-77.13936078304505,38.91033011102225],[-77.13926013818713,38.91028378383814],[-77.13921194205797,38.91020877786772],[-77.13921619465761,38.910105093111],[-77.13927289598601,38.90997272956798],[-77.13933526744727,38.90984919010429],[-77.13940330904134,38.90973447471993],[-77.13947702076827,38.9096285834149],[-77.13955640262805,38.9095315161892],[-77.13964145462066,38.90944437623101],[-77.13973217674609,38.90936716354034],[-77.13982856900439,38.90929987811717],[-77.13993063139553,38.9092425199615],[-77.14007238471655,38.90917523432717],[-77.14025382896746,38.90909802121414],[-77.14047496414824,38.90901088062244],[-77.14073579025892,38.90891381255205],[-77.1409569254397,38.9088343931987],[-77.14113836969061,38.90877262256238],[-77.14128012301163,38.9087285006431],[-77.14138218540275,38.90870202744085],[-77.14150125819241,38.90867555422872],[-77.14163734138059,38.90864908100673],[-77.14179043496729,38.90862260777486],[-77.1419605389525,38.90859613453312],[-77.14213064293773,38.90857076433557],[-77.14230074692296,38.90854649718223],[-77.14247085090818,38.90852333307308],[-77.14264095489338,38.90850127200812],[-77.14278837834725,38.90847700482515],[-77.14291312126974,38.90845053152417],[-77.14301518366088,38.90842185210518],[-77.14309456552066,38.90839096656817],[-77.14320229804463,38.90834132899596],[-77.14333838123281,38.90827293938855],[-77.14350281508518,38.90818579774593],[-77.14369559960177,38.90807990406812],[-77.14390681205008,38.90797511330121],[-77.14413645243013,38.90787142544522],[-77.14438452074191,38.90776884050014],[-77.14465101698542,38.90766735846599],[-77.1449118430961,38.90757139165857],[-77.14516699907392,38.9074809400779],[-77.14541648491893,38.90739600372399],[-77.14566030063108,38.90731658259681],[-77.14602744173251,38.90721068741503],[-77.14651790822325,38.90707831817866],[-77.14713170010324,38.90691947488767],[-77.14786881737254,38.90673415754209],[-77.14846985145365,38.90658303557913],[-77.14893480234659,38.90646610899883],[-77.14926367005134,38.90638337780115],[-77.14945645456793,38.9063348419861],[-77.14965774428376,38.90626314116157],[-77.14986753919888,38.90616827532754],[-77.15014254064165,38.90601494552077],[-77.15020713874864,38.90597473048052],[-77.15020528401271,38.9060108133076],[-77.15019540149018,38.90608635965533],[-77.15017912439426,38.90616959629457],[-77.15015412742549,38.90628766517848],[-77.15012041058392,38.90644056630705],[-77.15007797386951,38.90662829968029],[-77.15002681728228,38.90685086529819],[-77.14998612454244,38.90703090811508],[-77.14995589565,38.90716842813097],[-77.14993613060493,38.90726342534585],[-77.14992682940726,38.90731589975971],[-77.14992217880842,38.90736611231607],[-77.14992217880842,38.9074140630149],[-77.14992682940726,38.90745975185622],[-77.14993613060493,38.90750317884002],[-77.14994950107659,38.90754570107165],[-77.14996694082224,38.90758731855112],[-77.14998844984187,38.90762803127841],[-77.15001402813547,38.90766783925355],[-77.15005297690075,38.90771081373805],[-77.15010529613768,38.90775695473191],[-77.15017098584627,38.90780626223516],[-77.15025004602654,38.90785873624776],[-77.15042444348299,38.90798494431679],[-77.15069417821562,38.90818488644226],[-77.15117435254572,38.90854541518371],[-77.15199431360321,38.9091641317814],[-77.151977,38.909177],[-77.15192500000001,38.909216],[-77.151583,38.909487],[-77.15142899999999,38.909605],[-77.150791,38.910104],[-77.150588,38.910265],[-77.150441,38.91038],[-77.15037700000001,38.91043],[-77.15008899999999,38.910654],[-77.14999899999999,38.910725],[-77.14979200000001,38.910886],[-77.149332,38.911247],[-77.149282,38.911288],[-77.14924999999999,38.911312],[-77.149203,38.911348],[-77.149129,38.911406],[-77.148765,38.911693],[-77.14872099999999,38.911727],[-77.148492,38.911993],[-77.14845099999999,38.912022],[-77.148377,38.912077],[-77.14833,38.91211],[-77.14829,38.912141],[-77.14658900000001,38.913395],[-77.145809,38.914006],[-77.14579654867904,38.91401592560816]]]],"type":"MultiPolygon"} +},{ + "id": 1108726437, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":182342.06581, + "geom:bbox":"-77.1135746372,38.9040030044,-77.1069390393,38.9115752959", + "geom:latitude":38.90841, + "geom:longitude":-77.109814, + "iso:country":"US", + "lbl:latitude":38.90808, + "lbl:longitude":-77.109211, + "lbl:max_zoom":18.0, + "mps:latitude":38.90808, + "mps:longitude":-77.109211, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.90808, + "reversegeo:longitude":-77.109211, + "src:geom":"mz", + "wof:belongsto":[ + 85875981, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1ff333e6555344deef037b7ee59e53a2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726437, + "neighbourhood_id":85875981, + "region_id":85688747 + } + ], + "wof:id":1108726437, + "wof:lastmodified":1566623889, + "wof:name":"Beechwood Hills", + "wof:parent_id":85875981, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420785089 + ], + "wof:tags":[] +}, + "bbox": [ + -77.11357463723962, + 38.90400300441695, + -77.1069390392777, + 38.91157529588116 +], + "geometry": {"coordinates":[[[[-77.10819520236578,38.90400300441695],[-77.10825817986114,38.90402211202401],[-77.1083155173319,38.90406407718795],[-77.10839924824164,38.90416323254037],[-77.10847933867706,38.90426097126092],[-77.10855578863811,38.90435729334959],[-77.10862859812485,38.9044521988064],[-77.10869776713726,38.90454568763132],[-77.10877512721692,38.90465121644913],[-77.10886067836381,38.90476878525983],[-77.10895442057799,38.90489839406339],[-77.10905635385943,38.90504004285985],[-77.1091610174966,38.90517885843077],[-77.10926841148955,38.90531484077614],[-77.10937853583823,38.90544798989599],[-77.10949139054267,38.90557830579029],[-77.10959969465419,38.90571003790667],[-77.10970344817278,38.90584318624514],[-77.10980265109846,38.90597775080566],[-77.10989730343123,38.90611373158827],[-77.10998740517107,38.90625112856039],[-77.11007295631796,38.90638994172204],[-77.11015395687195,38.9065301710732],[-77.11023040683304,38.90667181661389],[-77.11030321631976,38.90680992077441],[-77.11037238533217,38.90694448355477],[-77.11043791387023,38.90707550495497],[-77.11049980193395,38.90720298497502],[-77.110554409049,38.90732267439757],[-77.1106017352154,38.90743457322263],[-77.1106417804331,38.90753868145019],[-77.11067454470212,38.90763499908027],[-77.11071732027558,38.90773839869503],[-77.11077010715347,38.90784888029447],[-77.11083290533578,38.90796644387861],[-77.11090571482251,38.90809108944743],[-77.11097579395349,38.90820440348695],[-77.11104314272873,38.90830638599717],[-77.1111077611482,38.90839703697809],[-77.11116964921193,38.9084763564297],[-77.11123153727566,38.90854292809082],[-77.11129342533938,38.90859675196147],[-77.11135531340311,38.90863782804161],[-77.11141720146684,38.90866615633128],[-77.11147726929339,38.90869377640403],[-77.11153551688278,38.90872068825988],[-77.11159194423499,38.90874689189882],[-77.11164655135005,38.90877238732084],[-77.11170388882084,38.90880850579062],[-77.11176395664739,38.90885524730813],[-77.11182675482971,38.9089126118734],[-77.11189228336778,38.90898059948641],[-77.11195872202444,38.90905141983433],[-77.11202607079966,38.90912507291716],[-77.11209432969348,38.90920155873489],[-77.11216349870587,38.90928087728753],[-77.11222538676959,38.90934957278959],[-77.11227999388464,38.9094076452411],[-77.11232732005102,38.90945509464203],[-77.11236736526874,38.90949192099238],[-77.11241378131653,38.90953582928639],[-77.11246656819441,38.90958681952404],[-77.11252572590237,38.90964489170536],[-77.11259125444045,38.90971004583031],[-77.11265405262274,38.90977590808852],[-77.11271412044931,38.90984247847997],[-77.1127714579201,38.90990975700468],[-77.11282606503516,38.90997774366264],[-77.11287794179447,38.91004997939515],[-77.11292708819801,38.91012646420221],[-77.11297350424582,38.91020719808381],[-77.11301718993784,38.91029218103998],[-77.11306269586706,38.91038424575088],[-77.11311002203342,38.91048339221651],[-77.11315916843698,38.91058962043689],[-77.11321013507769,38.91070293041201],[-77.11325746124407,38.91080915839498],[-77.11330114693611,38.91090830438581],[-77.11334119215383,38.91100036838449],[-77.11337759689718,38.91108535039101],[-77.11342401294499,38.91119228576877],[-77.1134804402972,38.91132117451778],[-77.11357463723962,38.91153353836675],[-77.11354688866462,38.9115100117051],[-77.1135238521118,38.91149432726399],[-77.11350552758113,38.91148648504345],[-77.11349191507264,38.91148648504345],[-77.11347751722712,38.91148699428023],[-77.11346233404457,38.9114880127538],[-77.11344636552499,38.91148954046415],[-77.11342961166841,38.91149157741129],[-77.11341207247477,38.91149412359521],[-77.11339374794412,38.91149717901592],[-77.11337463807644,38.91150074367341],[-77.11335474287171,38.91150481756767],[-77.11333301521393,38.91150980808692],[-77.11330945510309,38.91151571523113],[-77.11328406253918,38.9115225390003],[-77.1132568375222,38.91153027939446],[-77.11322778005217,38.91153893641356],[-77.11319689012905,38.91154851005765],[-77.11316416775287,38.9115590003267],[-77.11312961292364,38.91157040722071],[-77.11309623609993,38.91157529588116],[-77.11306403728179,38.91157366630803],[-77.11303301646917,38.91156551850134],[-77.11300317366209,38.91155085246108],[-77.11297450886056,38.91152966818724],[-77.11294702206459,38.91150196567985],[-77.11292071327414,38.91146774493887],[-77.11289558248923,38.91142700596433],[-77.11286521612413,38.91139339631313],[-77.11282961417886,38.9113669159853],[-77.11278877665339,38.9113475649808],[-77.11274270354775,38.91133534329966],[-77.11269139486191,38.91133025094187],[-77.11263485059588,38.91133228790743],[-77.11257307074968,38.91134145419635],[-77.11250605532325,38.91135774980862],[-77.11242490383034,38.91136355509603],[-77.11232961627093,38.91135887005859],[-77.112220192645,38.91134369469631],[-77.11209663295259,38.91131802900919],[-77.11195893719363,38.91128187299721],[-77.1118071053682,38.91123522666037],[-77.11164113747623,38.9111780899987],[-77.11146103351777,38.91111046301217],[-77.11129061538264,38.91104578957932],[-77.11112988307089,38.91098406970013],[-77.11097883658246,38.91092530337461],[-77.11083747591739,38.91086949060278],[-77.11070580107567,38.91081663138461],[-77.11058381205729,38.91076672572009],[-77.11047150886226,38.91071977360926],[-77.11036889149057,38.9106757750521],[-77.11027857773233,38.91063534118636],[-77.11020056758753,38.91059847201206],[-77.11013486105617,38.9105651675292],[-77.11008145813825,38.91053542773776],[-77.11004035883377,38.91050925263775],[-77.11001156314275,38.91048664222919],[-77.10999507106516,38.91046759651204],[-77.109990882601,38.91045211548634],[-77.10998761036339,38.91043673630637],[-77.1099852543523,38.91042145897214],[-77.10998381456776,38.91040628348365],[-77.10998329100971,38.91039120984089],[-77.10998368367822,38.91037623804387],[-77.10998499257329,38.9103613680926],[-77.10998721769487,38.91034659998707],[-77.10999035904298,38.91033193372726],[-77.1099935003911,38.91031675821792],[-77.10999664173922,38.91030107345905],[-77.10999978308732,38.91028487945062],[-77.11000292443543,38.91026817619266],[-77.11000606578354,38.91025096368515],[-77.11000920713165,38.9102332419281],[-77.11001234847977,38.91021501092152],[-77.11001548982789,38.91019627066539],[-77.1100185002865,38.91017824335087],[-77.1100213798556,38.91016092897795],[-77.1100241285352,38.91014432754665],[-77.11002674632529,38.91012843905695],[-77.11002923322587,38.91011326350886],[-77.11003158923697,38.91009880090239],[-77.11003381435853,38.91008505123752],[-77.11003590859062,38.91007201451424],[-77.11000606578354,38.91004858907819],[-77.10994428593732,38.91001477492934],[-77.10985056905196,38.90997057206769],[-77.10972491512744,38.90991598049325],[-77.10956732416379,38.90985100020602],[-77.109377796161,38.90977563120599],[-77.10915633111904,38.90968987349316],[-77.10890292903795,38.90959372706754],[-77.10867675197383,38.90951560811301],[-77.10847779992669,38.90945551662955],[-77.10830607289654,38.90941345261719],[-77.10816157088334,38.9093894160759],[-77.10804429388713,38.90938340700569],[-77.1079542419079,38.90939542540657],[-77.10789141494564,38.90942547127852],[-77.10785581300038,38.90947354462156],[-77.10780882366819,38.90950847927191],[-77.1077504469491,38.90953027522956],[-77.1076806828431,38.90953893249451],[-77.10759953135016,38.90953445106678],[-77.10749115484028,38.90950970142153],[-77.10735555331341,38.90946468355878],[-77.10714521387936,38.90937800890407],[-77.10693903927771,38.90928519659994],[-77.10694872468039,38.90927417666809],[-77.1069673786774,38.90924809802158],[-77.10698587458967,38.90921734488334],[-77.10700421241725,38.90918191725342],[-77.10702239216009,38.90914181513178],[-77.10704041381821,38.90909703851844],[-77.10705827739162,38.90904758741339],[-77.10707598288027,38.90899346181664],[-77.10709036858984,38.90893699891308],[-77.10710143452026,38.90887819870274],[-77.10710918067156,38.90881706118559],[-77.10711360704373,38.90875358636166],[-77.10711471363676,38.90868777423091],[-77.10711250045068,38.90861962479337],[-77.10710696748546,38.90854913804904],[-77.10709811474113,38.90847631399792],[-77.10709005242039,38.90840435097755],[-77.10708278052326,38.90833324898793],[-77.10707629904971,38.90826300802907],[-77.10707060799979,38.90819362810096],[-77.10706570737345,38.90812510920361],[-77.10706159717071,38.90805745133702],[-77.10705827739159,38.90799065450118],[-77.10705574803607,38.90792471869611],[-77.10705495761248,38.90786419551762],[-77.10705590612079,38.90780908496573],[-77.10705859356104,38.90775938704043],[-77.10706301993321,38.90771510174173],[-77.10706918523729,38.90767622906962],[-77.10707708947332,38.90764276902411],[-77.10708673264126,38.9076147216052],[-77.10709811474113,38.90759208681287],[-77.10711281662013,38.90757043613807],[-77.10713083827825,38.90754976958078],[-77.1071521797155,38.90753008714101],[-77.10717684093187,38.90751138881876],[-77.10720482192737,38.90749367461402],[-77.10723612270199,38.90747694452681],[-77.10727074325574,38.9074611985571],[-77.10730868358863,38.90744643670492],[-77.10735120837839,38.90742749230655],[-77.10739831762506,38.90740436536201],[-77.10745001132859,38.90737705587129],[-77.10750628948904,38.9073455638344],[-77.10756715210636,38.90730988925132],[-77.10763259918059,38.90727003212207],[-77.1077026307117,38.90722599244664],[-77.1077772466997,38.90717777022502],[-77.10785170460298,38.90712598047556],[-77.10792600442154,38.90707062319827],[-77.10800014615538,38.90701169839312],[-77.10807412980451,38.90694920606013],[-77.10814795536891,38.90688314619929],[-77.10822162284857,38.90681351881061],[-77.10829513224354,38.90674032389408],[-77.10836848355378,38.9066635614497],[-77.10843250786552,38.90659159662697],[-77.10848720517876,38.90652442942589],[-77.1085325754935,38.90646205984646],[-77.10856861880973,38.90640448788867],[-77.10859533512746,38.90635171355253],[-77.10861272444671,38.90630373683804],[-77.10862078676745,38.90626055774519],[-77.10861952208968,38.906222176274],[-77.10861541188694,38.90618600910985],[-77.10860845615926,38.90615205625275],[-77.10859865490659,38.90612031770271],[-77.10858600812898,38.90609079345971],[-77.10857051582639,38.90606348352377],[-77.1085521779988,38.90603838789488],[-77.10853099464629,38.90601550657303],[-77.10850696576878,38.90599483955825],[-77.10848056562048,38.90597429555581],[-77.10845179420139,38.90595387456572],[-77.10842065151147,38.90593357658798],[-77.10838713755078,38.9059134016226],[-77.10835125231927,38.90589334966957],[-77.10831299581693,38.90587342072888],[-77.10827236804381,38.90585361480056],[-77.10822936899987,38.90583393188458],[-77.10818874122674,38.90581215764439],[-77.10815048472443,38.90578829208],[-77.10811459949291,38.9057623351914],[-77.10808108553221,38.90573428697857],[-77.1080499428423,38.90570414744155],[-77.10802117142319,38.90567191658032],[-77.10799477127489,38.90563759439488],[-77.10797074239741,38.90560118088523],[-77.10794845245184,38.90556525943428],[-77.1079279014382,38.90552983004203],[-77.10790908935647,38.90549489270848],[-77.10789201620668,38.90546044743361],[-77.10787668198878,38.90542649421745],[-77.10786308670285,38.90539303305999],[-77.10785123034881,38.90536006396121],[-77.10784111292674,38.90532758692115],[-77.10783226018239,38.90529486382665],[-77.10782467211581,38.90526189467774],[-77.10781834872699,38.90522867947442],[-77.10781329001595,38.90519521821669],[-77.10780949598266,38.90516151090453],[-77.10780696662714,38.90512755753795],[-77.10780570194937,38.90509335811696],[-77.10780570194937,38.90505891264156],[-77.10780680854242,38.90502508225062],[-77.1078090217285,38.90499186694416],[-77.10781234150762,38.90495926672217],[-77.1078167678798,38.90492728158465],[-77.107822300845,38.90489591153161],[-77.10782894040327,38.90486515656303],[-77.10783668655456,38.90483501667894],[-77.10784553929889,38.90480549187932],[-77.10785581480572,38.90477510592279],[-77.10786751307502,38.90474385880938],[-77.10788063410681,38.90471175053905],[-77.10789517790109,38.90467878111184],[-77.10791114445783,38.90464495052772],[-77.10792853377707,38.9046102587867],[-77.10794734585879,38.90457470588878],[-77.10796758070299,38.90453829183397],[-77.10798773618711,38.90450005706374],[-77.10800781231114,38.90446000157809],[-77.10802780907508,38.90441812537703],[-77.10804772647893,38.90437442846055],[-77.10807001451813,38.90432253835638],[-77.1080946731927,38.90426245506454],[-77.10812905248892,38.9041750611682],[-77.10819520236578,38.90400300441695]]]],"type":"MultiPolygon"} +},{ + "id": 1108726439, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":173481.547976, + "geom:bbox":"-77.1086207868,38.9007710358,-77.0986630159,38.906546083", + "geom:latitude":38.903377, + "geom:longitude":-77.103533, + "iso:country":"US", + "lbl:latitude":38.903475, + "lbl:longitude":-77.103456, + "lbl:max_zoom":18.0, + "mps:latitude":38.903475, + "mps:longitude":-77.103456, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":38.903475, + "reversegeo:longitude":-77.103456, + "src:geom":"mz", + "wof:belongsto":[ + 420546579, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a5fae56584f2211eee472dda4cf0e891", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726439, + "neighbourhood_id":420546579, + "region_id":85688747 + } + ], + "wof:id":1108726439, + "wof:lastmodified":1566623889, + "wof:name":"Crystal Spring Knolls", + "wof:parent_id":420546579, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420785097 + ], + "wof:tags":[] +}, + "bbox": [ + -77.10862078676745, + 38.90077103581687, + -77.09866301591727, + 38.906546083042 +], + "geometry": {"coordinates":[[[[-77.10846957165222,38.906546083042],[-77.10834723403943,38.90647423422786],[-77.10808175214505,38.90631951881372],[-77.10792269691319,38.9062285096807],[-77.10780808358435,38.90616480321292],[-77.10773791215851,38.90612839941036],[-77.10765721501882,38.9060883551962],[-77.10756599216525,38.90604467057042],[-77.1074642435978,38.90599734553302],[-77.10735196931648,38.905946380084],[-77.10723501694011,38.90589086408995],[-77.10711338646868,38.90583079755086],[-77.1069870779022,38.90576618046671],[-77.10685609124067,38.90569701283754],[-77.10671925696032,38.90562784514096],[-77.10657657506114,38.905558677377],[-77.10642804554314,38.90548950954566],[-77.10627366840632,38.90542034164692],[-77.10614034269724,38.90536027476397],[-77.10602806841594,38.9053093088968],[-77.10593684556237,38.90526744404543],[-77.10586667413654,38.90523468020984],[-77.10580001128201,38.90520100624997],[-77.10573685699876,38.90516642216582],[-77.10567721128682,38.90513092795739],[-77.10562107414617,38.90509452362469],[-77.10556961510056,38.90506084960583],[-77.10552283415002,38.90502990590082],[-77.10548073129452,38.90500169250965],[-77.10544330653407,38.90497620943233],[-77.10540471224986,38.90495163645764],[-77.1053649484419,38.90492797358556],[-77.10532401511017,38.90490522081612],[-77.10528191225468,38.90488337814929],[-77.10522694463779,38.90485698490943],[-77.10515911225949,38.90482604109652],[-77.10507841511979,38.90479054671057],[-77.1049848532187,38.90475050175158],[-77.10490298655523,38.9047177376903],[-77.10483281512941,38.90469225452674],[-77.10477433894123,38.90467405226089],[-77.10472755799067,38.90466313089276],[-77.10468077704013,38.90465038929287],[-77.10463399608958,38.90463582746122],[-77.10458721513903,38.90461944539782],[-77.10454043418848,38.90460124310267],[-77.10448897514287,38.90458577115048],[-77.10443283800223,38.90457302954125],[-77.10437202276651,38.904563018275],[-77.10430652943573,38.90455573735171],[-77.10423284943862,38.90454845642768],[-77.10415098277515,38.90454117550289],[-77.10406092944535,38.90453389457736],[-77.10396268944919,38.90452661365109],[-77.10386912754811,38.90452024284031],[-77.10378024374205,38.90451478214504],[-77.10369603803107,38.90451023156528],[-77.10361651041512,38.90450659110102],[-77.10353815232295,38.90450932144641],[-77.10346096375456,38.90451842260146],[-77.10338494470992,38.90453389456616],[-77.10331009518903,38.9045557373405],[-77.10324460185826,38.90457758010812],[-77.1031884647176,38.90459942286904],[-77.10314168376705,38.90462126562323],[-77.10310425900661,38.90464310837069],[-77.1030691732937,38.90466768144899],[-77.10303642662831,38.90469498485812],[-77.10300601901045,38.90472501859809],[-77.10297795044013,38.9047577826689],[-77.10295222091733,38.90478599616945],[-77.10292883044205,38.90480965909976],[-77.10290777901432,38.90482877145983],[-77.10288906663408,38.90484333324967],[-77.10284813330236,38.90485425459204],[-77.10278497901911,38.90486153548695],[-77.10269960378437,38.90486517593441],[-77.1025920075981,38.90486517593441],[-77.1024925980782,38.90485971526211],[-77.10240137522463,38.90484879391749],[-77.10230290702732,38.90482765543577],[-77.10233972249392,38.90479540605016],[-77.10237832142809,38.90475904504196],[-77.10241671720998,38.90472031263818],[-77.10245490983959,38.90467920883884],[-77.10249289931691,38.90463573364393],[-77.10253068564194,38.90458988705345],[-77.10256826881469,38.9045416690674],[-77.10260564883515,38.90449107968577],[-77.10263673113478,38.90444475877546],[-77.10266151571356,38.90440270633647],[-77.1026800025715,38.90436492236879],[-77.10269219170863,38.90433140687242],[-77.10269808312489,38.90430215984736],[-77.10269767682031,38.90427718129361],[-77.1026909727949,38.90425647121118],[-77.10267797104866,38.90424002960006],[-77.10266151571356,38.90422058421684],[-77.10264160678962,38.90419813506153],[-77.10261824427683,38.9041726821341],[-77.1025914281752,38.90414422543459],[-77.10256115848472,38.90411276496297],[-77.10252743520539,38.90407830071926],[-77.10249025833721,38.90404083270344],[-77.10244962788018,38.90400036091553],[-77.10240595013887,38.90395941482244],[-77.1023592251133,38.90391799442416],[-77.10230945280344,38.9038760997207],[-77.10225663320932,38.90383373071207],[-77.10220076633091,38.90379088739824],[-77.10214185216822,38.90374756977924],[-77.10207989072126,38.90370377785506],[-77.10201488199002,38.9036595116257],[-77.10194865434507,38.90361556155841],[-77.10188120778641,38.9035719276532],[-77.10181254231404,38.90352860991005],[-77.10174265792794,38.90348560832899],[-77.10167155462815,38.90344292291],[-77.10159923241466,38.90340055365307],[-77.10152569128745,38.90335850055823],[-77.10145093124652,38.90331676362545],[-77.10137799957616,38.90327803047968],[-77.10130689627638,38.90324230112088],[-77.10123762134715,38.90320957554908],[-77.10117017478849,38.90317985376429],[-77.1011045566004,38.90315313576647],[-77.10104076678286,38.90312942155565],[-77.1009788053359,38.90310871113181],[-77.10091867225951,38.90309100449498],[-77.10085488244198,38.90307440452129],[-77.10078743588332,38.90305891121074],[-77.10071633258352,38.90304452456334],[-77.1006415725426,38.90303124457909],[-77.10056315576054,38.90301907125798],[-77.10048108223734,38.90300800460002],[-77.10039535197302,38.90299804460521],[-77.10030596496757,38.90298919127354],[-77.10021881263725,38.90298065413161],[-77.10013389498208,38.90297243317943],[-77.10005121200203,38.90296452841698],[-77.09997076369712,38.90295693984428],[-77.09989255006735,38.90294966746131],[-77.09981657111271,38.9029427112681],[-77.09974282683322,38.90293607126461],[-77.09967131722885,38.90292974745088],[-77.09958843109652,38.90292073600961],[-77.09949416843624,38.90290903694081],[-77.09938852924797,38.90289465024447],[-77.09927151353173,38.90287757592061],[-77.09912280605903,38.90285433586496],[-77.09894240682983,38.90282493007754],[-77.09866937015863,38.90277892424558],[-77.09866301591727,38.90277783635657],[-77.09867149737902,38.9027614133646],[-77.0986916577823,38.90271921512969],[-77.09870990642318,38.90267755787279],[-77.0987262433017,38.9026364415939],[-77.09874066841783,38.90259586629298],[-77.09875318177158,38.90255583197008],[-77.09876969244668,38.90251498611225],[-77.09879020044312,38.90247332871954],[-77.09881470576089,38.90243085979191],[-77.09884320839998,38.90238757932936],[-77.09887570836042,38.90234348733192],[-77.09891220564222,38.90229858379958],[-77.09895270024533,38.90225286873232],[-77.0989971921698,38.90220634213015],[-77.09904064131479,38.90216170903528],[-77.09908304768028,38.9021189694477],[-77.0991244112663,38.90207812336742],[-77.09916473207285,38.90203917079441],[-77.09920401009991,38.90200211172871],[-77.0992422453475,38.9019669461703],[-77.0992794378156,38.90193367411918],[-77.09931558750422,38.90190229557535],[-77.09935225858258,38.90186848245988],[-77.09938945105068,38.90183223477277],[-77.09942716490853,38.90179355251401],[-77.09946540015611,38.90175243568361],[-77.09950415679343,38.90170888428157],[-77.0995434348205,38.90166289830789],[-77.09958323423731,38.90161447776256],[-77.09962355504385,38.90156362264558],[-77.09966787317174,38.90151398477872],[-77.09971618862096,38.90146556416197],[-77.09976850139151,38.90141836079532],[-77.09982481148342,38.90137237467877],[-77.09988511889664,38.90132760581234],[-77.09994942363122,38.901284054196],[-77.10001772568712,38.90124171982978],[-77.10009002506438,38.90120060271366],[-77.10015989128951,38.90116110862787],[-77.10022732436252,38.90112323757243],[-77.10029232428342,38.90108698954733],[-77.10035489105218,38.90105236455256],[-77.10041502466883,38.90101936258814],[-77.10047272513337,38.90098798365405],[-77.10052799244579,38.9009582277503],[-77.10058082660608,38.90093009487688],[-77.10063400835953,38.90090453183135],[-77.10068753770615,38.9008815386137],[-77.10074141464594,38.90086111522392],[-77.10079563917887,38.90084326166203],[-77.10085021130497,38.900827977928],[-77.10090513102423,38.90081526402187],[-77.10096039833664,38.9008051199436],[-77.10101601324222,38.90079754569322],[-77.10107075916488,38.90079091822412],[-77.10112463610466,38.90078523753634],[-77.10117764406154,38.90078050362985],[-77.10122978303552,38.90077671650466],[-77.1012810530266,38.90077387616076],[-77.10133145403478,38.90077198259817],[-77.10138098606005,38.90077103581687],[-77.10142964910244,38.90077103581687],[-77.1014767479756,38.90077211785257],[-77.10152228267955,38.90077428192398],[-77.10156625321426,38.90077752803109],[-77.10160865957977,38.9007818561739],[-77.10164950177604,38.90078726635242],[-77.10168877980311,38.90079375856664],[-77.10172649366095,38.90080133281656],[-77.10176264334957,38.90080998910219],[-77.10179914063136,38.90081999792858],[-77.10183598550628,38.90083135929575],[-77.1018731779744,38.90084407320369],[-77.10191071803567,38.9008581396524],[-77.1019486056901,38.90087355864188],[-77.10198684093767,38.90089033017212],[-77.10202542377841,38.90090845424315],[-77.10206435421233,38.90092793085494],[-77.10209859213857,38.90094957152014],[-77.10212813755716,38.90097337623873],[-77.10215299046808,38.90099934501072],[-77.10217315087137,38.90102747783612],[-77.10218861876697,38.90105777471492],[-77.10219939415494,38.90109023564712],[-77.10220547703523,38.90112486063272],[-77.10220686740786,38.90116164967171],[-77.10220999574629,38.90119938546209],[-77.10221486205053,38.90123806800387],[-77.10222146632057,38.90127769729703],[-77.10222980855642,38.90131827334157],[-77.10223988875805,38.90135979613751],[-77.10225170692549,38.90140226568483],[-77.10226526305871,38.90144568198354],[-77.10228055715775,38.90149004503364],[-77.10229967478155,38.90153332603799],[-77.10232261593009,38.90157552499659],[-77.1023493806034,38.90161664190945],[-77.10237996880147,38.90165667677657],[-77.10241438052429,38.90169562959794],[-77.10245261577188,38.90173350037356],[-77.10249467454423,38.90177028910344],[-77.10254055684132,38.90180599578758],[-77.10258817710422,38.90184237871243],[-77.10263753533293,38.90187943787799],[-77.10268863152743,38.90191717328426],[-77.10274146568771,38.90195558493126],[-77.10279603781382,38.90199467281896],[-77.10285234790571,38.90203443694737],[-77.10291039596341,38.90207487731649],[-77.1029701819869,38.90211599392634],[-77.10302996801039,38.90215656950798],[-77.1030897540339,38.9021966040614],[-77.10314954005739,38.90223609758662],[-77.10320932608087,38.90227505008364],[-77.10326911210436,38.90231346155244],[-77.10332889812787,38.90235133199305],[-77.10338868415135,38.90238866140544],[-77.10344847017485,38.90242544978962],[-77.1035077348086,38.90246183240296],[-77.10356647805263,38.90249780924545],[-77.1036246999069,38.90253338031708],[-77.10368240037143,38.90256854561786],[-77.10373957944623,38.9026033051478],[-77.10379623713128,38.90263765890688],[-77.10385237342661,38.90267160689512],[-77.10390798833217,38.90270514911251],[-77.10397646418467,38.90274193731193],[-77.10405780098407,38.9027819714934],[-77.10415199873039,38.90282525165691],[-77.10425905742363,38.90287177780245],[-77.10437897706379,38.90292154993003],[-77.10451175765084,38.90297456803967],[-77.10465739918482,38.90303083213134],[-77.10481590166572,38.90309034220504],[-77.10496936404579,38.90314849973998],[-77.10511778632504,38.90320530473613],[-77.10526116850349,38.90326075719351],[-77.10539951058109,38.90331485711212],[-77.1055328125579,38.90336760449195],[-77.1056610744339,38.90341899933301],[-77.10578429620905,38.90346904163528],[-77.1059024778834,38.90351773139878],[-77.10601023176295,38.90356195792832],[-77.10610755784771,38.90360172122391],[-77.10619445613767,38.90363702128553],[-77.10627092663285,38.90366785811318],[-77.10633696933323,38.90369423170688],[-77.10639258423879,38.90371614206662],[-77.10643777134958,38.9037335891924],[-77.10647253066556,38.90374657308422],[-77.10650833276102,38.90375942172508],[-77.10654517763597,38.90377213511498],[-77.10658306529039,38.90378471325392],[-77.1066219957243,38.9037971561419],[-77.10666196893769,38.90380946377892],[-77.10670298493054,38.90382163616499],[-77.10674504370289,38.9038336733001],[-77.1067881452547,38.90384557518424],[-77.10683524412786,38.90385707132108],[-77.10688634032235,38.90386816171063],[-77.10694143383819,38.90387884635287],[-77.10700052467537,38.90388912524779],[-77.10706361283388,38.90389899839542],[-77.10713069831372,38.90390846579575],[-77.10720178111492,38.90391752744877],[-77.10727686123744,38.90392618335449],[-77.10735211515654,38.90393578599705],[-77.10742754287224,38.90394633537646],[-77.10750314438451,38.9039578314927],[-77.10757891969335,38.9039702743458],[-77.10765486879879,38.90398366393573],[-77.10773099170079,38.9039980002625],[-77.10780728839939,38.90401328332613],[-77.10788375889454,38.90402951312659],[-77.10795223474705,38.90404073873732],[-77.10801271595685,38.90404696015828],[-77.10806520252399,38.90404817738951],[-77.10810969444846,38.90404439043099],[-77.10814619173024,38.90403559928272],[-77.10817469436934,38.90402180394472],[-77.10819520236578,38.90400300441695],[-77.10812905248892,38.9041750611682],[-77.1080946731927,38.90426245506454],[-77.10807001451813,38.90432253835638],[-77.10804772647893,38.90437442846055],[-77.10802780907508,38.90441812537703],[-77.10800781231114,38.90446000157809],[-77.10798773618711,38.90450005706374],[-77.10796758070299,38.90453829183397],[-77.10794734585879,38.90457470588878],[-77.10792853377707,38.9046102587867],[-77.10791114445783,38.90464495052772],[-77.10789517790109,38.90467878111184],[-77.10788063410681,38.90471175053905],[-77.10786751307502,38.90474385880938],[-77.10785581480572,38.90477510592279],[-77.10784553929889,38.90480549187932],[-77.10783668655456,38.90483501667894],[-77.10782894040327,38.90486515656303],[-77.107822300845,38.90489591153161],[-77.1078167678798,38.90492728158465],[-77.10781234150762,38.90495926672217],[-77.1078090217285,38.90499186694416],[-77.10780680854242,38.90502508225062],[-77.10780570194937,38.90505891264156],[-77.10780570194937,38.90509335811696],[-77.10780696662714,38.90512755753795],[-77.10780949598266,38.90516151090453],[-77.10781329001595,38.90519521821669],[-77.10781834872699,38.90522867947442],[-77.10782467211581,38.90526189467774],[-77.10783226018239,38.90529486382665],[-77.10784111292674,38.90532758692115],[-77.10785123034881,38.90536006396121],[-77.10786308670285,38.90539303305999],[-77.10787668198878,38.90542649421745],[-77.10789201620668,38.90546044743361],[-77.10790908935647,38.90549489270848],[-77.1079279014382,38.90552983004203],[-77.10794845245184,38.90556525943428],[-77.10797074239741,38.90560118088523],[-77.10799477127489,38.90563759439488],[-77.10802117142319,38.90567191658032],[-77.1080499428423,38.90570414744155],[-77.10808108553221,38.90573428697857],[-77.10811459949291,38.9057623351914],[-77.10815048472443,38.90578829208],[-77.10818874122674,38.90581215764439],[-77.10822936899987,38.90583393188458],[-77.10827236804381,38.90585361480056],[-77.10831299581693,38.90587342072888],[-77.10835125231927,38.90589334966957],[-77.10838713755078,38.9059134016226],[-77.10842065151147,38.90593357658798],[-77.10845179420139,38.90595387456572],[-77.10848056562048,38.90597429555581],[-77.10850696576878,38.90599483955825],[-77.10853099464629,38.90601550657303],[-77.1085521779988,38.90603838789488],[-77.10857051582639,38.90606348352377],[-77.10858600812898,38.90609079345971],[-77.10859865490659,38.90612031770271],[-77.10860845615926,38.90615205625275],[-77.10861541188694,38.90618600910985],[-77.10861952208968,38.906222176274],[-77.10862078676745,38.90626055774519],[-77.10861272444671,38.90630373683804],[-77.10859533512746,38.90635171355253],[-77.10856861880973,38.90640448788867],[-77.1085325754935,38.90646205984646],[-77.10848720517876,38.90652442942589],[-77.10846957165222,38.906546083042]]]],"type":"MultiPolygon"} +},{ + "id": 1108726441, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00004, + "geom:area_square_m":387957.144499, + "geom:bbox":"-77.1084695717,38.9045065911,-77.0987817122,38.9128190561", + "geom:latitude":38.908146, + "geom:longitude":-77.103833, + "iso:country":"US", + "lbl:latitude":38.907933, + "lbl:longitude":-77.10431, + "lbl:max_zoom":18.0, + "mps:latitude":38.907933, + "mps:longitude":-77.10431, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:afr_x_preferred":[ + "Dover" + ], + "name:als_x_preferred":[ + "Dover" + ], + "name:ang_x_preferred":[ + "Dofras" + ], + "name:ara_x_preferred":[ + "\u062f\u0648\u0641\u0631" + ], + "name:azb_x_preferred":[ + "\u062f\u0648\u0648\u0631" + ], + "name:aze_x_preferred":[ + "Duvr" + ], + "name:bel_x_preferred":[ + "\u0414\u0443\u045e\u0440" + ], + "name:bre_x_preferred":[ + "Dover" + ], + "name:bul_x_preferred":[ + "\u0414\u0443\u0432\u044a\u0440" + ], + "name:cat_x_preferred":[ + "Dover" + ], + "name:ces_x_preferred":[ + "Dover" + ], + "name:che_x_preferred":[ + "\u0414\u0443\u0432\u0440" + ], + "name:cym_x_preferred":[ + "Dover" + ], + "name:dan_x_preferred":[ + "Dover" + ], + "name:deu_x_preferred":[ + "Dover" + ], + "name:ell_x_preferred":[ + "\u039d\u03c4\u03cc\u03b2\u03b5\u03c1" + ], + "name:epo_x_preferred":[ + "Dovro" + ], + "name:est_x_preferred":[ + "Dover" + ], + "name:eus_x_preferred":[ + "Dover" + ], + "name:fas_x_preferred":[ + "\u062f\u0648\u0648\u0631" + ], + "name:fin_x_preferred":[ + "Dover" + ], + "name:fra_x_preferred":[ + "Douvres" + ], + "name:frr_x_preferred":[ + "Dover" + ], + "name:fry_x_preferred":[ + "Dover" + ], + "name:gle_x_preferred":[ + "Dover" + ], + "name:glg_x_preferred":[ + "Dover" + ], + "name:heb_x_preferred":[ + "\u05d3\u05d5\u05d1\u05e8" + ], + "name:hun_x_preferred":[ + "Dover" + ], + "name:hye_x_preferred":[ + "\u0534\u0578\u0582\u057e\u0580" + ], + "name:ido_x_preferred":[ + "Dover" + ], + "name:ind_x_preferred":[ + "Dover" + ], + "name:isl_x_preferred":[ + "Dover" + ], + "name:ita_x_preferred":[ + "Dover" + ], + "name:jpn_x_preferred":[ + "\u30c9\u30fc\u30d0\u30fc" + ], + "name:kat_x_preferred":[ + "\u10d3\u10e3\u10d5\u10e0\u10d8" + ], + "name:lat_x_preferred":[ + "Dubris" + ], + "name:lav_x_preferred":[ + "Duvra" + ], + "name:lit_x_preferred":[ + "Doveris" + ], + "name:mar_x_preferred":[ + "\u0921\u094b\u0935\u094d\u0939\u0930" + ], + "name:nld_x_preferred":[ + "Dover" + ], + "name:nno_x_preferred":[ + "Dover" + ], + "name:nor_x_preferred":[ + "Dover" + ], + "name:pol_x_preferred":[ + "Dover" + ], + "name:por_x_preferred":[ + "Dover" + ], + "name:ron_x_preferred":[ + "Dover" + ], + "name:rus_x_preferred":[ + "\u0414\u0443\u0432\u0440" + ], + "name:sco_x_preferred":[ + "Dover" + ], + "name:slk_x_preferred":[ + "Dover" + ], + "name:slv_x_preferred":[ + "Dover" + ], + "name:spa_x_preferred":[ + "Dover" + ], + "name:srd_x_preferred":[ + "Dover" + ], + "name:srp_x_preferred":[ + "\u0414\u043e\u0432\u0435\u0440" + ], + "name:swe_x_preferred":[ + "Dover" + ], + "name:szl_x_preferred":[ + "Dover" + ], + "name:tur_x_preferred":[ + "Dover" + ], + "name:ukr_x_preferred":[ + "\u0414\u0443\u0432\u0440" + ], + "name:urd_x_preferred":[ + "\u0688\u0648\u0648\u0631" + ], + "name:vol_x_preferred":[ + "Dover" + ], + "name:war_x_preferred":[ + "Dover" + ], + "name:zho_x_preferred":[ + "\u591a\u4f5b\u5c14" + ], + "reversegeo:latitude":38.907933, + "reversegeo:longitude":-77.10431, + "src:geom":"mz", + "wof:belongsto":[ + 420546579, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"83202e21dfc1bf2e047800ac20ff2644", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726441, + "neighbourhood_id":420546579, + "region_id":85688747 + } + ], + "wof:id":1108726441, + "wof:lastmodified":1566623890, + "wof:name":"Dover", + "wof:parent_id":420546579, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420785093 + ], + "wof:tags":[] +}, + "bbox": [ + -77.10846957165222, + 38.90450659110102, + -77.09878171224709, + 38.91281905609551 +], + "geometry": {"coordinates":[[[[-77.10230290702732,38.90482765543577],[-77.10240137522463,38.90484879391749],[-77.1024925980782,38.90485971526211],[-77.1025920075981,38.90486517593441],[-77.10269960378437,38.90486517593441],[-77.10278497901911,38.90486153548695],[-77.10284813330236,38.90485425459204],[-77.10288906663408,38.90484333324967],[-77.10290777901432,38.90482877145983],[-77.10292883044205,38.90480965909976],[-77.10295222091733,38.90478599616945],[-77.10297795044013,38.9047577826689],[-77.10300601901045,38.90472501859809],[-77.10303642662831,38.90469498485812],[-77.1030691732937,38.90466768144899],[-77.10310425900661,38.90464310837069],[-77.10314168376705,38.90462126562323],[-77.1031884647176,38.90459942286904],[-77.10324460185826,38.90457758010812],[-77.10331009518903,38.9045557373405],[-77.10338494470992,38.90453389456616],[-77.10346096375456,38.90451842260146],[-77.10353815232295,38.90450932144641],[-77.10361651041512,38.90450659110102],[-77.10369603803107,38.90451023156528],[-77.10378024374205,38.90451478214504],[-77.10386912754811,38.90452024284031],[-77.10396268944919,38.90452661365109],[-77.10406092944535,38.90453389457736],[-77.10415098277515,38.90454117550289],[-77.10423284943862,38.90454845642768],[-77.10430652943573,38.90455573735171],[-77.10437202276651,38.904563018275],[-77.10443283800223,38.90457302954125],[-77.10448897514287,38.90458577115048],[-77.10454043418848,38.90460124310267],[-77.10458721513903,38.90461944539782],[-77.10463399608958,38.90463582746122],[-77.10468077704013,38.90465038929287],[-77.10472755799067,38.90466313089276],[-77.10477433894123,38.90467405226089],[-77.10483281512941,38.90469225452674],[-77.10490298655523,38.9047177376903],[-77.1049848532187,38.90475050175158],[-77.10507841511979,38.90479054671057],[-77.10515911225949,38.90482604109652],[-77.10522694463779,38.90485698490943],[-77.10528191225468,38.90488337814929],[-77.10532401511017,38.90490522081612],[-77.1053649484419,38.90492797358556],[-77.10540471224986,38.90495163645764],[-77.10544330653407,38.90497620943233],[-77.10548073129452,38.90500169250965],[-77.10552283415002,38.90502990590082],[-77.10556961510056,38.90506084960583],[-77.10562107414617,38.90509452362469],[-77.10567721128682,38.90513092795739],[-77.10573685699876,38.90516642216582],[-77.10580001128201,38.90520100624997],[-77.10586667413654,38.90523468020984],[-77.10593684556237,38.90526744404543],[-77.10602806841594,38.9053093088968],[-77.10614034269724,38.90536027476397],[-77.10627366840632,38.90542034164692],[-77.10642804554314,38.90548950954566],[-77.10657657506114,38.905558677377],[-77.10671925696032,38.90562784514096],[-77.10685609124067,38.90569701283754],[-77.1069870779022,38.90576618046671],[-77.10711338646868,38.90583079755086],[-77.10723501694011,38.90589086408995],[-77.10735196931648,38.905946380084],[-77.1074642435978,38.90599734553302],[-77.10756599216525,38.90604467057042],[-77.10765721501882,38.9060883551962],[-77.10773791215851,38.90612839941036],[-77.10780808358435,38.90616480321292],[-77.10792269691319,38.9062285096807],[-77.10808175214505,38.90631951881372],[-77.10834723403943,38.90647423422786],[-77.10846957165222,38.906546083042],[-77.10843250786552,38.90659159662697],[-77.10836848355378,38.9066635614497],[-77.10829513224354,38.90674032389408],[-77.10822162284857,38.90681351881061],[-77.10814795536891,38.90688314619929],[-77.10807412980451,38.90694920606013],[-77.10800014615538,38.90701169839312],[-77.10792600442154,38.90707062319827],[-77.10785170460298,38.90712598047556],[-77.1077772466997,38.90717777022502],[-77.1077026307117,38.90722599244664],[-77.10763259918059,38.90727003212207],[-77.10756715210636,38.90730988925132],[-77.10750628948904,38.9073455638344],[-77.10745001132859,38.90737705587129],[-77.10739831762506,38.90740436536201],[-77.10735120837839,38.90742749230655],[-77.10730868358863,38.90744643670492],[-77.10727074325574,38.9074611985571],[-77.10723612270199,38.90747694452681],[-77.10720482192737,38.90749367461402],[-77.10717684093187,38.90751138881876],[-77.1071521797155,38.90753008714101],[-77.10713083827825,38.90754976958078],[-77.10711281662013,38.90757043613807],[-77.10709811474113,38.90759208681287],[-77.10708673264126,38.9076147216052],[-77.10707708947332,38.90764276902411],[-77.10706918523729,38.90767622906962],[-77.10706301993321,38.90771510174173],[-77.10705859356104,38.90775938704043],[-77.10705590612079,38.90780908496573],[-77.10705495761248,38.90786419551762],[-77.10705574803607,38.90792471869611],[-77.10705827739159,38.90799065450118],[-77.10706159717071,38.90805745133702],[-77.10706570737345,38.90812510920361],[-77.10707060799979,38.90819362810096],[-77.10707629904971,38.90826300802907],[-77.10708278052326,38.90833324898793],[-77.10709005242039,38.90840435097755],[-77.10709811474113,38.90847631399792],[-77.10710696748546,38.90854913804904],[-77.10711250045068,38.90861962479337],[-77.10711471363676,38.90868777423091],[-77.10711360704373,38.90875358636166],[-77.10710918067156,38.90881706118559],[-77.10710143452026,38.90887819870274],[-77.10709036858984,38.90893699891308],[-77.10707598288027,38.90899346181664],[-77.10705827739162,38.90904758741339],[-77.10704041381821,38.90909703851844],[-77.10702239216009,38.90914181513178],[-77.10700421241725,38.90918191725342],[-77.10698587458967,38.90921734488334],[-77.1069673786774,38.90924809802158],[-77.10694872468039,38.90927417666809],[-77.10692991259867,38.90929558082291],[-77.10691094243225,38.90931231048602],[-77.106889600995,38.90933211543794],[-77.10686588828695,38.90935499567868],[-77.10683980430809,38.90938095120823],[-77.10681134905843,38.9094099820266],[-77.10678052253796,38.90944208813378],[-77.10674732474669,38.90947726952977],[-77.10671175568461,38.90951552621459],[-77.10667381535173,38.90955685818821],[-77.1066355588494,38.9095976980938],[-77.10659698617764,38.90963804593134],[-77.10655809733643,38.90967790170083],[-77.10651889232579,38.90971726540229],[-77.10647937114571,38.90975613703569],[-77.10643953379618,38.90979451660106],[-77.10639938027721,38.90983240409839],[-77.10635891058881,38.90986979952767],[-77.10631907323929,38.90990461171369],[-77.10627986822863,38.90993684065643],[-77.10624129555687,38.9099664863559],[-77.106203355224,38.9099935488121],[-77.10616604723,38.91001802802504],[-77.10612937157487,38.9100399239947],[-77.10609332825864,38.9100592367211],[-77.10605791728129,38.91007596620423],[-77.10602345481226,38.91009244966227],[-77.10598994085154,38.91010868709522],[-77.10595737539916,38.9101246785031],[-77.10592575845509,38.91014042388588],[-77.10589509001935,38.91015592324358],[-77.10586537009192,38.9101711765762],[-77.10583659867282,38.91018618388372],[-77.10580877576203,38.91020094516618],[-77.10577953008877,38.9102253012137],[-77.10574886165303,38.91025925202629],[-77.10571677045479,38.91030279760395],[-77.10568325649409,38.91035593794669],[-77.10564831977089,38.9104186730545],[-77.1056119602852,38.91049100292739],[-77.10557417803705,38.91057292756534],[-77.10553497302639,38.91066444696838],[-77.10549671652407,38.91075202998891],[-77.10545940853008,38.91083567662695],[-77.10542304904439,38.91091538688251],[-77.10538763806704,38.91099116075556],[-77.105353175598,38.91106299824613],[-77.1053196616373,38.91113089935421],[-77.10528709618491,38.91119486407978],[-77.10525547924084,38.91125489242287],[-77.10522465272038,38.91131147649561],[-77.10519461662351,38.91136461629799],[-77.10516537095025,38.91141431183001],[-77.1051369157006,38.91146056309168],[-77.10510925087453,38.911503370083],[-77.10508237647208,38.91154273280395],[-77.10505629249322,38.91157865125456],[-77.10503099893796,38.91161112543481],[-77.10500159517997,38.91165036499664],[-77.10496808121927,38.91169636994005],[-77.10493045705583,38.91174914026504],[-77.10488872268965,38.91180867597163],[-77.10484287812076,38.91187497705978],[-77.10479292334912,38.91194804352951],[-77.10473885837477,38.91202787538083],[-77.10468068319769,38.91211447261374],[-77.1046272505622,38.91219344336556],[-77.10457856046835,38.91226478763632],[-77.1045346129161,38.912328505426],[-77.10449540790543,38.91238459673461],[-77.1044609454364,38.91243306156215],[-77.10443122550899,38.91247389990863],[-77.10440624812318,38.91250711177402],[-77.10438601327897,38.91253269715835],[-77.1043659365195,38.91255815952732],[-77.10434601784473,38.91258349888095],[-77.10432625725468,38.91260871521921],[-77.10430665474937,38.91263380854213],[-77.10428721032875,38.91265877884968],[-77.10426792399288,38.91268362614189],[-77.10424879574171,38.91270835041875],[-77.10422982557527,38.91273295168025],[-77.10416342999272,38.91281905609551],[-77.10405624855235,38.91267649156077],[-77.10401735971115,38.91263307025944],[-77.10397562534496,38.91257993144913],[-77.10393057119967,38.91252494748335],[-77.10388219727524,38.91246811836209],[-77.1038305035717,38.91240944408536],[-77.10377549008902,38.91234892465314],[-77.10371715682723,38.91228656006545],[-77.10365550378629,38.9122223503223],[-77.10359053096623,38.91215629542365],[-77.10352223836703,38.91208839536954],[-77.10345236492064,38.91202098728538],[-77.10338091062705,38.91195407117118],[-77.10330787548625,38.91188764702694],[-77.10323325949825,38.91182171485267],[-77.10315706266304,38.91175627464835],[-77.10307928498064,38.911691326414],[-77.10299992645103,38.9116268701496],[-77.10291898707422,38.91156290585518],[-77.10283583451132,38.91149808043564],[-77.10275046876234,38.91143239389101],[-77.10266288982727,38.91136584622128],[-77.10257309770611,38.91129843742645],[-77.10248109239888,38.91123016750652],[-77.10238687390556,38.91116103646149],[-77.10229044222615,38.91109104429136],[-77.10219179736066,38.91102019099613],[-77.1020964722743,38.91095118278864],[-77.10200446696706,38.91088401966888],[-77.10191578143895,38.91081870163687],[-77.10183041568996,38.91075522869259],[-77.1017483697201,38.91069360083605],[-77.10166964352938,38.91063381806724],[-77.10159423711777,38.91057588038618],[-77.10152215048529,38.91051978779284],[-77.10144785066673,38.9104617269736],[-77.10137133766209,38.91040169792845],[-77.10129261147137,38.9103397006574],[-77.10121167209454,38.91027573516044],[-77.10112851953164,38.91020980143757],[-77.10104315378265,38.91014189948879],[-77.10095557484759,38.91007202931411],[-77.10086578272643,38.91000019091351],[-77.10077788762192,38.90992909051469],[-77.10069188953406,38.90985872811764],[-77.10060778846284,38.90978910372237],[-77.10052558440826,38.90972021732887],[-77.10044527737034,38.90965206893714],[-77.10036686734904,38.90958465854719],[-77.10029035434439,38.909517986159],[-77.1002157383564,38.9094520517726],[-77.10014238704615,38.90938747047026],[-77.10007030041368,38.909324242252],[-77.09999947845895,38.90926236711783],[-77.09992992118202,38.90920184506772],[-77.09986162858283,38.90914267610169],[-77.0997946006614,38.90908486021975],[-77.09972883741773,38.90902839742188],[-77.09966433885185,38.90897328770809],[-77.09959825943875,38.90891657876965],[-77.09953059917842,38.90885827060659],[-77.09946135807093,38.90879836321888],[-77.0993905361162,38.90873685660652],[-77.0993181333143,38.90867375076954],[-77.09924414966517,38.90860904570792],[-77.09916858516884,38.90854274142166],[-77.09909143982532,38.90847483791076],[-77.09901476873594,38.908408533529],[-77.09893857190075,38.90834382827637],[-77.0988628493197,38.90828072215288],[-77.09878760099282,38.90821921515853],[-77.09878171224709,38.9082144971838],[-77.09884550318984,38.90816567175322],[-77.09901290067278,38.90803920469784],[-77.09912463442959,38.9079570010875],[-77.09921788132846,38.90789060583882],[-77.09929264136939,38.90784001895177],[-77.09936130684176,38.90779575539857],[-77.09942387774558,38.90775781517921],[-77.09948035408084,38.90772619829369],[-77.09953073584755,38.90770090474203],[-77.09958233652796,38.90767687586361],[-77.0996351561221,38.90765411165846],[-77.09968919462995,38.90763261212656],[-77.0997444520515,38.90761237726792],[-77.09980092838677,38.90759340708254],[-77.09985862363573,38.90757570157042],[-77.09991753779842,38.90755926073155],[-77.09997767087482,38.90754408456594],[-77.10004003862636,38.90753143776163],[-77.10010464105301,38.90752132031861],[-77.10017147815482,38.90751373223689],[-77.10024054993177,38.90750867351646],[-77.10031185638385,38.90750614415732],[-77.10038539751105,38.90750614415949],[-77.10046117331341,38.90750867352295],[-77.1005391837909,38.90751373224771],[-77.10061374067953,38.90751847480203],[-77.10068484397934,38.90752290118591],[-77.10075249369028,38.90752701139937],[-77.10081668981238,38.9075308054424],[-77.10087743234563,38.90753428331499],[-77.10093472129003,38.90753744501716],[-77.10098855664558,38.90754029054888],[-77.1010389384123,38.90754281991016],[-77.10108891387443,38.90754424267573],[-77.101138483032,38.90754455884554],[-77.10118764588501,38.90754376841964],[-77.10123640243341,38.90754187139799],[-77.10128475267729,38.9075388677806],[-77.10133269661657,38.90753475756749],[-77.10138023425129,38.90752954075863],[-77.10142736558146,38.90752321735405],[-77.1014704338659,38.90751404841014],[-77.10150943910465,38.90750203392691],[-77.10154438129769,38.90748717390436],[-77.10157526044503,38.90746946834248],[-77.10160207654667,38.90744891724129],[-77.1016248296026,38.90742552060077],[-77.10164351961282,38.90739927842094],[-77.10165814657736,38.9073701907018],[-77.10166972625761,38.907340628712],[-77.10167825865358,38.90731059245156],[-77.10168374376528,38.90728008192048],[-77.10168618159271,38.90724909711875],[-77.10168557213585,38.90721763804638],[-77.10168191539472,38.90718570470337],[-77.1016752113693,38.90715329708972],[-77.10166546005962,38.90712041520543],[-77.10165591190221,38.90708468773876],[-77.10164656689709,38.90704611468971],[-77.10163742504426,38.90700469605829],[-77.10162848634371,38.90696043184448],[-77.10161975079545,38.90691332204831],[-77.10161121839948,38.90686336666975],[-77.10160288915579,38.90681056570883],[-77.10159476306438,38.90675491916552],[-77.10158805903897,38.90670101154807],[-77.10158277707956,38.90664884285648],[-77.10157891718615,38.90659841309073],[-77.10157647935871,38.90654972225083],[-77.10157546359729,38.90650277033679],[-77.10157586990186,38.90645755734861],[-77.10157769827242,38.90641408328628],[-77.10158094870899,38.90637234814979],[-77.1015833865364,38.90632982254473],[-77.10158501175468,38.90628650647108],[-77.10158582436382,38.90624239992885],[-77.10158582436382,38.90619750291803],[-77.10158501175468,38.90615181543863],[-77.1015833865364,38.90610533749064],[-77.10158094870899,38.90605806907407],[-77.10157769827242,38.90601001018891],[-77.10157668251099,38.90596116082233],[-77.10157790142472,38.90591152097431],[-77.10158135501356,38.90586109064488],[-77.10158704327753,38.90580986983402],[-77.10159496621667,38.90575785854173],[-77.10160512383092,38.90570505676801],[-77.10161751612031,38.90565146451287],[-77.10163214308486,38.90559708177629],[-77.10164819211538,38.90554633508059],[-77.1016656632119,38.90549922442575],[-77.10168455637442,38.90545574981179],[-77.10170487160293,38.90541591123869],[-77.10172660889744,38.90537970870646],[-77.10174976825795,38.90534714221509],[-77.10177434968443,38.90531821176459],[-77.10180035317694,38.90529291735496],[-77.101826762974,38.90526714866401],[-77.10185357907562,38.90524090569173],[-77.10188080148183,38.90521418843813],[-77.10190843019262,38.90518699690321],[-77.10193646520796,38.90515933108696],[-77.10196490652788,38.90513119098941],[-77.10199375415236,38.90510257661052],[-77.10202300808142,38.90507348795032],[-77.10205348092418,38.9050440830955],[-77.10208517268066,38.90501436204607],[-77.10211808335086,38.90498432480205],[-77.10215221293475,38.90495397136341],[-77.10218756143237,38.90492330173017],[-77.10222412884369,38.90489231590232],[-77.10226191516873,38.90486101387986],[-77.10230092040746,38.90482939566279],[-77.10230290702732,38.90482765543577]]]],"type":"MultiPolygon"} +},{ + "id": 1108726789, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":104651.77509, + "geom:bbox":"-77.042529,38.86365,-77.037733,38.8675668749", + "geom:latitude":38.865358, + "geom:longitude":-77.039544, + "iso:country":"US", + "lbl:latitude":38.910344, + "lbl:longitude":-77.145508, + "lbl:max_zoom":18.0, + "mps:latitude":38.910344, + "mps:longitude":-77.145508, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Gravelly Point" + ], + "name:eng_x_variant":[ + "Gravelly Point Park" + ], + "name:pol_x_preferred":[ + "Gravelly Point" + ], + "reversegeo:latitude":38.910344, + "reversegeo:longitude":-77.145508, + "src:geom":"mz", + "wof:belongsto":[ + 85876017, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"231e679c8e992c5fc3b135d2e27201f2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726789, + "neighbourhood_id":85876017, + "region_id":85688747 + } + ], + "wof:id":1108726789, + "wof:lastmodified":1566623916, + "wof:name":"Gravelly Point", + "wof:parent_id":85876017, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.042529, + 38.86365, + -77.037733, + 38.86756687488033 +], + "geometry": {"coordinates":[[[[-77.042452,38.863945],[-77.04215022694083,38.86410724272824],[-77.04197691559611,38.86422048065269],[-77.04183147494609,38.86433879468277],[-77.04168037465088,38.86448021178827],[-77.04152361471046,38.8646447319692],[-77.04137171607381,38.86480976983481],[-77.04122467874095,38.8649753253851],[-77.04108250271184,38.86514139862007],[-77.04094518798651,38.86530798953972],[-77.04081905004115,38.86546401287056],[-77.04070408887576,38.8656094686126],[-77.04060030449033,38.86574435676582],[-77.04050769688487,38.86586867733024],[-77.04042307269367,38.86599486246578],[-77.04034643191675,38.86612291217241],[-77.04027777455408,38.86625282645017],[-77.04021710060567,38.86638460529905],[-77.04016201504726,38.86650954639265],[-77.04011251787882,38.86662764973099],[-77.04006860910037,38.86673891531407],[-77.0400302887119,38.86684334314188],[-77.03999755671343,38.86695709463754],[-77.03997041310492,38.86708016980104],[-77.03994885788642,38.86721256863238],[-77.0399328910579,38.86735429113156],[-77.03990894081511,38.86756687488033],[-77.03887508866799,38.86755817265509],[-77.03835049336872,38.86755375698843],[-77.038349,38.867551],[-77.038337,38.867527],[-77.038291,38.867442],[-77.038282,38.867419],[-77.038274,38.867397],[-77.038267,38.867374],[-77.038262,38.867351],[-77.038256,38.867322],[-77.03824899999999,38.867296],[-77.038239,38.867272],[-77.038228,38.867247],[-77.03821499999999,38.867223],[-77.038202,38.867199],[-77.038185,38.867162],[-77.038175,38.867139],[-77.03816500000001,38.867115],[-77.038155,38.867091],[-77.038147,38.867067],[-77.03814,38.867043],[-77.038135,38.86701],[-77.038127,38.866975],[-77.038115,38.866941],[-77.0381,38.866907],[-77.038083,38.866873],[-77.038067,38.866839],[-77.03805199999999,38.866804],[-77.03804100000001,38.866776],[-77.03802899999999,38.866749],[-77.038017,38.866721],[-77.03800699999999,38.866693],[-77.037998,38.866664],[-77.03799100000001,38.86661],[-77.03798500000001,38.866577],[-77.037975,38.866545],[-77.037964,38.866513],[-77.037953,38.86648],[-77.037943,38.866448],[-77.037932,38.8664],[-77.037925,38.866363],[-77.037916,38.866326],[-77.037907,38.866289],[-77.037898,38.866252],[-77.03789,38.866215],[-77.03788400000001,38.866178],[-77.037879,38.866134],[-77.03787800000001,38.866108],[-77.03787699999999,38.866082],[-77.037875,38.866056],[-77.037873,38.86603],[-77.03786599999999,38.865987],[-77.037862,38.865968],[-77.037859,38.865949],[-77.03785499999999,38.865929],[-77.037851,38.86591],[-77.037847,38.865891],[-77.037841,38.865858],[-77.037837,38.865828],[-77.037837,38.865797],[-77.03783799999999,38.865767],[-77.037837,38.865737],[-77.03783,38.865708],[-77.037811,38.865676],[-77.037797,38.865651],[-77.037786,38.865596],[-77.037785,38.865567],[-77.037785,38.865538],[-77.037783,38.865504],[-77.03778,38.865477],[-77.03777700000001,38.86545],[-77.037772,38.865423],[-77.037768,38.865396],[-77.037764,38.865368],[-77.037758,38.865331],[-77.037753,38.865294],[-77.03774799999999,38.865257],[-77.037744,38.865221],[-77.03774,38.865184],[-77.03773700000001,38.865147],[-77.037735,38.865106],[-77.037735,38.865087],[-77.037734,38.865066],[-77.037734,38.865045],[-77.037738,38.865023],[-77.03774199999999,38.864965],[-77.037738,38.864944],[-77.037735,38.864919],[-77.037733,38.864895],[-77.037734,38.864872],[-77.037734,38.86485],[-77.037735,38.864828],[-77.037739,38.864781],[-77.037746,38.864749],[-77.037755,38.864718],[-77.037763,38.864687],[-77.03777599999999,38.864644],[-77.03778800000001,38.864614],[-77.037796,38.864597],[-77.037803,38.864579],[-77.037812,38.864561],[-77.03782099999999,38.864544],[-77.03783199999999,38.864512],[-77.037845,38.86448],[-77.03785999999999,38.864447],[-77.03787199999999,38.864413],[-77.037879,38.864395],[-77.03788400000001,38.864375],[-77.03789,38.864357],[-77.037897,38.864339],[-77.03790600000001,38.864322],[-77.037915,38.864303],[-77.037924,38.864284],[-77.037935,38.864267],[-77.037947,38.864251],[-77.03796199999999,38.864235],[-77.03799100000001,38.864205],[-77.038009,38.864191],[-77.038026,38.864177],[-77.038043,38.864163],[-77.038071,38.864138],[-77.038094,38.864112],[-77.03811,38.864099],[-77.03813,38.864087],[-77.03816999999999,38.864067],[-77.03819,38.864057],[-77.03821000000001,38.864047],[-77.038252,38.864028],[-77.038274,38.864021],[-77.038321,38.864013],[-77.03836800000001,38.864012],[-77.03841199999999,38.864007],[-77.038455,38.863997],[-77.03849700000001,38.863994],[-77.038539,38.864],[-77.03858099999999,38.864],[-77.038616,38.863985],[-77.03865399999999,38.86397],[-77.038676,38.863964],[-77.038698,38.863957],[-77.03872,38.863951],[-77.038746,38.863947],[-77.03877,38.863944],[-77.038793,38.863941],[-77.038816,38.863938],[-77.038839,38.863935],[-77.038884,38.863924],[-77.038926,38.863919],[-77.03896899999999,38.863916],[-77.03904,38.863912],[-77.03906499999999,38.863911],[-77.039089,38.863912],[-77.039114,38.86391],[-77.03913900000001,38.863908],[-77.039164,38.863906],[-77.039193,38.863904],[-77.039219,38.863902],[-77.039247,38.863899],[-77.03927,38.863897],[-77.039294,38.863895],[-77.03932,38.863893],[-77.039345,38.86389],[-77.03937000000001,38.863888],[-77.039394,38.863887],[-77.039421,38.863889],[-77.03946500000001,38.86389],[-77.03950500000001,38.863882],[-77.03954899999999,38.863874],[-77.039573,38.863872],[-77.039619,38.863871],[-77.039644,38.863872],[-77.039686,38.863869],[-77.039743,38.86385],[-77.039773,38.863841],[-77.039812,38.863829],[-77.039852,38.863819],[-77.039889,38.86381],[-77.039929,38.863802],[-77.03997,38.863793],[-77.040038,38.86378],[-77.04006200000001,38.863775],[-77.040086,38.863771],[-77.04011199999999,38.863766],[-77.040137,38.863762],[-77.040178,38.86375],[-77.04021400000001,38.863732],[-77.04023599999999,38.863726],[-77.04033099999999,38.863709],[-77.040357,38.863705],[-77.040386,38.863701],[-77.04041599999999,38.863696],[-77.040447,38.863694],[-77.040477,38.863692],[-77.040505,38.863691],[-77.040533,38.86369],[-77.040561,38.863688],[-77.040589,38.863686],[-77.040617,38.863683],[-77.040646,38.86368],[-77.04067499999999,38.863677],[-77.04070400000001,38.863672],[-77.040733,38.863668],[-77.040761,38.863664],[-77.04078699999999,38.86366],[-77.040828,38.863662],[-77.040863,38.863664],[-77.040896,38.863655],[-77.040932,38.86365],[-77.04097400000001,38.863675],[-77.040994,38.863736],[-77.041031,38.863736],[-77.041067,38.863736],[-77.041099,38.863735],[-77.041135,38.863735],[-77.04116500000001,38.863736],[-77.041196,38.863735],[-77.041225,38.863736],[-77.041287,38.863708],[-77.041296,38.863691],[-77.041319,38.863682],[-77.04135100000001,38.863689],[-77.04138500000001,38.863687],[-77.04142,38.86368],[-77.041462,38.863675],[-77.041507,38.863675],[-77.04154800000001,38.863678],[-77.041588,38.863673],[-77.04162700000001,38.863669],[-77.041669,38.863667],[-77.041693,38.863669],[-77.041719,38.863672],[-77.041747,38.863674],[-77.041775,38.863677],[-77.041802,38.863682],[-77.041828,38.863687],[-77.04186300000001,38.863698],[-77.0419,38.8637],[-77.041933,38.863712],[-77.041962,38.863726],[-77.04199300000001,38.863736],[-77.04203,38.863745],[-77.042069,38.863753],[-77.042112,38.86376],[-77.042136,38.863761],[-77.04218400000001,38.863754],[-77.04221699999999,38.863741],[-77.04224000000001,38.863727],[-77.04227400000001,38.863724],[-77.042306,38.86372],[-77.04233600000001,38.863711],[-77.04236400000001,38.863698],[-77.042395,38.863689],[-77.042434,38.863686],[-77.042475,38.863683],[-77.04250500000001,38.863684],[-77.042529,38.863701],[-77.042452,38.863945]]]],"type":"MultiPolygon"} +},{ + "id": 1108726791, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":137195.505863, + "geom:bbox":"-77.0717912288,38.8876761396,-77.0661854857,38.8919891774", + "geom:latitude":38.889471, + "geom:longitude":-77.0696, + "iso:country":"US", + "lbl:latitude":38.878055, + "lbl:longitude":-77.055401, + "lbl:max_zoom":18.0, + "mps:latitude":38.878055, + "mps:longitude":-77.055401, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "US Marine Corps War Memorial", + "Marine Corps Memorial" + ], + "reversegeo:latitude":38.878055, + "reversegeo:longitude":-77.055401, + "src:geom":"mz", + "wof:belongsto":[ + 1108726275, + 102191575, + 85633793, + 101729469, + 102085953, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7943e2371812f748fceddc1714aa85a9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726791, + "neighbourhood_id":1108726275, + "region_id":85688747 + } + ], + "wof:id":1108726791, + "wof:lastmodified":1566623918, + "wof:name":"United States Marine Corps War Memorial", + "wof:parent_id":1108726275, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -77.07179122881169, + 38.88767613957687, + -77.06618548574748, + 38.89198917740066 +], + "geometry": {"coordinates":[[[[-77.06794088664543,38.89040368664377],[-77.0679429725528,38.89021814247329],[-77.06793796900948,38.89011086635674],[-77.06792432298226,38.89002377076581],[-77.06790749288201,38.8899356129268],[-77.06788747870874,38.88984639283971],[-77.06786337072731,38.88976319149724],[-77.06783516893769,38.88968600889937],[-77.06780287333991,38.88961484504613],[-77.06776648393398,38.8895496999375],[-77.06770735114932,38.88946649810836],[-77.06762547498595,38.88936523955874],[-77.06752085544386,38.88924592428862],[-77.06739349252308,38.889108552298],[-77.06727522695377,38.88899065305868],[-77.06716605873594,38.88889222657068],[-77.0670659878696,38.88881327283397],[-77.06697501435474,38.88875379184858],[-77.06689404792652,38.8886978513646],[-77.06682308858493,38.88864545138203],[-77.06676213632998,38.88859659190088],[-77.06671119116166,38.88855127292114],[-77.06665660705275,38.88850099712735],[-77.06659838400324,38.88844576451949],[-77.06653652201314,38.88838557509757],[-77.06647102108244,38.88832042886159],[-77.06641552723838,38.88825811502559],[-77.06637004048093,38.88819863358957],[-77.06633456081015,38.88814198455353],[-77.06630908822598,38.88808816791748],[-77.06628634484727,38.88803930805584],[-77.066266330674,38.88799540496862],[-77.06624540676559,38.88794796127123],[-77.06618548574748,38.88782784361941],[-77.06621966975894,38.88786282033359],[-77.06625275106035,38.887892968971],[-77.06628472965173,38.88791828953164],[-77.06631560553303,38.88793878201549],[-77.06634537870431,38.88795444642257],[-77.06637404916555,38.88796528275287],[-77.06640161691672,38.88797129100639],[-77.06643097657174,38.88797676280862],[-77.06646212813057,38.88798169815955],[-77.06649507159322,38.88798609705917],[-77.06652980695971,38.88798995950749],[-77.06656633423002,38.88799328550451],[-77.06660465340416,38.88799607505023],[-77.06664476448212,38.88799832814465],[-77.06668666746393,38.88800004478777],[-77.06678356810932,38.88799704065359],[-77.06693546641833,38.88798931574215],[-77.06714236239092,38.88797687005341],[-77.06740425602712,38.88795970358739],[-77.06778138286325,38.88793331014719],[-77.06827374289932,38.8878976897328],[-77.06906204274429,38.88783932375356],[-77.07065553102521,38.88768030078995],[-77.0706966305324,38.8877011080175],[-77.07078551239346,38.88771047129292],[-77.07092217660842,38.88770839061622],[-77.07110662317727,38.88769486598738],[-77.07126834806735,38.88768498260455],[-77.07140735127865,38.88767874046771],[-77.07152363281118,38.88767613957687],[-77.07161719266495,38.88767717993203],[-77.07168803083994,38.88768186153317],[-77.07173614733615,38.88769018438031],[-77.07176154215361,38.88770214847344],[-77.07176421529228,38.88771775381257],[-77.07176683018758,38.88773324901875],[-77.07176938683955,38.88774863409199],[-77.07177188524813,38.8877639090323],[-77.07177432541334,38.88777907383968],[-77.07177698323417,38.88779596904856],[-77.07177985871058,38.88781459465895],[-77.07178377953953,38.88784047227421],[-77.07179122881169,38.88789016670439],[-77.07178171004242,38.88790868965238],[-77.07176832427315,38.88793462172684],[-77.07175107150385,38.88796796292775],[-77.07172995173457,38.88800871325512],[-77.07170496496525,38.88805687270894],[-77.07167611119593,38.88811244128922],[-77.0716433904266,38.88817541899596],[-77.07160680265724,38.88824580582915],[-77.0715663478879,38.8883236017888],[-77.07153035504163,38.88840139766325],[-77.07149882411844,38.8884791934525],[-77.07147175511835,38.88855698915656],[-77.07144914804137,38.88863478477542],[-77.07143100288746,38.88871258030908],[-77.07141731965663,38.88879037575754],[-77.07140809834891,38.88886817112081],[-77.07140333896429,38.88894596639888],[-77.07139976942581,38.88902260393853],[-77.07139738973349,38.88909808373975],[-77.07139619988733,38.88917240580258],[-77.07139619988733,38.88924557012697],[-77.07139738973349,38.88931757671296],[-77.07139976942581,38.88938842556053],[-77.07140333896429,38.88945811666968],[-77.07140809834891,38.88952665004042],[-77.07141285773355,38.88959726710387],[-77.07141761711819,38.88966996786004],[-77.07142237650282,38.88974475230894],[-77.07142713588743,38.88982162045055],[-77.07143189527207,38.88990057228487],[-77.07143665465671,38.88998160781193],[-77.07144141404135,38.89006472703169],[-77.07144617342595,38.89014992994417],[-77.07145063534905,38.89023490122811],[-77.07145479981061,38.89031964088351],[-77.07145866681063,38.89040414891036],[-77.07146223634908,38.89048842530866],[-77.07146550842602,38.89057247007842],[-77.07146848304141,38.89065628321963],[-77.07147116019527,38.8907398647323],[-77.07147353988759,38.89082321461642],[-77.07147532465683,38.89090980573674],[-77.07147651450299,38.89099963809326],[-77.07147710942607,38.89109271168599],[-77.07147710942607,38.89118902651492],[-77.07147651450299,38.89128858258004],[-77.07147532465683,38.89139137988136],[-77.07147353988759,38.89149741841889],[-77.07147116019527,38.89160669819262],[-77.07146283127217,38.89198917740066],[-77.07110468757871,38.89191786807483],[-77.07100236080915,38.89189749398174],[-77.07090509088576,38.89187758293187],[-77.07081287780852,38.89185813492522],[-77.07072572157747,38.8918391499618],[-77.07064362219262,38.89182062804159],[-77.0705665796539,38.89180256916461],[-77.07049459396137,38.89178497333086],[-77.07042766511499,38.89176784054033],[-77.07036579311479,38.89175117079303],[-77.07029975665304,38.89173010205961],[-77.07022955572972,38.89170463434007],[-77.07015519034488,38.89167476763443],[-77.07007666049847,38.89164050194267],[-77.06999396619051,38.89160183726479],[-77.06990710742102,38.8915587736008],[-77.06981608418994,38.89151131095069],[-77.06972089649733,38.89145944931448],[-77.06963106311241,38.8914103659632],[-77.06954658403524,38.89136406089686],[-77.06946745926575,38.89132053411546],[-77.06939368880396,38.891279785619],[-77.06932527264989,38.89124181540748],[-77.06926221080354,38.89120662348089],[-77.0692045032649,38.89117420983925],[-77.06915215003394,38.89114457448254],[-77.06909801203378,38.89111331842061],[-77.06904208926436,38.89108044165343],[-77.06898438172571,38.89104594418103],[-77.06892488941783,38.8910098260034],[-77.06886361234071,38.89097208712053],[-77.06880055049436,38.89093272753243],[-77.06873570387876,38.8908917472391],[-77.06866907249395,38.89084914624054],[-77.06860303603219,38.8908072398027],[-77.06853759449352,38.8907660279256],[-77.06847274787792,38.89072551060923],[-77.06840849618541,38.89068568785358],[-77.06834483941597,38.89064655965866],[-77.06828177756961,38.89060812602449],[-77.06821931064633,38.89057038695103],[-77.06815743864614,38.8905333424383],[-77.06794088664543,38.89040368664377]]]],"type":"MultiPolygon"} +},{ + "id": 1108726793, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000091, + "geom:area_square_m":876653.217898, + "geom:bbox":"-77.0840371319,38.8864187158,-77.0678073264,38.8950855055", + "geom:latitude":38.890988, + "geom:longitude":-77.076275, + "iso:country":"US", + "lbl:latitude":38.891181, + "lbl:longitude":-77.07644, + "lbl:max_zoom":18.0, + "mps:latitude":38.890953, + "mps:longitude":-77.076276, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Fort Myer Hts", + "Ft Myer Heights", + "Ft Myer Hts", + "Radnor", + "Radnor/Fort Myer Heights", + "Radnor/Fort Myer Hts", + "Radnor/Ft. Myer Heights", + "Radnor/Ft. Myer Hts" + ], + "reversegeo:latitude":38.890953, + "reversegeo:longitude":-77.076276, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85688747, + 102191575, + 85633793, + 101729469, + 102085953 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2c2c276662105e5c67832b6e5c13ced3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726793, + "region_id":85688747 + } + ], + "wof:id":1108726793, + "wof:lastmodified":1566623918, + "wof:name":"Fort Myer Heights", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85820167 + ], + "wof:tags":[] +}, + "bbox": [ + -77.08403713191575, + 38.88641871584444, + -77.06780732641424, + 38.89508550545247 +], + "geometry": {"coordinates":[[[[-77.08403713191575,38.8917354097252],[-77.08351106846251,38.89192373260843],[-77.0832321969593,38.89202551963241],[-77.08302516292173,38.89210354509153],[-77.08283151485494,38.89217873375061],[-77.08265125275899,38.89225108560964],[-77.08246489280224,38.89232757559022],[-77.0822724349847,38.89240820369236],[-77.08207387930636,38.89249296991606],[-77.08186922576725,38.8925818742613],[-77.08166635699736,38.89266985242186],[-77.08146527299672,38.89275690439774],[-77.08126597376531,38.89284303018893],[-77.08106845930313,38.89292822979542],[-77.08087272961019,38.89301250321723],[-77.08067878468648,38.89309585045435],[-77.08048662453201,38.89317827150678],[-77.08029624914678,38.89325976637453],[-77.08011182299234,38.89333709384712],[-77.07993334606869,38.89341025392459],[-77.07976081837582,38.89347924660689],[-77.07959423991375,38.89354407189406],[-77.07943361068246,38.89360472978608],[-77.07927893068195,38.89366122028296],[-77.07913019991224,38.89371354338469],[-77.07898741837333,38.89376169909128],[-77.07884880129596,38.89380846566873],[-77.07871434868014,38.89385384311704],[-77.07858406052587,38.89389783143621],[-77.07845793683316,38.89394043062624],[-77.07833597760199,38.89398164068714],[-77.07821818283239,38.89402146161889],[-77.07810455252434,38.89405989342151],[-77.07799508667783,38.89409693609498],[-77.0778823487544,38.89413212662551],[-77.07776633875402,38.8941654650131],[-77.07764705667671,38.89419695125774],[-77.07752450252248,38.89422658535942],[-77.0773986762913,38.89425436731816],[-77.07726957798319,38.89428029713395],[-77.07713720759814,38.89430437480679],[-77.07700156513617,38.8943266003367],[-77.07681446182788,38.89435391917942],[-77.07657589767325,38.89438633133498],[-77.07628587267232,38.89442383680337],[-77.07594438682507,38.89446643558458],[-77.07555144013149,38.89451412767863],[-77.0751070325916,38.89456691308552],[-77.07461116420538,38.89462479180523],[-77.07406383497286,38.89468776383777],[-77.07357153612512,38.89474517950387],[-77.07313426766217,38.89479703880353],[-77.07275202958402,38.89484334173676],[-77.07242482189065,38.89488408830355],[-77.07215264458209,38.89491927850389],[-77.07193549765832,38.89494891233781],[-77.07177338111933,38.89497298980528],[-77.07166629496514,38.89499151090631],[-77.07156515804174,38.89500841141006],[-77.07146997034911,38.89502369131653],[-77.07138073188729,38.89503735062571],[-77.07129744265626,38.89504938933763],[-77.07122010265601,38.89505980745225],[-77.07114871188654,38.89506860496959],[-77.07108327034787,38.89507578188964],[-77.07102377803999,38.89508133821241],[-77.07096190603978,38.89508457940002],[-77.07089765434728,38.89508550545247],[-77.07083102296244,38.89508411636974],[-77.07076201188529,38.89508041215186],[-77.07069062111583,38.8950743927988],[-77.07061685065405,38.89506605831059],[-77.07054070049996,38.8950554086872],[-77.07046217065356,38.89504244392865],[-77.07038364080715,38.89502832159687],[-77.07030511096075,38.89501304169184],[-77.07022658111434,38.89499660421359],[-77.07014805126794,38.89497900916211],[-77.07006952142153,38.89496025653739],[-77.06999099157512,38.89494034633942],[-77.06991246172872,38.89491927856824],[-77.06983393188231,38.89489705322381],[-77.06975688934361,38.89487274423661],[-77.06968133411259,38.89484635160664],[-77.06960726618928,38.89481787533389],[-77.06953468557366,38.89478731541837],[-77.06946359226575,38.89475467186006],[-77.06939398626551,38.89471994465898],[-77.06932586757299,38.89468313381512],[-77.06925923618816,38.8946442393285],[-77.0691917124187,38.89460349268843],[-77.06912329626465,38.89456089389495],[-77.06905398772597,38.89451644294803],[-77.06898378680265,38.89447013984768],[-77.06891269349472,38.89442198459392],[-77.0688407078022,38.89437197718671],[-77.06876782972503,38.89432011762608],[-77.06869405926325,38.89426640591201],[-77.06862534564765,38.89421315719346],[-77.06856168887822,38.89416037147041],[-77.06850308895494,38.89410804874285],[-77.06844954587785,38.8940561890108],[-77.06840105964692,38.89400479227426],[-77.06835763026217,38.89395385853322],[-77.06831925772359,38.89390338778768],[-77.06828594203117,38.89385338003764],[-77.06825262633876,38.89380360377169],[-77.06821931064633,38.89375405898982],[-77.06818599495392,38.89370474569203],[-77.0681526792615,38.89365566387832],[-77.0681193635691,38.89360681354869],[-77.06808604787668,38.89355819470315],[-77.06805273218427,38.89350980734169],[-77.06801941649184,38.89346165146432],[-77.06798848049175,38.89340863361262],[-77.06795992418395,38.89335075378659],[-77.06793374756849,38.89328801198624],[-77.06790995064534,38.89322040821156],[-77.0678885334145,38.89314794246256],[-77.06786949587597,38.89307061473923],[-77.06785283802976,38.89298842504159],[-77.06783855987587,38.89290137336962],[-77.06782695887583,38.89281779444266],[-77.06781803502965,38.89273768826071],[-77.06781178833731,38.89266105482377],[-77.06780821879886,38.89258789413185],[-77.06780732641424,38.89251820618494],[-77.06780911118346,38.89245199098303],[-77.06781357310655,38.89238924852614],[-77.0678207121835,38.89232997881427],[-77.06782725633737,38.89226908837934],[-77.06783320556815,38.89220657722136],[-77.06783855987587,38.89214244534031],[-77.06784331926049,38.89207669273622],[-77.06784748372205,38.89200931940907],[-77.06785105326053,38.89194032535886],[-77.06785402787592,38.8918697105856],[-77.06785640756823,38.89179747508928],[-77.06785938218363,38.89172570257311],[-77.06786295172211,38.89165439303709],[-77.06786711618366,38.89158354648121],[-77.06787187556827,38.89151316290547],[-77.06787722987599,38.89144324230988],[-77.06788317910679,38.89137378469443],[-77.06788972326066,38.89130479005912],[-77.06789686233759,38.89123625840398],[-77.06790340649147,38.89116703209685],[-77.06790935572226,38.89109711113776],[-77.06791471002998,38.8910264955267],[-77.06791946941459,38.89095518526366],[-77.06792363387615,38.89088318034867],[-77.06792720341463,38.89081048078172],[-77.06793017803002,38.89073708656279],[-77.06793255772232,38.89066299769189],[-77.06794088664543,38.89040368664377],[-77.06815743864614,38.8905333424383],[-77.06821931064633,38.89057038695103],[-77.06828177756961,38.89060812602449],[-77.06834483941597,38.89064655965866],[-77.06840849618541,38.89068568785358],[-77.06847274787792,38.89072551060923],[-77.06853759449352,38.8907660279256],[-77.06860303603219,38.8908072398027],[-77.06866907249395,38.89084914624054],[-77.06873570387876,38.8908917472391],[-77.06880055049436,38.89093272753243],[-77.06886361234071,38.89097208712053],[-77.06892488941783,38.8910098260034],[-77.06898438172571,38.89104594418103],[-77.06904208926436,38.89108044165343],[-77.06909801203378,38.89111331842061],[-77.06915215003394,38.89114457448254],[-77.0692045032649,38.89117420983925],[-77.06926221080354,38.89120662348089],[-77.06932527264989,38.89124181540748],[-77.06939368880396,38.891279785619],[-77.06946745926575,38.89132053411546],[-77.06954658403524,38.89136406089686],[-77.06963106311241,38.8914103659632],[-77.06972089649733,38.89145944931448],[-77.06981608418994,38.89151131095069],[-77.06990710742102,38.8915587736008],[-77.06999396619051,38.89160183726479],[-77.07007666049847,38.89164050194267],[-77.07015519034488,38.89167476763443],[-77.07022955572972,38.89170463434007],[-77.07029975665304,38.89173010205961],[-77.07036579311479,38.89175117079303],[-77.07042766511499,38.89176784054033],[-77.07049459396137,38.89178497333086],[-77.0705665796539,38.89180256916461],[-77.07064362219262,38.89182062804159],[-77.07072572157747,38.8918391499618],[-77.07081287780852,38.89185813492522],[-77.07090509088576,38.89187758293187],[-77.07100236080915,38.89189749398174],[-77.07110468757871,38.89191786807483],[-77.07146283127217,38.89198917740066],[-77.07147116019527,38.89160669819262],[-77.07147353988759,38.89149741841889],[-77.07147532465683,38.89139137988136],[-77.07147651450299,38.89128858258004],[-77.07147710942607,38.89118902651492],[-77.07147710942607,38.89109271168599],[-77.07147651450299,38.89099963809326],[-77.07147532465683,38.89090980573674],[-77.07147353988759,38.89082321461642],[-77.07147116019527,38.8907398647323],[-77.07146848304141,38.89065628321963],[-77.07146550842602,38.89057247007842],[-77.07146223634908,38.89048842530866],[-77.07145866681063,38.89040414891036],[-77.07145479981061,38.89031964088351],[-77.07145063534905,38.89023490122811],[-77.07144617342595,38.89014992994417],[-77.07144141404135,38.89006472703169],[-77.07143665465671,38.88998160781193],[-77.07143189527207,38.88990057228487],[-77.07142713588743,38.88982162045055],[-77.07142237650282,38.88974475230894],[-77.07141761711819,38.88966996786004],[-77.07141285773355,38.88959726710387],[-77.07140809834891,38.88952665004042],[-77.07140333896429,38.88945811666968],[-77.07139976942581,38.88938842556053],[-77.07139738973349,38.88931757671296],[-77.07139619988733,38.88924557012697],[-77.07139619988733,38.88917240580258],[-77.07139738973349,38.88909808373975],[-77.07139976942581,38.88902260393853],[-77.07140333896429,38.88894596639888],[-77.07140809834891,38.88886817112081],[-77.07141731965663,38.88879037575754],[-77.07143100288746,38.88871258030908],[-77.07144914804137,38.88863478477542],[-77.07147175511835,38.88855698915656],[-77.07149882411844,38.8884791934525],[-77.07153035504163,38.88840139766325],[-77.0715663478879,38.8883236017888],[-77.07160680265724,38.88824580582915],[-77.0716433904266,38.88817541899596],[-77.07167611119593,38.88811244128922],[-77.07170496496525,38.88805687270894],[-77.07172995173457,38.88800871325512],[-77.07175107150385,38.88796796292775],[-77.07176832427315,38.88793462172684],[-77.07178171004242,38.88790868965238],[-77.07179122881169,38.88789016670439],[-77.0718584551196,38.8878688652972],[-77.07198338896615,38.8878447854308],[-77.07216603035135,38.8878179271052],[-77.07240637927521,38.88778829032041],[-77.07270443573771,38.88775587507641],[-77.07306019973886,38.88772068137322],[-77.07347367127865,38.88768270921082],[-77.07394485035709,38.88764195858921],[-77.0744279278971,38.88760329179524],[-77.07492290389871,38.88756670882887],[-77.07542977836188,38.88753220969013],[-77.07594855128663,38.887499794379],[-77.07647922267296,38.88746946289548],[-77.07702179252085,38.88744121523959],[-77.07757626083034,38.8874150514113],[-77.07814262760139,38.88739097141064],[-77.07864325537224,38.88736990141005],[-77.07907814414288,38.88735184140956],[-77.07944729391329,38.88733679140914],[-77.07975070468351,38.88732475140881],[-77.07998837645349,38.88731572140856],[-77.08016030922329,38.8873097014084],[-77.08026650299286,38.88730669140831],[-77.0803069577622,38.88730669140831],[-77.08034979222388,38.88730391293945],[-77.08039500637787,38.88729835600174],[-77.08044260022419,38.88729002059515],[-77.0804925737628,38.88727890671971],[-77.08054492699374,38.88726501437542],[-77.080599659917,38.88724834356226],[-77.08065677253256,38.88722889428024],[-77.08071626484045,38.88720666652936],[-77.08078914291761,38.88718281799076],[-77.08087540676404,38.88715734866443],[-77.08097505637974,38.88713025855038],[-77.08108809176473,38.8871015476486],[-77.08121451291898,38.8870712159591],[-77.0813543198425,38.88703926348187],[-77.0815075125353,38.88700569021691],[-77.08167409099738,38.88697049616423],[-77.08182936592095,38.88693784904436],[-77.08197333730602,38.88690774885729],[-77.08210600515261,38.88688019560303],[-77.0822273694607,38.88685518928158],[-77.08233743023028,38.88683272989294],[-77.08243618746137,38.8868128174371],[-77.08252364115395,38.88679545191407],[-77.08259979130806,38.88678063332384],[-77.08267401541683,38.88676412528719],[-77.0827463134803,38.88674592780409],[-77.08281668549844,38.88672604087458],[-77.08288513147127,38.88670446449862],[-77.08295165139879,38.88668119867624],[-77.083016245281,38.88665624340744],[-77.08307891311789,38.8866295986922],[-77.08313965490947,38.88660126453051],[-77.08319532475193,38.8865751693403],[-77.08324592264526,38.88655131312154],[-77.08329144858948,38.88652969587423],[-77.08333190258459,38.88651031759838],[-77.0833698054054,38.88649187549523],[-77.08340515705191,38.88647436956478],[-77.08344551984862,38.88645389141078],[-77.08351358076897,38.88641871584444],[-77.08345246584912,38.88657649287254],[-77.08342394555316,38.88681910413415],[-77.08342801988115,38.88714654962929],[-77.08346468883309,38.88755882935796],[-77.08352071084295,38.88809161339803],[-77.08359608591078,38.8887449017495],[-77.08369081403656,38.88951869441238],[-77.0838048952203,38.89041299138665],[-77.08390064192807,38.89108054293022],[-77.0839780541599,38.89152134904307],[-77.08403713191575,38.8917354097252]]]],"type":"MultiPolygon"} +},{ + "id": 1108726795, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":513396.677058, + "geom:bbox":"-77.078678,38.893288,-77.067934,38.900912", + "geom:latitude":38.897356, + "geom:longitude":-77.073131, + "iso:country":"US", + "lbl:latitude":38.897608, + "lbl:longitude":-77.075955, + "lbl:max_zoom":18.0, + "mps:latitude":38.896726, + "mps:longitude":-77.073754, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":38.896726, + "reversegeo:longitude":-77.073754, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 102085953, + 101729469, + 85688747 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3279c867e4b893c0398a032ab5cb1e69", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102085953, + "locality_id":101729469, + "microhood_id":1108726795, + "region_id":85688747 + } + ], + "wof:id":1108726795, + "wof:lastmodified":1587587506, + "wof:name":"North Rosslyn", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85876007 + ], + "wof:tags":[] +}, + "bbox": [ + -77.078678, + 38.893288, + -77.067934, + 38.900912 +], + "geometry": {"coordinates":[[[-77.0755318814271,38.8986804480588],[-77.075419,38.899107],[-77.075326,38.899458],[-77.07526300000001,38.899692],[-77.07521,38.899888],[-77.07516699999999,38.900045],[-77.07512699999999,38.900188],[-77.07508900000001,38.90032],[-77.07505500000001,38.900438],[-77.075023,38.900543],[-77.074913,38.900912],[-77.07454300000001,38.900876],[-77.074336,38.900853],[-77.07416499999999,38.90084],[-77.07399100000001,38.900832],[-77.073812,38.900827],[-77.07363599999999,38.900824],[-77.073463,38.900822],[-77.073292,38.900821],[-77.073125,38.900821],[-77.072956,38.900821],[-77.072785,38.900821],[-77.072613,38.900821],[-77.07244,38.900821],[-77.07227,38.900823],[-77.072102,38.900827],[-77.07193700000001,38.900834],[-77.071775,38.900842],[-77.07160399999999,38.900842],[-77.071422,38.900834],[-77.071231,38.900816],[-77.071029,38.90079],[-77.070852,38.900763],[-77.07069799999999,38.900735],[-77.07056799999999,38.900705],[-77.07046200000001,38.900675],[-77.070358,38.900642],[-77.07025400000001,38.900608],[-77.07015199999999,38.900571],[-77.070052,38.900531],[-77.069947,38.900488],[-77.069838,38.90044],[-77.06972500000001,38.900388],[-77.069607,38.900331],[-77.069497,38.900276],[-77.069394,38.900222],[-77.06929700000001,38.900168],[-77.069208,38.900116],[-77.06912699999999,38.900062],[-77.06905399999999,38.900005],[-77.06899,38.899947],[-77.068934,38.899886],[-77.068882,38.899824],[-77.06883500000001,38.899761],[-77.068792,38.899697],[-77.068753,38.899631],[-77.06871599999999,38.899562],[-77.06868299999999,38.899488],[-77.068652,38.89941],[-77.068624,38.899327],[-77.0686,38.899235],[-77.06858099999999,38.899132],[-77.06856500000001,38.89902],[-77.06855400000001,38.898899],[-77.06854300000001,38.898783],[-77.068532,38.898675],[-77.068521,38.898573],[-77.06851,38.898477],[-77.068504,38.898366],[-77.068504,38.89824],[-77.06851,38.898099],[-77.068521,38.897942],[-77.068528,38.897788],[-77.06853,38.897635],[-77.068528,38.897448],[-77.068516,38.896984],[-77.06850300000001,38.896936],[-77.06849,38.896884],[-77.068479,38.896829],[-77.06846899999999,38.896769],[-77.068459,38.896706],[-77.068444,38.896601],[-77.068421,38.896453],[-77.068393,38.896264],[-77.06835700000001,38.896033],[-77.068307,38.895709],[-77.068243,38.895294],[-77.06814199999999,38.894637],[-77.06793399999999,38.893288],[-77.06796,38.893351],[-77.067988,38.893409],[-77.06801900000001,38.893462],[-77.06805300000001,38.89351],[-77.06808599999999,38.893558],[-77.068119,38.893607],[-77.068153,38.893656],[-77.068186,38.893705],[-77.068219,38.893754],[-77.068253,38.893804],[-77.068286,38.893853],[-77.068319,38.893903],[-77.068358,38.893954],[-77.06840099999999,38.894005],[-77.06845,38.894056],[-77.06850300000001,38.894108],[-77.068562,38.89416],[-77.068625,38.894213],[-77.06869399999999,38.894266],[-77.06876800000001,38.89432],[-77.06884100000001,38.894372],[-77.06891299999999,38.894422],[-77.068984,38.89447],[-77.06905399999999,38.894516],[-77.069123,38.894561],[-77.069192,38.894603],[-77.069259,38.894644],[-77.069326,38.894683],[-77.069394,38.89472],[-77.069464,38.894755],[-77.069535,38.894787],[-77.069607,38.894818],[-77.069681,38.894846],[-77.069757,38.894873],[-77.069834,38.894897],[-77.069912,38.894919],[-77.069991,38.89494],[-77.07007,38.89496],[-77.070148,38.894979],[-77.070227,38.894997],[-77.070305,38.895013],[-77.070384,38.895028],[-77.07046200000001,38.895042],[-77.07054100000001,38.895055],[-77.070617,38.895066],[-77.070691,38.895074],[-77.070762,38.89508],[-77.070831,38.895084],[-77.070898,38.895086],[-77.07096199999999,38.895085],[-77.07102399999999,38.895081],[-77.071083,38.895076],[-77.07114900000001,38.895069],[-77.07122,38.89506],[-77.071297,38.895049],[-77.071381,38.895037],[-77.07147000000001,38.895024],[-77.07156500000001,38.895008],[-77.07166599999999,38.894992],[-77.07177299999999,38.894973],[-77.071935,38.894949],[-77.072153,38.894919],[-77.072425,38.894884],[-77.07275199999999,38.894843],[-77.073134,38.894797],[-77.073572,38.894745],[-77.07406400000001,38.894688],[-77.074611,38.894625],[-77.075107,38.894567],[-77.075551,38.894514],[-77.07594400000001,38.894466],[-77.076286,38.894424],[-77.076576,38.894386],[-77.076814,38.894354],[-77.07700199999999,38.894327],[-77.07713699999999,38.894304],[-77.07727,38.89428],[-77.077399,38.894254],[-77.07752499999999,38.894227],[-77.077647,38.894197],[-77.077766,38.894165],[-77.077882,38.894132],[-77.077995,38.894097],[-77.07810499999999,38.89406],[-77.078203,38.894027],[-77.078678,38.897963],[-77.078627,38.897985],[-77.078503,38.898036],[-77.078373,38.898086],[-77.078237,38.898135],[-77.078096,38.898184],[-77.077949,38.898232],[-77.07779600000001,38.89828],[-77.07764299999999,38.898324],[-77.077489,38.898366],[-77.07733500000001,38.898405],[-77.077181,38.89844],[-77.077026,38.898473],[-77.076871,38.898503],[-77.07671499999999,38.89853],[-77.076559,38.898553],[-77.076403,38.898576],[-77.076247,38.898597],[-77.07609100000001,38.898618],[-77.075935,38.898637],[-77.07577999999999,38.898655],[-77.075624,38.898671],[-77.0755318814271,38.8986804480588]]],"type":"Polygon"} +},{ + "id": 1108739489, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000091, + "geom:area_square_m":973863.22684, + "geom:bbox":"-89.9799729873,30.0160170657,-89.9681230001,30.0267440001", + "geom:latitude":30.021471, + "geom:longitude":-89.973867, + "iso:country":"US", + "lbl:latitude":30.021438, + "lbl:longitude":-89.973867, + "lbl:max_zoom":18.0, + "mps:latitude":30.021438, + "mps:longitude":-89.973867, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":30.021438, + "reversegeo:longitude":-89.973867, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866171, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ae310eb1f10a1acee79459e05737c1ae", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108739489, + "neighbourhood_id":85866171, + "region_id":85688735 + } + ], + "wof:id":1108739489, + "wof:lastmodified":1566623877, + "wof:name":"Donna Villa", + "wof:parent_id":85866171, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85891213 + ], + "wof:tags":[] +}, + "bbox": [ + -89.97997298733789, + 30.01601706573187, + -89.96812300014211, + 30.02674400013827 +], + "geometry": {"coordinates":[[[-89.97862422882923,30.01601706573187],[-89.97876447170317,30.01716394073513],[-89.97901583909378,30.01964878004598],[-89.97918341735419,30.02126298535891],[-89.97928815376696,30.0223511988303],[-89.97935099561462,30.02316735109594],[-89.97943478474483,30.02356635642513],[-89.97953952115758,30.02391095064444],[-89.97981183583076,30.02447318074681],[-89.97997298733789,30.02471236914064],[-89.97977100032958,30.02472600021713],[-89.97918199993163,30.02476499972137],[-89.97873099980721,30.02479899968096],[-89.97842500015996,30.02483400026837],[-89.97793399979109,30.02493099981779],[-89.97715000006697,30.02508299968625],[-89.97651699992515,30.02520799993638],[-89.97588200046046,30.02533099976786],[-89.9752130006939,30.02546099992957],[-89.97422699973916,30.02565400007364],[-89.97343700008969,30.02581600019906],[-89.97286700016261,30.02593999966417],[-89.97216800059518,30.02610000013095],[-89.97111300051614,30.02631799983378],[-89.97055900013495,30.02641600020851],[-89.96948000000496,30.02663100024606],[-89.96895400037725,30.02674400013827],[-89.96890599945552,30.02632599978823],[-89.9688779996183,30.02610399991232],[-89.96882000022316,30.02561499974528],[-89.96875100036975,30.02494699995141],[-89.96870199921135,30.02426599958814],[-89.96862299957331,30.02359499978053],[-89.96855799979942,30.0228849999879],[-89.96847999983612,30.02221299979201],[-89.96839900050293,30.02152100026361],[-89.96832599983888,30.02083000018204],[-89.96823300041507,30.01973999959521],[-89.96815099972379,30.01887000029562],[-89.96812300014211,30.01857699998806],[-89.96855700004761,30.01845500045634],[-89.9693799996021,30.01825099953289],[-89.96985300039714,30.01813899946958],[-89.97012100061097,30.0180750005274],[-89.97050199937954,30.01798400040638],[-89.97107600021728,30.01783199986962],[-89.97289499984477,30.01738599974404],[-89.9750590000785,30.01685599993469],[-89.97552699921579,30.01674100027137],[-89.97643399935505,30.01650600014226],[-89.97692399981646,30.01639199999661],[-89.97782200035954,30.01618699958083],[-89.97851099996946,30.01604099925997],[-89.97862422882923,30.01601706573187]]],"type":"Polygon"} +},{ + "id": 1108739501, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":109726.656069, + "geom:bbox":"-89.9947317373,29.9007082156,-89.9880557441,29.9059964864", + "geom:latitude":29.903293, + "geom:longitude":-89.991454, + "iso:country":"US", + "lbl:latitude":29.903277, + "lbl:longitude":-89.991455, + "lbl:max_zoom":18.0, + "mps:latitude":29.903277, + "mps:longitude":-89.991455, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":29.903277, + "reversegeo:longitude":-89.991455, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866161, + 102191575, + 1108739497, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"68b3e51e9e1a8204368c7d63790f7407", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739497, + "microhood_id":1108739501, + "neighbourhood_id":85866161, + "region_id":85688735 + } + ], + "wof:id":1108739501, + "wof:lastmodified":1566623878, + "wof:name":"Forest Isle", + "wof:parent_id":85866161, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420521745, + 420521759 + ], + "wof:tags":[] +}, + "bbox": [ + -89.99473173729083, + 29.90070821563957, + -89.98805574411486, + 29.90599648635413 +], + "geometry": {"coordinates":[[[-89.99291671850406,29.90070821563957],[-89.99308934390609,29.90079000391536],[-89.99349393469213,29.90100937314485],[-89.99373816040297,29.90114456568183],[-89.99391618034882,29.90124617251329],[-89.99402799452969,29.90131419363924],[-89.99413049086215,29.90137626289177],[-89.9942236693462,29.90143238027087],[-89.99430752998185,29.90148254577655],[-89.99438207276908,29.9015267594088],[-89.99445024018637,29.90156629659026],[-89.99451203223369,29.90160115732093],[-89.99456744891106,29.90163134160079],[-89.99461649021845,29.90165684942985],[-89.99465719450359,29.90168108186276],[-89.99468956176648,29.90170403889951],[-89.99471359200709,29.90172572054011],[-89.99472928522547,29.90174612678456],[-89.99473173729083,29.90176993406045],[-89.99472094820321,29.9017971423678],[-89.99469691796259,29.90182775170661],[-89.99465964656896,29.90186176207686],[-89.9946081531962,29.90190384987666],[-89.99454243784429,29.901954015106],[-89.99446250051322,29.90201225776489],[-89.99436834120301,29.90207857785331],[-89.99425309413063,29.9021585019491],[-89.99411675929606,29.90225203005225],[-89.99395933669932,29.90235916216277],[-89.9937808263404,29.90247989828065],[-89.9936131050691,29.90259595788553],[-89.99345617288544,29.90270734097741],[-89.9933100297894,29.90281404755629],[-89.99317467578098,29.90291607762217],[-89.99299224211745,29.90305211730367],[-89.99276272879885,29.90322216660078],[-89.99248613582512,29.9034262255135],[-89.99216246319629,29.90366429404183],[-89.99188979352715,29.90386750236899],[-89.99166812681773,29.90403585049499],[-89.99149746306799,29.90416933841981],[-89.99137780227794,29.90426796614346],[-89.99125372777023,29.90436659376947],[-89.99112523954486,29.90446522129784],[-89.99099233760181,29.90456384872857],[-89.99085502194109,29.90466247606166],[-89.99070005140972,29.90477513208586],[-89.99052742600767,29.90490181680117],[-89.99033714573497,29.9050425302076],[-89.9901292105916,29.90519727230514],[-89.98994824816731,29.9053320338808],[-89.98979425846207,29.90544681493459],[-89.98966724147591,29.90554161546649],[-89.98956719720883,29.90561643547651],[-89.98948235574703,29.90568105273932],[-89.98941271709053,29.90573546725491],[-89.98935828123932,29.90577967902328],[-89.98931904819341,29.90581368804444],[-89.98927834390827,29.90584557149415],[-89.98923616838391,29.90587532937243],[-89.98919252162032,29.90590296167926],[-89.98914740361751,29.90592846841465],[-89.98910768015851,29.90595014913791],[-89.98907335124333,29.90596800384903],[-89.98904441687196,29.905982032548],[-89.98902087704442,29.90599223523484],[-89.9889948851515,29.90599648635413],[-89.98896644119321,29.90599478590586],[-89.98893554516955,29.90598713389003],[-89.98890219708052,29.90597353030664],[-89.98880019116113,29.90588340603194],[-89.9886295274114,29.90571676106592],[-89.98831321097869,29.90539367382142],[-89.98805574411486,29.9051216362604],[-89.98862462328067,29.90470838893544],[-89.98948775029086,29.90406901030105],[-89.99009193919798,29.9035860726548],[-89.99057058235817,29.90318475649172],[-89.99117477126532,29.90264059640041],[-89.99149648224184,29.90230729687675],[-89.99181819321836,29.90197399623902],[-89.99218698384999,29.90155226730144],[-89.99240668890712,29.90132099583635],[-89.99268916683775,29.90098769189825],[-89.99291671850406,29.90070821563957]]],"type":"Polygon"} +},{ + "id": 1108739503, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000041, + "geom:area_square_m":435732.118479, + "geom:bbox":"-90.1336730627,29.9245392266,-90.1251373911,29.938295", + "geom:latitude":29.932578, + "geom:longitude":-90.129968, + "iso:country":"US", + "lbl:latitude":29.932905, + "lbl:longitude":-90.130032, + "lbl:max_zoom":18.0, + "mps:latitude":29.932905, + "mps:longitude":-90.130032, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:note":"defunct", + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u063a\u0631\u064a\u0646\u0641\u064a\u0644" + ], + "name:bul_x_preferred":[ + "\u0413\u0440\u0438\u0439\u043d\u0432\u0438\u043b" + ], + "name:cat_x_preferred":[ + "Greenville" + ], + "name:ceb_x_preferred":[ + "Greenville" + ], + "name:dan_x_preferred":[ + "Greenville" + ], + "name:deu_x_preferred":[ + "Greenville" + ], + "name:est_x_preferred":[ + "Greenville" + ], + "name:fas_x_preferred":[ + "\u06af\u0631\u06cc\u0646\u0648\u06cc\u0644" + ], + "name:fin_x_preferred":[ + "Greenville" + ], + "name:fra_x_preferred":[ + "Greenville" + ], + "name:heb_x_preferred":[ + "\u05d2\u05e8\u05d9\u05e0\u05d5\u05d5\u05d9\u05dc" + ], + "name:hrv_x_preferred":[ + "Greenville" + ], + "name:hun_x_preferred":[ + "Greenville" + ], + "name:ido_x_preferred":[ + "Greenville" + ], + "name:ind_x_preferred":[ + "Greenville" + ], + "name:ita_x_preferred":[ + "Greenville" + ], + "name:jpn_x_preferred":[ + "\u30b0\u30ea\u30fc\u30f3\u30d3\u30eb" + ], + "name:kor_x_preferred":[ + "\uadf8\ub9b0\ube4c" + ], + "name:lit_x_preferred":[ + "Grinvilis" + ], + "name:nds_x_preferred":[ + "Greenville" + ], + "name:nld_x_preferred":[ + "Greenville" + ], + "name:nor_x_preferred":[ + "Greenville" + ], + "name:pol_x_preferred":[ + "Greenville" + ], + "name:por_x_preferred":[ + "Greenville" + ], + "name:rus_x_preferred":[ + "\u0413\u0440\u0438\u043d\u0432\u0438\u043b\u043b" + ], + "name:sco_x_preferred":[ + "Greenville" + ], + "name:slk_x_preferred":[ + "Greenville" + ], + "name:spa_x_preferred":[ + "Greenville" + ], + "name:swe_x_preferred":[ + "Greenville" + ], + "name:tur_x_preferred":[ + "Greenville" + ], + "name:ukr_x_preferred":[ + "\u0490\u0440\u0456\u043d\u0432\u0456\u043b\u043b" + ], + "name:urd_x_preferred":[ + "\u06af\u0631\u06cc\u0646\u0648\u06cc\u0644" + ], + "name:vol_x_preferred":[ + "Greenville" + ], + "name:war_x_preferred":[ + "Greenville" + ], + "name:zho_x_preferred":[ + "\u683c\u6797\u7ef4\u5c14" + ], + "reversegeo:latitude":29.932905, + "reversegeo:longitude":-90.130032, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866131, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"63d24d69f2d4d564b7c319bb10de8f29", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108739503, + "neighbourhood_id":85866131, + "region_id":85688735 + } + ], + "wof:id":1108739503, + "wof:lastmodified":1566623879, + "wof:name":"Greenville", + "wof:parent_id":85866131, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85823083 + ], + "wof:tags":[] +}, + "bbox": [ + -90.13367306272913, + 29.92453922656607, + -90.12513739110419, + 29.93829500000204 +], + "geometry": {"coordinates":[[[-90.12814800004946,29.93829500000204],[-90.12659069509118,29.93708221474051],[-90.12563509794906,29.93644388901413],[-90.12513739110419,29.93606434204615],[-90.12537255758838,29.93581202852312],[-90.12556168618943,29.9355985314107],[-90.1257831657354,29.9353397462012],[-90.12606312583563,29.93500763805875],[-90.12640156649015,29.93460220698332],[-90.12671512180241,29.93421726193164],[-90.12700379177242,29.93385280290371],[-90.1272675764002,29.93350882989952],[-90.12750647568573,29.93318534291907],[-90.12775035203973,29.93285322839329],[-90.12799920546215,29.93251248632218],[-90.12825303595304,29.93216311670573],[-90.12851184351237,29.93180511954395],[-90.1287806052086,29.9314374161349],[-90.12905932104172,29.93106000647858],[-90.12934799101176,29.93067289057498],[-90.12964661511867,29.93027606842412],[-90.12996514749939,29.92984150243637],[-90.13030358815391,29.92936919261174],[-90.13066193708221,29.92885913895024],[-90.13104019428428,29.92831134145185],[-90.13138734480857,29.92781422445766],[-90.13170338865507,29.92736778796765],[-90.13198832582376,29.92697203198184],[-90.13224215631463,29.92662695650022],[-90.1324947425384,29.92627001759453],[-90.13274608449507,29.92590121526475],[-90.13305839554022,29.92542241721642],[-90.13361831574068,29.92453922656607],[-90.13367306272913,29.92857224238798],[-90.13358300042124,29.92870300045404],[-90.13342699996993,29.92888299985244],[-90.13277100005504,29.92968799999296],[-90.1321820004098,29.93053500004371],[-90.13164200047028,29.93123600033206],[-90.1323930002082,29.93168099969108],[-90.13313200069787,29.93214800054984],[-90.1325309999213,29.93292299959429],[-90.13189999962464,29.93370099971811],[-90.13128400038944,29.93452500031022],[-90.13078900072546,29.93511900005356],[-90.13067200016121,29.93527899935819],[-90.13018800046167,29.93588699979092],[-90.13001500031368,29.93608100008695],[-90.12956099945117,29.93666100047908],[-90.12943499959093,29.93676799994424],[-90.12883400055691,29.93757300008707],[-90.12822899977317,29.93820999993526],[-90.12814800004946,29.93829500000204]]],"type":"Polygon"} +},{ + "id": 1108739505, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":328110.207279, + "geom:bbox":"-89.9615435755,30.0282292963,-89.9518630487,30.0364904169", + "geom:latitude":30.031724, + "geom:longitude":-89.9568, + "iso:country":"US", + "lbl:latitude":30.031637, + "lbl:longitude":-89.956799, + "lbl:max_zoom":18.0, + "mps:latitude":30.031637, + "mps:longitude":-89.956799, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Idlewood", + "Parkwood" + ], + "reversegeo:latitude":30.031637, + "reversegeo:longitude":-89.956799, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866173, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"023f78c0489dfb68673ed53ada738a41", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108739505, + "neighbourhood_id":85866173, + "region_id":85688735 + } + ], + "wof:id":1108739505, + "wof:lastmodified":1566623879, + "wof:name":"Idlewood - Parkwood", + "wof:parent_id":85866173, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420521727 + ], + "wof:tags":[] +}, + "bbox": [ + -89.96154357549827, + 30.0282292962793, + -89.95186304872983, + 30.0364904169342 +], + "geometry": {"coordinates":[[[-89.95692458129734,30.0282292962793],[-89.95736711966389,30.02868726750375],[-89.95749331224496,30.02881597809222],[-89.95757974551969,30.0289117626145],[-89.95765407813595,30.02900156051302],[-89.95771631009374,30.0290853717878],[-89.95776989872407,30.02916469312314],[-89.95781484402693,30.02923952451904],[-89.95785114600231,30.02930986597551],[-89.95787880465022,30.02937571749255],[-89.95791164929462,30.02945503852598],[-89.9579496799355,30.02954782907582],[-89.95799289657285,30.02965408914206],[-89.9580412992067,30.0297738187247],[-89.95808451584405,30.02989055494412],[-89.95812254648493,30.03000429780033],[-89.95815539112931,30.03011504729331],[-89.95818304977723,30.03022280342307],[-89.95821243709062,30.03034702204847],[-89.95824355306954,30.03048770316952],[-89.95827639771392,30.0306448467862],[-89.95831097102382,30.03081845289852],[-89.95834727299919,30.03098457575881],[-89.95838530364007,30.03114321536705],[-89.95842506294645,30.03129437172325],[-89.9584665509183,30.03143804482741],[-89.95850803889017,30.03159069720771],[-89.95854952686204,30.03175232886414],[-89.9585910148339,30.0319229397967],[-89.95863250280577,30.0321025300054],[-89.95867744810862,30.03225967131598],[-89.95872585074247,30.03239436372844],[-89.9587777107073,30.03250660724278],[-89.95883302800311,30.032596401859],[-89.95889698862641,30.03269367923336],[-89.95896959257716,30.03279843936584],[-89.95905083985539,30.03291068225646],[-89.95914073046112,30.0330304079052],[-89.95924790772176,30.03315611964547],[-89.95937237163736,30.03328781747726],[-89.95951412220789,30.03342550140057],[-89.95967315943336,30.03356917141539],[-89.95982182466588,30.03369937226057],[-89.95996011790542,30.03381610393609],[-89.96008803915201,30.03391936644195],[-89.96020558840564,30.03400915977815],[-89.96032140899376,30.03410044958029],[-89.96043550091639,30.03419323584836],[-89.96054786417352,30.03428751858236],[-89.96065849876517,30.03438329778229],[-89.96078642001174,30.03447458726406],[-89.96093162791328,30.03456138702767],[-89.96109412246975,30.03464369707312],[-89.96127390368115,30.03472151740042],[-89.96154357549827,30.03483824789136],[-89.96115981175852,30.03505374937289],[-89.96090396926536,30.03519741702724],[-89.96065331276867,30.03534108447331],[-89.96040784226848,30.03548475171109],[-89.96016755776476,30.0356284187406],[-89.95993245925753,30.03577208556182],[-89.95970427541228,30.03591126262402],[-89.95948300622899,30.0360459499272],[-89.9592686517077,30.03617614747136],[-89.95906121184836,30.03630185525649],[-89.95875005205939,30.0364904169342],[-89.9561674258108,30.03341045639067],[-89.95444567497842,30.03135714936165],[-89.95186304872983,30.02827718881812],[-89.95407746922811,30.02825623583238],[-89.95692458129734,30.0282292962793]]],"type":"Polygon"} +},{ + "id": 1108739507, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000029, + "geom:area_square_m":309031.420252, + "geom:bbox":"-89.9517435441,30.055115108,-89.9438115042,30.062820218", + "geom:latitude":30.058919, + "geom:longitude":-89.947797, + "iso:country":"US", + "lbl:latitude":30.058926, + "lbl:longitude":-89.947797, + "lbl:max_zoom":18.0, + "mps:latitude":30.058926, + "mps:longitude":-89.947797, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Kingswood" + ], + "name:cym_x_preferred":[ + "Kingswood" + ], + "name:deu_x_preferred":[ + "Kingswood" + ], + "name:fra_x_preferred":[ + "Kingswood" + ], + "name:ita_x_preferred":[ + "Kingswood" + ], + "name:kor_x_preferred":[ + "\ud0b9\uc2a4\uc6b0\ub4dc" + ], + "name:nld_x_preferred":[ + "Kingswood" + ], + "name:pol_x_preferred":[ + "Kingswood" + ], + "name:spa_x_preferred":[ + "Kingswood" + ], + "name:swe_x_preferred":[ + "Kingswood" + ], + "reversegeo:latitude":30.058926, + "reversegeo:longitude":-89.947797, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866167, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"5d67a4c5b7f4f35c661a4917de4f6128", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108739507, + "neighbourhood_id":85866167, + "region_id":85688735 + } + ], + "wof:id":1108739507, + "wof:lastmodified":1566623878, + "wof:name":"Kingswood", + "wof:parent_id":85866167, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420521739 + ], + "wof:tags":[] +}, + "bbox": [ + -89.95174354406873, + 30.05511510796105, + -89.94381150418965, + 30.06282021797954 +], + "geometry": {"coordinates":[[[-89.94726224357994,30.05511510796105],[-89.95174354406873,30.06035769790453],[-89.94838718229859,30.06282021797954],[-89.94381150418965,30.05732352900302],[-89.94454299947594,30.05684599923944],[-89.94602699997459,30.0558959995009],[-89.94726224357994,30.05511510796105]]],"type":"Polygon"} +},{ + "id": 1108739509, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000082, + "geom:area_square_m":879802.352168, + "geom:bbox":"-89.9655728781,30.046174389,-89.9506673283,30.0579868048", + "geom:latitude":30.052082, + "geom:longitude":-89.958159, + "iso:country":"US", + "lbl:latitude":30.052118, + "lbl:longitude":-89.958159, + "lbl:max_zoom":18.0, + "mps:latitude":30.052118, + "mps:longitude":-89.958159, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":30.052118, + "reversegeo:longitude":-89.958159, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866167, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1b0b49f5c27dbf0233e5f7aef17e987f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108739509, + "neighbourhood_id":85866167, + "region_id":85688735 + } + ], + "wof:id":1108739509, + "wof:lastmodified":1566623878, + "wof:name":"Lake Carmel", + "wof:parent_id":85866167, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420521729 + ], + "wof:tags":[] +}, + "bbox": [ + -89.96557287809883, + 30.04617438895752, + -89.95066732834732, + 30.05798680483858 +], + "geometry": {"coordinates":[[[-89.96138786273802,30.04617438895752],[-89.96557287809883,30.05114207158717],[-89.95512458548426,30.05798680483858],[-89.95066732834732,30.05295931939734],[-89.95086299963288,30.05283399957813],[-89.95282799989134,30.05161299984222],[-89.9536959997711,30.05106700063975],[-89.95497099964021,30.05023899947241],[-89.95621200008485,30.04945499931278],[-89.95763299976264,30.04855900064829],[-89.95780700056378,30.0484490007004],[-89.95855499948603,30.04799900067853],[-89.95921399991401,30.04757399969997],[-89.96023499920598,30.04692700072561],[-89.96111999938367,30.04634799964875],[-89.96131599979384,30.04621899969893],[-89.96138786273802,30.04617438895752]]],"type":"Polygon"} +},{ + "id": 1108739689, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000079, + "geom:area_square_m":842962.673504, + "geom:bbox":"-90.0621740448,30.0252369999,-90.0520587957,30.0344911359", + "geom:latitude":30.02978, + "geom:longitude":-90.057134, + "iso:country":"US", + "lbl:latitude":30.029704, + "lbl:longitude":-90.057134, + "lbl:max_zoom":18.0, + "mps:latitude":30.029704, + "mps:longitude":-90.057134, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Lk Oaks", + "Lk. Oaks" + ], + "reversegeo:latitude":30.029704, + "reversegeo:longitude":-90.057134, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108739667, + 102191575, + 1108746797, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739491, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"698748ad389687077cdb8b2148a89737", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746797, + "microhood_id":1108739689, + "neighbourhood_id":1108739667, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108739689, + "neighbourhood_id":1108739667, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108739689, + "neighbourhood_id":1108739667, + "region_id":85688735 + } + ], + "wof:id":1108739689, + "wof:lastmodified":1566623879, + "wof:name":"Lake Oaks", + "wof:parent_id":1108739667, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829167 + ], + "wof:tags":[] +}, + "bbox": [ + -90.06217404475652, + 30.02523699994052, + -90.05205879565224, + 30.03449113589351 +], + "geometry": {"coordinates":[[[-90.05266925229668,30.03439900545779],[-90.05205879565224,30.02642183647558],[-90.05206900043457,30.02642000031101],[-90.05224699934131,30.02638799995069],[-90.05330500010713,30.02611299967301],[-90.05346900055643,30.02608699939251],[-90.05364399997642,30.02606000058015],[-90.05445399972866,30.0259339993851],[-90.05494199970394,30.0258620005822],[-90.05551699989299,30.02578500058012],[-90.05646899945795,30.025658999864],[-90.05679099952447,30.02561700003637],[-90.05888399943512,30.02532999942155],[-90.05953499992346,30.02526099928546],[-90.05992099992791,30.02524500026957],[-90.0602330000212,30.02525400064977],[-90.06039799973338,30.02525999953551],[-90.06073100037332,30.02527000020919],[-90.06112000011602,30.02525599982441],[-90.06151599983087,30.02523699994052],[-90.06217404475652,30.03344797274774],[-90.06211472995352,30.03345213769471],[-90.06189922696851,30.03345334491902],[-90.06175773113335,30.033454136837],[-90.06150073149747,30.03346913731182],[-90.06117373039764,30.03350013676471],[-90.06100173116737,30.03353713693502],[-90.06082013863217,30.03360254885683],[-90.06073055109363,30.03365655514048],[-90.06068556868074,30.0336994711104],[-90.06066373108877,30.03384213620886],[-90.0606654954845,30.03385882173677],[-90.06068520497269,30.03404517495543],[-90.06068765850765,30.03408536901668],[-90.06069672975552,30.03425113817045],[-90.06071969243132,30.03433836635914],[-90.06073284133083,30.03435731098293],[-90.06074513970407,30.03437270167009],[-90.0607543475862,30.03439121754732],[-90.06075102540201,30.03441411891948],[-90.0607407247234,30.03444904708547],[-90.0606837307167,30.03447113656757],[-90.06062532934016,30.03446570921462],[-90.06057753728727,30.0344210007579],[-90.06058506033892,30.0344054687056],[-90.06059491135883,30.03438513679718],[-90.06060383392469,30.03436581181224],[-90.06060905698078,30.03434971980826],[-90.06061469971164,30.03431707886848],[-90.06057937125561,30.03408735394509],[-90.06056938961029,30.03405342791144],[-90.06056165590883,30.0340271437356],[-90.06054619432024,30.0339766388106],[-90.06054329670536,30.03396026983378],[-90.06053461633232,30.0338954039822],[-90.06052516575231,30.03381257203651],[-90.06052865219094,30.0337361959914],[-90.06052373099914,30.03370013549436],[-90.06050775881666,30.03367289924178],[-90.06049263306346,30.03365099966764],[-90.06043773315956,30.03361313704795],[-90.06027073057807,30.03357613772717],[-90.06011172868024,30.03356513717326],[-90.05978973030331,30.03357913686068],[-90.05936573010501,30.03364613686342],[-90.05919973241005,30.0337021366204],[-90.05909473326827,30.0337749717475],[-90.05900990496262,30.03384683450968],[-90.0589571663857,30.03392927860699],[-90.05894653933206,30.03400097067375],[-90.05895172923647,30.034089136927],[-90.05897374414774,30.03413122190573],[-90.05898573140719,30.03415413695518],[-90.05902995919743,30.03419897300715],[-90.0590587289355,30.03422813410021],[-90.05912786450689,30.03429025132191],[-90.05918125708909,30.034338219178],[-90.05919133867008,30.03435747531962],[-90.05920308347262,30.03439401329806],[-90.05919886777401,30.03441223791368],[-90.05918320352383,30.03444725481543],[-90.05915880574494,30.03446365836357],[-90.05913075944048,30.03447808412982],[-90.05906672998748,30.03449113589351],[-90.05890972975688,30.03449013721581],[-90.05882235576104,30.0344612037841],[-90.05876073029668,30.03442198610838],[-90.05866340687152,30.03425755499728],[-90.05864445603571,30.03422553499665],[-90.05860143986112,30.03415123327282],[-90.05859280032902,30.0341363090587],[-90.05836902443706,30.03380481599774],[-90.05832265758755,30.03373625322393],[-90.05822581910957,30.03365878765575],[-90.05812277908487,30.03358285888808],[-90.05805996842324,30.03353705853886],[-90.05799372853687,30.03350813702952],[-90.05791772926391,30.03349113580718],[-90.05785772969205,30.03349713637898],[-90.05777242425474,30.03352300586404],[-90.05772835784701,30.03354188559277],[-90.05755765758894,30.03361501867919],[-90.0571682492576,30.0338197915678],[-90.05697749684244,30.03392009928043],[-90.05685100148376,30.03397966828827],[-90.05668972946214,30.03402413794992],[-90.05651772709793,30.03405113657893],[-90.05634372884087,30.03404613740489],[-90.05631848051536,30.03404626157894],[-90.05532573020143,30.03405113690108],[-90.05500973838275,30.03407572743986],[-90.05493350523298,30.03408166022699],[-90.0545547287319,30.03411113558376],[-90.05430093678687,30.03413734249533],[-90.05384772775464,30.03418413815386],[-90.05281772837277,30.03436713751964],[-90.05266925229668,30.03439900545779]]],"type":"Polygon"} +},{ + "id": 1108739923, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000093, + "geom:area_square_m":1000714.421904, + "geom:bbox":"-90.083037,30.0208350003,-90.0707990002,30.0320701366", + "geom:latitude":30.025571, + "geom:longitude":-90.077227, + "iso:country":"US", + "lbl:latitude":30.025202, + "lbl:longitude":-90.077344, + "lbl:max_zoom":18.0, + "mps:latitude":30.025202, + "mps:longitude":-90.077344, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Lake Ter", + "Lk Ter", + "Lk Terrace" + ], + "reversegeo:latitude":30.025202, + "reversegeo:longitude":-90.077344, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108739667, + 102191575, + 1108746797, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739491, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"9ce2570a89ae022379cb4e4ee554380d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746797, + "microhood_id":1108739923, + "neighbourhood_id":1108739667, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108739923, + "neighbourhood_id":1108739667, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108739923, + "neighbourhood_id":1108739667, + "region_id":85688735 + } + ], + "wof:id":1108739923, + "wof:lastmodified":1566623879, + "wof:name":"Lake Terrace", + "wof:parent_id":1108739667, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829223 + ], + "wof:tags":[] +}, + "bbox": [ + -90.08303700004127, + 30.02083500034907, + -90.07079900018839, + 30.0320701366429 +], + "geometry": {"coordinates":[[[-90.07446048814658,30.03127332990202],[-90.07445098506194,30.03112302781339],[-90.07443282654368,30.03103132303465],[-90.07441466802543,30.03094223828586],[-90.07439348308745,30.03084005276558],[-90.07436927172978,30.0307247664738],[-90.07434657358195,30.03061210020866],[-90.07432538864396,30.03050205397014],[-90.07430571691584,30.03039462775826],[-90.07428755839759,30.03028982157302],[-90.07426486024976,30.03018894553259],[-90.07423762247235,30.03009199963697],[-90.07420584506539,30.02999898388616],[-90.07416952802886,30.02990989828017],[-90.07413018457262,30.02982474286138],[-90.07408781469668,30.02974351762979],[-90.07404241840102,30.02966622258541],[-90.07399399568565,30.02959285772824],[-90.07395162580971,30.02951818272406],[-90.07391530877318,30.0294421975729],[-90.07388504457607,30.02936490227474],[-90.07386083321839,30.0292862968296],[-90.07384418790997,30.02920900141896],[-90.07383510865085,30.02913301604283],[-90.07383359544099,30.02905834070122],[-90.07383964828043,30.02898497539412],[-90.07385175395926,30.02892209082855],[-90.07386991247753,30.02886968700452],[-90.07389412383522,30.02882776392202],[-90.07392438803231,30.02879632158106],[-90.07395919185899,30.02875963882777],[-90.07399853531521,30.02871771566216],[-90.07404241840102,30.02867055208423],[-90.0740908411164,30.02861814809398],[-90.07414077704162,30.0285696743865],[-90.07419222617671,30.02852513096181],[-90.07424518852163,30.02848451781991],[-90.07429966407642,30.0284478349608],[-90.07434354716221,30.0284072217718],[-90.07437683777904,30.02836267825292],[-90.07439953592687,30.02831420440415],[-90.07441164160571,30.0282618002255],[-90.07441618123528,30.02820546569204],[-90.07441315481556,30.02814520080376],[-90.07440256234658,30.02808100556067],[-90.07438440382832,30.02801287996276],[-90.07436170568049,30.02794344420484],[-90.07433446790309,30.02787269828691],[-90.07430269049613,30.02780064220896],[-90.07426637345961,30.027727275971],[-90.07423005642309,30.02765784002912],[-90.07419373938654,30.02759233438333],[-90.07415742235003,30.02753075903362],[-90.07412110531349,30.02747311398],[-90.07407268259813,30.0274141587733],[-90.07401215420393,30.0273538934135],[-90.07393952013086,30.02729231790062],[-90.07385478037898,30.02722943223465],[-90.07377004062708,30.02716916677429],[-90.07368530087518,30.02711152151954],[-90.0736005611233,30.02705649647039],[-90.0735158213714,30.02700409162686],[-90.07342200236037,30.02695299688072],[-90.07331910409022,30.02690321223199],[-90.07320712656092,30.02685473768066],[-90.0730860697725,30.02680757322673],[-90.07297257903335,30.02676564925799],[-90.07286665434347,30.02672896577443],[-90.07276829570287,30.02669752277606],[-90.07267750311158,30.02667132026286],[-90.07258973693996,30.02662939618996],[-90.07250499718808,30.02657175055733],[-90.07242328385588,30.02649838336499],[-90.0723445969434,30.02640929461294],[-90.07227801570977,30.02631496523552],[-90.07222354015497,30.02621539523274],[-90.07218117027902,30.02611058460459],[-90.07215090608193,30.02600053335108],[-90.0721145890454,30.02587869067992],[-90.07207221916946,30.0257450565911],[-90.07202379645409,30.02559963108461],[-90.07196932089929,30.02544241416046],[-90.07192241139379,30.02529436805472],[-90.07188306793753,30.02515549276736],[-90.07185129053059,30.02502578829841],[-90.07182707917291,30.02490525464786],[-90.07179832818566,30.02479520210535],[-90.07176503756885,30.0246956306709],[-90.07172720732247,30.02460654034451],[-90.07168483744651,30.02452793112617],[-90.07163944115085,30.02446111327312],[-90.07159101843548,30.02440608678538],[-90.0715395693004,30.02436285166294],[-90.07148509374562,30.02433140790579],[-90.0714215389317,30.02425017789511],[-90.07134890485864,30.0241191616309],[-90.07124449337863,30.02388071192033],[-90.07097999972106,30.02335900045222],[-90.07096800023329,30.02326699986629],[-90.07095399991591,30.02315999965814],[-90.0708919999299,30.02219399968992],[-90.07084899960526,30.02179599944828],[-90.07079900018839,30.02140799991474],[-90.07163699951965,30.02145799990448],[-90.07225800043469,30.02146300063903],[-90.07253500029952,30.02144600022377],[-90.07279899972106,30.02143499993444],[-90.07294299986359,30.0214360003649],[-90.07318800000654,30.02144199928433],[-90.07335899996116,30.02145899956193],[-90.07353300059366,30.0214750006992],[-90.07359000036737,30.02148199960751],[-90.07361799990349,30.0214859999591],[-90.07377100038671,30.02149799972717],[-90.07388599981812,30.02149899959093],[-90.07404299984962,30.02149099992554],[-90.07421999996876,30.0214740004227],[-90.07441899929292,30.02144099995306],[-90.07482799998144,30.02135100050254],[-90.07491399932267,30.0213299995753],[-90.07506600059131,30.0213050000381],[-90.07523199997939,30.02128800051792],[-90.07537900036168,30.02127700038032],[-90.07562600029239,30.02125799986424],[-90.07647499976152,30.0212180002495],[-90.0774920002594,30.02116800047958],[-90.0784400008224,30.02109900040873],[-90.07942399974856,30.02103899943721],[-90.07979700011312,30.02101499991782],[-90.08110200010037,30.02093599989486],[-90.08156200042625,30.02091199991539],[-90.08181200067891,30.02088299991346],[-90.08200099966618,30.02085899995449],[-90.08235699973133,30.02083500034907],[-90.08303700004127,30.02086500060289],[-90.08298900008089,30.02097599939546],[-90.08295099977688,30.02104399959372],[-90.08295000018575,30.02107699954644],[-90.08295399951123,30.02109300046507],[-90.08292599993283,30.02110800010196],[-90.08286800012796,30.02110300046979],[-90.08286699974131,30.02110200033416],[-90.08270199921962,30.02146000046015],[-90.08270900039105,30.02210899972682],[-90.08282899976609,30.023400000258],[-90.08290399979614,30.02423699952623],[-90.08279199996005,30.02483500013058],[-90.08251399950933,30.02522400049591],[-90.08254400007786,30.02555500042956],[-90.08253400004261,30.02598800038405],[-90.08250699953277,30.02611400018184],[-90.08251200053482,30.02621099994329],[-90.08251190367825,30.02622326646999],[-90.08251154682998,30.02622319812063],[-90.08244037415658,30.0262444892196],[-90.08235115865773,30.02627180529931],[-90.08232248036273,30.02628375698825],[-90.08228415806929,30.02631268428913],[-90.08227355086339,30.02633164285085],[-90.08225843396204,30.02636097195629],[-90.0822515354665,30.02639290535053],[-90.08224553436651,30.02643735560903],[-90.08224388503963,30.02645906623012],[-90.08224607541578,30.02648984091666],[-90.08225152149865,30.02656630684224],[-90.08227242744078,30.02685979730167],[-90.08227073337324,30.02689102318012],[-90.08226917592806,30.02691193891739],[-90.08225991238236,30.02703633791636],[-90.08225789058611,30.02705203532894],[-90.08225479120733,30.02707188894196],[-90.08223964398623,30.02716890388256],[-90.08223409795333,30.02718774271277],[-90.0821957061134,30.02728291461262],[-90.08214726529501,30.02735122133813],[-90.0820338558143,30.02748166981823],[-90.08190953703773,30.02756059988486],[-90.08167961404267,30.02768301712403],[-90.08141139707239,30.02781143233824],[-90.08125323500241,30.0278952133449],[-90.08120886597683,30.02793354890074],[-90.08109584877916,30.02802237472223],[-90.08101231720231,30.02810501377177],[-90.08087500792112,30.02824125175526],[-90.08062604963052,30.02852178731002],[-90.08060565843076,30.02854476586728],[-90.08045278351027,30.02871419495635],[-90.08033576746111,30.0288438777737],[-90.08006350341849,30.02915611725706],[-90.07992885769283,30.02939070952358],[-90.07986501594715,30.02948836950903],[-90.07983568301371,30.02953324264128],[-90.07979580429058,30.02960292558818],[-90.07964996090412,30.02985766573992],[-90.07963210903503,30.02988884691745],[-90.07942101529211,30.03024782844424],[-90.07919127240685,30.03060206680112],[-90.07895226802158,30.03095511221891],[-90.0787141045565,30.03128173657527],[-90.07848447916106,30.03152071571642],[-90.07840887311906,30.03158592834079],[-90.07814247219714,30.0317437701372],[-90.07800641549701,30.03180723525006],[-90.07779401667938,30.03191055860283],[-90.07763299685638,30.03196633391826],[-90.07755799603828,30.03199231442265],[-90.0772047338217,30.03205613602811],[-90.07713872905273,30.03205971796091],[-90.07694673383278,30.0320701366429],[-90.07668773314563,30.03205213730201],[-90.07620373430011,30.0320251365068],[-90.07590973237062,30.03198413690609],[-90.07563173382755,30.03193213718659],[-90.07518773341069,30.03185413700555],[-90.07505473259472,30.03181513553134],[-90.07490756708599,30.03176955312403],[-90.07476298757082,30.03169638201114],[-90.07466590900268,30.03162945338416],[-90.07459740086075,30.03153920119275],[-90.07455993359194,30.03146236933099],[-90.07452546174504,30.03138267809369],[-90.07451759160266,30.03136553020775],[-90.07450385746523,30.03133560500474],[-90.07449642828539,30.03131942038938],[-90.07447314806812,30.0312844480497],[-90.07446048814658,30.03127332990202]]],"type":"Polygon"} +},{ + "id": 1108740183, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000138, + "geom:area_square_m":1478828.363494, + "geom:bbox":"-90.0991130763,30.018535,-90.0825069995,30.0301561377", + "geom:latitude":30.023965, + "geom:longitude":-90.091286, + "iso:country":"US", + "lbl:latitude":30.023865, + "lbl:longitude":-90.091957, + "lbl:max_zoom":18.0, + "mps:latitude":30.023865, + "mps:longitude":-90.091957, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Lake Vis", + "Lk Vis", + "Lk Vista" + ], + "reversegeo:latitude":30.023865, + "reversegeo:longitude":-90.091957, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108740155, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"c9a6e63b759a554954b076c97e061cf8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108740183, + "neighbourhood_id":1108740155, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108740183, + "neighbourhood_id":1108740155, + "region_id":85688735 + } + ], + "wof:id":1108740183, + "wof:lastmodified":1566623860, + "wof:name":"Lake Vista", + "wof:parent_id":1108740155, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866053 + ], + "wof:tags":[] +}, + "bbox": [ + -90.09911307628425, + 30.01853499998805, + -90.08250699953277, + 30.03015613772514 +], + "geometry": {"coordinates":[[[-90.08289895578856,30.02426393099051],[-90.08321779919605,30.02425640210948],[-90.08340605515531,30.02424242062509],[-90.0835020954415,30.0242210804608],[-90.08355266532672,30.02419127781588],[-90.08355776481096,30.02415301269031],[-90.08356498908027,30.02410223775578],[-90.08357433813468,30.0240389530123],[-90.08358581197419,30.02396315845986],[-90.08359941059879,30.02387485409847],[-90.08361215930935,30.02379648394421],[-90.08362405810587,30.02372804799707],[-90.08363510698835,30.02366954625708],[-90.08364530595681,30.02362097872421],[-90.08365592988227,30.02357020354554],[-90.08366697876477,30.02351722072107],[-90.08367845260426,30.02346203025079],[-90.08369035140078,30.0234046321347],[-90.08370140028326,30.02334649810951],[-90.08371159925171,30.0232876281752],[-90.08372094830612,30.02322802233179],[-90.08372944744649,30.02316768057926],[-90.08373752162984,30.02310844260649],[-90.08374517085618,30.02305030841347],[-90.0837523951255,30.0229932780002],[-90.08375919443779,30.02293735136669],[-90.08376429392202,30.02288142470163],[-90.08376769357817,30.02282549800503],[-90.08376939340624,30.02276957127687],[-90.08376939340624,30.02271364451717],[-90.0837685434922,30.02265403832029],[-90.08376684366414,30.02259075268623],[-90.08376429392202,30.022523787615],[-90.08376089426586,30.0224531431066],[-90.08375494486759,30.02237881912955],[-90.08374644572723,30.02230081568387],[-90.08373539684473,30.02221913276956],[-90.08372179822015,30.0221337703866],[-90.08370947446662,30.02205208736113],[-90.08369842558412,30.02197408369315],[-90.08368865157269,30.02189975938263],[-90.08368015243232,30.0218291144296],[-90.08366995346387,30.02175994120221],[-90.08365805466735,30.02169223970046],[-90.08364445604276,30.02162600992434],[-90.08362915759008,30.02156125187387],[-90.08361385913742,30.02149833350537],[-90.08359856068473,30.02143725481887],[-90.08358326223207,30.02137801581435],[-90.0835679637794,30.02132061649181],[-90.08355606498287,30.02126468891849],[-90.08354756584251,30.02121023309437],[-90.08354246635827,30.02115724901947],[-90.08354076653021,30.02110573669377],[-90.08353736687405,30.02105201666294],[-90.08353226738981,30.02099608892697],[-90.08352334329243,30.0209228676993],[-90.08351556938655,30.02086767365389],[-90.08357400013819,30.02086800001908],[-90.08366600020503,30.02086799984896],[-90.08392900076969,30.02085100052215],[-90.08403800043926,30.02084299993312],[-90.08435900046865,30.02081999992645],[-90.08459000060294,30.02079300050758],[-90.08476799935661,30.02077200040166],[-90.08521099964595,30.02071200032531],[-90.08536999989744,30.02068299979932],[-90.08566800013631,30.02061999984201],[-90.08595299971935,30.02052999989161],[-90.08601999933329,30.02050700009161],[-90.08625400000116,30.02042799980526],[-90.08682099987605,30.02018400024209],[-90.08737600031451,30.01994499938073],[-90.08740900022136,30.01993000010617],[-90.08788899955616,30.01971399947326],[-90.08837800035982,30.01951299947862],[-90.088483999362,30.01946800029106],[-90.08881299915035,30.01932700000721],[-90.08939300025658,30.01909700016451],[-90.08983600006221,30.01894600047392],[-90.09004599979713,30.01889000073178],[-90.09039599985763,30.01879700061231],[-90.09075299977113,30.01873600051731],[-90.09107900036375,30.01868000030538],[-90.09162000045716,30.01861799998867],[-90.09207400008474,30.01856599942343],[-90.09275300024444,30.01855699959894],[-90.09311099939988,30.01853499998805],[-90.09363099961041,30.01853600026163],[-90.09377200038223,30.01854200032469],[-90.09426200030292,30.0186149995166],[-90.09478800063646,30.01867199997339],[-90.09550599983825,30.01871599986049],[-90.09598399931372,30.01875600030918],[-90.0962740006962,30.01878100006826],[-90.09659299975121,30.0188240001215],[-90.09673600008423,30.01883399997639],[-90.09686699993928,30.01884099988994],[-90.0970439998101,30.01883399972527],[-90.0974010000986,30.01882599952395],[-90.09752299985701,30.0188309997998],[-90.09790299998139,30.01885600066647],[-90.09815600008722,30.01887400065779],[-90.09833673181829,30.01888744327558],[-90.09823728148618,30.01967103998311],[-90.09817862856211,30.02012694951527],[-90.09814130397407,30.02040857408214],[-90.09811197751203,30.02062094609994],[-90.098090649176,30.02076406556868],[-90.09808265104999,30.02088871793504],[-90.09808798313399,30.02099490319902],[-90.09810664542802,30.02108262136061],[-90.09813863793207,30.02115187241981],[-90.09816663137309,30.02122343178919],[-90.09819062575113,30.02129729946873],[-90.09821062106614,30.02137347545845],[-90.09822661731816,30.02145195975833],[-90.09824927867518,30.02152813564486],[-90.09827860513722,30.02160200311804],[-90.09831459670427,30.02167356217787],[-90.09835725337632,30.02174281282436],[-90.09839057890136,30.02181552593931],[-90.0984145732794,30.02189170152275],[-90.09842923651041,30.02197133957467],[-90.09843456859441,30.02205444009506],[-90.09843190255242,30.02214215721645],[-90.09842123838439,30.02223449093883],[-90.09840257609038,30.02233144126221],[-90.09837591567035,30.02243300818658],[-90.09836125243933,30.02252303337114],[-90.09835858639732,30.02260151681591],[-90.09836791754434,30.02266845852087],[-90.09838924588037,30.02272385848602],[-90.09842257140541,30.0227931083496],[-90.09846789411947,30.02287620811159],[-90.09852521402253,30.02297315777201],[-90.09859453111463,30.02308395733086],[-90.09866384820671,30.02318783183602],[-90.0987331652988,30.02328478128749],[-90.09880248239088,30.02337480568528],[-90.09887179948296,30.02345790502938],[-90.09892911938604,30.0235375418476],[-90.09897444210009,30.02361371613996],[-90.09900776762512,30.02368642790643],[-90.09902909596116,30.02375567714702],[-90.09904909127617,30.0238353136731],[-90.0990677535702,30.02392533748466],[-90.09908508284322,30.02402574858171],[-90.09910107909525,30.02413654696424],[-90.09911041024226,30.0242404203666],[-90.09911307628425,30.02433736878879],[-90.09910907722124,30.02442739223082],[-90.09909841305324,30.02451049069267],[-90.09908641586422,30.02459128080545],[-90.0990730856542,30.02466976256915],[-90.09905842242318,30.02474593598376],[-90.09904242617118,30.0248198010493],[-90.09901576575115,30.024884432961],[-90.0989784411631,30.02493983171887],[-90.09893045240705,30.02498599732292],[-90.09887179948296,30.02502292977314],[-90.09878382009686,30.02507717423276],[-90.09866651424872,30.02514873070178],[-90.09851988193853,30.02523759918019],[-90.09834392316633,30.02534377966801],[-90.09818929273013,30.02544534352711],[-90.09805599062997,30.02554229075747],[-90.09794401686582,30.02563462135911],[-90.09785337143771,30.02572233533203],[-90.09775472788358,30.02580427859917],[-90.09764808620345,30.02588045116054],[-90.09753344639731,30.02595085301614],[-90.09741080846516,30.02601548416596],[-90.09730816584803,30.0260766529032],[-90.09722551854593,30.02613435922785],[-90.09716286655885,30.02618860313992],[-90.09712020988681,30.0262393846394],[-90.09707888623575,30.02630055319713],[-90.09703889560571,30.02637210881311],[-90.09700023799665,30.02645405148733],[-90.0969629134086,30.0265463812198],[-90.09693491996757,30.02663986498138],[-90.09691625767354,30.02673450277207],[-90.09690692652653,30.02683029459186],[-90.09690692652653,30.02692724044076],[-90.09691359163153,30.02703918961288],[-90.09692692184156,30.02716614210822],[-90.09694691715657,30.02730809792679],[-90.09697357757661,30.02746505706858],[-90.09700557008064,30.02762894056021],[-90.09704289466869,30.02779974840167],[-90.09709754852976,30.02802364472826],[-90.09711841193192,30.02810392527718],[-90.09711056227992,30.02810522204628],[-90.09688666018162,30.02814220477218],[-90.09685100258866,30.0281480925387],[-90.09685256137374,30.02819630173125],[-90.09686601323757,30.02855198941409],[-90.09686673694893,30.02857113671339],[-90.0968122386496,30.0286792679767],[-90.09666448392068,30.0288822512378],[-90.09654563834243,30.02896159917688],[-90.09640597309945,30.02903463081853],[-90.09617773784868,30.02908413500558],[-90.09561873777453,30.02913513702855],[-90.09559670157684,30.02913479276904],[-90.09453373696138,30.02911813811309],[-90.09433623145569,30.02912312777641],[-90.09405873631582,30.0291301377993],[-90.09388873754395,30.02914713791665],[-90.09367673802082,30.02919913635719],[-90.09334881480234,30.02944360610941],[-90.09325634524102,30.02950273360401],[-90.09289579209131,30.02973327420374],[-90.09242220275698,30.02998227084088],[-90.09209373910123,30.03007213682282],[-90.09167773459822,30.03015613772514],[-90.09150073708351,30.03015513724685],[-90.09102873730959,30.03008313730289],[-90.09032830591671,30.02987991043321],[-90.08999970674878,30.02973065652638],[-90.08979001073176,30.02953784153156],[-90.08972991190554,30.0294825798413],[-90.08940667354332,30.02901268683375],[-90.08939171762063,30.02899318128898],[-90.08907831992128,30.02859442177822],[-90.0885416744559,30.02805832170718],[-90.08837449996484,30.02790043050883],[-90.08823273603849,30.02782713659505],[-90.08802908702553,30.02775178758901],[-90.08783273612005,30.02767913725387],[-90.08711473495693,30.02751513562911],[-90.08676173430382,30.02747713756004],[-90.08599657658749,30.02745901390964],[-90.08560612382497,30.02744976258049],[-90.08557973473863,30.02744913630828],[-90.08447573482356,30.02744913912226],[-90.08403873409976,30.02743013621446],[-90.08377673480989,30.02739613767495],[-90.08369673583161,30.02737913861841],[-90.08355756830646,30.02733899998595],[-90.08338546369733,30.02726337383207],[-90.08313670054737,30.02713095319869],[-90.08296346034588,30.02698016283061],[-90.08295191183254,30.02696695298085],[-90.08286460773309,30.02685703418537],[-90.0828275988669,30.02677420566283],[-90.08282412570688,30.02675831441078],[-90.08280473379088,30.02662513624006],[-90.08280572622724,30.02660908349427],[-90.08281615535675,30.02644013592397],[-90.08281759334254,30.02641683087671],[-90.08281942851282,30.0263812017066],[-90.08280826361455,30.02634724990479],[-90.08280261373635,30.0263300703642],[-90.08276307370019,30.02628580560307],[-90.08274113800904,30.02627460646824],[-90.08266914945699,30.02625348573642],[-90.08254060543263,30.02622878188706],[-90.08251190367825,30.02622326646999],[-90.08251200053482,30.02621099994329],[-90.08250699953277,30.02611400018184],[-90.08253400004261,30.02598800038405],[-90.08254400007786,30.02555500042956],[-90.08251399950933,30.02522400049591],[-90.08279199996005,30.02483500013058],[-90.08289895578856,30.02426393099051]]],"type":"Polygon"} +},{ + "id": 1108741363, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-90.1060076325,30.0230765656,-90.1060076325,30.0230765656", + "geom:latitude":30.023077, + "geom:longitude":-90.106008, + "iso:country":"US", + "lbl:latitude":30.023077, + "lbl:longitude":-90.106008, + "lbl:max_zoom":18.0, + "mps:latitude":30.023294, + "mps:longitude":-90.105858, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":16.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Lakeshore" + ], + "name:deu_x_preferred":[ + "Lakeshore" + ], + "name:fra_x_preferred":[ + "Lakeshore" + ], + "name:swe_x_preferred":[ + "Lakeshore" + ], + "reversegeo:latitude":30.023294, + "reversegeo:longitude":-90.105858, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108740155, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"bd031f0ec375cd52417c3add71d1c68d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108741363, + "neighbourhood_id":1108740155, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108741363, + "neighbourhood_id":1108740155, + "region_id":85688735 + } + ], + "wof:id":1108741363, + "wof:lastmodified":1566623859, + "wof:name":"Lakeshore", + "wof:parent_id":1108740155, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829329 + ], + "wof:tags":[] +}, + "bbox": [ + -90.10600763252027, + 30.0230765655907, + -90.10600763252027, + 30.0230765655907 +], + "geometry": {"coordinates":[-90.10600763252027,30.0230765655907],"type":"Point"} +},{ + "id": 1108745657, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":737006.030148, + "geom:bbox":"-90.1062822205,30.0188874433,-90.0969069265,30.028746138", + "geom:latitude":30.023743, + "geom:longitude":-90.101771, + "iso:country":"US", + "lbl:latitude":30.023452, + "lbl:longitude":-90.102329, + "lbl:max_zoom":18.0, + "mps:latitude":30.023452, + "mps:longitude":-90.102329, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ita_x_preferred":[ + "Lakeshore East" + ], + "reversegeo:latitude":30.023452, + "reversegeo:longitude":-90.102329, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108740155, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"0874087edb372f3ee39fecbc40979d46", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108745657, + "neighbourhood_id":1108740155, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108745657, + "neighbourhood_id":1108740155, + "region_id":85688735 + } + ], + "wof:id":1108745657, + "wof:lastmodified":1566623859, + "wof:name":"Lakeshore East", + "wof:parent_id":1108740155, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829325 + ], + "wof:tags":[] +}, + "bbox": [ + -90.1062822204641, + 30.01888744327558, + -90.09690692652653, + 30.02874613798423 +], + "geometry": {"coordinates":[[[-90.1062822204641,30.01960902527518],[-90.10537001424599,30.02756723814352],[-90.10502173892968,30.02753313774712],[-90.10412873950385,30.02749113607898],[-90.10368773952335,30.0274901377187],[-90.10353374014448,30.02750213627362],[-90.10314242853067,30.02765727736],[-90.10272134721546,30.02794571114539],[-90.10259986470157,30.02802892480025],[-90.10190783314209,30.02847124492689],[-90.10171785237475,30.02854828842541],[-90.10161973954102,30.02856413752069],[-90.10140973756911,30.02857213624124],[-90.10118973862365,30.02856013551265],[-90.10070657755823,30.02844272587006],[-90.10061773868385,30.02842113609007],[-90.10042773944456,30.02838413664598],[-90.10010773828367,30.02834813715421],[-90.09992873898916,30.02835013631091],[-90.0996787363495,30.02838313691625],[-90.0991662901084,30.02852564165422],[-90.09859273765684,30.0286851366877],[-90.09830073830608,30.02874113714632],[-90.09819673809005,30.02874613798423],[-90.09806773764747,30.02873813607308],[-90.09788691804258,30.02871242639246],[-90.09778770937478,30.02867155540781],[-90.09763373146896,30.02855377621412],[-90.09757228132575,30.02849740294149],[-90.09752770683181,30.0284419648204],[-90.09750869145743,30.0284013571841],[-90.09748418054168,30.02834487671663],[-90.09740773881482,30.02805613687991],[-90.097135625457,30.02810108158837],[-90.09711841193192,30.02810392527718],[-90.09709754852976,30.02802364472826],[-90.09704289466869,30.02779974840167],[-90.09700557008064,30.02762894056021],[-90.09697357757661,30.02746505706858],[-90.09694691715657,30.02730809792679],[-90.09692692184156,30.02716614210822],[-90.09691359163153,30.02703918961288],[-90.09690692652653,30.02692724044076],[-90.09690692652653,30.02683029459186],[-90.09691625767354,30.02673450277207],[-90.09693491996757,30.02663986498138],[-90.0969629134086,30.0265463812198],[-90.09700023799665,30.02645405148733],[-90.09703889560571,30.02637210881311],[-90.09707888623575,30.02630055319713],[-90.09712020988681,30.0262393846394],[-90.09716286655885,30.02618860313992],[-90.09722551854593,30.02613435922785],[-90.09730816584803,30.0260766529032],[-90.09741080846516,30.02601548416596],[-90.09753344639731,30.02595085301614],[-90.09764808620345,30.02588045116054],[-90.09775472788358,30.02580427859917],[-90.09785337143771,30.02572233533203],[-90.09794401686582,30.02563462135911],[-90.09805599062997,30.02554229075747],[-90.09818929273013,30.02544534352711],[-90.09834392316633,30.02534377966801],[-90.09851988193853,30.02523759918019],[-90.09866651424872,30.02514873070178],[-90.09878382009686,30.02507717423276],[-90.09887179948296,30.02502292977314],[-90.09893045240705,30.02498599732292],[-90.0989784411631,30.02493983171887],[-90.09901576575115,30.024884432961],[-90.09904242617118,30.0248198010493],[-90.09905842242318,30.02474593598376],[-90.0990730856542,30.02466976256915],[-90.09908641586422,30.02459128080545],[-90.09909841305324,30.02451049069267],[-90.09910907722124,30.02442739223082],[-90.09911307628425,30.02433736878879],[-90.09911041024226,30.0242404203666],[-90.09910107909525,30.02413654696424],[-90.09908508284322,30.02402574858171],[-90.0990677535702,30.02392533748466],[-90.09904909127617,30.0238353136731],[-90.09902909596116,30.02375567714702],[-90.09900776762512,30.02368642790643],[-90.09897444210009,30.02361371613996],[-90.09892911938604,30.0235375418476],[-90.09887179948296,30.02345790502938],[-90.09880248239088,30.02337480568528],[-90.0987331652988,30.02328478128749],[-90.09866384820671,30.02318783183602],[-90.09859453111463,30.02308395733086],[-90.09852521402253,30.02297315777201],[-90.09846789411947,30.02287620811159],[-90.09842257140541,30.0227931083496],[-90.09838924588037,30.02272385848602],[-90.09836791754434,30.02266845852087],[-90.09835858639732,30.02260151681591],[-90.09836125243933,30.02252303337114],[-90.09837591567035,30.02243300818658],[-90.09840257609038,30.02233144126221],[-90.09842123838439,30.02223449093883],[-90.09843190255242,30.02214215721645],[-90.09843456859441,30.02205444009506],[-90.09842923651041,30.02197133957467],[-90.0984145732794,30.02189170152275],[-90.09839057890136,30.02181552593931],[-90.09835725337632,30.02174281282436],[-90.09831459670427,30.02167356217787],[-90.09827860513722,30.02160200311804],[-90.09824927867518,30.02152813564486],[-90.09822661731816,30.02145195975833],[-90.09821062106614,30.02137347545845],[-90.09819062575113,30.02129729946873],[-90.09816663137309,30.02122343178919],[-90.09813863793207,30.02115187241981],[-90.09810664542802,30.02108262136061],[-90.09808798313399,30.02099490319902],[-90.09808265104999,30.02088871793504],[-90.098090649176,30.02076406556868],[-90.09811197751203,30.02062094609994],[-90.09814130397407,30.02040857408214],[-90.09817862856211,30.02012694951527],[-90.09823728148618,30.01967103998311],[-90.09833673181829,30.01888744327558],[-90.09851900001073,30.01890100017359],[-90.09868400034726,30.01890900011005],[-90.09976100055383,30.01901299996362],[-90.10106499937828,30.01912400019694],[-90.10202600003909,30.01920900035546],[-90.10306200041451,30.01930800015484],[-90.10402199951055,30.01940000010694],[-90.10503100000135,30.01948799953103],[-90.10604700005983,30.01959000019752],[-90.1062822204641,30.01960902527518]]],"type":"Polygon"} +},{ + "id": 1108746373, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000063, + "geom:area_square_m":671702.377551, + "geom:bbox":"-90.1147159999,30.0194879998,-90.1053700142,30.0279806019", + "geom:latitude":30.023709, + "geom:longitude":-90.109842, + "iso:country":"US", + "lbl:latitude":30.023715, + "lbl:longitude":-90.109843, + "lbl:max_zoom":18.0, + "mps:latitude":30.023715, + "mps:longitude":-90.109843, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":30.023715, + "reversegeo:longitude":-90.109843, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108740155, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"63039f6d60bdd99b2bee1c301428b4a8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746373, + "neighbourhood_id":1108740155, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108746373, + "neighbourhood_id":1108740155, + "region_id":85688735 + } + ], + "wof:id":1108746373, + "wof:lastmodified":1566623861, + "wof:name":"Lakeshore West", + "wof:parent_id":1108740155, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784447 + ], + "wof:tags":[] +}, + "bbox": [ + -90.11471599987665, + 30.01948799976833, + -90.10537001424599, + 30.02798060189013 +], + "geometry": {"coordinates":[[[-90.10537001424599,30.02756723814352],[-90.1062822204641,30.01960902527518],[-90.10645499949791,30.01962299997498],[-90.10755399919383,30.01971299957906],[-90.10857299988466,30.01980700057213],[-90.10937999988857,30.01987799974946],[-90.11080299951101,30.02000199988753],[-90.11173299963292,30.02007799978077],[-90.11246900020026,30.02016499961519],[-90.11312799940967,30.02022599989424],[-90.11354600040022,30.02025600009594],[-90.11359699996594,30.02021699971129],[-90.1136469998401,30.02018200039415],[-90.11369300009977,30.02015799990956],[-90.11384900006291,30.02011599951937],[-90.11388400083078,30.02009499981468],[-90.11471599987665,30.01948799976833],[-90.11458600024811,30.01997199986398],[-90.11453900064336,30.02014699969821],[-90.11439499989281,30.02162600069178],[-90.11428599981204,30.02311799957416],[-90.11418668738226,30.02330371499221],[-90.11418599982046,30.02330500059809],[-90.11396499950091,30.02385499967657],[-90.11384799989376,30.02432699972677],[-90.11377599923871,30.02659800013634],[-90.11355499967911,30.02753100005996],[-90.11335999980767,30.02793499969962],[-90.11282409055698,30.02798060189013],[-90.11317964716345,30.02719991413253],[-90.11313374761698,30.02708705305573],[-90.11310206977134,30.02697593871069],[-90.1130891008159,30.02692258517283],[-90.11305084671446,30.02683915206454],[-90.11302736195019,30.02683190978837],[-90.11298574306315,30.02682813627884],[-90.11282885431551,30.02685706881181],[-90.11241188914514,30.02693396608952],[-90.11235674197592,30.02694413608262],[-90.11116681759599,30.02717634175093],[-90.11114630247297,30.02718127231389],[-90.11012494088122,30.02743828306678],[-90.10993873980422,30.02748513935543],[-90.10872774056421,30.02783013779063],[-90.10852674063985,30.02788413714446],[-90.10842673964967,30.02790013793768],[-90.10833974149773,30.02790813607508],[-90.10744674118536,30.02780613620343],[-90.10655193142331,30.02770159531846],[-90.1061457389128,30.02765413699262],[-90.10550173943099,30.0275801356439],[-90.10537001424599,30.02756723814352]]],"type":"Polygon"} +},{ + "id": 1108746375, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":228650.148464, + "geom:bbox":"-90.096418,29.9355219999,-90.0908877373,29.9423556437", + "geom:latitude":29.938768, + "geom:longitude":-90.094112, + "iso:country":"US", + "lbl:latitude":29.93861, + "lbl:longitude":-90.094154, + "lbl:max_zoom":18.0, + "mps:latitude":29.93861, + "mps:longitude":-90.094154, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Magnolia Projects" + ], + "name:eng_x_variant":[ + "Magnolia", + "C.J. Peete Projects" + ], + "name:fas_x_preferred":[ + "\u067e\u0631\u0648\u0698\u0647\u200c\u0647\u0627\u06cc \u0645\u0627\u06af\u0646\u0648\u0644\u06cc\u0627" + ], + "name:vol_x_preferred":[ + "Lakeshore West" + ], + "reversegeo:latitude":29.93861, + "reversegeo:longitude":-90.094154, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866121, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6731941" + }, + "wof:country":"US", + "wof:geomhash":"1ba5944e27ec4ea711d5736e8502b26d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746375, + "neighbourhood_id":85866121, + "region_id":85688735 + } + ], + "wof:id":1108746375, + "wof:lastmodified":1566623861, + "wof:name":"Harmony Oaks", + "wof:parent_id":85866121, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420521713 + ], + "wof:tags":[] +}, + "bbox": [ + -90.0964179999951, + 29.93552199987441, + -90.09088773728614, + 29.9423556436823 +], + "geometry": {"coordinates":[[[-90.09607000039765,29.94146800025845],[-90.09446965540727,29.9423556436823],[-90.09307079980968,29.94049149020465],[-90.09088773728614,29.93756203558658],[-90.0923395798382,29.9367355280886],[-90.09334633197284,29.93617533576827],[-90.09378500022721,29.93592700010241],[-90.09428399954446,29.93573900013982],[-90.09487300024564,29.93552199987441],[-90.09493099972282,29.93563099997899],[-90.09531400038219,29.93642199979885],[-90.09576699991617,29.93738600039291],[-90.09619000040443,29.93830599969193],[-90.09633000013852,29.93860100019657],[-90.09639599988677,29.93887000004235],[-90.09641399983043,29.93897799989653],[-90.0964179999951,29.93907600046387],[-90.09641499963683,29.93917999998644],[-90.09640899992384,29.93930300018793],[-90.09638000017519,29.9394999995701],[-90.09634100023315,29.93963199957982],[-90.09629599969469,29.93975300003969],[-90.09617000076717,29.9399960004144],[-90.09611299999935,29.94015900033078],[-90.09607600046951,29.94027900049682],[-90.09604400050907,29.94040600023337],[-90.09602899988505,29.9405240004197],[-90.09602599987753,29.94081100049332],[-90.09602499962978,29.94104700021446],[-90.09603799971747,29.94123800038087],[-90.09607000039765,29.94146800025845]]],"type":"Polygon"} +},{ + "id": 1108746553, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000537, + "geom:area_square_m":5749352.839938, + "geom:bbox":"-89.9308612021,30.0092594159,-89.8973060001,30.0412840002", + "geom:latitude":30.023775, + "geom:longitude":-89.917845, + "iso:country":"US", + "lbl:latitude":30.022563, + "lbl:longitude":-89.919243, + "lbl:max_zoom":18.0, + "mps:latitude":30.022563, + "mps:longitude":-89.919243, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Michoud" + ], + "name:eng_x_preferred":[ + "Michoud" + ], + "name:ita_x_preferred":[ + "Michoud" + ], + "name:nld_x_preferred":[ + "Michoud" + ], + "name:und_x_variant":[ + "Micheaud" + ], + "reversegeo:latitude":30.022563, + "reversegeo:longitude":-89.919243, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866175, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1765308" + }, + "wof:country":"US", + "wof:geomhash":"dccaa9711eb21eedb8556c02c6220323", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108746553, + "neighbourhood_id":85866175, + "region_id":85688735 + } + ], + "wof:id":1108746553, + "wof:lastmodified":1566623861, + "wof:name":"Michoud", + "wof:parent_id":85866175, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85833951 + ], + "wof:tags":[] +}, + "bbox": [ + -89.93086120207106, + 30.0092594159142, + -89.8973060001359, + 30.04128400017922 +], + "geometry": {"coordinates":[[[-89.8973060001359,30.04128400017922],[-89.90729592385921,30.03077357038119],[-89.90801933258689,30.02996287599266],[-89.9082077787053,30.02971476579429],[-89.90834742139725,30.02938734826872],[-89.90842593686769,30.02904109232837],[-89.90818245918905,30.01326526021878],[-89.92920269878012,30.0092594159142],[-89.93086120207106,30.03006554845688],[-89.93083700032894,30.03007400004042],[-89.93072700027284,30.0301130002516],[-89.93048899973516,30.03019600007496],[-89.92906000014706,30.03069700009037],[-89.92890200061994,30.03075200044274],[-89.92780999938023,30.03113499971012],[-89.92764100052365,30.03119600008808],[-89.9274480000086,30.0312659999927],[-89.92732499976043,30.03131000040322],[-89.92690399989958,30.03146199931542],[-89.92669800075244,30.03153700021051],[-89.9264540000263,30.03162500014031],[-89.92613599985043,30.03173999939219],[-89.92471799944626,30.0322109997261],[-89.92429200029106,30.03235300060611],[-89.92402600008396,30.03244000009459],[-89.92315100000522,30.03272700046458],[-89.92269199988604,30.03287799984382],[-89.92186599944726,30.03313799947437],[-89.92178499964025,30.03316399970615],[-89.92103600006486,30.03340000003896],[-89.92000299970117,30.03372500036319],[-89.91993600018502,30.03374699945859],[-89.91971699969119,30.03381699957685],[-89.91926300000037,30.03396300000033],[-89.91890300071481,30.03407800008144],[-89.91876999992085,30.03412100005765],[-89.91729299972958,30.03459499991227],[-89.91558099919892,30.03514100041158],[-89.91488899998765,30.03535800034668],[-89.91467200028099,30.03542599990376],[-89.91429299975708,30.03554500070568],[-89.91408399943995,30.03560999986705],[-89.91343600048782,30.03582299946102],[-89.91320199941237,30.03589999982161],[-89.91312499943911,30.03592500033104],[-89.91291600068412,30.03599399996656],[-89.91250200023076,30.03612999962461],[-89.91203599998045,30.03628300052611],[-89.91185700026207,30.03634199982778],[-89.91160600027665,30.03642399991222],[-89.91152399955912,30.03645000021336],[-89.91142299945922,30.03648300054448],[-89.9106610000063,30.03672699958836],[-89.90979400015247,30.03700400063131],[-89.90848299950339,30.03742299951237],[-89.90840200044549,30.03744700035309],[-89.90790599988243,30.03759200038457],[-89.90709200058016,30.03785900040826],[-89.9062339993939,30.03813699951764],[-89.90545399984052,30.03838399996562],[-89.90237599964571,30.03936600006056],[-89.9008589996201,30.03984399988282],[-89.89997100015164,30.04014900048289],[-89.89908400009651,30.04050200025489],[-89.89843600046736,30.04078099971738],[-89.89784600002929,30.04106199960433],[-89.89750399976549,30.04124099957652],[-89.8974370007664,30.04126599986586],[-89.89738899932357,30.04127900005839],[-89.8973060001359,30.04128400017922]]],"type":"Polygon"} +},{ + "id": 1108746555, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000159, + "geom:area_square_m":1697781.358908, + "geom:bbox":"-90.056557518,30.0084164069,-90.0463714426,30.0271870001", + "geom:latitude":30.017501, + "geom:longitude":-90.051503, + "iso:country":"US", + "lbl:latitude":30.017593, + "lbl:longitude":-90.051504, + "lbl:max_zoom":18.0, + "mps:latitude":30.017593, + "mps:longitude":-90.051504, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Seabrook" + ], + "name:ceb_x_preferred":[ + "Seabrook" + ], + "name:deu_x_preferred":[ + "Seabrook" + ], + "name:fra_x_preferred":[ + "Seabrook" + ], + "name:ita_x_preferred":[ + "Seabrook" + ], + "name:nld_x_preferred":[ + "Seabrook" + ], + "name:pol_x_preferred":[ + "Seabrook" + ], + "name:rus_x_preferred":[ + "\u0421\u0438\u0431\u0440\u0443\u043a" + ], + "name:srp_x_preferred":[ + "\u0421\u0438\u0431\u0440\u0443\u043a" + ], + "name:swe_x_preferred":[ + "Seabrook" + ], + "name:vol_x_preferred":[ + "Seabrook" + ], + "reversegeo:latitude":30.017593, + "reversegeo:longitude":-90.051504, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85834475, + 102191575, + 1108746797, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739491 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"eb84cb0f8ddc95221714497d6adf9ba6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746797, + "microhood_id":1108746555, + "neighbourhood_id":85834475, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746555, + "neighbourhood_id":85834475, + "region_id":85688735 + } + ], + "wof:id":1108746555, + "wof:lastmodified":1566623861, + "wof:name":"Seabrook", + "wof:parent_id":85834475, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85847541 + ], + "wof:tags":[] +}, + "bbox": [ + -90.05655751802747, + 30.00841640689407, + -90.04637144256995, + 30.02718700010955 +], + "geometry": {"coordinates":[[[-90.05574806417575,30.01315897624668],[-90.05655751802747,30.02564745401339],[-90.05646899945795,30.025658999864],[-90.05551699989299,30.02578500058012],[-90.05494199970394,30.0258620005822],[-90.05445399972866,30.0259339993851],[-90.05364399997642,30.02606000058015],[-90.05346900055643,30.02608699939251],[-90.05330500010713,30.02611299967301],[-90.05224699934131,30.02638799995069],[-90.05206900043457,30.02642000031101],[-90.04970699975041,30.02684499928098],[-90.04905199979555,30.02694999987027],[-90.04843799996353,30.02706500051404],[-90.04805400078057,30.02715099956052],[-90.0479369998644,30.02718700010955],[-90.0479089995754,30.02704499974302],[-90.04787500009897,30.02687100040759],[-90.04784400001367,30.02672299984173],[-90.04776799983374,30.02664499988043],[-90.04772600006145,30.02599700055568],[-90.04763799967732,30.02497899984523],[-90.04757000065207,30.02396199988184],[-90.04748099943643,30.02294300009685],[-90.0474650005057,30.02276299969802],[-90.04737200035012,30.02170100042353],[-90.04734900033122,30.02110699985167],[-90.04733099994158,30.02070399951979],[-90.04726800041168,30.01970199999208],[-90.04716000003704,30.01867000031533],[-90.04707799969424,30.01762799970568],[-90.04706500016613,30.0174670003064],[-90.04697700015838,30.01641599978922],[-90.04691299973032,30.01575999974924],[-90.04687599961062,30.01541199955495],[-90.04680799929902,30.01440399988116],[-90.04673500002706,30.01326200003759],[-90.04670500053501,30.01289300026413],[-90.04667200041381,30.01251200045223],[-90.04650400009801,30.01076399979259],[-90.04637144256995,30.00898593489614],[-90.05544066954356,30.00841640689407],[-90.05574806417575,30.01315897624668]]],"type":"Polygon"} +},{ + "id": 1108746611, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":31325.319407, + "geom:bbox":"-90.0837693934,30.0208650006,-90.0827019992,30.024263931", + "geom:latitude":30.022551, + "geom:longitude":-90.08323, + "iso:country":"US", + "lbl:latitude":30.022559, + "lbl:longitude":-90.083271, + "lbl:max_zoom":18.0, + "mps:latitude":30.022559, + "mps:longitude":-90.083271, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Spanish Fort" + ], + "name:eng_x_variant":[ + "Spanish Ft", + "Old Spanish Fort", + "Fort St. John", + "Fort St. Jean" + ], + "name:ita_x_preferred":[ + "Spanish Fort" + ], + "reversegeo:latitude":30.022559, + "reversegeo:longitude":-90.083271, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108740155, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735, + 1108746799 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"8ea8243e5ca9812ed426506ca4170f19", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746611, + "neighbourhood_id":1108740155, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746799, + "microhood_id":1108746611, + "neighbourhood_id":1108740155, + "region_id":85688735 + } + ], + "wof:id":1108746611, + "wof:lastmodified":1566623858, + "wof:name":"Spanish Fort", + "wof:parent_id":1108740155, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85850401 + ], + "wof:tags":[] +}, + "bbox": [ + -90.08376939340624, + 30.02086500060289, + -90.08270199921962, + 30.02426393099051 +], + "geometry": {"coordinates":[[[-90.08351556938655,30.02086767365389],[-90.08352334329243,30.0209228676993],[-90.08353226738981,30.02099608892697],[-90.08353736687405,30.02105201666294],[-90.08354076653021,30.02110573669377],[-90.08354246635827,30.02115724901947],[-90.08354756584251,30.02121023309437],[-90.08355606498287,30.02126468891849],[-90.0835679637794,30.02132061649181],[-90.08358326223207,30.02137801581435],[-90.08359856068473,30.02143725481887],[-90.08361385913742,30.02149833350537],[-90.08362915759008,30.02156125187387],[-90.08364445604276,30.02162600992434],[-90.08365805466735,30.02169223970046],[-90.08366995346387,30.02175994120221],[-90.08368015243232,30.0218291144296],[-90.08368865157269,30.02189975938263],[-90.08369842558412,30.02197408369315],[-90.08370947446662,30.02205208736113],[-90.08372179822015,30.0221337703866],[-90.08373539684473,30.02221913276956],[-90.08374644572723,30.02230081568387],[-90.08375494486759,30.02237881912955],[-90.08376089426586,30.0224531431066],[-90.08376429392202,30.022523787615],[-90.08376684366414,30.02259075268623],[-90.0837685434922,30.02265403832029],[-90.08376939340624,30.02271364451717],[-90.08376939340624,30.02276957127687],[-90.08376769357817,30.02282549800503],[-90.08376429392202,30.02288142470163],[-90.08375919443779,30.02293735136669],[-90.0837523951255,30.0229932780002],[-90.08374517085618,30.02305030841347],[-90.08373752162984,30.02310844260649],[-90.08372944744649,30.02316768057926],[-90.08372094830612,30.02322802233179],[-90.08371159925171,30.0232876281752],[-90.08370140028326,30.02334649810951],[-90.08369035140078,30.0234046321347],[-90.08367845260426,30.02346203025079],[-90.08366697876477,30.02351722072107],[-90.08365592988227,30.02357020354554],[-90.08364530595681,30.02362097872421],[-90.08363510698835,30.02366954625708],[-90.08362405810587,30.02372804799707],[-90.08361215930935,30.02379648394421],[-90.08359941059879,30.02387485409847],[-90.08358581197419,30.02396315845986],[-90.08357433813468,30.0240389530123],[-90.08356498908027,30.02410223775578],[-90.08355776481096,30.02415301269031],[-90.08355266532672,30.02419127781588],[-90.0835020954415,30.0242210804608],[-90.08340605515531,30.02424242062509],[-90.08321779919605,30.02425640210948],[-90.08289895578856,30.02426393099051],[-90.08290399979614,30.02423699952623],[-90.08282899976609,30.023400000258],[-90.08270900039105,30.02210899972682],[-90.08270199921962,30.02146000046015],[-90.08286699974131,30.02110200033416],[-90.08286800012796,30.02110300046979],[-90.08292599993283,30.02110800010196],[-90.08295399951123,30.02109300046507],[-90.08295000018575,30.02107699954644],[-90.08295099977688,30.02104399959372],[-90.08298900008089,30.02097599939546],[-90.08303700004127,30.02086500060289],[-90.08351556938655,30.02086767365389]]],"type":"Polygon"} +},{ + "id": 1108746613, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":294734.986689, + "geom:bbox":"-89.9551245855,30.0529593194,-89.9472622436,30.0603576979", + "geom:latitude":30.056623, + "geom:longitude":-89.951203, + "iso:country":"US", + "lbl:latitude":30.056644, + "lbl:longitude":-89.951202, + "lbl:max_zoom":18.0, + "mps:latitude":30.056644, + "mps:longitude":-89.951202, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Tamaron" + ], + "reversegeo:latitude":30.056644, + "reversegeo:longitude":-89.951202, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866167, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"c19265d32658cbac0fd590602d5cc8f6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108746613, + "neighbourhood_id":85866167, + "region_id":85688735 + } + ], + "wof:id":1108746613, + "wof:lastmodified":1566623858, + "wof:name":"Tamaron Estates", + "wof:parent_id":85866167, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420521747 + ], + "wof:tags":[] +}, + "bbox": [ + -89.95512458548426, + 30.05295931939734, + -89.94726224357994, + 30.06035769790453 +], + "geometry": {"coordinates":[[[-89.95174354406873,30.06035769790453],[-89.94726224357994,30.05511510796105],[-89.95066732834732,30.05295931939734],[-89.95512458548426,30.05798680483858],[-89.95174354406873,30.06035769790453]]],"type":"Polygon"} +},{ + "id": 1108746615, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000096, + "geom:area_square_m":1029695.538637, + "geom:bbox":"-90.0770446616,29.9386759641,-90.0641554864,29.9507858708", + "geom:latitude":29.945092, + "geom:longitude":-90.069919, + "iso:country":"US", + "lbl:latitude":29.944957, + "lbl:longitude":-90.069152, + "lbl:max_zoom":18.0, + "mps:latitude":29.944957, + "mps:longitude":-90.069152, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Arts District" + ], + "name:eng_x_variant":[ + "Warehouse District" + ], + "reversegeo:latitude":29.944957, + "reversegeo:longitude":-90.069152, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831571, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"8a11df2093164b27e53935eba51bfc93", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746615, + "neighbourhood_id":85831571, + "region_id":85688735 + } + ], + "wof:id":1108746615, + "wof:lastmodified":1566623859, + "wof:name":"Arts District", + "wof:parent_id":85831571, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866969 + ], + "wof:tags":[] +}, + "bbox": [ + -90.07704466161807, + 29.9386759641335, + -90.06415548637294, + 29.9507858708085 +], + "geometry": {"coordinates":[[[-90.06468599280781,29.9443055989188],[-90.06467027117873,29.9437425191974],[-90.06464607882205,29.94298086229337],[-90.06462188646539,29.9423240124752],[-90.06459769410871,29.94176673710469],[-90.06457350175204,29.94130903618185],[-90.06454930939536,29.94095090970667],[-90.06452511703867,29.94069235767916],[-90.06449890865227,29.94044952796338],[-90.06447068423616,29.94022242055934],[-90.0644404437903,29.94001103546703],[-90.06440818731474,29.93981537268646],[-90.06436585069055,29.9395935043199],[-90.06431343391776,29.93934543036736],[-90.06423279272884,29.9389960295477],[-90.06415548637294,29.9386759641335],[-90.06421263243162,29.93867982287177],[-90.06451705291978,29.93870777503283],[-90.06481542531877,29.9387427152323],[-90.06511984580693,29.93877940242556],[-90.06543031438427,29.93881783661259],[-90.06574683105077,29.93885801779339],[-90.06606939580644,29.93889994596796],[-90.06636373614599,29.93895060913302],[-90.06662985206941,29.93901000728855],[-90.06686774357672,29.93907814043456],[-90.06707741066791,29.93915500857104],[-90.06729110981854,29.93923537063716],[-90.06750884102861,29.9393192266329],[-90.06773060429813,29.93940657655827],[-90.06795639962709,29.93949742041327],[-90.06818017892633,29.93958826418531],[-90.06840194219586,29.9396791078744],[-90.06862168943566,29.93976995148053],[-90.06883942064574,29.93986079500371],[-90.06908953046084,29.93996979889893],[-90.06937201888097,29.94009696316621],[-90.06977369731365,29.94028315905838],[-90.07055499998152,29.94065100033398],[-90.07104399956074,29.94091499995629],[-90.07171599914336,29.94125400017266],[-90.07190900054388,29.94135600002322],[-90.07205599959912,29.94142999999291],[-90.07246000033739,29.94165099925485],[-90.07313000023089,29.94206699986802],[-90.0731927646427,29.94209883252378],[-90.07292792892386,29.94249521984905],[-90.07275858242713,29.94276949015076],[-90.0726860053571,29.94291972730946],[-90.07266584505987,29.9430123152326],[-90.07269810153544,29.94304725392017],[-90.072730358011,29.94309267417082],[-90.07276261448658,29.94314857598454],[-90.07279487096214,29.94321495936134],[-90.07282712743771,29.94329182430121],[-90.07285938391328,29.94336694225908],[-90.07289164038883,29.94344031323495],[-90.07292389686441,29.94351193722883],[-90.07295615333997,29.94358181424071],[-90.07300655408305,29.94364819736665],[-90.07307509909363,29.94371108660666],[-90.07316178837172,29.94377048196073],[-90.0732666219173,29.94382638342885],[-90.07342185620597,29.94391722306714],[-90.07362749123772,29.94404300087559],[-90.07388352701253,29.94420371685419],[-90.0741899635304,29.94439937100296],[-90.07449640004829,29.9446002654389],[-90.07480283656618,29.94480640016204],[-90.07510927308407,29.94501777517236],[-90.07541570960194,29.94523439046987],[-90.0757201300901,29.94543004276347],[-90.07602253454856,29.94560473205314],[-90.07632292297727,29.94575845833891],[-90.07662129537626,29.94589122162076],[-90.07684104261605,29.94602573159643],[-90.07698216469666,29.94616198826593],[-90.07704466161807,29.94629999162925],[-90.07702853338029,29.9464397416864],[-90.07700635705334,29.94658997270426],[-90.07697813263721,29.94675068468282],[-90.07694386013192,29.94692187762209],[-90.07690353953745,29.94710355152207],[-90.07684305864578,29.94732016189749],[-90.07676241745685,29.94757170874837],[-90.07666161597071,29.94785819207471],[-90.07654065418734,29.94817961187649],[-90.07642977255259,29.94848880293728],[-90.07632897106643,29.94878576525707],[-90.0762382497289,29.94907049883587],[-90.07615760853999,29.94934300367366],[-90.07607898338078,29.9496120141694],[-90.07600237425132,29.94987753032306],[-90.07592778115156,29.95013955213466],[-90.07585520408155,29.9503980796042],[-90.07574633847651,29.9507858708085],[-90.07498427924125,29.9505762544421],[-90.07447623975106,29.95043651019783],[-90.07387143083419,29.95028104437725],[-90.07316985249062,29.95010985698035],[-90.07237150472034,29.94992294800714],[-90.07147638752335,29.94972031745761],[-90.07062360695055,29.94952467383702],[-90.06981316300192,29.94933601714535],[-90.06904505567749,29.94915434738261],[-90.06831928497724,29.9489796645488],[-90.06762173869311,29.948820703009],[-90.06695241682509,29.94867746276321],[-90.0663113193732,29.94854994381143],[-90.06569844633742,29.94843814615366],[-90.06477913678377,29.948270449667],[-90.06474284824876,29.94665633242461],[-90.06471865589208,29.94558025426301],[-90.0646944635354,29.94460898318728],[-90.06468599280781,29.9443055989188]]],"type":"Polygon"} +},{ + "id": 1108746733, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":333219.52266, + "geom:bbox":"-90.0011973242,29.9127602451,-89.9929191574,29.9178326615", + "geom:latitude":29.915277, + "geom:longitude":-89.997486, + "iso:country":"US", + "lbl:latitude":29.915507, + "lbl:longitude":-89.997566, + "lbl:max_zoom":18.0, + "mps:latitude":29.915507, + "mps:longitude":-89.997566, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:dan_x_preferred":[ + "Bocage" + ], + "name:deu_x_preferred":[ + "Bocage" + ], + "name:epo_x_preferred":[ + "He\u011dkamparo" + ], + "name:eus_x_preferred":[ + "Bocage" + ], + "name:fas_x_preferred":[ + "\u0628\u0648\u06a9\u0627\u0698" + ], + "name:fra_x_preferred":[ + "Bocage" + ], + "name:fry_x_preferred":[ + "K\u00fblissel\u00e2nskip" + ], + "name:ita_x_preferred":[ + "Bocage" + ], + "name:kaz_x_preferred":[ + "\u0411\u043e\u043a\u0430\u0436" + ], + "name:nld_x_preferred":[ + "Coulisselandschap" + ], + "name:pol_x_preferred":[ + "Bocage" + ], + "name:rus_x_preferred":[ + "\u0411\u043e\u043a\u0430\u0436" + ], + "name:spa_x_preferred":[ + "Bocage" + ], + "name:ukr_x_preferred":[ + "\u0411\u043e\u043a\u0430\u0436" + ], + "reversegeo:latitude":29.915507, + "reversegeo:longitude":-89.997566, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108746731, + 102191575, + 1108746803, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739497 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"444faf1853f2d1bef7b91dcb9f188cf5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746803, + "microhood_id":1108746733, + "neighbourhood_id":1108746731, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739497, + "microhood_id":1108746733, + "neighbourhood_id":1108746731, + "region_id":85688735 + } + ], + "wof:id":1108746733, + "wof:lastmodified":1566623858, + "wof:name":"Bocage", + "wof:parent_id":1108746731, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784487 + ], + "wof:tags":[] +}, + "bbox": [ + -90.001197324201, + 29.91276024507897, + -89.9929191574355, + 29.91783266151994 +], + "geometry": {"coordinates":[[[-90.001197324201,29.91312184572075],[-90.00107952668078,29.91506062705729],[-90.0010295130927,29.91598134136792],[-90.0009979827872,29.91655054442246],[-90.00097351961911,29.91698027381536],[-90.00095612358848,29.91727052954662],[-90.00094198931359,29.9174919908144],[-90.00093111679445,29.9176446576187],[-90.00092350603104,29.91772852995951],[-90.00091915702339,29.91774360783684],[-90.00091344895083,29.91775750775441],[-90.00090638181339,29.91777022971223],[-90.00089795561105,29.91778177371029],[-90.00088817034383,29.9177921397486],[-90.00087702601171,29.91780132782715],[-90.00086452261468,29.91780933794595],[-90.00085066015276,29.91781617010499],[-90.00083543862597,29.91782182430428],[-90.00081695534342,29.91782630054542],[-90.00079521030511,29.9178295988284],[-90.00077020351108,29.91783171915325],[-90.0007419349613,29.91783266151994],[-90.00071040465576,29.91783242592848],[-90.00067561259451,29.91783101237887],[-90.0006375587775,29.91782842087111],[-90.00059624320474,29.9178246514052],[-90.00048045087584,29.91781734805925],[-90.00029018179077,29.91780651083324],[-90.00002543594957,29.91779213972719],[-89.99968621335219,29.91777423474108],[-89.99927251399868,29.91775279587493],[-89.99878433788901,29.91772782312873],[-89.99822168502317,29.91769931650247],[-89.9975845554012,29.91766727599617],[-89.99702625154303,29.91763876936856],[-89.99654677344867,29.91761379661965],[-89.99614612111813,29.91759235774943],[-89.9958242945514,29.9175744527579],[-89.99558129374847,29.91756008164506],[-89.99541711870937,29.91754924441093],[-89.99533176943407,29.91754194105548],[-89.99532524592257,29.91753817157873],[-89.99531953785002,29.91753345973193],[-89.99531464521641,29.91752780551509],[-89.99531056802172,29.91752120892821],[-89.995307306266,29.91751366997127],[-89.99530485994919,29.9175051886443],[-89.99530322907131,29.91749576494728],[-89.99530241363237,29.91748539888022],[-89.99530241363237,29.91747409044311],[-89.99530377269727,29.91743851576112],[-89.99530649082705,29.91737867483424],[-89.99531056802174,29.91729456766247],[-89.99531600428131,29.91718619424581],[-89.99532279960577,29.91705355458426],[-89.99533095399514,29.91689664867783],[-89.99534046744938,29.91671547652651],[-89.99535133996854,29.91651003813031],[-89.99536003798386,29.91633027953363],[-89.99536656149533,29.91617620073647],[-89.995370910503,29.91604780173884],[-89.99537308500682,29.91594508254074],[-89.99537308500682,29.91586804314216],[-89.995370910503,29.91581668354311],[-89.99536656149533,29.91579100374359],[-89.99536003798386,29.91579100374359],[-89.99535025271662,29.91579053255064],[-89.99533720569364,29.91578959016476],[-89.99532089691492,29.91578817658593],[-89.99530132638046,29.91578629181416],[-89.99527849409024,29.91578393584946],[-89.99525240004429,29.9157811086918],[-89.99522304424261,29.91577781034121],[-89.99519042668516,29.91577404079767],[-89.99514258760092,29.91576909327066],[-89.99507952698987,29.91576296776017],[-89.99500124485202,29.91575566426619],[-89.99490774118735,29.91574718278874],[-89.99479901599588,29.91573752332781],[-89.99467506927762,29.9157266858834],[-89.99453590103255,29.91571467045551],[-89.99438151126067,29.91570147704414],[-89.99423201412242,29.91568875482497],[-89.99408740961776,29.91567650379799],[-89.99394769774673,29.9156647239632],[-89.99381287850932,29.91565341532061],[-89.99368295190553,29.9156425778702],[-89.99355791793533,29.91563221161199],[-89.99343777659877,29.91562231654597],[-89.99332252789583,29.91561289267214],[-89.99291915743549,29.91557990911376],[-89.99298765430611,29.91450463143392],[-89.99300722484057,29.91419740923968],[-89.99307572171118,29.91312213155984],[-89.99331926614006,29.91313532531182],[-89.99338885026259,29.91313909495524],[-89.9934741995379,29.91314380700867],[-89.99357531396595,29.91314946147209],[-89.99369219354678,29.91315605834551],[-89.99382483828037,29.91316359762893],[-89.99397324816672,29.91317207932235],[-89.99413742320583,29.91318150342576],[-89.9943173633977,29.91319186993918],[-89.99451306874235,29.9132031788626],[-89.99470850227399,29.91321425218247],[-89.99490366399269,29.91322508989878],[-89.99509855389837,29.91323569201154],[-89.99529317199111,29.91324605852075],[-89.99548751827083,29.91325618942641],[-89.99568159273761,29.91326608472851],[-89.99587539539139,29.91327574442706],[-89.9960689262322,29.91328516852207],[-89.99625185636684,29.91329388580969],[-89.99642418579531,29.91330189628994],[-89.99658591451761,29.91330919996282],[-89.99673704253374,29.91331579682832],[-89.9968775698437,29.91332168688645],[-89.99700749644751,29.9133268701372],[-89.99712682234514,29.91333134658058],[-89.9972355475366,29.91333511621658],[-89.99734101097232,29.91333888585244],[-89.99744321265231,29.91334265548815],[-89.99754215257653,29.91334642512373],[-89.99763783074502,29.91335019475916],[-89.99773024715776,29.91335396439445],[-89.99781940181475,29.9133577340296],[-89.99790529471602,29.9133615036646],[-89.99798792586152,29.91336527329946],[-89.99807055700704,29.91336904293418],[-89.99815318815256,29.91337281256876],[-89.99823581929807,29.91337658220319],[-89.99831845044358,29.91338035183748],[-89.99840108158909,29.91338412147163],[-89.99848371273461,29.91338789110564],[-89.99856634388013,29.9133916607395],[-89.99864897502562,29.91339543037321],[-89.99873051891922,29.91339920000679],[-89.9988109755609,29.91340296964023],[-89.99889034495067,29.91340673927352],[-89.99896862708854,29.91341050890667],[-89.99904582197448,29.91341427853968],[-89.99912192960851,29.91341804817254],[-89.99919694999062,29.91342181780526],[-89.9992708831208,29.91342558743784],[-89.99934019543036,29.91342817906018],[-89.99940488691929,29.91342959267228],[-89.99946495758758,29.91342982827416],[-89.99952040743521,29.9134288858658],[-89.99957123646223,29.91342676544721],[-89.9996174446686,29.91342346701838],[-89.99965903205434,29.91341899057932],[-89.99969599861943,29.91341333613003],[-89.9997321497456,29.91340697487361],[-89.99976748543281,29.91339990681006],[-89.99980200568112,29.91339213193939],[-89.99983571049046,29.91338365026159],[-89.99986859986089,29.91337446177667],[-89.99990067379235,29.91336456648463],[-89.99993193228491,29.91335396438546],[-89.99996237533853,29.91334265547916],[-89.99999309020512,29.91332969735296],[-90.00002407688467,29.91331509000685],[-90.00005533537723,29.91329883344083],[-90.00008686568275,29.91328092765491],[-90.00011866780125,29.91326137264908],[-90.00015074173274,29.91324016842334],[-90.0001830874772,29.9132173149777],[-90.00021570503463,29.91319281231215],[-90.00024968165697,29.91316595360629],[-90.0002850173442,29.91313673886014],[-90.00032171209631,29.91310516807368],[-90.00035976591333,29.91307124124692],[-90.0004046150548,29.91302953950636],[-90.00045625952075,29.912980062852],[-90.00053100808987,29.91290655466336],[-90.00067778709834,29.91276024507897],[-90.001197324201,29.91312184572075]]],"type":"Polygon"} +},{ + "id": 1108746735, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000253, + "geom:area_square_m":2707400.212753, + "geom:bbox":"-89.961388,30.038487,-89.93984,30.057746", + "geom:latitude":30.047089, + "geom:longitude":-89.948723, + "iso:country":"US", + "lbl:latitude":30.046381, + "lbl:longitude":-89.947851, + "lbl:max_zoom":18.0, + "mps:latitude":30.046381, + "mps:longitude":-89.947851, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Eastover" + ], + "name:ceb_x_preferred":[ + "Eastover" + ], + "name:deu_x_preferred":[ + "Eastover" + ], + "name:fra_x_preferred":[ + "Eastover" + ], + "name:ita_x_preferred":[ + "Eastover" + ], + "name:nld_x_preferred":[ + "Eastover" + ], + "name:pol_x_preferred":[ + "Eastover" + ], + "name:srp_x_preferred":[ + "\u0418\u0441\u0442\u043e\u0432\u0435\u0440" + ], + "name:vol_x_preferred":[ + "Eastover" + ], + "reversegeo:latitude":30.046381, + "reversegeo:longitude":-89.947851, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866173, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"39129b8deae6093e84ff8f3c7d4228ef", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108746735, + "neighbourhood_id":85866173, + "region_id":85688735 + } + ], + "wof:id":1108746735, + "wof:lastmodified":1617130092, + "wof:name":"Eastover", + "wof:parent_id":85866173, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784455 + ], + "wof:tags":[] +}, + "bbox": [ + -89.961388, + 30.038487, + -89.93984, + 30.057746 +], + "geometry": {"coordinates":[[[-89.94381199999999,30.057324],[-89.943459,30.057451],[-89.94318699999999,30.057511],[-89.942897,30.057581],[-89.942521,30.057651],[-89.942058,30.057721],[-89.94161200000001,30.057746],[-89.941183,30.057726],[-89.940882,30.057701],[-89.940708,30.057671],[-89.940479,30.057566],[-89.94022200000001,30.057325],[-89.940031,30.057125],[-89.939915,30.056944],[-89.939851,30.056719],[-89.93984,30.056448],[-89.939851,30.056218],[-89.939886,30.056027],[-89.94000200000001,30.055766],[-89.94019900000001,30.055436],[-89.94038999999999,30.05518],[-89.940575,30.055],[-89.940697,30.054854],[-89.940755,30.054744],[-89.94077799999999,30.054609],[-89.940766,30.054448],[-89.940743,30.054218],[-89.940708,30.053917],[-89.940656,30.05339],[-89.94058699999999,30.052639],[-89.940488,30.051671],[-89.940361,30.050488],[-89.940268,30.049646],[-89.94020999999999,30.049145],[-89.940164,30.048699],[-89.940129,30.048308],[-89.940112,30.047997],[-89.940112,30.047766],[-89.940112,30.047515],[-89.940112,30.047245],[-89.940129,30.047029],[-89.940164,30.046869],[-89.94019299999999,30.046688],[-89.94021600000001,30.046488],[-89.940262,30.046287],[-89.940332,30.046087],[-89.940442,30.045811],[-89.940592,30.04546],[-89.940946,30.044683],[-89.941502,30.04348],[-89.94183700000001,30.042763],[-89.941953,30.042532],[-89.94202900000001,30.042342],[-89.942063,30.042192],[-89.942075,30.042056],[-89.942063,30.041936],[-89.94202300000001,30.041841],[-89.941953,30.04177],[-89.94179699999999,30.04164],[-89.94143200000001,30.041354],[-89.94181399999999,30.041089],[-89.94257899999999,30.040557],[-89.943123,30.040181],[-89.94344700000001,30.039961],[-89.94376,30.03978],[-89.944061,30.03964],[-89.944345,30.039509],[-89.94461200000001,30.039389],[-89.944866,30.039289],[-89.94511,30.039209],[-89.945324,30.039149],[-89.945509,30.039108],[-89.945741,30.039083],[-89.94601900000001,30.039073],[-89.946314,30.039083],[-89.94662700000001,30.039113],[-89.947067,30.039159],[-89.94763500000001,30.039219],[-89.948301,30.039304],[-89.949065,30.039414],[-89.949771,30.039525],[-89.95041999999999,30.039635],[-89.950999,30.039705],[-89.951509,30.039735],[-89.951926,30.039725],[-89.95225000000001,30.039675],[-89.952569,30.03962],[-89.952881,30.03956],[-89.95322899999999,30.039459],[-89.953611,30.039319],[-89.953959,30.039164],[-89.95427100000001,30.038993],[-89.954584,30.038803],[-89.95505300000001,30.038487],[-89.95665099999999,30.040437],[-89.961388,30.046174],[-89.961316,30.046219],[-89.96111999999999,30.046348],[-89.960235,30.046927],[-89.959214,30.047574],[-89.958555,30.047999],[-89.957807,30.048449],[-89.957633,30.048559],[-89.95621199999999,30.049455],[-89.954971,30.050239],[-89.95369599999999,30.051067],[-89.952828,30.051613],[-89.950863,30.052834],[-89.948866,30.054113],[-89.947525,30.054949],[-89.946027,30.055896],[-89.944543,30.056846],[-89.94381199999999,30.057324]]],"type":"Polygon"} +},{ + "id": 1108746737, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0002, + "geom:area_square_m":2145924.140813, + "geom:bbox":"-90.090464,29.966021,-90.062431,29.988629", + "geom:latitude":29.976308, + "geom:longitude":-90.07823, + "iso:country":"US", + "lbl:latitude":29.976934, + "lbl:longitude":-90.08308, + "lbl:max_zoom":18.0, + "mps:latitude":29.976934, + "mps:longitude":-90.08308, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":29.976934, + "reversegeo:longitude":-90.08308, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866065, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"4e19e421e1489f9136a1ad96136d464f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746737, + "neighbourhood_id":85866065, + "region_id":85688735 + } + ], + "wof:id":1108746737, + "wof:lastmodified":1617131164, + "wof:name":"Esplanade Ridge", + "wof:parent_id":85866065, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784469 + ], + "wof:tags":[] +}, + "bbox": [ + -90.090464, + 29.966021, + -90.062431, + 29.988629 +], + "geometry": {"coordinates":[[[-90.07456500000001,29.980044],[-90.066903,29.974822],[-90.062431,29.9673],[-90.062579,29.967143],[-90.062967,29.966719],[-90.063597,29.966021],[-90.06451199999999,29.966608],[-90.06530600000001,29.967195],[-90.065836,29.967577],[-90.06685899999999,29.968259],[-90.06762500000001,29.968807],[-90.068365,29.969334],[-90.06845800000001,29.9694],[-90.068601,29.9695],[-90.068714,29.969575],[-90.06948199999999,29.970097],[-90.070368,29.970683],[-90.071235,29.97127],[-90.07208900000001,29.971881],[-90.07297199999999,29.972507],[-90.073042,29.972546],[-90.073121,29.972611],[-90.073188,29.972675],[-90.073244,29.972731],[-90.073504,29.972874],[-90.07364,29.972943],[-90.07375,29.973002],[-90.07384500000001,29.973062],[-90.07395099999999,29.973092],[-90.07404099999999,29.973123],[-90.074174,29.973181],[-90.074798,29.973585],[-90.075631,29.974251],[-90.076821,29.975085],[-90.078176,29.975992],[-90.078676,29.975416],[-90.078941,29.975115],[-90.079412,29.974567],[-90.07981100000001,29.974128],[-90.080037,29.973867],[-90.08008599999999,29.973811],[-90.080793,29.973004],[-90.081547,29.972115],[-90.082273,29.971282],[-90.08271999999999,29.970765],[-90.08279,29.970686],[-90.082868,29.970598],[-90.090457,29.975627],[-90.090396,29.975774],[-90.09038099999999,29.975815],[-90.090354,29.975868],[-90.09040899999999,29.975931],[-90.090311,29.976011],[-90.090255,29.976268],[-90.090194,29.97652],[-90.09007099999999,29.976761],[-90.08969500000001,29.97723],[-90.08942500000001,29.977478],[-90.08920999999999,29.977653],[-90.088731,29.978114],[-90.088466,29.978361],[-90.08816899999999,29.978784],[-90.08776,29.979445],[-90.087568,29.979889],[-90.087551,29.98014],[-90.087896,29.980376],[-90.088257,29.980633],[-90.088746,29.980954],[-90.08909199999999,29.981182],[-90.08999799999999,29.981877],[-90.090464,29.9826],[-90.090343,29.982891],[-90.089966,29.983058],[-90.08960500000001,29.983385],[-90.089401,29.983706],[-90.089392,29.983723],[-90.089384,29.983746],[-90.08937,29.983772],[-90.089135,29.983629],[-90.089017,29.983462],[-90.08841,29.983062],[-90.088021,29.982784],[-90.085832,29.988629],[-90.084597,29.988575],[-90.086172,29.984267],[-90.085199,29.984026],[-90.085122,29.984006],[-90.085083,29.98398],[-90.085065,29.983958],[-90.08506,29.983933],[-90.085064,29.983883],[-90.085238,29.983284],[-90.08577,29.98171],[-90.083832,29.981628],[-90.077414,29.981407],[-90.07729,29.982009],[-90.07456500000001,29.980044]]],"type":"Polygon"} +},{ + "id": 1108746741, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":735604.097836, + "geom:bbox":"-90.0182811873,30.0283584348,-90.0046616387,30.0375132617", + "geom:latitude":30.032878, + "geom:longitude":-90.011492, + "iso:country":"US", + "lbl:latitude":30.03285, + "lbl:longitude":-90.011492, + "lbl:max_zoom":18.0, + "mps:latitude":30.03285, + "mps:longitude":-90.011492, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:azb_x_preferred":[ + "\u06a9\u0646\u06cc\u0644\u200c\u0648\u0648\u0631\u062b" + ], + "name:bul_x_preferred":[ + "\u041a\u0435\u043d\u0438\u043b\u0443\u044a\u0440\u0442" + ], + "name:cym_x_preferred":[ + "Kenilworth" + ], + "name:epo_x_preferred":[ + "Kenilworth" + ], + "name:fas_x_preferred":[ + "\u06a9\u0646\u06cc\u0644\u200c\u0648\u0648\u0631\u062b" + ], + "name:fin_x_preferred":[ + "Kenilworth" + ], + "name:fra_x_preferred":[ + "Kenilworth" + ], + "name:gle_x_preferred":[ + "Kenilworth" + ], + "name:ita_x_preferred":[ + "Kenilworth" + ], + "name:nld_x_preferred":[ + "Kenilworth" + ], + "name:nno_x_preferred":[ + "Kenilworth" + ], + "name:pol_x_preferred":[ + "Kenilworth" + ], + "name:por_x_preferred":[ + "Kenilworth" + ], + "name:ron_x_preferred":[ + "Kenilworth" + ], + "name:spa_x_preferred":[ + "Kenilworth" + ], + "name:swe_x_preferred":[ + "Kenilworth" + ], + "name:vol_x_preferred":[ + "Kenilworth" + ], + "name:zho_x_preferred":[ + "\u51f1\u5c3c\u723e\u6c83\u601d" + ], + "reversegeo:latitude":30.03285, + "reversegeo:longitude":-90.011492, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866167, + 102191575, + 1108739495, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ae63dc073eacd5d894786cd23c88f44b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739495, + "microhood_id":1108746741, + "neighbourhood_id":85866167, + "region_id":85688735 + } + ], + "wof:id":1108746741, + "wof:lastmodified":1566623857, + "wof:name":"Kenilworth", + "wof:parent_id":85866167, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784491 + ], + "wof:tags":[] +}, + "bbox": [ + -90.01828118734412, + 30.02835843475582, + -90.00466163866052, + 30.03751326170649 +], + "geometry": {"coordinates":[[[-90.01828118734412,30.0336308014356],[-90.0145246411094,30.03481991059284],[-90.01270428830841,30.03540729659849],[-90.0104040243145,30.03618092163485],[-90.00797137102593,30.03702617171472],[-90.00767349511304,30.03716943372555],[-90.00739216786198,30.03732702169825],[-90.00725030454448,30.03738503002254],[-90.00677986737438,30.03751326170649],[-90.0058241821539,30.03522105263218],[-90.00552216907553,30.03446174668559],[-90.00548125453143,30.0342970276467],[-90.00543322001819,30.03409820899486],[-90.00537323111909,30.03381704839054],[-90.00532006146503,30.03360642399296],[-90.00522429316264,30.03335859371801],[-90.00466163866052,30.03229840916511],[-90.0079051763786,30.03106628854414],[-90.01282012894121,30.02944731607116],[-90.01631189658669,30.02835843475582],[-90.01828118734412,30.0336308014356]]],"type":"Polygon"} +},{ + "id": 1108746743, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":742680.283104, + "geom:bbox":"-90.0749024577,29.9953228778,-90.068670897,30.011859887", + "geom:latitude":30.004522, + "geom:longitude":-90.071737, + "iso:country":"US", + "lbl:latitude":30.004454, + "lbl:longitude":-90.071796, + "lbl:max_zoom":18.0, + "mps:latitude":30.004454, + "mps:longitude":-90.071796, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":30.004454, + "reversegeo:longitude":-90.071796, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85891215, + 102191575, + 1108746797, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739491 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"9df04f05fd4dc1c012821fd7902e644c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746797, + "microhood_id":1108746743, + "neighbourhood_id":85891215, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746743, + "neighbourhood_id":85891215, + "region_id":85688735 + } + ], + "wof:id":1108746743, + "wof:lastmodified":1566623857, + "wof:name":"Mirabeau Gardens", + "wof:parent_id":85891215, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784471 + ], + "wof:tags":[] +}, + "bbox": [ + -90.07490245771122, + 29.99532287783589, + -90.06867089699402, + 30.0118598869503 +], + "geometry": {"coordinates":[[[-90.06949500035218,30.00538499981172],[-90.06887765966854,29.99787588439743],[-90.06867089699402,29.99532287783589],[-90.07387703803784,29.99956450126172],[-90.07388399943231,29.99966399945048],[-90.07392999984498,30.00009600009263],[-90.07396499991167,30.00059799986927],[-90.07397700038062,30.00076200049633],[-90.07401100038611,30.00111100005078],[-90.0740839997263,30.00213399993787],[-90.07454493005717,30.00743840154512],[-90.07490245771122,30.01155287316658],[-90.07007381167415,30.0118598869503],[-90.06969999933997,30.00764999965922],[-90.06968999994517,30.00753800032279],[-90.06949500035218,30.00538499981172]]],"type":"Polygon"} +},{ + "id": 1108746745, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000094, + "geom:area_square_m":1005179.511682, + "geom:bbox":"-90.0824934433,30.0071091705,-90.0745449301,30.0212552591", + "geom:latitude":30.01386, + "geom:longitude":-90.078503, + "iso:country":"US", + "lbl:latitude":30.013838, + "lbl:longitude":-90.078451, + "lbl:max_zoom":18.0, + "mps:latitude":30.013838, + "mps:longitude":-90.078451, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Oak Park" + ], + "name:ceb_x_preferred":[ + "Oak Park" + ], + "name:ces_x_preferred":[ + "Oak Park" + ], + "name:dan_x_preferred":[ + "Oak Park" + ], + "name:deu_x_preferred":[ + "Oak Park" + ], + "name:fra_x_preferred":[ + "Oak Park" + ], + "name:ita_x_preferred":[ + "Oak Park" + ], + "name:kor_x_preferred":[ + "\uc624\ud06c\ud30c\ud06c" + ], + "name:mlg_x_preferred":[ + "Oak Park" + ], + "name:nld_x_preferred":[ + "Oak Park" + ], + "name:pol_x_preferred":[ + "Oak Park" + ], + "name:por_x_preferred":[ + "Oak Park" + ], + "name:rus_x_preferred":[ + "\u041e\u043a-\u041f\u0430\u0440\u043a" + ], + "name:slk_x_preferred":[ + "Oak Park" + ], + "name:spa_x_preferred":[ + "Oak Park" + ], + "name:srp_x_preferred":[ + "\u041e\u0443\u043a \u041f\u0430\u0440\u043a" + ], + "name:swa_x_preferred":[ + "Oak Park" + ], + "name:swe_x_preferred":[ + "Oak Park" + ], + "name:urd_x_preferred":[ + "\u0627\u0648\u06a9 \u067e\u0627\u0631\u06a9" + ], + "name:vol_x_preferred":[ + "Oak Park" + ], + "name:zho_x_preferred":[ + "\u5965\u514b\u5e15\u514b" + ], + "reversegeo:latitude":30.013838, + "reversegeo:longitude":-90.078451, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85891215, + 102191575, + 1108746797, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739491 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"a8104bf4036a1265e0ec64a9341a79df", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746797, + "microhood_id":1108746745, + "neighbourhood_id":85891215, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746745, + "neighbourhood_id":85891215, + "region_id":85688735 + } + ], + "wof:id":1108746745, + "wof:lastmodified":1566623857, + "wof:name":"Oak Park", + "wof:parent_id":85891215, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784475 + ], + "wof:tags":[] +}, + "bbox": [ + -90.08249344332286, + 30.00710917051331, + -90.07454493005717, + 30.02125525912035 +], + "geometry": {"coordinates":[[[-90.0756841731053,30.02125525912035],[-90.07490245771122,30.01155287316658],[-90.07454493005717,30.00743840154512],[-90.07896616103207,30.00718422665572],[-90.08094903753934,30.00710917051331],[-90.08194493670749,30.00712958716181],[-90.08243099051948,30.00713973259388],[-90.08246072994967,30.00737157436492],[-90.08247113875022,30.00751579218102],[-90.08248006057929,30.00764970856067],[-90.08248749543682,30.00777332350385],[-90.08249344332286,30.00788663701058],[-90.08249046937983,30.00800252567666],[-90.08247857360777,30.00812098950211],[-90.08245775600665,30.00824202848692],[-90.08242801657647,30.0083656426311],[-90.08240273806082,30.00848410606827],[-90.0823819204597,30.00859741879844],[-90.0823655637731,30.00870558082161],[-90.08235366800103,30.00880859213778],[-90.08233285039991,30.00892190440586],[-90.08230311096972,30.00904551762586],[-90.08226444971049,30.00917943179777],[-90.08221686662219,30.0093236469216],[-90.08217969233448,30.00945369795776],[-90.0821529268473,30.00956958490627],[-90.08213657016071,30.00967130776711],[-90.08213062227468,30.00975886654029],[-90.08213210924619,30.00984900048005],[-90.08214103107524,30.00994170958639],[-90.08215738776184,30.0100369938593],[-90.08218117930599,30.01013485329879],[-90.0822005099356,30.01024301356584],[-90.08221537965071,30.01036147466046],[-90.08222578845125,30.01049023658264],[-90.08223173633729,30.01062929933238],[-90.08222876239427,30.01075419819155],[-90.0822168666222,30.01086493316014],[-90.08219604902108,30.01096150423815],[-90.08216630959089,30.01104391142558],[-90.08211575255959,30.01115335820917],[-90.08204437792715,30.01128984458894],[-90.08195218569359,30.01145337056486],[-90.08183917585892,30.01164393613696],[-90.08174400968234,30.01180874948196],[-90.08166668716387,30.01194781059989],[-90.08160720830351,30.01206111949072],[-90.08156557310126,30.01214867615447],[-90.08153434669957,30.01223752033197],[-90.08151352909844,30.01232765202323],[-90.08150312029788,30.01241907122824],[-90.08150312029788,30.01251177794702],[-90.08150758121241,30.01263281140852],[-90.08151650304147,30.01278217161276],[-90.08152988578505,30.01295985855973],[-90.08154772944314,30.01316587224944],[-90.08156706007276,30.01343368853984],[-90.08158787767388,30.01376330743096],[-90.08161018224652,30.01415472892277],[-90.08163397379067,30.01460795301528],[-90.0816547913918,30.01500323577452],[-90.08167263504991,30.0153405772005],[-90.081687504765,30.01561997729321],[-90.08169940053706,30.01584143605265],[-90.08170683539461,30.01603714359056],[-90.08170980933762,30.01620709990694],[-90.08170832236613,30.01635130500177],[-90.08170237448007,30.01646975887507],[-90.08169791356555,30.0165856375406],[-90.08169493962254,30.01669894099837],[-90.08169345265102,30.01680966924838],[-90.08169345265102,30.01691782229062],[-90.08170088750856,30.01707232604212],[-90.08171575722366,30.01727318050288],[-90.0817380617963,30.01752038567289],[-90.08176780122648,30.01781394155217],[-90.08179307974214,30.0180843214666],[-90.08181389734327,30.01833152541619],[-90.08183025402987,30.01855555340094],[-90.08184214980193,30.01875640542085],[-90.081854045574,30.01894824454628],[-90.08186594134608,30.01913107077722],[-90.08187783711816,30.01930488411369],[-90.08188973289022,30.01946968455568],[-90.08189568077626,30.01964092217352],[-90.08189568077626,30.01981859696718],[-90.08188973289022,30.02000270893669],[-90.08187783711816,30.02019325808204],[-90.08184661071647,30.02039796911822],[-90.08179605368515,30.02061684204523],[-90.08170909565153,30.02089493688537],[-90.08156200042625,30.02091199991539],[-90.08110200010037,30.02093599989486],[-90.07979700011312,30.02101499991782],[-90.07942399974856,30.02103899943721],[-90.0784400008224,30.02109900040873],[-90.0774920002594,30.02116800047958],[-90.07647499976152,30.0212180002495],[-90.0756841731053,30.02125525912035]]],"type":"Polygon"} +},{ + "id": 1108746751, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000038, + "geom:area_square_m":405959.157385, + "geom:bbox":"-90.0138065672,29.9110452812,-90.0075732277,29.9200325511", + "geom:latitude":29.914646, + "geom:longitude":-90.011055, + "iso:country":"US", + "lbl:latitude":29.914581, + "lbl:longitude":-90.010995, + "lbl:max_zoom":18.0, + "mps:latitude":29.914581, + "mps:longitude":-90.010995, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":29.914581, + "reversegeo:longitude":-90.010995, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866161, + 102191575, + 1108739497, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"28471a5f8aaf2e2a2631072630f4792f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739497, + "microhood_id":1108746751, + "neighbourhood_id":85866161, + "region_id":85688735 + } + ], + "wof:id":1108746751, + "wof:lastmodified":1566623855, + "wof:name":"Park Timbers", + "wof:parent_id":85866161, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784485 + ], + "wof:tags":[] +}, + "bbox": [ + -90.01380656724213, + 29.91104528119967, + -90.00757322765762, + 29.92003255109342 +], + "geometry": {"coordinates":[[[-90.00842447667574,29.91643629983619],[-90.00842447667574,29.91600192830273],[-90.0084261929036,29.91550359790363],[-90.00842962535933,29.9151852606669],[-90.00843477404291,29.91493386266563],[-90.00844163895434,29.91474940389982],[-90.00843305781505,29.91456196961716],[-90.00840903062502,29.91437155981766],[-90.00836955738427,29.91417817450132],[-90.00831463809277,29.91398181366814],[-90.00826658371273,29.9138033036182],[-90.00822539424409,29.9136426443515],[-90.00819106968692,29.91349983586805],[-90.00816361004115,29.91337487816784],[-90.00812242057253,29.91323504426437],[-90.00806750128105,29.91308033415765],[-90.00799885216668,29.91291074784768],[-90.00791647322943,29.91272628533445],[-90.0078461078872,29.91256264908895],[-90.00778775614,29.91241983911117],[-90.0077414179878,29.91229785540112],[-90.00770709343061,29.9121966979588],[-90.007677917557,29.9121059537346],[-90.00765389036698,29.91202562272852],[-90.00763501186053,29.91195570494057],[-90.00762128203766,29.91189620037075],[-90.00760926844265,29.91182479479737],[-90.0075989710755,29.91174148822043],[-90.00759038993621,29.91164628063994],[-90.00758352502476,29.91153917205589],[-90.00757837634119,29.91143801386909],[-90.00757494388547,29.91134280607955],[-90.00757322765762,29.91125354868726],[-90.00757322765762,29.91117024169222],[-90.00757322765762,29.91104528119967],[-90.00991073000181,29.91116131595662],[-90.01146906489794,29.91123867246126],[-90.01380656724213,29.91135470721821],[-90.01354226815181,29.91532201652771],[-90.01322845596739,29.92003255109342],[-90.01318199963508,29.92000399960797],[-90.01270799991664,29.91968000027812],[-90.01242100077924,29.919478999856],[-90.01217299917994,29.91928399969954],[-90.01202299950042,29.91916599974392],[-90.01152399987352,29.91871999970364],[-90.01137299983228,29.91858600038107],[-90.01124900004518,29.91848400034609],[-90.01069599956681,29.91808900000164],[-90.0098729998945,29.9175799998049],[-90.00973700044771,29.9174900000306],[-90.00954499953062,29.917297000055],[-90.00940399999854,29.91713800059835],[-90.00917899992608,29.91693999973597],[-90.00894200020581,29.91676899982257],[-90.00871100004366,29.91661399972581],[-90.00848500012093,29.91647099971826],[-90.00842447667574,29.91643629983619]]],"type":"Polygon"} +},{ + "id": 1108746753, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00006, + "geom:area_square_m":641853.790011, + "geom:bbox":"-90.1042012963,29.9517239995,-90.0941170003,29.9625956685", + "geom:latitude":29.957171, + "geom:longitude":-90.099463, + "iso:country":"US", + "lbl:latitude":29.957043, + "lbl:longitude":-90.099464, + "lbl:max_zoom":18.0, + "mps:latitude":29.957043, + "mps:longitude":-90.099464, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":29.957043, + "reversegeo:longitude":-90.099464, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85866077, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"43c3521e0bff2710cd3909aeedd4067c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746753, + "neighbourhood_id":85866077, + "region_id":85688735 + } + ], + "wof:id":1108746753, + "wof:lastmodified":1566623855, + "wof:name":"Zion City", + "wof:parent_id":85866077, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784467 + ], + "wof:tags":[] +}, + "bbox": [ + -90.10420129626618, + 29.95172399954808, + -90.09411700027944, + 29.9625956684598 +], + "geometry": {"coordinates":[[[-90.10219899978263,29.95396200032061],[-90.10420129626618,29.95802857111458],[-90.10075393321225,29.9625956684598],[-90.10072000033342,29.96256800045059],[-90.09726699945401,29.96011900034057],[-90.09613100025339,29.95930900035866],[-90.0957860007387,29.95907399989423],[-90.09563199946764,29.95895300034898],[-90.09561500059837,29.95891099977121],[-90.09557600039213,29.95886099972599],[-90.09552900067692,29.95882500003551],[-90.09417100000576,29.95784199923073],[-90.09411700027944,29.95781000033468],[-90.09422400086163,29.95765699988506],[-90.09437999978833,29.95743200026688],[-90.09548500002913,29.95588100022161],[-90.09567999990361,29.95561099933644],[-90.09584800036913,29.95537799985003],[-90.09603200003892,29.95513499965176],[-90.09618099953902,29.95494400011656],[-90.09674100063634,29.9542080000109],[-90.09695599925594,29.95390999964901],[-90.09715999993426,29.95361699950498],[-90.09734399955752,29.95335599987568],[-90.09757299924365,29.9530410003633],[-90.09786100029262,29.95264600013245],[-90.09790899957399,29.95255699963977],[-90.09793699943123,29.95250299996718],[-90.09795100022463,29.95245300014746],[-90.09795300002747,29.95243699990525],[-90.09796399996127,29.95239900038304],[-90.09798200069376,29.95212599978793],[-90.098000000092,29.95202699972687],[-90.09802100005878,29.95197099994432],[-90.09807000067502,29.95188100010141],[-90.09816999939173,29.95180100016436],[-90.09818499980803,29.95179000029029],[-90.09827599997308,29.95172399954808],[-90.09849400029671,29.95185700005095],[-90.09884000015339,29.95206699982889],[-90.10016499931031,29.95278900034031],[-90.10104699957731,29.9532829998738],[-90.10191700017907,29.95375200041714],[-90.10219899978263,29.95396200032061]]],"type":"Polygon"} +},{ + "id": 1108746761, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000047, + "geom:area_square_m":504085.290642, + "geom:bbox":"-90.0756841731,30.0115528732,-90.0700738117,30.0214989996", + "geom:latitude":30.016569, + "geom:longitude":-90.07289, + "iso:country":"US", + "lbl:latitude":30.016558, + "lbl:longitude":-90.072891, + "lbl:max_zoom":18.0, + "mps:latitude":30.016558, + "mps:longitude":-90.072891, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":30.016558, + "reversegeo:longitude":-90.072891, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85891215, + 102191575, + 1108746797, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739491 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"e3f6f1d7becd5e0efa28e626818902a4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746797, + "microhood_id":1108746761, + "neighbourhood_id":85891215, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746761, + "neighbourhood_id":85891215, + "region_id":85688735 + } + ], + "wof:id":1108746761, + "wof:lastmodified":1566623859, + "wof:name":"Vista Park", + "wof:parent_id":85891215, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784473 + ], + "wof:tags":[] +}, + "bbox": [ + -90.0756841731053, + 30.01155287316658, + -90.07007381167415, + 30.02149899959093 +], + "geometry": {"coordinates":[[[-90.07007381167415,30.0118598869503],[-90.07490245771122,30.01155287316658],[-90.0756841731053,30.02125525912035],[-90.07562600029239,30.02125799986424],[-90.07537900036168,30.02127700038032],[-90.07523199997939,30.02128800051792],[-90.07506600059131,30.0213050000381],[-90.07491399932267,30.0213299995753],[-90.07482799998144,30.02135100050254],[-90.07441899929292,30.02144099995306],[-90.07421999996876,30.0214740004227],[-90.07404299984962,30.02149099992554],[-90.07388599981812,30.02149899959093],[-90.07377100038671,30.02149799972717],[-90.07361799990349,30.0214859999591],[-90.07359000036737,30.02148199960751],[-90.07353300059366,30.0214750006992],[-90.07335899996116,30.02145899956193],[-90.07318800000654,30.02144199928433],[-90.07294299986359,30.0214360003649],[-90.07279899972106,30.02143499993444],[-90.07253500029952,30.02144600022377],[-90.07225800043469,30.02146300063903],[-90.07163699951965,30.02145799990448],[-90.07079900018839,30.02140799991474],[-90.07080300009906,30.02116799932546],[-90.07078999967868,30.02091999994934],[-90.07075099968152,30.02043499997425],[-90.07072700051013,30.02004600005662],[-90.07068099993754,30.01958899999332],[-90.07066099981378,30.01908400033596],[-90.07051200067662,30.01729999980091],[-90.070463000462,30.01625699980463],[-90.07007399924359,30.01186199936368],[-90.07007381167415,30.0118598869503]]],"type":"Polygon"} +},{ + "id": 1108746795, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000078, + "geom:area_square_m":838896.564997, + "geom:bbox":"-90.1400311104,29.938404001,-90.1294986974,29.9531921094", + "geom:latitude":29.946299, + "geom:longitude":-90.135925, + "iso:country":"US", + "lbl:latitude":29.946622, + "lbl:longitude":-90.136005, + "lbl:max_zoom":18.0, + "mps:latitude":29.946622, + "mps:longitude":-90.136005, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Riverbend" + ], + "name:fra_x_preferred":[ + "Riverbend" + ], + "name:ita_x_preferred":[ + "Riverbend" + ], + "name:nld_x_preferred":[ + "Riverbend" + ], + "name:pol_x_preferred":[ + "Riverbend" + ], + "name:por_x_preferred":[ + "Riverbend" + ], + "name:srp_x_preferred":[ + "\u0420\u0438\u0432\u0435\u0440\u0431\u0435\u043d\u0434" + ], + "name:vol_x_preferred":[ + "Riverbend" + ], + "reversegeo:latitude":29.946622, + "reversegeo:longitude":-90.136005, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 420784465, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"a113263143411a6ec08c6eee1b988447", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108746795, + "neighbourhood_id":420784465, + "region_id":85688735 + } + ], + "wof:id":1108746795, + "wof:lastmodified":1566623860, + "wof:name":"Riverbend", + "wof:parent_id":420784465, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420784463 + ], + "wof:tags":[] +}, + "bbox": [ + -90.14003111043861, + 29.93840400101818, + -90.12949869744205, + 29.95319210939049 +], + "geometry": {"coordinates":[[[-90.13684353037603,29.95319210939049],[-90.12949869744205,29.94730238955953],[-90.12959899976404,29.94720400042095],[-90.1303939993853,29.94650699990923],[-90.13117500037484,29.94582999985064],[-90.13190000054797,29.94514100033404],[-90.13263999991743,29.94443399993447],[-90.13332299955552,29.94378899964809],[-90.13401100050459,29.94306200041081],[-90.13406100049764,29.94298300002892],[-90.13410600025881,29.94292999945041],[-90.13420400072447,29.94281499930794],[-90.13440699958439,29.94262899997498],[-90.13451600003076,29.94252600017197],[-90.13465300055339,29.94245400046607],[-90.13475199973912,29.94232700041718],[-90.13534000052638,29.94180000037808],[-90.13607000010791,29.94114499951089],[-90.13897400176421,29.93840400101818],[-90.13900751265565,29.93859034562688],[-90.13941540682163,29.94085850782764],[-90.13948599682072,29.94282296968744],[-90.13948599748963,29.94282300036915],[-90.13977299921417,29.94530900089417],[-90.13980277912644,29.94557209404096],[-90.13990922276413,29.94651246861418],[-90.13993899299253,29.94677547858852],[-90.14003111043861,29.94758925927808],[-90.13884785434377,29.94966918119516],[-90.13684353037603,29.95319210939049]]],"type":"Polygon"} +},{ + "id": 1108748667, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":165112.763004, + "geom:bbox":"-105.007700509,39.751335126,-105.000357646,39.7596659163", + "geom:latitude":39.755593, + "geom:longitude":-105.004, + "iso:country":"US", + "lbl:latitude":39.757623, + "lbl:longitude":-105.002824, + "lbl:max_zoom":18.0, + "mps:latitude":39.757623, + "mps:longitude":-105.002824, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Riverfront Park" + ], + "reversegeo:latitude":39.757623, + "reversegeo:longitude":-105.002824, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85871287, + 102191575, + 1108750057, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1088a413ce6f9b47e1ce564e29227ed3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750057, + "microhood_id":1108748667, + "neighbourhood_id":85871287, + "region_id":85688603 + } + ], + "wof:id":1108748667, + "wof:lastmodified":1566623858, + "wof:name":"Riverfront Park", + "wof:parent_id":85871287, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781631 + ], + "wof:tags":[] +}, + "bbox": [ + -105.00770050943173, + 39.75133512600133, + -105.00035764585972, + 39.75966591631018 +], + "geometry": {"coordinates":[[[[-105.00035764585972,39.75896788763997],[-105.0004775014946,39.75869741702692],[-105.00055854346074,39.75852082983388],[-105.00062080086521,39.75839292764478],[-105.00068091146261,39.75827616509342],[-105.00073887525296,39.75817054217983],[-105.00079254542922,39.75807605910899],[-105.00084192199138,39.75799271588095],[-105.00088700493944,39.75792051249566],[-105.00092779427339,39.75785944895316],[-105.00097073041441,39.7577983853565],[-105.00101581336247,39.75773732170572],[-105.00106304311757,39.75767625800079],[-105.00111241967973,39.75761519424172],[-105.0011687733648,39.75755330523812],[-105.00123210417279,39.75749059098996],[-105.00130241210368,39.75742705149727],[-105.00137969715749,39.75736268676003],[-105.00147576677298,39.75728264325633],[-105.0015906209502,39.75718692098618],[-105.00172425968907,39.75707551994956],[-105.00187668298965,39.75694844014647],[-105.00201568874617,39.75683415073117],[-105.0021412769586,39.75673265170366],[-105.00225344762697,39.75664394306392],[-105.00235220075129,39.75656802481195],[-105.00244451345444,39.75649581989204],[-105.00253038573646,39.75642732830414],[-105.00260981759732,39.75636255004829],[-105.00268280903705,39.75630148512447],[-105.00274721324854,39.75624372096949],[-105.00280303023186,39.75618925758337],[-105.00285025998696,39.75613809496609],[-105.00288890251386,39.75609023311765],[-105.00292861844429,39.75604030821615],[-105.00296940777825,39.75598832026159],[-105.00301127051574,39.75593426925396],[-105.00305420665673,39.75587815519327],[-105.00309714279774,39.75582204108686],[-105.00314007893874,39.75576592693474],[-105.00318301507976,39.7557098127369],[-105.00322595122078,39.75565369849335],[-105.00327908469527,39.75557901686034],[-105.00334241550324,39.75548576783785],[-105.00341594364471,39.75537395142592],[-105.00349966911969,39.75524356762452],[-105.00358607810347,39.75511153312938],[-105.00367517059604,39.7549778479405],[-105.00376694659744,39.75484251205788],[-105.00386140610766,39.75470552548152],[-105.00396176933725,39.75456069893881],[-105.00406803628624,39.75440803242975],[-105.00418020695463,39.75424752595435],[-105.00429828134239,39.75407917951259],[-105.00440186478258,39.75392940051388],[-105.00449095727515,39.75379818895823],[-105.00456555882016,39.75368554484561],[-105.00462566941755,39.75359146817603],[-105.00468470661144,39.75350110495955],[-105.0047426704018,39.75341445519616],[-105.00479956078864,39.75333151888584],[-105.00485537777196,39.75325229602863],[-105.00493910324693,39.75313346174279],[-105.00453013650383,39.75281904339145],[-105.00425749200843,39.75260943115723],[-105.00384852526535,39.7522950128059],[-105.00444211741475,39.75182998082113],[-105.00507377705486,39.75133512600133],[-105.00541174462813,39.7515873778774],[-105.00558771526784,39.75172469437661],[-105.00570796070502,39.75182059572523],[-105.00579903703613,39.75189235498613],[-105.00592899650854,39.75199790736986],[-105.0061792304183,39.75219592908974],[-105.00635520305804,39.75233324258892],[-105.00644565838684,39.75240172483791],[-105.00650378759821,39.75244573599792],[-105.00657717886497,39.75250369320861],[-105.00676383254358,39.75263967870296],[-105.00696816428638,39.75279083825251],[-105.00711580382313,39.75291156069136],[-105.00725725733736,39.75302711111146],[-105.00738719180976,39.75313677851017],[-105.00751013825669,39.75322891584511],[-105.0075667174624,39.75327547901441],[-105.00760918261676,39.75330585412479],[-105.00770050943173,39.75338490713261],[-105.00708935417589,39.75389458103676],[-105.00674866748027,39.7541801162786],[-105.00656156904907,39.75433898536793],[-105.00644567972228,39.75443988853716],[-105.0064009994999,39.75448282578628],[-105.0063598099199,39.75452093258346],[-105.00632211098227,39.7545542089287],[-105.00628790268701,39.75458265482201],[-105.00625718503413,39.75460627026339],[-105.00621041042632,39.75463149583679],[-105.00614757886362,39.7546583315422],[-105.00606869034598,39.75468677737965],[-105.00597374487342,39.75471683334911],[-105.00587740314393,39.75474849944216],[-105.00577966515746,39.7547817756588],[-105.00568053091408,39.75481666199902],[-105.00558000041372,39.75485315846284],[-105.00548784745509,39.75488589792869],[-105.00540407203812,39.75491488039659],[-105.00532867416285,39.75494010586654],[-105.00526165382928,39.75496157433852],[-105.00518835033944,39.754991630168],[-105.00510876369333,39.75503027335495],[-105.00502289389095,39.75507750389939],[-105.00493074093231,39.75513332180131],[-105.00483928610215,39.75519397002716],[-105.00474852940042,39.75525944857694],[-105.0046584708272,39.75532975745064],[-105.00456911038246,39.75540489664826],[-105.00449161812176,39.75548325599296],[-105.00442599404514,39.75556483548473],[-105.00437223815258,39.75564963512358],[-105.00433035044411,39.75573765490951],[-105.00429684027732,39.75581923415537],[-105.00427170765224,39.75589437286119],[-105.00425495256884,39.75596307102693],[-105.00424657502714,39.75602532865262],[-105.00424238625629,39.75609402662632],[-105.00424238625629,39.75616916494804],[-105.00424657502714,39.75625074361777],[-105.00425495256884,39.75633876263552],[-105.00426263198206,39.75642624484353],[-105.0042696132668,39.75651319024182],[-105.00427589642307,39.75659959883037],[-105.00428148145089,39.7566854706092],[-105.00428916086409,39.75676275515875],[-105.00429893466274,39.75683145247903],[-105.00431080284682,39.75689156257003],[-105.0043247654163,39.75694308543176],[-105.00433663360036,39.75699997519229],[-105.00434640739901,39.75706223185158],[-105.00435408681223,39.75712985540968],[-105.00435967184004,39.75720284586655],[-105.00436106809698,39.75727476286369],[-105.00435827558309,39.7573456064011],[-105.00435129429835,39.75741537647877],[-105.00434012424274,39.75748407309671],[-105.00432685980172,39.75754579268197],[-105.00431150097528,39.75760053523454],[-105.00429404776342,39.75764830075445],[-105.00427450016615,39.75768908924167],[-105.00425146192647,39.75773202445905],[-105.00422493304445,39.7577771064066],[-105.00419491352002,39.75782433508432],[-105.00416140335324,39.75787371049219],[-105.00412859131492,39.75792147580365],[-105.0040964774051,39.75796763101869],[-105.00406506162373,39.7580121761373],[-105.00403434397084,39.75805511115949],[-105.0040001356756,39.75809804615492],[-105.00396243673796,39.75814098112357],[-105.00392124715796,39.75818391606546],[-105.00387656693557,39.75822685098059],[-105.00382769794236,39.75826817581535],[-105.00377464017828,39.75830789056975],[-105.00371739364336,39.75834599524379],[-105.00365595833759,39.75838248983747],[-105.00358614549012,39.75842113114526],[-105.00350795510096,39.75846191916715],[-105.00342138717011,39.75850485390314],[-105.00332644169755,39.75854993535324],[-105.00322800558264,39.75859340672807],[-105.00312607882535,39.75863526802761],[-105.00302066142568,39.75867551925188],[-105.00291175338363,39.75871416040088],[-105.0028112228833,39.75875172816642],[-105.00271906992464,39.75878822254851],[-105.00263529450767,39.75882364354715],[-105.00255989663241,39.75885799116234],[-105.00249357442732,39.7588891186799],[-105.00243632789238,39.75891702609985],[-105.00238815702765,39.75894171342216],[-105.00234906183306,39.75896318064686],[-105.00230647599611,39.75899430808707],[-105.00226039951677,39.75903509574279],[-105.00221083239508,39.75908554361403],[-105.002157774631,39.75914565170078],[-105.00209424493981,39.75922347002432],[-105.0020202433215,39.75931899858462],[-105.00191203340793,39.75946497464016],[-105.00176633930653,39.75966591631018],[-105.00133064779152,39.7594582884916],[-105.00082554995527,39.75921010358934],[-105.00035764585972,39.75896788763997]]]],"type":"MultiPolygon"} +},{ + "id": 1108748891, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":527377.654354, + "geom:bbox":"-104.981146773,39.7184035582,-104.972910661,39.7272842785", + "geom:latitude":39.723161, + "geom:longitude":-104.976437, + "iso:country":"US", + "lbl:latitude":39.72277, + "lbl:longitude":-104.976358, + "lbl:max_zoom":18.0, + "mps:latitude":39.72277, + "mps:longitude":-104.976358, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Alamo Placita" + ], + "name:fra_x_preferred":[ + "Alamo Placita" + ], + "reversegeo:latitude":39.72277, + "reversegeo:longitude":-104.976358, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871369, + 102191575, + 1108750035, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2830454" + }, + "wof:country":"US", + "wof:geomhash":"31c094f3e00eeb8aa125210fc9797504", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750035, + "microhood_id":1108748891, + "neighbourhood_id":85871369, + "region_id":85688603 + } + ], + "wof:id":1108748891, + "wof:lastmodified":1566623856, + "wof:name":"Alamo Placita", + "wof:parent_id":85871369, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85802569 + ], + "wof:tags":[] +}, + "bbox": [ + -104.9811467727039, + 39.71840355823957, + -104.97291066147238, + 39.72728427852491 +], + "geometry": {"coordinates":[[[[-104.97324794069851,39.71840355823957],[-104.974295,39.71863629886455],[-104.9747709712863,39.71873846991017],[-104.97518052797459,39.71884915503879],[-104.97552367006477,39.71894281154734],[-104.97604391774989,39.71909606737789],[-104.97646454353786,39.71924080868292],[-104.97696265302361,39.71943663467092],[-104.97748290070872,39.71970057316629],[-104.97802528659319,39.72000708111904],[-104.97853446517863,39.72033061581351],[-104.97916540386058,39.72073077504653],[-104.98111356540485,39.72199934960686],[-104.98114677270389,39.72565169234817],[-104.9775825226059,39.72563466555812],[-104.97757225135744,39.7272619949601],[-104.97755846436917,39.7272619884439],[-104.97640731418426,39.7272774595001],[-104.97525003597701,39.72728019651009],[-104.97408209173102,39.72728287351981],[-104.9735061226371,39.72728372952292],[-104.97293904557557,39.72728427852491],[-104.97291454348647,39.72557694631803],[-104.97291590549145,39.72373966963869],[-104.97291066147238,39.72195349514516],[-104.97291115747419,39.72023151388498],[-104.97293076254545,39.7201060054287],[-104.97299490077859,39.71996799892702],[-104.973100083161,39.71980821434613],[-104.9731838664656,39.71965759779857],[-104.97324863870108,39.71943483298872],[-104.97325167871213,39.71937703877859],[-104.97325190871294,39.71876259454484],[-104.97327099578234,39.71870605833931],[-104.97324794069851,39.71840355823957]]]],"type":"MultiPolygon"} +},{ + "id": 1108748895, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000093, + "geom:area_square_m":881428.178367, + "geom:bbox":"-104.997199,39.745261,-104.987397,39.761763", + "geom:latitude":39.754258, + "geom:longitude":-104.990856, + "iso:country":"US", + "lbl:latitude":39.75527, + "lbl:longitude":-104.99039, + "lbl:max_zoom":18.0, + "mps:latitude":39.75527, + "mps:longitude":-104.99039, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":39.75527, + "reversegeo:longitude":-104.99039, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871289, + 102191575, + 1108750025, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"57622561a53f3c907ef245b23f97e0ed", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750025, + "microhood_id":1108748895, + "neighbourhood_id":85871289, + "region_id":85688603 + } + ], + "wof:id":1108748895, + "wof:lastmodified":1617131212, + "wof:name":"Ballpark", + "wof:parent_id":85871289, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85888337 + ], + "wof:tags":[] +}, + "bbox": [ + -104.997199, + 39.745261, + -104.987397, + 39.761763 +], + "geometry": {"coordinates":[[[-104.987407,39.745261],[-104.99413300000001,39.750404],[-104.995465,39.751423],[-104.993019,39.75331],[-104.99341800000001,39.753655],[-104.99382799999999,39.753981],[-104.994272,39.754335],[-104.994293,39.754351],[-104.994816,39.754744],[-104.995148,39.754994],[-104.99611899999999,39.755729],[-104.99701899999999,39.75647],[-104.99719899999999,39.756618],[-104.996065,39.757343],[-104.995678,39.757626],[-104.995304,39.75796],[-104.99487000000001,39.758383],[-104.99438499999999,39.758784],[-104.993942,39.759127],[-104.993482,39.759456],[-104.993019,39.759772],[-104.99263500000001,39.760024],[-104.992296,39.760215],[-104.991973,39.76041],[-104.99153,39.760715],[-104.991248,39.760925],[-104.991113,39.761056],[-104.99096299999999,39.760989],[-104.990588,39.760881],[-104.990252,39.760839],[-104.989942,39.760841],[-104.989602,39.760913],[-104.989287,39.761048],[-104.98809799999999,39.761763],[-104.987656,39.759515],[-104.987414,39.758276],[-104.987397,39.748913],[-104.987398,39.748214],[-104.98739999999999,39.747358],[-104.987397,39.746974],[-104.98740100000001,39.74668],[-104.987408,39.746193],[-104.987408,39.745932],[-104.987408,39.745467],[-104.987407,39.745261]]],"type":"Polygon"} +},{ + "id": 1108749009, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00007, + "geom:area_square_m":661376.047826, + "geom:bbox":"-104.959359556,39.6965778229,-104.949831414,39.7039411754", + "geom:latitude":39.700261, + "geom:longitude":-104.954603, + "iso:country":"US", + "lbl:latitude":39.700253, + "lbl:longitude":-104.954604, + "lbl:max_zoom":18.0, + "mps:latitude":39.700253, + "mps:longitude":-104.954604, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":39.700253, + "reversegeo:longitude":-104.954604, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85871327, + 102191575, + 1108750035, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b1ad70f8221092fa21a206464be986f0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750035, + "microhood_id":1108749009, + "neighbourhood_id":85871327, + "region_id":85688603 + } + ], + "wof:id":1108749009, + "wof:lastmodified":1566623855, + "wof:name":"Bonnie Brae", + "wof:parent_id":85871327, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420554335 + ], + "wof:tags":[] +}, + "bbox": [ + -104.95935955620814, + 39.6965778228934, + -104.94983141371631, + 39.70394117543276 +], + "geometry": {"coordinates":[[[[-104.95935823816261,39.70394117543276],[-104.94983141371631,39.70391220500825],[-104.94990559247661,39.696578326801],[-104.95001861724967,39.69657885589714],[-104.95119314751963,39.6965778228934],[-104.95235516474406,39.69658632892435],[-104.95351639296564,39.69658212190905],[-104.95466961715812,39.69657889689734],[-104.95582281135052,39.69657943389927],[-104.95696353149754,39.69658470691843],[-104.95810341464147,39.69658344591386],[-104.95932147506966,39.69658253191051],[-104.95932881709638,39.69839721850769],[-104.95932806809367,39.70022422114965],[-104.95933368411409,39.70203237672314],[-104.95935955620814,39.70386396038174],[-104.95935823816261,39.70394117543276]]]],"type":"MultiPolygon"} +},{ + "id": 1108749011, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":188677.164747, + "geom:bbox":"-105.004939103,39.7515955143,-104.99719928,39.7589678876", + "geom:latitude":39.755535, + "geom:longitude":-105.001313, + "iso:country":"US", + "lbl:latitude":39.755773, + "lbl:longitude":-105.001376, + "lbl:max_zoom":18.0, + "mps:latitude":39.755773, + "mps:longitude":-105.001376, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":39.755773, + "reversegeo:longitude":-105.001376, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85871287, + 102191575, + 1108750057, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"f687faae61dd6c5fa8afe29399e11ec9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750057, + "microhood_id":1108749011, + "neighbourhood_id":85871287, + "region_id":85688603 + } + ], + "wof:id":1108749011, + "wof:lastmodified":1566623855, + "wof:name":"Central Platte Valley", + "wof:parent_id":85871287, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420554281 + ], + "wof:tags":[] +}, + "bbox": [ + -105.00493910324693, + 39.75159551427628, + -104.99719927992992, + 39.75896788763997 +], + "geometry": {"coordinates":[[[[-104.99752859043497,39.75650302656425],[-104.99767322375709,39.75645248579679],[-104.99781125535991,39.75638990539349],[-104.99793159060337,39.75631916227301],[-104.99805900439058,39.75624569818201],[-104.99819349672153,39.7561695131205],[-104.99831383196501,39.75610149068504],[-104.99842001012102,39.75604163087562],[-104.99855096318009,39.75594095735297],[-104.99870669114225,39.7557994701171],[-104.99886949764813,39.75566614536409],[-104.99903938269775,39.75554098309394],[-104.99916679648496,39.75544302991236],[-104.99925173900975,39.75537228581933],[-104.99933314226269,39.75531786725612],[-104.99941100624376,39.75527977422276],[-104.99951364512791,39.7552471230384],[-104.99964105891512,39.75521991370306],[-104.99977555124607,39.75519542529351],[-104.99991712212073,39.75517365780977],[-105.00004807517982,39.75514372750305],[-105.00016841042329,39.75510563437338],[-105.00032125007415,39.7550025429625],[-105.00050659413237,39.75483445327041],[-105.00081871742177,39.75459133668275],[-105.00125761994231,39.7542731931995],[-105.00175295278693,39.75388756219819],[-105.00230471595562,39.75343444367878],[-105.002605677684,39.75317896174586],[-105.00265583797207,39.7531211163994],[-105.00269972822412,39.75302952776752],[-105.00273734844016,39.75290419585023],[-105.00275615854818,39.75280296611139],[-105.00275615854818,39.75272583855099],[-105.00274988851217,39.75264389041483],[-105.00273734844016,39.75255712170293],[-105.00272480836814,39.75247035288173],[-105.00271226829614,39.75238358395123],[-105.00269972822412,39.75228717388003],[-105.00268718815211,39.75218112266812],[-105.0026809181161,39.75209435340973],[-105.0026809181161,39.75202686610488],[-105.00269345818811,39.75195937873389],[-105.00271853833215,39.75189189129679],[-105.00274988851217,39.75182922433829],[-105.00278750872823,39.75177137785838],[-105.00285020908831,39.75169906966742],[-105.00297619678291,39.75159551427628],[-105.00384852526535,39.7522950128059],[-105.00425749200843,39.75260943115723],[-105.00453013650383,39.75281904339145],[-105.00493910324693,39.75313346174279],[-105.00485537777196,39.75325229602863],[-105.00479956078864,39.75333151888584],[-105.0047426704018,39.75341445519616],[-105.00468470661144,39.75350110495955],[-105.00462566941755,39.75359146817603],[-105.00456555882016,39.75368554484561],[-105.00449095727515,39.75379818895823],[-105.00440186478258,39.75392940051388],[-105.00429828134239,39.75407917951259],[-105.00418020695463,39.75424752595435],[-105.00406803628624,39.75440803242975],[-105.00396176933725,39.75456069893881],[-105.00386140610766,39.75470552548152],[-105.00376694659744,39.75484251205788],[-105.00367517059604,39.7549778479405],[-105.00358607810347,39.75511153312938],[-105.00349966911969,39.75524356762452],[-105.00341594364471,39.75537395142592],[-105.00334241550324,39.75548576783785],[-105.00327908469527,39.75557901686034],[-105.00322595122078,39.75565369849335],[-105.00318301507976,39.7557098127369],[-105.00314007893874,39.75576592693474],[-105.00309714279774,39.75582204108686],[-105.00305420665673,39.75587815519327],[-105.00301127051574,39.75593426925396],[-105.00296940777825,39.75598832026159],[-105.00292861844429,39.75604030821615],[-105.00288890251386,39.75609023311765],[-105.00285025998696,39.75613809496609],[-105.00280303023186,39.75618925758337],[-105.00274721324854,39.75624372096949],[-105.00268280903705,39.75630148512447],[-105.00260981759732,39.75636255004829],[-105.00253038573646,39.75642732830414],[-105.00244451345444,39.75649581989204],[-105.00235220075129,39.75656802481195],[-105.00225344762697,39.75664394306392],[-105.0021412769586,39.75673265170366],[-105.00201568874617,39.75683415073117],[-105.00187668298965,39.75694844014647],[-105.00172425968907,39.75707551994956],[-105.0015906209502,39.75718692098618],[-105.00147576677298,39.75728264325633],[-105.00137969715749,39.75736268676003],[-105.00130241210368,39.75742705149727],[-105.00123210417279,39.75749059098996],[-105.0011687733648,39.75755330523812],[-105.00111241967973,39.75761519424172],[-105.00106304311757,39.75767625800079],[-105.00101581336247,39.75773732170572],[-105.00097073041441,39.7577983853565],[-105.00092779427339,39.75785944895316],[-105.00088700493944,39.75792051249566],[-105.00084192199138,39.75799271588095],[-105.00079254542922,39.75807605910899],[-105.00073887525296,39.75817054217983],[-105.00068091146261,39.75827616509342],[-105.00062080086521,39.75839292764478],[-105.00055854346074,39.75852082983388],[-105.0004775014946,39.75869741702692],[-105.00035764585972,39.75896788763997],[-105.00010437533348,39.75883677923218],[-104.99983077733884,39.75867227363409],[-104.9995476413095,39.75847375591241],[-104.99857467377234,39.75774933127883],[-104.99737753142023,39.75676444769834],[-104.99737158118739,39.75675955234201],[-104.99719927992992,39.75661796264811],[-104.99735468928908,39.75656404200362],[-104.99752859043497,39.75650302656425]]]],"type":"MultiPolygon"} +},{ + "id": 1108749013, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000204, + "geom:area_square_m":1941776.580723, + "geom:bbox":"-104.922832929,39.711186399,-104.90340753,39.7256433946", + "geom:latitude":39.719144, + "geom:longitude":-104.91497, + "iso:country":"US", + "lbl:latitude":39.720637, + "lbl:longitude":-104.917098, + "lbl:max_zoom":18.0, + "mps:latitude":39.720637, + "mps:longitude":-104.917098, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":39.720637, + "reversegeo:longitude":-104.917098, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866859, + 102191575, + 1108750055, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"61696e67c75c5b6b60ca081d05a88f9b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750055, + "microhood_id":1108749013, + "neighbourhood_id":85866859, + "region_id":85688603 + } + ], + "wof:id":1108749013, + "wof:lastmodified":1566623855, + "wof:name":"Crestmoor", + "wof:parent_id":85866859, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85888347 + ], + "wof:tags":[] +}, + "bbox": [ + -104.92283292927064, + 39.71118639900203, + -104.90340752979785, + 39.7256433945596 +], + "geometry": {"coordinates":[[[[-104.92232377593818,39.71121445657752],[-104.92223838814508,39.71835192054922],[-104.92221889499342,39.72088599533628],[-104.92223838814508,39.72106591688848],[-104.92225786200044,39.72119094156296],[-104.92227731655952,39.72126106935972],[-104.92231084173221,39.72132894382874],[-104.92235843751854,39.72139456497001],[-104.92242105375998,39.72146091680086],[-104.92249869045651,39.72152799932131],[-104.92256263104208,39.72159506513628],[-104.92261287551673,39.7216621142458],[-104.92265749090572,39.7217406186605],[-104.92269647720903,39.72183057838041],[-104.92273546351237,39.72192803459533],[-104.92277444981566,39.72203298730524],[-104.92280368954314,39.72221290557151],[-104.92282318269481,39.72246778939414],[-104.92283292927064,39.72344981742796],[-104.92279878129358,39.72563207951845],[-104.92166201316093,39.725636365534],[-104.92056253616386,39.72563433952666],[-104.91946121316005,39.72563405752561],[-104.91835741814725,39.72563515252961],[-104.91725685814623,39.72563596853257],[-104.91615469813939,39.72563702753644],[-104.91504901911981,39.72563771253891],[-104.91395211313204,39.72563885354305],[-104.9127937469209,39.72563943054519],[-104.91245113067532,39.72564063554955],[-104.91163665671434,39.72563952854551],[-104.91049922857928,39.72564008654757],[-104.90936032343888,39.72564089255047],[-104.90815481505632,39.72564037954862],[-104.9069430136509,39.72564251355635],[-104.90580298350636,39.7256433945596],[-104.90462741123264,39.72564335355941],[-104.90436423327588,39.72564305355831],[-104.90340752979785,39.72564195955437],[-104.9034938391116,39.72525472814658],[-104.90351070317291,39.72503998136591],[-104.9035200002067,39.72483100160616],[-104.9035289292392,39.72327510194981],[-104.90353403725777,39.72238512671436],[-104.90353662726716,39.72199561229826],[-104.90373471998731,39.72199568429852],[-104.90477272776093,39.72200239132292],[-104.9057897914584,39.72200457133084],[-104.90600750124986,39.72200910234733],[-104.90652160511888,39.72200845934498],[-104.90666075162471,39.72200828034431],[-104.90686516836786,39.72200828234435],[-104.90794414229043,39.72200719734042],[-104.90814500402064,39.72200717834033],[-104.90814612102469,39.72187472285879],[-104.90814684802734,39.72168324116268],[-104.90814831003269,39.72150995153271],[-104.90815786706742,39.72006103026524],[-104.90816497909327,39.71879664766863],[-104.90816551109521,39.71862815805611],[-104.90816691510031,39.71846173145104],[-104.9081694661096,39.71837011911799],[-104.90822279030345,39.71837004411776],[-104.90827611449731,39.71836996911748],[-104.90832943669113,39.71836989411719],[-104.90835609778804,39.7183700281177],[-104.90838275788497,39.71837016311815],[-104.90877714231874,39.71836601610312],[-104.90972911477957,39.71836256009055],[-104.91069162727877,39.71836299509209],[-104.91164345273904,39.71836249609032],[-104.91278129387558,39.7183638740953],[-104.91269504656208,39.71828021679119],[-104.91269743857077,39.71625085041353],[-104.91269915357697,39.71479526912185],[-104.91014666229756,39.71480104714288],[-104.90743191342824,39.71478348807904],[-104.90745444051015,39.71475478297469],[-104.90746042253187,39.71474716094696],[-104.90768746635729,39.71445786989528],[-104.90876508627491,39.71308477590344],[-104.90909655747998,39.71266240136794],[-104.90997751268264,39.71153979228677],[-104.91009747311875,39.71138378671964],[-104.91023680062523,39.71120198305869],[-104.91112443385219,39.71120540807112],[-104.91181268435429,39.71120264406107],[-104.91279185291398,39.7112117560942],[-104.91291821037333,39.71121293109849],[-104.91412568976307,39.71120772407954],[-104.91528412797453,39.71118639900203],[-104.91645565123349,39.71119649903875],[-104.91762253147562,39.71119854804618],[-104.91878663570765,39.71119094401854],[-104.9199521199447,39.71119676203972],[-104.92112176919693,39.71119899304779],[-104.92228589942903,39.71121493410578],[-104.92232377593818,39.71121445657752]]]],"type":"MultiPolygon"} +},{ + "id": 1108749017, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000052, + "geom:area_square_m":494238.037624, + "geom:bbox":"-105.005073777,39.7473217104,-104.993018893,39.7567644477", + "geom:latitude":39.752225, + "geom:longitude":-104.998977, + "iso:country":"US", + "lbl:latitude":39.752356, + "lbl:longitude":-104.999067, + "lbl:max_zoom":18.0, + "mps:latitude":39.752356, + "mps:longitude":-104.999067, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:note":"dup", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "LoDo" + ], + "name:eng_x_variant":[ + "Lower Downtown" + ], + "name:fra_x_preferred":[ + "LoDo" + ], + "reversegeo:latitude":39.752356, + "reversegeo:longitude":-104.999067, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871287, + 102191575, + 1108750057, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2369973" + }, + "wof:country":"US", + "wof:geomhash":"03a9a44964617896dc77ef8567293979", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750057, + "microhood_id":1108749017, + "neighbourhood_id":85871287, + "region_id":85688603 + } + ], + "wof:id":1108749017, + "wof:lastmodified":1566623855, + "wof:name":"LoDo", + "wof:parent_id":85871287, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85888361, + 85866861 + ], + "wof:tags":[] +}, + "bbox": [ + -105.00507377705486, + 39.7473217104244, + -104.99301889332557, + 39.75676444769834 +], + "geometry": {"coordinates":[[[[-104.99301889332557,39.75330987241649],[-105.00078259137408,39.7473217104244],[-105.0008074858896,39.74738382559565],[-105.00086604210247,39.74752614211303],[-105.00086631010345,39.74752664211485],[-105.0009186872939,39.74762450847061],[-105.00095380042154,39.74768779770068],[-105.00101717265193,39.74777797402851],[-105.00104084573798,39.74782474319858],[-105.00113881709416,39.7480506130197],[-105.00120557133681,39.74816551043739],[-105.00130691770528,39.74829187889679],[-105.00140527106282,39.7484642165233],[-105.00146777329007,39.74855198684241],[-105.00152422749528,39.74861502407157],[-105.00171409618554,39.7487963277307],[-105.00179544448127,39.74885947096027],[-105.00193257097982,39.74895579231043],[-105.00203431134969,39.74902725557024],[-105.00219350892843,39.74914563200059],[-105.00229163728517,39.74922497328902],[-105.00251722710527,39.74938446586884],[-105.00265441460402,39.74947255018907],[-105.00278537908014,39.74956060850917],[-105.00294013364271,39.74967896493945],[-105.00305592906369,39.74977485228806],[-105.00321429963947,39.74988498768846],[-105.00327444885812,39.74992882184779],[-105.00340443833068,39.75002923021282],[-105.00360852107264,39.75021333588217],[-105.00378436771189,39.75036712644123],[-105.00395066831646,39.7504879318804],[-105.00444335610763,39.75084929219412],[-105.00460869170865,39.75098107367319],[-105.0047740653099,39.75110770913358],[-105.00489786275995,39.75120397048352],[-105.00505618533549,39.75132199591263],[-105.00507377705486,39.75133512600133],[-105.00444211741475,39.75182998082113],[-105.00384852526535,39.7522950128059],[-105.00297619678291,39.75159551427628],[-105.00285020908831,39.75169906966742],[-105.00278750872823,39.75177137785838],[-105.00274988851217,39.75182922433829],[-105.00271853833215,39.75189189129679],[-105.00269345818811,39.75195937873389],[-105.0026809181161,39.75202686610488],[-105.0026809181161,39.75209435340973],[-105.00268718815211,39.75218112266812],[-105.00269972822412,39.75228717388003],[-105.00271226829614,39.75238358395123],[-105.00272480836814,39.75247035288173],[-105.00273734844016,39.75255712170293],[-105.00274988851217,39.75264389041483],[-105.00275615854818,39.75272583855099],[-105.00275615854818,39.75280296611139],[-105.00273734844016,39.75290419585023],[-105.00269972822412,39.75302952776752],[-105.00265583797207,39.7531211163994],[-105.002605677684,39.75317896174586],[-105.00230471595562,39.75343444367878],[-105.00175295278693,39.75388756219819],[-105.00125761994231,39.7542731931995],[-105.00081871742177,39.75459133668275],[-105.00050659413237,39.75483445327041],[-105.00032125007415,39.7550025429625],[-105.00016841042329,39.75510563437338],[-105.00004807517982,39.75514372750305],[-104.99991712212073,39.75517365780977],[-104.99977555124607,39.75519542529351],[-104.99964105891512,39.75521991370306],[-104.99951364512791,39.7552471230384],[-104.99941100624376,39.75527977422276],[-104.99933314226269,39.75531786725612],[-104.99925173900975,39.75537228581933],[-104.99916679648496,39.75544302991236],[-104.99903938269775,39.75554098309394],[-104.99886949764813,39.75566614536409],[-104.99870669114225,39.7557994701171],[-104.99855096318009,39.75594095735297],[-104.99842001012102,39.75604163087562],[-104.99831383196501,39.75610149068504],[-104.99819349672153,39.7561695131205],[-104.99805900439058,39.75624569818201],[-104.99793159060337,39.75631916227301],[-104.99781125535991,39.75638990539349],[-104.99767322375709,39.75645248579679],[-104.99752859043497,39.75650302656425],[-104.99735468928908,39.75656404200362],[-104.99719927992992,39.75661796264811],[-104.99701922211761,39.75646966062664],[-104.99611895184472,39.75572897793393],[-104.99514791631458,39.75499355126033],[-104.99481597262434,39.75474402904303],[-104.99470129769094,39.75465808604076],[-104.99429286023202,39.75435080522868],[-104.99427237413158,39.75433539286763],[-104.99382767751496,39.75398105957947],[-104.99341835202688,39.75365467339293],[-104.99301889332557,39.75330987241649]]],[[[-104.99737753142023,39.75676444769834],[-104.99719927992992,39.75661796264811],[-104.99737158118739,39.75675955234201],[-104.99737753142023,39.75676444769834]]]],"type":"MultiPolygon"} +},{ + "id": 1108750017, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000925, + "geom:area_square_m":8785000.803323, + "geom:bbox":"-104.80990461,39.772795611,-104.772156522,39.7984519763", + "geom:latitude":39.785959, + "geom:longitude":-104.791518, + "iso:country":"US", + "lbl:latitude":39.785565, + "lbl:longitude":-104.791518, + "lbl:max_zoom":18.0, + "mps:latitude":39.785565, + "mps:longitude":-104.791518, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Gateway" + ], + "name:deu_x_preferred":[ + "Gateway" + ], + "name:fas_x_preferred":[ + "\u062f\u0631\u0648\u0627\u0632\u0647" + ], + "name:fra_x_preferred":[ + "Gateway" + ], + "name:heb_x_preferred":[ + "\u05e9\u05e2\u05e8" + ], + "name:ita_x_preferred":[ + "Gateway" + ], + "name:jpn_x_preferred":[ + "\u30b2\u30fc\u30c8\u30a6\u30a7\u30a4" + ], + "name:kor_x_preferred":[ + "\uac8c\uc774\ud2b8\uc6e8\uc774" + ], + "name:lat_x_preferred":[ + "Gateway" + ], + "name:nld_x_preferred":[ + "Gateway" + ], + "name:pol_x_preferred":[ + "Gateway" + ], + "name:por_x_preferred":[ + "Gateway" + ], + "name:rus_x_preferred":[ + "\u0428\u043b\u044e\u0437" + ], + "name:spa_x_preferred":[ + "Gateway" + ], + "name:srp_x_preferred":[ + "\u0413\u0435\u0458\u0442\u0432\u0435\u0458" + ], + "name:swe_x_preferred":[ + "Gateway" + ], + "name:tha_x_preferred":[ + "\u0e40\u0e01\u0e15\u0e40\u0e27\u0e22\u0e4c" + ], + "name:ukr_x_preferred":[ + "\u0428\u043b\u044e\u0437" + ], + "name:vie_x_preferred":[ + "Gateway" + ], + "name:vol_x_preferred":[ + "Gateway" + ], + "name:zho_x_preferred":[ + "Gateway" + ], + "reversegeo:latitude":39.785565, + "reversegeo:longitude":-104.791518, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 102191575, + 1108750055, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"51bb403d76bdc747abb2aa25d249a314", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750055, + "microhood_id":1108750017, + "neighbourhood_id":-1, + "region_id":85688603 + } + ], + "wof:id":1108750017, + "wof:lastmodified":1566623936, + "wof:name":"Gateway", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871363 + ], + "wof:tags":[] +}, + "bbox": [ + -104.80990460987351, + 39.77279561097868, + -104.77215652164256, + 39.79845197625087 +], + "geometry": {"coordinates":[[[[-104.77235704616741,39.79839822747898],[-104.77215652164256,39.77640955611696],[-104.78156058683049,39.77643574721219],[-104.78157654788851,39.77279561097868],[-104.79098008007452,39.77282619608985],[-104.8004034523326,39.77282938210146],[-104.80816100853474,39.77283120510805],[-104.80989798184942,39.77283154410929],[-104.8098793077815,39.77318834940644],[-104.80989791984916,39.77504890117035],[-104.80990460987351,39.77659516579172],[-104.80990215886459,39.77676048639273],[-104.80987678177235,39.77847218661555],[-104.80984900567137,39.7803456044262],[-104.8097973524836,39.7837554988227],[-104.8097697703833,39.78786844377504],[-104.80975388832559,39.79026471248653],[-104.8097527193213,39.79043117509173],[-104.8097219052093,39.79479135894292],[-104.80970988116559,39.79673629101359],[-104.80969092509667,39.7969845379161],[-104.80963205888264,39.79830680272312],[-104.8002692208446,39.79830561071878],[-104.79082016249311,39.7983039957129],[-104.79081852048716,39.79825433553236],[-104.79057806161296,39.79825842454721],[-104.79025461143709,39.79826645357639],[-104.78994389130747,39.79829451267841],[-104.78963180417293,39.79832112177513],[-104.78900084487913,39.7983790589858],[-104.7886304325325,39.7983984340562],[-104.78792766497764,39.79840186806871],[-104.78743948620286,39.79839496704363],[-104.78730162670172,39.79839301603653],[-104.78641354347315,39.79838516900799],[-104.78637689833988,39.79838733701587],[-104.78631511211529,39.79838429800481],[-104.78627047395298,39.79838446900544],[-104.78576195410432,39.79838641601253],[-104.78274337413046,39.79835963791515],[-104.78050812100429,39.79835372289369],[-104.77988571774159,39.79835763590791],[-104.77926148347223,39.79834455686034],[-104.77833658710983,39.79837902698569],[-104.77771577385289,39.79841339311059],[-104.77625662054822,39.79845116324793],[-104.77513395146684,39.79845197625087],[-104.77422748317144,39.79844562222775],[-104.77235704616741,39.79839822747898]]]],"type":"MultiPolygon"} +},{ + "id": 1108750019, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00108, + "geom:area_square_m":10264877.365466, + "geom:bbox":"-104.772357046,39.7691862679,-104.734371967,39.7984340232", + "geom:latitude":39.784037, + "geom:longitude":-104.753133, + "iso:country":"US", + "lbl:latitude":39.783825, + "lbl:longitude":-104.753136, + "lbl:max_zoom":18.0, + "mps:latitude":39.783825, + "mps:longitude":-104.753136, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Green Valley Rnch" + ], + "name:pol_x_preferred":[ + "Green Valley Ranch Resort" + ], + "name:ron_x_preferred":[ + "Green Valley Ranch" + ], + "reversegeo:latitude":39.783825, + "reversegeo:longitude":-104.753136, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 102191575, + 1108750055, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"60d70055fbbdbed6058f964a92dfd0fe", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750055, + "microhood_id":1108750019, + "neighbourhood_id":-1, + "region_id":85688603 + } + ], + "wof:id":1108750019, + "wof:lastmodified":1566623936, + "wof:name":"Green Valley Ranch", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871365 + ], + "wof:tags":[] +}, + "bbox": [ + -104.77235704616741, + 39.76918626785709, + -104.73437196727906, + 39.79843402318562 +], + "geometry": {"coordinates":[[[[-104.77215652164256,39.77640955611696],[-104.77235704616741,39.79839822747898],[-104.77211704149903,39.79839214603334],[-104.77185545154805,39.79837029195392],[-104.77131615658749,39.79837813698242],[-104.7712147222187,39.79837527197202],[-104.77111922387155,39.79835902691298],[-104.77102082751384,39.79834276485383],[-104.77088790103056,39.79830169170452],[-104.77076348357826,39.79827855962043],[-104.77055194180923,39.79827054159125],[-104.77034607806081,39.79827373660288],[-104.76978024200372,39.79830061970063],[-104.76593621702904,39.79832012777155],[-104.76529615970213,39.79832983280681],[-104.76500838465591,39.79833446682369],[-104.76462840727453,39.79835445689633],[-104.76428026800892,39.79837911598599],[-104.76366244176285,39.79841103510205],[-104.76297738027233,39.79843332818308],[-104.76269818525736,39.79843395118536],[-104.7626832052029,39.79843402318562],[-104.7626834312037,39.79833572682827],[-104.75326332995746,39.79836868394807],[-104.74381546261031,39.79833482282498],[-104.73437196727906,39.79830812572789],[-104.73445657458666,39.7910522553496],[-104.73452989785318,39.78376918087241],[-104.73453942088781,39.7815939529645],[-104.73456308097383,39.77649509142793],[-104.73459629909462,39.7692172059696],[-104.74400551730128,39.76925501510703],[-104.75343440457942,39.76928327520977],[-104.76281642068716,39.76920170391321],[-104.76457310207348,39.76918626785709],[-104.7645481299827,39.77156661451073],[-104.77218437774383,39.7714994572666],[-104.77215652164256,39.77640955611696]]]],"type":"MultiPolygon"} +},{ + "id": 1108750021, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":652702.303806, + "geom:bbox":"-104.959358238,39.703912205,-104.949831414,39.7112103115", + "geom:latitude":39.707538, + "geom:longitude":-104.95459, + "iso:country":"US", + "lbl:latitude":39.707535, + "lbl:longitude":-104.954587, + "lbl:max_zoom":18.0, + "mps:latitude":39.707535, + "mps:longitude":-104.954587, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ces_x_preferred":[ + "Polo Grounds" + ], + "name:deu_x_preferred":[ + "Polo Grounds" + ], + "name:eng_x_variant":[ + "Polo Club" + ], + "name:eus_x_preferred":[ + "Polo Grounds" + ], + "name:fra_x_preferred":[ + "Polo Grounds" + ], + "name:ita_x_preferred":[ + "Polo Grounds" + ], + "name:jpn_x_preferred":[ + "\u30dd\u30ed\u30fb\u30b0\u30e9\u30a6\u30f3\u30ba" + ], + "name:kor_x_preferred":[ + "\ud3f4\ub85c \uadf8\ub77c\uc6b4\uc988" + ], + "name:por_x_preferred":[ + "Polo Grounds" + ], + "name:spa_x_preferred":[ + "Polo Grounds" + ], + "name:swe_x_preferred":[ + "Polo Grounds" + ], + "reversegeo:latitude":39.707535, + "reversegeo:longitude":-104.954587, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871327, + 102191575, + 1108750035, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"022b1eedbf5ab07ec8656fc762874e03", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750035, + "microhood_id":1108750021, + "neighbourhood_id":85871327, + "region_id":85688603 + } + ], + "wof:id":1108750021, + "wof:lastmodified":1566623949, + "wof:name":"Polo Grounds", + "wof:parent_id":85871327, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85888371 + ], + "wof:tags":[] +}, + "bbox": [ + -104.95935823816261, + 39.70391220500825, + -104.94983141371631, + 39.71121031154986 +], + "geometry": {"coordinates":[[[[-104.95935823816261,39.70394117543276],[-104.95935823816261,39.70394117543277],[-104.95932878209624,39.70566679993584],[-104.95932314107574,39.70732150695142],[-104.95932806009364,39.70749036556532],[-104.95932743509132,39.7093012341486],[-104.95930864102303,39.7109328860804],[-104.95926100584984,39.71111797475328],[-104.95931424904342,39.71118762000646],[-104.95931427402742,39.71121031154986],[-104.94983537489459,39.71109701809399],[-104.94983141371631,39.70391220500825],[-104.95935823816261,39.70394117543276]]]],"type":"MultiPolygon"} +},{ + "id": 1108750049, + "type": "Feature", + "properties": { + "denvercpd:NBHD_ID":"48", + "denvercpd:NBHD_NAME":"North Park Hill", + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000407, + "geom:area_square_m":3866905.496594, + "geom:bbox":"-104.940621035,39.7510085028,-104.903393728,39.7620184638", + "geom:latitude":39.75652, + "geom:longitude":-104.922011, + "iso:country":"US", + "lbl:latitude":39.756534, + "lbl:longitude":-104.922008, + "lbl:max_zoom":18.0, + "mps:latitude":39.756534, + "mps:longitude":-104.922008, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "North Park Hl" + ], + "reversegeo:latitude":39.756534, + "reversegeo:longitude":-104.922008, + "src:geom":"denvercpd", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840547, + 102191575, + 1108750055, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ef706eb340098b3a30ee84ef588f36f3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750055, + "microhood_id":1108750049, + "neighbourhood_id":85840547, + "region_id":85688603 + } + ], + "wof:id":1108750049, + "wof:lastmodified":1566623945, + "wof:name":"North Park Hill", + "wof:parent_id":85840547, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871339 + ], + "wof:tags":[] +}, + "bbox": [ + -104.94062103508531, + 39.75100850277295, + -104.90339372774764, + 39.762018463799 +], + "geometry": {"coordinates":[[[[-104.90342464786005,39.75221301115187],[-104.90342757887072,39.75101656980223],[-104.90464254728766,39.75101678480303],[-104.90581283554218,39.75101532279774],[-104.90695413769134,39.7510139397927],[-104.90816466109209,39.75101289378887],[-104.90937293848475,39.75100997577829],[-104.91050736460886,39.75101195678548],[-104.91168234188041,39.75100850277295],[-104.91213202651522,39.75100949177653],[-104.91227533403622,39.75101315778983],[-104.91238610943896,39.75102695584002],[-104.91284922912257,39.75108128703755],[-104.91398775926166,39.75108496705093],[-104.91515666451113,39.75107945403084],[-104.91633322378846,39.75108323404459],[-104.91754998821193,39.75107567701713],[-104.91876203461823,39.75107686902146],[-104.91993329987628,39.75107536501599],[-104.92110759714541,39.75107688902153],[-104.92228341942001,39.75107140700163],[-104.92347249374285,39.75106826399019],[-104.92463693097608,39.75106552298024],[-104.92578565415221,39.75106561298054],[-104.92698954352886,39.75106492897805],[-104.92816141278911,39.75106339597249],[-104.92933240004618,39.75105842495441],[-104.93050339230325,39.75105792795262],[-104.93170113065753,39.75105584294505],[-104.93283300377243,39.75105274793378],[-104.93393380277428,39.75104498890556],[-104.93503898879214,39.75104755191489],[-104.93613975779391,39.75104871391909],[-104.93724227480203,39.75104918392083],[-104.93834396480719,39.75104312689882],[-104.93944735381848,39.75104186389422],[-104.94062103508531,39.75103680987581],[-104.94061464806214,39.75284041943274],[-104.94060827403894,39.75441960117377],[-104.94060809503827,39.75466495806575],[-104.94060624403158,39.75500845031451],[-104.94060216001674,39.75596618279627],[-104.94060052901079,39.75650493175488],[-104.94059335698472,39.75829549326437],[-104.94058546795605,39.76017595610068],[-104.94057847493059,39.76180095100824],[-104.94057818892958,39.7619582005799],[-104.93967992366396,39.76199520271444],[-104.93952660110659,39.76199859872679],[-104.93931451633557,39.76199483771308],[-104.93808285385791,39.76199034169673],[-104.93685257338529,39.7619954667154],[-104.93562102690811,39.76199782272397],[-104.93501507870519,39.76199965873064],[-104.93439197443996,39.76200154373748],[-104.93316704898683,39.76200252574102],[-104.93185299220966,39.76200033073309],[-104.92935575113108,39.76199787972416],[-104.92759396872623,39.76200584175308],[-104.92581562626117,39.76201092977158],[-104.9240344587858,39.762018463799],[-104.92244510800782,39.76201459178492],[-104.92229158944974,39.76200731175845],[-104.92213583988348,39.7619961097177],[-104.92197352929344,39.76199531271482],[-104.92113498924499,39.76199380070932],[-104.91997424602516,39.76199593171708],[-104.91881264280221,39.761991512701],[-104.91758682934585,39.76199324870731],[-104.9163762049447,39.76199770772354],[-104.91521282871531,39.76199846172625],[-104.91405264149751,39.76199920372898],[-104.91285130613011,39.7619958337167],[-104.91243103960227,39.76197416863795],[-104.91172998605361,39.76197676764741],[-104.91057336984881,39.76197652164649],[-104.90940887061538,39.7619762496455],[-104.9081803581492,39.76197746764996],[-104.90694839267042,39.76197496664088],[-104.9057916814653,39.76197469363984],[-104.90343941991375,39.76198380867299],[-104.90345651697595,39.76142414263836],[-104.90346186099538,39.76021966225954],[-104.90345893698475,39.75841005068082],[-104.90339372774764,39.75801544324622],[-104.90340331878252,39.75473069730475],[-104.90342363685642,39.75340792549588],[-104.90342464786005,39.75221301115187]]]],"type":"MultiPolygon"} +},{ + "id": 1108750051, + "type": "Feature", + "properties": { + "denvercpd:NBHD_ID":"49", + "denvercpd:NBHD_NAME":"Northeast Park Hill", + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000907, + "geom:area_square_m":8617921.188791, + "geom:bbox":"-104.940680944,39.7619582006,-104.903429001,39.7910392873", + "geom:latitude":39.774454, + "geom:longitude":-104.92331, + "iso:country":"US", + "lbl:latitude":39.772906, + "lbl:longitude":-104.923309, + "lbl:max_zoom":18.0, + "mps:latitude":39.772906, + "mps:longitude":-104.923309, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Northeast Park Hl" + ], + "reversegeo:latitude":39.772906, + "reversegeo:longitude":-104.923309, + "src:geom":"denvercpd", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840547, + 102191575, + 1108750055, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"28c8e56adb0067519613b7fee585487c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750055, + "microhood_id":1108750051, + "neighbourhood_id":85840547, + "region_id":85688603 + } + ], + "wof:id":1108750051, + "wof:lastmodified":1566623948, + "wof:name":"Northeast Park Hill", + "wof:parent_id":85840547, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871333 + ], + "wof:tags":[] +}, + "bbox": [ + -104.94068094430315, + 39.7619582005799, + -104.90342900087592, + 39.79103928730245 +], + "geometry": {"coordinates":[[[[-104.9035106141726,39.78382337406947],[-104.90353461025984,39.7828358884795],[-104.90354210428706,39.7814672235038],[-104.90353135324801,39.77933569275473],[-104.90353927027678,39.77928449956863],[-104.9035497033147,39.77915394209401],[-104.90357149339394,39.7786601092987],[-104.90356952038672,39.77848984167969],[-104.90356884038425,39.77843114946631],[-104.90356743937917,39.77830971302484],[-104.90356805338143,39.77823764076282],[-104.90356849938303,39.77818514857199],[-104.90356057035422,39.77744095386652],[-104.90349684412251,39.77739326069315],[-104.90356541437183,39.77731109039445],[-104.90358677544947,39.77652743654551],[-104.90358395643921,39.77523253183796],[-104.90366010571609,39.7748202653392],[-104.90365740070621,39.77473363802426],[-104.90365496469735,39.7746134795874],[-104.90364223665108,39.77448259211161],[-104.90361924556754,39.77433830158702],[-104.90355682434057,39.77394818316878],[-104.90354074928217,39.77380392764434],[-104.90353112224716,39.77371577332389],[-104.90351161117621,39.77356883078966],[-104.90350582515521,39.77343531030425],[-104.90349995113382,39.77331246285763],[-104.90349751912498,39.77273339675247],[-104.90349202810501,39.77176924924737],[-104.90349316410914,39.77110162782031],[-104.9034951871165,39.76927727218794],[-104.90351329918235,39.76847558127344],[-104.90351691019549,39.76819186124203],[-104.90345828298234,39.76804715371594],[-104.90345207895979,39.76746063858371],[-104.90344709494167,39.7667264309145],[-104.90344926194956,39.76564357897786],[-104.90342900087592,39.7638359294063],[-104.90343941991375,39.76198380867299],[-104.9057916814653,39.76197469363984],[-104.90694839267042,39.76197496664088],[-104.9081803581492,39.76197746764996],[-104.90940887061538,39.7619762496455],[-104.91057336984881,39.76197652164649],[-104.91172998605361,39.76197676764741],[-104.91243103960227,39.76197416863795],[-104.91285130613011,39.7619958337167],[-104.91405264149751,39.76199920372898],[-104.91521282871531,39.76199846172625],[-104.9163762049447,39.76199770772354],[-104.91758682934585,39.76199324870731],[-104.91881264280221,39.761991512701],[-104.91997424602516,39.76199593171708],[-104.92113498924499,39.76199380070932],[-104.92197352929344,39.76199531271482],[-104.92213583988348,39.7619961097177],[-104.92229158944974,39.76200731175845],[-104.92244510800782,39.76201459178492],[-104.9240344587858,39.762018463799],[-104.92581562626117,39.76201092977158],[-104.92759396872623,39.76200584175308],[-104.92935575113108,39.76199787972416],[-104.93185299220966,39.76200033073309],[-104.93316704898683,39.76200252574102],[-104.93439197443996,39.76200154373748],[-104.93501507870519,39.76199965873064],[-104.93562102690811,39.76199782272397],[-104.93685257338529,39.7619954667154],[-104.93808285385791,39.76199034169673],[-104.93931451633557,39.76199483771308],[-104.93952660110659,39.76199859872679],[-104.93967992366396,39.76199520271444],[-104.94057818892958,39.7619582005799],[-104.94057193490681,39.76376668315453],[-104.9405698378992,39.76447529073062],[-104.94057007290007,39.76567104607773],[-104.94062575410248,39.76579643353358],[-104.94063053311987,39.76690860057681],[-104.94061839507572,39.76809607189375],[-104.94060707103455,39.76918253984354],[-104.94061724407157,39.77287765627693],[-104.94061716407128,39.77288765631329],[-104.94060953804353,39.77384760580316],[-104.94065060819287,39.77508014428395],[-104.94065725021699,39.77756978733493],[-104.94066616024941,39.77808998322604],[-104.94068094430315,39.77902389262124],[-104.94067622328595,39.77973168219432],[-104.94066848925786,39.78002986627837],[-104.9406420421617,39.78058094928178],[-104.94063724514427,39.78106817005306],[-104.94061130604996,39.78135734410432],[-104.94059615599491,39.78149872361831],[-104.9405567918518,39.78226988542184],[-104.94051898671432,39.78377443589153],[-104.94056244887236,39.78724495450842],[-104.94056852189442,39.78793300700977],[-104.94055133483192,39.78842998981651],[-104.94054954282541,39.78865449763271],[-104.94054784881928,39.78886675940436],[-104.9405296777532,39.78915446145032],[-104.94049542062868,39.78946861959241],[-104.94043518140967,39.78972346451889],[-104.94039111724948,39.78992942326761],[-104.94038021520987,39.78998037645289],[-104.94032541201062,39.79021687731267],[-104.94024937773418,39.79046144120173],[-104.94016230541763,39.79076310329845],[-104.94008842814907,39.79097526606972],[-104.93166084151107,39.79101647921954],[-104.92695000238513,39.79103928730245],[-104.92698092249753,39.78377590289688],[-104.9222741143862,39.78379991598416],[-104.91289897530345,39.78381977305634],[-104.9035106141726,39.78382337406947]]]],"type":"MultiPolygon"} +},{ + "id": 1108750053, + "type": "Feature", + "properties": { + "denvercpd:NBHD_ID":"57", + "denvercpd:NBHD_NAME":"South Park Hill", + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000406, + "geom:area_square_m":3856849.734061, + "geom:bbox":"-104.940663579,39.7401293702,-104.903422847,39.7510849671", + "geom:latitude":39.745598, + "geom:longitude":-104.92206, + "iso:country":"US", + "lbl:latitude":39.745607, + "lbl:longitude":-104.922061, + "lbl:max_zoom":18.0, + "mps:latitude":39.745607, + "mps:longitude":-104.922061, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":1, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "South Park Hl" + ], + "reversegeo:latitude":39.745607, + "reversegeo:longitude":-104.922061, + "src:geom":"denvercpd", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840547, + 102191575, + 1108750055, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"936c861da5589864248b44ee6e37092d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750055, + "microhood_id":1108750053, + "neighbourhood_id":85840547, + "region_id":85688603 + } + ], + "wof:id":1108750053, + "wof:lastmodified":1566623948, + "wof:name":"South Park Hill", + "wof:parent_id":85840547, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85871337 + ], + "wof:tags":[] +}, + "bbox": [ + -104.94066357923998, + 39.74012937022246, + -104.90342284685352, + 39.75108496705093 +], + "geometry": {"coordinates":[[[[-104.90342757887072,39.75101656980223],[-104.90342284685352,39.74982277046229],[-104.90343654890336,39.74863158013176],[-104.90344777394415,39.74744193980689],[-104.90346375400225,39.74561563716748],[-104.90345506697065,39.7437852235131],[-104.90345873698402,39.74260234321281],[-104.90345269896204,39.74197836594442],[-104.90345511097081,39.74147965513134],[-104.90345509397076,39.74014630828407],[-104.90465253232395,39.74015877132939],[-104.90579738948605,39.74015407331228],[-104.90694148064529,39.74015978633304],[-104.90815677806347,39.74015507731593],[-104.90935624842405,39.74014812229063],[-104.91050010158244,39.74014949429562],[-104.91164056272856,39.74014936529517],[-104.9124304156,39.7401539413118],[-104.91280298995446,39.74015473531472],[-104.91394861711933,39.74014931329498],[-104.915055675144,39.74014685528607],[-104.91632271675024,39.74014704228671],[-104.91725476113862,39.74014617128358],[-104.91755576923293,39.74014560228147],[-104.9183593991545,39.74014477327847],[-104.91877335065936,39.74014622728379],[-104.91945708514504,39.74014582628229],[-104.91994925093428,39.74014301427206],[-104.92056093915807,39.74014259527058],[-104.92113323323861,39.74013982726052],[-104.92166173815991,39.74014114726532],[-104.92232125455757,39.74014298427198],[-104.92343114559253,39.74015046029916],[-104.92460937187587,39.74014640828443],[-104.92577635011838,39.74015071030004],[-104.92690054320531,39.7401430722723],[-104.9275261954798,39.7401387012564],[-104.92806718344656,39.74013858525598],[-104.92865852459636,39.74013620724736],[-104.9292208456406,39.74013584724605],[-104.92979965974484,39.74013556424501],[-104.93037966885345,39.74013494224272],[-104.93093440287015,39.74013453824125],[-104.93153477405275,39.74013583024595],[-104.93208740206182,39.74013393123909],[-104.9326914202577,39.74013705625043],[-104.93380109429182,39.74013656624862],[-104.93500276866047,39.74013764425257],[-104.93551759253205,39.74013771125283],[-104.93614841382538,39.74013730325134],[-104.93723713678338,39.7401385042557],[-104.93838540395785,39.7401323502333],[-104.93894408898888,39.74013044822641],[-104.93948913097034,39.74013576324575],[-104.94066357923998,39.74012937022246],[-104.94065799221971,39.74138736479586],[-104.94065686121559,39.74175213712198],[-104.94065623421329,39.74194224481306],[-104.94065390120483,39.74256918509229],[-104.94065083119364,39.74339995911254],[-104.94065334620279,39.74375342539753],[-104.94064464217115,39.74495615576996],[-104.94063975715341,39.74612596102276],[-104.94063500013613,39.7473911636223],[-104.94062821811144,39.7492445303601],[-104.94062103508531,39.75103680987581],[-104.93944735381848,39.75104186389422],[-104.93834396480719,39.75104312689882],[-104.93724227480203,39.75104918392083],[-104.93613975779391,39.75104871391909],[-104.93503898879214,39.75104755191489],[-104.93393380277428,39.75104498890556],[-104.93283300377243,39.75105274793378],[-104.93170113065753,39.75105584294505],[-104.93050339230325,39.75105792795262],[-104.92933240004618,39.75105842495441],[-104.92816141278911,39.75106339597249],[-104.92698954352886,39.75106492897805],[-104.92578565415221,39.75106561298054],[-104.92463693097608,39.75106552298024],[-104.92347249374285,39.75106826399019],[-104.92228341942001,39.75107140700163],[-104.92110759714541,39.75107688902153],[-104.91993329987628,39.75107536501599],[-104.91876203461823,39.75107686902146],[-104.91754998821193,39.75107567701713],[-104.91633322378846,39.75108323404459],[-104.91515666451113,39.75107945403084],[-104.91398775926166,39.75108496705093],[-104.91284922912257,39.75108128703755],[-104.91238610943896,39.75102695584002],[-104.91227533403622,39.75101315778983],[-104.91213202651522,39.75100949177653],[-104.91168234188041,39.75100850277295],[-104.91050736460886,39.75101195678548],[-104.90937293848475,39.75100997577829],[-104.90816466109209,39.75101289378887],[-104.90695413769134,39.7510139397927],[-104.90581283554218,39.75101532279774],[-104.90464254728766,39.75101678480303],[-104.90342757887072,39.75101656980223]]]],"type":"MultiPolygon"} +},{ + "id": 1108715775, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-122.715529624,45.4871794065,-122.715529624,45.4871794065", + "geom:latitude":45.487179, + "geom:longitude":-122.71553, + "iso:country":"US", + "lbl:latitude":45.487179, + "lbl:longitude":-122.71553, + "lbl:max_zoom":18.0, + "mps:latitude":45.491397, + "mps:longitude":-122.727065, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Glencullen" + ], + "name:eng_x_preferred":[ + "Glencullen" + ], + "name:eus_x_preferred":[ + "Glencullen" + ], + "name:fas_x_preferred":[ + "\u06af\u0644\u0646\u06a9\u0627\u0644\u0646" + ], + "name:fra_x_preferred":[ + "Glencullen" + ], + "name:gle_x_preferred":[ + "Gleann Cuilinn" + ], + "name:ita_x_preferred":[ + "Glencullen" + ], + "name:nld_x_preferred":[ + "Glencullen" + ], + "name:pol_x_preferred":[ + "Glencullen" + ], + "name:rus_x_preferred":[ + "\u0413\u043b\u0435\u043d\u043a\u0430\u043b\u043b\u0435\u043d" + ], + "name:swe_x_preferred":[ + "Glencullen" + ], + "name:und_x_variant":[ + "Pine" + ], + "reversegeo:latitude":45.491397, + "reversegeo:longitude":-122.727065, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807447, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b842cefab5d6bd0c23b539d0ab8b1e13", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108715775, + "neighbourhood_id":85807447, + "region_id":85688513 + } + ], + "wof:id":1108715775, + "wof:lastmodified":1566624150, + "wof:name":"Glencullen", + "wof:parent_id":85807447, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85821817 + ], + "wof:tags":[] +}, + "bbox": [ + -122.71552962365527, + 45.48717940647876, + -122.71552962365527, + 45.48717940647876 +], + "geometry": {"coordinates":[-122.71552962365527,45.48717940647876],"type":"Point"} +},{ + "id": 1108715777, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000067, + "geom:area_square_m":578088.435652, + "geom:bbox":"-122.653675,45.5112350097,-122.608272957,45.512925", + "geom:latitude":45.512119, + "geom:longitude":-122.628856, + "iso:country":"US", + "lbl:latitude":45.512076, + "lbl:longitude":-122.628856, + "lbl:max_zoom":18.0, + "mps:latitude":45.512076, + "mps:longitude":-122.628856, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Hawthorne District" + ], + "reversegeo:latitude":45.512076, + "reversegeo:longitude":-122.628856, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85851483, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"3efe9da72f893147f7eb7b7451adfc65", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108715777, + "neighbourhood_id":85851483, + "region_id":85688513 + } + ], + "wof:id":1108715777, + "wof:lastmodified":1566624150, + "wof:name":"Hawthorne District", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867133 + ], + "wof:tags":[] +}, + "bbox": [ + -122.653675, + 45.5112350096833, + -122.60827295683387, + 45.512925 +], + "geometry": {"coordinates":[[[-122.65367500000001,45.51222599816625],[-122.65367500000001,45.512925],[-122.60830919371243,45.51287691083287],[-122.60827295683387,45.5112350096833],[-122.61654028569023,45.51125860769255],[-122.64512789241158,45.5112482626373],[-122.645129,45.511424],[-122.64513100000001,45.511936],[-122.64523069238619,45.51210282765241],[-122.64537820024744,45.51218546926323],[-122.65367500000001,45.51222599816625]]],"type":"Polygon"} +},{ + "id": 1108717055, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000116, + "geom:area_square_m":1003809.873954, + "geom:bbox":"-122.717157864,45.5225906611,-122.698300405,45.5331754403", + "geom:latitude":45.527694, + "geom:longitude":-122.709124, + "iso:country":"US", + "lbl:latitude":45.528242, + "lbl:longitude":-122.710055, + "lbl:max_zoom":18.0, + "mps:latitude":45.528242, + "mps:longitude":-122.710055, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":45.528242, + "reversegeo:longitude":-122.710055, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85871503, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"3184d8c88a1a0bb3f472dbcd94a944d7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108717055, + "neighbourhood_id":85871503, + "region_id":85688513 + } + ], + "wof:id":1108717055, + "wof:lastmodified":1566624135, + "wof:name":"Kings Heights", + "wof:parent_id":85871503, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420536099 + ], + "wof:tags":[] +}, + "bbox": [ + -122.71715786383608, + 45.52259066112311, + -122.69830040513735, + 45.53317544026779 +], + "geometry": {"coordinates":[[[-122.71491530715757,45.52259066112311],[-122.71505063811419,45.52982788142975],[-122.71670179088228,45.52986046437857],[-122.71709838148175,45.53034665791326],[-122.71706070385159,45.53036274857357],[-122.71696068991942,45.53040068955914],[-122.71686013699809,45.53047482326748],[-122.71683724433139,45.53053837023393],[-122.7168442565805,45.53061797296408],[-122.71694504486042,45.53074978431569],[-122.71712641561462,45.53099579098701],[-122.71715786383608,45.53110133050575],[-122.71712381499187,45.53122905601513],[-122.71702112677511,45.53134850107867],[-122.71690221498434,45.53140241142787],[-122.71669548209472,45.53145664266106],[-122.71615613898804,45.53159068285952],[-122.7154718033029,45.53176061197453],[-122.71503467949239,45.53191325298404],[-122.71488634158784,45.53196344060101],[-122.71464849734502,45.5320208409733],[-122.7144869137816,45.53208174385204],[-122.71447818575029,45.53215822066298],[-122.71453652503978,45.5324028292174],[-122.71419926154951,45.53256366099303],[-122.71406896990071,45.53262618932425],[-122.71392759034634,45.53270470801076],[-122.71374833153141,45.53296315306909],[-122.71375635079194,45.53316877570687],[-122.71356129689934,45.53317236189642],[-122.71336602830944,45.53317046339956],[-122.71317097441683,45.53317404895973],[-122.71316776743129,45.5330917993733],[-122.71108846309426,45.53312925020673],[-122.71090042145077,45.53316253464153],[-122.71022945718865,45.53317544026779],[-122.70943126453285,45.53307898308385],[-122.7091053755107,45.53288049981231],[-122.70827248632534,45.53239372549449],[-122.70822253819895,45.53236416151072],[-122.70726207207358,45.53180866646278],[-122.70654100607311,45.53128543580326],[-122.70555019934901,45.53055096936598],[-122.70437483464812,45.52968730903694],[-122.70264658743255,45.52971461711036],[-122.70254817429823,45.52828481264913],[-122.70187649497714,45.52752293497142],[-122.70107108166309,45.5265329737282],[-122.70063569070275,45.52587425340826],[-122.70050306073927,45.5255743015301],[-122.70032469844297,45.52535324895067],[-122.69958626261818,45.52468009237101],[-122.69909798693875,45.52421718001128],[-122.69830040513735,45.52347741257061],[-122.7004740226977,45.52376762288696],[-122.70061565557698,45.52379646320665],[-122.7018717240247,45.52412890875412],[-122.70193680427208,45.52414635356313],[-122.70232482257589,45.52423786099506],[-122.70422110505524,45.5241696055379],[-122.70430881566125,45.52416672303622],[-122.70594133480687,45.52409097990159],[-122.70732287813684,45.52388490932107],[-122.70811450500624,45.5237657819748],[-122.70970951499716,45.5234286825677],[-122.71166070250663,45.52286692503594],[-122.71216663996289,45.52277898963868],[-122.71279348257151,45.52268872412543],[-122.71344604304841,45.52265746388545],[-122.71491530715757,45.52259066112311]]],"type":"Polygon"} +},{ + "id": 1108717057, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000091, + "geom:area_square_m":789257.108751, + "geom:bbox":"-122.733323849,45.5464894492,-122.708428284,45.557858", + "geom:latitude":45.552119, + "geom:longitude":-122.720796, + "iso:country":"US", + "lbl:latitude":45.552094, + "lbl:longitude":-122.720796, + "lbl:max_zoom":18.0, + "mps:latitude":45.552094, + "mps:longitude":-122.720796, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"rail yard", + "mz:tier_metro":1, + "reversegeo:latitude":45.552094, + "reversegeo:longitude":-122.720796, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871505, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"5314db86d40dee1ceeac25b5d22aa25e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108717057, + "neighbourhood_id":85871505, + "region_id":85688513 + } + ], + "wof:id":1108717057, + "wof:lastmodified":1566624135, + "wof:name":"Lake Yard", + "wof:parent_id":85871505, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868951 + ], + "wof:tags":[] +}, + "bbox": [ + -122.73332384867105, + 45.54648944920253, + -122.70842828362834, + 45.557858 +], + "geometry": {"coordinates":[[[-122.70842828362834,45.54961643924949],[-122.7106031161516,45.54648944920253],[-122.710768,45.546541],[-122.711989,45.546889],[-122.713371,45.547347],[-122.717795,45.548946],[-122.718137,45.54907],[-122.71833700000001,45.549142],[-122.718909,45.549347],[-122.71921399999999,45.549456],[-122.720226,45.549842],[-122.72081900000001,45.550067],[-122.72167399999999,45.550393],[-122.722567,45.550721],[-122.723004,45.550876],[-122.723783,45.551111],[-122.724766,45.55147],[-122.725024,45.551574],[-122.726721,45.552259],[-122.72694300000001,45.552351],[-122.72829400000001,45.552912],[-122.73134,45.554157],[-122.73332384867105,45.55497973921857],[-122.73318500000001,45.555153],[-122.732218,45.556371],[-122.73202499999999,45.556614],[-122.73195,45.556702],[-122.731373,45.557376],[-122.730969,45.557858],[-122.73019499999999,45.557576],[-122.729733,45.557408],[-122.728607,45.556998],[-122.72492099999999,45.555636],[-122.718108,45.553147],[-122.716838,45.552683],[-122.713977,45.551627],[-122.712121,45.550942],[-122.71162200000001,45.550796],[-122.70842828362834,45.54961643924949]]],"type":"Polygon"} +},{ + "id": 1108717813, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":166563.341343, + "geom:bbox":"-122.662725941,45.5221929774,-122.653596088,45.5243278991", + "geom:latitude":45.523268, + "geom:longitude":-122.658143, + "iso:country":"US", + "lbl:latitude":45.523269, + "lbl:longitude":-122.658144, + "lbl:max_zoom":18.0, + "mps:latitude":45.523269, + "mps:longitude":-122.658144, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":45.523269, + "reversegeo:longitude":-122.658144, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871495, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ac70ab947c8ccef7d53ef87e9d210b74", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108717813, + "neighbourhood_id":85871495, + "region_id":85688513 + } + ], + "wof:id":1108717813, + "wof:lastmodified":1566624149, + "wof:name":"Lower Burnside", + "wof:parent_id":85871495, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893203 + ], + "wof:tags":[] +}, + "bbox": [ + -122.66272594111177, + 45.52219297741104, + -122.65359608798828, + 45.52432789909248 +], + "geometry": {"coordinates":[[[-122.65361102116658,45.52219297741104],[-122.66272594111177,45.52223346427808],[-122.6626906331842,45.52432789909248],[-122.65359608798828,45.5243214528705],[-122.65360099999999,45.523621],[-122.653606,45.522908],[-122.653603,45.522739],[-122.653611,45.522196],[-122.65361102116658,45.52219297741104]]],"type":"Polygon"} +},{ + "id": 1108718535, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000112, + "geom:area_square_m":971669.947082, + "geom:bbox":"-122.696010155,45.491442,-122.680379,45.5030150247", + "geom:latitude":45.49801, + "geom:longitude":-122.687448, + "iso:country":"US", + "lbl:latitude":45.498632, + "lbl:longitude":-122.687449, + "lbl:max_zoom":18.0, + "mps:latitude":45.498632, + "mps:longitude":-122.687449, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Marquam Hl" + ], + "reversegeo:latitude":45.498632, + "reversegeo:longitude":-122.687449, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420781235, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"9a084b4a92537076b833b0a45a138d26", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108718535, + "neighbourhood_id":420781235, + "region_id":85688513 + } + ], + "wof:id":1108718535, + "wof:lastmodified":1566624148, + "wof:name":"Marquam Hill", + "wof:parent_id":420781235, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85832591 + ], + "wof:tags":[] +}, + "bbox": [ + -122.69601015459402, + 45.491442, + -122.680379, + 45.50301502469708 +], + "geometry": {"coordinates":[[[-122.68742101270958,45.50287879156318],[-122.687426,45.502797],[-122.687439,45.502696],[-122.687414,45.50261],[-122.68730499999999,45.502507],[-122.68711999999999,45.502453],[-122.68684399999999,45.502405],[-122.686577,45.502406],[-122.68633199999999,45.502439],[-122.685906,45.50251],[-122.685447,45.502614],[-122.68470211243678,45.50287282248734],[-122.68436830044524,45.50299193460302],[-122.68431015968343,45.50300195726893],[-122.68416622262545,45.50301309747984],[-122.68406485044059,45.50301502469708],[-122.68391426135794,45.50300536972217],[-122.68376886813088,45.50297863925282],[-122.68368406626978,45.50295487231904],[-122.68358611846277,45.50289362940068],[-122.68348784187236,45.50282381873883],[-122.6834188135293,45.5027536239304],[-122.68336001969227,45.50264516462585],[-122.68320686861442,45.50236581822984],[-122.68229599999999,45.500469],[-122.682265,45.500333],[-122.682254,45.500247],[-122.682253,45.500157],[-122.68226799999999,45.500083],[-122.6823,45.500013],[-122.682351,45.499922],[-122.682429,45.499825],[-122.68261699999999,45.499631],[-122.682687,45.49952],[-122.68270200000001,45.499448],[-122.682697,45.49938],[-122.682659,45.499295],[-122.68256599999999,45.499218],[-122.682456,45.499163],[-122.68233600000001,45.499131],[-122.68216700000001,45.499094],[-122.68211700000001,45.499083],[-122.681876,45.499038],[-122.68167200000001,45.498981],[-122.681586,45.498938],[-122.681505,45.498879],[-122.681399,45.498789],[-122.681314,45.498699],[-122.681189,45.498488],[-122.680413,45.497113],[-122.680391,45.496966],[-122.680379,45.496778],[-122.680392,45.496656],[-122.680413,45.496569],[-122.680448,45.496462],[-122.68048899999999,45.496374],[-122.680611,45.496191],[-122.680689,45.4961],[-122.680773,45.496029],[-122.680943,45.495914],[-122.681194,45.495801],[-122.682046,45.495483],[-122.68220100000001,45.495401],[-122.682323,45.495314],[-122.682379,45.495249],[-122.682445,45.495115],[-122.68246000000001,45.494979],[-122.68245400000001,45.494887],[-122.682429,45.494778],[-122.682365,45.494672],[-122.682227,45.494561],[-122.682057,45.494448],[-122.681838,45.494316],[-122.68165999999999,45.494192],[-122.68160899999999,45.494139],[-122.681543,45.49407],[-122.681455,45.493944],[-122.68141300000001,45.493838],[-122.681349,45.493702],[-122.681313,45.493564],[-122.681304,45.493493],[-122.68128400000001,45.493172],[-122.681375,45.492508],[-122.68144100000001,45.492393],[-122.681556,45.492186],[-122.68167,45.492066],[-122.68182299999999,45.491932],[-122.682022,45.4918],[-122.682284,45.491683],[-122.68247100000001,45.491607],[-122.682804,45.491521],[-122.68300600000001,45.491476],[-122.683263,45.491442],[-122.683488,45.491445],[-122.68376000000001,45.491467],[-122.683897,45.491484],[-122.68401,45.491506],[-122.68414300000001,45.491546],[-122.684297,45.491598],[-122.68462,45.491712],[-122.68526799999999,45.491876],[-122.685473,45.491924],[-122.685703,45.491963],[-122.68594,45.491992],[-122.68611199999999,45.492004],[-122.686255,45.492009],[-122.68647145697196,45.49225371809604],[-122.68668933875114,45.49250425874126],[-122.68687974633661,45.49275393679535],[-122.68695460308395,45.49287711679733],[-122.68700994974628,45.49298217736425],[-122.68705629753713,45.49308371381414],[-122.68707723591979,45.49317796507171],[-122.68709520444679,45.49351883078083],[-122.68710471011345,45.49364439471879],[-122.68712501925812,45.49379488635164],[-122.68714078615571,45.49391647947557],[-122.68716502523066,45.49400953236238],[-122.68720807358122,45.49411285632436],[-122.68726595587536,45.4941987427087],[-122.68732769209188,45.49427935235811],[-122.68752184910596,45.49446527415197],[-122.68768955335068,45.49459035096557],[-122.68785097896254,45.49468519014405],[-122.6884553279086,45.49499084771355],[-122.68917825905582,45.49531888299668],[-122.68971771081004,45.49555045711534],[-122.69017097603573,45.49572677756723],[-122.69045990229827,45.49582450736951],[-122.69074656085678,45.49590309749694],[-122.69111351978052,45.49599120169065],[-122.69151123243776,45.4960699395286],[-122.69264885936822,45.49627800917986],[-122.69330033062953,45.49641830994467],[-122.69387136253208,45.49656172185267],[-122.69430188562033,45.49669682451387],[-122.69466205190183,45.4968417564715],[-122.69512513667389,45.49711176888452],[-122.6953319826581,45.49726231059557],[-122.6955011295681,45.49739564397314],[-122.69601015459402,45.49795173751293],[-122.69598122636495,45.49797827887338],[-122.69594747755805,45.49801356312604],[-122.69589623675591,45.49810096990167],[-122.69578766098077,45.49826955511028],[-122.69574633757939,45.49836122992553],[-122.69571458842231,45.49844826403548],[-122.69567226519604,45.49851406418892],[-122.69563238808226,45.49859267896973],[-122.69559702051119,45.49863656830222],[-122.69551010760914,45.49870956641701],[-122.69544862241951,45.4987843079411],[-122.69540144379911,45.4988759227312],[-122.69531617750897,45.49904200402726],[-122.69527665882299,45.49923087424918],[-122.69527061585607,45.49927643290439],[-122.69523749946313,45.49937858273543],[-122.69520021668392,45.49952436853461],[-122.69519217227054,45.49956859274025],[-122.69517506924582,45.49963082466478],[-122.69514754217057,45.49972618003155],[-122.69512852483602,45.49989030882853],[-122.69512922731857,45.49990847264375],[-122.69513199772288,45.49992968327284],[-122.69504289203324,45.50004696461593],[-122.69495623245608,45.50017706005838],[-122.69491773695121,45.50029148801347],[-122.69486203152213,45.50046540594574],[-122.69484863943788,45.50057318063308],[-122.6948458726268,45.5006025573234],[-122.69484296478024,45.50067875077981],[-122.69483441820861,45.500911957032],[-122.69477778392152,45.50121330341008],[-122.69473731841123,45.50132725452367],[-122.69472595651953,45.5013866323168],[-122.69456003678825,45.50143455975252],[-122.69449077847648,45.50145971816132],[-122.69441947200583,45.50148234422352],[-122.6943502271688,45.50150784638384],[-122.69428913005139,45.50154228095587],[-122.69424402564096,45.50158669938828],[-122.69420488873897,45.50163408958849],[-122.69419173291166,45.50164703078072],[-122.69416923999523,45.50167078189649],[-122.69415980409151,45.50167902108778],[-122.6941026990872,45.501715780106],[-122.69403756404257,45.50174669120882],[-122.69397235713274,45.50177571658983],[-122.69390722208811,45.50180662703013],[-122.69385012966023,45.50184372847661],[-122.69380505130096,45.50188883169385],[-122.69375199680029,45.50192945767627],[-122.69370089074543,45.50197004522278],[-122.69364782905826,45.50201049926169],[-122.6935947745576,45.50205112515631],[-122.69354367568927,45.5020918844998],[-122.69349064005323,45.50213302410045],[-122.69343957442256,45.50217464028818],[-122.6933885016054,45.50221608519049],[-122.69333742878825,45.50225753006234],[-122.69328632273341,45.50229811863159],[-122.6932312847526,45.50233792393506],[-122.69319708768636,45.50236172638751],[-122.69317619377117,45.50237635917701],[-122.69311909954665,45.50241346024807],[-122.69306000387569,45.50244922778047],[-122.69299891843636,45.50248400428447],[-122.69293780065767,45.50251792386865],[-122.6928766694043,45.5025515009251],[-122.69285755145842,45.50256164014705],[-122.69281359419662,45.50258528699159],[-122.69275246923142,45.50261903526133],[-122.69268737281435,45.50265097275864],[-122.69267011168617,45.50265867601026],[-122.69262016086481,45.50267866353506],[-122.69255078128046,45.50270073757144],[-122.69247736376892,45.50271928705873],[-122.69243673656187,45.50272812170479],[-122.69240386091744,45.50273560836107],[-122.69232835482285,45.50275059741085],[-122.69225283615185,45.50276524206181],[-122.69212314906923,45.50279172456762],[-122.69203044832182,45.50281612936114],[-122.69189361154784,45.50285955327105],[-122.69163098458294,45.50287879779031],[-122.69155085755456,45.50282459504294],[-122.69137607414636,45.50279466231048],[-122.69123204635854,45.50275282495945],[-122.69102540509711,45.50275676692701],[-122.69092049175337,45.50276802807088],[-122.69086552473948,45.50280971808277],[-122.69072778785358,45.50282983588236],[-122.6904528431895,45.50278260597908],[-122.69006380619615,45.50271097120761],[-122.68958772604503,45.50265865712204],[-122.68913935442883,45.5026672034173],[-122.68864198690044,45.50272058090129],[-122.68826350870494,45.50277100548019],[-122.68742101270958,45.50287879156318]]],"type":"Polygon"} +},{ + "id": 1108718537, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":63047.883773, + "geom:bbox":"-122.676098,45.547835,-122.674975105,45.5546240512", + "geom:latitude":45.551229, + "geom:longitude":-122.675536, + "iso:country":"US", + "lbl:latitude":45.551229, + "lbl:longitude":-122.675538, + "lbl:max_zoom":18.0, + "mps:latitude":45.551229, + "mps:longitude":-122.675538, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "North Mississippi Ave\"", + "\"Mississippi Avenue\"" + ], + "reversegeo:latitude":45.551229, + "reversegeo:longitude":-122.675538, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893159, + 102191575, + 1108720843, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"7a4a5baea15388e6149309dddd532917", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108720843, + "microhood_id":1108718537, + "neighbourhood_id":85893159, + "region_id":85688513 + } + ], + "wof:id":1108718537, + "wof:lastmodified":1566624148, + "wof:name":"Mississippi Ave", + "wof:parent_id":85893159, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893207 + ], + "wof:tags":[] +}, + "bbox": [ + -122.676098, + 45.547835, + -122.67497510484102, + 45.55462405118203 +], + "geometry": {"coordinates":[[[-122.67497510484102,45.55462026576988],[-122.67498399999999,45.553359],[-122.674993,45.552101],[-122.675003,45.550841],[-122.675012,45.549583],[-122.67502500000001,45.547837],[-122.675386,45.547835],[-122.675561,45.547837],[-122.676098,45.547837],[-122.676085,45.549587],[-122.67607599999999,45.550845],[-122.67606600000001,45.552105],[-122.676057,45.553364],[-122.67604812264454,45.55462405118203],[-122.67497510484102,45.55462026576988]]],"type":"Polygon"} +},{ + "id": 1108718923, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000067, + "geom:area_square_m":577596.347618, + "geom:bbox":"-122.699338643,45.5231893557,-122.693825965,45.536917", + "geom:latitude":45.529955, + "geom:longitude":-122.696582, + "iso:country":"US", + "lbl:latitude":45.529928, + "lbl:longitude":-122.696582, + "lbl:max_zoom":18.0, + "mps:latitude":45.529928, + "mps:longitude":-122.696582, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Nob Hl", + "Nobhill" + ], + "reversegeo:latitude":45.529928, + "reversegeo:longitude":-122.696582, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871509, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ad730d8fc98fc0be5683f8be6ac90080", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108718923, + "neighbourhood_id":85871509, + "region_id":85688513 + } + ], + "wof:id":1108718923, + "wof:lastmodified":1566624129, + "wof:name":"Nob Hill", + "wof:parent_id":85871509, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867141 + ], + "wof:tags":[] +}, + "bbox": [ + -122.69933864341344, + 45.52318935573036, + -122.69382596457015, + 45.536917 +], + "geometry": {"coordinates":[[[-122.69889296961972,45.52402702379516],[-122.69933864341344,45.53691053961852],[-122.69887300000001,45.536917],[-122.698615,45.536854],[-122.69842300000001,45.536826],[-122.697682,45.536717],[-122.696861,45.536597],[-122.696594,45.536524],[-122.69610400000001,45.536421],[-122.695662,45.536322],[-122.694777,45.536092],[-122.69439800000001,45.535987],[-122.69421202054004,45.53593708637131],[-122.69382596457015,45.52318935573036],[-122.69412904757279,45.52320423361567],[-122.69763149711889,45.52338920560778],[-122.69830040513735,45.52347741257061],[-122.69889296961972,45.52402702379516]]],"type":"Polygon"} +},{ + "id": 1108719767, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000218, + "geom:area_square_m":1891687.539574, + "geom:bbox":"-122.713440437,45.502544,-122.685083491,45.5194430427", + "geom:latitude":45.509308, + "geom:longitude":-122.698109, + "iso:country":"US", + "lbl:latitude":45.510039, + "lbl:longitude":-122.698323, + "lbl:max_zoom":18.0, + "mps:latitude":45.510039, + "mps:longitude":-122.698323, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Portland Hts" + ], + "reversegeo:latitude":45.510039, + "reversegeo:longitude":-122.698323, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85867153, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"0d3b68d6d2fb487b5bb6ad639cc2dc4b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108719767, + "neighbourhood_id":85867153, + "region_id":85688513 + } + ], + "wof:id":1108719767, + "wof:lastmodified":1566624134, + "wof:name":"Portland Heights", + "wof:parent_id":85867153, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85842887 + ], + "wof:tags":[] +}, + "bbox": [ + -122.71344043676608, + 45.502544, + -122.68508349146376, + 45.51944304272305 +], + "geometry": {"coordinates":[[[-122.68538660010861,45.50451143387046],[-122.685508,45.504438],[-122.685817,45.504255],[-122.686469,45.50387],[-122.686577,45.503815],[-122.68667499999999,45.503779],[-122.686829,45.503748],[-122.687213,45.503701],[-122.687315,45.503693],[-122.68795900000001,45.503643],[-122.688655,45.503609],[-122.689189,45.503622],[-122.68961,45.503653],[-122.69032900000001,45.503705],[-122.690898,45.503757],[-122.69104400000001,45.503781],[-122.69115600000001,45.50382],[-122.69129700000001,45.5039],[-122.69248399999999,45.504752],[-122.692577,45.504891],[-122.692751,45.505189],[-122.692812,45.505259],[-122.69287300000001,45.505295],[-122.69296900000001,45.50531],[-122.69302399999999,45.505308],[-122.69309199999999,45.505306],[-122.693527,45.505205],[-122.693685,45.50519],[-122.693776,45.505192],[-122.693871,45.5052],[-122.693957,45.505216],[-122.69402599999999,45.505237],[-122.694118,45.505276],[-122.694304,45.50541],[-122.694519,45.505562],[-122.694839,45.505829],[-122.69489299999999,45.505866],[-122.69493799999999,45.505889],[-122.694985,45.505907],[-122.695126,45.505939],[-122.695697,45.506015],[-122.69625000000001,45.506098],[-122.69661600000001,45.506151],[-122.69666100000001,45.506153],[-122.696755,45.506142],[-122.696872,45.506094],[-122.696922,45.506061],[-122.697056,45.505919],[-122.697119,45.505864],[-122.69717199999999,45.505835],[-122.697264,45.505798],[-122.697337,45.50578],[-122.697435,45.505768],[-122.697574,45.505771],[-122.698217,45.505831],[-122.699022,45.505925],[-122.69937400000001,45.506016],[-122.699939,45.506241],[-122.700149,45.506247],[-122.700309,45.50623],[-122.700462,45.506172],[-122.700587,45.506044],[-122.700851,45.505465],[-122.700982,45.505345],[-122.70113000000001,45.505332],[-122.701347,45.505336],[-122.70157,45.505359],[-122.702208,45.50541],[-122.702456,45.505442],[-122.70273400000001,45.505499],[-122.703018,45.505569],[-122.70328600000001,45.50557],[-122.70348199999999,45.505548],[-122.70375300000001,45.505467],[-122.70432,45.505253],[-122.704573,45.505187],[-122.704793,45.505142],[-122.704976,45.505118],[-122.705212,45.505106],[-122.70535,45.505107],[-122.70549699999999,45.505124],[-122.70559900000001,45.505146],[-122.705675,45.505148],[-122.705792,45.505131],[-122.705856,45.505088],[-122.705938,45.504997],[-122.706191,45.504729],[-122.70629700000001,45.504629],[-122.706445,45.504506],[-122.707052,45.504075],[-122.707792,45.503559],[-122.708181,45.503236],[-122.708276,45.503148],[-122.708365,45.503097],[-122.708471,45.503062],[-122.70859900000001,45.503059],[-122.708744,45.503088],[-122.710004,45.503505],[-122.71027100000001,45.503529],[-122.710465,45.503503],[-122.71065299999999,45.503443],[-122.710818,45.50335],[-122.710919,45.503277],[-122.71100800000001,45.503222],[-122.711125,45.503193],[-122.71129999999999,45.503185],[-122.71155,45.50322],[-122.711941,45.503317],[-122.712298,45.503346],[-122.712453,45.503316],[-122.712582,45.503265],[-122.712684,45.503207],[-122.71276,45.503122],[-122.712998,45.502544],[-122.71305774991183,45.50256241042748],[-122.7131459424951,45.50261586784322],[-122.71324514419699,45.50269625699335],[-122.71332667321749,45.50279494543117],[-122.71339001223262,45.50290426623923],[-122.71343031722198,45.50305758312086],[-122.71344043676608,45.50323277521407],[-122.71342690310045,45.50338213573743],[-122.71334437713777,45.50387016747798],[-122.71322646674005,45.50469843399722],[-122.71312527100687,45.50543150994201],[-122.71297697713445,45.50677442290376],[-122.71085124857045,45.50709109134276],[-122.71028335341077,45.50723783424334],[-122.70980576498827,45.50749927210752],[-122.70913143473877,45.50796958511241],[-122.70872169337474,45.50837050086624],[-122.70794568551321,45.50948804727739],[-122.70724509032144,45.51068919295102],[-122.70699890252624,45.51098166938267],[-122.70654080574877,45.51129399152692],[-122.70571690420786,45.51168295759599],[-122.7048434246464,45.51195111743027],[-122.70462168450165,45.5120193348321],[-122.70378101231267,45.51232869823543],[-122.70313479663663,45.51262112208251],[-122.70248472179816,45.51291481598616],[-122.70197461795564,45.51334626636172],[-122.70139057917198,45.51398473755411],[-122.70023855539714,45.51522380898554],[-122.69954147531305,45.51626981518912],[-122.69945215762098,45.51648278980859],[-122.69947869565112,45.51656339185696],[-122.69944477077442,45.51679588334358],[-122.69945358504397,45.51702344152235],[-122.69964077328792,45.51747308274999],[-122.69979936725808,45.51763792583564],[-122.69996523848035,45.51778908255778],[-122.70005182619225,45.51795890545008],[-122.70025025864864,45.51814459273038],[-122.70032470293455,45.51830315840421],[-122.70035056812654,45.51841669852406],[-122.70036043342498,45.51846983951422],[-122.70014088067795,45.51894784621405],[-122.69969034412195,45.51930680773707],[-122.6993821986233,45.51941233771678],[-122.69925787627952,45.51942706363417],[-122.69913337337441,45.51943716331012],[-122.69900674236041,45.51944267325351],[-122.69887991192036,45.51944304272305],[-122.69875290271561,45.51943878658459],[-122.69862571384782,45.51942990231928],[-122.69849833902872,45.51941622061098],[-122.69837273568739,45.51939787426388],[-122.69824695268301,45.51937490166803],[-122.69815051314733,45.51935376823112],[-122.69785154483762,45.51929312536942],[-122.69772378014972,45.51906767046388],[-122.69727051900344,45.51829764583155],[-122.69716241394551,45.51837842278012],[-122.69708165540149,45.51840946131997],[-122.6970095063111,45.51841084103403],[-122.69694561453485,45.51837348048021],[-122.69679490687457,45.51816012402613],[-122.69671781794848,45.51808426076532],[-122.69664972924318,45.51803926242191],[-122.69655733841452,45.51802182327241],[-122.69632815842262,45.51799945311465],[-122.69624356766558,45.51798186477645],[-122.69613475563354,45.51794347480864],[-122.69598820717303,45.51783755748745],[-122.69589592593883,45.51772202842972],[-122.69579363747238,45.51760000204872],[-122.69579112847777,45.51491105983678],[-122.69565785082897,45.51484535816076],[-122.6955793416664,45.51478306751783],[-122.69551430992803,45.51471606079504],[-122.69549429636184,45.51465265206386],[-122.69521632168029,45.51341815702027],[-122.69517866789685,45.51335268525297],[-122.69512800830471,45.51330409441077],[-122.69503834655789,45.51325607825036],[-122.69492976898614,45.51322351350309],[-122.69481888274409,45.51323214821147],[-122.69472882484024,45.51327485339354],[-122.69465122028116,45.5133368681015],[-122.69458897960837,45.51344300351336],[-122.69414186383696,45.51404178047285],[-122.69397576084933,45.51428794141596],[-122.69378026498563,45.51458147743577],[-122.69370968255714,45.51462329466516],[-122.6936209559565,45.51465002464086],[-122.69352171906711,45.51465723526112],[-122.69342786128959,45.51465216799861],[-122.69212049634419,45.51429832024339],[-122.6895278389583,45.51360507796804],[-122.68954731533196,45.51284504796743],[-122.68924214864681,45.51226817244375],[-122.68893368873782,45.51170696383439],[-122.68848947632138,45.51091392663678],[-122.68804689165225,45.51036538812583],[-122.68751745426822,45.50989189525405],[-122.68690324017584,45.50939532100391],[-122.68609059722037,45.50886290780016],[-122.68534532252131,45.50845833224351],[-122.6853769710671,45.50781039161875],[-122.68563262081717,45.5075078371841],[-122.68582380746246,45.50735535407345],[-122.68594561542173,45.5071745247408],[-122.68596680937419,45.50701550212737],[-122.68594896074785,45.50690660782311],[-122.68590264001853,45.50681831948135],[-122.6857826924702,45.50664191928972],[-122.6854815376611,45.50596464179959],[-122.68529444463856,45.50561495127852],[-122.68518541880749,45.50536734907321],[-122.68511865421894,45.50520399803352],[-122.68510194196139,45.5051245765479],[-122.68508349146376,45.5050506770056],[-122.68509581724777,45.50496538822954],[-122.68510579214072,45.50486968350327],[-122.6851773267834,45.50475137276247],[-122.68531567093042,45.50459475084105],[-122.68533055511637,45.5045759476188],[-122.68538660010861,45.50451143387046]]],"type":"Polygon"} +},{ + "id": 1108750115, + "type": "Feature", + "properties": { + "denvercpd:NBHD_ID":"", + "denvercpd:NBHD_NAME":"", + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000281, + "geom:area_square_m":2673556.86991, + "geom:bbox":"-104.988206049,39.7437795345,-104.971915695,39.7729308776", + "geom:latitude":39.759077, + "geom:longitude":-104.979211, + "iso:country":"US", + "lbl:latitude":39.76072, + "lbl:longitude":-104.97957, + "lbl:max_zoom":18.0, + "mps:latitude":39.76072, + "mps:longitude":-104.97957, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Curtis Park" + ], + "name:swe_x_preferred":[ + "Curtis Park" + ], + "reversegeo:latitude":39.76072, + "reversegeo:longitude":-104.97957, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85871289, + 102191575, + 1108750025, + 85633793, + 85928879, + 102086135, + 85688603 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"faf85f9b6086604d2d269e03bf6a6add", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086135, + "locality_id":85928879, + "macrohood_id":1108750025, + "microhood_id":1108750115, + "neighbourhood_id":85871289, + "region_id":85688603 + } + ], + "wof:id":1108750115, + "wof:lastmodified":1566623941, + "wof:name":"Curtis Park", + "wof:parent_id":85871289, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -104.98820604893032, + 39.74377953449243, + -104.97191569485523, + 39.77293087761827 +], + "geometry": {"coordinates":[[[[-104.98809797423775,39.76176306334075],[-104.98817097694435,39.76203338325866],[-104.98820604893032,39.76228811357927],[-104.98817425306252,39.76254939379151],[-104.98810009309899,39.7627870840281],[-104.98798448362541,39.76304450053006],[-104.98784277179436,39.76328100538196],[-104.98768874196725,39.76348741442499],[-104.9874643581111,39.76371463668202],[-104.98720853686602,39.76393019240061],[-104.98652336941868,39.76443406419772],[-104.98207070174551,39.76784191815666],[-104.97538348430029,39.77293087761827],[-104.97498527501449,39.77263001637664],[-104.97455014843263,39.77230173518319],[-104.9736801312697,39.77161531368779],[-104.9728100221065,39.77094329824467],[-104.97236683449529,39.77062526708852],[-104.97191569485523,39.77030101990971],[-104.97334705605886,39.76918806186364],[-104.9733431870448,39.76816407014098],[-104.97333790302559,39.76792040625514],[-104.97334606605523,39.76718883559556],[-104.97334855906433,39.76697540481968],[-104.97335217607747,39.76649397406942],[-104.97332875999234,39.7660594344897],[-104.97332235996907,39.76584596271363],[-104.97331940595831,39.76576565242169],[-104.97332850399141,39.76514664017128],[-104.97334037803455,39.76451288486732],[-104.97333555601705,39.76420779675817],[-104.97333066099924,39.7637939302536],[-104.97333647402036,39.76325691730131],[-104.9733445130496,39.76242342827123],[-104.97334022203398,39.7620476529051],[-104.97334312404456,39.76177966093081],[-104.97335051007138,39.76115171764798],[-104.97334189804008,39.7607591102207],[-104.97333731802343,39.76042176699428],[-104.97332461597728,39.75950822767317],[-104.97334925206684,39.75824106206647],[-104.97335489908738,39.75772600919402],[-104.97336313011726,39.75698517050074],[-104.97336147311125,39.75637709029013],[-104.97336091910927,39.75574053197596],[-104.9733676721338,39.75531504842911],[-104.97336119011021,39.75511255569296],[-104.97336077510874,39.754931024033],[-104.97335920310303,39.754548397642],[-104.97336468712297,39.75322623783535],[-104.97336336011813,39.75198228831306],[-104.97335769509755,39.75072390373828],[-104.97335905610248,39.74947722020602],[-104.97335677009414,39.7483609181478],[-104.97333434201261,39.74811912526877],[-104.97333506401526,39.74752910412377],[-104.97333895202939,39.74696410206974],[-104.97336588612728,39.74594325035849],[-104.97338490819646,39.74508731724683],[-104.97339036021629,39.74483512032998],[-104.97338317319014,39.74377953449243],[-104.9739807693627,39.74423208713768],[-104.97477728025837,39.74483548533129],[-104.97614177121886,39.74590848623211],[-104.97648667547276,39.74617970221811],[-104.97699330531458,39.7465559965861],[-104.97754415631715,39.74696439907081],[-104.97817763462012,39.74750082002095],[-104.98740739859866,39.75456854046497],[-104.98741426546405,39.75827576661056],[-104.98765554043274,39.75951526195595],[-104.98809797423775,39.76176306334075]]]],"type":"MultiPolygon"} +},{ + "id": 1108719769, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000978, + "geom:area_square_m":8458224.527625, + "geom:bbox":"-122.787418341,45.613413001,-122.703333996,45.6507006357", + "geom:latitude":45.630666, + "geom:longitude":-122.760135, + "iso:country":"US", + "lbl:latitude":45.629237, + "lbl:longitude":-122.773494, + "lbl:max_zoom":18.0, + "mps:latitude":45.629237, + "mps:longitude":-122.773494, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Rivergate" + ], + "reversegeo:latitude":45.629237, + "reversegeo:longitude":-122.773494, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85846673, + 102191575, + 1108714605, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"f703d4bd54941bc3ea922689513570b9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714605, + "microhood_id":1108719769, + "neighbourhood_id":85846673, + "region_id":85688513 + } + ], + "wof:id":1108719769, + "wof:lastmodified":1566624133, + "wof:name":"Rivergate Industrial District", + "wof:parent_id":85846673, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85844911 + ], + "wof:tags":[] +}, + "bbox": [ + -122.78741834063365, + 45.61341300102325, + -122.70333399576312, + 45.6507006357079 +], + "geometry": {"coordinates":[[[-122.70361770982046,45.61341300102325],[-122.70491800000001,45.6139515],[-122.7070495,45.6147565],[-122.7087185,45.6153935],[-122.70915599999999,45.615619],[-122.710278,45.6162375],[-122.711505,45.616884],[-122.71209899999999,45.61714],[-122.71259449999999,45.617313],[-122.7129935,45.6174195],[-122.71342250000001,45.617507],[-122.713915,45.6175835],[-122.71445,45.617629],[-122.7149505,45.617643],[-122.715368,45.617635],[-122.715801,45.617606],[-122.71638350000001,45.61754],[-122.716981,45.617458],[-122.717606,45.6173755],[-122.7180895,45.617318],[-122.7183125,45.617301],[-122.718649,45.6172915],[-122.7190525,45.617299],[-122.71943899999999,45.617332],[-122.71988450000001,45.6173995],[-122.7203135,45.617493],[-122.72073399999999,45.6176205],[-122.72152850000001,45.6179375],[-122.72250699999999,45.6183775],[-122.7252325,45.6195815],[-122.72696336802098,45.62034533925764],[-122.72813550000001,45.620902],[-122.72978803207965,45.62180040292456],[-122.73119088420124,45.62250108909564],[-122.73162194338485,45.62267516838849],[-122.73205350961972,45.62281755562122],[-122.73248160833487,45.62293960686025],[-122.73296251069877,45.62303072659452],[-122.73353132065347,45.62307676247933],[-122.73995360162669,45.62362417351928],[-122.74136355905286,45.6237403251976],[-122.74268368185278,45.62388224172222],[-122.74297443429342,45.62392482715055],[-122.74313234620959,45.62396270897244],[-122.74326384889405,45.62401053250418],[-122.7433425033051,45.6240741524227],[-122.74340998713819,45.62414366294341],[-122.74345085831175,45.62423131651416],[-122.74361462994673,45.6249243070426],[-122.74378340657887,45.62521094801308],[-122.74397523983178,45.62542267953209],[-122.74422855837236,45.62556182906199],[-122.74451210911315,45.62562170992114],[-122.74484716872368,45.62566967510507],[-122.74518262255772,45.62569164722989],[-122.74556803857368,45.62569193429812],[-122.74713076547522,45.62561060080564],[-122.74810029799767,45.62558354181127],[-122.74855256834103,45.62559036040835],[-122.74884637530558,45.62561154535717],[-122.74909797901678,45.6256562757531],[-122.74942011336448,45.62573955927043],[-122.74973175618712,45.6258359436622],[-122.74998578754963,45.62596050180704],[-122.75011206222163,45.6260465563181],[-122.75021733840993,45.62614387210665],[-122.75031472089941,45.62625317450879],[-122.75039320440574,45.62636370350506],[-122.75047246140302,45.62649581646193],[-122.750628297112,45.62679781305798],[-122.7511408917083,45.6279427024658],[-122.75118654898313,45.62803090805426],[-122.75123768622304,45.62811673352332],[-122.75129166974781,45.62819095921135],[-122.75134390295086,45.62826506629145],[-122.75141778008673,45.6283471163237],[-122.7515066651092,45.62842042176892],[-122.75161913388493,45.62848175844168],[-122.7517445306131,45.62852815143367],[-122.75187014317099,45.62854174672636],[-122.7523473074145,45.62855743043103],[-122.75304680303105,45.62854116127183],[-122.7542894721975,45.62844372563263],[-122.75438845828701,45.62840591455655],[-122.7544793026908,45.62835902290345],[-122.7545680186636,45.62830200167329],[-122.75463599712916,45.62823329450506],[-122.75468804899201,45.6281680616391],[-122.75473486568339,45.62809637737018],[-122.75476154505877,45.62801383433116],[-122.75477956646763,45.62791908545334],[-122.75479430743475,45.62773709050125],[-122.75483277663281,45.62729219611793],[-122.75449790658249,45.62578300410132],[-122.7544661766819,45.62555269683794],[-122.75449446064944,45.62532828090014],[-122.75458249456389,45.62512117728004],[-122.75473975717438,45.62492430914426],[-122.75565134786694,45.62423473746929],[-122.75636957257942,45.62376029338569],[-122.75646866880653,45.62369323245772],[-122.75652573077613,45.62366225954964],[-122.75658986622298,45.62364618702001],[-122.7566524439282,45.62364026581571],[-122.75672391999269,45.62364148068259],[-122.75680610968621,45.62364883006396],[-122.75702966717525,45.62370225244855],[-122.75733247241853,45.62378429828575],[-122.7575635984107,45.62386200353978],[-122.75934572320809,45.62451843662105],[-122.7595790749547,45.6246299894769],[-122.75979615666891,45.62477544548921],[-122.75994966220733,45.62491384939337],[-122.7600803867129,45.62504474553862],[-122.76019606040447,45.62522931185534],[-122.76024094980697,45.62533973654608],[-122.76026511300483,45.62544473347076],[-122.76023725791499,45.62625319837662],[-122.7601872996236,45.62653135748039],[-122.76006045200691,45.62689828114822],[-122.75978141182102,45.62756541018381],[-122.75922059387359,45.62882083378931],[-122.75902477589371,45.62932585375381],[-122.75877680167002,45.6299462036465],[-122.75836481485605,45.6314613129089],[-122.75826702676923,45.63180300583499],[-122.7582368783505,45.63194354911131],[-122.75821147567893,45.63211449583967],[-122.75821036432013,45.63222355066397],[-122.75822049310754,45.63236436598417],[-122.75824212411631,45.63249440957392],[-122.75829337339401,45.63262970001922],[-122.75852606928662,45.63303155008733],[-122.75868378221161,45.63331556194837],[-122.75933886872041,45.63451235788256],[-122.75946443450675,45.6347034796653],[-122.75963236569736,45.63477234662975],[-122.75983695220822,45.63479554270756],[-122.76012958486479,45.6347176605411],[-122.76056486167531,45.63450969471389],[-122.76098391178836,45.6342763163002],[-122.76206969049827,45.63361476757201],[-122.76318127302645,45.63286817992232],[-122.76381711875932,45.63244876843682],[-122.76393782610906,45.63233888291141],[-122.76402434829787,45.63219840783758],[-122.76407690362342,45.632041604113],[-122.76409751469193,45.63191060589806],[-122.76415332636698,45.62686268207464],[-122.76371121238041,45.61665882512061],[-122.763673,45.61576],[-122.763902,45.6159605],[-122.764135,45.616132],[-122.7643405,45.6162595],[-122.76455250000001,45.6163705],[-122.76479,45.6164745],[-122.76506999999999,45.616577],[-122.765446,45.616681],[-122.76570649999999,45.6167395],[-122.76847050000001,45.617101],[-122.77167799999999,45.617532],[-122.7724395,45.61765],[-122.77280314398232,45.61770655799726],[-122.77301314398233,45.61773905799726],[-122.77394050000001,45.6178805],[-122.776071,45.6182045],[-122.77989862741103,45.61859150490117],[-122.78485396796455,45.61909253096124],[-122.78720783320729,45.61930909980305],[-122.78720817977293,45.6193145724549],[-122.78720954431387,45.61932561234605],[-122.78721172362673,45.61933636447292],[-122.78721809986861,45.61935676919306],[-122.78722328314781,45.61937507223826],[-122.78722613619715,45.61938411474838],[-122.78722973394987,45.61939296499695],[-122.78723373055458,45.61940054230648],[-122.787243929128,45.61941833767043],[-122.78724958222607,45.61942887678562],[-122.78726042848483,45.61945066624607],[-122.78726554259374,45.61946180977998],[-122.78727036744512,45.61947307080383],[-122.78727480332599,45.61948442732699],[-122.78727871189579,45.61949586741172],[-122.78728190810159,45.61950738791655],[-122.7872841422117,45.61951899261108],[-122.78728519503721,45.61953034786836],[-122.78728532169967,45.61954176720988],[-122.78728473959134,45.61955322801678],[-122.78728360861241,45.61956471206847],[-122.78728203656067,45.61957620302901],[-122.78727779920746,45.61959914850181],[-122.78727515546559,45.61961057222739],[-122.78727212275319,45.61962194128869],[-122.78726863189999,45.61963323369525],[-122.7872650718765,45.61964329212195],[-122.78725361296675,45.61967326884903],[-122.78725015175796,45.61968328705746],[-122.78724720079225,45.61969336620901],[-122.78724463071222,45.61970505380032],[-122.78724279994569,45.61971683437723],[-122.78724151715144,45.61972868406437],[-122.78724004660934,45.61975252102818],[-122.78723942228021,45.61977646604887],[-122.7872391968031,45.61980046320792],[-122.78723929382113,45.61990858223862],[-122.78723966482534,45.61993258373921],[-122.78724058110693,45.61995654250548],[-122.78724140126877,45.61996849266905],[-122.78724258794327,45.61998041267199],[-122.78724402345111,45.61999094916835],[-122.78724579492885,45.62000145110654],[-122.7872502236232,45.62002233183142],[-122.78725582282235,45.62004298510623],[-122.78725912143607,45.62005319110838],[-122.78726752068398,45.62007645241754],[-122.78727120467497,45.62008812673486],[-122.78727386907809,45.62009950449543],[-122.78727576991324,45.62011100225762],[-122.7872770958266,45.62012259174823],[-122.78727799504018,45.62013424909201],[-122.78727893827126,45.62015770136845],[-122.78727921764731,45.62019306730983],[-122.78727870381094,45.62026400709007],[-122.78727872896378,45.62029947286264],[-122.78727923202034,45.62032307020507],[-122.78728056601854,45.62034657455057],[-122.78728174909976,45.62035826389062],[-122.78728321335369,45.62036874628306],[-122.7872850297472,45.62037916710106],[-122.78728959408714,45.62039976683979],[-122.78729232676224,45.62040990240858],[-122.78729537744094,45.62041988907094],[-122.78730639258296,45.62045065262913],[-122.78730864825262,45.62046006251487],[-122.78730998674243,45.62046960685289],[-122.7873104682394,45.62047923475168],[-122.78731011340486,45.62048890034615],[-122.78730870304987,45.62050043572584],[-122.78730514122975,45.62052368805336],[-122.78730425998245,45.62053520771866],[-122.78730406504806,45.62054684298663],[-122.78730439293312,45.62055856307104],[-122.78730613207155,45.62058216972871],[-122.78730875155887,45.62060590329053],[-122.78732161363712,45.62070116477445],[-122.7873245035174,45.62072499567026],[-122.78732675020393,45.62074883723674],[-122.78732746885616,45.62076076586975],[-122.78732782908057,45.62077273408222],[-122.78732773475748,45.62079668683496],[-122.78732698556253,45.62082065277139],[-122.78732151033087,45.62092853171526],[-122.78732015117986,45.6209644500598],[-122.78731999217806,45.62098834115888],[-122.78732033623281,45.62100025529041],[-122.787321106089,45.62101213926189],[-122.78732244817202,45.62102398113588],[-122.78732425198913,45.6210346405795],[-122.7873264896925,45.62104526986355],[-122.78733671970696,45.62108773231911],[-122.78733889452826,45.62109839489204],[-122.78734087980504,45.62111058795731],[-122.78734242670394,45.62112282499965],[-122.78734465362754,45.62114738263769],[-122.78734779683272,45.62119658521259],[-122.78734970036281,45.62122109318421],[-122.78735098046208,45.62123328245311],[-122.78735261539592,45.62124540449336],[-122.78735473811493,45.62125743417383],[-122.78735751929904,45.62126934133713],[-122.78736826943803,45.62130438050022],[-122.78737105241878,45.62131628639701],[-122.78737317783273,45.62132831669053],[-122.78737481635983,45.62134043871028],[-122.78737610274733,45.62135262795324],[-122.78737802604036,45.62137713774143],[-122.78738128512819,45.62142637278519],[-122.78738363961256,45.6214509843222],[-122.78738522244412,45.62146312327889],[-122.7873912294784,45.62149947919033],[-122.78740779441223,45.62158419416519],[-122.78741227700549,45.62160836898099],[-122.78741602837012,45.62163248724152],[-122.78741739740263,45.62164450427341],[-122.78741823642909,45.62165647481038],[-122.78741834063365,45.62166838063235],[-122.7874174423184,45.62168019535191],[-122.78741535283702,45.62169197048759],[-122.78740151159515,45.62174798747967],[-122.78739864417277,45.62175867442976],[-122.78739535364386,45.62176915216244],[-122.7873914064465,45.62177932518013],[-122.78738651601809,45.62178907411091],[-122.78738033830389,45.62179825319547],[-122.78737286791399,45.6218065426426],[-122.78736439859748,45.62181437973133],[-122.78734671615942,45.62182962102493],[-122.78733861066063,45.62183747130422],[-122.78733177897288,45.6218457852482],[-122.78732627589345,45.62185566359179],[-122.78732253980019,45.62186620224884],[-122.78732011345059,45.62187723095693],[-122.78731864560343,45.6218886190351],[-122.78731787035736,45.62190026721591],[-122.78731763859199,45.62192406241876],[-122.78731835454929,45.62194821886808],[-122.78732052308237,45.62199685843693],[-122.78732133875265,45.62202114616368],[-122.78732152111067,45.6220453088539],[-122.787321205802,45.62205731009055],[-122.78732048894639,45.62206923279072],[-122.78731923399995,45.62208105119545],[-122.78731726938443,45.62209273263461],[-122.78731051046024,45.62212088543962],[-122.78730849823398,45.62213274844061],[-122.7873072001684,45.62214474714546],[-122.78730642941389,45.62215684637096],[-122.78730603864675,45.62216901784485],[-122.78730608356251,45.62224248830594],[-122.78730571615155,45.62225465599166],[-122.78730498582121,45.6222667501673],[-122.78730375153603,45.62227874193249],[-122.78730183992108,45.62229059484781],[-122.78729557417198,45.62231870734427],[-122.78729400840845,45.62232993323961],[-122.78729318106008,45.62234128227318],[-122.78729291336212,45.62235272491638],[-122.78729352691145,45.62237580307387],[-122.78729504775922,45.62239903451911],[-122.78730074217982,45.62246892355968],[-122.78730185519247,45.62249208899838],[-122.78730198634651,45.62250360072007],[-122.78730169349571,45.62251504144529],[-122.7873008347063,45.62252638792835],[-122.78729923211185,45.62253761189726],[-122.78729285137835,45.62256571987203],[-122.78729088316959,45.62257757272668],[-122.78728959229051,45.62258956631021],[-122.78728880895959,45.62260166481144],[-122.78728839842952,45.62261384247142],[-122.78728850353239,45.6226506638089],[-122.78729039897765,45.62271242154624],[-122.78729144641326,45.62273713869528],[-122.78729284868341,45.62276179552009],[-122.78729504057272,45.62278629526833],[-122.78729667370992,45.62279843330768],[-122.78729886649751,45.62281045260271],[-122.78730183363291,45.62282230603388],[-122.78730585449212,45.62283393014672],[-122.7873105320198,45.62284410422775],[-122.78731598928513,45.62285409359781],[-122.78733408135498,45.62288344474421],[-122.78733978925027,45.62289314070905],[-122.78735487376052,45.62292145143404],[-122.78736584129183,45.62294002158314],[-122.78737021249401,45.62294903775959],[-122.78737276011614,45.6229580608455],[-122.78737291462639,45.62296722277562],[-122.78737147372867,45.62297663475204],[-122.78736950911313,45.62298641740076],[-122.78736789214562,45.62299637596068],[-122.78736662821602,45.62300670016651],[-122.78736279600304,45.62304994646152],[-122.7873615320734,45.62306093598469],[-122.78735986030868,45.62307189974705],[-122.78735308251986,45.62310379962792],[-122.78735115204032,45.62311437386114],[-122.78734849751864,45.62313592629216],[-122.78734688504271,45.62314666575141],[-122.78734428082669,45.62315828162967],[-122.78733787763534,45.62318160510466],[-122.78733505872198,45.62319297846791],[-122.78732507754086,45.62323891481967],[-122.78732229276351,45.62325033026458],[-122.78731913428696,45.62326164455764],[-122.78731319103305,45.62328037417147],[-122.78731055986759,45.6232897703889],[-122.78730815687418,45.62330164382293],[-122.7873066072803,45.6233136586123],[-122.78730569908357,45.62332577454843],[-122.78730527418043,45.62333795896197],[-122.78730547719971,45.62336242327608],[-122.78730679143496,45.62338683794727],[-122.7873078819897,45.6233989507263],[-122.78730933905709,45.62341094664713],[-122.78731126774001,45.62342277293631],[-122.78731381895541,45.6234343586011],[-122.7873165866648,45.62344395206495],[-122.78731987539707,45.62345325841446],[-122.78732364023641,45.62346221293933],[-122.7873278605216,45.62347073396667],[-122.78733481977012,45.6234835151911],[-122.7873389861564,45.62349365836975],[-122.78734214373465,45.62350441597984],[-122.7873445458297,45.62351563598346],[-122.78734639366427,45.62352720089658],[-122.78734783995186,45.62353901836572],[-122.7873499590776,45.62356314898904],[-122.78735271331227,45.6236123155182],[-122.78735360893262,45.6236370071403],[-122.78735389998678,45.62366161456561],[-122.78735362689892,45.6236738441404],[-122.78735290285678,45.62368599078309],[-122.7873515392142,45.62369802119639],[-122.78734928174791,45.62370989077446],[-122.78734579718288,45.62372153920511],[-122.78734123643619,45.62373207751143],[-122.78733562016905,45.62374242734009],[-122.78732924482547,45.62375264272089],[-122.78732234845904,45.62376276763155],[-122.7872931711786,45.6238030486242],[-122.78728626852396,45.62381322252936],[-122.78727985724778,45.62382350951791],[-122.78727414755583,45.62383395356738],[-122.7872694314006,45.62384424934765],[-122.78726532609974,45.62385467957172],[-122.78725433161898,45.62388624100834],[-122.78725040508289,45.62389668630259],[-122.78723629344809,45.62393024555109],[-122.78723241542099,45.62394153143573],[-122.78722970879704,45.62395233230916],[-122.78722775945286,45.62396326071521],[-122.78722631316529,45.62397427581755],[-122.78722286722785,45.6240075215232],[-122.78722136344807,45.62401857179884],[-122.78721934403529,45.62402955799089],[-122.78721689702448,45.62403962191134],[-122.78720819055275,45.62406956738851],[-122.78720561957438,45.624079543347],[-122.78720362711108,45.62408955322915],[-122.78720229221456,45.62410093331896],[-122.78720169393659,45.62411234921655],[-122.78720122321938,45.62414644988549],[-122.78720053780484,45.62415763457872],[-122.78719907355092,45.62416864650168],[-122.78719420288544,45.62418998429507],[-122.78719223198171,45.6242005313088],[-122.78719072101541,45.62421123412577],[-122.78718710978795,45.62424374087289],[-122.78718562038122,45.62425454859878],[-122.78718367013872,45.6242652602009],[-122.78718103358339,45.6242758229066],[-122.78717382550155,45.62429722662508],[-122.78717052239624,45.62430839997979],[-122.78716772863571,45.62431977122972],[-122.787165324744,45.62433129262803],[-122.78716132544437,45.6243546388601],[-122.7871579899997,45.62437822758512],[-122.78715500579634,45.62440194006437],[-122.78714115287634,45.62452089810382],[-122.78713803302736,45.6245446400502],[-122.78713438766393,45.62456828963478],[-122.78712974067896,45.62459175199307],[-122.7871239420538,45.62461370970078],[-122.78711704568737,45.62463527600499],[-122.78711327006823,45.62464585811649],[-122.78710511875535,45.62466677857563],[-122.78710148866328,45.6246772764968],[-122.78709915484019,45.62468686911971],[-122.78709423117412,45.62471625134688],[-122.78709169792501,45.62472731153471],[-122.78708210481608,45.62476075531788],[-122.78707909635818,45.62477202030335],[-122.78707663227937,45.62478337072729],[-122.787074859005,45.62479543545835],[-122.78707378551823,45.62480759002514],[-122.78707321149477,45.62481980741335],[-122.78707297703448,45.62483206689096],[-122.78707295727153,45.6248812216272],[-122.78707261052185,45.62489347103956],[-122.78707186042858,45.6249056733313],[-122.78707052283713,45.62491780777058],[-122.78706836777876,45.62492984797134],[-122.78706558389968,45.62494055567502],[-122.78706216221677,45.62495118861625],[-122.78704612549231,45.62499342383244],[-122.78704241455188,45.62500400210693],[-122.78703918600674,45.62501462561254],[-122.7870364739929,45.6250257309746],[-122.78702992886777,45.62505907154879],[-122.78702737765234,45.62507005690868],[-122.78701960453017,45.62509805430054],[-122.78701743060721,45.62510886688766],[-122.78701583430095,45.62511978376],[-122.78701149184485,45.62516379047567],[-122.78701009047302,45.62517471361965],[-122.78700822736711,45.62518553687199],[-122.78700400528527,45.62520423066186],[-122.78700216373895,45.62521360079916],[-122.78700082794413,45.62522453335698],[-122.78700023954761,45.62523558402098],[-122.78700020541163,45.6252467220075],[-122.78700118727023,45.62526916948209],[-122.78700411757468,45.62531428742759],[-122.78700442390021,45.62532553282657],[-122.78700430622091,45.62533673550337],[-122.78700359385688,45.62534787786741],[-122.78700207839898,45.62535893793059],[-122.78699941579249,45.62537072548655],[-122.78698941934003,45.62540588207901],[-122.78698651418837,45.62541760177588],[-122.78698139199463,45.62544121706763],[-122.78697711331894,45.62546498186884],[-122.78697533106141,45.62547690195969],[-122.78697385063781,45.62548884277961],[-122.78697274930327,45.62550080307224],[-122.78697209712638,45.62551264399811],[-122.78697180158066,45.62552449874264],[-122.78697191925994,45.62554823712281],[-122.78697258670823,45.62557199559637],[-122.78697629046214,45.6256670614296],[-122.78697674950125,45.62569082110928],[-122.78697655456683,45.62571457261184],[-122.78697544514748,45.62573768645102],[-122.78697371050063,45.62576079399837],[-122.78696537503312,45.62585323225945],[-122.78696396827137,45.62587634478503],[-122.78696355953794,45.62589918716297],[-122.78696434107222,45.62592173049514],[-122.78696517740376,45.62593296823355],[-122.78696635689172,45.62594417016072],[-122.78696794780808,45.62595532245565],[-122.78697004986586,45.62596640627164],[-122.78697279781233,45.62597739899245],[-122.78697641712461,45.62598866938749],[-122.78698940406865,45.6260221155593],[-122.78699348331835,45.62603325590246],[-122.78699693644232,45.62604444461685],[-122.78699950921727,45.62605573384519],[-122.78700125284725,45.62606705134145],[-122.78700226075698,45.62607834433462],[-122.78700257067578,45.62608955628434],[-122.78700216014569,45.62610062499635],[-122.78700094921669,45.62611147571185],[-122.78699879505665,45.62612202173584],[-122.7869939675103,45.62613804651194],[-122.78699132197178,45.62614851525922],[-122.78698530415772,45.62618092036694],[-122.7869830538779,45.62619171829602],[-122.78698019813363,45.62620234471768],[-122.78697639017516,45.62621268403869],[-122.7869726019796,45.62622054061464],[-122.78696347689292,45.62623817801436],[-122.78694873104753,45.62626834659304],[-122.7869435333953,45.62627834540456],[-122.78693798360348,45.62628816391408],[-122.78692851176712,45.62630386762044],[-122.78692329345364,45.62631400903232],[-122.78691869946928,45.62632445764358],[-122.78691452948972,45.62633512613103],[-122.78689872363229,45.62637868648275],[-122.78689419163167,45.62638952332354],[-122.78687793571831,45.62642300066732],[-122.7868728808982,45.62643425338253],[-122.78686866600289,45.62644524349871],[-122.78686500716474,45.62645636553935],[-122.78685881148421,45.62647887472348],[-122.78684557211356,45.62653570173522],[-122.7868396495209,45.62655832019792],[-122.78683622065147,45.62656953644917],[-122.78683232286146,45.62658065783693],[-122.78682808191498,45.62659118304136],[-122.78681414634998,45.62662252180395],[-122.78680978053771,45.62663302878215],[-122.78680546053951,45.6266447205808],[-122.78679795242036,45.62666831085505],[-122.78678749603044,45.62670362682955],[-122.78678370244501,45.62671519673903],[-122.78677949832947,45.62672655996211],[-122.7867746797663,45.62673762792014],[-122.78676899702381,45.62674828690568],[-122.7867621320984,45.62675839242871],[-122.78675402929454,45.62676771770272],[-122.78673615371872,45.62678555219075],[-122.7867277598607,45.6267946833409],[-122.78672021760556,45.62680457023572],[-122.78669988693406,45.62683500927141],[-122.78669365621924,45.62684533842422],[-122.786688176496,45.62685586546363],[-122.78668386188771,45.62686664253155],[-122.78668100614341,45.62687791651707],[-122.78667943588829,45.62688943738968],[-122.78667880886422,45.62690113918634],[-122.78667886096649,45.6269129703932],[-122.78668024706698,45.62693687529096],[-122.78668487249239,45.62698507140878],[-122.78668682003992,45.6270091685098],[-122.78668741562295,45.6270211843892],[-122.78668760696412,45.62703316257313],[-122.78668724045149,45.62704508861264],[-122.78668622715185,45.62705650893644],[-122.78668459221802,45.6270678450771],[-122.78668236978602,45.62707907064964],[-122.78667955356759,45.62709015549984],[-122.78667609685039,45.62710105816561],[-122.78666810723423,45.62712250540858],[-122.78666481760368,45.62713356512165],[-122.78666222057419,45.62714482083532],[-122.78666014995744,45.62715622543342],[-122.78665847459945,45.62716774310775],[-122.78665709029559,45.62717934496033],[-122.78665490110123,45.6272027189041],[-122.78665170759042,45.62724979154859],[-122.78665003762231,45.62728513982382],[-122.7866496136175,45.62730861486569],[-122.78664979956875,45.62732028893351],[-122.78665039515178,45.62733189515198],[-122.78665155487683,45.62734340587985],[-122.78665348176308,45.62735478405268],[-122.78665643632208,45.62736598318291],[-122.78666049850379,45.62737670487008],[-122.786665448221,45.62738725316888],[-122.78668227546291,45.62741824408567],[-122.78668752162417,45.6274284386939],[-122.78669205721805,45.62743858869728],[-122.78669550944367,45.62744869849337],[-122.78669778577462,45.6274594333572],[-122.78669939106403,45.6274700846669],[-122.78670132962839,45.6274806046787],[-122.78670707345634,45.62750032042931],[-122.78670949351769,45.6275103403802],[-122.78671107006102,45.6275204262914],[-122.78671161713503,45.62753043555914],[-122.78671086794007,45.62754022181062],[-122.7867084649467,45.62754962233978],[-122.78670544481072,45.62755632219468],[-122.78669783787686,45.62756963835022],[-122.7866935295568,45.62757773659659],[-122.78666744158264,45.62763295993406],[-122.78666318805973,45.6276441985858],[-122.7866557392294,45.62766714955158],[-122.78665150996106,45.62767862880024],[-122.78664639046224,45.62768990953277],[-122.78664044900498,45.62770104514703],[-122.786633861659,45.62771202810453],[-122.78662675418846,45.62772284144391],[-122.78661921372995,45.62773345626757],[-122.78659926035087,45.62775914618048],[-122.7865926909712,45.62776878790438],[-122.78658678993808,45.62777873430709],[-122.78658143867395,45.6277889156574],[-122.78657655273712,45.62779927541659],[-122.78657208451691,45.62780976835368],[-122.78656801335202,45.62782035803261],[-122.78656435181891,45.62783101681231],[-122.78656114303672,45.62784172082075],[-122.78655846336224,45.62785244995545],[-122.78655641969496,45.62786318725477],[-122.78655320462458,45.62789184161122],[-122.78655182481229,45.62790124961986],[-122.78654972095789,45.62791053072936],[-122.7865459713899,45.62792133837654],[-122.78654119414921,45.6279319864575],[-122.78652510532248,45.62796361030372],[-122.78651280648792,45.62799098244322],[-122.78650808404448,45.62799982191009],[-122.78650281991692,45.62800808908131],[-122.78649162062027,45.62802457567655],[-122.78648711916237,45.62803207580679],[-122.78648301026826,45.62803978073062],[-122.78647928315816,45.62804766280687],[-122.78647481493792,45.62805855523516],[-122.78647087133382,45.62806965810955],[-122.786467313107,45.62808091300708],[-122.78646094944152,45.62810370548678],[-122.78644653327784,45.62816093352928],[-122.78644050917555,45.62818332769611],[-122.78643388410032,45.62820493785757],[-122.78642459911353,45.62823095296299],[-122.78642268210872,45.62823892296066],[-122.78640665975732,45.62832634283603],[-122.7864030206821,45.62834972321176],[-122.78640156271639,45.62836143538298],[-122.78640047305996,45.62837314755176],[-122.78639987657861,45.62838484841048],[-122.78639985142578,45.62839650215174],[-122.78640101923565,45.62843112664601],[-122.78640097611654,45.6284424612523],[-122.78640025117608,45.62845362435779],[-122.78639850215623,45.62846455879655],[-122.78639559430965,45.62847508239083],[-122.78638601737039,45.62850412843063],[-122.78638258490771,45.62851339813277],[-122.78637852182767,45.62852254847559],[-122.78637294239145,45.62853270833207],[-122.7863605204877,45.62855299034757],[-122.78635452962307,45.62856374258944],[-122.78634366809298,45.62858585893181],[-122.78632322603038,45.62863091075991],[-122.78631772205262,45.62864204932823],[-122.78631178598522,45.62865302707579],[-122.78630523367353,45.62866377301653],[-122.78629818189857,45.62867395294967],[-122.78628349803691,45.62869412372324],[-122.78627690440274,45.62870398264238],[-122.7862522106139,45.62874413758635],[-122.7862456933365,45.62875403858589],[-122.7862387044436,45.62876374672744],[-122.78623079477754,45.62877362385204],[-122.78621424780998,45.62879306713917],[-122.78620631658436,45.62880291536159],[-122.78619928996218,45.6288125751237],[-122.78619271429432,45.62882240198402],[-122.78617392962342,45.62885210430764],[-122.78616743660052,45.62886182499612],[-122.78616054921724,45.62887131953281],[-122.78614746974671,45.6288876532229],[-122.78614118782794,45.62889591272486],[-122.78613450436221,45.62890605743697],[-122.78612853236221,45.62891653760297],[-122.7861230598255,45.62892726087819],[-122.78610284144339,45.62897125455379],[-122.78609747760284,45.62898226490298],[-122.7860851320559,45.62900505701617],[-122.78605892999569,45.6290502002235],[-122.7860527244337,45.62906150769231],[-122.78604691233382,45.62907286352966],[-122.78604165898604,45.62908429097863],[-122.78602924606544,45.62911514149851],[-122.7860241669908,45.62912574412285],[-122.78601851928262,45.62913625251646],[-122.78601247272243,45.62914669746069],[-122.78598697853469,45.62918828122255],[-122.78598088077052,45.62919872804169],[-122.78597514502745,45.62920923516521],[-122.78596151488965,45.62923691388166],[-122.78595677807314,45.62924600505646],[-122.78595158670912,45.62925492661835],[-122.78594481161525,45.62926503922781],[-122.7859303029251,45.62928495788441],[-122.78592406322711,45.62929397052765],[-122.78590599900508,45.62932110456175],[-122.78588854114585,45.6293453595905],[-122.78588207237749,45.62935550736223],[-122.785876190209,45.62936595603475],[-122.78587069251947,45.62937660949499],[-122.78585479144064,45.62940899828827],[-122.78584915002065,45.62941969320073],[-122.78584305405312,45.62943021159023],[-122.78582977335995,45.62945058059913],[-122.78582343305068,45.62946082446459],[-122.78581768922275,45.62947162050551],[-122.78581260565656,45.62948260814164],[-122.7857989719255,45.62951578022352],[-122.7857942764315,45.62952659824041],[-122.78578916142428,45.62953712414808],[-122.78578071456565,45.62955279993218],[-122.78577650326361,45.62956172395798],[-122.78576862503856,45.62957993007189],[-122.7857642655145,45.62958903438297],[-122.78575913254096,45.62959826747087],[-122.78574220917933,45.62962592463687],[-122.78573711662997,45.62963536753283],[-122.78573249928941,45.62964574453999],[-122.78572875870458,45.62965633450026],[-122.78572585714622,45.62966708087679],[-122.78572358710348,45.62967892469178],[-122.78571915751083,45.62971433362549],[-122.78571734381224,45.62972576785375],[-122.78571475756254,45.62973681072034],[-122.78571095409565,45.62974729261559],[-122.7857053917274,45.62975699932876],[-122.78569857441271,45.6297649276492],[-122.78569052550776,45.62977236221543],[-122.78567329312568,45.62978700394203],[-122.78564617119061,45.62981292471375],[-122.78563899005822,45.62982046920578],[-122.78563155470262,45.62982942397003],[-122.78562469876037,45.62983875878407],[-122.78559929530246,45.62987746432395],[-122.78559260105696,45.62988695366313],[-122.78558103794265,45.62990229138686],[-122.78557448113935,45.62991182406646],[-122.78556248773201,45.62993144410635],[-122.78554538021575,45.62996096241294],[-122.78552957705325,45.62998579069521],[-122.78552471716758,45.62999451112105],[-122.78551555704662,45.63001221266423],[-122.78551043036128,45.63002096763594],[-122.78550366604721,45.63003065608447],[-122.78548060539553,45.63005928169297],[-122.78547336946593,45.63006907755387],[-122.78546777924993,45.63007774268682],[-122.78545262197612,45.6301043555795],[-122.78544731652606,45.63011315074044],[-122.78544115228659,45.63012238876743],[-122.78542188432203,45.63014949224783],[-122.78541614947727,45.63015851040569],[-122.7854112779135,45.63016761336645],[-122.78540725974923,45.63017735204401],[-122.78540010287135,45.63019688969938],[-122.7853954864291,45.63020680049317],[-122.78538554567218,45.63022672949415],[-122.78538174579855,45.63023579852213],[-122.78537467066735,45.63025424438152],[-122.78537072796158,45.63026344532266],[-122.78536555007226,45.63027374306298],[-122.78534500739836,45.63031238045917],[-122.78533939831772,45.63032174785808],[-122.78533238966187,45.63033206443303],[-122.78532479530448,45.63034222521785],[-122.78530086149034,45.63037228479751],[-122.78529322042054,45.63038230674773],[-122.78528612193318,45.63039239277028],[-122.78527029182123,45.63041814051325],[-122.78526494774361,45.6304263759189],[-122.7852591329488,45.63043423755791],[-122.78525358405525,45.63044068893804],[-122.78524211167078,45.63045321478979],[-122.78522686726039,45.63047156446662],[-122.78520663899681,45.63049329561214],[-122.78518365021039,45.63051959673204],[-122.78516540093538,45.63054215391049],[-122.78514110060864,45.63057127488837],[-122.78513333018144,45.63058121576839],[-122.78512608616698,45.6305913212286],[-122.78511963266999,45.63060163963844],[-122.78511446466216,45.63061148817129],[-122.78510499462242,45.63063148298674],[-122.78509979697019,45.63064152938943],[-122.7850773157319,45.63068137702437],[-122.78507215041901,45.63069132542293],[-122.78506177577579,45.63071343087505],[-122.78505174428899,45.63073377366248],[-122.78504767671741,45.63074405875288],[-122.7850449323642,45.6307547804221],[-122.78504328036242,45.63076573451348],[-122.78504041832991,45.63079917846316],[-122.78503876812474,45.6308102763975],[-122.78503602826311,45.63082122545266],[-122.78503212957477,45.63083134845846],[-122.78502720231543,45.63084132698268],[-122.78502160042132,45.63085121442011],[-122.78500378143937,45.63088081202018],[-122.78499846970109,45.63089081440613],[-122.78499398890445,45.63090097132061],[-122.78499052320407,45.63091149634204],[-122.78498791090324,45.63092216207193],[-122.78498193710659,45.63095424844981],[-122.78497954579132,45.63096471252858],[-122.78497641246761,45.630974910889],[-122.78497215624979,45.63098473046037],[-122.78496730355063,45.63099294630947],[-122.78493780646994,45.63103443447605],[-122.78493161977261,45.63104274077445],[-122.7849251483093,45.63105075811321],[-122.78491452034115,45.6310630168563],[-122.78490722512272,45.63107270449652],[-122.78490051380925,45.63108294052748],[-122.78488151533931,45.63111532330935],[-122.7848748022292,45.63112622644857],[-122.78486748545119,45.63113697694048],[-122.78486036540426,45.63114626568042],[-122.78485278182664,45.6311554042864],[-122.78482936184884,45.63118254370107],[-122.78482201542646,45.6311917011462],[-122.78481526728206,45.63120102002916],[-122.7848097040155,45.63120980936447],[-122.78479477491379,45.63123652662374],[-122.78478957097336,45.63124527072537],[-122.78476956908524,45.63127467275715],[-122.78475657315801,45.63129528042761],[-122.78474606017424,45.63131027164567],[-122.78472882958877,45.63133686824897],[-122.78472261594196,45.63134572289234],[-122.78471501080476,45.63135535017968],[-122.78469064040941,45.63138385890079],[-122.78466867210915,45.63141207927906],[-122.78465510754835,45.63142805605852],[-122.78464860374569,45.63143616254176],[-122.78464185200804,45.63144575337993],[-122.78463565453087,45.63145561432779],[-122.78462379856576,45.63147567165865],[-122.78461759480042,45.63148564504286],[-122.78461083048632,45.63149543123196],[-122.78460307443216,45.63150522181656],[-122.78457774194115,45.63153389001532],[-122.78456969123957,45.63154360709792],[-122.78456206454281,45.63155386000329],[-122.78454042143267,45.63158498304361],[-122.78453247224071,45.63159500414881],[-122.78452497130809,45.6316033084796],[-122.78450119559747,45.63162778426261],[-122.78449285923162,45.63163732104587],[-122.78448495495545,45.63164708899182],[-122.78445466556069,45.63168659042203],[-122.78444673613168,45.6316961108631],[-122.78443266312445,45.63171181556707],[-122.78442596438737,45.63171968079472],[-122.78441079094391,45.63173987057339],[-122.78440318401007,45.63174935205933],[-122.78438728472787,45.63176832130798],[-122.78437967330247,45.63177801133894],[-122.78436089851304,45.63180502105078],[-122.78435421953887,45.63181391016911],[-122.78434651468871,45.63182291989307],[-122.7843381280172,45.63183167269748],[-122.78432919786496,45.63184019119629],[-122.78431983202982,45.63184848104308],[-122.78431010866517,45.63185653344366],[-122.78430008526324,45.63186432578429],[-122.78428980045155,45.63187181786282],[-122.78427927848463,45.63187895502937],[-122.78426330194732,45.63188925749815],[-122.7842525455201,45.6318969556101],[-122.78424252930465,45.63190517697898],[-122.7842334446422,45.63191392474526],[-122.78422507773365,45.63192371337222],[-122.78421792175409,45.63193396872074],[-122.78421195694061,45.63194456829923],[-122.78420738092255,45.63195473193253],[-122.78419925386417,45.63197504348962],[-122.78419459789605,45.63198485660415],[-122.78418877860962,45.63199419734086],[-122.78418085816379,45.6320035003864],[-122.78413301479006,45.63204928692635],[-122.78411575456019,45.63206516741585],[-122.78410740561795,45.63207317141708],[-122.78409963519073,45.63208136198027],[-122.78409277206198,45.63208986096821],[-122.78408700487785,45.63209884803409],[-122.78408215756858,45.63210814792151],[-122.78406983627612,45.63213672472893],[-122.78406546327732,45.63214610501426],[-122.78406044708478,45.6321552220998],[-122.78405543807877,45.63216283914289],[-122.78403648093132,45.63218901007892],[-122.78402897191384,45.63219817426932],[-122.78402124999566,45.63220646971656],[-122.78399639720504,45.63223092953221],[-122.78398854862439,45.63223935500307],[-122.78398093630065,45.63224861340877],[-122.78397388632233,45.63225814631748],[-122.78395386377295,45.63228730660581],[-122.78394686140533,45.63229687782552],[-122.78393932903167,45.63230620029368],[-122.78393159453705,45.6323147180922],[-122.78391533862369,45.63233135731896],[-122.78390744961885,45.63233976141743],[-122.7839001579937,45.63234841614881],[-122.78389299303099,45.63235856086421],[-122.78388673536672,45.63236909252161],[-122.78388114245577,45.63237990559067],[-122.78387119990219,45.63240204680982],[-122.78385727871023,45.63243558589076],[-122.78385240804477,45.63244661503222],[-122.78384719871443,45.63245745635324],[-122.78384148183596,45.63246802254058],[-122.78383505169515,45.63247820492357],[-122.78382765047553,45.63248786970561],[-122.78381880745988,45.63249727882727],[-122.78379999494119,45.6325155807233],[-122.78379192717163,45.63252441947662],[-122.78377633690987,45.6325426723678],[-122.78375089662104,45.63257092608288],[-122.78374293036107,45.63258062916628],[-122.78373546715771,45.63259092334008],[-122.78371510504515,45.63262258287507],[-122.78370802362576,45.63263297880188],[-122.78368578672924,45.63266230849627],[-122.78367911045007,45.63267218367755],[-122.78367366486279,45.63268171023273],[-122.7836636270878,45.63270103532792],[-122.78365193731102,45.63272147036039],[-122.78363676386755,45.63274986155046],[-122.78363131917861,45.63275933218692],[-122.78362480369785,45.63276951891408],[-122.78361776360097,45.63277959759736],[-122.78361034710998,45.63278959713185],[-122.78357147700765,45.63283923296297],[-122.78356405512679,45.63284924630617],[-122.78355702401302,45.63285935135745],[-122.78355054536321,45.63286958706206],[-122.78354481770498,45.63287999864684],[-122.78354012131264,45.63289028711226],[-122.78353605284271,45.63290072507546],[-122.78352501793778,45.63293234737461],[-122.78352092341669,45.63294280857145],[-122.78351588027469,45.63295402982672],[-122.78349955698768,45.63298744106317],[-122.7834806573324,45.63303223746595],[-122.7834754489004,45.63304308369892],[-122.78346951103639,45.63305357502619],[-122.78346250327883,45.63306356634588],[-122.78345428638896,45.63307286795764],[-122.78342687250142,45.63309938709048],[-122.78341866639128,45.63310856620758],[-122.78341213474087,45.63311756944196],[-122.78340639091294,45.63312690056766],[-122.78339560484133,45.63314590012922],[-122.78338974243577,45.63315525637609],[-122.78338299339303,45.63316429917622],[-122.78337451599172,45.63317339536729],[-122.783364929171,45.63318208828689],[-122.7833545958503,45.63319050858964],[-122.78332216217697,45.6332152066713],[-122.78331182346635,45.63322358488328],[-122.78330223035742,45.63323221435238],[-122.78329375205779,45.6332412219639],[-122.78328703086282,45.6332500857286],[-122.78326213225809,45.63328822609451],[-122.78325603808722,45.63329834739841],[-122.78325081348551,45.6333086621692],[-122.78324622938263,45.63331921437681],[-122.78323390719186,45.633351267347],[-122.78322953868464,45.63336175170703],[-122.78322465364612,45.63337195340011],[-122.78321898437837,45.63338173737544],[-122.78321376965816,45.63338920475351],[-122.78320824232421,45.63339649310954],[-122.78319439928566,45.63341408867824],[-122.78318689296316,45.63342239211134],[-122.78317499298058,45.63343377972861],[-122.78316625866107,45.63344252411563],[-122.78315783965024,45.63345152352749],[-122.78314336689269,45.63346775286728],[-122.78313760330181,45.63347493254432],[-122.78313281887463,45.63348220330121],[-122.78312866326812,45.63349147532075],[-122.7831261632567,45.6335007115346],[-122.78312352131144,45.63351408155449],[-122.78312127911649,45.63352043144911],[-122.78311805775786,45.63352678322747],[-122.78311384645583,45.63353302822086],[-122.7831065503391,45.63354126756585],[-122.7830980172422,45.63354923932098],[-122.78307964938958,45.6335648844603],[-122.78307093573132,45.63357279088527],[-122.7830547930057,45.63358931604483],[-122.78304648538592,45.63359707485301],[-122.78303853799062,45.6336050629319],[-122.78303238632755,45.63361296997937],[-122.78302694163861,45.63362149009185],[-122.78301656160549,45.63363942541437],[-122.78301082855735,45.6336484090911],[-122.78300416036299,45.63365711638424],[-122.78299575213195,45.63366578033435],[-122.78298605571678,45.63367389026274],[-122.78297528132325,45.63368142041596],[-122.78296489679857,45.63368766978912],[-122.78294327973956,45.63369961451328],[-122.78293271106024,45.63370578348238],[-122.7829227586252,45.6337124109934],[-122.78291217018297,45.63372105923143],[-122.7829026803803,45.63373048573396],[-122.78289409158785,45.63374050833998],[-122.78288628073648,45.63375099576789],[-122.7828791939272,45.63376185568083],[-122.78287284193982,45.63377303217412],[-122.78286754996451,45.63378380791208],[-122.78286278530021,45.63379476769281],[-122.78285839703007,45.63380585309937],[-122.78283850743136,45.63386172042438],[-122.78282993660522,45.63388355892342],[-122.78282512253361,45.63389416441459],[-122.78281975689644,45.63390445143758],[-122.78281363936935,45.63391431006844],[-122.78280651483084,45.63392359897622],[-122.78280038742227,45.63393014417537],[-122.78277008904436,45.63395933185996],[-122.78276127028323,45.6339675799362],[-122.78275187121039,45.63397556419343],[-122.78274170767128,45.63398313701948],[-122.78270906469049,45.63400485172814],[-122.78269845738362,45.63401231336995],[-122.78268849506709,45.63402018078735],[-122.78267942567599,45.63402858526072],[-122.78267109919165,45.63403744387581],[-122.78266331169644,45.63404662912059],[-122.78265588891726,45.63405603232733],[-122.78263438055438,45.63408463829207],[-122.78262703233537,45.6340940232765],[-122.78261937779084,45.63410318589909],[-122.78259800058203,45.63412691373681],[-122.78257751629859,45.63415247634853],[-122.78257014382507,45.63416064964818],[-122.78256097921252,45.6341691973154],[-122.78255085699591,45.63417715202152],[-122.78253992090565,45.63418446979746],[-122.78252826346818,45.63419106458883],[-122.78249357053193,45.63420748718006],[-122.78248210892721,45.63421412216938],[-122.7824714881456,45.63422150024138],[-122.78246182227316,45.63422953345698],[-122.78245328468468,45.63423817344945],[-122.78244596431344,45.63424735928947],[-122.78243305372618,45.63426642882224],[-122.78242634870089,45.63427579807288],[-122.78241872110583,45.63428470438706],[-122.78240969663048,45.63429290153655],[-122.782399335462,45.63430030283915],[-122.78238901741264,45.63430629272398],[-122.78235594503714,45.63432310409623],[-122.78234525867852,45.63432927425298],[-122.78233496488366,45.63433580558581],[-122.78231536633912,45.63434942854425],[-122.7822989855599,45.63436161558678],[-122.78229238563755,45.63436713436521],[-122.78228374833608,45.63437608965923],[-122.78227654115254,45.63438582195236],[-122.78227073983246,45.63439615473883],[-122.78226670280355,45.63440578275841],[-122.78225702076142,45.63443538287829],[-122.7822531337512,45.63444500837861],[-122.78224814091483,45.63445425762612],[-122.78224122119221,45.63446350687207],[-122.78223284530048,45.63447218514451],[-122.78222331597196,45.63448031128768],[-122.78221285598877,45.63448786457344],[-122.78218673477697,45.63450434298139],[-122.78215576176429,45.63452438728672],[-122.78214517422033,45.63453081621144],[-122.78212220250191,45.63454398372733],[-122.7821113715145,45.63455088437627],[-122.78210368193569,45.63455659031909],[-122.78209640468356,45.63456258771413],[-122.78208140461496,45.63457589341133],[-122.78207375995186,45.63458320611012],[-122.78206667943083,45.63459080397929],[-122.78206027534115,45.63459886603594],[-122.78204296300899,45.63462418094903],[-122.78203675744702,45.63463257402548],[-122.78202870944038,45.63464208454414],[-122.78201994547648,45.63465137772823],[-122.78199208243132,45.63467875790806],[-122.78198312443129,45.63468797633864],[-122.78197478626883,45.63469738006584],[-122.78196739133742,45.63470706896227],[-122.78196146335485,45.63471652796166],[-122.78195079945409,45.63473597107158],[-122.78194451124712,45.63474663230491],[-122.7819377577128,45.63475725333599],[-122.78192340622783,45.63477836222876],[-122.78190147386019,45.63480955948192],[-122.78188744397208,45.63483005153333],[-122.78187989632704,45.63483994329211],[-122.78187126800874,45.63484922953395],[-122.78185272678128,45.63486742199582],[-122.78184531747682,45.63487552107221],[-122.78182391421686,45.6349006643816],[-122.78181626596053,45.63490888279734],[-122.78180699624511,45.634917734992],[-122.78179709501403,45.63492623354981],[-122.78178675091355,45.63493439857097],[-122.78177108160006,45.63494618536961],[-122.78176359144722,45.63495223485745],[-122.78175472238041,45.63496038542794],[-122.78174646776128,45.63496890533556],[-122.78172441591767,45.63499365602421],[-122.78171825437315,45.63500101703423],[-122.78171132836229,45.63501038490573],[-122.78169217987369,45.63503937919314],[-122.78168520445551,45.63504880798641],[-122.78167731814565,45.63505783477785],[-122.78166835385741,45.635066215855],[-122.78165842118533,45.63507416415257],[-122.7816478057936,45.63508181094893],[-122.78160304813288,45.63511144086168],[-122.78159228990904,45.63511907194984],[-122.78158212187836,45.63512698632117],[-122.78157275424655,45.63513518209123],[-122.78154622340296,45.63516014689684],[-122.78152566455937,45.6351774014685],[-122.78151589987223,45.63518610726785],[-122.78149797848232,45.63520449936379],[-122.78148946963995,45.63521251547908],[-122.78148037958756,45.63522042292787],[-122.78144199098226,45.63525202067758],[-122.78143274641965,45.63526018313878],[-122.78140588409772,45.63528579422715],[-122.78139641315967,45.63529396736156],[-122.78138623434917,45.63530168950266],[-122.78137552014279,45.63530909255639],[-122.78135358777513,45.63532360532777],[-122.78134290411145,45.63533103664412],[-122.78133277919989,45.63533880902985],[-122.78132339090685,45.63534705941556],[-122.78129705679429,45.63537314658063],[-122.78128743943087,45.63538219404782],[-122.78123779224006,45.6354259998735],[-122.78119715604987,45.6354656519018],[-122.78118918978991,45.6354749242213],[-122.78118183797764,45.63548461612386],[-122.78116747571286,45.63550438873053],[-122.78115972594692,45.63551405110636],[-122.78115276130853,45.63552175060479],[-122.78112624843124,45.63554928613313],[-122.78111801088008,45.63555711125067],[-122.78109163275006,45.63558005834826],[-122.78108305024584,45.63558776725944],[-122.78107011091248,45.63559993958592],[-122.78106136940649,45.63560757626064],[-122.78102444056346,45.63563724735125],[-122.7810099094154,45.63564935936757],[-122.78100253873849,45.63565516883816],[-122.78098253864702,45.63566933919525],[-122.78097301291176,45.63567656821158],[-122.78096494873546,45.63568373064643],[-122.78094973127452,45.63569870561582],[-122.78094170482746,45.63570605083024],[-122.78093244140024,45.63571345445867],[-122.78091283836413,45.6357279953906],[-122.78090339078229,45.63573568543787],[-122.78089428905183,45.63574434781037],[-122.78088583141341,45.63575353780036],[-122.78087776993206,45.63576307765029],[-122.78086192724373,45.63578258634946],[-122.7808536923875,45.63579226123964],[-122.7808449185421,45.63580167734393],[-122.78083534250121,45.63581074044487],[-122.78082507026591,45.63581937642486],[-122.78081419256613,45.6358275633],[-122.78080275431763,45.63583524202749],[-122.78079075013048,45.63584230896834],[-122.78077812969907,45.63584861149042],[-122.78076479151375,45.63585393791877],[-122.78075149195594,45.63585792771471],[-122.78073766778205,45.63586117005188],[-122.78069509751903,45.63586950766884],[-122.78068116824225,45.6358727820392],[-122.78066816602683,45.63587653691836],[-122.78065549079815,45.63588075974386],[-122.780643073386,45.63588525391519],[-122.78060646074996,45.63589886456276],[-122.78059457424213,45.6359035063399],[-122.78058348903151,45.63590867573402],[-122.78057583358866,45.63591309578545],[-122.78056844494546,45.63591787197824],[-122.78052522160725,45.63594689154881],[-122.78049883898568,45.63596390342574],[-122.78048824515351,45.63597181704967],[-122.78047826756564,45.63598011131023],[-122.78046227935022,45.63599406111681],[-122.78045623548498,45.63599980962448],[-122.78044832492058,45.6360088607592],[-122.78044122463658,45.63601859151257],[-122.78042137007218,45.63604983581195],[-122.78040686856856,45.63607085690999],[-122.78039135196865,45.63609173541832],[-122.78034477342284,45.63615315047274],[-122.78033640561596,45.63616293647501],[-122.7803270442724,45.6361716973952],[-122.7803165061358,45.63617996901409],[-122.78030511100643,45.63618788826049],[-122.78029311670076,45.6361955656824],[-122.78024306167481,45.63622555805522],[-122.78023089040103,45.63623326562135],[-122.78021923116694,45.63624123322487],[-122.78020832561941,45.63624957643828],[-122.78019847020244,45.63625844098343],[-122.78019005029326,45.63626774520543],[-122.78018262122586,45.63627754249366],[-122.78017587487808,45.6362876858697],[-122.78015088284855,45.63632946156034],[-122.78014404307599,45.63633971610265],[-122.78013649543095,45.63634969050558],[-122.78012799377511,45.63635936027297],[-122.78011875909401,45.63636872791746],[-122.7801090312378,45.63637788388706],[-122.7800690481228,45.63641370628186],[-122.78005970294892,45.63642272720045],[-122.78005102971484,45.63643186934281],[-122.78004329072866,45.6364411829577],[-122.7800373447798,45.63644956508415],[-122.78002622363658,45.63646615220642],[-122.78001999022682,45.63647398347704],[-122.78001166464078,45.63648217339706],[-122.7800020742268,45.63648955619536],[-122.77999140044459,45.63649602320932],[-122.77998051376166,45.63650123902885],[-122.7799579876076,45.63651060225283],[-122.77992386060995,45.63652576543392],[-122.77990848774049,45.63653288442072],[-122.77989703422062,45.6365375085583],[-122.77987361244624,45.63654630710648],[-122.77986267635595,45.63655108198905],[-122.77985300239867,45.63655654025338],[-122.77984684444739,45.6365612133815],[-122.77983537835111,45.63657160606527],[-122.7798266152855,45.6365790510345],[-122.77980727276082,45.63659464068257],[-122.77979759071867,45.63660297442171],[-122.77978851144611,45.63661184896067],[-122.77978015531731,45.63662168010656],[-122.7797726427066,45.63663205393586],[-122.77976569962779,45.63664278138788],[-122.77974609838827,45.63667554410274],[-122.77973930353146,45.63668618109897],[-122.77973201999114,45.63669641422038],[-122.77972398366261,45.63670604561342],[-122.77971487833888,45.63671483220109],[-122.77970605418786,45.63672156864683],[-122.77968709344717,45.63673398129188],[-122.77967785517278,45.63674034149947],[-122.77966930680454,45.63674710495075],[-122.7796449435957,45.63676832175638],[-122.77963620119137,45.63677492943393],[-122.77962490308003,45.6367821206213],[-122.7796131055054,45.63678919749243],[-122.77960280182909,45.63679582149826],[-122.77959263649332,45.6368028267636],[-122.77957270197888,45.63681752946415],[-122.77953664719664,45.63684565100624],[-122.77952973645715,45.63685145281551],[-122.77952348058952,45.63685742609692],[-122.77951594372428,45.63686638350546],[-122.77950268459067,45.63688467706552],[-122.77949511897934,45.63689320421788],[-122.7794867763253,45.63690027856256],[-122.77947745630425,45.63690688119968],[-122.77945265381923,45.63692331995389],[-122.77944469744077,45.63692802571284],[-122.77943253335351,45.63693412963182],[-122.77940040780231,45.63694908039908],[-122.77938735078968,45.63695462153445],[-122.77934653493639,45.63697039762489],[-122.77933326592135,45.63697575723608],[-122.77932063560846,45.63698136746023],[-122.77931131828232,45.63698598842026],[-122.77929087532141,45.63699672082936],[-122.7792804063551,45.63700312999924],[-122.77927142410057,45.6370103349756],[-122.77925764574074,45.63702317278268],[-122.77925227022207,45.63702855876919],[-122.77924545111075,45.63703659849151],[-122.77922619931589,45.63706304414492],[-122.77921899033575,45.63707177980031],[-122.77921073212333,45.63708005128635],[-122.77920133484716,45.63708752696502],[-122.7791909395427,45.6370945535494],[-122.77916872600235,45.63710822043245],[-122.77914544526345,45.63712321449231],[-122.77912291641442,45.63713856468209],[-122.77909423141077,45.6371585132018],[-122.7790868032417,45.63716319632933],[-122.77907557430065,45.63716910111442],[-122.77905207347449,45.63717962998354],[-122.77904086070309,45.63718502914512],[-122.77903076184269,45.63719104258944],[-122.77902454819588,45.63719584379737],[-122.77901889869105,45.63720100553502],[-122.77901300664111,45.6372070692258],[-122.77900777664951,45.63721349156175],[-122.77900269667657,45.63722169079522],[-122.77899850603579,45.63723027442537],[-122.77899077064288,45.63724754720268],[-122.77898623684563,45.63725571376995],[-122.77898056578124,45.63726319068146],[-122.77897241446836,45.63727059096365],[-122.77895337287927,45.63728436332464],[-122.77894317430587,45.63729101679266],[-122.77893220497792,45.63729696867181],[-122.77892124912471,45.63730157892816],[-122.77890984052061,45.63730585315044],[-122.77889844269627,45.63731047722428],[-122.7788869415657,45.63731622810933],[-122.77887578269326,45.63732274213534],[-122.77884286842124,45.63734356992924],[-122.77883160534418,45.63734989740645],[-122.77880207951745,45.63736422498803],[-122.77879346197894,45.63736942188378],[-122.77878598709744,45.63737533858106],[-122.77877250248672,45.63738838797396],[-122.77876527194699,45.63739490450401],[-122.77875737306071,45.63740083250439],[-122.77874863874118,45.63740638804132],[-122.77873927021109,45.63741156609019],[-122.77871741240361,45.63742231097979],[-122.7787067907237,45.63742817365495],[-122.7786958950576,45.63743564991533],[-122.77868571624711,45.63744402309963],[-122.77867600276396,45.63745302312508],[-122.77864746957557,45.63748168576895],[-122.77863744886858,45.63749120082885],[-122.77862726376989,45.63750009469818],[-122.77861658190285,45.63750871974015],[-122.77860547692931,45.63751707218633],[-122.77859399196839,45.63752513193766],[-122.77858214768138,45.63753286005229],[-122.77854755355979,45.63755353702473],[-122.77853651506157,45.63756052272431],[-122.77852616107961,45.63756783880218],[-122.77851641885036,45.63757578548876],[-122.77849763777272,45.63759213485694],[-122.77848705292371,45.63760041757191],[-122.77847594615353,45.63760847228649],[-122.77845325381115,45.63762435999408],[-122.77844219016012,45.63763240842427],[-122.77842661067812,45.63764435293569],[-122.77841866148619,45.63765016219946],[-122.77840802543322,45.63765718996941],[-122.77839697705356,45.63766389803757],[-122.77837467637661,45.63767690088418],[-122.77836392803424,45.63768344438885],[-122.77834845185853,45.63769330800772],[-122.77833806284228,45.63769928371178],[-122.7782936672026,45.63772224751879],[-122.77828289370741,45.63772835260747],[-122.77825896168994,45.63774367562335],[-122.77824682814538,45.6377511706845],[-122.77823601063271,45.63775711183717],[-122.77820240735291,45.63777394415747],[-122.77819158265372,45.63777979988682],[-122.77816567703756,45.63779540992793],[-122.77815272153454,45.63780244961354],[-122.77813913451585,45.63780916708569],[-122.77808274007896,45.63783497611499],[-122.77806913239903,45.63784167725281],[-122.77805617599769,45.63784871567638],[-122.77804416552232,45.63785624652483],[-122.77803673106506,45.63786163494363],[-122.77800039870337,45.63788933011421],[-122.77798133914798,45.63790458462389],[-122.77797238114799,45.63791245840385],[-122.77795476428696,45.63792948915496],[-122.77794571555711,45.63793776679533],[-122.77793621856792,45.63794545025839],[-122.77791640442767,45.6379603077981],[-122.77790688587893,45.63796793158927],[-122.77789819198362,45.63797600258147],[-122.77789006492524,45.63798547735949],[-122.77788306435421,45.63799557143517],[-122.77787685699562,45.63800610580176],[-122.77787116976157,45.63801693411363],[-122.7778549803235,45.63805000881478],[-122.7778491852916,45.63806087731601],[-122.77784281893119,45.63807148264473],[-122.77783560725609,45.63808169038944],[-122.77782888156956,45.6380897488034],[-122.77782169864054,45.63809759178086],[-122.7777904219973,45.63813142139984],[-122.77778231829511,45.63813974800146],[-122.77777393431856,45.63814765943381],[-122.77776101025657,45.63815876721863],[-122.77774836287568,45.63817018841846],[-122.77773880030949,45.63817829643884],[-122.77772859814282,45.63818630961637],[-122.77771787585158,45.63819418586912],[-122.77770671338588,45.63820187055322],[-122.77769515925466,45.63820929709127],[-122.7776832296277,45.63821638383156],[-122.77766593077027,45.63822599360831],[-122.77765359510481,45.63823332341732],[-122.77764149120466,45.6382410614837],[-122.77761779095252,45.63825739432744],[-122.77758300908303,45.63828311144925],[-122.7774800819144,45.63836214261252],[-122.77745694310933,45.63837923666387],[-122.77744523536623,45.63838756385676],[-122.77743339197751,45.63839567372992],[-122.77742136712911,45.63840349468149],[-122.77740910332888,45.63841093815119],[-122.77739187364172,45.63842077086571],[-122.77737947868744,45.63842836695837],[-122.77736736490581,45.63843636879461],[-122.77734370507785,45.63845318834916],[-122.77728557958739,45.63849673739893],[-122.77726186316559,45.63851351673781],[-122.77724969818,45.63852148276092],[-122.77723722776722,45.63852902608071],[-122.77721984087491,45.63853875074363],[-122.77720730129185,45.63854614960118],[-122.777194967423,45.63855390772313],[-122.77718279075933,45.63856194031763],[-122.77715876621536,45.63857857015253],[-122.77713500847105,45.63859565848507],[-122.77709961305224,45.63862169703141],[-122.77694673236728,45.63873547271878],[-122.77692309589554,45.63875276324652],[-122.77689931479502,45.6387697265373],[-122.77687527408138,45.63878604603719],[-122.77686310101096,45.63879380475397],[-122.7768507833118,45.63880117091751],[-122.77682760677746,45.63881414649268],[-122.77681671470465,45.63882080229139],[-122.77679140826478,45.63883870077721],[-122.77678032395248,45.6388460763561],[-122.77676877700782,45.63885321765913],[-122.77675674587121,45.63885998713618],[-122.77672014311665,45.63887812679327],[-122.77668950787051,45.63889476721167],[-122.77667237250645,45.63890361375204],[-122.77664181721039,45.63892028305468],[-122.77662414734874,45.63892918611842],[-122.77661155027351,45.63893581740826],[-122.7765864863788,45.63894998379534],[-122.77653638194549,45.63897968514834],[-122.77651091650384,45.63899403555217],[-122.77649792327155,45.63900075916231],[-122.77648465964639,45.63900700103336],[-122.776471025017,45.63901257713775],[-122.77645614981422,45.63901763570279],[-122.77642667069986,45.63902637859042],[-122.77641204702535,45.63903011944043],[-122.77639673883461,45.63903313171646],[-122.77638097789291,45.63903547383003],[-122.77636488457462,45.63903732666848],[-122.77634855410105,45.6390388328063],[-122.77626560995593,45.63904462119885],[-122.77624913395532,45.63904601239766],[-122.77623283312616,45.63904770130674],[-122.77621679191012,45.63904982421953],[-122.77620111630841,45.63905255197395],[-122.77618594466158,45.63905610439807],[-122.77617136230957,45.63906067180014],[-122.77615735218441,45.63906608585444],[-122.77614384870907,45.63907214620298],[-122.77613082583238,45.63907870210625],[-122.77611829702911,45.63908564553435],[-122.77610631350322,45.63909289923318],[-122.77608262403086,45.63910824260253],[-122.77607039885817,45.63911523313297],[-122.77605874860724,45.63912072380768],[-122.77603429287197,45.63913091000659],[-122.77602127448687,45.63913670592654],[-122.77599500505299,45.63914886429244],[-122.77598288408488,45.6391542111337],[-122.77594602441212,45.63917003999163],[-122.77593396093617,45.63917550239744],[-122.77592221366723,45.63918119907625],[-122.77589023094816,45.63919823949104],[-122.77585310088251,45.63921675337357],[-122.77584097542282,45.6392236088535],[-122.77582932696852,45.63923079784234],[-122.77581810072242,45.63923816520461],[-122.77579975532767,45.63925070793253],[-122.77579202532466,45.639255629555],[-122.77578067870431,45.63926173698891],[-122.77576844365015,45.63926730050636],[-122.77575555552075,45.63927247775518],[-122.77574221374216,45.63927739937575],[-122.77570103676619,45.63929171076249],[-122.77567198794482,45.63930210042754],[-122.77565751967887,45.6393070798286],[-122.77564300919208,45.63931164721026],[-122.77562838821251,45.6393155682996],[-122.77559598238696,45.63932230443267],[-122.77556697668474,45.63932912912388],[-122.77555269706498,45.63933222491811],[-122.7754940182123,45.6393435058175],[-122.77547956072613,45.63934654319972],[-122.77546545807451,45.6393498933643],[-122.77545188183559,45.63935370390935],[-122.77543903952028,45.63935815383675],[-122.7754290772038,45.63936240717562],[-122.77541115761052,45.63937126557564],[-122.77540307367127,45.63937581096938],[-122.77539281760566,45.6393825803833],[-122.77538307627472,45.6393899320237],[-122.7753544757127,45.63941303959549],[-122.77534437236069,45.63942034475419],[-122.77531681743768,45.63943783291467],[-122.77527020565422,45.63946791022661],[-122.77525842604591,45.63947511865447],[-122.77524658894542,45.63948197598705],[-122.77522398912949,45.63949438739253],[-122.77521369353801,45.63950070960228],[-122.77520690586775,45.63950556713908],[-122.77519413541764,45.63951555605228],[-122.77518807089115,45.63952077787152],[-122.77518098048864,45.63952799759798],[-122.77516099387188,45.63955171622988],[-122.77515361061855,45.63955967959309],[-122.7751306038658,45.6395834176819],[-122.77512365988866,45.6395915380593],[-122.77510589660224,45.63961583826112],[-122.77509917540729,45.6396235296591],[-122.7750897673513,45.63963197411691],[-122.77507906033144,45.63963991360192],[-122.77506753135306,45.63964755977524],[-122.7750436577261,45.63966273278476],[-122.77503208383196,45.63967063458096],[-122.77502127620079,45.63967901622433],[-122.7750128194607,45.63968672582774],[-122.77500491159125,45.63969477333363],[-122.77498946595826,45.6397111930558],[-122.77498129488245,45.63971922799673],[-122.77497136580359,45.63972783008647],[-122.77496061566458,45.63973598121853],[-122.77494910555085,45.63974363994017],[-122.77493750740221,45.63975046206777],[-122.77490144992501,45.63977010755473],[-122.77489018415307,45.6397767877347],[-122.77485729503388,45.63979742870702],[-122.77484622778957,45.63980405298533],[-122.77483489913553,45.63981030293183],[-122.77482348963312,45.63981597567939],[-122.77480063739061,45.63982688152239],[-122.77478975609756,45.63983266292471],[-122.77477785521668,45.63984005281844],[-122.7747552751637,45.63985568866459],[-122.77473251454936,45.63987068764195],[-122.77472170871479,45.63987811395875],[-122.77470818637481,45.63988811411087],[-122.77469435501436,45.6398976947096],[-122.77467242624,45.63991336257131],[-122.77462768744388,45.63994142163686],[-122.77461723195229,45.63994745928019],[-122.77458070106294,45.63996622414333],[-122.77456980899014,45.63997230260853],[-122.77454822696541,45.63998493938264],[-122.77453717858575,45.6399911610458],[-122.77452439286429,45.63999782486964],[-122.77451125320665,45.64000424437339],[-122.77447125661693,45.64002308898242],[-122.77445823284194,45.64002957882712],[-122.77444564025829,45.64003636449185],[-122.77443368098693,45.64004358477991],[-122.77442288772876,45.64005105001416],[-122.77441264244297,45.64005886633817],[-122.77438294952955,45.64008257909271],[-122.77437269885384,45.6400899601605],[-122.77436190559571,45.6400967433057],[-122.77435157227501,45.64010223262812],[-122.77431943235077,45.64011728680948],[-122.77430922120095,45.64012269134064],[-122.77430086237723,45.640127818893],[-122.77425066631578,45.64016190919067],[-122.77423935652635,45.64016976443948],[-122.77422838989335,45.64017778424099],[-122.774217989199,45.64018603391419],[-122.77420841225975,45.64019459510788],[-122.77419032018992,45.64021338563903],[-122.77418109449198,45.64022209128409],[-122.77417109085295,45.64023054695691],[-122.77416041617245,45.64023873004725],[-122.77414912973921,45.64024660098691],[-122.77413725401115,45.64025410073778],[-122.77412413770969,45.64026156720009],[-122.77408362728363,45.64028294722855],[-122.77407063944126,45.64029035653296],[-122.77405839091237,45.64029823877062],[-122.77405029709165,45.6403041878181],[-122.77402373750198,45.64032532665278],[-122.7740124483738,45.64033398580349],[-122.77398925477145,45.64035122873305],[-122.77389437740609,45.64041955600308],[-122.77387151168887,45.64043637559034],[-122.77384267936149,45.64045833274374],[-122.77383539851611,45.64046360157998],[-122.77382466185183,45.64047034448377],[-122.77378138641134,45.64049473725805],[-122.77377088959724,45.64050043568695],[-122.77375864915319,45.64050648520323],[-122.77374596853464,45.64051225146191],[-122.77369373060256,45.64053424061683],[-122.77368094038955,45.64053985425305],[-122.77366852836725,45.6405456726376],[-122.77365665533415,45.64055178746766],[-122.77363011191413,45.64056690747492],[-122.77361892699052,45.64057255690749],[-122.77357146899405,45.64059398455012],[-122.77355837694712,45.64060046365161],[-122.77351946282734,45.6406206960795],[-122.77348154404086,45.64063929742082],[-122.77346927305408,45.64064585125655],[-122.77345626365212,45.64065359841072],[-122.77344373125563,45.64066179148825],[-122.77343154201552,45.64067029985198],[-122.77341959442224,45.64067901673116],[-122.77336110331747,45.6407230043224],[-122.77333270307975,45.64074294968184],[-122.77332476287096,45.64074887795608],[-122.77331525061044,45.64075682984404],[-122.77328794002914,45.64078156667119],[-122.77327732823071,45.64079011521262],[-122.77325533118433,45.64080680719229],[-122.77324464841899,45.64081533249164],[-122.77321672428837,45.64083980111104],[-122.77320676646345,45.64084752060371],[-122.77319591571312,45.64085464971849],[-122.77318424480094,45.6408612387004],[-122.77317191452536,45.64086735726439],[-122.77315903807408,45.64087304058194],[-122.77314569360054,45.64087829493378],[-122.77313192422388,45.64088309456963],[-122.77311744158486,45.64088752176539],[-122.77310267417991,45.64089158594211],[-122.77305787699332,45.640903007841],[-122.77304315719906,45.64090698911271],[-122.77302875001854,45.64091128755434],[-122.77301480726702,45.6409160708578],[-122.77300151130248,45.64092153811785],[-122.77298862137647,45.64092805800534],[-122.77297642854313,45.64093531963047],[-122.77296474864779,45.64094312892248],[-122.77295343616342,45.64095133200661],[-122.77293148223622,45.64096846169548],[-122.7728880657602,45.64100334409191],[-122.77287690958268,45.64101178708568],[-122.7728654722325,45.64101996001294],[-122.77285364411514,45.64102775610394],[-122.77284129138167,45.64103504535067],[-122.77282975072524,45.64104104770488],[-122.77279385224982,45.64105788029479],[-122.77278208791287,45.64106373065649],[-122.77276938124319,45.64107073538825],[-122.77275710306988,45.64107816719858],[-122.77274517973112,45.64108592182961],[-122.77273356002291,45.64109391449351],[-122.77272221609752,45.64110207547573],[-122.77270034840853,45.64111866938548],[-122.77267913020152,45.64113566587503],[-122.77266837197769,45.64114395246264],[-122.77265716908779,45.64115150108184],[-122.77264923426888,45.64115600864771],[-122.7726410721762,45.64116021097751],[-122.77263181413889,45.64116470849378],[-122.77262226055585,45.64116884927333],[-122.77261104598783,45.64117287700235],[-122.77257618326998,45.64118363247566],[-122.77256617154613,45.64118725950342],[-122.77255659730183,45.64119124703551],[-122.77254027131987,45.64119898029697],[-122.77250714235052,45.64121382880924],[-122.77249620805686,45.64121940595009],[-122.77248446617779,45.64122645651053],[-122.77247318782939,45.64123415962045],[-122.77244015767469,45.6412589634388],[-122.77242880925772,45.64126716396451],[-122.7723920735525,45.64129185346212],[-122.77238090030698,45.64130012872163],[-122.77237014387977,45.641308643897],[-122.77232945289235,45.64134247911393],[-122.7723061335259,45.64136031022047],[-122.77228784292839,45.64137572205497],[-122.77228186284356,45.64138096191441],[-122.77226195078696,45.64140071673918],[-122.77225291193858,45.64140919610017],[-122.77224335296563,45.64141755424549],[-122.7722332361389,45.64142560778333],[-122.77222247971169,45.64143314819989],[-122.77221094803838,45.64143992238967],[-122.77219844438795,45.6414456226066],[-122.77218410997096,45.64145021242388],[-122.77216881615325,45.64145371884804],[-122.77215289351483,45.64145658277305],[-122.77212024065258,45.64146193002215],[-122.77210398653581,45.6414651588459],[-122.77208972218745,45.6414687293306],[-122.77207577045274,45.64147292724059],[-122.77206217445091,45.6414776935386],[-122.77204899796234,45.64148300687079],[-122.77203633710671,45.64148888356632],[-122.7720236394202,45.64149569794479],[-122.77201154270658,45.64150301853333],[-122.77199997869391,45.6415107059039],[-122.77198891953444,45.64151865014711],[-122.77197837960122,45.6415267664757],[-122.77195492997903,45.64154653569427],[-122.77193213612703,45.64156386178161],[-122.77191087480087,45.64158076518439],[-122.77189991984598,45.64158906238299],[-122.77186859738865,45.64161034581295],[-122.77185882641331,45.64161784663741],[-122.7718504613014,45.64162542408312],[-122.77184268907756,45.6416334085054],[-122.77182007848185,45.64165822973245],[-122.77179557872911,45.6416822815858],[-122.77178764930009,45.64169052161675],[-122.77177925184881,45.64170025766394],[-122.77177142842099,45.64171032783251],[-122.77176403528621,45.64172064607931],[-122.77175011229764,45.64174177307472],[-122.77171726450095,45.64179545692314],[-122.77170394428191,45.64181645262794],[-122.77169704881379,45.64182662263551],[-122.77168989912246,45.64183644658597],[-122.77168239639322,45.64184579321722],[-122.77167441396359,45.64185449170007],[-122.7716657919335,45.64186232221761],[-122.77165707827524,45.64186877102613],[-122.77164824064947,45.64187477266292],[-122.77163988362237,45.6418808559455],[-122.77163284352548,45.64188697251397],[-122.77161922955739,45.64189953286232],[-122.77161143038408,45.64190533226417],[-122.77160174834194,45.64191070396433],[-122.77159078979378,45.64191543882271],[-122.77157891226911,45.64191973404672],[-122.77156641939845,45.64192375669738],[-122.77152770380634,45.64193560734287],[-122.7715060085939,45.64194266534975],[-122.77149245571121,45.64194642987091],[-122.77147849499337,45.64194982949585],[-122.77143586094999,45.64195957115042],[-122.77142191909678,45.64196322387794],[-122.77137921857808,45.64197609948924],[-122.77136484463522,45.64197970008766],[-122.77133587756053,45.64198630212631],[-122.7713217138235,45.64198997306544],[-122.77130807110926,45.64199436939943],[-122.77129619717783,45.64199926565895],[-122.77128474096301,45.64200482262414],[-122.77125072266152,45.64202302532389],[-122.77123736291661,45.64202961730864],[-122.77122358096352,45.64203595556159],[-122.77119516186119,45.64204810073741],[-122.7711225222907,45.64207740603478],[-122.7710941651721,45.64208957255519],[-122.7710804640674,45.64209597046576],[-122.77106724895124,45.64210269181949],[-122.77105468511371,45.64210984715252],[-122.77104242311007,45.64211778126204],[-122.77101836982001,45.64213397857385],[-122.77100645546442,45.6421410974762],[-122.77099404793371,45.64214788162914],[-122.77098131161961,45.64215442084334],[-122.77094257087467,45.64217330869232],[-122.77091772347389,45.64218590791531],[-122.77090608130784,45.64219239060101],[-122.77089013710984,45.64220183075162],[-122.77087864765734,45.64220799376044],[-122.77085470306346,45.64222021991681],[-122.77084251831494,45.64222700531623],[-122.77081868780708,45.64224148175344],[-122.77077557496165,45.64226873261575],[-122.77076764283771,45.6422739416175],[-122.77075674806996,45.64228204590385],[-122.77074642103742,45.64229070098392],[-122.77070683228285,45.64232711686849],[-122.77069641991039,45.64233579455119],[-122.77068536614082,45.64234390259683],[-122.77067338171662,45.64235117973949],[-122.77066059240192,45.64235727113486],[-122.77064689309383,45.64236254984126],[-122.77063253352402,45.64236724132645],[-122.77061771132183,45.64237152709516],[-122.77055676422307,45.64238737388546],[-122.77054174439152,45.64239161254942],[-122.7705270740046,45.64239621861832],[-122.77051291835238,45.64240135349913],[-122.77049937804611,45.64240714217231],[-122.77048636235595,45.64241339810889],[-122.77047371767001,45.64241989144498],[-122.77044949819164,45.64243267337296],[-122.77043816235106,45.64243906684803],[-122.77042769338472,45.64244590246437],[-122.77041897433658,45.6424528297741],[-122.77040271842318,45.64246750901066],[-122.77039414310549,45.64247470511983],[-122.7703830219623,45.64248261154378],[-122.77037093782508,45.64249006326418],[-122.7703582446301,45.64249722043181],[-122.77031950029189,45.64251822717837],[-122.7703071394736,45.64252534665996],[-122.77029473104457,45.64253216028432],[-122.77028168032012,45.64253815556966],[-122.77026793519799,45.64254281375396],[-122.77025330343864,45.64254652296715],[-122.77023805453669,45.64254958655351],[-122.7701907303892,45.64255734035287],[-122.77017504580434,45.64256017909981],[-122.77015971515567,45.64256352718809],[-122.77014495403893,45.64256765718756],[-122.77013125203591,45.64257263692652],[-122.77011811956478,45.64257833074778],[-122.77010537965742,45.6425844472401],[-122.77006753543112,45.64260331798705],[-122.77005506052677,45.64261001415828],[-122.77004463917118,45.64261668206691],[-122.77001471628905,45.64263834946726],[-122.77000400387929,45.64264515491336],[-122.76999228176314,45.64265139575037],[-122.76997980506216,45.64265711028898],[-122.7699668055417,45.64266247375249],[-122.76992654933888,45.6426779593375],[-122.76991326415413,45.64268338246288],[-122.76987283008488,45.6427015416074],[-122.76985912089532,45.64270723541556],[-122.76984700531708,45.64271171333845],[-122.76980996418467,45.64272429171503],[-122.76979783962327,45.64272880480676],[-122.76978494340904,45.64273420845795],[-122.76977233735069,45.64273999898084],[-122.76973518213219,45.64275808588256],[-122.76972268476997,45.64276383432435],[-122.76970995474406,45.64276916009538],[-122.76969687347689,45.64277386285119],[-122.76968159493057,45.64277827168443],[-122.76963470107609,45.64278950353099],[-122.76962200967776,45.64279310344914],[-122.76958497393524,45.64280462105026],[-122.76955935577996,45.64281201683239],[-122.76954723930339,45.64281590753088],[-122.76952030601456,45.64282598252322],[-122.76948281213123,45.6428370774479],[-122.76947063636588,45.64284162570062],[-122.76945855043202,45.64284684469774],[-122.76940977191209,45.64287035781238],[-122.76939708320873,45.64287596807439],[-122.76938400373817,45.6428810790458],[-122.76937021998846,45.64288560154544],[-122.76935608499747,45.64288955190236],[-122.76934176495354,45.6428930821019],[-122.76932742245171,45.64289631272732],[-122.76927328009121,45.6429078177465],[-122.76925374532703,45.64291252614301],[-122.76924617163087,45.64291414459537],[-122.76923768794134,45.64291517143645],[-122.76922923120127,45.64291511428507],[-122.76922136375599,45.64291393797104],[-122.76921343612359,45.64291195462899],[-122.76919529374814,45.64290661505477],[-122.76918481669698,45.64290378448986],[-122.76917389947133,45.6429012434501],[-122.76913783929919,45.64289467668937],[-122.76912612077629,45.64289185366034],[-122.76911622044355,45.64288867390574],[-122.76909790289662,45.64288152934886],[-122.76908942549527,45.64287770648301],[-122.76907722547539,45.64287118996255],[-122.76905302755659,45.64285673001704],[-122.76900642026469,45.64283106335336],[-122.76899523983266,45.64282422464381],[-122.76898466486516,45.64281698838509],[-122.76896446085611,45.64280213213326],[-122.76895428474054,45.64279501645509],[-122.76894369270502,45.64278846412682],[-122.76893115581694,45.64278197397363],[-122.76889766123323,45.64276562988803],[-122.76888715094444,45.64276070606172],[-122.76887479192274,45.64275549584914],[-122.76883069901534,45.64273792268278],[-122.76880512936908,45.64272900766348],[-122.76879650644068,45.64272645531106],[-122.76878313771262,45.64272363666982],[-122.76876885000803,45.64272164578453],[-122.7687539487541,45.64272018182437],[-122.76872335483047,45.64271778271325],[-122.76870814814934,45.64271634450258],[-122.76869333403197,45.64271439129942],[-122.76867919544772,45.64271161096799],[-122.76866606117997,45.64270763359273],[-122.76865554460294,45.64270292203879],[-122.76864575027138,45.64269733374084],[-122.76861758898555,45.64267867279096],[-122.76860762756736,45.6426728470915],[-122.76859643006735,45.64266735362462],[-122.76857290947827,45.64265675984252],[-122.76855983000772,45.64265003918327],[-122.76854694816655,45.64264271874462],[-122.76850887217493,45.64261939583074],[-122.76849620592942,45.6426118869759],[-122.76848348488666,45.6426049194912],[-122.76847067940228,45.64259880865348],[-122.76845776342513,45.64259394824464],[-122.7684472109155,45.64259118674845],[-122.76843688208635,45.64258949292186],[-122.76842710482279,45.64258883536293],[-122.76841823665434,45.64258923730915],[-122.76841068631438,45.64259077789377],[-122.76840523443892,45.64259321657693],[-122.76840125939376,45.64259629648979],[-122.76839808115429,45.64260051378452],[-122.7683956125839,45.64260454141061],[-122.76839219988415,45.64260780408274],[-122.76838651893829,45.64260967250411],[-122.76837911771864,45.6426096681078],[-122.7683702693131,45.64260813631633],[-122.76836043276074,45.64260539240595],[-122.76835000691354,45.64260167314801],[-122.7683393421145,45.64259714748525],[-122.76832876624867,45.6425919240686],[-122.76831322000436,45.64258325521817],[-122.76830206472512,45.64257741569183],[-122.76825398778945,45.64255427299867],[-122.76823301122924,45.64254353348953],[-122.76822257909386,45.64253843944444],[-122.76819660340912,45.64252673463213],[-122.76817088643915,45.64251339188422],[-122.7681456734241,45.64250110361571],[-122.76813386776462,45.64249438859016],[-122.76812233159974,45.64248710267351],[-122.76809936437287,45.64247185380768],[-122.76808759913759,45.64246436691454],[-122.76805402280721,45.64244470667122],[-122.76804357001055,45.64243803246168],[-122.76803407302137,45.64243099021832],[-122.76802483295037,45.64242255183468],[-122.7680029814311,45.64239992281689],[-122.76799697709173,45.64239283660567],[-122.76798332000448,45.6423736297846],[-122.76797777560255,45.64236697880427],[-122.76796431165305,45.64235228258419],[-122.76795653763257,45.64234424299651],[-122.76794829558986,45.64233645902155],[-122.76793939328537,45.64232917057219],[-122.76793187528476,45.64232393456966],[-122.76791614129256,45.64231429409357],[-122.76790867629255,45.6423099178821],[-122.76790099479857,45.64230577781488],[-122.76788861062404,45.64230019575782],[-122.76787557247602,45.64229487182639],[-122.76783814596634,45.64227889751688],[-122.76782567465526,45.64227389325809],[-122.76780422468292,45.64226582665326],[-122.76779445460586,45.6422614969133],[-122.76778585233869,45.6422564424094],[-122.76777792829957,45.64224956845923],[-122.76777129513953,45.64224167581933],[-122.76775922088379,45.64222428588099],[-122.76775251136692,45.64221541976745],[-122.76774517213107,45.64220727088028],[-122.76773705046259,45.64219927523502],[-122.76771983784343,45.64218336747104],[-122.76771140715448,45.64217526003022],[-122.76770354689573,45.64216690388211],[-122.767696632563,45.64215817090523],[-122.76769020691378,45.64214765930085],[-122.76768483049679,45.64213670555006],[-122.7676746094655,45.64211429748907],[-122.76766957530663,45.64210490442719],[-122.7676639186153,45.6420956759119],[-122.76765762681505,45.64208667286386],[-122.76765064960024,45.64207797316096],[-122.76764289354608,45.64206967603476],[-122.76763421671875,45.64206190521062],[-122.76762383848227,45.64205432217147],[-122.76761247928549,45.64204738099544],[-122.76760035741906,45.64204099250004],[-122.76758763727463,45.64203511146611],[-122.76757443563322,45.64202973098521],[-122.7675608279533,45.64202488622821],[-122.76754685825232,45.64202065004869],[-122.76753254359828,45.64201714051977],[-122.76751629576972,45.6420141692273],[-122.76746743550311,45.64200736810087],[-122.76745197190381,45.64200441878955],[-122.76743743806081,45.6420003766752],[-122.76742488500301,45.64199520533087],[-122.76741351322984,45.64198883127464],[-122.7674033955048,45.64198143287169],[-122.76739538073583,45.64197401751043],[-122.76738810078878,45.64196613550853],[-122.76737428829297,45.64194994694088],[-122.76736099412507,45.64193514321514],[-122.76735478047826,45.64192780258556],[-122.76734134168161,45.64190971792799],[-122.76733436267018,45.6419016280329],[-122.76732609367798,45.64189489786236],[-122.76731754171647,45.64189062775841],[-122.7673078569794,45.64188762380066],[-122.76729745538672,45.64188575723937],[-122.76728671243426,45.64188496275748],[-122.76725618049436,45.64188542939782],[-122.76724459582047,45.64188499353189],[-122.76723300485835,45.64188392082433],[-122.76722167350934,45.64188205426288],[-122.76721244601474,45.641879797683],[-122.76719406109414,45.64187441279086],[-122.76717084683057,45.64186823027583],[-122.76715898188229,45.64186486958501],[-122.76714726964764,45.64186093360092],[-122.76713519269695,45.64185586461576],[-122.76712345890269,45.64185002689773],[-122.76711197573843,45.64184363272738],[-122.76710066415239,45.64183685858642],[-122.76705584720285,45.64180867611623],[-122.76703061622146,45.64179354011479],[-122.76701864078041,45.64178581635611],[-122.76700345565884,45.64177502331538],[-122.76699230846449,45.64176750115826],[-122.76698057467024,45.64176025094595],[-122.76696827134413,45.64175336311778],[-122.76695472834288,45.64174655881943],[-122.76691296836027,45.64172750502119],[-122.76689954303836,45.6417210737819],[-122.76688683547036,45.64171433416889],[-122.76684480778978,45.64168962161953],[-122.76683323209903,45.64168221501237],[-122.76682188188542,45.64167444539063],[-122.76678817619764,45.6416505386138],[-122.76677673974574,45.64164286633567],[-122.76676503559592,45.64163560605837],[-122.76674826135464,45.64162605778742],[-122.7667379289322,45.64161989345851],[-122.76669913159341,45.64159536614289],[-122.76669081678713,45.64159000257718],[-122.76668285681544,45.64158443363789],[-122.76667318555307,45.64157670105764],[-122.76665465600369,45.64156051237742],[-122.76661876022325,45.64153173311802],[-122.76660478962397,45.64152001741854],[-122.76659419758846,45.64151190988168],[-122.76658295157941,45.6415040102293],[-122.76655915161427,45.64148862669251],[-122.76648479446496,45.64144335596026],[-122.76647279926094,45.64143568051347],[-122.76644424181809,45.64141633644845],[-122.76643554163454,45.64141080077877],[-122.76642315027352,45.64140386957186],[-122.7664100717013,45.641397433899],[-122.76639649456408,45.64139136500925],[-122.76636844466934,45.64137992562438],[-122.76631211311451,45.64135789786197],[-122.76629867252123,45.6413522378316],[-122.76628578169689,45.641346398177],[-122.7662736391692,45.64134030541559],[-122.76625759166498,45.64133139142996],[-122.76624112195256,45.64132272866505],[-122.76620960815409,45.64130519838514],[-122.7661986307413,45.64129940897004],[-122.76618636334779,45.64129346379659],[-122.76616118177371,45.64128191762228],[-122.76614872034412,45.64127594418446],[-122.76613600289464,45.64126930437879],[-122.76612367261903,45.64126236498964],[-122.76611170346619,45.64125524409148],[-122.76608108169478,45.64123592634254],[-122.7660731360961,45.64123119770731],[-122.76606073665022,45.64122493473009],[-122.76604756644986,45.64121917859372],[-122.76602039061589,45.64120787169362],[-122.76600708297325,45.64120166712305],[-122.7659945775262,45.64119486841027],[-122.76598251494856,45.64118750067721],[-122.76593540100686,45.64115612986276],[-122.76592313002007,45.64114866728797],[-122.76591118422341,45.64114206703483],[-122.76587465872396,45.64112338546908],[-122.76586295637075,45.6411170489971],[-122.76583844763485,45.64110250255493],[-122.76582621617396,45.64109568875671],[-122.76581542830571,45.64109044007776],[-122.76579390736646,45.64108071146127],[-122.76578383365886,45.64107568385734],[-122.76577647286341,45.6410714752406],[-122.76575505882367,45.64105840911979],[-122.76573074861545,45.64104163305527],[-122.76571962837055,45.64103460947813],[-122.76570789906789,45.64102775421973],[-122.76569559933502,45.64102119352005],[-122.76568411796737,45.64101562829254],[-122.76564906570498,45.6409996303801],[-122.76563786640833,45.64099407833973],[-122.76562727527114,45.64098817898216],[-122.76558203431679,45.64095881282138],[-122.76554903560316,45.6409368960599],[-122.76553704668737,45.64092993276334],[-122.76552430498337,45.64092376207728],[-122.76549178866505,45.64090876526603],[-122.76546703468907,45.64089765928246],[-122.76545483466919,45.64089165942517],[-122.76544262386955,45.64088470491578],[-122.76543084156629,45.64087717384634],[-122.7653963839886,45.64085308898818],[-122.76538467355056,45.64084513648582],[-122.76534794054027,45.64082191833787],[-122.76533620225447,45.6408139846729],[-122.76530559844936,45.64079114648907],[-122.76529479800469,45.64078406384275],[-122.7652823365751,45.64077725251803],[-122.76526900827122,45.64077107930287],[-122.76525502868874,45.64076538278569],[-122.76524056760933,45.64076003798237],[-122.76522575439026,45.64075495005576],[-122.76519544343597,45.6407452741382],[-122.7650872476482,45.64071305644848],[-122.76505679565838,45.64070366440777],[-122.76504186026847,45.64069882267643],[-122.76502722311922,45.64069382895356],[-122.76501299560175,45.64068862420133],[-122.76499932054817,45.64068313179605],[-122.76496566696271,45.64066813994488],[-122.76495268810348,45.64066179211633],[-122.76494137831405,45.6406550617968],[-122.76493064973462,45.64064758219762],[-122.76492034515999,45.64063954676179],[-122.76491033882604,45.64063110810839],[-122.76490052742651,45.64062239122175],[-122.76486154593306,45.64058663746417],[-122.76485145246252,45.64057789796031],[-122.7648410185305,45.64056942224185],[-122.76483010669475,45.64056133089714],[-122.76481854447874,45.64055376963716],[-122.76480537158341,45.64054642882654],[-122.76479146925607,45.64053969849321],[-122.76477703153282,45.64053342853],[-122.76476221202557,45.64052750776977],[-122.76474712841363,45.64052185707649],[-122.7647165219136,45.64051117181934],[-122.76468579324268,45.64050117554684],[-122.76465527567585,45.64049171752389],[-122.76464049749109,45.64048657430317],[-122.76462812679131,45.6404813104936],[-122.76461624477506,45.64047543620464],[-122.7646047220849,45.64046913608714],[-122.76459345451629,45.64046257092557],[-122.76454401124306,45.64043286910251],[-122.76453356293798,45.64042576945313],[-122.76452351977311,45.64041825465169],[-122.76449404065875,45.6403951135789],[-122.76448387262806,45.64038781294373],[-122.76447272812865,45.6403806812573],[-122.76446118118399,45.64037422411265],[-122.76443911406903,45.64036341761066],[-122.76442876727357,45.64035769906968],[-122.76441973651005,45.64035148435593],[-122.76441125102386,45.64034469621709],[-122.7643942450172,45.64033047428473],[-122.76438377245762,45.64032257509381],[-122.76436187871751,45.64030687971161],[-122.76435133249608,45.64029871986972],[-122.76434169357309,45.64029007578713],[-122.76433390967114,45.64028141160505],[-122.76432732861339,45.64027224119965],[-122.76432195309472,45.64026266694563],[-122.76431787115007,45.64025276358272],[-122.76431509176257,45.64024218755798],[-122.76431363110194,45.64023143818461],[-122.76431331758988,45.64022062851473],[-122.76431406319158,45.64020986155134],[-122.7643158571272,45.64019924155371],[-122.76432142847858,45.64017828606734],[-122.76432324217714,45.64016926700951],[-122.76432423481553,45.64016025109053],[-122.76432424200203,45.64015131681901],[-122.76432304993767,45.64014254898422],[-122.76432038373792,45.64013403991226],[-122.76431519776376,45.64012455670454],[-122.76430825378664,45.64011541390853],[-122.76430013660973,45.64010648214212],[-122.76427351413795,45.64007982752187],[-122.76426531072281,45.64007062567999],[-122.76425817181124,45.64006106583713],[-122.76425210279318,45.640050442671],[-122.76424714768608,45.64003947280841],[-122.7642382462799,45.64001729629447],[-122.76423315732382,45.64000649349204],[-122.7642268206078,45.63999618121021],[-122.76421923882683,45.63998709554763],[-122.76421031226782,45.63997861031873],[-122.76420035623954,45.63997069349225],[-122.76418961149041,45.6399633538614],[-122.7641736053087,45.63995369602122],[-122.76413892225391,45.63993222228458],[-122.7641269378297,45.6399256193758],[-122.76411438028033,45.63991985054452],[-122.76410211109017,45.63991548984782],[-122.76408941250533,45.6399117961622],[-122.76407655222374,45.63990841211536],[-122.76406575537231,45.63990566053592],[-122.764054739332,45.63990322299194],[-122.76403946348059,45.6399008733778],[-122.76402352197755,45.63989937982457],[-122.76400709628258,45.6398985080618],[-122.76399032473623,45.63989808097337],[-122.76397330884812,45.63989796540829],[-122.76395612767,45.63989806401545],[-122.7639214688697,45.63989863932866],[-122.76374715168711,45.639902817258],[-122.76355574495462,45.63990672448841],[-122.76341598955426,45.63990914821467],[-122.76327491991869,45.63991102803132],[-122.76324013715087,45.63991171702526],[-122.76322316797516,45.63991224334876],[-122.76320669646611,45.63991298258838],[-122.76319096786379,45.63991403774767],[-122.76317631813815,45.63991554888648],[-122.76316320453164,45.63991770693838],[-122.76315223789864,45.63992076627196],[-122.76314422582463,45.6399250610208],[-122.76314017532103,45.63993018482285],[-122.76313895001897,45.63993613642168],[-122.7631403154582,45.63994245230087],[-122.76314289991126,45.63994723819932],[-122.76315633152139,45.63996641068026],[-122.76316102701537,45.63997432436697],[-122.76316489785594,45.63998272355086],[-122.76316780749914,45.63999247371237],[-122.7631696194011,45.64000262583701],[-122.76317284525125,45.64003416750423],[-122.76317455115199,45.64004467699286],[-122.76317703319711,45.64005478263092],[-122.76318283900881,45.6400744160778],[-122.76318512791616,45.64008387354316],[-122.76318625350522,45.64009301320401],[-122.76318567409184,45.64010167553098],[-122.76318314802926,45.64010970727556],[-122.76317840402623,45.64011683962456],[-122.76317076834633,45.64012321766219],[-122.76316116086437,45.64012869756097],[-122.76313933809116,45.64013860722652],[-122.7631286193932,45.64014380009652],[-122.76312123883481,45.64014802322848],[-122.76310781620785,45.64015681178869],[-122.76310126659111,45.64016137407656],[-122.76309541137209,45.64016625919108],[-122.76309061077519,45.64017190489563],[-122.76308701931072,45.6401782873235],[-122.76308444473911,45.64018642520056],[-122.76308330477701,45.64019517858291],[-122.76308331286185,45.64020436909912],[-122.76308425788953,45.64021384852487],[-122.76308599523129,45.64022348873435],[-122.76308843775053,45.64023317416305],[-122.76309154861637,45.6402427967833],[-122.76310215143168,45.6402700492458],[-122.76310466761278,45.64027908650138],[-122.76310612378185,45.64028943453093],[-122.76310715774272,45.64031985933454],[-122.76310874596419,45.64032934376532],[-122.76311226376681,45.64033820703693],[-122.76311748387695,45.64034533810073],[-122.76312441887094,45.64035190201989],[-122.76313265013387,45.6403579597171],[-122.76314183540765,45.64036354699223],[-122.76316570005147,45.64037613280475],[-122.76317618339087,45.64038242665204],[-122.76320750405154,45.64040293676365],[-122.76321874107744,45.64040942656435],[-122.76323152410393,45.64041571349919],[-122.76324497098541,45.64042154006144],[-122.76327270018162,45.64043273532461],[-122.76328645967682,45.64043854743963],[-122.763299805947,45.64044481113279],[-122.76331258627856,45.64045172110411],[-122.76332489319795,45.6404591140565],[-122.76336089497958,45.64048220548575],[-122.76337320189896,45.64048958712892],[-122.76338599031536,45.64049648076509],[-122.76339783819564,45.64050205734929],[-122.76343483171735,45.64051745560245],[-122.76344705868669,45.64052278409921],[-122.76346036902424,45.64052918156062],[-122.76347333890033,45.64053596904908],[-122.76348604557,45.64054302597613],[-122.76354707800876,45.6405790190538],[-122.76357505783488,45.64059490780328],[-122.76360154645768,45.64061180521775],[-122.76362484516287,45.64062620293637],[-122.76363628700464,45.64063366934909],[-122.76364720333201,45.64064146486577],[-122.7636719016124,45.6406608895903],[-122.7636827631425,45.64066884211881],[-122.76370539529778,45.64068431569364],[-122.76371700871779,45.64069175509195],[-122.76372873532549,45.64069891939801],[-122.76375697566307,45.64071494942746],[-122.76378150056865,45.64073042424565],[-122.76381673429074,45.64075145803325],[-122.76383141006752,45.64076103283185],[-122.76384657812109,45.6407703777583],[-122.76385723303866,45.64077746543083],[-122.76386754569815,45.64078508695453],[-122.76387735440272,45.64079320338939],[-122.7639041906735,45.64081843008792],[-122.7639126231591,45.64082559186554],[-122.76394135577347,45.6408484149619],[-122.76395261076566,45.64085709161748],[-122.76396442540826,45.64086541216156],[-122.76397578101178,45.64087243952824],[-122.76398766841793,45.64087910952789],[-122.76402454156539,45.64089834512396],[-122.76403663648237,45.64090491274671],[-122.76404784296555,45.64091139683676],[-122.76408031436813,45.64093118134588],[-122.76410780551079,45.64094694878004],[-122.76414394922622,45.64096958717754],[-122.7641554386787,45.64097601473477],[-122.76419111077864,45.64099432328268],[-122.76420265951994,45.64100055425465],[-122.76422892536053,45.64101556423055],[-122.76424095649713,45.64102153958034],[-122.76426582276251,45.64103309774138],[-122.76429934429565,45.64105010933032],[-122.76431081218857,45.64105561991335],[-122.76432278223973,45.64106086859555],[-122.76435938140102,45.64107614799219],[-122.76437118885711,45.64108172263452],[-122.76438430426029,45.64108885234756],[-122.76439688067424,45.6410965805987],[-122.76440905823624,45.64110475037335],[-122.76442094474409,45.64111324045616],[-122.7644441733807,45.6411308216688],[-122.76449004135911,45.64116666112294],[-122.76451349637118,45.64118406960318],[-122.76452558859322,45.64119241082454],[-122.76453805810766,45.64120037583876],[-122.76455104415342,45.6412078271016],[-122.76456348941338,45.64121412713604],[-122.76460219332739,45.64123177489098],[-122.76464225818906,45.64125116800805],[-122.76465574998633,45.64125747054982],[-122.76466954451581,45.6412634107027],[-122.76468223052424,45.6412683070261],[-122.76469516446771,45.64127291067513],[-122.7647343310141,45.64128634101823],[-122.76478594731199,45.64130588987415],[-122.76479889562852,45.64131052806312],[-122.76483778908705,45.64132337807414],[-122.76485036729764,45.64132799490779],[-122.76486187291982,45.64133276875484],[-122.76488463802575,45.64134283584917],[-122.764898511607,45.64134860516202],[-122.76491272834468,45.64135416281981],[-122.7649418328616,45.64136487806282],[-122.7649860973472,45.64138071571702],[-122.76501524138996,45.64139173618943],[-122.76502946890743,45.64139759028458],[-122.76504332542068,45.64140380048589],[-122.76505664384308,45.64141039882404],[-122.76506958317644,45.64141732123738],[-122.76508224133713,45.64142444148688],[-122.76511917287509,45.64144587131592],[-122.76513127677521,45.64145267502271],[-122.76514332048824,45.64145910754895],[-122.76516007047503,45.64146766352368],[-122.76517622667541,45.64147644685244],[-122.76518770983968,45.64148217407199],[-122.7652243269673,45.64149937582469],[-122.76523708663758,45.64150603130442],[-122.76524966215325,45.6415130717799],[-122.76526209214182,45.64152040178698],[-122.7652744089427,45.64152794784327],[-122.76529878293132,45.64154347393721],[-122.76532288203542,45.64155934294356],[-122.76534669367868,45.64157538403184],[-122.76538156448136,45.64159957095195],[-122.76541984079729,45.64162747278814],[-122.76542811428105,45.64163302664993],[-122.76543948964752,45.64163975810806],[-122.76546305425404,45.64165278389802],[-122.76547499016922,45.64166005610604],[-122.765486662878,45.64166772900988],[-122.76552123094847,45.64169174380417],[-122.76553298001407,45.64169964405813],[-122.76554505426982,45.64170726231613],[-122.76555761181916,45.64171443842531],[-122.76557001755323,45.64172071014049],[-122.76560863433068,45.64173832758945],[-122.76566161337286,45.64176424408971],[-122.7656750036605,45.64177036506724],[-122.76570141412984,45.64178141812161],[-122.76571434537836,45.64178706868785],[-122.76572569918524,45.64179256286906],[-122.76575857123642,45.64180970674588],[-122.76578244576174,45.64182160263508],[-122.76579370524551,45.64182786994194],[-122.76580139841761,45.64183279385018],[-122.76584006011079,45.64185883403244],[-122.76586098097546,45.64187331056477],[-122.76587110858198,45.64188077492717],[-122.76588082026851,45.64188843900813],[-122.76589999390994,45.64190484803867],[-122.7659099652096,45.64191276647598],[-122.76592172146171,45.64192081114996],[-122.7659961235268,45.64196574423464],[-122.76602078317967,45.64198041920245],[-122.76603319879521,45.64198748976461],[-122.76606337949381,45.64200355585217],[-122.76607557771705,45.64201062327121],[-122.76608746063161,45.6420181008043],[-122.76612259104745,45.64204131531631],[-122.7661345781666,45.6420487727478],[-122.76614695335796,45.6420557918015],[-122.76615989897951,45.64206215642939],[-122.76617304223042,45.64206753062669],[-122.76618664541877,45.64207235967884],[-122.7662142524441,45.64208146133254],[-122.766227777479,45.64208624956042],[-122.76624078059274,45.64209155341421],[-122.76625337587134,45.64209778175199],[-122.76626514739483,45.64210472166567],[-122.76627608258677,45.64211226324694],[-122.7663009928696,45.64213181809517],[-122.76631190111209,45.64213993747511],[-122.76633467699781,45.64215596960451],[-122.76635836108028,45.64217155581679],[-122.76638268206828,45.64218638397384],[-122.76639503480175,45.64219336155929],[-122.76640749982464,45.64219993279853],[-122.76643151448711,45.64221173502609],[-122.76644268234274,45.64221778938199],[-122.76645056685599,45.64222275282282],[-122.7664579725672,45.64222789588415],[-122.76647161348478,45.64223790943382],[-122.76647778401247,45.64224288983014],[-122.7664852103849,45.64225002316365],[-122.76649933279953,45.64226507174359],[-122.76651795757027,45.64228291197713],[-122.76652609181518,45.6422918842195],[-122.76654988459381,45.64232065806404],[-122.76655883989886,45.64233005234587],[-122.76656859111127,45.64233872940004],[-122.76657930082611,45.64234694484075],[-122.76659083968592,45.6423546980401],[-122.76660314301206,45.64236195571205],[-122.76661595119138,45.64236858973584],[-122.76662928219018,45.64237482620737],[-122.76664296982018,45.64238078508303],[-122.766698754301,45.64240364774061],[-122.76671241677815,45.64240949042529],[-122.76672573969213,45.64241552717459],[-122.76676013079449,45.64243226263301],[-122.76677164180653,45.64243739060201],[-122.76678307286852,45.64244191690573],[-122.76680593499248,45.64245035717055],[-122.76681691869345,45.6424547547245],[-122.76682728165859,45.64245960321259],[-122.76683523264717,45.64246406105785],[-122.76685322320735,45.6424753595399],[-122.7668739141033,45.64248907221367],[-122.76688403631994,45.64249624885078],[-122.76689378663401,45.64250366351487],[-122.76690296561959,45.64251135451637],[-122.76691134061298,45.64251937963509],[-122.76691928531336,45.64252838952207],[-122.76693369159557,45.64254671075156],[-122.76694121408775,45.64255547632602],[-122.76694967172614,45.64256359313246],[-122.7669564629897,45.64256883225276],[-122.76696378425926,45.64257385846665],[-122.76700513820337,45.6426009848152],[-122.76701548050725,45.64260824559541],[-122.76702550121423,45.64261580155385],[-122.76703537639415,45.6426239365647],[-122.76706393293873,45.64264926543758],[-122.76707376499951,45.64265757880698],[-122.76708372192613,45.6426654123525],[-122.7671249626825,45.64269598596741],[-122.76713482708264,45.64270390743312],[-122.76714451451467,45.64271236147534],[-122.76718163919041,45.64274730496188],[-122.7671924126856,45.64275670670862],[-122.7672149109919,45.64277502786344],[-122.76726116344925,45.6428108568452],[-122.76728366714541,45.64282883381734],[-122.76729444692883,45.6428379353481],[-122.76730475150346,45.64284715494858],[-122.76731814718099,45.64285972638635],[-122.76732815441325,45.64286841717533],[-122.76733871410941,45.64287691703947],[-122.76736094651436,45.64289352926472],[-122.76741846474371,45.64293424304388],[-122.76744041956923,45.64295069887089],[-122.76745073312701,45.64295906306658],[-122.76746039001634,45.64296756417306],[-122.76747948640264,45.64298568993952],[-122.76748960502599,45.64299401770391],[-122.7675110532017,45.64301022669509],[-122.76752145838766,45.64301862416782],[-122.76753064455974,45.6430269663721],[-122.76754852552548,45.64304422291767],[-122.76755825338169,45.64305299846289],[-122.76758859218376,45.64307901358457],[-122.76759829668381,45.64308784313538],[-122.76760735260018,45.64309690254572],[-122.76761543204785,45.6431063042338],[-122.76762198076625,45.64311562929997],[-122.76762768686496,45.64312523384022],[-122.76764301571697,45.64315440291863],[-122.7676485196947,45.64316382971844],[-122.76765858891071,45.64317905390254],[-122.76767164412675,45.64320010561192],[-122.76767865996912,45.64321049015597],[-122.76768621929223,45.64322086339347],[-122.76769415500945,45.64323123223281],[-122.76771886227303,45.64326241096323],[-122.76773479119963,45.64328341114255],[-122.76774214211359,45.64329404814047],[-122.76774881030795,45.64330482518771],[-122.76775453167801,45.64331579378293],[-122.76775921279895,45.64332724910138],[-122.76776305040185,45.64333886079758],[-122.7677699126323,45.64336215891869],[-122.76777373137058,45.64337365379365],[-122.76777834960946,45.64338490875801],[-122.76778313942654,45.64339427083177],[-122.76779376380139,45.64341265897746],[-122.76779877909564,45.6434218973243],[-122.76780302722861,45.64343130900632],[-122.76780652526834,45.64344233347158],[-122.76780882765041,45.64345363678058],[-122.76781026675148,45.64346513728911],[-122.76781110847291,45.64347676654162],[-122.7678115711053,45.64348846550313],[-122.76781247930202,45.64352340913364],[-122.76781318088626,45.64353479658232],[-122.76781439091697,45.64354592276811],[-122.7678163375662,45.6435566784139],[-122.76782167535561,45.64357643309954],[-122.76782625766187,45.64359645971507],[-122.76782983475333,45.64360604470392],[-122.76783441795791,45.64361377009573],[-122.76784010249705,45.64362132277841],[-122.76785261243568,45.64363649596784],[-122.76785737799825,45.64364277060801],[-122.76786846500551,45.64365815857755],[-122.767874330106,45.64366729953941],[-122.76787889983581,45.64367667601061],[-122.76788160825642,45.64368636712261],[-122.76788266826844,45.64369624098926],[-122.76788241494353,45.64370612176252],[-122.76788108992849,45.64371583359434],[-122.76787886569986,45.64372519624079],[-122.76787506582622,45.64373797284676],[-122.76787343358731,45.6437476758807],[-122.76787293053079,45.64375792152907],[-122.76787336890862,45.64376856157703],[-122.76787462475342,45.64377947418699],[-122.76787663608131,45.6437905569903],[-122.76787940109575,45.64380172143497],[-122.76788297998385,45.64381288587741],[-122.76788712211562,45.6438232985691],[-122.76789186701697,45.64383364720007],[-122.76790248061204,45.64385416232852],[-122.76793515233892,45.64391319556419],[-122.76794094287926,45.64392212421163],[-122.76795561416448,45.64394079605181],[-122.76796200927096,45.64395034078812],[-122.7679663939479,45.64396006011395],[-122.76796932425233,45.64397035533748],[-122.76797116490035,45.64398109017696],[-122.76797219796293,45.6439921559837],[-122.76797264173067,45.64400346609001],[-122.76797265430709,45.64401494952899],[-122.76797180360252,45.64403820026701],[-122.76797011387147,45.64406145853172],[-122.76796895863801,45.64407292939831],[-122.76796753121502,45.6440841766859],[-122.76796573997436,45.64409508044207],[-122.7679634447788,45.64410547926477],[-122.76796045249058,45.64411516213828],[-122.76795650169996,45.64412384708031],[-122.76795124835219,45.64413116920948],[-122.76794556650802,45.6441360106442],[-122.76793903934914,45.64413945975018],[-122.76793202799836,45.64414137333815],[-122.76792283194482,45.64414162077948],[-122.76790115469868,45.64413976559767],[-122.76788846240203,45.64413906472326],[-122.76786032537071,45.64413825896894],[-122.76783039889534,45.64413827278548],[-122.7678153224699,45.64413861694241],[-122.76780043379239,45.64413922298524],[-122.76776949581402,45.6441408753154],[-122.76775490447886,45.64414094628211],[-122.76773266309073,45.64413941453245],[-122.76772180245895,45.64413891085749],[-122.76771081965627,45.6441392725991],[-122.76770002819478,45.64414057888828],[-122.76768969217912,45.64414282595678],[-122.76768010625672,45.64414606027825],[-122.76767160460088,45.64415038108022],[-122.7676637371556,45.64415647604812],[-122.76765705009666,45.64416360474185],[-122.76763877117723,45.64418723537217],[-122.76763159273979,45.64419469126195],[-122.76762214964955,45.64420228719987],[-122.76760299846599,45.64421616587705],[-122.76756849776919,45.6442424059187],[-122.76756098426014,45.64424823145496],[-122.76755384894186,45.64425428370672],[-122.76754486668732,45.64426319031903],[-122.76751990789548,45.64429142368033],[-122.76751058967105,45.64430042511799],[-122.76750089505249,45.64430820505194],[-122.76749033176307,45.64431557677077],[-122.76747917917879,45.64432269413985],[-122.76744452307345,45.64434388735229],[-122.76743328065768,45.64435127665095],[-122.76741139140914,45.64436659283147],[-122.76736846990489,45.64439747764434],[-122.76735764879899,45.64440487384422],[-122.76733029689518,45.64442232779179],[-122.7673185083037,45.64443059568066],[-122.7673072110907,45.64443939236141],[-122.76729630913641,45.64444859285769],[-122.7672857404571,45.64445810547848],[-122.76727547989994,45.64446786616554],[-122.767265539143,45.64447783535346],[-122.76725596579701,45.64448799734168],[-122.76724685059182,45.64449835652621],[-122.76723833007136,45.6445089392838],[-122.76723060096666,45.64451979397175],[-122.7672241339949,45.64453039493778],[-122.76721834525124,45.64454121194044],[-122.7672130128517,45.64455216584914],[-122.76719297862425,45.64459609701796],[-122.76718761568199,45.64460681603704],[-122.76717661491303,45.64462768131654],[-122.76716346088232,45.64465753603618],[-122.76715350485401,45.64467857274558],[-122.76714922887327,45.64468923397128],[-122.76714556554354,45.64470010055664],[-122.76714243042321,45.64471111221186],[-122.76713978578299,45.64472221681146],[-122.7671376352162,45.64473336662606],[-122.76713603262175,45.64474451518242],[-122.76713507950923,45.64475561349519],[-122.76713493308381,45.644766605043],[-122.76713563287144,45.6447762903143],[-122.76713716539732,45.64478577210664],[-122.76713958905194,45.64479497003398],[-122.76714300893822,45.64480378863807],[-122.76714724898638,45.64481185487747],[-122.76715645222644,45.64482739387772],[-122.76716929723672,45.64485367885023],[-122.76717668587992,45.64486612674673],[-122.76717984345815,45.64487239559703],[-122.76718233179146,45.64488013023446],[-122.76718338282036,45.64488805515944],[-122.76718297857848,45.6448959480545],[-122.7671810166579,45.64490357655411],[-122.76717790579208,45.64491001684832],[-122.76717391457727,45.6449161324581],[-122.76716770272708,45.64492382501249],[-122.76716004009769,45.64493044742865],[-122.76715042812415,45.64493538236854],[-122.76713924589554,45.64493841630753],[-122.7671270602487,45.64493925282307],[-122.7671149536536,45.64493781090138],[-122.76710244730823,45.64493472923321],[-122.76706266811081,45.64492176512374],[-122.7670484980855,45.64491803031918],[-122.76703286290798,45.64491526140138],[-122.76701684774311,45.64491368194375],[-122.76700075442481,45.6449131914641],[-122.76698488478698,45.64491378619427],[-122.76696956042656,45.64491556284855],[-122.76695514965274,45.64491872553171],[-122.76694518733625,45.64492209357552],[-122.76693573705948,45.64492610596238],[-122.76692759742468,45.64493007815599],[-122.76691988359134,45.64493452387239],[-122.76691043690779,45.64494145150242],[-122.76690197477782,45.64494930608107],[-122.7668944073699,45.64495786905901],[-122.76688770773451,45.64496697840806],[-122.7668819136009,45.64497651543338],[-122.76687712378381,45.64498639786486],[-122.76687301039811,45.64499774859135],[-122.76686336788187,45.64503211664799],[-122.76685918442759,45.64504309558124],[-122.76685352234635,45.64505351809246],[-122.76684625587401,45.64506288051535],[-122.76683765181023,45.6450717687867],[-122.7668188294101,45.64508901716626],[-122.76680972678129,45.64509779678726],[-122.76679818612484,45.64511044119752],[-122.76678234343652,45.64512862153583],[-122.76677520452495,45.64513789414035],[-122.76676867017954,45.64514791282201],[-122.76676272153574,45.64515791894164],[-122.76675808892384,45.64516580300655],[-122.76675395218194,45.64517366885796],[-122.76675087814705,45.64518167161491],[-122.76674920817895,45.64519140956746],[-122.7667494480291,45.64520138553476],[-122.76675130035522,45.64521143686171],[-122.76675458998581,45.64522140403329],[-122.76675924415727,45.64523112502261],[-122.76676439150387,45.64523942607671],[-122.76677537250988,45.64525578514093],[-122.7667799512229,45.64526420676948],[-122.76678353639919,45.6452740495855],[-122.76678575793291,45.64528425664606],[-122.76678702455746,45.64529469041665],[-122.76678768212423,45.64530522529495],[-122.76678882208633,45.6453361686233],[-122.76679154847322,45.6453601253242],[-122.76679119813026,45.64536842070711],[-122.76678917692087,45.64537641213205],[-122.76678520726563,45.64538382264688],[-122.76678081360556,45.64538887686862],[-122.766775466833,45.64539366418585],[-122.76676786439076,45.64539951283875],[-122.76675939866752,45.64540510714723],[-122.76675012535884,45.64541023924026],[-122.76674003997314,45.64541467173037],[-122.76672804656577,45.64541858988055],[-122.76670264490448,45.64542546846598],[-122.76668956004406,45.64542962274683],[-122.76666290074138,45.64543917853366],[-122.76664974850732,45.64544478916639],[-122.76663871899223,45.64545064911812],[-122.76660683598618,45.64547016323655],[-122.76659536270337,45.64547613622723],[-122.76658204697591,45.64548165705102],[-122.76656781766181,45.64548644373235],[-122.76655296222197,45.64549072298233],[-122.76650711670142,45.64550241649925],[-122.76649222353235,45.64550652053373],[-122.76647799781151,45.64551104470543],[-122.76646481144147,45.64551622012132],[-122.76645313154613,45.64552232687279],[-122.76644303987223,45.64552989813839],[-122.76643504037462,45.64553844155927],[-122.76642913754489,45.6455476186388],[-122.76642595661048,45.64555536574314],[-122.76642421657377,45.64556314047875],[-122.76642392372297,45.64557074439522],[-122.76642517238123,45.64557797590221],[-122.7664281449065,45.64558461896532],[-122.76643424716222,45.64559187370676],[-122.7664495562513,45.64560549141668],[-122.76645681104554,45.64561257345346],[-122.76646730965625,45.6456241495076],[-122.76647761962076,45.6456346573197],[-122.76648328529525,45.64564111511407],[-122.76648862937289,45.64564806149692],[-122.76649504783559,45.64565770767942],[-122.76650100636088,45.64566782235314],[-122.76651805907991,45.64569906378409],[-122.76652406521589,45.64570920985061],[-122.76653053578089,45.64571893640739],[-122.76654048282604,45.64573229472],[-122.7665449582328,45.64573908723011],[-122.76654967708298,45.64574863417206],[-122.76655317242775,45.64575870486898],[-122.76655572813472,45.64576915236729],[-122.76655756698612,45.64577985294978],[-122.76655885247528,45.6457906985994],[-122.76655970677309,45.64580159323134],[-122.76656042003546,45.64582315138308],[-122.76656035984831,45.64583361456946],[-122.76655962772138,45.64585344569674],[-122.7665600750824,45.64586279605385],[-122.76656159413355,45.64587001810306],[-122.76656621955894,45.6458857734712],[-122.76656843121114,45.64589450900706],[-122.76657008950116,45.64590341159055],[-122.76657088810346,45.64591240774518],[-122.76657047757335,45.64592142650651],[-122.766568604586,45.64593052690687],[-122.76656571740067,45.64593962290971],[-122.76655926120876,45.6459579700278],[-122.76655685192716,45.64596730843537],[-122.76655556464134,45.64597810694851],[-122.76655560237057,45.64598897956386],[-122.76655661746685,45.64599977304876],[-122.76655833953727,45.64601031470251],[-122.76656056646084,45.64602040105244],[-122.76656315271053,45.6460297802698],[-122.76656600845483,45.64603813458577],[-122.76656850127975,45.64604365095818],[-122.76657200830262,45.64604838483925],[-122.76657806294763,45.64605289263913],[-122.76658592320635,45.64605663050806],[-122.7665949647497,45.64605976612271],[-122.76660462613059,45.64606242194358],[-122.76661422822265,45.64606458478268],[-122.766623634482,45.64606608382359],[-122.76663255026119,45.64606659313326],[-122.76664066384483,45.64606573088646],[-122.76664823484607,45.64606303738559],[-122.76665516534847,45.64605911362851],[-122.76666208507112,45.64605473896555],[-122.76666820888639,45.64605122529333],[-122.7666744090585,45.64604808465419],[-122.76667981511984,45.64604576858187],[-122.7666852526223,45.64604424379231],[-122.76669087338101,45.64604382428679],[-122.76669644024084,45.64604460552167],[-122.76670287127993,45.64604727139128],[-122.76670839502063,45.64605151417432],[-122.7667126665098,45.64605700982136],[-122.7667152698275,45.64606350775916],[-122.76671584474927,45.64607170695361],[-122.76671445595386,45.64608059694893],[-122.76671172777034,45.64608990896],[-122.76670818750981,45.64609940999802],[-122.76670047547307,45.64611812946863],[-122.76669713913012,45.64612690830032],[-122.76669471188224,45.64613496555718],[-122.76669374888824,45.64614011202735],[-122.76669342190146,45.64614456141574],[-122.76669384231303,45.6461520471891],[-122.76669336440931,45.64615523806251],[-122.76669170791591,45.64615801633905],[-122.76668879378114,45.64616002280225],[-122.76668490138101,45.64616135479232],[-122.76668049424623,45.64616195704524],[-122.76667595685574,45.64616184902908],[-122.76666687848146,45.64616117141603],[-122.76666081126002,45.64616185028505],[-122.76665636819264,45.6461640451484],[-122.76665479254763,45.64616781629395],[-122.76665621008915,45.64617246036043],[-122.7666595751782,45.64617657502183],[-122.76666875416376,45.64618562702466],[-122.76667265464873,45.64619101150242],[-122.76667462555245,45.64619581382313],[-122.76667555800374,45.64620100864377],[-122.76667518340625,45.646209149414],[-122.76667330502897,45.64621741264317],[-122.76666871463789,45.64623055982887],[-122.76666724858737,45.64623564851424],[-122.76666663773295,45.64624087473116],[-122.76666694046523,45.64624615997961],[-122.76667112571614,45.64626408121338],[-122.76667230969566,45.64627176039468],[-122.76667289000733,45.64627975797072],[-122.76667266273357,45.64628791317355],[-122.76667138802419,45.64629607402719],[-122.76666843705848,45.6463054174024],[-122.76666052110419,45.64632369343673],[-122.7666571479303,45.6463326964319],[-122.7666535510759,45.64634779289912],[-122.76665152537493,45.64635513985753],[-122.76664860046037,45.64636229087943],[-122.76664172745012,45.64637624438128],[-122.76663557309213,45.64639058409865],[-122.76663217566373,45.64639706441383],[-122.76662781793627,45.64640266992666],[-122.76662286732075,45.64640670921139],[-122.76661713966251,45.64641028817314],[-122.76659968359988,45.64642032735119],[-122.76659447067631,45.64642307421467],[-122.76658913648014,45.64642534003154],[-122.7665743475156,45.64643052541091],[-122.76656922532186,45.6464332057061],[-122.76656448221718,45.6464366653466],[-122.76655981906252,45.64644141363841],[-122.76655069846743,45.64645182018955],[-122.76654482438379,45.64645654775619],[-122.76653828375024,45.64645996155139],[-122.76653058069665,45.64646254827355],[-122.76651888642829,45.64646460873359],[-122.76650626959012,45.64646518146739],[-122.76647518338972,45.64646366485326],[-122.76643991104008,45.64646290874413],[-122.76641866678195,45.64646212249117],[-122.76640910960562,45.64646202201153],[-122.76639674519406,45.64646313921927],[-122.76638541923495,45.64646598028028],[-122.76637556741122,45.64647061615808],[-122.76636643154478,45.64647637740693],[-122.76634070559169,45.64649385080501],[-122.76633392600623,45.64649996435786],[-122.76633067679987,45.64650493621128],[-122.76632926824151,45.64651014105118],[-122.76632976590815,45.64651507208391],[-122.76633189401707,45.64651983795301],[-122.76633548817649,45.64652425088747],[-122.76634037231672,45.64652821354778],[-122.76635242770783,45.64653605408801],[-122.76636096709292,45.64654234284735],[-122.76636907349004,45.64654963388863],[-122.76637614323131,45.64655785247977],[-122.76638175231196,45.64656702060034],[-122.76638601661462,45.64657679913187],[-122.76638923258332,45.64658690673165],[-122.76639162030536,45.6465970846652],[-122.76639332710438,45.64660707733804],[-122.76639443562547,45.64661661659611],[-122.76639495934326,45.64662539974569],[-122.76639466469587,45.64663306066556],[-122.7663924979594,45.64663957549242],[-122.76638716286492,45.64664523059263],[-122.76637961701651,45.64665008437002],[-122.76637114680173,45.64665471144063],[-122.76636295686126,45.64665966067248],[-122.76635755169819,45.64666380983784],[-122.7663315544539,45.64668499400068],[-122.76631944426555,45.64669376269563],[-122.76631533267648,45.64669796335406],[-122.76631363036901,45.64670289688222],[-122.76631505060548,45.64670745361307],[-122.76631848306818,45.64671057663137],[-122.76632789561575,45.64671603453403],[-122.7663319254581,45.64671926305498],[-122.76633432845148,45.64672318864984],[-122.76633504440876,45.64672754756072],[-122.76633401943103,45.64673187883948],[-122.76633110978783,45.64673572405015],[-122.76632513239791,45.64673932497069],[-122.76631730897012,45.64674258363402],[-122.76630867346528,45.64674651927514],[-122.766302532582,45.64675018299446],[-122.76629638630882,45.64675448412775],[-122.76629015289906,45.64675921166879],[-122.76628120747547,45.64676635887113],[-122.7662727812781,45.64677411145892],[-122.76626578340202,45.64678266536594],[-122.76626120109577,45.64679143781354],[-122.76625811807774,45.6468008401376],[-122.76625603757952,45.64681063244412],[-122.76625166008914,45.64684028629851],[-122.76624956162466,45.64684959378737],[-122.76624650196278,45.64685824376586],[-122.7662372636884,45.64687515059517],[-122.76623389141282,45.64688344449772],[-122.76623171479488,45.64689198645621],[-122.76623074641103,45.64690042919057],[-122.76623107878765,45.64690840281315],[-122.76623288979127,45.64691550101304],[-122.76623637705121,45.64692177528595],[-122.76624013470403,45.64692725075184],[-122.76624564047843,45.64693650421889],[-122.7662523931144,45.64694297128304],[-122.76625452481657,45.64694583304349],[-122.76625464968241,45.64694809318728],[-122.76625338934609,45.64695009836621],[-122.76625087226664,45.6469515019286],[-122.76624746675341,45.64695200369427],[-122.7662434458942,45.64695165829861],[-122.7662389318599,45.64695045506575],[-122.76622940342966,45.64694691319001],[-122.76621932073893,45.64694347116482],[-122.76621153054876,45.64694017734563],[-122.76620771809873,45.6469392240534],[-122.76620234707163,45.64693942438295],[-122.76619726170881,45.64694123614054],[-122.76619351753071,45.64694457894311],[-122.76619181073166,45.64694955829295],[-122.76619138223526,45.64695583570202],[-122.76619131126837,45.6469669210169],[-122.76619172359507,45.64697285051648],[-122.76619480930808,45.64699272080394],[-122.76619525577078,45.6470042563814],[-122.76619627535862,45.64700932678476],[-122.76619886071001,45.64701419120645],[-122.7662056968893,45.6470231884387],[-122.76620799927139,45.64702780731461],[-122.76620856610835,45.6470326723627],[-122.76620738751869,45.64704317488662],[-122.76620743063781,45.64704863652484],[-122.76620860653253,45.64705357504604],[-122.76621253037368,45.64706374033495],[-122.76621510943687,45.6470688320846],[-122.76623177408371,45.64709256887586],[-122.76623514096937,45.64709799596977],[-122.76623733735023,45.647103304373],[-122.76623787903435,45.64710810724347],[-122.76623718284004,45.64711260679421],[-122.76623416270404,45.64712024315584],[-122.76623299758913,45.64712428929675],[-122.76623276672207,45.64712863750053],[-122.76623348088273,45.64713339578155],[-122.76623548412583,45.64713948226105],[-122.76624076172813,45.64715298906849],[-122.76624297158371,45.64716146379097],[-122.76624450770284,45.64717042771611],[-122.76624560813909,45.64717964409164],[-122.76624733649768,45.64719794872825],[-122.76624929033342,45.64721332630143],[-122.76624977183042,45.6472197550263],[-122.76624930290984,45.64722531900951],[-122.76624784314751,45.64723061107293],[-122.76624440170164,45.64723714404199],[-122.76623591082559,45.64724865696158],[-122.76623287541821,45.64725391825134],[-122.76623167706565,45.64725861183887],[-122.76623089373474,45.64726722407487],[-122.76622931808974,45.64727095809481],[-122.76622654499045,45.64727376771546],[-122.76621837840619,45.64727955400119],[-122.76621329933158,45.64728366795332],[-122.76620864875335,45.6472884990678],[-122.76620499081349,45.64729400464128],[-122.76620305674071,45.64729906497056],[-122.766202128781,45.6473044279897],[-122.76620207937366,45.64731065951588],[-122.76620258512516,45.64732505111705],[-122.76620225274851,45.64733326205859],[-122.76620136790798,45.64734165637135],[-122.76619983897534,45.64735005193887],[-122.76619610647535,45.64736489882083],[-122.7661947095951,45.6473735405559],[-122.76619433499761,45.64738225136821],[-122.76619518749879,45.64739085730535],[-122.76619754018655,45.64739917687901],[-122.76620149187546,45.64740689044398],[-122.76620675061315,45.6474140808948],[-122.76621290407284,45.64742066408138],[-122.76621958394529,45.64742652508242],[-122.76623329403316,45.64743688058361],[-122.7662380515109,45.64744186491363],[-122.76624028382439,45.64744790740055],[-122.76623902528468,45.64745396809841],[-122.76623443399525,45.64745959925293],[-122.76622212977082,45.64746962317123],[-122.76620543458127,45.64748218666389],[-122.7662005459495,45.64748644503791],[-122.76619157357642,45.64749504153922],[-122.76618766680325,45.64749938092246],[-122.7661845370728,45.6475039206329],[-122.76618211251984,45.64750854009712],[-122.76617757063778,45.64751863245714],[-122.76617402408904,45.64752394772835],[-122.76616949208844,45.64752901054879],[-122.76616421089285,45.64753357914415],[-122.76615130659381,45.64754217752223],[-122.76614620865459,45.64754663433506],[-122.76614333404565,45.6475513624373],[-122.76614209796384,45.64755647486611],[-122.76614233152581,45.6475615590351],[-122.76614393052704,45.64756620173009],[-122.76614698479898,45.64757049777686],[-122.76615026095483,45.64757443335981],[-122.76615238547048,45.64757868607494],[-122.76615247260706,45.64758228945323],[-122.76615111076107,45.647586199916],[-122.76614666499874,45.64759187941203],[-122.76613972461485,45.6475974251467],[-122.76613076571651,45.64760251621984],[-122.76612011798547,45.64760680472802],[-122.7661086950083,45.64760991136858],[-122.76609644378445,45.64761235108921],[-122.76607123615926,45.64761673316634],[-122.76605911698778,45.64761942031262],[-122.76604789613157,45.6476229665417],[-122.76603995412613,45.64762656175334],[-122.76603264992457,45.64763072026684],[-122.76602579847388,45.64763522103159],[-122.76601962884452,45.64763968034901],[-122.76601398383127,45.64764446307797],[-122.76600680539383,45.64765250064909],[-122.76599436372715,45.64767023554963],[-122.76598742154665,45.64767905746897],[-122.76598204243471,45.64768470430045],[-122.76596772328911,45.64769879060545],[-122.7659505744503,45.64771684073914],[-122.76594226683055,45.64772629691441],[-122.76593437333415,45.64773597476617],[-122.76592710596351,45.64774584666313],[-122.76592071894184,45.64775589878947],[-122.76591569017289,45.6477654121046],[-122.76590672408803,45.64778421830805],[-122.76589234565361,45.64781139551221],[-122.76588767800739,45.64781935393357],[-122.76588187039906,45.64782646143778],[-122.76587446558619,45.64783239335834],[-122.76586582289484,45.64783759870284],[-122.76584760775582,45.64784728093128],[-122.76583939984906,45.64785244608363],[-122.76583275051934,45.64785829699174],[-122.76582810173774,45.64786525440334],[-122.76582506183881,45.64787295660044],[-122.76582070231474,45.64788925021346],[-122.76581790136768,45.64789719543615],[-122.76581366670943,45.64790455914685],[-122.76580744946935,45.64791108198964],[-122.76579980480628,45.64791693163565],[-122.76578509579181,45.64792628353229],[-122.76577860726053,45.64792984104561],[-122.76577191750661,45.64793276241383],[-122.76576533105894,45.64793475185795],[-122.76575872215341,45.64793601975175],[-122.76574582863412,45.64793725185059],[-122.76573698112691,45.64793835772524],[-122.76572833574059,45.64794016128682],[-122.76572059855104,45.64794284904554],[-122.76571495982603,45.64794611957051],[-122.76571084374538,45.64794992073918],[-122.76570848297283,45.64795390402202],[-122.7657080410017,45.64795839031724],[-122.7657090812508,45.64796226809872],[-122.76571008377064,45.64796473606314],[-122.7657104565715,45.6479669779544],[-122.76570967054563,45.64796914134796],[-122.76570774006609,45.64797114209445],[-122.76570472981156,45.647972652388],[-122.76570047000048,45.64797346059908],[-122.76568566217134,45.64797380473251],[-122.76567717039697,45.64797527546317],[-122.76566854567193,45.64797855603393],[-122.76566124147034,45.6479835378038],[-122.76565535301367,45.64799016425414],[-122.76565133754433,45.64799797193477],[-122.76564868392097,45.64800676365945],[-122.76564691962979,45.64801622794952],[-122.76564292931326,45.64804625292978],[-122.76564076437343,45.64805612791196],[-122.76563751157381,45.64806561103308],[-122.76563254838184,45.64807527815057],[-122.7656269788271,45.64808462499695],[-122.76562197970253,45.64809401580027],[-122.76561883470072,45.64810240371922],[-122.76561662664174,45.64811088708978],[-122.7656121521333,45.64813472203213],[-122.76561031328193,45.64814128943457],[-122.76560777104969,45.64814665174509],[-122.76560384361527,45.64815113048908],[-122.76559991887578,45.648154632726],[-122.76559741257614,45.6481582410911],[-122.76559718799733,45.64816116370334],[-122.76559824800937,45.64816439088506],[-122.76560050727231,45.64816777254925],[-122.76560829207256,45.64817735550004],[-122.76561269202081,45.64818406356461],[-122.76561579570011,45.64819142472573],[-122.76561672096487,45.64819695344567],[-122.76561648470795,45.6482026171803],[-122.76561460902562,45.64820969826084],[-122.76561137778555,45.64821664432517],[-122.76560724463695,45.64822332538195],[-122.76559840341791,45.64823487012573],[-122.76559461432404,45.64824026445413],[-122.76559093123139,45.64824802939746],[-122.76558825964172,45.64825656047221],[-122.76558390281259,45.64827451936945],[-122.76558120966337,45.64828328216375],[-122.76557745650213,45.64829144272669],[-122.76557202438958,45.6482986173645],[-122.76556471839139,45.64830441924384],[-122.76555611253096,45.64830944871097],[-122.76554711770001,45.64831424833817],[-122.76553862502732,45.64831935316164],[-122.7655315597776,45.64832532019668],[-122.76552658490756,45.64833266438388],[-122.76552338690517,45.6483411401838],[-122.7655213674924,45.6483504518191],[-122.76551778680768,45.64838014190898],[-122.76551609078842,45.64839940946834],[-122.76551602610971,45.6484091186026],[-122.76551690017048,45.64841882145543],[-122.76551908936484,45.64842907818107],[-122.76552221460371,45.64843931983335],[-122.76552935800684,45.64845990046852],[-122.76553245629626,45.64847032297201],[-122.76553457632035,45.64848015517711],[-122.7655359264882,45.64849007592495],[-122.76553652746112,45.64850004565304],[-122.76553635767957,45.64851002605492],[-122.76553531653214,45.64852051574238],[-122.76553349205378,45.64853094765418],[-122.76553097677099,45.64854128787983],[-122.76552781380289,45.64855149748499],[-122.76552399775954,45.64856152874357],[-122.76551947564042,45.64857132451016],[-122.76551414683414,45.64858081256784],[-122.76549673928056,45.64860634409483],[-122.76549013306997,45.64861650659006],[-122.76547088486838,45.64864710772789],[-122.76545946817942,45.64866473807005],[-122.76545482748269,45.64867245334469],[-122.76544965498327,45.64868312825367],[-122.76543677763368,45.64871629713398],[-122.76542710457468,45.64873713074016],[-122.76542243513185,45.64874810894727],[-122.76540553961796,45.64879298317852],[-122.76540091958245,45.64880404489489],[-122.76539577043927,45.64881487174784],[-122.76537266127858,45.64885638691015],[-122.765362835506,45.64887179919439],[-122.7653569174049,45.6488819308709],[-122.7653513936642,45.64889234324836],[-122.76533568572319,45.64892426988015],[-122.76533026618706,45.64893483359047],[-122.76532450798608,45.64894519760441],[-122.76531824223697,45.64895524888752],[-122.76530672493671,45.64897147938879],[-122.76530131168883,45.64897956763499],[-122.76529610954502,45.64898873410323],[-122.76527715329588,45.64902644427355],[-122.76527332198123,45.64903600258665],[-122.76527104834521,45.64904462145699],[-122.76526789975014,45.64906177253413],[-122.76526582104859,45.64907011007074],[-122.76526257902871,45.64907814618129],[-122.76525672111477,45.64908716506091],[-122.76524148389089,45.6491049911906],[-122.7652353232447,45.64911260844158],[-122.76522957133193,45.64912056291024],[-122.76522438984935,45.64912883324549],[-122.76521940509785,45.64913834318765],[-122.76521036714777,45.64915797596321],[-122.76519432503342,45.64919065474805],[-122.76518950647026,45.64920171826977],[-122.76518548381442,45.64921273971557],[-122.76517554575243,45.64924572554403],[-122.76517207735711,45.64925635575815],[-122.76516809512545,45.64926660667873],[-122.76516330081679,45.64927632822198],[-122.7651553210821,45.64928916196271],[-122.76515041538232,45.64929759177642],[-122.76514586631374,45.64930638832087],[-122.76514167657128,45.6493154712162],[-122.76513786591782,45.64932477327006],[-122.76513447118435,45.64933423670948],[-122.76512399862479,45.64936827556373],[-122.76511958699842,45.64937934721395],[-122.76511442078724,45.64938950705709],[-122.76510315411693,45.64940955671307],[-122.76509831668913,45.64941978751069],[-122.76509464707119,45.64943057342695],[-122.76509203746528,45.64944164004111],[-122.76509012674869,45.64945289253046],[-122.76508550491654,45.64948694136006],[-122.76508334177333,45.64949812350836],[-122.76508031624746,45.64950907519188],[-122.76507602050378,45.64951968714507],[-122.76507030452362,45.64952967238895],[-122.76506349798869,45.64953936500032],[-122.76504868836295,45.6495584255611],[-122.76504165814752,45.64956805097545],[-122.76503553702717,45.64957791313007],[-122.76503092956808,45.64958751405049],[-122.76502716472874,45.64959732784855],[-122.76502053965352,45.64961713503674],[-122.76501689429008,45.64962690173245],[-122.76501248356203,45.64963641472986],[-122.76500756977744,45.64964467682543],[-122.76500184571243,45.64965261175171],[-122.76499545599582,45.64966019564625],[-122.76497748519859,45.64967921220865],[-122.76496992587545,45.6496886931711],[-122.76494863580324,45.6497173231812],[-122.76494209696628,45.64972705783345],[-122.76493638188444,45.64973711211612],[-122.7649214339181,45.64976794938284],[-122.7649160718742,45.64977797163212],[-122.7649059640306,45.6497944260768],[-122.76490126404502,45.64980269631259],[-122.76489670419666,45.64981260740676],[-122.76488519498123,45.64984299815255],[-122.76488050038556,45.64985284393181],[-122.76487556504138,45.6498609910789],[-122.76486986882416,45.64986881859348],[-122.76486356265087,45.64987629947345],[-122.76485239210031,45.64988829977485],[-122.76484456238433,45.64989776814271],[-122.76483745850702,45.64990781925494],[-122.76483114604554,45.64991834510219],[-122.76482591066407,45.64992868444381],[-122.76481166068869,45.64996050310398],[-122.7648063121195,45.64997096363374],[-122.76480082161648,45.64998021973778],[-122.76478286519227,45.65000707185019],[-122.764777271383,45.65001583625734],[-122.76476693626567,45.65003367465061],[-122.76476156883184,45.65004204971998],[-122.7647474904347,45.6500602673911],[-122.76473520687151,45.65007849321973],[-122.76473034159595,45.65008442552972],[-122.7647197603402,45.65009649737365],[-122.76471279300684,45.65010547401618],[-122.76469273272825,45.65013405922834],[-122.76468545727278,45.65014337684515],[-122.76467408370294,45.65015632718708],[-122.7646686282342,45.65016291193523],[-122.76466210466863,45.65017219752152],[-122.76464458033406,45.65020164111506],[-122.76463797322516,45.65021135810036],[-122.76463158530515,45.65021938902353],[-122.76461773957169,45.6502353296711],[-122.76460928013667,45.65024552578038],[-122.76460104617877,45.65025597683752],[-122.76456856399641,45.65029870351207],[-122.7645600533574,45.65030923933318],[-122.76455112769675,45.65031954783281],[-122.76454160735136,45.65032951535142],[-122.76453259275749,45.65033796447513],[-122.76452316583689,45.65034613604186],[-122.7644852281858,45.65037744519445],[-122.76447664029169,45.65038518283947],[-122.76446758168038,45.65039397481741],[-122.76445843683078,45.65040242330348],[-122.7644492820997,45.65040962781266],[-122.76443020906962,45.65042368329065],[-122.7644070873325,45.65044255202487],[-122.76439660129822,45.65045037255067],[-122.7643855816646,45.65045803797107],[-122.76437405807613,45.65046544781366],[-122.76436202514292,45.65047248151163],[-122.76434943705085,45.65047899212421],[-122.76433760174697,45.65048433034876],[-122.76430138796292,45.65049936980928],[-122.76426862820115,45.65051463721242],[-122.76425501602961,45.65052035032097],[-122.76422748086955,45.65053108202143],[-122.76421413909094,45.65053651254992],[-122.764201494405,45.65054226207744],[-122.76418517560954,45.65055072247215],[-122.76414959334117,45.6505679823517],[-122.76411811906856,45.65058434111566],[-122.76410567470691,45.65058999832942],[-122.76409271111905,45.65059521283695],[-122.76407930735668,45.65059996266014],[-122.76406551192886,45.650604196935],[-122.76405134729347,45.65060783088826],[-122.76403692843485,45.65061079795721],[-122.76402227511593,45.65061331604104],[-122.76399272952622,45.65061794027247],[-122.76397805015618,45.65062048975354],[-122.76396357739866,45.65062350015047],[-122.76394923759177,45.65062718182676],[-122.76393512955021,45.65063136774732],[-122.76389336417773,45.65064502002527],[-122.76387937022223,45.65064932148746],[-122.76386520738345,45.65065317208077],[-122.76384919132026,45.65065676333025],[-122.76380100029853,45.65066565699352],[-122.76377512253015,45.65067074653187],[-122.76376228380811,45.65067280432537],[-122.7637493534579,45.65067406399384],[-122.76373521577196,45.65067421846963],[-122.76372087596506,45.65067334059501],[-122.76370636817322,45.65067172990225],[-122.76369171665094,45.65066964008325],[-122.76364699402451,45.65066259447897],[-122.76363181069959,45.65066062711],[-122.76361552514183,45.65065904216281],[-122.76359910214178,45.65065788171019],[-122.76358258481865,45.65065700634711],[-122.76353282444015,45.65065492971451],[-122.76351626579451,45.65065406942218],[-122.76346878444184,45.65065084740755],[-122.76345305583953,45.65064999213879],[-122.7634373784412,45.65064952243166],[-122.76342175853503,45.65064963483486],[-122.76340743310118,45.65065037895639],[-122.76339313012522,45.65065157645822],[-122.76335002446633,45.65065580382175],[-122.76333347570217,45.65065692157376],[-122.76331681285194,45.65065768013806],[-122.76328326526767,45.6506584594247],[-122.76321598684277,45.65065876649253],[-122.76318273390591,45.65065910935353],[-122.76316636929639,45.65065953635988],[-122.7631502840629,45.65066024782786],[-122.7631345860033,45.65066135992826],[-122.76311941974636,45.65066302085737],[-122.76310496585344,45.65066542088412],[-122.76309146058145,45.6506687992576],[-122.76308268763441,45.65067181279169],[-122.76306070496108,45.65068029388922],[-122.76304679544721,45.65068535454055],[-122.76303245743696,45.65069012821819],[-122.76301780411805,45.65069436939367],[-122.76300293610178,45.65069778230263],[-122.7629879432197,45.6506999964547],[-122.76297285421789,45.6507006357079],[-122.76295804369379,45.65069956944866],[-122.76294731780929,45.65069766424802],[-122.76293667097656,45.65069512293387],[-122.76292343609745,45.650691542362],[-122.76291019672679,45.65068747701236],[-122.76289722864738,45.65068281196992],[-122.76288702019247,45.65067852181341],[-122.7628636002147,45.65066783409775],[-122.76285049648965,45.6506615891302],[-122.76283806380611,45.65065514070593],[-122.76282678096617,45.65064835130369],[-122.76281723546792,45.65064104007356],[-122.76281016213339,45.6506329740456],[-122.76280622212256,45.65062439058487],[-122.7628043437453,45.65061512579601],[-122.76280249501245,45.65058534144222],[-122.76280050883734,45.65057530489446],[-122.76279718327416,45.6505664118448],[-122.7627926656466,45.65055762428956],[-122.76278737187462,45.65054889701636],[-122.76276270413695,45.65051095301693],[-122.76275092991852,45.65049505200886],[-122.7627453630587,45.65048695393428],[-122.76273985099611,45.65047726525464],[-122.76273511597626,45.65046724564225],[-122.76272280726022,45.65043652869957],[-122.76271848456707,45.65042648961335],[-122.76271361300327,45.65041677266538],[-122.76270788983662,45.65040753610004],[-122.76270282603335,45.6504008640951],[-122.7626921127253,45.65038774489018],[-122.76268529900385,45.65037820690228],[-122.76267899911876,45.6503682921405],[-122.76266687994725,45.6503481103294],[-122.76266053334979,45.65033822758788],[-122.76265361542377,45.65032875929447],[-122.76264580097913,45.65031994156016],[-122.76263744934194,45.65031233703249],[-122.7626286961578,45.65030504145734],[-122.76262026097729,45.65029755561105],[-122.76261197222217,45.65028874540726],[-122.7625904512829,45.65026316064305],[-122.76258386753018,45.65025482642386],[-122.76257780749529,45.65024634400598],[-122.76257257480873,45.65023768199161],[-122.76256836620163,45.6502288717784],[-122.76256115811979,45.65021113203636],[-122.76255707168355,45.65020246059719],[-122.7625524238003,45.65019451570153],[-122.76254229799041,45.65017869058622],[-122.76253747942722,45.65017014724507],[-122.76252819983034,45.65015262287341],[-122.76252305248376,45.65014389428117],[-122.76251694483814,45.65013497541679],[-122.76249659260708,45.65010882353742],[-122.76249016516121,45.65010011628887],[-122.7624844473844,45.65009132112501],[-122.76247462161184,45.6500725075327],[-122.76246943024782,45.65006326211917],[-122.76246298303903,45.65005404621815],[-122.76245571027847,45.65004506517165],[-122.76244067517558,45.65002739067896],[-122.7624338830137,45.65001850444982],[-122.7624245252634,45.65000425106344],[-122.76240487012497,45.64997704415328],[-122.76238910918333,45.64995232268956],[-122.76238317491254,45.64994445813708],[-122.76237749486502,45.64993813271015],[-122.76236530742156,45.64992564009975],[-122.76235823498531,45.64991775921659],[-122.76235142934873,45.64990957942391],[-122.76231974397203,45.64986983337588],[-122.76231320603338,45.64986021178116],[-122.7622959269389,45.64983059406326],[-122.76228985702251,45.64982109616994],[-122.76228422189075,45.64981341307951],[-122.76227825078905,45.64980614444165],[-122.76226225359046,45.64978880269256],[-122.76224933761331,45.64977168637584],[-122.762240145153,45.64976082956579],[-122.76223331885515,45.6497519231996],[-122.76220607924081,45.64971142348632],[-122.76219835911927,45.64970105207859],[-122.76218979458133,45.64969092996968],[-122.76218069824077,45.64968168198133],[-122.76217085180694,45.64967270715475],[-122.76216051489295,45.64966390124844],[-122.76212873339654,45.64963757583156],[-122.7621185465012,45.6496285206188],[-122.7621084144031,45.64961874827167],[-122.76209873864919,45.64960872285409],[-122.76208939617024,45.64959851846537],[-122.76204466006909,45.6495468088744],[-122.76203559876284,45.64953671813575],[-122.7620263119794,45.6495268766967],[-122.76201668922607,45.64951739193909],[-122.76200659306062,45.64950840013117],[-122.76199584831149,45.64950007584707],[-122.76196912253349,45.649482459583],[-122.76195811008641,45.64947485808144],[-122.76194736084572,45.64946702737197],[-122.76193700686376,45.64945898440959],[-122.76191767691546,45.6494431659941],[-122.7619074567825,45.64943571519861],[-122.76189716927585,45.64942939787772],[-122.76188621252433,45.64942350631603],[-122.76185170823427,45.64940666179637],[-122.76184038407179,45.64940078655938],[-122.76182797294783,45.6493936993498],[-122.76180386306392,45.64937903009165],[-122.76179167382385,45.64937197239372],[-122.76177906147726,45.64936546856004],[-122.76176795830033,45.64936056226887],[-122.76173398850784,45.64934684688127],[-122.76172321052108,45.64934173461587],[-122.76171079760049,45.64933460595311],[-122.76169894792358,45.64932678275966],[-122.76167594476411,45.64931086383231],[-122.76165280236575,45.64929565073405],[-122.76164102275743,45.6492883682138],[-122.76162913714791,45.64928143923745],[-122.76161716170685,45.64927499881783],[-122.76160510811235,45.64926921901785],[-122.76159298085602,45.6492643127183],[-122.76156623621338,45.64925580565968],[-122.76152453012971,45.64924083117373],[-122.76149258424155,45.64922750132834],[-122.76144399346951,45.64920890158254],[-122.76143200994365,45.64920376544182],[-122.76142055103386,45.64919824435685],[-122.76140937419513,45.64919240740396],[-122.7613635125049,45.64916789533504],[-122.76135212276542,45.64916133558856],[-122.76134149749224,45.64915425525637],[-122.76133135641099,45.64914598680871],[-122.76132208489896,45.64913707846086],[-122.76131333530809,45.64912775816477],[-122.76129617119794,45.64910865349965],[-122.76128716918049,45.6490992182807],[-122.76127764164859,45.64909011085951],[-122.76126766046747,45.64908122448167],[-122.76123694527125,45.64905518012088],[-122.7612134318687,45.6490342028282],[-122.76120373904678,45.64902622762427],[-122.76119351352392,45.64901846592867],[-122.76118292148841,45.6490108530607],[-122.76113969186198,45.64898087632314],[-122.76112933787999,45.64897327035769],[-122.76111946000516,45.64896552372604],[-122.76110542113388,45.64895374678412],[-122.76109612446902,45.64894634678905],[-122.76106733436247,45.64892452546393],[-122.76105810596957,45.64891711478951],[-122.76104427101585,45.64890530518297],[-122.76103489529923,45.648897725582],[-122.76100563986539,45.64887524989263],[-122.76099621204648,45.64886758613955],[-122.76098732052181,45.6488596969439],[-122.76097867693213,45.6488510730213],[-122.76096243449349,45.64883363740883],[-122.76094920230933,45.64881988170203],[-122.76093233913483,45.6488012968922],[-122.76092353744167,45.64879293419676],[-122.76091408716491,45.6487849570746],[-122.76090425869737,45.64877736678182],[-122.76088070576894,45.64876048124969],[-122.7608715465463,45.64875279612987],[-122.7608626783778,45.64874496029569],[-122.76084971568825,45.64873417864325],[-122.76084346341389,45.64872863113717],[-122.76082160650472,45.64870618238276],[-122.76081225953418,45.6486982222035],[-122.7607923546641,45.64868273765464],[-122.76078273730067,45.6486747259783],[-122.76077275791617,45.64866686689817],[-122.76076282973565,45.64866024052789],[-122.76073040145224,45.64864092030855],[-122.76071878533727,45.64863314537209],[-122.76069588099247,45.6486170667424],[-122.76067220319821,45.64860154951648],[-122.76066080088233,45.6485935849265],[-122.7606358142427,45.6485742703359],[-122.76062481976193,45.64856629129869],[-122.76061346775171,45.64855839012912],[-122.76058994626432,45.64854292124095],[-122.76057785314393,45.64853542322763],[-122.76056556239422,45.64852814688828],[-122.76055307132019,45.64852115627637],[-122.76054036824375,45.64851453428471],[-122.76052219173228,45.64850561767276],[-122.76050960094527,45.64849895109303],[-122.76049732726355,45.64849187381693],[-122.76048537517869,45.64848445743355],[-122.76047377164018,45.64847675029669],[-122.76046256785195,45.64846878003724],[-122.76045184286576,45.64846055544665],[-122.76044170537777,45.64845206647733],[-122.76042813273216,45.64843971859776],[-122.76041791798909,45.64843086351553],[-122.76040721096919,45.64842212837521],[-122.76038475488373,45.64840491995642],[-122.76034956248415,45.64837950890907],[-122.76024128854296,45.64830407134461],[-122.76020590120896,45.64827876072783],[-122.76018322054468,45.64826167534856],[-122.76017236440445,45.64825302621483],[-122.76016197179494,45.64824427848724],[-122.76014314310659,45.64822763833373],[-122.76013327870645,45.64821977353908],[-122.76012514356324,45.64821412236572],[-122.7600961881667,45.64819585887975],[-122.76007302061552,45.6481803679122],[-122.76006175753849,45.64817229964592],[-122.76005085468587,45.64816399274667],[-122.76004045578817,45.64815540765164],[-122.76003073781338,45.64814648407474],[-122.7600220439181,45.648137455624],[-122.76000554905286,45.64811893715353],[-122.75997311717613,45.64808433738237],[-122.75996543208888,45.64807562730719],[-122.75995827700764,45.64806679226271],[-122.75994508704433,45.64804836419801],[-122.75993820864419,45.64803927230544],[-122.75993001870377,45.64802990724009],[-122.75992109124647,45.64802074815068],[-122.75990230388062,45.64800254363178],[-122.75989304045341,45.64799324575421],[-122.75988440584686,45.64798391522012],[-122.75986810501774,45.64796464312195],[-122.75982955651227,45.64791509227844],[-122.75981383240153,45.64789547476676],[-122.75980567569876,45.64788585911271],[-122.75979722614521,45.64787644064329],[-122.75977040604407,45.64784839183154],[-122.75976225383286,45.6478389042778],[-122.75975595125283,45.64783053076294],[-122.75973901351816,45.64780505100493],[-122.7597332400458,45.64779677921823],[-122.75972202547781,45.64778200592466],[-122.75970759853436,45.64776169884103],[-122.75970086745792,45.64775304711816],[-122.75967918122863,45.64772716667144],[-122.75967216538626,45.64771840127818],[-122.75965269260587,45.6476918243814],[-122.75964590583389,45.64768318395146],[-122.7596251053435,45.64765885522137],[-122.75960176172254,45.64762931860545],[-122.75959370473272,45.64761957668078],[-122.75958524619604,45.64761007087669],[-122.75956282244991,45.64758671925957],[-122.75955445733797,45.64757663319168],[-122.75954675069114,45.64756623815325],[-122.7595253177868,45.64753464546371],[-122.75951809802686,45.64752444320908],[-122.75951054229701,45.6475146591911],[-122.75949950110385,45.64750149095531],[-122.75949449658937,45.6474947689933],[-122.75948880666037,45.64748489516816],[-122.75948430789742,45.64747444170997],[-122.75948064726265,45.64746357943071],[-122.75947752471872,45.64745245276699],[-122.75946884160319,45.64741875374533],[-122.7594653444618,45.64740784121631],[-122.75946106758272,45.64739733813276],[-122.75945564355504,45.64738743979894],[-122.75944862052614,45.6473783892463],[-122.75944092645572,45.64737134511196],[-122.75943211488111,45.64736490384477],[-122.75940344964039,45.64734694779583],[-122.75939453296289,45.64734074076526],[-122.75938607352785,45.6473338360395],[-122.75936985624203,45.64731993489918],[-122.7593468207432,45.64730321346062],[-122.75933756001095,45.64729586725446],[-122.7593282534646,45.64728790624682],[-122.75931877623836,45.64728020082929],[-122.75929523408969,45.6472638750117],[-122.75928592933998,45.64725690056972],[-122.75927751661736,45.64724988342365],[-122.75927048909688,45.64724294728722],[-122.75926545583633,45.64723622780615],[-122.75926317321721,45.64722988197772],[-122.75926389186945,45.64722494033212],[-122.75926674671541,45.64722065367871],[-122.75927130836041,45.64721730147281],[-122.7592785362052,45.64721467647813],[-122.75929467443927,45.64721103100091],[-122.75930151780513,45.6472081070831],[-122.75930518382977,45.64720487607838],[-122.75930758502655,45.64720081801153],[-122.75930860012282,45.64719615895859],[-122.75930812311739,45.64719110175991],[-122.75930627707949,45.64718582853243],[-122.75930320124793,45.64718050883324],[-122.75929905642123,45.64717525507245],[-122.75928915519016,45.647164523985],[-122.75927454139712,45.64714791616623],[-122.75926305374128,45.64713617526555],[-122.75925748688145,45.64713003101061],[-122.75925151577978,45.64712225146856],[-122.75923452953606,45.64709712745892],[-122.75922692439887,45.64708751606379],[-122.75921855569368,45.64707799886558],[-122.75920967405047,45.64706855074472],[-122.75918201851611,45.64704037593024],[-122.7591730712959,45.64703096108664],[-122.75916456335183,45.64702149223411],[-122.75914748188671,45.64700166654431],[-122.75913942579525,45.64699358240847],[-122.759113508501,45.64696998812945],[-122.7591052511869,45.64696190273304],[-122.75909759754067,45.6469535699066],[-122.75908290828914,45.64693651740672],[-122.75907517828612,45.64692809728559],[-122.75906585107853,45.64691903033088],[-122.75905587349067,45.64691020515188],[-122.7590454665081,45.64690153822561],[-122.75901357002729,45.64687579805593],[-122.75900330497855,45.64686709218876],[-122.75897541049237,45.64684206540371],[-122.75896577516262,45.64683419601858],[-122.75895567630219,45.64682681709526],[-122.75893528544354,45.64681264453588],[-122.75892582977687,45.6468053491329],[-122.75891747813969,45.64679756703379],[-122.75891039851692,45.64678884482662],[-122.75890453521306,45.64677954549163],[-122.75889944356203,45.64676988066245],[-122.75889001214985,45.6467502099982],[-122.75888492139714,45.64674056839976],[-122.75887905809329,45.64673131050436],[-122.75887197487727,45.64672265234239],[-122.75886552138027,45.6467165444658],[-122.75885834923105,45.6467107317461],[-122.7588507243309,45.64670502327293],[-122.75882055620872,45.64668324629026],[-122.75879979793915,45.64666876786087],[-122.75876342066172,45.64664455047344],[-122.75875426413403,45.64663747359105],[-122.75874558551006,45.64662994141088],[-122.75872048298775,45.64660609012834],[-122.7587118160419,45.64659816230647],[-122.75868469410686,45.646575404352],[-122.75867587624403,45.64656764985278],[-122.75866738087637,45.64655950097066],[-122.75865924752978,45.64655114045246],[-122.75863547810737,45.64652576373196],[-122.75862727648881,45.64651751750423],[-122.75860318996112,45.64649476579699],[-122.75859531173607,45.64648652333266],[-122.75857281253147,45.64646132430622],[-122.75856499898512,45.64645316975665],[-122.75855685845202,45.64644539640054],[-122.7585402414159,45.64643029053967],[-122.75853234163131,45.64642270055582],[-122.7585147274652,45.64640420287039],[-122.75850718431174,45.64639704368987],[-122.75847846337548,45.64637120029658],[-122.75846976139532,45.64636400594393],[-122.75844201962275,45.64634279088776],[-122.75842036752944,45.64632561825413],[-122.75840936945541,45.64631733054896],[-122.75838545989581,45.64630068856703],[-122.75836113711117,45.64628238426518],[-122.75831878783373,45.6462531960914],[-122.75830826137523,45.64624574738358],[-122.758298037649,45.64623815549075],[-122.75828827386017,45.6462303657768],[-122.75827427631141,45.64621831696366],[-122.75826396275362,45.64620986973052],[-122.75825316141066,45.64620154370019],[-122.75824198906346,45.64619331061275],[-122.75821888888592,45.64617703911441],[-122.75814797408077,45.64612862714001],[-122.75812536618002,45.64611215780242],[-122.75811465017699,45.64610373504537],[-122.75810452526542,45.64609512137448],[-122.75809519176963,45.64608625022152],[-122.75807745273771,45.6460667356897],[-122.75806872111316,45.6460576139594],[-122.75805059131409,45.64603944711067],[-122.75804184531648,45.6460301646073],[-122.75803378653008,45.64602057186917],[-122.75802637992054,45.64601006852546],[-122.75801985455833,45.64599919654222],[-122.75801395352524,45.6459880771237],[-122.75800847020874,45.64597681012224],[-122.75798780985551,45.64593195561495],[-122.75797431805826,45.64590539545471],[-122.75797029180916,45.64589482363704],[-122.7579672016046,45.6458839239992],[-122.75795792649927,45.64583932627146],[-122.75795490007506,45.64582849633136],[-122.75795091874173,45.64581806454424],[-122.75794553962982,45.64580821303172],[-122.7579385866695,45.6457992897089],[-122.7579302754565,45.64579104902629],[-122.75792101202931,45.64578344827972],[-122.75790712497334,45.64577342091964],[-122.7578932702567,45.64576305255081],[-122.7578827734426,45.64575573251891],[-122.75787160468869,45.64574857262755],[-122.75785990143716,45.64574163567722],[-122.75784776429936,45.6457349970288],[-122.75782366429689,45.64572265671441],[-122.75781213082698,45.64571606139614],[-122.75780052279688,45.64570810016394],[-122.75778966755497,45.64569945628794],[-122.75777928033536,45.64569038034231],[-122.75775891732449,45.6456717907261],[-122.75774847890089,45.64566267458355],[-122.7577381985808,45.64565434595988],[-122.75772766942734,45.6456463363624],[-122.75770967078229,45.64563331150095],[-122.75770255073537,45.64562785977283],[-122.75769339151273,45.64561966993355],[-122.75768497070524,45.64561087281016],[-122.75767706463243,45.64560164675645],[-122.75764702496932,45.64556329182863],[-122.75763910182852,45.64555398538203],[-122.75763066395307,45.64554506767085],[-122.75762149484895,45.64553670888531],[-122.75761182807818,45.64552925568613],[-122.75759169773099,45.64551510729078],[-122.75758218996201,45.64550775645408],[-122.75757399193672,45.6455003045071],[-122.75755129959434,45.64547657206522],[-122.75752777990357,45.64545368177323],[-122.75752052690596,45.64544582475327],[-122.75751358292881,45.64543712054792],[-122.75750033547331,45.64541931899934],[-122.75749259019895,45.64541002948513],[-122.75747623457256,45.64539161499058],[-122.75746841024642,45.64538225576264],[-122.75746219390469,45.64537403197495],[-122.75745044304246,45.64535749019436],[-122.75744440277047,45.64534941775344],[-122.75743791154424,45.64534165115226],[-122.75741916550086,45.64532249872305],[-122.75741099801833,45.6453131966326],[-122.75738781699241,45.64528358027842],[-122.75737953811874,45.64527372929994],[-122.75737082985039,45.64526440019687],[-122.75734327941895,45.64523692533563],[-122.75732621322518,45.64521883546613],[-122.75731733068365,45.64520998489881],[-122.75730846161684,45.64520202610672],[-122.75728031739898,45.64517883739691],[-122.75727122195673,45.64517093009737],[-122.75726177886648,45.64516194952395],[-122.7572266035349,45.64512528490503],[-122.75721754941516,45.64511664407916],[-122.75720801559503,45.64510853831882],[-122.75718355087658,45.64509009295252],[-122.75717392453001,45.64508192878316],[-122.75716500605586,45.64507333002749],[-122.75715802794275,45.6450655803444],[-122.75713822009072,45.64504177172874],[-122.7571309140925,45.64503417150853],[-122.75712120959251,45.64502566380752],[-122.75711066247274,45.64501756117409],[-122.757088635782,45.64500179865362],[-122.75707789103286,45.64499377954262],[-122.75706355302262,45.64498231640075],[-122.75705349638301,45.64497471994057],[-122.75703208234327,45.64495982218394],[-122.75697610652128,45.64492287922211],[-122.75694138753386,45.64489846199915],[-122.75692898898632,45.64489050630289],[-122.75691579992129,45.64488317862082],[-122.75690199730697,45.64487632822946],[-122.75685954472327,45.64485649298821],[-122.75684589122929,45.64484943158035],[-122.75683354658062,45.64484222572793],[-122.756821848719,45.64483453755847],[-122.75681084525507,45.6448263959604],[-122.75680062871537,45.64481780156161],[-122.75679220072138,45.64480974160323],[-122.75676845016359,45.64478484892253],[-122.75676012188258,45.64477682287227],[-122.7567500894975,45.6447682900115],[-122.75673936361299,45.64476023946628],[-122.75672806819662,45.64475268002899],[-122.75671628589336,45.64474565063689],[-122.75668817581148,45.64473028243459],[-122.75665572866342,45.64471147332174],[-122.75664476113211,45.64470550213361],[-122.75662743712184,45.64469662259641],[-122.75661658098164,45.64469069662397],[-122.75658508335283,45.64467232522617],[-122.75657473476076,45.64466652736675],[-122.75655879774932,45.64465800830558],[-122.75654353716926,45.64464931151407],[-122.75652138740929,45.64463777670767],[-122.75651034082624,45.64463170126069],[-122.75650217783524,45.64462666643915],[-122.75648604319447,45.64461609061203],[-122.75646221178827,45.64460117957165],[-122.75645049326539,45.64459341851889],[-122.75642049222985,45.64457100641638],[-122.7564099747545,45.64456390729142],[-122.75639935487123,45.64455773386545],[-122.75638820408359,45.64455196174297],[-122.75635384891386,45.64453549256987],[-122.75634282209376,45.64452980020358],[-122.75631672064485,45.64451496136243],[-122.75630524826035,45.64450905609539],[-122.75628194955516,45.64449790184003],[-122.75627072510568,45.64449230241677],[-122.75625477461951,45.64448381535814],[-122.75622282962966,45.64446836795346],[-122.7562126319546,45.64446257949325],[-122.75620318976263,45.64445606001709],[-122.75619431171266,45.64444891628808],[-122.75618576963264,45.64444134738846],[-122.7561600894936,45.64441776585095],[-122.75615081887987,45.64441001230907],[-122.75612215992737,45.64438702549409],[-122.75611302765418,45.64437911933886],[-122.75610358186897,45.64437013173025],[-122.75607721541706,45.64434256348327],[-122.7560684119273,45.64433369205277],[-122.75605926617938,45.6443252665162],[-122.75604955179789,45.64431749160878],[-122.75602716308609,45.64430259367737],[-122.75601733821181,45.64429549137824],[-122.7559881851859,45.64427251707669],[-122.75597786174666,45.64426495066537],[-122.75596679360405,45.64425763043773],[-122.7559552250998,45.64425059281922],[-122.75590758654198,45.64422368456527],[-122.75589620488731,45.64421693583295],[-122.7558854242056,45.64421004893479],[-122.75587549063519,45.64420295416024],[-122.75585599539687,45.64418690942819],[-122.75583487510625,45.64417128483908],[-122.75580925605266,45.64415154794786],[-122.75578303063624,45.64412928890638],[-122.75576046765129,45.6441123938088],[-122.75575103084918,45.64410474133654],[-122.75572321990633,45.64408065535377],[-122.75571354594902,45.64407284963922],[-122.75570413968968,45.6440659175056],[-122.75568480614812,45.64405292744605],[-122.75566780193812,45.64404206261927],[-122.75566021566556,45.64403763190462],[-122.75564953379852,45.64403232760706],[-122.75562753495551,45.64402213350691],[-122.75561645962637,45.64401594432063],[-122.75560616133994,45.64400907749458],[-122.75559684401384,45.64400164042081],[-122.75558972127193,45.64399487784523],[-122.75557064285194,45.64397478354535],[-122.75556406089585,45.6439689560966],[-122.75554562387296,45.64395586176232],[-122.75553748423819,45.6439487217377],[-122.75551651306787,45.64392838123507],[-122.75550896991442,45.64392021878048],[-122.75550177351069,45.64391158530503],[-122.75549494990778,45.64390259699341],[-122.7554885494114,45.64389334930548],[-122.75548264298838,45.64388391697619],[-122.75547198447755,45.64386501337521],[-122.75546634665082,45.6438557958263],[-122.75546110138788,45.64384830283782],[-122.75543487507316,45.64381141566548],[-122.75542755021031,45.64380200404727],[-122.75541961539143,45.64379316330458],[-122.75539549562608,45.64377052165177],[-122.75538688976563,45.64376313792871],[-122.75537765598283,45.64375592628434],[-122.75536788410916,45.64374896333815],[-122.75535762804355,45.6437423414103],[-122.75534691473548,45.64373617417414],[-122.75533574508324,45.64373060168],[-122.75532315699117,45.64372529986549],[-122.75529821975887,45.6437155974557],[-122.75528686774862,45.64371032578512],[-122.75527700604346,45.64370416356961],[-122.75526860949047,45.64369627364675],[-122.75526171941227,45.64368727713622],[-122.75524925169442,45.64366751934956],[-122.7552435437991,45.64365906168327],[-122.75521756541941,45.6436232684136],[-122.75520956053191,45.64361324945929],[-122.7552008558568,45.64360423221042],[-122.7551911226107,45.64359562443551],[-122.75518058088083,45.64358738656884],[-122.75516938966905,45.64357950667804],[-122.75515765407818,45.64357200109198],[-122.75514543339705,45.64356491565704],[-122.75513274559198,45.64355832510898],[-122.75510166208649,45.64354376548404],[-122.75508919077541,45.64353762020703],[-122.75505172833313,45.64351857204216],[-122.75502638326569,45.64350606104317],[-122.75501345830541,45.64350009600688],[-122.75500027463028,45.64349445503385],[-122.75498670378127,45.64348917769023],[-122.75497292182818,45.64348420305699],[-122.7549315454262,45.64346984689486],[-122.75491816142676,45.64346485655913],[-122.75490521939851,45.64345955534751],[-122.7548928954111,45.64345379441644],[-122.75488374427333,45.64344889954008],[-122.75486584174801,45.64343867079202],[-122.75485402261383,45.64343228685151],[-122.75480454520461,45.64340730751834],[-122.75479231374369,45.64340075400564],[-122.75478060420399,45.64339405730087],[-122.75474620771176,45.64337336741097],[-122.75473460237659,45.64336668263552],[-122.75472272305525,45.64336032443612],[-122.75471042871227,45.64335445044902],[-122.7546962407207,45.64334863863653],[-122.75468160536808,45.64334332422519],[-122.75465189987827,45.64333305526378],[-122.75463726003407,45.64332755746543],[-122.75462262198653,45.64332134873339],[-122.75460831811226,45.64331466457978],[-122.75459424061343,45.64330765887252],[-122.75455248422409,45.64328598670678],[-122.75453844894608,45.64327894456999],[-122.75452420885222,45.64327221268078],[-122.75450965434797,45.64326595369991],[-122.75449474680582,45.64326033154435],[-122.75447951946343,45.64325532172092],[-122.75446407023719,45.64325090790096],[-122.75442526122029,45.64324110931987],[-122.75441286267272,45.64323724000405],[-122.75439869264744,45.64323161784561],[-122.75438509844224,45.64322511204289],[-122.75437189230925,45.6432180096072],[-122.75433308149574,45.64319547699988],[-122.75431995710942,45.64318827533098],[-122.7543064967532,45.64318160937451],[-122.7542925270522,45.64317575295365],[-122.75428036386326,45.64317161671863],[-122.75424281338607,45.64316046973333],[-122.75422974020375,45.64315584739841],[-122.75421687004068,45.64315076031737],[-122.7541660730063,45.64312896562414],[-122.75415323428427,45.64312391873487],[-122.75414020691601,45.64311936485274],[-122.75412691993463,45.64311538813448],[-122.75410042322702,45.64310796664297],[-122.75407881245621,45.64310113173546],[-122.75404258879072,45.64309051228591],[-122.75403066814688,45.64308666682502],[-122.75401912389719,45.64308234656906],[-122.75400779973471,45.64307726450561],[-122.75399692742484,45.64307167875718],[-122.75397601374668,45.64305980385862],[-122.75395902390973,45.64304964600754],[-122.75395106842957,45.64304433156789],[-122.75394214007397,45.64303754187117],[-122.75392504154084,45.64302375333924],[-122.75391592992892,45.64301738191217],[-122.75390445844275,45.64301095019289],[-122.75389216230313,45.64300522689791],[-122.7538549037784,45.642989667295],[-122.75383394967608,45.64298010481001],[-122.75382331901302,45.64297646345346],[-122.75381287789448,45.64297435576236],[-122.75380193910927,45.64297314804777],[-122.753779537821,45.64297172994085],[-122.75376853974699,45.64297071189328],[-122.75375147085826,45.64296810742485],[-122.75371368861576,45.64296302472304],[-122.75370073041776,45.64296084543518],[-122.75368809291835,45.6429579840992],[-122.75367610490088,45.64295411601993],[-122.75366375755732,45.64294831923879],[-122.75365227978293,45.64294132667444],[-122.75364134369266,45.64293359051327],[-122.75363245755786,45.64292676940129],[-122.75362401159755,45.64291965436702],[-122.75361628878105,45.64291218197854],[-122.75360961519682,45.64290426305444],[-122.75360328207405,45.64289410140697],[-122.75359827935625,45.64288344486394],[-122.75358977141218,45.64286174113217],[-122.75358511274914,45.64285121144672],[-122.75357939497232,45.64284126332259],[-122.7535741667774,45.64283436243851],[-122.75356836455897,45.64282779378584],[-122.7535629010054,45.64282211255068],[-122.75355701614197,45.64281670074347],[-122.7535505347972,45.64281162619243],[-122.75352559486997,45.64279418430379],[-122.75351629730679,45.64278801821926],[-122.75350685331821,45.64278210963003],[-122.75349547435849,45.64277541473542],[-122.75348466403237,45.64276856408633],[-122.75347594139097,45.64276188991542],[-122.75346756100767,45.64275490926055],[-122.75345881770501,45.64274803976779],[-122.75344956056601,45.64274189879979],[-122.75343954794386,45.64273635509653],[-122.75342899453589,45.64273154368674],[-122.75341809886983,45.64272765109826],[-122.75340705408341,45.64272492666296],[-122.75339635694499,45.6427236215969],[-122.75338613501539,45.64272362787727],[-122.75337685811346,45.64272491347413],[-122.75336905624519,45.64272752109408],[-122.7533623736778,45.64273233690053],[-122.75335886306168,45.64273838491976],[-122.75335896007971,45.64274494667445],[-122.75336272491907,45.64275108889821],[-122.75336938592692,45.6427567965182],[-122.75337807353401,45.6427618629097],[-122.75339745199132,45.64277095314667],[-122.75340610097088,45.64277554097123],[-122.75341262543478,45.64278052948426],[-122.75341594560808,45.64278572462156],[-122.75341639207079,45.64279096309308],[-122.75341389834755,45.64279566207886],[-122.75340865128797,45.64279924189936],[-122.75340128240769,45.6428018501439],[-122.75339253641009,45.64280355087246],[-122.7533830672687,45.64280435162173],[-122.75337347505808,45.64280420214853],[-122.75336433200512,45.64280299443028],[-122.75335621123494,45.64280055889645],[-122.75334985834925,45.64279707390984],[-122.75334433820186,45.64279285725795],[-122.75333906598942,45.64278843712115],[-122.75333345690881,45.6427843353997],[-122.75332690369881,45.64278108969492],[-122.75332046098157,45.64277939964228],[-122.75331319001768,45.64277862213017],[-122.75330224224932,45.64277895813095],[-122.75329060906638,45.64278074427354],[-122.75327869830404,45.6427838474135],[-122.75326827425347,45.64278753588549],[-122.7532468691969,45.64279633973263],[-122.75323271354462,45.64280188342995],[-122.75321788056266,45.64280718093556],[-122.7532024834387,45.64281211480638],[-122.75318697851688,45.64281651107587],[-122.75312358889886,45.64283263533325],[-122.75310816033387,45.64283711450212],[-122.75309323302879,45.64284215136859],[-122.75307934776944,45.64284771453057],[-122.75306590897279,45.64285373867187],[-122.7530396089962,45.64286612672112],[-122.75301430165804,45.64287768261753],[-122.75300222919893,45.64288366467712],[-122.75299225161108,45.64288921653029],[-122.7529658923457,45.64290521892747],[-122.75295861778851,45.64290987519711],[-122.75293017263505,45.64293004461538],[-122.75292285855201,45.64293538481541],[-122.75290929219457,45.64294596661215],[-122.75289894989072,45.64295336425972],[-122.7528877182547,45.64296043783929],[-122.75287557842198,45.64296701652498],[-122.75286252590087,45.64297295838066],[-122.7528487322697,45.64297837394101],[-122.75283439336114,45.64298339760602],[-122.75281966009214,45.64298813802606],[-122.75278946142724,45.64299708754613],[-122.75274350631227,45.64301005084489],[-122.7527131513405,45.64301893944199],[-122.75269825367982,45.6430236132872],[-122.75268365605645,45.64302853081003],[-122.75266946806487,45.64303377993545],[-122.75265582984223,45.64303947182576],[-122.75264429188071,45.64304492631791],[-122.7526219283217,45.64305622907904],[-122.75261064278681,45.6430616107174],[-122.75258264589267,45.64307341213545],[-122.75257042161826,45.64307884087482],[-122.75253424376682,45.64309583990993],[-122.75252216412119,45.64310121966039],[-122.75250998386429,45.64310617171837],[-122.75249764460551,45.64311049888086],[-122.75246348526852,45.64312038917792],[-122.75245084866742,45.64312460957338],[-122.75243861001999,45.64312923379506],[-122.75242698582022,45.64313429073235],[-122.75241791463247,45.64313880881532],[-122.75240163087132,45.64314748700028],[-122.75239435811079,45.64315161695671],[-122.75237375165648,45.64316447282583],[-122.75236359530386,45.64316962145303],[-122.75234156681648,45.64317963295029],[-122.75231062254989,45.64319495510345],[-122.75229674986696,45.6432009879999],[-122.75228214595539,45.64320654107771],[-122.75226692040962,45.6432115515335],[-122.7522521601912,45.6432157110028],[-122.75223707118937,45.64321946350582],[-122.75222179264303,45.64322294092971],[-122.75216122553162,45.64323592176119],[-122.75213573224218,45.64324191571514],[-122.75212466499788,45.64324427084146],[-122.75211121003156,45.64324624286719],[-122.75209756911397,45.64324728037879],[-122.75208394616267,45.6432474059855],[-122.7520705531801,45.64324657823718],[-122.75205762282989,45.64324468345961],[-122.7520454156235,45.64324153575477],[-122.75203405193515,45.6432369768579],[-122.75202337096644,45.64323138735717],[-122.75199236381778,45.64321264117257],[-122.75196815961075,45.64319964526285],[-122.75195697917871,45.64319283737198],[-122.75194623263297,45.6431856488915],[-122.75192565043321,45.64317131400598],[-122.7519008425583,45.64315533429406],[-122.75189176957394,45.64314819919173],[-122.75188270826766,45.64314048566834],[-122.75187345651855,45.64313310186225],[-122.75186355888077,45.6431257576214],[-122.75185322196678,45.64311853396231],[-122.75182772598239,45.64310172522878],[-122.75181808346613,45.6430944588602],[-122.7517989628253,45.64307922900075],[-122.75178810668511,45.64307147150544],[-122.7517539177037,45.64304885217025],[-122.75174308761463,45.64304110157905],[-122.75171996228427,45.64302318685064],[-122.75170166899181,45.64300979523415],[-122.75167921110972,45.64299251041632],[-122.75166504467769,45.6429823217793],[-122.75165558541775,45.64297510249795],[-122.75162738819928,45.64295219485494],[-122.75161765854646,45.64294472121471],[-122.75160754800793,45.64293762439581],[-122.75159181760898,45.64292772338981],[-122.7515807737209,45.64292048777251],[-122.75157006400609,45.64291289731312],[-122.75155983399162,45.6429049884377],[-122.75154599724129,45.64289345641234],[-122.75153676525514,45.64288616552329],[-122.75150795179236,45.64286465208806],[-122.75149865512752,45.64285739887752],[-122.75148466386696,45.64284597046868],[-122.75147417783265,45.64283804462677],[-122.75144220230013,45.64281514697627],[-122.75143262176761,45.64280745790058],[-122.75142429528323,45.64279957350377],[-122.75141772051367,45.64279180466503],[-122.75141177905638,45.64278409297668],[-122.75140550432413,45.64277678134809],[-122.75139791805154,45.6427700117162],[-122.7513893274625,45.64276417974584],[-122.75136876682225,45.64275336365615],[-122.75135030823981,45.64274126259597],[-122.75133674817059,45.64273289962382],[-122.7513157132199,45.64271908338317],[-122.75130461183963,45.64271220132523],[-122.75127786001046,45.64269716102992],[-122.75126714490574,45.64269062062296],[-122.75125694812895,45.64268403562441],[-122.75123534723964,45.64266906000968],[-122.7512230097775,45.64266152289962],[-122.7512174312396,45.64265764349515],[-122.75121111787978,45.64265186678062],[-122.75120517911745,45.64264555183487],[-122.75119865555186,45.64263913514585],[-122.75119085098866,45.64263291189263],[-122.75117327814509,45.64262000377412],[-122.75116462647057,45.64261269463633],[-122.75114694403251,45.64259708782133],[-122.75113687481648,45.64258916068816],[-122.75112611120277,45.64258148539835],[-122.75111481398977,45.64257411282333],[-122.75110310445004,45.64256710827952],[-122.75108001774723,45.64255422777973],[-122.75106915172553,45.64254744304792],[-122.75105997633322,45.64254062377305],[-122.7510514046088,45.64253338936182],[-122.75103493220143,45.64251855501619],[-122.75102648983439,45.64251138403436],[-122.75101654548418,45.64250387893326],[-122.75100618072246,45.64249701380599],[-122.75098435884757,45.64248377090972],[-122.75097464087281,45.64247661813666],[-122.75096515556174,45.64246924491978],[-122.75094413318747,45.6424539401533],[-122.75091868571208,45.6424329603885],[-122.7509122681477,45.64242833108506],[-122.75089310618436,45.64241476284627],[-122.75087962157365,45.64240609334038],[-122.75086533836063,45.64239654017641],[-122.75085799103992,45.64239183048041],[-122.75083624911511,45.64237884380097],[-122.75082682578777,45.64237211934015],[-122.75080817047429,45.64235766931452],[-122.75078618600431,45.6423422728232],[-122.75077536040682,45.64233434942221],[-122.75076620387912,45.64232683048047],[-122.75074067016551,45.64230420016786],[-122.75072828688931,45.6422939894241],[-122.75071119823767,45.64227833353291],[-122.75069903145544,45.64226829675282],[-122.75068667333207,45.64225770226715],[-122.75067717813951,45.64225012867519],[-122.75066703885491,45.64224265619741],[-122.75065646658236,45.64223535643104],[-122.75064565086632,45.64222831541826],[-122.7506347641834,45.64222163678664],[-122.75060945235364,45.64220746808653],[-122.75058968133256,45.64219543159707],[-122.75058304817249,45.6421910811262],[-122.75057636919834,45.64218566297757],[-122.75055733030423,45.64216717456982],[-122.75055033602143,45.64216120436662],[-122.75054225567543,45.64215545146664],[-122.75052546167119,45.64214454293666],[-122.75051779275361,45.64213876742534],[-122.75051219984266,45.64213358227672],[-122.75050143892386,45.64212257765141],[-122.75049314477886,45.64211519810751],[-122.75048389752131,45.64210801514118],[-122.75047397652732,45.64210113049594],[-122.75046361805377,45.6420946609887],[-122.75044883358082,45.64208611829869],[-122.75043466355554,45.64207741922375],[-122.75041454219151,45.64206590838162],[-122.75040500747308,45.64205985714955],[-122.75039559762048,45.64205266538345],[-122.75037398056146,45.64203543553849],[-122.75036626672812,45.64202875688388],[-122.75035104387734,45.64201472504931],[-122.75034308929547,45.64200785358165],[-122.75033459033457,45.64200140478919],[-122.75032365065104,45.64199445230173],[-122.75031233547173,45.64198764552048],[-122.75030154490852,45.64198058061076],[-122.75028049378817,45.64196578631387],[-122.75027000685554,45.6419586422673],[-122.75025575418525,45.64194937792922],[-122.7502281741094,45.64192981422464],[-122.75022136128628,45.64192466987988],[-122.75020359889818,45.64190923935493],[-122.75018509719656,45.64189476031969],[-122.75017648504796,45.64188765583117],[-122.75016506476575,45.64187692247473],[-122.75014232750756,45.64185772238532],[-122.75013323565858,45.6418506825812],[-122.75012343593716,45.64184382177026],[-122.75011316729513,45.64183725048925],[-122.75009845109416,45.64182832088152],[-122.75008426489919,45.64181887564353],[-122.75006202710435,45.6418046779513],[-122.75005115569274,45.64179725126173],[-122.75001212119872,45.64176749110948],[-122.74999855124803,45.64175661516257],[-122.74997579782021,45.64173974195927],[-122.74996638617095,45.64173205399211],[-122.74994778924794,45.64171603304633],[-122.74993803354397,45.641708136563],[-122.74992700852049,45.64170010630367],[-122.74991546427077,45.64169239006871],[-122.74986904652341,45.64166317375327],[-122.74985864942232,45.64165601333883],[-122.74984540466176,45.64164616925906],[-122.74983250575261,45.6416370216869],[-122.74981426276582,45.64162328493858],[-122.74979399856964,45.64161087463274],[-122.74975756020677,45.64158681081572],[-122.74974718646186,45.64157892875935],[-122.74973717473804,45.64157054740019],[-122.74970809357733,45.64154486507402],[-122.7496983594329,45.64153692083455],[-122.74968842855743,45.6415297233488],[-122.74967308084082,45.64151995210099],[-122.74966418123131,45.64151353214284],[-122.74963775099901,45.64149250680603],[-122.74961587163195,45.64147665787843],[-122.74957548247846,45.64144389734268],[-122.74955376211319,45.64142759054994],[-122.74954033589297,45.64141660839592],[-122.74953031608429,45.64140876211469],[-122.74951977165949,45.64140097863782],[-122.74949772790072,45.64138573324473],[-122.74945981450418,45.64136118949718],[-122.74945000040969,45.64135373260224],[-122.74943094624419,45.64133789996481],[-122.74942116987894,45.64133030929101],[-122.74941097759374,45.64132284548334],[-122.74936935056178,45.64129362834712],[-122.7493595427555,45.64128635295125],[-122.74935033951543,45.64127904363941],[-122.74933112095822,45.64126295222187],[-122.74931020278855,45.64124852891661],[-122.74930096720909,45.64124150724955],[-122.74928263349246,45.6412264552544],[-122.74927299007788,45.64121891857838],[-122.74926188061276,45.64121103772637],[-122.74923882804595,45.64119560323653],[-122.74922767815664,45.6411876652281],[-122.74921797275833,45.64118003999081],[-122.74919943153085,45.64116470786571],[-122.74919004593275,45.64115749337464],[-122.7491540764905,45.64113329119028],[-122.74913408628046,45.64112073129822],[-122.74910389749702,45.64109726957807],[-122.74908699120337,45.64108298879927],[-122.74907802062695,45.64107577366961],[-122.74907062120394,45.64107045276212],[-122.74905518006253,45.6410599528868],[-122.74903377770087,45.64104448067184],[-122.74902299701915,45.64103700363682],[-122.74900291697762,45.64102427163512],[-122.74899375236508,45.64101776306389],[-122.74897157026577,45.64099854132607],[-122.74895157915742,45.64098297300114],[-122.74889839619766,45.64094397931498],[-122.7488753409359,45.64092629315775],[-122.74885519801229,45.64091264855998],[-122.74883663342864,45.64089783827954],[-122.74881524184676,45.64088217132121],[-122.74880172489669,45.64087151627966],[-122.74879214346586,45.64086435764821],[-122.74877156935091,45.640850128311],[-122.74872933954941,45.64082187625783],[-122.74870522876719,45.64080442558491],[-122.74868490887546,45.6407912155758],[-122.74867514867989,45.64078442372186],[-122.74866533548372,45.64077640086686],[-122.74865563457699,45.6407680482785],[-122.74864680054448,45.64076094364711],[-122.74861850540965,45.64073968062055],[-122.74860919347341,45.64073244095227],[-122.74859053726161,45.6407170126112],[-122.74858121364726,45.64070961780867],[-122.74857152441861,45.64070277381567],[-122.74854864702327,45.64068930188058],[-122.74853830292278,45.64068264065127],[-122.7485287062206,45.64067554103354],[-122.74852009317365,45.6406680827912],[-122.74850881033368,45.6406565986662],[-122.74850288953763,45.64065097373654],[-122.74849424325303,45.64064414732216],[-122.74848459804184,45.6406375733882],[-122.74846395745153,45.64062445064052],[-122.74845373282699,45.64061753252562],[-122.74844398341119,45.64061018418666],[-122.7484163584196,45.6405872265877],[-122.74840713811152,45.64057993916688],[-122.74839322051282,45.64056964960091],[-122.7483709908028,45.64055223716137],[-122.7483527720705,45.64053874383591],[-122.74832961709575,45.64052062983905],[-122.74831880766793,45.64051282300041],[-122.74830738828405,45.64050521148869],[-122.74827186620274,45.64048270730938],[-122.74826034351261,45.6404750436642],[-122.74824936250656,45.64046715203046],[-122.7482348169855,45.64045574448823],[-122.74822492563591,45.64044831510761],[-122.74817339377964,45.64041224720624],[-122.74816375665328,45.64040502570954],[-122.74814983186805,45.64039410427745],[-122.7481270766436,45.64037765209594],[-122.74811317701119,45.64036676771443],[-122.74810368990349,45.64035966994086],[-122.74806352622711,45.64033142015264],[-122.74805381274396,45.64032421120682],[-122.74803138360794,45.64030669568807],[-122.74801699439372,45.64029622644487],[-122.74800759891417,45.64028883347098],[-122.747988927431,45.64027349419329],[-122.74797906303085,45.6402660151712],[-122.74796855543698,45.6402589249217],[-122.74793545521371,45.64023866975278],[-122.74792485778831,45.64023173337633],[-122.74791498081173,45.64022443146371],[-122.74790495920644,45.64021573586815],[-122.74789516756984,45.64020676643365],[-122.74788535886525,45.64019835472197],[-122.74787497523889,45.64019003031049],[-122.74786416850601,45.64018177435715],[-122.7477967535372,45.64013295775014],[-122.74778601417799,45.64012487073889],[-122.74776169139335,45.64010554757566],[-122.74775069511595,45.64009766970737],[-122.7477282812513,45.64008248425431],[-122.74771391269832,45.64007211860059],[-122.74768994025666,45.64005603311711],[-122.74767995907553,45.64004872678512],[-122.74765075304903,45.64002575451049],[-122.74764076917296,45.64001833323779],[-122.74763040171626,45.64001133716744],[-122.74760278121622,45.63999476428411],[-122.7475915594617,45.63998759611957],[-122.74758066738886,45.63998026779621],[-122.74755603019389,45.63996246514174],[-122.74753545158737,45.63994916574808],[-122.74752542459215,45.63994226639198],[-122.74751683849466,45.63993537896834],[-122.74750871323292,45.63992810276802],[-122.74749280317093,45.63991321434657],[-122.74748451082255,45.63990600597503],[-122.74746246347051,45.63988901162472],[-122.74744890429965,45.63987793118997],[-122.74743881262573,45.63987014373199],[-122.74742821430202,45.63986251894351],[-122.74740083544879,45.63984421128188],[-122.74739297968162,45.63983855109865],[-122.74738416092045,45.63983133266836],[-122.74735945006364,45.63980840301353],[-122.74735089001729,45.63980095721719],[-122.7473401515564,45.63979261955712],[-122.74731827129101,45.63977634745584],[-122.74730438692997,45.63976499064686],[-122.74729416410204,45.63975702605666],[-122.74728349391309,45.63974923544151],[-122.74727252189022,45.63974165334552],[-122.74726137918744,45.63973432875839],[-122.74725018438237,45.6397273295122],[-122.7472238799142,45.63971198819659],[-122.74720311266148,45.63969847457042],[-122.74719629714343,45.63969389968342],[-122.74717334339127,45.63967685313869],[-122.74716315559765,45.63966972827055],[-122.74715273064876,45.63966273906547],[-122.74712786258674,45.63964664781179],[-122.74710819038036,45.63963142141164],[-122.74708579538031,45.63961524661509],[-122.74707643942664,45.63960783847757],[-122.74704893211432,45.63958447347547],[-122.74703940368411,45.63957694160317],[-122.74701616786095,45.63956013243514],[-122.74699289161363,45.6395420181219],[-122.74696412845655,45.6395207784996],[-122.74695491892824,45.6395135016174],[-122.74694113338191,45.63950190985482],[-122.74693195709126,45.63949462606132],[-122.74690348947992,45.63947334057148],[-122.74689439044441,45.6394662439409],[-122.7468808195954,45.63945516719102],[-122.74685981967903,45.63943954316652],[-122.74684978370067,45.63943169786459],[-122.74683343346418,45.63941717673602],[-122.74682478628127,45.63941025470366],[-122.74681473592986,45.63940370323569],[-122.74679254125414,45.63939119822663],[-122.74678094130886,45.63938435532877],[-122.74676951114517,45.63937713118728],[-122.74675834688284,45.63936959237824],[-122.74674755901458,45.6393617885196],[-122.74673727689783,45.63935375227128],[-122.74672337906209,45.63934218811107],[-122.74671409587195,45.63933497526958],[-122.7467044659321,45.63932794959423],[-122.74666807158668,45.63930234286558],[-122.74666068743504,45.63929730065626],[-122.74663348554994,45.63928078157642],[-122.7466219754362,45.63927348582072],[-122.74659913936334,45.63925812930694],[-122.74658799755888,45.6392501294723],[-122.74657718274118,45.63924192927946],[-122.74656682786089,45.63923352558795],[-122.74653929539575,45.63920921203064],[-122.74652993764545,45.6392016468197],[-122.74650995013036,45.63918747609967],[-122.74650045044623,45.63918024942048],[-122.74649103161047,45.63917171696345],[-122.7464733114432,45.63915475693477],[-122.74645498670971,45.63913876414377],[-122.74642614090762,45.63911517911806],[-122.746400008916,45.63909470810413],[-122.74639275861334,45.63908958548185],[-122.74638207315303,45.63908315456786],[-122.74634986675348,45.6390659231816],[-122.74631960251155,45.63904911825685],[-122.74630895028891,45.63904261636504],[-122.7463005384646,45.63903613457104],[-122.74628449724857,45.63902216793552],[-122.74627457086467,45.63901449780975],[-122.74625371737366,45.63899904450047],[-122.74623116966002,45.6389808803874],[-122.74620288620331,45.6389594414505],[-122.74619379704927,45.63895206777079],[-122.74618018487779,45.63894028809558],[-122.74617012823818,45.63893210293138],[-122.74615961615272,45.63892413508238],[-122.7461488067249,45.63891639836645],[-122.74613783919359,45.63890891979136],[-122.74611171079523,45.63889184662832],[-122.74607889803285,45.63886668626718],[-122.74605910814714,45.63885245076992],[-122.74604891496362,45.63884561848363],[-122.74603854571029,45.63883910149424],[-122.74601673102194,45.63882615795711],[-122.74600674804418,45.63881938910402],[-122.74599707139194,45.63881130253124],[-122.74597904040758,45.63879469349218],[-122.74594855428175,45.63876736745434],[-122.74593509841714,45.63875670824215],[-122.74590400323356,45.63873077778904],[-122.74589339143513,45.63872244373825],[-122.74588234844533,45.63871418945293],[-122.74587098385867,45.63870599985908],[-122.74584760700002,45.63868977768902],[-122.74582372528819,45.6386737414274],[-122.74579961181104,45.6386579243629],[-122.74577543814674,45.63864244583186],[-122.74575134982238,45.63862755204407],[-122.74573939414428,45.63862044776935],[-122.74571123285841,45.63860442970235],[-122.74570316329222,45.63859930326678],[-122.74567209236319,45.63857827118359],[-122.74566466239746,45.63857287529669],[-122.74564477279876,45.63855644267919],[-122.74563444576627,45.63854868330144],[-122.74562338750511,45.63854107152289],[-122.745588404413,45.63851823492494],[-122.74557692214704,45.63851030784276],[-122.74556592497132,45.63850203782398],[-122.74555615130106,45.63849385824855],[-122.74553731632446,45.63847696647619],[-122.74552763428234,45.63846860789226],[-122.74551756865959,45.63846060417637],[-122.74549629206209,45.63844515699521],[-122.7454634262991,45.63842243906675],[-122.74545268334663,45.63841475629714],[-122.74544225031291,45.63840691838877],[-122.74543210294345,45.63839880098013],[-122.74540272444042,45.63837438970697],[-122.74539276032726,45.63836668117913],[-122.74538244227791,45.63835943931998],[-122.74535510744214,45.63834225670206],[-122.74534408870687,45.63833477176943],[-122.74533347062021,45.63832704941819],[-122.74532339870925,45.63831912042467],[-122.74530991050524,45.63830776708884],[-122.74530121481331,45.63830090019125],[-122.74526158653285,45.63827161992646],[-122.74524096929875,45.63825849536843],[-122.74523392291367,45.63825424445811],[-122.74521083710918,45.63824199608126],[-122.74519973123732,45.63823540113847],[-122.74518879335044,45.6382282069972],[-122.74517799380409,45.63822061653017],[-122.74514622218913,45.63819716741364],[-122.74512168470716,45.63817942009263],[-122.74510231702962,45.6381627989326],[-122.74509347491227,45.63815565063256],[-122.74505529920764,45.63812718743834],[-122.74503391660893,45.63811015800348],[-122.74502323833514,45.63810197271798],[-122.74500871976352,45.63809148798862],[-122.74499932967385,45.63808409346766],[-122.74498092229535,45.63806875861111],[-122.74497133996624,45.63806128055093],[-122.74494737021951,45.63804459277809],[-122.74492368793366,45.63802711423222],[-122.74491237904256,45.63801936671494],[-122.74487690457198,45.63799675036482],[-122.74486531540651,45.63798912155279],[-122.74485423738243,45.63798128860965],[-122.74484394448591,45.6379731397347],[-122.74482434324642,45.63795514361798],[-122.74481548136612,45.63794756441968],[-122.7447775302403,45.63791744672173],[-122.74473949736782,45.63788398001178],[-122.74472947486422,45.6378759360144],[-122.74471815070173,45.6378677532071],[-122.74470638007654,45.63785989700749],[-122.74468251363608,45.63784460856855],[-122.74467091369084,45.63783692195113],[-122.74465988507409,45.63782903873916],[-122.7446359422768,45.63781049048099],[-122.74460692669315,45.63778911516194],[-122.7445977153682,45.63778185124484],[-122.74458401067024,45.6377703257021],[-122.74457517484112,45.63776327659106],[-122.74455712858534,45.63774948110824],[-122.74454839426585,45.63774258022507],[-122.74453503721588,45.63773151569637],[-122.74452054739037,45.63772025519961],[-122.74451349292043,45.63771449995936],[-122.74450715350947,45.63770879308187],[-122.74448331401844,45.637685912178],[-122.74447496058464,45.63767715903169],[-122.74446743449919,45.63766817160415],[-122.74446119300458,45.63765888206084],[-122.74445650110385,45.63764912144372],[-122.74445300935236,45.63763923457748],[-122.74444724216825,45.63762018377916],[-122.74444382857016,45.63761163726642],[-122.74443926153525,45.63760424079786],[-122.74443285475066,45.63759846481847],[-122.74442395154787,45.63759458820387],[-122.74441313313689,45.63759210408017],[-122.74438837466934,45.63758825070475],[-122.74437557187991,45.63758541233395],[-122.7443652439491,45.63758200113845],[-122.74435515047857,45.63757776336683],[-122.74434524745087,45.63757294837355],[-122.74433329087445,45.63756641741795],[-122.74432220027394,45.63755918864541],[-122.74431268172518,45.63755105038677],[-122.74430619229557,45.63754311751488],[-122.74430124257837,45.6375345477508],[-122.74429765919869,45.63752556469705],[-122.74429536400314,45.63751636934479],[-122.74429438034791,45.6375071526357],[-122.74429482950556,45.63749810488348],[-122.74429694144479,45.63748942959202],[-122.74430172317705,45.6374801739364],[-122.74430886747851,45.63747201493901],[-122.74431827643276,45.63746533888094],[-122.74432890709586,45.63746073052238],[-122.74434096158863,45.63745712774922],[-122.74436839613745,45.63745048686293],[-122.74438330457791,45.63744713281618],[-122.74439859480233,45.63744416253752],[-122.74441422189503,45.63744191520036],[-122.7444305954877,45.63744065774672],[-122.74444703735236,45.63744039959813],[-122.74447304986802,45.63744127328346],[-122.74448587421702,45.63744149625854],[-122.74449990949503,45.63744096802751],[-122.74451354142944,45.63743943735089],[-122.74452649244091,45.6374367283609],[-122.74453920270388,45.63743242337176],[-122.74455080893733,45.6374269136886],[-122.74456124736093,45.63742050896386],[-122.74456790926709,45.63741559094881],[-122.74457422711846,45.63741052218957],[-122.74458040123943,45.63740540318194],[-122.74458622681405,45.63740007187627],[-122.74459238656196,45.63739314080131],[-122.74459741622923,45.63738568463444],[-122.74460108584717,45.63737779947471],[-122.7446034511113,45.63736750492396],[-122.74460346458605,45.63735697357782],[-122.74460116579722,45.63734649750241],[-122.74459637867506,45.63733636813623],[-122.7445898506179,45.63732782158026],[-122.7445815807274,45.6373197040153],[-122.74457200019489,45.6373119457225],[-122.74456143690546,45.63730449771013],[-122.74455013340425,45.63729733359811],[-122.7445382648627,45.63729044396507],[-122.7445259507568,45.63728384137315],[-122.74451326744331,45.63727755471499],[-122.74450025265146,45.63727163486689],[-122.74447290523926,45.6372603504099],[-122.74445945117127,45.63725454173383],[-122.74444688553704,45.63724846485808],[-122.74443471067003,45.6372419973029],[-122.74441118738598,45.63722837693197],[-122.74437712776199,45.63720774820334],[-122.74434968333173,45.63719152559956],[-122.7443391074659,45.63718410395143],[-122.74432967515541,45.6371759913905],[-122.74432168284433,45.63716715337081],[-122.74431522934734,45.63715732169249],[-122.74431018800196,45.63714686316664],[-122.74430614558317,45.63713595428962],[-122.74430276881603,45.63712473135934],[-122.74429406054766,45.63709015683094],[-122.74429089039302,45.6370785790134],[-122.74428721269025,45.63706708159065],[-122.74428342898628,45.63705715253884],[-122.74427913054767,45.6370473371719],[-122.74427436229014,45.63703764616773],[-122.74426914307833,45.63702809334458],[-122.74426346482741,45.63701870068623],[-122.74423895609149,45.63698253133671],[-122.74422567450004,45.63696049556442],[-122.74421908535743,45.6369503114834],[-122.74421208209148,45.63694019209525],[-122.74419730121178,45.63692007390957],[-122.74416715734411,45.63687996062515],[-122.74413839508534,45.63683870227572],[-122.74413081959257,45.63682879077038],[-122.74412263773692,45.6368193622766],[-122.74410329611057,45.63680006937874],[-122.74409508640717,45.63679067793835],[-122.74408746150706,45.63678083300376],[-122.74406558214,45.6367501273992],[-122.74404583357681,45.63672392781591],[-122.74403960376029,45.63671516635394],[-122.74402570592453,45.63669408143067],[-122.74401935842876,45.6366853187078],[-122.74399972484987,45.63665992809669],[-122.74399382471509,45.6366516615735],[-122.74398509488717,45.63663831240161],[-122.74398036885046,45.63663192203322],[-122.74397247445573,45.63662333454275],[-122.74395482076378,45.63660648303358],[-122.74393752639793,45.63658835960006],[-122.74392842556578,45.63657980727698],[-122.74391860608141,45.6365713347224],[-122.74388720547064,45.63654581906594],[-122.74387677962348,45.63653706699778],[-122.74386671040743,45.63652806054412],[-122.74385665017456,45.63651822372881],[-122.74384705347242,45.63650810677511],[-122.743837766689,45.63649780201485],[-122.74381052168475,45.63646650834458],[-122.74380126454572,45.63645617593986],[-122.74379171994585,45.63644601123858],[-122.74378174684956,45.63643610154809],[-122.74377180429599,45.63642699269626],[-122.74374111874418,45.63640053480856],[-122.74373138190484,45.6363916947822],[-122.74372232329351,45.63638269395817],[-122.74371490141263,45.63637440226964],[-122.74369440545111,45.63634986323612],[-122.74368287916771,45.63633733556163],[-122.74367760156541,45.63633099980463],[-122.74367164753171,45.63632216604842],[-122.74366656037225,45.63631300504483],[-122.74365705619654,45.63629466042112],[-122.74365172739029,45.63628596233131],[-122.74363799933612,45.63626773138697],[-122.74363256902022,45.63625884611563],[-122.74362794089988,45.63624984715458],[-122.74362485159359,45.63624321931556],[-122.7436224710581,45.63623654625165],[-122.74362090439625,45.63622781863151],[-122.74361997553827,45.63621869592734],[-122.74361864064173,45.63620972208436],[-122.7436164981598,45.6362005315411],[-122.7436133199203,45.63619129954085],[-122.74360869000334,45.63618159582636],[-122.74359818510439,45.63616307717233],[-122.74359284641668,45.63615427730778],[-122.74358710528369,45.63614562944524],[-122.74358077216093,45.63613727679463],[-122.74357416056046,45.63612976393048],[-122.74355206110613,45.63610641946204],[-122.74354359089132,45.63609781870066],[-122.74350520048934,45.63606368824347],[-122.7434957933317,45.63605599886935],[-122.7434848500549,45.63604804066117],[-122.74346194840507,45.6360326342705],[-122.74345080480394,45.63602476839187],[-122.74343618112945,45.63601356157003],[-122.74342616581235,45.63600621890838],[-122.74341575343988,45.63599895978506],[-122.743383628787,45.6359773067762],[-122.74336287950055,45.63596261013636],[-122.74333044223397,45.63593760611694],[-122.7433161437496,45.63592733077325],[-122.74330248935729,45.63591659062196],[-122.74327553091558,45.6358960104035],[-122.74326669957804,45.63588887814536],[-122.74325763018693,45.63588094817874],[-122.74324013729341,45.63586500407447],[-122.74323124127713,45.63585741454357],[-122.74321763180059,45.63584674284358],[-122.74318104970726,45.63581571764379],[-122.74317345175659,45.63580902442922],[-122.74315772495093,45.63579414810373],[-122.74314924485462,45.63578726707951],[-122.74314004790276,45.63578135021456],[-122.74310909195808,45.6357648162796],[-122.74309736445203,45.63575781842195],[-122.74307420139243,45.63574288869283],[-122.74306229422334,45.6357355378302],[-122.74305093682322,45.6357291128124],[-122.7430168763009,45.63571070392949],[-122.74300648548801,45.63570438003585],[-122.74297846254271,45.63568476829807],[-122.74295102260403,45.63566226909197],[-122.74294053836638,45.63565477877641],[-122.74292920072915,45.63564775829269],[-122.74291706808293,45.63564132635555],[-122.74290414402094,45.63563563999482],[-122.74289045369602,45.6356307928006],[-122.74284753039511,45.63561811798545],[-122.74283356967727,45.63561331789867],[-122.742820211729,45.63560770062825],[-122.74280744397389,45.63560135976376],[-122.74279522419107,45.63559444793803],[-122.74278354519406,45.63558707884047],[-122.74277244111883,45.63557932972955],[-122.74276198562723,45.63557125085472],[-122.74274800784141,45.63555946607196],[-122.74273858631071,45.6355518840371],[-122.74269934879742,45.63552193401592],[-122.74269002248812,45.63551421755825],[-122.74267630072215,45.63550206531298],[-122.74266552543035,45.63549305994923],[-122.74265418150493,45.63548419465487],[-122.74264241267639,45.63547543739595],[-122.74261802072148,45.6354581427163],[-122.74254247689765,45.6354069018417],[-122.74251766363291,45.63538974281519],[-122.74250555434284,45.63538109483467],[-122.74249375407329,45.63537237713128],[-122.74248237421524,45.63536356772075],[-122.74247155760095,45.63535463708124],[-122.74245777834278,45.635342626757],[-122.74244841520259,45.6353350371554],[-122.74243868644804,45.63532764289877],[-122.74240914534992,45.63530603799599],[-122.74238605056229,45.63528787833889],[-122.74236345254302,45.63527128647102],[-122.74234956279207,45.63526024657922],[-122.74233875695754,45.63525207783679],[-122.74232733308207,45.63524395808678],[-122.74230326002909,45.63522781845487],[-122.74224080286233,45.63518765119665],[-122.74221671094472,45.63517150526727],[-122.74220527179787,45.63516338236495],[-122.74219444170883,45.63515521046777],[-122.74218050434719,45.6351441667844],[-122.74215776888566,45.63512757738647],[-122.74214388003307,45.63511661158513],[-122.74213427434773,45.63510936804968],[-122.74209323571229,45.63508047995166],[-122.74208313685187,45.63507309508334],[-122.74207343235186,45.63506555820771],[-122.74205931712379,45.63505389517495],[-122.74204974377781,45.63504645063122],[-122.74200962052564,45.63501753235073],[-122.74200003909483,45.63501023980866],[-122.74198594003643,45.63499893982124],[-122.74196399778732,45.63498257901831],[-122.74195339587031,45.63497405660026],[-122.74194420700327,45.63496544310252],[-122.74193575385645,45.63495636227734],[-122.74192789269942,45.63494696550295],[-122.7419205211242,45.63493738280145],[-122.74191356996052,45.63492773351685],[-122.74189599981187,45.63490138861226],[-122.74189076263377,45.63489434165283],[-122.74188267869452,45.63488580100568],[-122.74187324818067,45.6348776472837],[-122.74186289869029,45.63486973978654],[-122.74182989458676,45.63484628989585],[-122.74181933309393,45.63483817511206],[-122.7418095630169,45.63482969538478],[-122.74180170904638,45.63482172883678],[-122.74178047017813,45.63479714641061],[-122.74176694604152,45.63478233828248],[-122.7417606614278,45.63477494269671],[-122.74175449988326,45.63476657602296],[-122.74174317931404,45.63475002294479],[-122.74173434528156,45.63473812932298],[-122.741728964373,45.63472970422773],[-122.74171842803304,45.63471176360101],[-122.74171236350654,45.63470255648068],[-122.74170562344696,45.63469337636839],[-122.7416982321088,45.63468429801164],[-122.74169017511903,45.63467540306726],[-122.74168139049388,45.63466678324236],[-122.74167229325496,45.63465887320293],[-122.74166268936628,45.63465118928922],[-122.74163296950341,45.63462842773784],[-122.7416030295533,45.63460381570469],[-122.7415929360828,45.63459581583372],[-122.74158248867603,45.63458816206158],[-122.74157147622896,45.6345810321495],[-122.74155972626504,45.63457454230188],[-122.74154745617658,45.63456854490813],[-122.74150017065665,45.63454724875321],[-122.7414888482908,45.63454268223948],[-122.74147509418549,45.63453792351718],[-122.74144714580038,45.63452924337054],[-122.74143358123959,45.6345245889169],[-122.74142074431418,45.63451921273986],[-122.74140844637795,45.63451254826445],[-122.74139700543449,45.63450502764491],[-122.7413861268364,45.63449698504685],[-122.74136509727559,45.6344804965866],[-122.74135453218952,45.63447259971164],[-122.7413436796426,45.63446531086746],[-122.74132353132907,45.63445357170575],[-122.74131417627369,45.63444739716573],[-122.74130503861065,45.63443948897972],[-122.74129735172674,45.63443063922208],[-122.74129112280858,45.63442108469821],[-122.74128659440123,45.63441183167646],[-122.74127810442347,45.63439287211641],[-122.74127276573576,45.63438375853554],[-122.74126641734163,45.63437490876906],[-122.74125916434403,45.6343664208059],[-122.74125105525196,45.63435841838846],[-122.74124208198057,45.63435105540971],[-122.74123218254616,45.63434452470675],[-122.74122142971218,45.63433896509743],[-122.74119866730121,45.63432885026278],[-122.74118851005029,45.63432395082038],[-122.74115175637877,45.63430508105377],[-122.74113977554782,45.63429808992325],[-122.74111597468438,45.63428347450048],[-122.74108192134857,45.63426487858676],[-122.74107101220777,45.63425843392817],[-122.74104508054046,45.63424152894452],[-122.74103405731361,45.63423495488752],[-122.74102260109879,45.63422857241081],[-122.74101074333704,45.63422244495617],[-122.74099849211321,45.63421665166855],[-122.74098582766432,45.63421129493415],[-122.74097270148138,45.63420650414884],[-122.74095761247956,45.63420196587339],[-122.74094208420155,45.63419802118525],[-122.74089464596803,45.63418727881815],[-122.74087908445236,45.63418329581268],[-122.74086392717858,45.63417870037505],[-122.74084893339815,45.63417314451811],[-122.74083439865687,45.63416689268654],[-122.74082018012255,45.63416015530555],[-122.74076419980898,45.63413153995735],[-122.74074990222294,45.63412466375406],[-122.74073524441245,45.63411819646646],[-122.74072021469942,45.63411229764124],[-122.74070480230411,45.63410684165133],[-122.74068910514282,45.63410171229169],[-122.74065714577996,45.63409210243579],[-122.74062475432744,45.63408298503718],[-122.74054344421782,45.63406071382975],[-122.74051143724424,45.63405151665261],[-122.74049575984591,45.63404672334111],[-122.7404804309939,45.63404172525659],[-122.74046559531696,45.63403644199747],[-122.74045144056305,45.63403076929295],[-122.74043821466711,45.63402457083716],[-122.74042672970621,45.6340180846939],[-122.74041639818212,45.63401114315045],[-122.74039918286802,45.63399772551069],[-122.74039023295285,45.63399163697528],[-122.74038020056776,45.63398637569624],[-122.74034587055085,45.63397148192718],[-122.74031289070186,45.63395606868421],[-122.74030442497859,45.63395190161801],[-122.74029226089134,45.63394514913584],[-122.74026828305979,45.63393095824234],[-122.74025149085217,45.63392177172231],[-122.74023894138764,45.633914462706],[-122.74022649972093,45.6339067114794],[-122.74021413441106,45.63389865560458],[-122.74015267167933,45.63385733915577],[-122.74012312249637,45.63383875566345],[-122.74011493255593,45.63383325253647],[-122.74010756277735,45.63382779086617],[-122.74008981116901,45.63381417217793],[-122.74004572454982,45.63378171118164],[-122.74002393501429,45.63376507050108],[-122.74001349838731,45.63375656611391],[-122.74000355583374,45.63374788584624],[-122.73999014578317,45.6337353720373],[-122.73997999482047,45.63372644930413],[-122.7399693228349,45.63371767481073],[-122.73994688830901,45.63370043800568],[-122.7399116842313,45.63367503347929],[-122.7398034381379,45.63359950513365],[-122.73977971902114,45.6335825698004],[-122.73975653799525,45.63356544978823],[-122.739734336133,45.63354802763438],[-122.73972381326774,45.63353915449463],[-122.73970518580202,45.63352251122947],[-122.73969579032246,45.6335144898473],[-122.73968591514252,45.63350694962134],[-122.73967472932064,45.6334997743454],[-122.73966270537055,45.63349347155916],[-122.73965068950531,45.63348832518351],[-122.73962589959673,45.63347857263396],[-122.73961300517915,45.63347268881684],[-122.73960042517189,45.63346618313726],[-122.73958815149017,45.63345916614823],[-122.73957619671039,45.63345171448305],[-122.73956459946005,45.6334438727398],[-122.73955342531623,45.63343565473736],[-122.73954277219529,45.63342704351579],[-122.73953286916759,45.63341816972879],[-122.73952342877227,45.63340898626538],[-122.73951430997381,45.63339958734711],[-122.73947894869096,45.63336121087466],[-122.73946070300924,45.63334234141199],[-122.73945160756701,45.63333358256205],[-122.73941483053926,45.633299479316],[-122.73940622647545,45.6332909861648],[-122.73939817936713,45.63328243773552],[-122.73939089223356,45.63327380073643],[-122.73937688659997,45.63325428865132],[-122.73936970097603,45.63324510516109],[-122.73936125950729,45.6332367853699],[-122.73935258357825,45.63323060001738],[-122.73934279463661,45.6332249699452],[-122.73932151893743,45.63321397990197],[-122.73930885359025,45.63320693964],[-122.739296256515,45.63319939246303],[-122.73928372681343,45.63319146085951],[-122.73925884527669,45.6331748105815],[-122.73922192362021,45.63314873181525],[-122.73918569456481,45.63312198468837],[-122.73916240035116,45.63310382997681],[-122.73915124776688,45.63309460940122],[-122.73914060452742,45.63308525000354],[-122.73913066556712,45.63307570404437],[-122.73912168780417,45.6330659080808],[-122.73911400271692,45.633055778569],[-122.7391084367554,45.6330464229337],[-122.73910371970186,45.63303689141538],[-122.73909496651773,45.63301795525979],[-122.73909002219038,45.63300889296348],[-122.7390840636651,45.63300035642596],[-122.73907622137267,45.63299207114662],[-122.73906702082755,45.63298459743415],[-122.73904502467951,45.63297026370764],[-122.73903521597491,45.6329633031899],[-122.73902562735758,45.63295585083068],[-122.73899716423779,45.63293219222173],[-122.73898742560179,45.63292437867246],[-122.73895959938757,45.632903704389],[-122.73893748915347,45.63288640012157],[-122.73892396232192,45.63287635537755],[-122.73891058730567,45.63286585522299],[-122.73890129603069,45.63285897760814],[-122.73888137948251,45.63284536245334],[-122.73884298458897,45.63282005427451],[-122.73883510366895,45.63281511575487],[-122.73882320188976,45.63280865396955],[-122.73881051318639,45.63280263942673],[-122.7387705246815,45.63278549781917],[-122.73875741376993,45.63277952221928],[-122.7387448589155,45.63277311696337],[-122.73873306403584,45.63276608669641],[-122.73872220070912,45.63275849925841],[-122.73871238302137,45.63275041306728],[-122.73870481830836,45.63274311520498],[-122.73869085309894,45.63272832726314],[-122.7386837195773,45.63272125741699],[-122.73867599586245,45.632714697001],[-122.73866699474333,45.632708524782],[-122.73863780488648,45.63269149244412],[-122.73861240771679,45.63267462844579],[-122.73860105840149,45.63266765344387],[-122.73858922938579,45.63266087568091],[-122.73857696917881,45.63265441010883],[-122.73856430023835,45.63264838801163],[-122.73853675789174,45.63263651341653],[-122.73852422819016,45.63263024005637],[-122.7385122213081,45.63262332849234],[-122.73850079743261,45.63261585787145],[-122.73849006615822,45.63260786713896],[-122.73848018648673,45.6325993562947],[-122.73847138120033,45.63259028450839],[-122.73846360268827,45.63258032576829],[-122.73845681142471,45.63256990533374],[-122.73843856664132,45.63253762389684],[-122.73843205385548,45.63252704139069],[-122.73842473348422,45.63251681441763],[-122.73841756672489,45.63250844112521],[-122.73840963460096,45.63250045917157],[-122.73840103682537,45.63249287797917],[-122.73839184167011,45.63248572707144],[-122.73838141492462,45.6324785315638],[-122.73836025241314,45.63246478880125],[-122.73835031974104,45.63245775912377],[-122.73834139138545,45.63245029664682],[-122.73833424349073,45.63244279208251],[-122.73832786275726,45.63243488361366],[-122.73831545971814,45.63241859053105],[-122.73830767761282,45.63240945527183],[-122.7382911144756,45.6323912607557],[-122.73828310689318,45.63238198101624],[-122.73827581886128,45.63237241672084],[-122.73826985225115,45.63236306034329],[-122.7382589745514,45.63234382621417],[-122.73825344631911,45.63233468152038],[-122.73824749677701,45.63232564675246],[-122.73824111155196,45.63231677718812],[-122.7382342547114,45.63230813878393],[-122.73822686696649,45.63229980817498],[-122.73821885579081,45.63229187707228],[-122.73821170250621,45.63228562565902],[-122.73819692611808,45.63227332886579],[-122.73818748482445,45.63226476960264],[-122.7381783893822,45.63225585354508],[-122.73814300294653,45.63221892733272],[-122.73813377635024,45.6322099283511],[-122.73812410059632,45.63220126794488],[-122.7381137259531,45.63219296998423],[-122.73810286711793,45.63218514879402],[-122.73809166422804,45.63217780625892],[-122.73807565624966,45.63216793036236],[-122.73805115200535,45.63215126156367],[-122.73803957541628,45.63214376198457],[-122.73799082204918,45.6321143685748],[-122.7379788681677,45.63210688029761],[-122.73796736524046,45.63209920608451],[-122.73795653155817,45.63209126113397],[-122.73791533032765,45.63205782612136],[-122.73790667416158,45.63205025177881],[-122.73789840786434,45.63204229551446],[-122.73787447045694,45.63201790722668],[-122.7378659220887,45.63201009669075],[-122.73785539922349,45.63200163286764],[-122.73782192350441,45.63197735574648],[-122.73781134763857,45.63196895473446],[-122.73780273099837,45.63196122899332],[-122.73777847019747,45.63193729420208],[-122.73777006016979,45.63192957411002],[-122.73775976547665,45.63192108326385],[-122.7377387565771,45.63190454819001],[-122.73772901614447,45.63189595620617],[-122.73771998627923,45.63188659723644],[-122.7377112501631,45.63187693172254],[-122.73770209543203,45.63186727939835],[-122.73769244393262,45.63185763649493],[-122.73767217434656,45.63183838397563],[-122.73762020680735,45.6317905808632],[-122.73758807945954,45.6317595885949],[-122.73758007277542,45.63175266687286],[-122.73755650996551,45.63173426045271],[-122.73754941956297,45.63172916102773],[-122.73752273331083,45.63171258129768],[-122.73749975530416,45.63169775413777],[-122.73747691653639,45.63168202932867],[-122.7374657675454,45.63167387514056],[-122.73745493206644,45.63166552559244],[-122.73744453047377,45.63165696560829],[-122.73741653447792,45.6316321066581],[-122.73740681560487,45.63162431240071],[-122.73739535220354,45.63161629765658],[-122.73735513911986,45.63159107875026],[-122.73734668866798,45.63158629716342],[-122.73733402152412,45.63158012356384],[-122.73732096630812,45.63157413715659],[-122.73728917133695,45.63155865980967],[-122.73725096688622,45.63154190728388],[-122.7372381928429,45.63153603394223],[-122.7372244863483,45.63152910842363],[-122.73721108348425,45.63152175826457],[-122.73719791058892,45.63151409276567],[-122.73718490837349,45.6315061954727],[-122.73715924979403,45.63148994986071],[-122.73713385711591,45.63147336377824],[-122.73704544492564,45.63141479672641],[-122.73702003068794,45.63139832243531],[-122.73699438468491,45.63138225707588],[-122.73698142648693,45.63137448100055],[-122.73696834252482,45.63136695807536],[-122.73695509866258,45.63135977121842],[-122.7369308261836,45.63134746291505],[-122.73691910137252,45.63134127358496],[-122.73690803143326,45.63133475069748],[-122.73689757683999,45.63132759398845],[-122.73687736564442,45.63131283205612],[-122.73685224695242,45.63129664041051],[-122.7368408661961,45.63128898932865],[-122.73680697815031,45.63126501656022],[-122.73679540515452,45.63125716634481],[-122.73678348361237,45.63124963712217],[-122.73677105721706,45.63124260477962],[-122.7367585356003,45.63123639973375],[-122.73673283390173,45.63122444192125],[-122.73671922083189,45.63121752578665],[-122.73670586198533,45.63121020259801],[-122.73667967878973,45.63119471761257],[-122.73665393936189,45.6311785498032],[-122.73661574748759,45.63115369315354],[-122.73657783768429,45.63112853371509],[-122.73654034290263,45.63110320654409],[-122.7365158844724,45.63108618628173],[-122.73649233783217,45.63106895871805],[-122.73648112775574,45.63106022338326],[-122.736470463855,45.63105137309196],[-122.73645671424127,45.63103935493562],[-122.73644751369611,45.63103188661627],[-122.73638605725259,45.6309859051403],[-122.73637086314785,45.63097583806966],[-122.73634804234639,45.6309602248725],[-122.73633603546429,45.63095253479812],[-122.73632340155814,45.63094537175854],[-122.73631016667906,45.63093854039271],[-122.73626942358935,45.63091846779348],[-122.73625630728789,45.63091140588525],[-122.73624386202795,45.63090387284716],[-122.73623326909413,45.63089647989042],[-122.73622320975956,45.63088873641265],[-122.73620367769036,45.63087297494253],[-122.73619372615364,45.63086533134093],[-122.73616949499717,45.63084808674869],[-122.73614631576785,45.63082976232209],[-122.73613553328951,45.63082158728026],[-122.73612432411142,45.63081357807495],[-122.73611276009875,45.63080575417956],[-122.73610088616731,45.63079814825917],[-122.73608872567331,45.63079080931136],[-122.7360762804134,45.63078380706355],[-122.73606353331951,45.63077723260095],[-122.73604511605954,45.63076852046313],[-122.73603219648913,45.63076213382263],[-122.73598153330374,45.63073533781547],[-122.73596893263526,45.63072896436288],[-122.73595630142403,45.6307230023635],[-122.73593004276997,45.63071123415004],[-122.73591873387883,45.63070504851876],[-122.73590841493119,45.63069829062005],[-122.73588874631804,45.63068313214387],[-122.73587491675424,45.6306734450645],[-122.73586510086314,45.63066622733806],[-122.73585561734869,45.63065856549122],[-122.73584669977285,45.63065050286774],[-122.73582911974273,45.63063269473642],[-122.73582149574094,45.63062577224703],[-122.73579860936242,45.6306067234616],[-122.73579162855437,45.63060125707961],[-122.73578035918911,45.63059347524236],[-122.73574557103142,45.63057173471302],[-122.7357143599652,45.63055150431026],[-122.73568771503555,45.63053516293873],[-122.73567733859572,45.63052809784134],[-122.73564711298135,45.63050565749811],[-122.73563653531887,45.63049846676165],[-122.73562411611006,45.6304909839222],[-122.7355984745986,45.63047683738277],[-122.73558608772916,45.63046966862884],[-122.73557459827666,45.63046208653359],[-122.73556454253537,45.63045379145635],[-122.73555731199566,45.6304458305681],[-122.7355511908753,45.63043729489655],[-122.73554578840718,45.63042837980465],[-122.735535761412,45.63041009167509],[-122.73553048830128,45.6304010377516],[-122.73552460164122,45.63039225959665],[-122.73551838619774,45.6303844526032],[-122.73549082498653,45.63035359398746],[-122.73548337615618,45.63034612557673],[-122.73547519699551,45.63033925267808],[-122.73546656149068,45.6303335136406],[-122.7354571624179,45.63032850580223],[-122.73544720189801,45.6303242209969],[-122.73542344415368,45.63031619978511],[-122.7354117965977,45.63031178808674],[-122.73539978612239,45.63030578960861],[-122.73538817899058,45.63029876594209],[-122.73534214931541,45.63026818179345],[-122.73531822538278,45.63025259227],[-122.73529364837491,45.63023720815687],[-122.73528107016432,45.63022971900069],[-122.73526824132377,45.63022244782188],[-122.7352550971745,45.63021547377115],[-122.73524104572682,45.63020859394648],[-122.73518357959979,45.63018253704267],[-122.73516962247524,45.63017575269737],[-122.73515615403416,45.63016858767399],[-122.73514366745172,45.63016116509581],[-122.73513163362018,45.63015341460643],[-122.73509655979822,45.63012988170701],[-122.7350847164095,45.63012249932724],[-122.73507255411886,45.63011565781018],[-122.73506137368686,45.63011010783224],[-122.73503908558634,45.63009956193041],[-122.73502859955202,45.63009394787638],[-122.7350181242975,45.63008728852842],[-122.73499798406883,45.6300732097307],[-122.73498763278181,45.63006658430204],[-122.73496646577877,45.63005364753313],[-122.73495634356215,45.63004699320582],[-122.73494702174445,45.6300399720196],[-122.73493778616501,45.63003156506354],[-122.7349223459219,45.63001651947979],[-122.73491530582501,45.63001035575824],[-122.73490205926785,45.62999977277484],[-122.73487547901692,45.62997695719517],[-122.73486601167212,45.62996950255427],[-122.73485813883696,45.62996393937002],[-122.7348418236348,45.62995304040201],[-122.73481893006978,45.62993703493386],[-122.73480705793497,45.62992923604343],[-122.73479826432666,45.62992399825396],[-122.73478017225682,45.62991377457503],[-122.73473646382838,45.62988807371412],[-122.73472526004015,45.62988199980867],[-122.73470737548115,45.6298729709272],[-122.73469484308463,45.62986626695189],[-122.73468250562252,45.62985919297563],[-122.73467035411167,45.6298518256366],[-122.7346466529612,45.62983643261893],[-122.73463515901716,45.62982847604026],[-122.73462396870366,45.62982036869634],[-122.7346131574792,45.62981211498428],[-122.73460282146357,45.62980370610946],[-122.73458873138831,45.62979168077555],[-122.73457815642078,45.62978339062458],[-122.73456697149719,45.62977532661883],[-122.73455532663617,45.62976743347819],[-122.73453111075106,45.62975198892614],[-122.73448123269323,45.62972159921654],[-122.73445662334601,45.62970624511062],[-122.73444466048134,45.62969842922702],[-122.73443306143442,45.62969046885967],[-122.73442196185074,45.62968231438187],[-122.73441152971536,45.62967390611577],[-122.73440287265097,45.62966616875092],[-122.73438642719309,45.62965063810947],[-122.73437805848789,45.62964321232176],[-122.73436920289582,45.62963627589013],[-122.73435881747284,45.62962943180098],[-122.73433715459976,45.62961660046651],[-122.7343129665624,45.62960128653573],[-122.73429695229582,45.62959196047672],[-122.73428563981146,45.62958494802811],[-122.73427455909243,45.62957745815663],[-122.73426381344498,45.6295695404888],[-122.73425397779094,45.62956168877952],[-122.73423460831678,45.6295456580721],[-122.73422461905083,45.62953784593531],[-122.73421410337211,45.62953042515809],[-122.7342016069082,45.62952279833448],[-122.73418851755621,45.62951564641961],[-122.73416197593281,45.62950180556139],[-122.73414922075408,45.62949466243847],[-122.7341373081951,45.62948705571197],[-122.7341272919797,45.62947949609853],[-122.73410837256151,45.62946379705095],[-122.7340982692095,45.62945601442757],[-122.73408782359937,45.62944861499795],[-122.73407718485149,45.62944166346568],[-122.73406229527562,45.62943239203256],[-122.73403299043443,45.62941261414261],[-122.73402546075572,45.62940733358804],[-122.73400138141453,45.62938891634661],[-122.73399058546144,45.62938121537739],[-122.73397936730015,45.62937358476432],[-122.73396781855888,45.62936607664707],[-122.7339560057129,45.62935875196011],[-122.73394397816956,45.62935168231711],[-122.73393177006486,45.62934495440832],[-122.73391444964784,45.62933585319849],[-122.73390265117492,45.6293290385976],[-122.73389139528442,45.62932180750607],[-122.73388076012974,45.62931424284483],[-122.73386647062853,45.62930326899588],[-122.73385592081384,45.62929576338203],[-122.73384482841669,45.62928864912957],[-122.73383328237034,45.62928202737732],[-122.73382134645517,45.62927602690442],[-122.73379841965249,45.62926611280515],[-122.73378748805381,45.62926094468285],[-122.73377976883054,45.62925662901456],[-122.7337722014226,45.62925203505751],[-122.73374302414219,45.62923375847976],[-122.73373348313554,45.62922730821711],[-122.73371187236476,45.62921150984474],[-122.73370121565054,45.62920398977018],[-122.73369040622272,45.62919694272254],[-122.73368009086832,45.62918978385597],[-122.73367074299949,45.62918189440198],[-122.73365261140378,45.62916556833596],[-122.73361744505534,45.62913634800159],[-122.73361067265643,45.62913103475504],[-122.73358560786336,45.6291135747875],[-122.73357521435553,45.62910582038414],[-122.73356513076646,45.62909771670481],[-122.73353952249266,45.6290750062943],[-122.73353089866595,45.62906771046615],[-122.73352190563162,45.62906086191025],[-122.73351232869238,45.62905467421226],[-122.73350083295169,45.62904870763745],[-122.73347697549437,45.62903814143373],[-122.73346569534937,45.62903259260545],[-122.73345562164175,45.6290262126773],[-122.73344754668567,45.62901897777756],[-122.73344072667602,45.62901079807428],[-122.73343477982884,45.6290019323827],[-122.73342937556411,45.62899259554469],[-122.7334190368535,45.62897322582545],[-122.73341355084206,45.62896350641265],[-122.73340747104423,45.62895396352062],[-122.73340047586309,45.62894475105703],[-122.73339247726381,45.62893612783794],[-122.73338359741722,45.62892784761153],[-122.73337415522528,45.62891978473908],[-122.73335471658083,45.62890385498738],[-122.73334526989731,45.62889576258635],[-122.73333639184735,45.62888742581645],[-122.73332840851943,45.62887870710297],[-122.73332086177274,45.6288684248112],[-122.73331448014096,45.62885765064097],[-122.73330893304406,45.62884652970497],[-122.73330395278414,45.62883518010374],[-122.73328564152537,45.62878939722001],[-122.73328054987434,45.62877831961602],[-122.73327484108073,45.62876761515818],[-122.73326824295496,45.62875743838303],[-122.73326255841583,45.62875016575681],[-122.73324910524614,45.62873449100459],[-122.73324143632856,45.62872609830127],[-122.73323323650666,45.62871814219319],[-122.73319887325208,45.6286896691798],[-122.73316199651137,45.6286620743715],[-122.73314766209437,45.62865078064249],[-122.73313682661541,45.62864290744577],[-122.73310253432777,45.62861976590744],[-122.73309147696492,45.62861181732267],[-122.73308113016948,45.62860353076637],[-122.73307187033554,45.62859474290692],[-122.73306413224766,45.628585545461],[-122.73305741195104,45.62857589948018],[-122.7330396477663,45.62854611094706],[-122.73303340267843,45.62853647877976],[-122.73302641827712,45.62852730708045],[-122.73301829301536,45.62851881760349],[-122.73300967098527,45.62851183643057],[-122.73300015333483,45.62850536786705],[-122.7329699825177,45.62848668146002],[-122.73296057446171,45.62847993020401],[-122.73295078372347,45.62847146647601],[-122.73294176463799,45.62846242040595],[-122.73292435259283,45.62844359766534],[-122.73291514935276,45.62843428774689],[-122.7329062766927,45.62842622480345],[-122.73287802827028,45.62840265474319],[-122.73286891665835,45.62839461692321],[-122.73286040601934,45.62838628007877],[-122.73285183878646,45.62837648643661],[-122.73284405668117,45.62836631084681],[-122.73283676056442,45.62835590156454],[-122.73280884721359,45.62831462500368],[-122.73280251498916,45.62830394809814],[-122.73278521523342,45.62827166294778],[-122.73277906626529,45.62826127814783],[-122.73277221122136,45.62825135381781],[-122.73276427370753,45.628242101662],[-122.73275477132844,45.62823347833481],[-122.73274436344757,45.62822543986236],[-122.73271928068819,45.62820729989798],[-122.73271113925678,45.62820211094736],[-122.73268330585603,45.62818535364909],[-122.73264078769532,45.62815812043732],[-122.73261382566037,45.62814159681736],[-122.73260342227105,45.62813439761103],[-122.73259342222532,45.62812675175132],[-122.73256421979207,45.62810276004068],[-122.73255423861093,45.62809491440799],[-122.73254336540276,45.62808698962052],[-122.73253218227576,45.62807944992078],[-122.73252079612956,45.6280723317447],[-122.73250474054045,45.62806272525241],[-122.73249337954708,45.62805516419045],[-122.73246430287796,45.62803433105979],[-122.73245715498325,45.62802904974718],[-122.73244852486829,45.62802185869303],[-122.7324402837239,45.62801419522824],[-122.73241611185622,45.62798983031586],[-122.73240766230268,45.62798167998805],[-122.73239772873227,45.62797278963372],[-122.73238737025869,45.62796406952154],[-122.73234502457453,45.62792977643122],[-122.73233499488438,45.62792110656874],[-122.7323163934698,45.62790421537864],[-122.73230666561359,45.62789619696157],[-122.73229638888674,45.62788889909542],[-122.73228554891618,45.62788197563898],[-122.73226348000462,45.6278683938265],[-122.73225288168089,45.62786132336729],[-122.7322428609739,45.62785383766291],[-122.73222367206114,45.62783844346832],[-122.7322138543734,45.62783102686359],[-122.7322024358878,45.6278233407573],[-122.73216426467475,45.62779960271234],[-122.73215638285645,45.62779527562381],[-122.73213828629504,45.62778591785394],[-122.73212806346712,45.62778082498003],[-122.73211742651584,45.62777598778594],[-122.73210558133049,45.62777129759186],[-122.73206846653621,45.62775809833079],[-122.7320549055687,45.62775277176119],[-122.7320281528412,45.6277417630551],[-122.73201471943445,45.62773660233078],[-122.73198607126174,45.62772675392101],[-122.73196386760284,45.62771846409282],[-122.73195270154386,45.62771456794853],[-122.73193840305949,45.62771034199486],[-122.73191317117977,45.62770366477387],[-122.7319022216148,45.62770109917289],[-122.73188764914424,45.6276985436231],[-122.73187254307442,45.62769661439655],[-122.73184155928196,45.62769346079261],[-122.73182606693659,45.62769167228442],[-122.73181083869589,45.62768934226091],[-122.73179609734207,45.62768612457933],[-122.73178311758454,45.62768211912455],[-122.73177073071508,45.62767722726785],[-122.73175893583539,45.62767160920199],[-122.73174777157304,45.62766537863245],[-122.73173732147133,45.62765860340556],[-122.73172771937926,45.62765131304697],[-122.7317191512481,45.62764350001792],[-122.73171161528117,45.62763507259969],[-122.73169777853084,45.62761753678119],[-122.73168988593278,45.62760834231597],[-122.73166522987319,45.62758158626291],[-122.73165709023837,45.62757313119415],[-122.73164843137737,45.62756515921725],[-122.73163901703316,45.62755781230763],[-122.73161974996697,45.62754351865503],[-122.73161149175455,45.62753636334656],[-122.73159547479304,45.62752138179866],[-122.73158691744165,45.62751401478061],[-122.73157696141335,45.62750656295319],[-122.73156628044462,45.6274994164349],[-122.73153258823157,45.62747860131578],[-122.73152164585311,45.62747148871735],[-122.73151128378628,45.62746408462826],[-122.73150180206846,45.62745624581647],[-122.73149419513464,45.62744873744244],[-122.73148720175017,45.62744092312872],[-122.73147364886745,45.62742504761111],[-122.7314663994631,45.62741731119227],[-122.73145823647214,45.6274096865939],[-122.73144950125433,45.6274023270997],[-122.73144043365984,45.62739513156765],[-122.73141568507377,45.62737613571044],[-122.73140752028614,45.62737048557563],[-122.73139642878733,45.62736371847986],[-122.73136133160919,45.62734424642738],[-122.73134926274332,45.62733676002576],[-122.73133749930471,45.62732891428581],[-122.73130249555135,45.62730482234797],[-122.7312904033293,45.62729711795134],[-122.73127868480641,45.62729023965314],[-122.73124305313065,45.62727037619858],[-122.73123173435808,45.62726352239738],[-122.73122109291522,45.62725629166761],[-122.73121105693689,45.62724840194154],[-122.73119183837969,45.62723199867032],[-122.73118228300002,45.62722438221358],[-122.73114247685314,45.62719465201425],[-122.73113302118647,45.62718706821954],[-122.731119141317,45.62717518932627],[-122.7311099255005,45.62716769410703],[-122.73108143543126,45.62714537303552],[-122.73107238131152,45.62713769186092],[-122.73106343588792,45.62712936362455],[-122.7310383908578,45.62710428404758],[-122.73102371058943,45.62709042940147],[-122.73101695346185,45.6270836949391],[-122.73100631651059,45.62707204720701],[-122.73100067419229,45.62706653085131],[-122.73099461236075,45.62706159119653],[-122.73096787670126,45.62704226604148],[-122.73094716604238,45.62702673153193],[-122.73093711209772,45.62701860305162],[-122.73092755042984,45.62701021951457],[-122.73090035034134,45.62698432885752],[-122.73089238318309,45.62697623303829],[-122.73086122960905,45.62694262347126],[-122.7308529219893,45.62693443027243],[-122.73082778712762,45.62691202492702],[-122.73081771791165,45.62690256586681],[-122.73078853973288,45.62687406366138],[-122.73077853878883,45.62686510339925],[-122.73076806263596,45.62685675816049],[-122.73073106282607,45.62683119787507],[-122.73071957696683,45.62682391054997],[-122.73068636355583,45.62680569097653],[-122.73067127365569,45.62679633052858],[-122.73064792464481,45.62678238974048],[-122.73063644237887,45.62677517967987],[-122.73061357037344,45.62675916827848],[-122.73059905539506,45.62674937246734],[-122.73057090219406,45.62672810789328],[-122.73056101892929,45.62672133443776],[-122.73055324131555,45.62671664541189],[-122.73053544389315,45.62670649527778],[-122.73052547528845,45.62670090915378],[-122.73051519676498,45.62669548071228],[-122.73049059819755,45.62668377573158],[-122.73047836134674,45.62667770147889],[-122.73046626553143,45.62667088090082],[-122.73045476979075,45.62666349618083],[-122.73044394419327,45.62665561579459],[-122.73043428460902,45.62664772347105],[-122.73041580267036,45.62663162031319],[-122.73040637934302,45.62662385739961],[-122.73039547828706,45.626615752105],[-122.73037382080389,45.62660021307973],[-122.7303637731474,45.6265923031582],[-122.7303535512178,45.62658464892133],[-122.73034617784595,45.62657987381782],[-122.73031552912509,45.62656142235166],[-122.73029164292167,45.62654733261675],[-122.73027939888436,45.62654043726457],[-122.73026695452273,45.62653380136679],[-122.73025429007384,45.62652756627326],[-122.73021738548533,45.62651116153469],[-122.7302006319053,45.62650294816972],[-122.73018958442393,45.62649798207995],[-122.7301548887927,45.62648346451028],[-122.73014352330773,45.62647823205281],[-122.73011775962539,45.62646472968436],[-122.73010451127158,45.62645816225378],[-122.73009069787746,45.6264523336114],[-122.73007620984856,45.62644701885397],[-122.73001574334846,45.6264273573882],[-122.73000096516374,45.62642199802461],[-122.72998675291761,45.62641607263224],[-122.72997375339713,45.62640963900735],[-122.72996149139352,45.62640258030039],[-122.72994997139831,45.6263949913727],[-122.72993925809021,45.62638692939238],[-122.72992947723343,45.62637841320588],[-122.72992046174123,45.62636920974229],[-122.72989627460221,45.62634133423239],[-122.72988792386333,45.62633282683404],[-122.72986972040242,45.62631664066024],[-122.72986216197759,45.62630852338498],[-122.72985516769481,45.62629981180905],[-122.72983465915685,45.62627218881062],[-122.7298270153921,45.62626311034617],[-122.729819356356,45.62625512875954],[-122.72979478294141,45.62623167526434],[-122.72977752630482,45.62621390782013],[-122.72976852428731,45.62620515790778],[-122.72975846944436,45.62619652044624],[-122.72974765283003,45.62618828127797],[-122.72973617775057,45.62618044668532],[-122.72972409451168,45.62617305938783],[-122.72971140131672,45.62616619979844],[-122.72969804516507,45.62615999042126],[-122.72968407097252,45.6261545612991],[-122.72966954521438,45.62614972647757],[-122.72965462779077,45.62614531445123],[-122.72963944985574,45.62614118701067],[-122.7295779404116,45.62612553979906],[-122.72952259520693,45.62611033862329],[-122.7295090405276,45.62610713278738],[-122.72949283581822,45.62610403186493],[-122.72947636341085,45.62610151079478],[-122.7294597221202,45.62609938487856],[-122.72940965361954,45.62609387533762],[-122.7293932243313,45.62609186124536],[-122.72937711484329,45.62608950351336],[-122.72936147786918,45.62608660739166],[-122.72934650654665,45.6260829347824],[-122.72933245060737,45.6260781847652],[-122.72932049942082,45.62607266391409],[-122.72930927317475,45.62606626919982],[-122.72929850237449,45.6260593034271],[-122.729277391067,45.62604469653566],[-122.72926660858863,45.62603753161245],[-122.729255375156,45.62603077503564],[-122.72924427826733,45.62602496016981],[-122.72919825398203,45.62600367584587],[-122.72917265648802,45.625990361203],[-122.72915953210172,45.62598419955162],[-122.72914553185801,45.62597881564481],[-122.72906345458715,45.62595034626575],[-122.72903625719357,45.62594170373918],[-122.72900665501002,45.62593297325937],[-122.72899616717909,45.62592938796372],[-122.72897194859904,45.62592087673352],[-122.72895830678313,45.62591574599644],[-122.72894777673139,45.6259111002509],[-122.72890969175658,45.62589202850345],[-122.72890120177883,45.62588739971811],[-122.72888577501045,45.62587822884177],[-122.72885298829921,45.62586013586318],[-122.72884237290752,45.62585373986818],[-122.72881627505187,45.62583628390566],[-122.7288045744953,45.62582920439493],[-122.72879226577926,45.62582242203563],[-122.72877866528586,45.62581568302328],[-122.72876463539775,45.62580925686822],[-122.72872228073045,45.62579045710937],[-122.72870882217084,45.62578391975482],[-122.72869061781161,45.62577434742294],[-122.72868138762206,45.62576976386043],[-122.7286680179957,45.62576398100722],[-122.72862595707748,45.62574823945583],[-122.72861229819357,45.6257426205684],[-122.7285996463211,45.62573661469078],[-122.72858761698113,45.62573017973148],[-122.72856061182708,45.6257140423856],[-122.72855020933606,45.62570851521636],[-122.72851747382882,45.62569298850418],[-122.72850691952253,45.62568756624735],[-122.72849092322225,45.62567840539003],[-122.72847971763743,45.62567228014171],[-122.72843233599775,45.62564800153546],[-122.72842081061266,45.62564163253023],[-122.72839641057291,45.62562709275066],[-122.72838403088997,45.62562034931724],[-122.72833787814561,45.62559949266532],[-122.72832625664081,45.62559449696861],[-122.7282907282713,45.62557988178904],[-122.72827926037839,45.62557482263922],[-122.72826829554205,45.62556950591385],[-122.72825188960998,45.62556065978146],[-122.72824048100588,45.62555483984096],[-122.72821693795892,45.62554333314347],[-122.72820534250523,45.62553731342339],[-122.72818063613997,45.62552317819838],[-122.72816797528435,45.62551646804872],[-122.72815567195823,45.62551091824367],[-122.72814294911885,45.62550581825247],[-122.72811968095637,45.62549695891711],[-122.72810911587032,45.62549321904832],[-122.72809608760375,45.62548924547679],[-122.72806932768977,45.62548167401598],[-122.72805655723967,45.62547755846295],[-122.72804392153688,45.62547309989452],[-122.72799485106451,45.62545435844858],[-122.727983361612,45.62544963476393],[-122.72797265189719,45.62544453539541],[-122.727963089331,45.62543877072743],[-122.72795458048863,45.62543172069346],[-122.72794763201991,45.62542385269873],[-122.727942136127,45.62541540924098],[-122.72793807394527,45.62540659323947],[-122.72793534037187,45.62539758939466],[-122.72793085688026,45.62537975069562],[-122.72792738758666,45.62537129215363],[-122.72792279989052,45.62536418117251],[-122.72791704887605,45.6253574245145],[-122.72791053609023,45.62535092857295],[-122.72790471680382,45.62534569600977],[-122.72789834415518,45.62534073672807],[-122.72789121243017,45.62533613742421],[-122.72788345637601,45.62533172596208],[-122.72785925037235,45.62531906578009],[-122.72783306448183,45.62530639617169],[-122.72781947746316,45.62530019863571],[-122.72780561735662,45.62529418831306],[-122.72779149224711,45.62528845504134],[-122.72777708057501,45.62528310939004],[-122.72773754751599,45.62527022051948],[-122.72772459650452,45.62526568026397],[-122.72771062051535,45.62526012917755],[-122.72769695444491,45.62525417350707],[-122.72766996635883,45.62524185695232],[-122.72765637305196,45.62523587677872],[-122.72762961134133,45.6252248644372],[-122.72761649054829,45.62521914309488],[-122.7276034667733,45.62521275770676],[-122.72759091191888,45.62520594134811],[-122.72757877747603,45.62519882657658],[-122.72756704278346,45.6251915296157],[-122.72755571772269,45.62518415600908],[-122.72753737681953,45.62517170185522],[-122.72752980402167,45.62516682548529],[-122.72751966204211,45.62516115753715],[-122.72750904126055,45.62515592872569],[-122.72747703788019,45.62514113815376],[-122.72746121854806,45.62513317776745],[-122.72745301872614,45.62512942970731],[-122.72742515657929,45.62511746870724],[-122.72741334014006,45.62511308926801],[-122.72738857268935,45.62510465141757],[-122.72737604208943,45.62510015072759],[-122.72736223498353,45.62509462349782],[-122.72734858957438,45.62508863325669],[-122.72733506364114,45.62508230690802],[-122.72726795769277,45.62504885954723],[-122.72725438504716,45.62504234597925],[-122.72724065878961,45.62503607930793],[-122.72722671873304,45.6250301613079],[-122.72718557229976,45.62501430772411],[-122.72717181999107,45.62500850908703],[-122.72713115505479,45.62499062503106],[-122.72710433136041,45.62497993744059],[-122.72709111444763,45.6249744422391],[-122.72705738091207,45.62495879407356],[-122.72704297283326,45.62495257074139],[-122.72702818836029,45.62494661064054],[-122.72696794284576,45.62492338904632],[-122.72695325898412,45.62491721534111],[-122.72693903865319,45.62491063327973],[-122.7269254974486,45.62490346004445],[-122.72691284288119,45.62489557312843],[-122.72690088450811,45.62488708121668],[-122.72688943547983,45.62487814765123],[-122.72687835026925,45.6248688980799],[-122.7268675174852,45.62485942611011],[-122.72680403534072,45.62480113234254],[-122.72678220538099,45.62478214879933],[-122.72677087762526,45.62477296769034],[-122.72675975199046,45.62476450403087],[-122.72674833799647,45.62475629606419],[-122.72673670391521,45.62474833311023],[-122.72672489735744,45.62474062333632],[-122.72671295335742,45.62473319815463],[-122.72670089527136,45.62472610908095],[-122.72668873387906,45.62471943464569],[-122.7266715751588,45.62471053309386],[-122.72664512426527,45.62469596354545],[-122.72663257569906,45.62468989347509],[-122.72661948275379,45.62468412433179],[-122.72659265726277,45.62467280467163],[-122.72657940531572,45.62466691050641],[-122.72656659533976,45.62466061112454],[-122.72655451569413,45.62465368538467],[-122.72654290766404,45.62464559299831],[-122.72653216740649,45.62463677938866],[-122.72652206135953,45.62462744119529],[-122.72651240536857,45.62461773422207],[-122.72650305300813,45.62460778474552],[-122.72646646821985,45.62456752380657],[-122.72645702153636,45.62455782122066],[-122.7264472200183,45.6245484999767],[-122.72643690017229,45.62453972593114],[-122.72642585538588,45.62453171268698],[-122.72641382245266,45.62452473101749],[-122.72640113913916,45.6245191723188],[-122.72638764374862,45.62451442531032],[-122.72635960463367,45.62450575994555],[-122.72634569601813,45.62450108518397],[-122.72633347803195,45.62449629042741],[-122.7263216840506,45.62449097988221],[-122.72631035000664,45.62448522202688],[-122.72629953698556,45.6244790639795],[-122.72628933032732,45.62447253338272],[-122.72627429432609,45.62446180988356],[-122.72626328906556,45.62445429922368],[-122.72625172954447,45.62444703923227],[-122.72623964001735,45.62444012540268],[-122.72622768433925,45.62443391332129],[-122.72620337413103,45.62442188683534],[-122.72619152714907,45.62441566155886],[-122.72616649739031,45.62440099015815],[-122.72615377005937,45.62439387339968],[-122.7261414523602,45.62438779827062],[-122.72611597703704,45.62437605574163],[-122.72610296943172,45.62436962565206],[-122.72606432211157,45.62434922526927],[-122.72605125611578,45.62434253131352],[-122.72603792152368,45.62433614519729],[-122.726024186283,45.62433024722724],[-122.72601004410548,45.62432500577339],[-122.72599553002546,45.62432026377443],[-122.7259807985531,45.62431586165605],[-122.72593672271368,45.62430339851385],[-122.72592255717996,45.62429910193948],[-122.72590893602531,45.62429453521896],[-122.72589607574369,45.62428955825337],[-122.72587889546391,45.62428182014531],[-122.72584190463712,45.62426586583042],[-122.72583074576465,45.62426049495179],[-122.72580841454501,45.62424929268816],[-122.72579689544811,45.62424387406114],[-122.72578325902212,45.62423811680865],[-122.72572651963215,45.62421668416827],[-122.72571270983127,45.62421086346003],[-122.72570096346061,45.62420535750302],[-122.72566618069281,45.62418822268977],[-122.725653943842,45.62418281159585],[-122.72564143390336,45.62417763546591],[-122.7256034387601,45.62416238789989],[-122.72559100338164,45.62415702517857],[-122.72557829850858,45.6241510800711],[-122.72556590355428,45.62414484282777],[-122.72555379336595,45.62413838381229],[-122.7255304218972,45.62412501909481],[-122.72550836286706,45.62411133710883],[-122.72548282466187,45.62409436812445],[-122.72547487457162,45.62408967510933],[-122.72543043311785,45.62406495101764],[-122.7254178629921,45.62405839587093],[-122.72540497216778,45.62405219002974],[-122.7253916797965,45.6240465332774],[-122.72537788347037,45.62404166309208],[-122.72536386436205,45.62403783391489],[-122.7253494850293,45.62403469581131],[-122.72530650962611,45.62402659014233],[-122.72529305825304,45.62402342565169],[-122.72528052944978,45.62401954370027],[-122.72526929511882,45.62401459372497],[-122.72526068656347,45.62400912921312],[-122.72525297452674,45.62400283855284],[-122.72523115983839,45.62398172622979],[-122.72522292049059,45.62397450889819],[-122.72521420952729,45.62396742663935],[-122.7251812727974,45.62394174692548],[-122.72517351045505,45.62393620387522],[-122.72514673706628,45.62391931776686],[-122.72510861436227,45.62389386922715],[-122.72510024655539,45.62388884699192],[-122.72508765127679,45.62388251548186],[-122.72507437956679,45.62387704090511],[-122.72506074493741,45.62387235164132],[-122.72504142487058,45.62386655288611],[-122.72503200693315,45.62386335006309],[-122.72501957335132,45.62385802752119],[-122.7250074766377,45.62385184741613],[-122.72498325715932,45.62383834818459],[-122.72497059989696,45.62383168620863],[-122.72495761654615,45.62382558086258],[-122.72494414361353,45.62381978398728],[-122.72490275194019,45.62380278727157],[-122.72488924127832,45.62379676296685],[-122.72487619774039,45.62379028317896],[-122.72486358090222,45.62378310728732],[-122.72485145274757,45.62377547214264],[-122.72481611931251,45.62375162872193],[-122.72480411153211,45.62374392823475],[-122.72479168603509,45.62373664616253],[-122.72477947793038,45.62373028008136],[-122.7247417819261,45.62371234033139],[-122.72470767558973,45.62369511112958],[-122.72469604600005,45.62368973391367],[-122.7246820421631,45.62368400864519],[-122.72465341554992,45.62367337483536],[-122.724639343441,45.62366788327533],[-122.7246258184061,45.62366187466242],[-122.72461317282182,45.62365519570271],[-122.72460108598968,45.62364798900936],[-122.72457754473936,45.62363307929968],[-122.72456560702754,45.62362588893808],[-122.72454859473268,45.62361639728245],[-122.72453745113158,45.62360987349594],[-122.72449301506774,45.62358220142472],[-122.72448154268326,45.62357546151485],[-122.72446973432884,45.62356903573121],[-122.72445725044135,45.62356287695496],[-122.72441899388831,45.62354526635672],[-122.72438434137624,45.62352821050184],[-122.72437242702061,45.62352292059735],[-122.72435764973419,45.62351725373955],[-122.72434232986534,45.62351214351492],[-122.7243266407889,45.6235074152688],[-122.72427876866909,45.62349410568733],[-122.72426298796451,45.62348952947743],[-122.72424754233151,45.62348465170469],[-122.72423262221297,45.62347929771406],[-122.72421846386577,45.62347325327039],[-122.72420591440124,45.62346669051539],[-122.72419428840483,45.62345940023987],[-122.724183612826,45.62345147102751],[-122.72417412392166,45.6234432427644],[-122.72415601119059,45.62342623965197],[-122.72414718703955,45.62341849325738],[-122.72412017020739,45.62339576421126],[-122.72411173323023,45.62338808629239],[-122.72409318212128,45.62336991272154],[-122.72408356475788,45.62336183145843],[-122.72407314160561,45.62335423960607],[-122.72406206986975,45.62334718051438],[-122.72403959761459,45.62333465056164],[-122.72402872440641,45.62332828946088],[-122.72400407643163,45.62331182787118],[-122.72395653848513,45.62328097855511],[-122.72394885968608,45.6232761485118],[-122.72393762266019,45.62326995766222],[-122.72391382359334,45.62325807354109],[-122.72388121564686,45.62324070598291],[-122.72387002353675,45.62323507616375],[-122.72383172116966,45.62321764137484],[-122.72381994695121,45.62321168171781],[-122.72378552620448,45.62319281826201],[-122.72377394512384,45.6231867624788],[-122.72376210083681,45.62318112008909],[-122.72374922887711,45.62317574910649],[-122.72371289112554,45.62316212468863],[-122.72370254433011,45.62315844497697],[-122.72366718753885,45.62314775892195],[-122.7236558588848,45.62314378455586],[-122.72364671942509,45.62313992201961],[-122.7236174684828,45.62312633277561],[-122.72359423894788,45.62311614743712],[-122.72358264888409,45.62311084806986],[-122.72357133729803,45.62310524776588],[-122.72356051529378,45.62309920265362],[-122.72355200195986,45.62309376946551],[-122.72352491865234,45.62307491853521],[-122.72347042505058,45.6230385146411],[-122.72345987703252,45.62303122116856],[-122.72343474935737,45.62301299533637],[-122.72342407647351,45.62300610583207],[-122.72341285471896,45.62299955370281],[-122.72337819412205,45.62298077184953],[-122.72335087096438,45.62296499998835],[-122.72333935186748,45.62295897936314],[-122.72330243021099,45.62294159097969],[-122.72328945674165,45.62293513685168],[-122.72325081211645,45.62291511353209],[-122.72323776947685,45.62290869960975],[-122.72322450495334,45.62290267583717],[-122.72318808994666,45.62288793241866],[-122.72317648550982,45.62288268454733],[-122.72316362432991,45.62287588361191],[-122.72313859996105,45.62286146813917],[-122.72312557708436,45.62285460563152],[-122.72308823142306,45.62283646392909],[-122.7230775531493,45.62283156348207],[-122.72306667814446,45.62282710847274],[-122.72305267879905,45.62282235378181],[-122.72302458129361,45.62281361025095],[-122.72301133922801,45.62280842205764],[-122.72300262467144,45.62280405625976],[-122.72299423081341,45.62279920230139],[-122.72295109281517,45.62277243704198],[-122.72293899071168,45.62276531379418],[-122.72292663079166,45.62275841483548],[-122.7229139843091,45.62275186267727],[-122.7228957242543,45.62274308206791],[-122.72288291607498,45.62273659461907],[-122.72283252148586,45.6227090383456],[-122.72281987141002,45.62270237812022],[-122.7228070919768,45.62269608165893],[-122.72279412120241,45.62269031482354],[-122.7227693762096,45.62268069798494],[-122.72275741424326,45.62267565239525],[-122.72274472104829,45.62266922964986],[-122.7227200056999,45.62265518228695],[-122.72269267266073,45.62264048717972],[-122.72268173028226,45.62263423343348],[-122.72264934871122,45.6226150814098],[-122.72263839465465,45.62260908147972],[-122.72261458031647,45.62259728580389],[-122.72260315105109,45.62259139833142],[-122.72258737214314,45.62258242984561],[-122.7225757784861,45.62257633504402],[-122.72256353534708,45.62257077489557],[-122.72255061757329,45.62256599253926],[-122.72253717967496,45.62256217582656],[-122.72250946215685,45.62255589945403],[-122.72249581135782,45.62255260734241],[-122.7224827336839,45.62254864675601],[-122.72247217488606,45.62254445559577],[-122.72246215867064,45.6225396788916],[-122.72245256017183,45.62253453842111],[-122.7224448580166,45.62253007333589],[-122.72243756639141,45.62252526710198],[-122.72242855539081,45.62251793712328],[-122.72242031424638,45.62250984380034],[-122.72241252046298,45.62250125100462],[-122.72239710177944,45.62248347106928],[-122.72238889477102,45.6224747042397],[-122.72237993497437,45.62246630180339],[-122.72237053769817,45.62245886124205],[-122.72236033014161,45.62245189564936],[-122.72234945244182,45.62244537172734],[-122.72233801060005,45.62243927879563],[-122.7223260755832,45.62243363130456],[-122.72231387376667,45.62242848579817],[-122.72227655954643,45.62241402748825],[-122.72226449247721,45.62240895737214],[-122.72225300032976,45.62240359825266],[-122.72221990369975,45.62238696801578],[-122.72220675595726,45.6223807060738],[-122.72219397652404,45.62237417083468],[-122.72218199748973,45.62236683204047],[-122.72217047839283,45.62235882916627],[-122.72213661280492,45.62233459184726],[-122.7221135350853,45.62231893037951],[-122.72210186686804,45.62231130006157],[-122.72207846934816,45.62229673805711],[-122.72205068086316,45.62228089815048],[-122.72203534841789,45.62227147600497],[-122.72202400000093,45.62226497216658],[-122.72201197425422,45.62225887104777],[-122.72199927117776,45.62225335421843],[-122.72198592760255,45.62224852848446],[-122.7219585119184,45.622239723922],[-122.72194511893581,45.62223500059473],[-122.72193240777455,45.62222954470515],[-122.72192020056815,45.62222277824532],[-122.72190880903203,45.62221512592487],[-122.72189793312889,45.62220691130222],[-122.72187668797241,45.62218990216039],[-122.72186584081534,45.6221816196809],[-122.72185452204279,45.62217383227681],[-122.72184429382494,45.62216767397553],[-122.72182350411435,45.62215608490767],[-122.7218135921035,45.62215017162981],[-122.72180445893201,45.62214385123221],[-122.72179588900418,45.62213656518255],[-122.72177964297227,45.62212102994182],[-122.7217707056335,45.6221133524767],[-122.72176108198187,45.62210581260173],[-122.72175096785008,45.62209837387734],[-122.72170876769299,45.62206903111573],[-122.72168265726094,45.62205003408196],[-122.72167459847452,45.62204448267718],[-122.72164718099374,45.62202729882659],[-122.72163590084871,45.62201972501342],[-122.72162482911283,45.62201186847696],[-122.72161405112607,45.622003761259],[-122.72159430076621,45.62198802116483],[-122.7215843132969,45.62198035499034],[-122.72157389194128,45.62197311603985],[-122.72156273935705,45.6219665549941],[-122.72155044950563,45.62196079122499],[-122.72153734218732,45.62195576064906],[-122.72152365725228,45.62195124588429],[-122.72150959771977,45.6219470615904],[-122.7214668936078,45.62193491205782],[-122.72145303350128,45.62193048776261],[-122.72143965938332,45.62192559728878],[-122.72142698774793,45.62192003707585],[-122.72141528359808,45.62191372042196],[-122.72140424959146,45.62190677926417],[-122.72139365306437,45.62189944920461],[-122.72137295677854,45.62188445609786],[-122.72136247972735,45.62187719011919],[-122.72135166311305,45.62187035073718],[-122.72132425371709,45.62185518547572],[-122.72130260431875,45.62184363089828],[-122.72129130980068,45.62183826230068],[-122.72127933346133,45.62183324365092],[-122.7212547474703,45.62182371085402],[-122.72124259865441,45.62181864696727],[-122.72122954613332,45.62181243271059],[-122.72121693737999,45.62180565237841],[-122.72120473915673,45.62179842031635],[-122.7211929460737,45.62179082196956],[-122.72118158058872,45.62178291451085],[-122.72117069839736,45.62177473249513],[-122.72116038483959,45.62176629225742],[-122.72114155165966,45.62174951418694],[-122.72113178427757,45.6217414427427],[-122.72112028853687,45.62173325192508],[-122.72110811007659,45.62172545691943],[-122.7210742516752,45.62170449515304],[-122.72106346201032,45.62169800569921],[-122.7210524935807,45.6216918014816],[-122.72104124846999,45.62168604019735],[-122.72103223387612,45.62168191368499],[-122.72099737115823,45.62166690732629],[-122.7209844444013,45.62166182709023],[-122.72097139277855,45.62165738581002],[-122.72094199990245,45.62164921759805],[-122.7209311177111,45.62164559181877],[-122.72089567108831,45.62163259342017],[-122.72088192955941,45.62162727255131],[-122.72086937829825,45.62162147105077],[-122.7208572851779,45.62161496022591],[-122.72084567175789,45.62160788772144],[-122.72083459642874,45.62160035971575],[-122.72082415620851,45.6215924459474],[-122.72081449572595,45.62158418725413],[-122.72079574878428,45.62156611739243],[-122.72078608291184,45.62155776508205],[-122.72076583219039,45.62154153543495],[-122.72075613038533,45.62153329558252],[-122.72074733318374,45.6215247202289],[-122.72074069373548,45.62151691514185],[-122.72072855480106,45.62150091543244],[-122.72072204830344,45.62149313233173],[-122.72071500551162,45.62148599886896],[-122.72070735995021,45.62147914938676],[-122.72069261140992,45.62146704121911],[-122.72068546351517,45.62146180452378],[-122.72067442861022,45.62145500530086],[-122.72066236872755,45.62144870053186],[-122.72064958210778,45.62144273189089],[-122.72059566881771,45.62141967533904],[-122.72058242944705,45.6214135402012],[-122.72054830514435,45.62139599301226],[-122.72053688037057,45.621390327196],[-122.72049845852754,45.621372796335],[-122.72048728977363,45.62136703941595],[-122.72042794796425,45.62133394670116],[-122.72039276903944,45.62131188278619],[-122.72035973618981,45.62129369409187],[-122.72035086712297,45.62128929613378],[-122.72033852786426,45.6212841228781],[-122.7203255121741,45.62127941015107],[-122.72029863278416,45.62127033464778],[-122.72028533053144,45.621265463593],[-122.72027250528411,45.62126000509596],[-122.7202610248148,45.62125408669732],[-122.72025018214931,45.6212475192846],[-122.72023993327024,45.6212404260005],[-122.72023027099104,45.62123289920206],[-122.72022122675277,45.6212250023454],[-122.72021286792905,45.62121677501205],[-122.72020536609813,45.62120844652433],[-122.72019116642842,45.62119163059008],[-122.72018376970036,45.62118349937881],[-122.72016491945244,45.62116553808062],[-122.72015582760346,45.62115643240136],[-122.7201491019169,45.6211486247499],[-122.72013031185611,45.62112435486533],[-122.72012345860881,45.62111652521955],[-122.72011559475681,45.62110889725108],[-122.72010687391206,45.62110178572929],[-122.72009729876942,45.62109528929457],[-122.72008682710816,45.62108954114298],[-122.72007479956481,45.62108439739811],[-122.72006197072423,45.62107999439736],[-122.72004858852145,45.62107609527856],[-122.72000708096544,45.62106546725689],[-122.71999335201295,45.62106170321776],[-122.71995032989736,45.62104845588394],[-122.71992311723244,45.62104111377478],[-122.71990973413138,45.62103719266337],[-122.71989594768671,45.62103240200853],[-122.71988250170354,45.62102712317765],[-122.7198600069905,45.62101765935477],[-122.71985091873476,45.6210135045205],[-122.71983841777926,45.62100696723717],[-122.71982633004883,45.62099985444587],[-122.71979090139233,45.6209772695526],[-122.71977887025572,45.62096999654527],[-122.71976646991152,45.6209631991476],[-122.71975352159502,45.62095712050534],[-122.71974002350957,45.6209519547584],[-122.71969842702036,45.6209383159779],[-122.71968531161718,45.62093309117054],[-122.71967313136024,45.62092693336128],[-122.71966199494568,45.62091988213165],[-122.71965201376455,45.62091202732591],[-122.71964338364961,45.62090340161457],[-122.71963679001544,45.62089486448993],[-122.71963112613759,45.62088587688417],[-122.71961598413515,45.6208579873385],[-122.71961038134272,45.62084893689838],[-122.71960388562489,45.6208403023813],[-122.71959541181683,45.62083152587054],[-122.71958565341789,45.62082346811639],[-122.71957481973557,45.62081615362231],[-122.71956304731376,45.62080966218083],[-122.71955421867116,45.62080559529105],[-122.71953196740156,45.62079659699014],[-122.71951850614704,45.62079176547619],[-122.71950464783713,45.62078757795439],[-122.71949049847308,45.62078425369639],[-122.71946184670712,45.62077881839904],[-122.71944790395557,45.62077594650611],[-122.71943461427928,45.62077245700834],[-122.71942462950489,45.62076902845403],[-122.71941506065048,45.62076520093816],[-122.71940673865768,45.62076158264113],[-122.71939875353313,45.62075765208587],[-122.71938847051807,45.62075153635249],[-122.71936852073223,45.6207381500942],[-122.71933687398308,45.62071879951264],[-122.71932677602099,45.62071182427949],[-122.71931724579414,45.62070408442098],[-122.71929909263888,45.62068760698191],[-122.71927260850768,45.62066444708049],[-122.71926416434401,45.62065647914734],[-122.71925636696734,45.62064820460909],[-122.71924973829886,45.62063998535881],[-122.71923191752026,45.6206143631798],[-122.71922567782229,45.6206059478989],[-122.71921739984695,45.62059624274252],[-122.7192081750473,45.62058707791179],[-122.71919793784632,45.62057861110722],[-122.71918654451356,45.62057105720356],[-122.7191735692476,45.62056447965821],[-122.71915948007066,45.62055899219165],[-122.7191445276128,45.62055451626827],[-122.71913147149846,45.62055148226552],[-122.71909107066685,45.62054361170097],[-122.71907509592617,45.62053985202486],[-122.71905937630702,45.62053550050095],[-122.71904399355608,45.62053058791535],[-122.71902905996279,45.62052510044549],[-122.71901472015591,45.62051897714731],[-122.71900116457827,45.62051210681341],[-122.71898970926178,45.6205051767913],[-122.71897883695191,45.62049772843025],[-122.71894753785077,45.62047415503629],[-122.71893688562811,45.62046644781604],[-122.71892579053605,45.62045909557804],[-122.71891416004806,45.62045224722694],[-122.71890209747045,45.62044574820381],[-122.71886535457868,45.62042667459703],[-122.71885405556904,45.62042028426503],[-122.71882099756658,45.62040073314937],[-122.71880989079639,45.62039451433749],[-122.71879231346122,45.62038518486185],[-122.71878082580538,45.62037864939013],[-122.71875834636373,45.62036467245012],[-122.7187249020857,45.62034291036134],[-122.71871357522828,45.62033580753847],[-122.71870204355498,45.62032894283675],[-122.71863699025702,45.62029332503642],[-122.71862370776725,45.62028713762723],[-122.71861040012462,45.62028229915816],[-122.71859641694893,45.62027821024],[-122.71858201246333,45.62027459505299],[-122.71855285314921,45.62026781139336],[-122.71853854568168,45.62026417798528],[-122.71852473767746,45.62026005576634],[-122.71851170941088,45.62025516326191],[-122.71849887877369,45.62024888600281],[-122.71848680721288,45.62024185039517],[-122.71846677568038,45.62022925943239],[-122.71845863694392,45.62022392712112],[-122.71845083417736,45.62021834726234],[-122.71844208907804,45.62021119101887],[-122.71841743212013,45.62018846318562],[-122.71840876247933,45.62018116305943],[-122.71839775721877,45.62017309830059],[-122.71835867152079,45.6201472591473],[-122.71835045732581,45.62014223217842],[-122.71832564226439,45.62012898588392],[-122.7183139102668,45.62012215445642],[-122.71830235703393,45.62011481725228],[-122.71825621506936,45.62008361496116],[-122.71824420728893,45.62007609680348],[-122.71823175753741,45.62006902033511],[-122.71821868884668,45.62006259352133],[-122.71820418554641,45.6200567158354],[-122.71818905432376,45.62005151042299],[-122.7181422296396,45.62003735936401],[-122.71812684149876,45.62003235877365],[-122.7181119258718,45.62002681408028],[-122.71809838915875,45.62002087481774],[-122.7180853833501,45.62001438391243],[-122.7180728186142,45.62000750346408],[-122.71806063835729,45.62000036729907],[-122.71803733785543,45.61998578458896],[-122.71801856576093,45.61997354981168],[-122.7180107288584,45.61996880555974],[-122.71800008202564,45.61996328159384],[-122.71796583824701,45.6199478550742],[-122.71795332920669,45.61994155390551],[-122.7179411390683,45.6199348066467],[-122.71792927052674,45.61992774335468],[-122.71791774334503,45.61992047775075],[-122.71790660154056,45.61991311036206],[-122.71788122862536,45.61989566323081],[-122.71787051980887,45.61988939472757],[-122.71784834669269,45.61987762298307],[-122.71783182397965,45.61986842222202],[-122.7178233923924,45.6198640612216],[-122.71777870390198,45.61984450488563],[-122.71775427331951,45.61983447790985],[-122.7177422403863,45.61982931268778],[-122.71772445913354,45.61982091048327],[-122.71771542477674,45.61981687807809],[-122.71770453360222,45.61981265467054],[-122.71767056470809,45.61980122847295],[-122.71765952710817,45.61979719103999],[-122.71763186528564,45.61978577803347],[-122.71758915219048,45.6197712687783],[-122.7175747512982,45.61976586102785],[-122.71756058845942,45.61975998833714],[-122.71752708668922,45.61974461893663],[-122.71751339366935,45.61973889829164],[-122.71747157349961,45.61972246706286],[-122.71745813560126,45.61971660693362],[-122.71744536874445,45.6197102058396],[-122.71743291090812,45.61970277245205],[-122.7173994450705,45.61968024169825],[-122.71736265726297,45.61965630920241],[-122.7173551302792,45.61965163592135],[-122.71734319346571,45.61964519083904],[-122.71733085420699,45.61963886387608],[-122.7173193072623,45.61963245837516],[-122.71730798309984,45.61962562688716],[-122.71729695538141,45.61961849569998],[-122.71728630675203,45.61961117539401],[-122.71726580809556,45.61959601014978],[-122.71725498698966,45.61958882680999],[-122.71724384698183,45.61958312625468],[-122.71723168469117,45.61957811054457],[-122.71721884417251,45.61957351830756],[-122.71719230614237,45.61956468002519],[-122.71717914312853,45.61955999668371],[-122.71715821507736,45.61955174900045],[-122.71713199235589,45.61954180616445],[-122.71711899642868,45.61953661515513],[-122.71708469605616,45.61952125323297],[-122.71707307994126,45.6195164743863],[-122.71705869701525,45.61951136128381],[-122.71701641331482,45.61949699709486],[-122.71700228640864,45.61949258014685],[-122.71698851972693,45.61948889768114],[-122.71694671213361,45.61947893158688],[-122.71693323021782,45.61947516052991],[-122.71692031513898,45.61947073038589],[-122.71690709373465,45.61946497389985],[-122.7168688003507,45.61944539354924],[-122.71685705128509,45.61944013907265],[-122.71680781821763,45.61942033629496],[-122.71679425186021,45.61941432911176],[-122.71676739762312,45.61940185985351],[-122.71675381240108,45.6193957923514],[-122.71673991187038,45.61939011188205],[-122.71672515165193,45.61938481970225],[-122.71667964659289,45.61937040144695],[-122.71666465910069,45.6193653210028],[-122.71665155088407,45.61936038758071],[-122.716625973153,45.61934974226973],[-122.71656925532258,45.61932521086127],[-122.71655613722446,45.61931889391503],[-122.71654333623169,45.61931209380393],[-122.71653076969916,45.61930493430327],[-122.71651837384657,45.61929751217144],[-122.71649389924664,45.61928217594413],[-122.71644531566116,45.61925097947264],[-122.71642078895891,45.61923581915745],[-122.71640836436023,45.61922852896004],[-122.71639577806481,45.61922152715275],[-122.71638297886865,45.61921490735277],[-122.71636459394803,45.61920604388177],[-122.71635174624284,45.61919947497253],[-122.71633906742092,45.6191925711769],[-122.71628890549545,45.6191635020915],[-122.71626340591779,45.61914924839489],[-122.71625033992198,45.61914249538601],[-122.71621231064275,45.61912430912945],[-122.71620007828351,45.61911792744524],[-122.71618769231239,45.61911063911745],[-122.71617580760116,45.61910293108144],[-122.71613039057704,45.6190711018075],[-122.7161189738881,45.61906365765405],[-122.71610283026411,45.61905376436754],[-122.71606767110222,45.61903051708512],[-122.71605648348367,45.61902395695164],[-122.71602211214426,45.61900535032032],[-122.71601123085122,45.6189990710364],[-122.71599029741014,45.61898606008637],[-122.71597943588006,45.61898026082582],[-122.71596800122482,45.61897553031255],[-122.71595585869713,45.61897139794596],[-122.71592978868928,45.61896318975944],[-122.71591598248166,45.61895905110886],[-122.71590172981138,45.61895540881967],[-122.71588599222591,45.61895237598701],[-122.71583666483534,45.61894523214806],[-122.7158209479111,45.61894246320337],[-122.71580534866622,45.61893922428564],[-122.71578993088099,45.61893552670422],[-122.71577477360721,45.61893134595513],[-122.71575997386289,45.6189266198359],[-122.71574565561559,45.61892124279096],[-122.71573200840979,45.61891517523684],[-122.71571883192119,45.61890851895895],[-122.71570599948735,45.61890143668846],[-122.71568098230502,45.61888647796516],[-122.71563166299927,45.61885571983179],[-122.71561915845054,45.61884825303068],[-122.71560646525556,45.61884102058719],[-122.71559350705759,45.6188341161191],[-122.71558019043182,45.61882765272198],[-122.71556793022485,45.61882230582629],[-122.71553054503764,45.61880708193609],[-122.71551841778131,45.61880164707544],[-122.71550473913447,45.61879471181541],[-122.71549151862845,45.61878725505913],[-122.71547862421086,45.61877942697185],[-122.71546594718555,45.61877135133021],[-122.71542833741958,45.61874663871591],[-122.71541567566565,45.61873854924672],[-122.71540280909582,45.61873070167512],[-122.71538963260724,45.61872322040626],[-122.71537602133405,45.61871625874759],[-122.71536397851936,45.6187108025156],[-122.71532708381231,45.61869555974587],[-122.71531511016789,45.61869024488138],[-122.71530321827017,45.61868439721042],[-122.71525794856974,45.61866007536614],[-122.71524664057695,45.61865465180077],[-122.71522329785428,45.61864488221907],[-122.71521213359192,45.61863985385884],[-122.71518466041557,45.61862514199145],[-122.71517236786923,45.61861912467006],[-122.7151593521791,45.61861350632469],[-122.71514534474886,45.61860837743212],[-122.71513072017603,45.61860373359426],[-122.71511566980176,45.61859942653015],[-122.71505417922225,45.6185832085929],[-122.71503916298396,45.61857885314731],[-122.715024595005,45.6185741219719],[-122.71501067471138,45.61856884793605],[-122.71499764734311,45.61856282118395],[-122.71498876480157,45.61855782611688],[-122.71498025955246,45.61855246788587],[-122.71496049931118,45.61853938457654],[-122.71493716736829,45.61852446911012],[-122.71492524402952,45.61851724793442],[-122.71489601464681,45.61850076105628],[-122.71488411646087,45.61849344123269],[-122.71487252010888,45.61848570169632],[-122.71483796910643,45.61846179759297],[-122.71482601522493,45.61845418999764],[-122.71481442605945,45.61844745701097],[-122.71476804154975,45.61842254005262],[-122.71475757168511,45.61841632102132],[-122.71473603996608,45.61840258863385],[-122.71472579917184,45.61839725740547],[-122.71470447316699,45.61838675705174],[-122.71469361163687,45.61838025716087],[-122.71468339060559,45.61837295554261],[-122.71467410382219,45.61836521347635],[-122.71465579076678,45.61834893829491],[-122.714646323422,45.61834126533975],[-122.7146363664954,45.61833375762981],[-122.71462608437866,45.61832637809466],[-122.71457683154829,45.61829230718629],[-122.71456902608675,45.61828714182216],[-122.71455732642849,45.61828040190401],[-122.7145448245747,45.61827412505215],[-122.71453175678225,45.61826816612627],[-122.71447749314922,45.61824519874614],[-122.71446421425269,45.61823916693277],[-122.71442977553964,45.61822232623201],[-122.71441810911902,45.61821712316259],[-122.71440585609854,45.61821231153245],[-122.71436851043724,45.61819895608361],[-122.71433436816825,45.61818553591522],[-122.71432247806715,45.61818147009175],[-122.71428623823194,45.61816987768667],[-122.71427452599728,45.61816553414697],[-122.71426292784864,45.61816052270827],[-122.71419340363556,45.61812632603605],[-122.71418215403324,45.61812014655582],[-122.71416079838399,45.61810669055459],[-122.71414981468301,45.61810026037429],[-122.71413719245496,45.61809414749259],[-122.71412374557349,45.61808856553698],[-122.71409568579726,45.61807781002924],[-122.71408166129905,45.61807205842671],[-122.71406834197833,45.61806592983406],[-122.71405527508422,45.6180593620479],[-122.71400353302217,45.61803156848531],[-122.71399022807449,45.61802488822648],[-122.71397584604679,45.61801820419698],[-122.71391724085596,45.61799277559806],[-122.71390304298289,45.61798609219306],[-122.71386851174336,45.6179684270645],[-122.71385673932157,45.61796286960067],[-122.71384260073731,45.61795701305741],[-122.71382796807967,45.6179517012645],[-122.71381296621441,45.61794683494799],[-122.71379769485459,45.61794235316117],[-122.71378223125527,45.61793822762994],[-122.71376663829858,45.61793446212425],[-122.71375096629014,45.61793109371489],[-122.71373526104401,45.61792818900354],[-122.71371956388275,45.61792585103439],[-122.71368047728642,45.61792170853737],[-122.71366791973708,45.6179199825492],[-122.71365577181948,45.61791758803116],[-122.713643783802,45.61791420768277],[-122.71363212816119,45.61791012424672],[-122.71360893545717,45.617901117313],[-122.71356936826218,45.61788661259667],[-122.71354799554494,45.61787832319827],[-122.71353420460869,45.6178735329019],[-122.71351994654852,45.61786908252515],[-122.71349048629878,45.61786086475242],[-122.71343008896895,45.61784534843317],[-122.71341507362899,45.6178413177709],[-122.71340023166385,45.61783709044462],[-122.71338565021018,45.61783257786146],[-122.71337143526911,45.61782767006559],[-122.71335771889305,45.61782223008342],[-122.71334537873599,45.61781655448121],[-122.71333341856628,45.61781048178101],[-122.71330992582497,45.61779793299792],[-122.71329805997837,45.61779183390629],[-122.71328589139954,45.61778610929214],[-122.71327277509808,45.61778070197851],[-122.71325932911493,45.61777574705417],[-122.7132188088074,45.61776206163376],[-122.71320585150774,45.61775743971698],[-122.71319351584226,45.61775256835702],[-122.71316679545413,45.61774077605769],[-122.71315607855279,45.61773678560029],[-122.71313465283495,45.61772943740264],[-122.71312452433013,45.61772544003293],[-122.7131016487314,45.61771434264958],[-122.71308942535535,45.61770927525009],[-122.71307628300272,45.61770455845269],[-122.71303468202193,45.61769071656317],[-122.7130120157307,45.61768255279987],[-122.71300044812476,45.61767882623287],[-122.71298545434435,45.61767491556777],[-122.71295446606031,45.61766808384126],[-122.71293902042731,45.61766420710472],[-122.71292588256631,45.61766016323466],[-122.71291296569083,45.61765558277863],[-122.71290020512221,45.61765063852467],[-122.71284902091395,45.61762971356246],[-122.71283591898553,45.61762429115402],[-122.71282327340126,45.61761851688541],[-122.71281054427371,45.61761180327641],[-122.71278603643613,45.61759767987616],[-122.71277353817557,45.61759098511429],[-122.71276217628385,45.61758563056083],[-122.71273901142762,45.61757548442837],[-122.71272771780788,45.6175701462098],[-122.71271506324047,45.61756333771844],[-122.71268996520975,45.61754925514688],[-122.7126779673108,45.6175433614894],[-122.71266557235651,45.61753777570901],[-122.71261969180168,45.61751795717974],[-122.71260744956102,45.61751326361414],[-122.71258235692017,45.61750429620093],[-122.71256987842257,45.61749956179324],[-122.71255631476009,45.61749383086607],[-122.71251628852598,45.61747534939146],[-122.71250267455785,45.61746949028399],[-122.71248865005964,45.61746417718822],[-122.71247336971663,45.61745939690962],[-122.71245762045308,45.61745527259948],[-122.71244156845727,45.61745159691149],[-122.71237709187776,45.61743826201614],[-122.71236158426099,45.61743459700852],[-122.71234664078624,45.61743052107746],[-122.71232511086384,45.61742372262234],[-122.71229622373924,45.61741509386103],[-122.71227339125966,45.61740774122288],[-122.71226165746545,45.61740443121593],[-122.71224732035348,45.61740134866185],[-122.71223238945515,45.61739899370599],[-122.71221701389074,45.61739716968332],[-122.71220131313622,45.61739571574306],[-122.71218538420959,45.6173944967957],[-122.71213694076128,45.61739109065445],[-122.71212077018784,45.61738966624522],[-122.71210467866615,45.61738788557655],[-122.71208926088094,45.61738572037385],[-122.71207397514807,45.61738314864574],[-122.71205883045069,45.61738021500317],[-122.71204385104332,45.61737693641074],[-122.712029068367,45.61737330470032],[-122.71201453272738,45.61736928280061],[-122.71200031059981,45.61736480725088],[-122.71198698768585,45.61736004078692],[-122.7119739145035,45.6173549438242],[-122.71193519531813,45.61733916661048],[-122.71192215627178,45.61733420724882],[-122.71188332569533,45.61732078059021],[-122.71187066483971,45.61731599464445],[-122.71185703649853,45.61731012672374],[-122.7118437459239,45.61730379886902],[-122.71180450212239,45.61728389983145],[-122.71179119178483,45.61727753301759],[-122.71177753379926,45.61727160037542],[-122.71176300714279,45.61726607928543],[-122.71171826116017,45.61725098063773],[-122.71170360245137,45.6172456216535],[-122.71168974054822,45.61723994096634],[-122.71164903428944,45.61722182132349],[-122.71163521191214,45.61721612743909],[-122.71162061788205,45.61721074708854],[-122.7115762932093,45.61719550453932],[-122.71156202077606,45.61718989673288],[-122.71155019355703,45.61718459492049],[-122.71151534790717,45.61716765776921],[-122.71150161266647,45.61716156929055],[-122.71148751720135,45.61715576607132],[-122.71147317290288,45.61715016203082],[-122.71141523156705,45.61712827742744],[-122.71140109118619,45.61712258416188],[-122.71138732270782,45.6171166364235],[-122.71137408423547,45.61711032488339],[-122.71136157160187,45.61710351696454],[-122.71135055645986,45.61709657206961],[-122.71131930586776,45.61707495071431],[-122.71130844433766,45.61706836898888],[-122.71129752801033,45.61706274546157],[-122.71126357618418,45.61704723080643],[-122.71122671112153,45.61702816923837],[-122.71121399816364,45.61702267200085],[-122.71120021171897,45.6170180764129],[-122.71117177195541,45.61701044914354],[-122.71115793430674,45.61700638511983],[-122.71113002275256,45.61699637711468],[-122.71111690645112,45.61699236461288],[-122.71107626397269,45.61698144804289],[-122.71106338033488,45.61697730421947],[-122.71103660694617,45.61696664777443],[-122.7110151740418,45.61695901735641],[-122.71100472304178,45.61695505197655],[-122.71099488828605,45.61695051733093],[-122.71098761732216,45.61694628805252],[-122.71098063022588,45.61694163905038],[-122.71097226780888,45.61693569192111],[-122.71096406080045,45.6169293571125],[-122.71095624815244,45.61692257995978],[-122.71094856037023,45.61691487979127],[-122.71093381542315,45.61689867204841],[-122.71092598570712,45.61689060493247],[-122.71091642942913,45.61688198111575],[-122.7109060305314,45.61687374120684],[-122.71089493364272,45.61686590154253],[-122.71088323218783,45.6168585054777],[-122.71087097916735,45.61685162715536],[-122.71083375118535,45.61683348036886],[-122.71082124034837,45.61682677671912],[-122.7107968268339,45.61681317777661],[-122.71078439145543,45.61680693846029],[-122.71077142427431,45.61680155995544],[-122.71075813459797,45.61679741360538],[-122.71074436611961,45.61679401622449],[-122.71071656505822,45.61678779638432],[-122.71070310739692,45.61678416903399],[-122.71069277856782,45.61678072766924],[-122.71068264826636,45.61677697653739],[-122.71066467477415,45.61676982048303],[-122.71065351679999,45.61676457518065],[-122.71064261304906,45.61675888878978],[-122.71061032041123,45.6167412823377],[-122.7105933197945,45.61673271693278],[-122.71056838076558,45.61671963571217],[-122.71055525727759,45.6167137218609],[-122.71054187687142,45.61670900874975],[-122.71052774996528,45.61670497235077],[-122.71048331030815,45.61669397655512],[-122.71046923909756,45.61669002937811],[-122.71045534305841,45.6166856920071],[-122.71044168147961,45.6166809757519],[-122.71042832802289,45.61667587055914],[-122.71041537072323,45.61667034375551],[-122.71040369801442,45.61666481255298],[-122.71038084217864,45.61665335932397],[-122.71036926379294,45.61664784885475],[-122.71035618611904,45.61664219261196],[-122.71032963102093,45.61663130110708],[-122.71028941344566,45.61661362612671],[-122.71027582732532,45.61660814644186],[-122.71026188367547,45.61660329446035],[-122.71024916263272,45.61659967526646],[-122.71020993320427,45.61659007371978],[-122.71019587007849,45.61658605741889],[-122.71018192553035,45.61658162830325],[-122.71016806272888,45.61657691957931],[-122.71012663781787,45.61656227377392],[-122.71011278130462,45.61655758892499],[-122.71009884843457,45.61655319939208],[-122.71006126112646,45.61654269240967],[-122.71004913746336,45.61653912599184],[-122.71003744858488,45.61653525797392],[-122.71001039492181,45.61652470763314],[-122.7099966300367,45.61651996937278],[-122.70998292713533,45.61651648149512],[-122.70996857385374,45.61651372122716],[-122.70992357274957,45.61650651110251],[-122.70990908741564,45.6165036169991],[-122.70989469820138,45.6165002924871],[-122.70988044642944,45.6164966016565],[-122.70986638420194,45.61649258597726],[-122.70985257529942,45.61648826367096],[-122.70983910416342,45.61648362971088],[-122.70982607679515,45.61647865896354],[-122.70981362614532,45.61647330116224],[-122.70980192109715,45.61646748279172],[-122.70977991327102,45.61645447565267],[-122.70976868702489,45.61644822938474],[-122.70975548897674,45.61644220240478],[-122.709741391715,45.6164368106699],[-122.70972670426013,45.61643180033338],[-122.70969661249472,45.61642200523102],[-122.70968169327449,45.61641676492281],[-122.70966718638097,45.61641096665313],[-122.7096550097173,45.61640529781977],[-122.70964317351509,45.61639919229335],[-122.70960810238812,45.61638005950319],[-122.709596029929,45.61637397910742],[-122.70958250848734,45.61636784718749],[-122.70956859358361,45.61636208535618],[-122.70951161703837,45.61634032108561],[-122.70949762128623,45.61633467549349],[-122.70945659432891,45.61631699916298],[-122.70944278003648,45.61631162312448],[-122.70942859204486,45.61630694767962],[-122.70941424864475,45.61630326060636],[-122.70939953603701,45.61630024710862],[-122.70935480173249,45.61629272341702],[-122.70934021668555,45.61628994240295],[-122.70932608259285,45.61628661850663],[-122.70931261055854,45.61628246772015],[-122.70929924272879,45.61627697920623],[-122.70928642466802,45.61627069898844],[-122.70926073285089,45.61625752906465],[-122.70924761026122,45.61625159380122],[-122.70923400976781,45.61624600223711],[-122.70922010474553,45.61624065069692],[-122.70917815162511,45.61622513392933],[-122.70914384226947,45.61621140414689],[-122.70911018598906,45.61619896622152],[-122.70909970803959,45.61619456095214],[-122.70909005115028,45.61618962850776],[-122.70908286193306,45.61618504730327],[-122.70907610390718,45.61618010480468],[-122.70906822658043,45.61617386416123],[-122.70906075798717,45.61616728421505],[-122.7090539775034,45.61616029396391],[-122.70904669935298,45.61615095750036],[-122.70903331445525,45.61613154878534],[-122.70902549462069,45.61612224938889],[-122.70901744481742,45.61611488275785],[-122.70900821911945,45.61610806654974],[-122.70899802144434,45.61610178882637],[-122.70898699911582,45.61609606780967],[-122.70897525094855,45.61609095313864],[-122.70896350098461,45.61608667729838],[-122.70895135576198,45.61608279228412],[-122.70892661346409,45.61607535653064],[-122.70891435325711,45.61607140616843],[-122.70890041050559,45.61606637192239],[-122.70887310890748,45.61605570964919],[-122.70885946080335,45.6160506301614],[-122.70883037425277,45.61604079163711],[-122.70879511807281,45.61602776492055],[-122.70878303663056,45.61602406149208],[-122.70876964454632,45.61602093236506],[-122.70875585899995,45.61601845482514],[-122.70871403433861,45.61601213687807],[-122.70870056050769,45.61600951481985],[-122.70868962801067,45.61600685003449],[-122.70865138313579,45.61599674760004],[-122.70863809795107,45.61599272560164],[-122.70862556465619,45.61598803505007],[-122.70861419467965,45.61598231590682],[-122.7086037885954,45.61597488076837],[-122.70859461769467,45.61596632341483],[-122.70858616903941,45.61595706420475],[-122.70856960590223,45.61593786088967],[-122.70856059130833,45.61592858093969],[-122.70855043046414,45.61591997456854],[-122.70853947281434,45.61591275117244],[-122.70852735274451,45.61590624722473],[-122.70851436041056,45.61590028490551],[-122.70850072488285,45.61589472409505],[-122.70848662492614,45.61588945169219],[-122.70847219977932,45.61588438035777],[-122.70841318136348,45.61586478870338],[-122.70838391694645,45.61585462403769],[-122.70836960319073,45.61584922784795],[-122.7083556263032,45.61584350492048],[-122.70834210575987,45.61583734278219],[-122.70833003330077,45.61583115362458],[-122.70831830669304,45.61582463018888],[-122.70828368562199,45.61580450316693],[-122.70827185301307,45.61579806392585],[-122.70825788241378,45.61579108431049],[-122.70821484053528,45.61577126642054],[-122.70820073968024,45.61576447907437],[-122.70818709516941,45.61575731472232],[-122.70817461846841,45.61574999831068],[-122.70816256756888,45.61574236521374],[-122.70813902542024,45.61572692873607],[-122.70812719640456,45.61571952749425],[-122.70811509519937,45.61571264086375],[-122.70810252148034,45.61570654657203],[-122.70808924168549,45.61570158078258],[-122.70807533037502,45.61569805829521],[-122.70806070939543,45.61569563100844],[-122.70804557637615,45.61569397909619],[-122.70803009301392,45.6156928355129],[-122.70798280479907,45.61569025930879],[-122.70796713009565,45.61568900513714],[-122.7079516808694,45.61568718608558],[-122.70793658378275,45.61568453322338],[-122.70792099891088,45.61568056398333],[-122.70790583445057,45.6156756252103],[-122.7078909727225,45.6156699839497],[-122.70787632389516,45.61566385006778],[-122.70786181251009,45.61565738881855],[-122.70780404904066,45.61563063711504],[-122.70778943704428,45.61562421481926],[-122.70777465167301,45.61561809978268],[-122.70773341540819,45.61560214048898],[-122.70771971250686,45.61559618693425],[-122.70767933592978,45.6155774698337],[-122.70766559979076,45.61557159796102],[-122.70765191485575,45.61556632050103],[-122.70762413086231,45.61555623369586],[-122.70757301312938,45.61553654076342],[-122.70756014116968,45.61553194128361],[-122.70752149384953,45.61551951200443],[-122.70750903601316,45.61551519025142],[-122.70747537613946,45.61550192464185],[-122.70744704956361,45.6154918648439],[-122.70742612420737,45.61548382705782],[-122.70741235123742,45.61547886690371],[-122.70735556693171,45.6154599392684],[-122.70734185864048,45.61545493198633],[-122.70732112821865,45.61544676789753],[-122.70728594570056,45.61543400683307],[-122.70727493774505,45.61542954683755],[-122.70722251296338,45.61540555346292],[-122.70721088696699,45.61540059267359],[-122.70716137991336,45.61538111583747],[-122.70714890770397,45.61537590559259],[-122.70713603933753,45.61537013234917],[-122.70712333356614,45.61536410462492],[-122.70707302431697,45.61533932201924],[-122.707060314054,45.61533340173897],[-122.70704743850104,45.61532778494944],[-122.70703500312257,45.61532278393901],[-122.70699793863393,45.61530851732754],[-122.7069861814835,45.61530351443037],[-122.70695795551896,45.61529036250148],[-122.70694419602377,45.61528492290151],[-122.70692982208091,45.61527991120536],[-122.70690021899901,45.61527021078223],[-122.70688544889911,45.61526505016649],[-122.70687232810607,45.61525998003226],[-122.70684668120471,45.61524903484943],[-122.70680927086471,45.61523222403969],[-122.70678352425034,45.61522105076119],[-122.70677077086826,45.61521483828671],[-122.70675997671181,45.61520807914886],[-122.70675064321601,45.61520038628507],[-122.7067430668249,45.61519178482895],[-122.70673719992779,45.61518169230131],[-122.70673312067807,45.61517082753174],[-122.70673030625629,45.61515942426548],[-122.70672834703066,45.61514766912173],[-122.70672449056315,45.61511177784006],[-122.70672298768167,45.61510007106918],[-122.70672091167503,45.61508875827079],[-122.7067179175902,45.6150780505706],[-122.7067135751341,45.61506821564573],[-122.70670733813111,45.61505960034565],[-122.70670188176406,45.61505468162514],[-122.70669557648908,45.61505025238854],[-122.70668778001074,45.61504568554302],[-122.70667917504865,45.61504165342278],[-122.70666854348725,45.61503795307095],[-122.70665710164548,45.61503488546719],[-122.70664515045893,45.61503215842885],[-122.70661908763758,45.61502641593915],[-122.70660509188546,45.61502355694692],[-122.70659082304549,45.61502141364518],[-122.70657572685714,45.61502031403267],[-122.70652915549786,45.61501955498589],[-122.70651362093164,45.6150184635419],[-122.70650039952731,45.61501661619282],[-122.70648722842861,45.61501409525244],[-122.70640125606266,45.61499456487235],[-122.70637160896335,45.61498735518074],[-122.70635709757825,45.61498339405988],[-122.70634294192601,45.61497905341508],[-122.70632928304211,45.61497419061071],[-122.70631629789466,45.61496862468158],[-122.70630412302764,45.6149622161337],[-122.70629260752401,45.61495512393954],[-122.70628155824599,45.61494754979935],[-122.70627081529352,45.6149396633678],[-122.70623911015387,45.61491552966128],[-122.70622831779407,45.61490776324032],[-122.70621720832892,45.61490037005895],[-122.70620563802808,45.61489351537376],[-122.70619438662914,45.61488773077034],[-122.70618283609123,45.61488236653351],[-122.70615976645641,45.61487213068599],[-122.70614871089022,45.6148669021716],[-122.70612451656467,45.6148540731132],[-122.70611266868437,45.61484823258239],[-122.70609444725716,45.61484066219789],[-122.70608292995689,45.61483549463077],[-122.70605242316987,45.61482021687655],[-122.7060442565856,45.61481648509248],[-122.70603172508737,45.61481190691757],[-122.70601823688339,45.61480794201425],[-122.70598968842367,45.61480064998449],[-122.70597520578467,45.61479674163206],[-122.70596163224072,45.61479255303412],[-122.70594836771724,45.6147878912864],[-122.70593553438508,45.61478278026613],[-122.70592328495786,45.61477720991954],[-122.70591181257336,45.61477114066032],[-122.70590136426829,45.61476449708591],[-122.7058943529175,45.61475915043114],[-122.70588004365334,45.61474670904195],[-122.70587275382483,45.61473962247567],[-122.7058661880384,45.61473220853649],[-122.70586034449749,45.6147240801586],[-122.7058451755456,45.61469878641861],[-122.70582293056421,45.61466592163077],[-122.70581638094747,45.61465731318074],[-122.70580893032053,45.61464955614932],[-122.70580003250764,45.61464309855336],[-122.70579086969173,45.61463889360678],[-122.7057805130148,45.61463585928392],[-122.70576925532767,45.61463386551569],[-122.70575734187035,45.61463284129812],[-122.70574497476387,45.614632768409],[-122.70573175964772,45.61463366821242],[-122.70571831456284,45.61463528245465],[-122.70567704146714,45.61464134733011],[-122.70566304661332,45.61464281516562],[-122.70564813457959,45.61464359306812],[-122.70563321895263,45.61464357735928],[-122.70561841381843,45.61464280134184],[-122.70560384044958,45.6146412486785],[-122.70558963359335,45.61463884899362],[-122.70557595135325,45.61463547535946],[-122.70556349800846,45.61463127166894],[-122.70555146058366,45.61462634662731],[-122.70551584058602,45.61461003265942],[-122.70547593203119,45.61459333978886],[-122.70546167576767,45.61458676091394],[-122.70544765126944,45.61457980879539],[-122.70539255579644,45.61455088623883],[-122.70537878013154,45.61454395045312],[-122.70536491643176,45.61453737597088],[-122.70535092427292,45.61453131171255],[-122.7053259385316,45.61452147920522],[-122.70531398105683,45.61451614697947],[-122.70530182774938,45.61450944933627],[-122.70529034728003,45.61450192351932],[-122.70527933213801,45.61449381521545],[-122.70526860715185,45.6144853330386],[-122.70523665856878,45.61445943219874],[-122.705225581443,45.61445123340543],[-122.705214002159,45.6144435856795],[-122.70520169973116,45.61443674162053],[-122.70519008990445,45.61443151809243],[-122.70517796174977,45.61442688521907],[-122.7051392704122,45.61441380848747],[-122.70512549923887,45.61440938674053],[-122.70509952175749,45.61440188792952],[-122.70508694803846,45.61439791922705],[-122.70506012973397,45.6143877417283],[-122.70504634418759,45.61438308937227],[-122.70503205288975,45.61437954920805],[-122.70501699083739,45.61437684098856],[-122.70500136913459,45.61437471022926],[-122.70493642812609,45.61436796984086],[-122.70492021533184,45.61436581269019],[-122.70490426215071,45.61436305671486],[-122.70488982802074,45.61435979805353],[-122.70487576040337,45.61435590160914],[-122.70486209792621,45.61435142833238],[-122.70484890886122,45.614346404614],[-122.70483629112474,45.61434081600173],[-122.70482371021917,45.61433430998665],[-122.70481182999954,45.6143273201354],[-122.70480061093997,45.61432001296254],[-122.70478534856329,45.61430958222136],[-122.70477524521129,45.61430345070407],[-122.70476453639478,45.61429775652335],[-122.70475328589414,45.61429254994799],[-122.70474153413362,45.6142879057527],[-122.70472684578041,45.61428308561674],[-122.70468638206675,45.61427121781311],[-122.70467349124243,45.61426773356575],[-122.7046603956022,45.61426463575862],[-122.70464544404263,45.61426176227529],[-122.7046151573428,45.61425685165347],[-122.70460012852811,45.61425416290716],[-122.70458538537767,45.61425087156482],[-122.70457188100401,45.61424699019349],[-122.70455865331147,45.61424249365876],[-122.70450629051355,45.61422242953321],[-122.70449279063145,45.61421782806055],[-122.70447831607726,45.61421355333417],[-122.70446352262115,45.61420971908724],[-122.70444851626436,45.61420618331058],[-122.70440315583409,45.61419614213101],[-122.70438822583407,45.61419259692813],[-122.70437355993873,45.61418874508565],[-122.7043592830139,45.61418443768242],[-122.70434509232739,45.61417943531334],[-122.70430404111553,45.61416340837577],[-122.70429033012933,45.61415866677403],[-122.70424670973578,45.61414618252314],[-122.7042333679572,45.61414120402829],[-122.70422245701972,45.6141357197033],[-122.70421233120985,45.61412947443384],[-122.70420273181273,45.61412279245345],[-122.70417409441977,45.61410210369496],[-122.70416464773625,45.61409460547119],[-122.7041573219751,45.61408713426592],[-122.7041437969402,45.61407062157921],[-122.70413593847809,45.61406148081629],[-122.70412750239926,45.614052319316],[-122.70411864321393,45.61404319425911],[-122.70410013612242,45.61402529602317],[-122.70409067506587,45.61401667113743],[-122.70408117089016,45.61400839184913],[-122.70407446406824,45.61400288426175],[-122.70406743744608,45.61399774992059],[-122.70405984668194,45.61399307365443],[-122.70405179598036,45.61398868454915],[-122.70403990587928,45.61398265541971],[-122.70402749655193,45.6139769159644],[-122.70401456889667,45.61397166600226],[-122.70400304800317,45.61396765454072],[-122.70396821133644,45.61395669276825],[-122.7039572231439,45.61395272152083],[-122.70391542004212,45.61393523797499],[-122.70390295591757,45.61392970021909],[-122.70389041094462,45.61392337009774],[-122.70387818217866,45.61391647256451],[-122.70386625524665,45.61390912889313],[-122.70385463464012,45.61390142956756],[-122.70384334371532,45.61389344056574],[-122.70383242289641,45.61388520461627],[-122.70381662692046,45.61387268637288],[-122.70380852681154,45.61386656046309],[-122.70379692596796,45.61385863052248],[-122.7037846738458,45.61385111027345],[-122.70377189171764,45.61384395824424],[-122.70375866133011,45.61383715935426],[-122.70374502849737,45.61383072931274],[-122.70373100399915,45.61382471399032],[-122.70371656717421,45.61381919256091],[-122.70370194709295,45.6138143013796],[-122.70368701709293,45.61380983057304],[-122.70361141667526,45.61378948164391],[-122.7035967786277,45.61378509189432],[-122.70358255560183,45.61378034460537],[-122.70356063940383,45.61377215073968],[-122.70354645410718,45.61376709052429],[-122.70350299271541,45.61375258222517],[-122.70348866907823,45.61374760055357],[-122.70347467422441,45.61374234931326],[-122.70345328084592,45.61373363515628],[-122.70344096314673,45.61372889037639],[-122.70340344860215,45.61371501922913],[-122.70339121624293,45.61371008342479],[-122.70335731651905,45.61369497816434],[-122.7033442720828,45.61368969173068],[-122.70333399576312,45.61368583659313],[-122.70361770982046,45.61341300102325]]],"type":"Polygon"} +},{ + "id": 1108719771, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-122.641300723,45.503655985,-122.641300723,45.503655985", + "geom:latitude":45.503656, + "geom:longitude":-122.641301, + "iso:country":"US", + "lbl:latitude":45.503656, + "lbl:longitude":-122.641301, + "lbl:max_zoom":18.0, + "mps:latitude":45.504823, + "mps:longitude":-122.645084, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":45.504823, + "reversegeo:longitude":-122.645084, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85893193, + 102191575, + 1108715281, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"c7ff7544fdf591550ebc0cc66e50ac8c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108715281, + "microhood_id":1108719771, + "neighbourhood_id":85893193, + "region_id":85688513 + } + ], + "wof:id":1108719771, + "wof:lastmodified":1566624130, + "wof:name":"Seven Corners", + "wof:parent_id":85893193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85893239 + ], + "wof:tags":[] +}, + "bbox": [ + -122.641300723, + 45.503655985, + -122.641300723, + 45.503655985 +], + "geometry": {"coordinates":[-122.641300723,45.503655985],"type":"Point"} +},{ + "id": 1108719773, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":277722.695234, + "geom:bbox":"-122.781957426,45.5808604103,-122.770533297,45.5872522819", + "geom:latitude":45.584043, + "geom:longitude":-122.775709, + "iso:country":"US", + "lbl:latitude":45.584886, + "lbl:longitude":-122.774845, + "lbl:max_zoom":18.0, + "mps:latitude":45.584886, + "mps:longitude":-122.774845, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Whitwood Ct" + ], + "reversegeo:latitude":45.584886, + "reversegeo:longitude":-122.774845, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85830793, + 102191575, + 1108714055, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"00373c33cf68ab88fd74a82ad450c3a0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714055, + "microhood_id":1108719773, + "neighbourhood_id":85830793, + "region_id":85688513 + } + ], + "wof:id":1108719773, + "wof:lastmodified":1566624130, + "wof:name":"Whitwood Court", + "wof:parent_id":85830793, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857649 + ], + "wof:tags":[] +}, + "bbox": [ + -122.78195742632595, + 45.58086041034257, + -122.77053329663458, + 45.58725228190532 +], + "geometry": {"coordinates":[[[-122.77433951868051,45.58725228190532],[-122.77380008639547,45.58704747875958],[-122.773392,45.586864],[-122.773234,45.586774],[-122.77303058685111,45.58660672866451],[-122.772767,45.586395],[-122.772626,45.586327],[-122.772485,45.586276],[-122.77126686815325,45.58502154692068],[-122.77053329663458,45.58441828365518],[-122.77059757199147,45.58436454108335],[-122.7706756310981,45.58445988801412],[-122.77073512741768,45.58443316229687],[-122.77083373818135,45.58455382588581],[-122.77090931434452,45.58458714399877],[-122.77120538379081,45.58446709157032],[-122.7711683094207,45.58441946559763],[-122.77112928929972,45.58437205019675],[-122.77146767388747,45.58423538530693],[-122.77139151112442,45.584138629716],[-122.7715908670489,45.5840429509163],[-122.77218881804136,45.5838018689906],[-122.77230993789114,45.58375283353632],[-122.77226264877793,45.58369409215546],[-122.7720552035243,45.5834414814499],[-122.77198943965898,45.58336046914319],[-122.77207403041602,45.58332621667522],[-122.77275273276602,45.58305284186243],[-122.7728373369978,45.58301893185288],[-122.77298732870078,45.5832028834752],[-122.77304897019728,45.58327848914176],[-122.77309001152766,45.58332757907901],[-122.7731578460097,45.58341146523953],[-122.77358080967637,45.58324054109016],[-122.77355202316311,45.58320475576288],[-122.77341649164126,45.58304041104478],[-122.77309798227918,45.58264903881079],[-122.77307133465457,45.58261784145382],[-122.77238514664333,45.58177776211875],[-122.77272351955297,45.58164126444129],[-122.77280810671677,45.58160701155315],[-122.77329495676985,45.58220169354794],[-122.77339154183255,45.58232050784878],[-122.77348808557277,45.5824382939492],[-122.77357032633701,45.58254041539977],[-122.77359496083706,45.58257010954585],[-122.77380034176215,45.5828198434199],[-122.77385581093432,45.58288768252026],[-122.77398117801876,45.58304210981437],[-122.77400377064814,45.58306961516291],[-122.77442668850074,45.58289765951736],[-122.7743979567847,45.58286324518848],[-122.77429515538023,45.58273563761853],[-122.77410622889617,45.58250650005105],[-122.77391099354389,45.58226616975998],[-122.7738145037026,45.58214975453285],[-122.77371791145337,45.58203076823021],[-122.77323106589188,45.58143625983957],[-122.77356943430995,45.58129976007443],[-122.77365402776194,45.58126567799197],[-122.77383273501131,45.58148370035412],[-122.77397036769263,45.58165177544637],[-122.77410809110376,45.58182207759708],[-122.77433398775332,45.58209627070768],[-122.77434640157223,45.58211351583292],[-122.774356649553,45.58212548852001],[-122.77447167163861,45.58226554418667],[-122.77464633646919,45.58248004437982],[-122.77472639342899,45.58257637719029],[-122.77484969977814,45.58272810125164],[-122.77569757735401,45.58238671352086],[-122.77537515223563,45.58199542537937],[-122.77529248297496,45.58202878462007],[-122.77495212029696,45.58216430055523],[-122.77485553253928,45.58204548718123],[-122.77519588803077,45.58190980057594],[-122.77527036375771,45.58186699975661],[-122.77547518233744,45.58166437192578],[-122.77555115645427,45.58161022433411],[-122.77563281421192,45.58155167687357],[-122.77588133223696,45.5818538839987],[-122.77625429836986,45.58170331631164],[-122.77652416395931,45.58205054334216],[-122.77671834199451,45.58197227653559],[-122.77689523285038,45.58190138200263],[-122.77707213718095,45.58183083129098],[-122.77724901995198,45.58175976493815],[-122.77727593707117,45.58174894336432],[-122.7774270498716,45.58166861266656],[-122.77746692518875,45.58154264083867],[-122.77759360561012,45.58138905694368],[-122.7777979929985,45.5812732032381],[-122.77801000798199,45.58115273944997],[-122.77807495438037,45.58111595562653],[-122.77829326385906,45.58086041034257],[-122.77903438205328,45.58102355490774],[-122.77956013814129,45.58166116920753],[-122.77789462926521,45.58231733157402],[-122.77819669137273,45.58268758139526],[-122.77865649764419,45.58260748026333],[-122.77901080397201,45.58252740919544],[-122.779261099763,45.58248438062356],[-122.77929990788159,45.58247778100758],[-122.7796100781829,45.58232038713523],[-122.77974028808501,45.58225470070523],[-122.78000378551742,45.5821999193068],[-122.78007742850608,45.58218508408348],[-122.78022470729691,45.58215524198502],[-122.78051769642011,45.58215371985838],[-122.78104702241305,45.582150769284],[-122.78129980743567,45.58246111315432],[-122.78191643979281,45.58321986734749],[-122.78195742632595,45.58326741197744],[-122.78156369024536,45.5833386713204],[-122.78132747195319,45.58314889517281],[-122.7808954218274,45.58328761794573],[-122.78100432279265,45.58342075874233],[-122.78079315671712,45.58395105420098],[-122.78034715844993,45.58393743157048],[-122.78029995737164,45.58388109264099],[-122.77993830012981,45.58343829140707],[-122.77917503307394,45.5837457958653],[-122.77909237728802,45.58377949985092],[-122.77896094567713,45.58362039641579],[-122.77891567148512,45.58356333290302],[-122.77889314443274,45.58353754163981],[-122.77871635688315,45.58331931789457],[-122.77868145553771,45.58327730969011],[-122.77856706317114,45.58329912451182],[-122.77817539141904,45.58337324693488],[-122.77809482780943,45.58345903988501],[-122.77789951789698,45.58350920788999],[-122.77775770086306,45.58343193458289],[-122.77771239702666,45.58347141465536],[-122.77743686306779,45.58371317259598],[-122.77743300749857,45.58371445011575],[-122.7776176615951,45.58393406363423],[-122.77789294851729,45.58426986229282],[-122.77746653082836,45.58440331573513],[-122.77737195350028,45.58443211175149],[-122.77768023194959,45.58481098454772],[-122.77786920784096,45.58504080174927],[-122.77799245939291,45.58519080912956],[-122.77835409148189,45.58563310114128],[-122.77826949443663,45.58566718748788],[-122.77792726146622,45.58580514836797],[-122.77761692767153,45.58542391529542],[-122.77734804304237,45.58524763900385],[-122.7771057988513,45.58534555008772],[-122.77693467158629,45.58541427194857],[-122.77715863685799,45.58568832555145],[-122.77742161775909,45.58600944987487],[-122.77741391919709,45.58601234618044],[-122.7768428853238,45.58624263248273],[-122.77472221716124,45.58709981190376],[-122.7747125521871,45.58710240388026],[-122.77461831262556,45.58713976466547],[-122.77454140336253,45.58717078034093],[-122.77437220567877,45.58723911648395],[-122.77433951868051,45.58725228190532]]],"type":"Polygon"} +},{ + "id": 1108719775, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000223, + "geom:area_square_m":1929199.775985, + "geom:bbox":"-122.747501758,45.4761635585,-122.72314,45.4872073012", + "geom:latitude":45.481509, + "geom:longitude":-122.733911, + "iso:country":"US", + "lbl:latitude":45.481686, + "lbl:longitude":-122.733906, + "lbl:max_zoom":18.0, + "mps:latitude":45.481686, + "mps:longitude":-122.733906, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Vermont Hls" + ], + "reversegeo:latitude":45.481686, + "reversegeo:longitude":-122.733906, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85871499, + 102191575, + 1108714057, + 85633793, + 101715829, + 102081631, + 85688513 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"c59bb24b831dcb0523117769a1263a9c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081631, + "locality_id":101715829, + "macrohood_id":1108714057, + "microhood_id":1108719775, + "neighbourhood_id":85871499, + "region_id":85688513 + } + ], + "wof:id":1108719775, + "wof:lastmodified":1566624130, + "wof:name":"Vermont Hills", + "wof:parent_id":85871499, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85853645 + ], + "wof:tags":[] +}, + "bbox": [ + -122.74750175847599, + 45.47616355851194, + -122.72314, + 45.48720730117143 +], + "geometry": {"coordinates":[[[-122.72318332414665,45.48578081222909],[-122.72319899999999,45.483484],[-122.723204,45.483028],[-122.723204,45.482815],[-122.723178,45.482749],[-122.723174,45.482126],[-122.723152,45.481186],[-122.723164,45.480262],[-122.723147,45.479112],[-122.72315500000001,45.478649],[-122.72314,45.477607],[-122.72314078196888,45.47623602703168],[-122.7249684978392,45.47625069432569],[-122.72524706361217,45.47634304118422],[-122.72812042386313,45.476368939599],[-122.72844422699715,45.47632184182837],[-122.72974230605745,45.47630607033395],[-122.73103770544324,45.4763213750708],[-122.74367323215988,45.47635825646499],[-122.74400876729153,45.47636164470679],[-122.74400133732583,45.47617349902622],[-122.74442214593415,45.47616355851194],[-122.74441264175844,45.47631790997846],[-122.74426590914331,45.47635507546064],[-122.74426848910478,45.47651913631242],[-122.74427011954704,45.47656043317329],[-122.74427567113548,45.47684910595869],[-122.74428055258075,45.47712081487095],[-122.74463461097356,45.47719809264839],[-122.74467198538098,45.47720627935986],[-122.74473493392618,45.47722013950947],[-122.74507523282382,45.47729459775702],[-122.74544110046935,45.47737455736984],[-122.74544243985741,45.47716171823775],[-122.74544620739174,45.47691161809697],[-122.74544867775876,45.47653001405502],[-122.74544981772085,45.47641080978011],[-122.74583407208364,45.47641341127219],[-122.74583546447232,45.47654731425341],[-122.74583459939473,45.47657476905579],[-122.74583835974249,45.47686725011992],[-122.74584066302289,45.47712288973943],[-122.74621708138143,45.47712444305626],[-122.74637506090392,45.47712512460076],[-122.74658765440245,45.47712610912392],[-122.74659906839643,45.47687225905386],[-122.74660148845783,45.47683482809646],[-122.746612942876,45.47658200470985],[-122.74661511949394,45.47653840495111],[-122.74662013927976,45.47641878180969],[-122.74750175847599,45.47642416242508],[-122.74745238796629,45.47650709892148],[-122.74740129987778,45.47659589965749],[-122.74729721388242,45.47697177624843],[-122.74722571696897,45.47723486260772],[-122.74715769653565,45.47748724907149],[-122.74713332614031,45.4778078894825],[-122.74718173635097,45.47804582134675],[-122.74703681114617,45.47803013788857],[-122.74713193015836,45.47821639528552],[-122.74719568988229,45.47839863721809],[-122.74737774694935,45.47861354586182],[-122.74716851315,45.4786483377161],[-122.74687577914835,45.47864274882402],[-122.74672858479916,45.47861904846374],[-122.74639494870601,45.47856538610476],[-122.74628896636712,45.47854825344345],[-122.7459984979166,45.47850128976866],[-122.74594551348451,45.47849289475571],[-122.74568668639328,45.47855574772368],[-122.74556020988948,45.47851346404688],[-122.7454013140854,45.47834165644325],[-122.74532594004317,45.47826013168986],[-122.74507838231717,45.47821335547947],[-122.74490745537649,45.47818120067033],[-122.7447738498426,45.47815586053375],[-122.74453022404259,45.47810986403106],[-122.7437482199265,45.47796103777587],[-122.74376779241994,45.48003700054247],[-122.7437835641414,45.48255992607298],[-122.74379402412454,45.48445446125005],[-122.74379826956257,45.48515455201793],[-122.74375061663171,45.48720730117143],[-122.74268676879018,45.4870859234359],[-122.74147934681007,45.48708240421453],[-122.74030873150207,45.48707249459478],[-122.73908914453635,45.48705718333138],[-122.73745617443649,45.48704425641997],[-122.73626196487757,45.48707900843019],[-122.73490330073959,45.48704835630304],[-122.73357872586998,45.48704137453574],[-122.73194954306734,45.48707511007957],[-122.73122037695792,45.48703234786388],[-122.72981638203409,45.4870392137523],[-122.72918263317757,45.48704225812047],[-122.72855373498062,45.48704502915107],[-122.72780789093217,45.48700808351951],[-122.72775318269349,45.48699677521776],[-122.72744477039519,45.48689077950699],[-122.72718313876366,45.48678404674801],[-122.72680226026972,45.48657073303192],[-122.72653020189264,45.48644670944057],[-122.72622241392349,45.48630674494817],[-122.72586747248675,45.48615791830155],[-122.72567561479991,45.48608961350873],[-122.72533934754131,45.48601913395505],[-122.72499434416655,45.48597454642358],[-122.72318332414665,45.48578081222909]]],"type":"Polygon"} +},{ + "id": 1108757227, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":182193.752416, + "geom:bbox":"-121.828998469,37.3508639684,-121.822405432,37.3564030944", + "geom:latitude":37.353811, + "geom:longitude":-121.825763, + "iso:country":"US", + "lbl:latitude":37.35379, + "lbl:longitude":-121.825763, + "lbl:max_zoom":18.0, + "mps:latitude":37.35379, + "mps:longitude":-121.825763, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Granite Creek" + ], + "name:deu_x_preferred":[ + "Granite Creek" + ], + "name:swe_x_preferred":[ + "Granite Creek" + ], + "reversegeo:latitude":37.35379, + "reversegeo:longitude":-121.825763, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108757225, + 102191575, + 1108782555, + 85633793, + 85922347, + 102081673, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"fd8b21d79f6ec7d499d7ae738f1f3a51", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081673, + "locality_id":85922347, + "macrohood_id":1108782555, + "microhood_id":1108757227, + "neighbourhood_id":1108757225, + "region_id":85688637 + } + ], + "wof:id":1108757227, + "wof:lastmodified":1566623936, + "wof:name":"Granite Creek", + "wof:parent_id":1108757225, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420552669 + ], + "wof:tags":[] +}, + "bbox": [ + -121.82899846933182, + 37.35086396843015, + -121.82240543164676, + 37.35640309436623 +], + "geometry": {"coordinates":[[[[-121.82899846933182,37.3540530091009],[-121.82899846933182,37.35405300910091],[-121.82778186307792,37.35475659432645],[-121.82683533342609,37.35529770351657],[-121.82575049046248,37.35591762405833],[-121.82514474481383,37.35626268634483],[-121.82501809648012,37.35633289037609],[-121.82493144235707,37.35637527770749],[-121.82488478244466,37.35638984833903],[-121.82483978895769,37.35639912055861],[-121.82479646189617,37.35640309436623],[-121.82475313483465,37.35640243206491],[-121.8247098077731,37.35639713365466],[-121.82466814713702,37.35638388762528],[-121.82462815292638,37.3563626939768],[-121.82458982514117,37.35634083802023],[-121.82455316378145,37.35631831975559],[-121.82443901363857,37.35620307890549],[-121.82424737471258,37.35599511546995],[-121.82396491559994,37.35569773947081],[-121.82359163630065,37.35531095090806],[-121.82315503283451,37.35482746146754],[-121.82240543164676,37.35395774128903],[-121.82447890180072,37.35255910871228],[-121.82577877152237,37.35165844554692],[-121.82696137434949,37.35086396843015],[-121.82699156427749,37.35093227344284],[-121.82713887816712,37.35123058200327],[-121.82731255348965,37.35155354298645],[-121.82745831670675,37.35180747351574],[-121.82757616781846,37.35199237359113],[-121.82774053910583,37.35224630193557],[-121.82795143056887,37.35256925854905],[-121.82820574086254,37.35293782150578],[-121.82850346998683,37.35335199080574],[-121.82875157759041,37.35370206114232],[-121.82895006367326,37.35398803251552],[-121.82899846933182,37.3540530091009]]]],"type":"MultiPolygon"} +},{ + "id": 1108757233, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":21621.339138, + "geom:bbox":"-121.832191561,37.3576454164,-121.829097649,37.3594950849", + "geom:latitude":37.35857, + "geom:longitude":-121.830643, + "iso:country":"US", + "lbl:latitude":37.35857, + "lbl:longitude":-121.830648, + "lbl:max_zoom":18.0, + "mps:latitude":37.35857, + "mps:longitude":-121.830648, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Wilbur" + ], + "name:deu_x_preferred":[ + "Wilbur" + ], + "name:fra_x_preferred":[ + "Wilbur" + ], + "name:ita_x_preferred":[ + "Wilbur" + ], + "name:jpn_x_preferred":[ + "\u30a6\u30a3\u30eb\u30d0\u30fc" + ], + "name:lat_x_preferred":[ + "Wilburgus" + ], + "name:pol_x_preferred":[ + "Wilbur" + ], + "name:por_x_preferred":[ + "Wilbur" + ], + "name:rus_x_preferred":[ + "\u0423\u0438\u043b\u0431\u0443\u0440" + ], + "name:swe_x_preferred":[ + "Wilbur" + ], + "name:ukr_x_preferred":[ + "\u0412\u0456\u043b\u0431\u0435\u0440" + ], + "reversegeo:latitude":37.35857, + "reversegeo:longitude":-121.830648, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108757225, + 102191575, + 1108782555, + 85633793, + 85922347, + 102081673, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"3682c15acf8372c365c26dc62588e85e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081673, + "locality_id":85922347, + "macrohood_id":1108782555, + "microhood_id":1108757233, + "neighbourhood_id":1108757225, + "region_id":85688637 + } + ], + "wof:id":1108757233, + "wof:lastmodified":1566623938, + "wof:name":"Wilbur", + "wof:parent_id":1108757225, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -121.83219156108494, + 37.35764541638404, + -121.82909764922947, + 37.35949508490548 +], + "geometry": {"coordinates":[[[[-121.83219156108494,37.35825858672501],[-121.83000464369501,37.35928910778567],[-121.82955892070052,37.35949508490548],[-121.82909764922947,37.35886479313709],[-121.83175672556915,37.35764541638404],[-121.83184206792757,37.35776472374539],[-121.83219156108494,37.35825858672501]]]],"type":"MultiPolygon"} +},{ + "id": 1108757235, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":45312.8236, + "geom:bbox":"-121.825471832,37.3581050796,-121.822048541,37.3608140863", + "geom:latitude":37.359478, + "geom:longitude":-121.823752, + "iso:country":"US", + "lbl:latitude":37.359452, + "lbl:longitude":-121.823754, + "lbl:max_zoom":18.0, + "mps:latitude":37.359452, + "mps:longitude":-121.823754, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":37.359452, + "reversegeo:longitude":-121.823754, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108757225, + 102191575, + 1108782555, + 85633793, + 85922347, + 102081673, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ef3dd93165f59d48c9a7bc2ffea0e30c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081673, + "locality_id":85922347, + "macrohood_id":1108782555, + "microhood_id":1108757235, + "neighbourhood_id":1108757225, + "region_id":85688637 + } + ], + "wof:id":1108757235, + "wof:lastmodified":1566623938, + "wof:name":"Malabar-Nordyke", + "wof:parent_id":1108757225, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -121.82547183203292, + 37.35810507955348, + -121.82204854120451, + 37.3608140862513 +], + "geometry": {"coordinates":[[[[-121.82204854120451,37.35953862713288],[-121.82420035519004,37.35810507955348],[-121.82547183203292,37.35949923733055],[-121.82321661568061,37.3608140862513],[-121.82310568627101,37.3606905012539],[-121.823001804076,37.3605780685185],[-121.822895789512,37.3604598915237],[-121.822875779179,37.3604375113828],[-121.82277323277501,37.3603227836739],[-121.822668398107,37.3602070375689],[-121.82256356376401,37.3600912913695],[-121.82246015986701,37.3599747051085],[-121.82235789720001,37.3598642584126],[-121.822253694547,37.359754987088],[-121.822133262157,37.3596308195144],[-121.82204854120451,37.35953862713288]]]],"type":"MultiPolygon"} +},{ + "id": 1108782565, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000154, + "geom:area_square_m":1519119.841166, + "geom:bbox":"-121.89498093,37.2620397244,-121.876302182,37.2756964194", + "geom:latitude":37.268792, + "geom:longitude":-121.885475, + "iso:country":"US", + "lbl:latitude":37.268544, + "lbl:longitude":-121.885475, + "lbl:max_zoom":18.0, + "mps:latitude":37.268544, + "mps:longitude":-121.885475, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Robertsville" + ], + "name:deu_x_preferred":[ + "Robertsville" + ], + "name:vol_x_preferred":[ + "Robertsville" + ], + "reversegeo:latitude":37.268544, + "reversegeo:longitude":-121.885475, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420552889, + 102191575, + 1108782545, + 85633793, + 85922347, + 102081673, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"8f9649c51bb57665d1e889a643111afa", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081673, + "locality_id":85922347, + "macrohood_id":1108782545, + "microhood_id":1108782565, + "neighbourhood_id":420552889, + "region_id":85688637 + } + ], + "wof:id":1108782565, + "wof:lastmodified":1566624155, + "wof:name":"Robertsville", + "wof:parent_id":420552889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85845233 + ], + "wof:tags":[] +}, + "bbox": [ + -121.89498093011504, + 37.26203972444831, + -121.8763021822518, + 37.27569641938899 +], + "geometry": {"coordinates":[[[[-121.89139963630647,37.26203972444831],[-121.89498093011504,37.27081983416043],[-121.89486834926666,37.27087965260179],[-121.89473203347018,37.27095123305428],[-121.89461009110804,37.27101432710025],[-121.89450252218023,37.27106893473968],[-121.89438892568317,37.2711213285254],[-121.89426930161689,37.27117150845739],[-121.89414364998137,37.27121947453568],[-121.8940119707766,37.27126522676026],[-121.89387519132097,37.27130913411563],[-121.89373331161445,37.2713511966018],[-121.89358633165705,37.27139141421877],[-121.89343425144872,37.27142978696653],[-121.89307723388656,37.27152276658271],[-121.89251527897052,37.2716703530673],[-121.89174838670061,37.2718725464203],[-121.89077655707686,37.27212934664172],[-121.889812609659,37.27238356327851],[-121.88885654444704,37.27263519633068],[-121.88790836144102,37.27288424579821],[-121.8869680606409,37.27313071168111],[-121.88605418841357,37.27337053558666],[-121.88516674475903,37.27360371751487],[-121.88430572967727,37.2738302574657],[-121.88347114316832,37.27405015543919],[-121.88274829851972,37.27424016773637],[-121.88213719573149,37.27440029435726],[-121.88163783480361,37.27453053530184],[-121.88125021573612,37.27463089057013],[-121.8808741881479,37.27472829410178],[-121.88050975203899,37.27482274589679],[-121.88015690740936,37.27491424595517],[-121.879815654259,37.2750027942769],[-121.879505002614,37.27508359456463],[-121.87922495247432,37.27515664681837],[-121.87897550383997,37.27522195103809],[-121.87875665671098,37.27527950722381],[-121.87855542863048,37.27533226703627],[-121.8783718195985,37.27538023047547],[-121.87820582961504,37.27542339754141],[-121.87805745868013,37.27546176823409],[-121.87791372433691,37.27549755627163],[-121.87777462658542,37.27553076165403],[-121.87764016542565,37.27556138438128],[-121.87751034085758,37.27558942445339],[-121.87738747117712,37.27561451293418],[-121.87727155638419,37.27563664982367],[-121.87716259647885,37.27565583512184],[-121.87706059146107,37.2756720688287],[-121.87690758393443,37.27569641938899],[-121.87684921448727,37.27555026630814],[-121.8768076619552,37.27546742287475],[-121.87677113225666,37.27539547980513],[-121.87673186283075,37.27531881313304],[-121.87668985367745,37.27523742285852],[-121.87664830114537,37.27516220947248],[-121.87660720523454,37.27509317297495],[-121.87656656594491,37.27503031336591],[-121.87652638327654,37.27497363064537],[-121.87648802709307,37.27491404106193],[-121.87645149739456,37.27485154461561],[-121.87641679418094,37.27478614130639],[-121.87638391745227,37.27471783113427],[-121.87635652017838,37.27465497120637],[-121.87633460235925,37.27459756152271],[-121.87631816399491,37.27454560208326],[-121.87630720508535,37.27449909288804],[-121.87630218225181,37.27445258366407],[-121.87630309549426,37.27440607441138],[-121.87630994481275,37.27435956512995],[-121.87632273020722,37.27431305581979],[-121.87634464802635,37.27426327628176],[-121.8763756982701,37.27421022651588],[-121.87641588093848,37.27415390652213],[-121.8764651960315,37.27409431630051],[-121.87652227368545,37.27403508938845],[-121.87658711390034,37.27397622578594],[-121.87665971667616,37.27391772549299],[-121.87674008201293,37.27385958850958],[-121.87682775328939,37.27379454767745],[-121.87692273050556,37.27372260299659],[-121.87702501366144,37.273643754467],[-121.87713460275705,37.27355800208868],[-121.87722729686706,37.27348387711891],[-121.87730309599152,37.2734213795577],[-121.87736200013039,37.27337050940503],[-121.87740400928371,37.2733312666609],[-121.87744830154317,37.27329129717651],[-121.8774948769088,37.27325060095186],[-121.87754373538058,37.27320917798694],[-121.87759487695853,37.27316702828175],[-121.87764510529401,37.27312451519219],[-121.87769442038703,37.27308163871828],[-121.87774282223758,37.27303839886001],[-121.87779031084567,37.27299479561737],[-121.87783825607499,37.27295119234949],[-121.87788665792553,37.27290758905635],[-121.87793551639732,37.27286398573795],[-121.87798483149034,37.27282038239429],[-121.8780277538861,37.27277605230042],[-121.87806428358464,37.2727309954563],[-121.87809442058591,37.27268521186197],[-121.87811816488997,37.2726387015174],[-121.87814008270908,37.27259110105373],[-121.87816017404327,37.27254241047097],[-121.87817843889253,37.2724926297691],[-121.87819487725687,37.27244175894812],[-121.87820857589382,37.27237635349113],[-121.87821953480338,37.2722964133981],[-121.87822775398556,37.27220193866906],[-121.87823323344031,37.27209292930399],[-121.8782387128951,37.27191742302088],[-121.87824419234988,37.27167541981973],[-121.87824967180467,37.27136691970052],[-121.87825515125945,37.27099192266327],[-121.8782615439567,37.2706340025911],[-121.8782688498964,37.27029315948402],[-121.87827706907856,37.26996939334202],[-121.87828620150319,37.26966270416509],[-121.87829350744289,37.26941124788659],[-121.87829898689766,37.26921502450651],[-121.87830263986751,37.26907403402485],[-121.87830446635245,37.26898827644162],[-121.87830629283737,37.26891196668512],[-121.8783081193223,37.26884510475538],[-121.87830994580722,37.26878769065237],[-121.87831177229215,37.26873972437613],[-121.87831222891337,37.26869139468703],[-121.87831131567091,37.26864270158509],[-121.87830903256474,37.26859364507033],[-121.87830537959491,37.26854422514271],[-121.87829670379151,37.26849480518267],[-121.87828300515456,37.26844538519018],[-121.87826428368408,37.26839596516526],[-121.87824053938002,37.26834654510791],[-121.87821405534859,37.26829203763649],[-121.87818483158978,37.268232442751],[-121.87815286810357,37.26816776045145],[-121.87811816488994,37.26809799073784],[-121.87808117857018,37.26801913630217],[-121.87804190914426,37.26793119714446],[-121.87800035661219,37.2678341732647],[-121.87795652097395,37.2677280646629],[-121.87791177209326,37.26761904880112],[-121.8778661099701,37.26750712567935],[-121.87781953460447,37.2673922952976],[-121.87777204599638,37.26727455765587],[-121.87772638387321,37.26716590460109],[-121.87768254823499,37.26706633613324],[-121.87764053908167,37.26697585225235],[-121.87760035641328,37.26689445295841],[-121.87756382671475,37.26681414375253],[-121.87753094998608,37.26673492463473],[-121.87750172622725,37.26665679560499],[-121.87747615543829,37.26657975666332],[-121.87745058464931,37.26650635157608],[-121.87742501386035,37.26643658034327],[-121.87739944307137,37.26637044296489],[-121.8773738722824,37.26630793944095],[-121.87735104122082,37.26624870641351],[-121.87733094988663,37.26619274388256],[-121.87731359827983,37.26614005184812],[-121.87729898640042,37.26609063031017],[-121.87728574438471,37.26604302571491],[-121.87727387223268,37.26599723806233],[-121.87726336994436,37.26595326735241],[-121.87725423751974,37.26591111358518],[-121.87725058454988,37.26587223035509],[-121.8772524110348,37.26583661766217],[-121.87725971697451,37.26580427550641],[-121.877272502369,37.2657752038878],[-121.87729168046073,37.26574613225797],[-121.87731725124968,37.26571706061692],[-121.87734921473589,37.26568798896465],[-121.87738757091935,37.26565891730115],[-121.87742775358772,37.26563420638404],[-121.87746976274104,37.26561385621331],[-121.87751359837928,37.26559786678895],[-121.87755926050244,37.26558623811098],[-121.87762958017211,37.26556952187714],[-121.87772455738829,37.26554771808743],[-121.87784419215097,37.26552082674185],[-121.87798848446016,37.26548884784039],[-121.8781117721927,37.26546050289929],[-121.87821405534858,37.26543579191854],[-121.87829533392781,37.26541471489814],[-121.87835560793037,37.26539727183809],[-121.87844419244931,37.26537328761285],[-121.87856108748461,37.2653427622224],[-121.87870629303626,37.26530569566677],[-121.87887980910428,37.26526208794593],[-121.87903277721686,37.26522465797771],[-121.87916519737402,37.26519340576209],[-121.87927706957578,37.26516833129909],[-121.87936839382209,37.26514943458869],[-121.87944601943147,37.26513380846184],[-121.8795099464039,37.26512145291851],[-121.87956017473937,37.26511236795874],[-121.8795967044379,37.26510655358248],[-121.87963825696997,37.26510001240837],[-121.87968483233561,37.26509274443637],[-121.87973643053478,37.26508474966651],[-121.87979305156749,37.26507602809878],[-121.87985834840362,37.26506221894257],[-121.87993232104313,37.26504332219788],[-121.88001496948607,37.26501933786473],[-121.88010629373238,37.2649902659431],[-121.88023597416216,37.26495247240548],[-121.88040401077541,37.26490595725186],[-121.88061040357209,37.26485072048224],[-121.88085515255221,37.26478676209663],[-121.88106565493999,37.26473261549427],[-121.8812419107354,37.26468828067515],[-121.88138391993843,37.26465375763927],[-121.88149168254908,37.26462904638664],[-121.88164967349522,37.26459016244647],[-121.88185789277685,37.26453710581877],[-121.88211634039394,37.26446987650353],[-121.88242501634652,37.26438847450076],[-121.882729582708,37.26430779921825],[-121.8830300394784,37.26422785065601],[-121.88332638665771,37.26414862881403],[-121.88361862424595,37.26407013369232],[-121.88386976592335,37.26400181383498],[-121.88407981168987,37.26394366924202],[-121.88424876154556,37.26389569991343],[-121.88437661549042,37.26385790584923],[-121.88457022289262,37.26380412189435],[-121.88482958375216,37.2637343480488],[-121.88515469806907,37.26364858431258],[-121.88554556584334,37.2635468306857],[-121.8858830089335,37.26345924984149],[-121.88616702733957,37.26338584177995],[-121.88639762106153,37.2633266065011],[-121.8865747900994,37.26328154400493],[-121.88683963041373,37.26321285986795],[-121.88719214200455,37.26312055409016],[-121.88763232487182,37.26300462667157],[-121.88816017901557,37.26286507761218],[-121.88859351256437,37.26275096713891],[-121.88893232551823,37.26266229525175],[-121.88917661787714,37.26259906195072],[-121.88932638964111,37.2625612672358],[-121.88951817055839,37.2625129335475],[-121.88975196062898,37.26245406088581],[-121.89002775985288,37.26238464925073],[-121.89034556823009,37.26230469864228],[-121.89062547704508,37.26223419670791],[-121.89086748629782,37.26217314344765],[-121.89107159598835,37.26212153886148],[-121.89123780611666,37.26207938294942],[-121.8913871212594,37.26204267822443],[-121.89139963630647,37.26203972444831]]]],"type":"MultiPolygon"} +},{ + "id": 1108785769, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":40101.708172, + "geom:bbox":"-121.887122786,37.3324991908,-121.883956006,37.3358208184", + "geom:latitude":37.334158, + "geom:longitude":-121.885541, + "iso:country":"US", + "lbl:latitude":37.334155, + "lbl:longitude":-121.885542, + "lbl:max_zoom":18.0, + "mps:latitude":37.334155, + "mps:longitude":-121.885542, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":37.334155, + "reversegeo:longitude":-121.885542, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 85887689, + 102191575, + 1108782551, + 85633793, + 85922347, + 102081673, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1df8cfaff68d9a9136afe6dd6e39532a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081673, + "locality_id":85922347, + "macrohood_id":1108782551, + "microhood_id":1108785769, + "neighbourhood_id":85887689, + "region_id":85688637 + } + ], + "wof:id":1108785769, + "wof:lastmodified":1566624165, + "wof:name":"Paseo Plaza", + "wof:parent_id":85887689, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -121.88712278638626, + 37.33249919075269, + -121.88395600597292, + 37.3358208184133 +], + "geometry": {"coordinates":[[[[-121.88503364428489,37.33249919075269],[-121.88712278638626,37.33531211018914],[-121.88605872594719,37.3358208184133],[-121.88572339156406,37.33536919116698],[-121.88395600597292,37.33301822429757],[-121.88503364428489,37.33249919075269]]]],"type":"MultiPolygon"} +},{ + "id": 1108800005, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000057, + "geom:area_square_m":499745.780846, + "geom:bbox":"-93.3035049649,44.9465827349,-93.2931748501,44.9529035562", + "geom:latitude":44.949401, + "geom:longitude":-93.298424, + "iso:country":"US", + "lbl:latitude":44.949293, + "lbl:longitude":-93.298424, + "lbl:max_zoom":18.0, + "mps:latitude":44.949293, + "mps:longitude":-93.298424, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":12.0, + "name:deu_x_preferred":[ + "Uptown" + ], + "name:eng_x_variant":[ + "Hennepin and Lk" + ], + "name:fra_x_preferred":[ + "Uptown" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30c3\u30d7\u30bf\u30a6\u30f3" + ], + "name:kor_x_preferred":[ + "\uc5c5\ud0c0\uc6b4" + ], + "reversegeo:latitude":44.949293, + "reversegeo:longitude":-93.298424, + "src:geom":"mz", + "wof:belongsto":[ + 85872647, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"8f72d17f7b1ed8e8e5daf55229609ae6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800005, + "neighbourhood_id":85872647, + "region_id":85688727 + } + ], + "wof:id":1108800005, + "wof:lastmodified":1566623866, + "wof:name":"Uptown", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867013 + ], + "wof:tags":[] +}, + "bbox": [ + -93.3035049649144, + 44.94658273494618, + -93.29317485010857, + 44.95290355623492 +], + "geometry": {"coordinates":[[[[-93.30338063925454,44.94837713295004],[-93.30337668244296,44.94880951825074],[-93.30336858039213,44.95002037125667],[-93.30336587970852,44.95096647517038],[-93.30336520453761,44.95153748038136],[-93.30336655487943,44.9517333868896],[-93.30337060590483,44.95184710816605],[-93.30337735761387,44.95187864421069],[-93.30338816034829,44.95191161369215],[-93.30340301410814,44.95194601661042],[-93.30341989338069,44.95197850823813],[-93.30343879816597,44.95200908857531],[-93.30346242914754,44.95203680199387],[-93.30349078632545,44.95206164849382],[-93.3035049649144,44.95207407174379],[-93.3033922113737,44.95216246763498],[-93.30316670429232,44.95233925941736],[-93.30297428058516,44.95249024882648],[-93.3028149402522,44.95261543586231],[-93.30269273431888,44.95271386524086],[-93.30260766278518,44.9527855369621],[-93.30254352154945,44.95284191867577],[-93.30250031061171,44.95288301038187],[-93.30247870514283,44.95290355623492],[-93.30178800530973,44.95274635581992],[-93.30040660564356,44.9524319549899],[-93.29937291899208,44.95220021517433],[-93.29868694535531,44.9520511363732],[-93.2983047986246,44.95196990752031],[-93.2982652896892,44.95196315844647],[-93.29822647879992,44.95195652861566],[-93.29780517215686,44.95194601661775],[-93.2970408786954,44.95193837152659],[-93.29578776150065,44.95193741589029],[-93.29404582057259,44.95194314970885],[-93.29317485010857,44.95194601661814],[-93.29318160181759,44.95136402228869],[-93.29319510523564,44.9502000336298],[-93.29319510523564,44.94916790927078],[-93.29318281558017,44.94834856961027],[-93.29318160181759,44.94826764921162],[-93.2931843025012,44.94750882312307],[-93.29321265967911,44.94658273494618],[-93.29831821687928,44.94659040428745],[-93.30084749224278,44.94659420365256],[-93.30339693757001,44.9465961151035],[-93.30339018586099,44.94733391615258],[-93.30338063925454,44.94837713295004]]]],"type":"MultiPolygon"} +},{ + "id": 1108800007, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":462218.051712, + "geom:bbox":"-93.2796701535,44.9519415193,-93.2764567578,44.9698551512", + "geom:latitude":44.960719, + "geom:longitude":-93.278038, + "iso:country":"US", + "lbl:latitude":44.9607, + "lbl:longitude":-93.27806, + "lbl:max_zoom":18.0, + "mps:latitude":44.9607, + "mps:longitude":-93.27806, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.9607, + "reversegeo:longitude":-93.27806, + "src:geom":"mz", + "wof:belongsto":[ + 85872643, + 102191575, + 1108799997, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"7d7d26abba45ba521df4757e658d207b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799997, + "microhood_id":1108800007, + "neighbourhood_id":85872643, + "region_id":85688727 + } + ], + "wof:id":1108800007, + "wof:lastmodified":1566623865, + "wof:name":"Eat Street", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781119 + ], + "wof:tags":[] +}, + "bbox": [ + -93.2796701535017, + 44.95194151932117, + -93.27645675775334, + 44.96985515119786 +], + "geometry": {"coordinates":[[[[-93.27652820557617,44.96655160752974],[-93.27654731893814,44.9664226181048],[-93.27656766976619,44.96628511108299],[-93.27658191534582,44.96618863988783],[-93.27659209075983,44.96608712896408],[-93.27659819600825,44.96598057831174],[-93.27660124863245,44.96558388836326],[-93.27660124863245,44.96489705911865],[-93.27660023109104,44.96422030126436],[-93.27659819600824,44.96355361480039],[-93.27659616092544,44.96312523492963],[-93.27659412584262,44.96293516165207],[-93.27659209075982,44.96282572546762],[-93.27659005567702,44.96279692637631],[-93.27658496797001,44.96277316711821],[-93.27657682763879,44.96275444769335],[-93.27656868730757,44.96273716821948],[-93.27656054697636,44.96272132869659],[-93.27655444172794,44.96269756939914],[-93.27655430478332,44.96269650352644],[-93.27655037156232,44.96266589032713],[-93.27654731893813,44.96233757636814],[-93.27654528385531,44.96171262752216],[-93.27655037156234,44.96070318101348],[-93.27656258205914,44.9593092368421],[-93.27657072239036,44.95796710338855],[-93.27657479255598,44.95667678065284],[-93.27658496797,44.95500909429404],[-93.27660124863243,44.95296404431213],[-93.27660938896365,44.95194151932117],[-93.27737254501535,44.95194151932117],[-93.2796701535017,44.95194151932117],[-93.27966201317057,44.95289781974778],[-93.27965082021512,44.95387858081487],[-93.27963657463548,44.9552121708459],[-93.27962945184564,44.95619651069293],[-93.27962945184565,44.95683160035595],[-93.27962639922144,44.95751708516947],[-93.27962029397304,44.95825296513348],[-93.27961317118321,44.95897803548501],[-93.279605030852,44.95969229622404],[-93.27960401331059,44.9603640683617],[-93.27961011855901,44.96099335189797],[-93.2796091010176,44.96149735140337],[-93.27960096068639,44.96187606687788],[-93.27959485543798,44.96210286387175],[-93.27959078527236,44.96217774238497],[-93.27958162739975,44.96224686093623],[-93.2795673818201,44.96231021952552],[-93.27954906607486,44.96237573798943],[-93.27952668016401,44.96244341632797],[-93.27950327671175,44.96251037460686],[-93.27947885571811,44.96257661282613],[-93.27945545226585,44.96263997105603],[-93.27943372545742,44.96269866865178],[-93.279433066355,44.96270044929656],[-93.27941373306835,44.96275012781761],[-93.2793974524059,44.9627890066192],[-93.27938117174347,44.96283364520401],[-93.27936489108104,44.96288404357209],[-93.27935369812562,44.96292364226997],[-93.2793475928772,44.96295244129769],[-93.27934250517019,44.96299995963854],[-93.27933843500459,44.96306619729255],[-93.27933639992179,44.96326418914205],[-93.27933639992179,44.96359393518704],[-93.2793374174632,44.96408782861972],[-93.279339452546,44.96474586944008],[-93.2793404700874,44.96516344328855],[-93.2793404700874,44.96534055016512],[-93.27934555779441,44.96548453921736],[-93.27935573320845,44.9655954104453],[-93.27935878583264,44.96572140016712],[-93.27935513335255,44.96584802767992],[-93.27935471566703,44.96586250838284],[-93.27934861041861,44.96623255361516],[-93.27934047008739,44.96683153586406],[-93.2793353823804,44.96745066926921],[-93.27933334729758,44.96808995383061],[-93.27933232975619,44.96877098488294],[-93.27933232975617,44.96949376242622],[-93.27933232975617,44.96985515119786],[-93.27899959371763,44.96985299153106],[-93.27833412164053,44.96984867219745],[-93.27796068394589,44.96984363297441],[-93.27787928063371,44.96983787386192],[-93.27778871944891,44.96983283463812],[-93.27768900039148,44.969828515303],[-93.27735219418733,44.969828515303],[-93.27677830083644,44.96983283463812],[-93.27649135416101,44.96983499430568],[-93.27648524891259,44.96960534783338],[-93.27647303841579,44.96914605488879],[-93.27646591562596,44.96853053646988],[-93.27646388054316,44.96775879257666],[-93.27646082791895,44.96732396598416],[-93.27645675775334,44.96722605669238],[-93.27645675775334,44.96714542542188],[-93.27646082791895,44.96708207217262],[-93.27647405595718,44.96696040475538],[-93.27649644186802,44.96678042317014],[-93.27652086286167,44.96660116095328],[-93.27652820557617,44.96655160752974]]]],"type":"MultiPolygon"} +},{ + "id": 1108800011, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000037, + "geom:area_square_m":324070.531018, + "geom:bbox":"-93.3184802622,44.9878811736,-93.3082259012,44.9915610104", + "geom:latitude":44.989723, + "geom:longitude":-93.313361, + "iso:country":"US", + "lbl:latitude":44.98972, + "lbl:longitude":-93.31336, + "lbl:max_zoom":18.0, + "mps:latitude":44.98972, + "mps:longitude":-93.31336, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Homewood" + ], + "name:ceb_x_preferred":[ + "Homewood" + ], + "name:deu_x_preferred":[ + "Homewood" + ], + "name:fra_x_preferred":[ + "Homewood" + ], + "name:ido_x_preferred":[ + "Homewood" + ], + "name:ita_x_preferred":[ + "Homewood" + ], + "name:nld_x_preferred":[ + "Homewood" + ], + "name:pol_x_preferred":[ + "Homewood" + ], + "name:srp_x_preferred":[ + "\u0425\u043e\u043c\u0432\u0443\u0434" + ], + "name:ukr_x_preferred":[ + "\u0413\u043e\u0443\u043c\u0432\u0443\u0434" + ], + "name:vol_x_preferred":[ + "Homewood" + ], + "reversegeo:latitude":44.98972, + "reversegeo:longitude":-93.31336, + "src:geom":"mz", + "wof:belongsto":[ + 85872601, + 102191575, + 1108799979, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"68c64438474ac7658172b661001534b7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799979, + "microhood_id":1108800011, + "neighbourhood_id":85872601, + "region_id":85688727 + } + ], + "wof:id":1108800011, + "wof:lastmodified":1566623867, + "wof:name":"Homewood", + "wof:parent_id":85872601, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781075 + ], + "wof:tags":[] +}, + "bbox": [ + -93.31848026223358, + 44.98788117358254, + -93.30822590118555, + 44.99156101038129 +], + "geometry": {"coordinates":[[[[-93.30826778239266,44.98788117358254],[-93.31848026223358,44.98794007541377],[-93.3184732203198,44.9915557864014],[-93.31847321013581,44.99156101038129],[-93.30822590118555,44.9915047283449],[-93.3082376114089,44.99047777240265],[-93.30826103185561,44.98842386051815],[-93.30826778239266,44.98788117358254]]]],"type":"MultiPolygon"} +},{ + "id": 1108800013, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":417899.907388, + "geom:bbox":"-93.2932126597,44.9465827349,-93.2842470088,44.9519466034", + "geom:latitude":44.949271, + "geom:longitude":-93.288733, + "iso:country":"US", + "lbl:latitude":44.949269, + "lbl:longitude":-93.288733, + "lbl:max_zoom":18.0, + "mps:latitude":44.949269, + "mps:longitude":-93.288733, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Lyn-Lake" + ], + "reversegeo:latitude":44.949269, + "reversegeo:longitude":-93.288733, + "src:geom":"mz", + "wof:belongsto":[ + 85872583, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6708294" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"6d9d870f6303c657d81b3348a1adeac8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800013, + "neighbourhood_id":85872583, + "region_id":85688727 + } + ], + "wof:id":1108800013, + "wof:lastmodified":1566623868, + "wof:name":"Lyn-Lake", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781117 + ], + "wof:tags":[] +}, + "bbox": [ + -93.29321265967911, + 44.94658273494618, + -93.28424700879994, + 44.95194660340287 +], + "geometry": {"coordinates":[[[[-93.28427976047531,44.9483576555709],[-93.28429579516381,44.94660056498356],[-93.28813644155785,44.94659288528083],[-93.29321265967911,44.94658273494618],[-93.2931843025012,44.94750882312307],[-93.29318160181759,44.94826764921162],[-93.29318281558017,44.94834856961027],[-93.29319510523564,44.94916790927078],[-93.29319510523564,44.9502000336298],[-93.29318160181759,44.95136402228869],[-93.29317485010857,44.95194601661814],[-93.28807386526336,44.95194635188172],[-93.28424700879994,44.95194660340287],[-93.28427976047531,44.9483576555709]]]],"type":"MultiPolygon"} +},{ + "id": 1108800089, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000191, + "geom:area_square_m":1669970.88441, + "geom:bbox":"-93.2747611659,44.9465278843,-93.2370961707,44.9519590849", + "geom:latitude":44.949201, + "geom:longitude":-93.256561, + "iso:country":"US", + "lbl:latitude":44.949243, + "lbl:longitude":-93.256561, + "lbl:max_zoom":18.0, + "mps:latitude":44.949243, + "mps:longitude":-93.256561, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:bar_x_preferred":[ + "Midtown" + ], + "name:bul_x_preferred":[ + "\u041c\u0438\u0434\u0442\u0430\u0443\u043d" + ], + "name:deu_x_preferred":[ + "Midtown" + ], + "name:fra_x_preferred":[ + "Midtown" + ], + "name:kor_x_preferred":[ + "\ubbf8\ub4dc\ud0c0\uc6b4" + ], + "name:por_x_preferred":[ + "Midtown" + ], + "name:spa_x_preferred":[ + "Midtown" + ], + "name:zho_x_preferred":[ + "\u4e2d\u57ce" + ], + "reversegeo:latitude":44.949243, + "reversegeo:longitude":-93.256561, + "src:geom":"mz", + "wof:belongsto":[ + 420781061, + 102191575, + 1108799995, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"b41964e27bba648c2721793317be95eb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799995, + "microhood_id":1108800089, + "neighbourhood_id":420781061, + "region_id":85688727 + } + ], + "wof:id":1108800089, + "wof:lastmodified":1566623867, + "wof:name":"Midtown", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781057 + ], + "wof:tags":[] +}, + "bbox": [ + -93.27476116588689, + 44.94652788425046, + -93.23709617066588, + 44.95195908493007 +], + "geometry": {"coordinates":[[[[-93.26264375740541,44.95194851600283],[-93.25245844194427,44.95195349400204],[-93.24101903361733,44.95195908493007],[-93.24101615782419,44.95195509281979],[-93.24077402096515,44.95164250096745],[-93.24051591903846,44.9513186087228],[-93.24024185204414,44.95098341608583],[-93.23984405577569,44.95050981020309],[-93.23932253023311,44.94989779107456],[-93.23882761313658,44.9492923566045],[-93.23813571900081,44.94837140244724],[-93.2380385413138,44.94820423541687],[-93.23784418593978,44.94786990135611],[-93.23768357281818,44.94759288064544],[-93.23755670194903,44.94737317328484],[-93.23742578200958,44.94713818090936],[-93.23729081299985,44.94688790351899],[-93.23709617066588,44.94655144807502],[-93.24740555345831,44.94654195137247],[-93.26267646933059,44.94652788425046],[-93.26267872278062,44.94668099542014],[-93.27474394697425,44.94666647273572],[-93.27475301846434,44.9471993750582],[-93.27476116588689,44.94825655432903],[-93.27475914852276,44.94835292901159],[-93.27475030265683,44.94877551881979],[-93.27472586038921,44.94915609117391],[-93.27468783908402,44.94939827139142],[-93.27464438616381,44.94960585380937],[-93.27459550162857,44.94977883842776],[-93.27454661709334,44.94993644624508],[-93.27449773255809,44.9500786772613],[-93.27443255317777,44.95024397222419],[-93.27435107895238,44.95043233113371],[-93.27425602568941,44.9506206894251],[-93.27414739338889,44.95080904709834],[-93.27398987655312,44.95104737601832],[-93.27378347518209,44.95133567618504],[-93.27329315055067,44.95194331118901],[-93.26264375740541,44.95194851600283]]]],"type":"MultiPolygon"} +},{ + "id": 1108800091, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000012, + "geom:area_square_m":104488.765025, + "geom:bbox":"-93.2303159345,44.9725111085,-93.2231415755,44.9747845413", + "geom:latitude":44.973787, + "geom:longitude":-93.226781, + "iso:country":"US", + "lbl:latitude":44.973855, + "lbl:longitude":-93.226496, + "lbl:max_zoom":18.0, + "mps:latitude":44.973855, + "mps:longitude":-93.226496, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Stadium Village" + ], + "name:por_x_preferred":[ + "Stadium Village" + ], + "reversegeo:latitude":44.973855, + "reversegeo:longitude":-93.226496, + "src:geom":"mz", + "wof:belongsto":[ + 420525029, + 102191575, + 1108800003, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7596500" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"04517df43009f42e52793585127621b1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108800003, + "microhood_id":1108800091, + "neighbourhood_id":420525029, + "region_id":85688727 + } + ], + "wof:id":1108800091, + "wof:lastmodified":1566623866, + "wof:name":"Stadium Village", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781067 + ], + "wof:tags":[] +}, + "bbox": [ + -93.2303159344535, + 44.97251110850535, + -93.22314157547073, + 44.97478454134844 +], + "geometry": {"coordinates":[[[[-93.23028954320657,44.97478454134844],[-93.22709789182758,44.97476066398493],[-93.22625828023257,44.97475438268761],[-93.22491587930519,44.97474576592715],[-93.22459715424569,44.97461651389879],[-93.22395970412666,44.97435800984211],[-93.22364097906716,44.97422875781375],[-93.22366331012228,44.97419429040939],[-93.22370797223253,44.97412535560068],[-93.2237445139591,44.97406360144243],[-93.22377293530198,44.97400902793466],[-93.22379932654896,44.97394870977764],[-93.22382368769999,44.97388264697137],[-93.22383586827551,44.97381658408899],[-93.22383586827551,44.97375052113053],[-93.22382977798776,44.97368158578319],[-93.22381759741222,44.97360977804699],[-93.22380135664487,44.9735365340607],[-93.22378105568566,44.9734618538243],[-93.22375872463054,44.97340081704219],[-93.22373436347949,44.97335342371437],[-93.22369173146517,44.97329166869009],[-93.22363082858756,44.97321555196935],[-93.22356282037423,44.97312650960941],[-93.22348770682517,44.97302454161027],[-93.22337300640567,44.97285794533436],[-93.22321871911571,44.97262672078169],[-93.22314157547073,44.97251110850535],[-93.22377801054179,44.97251972560158],[-93.2250508806839,44.97253695979403],[-93.22568731575495,44.97254557689025],[-93.225686300707,44.97264754546904],[-93.22568427061107,44.97285148262661],[-93.22568325556311,44.97295345120539],[-93.22604765778082,44.97295345120539],[-93.22677646221626,44.97295345120539],[-93.22710323346395,44.97295345120539],[-93.22710356161532,44.97304638819998],[-93.22710399390125,44.97316881754122],[-93.22774583301823,44.97316815852629],[-93.22895577018681,44.97316672235959],[-93.2297495376917,44.97316528619287],[-93.23012713553291,44.9731638500261],[-93.2303159344535,44.97316313194272],[-93.23030933664177,44.97356848429415],[-93.23028954320657,44.97478454134844]]]],"type":"MultiPolygon"} +},{ + "id": 1108800093, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00006, + "geom:area_square_m":521881.915974, + "geom:bbox":"-93.2599685992,44.9738484514,-93.2448010157,44.9817935918", + "geom:latitude":44.977851, + "geom:longitude":-93.252283, + "iso:country":"US", + "lbl:latitude":44.977496, + "lbl:longitude":-93.252284, + "lbl:max_zoom":18.0, + "mps:latitude":44.977496, + "mps:longitude":-93.252284, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.977496, + "reversegeo:longitude":-93.252284, + "src:geom":"mz", + "wof:belongsto":[ + 85872659, + 102191575, + 1108799999, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ecdc833b1afa550eedb553b06824539c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799999, + "microhood_id":1108800093, + "neighbourhood_id":85872659, + "region_id":85688727 + } + ], + "wof:id":1108800093, + "wof:lastmodified":1566623866, + "wof:name":"Mill District", + "wof:parent_id":85872659, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781073 + ], + "wof:tags":[] +}, + "bbox": [ + -93.25996859922103, + 44.97384845143168, + -93.2448010157333, + 44.98179359181258 +], + "geometry": {"coordinates":[[[[-93.2495925778704,44.97384845143168],[-93.25572996280104,44.97651603589807],[-93.25996859922103,44.978313668339],[-93.25983792649967,44.97844213655954],[-93.25965529490995,44.97864676315087],[-93.25944733485159,44.97890136697875],[-93.2592487063343,44.97913899630362],[-93.25905940935812,44.97935965112548],[-93.25886478007271,44.97958690580572],[-93.25866481847814,44.97982076034435],[-93.25851284766625,44.97999897975283],[-93.25840886763707,44.98012156403117],[-93.25829688914412,44.9802762083095],[-93.25817691218737,44.98046291258782],[-93.25789963210954,44.98087969218365],[-93.25728563750887,44.98179359181258],[-93.25674428157052,44.98154673359805],[-93.25541737390687,44.98094120295156],[-93.25417072275513,44.9804756986245],[-93.25300432811531,44.98015022061684],[-93.2520144978017,44.97990800375359],[-93.25120123181429,44.97974904803472],[-93.25017796128739,44.97958725335631],[-93.24894468622098,44.97942261971835],[-93.24808326632645,44.97932232560014],[-93.24759370160376,44.97928637100171],[-93.24689680755864,44.97921162313587],[-93.24599258419109,44.97909808200266],[-93.24509103604058,44.97896372463141],[-93.2448010157333,44.97891365804671],[-93.24500691552785,44.9784599106368],[-93.24521438191448,44.97804098749425],[-93.24543316464948,44.97763540279549],[-93.24564440315224,44.97727517756528],[-93.24584809742275,44.9769603118036],[-93.24613477824792,44.97660008147744],[-93.24650444562772,44.97619448658681],[-93.24696841591056,44.97578622038301],[-93.24752668909639,44.9753752828661],[-93.24810382286284,44.97495900543775],[-93.2486998172099,44.97453738809801],[-93.24924677404738,44.97412644174663],[-93.2495925778704,44.97384845143168]]]],"type":"MultiPolygon"} +},{ + "id": 1108800095, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000123, + "geom:area_square_m":1075415.682051, + "geom:bbox":"-93.2812505602,44.9708726793,-93.2638179993,44.9845104312", + "geom:latitude":44.977923, + "geom:longitude":-93.273311, + "iso:country":"US", + "lbl:latitude":44.977945, + "lbl:longitude":-93.273442, + "lbl:max_zoom":18.0, + "mps:latitude":44.977945, + "mps:longitude":-93.273442, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_variant":[ + "West Downtown Cultural District" + ], + "reversegeo:latitude":44.977945, + "reversegeo:longitude":-93.273442, + "src:geom":"mz", + "wof:belongsto":[ + 85872619, + 102191575, + 1108799999, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0b6b05450f6717d3c07b0f77d13a3e93", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799999, + "microhood_id":1108800095, + "neighbourhood_id":85872619, + "region_id":85688727 + } + ], + "wof:id":1108800095, + "wof:lastmodified":1566623866, + "wof:name":"WeDo", + "wof:parent_id":85872619, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781101 + ], + "wof:tags":[] +}, + "bbox": [ + -93.2812505601883, + 44.97087267934671, + -93.26381799929051, + 44.98451043118974 +], + "geometry": {"coordinates":[[[[-93.26670250344097,44.98380274465904],[-93.26381799929051,44.98256852064104],[-93.26430892074686,44.98196300065437],[-93.26544493734005,44.98057401121671],[-93.26627260657224,44.9795867751255],[-93.26748976720782,44.97815180863665],[-93.26852553551306,44.97694655224493],[-93.27015129179763,44.9749545741599],[-93.2717336006239,44.9731061813512],[-93.27258561306878,44.97200400573366],[-93.2729183036425,44.97161364678972],[-93.27356563023804,44.97087267934671],[-93.27413685979671,44.97110778389839],[-93.27540565105986,44.97163649967584],[-93.27674597654854,44.97220116860179],[-93.27751967567191,44.9725241214805],[-93.27772674843,44.97260535831202],[-93.27791217267247,44.97267261169203],[-93.27807594839931,44.97272588162054],[-93.27823690040674,44.97277249277552],[-93.27839502869472,44.97281244515696],[-93.27852586102824,44.97284307530469],[-93.27862939740727,44.97286438321869],[-93.27871975642898,44.97288902048225],[-93.27879693809336,44.97291698709536],[-93.27886282488004,44.97295094653047],[-93.27891741678897,44.9729908987876],[-93.27898424481545,44.97306281272017],[-93.27906330895945,44.97316668832818],[-93.27928920651371,44.973448348778],[-93.27966193747825,44.97390779406965],[-93.27999325389118,44.97431197029469],[-93.2802831557525,44.97466087745315],[-93.28048740479116,44.97490191580822],[-93.28060600100714,44.97503508535989],[-93.28069071259,44.97513962331959],[-93.28074153953972,44.9752155296873],[-93.28078577781076,44.97529077011183],[-93.28082342740315,44.97536534459319],[-93.28087143063343,44.97546189171326],[-93.28092978750161,44.97558041147205],[-93.28104085379911,44.97584275110248],[-93.2812505601883,44.97636281744109],[-93.28121533280851,44.97640923667065],[-93.2811567365049,44.97649213841062],[-93.28109814020129,44.97659953359948],[-93.28103954389768,44.97673142223722],[-93.28099026973328,44.97686331057162],[-93.28095031770808,44.97699519860267],[-93.28092634649298,44.97711483966391],[-93.28091835608794,44.97722223375533],[-93.28091036568291,44.97735788906198],[-93.28090237527788,44.97752180558384],[-93.28088905793615,44.97767724326654],[-93.28087041365771,44.97782420211007],[-93.28084377897426,44.97795891409561],[-93.28080915388577,44.97808137922313],[-93.28076121145554,44.9782038440891],[-93.2806999516836,44.9783263086935],[-93.28061472069652,44.97846101941309],[-93.28050551849435,44.97860797624786],[-93.28034837386194,44.97877377316858],[-93.2801432867993,44.97895841017527],[-93.27992887759747,44.97911478606621],[-93.27970514625642,44.97924290084141],[-93.27908855333436,44.97955470690118],[-93.27807909883128,44.98005020424549],[-93.27723477936566,44.98049388799852],[-93.27655559493748,44.98088575816027],[-93.27603222340753,44.9812220489362],[-93.2756646647758,44.98150276032633],[-93.27494286485408,44.98207359437953],[-93.27386682364238,44.98293455109579],[-93.27328885101133,44.9834215464401],[-93.27320894696093,44.98353458041247],[-93.27310373996127,44.98368623382204],[-93.27297323001233,44.98387650666884],[-93.27286402781014,44.98403475304448],[-93.27277613335474,44.98416097294899],[-93.27267492155759,44.98429566997336],[-93.27256039241873,44.98443884411762],[-93.27250312784929,44.98451043118974],[-93.27201571314201,44.98417321527767],[-93.27104088372744,44.98349878345354],[-93.27036036756508,44.98302592538396],[-93.26997416465494,44.98275464106892],[-93.26971447649122,44.98257566850721],[-93.26958130307393,44.98248900769885],[-93.26944147098578,44.9823957529709],[-93.26929498022676,44.98229590432338],[-93.26916713374615,44.98221395298339],[-93.26905793154398,44.98214989895091],[-93.26900333044289,44.98211787193467],[-93.26864243048203,44.98238256365575],[-93.26792063056031,44.98291194709792],[-93.2673013741699,44.98336597046762],[-93.26678466131082,44.98374463376485],[-93.26670250344097,44.98380274465904]]]],"type":"MultiPolygon"} +},{ + "id": 1108800097, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00044, + "geom:area_square_m":3843703.469673, + "geom:bbox":"-93.2751411079,44.9986883187,-93.2473185581,45.0149716223", + "geom:latitude":45.00684, + "geom:longitude":-93.260875, + "iso:country":"US", + "lbl:latitude":45.006838, + "lbl:longitude":-93.260875, + "lbl:max_zoom":18.0, + "mps:latitude":45.006838, + "mps:longitude":-93.260875, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":45.006838, + "reversegeo:longitude":-93.260875, + "src:geom":"mz", + "wof:belongsto":[ + 85872675, + 102191575, + 1108800001, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"d20a565907a422118ec5b4beacf88e65", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108800001, + "microhood_id":1108800097, + "neighbourhood_id":85872675, + "region_id":85688727 + } + ], + "wof:id":1108800097, + "wof:lastmodified":1566623866, + "wof:name":"Northeast Minneapolis Arts District", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781099 + ], + "wof:tags":[] +}, + "bbox": [ + -93.27514110794537, + 44.99868831869124, + -93.24731855814142, + 45.01497162234666 +], + "geometry": {"coordinates":[[[[-93.24738449025959,45.00791568000337],[-93.24738449025959,45.00734975618143],[-93.24735424195465,45.00515229866146],[-93.24736180403087,45.0030670420464],[-93.24734667987842,45.00074643647951],[-93.24731855814142,44.99868831869124],[-93.24747505682257,44.99868882170848],[-93.24814077919427,44.99869827447026],[-93.24901771468794,44.99870489140308],[-93.25010586330353,44.99870867250692],[-93.25148142218003,44.99870961778291],[-93.25314439131739,44.99870772723106],[-93.25485815854739,44.99870772723106],[-93.25662272387,44.99870961778291],[-93.2575339187559,44.99870893232902],[-93.2591358926628,44.99870772723087],[-93.2623976649258,44.99870205557492],[-93.26521161189859,44.9987030008508],[-93.26757773358119,44.99871056305847],[-93.26918322066639,44.99871245361052],[-93.27002807315418,44.99870867250692],[-93.27066973327149,44.99871245360977],[-93.27110820101832,44.99872379691904],[-93.27227120998094,44.99878807554013],[-93.27511779413521,44.99894950337023],[-93.27511089083571,44.9991613571411],[-93.27509708423669,44.99958506468283],[-93.27505980641936,44.99998045743631],[-93.27499905738374,45.00034753540152],[-93.27490517251047,45.00070680099347],[-93.27477815179959,45.00105825421215],[-93.2746428471293,45.00146242219058],[-93.27449925849959,45.00191930492876],[-93.27438052174811,45.00235275468086],[-93.27428663687485,45.00276277144687],[-93.27420379728079,45.00315521349786],[-93.27413200296596,45.00353008083384],[-93.27407953788972,45.00388151694916],[-93.27404640205208,45.00420952184382],[-93.27401326621447,45.00459609603723],[-93.27398013037684,45.00504123952939],[-93.27398289169665,45.00564061345173],[-93.27400081581135,45.00599002428822],[-93.27402155017386,45.00639421780426],[-93.27407401525009,45.00722199815197],[-93.27414028692533,45.00812395449488],[-93.2742203651996,45.00934019645717],[-93.27431425007285,45.01087072403885],[-93.27441641890553,45.01199517917825],[-93.27461339709421,45.01308291648148],[-93.27463681146358,45.0132291310609],[-93.2746836402023,45.01352156021974],[-93.27475583450783,45.01382502277466],[-93.27485339438014,45.01413951872567],[-93.27495290544992,45.01444021948812],[-93.27505436771716,45.01472712506202],[-93.27514110794537,45.01497162234664],[-93.26313918206775,45.01497162234665],[-93.24734378635118,45.01497162234666],[-93.24733155572594,45.01354067949631],[-93.24735424195465,45.01138622856238],[-93.24738449025959,45.00944554953211],[-93.24738449025959,45.00791568000337]]]],"type":"MultiPolygon"} +},{ + "id": 1108800101, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":124585.096027, + "geom:bbox":"-93.2512608251,44.9716444117,-93.2456608573,44.9755422385", + "geom:latitude":44.973319, + "geom:longitude":-93.247925, + "iso:country":"US", + "lbl:latitude":44.973245, + "lbl:longitude":-93.247877, + "lbl:max_zoom":18.0, + "mps:latitude":44.973245, + "mps:longitude":-93.247877, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.973245, + "reversegeo:longitude":-93.247877, + "src:geom":"mz", + "wof:belongsto":[ + 85872621, + 102191575, + 1108800003, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7c054cdc9836a9f189b901794b1c3bbf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108800003, + "microhood_id":1108800101, + "neighbourhood_id":85872621, + "region_id":85688727 + } + ], + "wof:id":1108800101, + "wof:lastmodified":1566623870, + "wof:name":"Seven Corners", + "wof:parent_id":85872621, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781071 + ], + "wof:tags":[] +}, + "bbox": [ + -93.25126082505498, + 44.97164441166516, + -93.24566085727514, + 44.97554223849188 +], + "geometry": {"coordinates":[[[[-93.2473410451354,44.97551193293329],[-93.24566085727514,44.97554223849188],[-93.24568493422871,44.97548546423607],[-93.24573308813585,44.97537191572445],[-93.24576786595767,44.97527303375037],[-93.24578926769418,44.97518881831382],[-93.24581133823496,44.97510223714083],[-93.24583407758,44.97501329023139],[-93.24585146649092,44.97491677319703],[-93.2458635049677,44.97481268603775],[-93.24587019301036,44.97470008241852],[-93.2458715306189,44.97457896233934],[-93.24587219942316,44.97434760268494],[-93.24587219942318,44.97400600345535],[-93.24587420583597,44.97375713685706],[-93.24587821866157,44.97360100289009],[-93.24587888746584,44.97348224628003],[-93.24587621224879,44.97340086702687],[-93.24586350496773,44.97324094666676],[-93.24584076562269,44.97300248519969],[-93.24582471432031,44.97281985359294],[-93.24581535106059,44.9726930518465],[-93.24579996856247,44.97258375613639],[-93.24577856682595,44.97249196646262],[-93.24575515867663,44.97239307946638],[-93.24572974411453,44.97228709514768],[-93.24571168639935,44.97218442266105],[-93.24570098553107,44.97208506200651],[-93.24569872416988,44.97204695754928],[-93.24676757176084,44.97185113159003],[-93.24734081579255,44.97175494955444],[-93.24769592271487,44.97170757619325],[-93.24796478938461,44.97167671172295],[-93.24814741580181,44.9716623561435],[-93.24832699844536,44.97165158945758],[-93.24850353731532,44.97164441166516],[-93.2486861637325,44.97164441166516],[-93.24887487769692,44.97165158945758],[-93.24910417530961,44.9716680983727],[-93.24937405657057,44.97169393841052],[-93.24967944852375,44.97173341620952],[-93.25002035116917,44.9717865317697],[-93.25033893280803,44.97184610726185],[-93.25063519344036,44.97191214268597],[-93.25095681885284,44.97199612236956],[-93.25126082505498,44.9720854203137],[-93.25121204654619,44.97214638567921],[-93.2509027330243,44.97254667206852],[-93.25055947045733,44.97294161862292],[-93.25018225884529,44.97333122534238],[-93.24974469337531,44.97372616638362],[-93.24924677404738,44.97412644174663],[-93.2486998172099,44.97453738809801],[-93.24810382286284,44.97495900543775],[-93.24752668909639,44.9753752828661],[-93.2473410451354,44.97551193293329]]]],"type":"MultiPolygon"} +},{ + "id": 1108800109, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000178, + "geom:area_square_m":1561321.525569, + "geom:bbox":"-93.3142021388,44.9152484168,-93.296287022,44.9305207723", + "geom:latitude":44.92197, + "geom:longitude":-93.305004, + "iso:country":"US", + "lbl:latitude":44.922004, + "lbl:longitude":-93.304833, + "lbl:max_zoom":18.0, + "mps:latitude":44.922004, + "mps:longitude":-93.304833, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Lake Harriet" + ], + "reversegeo:latitude":44.922004, + "reversegeo:longitude":-93.304833, + "src:geom":"mz", + "wof:belongsto":[ + 1108800221, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5ae4572a10b8af5ccaac148496f34d8d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800109, + "neighbourhood_id":1108800221, + "region_id":85688727 + } + ], + "wof:id":1108800109, + "wof:lastmodified":1566623870, + "wof:name":"Lake Harriet", + "wof:parent_id":1108800221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.31420213877239, + 44.91524841683133, + -93.29628702199057, + 44.93052077229587 +], + "geometry": {"coordinates":[[[[-93.2980101961823,44.91957110954737],[-93.2980596741414,44.91947628947393],[-93.29819735586186,44.91921021583306],[-93.29830061715221,44.91901827682074],[-93.29836945801243,44.91890047243696],[-93.29851144228665,44.91870751608042],[-93.29872656997486,44.91843940775112],[-93.29891588234049,44.91820074984662],[-93.29907937938353,44.91799154236693],[-93.29924431061116,44.91779147435507],[-93.29941067602337,44.91760054581104],[-93.29954405519005,44.91746242708476],[-93.29964444811121,44.91737711817625],[-93.2997534461399,44.91728876238046],[-93.29987104927611,44.91719735969739],[-93.29999869170445,44.91710900363925],[-93.30013637342491,44.91702369420603],[-93.30035150111311,44.91689776086816],[-93.30064407476908,44.91673120362564],[-93.30108293525304,44.91650878769421],[-93.30166808256496,44.91623051307387],[-93.30212271907938,44.91601926757646],[-93.30244684479628,44.91587505120195],[-93.30271647149884,44.91576638097865],[-93.30293159918705,44.91569325690656],[-93.30311517481432,44.91564044504684],[-93.30326719838067,44.91560794539951],[-93.30340488010111,44.91558255504195],[-93.30352821997569,44.91556427397418],[-93.3036831119112,44.9155449772847],[-93.30386955590764,44.91552466497353],[-93.30402875039692,44.91550739950476],[-93.30416069537903,44.91549318087839],[-93.30429837709949,44.915473884163],[-93.30444179555828,44.91544950935857],[-93.30460529260131,44.91541904083365],[-93.30478886822858,44.91538247858824],[-93.30496097037916,44.91534794755916],[-93.30512159905302,44.91531544774641],[-93.3053051746803,44.91528802601873],[-93.30551169726098,44.91526568237614],[-93.30572252239543,44.91525247931366],[-93.30593765008364,44.91524841683133],[-93.30612265989549,44.91525044807221],[-93.30627755183102,44.91525857303631],[-93.30647403511958,44.91527076047902],[-93.30671210976119,44.91528701040033],[-93.30702189363222,44.91530935403108],[-93.30740338673264,44.91533779137126],[-93.30778487983306,44.91537029116793],[-93.308735744215,44.91546372799959],[-93.30875436693263,44.91546730296604],[-93.30909285617741,44.91553228208009],[-93.30935746323391,44.91557900037763],[-93.30964649117539,44.91562638805574],[-93.30964860270529,44.91562673425237],[-93.30973908347613,44.91564248300941],[-93.30986157911663,44.91566380415934],[-93.30999639246789,44.91569021009852],[-93.310152718588,44.91572626433297],[-93.31033055747692,44.91577196686269],[-93.31047899558178,44.91581868496536],[-93.31059803290259,44.915866418641],[-93.31073212916155,44.91593040198923],[-93.31088128435871,44.91601063501002],[-93.31106342580139,44.91610508636224],[-93.3112785534896,44.91621375604585],[-93.31151591103892,44.91632750351685],[-93.31177549844938,44.91644632877523],[-93.3119762842917,44.91653976391049],[-93.31211826856591,44.91660780892265],[-93.3122401742559,44.9166697602914],[-93.31234200136166,44.91672561801675],[-93.31242590116007,44.916774874338],[-93.31249187365114,44.91681752925514],[-93.31258007600331,44.91686983225191],[-93.31269050821658,44.91693178332831],[-93.31279950624527,44.91699779668988],[-93.31290707008938,44.91706787233661],[-93.31301104847202,44.91714556478612],[-93.31311144139318,44.9172308740384],[-93.31321111722205,44.91731516758217],[-93.31331007595861,44.91739844541746],[-93.3134076005106,44.91748629323656],[-93.31350369087799,44.91757871103948],[-93.31359045904557,44.91766503524035],[-93.31366790501333,44.91774526583917],[-93.31372957495061,44.91781280165854],[-93.31377546885744,44.91786764269844],[-93.31382566531802,44.91793111604461],[-93.31384708467965,44.9179594552185],[-93.31388016433237,44.91800322169703],[-93.31394685391572,44.91811848886583],[-93.31402573406805,44.91827691755102],[-93.3140924236514,44.91841960460929],[-93.31414692266574,44.91854655004066],[-93.31418206018814,44.91864252067821],[-93.31419783621863,44.91870751652195],[-93.31420213877239,44.91876895784359],[-93.31419496784945,44.91882684464312],[-93.31418707983421,44.91886746694207],[-93.31417847472669,44.91889082474043],[-93.31416771834228,44.91891976808188],[-93.314154810681,44.91895429696642],[-93.31413258081989,44.91899288804401],[-93.31410102875893,44.91903554131466],[-93.31406373995964,44.91908631896577],[-93.314020714422,44.91914522099734],[-93.31396549831535,44.91922138729361],[-93.31389809163971,44.91931481785458],[-93.31382279694884,44.91942094256581],[-93.31373961424275,44.91953976142726],[-93.31368152976694,44.91962760605413],[-93.3136485435214,44.91968447644639],[-93.31361842564505,44.91974287009185],[-93.31359117613788,44.91980278699049],[-93.31355603861547,44.91989977089676],[-93.31351301307782,44.92003382181066],[-93.31346138243266,44.92018208982643],[-93.31340114667995,44.92034457494405],[-93.31334521348101,44.92049385779231],[-93.31329358283585,44.92062993837119],[-93.31325342566738,44.92073199868448],[-93.3132247419756,44.9208000387322],[-93.31319534119154,44.92086553990038],[-93.31316522331522,44.92092850218901],[-93.31309925082418,44.92102548420281],[-93.31299742371843,44.92115648594178],[-93.31280094042987,44.92142153413061],[-93.31250980095848,44.92182062876932],[-93.31228463397815,44.92212324906346],[-93.31212543948888,44.92232939501304],[-93.31202361238313,44.9224578553065],[-93.31197915266088,44.92250862994387],[-93.31193541003094,44.9225507728683],[-93.31189238449332,44.9225842840798],[-93.31180346504885,44.9226411515108],[-93.31166865169759,44.92272137516133],[-93.31156395622266,44.92279296707479],[-93.31148937862407,44.92285592725119],[-93.31141551811778,44.92293259637766],[-93.3113423747038,44.92302297445417],[-93.31126851419751,44.92311690656532],[-93.31119393659894,44.92321439271109],[-93.3111265299233,44.92331898701829],[-93.3110662941706,44.92343068948691],[-93.31101681480231,44.92352360551138],[-93.31097809181844,44.92359773509168],[-93.31094510557293,44.92366475628616],[-93.31091785606574,44.92372466909483],[-93.31089634329693,44.92379778292098],[-93.31088056726645,44.92388409776461],[-93.3108504493901,44.9240501261948],[-93.31080598966787,44.92429586821153],[-93.31076798377629,44.92449083659494],[-93.31073643171533,44.92463503134501],[-93.31071276766963,44.92473403821094],[-93.31069699163916,44.9247878571927],[-93.31067906433182,44.92483710659997],[-93.31065898574758,44.92488178643276],[-93.31063603879417,44.92492697395497],[-93.3106102234716,44.92497266916662],[-93.31058225687212,44.92501887206527],[-93.31055213899577,44.92506558265092],[-93.31052704076548,44.92510366191318],[-93.31050696218125,44.92513310985205],[-93.31047325884343,44.92517525082779],[-93.31042593075202,44.92523008484041],[-93.31037358301455,44.92529761181721],[-93.31031621563102,44.92537783175818],[-93.31025096023225,44.92547582174178],[-93.31017781681828,44.92559158176801],[-93.31010682468117,44.92569211006257],[-93.31003798382095,44.92577740662546],[-93.30997487969907,44.92586321077707],[-93.30991751231556,44.92594952251739],[-93.30984221762469,44.92607086633962],[-93.30974899562646,44.92622724224378],[-93.30967728639706,44.92634147774467],[-93.30962708993647,44.92641357284231],[-93.30958549858342,44.92648211387872],[-93.3095525123379,44.9265471008539],[-93.30950733552338,44.9266603200315],[-93.30944996813984,44.92682177141152],[-93.30940694260219,44.92694463674687],[-93.30937825891044,44.92702891603754],[-93.30935172649556,44.92711217979584],[-93.30932734535757,44.92719442802179],[-93.30930870095793,44.92728479937435],[-93.30929579329664,44.92738329385353],[-93.30928001726616,44.92745640309693],[-93.30926137286653,44.92750412710453],[-93.30924057719,44.92754982026857],[-93.30921763023659,44.92759348258903],[-93.309191814914,44.92763866797696],[-93.30916313122223,44.92768537643235],[-93.30914161845341,44.92773919263908],[-93.30912727660753,44.92780011659717],[-93.30911508603853,44.92785393271637],[-93.30910504674641,44.92790064099673],[-93.30909500745429,44.92796004166999],[-93.30908496816218,44.9280321347362],[-93.30905126482435,44.92825856638675],[-93.30899389744083,44.92863933662167],[-93.30895230608778,44.9290109660256],[-93.30892649076517,44.92937345459856],[-93.30889852416571,44.9296983727023],[-93.30886840628936,44.92998572033682],[-93.30884832770514,44.9301512243256],[-93.308838288413,44.93019488466863],[-93.30882179529024,44.93023956033293],[-93.30879884833683,44.9302852513185],[-93.30877088173737,44.93032688085591],[-93.30873789549184,44.93036444894514],[-93.30870275796944,44.93039795560215],[-93.30866546917015,44.93042740082693],[-93.30861455561727,44.93045126160493],[-93.30855001731081,44.93046953793615],[-93.3084783080814,44.93048222983126],[-93.30839942792906,44.93048933729027],[-93.30825529237796,44.93050152150204],[-93.30802176301769,44.93052077229587],[-93.30801027865849,44.93046060649802],[-93.30799395411358,44.93039030017029],[-93.3079749088112,44.93032095685691],[-93.30794634085761,44.93025065035471],[-93.30790825025284,44.9301793806637],[-93.30783342942203,44.93003973008765],[-93.3077218783652,44.92983169862659],[-93.30764841791314,44.92969301081843],[-93.30761304806585,44.92962366666319],[-93.30756135367365,44.92956973228405],[-93.30749333473656,44.92953120768101],[-93.30741715352701,44.92950809291609],[-93.30733281004501,44.92950038798928],[-93.30724030429056,44.92949075682883],[-93.30713963626366,44.92947919943474],[-93.30705529278165,44.92945993710221],[-93.30698727384457,44.92943296983125],[-93.3069233360437,44.92940118695594],[-93.30686347937905,44.92936458847626],[-93.30682402839554,44.92931739565237],[-93.30680498309314,44.92925960848424],[-93.30679954157819,44.92916137006123],[-93.30680770385061,44.92902268038333],[-93.30681450574431,44.92886665402475],[-93.30681994725929,44.92869329098551],[-93.30683345991885,44.92861543254271],[-93.30679457537505,44.92860278373327],[-93.30673433962235,44.92858602988559],[-93.30666693294671,44.92856978372537],[-93.30660096045565,44.92855962987451],[-93.30653642214919,44.92855556833302],[-93.30647116675044,44.92855506064036],[-93.3064051942594,44.92855810679652],[-93.30624026303178,44.928567752955],[-93.30597637306758,44.92858399911579],[-93.30562284656662,44.92860278373224],[-93.30517968352891,44.92862410680433],[-93.30480105879765,44.92863578372435],[-93.30448697237287,44.9286378144923],[-93.30423240460848,44.92863426064783],[-93.30403735550451,44.92862512219095],[-93.30381577398565,44.92860786065366],[-93.30356766005191,44.92858247603595],[-93.30334464434847,44.92855404524854],[-93.30314672687531,44.92852256829141],[-93.30286634378835,44.92847230663817],[-93.30250349508756,44.92840326028882],[-93.30211267978731,44.92832558302907],[-93.3016938978876,44.92823927485894],[-93.30138769947804,44.92817022826058],[-93.30119408455865,44.92811844323401],[-93.3009954499932,44.92805955039102],[-93.30079179578171,44.92799354973161],[-93.30058312192415,44.92792653359807],[-93.30036942842051,44.9278585019904],[-93.30018155023947,44.92779910120581],[-93.30001948738104,44.92774833124433],[-93.29986602963011,44.92769553043399],[-93.29972117698671,44.92764069877478],[-93.29956843632809,44.92757672842429],[-93.29940780765421,44.92750361938251],[-93.29922208075006,44.92741680224347],[-93.29901125561562,44.92731627700715],[-93.29881477232706,44.92721067453522],[-93.29863263088437,44.92709999482769],[-93.29847917313344,44.92700505384673],[-93.2983543990743,44.92692585159236],[-93.29823034210742,44.9268527417338],[-93.29810700223285,44.92678572427104],[-93.29794278809752,44.92670144458557],[-93.2977376997014,44.92659990267737],[-93.2975706171969,44.92650902254262],[-93.29744154058396,44.92642880418133],[-93.29732106907856,44.92634401628781],[-93.29720920268069,44.92625465886206],[-93.29711956614393,44.92617342473527],[-93.29705215946831,44.92610031390743],[-93.2969811673312,44.92600841748148],[-93.29690658973261,44.92589773545744],[-93.29685065653368,44.92580939282297],[-93.29681336773439,44.92574338957809],[-93.29678038148886,44.92566672415403],[-93.29675169779708,44.92557939655079],[-93.29671727736697,44.92546820591084],[-93.29667712019851,44.92533315223417],[-93.29664413395298,44.92520723727215],[-93.29661831863041,44.92509046102476],[-93.29658891784635,44.92496708410162],[-93.29655593160082,44.92483710650275],[-93.29650788641712,44.92469494312201],[-93.29644478229525,44.9245405939594],[-93.29639315165008,44.92439842993534],[-93.29635299448162,44.92426845104984],[-93.29632144242069,44.92414558013704],[-93.29629849546727,44.92402981719693],[-93.29628702199057,44.92391506949404],[-93.29628702199057,44.92380133702838],[-93.29630279802103,44.92366526388173],[-93.29633435008196,44.92350685005412],[-93.29636159958913,44.9233738228086],[-93.29638454654254,44.92326618214518],[-93.29641609860347,44.9231636186975],[-93.29645625577194,44.92306613246557],[-93.29650645223252,44.92293005751979],[-93.29656668798523,44.92275539386018],[-93.29665273906052,44.92249847428594],[-93.29676460545838,44.92215929879708],[-93.29685065653366,44.92189628461348],[-93.29691089228636,44.92170943173515],[-93.296978298962,44.92152156273439],[-93.29705287656057,44.92133267761122],[-93.29713749345127,44.92114988499435],[-93.29723214963408,44.92097318488378],[-93.29736983135454,44.92073250587077],[-93.29755053861264,44.9204278479553],[-93.29772837750156,44.92010897082176],[-93.29790334802129,44.91977587447015],[-93.2980101961823,44.91957110954737]]]],"type":"MultiPolygon"} +},{ + "id": 1108800111, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000221, + "geom:area_square_m":1936699.889483, + "geom:bbox":"-93.3205327876,44.9335905956,-93.3035636733,44.9504874622", + "geom:latitude":44.941791, + "geom:longitude":-93.311904, + "iso:country":"US", + "lbl:latitude":44.942221, + "lbl:longitude":-93.311742, + "lbl:max_zoom":18.0, + "mps:latitude":44.942221, + "mps:longitude":-93.311742, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":44.942221, + "reversegeo:longitude":-93.311742, + "src:geom":"mz", + "wof:belongsto":[ + 1108800221, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0984de0ce18f73cf350cdea80be462ce", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800111, + "neighbourhood_id":1108800221, + "region_id":85688727 + } + ], + "wof:id":1108800111, + "wof:lastmodified":1566623869, + "wof:name":"Lake Calhoun", + "wof:parent_id":1108800221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.32053278757105, + 44.93359059560046, + -93.30356367329182, + 44.95048746218973 +], + "geometry": {"coordinates":[[[[-93.30399788385921,44.93769855121819],[-93.30401070280035,44.93762142039545],[-93.3040278687335,44.93755560051562],[-93.30404718040826,44.93749332471946],[-93.30406863782466,44.937434593007],[-93.30411012216305,44.93733788797774],[-93.30417163342344,44.9372032096317],[-93.30422813795332,44.93708523929349],[-93.30427963575271,44.93698397696311],[-93.30434615374358,44.93687157553455],[-93.30442769192592,44.93674803500782],[-93.30450779961386,44.93663512686632],[-93.30458647680736,44.93653285111002],[-93.3046830351812,44.93641842352649],[-93.30479747473538,44.93629184411571],[-93.30490762280628,44.93618349197003],[-93.30501347939391,44.93609336708944],[-93.3051336409258,44.93599868516925],[-93.30526810740197,44.93589944620943],[-93.30541902456406,44.93579058692178],[-93.30558639241204,44.93567210730627],[-93.30581527152042,44.93552375416488],[-93.30610566188918,44.9353455274976],[-93.30644254332681,44.93515008503074],[-93.30682591583333,44.93493742676431],[-93.3071120147188,44.93477489477112],[-93.30730083998321,44.93466248905116],[-93.30747178406727,44.93456932383],[-93.30762484697101,44.93449539910765],[-93.30778363185243,44.93442957565856],[-93.30794813871158,44.93437185348275],[-93.30810191686251,44.93431818193957],[-93.30824496630524,44.93426856102901],[-93.30843879830014,44.93420982600428],[-93.30868341284722,44.93414197686535],[-93.30890299374181,44.93408222906241],[-93.30909754098394,44.93403058259545],[-93.30927134605686,44.93398298679571],[-93.30942440896058,44.93393944166316],[-93.30955672969512,44.93389488381775],[-93.30966830826044,44.93384931325949],[-93.30979705275891,44.93379310950554],[-93.30994296319049,44.93372627255593],[-93.31008458213881,44.93366044821308],[-93.31024266017403,44.93359059560046],[-93.31026450814008,44.93368079511242],[-93.31028472029388,44.93373838754646],[-93.3103109960938,44.93379061416852],[-93.31033525067836,44.93383246698654],[-93.31035748404753,44.93386394600052],[-93.31038375984747,44.93389470956627],[-93.31041407807815,44.93392475768379],[-93.31045197586653,44.93394872462721],[-93.31049745321255,44.93396661039651],[-93.31055051011626,44.93398056129413],[-93.31061114657766,44.93399057732009],[-93.31067329895056,44.9339977316238],[-93.31073696723502,44.93400202420527],[-93.31080265673484,44.93400488592619],[-93.31087036745005,44.93400631678654],[-93.31095626910367,44.934008820792],[-93.31106036169571,44.93401239794256],[-93.31116698080697,44.93401704823783],[-93.31127612643743,44.9340227716778],[-93.31141053726017,44.93403493398382],[-93.31157021327513,44.93405353515586],[-93.31171371956708,44.93407320946534],[-93.31184105613596,44.93409395691224],[-93.31195171767799,44.93411613520843],[-93.31204570419314,44.93413974435393],[-93.31216394529282,44.93417515804305],[-93.31230644097707,44.93422237627578],[-93.31244034649595,44.93426852133066],[-93.31256566184946,44.93431359320765],[-93.31267379687226,44.93435401478644],[-93.31276475156433,44.93438978606704],[-93.31284964261026,44.93442770359802],[-93.31292847001006,44.93446776737939],[-93.31302447774058,44.93452035103281],[-93.31313766580183,44.93458545455829],[-93.31325085386308,44.93465341969338],[-93.3133640419243,44.93472424643806],[-93.31347520877017,44.93479185370946],[-93.31358435440066,44.93485624150758],[-93.31369400533499,44.93492027152472],[-93.31380416157316,44.93498394376086],[-93.31389360035369,44.93502937280672],[-93.3139623216766,44.93505655866228],[-93.31403609603794,44.9350844599212],[-93.31411492343774,44.93511307658346],[-93.31419425614138,44.93513668532218],[-93.31427409414887,44.93515528613736],[-93.31437768143707,44.93517460236176],[-93.31450501800596,44.93519463399539],[-93.31460860529415,44.93520715376531],[-93.31468844330163,44.93521216167154],[-93.31478546163984,44.93521573874729],[-93.31489966030878,44.93521788499254],[-93.3150158801931,44.9352182427001],[-93.3151341212928,44.93521681186994],[-93.31522760250409,44.93521287708658],[-93.31529632382698,44.93520643835001],[-93.31549743475723,44.9351853335892],[-93.31583093529483,44.93514956280415],[-93.31618161616315,44.9351134342883],[-93.31654947736219,44.93507694804164],[-93.31686983999981,44.93505047761982],[-93.31714270407603,44.93503402302282],[-93.31736251124855,44.93502329176298],[-93.31752926151734,44.93501828384028],[-93.31774502625909,44.93501971467514],[-93.31800980547378,44.93502758426756],[-93.31825942557313,44.93503366531579],[-93.31849388655712,44.93503795781983],[-93.31869600809506,44.93504797365986],[-93.31886579018693,44.93506371283587],[-93.3190785231056,44.93508410221408],[-93.31933420685108,44.93510914179449],[-93.31950045181603,44.93512702720573],[-93.31957725800045,44.93513775844779],[-93.31965558009639,44.93515313988939],[-93.3197354181039,44.93517317153051],[-93.31982081445368,44.93519999960559],[-93.31991176914573,44.93523362411463],[-93.3199926177609,44.93526760631089],[-93.3200633602992,44.93530194619438],[-93.32013208162209,44.93534022082805],[-93.32019878172962,44.9353824302119],[-93.32025790227945,44.93542571268225],[-93.32030944327163,44.93547006823908],[-93.32035289940228,44.93551478146694],[-93.32038827067142,44.9355598523658],[-93.32042061011748,44.93560313470565],[-93.32044991774049,44.93564462848649],[-93.32047215110966,44.93568862616677],[-93.320487310225,44.93573512774645],[-93.3205029746442,44.93578520632395],[-93.32051914436724,44.93583886189924],[-93.32052874514029,44.93589287512722],[-93.32053177696336,44.9359472460079],[-93.32053278757105,44.93601342100307],[-93.32053177696336,44.93609140011274],[-93.32052722922876,44.93618118324073],[-93.32051914436722,44.93628277038703],[-93.32050954359417,44.93637505716826],[-93.32049842690959,44.93645804358441],[-93.32048074127502,44.93655354932334],[-93.32045648669049,44.93666157438503],[-93.32042717906748,44.9367663799714],[-93.32039281840603,44.93686796608243],[-93.32036148956765,44.93695703265965],[-93.32033319255234,44.93703357970303],[-93.32030590614471,44.93710333043713],[-93.32027963034479,44.93716628486192],[-93.32025082802562,44.93722745074549],[-93.32021949918725,44.93728682808784],[-93.32018513852579,44.93735192846722],[-93.32014774604127,44.93742275188364],[-93.32010782703753,44.93749429059809],[-93.32006538151455,44.93756654461056],[-93.32002546251081,44.93763665238127],[-93.31998807002631,44.93770461391023],[-93.31995648903727,44.93775799992376],[-93.3199542146687,44.9377618446251],[-93.31992389643801,44.93780834452589],[-93.31989408351117,44.93785377131697],[-93.31986477588816,44.93789812499833],[-93.31983445765749,44.9379431940257],[-93.3198031288191,44.93798897839909],[-93.31976775754997,44.93804477804021],[-93.31972834385007,44.93811059294903],[-93.31969701501168,44.9381653194349],[-93.31967377103483,44.93820895749779],[-93.31965153766565,44.93826082235434],[-93.31963031490415,44.93832091400451],[-93.31961465048495,44.93837277878222],[-93.31960454440807,44.93841641668745],[-93.3195959542427,44.93846506217569],[-93.31958887998888,44.93851871524694],[-93.31958382695043,44.93857308364032],[-93.31958079512738,44.93862816735583],[-93.31958180573507,44.9386825356476],[-93.31958685877352,44.93873618851565],[-93.31959090120428,44.93878125689616],[-93.31959393302733,44.93881774078916],[-93.31960403910423,44.93885815918841],[-93.31962121943496,44.93890251209393],[-93.31964143158876,44.93895151485503],[-93.3196646755656,44.93900516747175],[-93.31968842484632,44.93905953540452],[-93.31971267943088,44.93911461865335],[-93.31974400826925,44.93917113257889],[-93.31978241136147,44.93922907718112],[-93.31984001599977,44.93930884028877],[-93.31991682218418,44.93941042190183],[-93.31997745864555,44.93949447701242],[-93.32002192538391,44.93956100562056],[-93.32006133908381,44.93962574575426],[-93.32009569974525,44.93968869741354],[-93.32012601797595,44.9397444954279],[-93.32015229377588,44.93979313979734],[-93.32017806427197,44.93984786465501],[-93.32020332946422,44.9399086700009],[-93.32022909996032,44.93998056327655],[-93.32025537576024,44.94006354448196],[-93.32027861973711,44.94014938697562],[-93.3202988318909,44.94023809075754],[-93.32031500161393,44.94031928322792],[-93.3203271289062,44.94039296438677],[-93.3203372349831,44.94046056498921],[-93.32034531984462,44.94052208503521],[-93.32035087818691,44.94059433521739],[-93.32035391000998,44.94067731553573],[-93.32035643652921,44.94077031055323],[-93.32035845774458,44.94087332026989],[-93.32035694183304,44.94099242497431],[-93.32035188879459,44.94112762466648],[-93.32034683575614,44.94125924735367],[-93.32034178271772,44.94138729303587],[-93.32033420316004,44.94149924340352],[-93.32032409708314,44.9415950984566],[-93.3203134857024,44.94169596067722],[-93.3203023690178,44.94180183006536],[-93.32028720990246,44.941941677381],[-93.32026800835635,44.94211550262416],[-93.32024577498719,44.94228396241212],[-93.32022050979492,44.94244705674488],[-93.32019069686808,44.94262338402682],[-93.32015633620664,44.94281294425794],[-93.32012904979902,44.94295851195146],[-93.32010883764522,44.94306008710737],[-93.32008559366835,44.94317167647891],[-93.32005931786843,44.94329328006607],[-93.32003809510694,44.94339163577995],[-93.32002192538391,44.94346674362055],[-93.32000474505318,44.94354328198273],[-93.31998655411478,44.94362125086651],[-93.31996482604944,44.94370601506826],[-93.31993956085721,44.943797574588],[-93.31991025323421,44.94389235283532],[-93.31987690318044,44.94399034981021],[-93.3198470902536,44.94407690176969],[-93.31982081445368,44.94415200871376],[-93.31979403334989,44.94422461200436],[-93.31976674694226,44.94429471164151],[-93.31973642871156,44.94436731474214],[-93.31970307865782,44.94444242130627],[-93.31966821269253,44.9445168124743],[-93.31963183081571,44.94459048824625],[-93.31959039590043,44.94467203217751],[-93.31954390794671,44.9447614442681],[-93.31950247303143,44.94483833857976],[-93.3194660911546,44.94490271511252],[-93.31942718275855,44.94497174097294],[-93.31938574784328,44.94504541616102],[-93.31933673337033,44.94512552886612],[-93.3192801393397,44.94521207908823],[-93.3192326407783,44.9452839657713],[-93.31919423768609,44.94534118891533],[-93.31914774973237,44.94540484958532],[-93.31909317691714,44.94547494778128],[-93.31903860410188,44.94554468824909],[-93.31898403128665,44.94561407098875],[-93.31893350090215,44.94567737373451],[-93.31888701294844,44.94573459648638],[-93.31883345074088,44.94580040256575],[-93.3187728142795,44.94587479197261],[-93.31871773616041,44.94594274376185],[-93.31866821638363,44.94600425793344],[-93.31861111704916,44.94606899079319],[-93.31854643815701,44.94613694234111],[-93.31848681230333,44.94620203270065],[-93.31843223948809,44.94626426187182],[-93.31836200225365,44.94633507427902],[-93.31827610060003,44.94641446992222],[-93.31819575728869,44.94648850090638],[-93.31812097231966,44.9465571672315],[-93.3180492191737,44.94662404529523],[-93.3179804978508,44.94668913509758],[-93.31790116514716,44.94676137752554],[-93.3178112210628,44.94684077257911],[-93.31769449587463,44.94694055264026],[-93.3175509895827,44.94706071770899],[-93.31742769544455,44.94716550434677],[-93.3173246134602,44.94725491255362],[-93.31723062694506,44.94734539351464],[-93.31714573589913,44.94743694722983],[-93.31705831833398,44.94753636865658],[-93.3169683742496,44.9476436577949],[-93.31688752563443,44.94774522467625],[-93.31681577248847,44.94784106930063],[-93.31674452464634,44.94793977478392],[-93.31667378210807,44.94804134112613],[-93.3166156721659,44.94813468188671],[-93.31657019481986,44.94821979706568],[-93.31653684476609,44.9482834545897],[-93.31651562200462,44.94832565445877],[-93.31649894697773,44.94837500679945],[-93.31649090188772,44.9484124913665],[-93.31648681968545,44.94843151161173],[-93.31647974543162,44.94848944686566],[-93.31647772421624,44.94854881256126],[-93.31647570300086,44.94861211205409],[-93.3164736817855,44.94867934534418],[-93.3164736817855,44.94874264470609],[-93.31647570300086,44.9488020101398],[-93.31647671360855,44.94883169285666],[-93.31594513396379,44.94900692692184],[-93.31488197467425,44.94935739505219],[-93.31396535349973,44.94965851022706],[-93.31319527044018,44.94991027244644],[-93.31262831952627,44.95009623278737],[-93.31226450075799,44.95021639124982],[-93.3119310002204,44.95031509271114],[-93.31162781791349,44.95039233717134],[-93.31138931449873,44.95044454867988],[-93.31121548997609,44.9504717272368],[-93.31100730479201,44.95048603174008],[-93.3107647589465,44.95048746218973],[-93.31057375409316,44.95048317084003],[-93.31043429023197,44.95047315769098],[-93.31028370968622,44.95045384660818],[-93.31012201245585,44.95042523759162],[-93.30996233644089,44.95039519810778],[-93.3098046816413,44.95036372815663],[-93.30963489954944,44.95031866886236],[-93.3094529901653,44.95026002022495],[-93.30926198531195,44.95019064308144],[-93.3090618849894,44.95011053743182],[-93.3088173179285,44.95001183562611],[-93.30852828412925,44.94989453766431],[-93.30816092823406,44.94974326571924],[-93.30771525024292,44.94955801979091],[-93.30742217401291,44.94943642967661],[-93.30728169954405,44.94937849537635],[-93.30715335236746,44.9493244948395],[-93.30703713248315,44.94927442806605],[-93.30684461171828,44.94918395004772],[-93.30657579007281,44.94905306078448],[-93.30633880256958,44.9489339727896],[-93.30613364920859,44.94882668606307],[-93.3059421390514,44.94872655162277],[-93.305764272098,44.94863356946868],[-93.30561571276763,44.94855846842321],[-93.30547625561813,44.94849155341239],[-93.30548751433383,44.94843657237767],[-93.30551105896447,44.9483828786982],[-93.30554061659042,44.94832880391765],[-93.30556779598453,44.948292862848],[-93.30560355834521,44.94825439069471],[-93.30565434089738,44.94820832531022],[-93.30572014364104,44.94815466669451],[-93.30578809212635,44.94810455153163],[-93.30585818635328,44.94805797982158],[-93.30591326038873,44.94800887699616],[-93.3059533142327,44.94795724305537],[-93.30598406986289,44.94791168366451],[-93.30600552727928,44.94787219882358],[-93.30601840172912,44.94783170152154],[-93.30602269321241,44.9477901917584],[-93.30602126271798,44.94774260735129],[-93.30601411024584,44.94768894830022],[-93.30600552727927,44.94763933894947],[-93.30599551381829,44.94759377929906],[-93.30598049362679,44.94754366363587],[-93.3059604667048,44.9474889919599],[-93.30592184335526,44.9473958474095],[-93.3058646235782,44.94726422998464],[-93.30571370641611,44.946982769069],[-93.30546909186904,44.94655146466255],[-93.30524808048001,44.9461631871163],[-93.30505067224904,44.94581793643026],[-93.30484754204036,44.94546509003855],[-93.30463868985396,44.94510464794117],[-93.30444128162299,44.9447609097693],[-93.30425531734743,44.94443387552295],[-93.3040922409827,44.94414430213218],[-93.30395205252883,44.94389218959701],[-93.3038304605025,44.94367348886064],[-93.30372746490374,44.94348819992305],[-93.30365880117122,44.9433621425483],[-93.30362446930498,44.94329531673634],[-93.30360086614692,44.94323405968264],[-93.30358799169709,44.94317837138718],[-93.30358083922495,44.9431186329675],[-93.30357940873051,44.94305484442357],[-93.30357726298888,44.94298093060576],[-93.30357440200002,44.94289689151405],[-93.30357011051674,44.94281082725193],[-93.30356438853904,44.94272273781939],[-93.30356367329182,44.94263110440721],[-93.3035679647751,44.94253592701536],[-93.30357440200001,44.94242151137368],[-93.30358298496658,44.9422878574822],[-93.30359371367479,44.94211268922086],[-93.30360658812462,44.9418960065897],[-93.30361731683284,44.94170008034176],[-93.30362589979941,44.94152491047707],[-93.30363090652992,44.94139024209431],[-93.30363233702435,44.94129607519349],[-93.30363305227156,44.94120494579482],[-93.30363305227156,44.94111685389829],[-93.30363734375484,44.94100597935662],[-93.3036459267214,44.94087232216978],[-93.30365450968796,44.94075486564694],[-93.30366309265455,44.94065360978807],[-93.30367882809324,44.94054324067223],[-93.30370171600407,44.94042375829942],[-93.30372603440932,44.94031338879428],[-93.30375178330902,44.94021213215684],[-93.30377395597264,44.94010226847852],[-93.3037925524002,44.93998379775933],[-93.30381114882775,44.93984558154001],[-93.30382974525531,44.93968761982057],[-93.30385406366057,44.93940966602244],[-93.30388410404355,44.93901172014563],[-93.30391271393209,44.93865933870762],[-93.30393989332622,44.93835252170844],[-93.30396135074263,44.93810747236584],[-93.30397708618133,44.93792419067982],[-93.30398924538396,44.93778799496145],[-93.30399782835052,44.93769888521074],[-93.30399788385921,44.93769855121819]]]],"type":"MultiPolygon"} +},{ + "id": 1108800119, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000114, + "geom:area_square_m":993969.095016, + "geom:bbox":"-93.3103297244,44.929525607,-93.2935514701,44.9376985512", + "geom:latitude":44.933377, + "geom:longitude":-93.300699, + "iso:country":"US", + "lbl:latitude":44.933602, + "lbl:longitude":-93.300696, + "lbl:max_zoom":18.0, + "mps:latitude":44.933602, + "mps:longitude":-93.300696, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Lakewood Cemetery" + ], + "reversegeo:latitude":44.933602, + "reversegeo:longitude":-93.300696, + "src:geom":"mz", + "wof:belongsto":[ + 85872581, + 102191575, + 1108799985, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ec3137bad76006f451750287b94a3ff9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799985, + "microhood_id":1108800119, + "neighbourhood_id":85872581, + "region_id":85688727 + } + ], + "wof:id":1108800119, + "wof:lastmodified":1566623869, + "wof:name":"Lakewood Cemetery", + "wof:parent_id":85872581, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.3103297244135, + 44.92952560699859, + -93.29355147006413, + 44.93769855121819 +], + "geometry": {"coordinates":[[[[-93.29357248492228,44.93768082184764],[-93.29357767723633,44.93707803405509],[-93.29358170910898,44.93632882407395],[-93.2935857409816,44.93529847356786],[-93.2935756613,44.93426953172946],[-93.29355147006413,44.93324199855872],[-93.29355147006414,44.93192757572967],[-93.29357566130001,44.93032626324228],[-93.29358775691794,44.92952560699859],[-93.29440219519165,44.92952560699859],[-93.29603107173907,44.92952560699859],[-93.29713782077933,44.92952560699859],[-93.29772244231245,44.92952560699859],[-93.298234490138,44.92952846146735],[-93.298673964256,44.92953417040487],[-93.29935736666884,44.92953559763932],[-93.30028469737654,44.92953274317071],[-93.30109107190498,44.9295355976389],[-93.30177649025413,44.92954416104391],[-93.302347000233,44.92955700614758],[-93.30280260184156,44.92957413294992],[-93.3032561875138,44.92958983251484],[-93.30370775724973,44.92960410484233],[-93.30433269750925,44.92961694993452],[-93.30513100829239,44.9296283677914],[-93.30612486489869,44.92964692180054],[-93.30764161964689,44.92967968251575],[-93.30764841791314,44.92969301081843],[-93.3077218783652,44.92983169862659],[-93.30783342942203,44.93003973008765],[-93.30790825025284,44.9301793806637],[-93.30794634085761,44.93025065035471],[-93.3079749088112,44.93032095685691],[-93.30799395411358,44.93039030017029],[-93.30801027865849,44.93046060649802],[-93.30802176301769,44.93052077229587],[-93.30802388244591,44.93053187584007],[-93.30803340509709,44.93060507128482],[-93.30803884661208,44.93068019283227],[-93.30805245039949,44.93075916665288],[-93.30807421645937,44.93084199274664],[-93.30809870327673,44.93091518781827],[-93.30812591085154,44.93097875186775],[-93.30817216372877,44.93104905746453],[-93.30823746190839,44.93112610460861],[-93.30831636387542,44.93118774227426],[-93.30840886962987,44.93123397046149],[-93.30851769992923,44.93127345701556],[-93.3086428547735,44.93130620193648],[-93.30876392848153,44.93133509450116],[-93.30888092105333,44.93136013470962],[-93.30897206642904,44.93138324873966],[-93.30903736460866,44.93140443659131],[-93.30910674392449,44.93142851368413],[-93.30918020437656,44.93145548001816],[-93.30923597990497,44.93148437250339],[-93.30927407050974,44.93151519113983],[-93.30930263846332,44.93154600975974],[-93.3093216837657,44.93157682836311],[-93.30933528755313,44.93160668387011],[-93.30934344982559,44.93163557628073],[-93.30934753096182,44.93166543175568],[-93.30934753096182,44.93169625029497],[-93.30935433285552,44.93174729343733],[-93.30936793664296,44.93181856118275],[-93.30938970270282,44.93189271806162],[-93.30941963103514,44.93196976407391],[-93.30946588391237,44.93204873612528],[-93.30952846133448,44.93212963421573],[-93.30961416519523,44.93221919980552],[-93.3097229954946,44.93231743289466],[-93.30984815033885,44.93242529645814],[-93.30998962972801,44.93254279049597],[-93.31009573926988,44.93263524471229],[-93.31016647896446,44.9327026591071],[-93.31021817335666,44.93276429506527],[-93.31025082244645,44.93282015258679],[-93.31028075077879,44.93287697311186],[-93.31030795835363,44.93293475664047],[-93.31032428289855,44.93299735538966],[-93.31032972441351,44.93306476935942],[-93.31032020176231,44.93313122019669],[-93.31029571494497,44.93319670790147],[-93.3102739488851,44.93327471519155],[-93.3102549035827,44.93336524206694],[-93.31024402055277,44.93344613832329],[-93.31024129979528,44.93351740396059],[-93.31024266017403,44.93359059560046],[-93.31008458213881,44.93366044821308],[-93.30994296319049,44.93372627255593],[-93.30979705275891,44.93379310950554],[-93.30966830826044,44.93384931325949],[-93.30955672969512,44.93389488381775],[-93.30942440896058,44.93393944166316],[-93.30927134605686,44.93398298679571],[-93.30909754098394,44.93403058259545],[-93.30890299374181,44.93408222906241],[-93.30868341284722,44.93414197686535],[-93.30843879830014,44.93420982600428],[-93.30824496630524,44.93426856102901],[-93.30810191686251,44.93431818193957],[-93.30794813871158,44.93437185348275],[-93.30778363185243,44.93442957565856],[-93.30762484697101,44.93449539910765],[-93.30747178406727,44.93456932383],[-93.30730083998321,44.93466248905116],[-93.3071120147188,44.93477489477112],[-93.30682591583333,44.93493742676431],[-93.30644254332681,44.93515008503074],[-93.30610566188918,44.9353455274976],[-93.30581527152042,44.93552375416488],[-93.30558639241204,44.93567210730627],[-93.30541902456406,44.93579058692178],[-93.30526810740197,44.93589944620943],[-93.3051336409258,44.93599868516925],[-93.30501347939391,44.93609336708944],[-93.30490762280628,44.93618349197003],[-93.30479747473538,44.93629184411571],[-93.3046830351812,44.93641842352649],[-93.30458647680736,44.93653285111002],[-93.30450779961386,44.93663512686632],[-93.30442769192592,44.93674803500782],[-93.30434615374358,44.93687157553455],[-93.30427963575271,44.93698397696311],[-93.30422813795332,44.93708523929349],[-93.30417163342344,44.9372032096317],[-93.30411012216305,44.93733788797774],[-93.30406863782466,44.937434593007],[-93.30404718040826,44.93749332471946],[-93.3040278687335,44.93755560051562],[-93.30401070280035,44.93762142039545],[-93.30399788385921,44.93769855121819],[-93.29978081406362,44.93768320809427],[-93.29704183212897,44.9376753979909],[-93.2952654933919,44.93767051667613],[-93.29445179785242,44.93766856414996],[-93.29393737677405,44.93767051667594],[-93.29372223015685,44.93767637425405],[-93.29357248492228,44.93768082184764]]]],"type":"MultiPolygon"} +},{ + "id": 1108800121, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000075, + "geom:area_square_m":660146.971482, + "geom:bbox":"-93.3125968646,44.9510488186,-93.3012989218,44.9630909452", + "geom:latitude":44.955794, + "geom:longitude":-93.306758, + "iso:country":"US", + "lbl:latitude":44.954474, + "lbl:longitude":-93.308556, + "lbl:max_zoom":18.0, + "mps:latitude":44.954474, + "mps:longitude":-93.308556, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":44.954474, + "reversegeo:longitude":-93.308556, + "src:geom":"mz", + "wof:belongsto":[ + 1108800221, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2040828749dff95130f2566d0feb6ff3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800121, + "neighbourhood_id":1108800221, + "region_id":85688727 + } + ], + "wof:id":1108800121, + "wof:lastmodified":1566623863, + "wof:name":"Lake of the Isles", + "wof:parent_id":1108800221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.31259686464882, + 44.95104881860833, + -93.30129892178736, + 44.9630909451926 +], + "geometry": {"coordinates":[[[[-93.31210148343442,44.95461795940088],[-93.31214978789291,44.95483643598845],[-93.31218965460999,44.95505306571577],[-93.31220389272323,44.95519009590569],[-93.31221101177985,44.95530294412303],[-93.31221101177985,44.95539161036778],[-93.31221243559118,44.95551151099661],[-93.31221528321385,44.95566264600951],[-93.31222240227046,44.95587121136053],[-93.31223379276106,44.95613720704967],[-93.31224233562901,44.95630748437186],[-93.3122480308743,44.95638204332709],[-93.31226796423286,44.95644854178701],[-93.31230213570464,44.95650697975161],[-93.31235196910102,44.95660672706668],[-93.31241746442194,44.95674778373222],[-93.3124786883089,44.95687171185772],[-93.31253564076189,44.95697851144318],[-93.31257265985633,44.95707221283466],[-93.31258974559221,44.95715281603213],[-93.31259686464882,44.9572283814369],[-93.31259401702619,44.95729890904894],[-93.31258405034691,44.95736742150696],[-93.31256696461101,44.95743391881093],[-93.31252140264863,44.95750444616292],[-93.31244736445974,44.95757900356291],[-93.31236620721424,44.95765356086601],[-93.31227793091212,44.95772811807224],[-93.31217114506276,44.95778856981224],[-93.31204584966618,44.95783491608603],[-93.31191628283564,44.95787521716961],[-93.31178244457112,44.95790947306298],[-93.3116315205707,44.95791954832821],[-93.31146351083439,44.95790544296531],[-93.31129550109806,44.95789335265212],[-93.31112749136176,44.95788327738866],[-93.31097514355002,44.95788126233617],[-93.31083845766285,44.95788730749468],[-93.31071458607761,44.95790443543535],[-93.31060352879429,44.95793264615819],[-93.31050386200155,44.95797596972415],[-93.31041558569943,44.95803440613322],[-93.31034866656717,44.95810090265024],[-93.31030310460476,44.95817545927522],[-93.31027747600092,44.95824094813817],[-93.31027178075561,44.95829736923908],[-93.31027605218961,44.95836285793185],[-93.31029029030285,44.95843741421644],[-93.31030168079346,44.95852406056025],[-93.31031022366139,44.95862279696328],[-93.3103159189067,44.95870339802086],[-93.31031876652932,44.958765863733],[-93.31031307128403,44.958839411963],[-93.31029883317079,44.95892404271087],[-93.31027747600092,44.95900162080106],[-93.31024899977443,44.95907214623357],[-93.31020628543469,44.95914468658418],[-93.31014933298171,44.95921924185289],[-93.31005963286825,44.95930991701093],[-93.30993718509433,44.95941671205831],[-93.30983467067894,44.95949731201763],[-93.30975208962209,44.95955171688892],[-93.30964815139539,44.95960108423397],[-93.30952285599884,44.95964541405281],[-93.30940610347021,44.9596766464153],[-93.30929789380953,44.95969478132144],[-93.30918256509223,44.95970384877451],[-93.30906011731831,44.95970384877451],[-93.30894051716703,44.9596937738263],[-93.30882376463842,44.95967362392987],[-93.3087198264117,44.95964239156739],[-93.30862870248694,44.95960007673883],[-93.30853330712819,44.95954869439288],[-93.30843364033544,44.95948824452952],[-93.30832827829741,44.9594026070577],[-93.30821722101409,44.95929178197741],[-93.30802785410791,44.9590963258817],[-93.30776017757886,44.95881623877055],[-93.30751385821969,44.95856133832878],[-93.30728889603039,44.95833162455637],[-93.30712800535071,44.95815329373325],[-93.30703118618061,44.9580263458594],[-93.30694718131247,44.9578893224062],[-93.30687599074622,44.95774222337366],[-93.30683185259517,44.95762031232611],[-93.30681476685928,44.95752358926357],[-93.30681334304795,44.9573996625133],[-93.30682758116119,44.95724853207528],[-93.30682900497251,44.95712762753381],[-93.30681761448191,44.95703694888888],[-93.30679056206675,44.95696037572758],[-93.30674784772701,44.9568979080499],[-93.30669801433064,44.95684450821967],[-93.30664106187766,44.95680017623688],[-93.3065684475001,44.95676088195594],[-93.30648017119796,44.95672662537686],[-93.30638762346186,44.95670445935122],[-93.30629080429179,44.956694383879],[-93.30621249466893,44.95668934614289],[-93.30615269459328,44.95668934614289],[-93.30606868972512,44.95670546689221],[-93.30596048006447,44.95673770839085],[-93.30583660847921,44.95678607058447],[-93.30569707496937,44.95685055347307],[-93.3055717795728,44.95692108153835],[-93.30546072228947,44.95699765478032],[-93.30536247930807,44.9570752354587],[-93.3052770506286,44.95715382357348],[-93.30518877432647,44.95724550953997],[-93.30509765040169,44.95735029335816],[-93.30500367885426,44.95749940828903],[-93.30490685968418,44.95769285433259],[-93.30480434526881,44.95793466066424],[-93.30469613560811,44.95822482728397],[-93.30459646881538,44.95849181974052],[-93.3045053448906,44.95873563803389],[-93.30443984956966,44.95894016270754],[-93.30439998285259,44.95910539376148],[-93.30437435424874,44.95926256435556],[-93.30436296375812,44.95941167448976],[-93.30435442089018,44.95955876925023],[-93.30434872564487,44.95970384863695],[-93.30435157326752,44.95985900253427],[-93.30436296375812,44.9600242309422],[-93.30437720187136,44.96018845139268],[-93.30439428760727,44.96035166388574],[-93.30441706858846,44.96048364412676],[-93.30444554481495,44.96058439211576],[-93.3044825639094,44.96069924456506],[-93.30452812587178,44.96082820147468],[-93.30458223070212,44.96095010580928],[-93.30464487840041,44.96106495756886],[-93.30471891658929,44.96121607781156],[-93.30480434526878,44.96140346653739],[-93.30487268821236,44.96156768313534],[-93.30492394542004,44.96170872760544],[-93.30496238832581,44.96185279408768],[-93.30498801692964,44.96199988258208],[-93.30500652647686,44.96214294090803],[-93.30501791696747,44.96228196906554],[-93.30502218840144,44.96239681823155],[-93.3050193407788,44.96248748840604],[-93.30500652647687,44.96257211378632],[-93.30498374549568,44.96265069437239],[-93.30494530258991,44.9627262525327],[-93.30489119775956,44.96279878826724],[-93.30482427862731,44.96286527928718],[-93.30474454519313,44.96292572559251],[-93.30465342126836,44.96297911978576],[-93.30455090685297,44.96302546186693],[-93.3044426971923,44.9630597146963],[-93.30432879228633,44.96308187827387],[-93.30420492070108,44.9630909451926],[-93.30407108243655,44.9630869154525],[-93.30395575371925,44.96307583366372],[-93.30385893454917,44.96305769982625],[-93.30376638681307,44.96302344699207],[-93.30373147670396,44.96300352674088],[-93.30367811051094,44.96297307516118],[-93.30359125802013,44.96292068840737],[-93.30350582934066,44.96286628673066],[-93.30335063390626,44.96273632670406],[-93.30312567171697,44.96253080832759],[-93.30276971888578,44.9621983494682],[-93.30228277541272,44.96173895012591],[-93.30193963688347,44.96139943659299],[-93.30174030329803,44.96117980886946],[-93.30159507454292,44.96102264381705],[-93.30151619672307,44.96094066844793],[-93.30150395061814,44.96092794143576],[-93.30143703148588,44.9608443211423],[-93.30139431714613,44.96077178293669],[-93.30136156948566,44.96068816236718],[-93.30133878850447,44.9605934594338],[-93.30133309325916,44.96049271144481],[-93.30134448374977,44.96038591840019],[-93.30136441710832,44.96030128985761],[-93.30139289333481,44.96023882581707],[-93.30144699816515,44.96015721942724],[-93.30152673159934,44.96005647068816],[-93.3015993459769,44.95996781167943],[-93.30166484129782,44.95989124240109],[-93.30175311759996,44.95979351561966],[-93.30186417488328,44.95967463133514],[-93.30197523216661,44.95955272430338],[-93.30208628944993,44.95942779452437],[-93.30224433250697,44.95924946661961],[-93.30244936133772,44.95901774058912],[-93.30268286639496,44.9587426903398],[-93.3029448476787,44.95842431587165],[-93.3031470288868,44.95816840641741],[-93.30328941001929,44.95797496197709],[-93.30338480537804,44.95783894616869],[-93.30343321496306,44.95776035899223],[-93.30347023405751,44.95768680936748],[-93.30349586266136,44.95761829729442],[-93.3035214912652,44.95754373993371],[-93.30354711986905,44.95746313728536],[-93.30357132466156,44.95736842899395],[-93.30359410564277,44.95725961505947],[-93.30360834375603,44.95714979337645],[-93.3036140390013,44.95703896394489],[-93.30361973424661,44.95694223993807],[-93.30362542949189,44.95685962135602],[-93.30362115805792,44.95678103284658],[-93.30360691994468,44.95670647440977],[-93.30357132466158,44.95662687812334],[-93.30351437220858,44.9565422439873],[-93.30345030069897,44.95646768525986],[-93.30337911013274,44.95640320194102],[-93.30330649575518,44.95634980165323],[-93.30323245756628,44.95630748439648],[-93.30312709552827,44.95626113688412],[-93.3029904096411,44.95621075911613],[-93.3028522999426,44.9561654190931],[-93.30271276643279,44.95612511681503],[-93.30256041862104,44.95608582206769],[-93.30239525650738,44.95604753485108],[-93.30224433250696,44.95600622492756],[-93.30210764661979,44.95596189229713],[-93.30198519884587,44.95591252182098],[-93.30187698918519,44.95585811349912],[-93.30178301763777,44.9558107580746],[-93.30170328420357,44.95577045554744],[-93.30162497458072,44.95570294870302],[-93.30154808876918,44.95560823754136],[-93.30147405058031,44.95549841265733],[-93.30140286001406,44.95537347405094],[-93.30135017899505,44.95526868667815],[-93.30131600752327,44.95518405053893],[-93.30129892178736,44.95509236123033],[-93.30129892178736,44.95499361875236],[-93.301306040844,44.95491099739954],[-93.30132027895723,44.95484449717188],[-93.30135445042905,44.95476590586953],[-93.30140855525937,44.95467522349251],[-93.30147120295766,44.95456841957524],[-93.3015423935239,44.95444549411772],[-93.30162355076939,44.95432861394877],[-93.30171467469418,44.95421777906838],[-93.3018200367322,44.95408981483749],[-93.30193963688347,44.9539447212561],[-93.30202506556296,44.95382683253494],[-93.30207632277065,44.953736148674],[-93.30212757997833,44.95362128217184],[-93.30217883718603,44.95348223302842],[-93.30223151820505,44.95335426725177],[-93.30228562303537,44.95323738484187],[-93.30233688024308,44.95313360115873],[-93.30238528982811,44.95304291620238],[-93.3024251565452,44.95297540623827],[-93.30247870514283,44.95290355623492],[-93.30250031061171,44.95288301038187],[-93.30254352154945,44.95284191867577],[-93.30260766278518,44.9527855369621],[-93.30269273431888,44.95271386524086],[-93.3028149402522,44.95261543586231],[-93.30297428058516,44.95249024882648],[-93.30316670429232,44.95233925941736],[-93.3033922113737,44.95216246763498],[-93.3035049649144,44.95207407174379],[-93.30377350586966,44.95187911291832],[-93.3040753538705,44.95164937239545],[-93.30434872564484,44.95147102080553],[-93.30459362119268,44.95134405814854],[-93.30481288813668,44.95124027106888],[-93.30500652647683,44.95115965956654],[-93.30516884096784,44.95110323148321],[-93.30529245229025,44.95107280331261],[-93.30529983160972,44.95107098681888],[-93.30539807459112,44.95105284919391],[-93.30546356991206,44.95104881860833],[-93.30557605100671,44.95104982625462],[-93.30573551787509,44.95105587213279],[-93.30589925617743,44.95106695623966],[-93.30606726591373,44.95108307857523],[-93.30626944712184,44.95110726206499],[-93.30650579980173,44.95113950670894],[-93.3067521191609,44.95117275897817],[-93.30700840519933,44.95120701887268],[-93.3072661150491,44.95124127874674],[-93.30752524871021,44.95127553860033],[-93.3077672966354,44.9513108060744],[-93.3079922588247,44.95134708116893],[-93.30820583052341,44.9513823486009],[-93.30840801173152,44.95141660837029],[-93.3087867455439,44.95148311251411],[-93.30961967516883,44.95163123529146],[-93.31080001475712,44.95189019701167],[-93.31124139626777,44.95199297554393],[-93.3113410630605,44.95202320443167],[-93.31143218698527,44.95206048669773],[-93.3115147680421,44.95210482234214],[-93.31158880623099,44.95214815032631],[-93.31165430155194,44.95219047065024],[-93.3117155254389,44.95225092817307],[-93.31177247789189,44.9523295228948],[-93.31181376842031,44.95239602605782],[-93.31183939702413,44.95245043766215],[-93.31186217800533,44.95251794826158],[-93.31188211136387,44.95259855785612],[-93.3118949256658,44.95267614449006],[-93.31190062091109,44.9527507081634],[-93.3118949256658,44.95282224889971],[-93.31187783992991,44.95289076669897],[-93.31186075419402,44.95297742140453],[-93.3118436684581,44.95308221301638],[-93.31182943034486,44.95318398161816],[-93.31181803985427,44.95328272720988],[-93.31181376842031,44.95337341180641],[-93.31181661604293,44.95345603540775],[-93.31182231128824,44.95353362088655],[-93.31183085415617,44.95360616824278],[-93.31184793989208,44.95368476109613],[-93.31187356849591,44.95376939944659],[-93.31189919709976,44.95386713640062],[-93.31192482570361,44.95397797195821],[-93.31195472574143,44.95408175416903],[-93.31198889721323,44.95417848303308],[-93.31201737343972,44.95426815862167],[-93.3120401544209,44.95435078093482],[-93.31208429257197,44.95454020672376],[-93.31210148343442,44.95461795940088]]]],"type":"MultiPolygon"} +},{ + "id": 1108800215, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00014, + "geom:area_square_m":1228682.665422, + "geom:bbox":"-93.3273124894,44.9532834003,-93.3094646637,44.9684105448", + "geom:latitude":44.960307, + "geom:longitude":-93.319983, + "iso:country":"US", + "lbl:latitude":44.960165, + "lbl:longitude":-93.319847, + "lbl:max_zoom":18.0, + "mps:latitude":44.960165, + "mps:longitude":-93.319847, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Cedar Lake" + ], + "name:deu_x_preferred":[ + "Cedar Lake" + ], + "name:fin_x_preferred":[ + "Cedar Lake" + ], + "name:fra_x_preferred":[ + "Cedar Lake" + ], + "name:ita_x_preferred":[ + "Cedar Lake" + ], + "name:pol_x_preferred":[ + "Cedar Lake" + ], + "name:swe_x_preferred":[ + "Cedar Lake" + ], + "name:ukr_x_preferred":[ + "\u0421\u0456\u0434\u0430\u0440-\u041b\u0435\u0439\u043a" + ], + "name:vol_x_preferred":[ + "Cedar Lake" + ], + "reversegeo:latitude":44.960165, + "reversegeo:longitude":-93.319847, + "src:geom":"mz", + "wof:belongsto":[ + 1108800221, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6eed8741de3e7a31df797333c3216b3a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800215, + "neighbourhood_id":1108800221, + "region_id":85688727 + } + ], + "wof:id":1108800215, + "wof:lastmodified":1566623872, + "wof:name":"Cedar Lake", + "wof:parent_id":1108800221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.32731248941094, + 44.95328340029408, + -93.30946466368087, + 44.9684105448165 +], + "geometry": {"coordinates":[[[[-93.32701853625555,44.95933022650016],[-93.32704690325289,44.95942920577144],[-93.32706903543271,44.95951747618607],[-93.32708412555533,44.95959293307103],[-93.32709217362073,44.95965557642632],[-93.32709016160437,44.95971821971322],[-93.32707808950629,44.95978086293172],[-93.32705897535098,44.95984706534351],[-93.32703281913844,44.95991682694859],[-93.32700968095043,44.9599780462601],[-93.32698956078693,44.96003072327805],[-93.32695535650899,44.96008838319421],[-93.32690706811663,44.96015102600857],[-93.3268527436752,44.96021224505881],[-93.32679238318472,44.96027204034491],[-93.32672397462886,44.9603254289495],[-93.3266475180076,44.96037241087258],[-93.32655898928824,44.96042152829374],[-93.3264583884708,44.96047278121298],[-93.32629742716287,44.9605311525266],[-93.32607610536446,44.96059664223459],[-93.32587691574591,44.96065074238788],[-93.32569985830722,44.96069345298648],[-93.32553688498294,44.96074043460294],[-93.32538799577313,44.9607916872373],[-93.32526626878401,44.96083938062425],[-93.32517170401559,44.96088351476381],[-93.32508015727171,44.9609404619714],[-93.32499162855234,44.96101022224704],[-93.32491617793926,44.96108282978538],[-93.32485380543245,44.96115828458642],[-93.32480954107277,44.96123729846246],[-93.32478338486024,44.96131987141352],[-93.32477030675396,44.9613974614159],[-93.32477030675396,44.96147006846958],[-93.32477332477848,44.96155264106412],[-93.32477936082753,44.96164517919951],[-93.3247843908684,44.96176974942636],[-93.32478841490109,44.96192635174465],[-93.32478841490109,44.96204593879742],[-93.3247843908684,44.96212851058466],[-93.32477734881118,44.96219542214558],[-93.32476728872942,44.96224667348019],[-93.32475320461498,44.9622993484133],[-93.32473509646786,44.96235344694493],[-93.32471195827985,44.96240683360475],[-93.32468379005095,44.96245950839278],[-93.32466065186294,44.96250435311582],[-93.32464254371578,44.96254136777386],[-93.32462141754412,44.96257624695096],[-93.32459727334793,44.9626089906471],[-93.32455200298008,44.96266024158745],[-93.32448560644058,44.96272999977199],[-93.32441417986018,44.96280758784133],[-93.32433772323893,44.96289300579545],[-93.32426327863402,44.96297130548958],[-93.32419084604544,44.96304248692373],[-93.32413450958768,44.96310726196288],[-93.3240942692607,44.96316563060707],[-93.32406308300729,44.9632247110024],[-93.32404095082745,44.96328450314891],[-93.32402384868848,44.9633457188511],[-93.32401177659037,44.963408358109],[-93.32399769247593,44.96350943484752],[-93.32398159634516,44.96364894906667],[-93.32396650622255,44.96378348033134],[-93.32395242210808,44.96391302864154],[-93.32394236202634,44.96403332326815],[-93.32393632597729,44.96414436421119],[-93.32393129593642,44.96423832180633],[-93.32392727190373,44.96431519605355],[-93.32393129593642,44.96439349378914],[-93.32394336803452,44.96447321501309],[-93.32396047017349,44.96455151253882],[-93.32398260235331,44.96462838636636],[-93.32400976457403,44.96470098933921],[-93.3240419568356,44.9647693214574],[-93.32409426926068,44.96486043076742],[-93.32416670184925,44.96497431726931],[-93.32422002028251,44.96505830848524],[-93.32425422456043,44.96511240441523],[-93.32428339879749,44.96518144780373],[-93.32430754299369,44.96526543865074],[-93.32432565114082,44.9653280758475],[-93.32433772323891,44.96536935939401],[-93.32434074126344,44.96541989609655],[-93.3243347052144,44.96547968595511],[-93.3243186090836,44.96554872891184],[-93.32429245287108,44.96562702496673],[-93.32426227262583,44.9656996266784],[-93.32422806834788,44.96576653404686],[-93.32418581600454,44.96583344133728],[-93.32413551559583,44.96590034854965],[-93.32411036539146,44.96593380215585],[-93.32408119115441,44.96593878460116],[-93.32402284268028,44.96594874949177],[-93.32388099552767,44.96596654393136],[-93.32365564969659,44.96599216791991],[-93.32338402748947,44.96601708012049],[-93.32306612890633,44.96604128053309],[-93.32271302003707,44.96606334560751],[-93.32232470088172,44.96608327534374],[-93.32182169679446,44.96610320507304],[-93.32088900536975,44.96613169017456],[-93.32054610703032,44.96614547477154],[-93.31986031035147,44.9661730439655],[-93.31936349741652,44.96619578854342],[-93.31905566822545,44.96621370850529],[-93.31874491660535,44.96623714228975],[-93.31843124255622,44.96626608989681],[-93.31814094793933,44.96629710517219],[-93.31787403275464,44.96633018811591],[-93.31759153128183,44.96636809562735],[-93.31729344352085,44.9664108277065],[-93.31701094204803,44.96645700588113],[-93.31674402686338,44.96650663015122],[-93.31652289640016,44.96654798368577],[-93.31634755065841,44.96658106648481],[-93.31610109247694,44.96663689363169],[-93.31578352185579,44.96671546512644],[-93.31503635416732,44.96690568984948],[-93.31385958941158,44.96720756780083],[-93.31271691966116,44.96750875495526],[-93.3116083449161,44.9678092513128],[-93.3101773288348,44.96820830150006],[-93.30946466368087,44.9684105448165],[-93.3103200397229,44.96777743408606],[-93.31083326599051,44.96736906130761],[-93.31112044523167,44.96709949246858],[-93.31137492584635,44.96688423913498],[-93.31159670783458,44.9667233013068],[-93.31182701989928,44.96652715753766],[-93.31206586204044,44.96629580782752],[-93.3122663188375,44.96609563944517],[-93.31242839029044,44.96592665239061],[-93.31258050998748,44.96573352359675],[-93.31272267792863,44.9655162530636],[-93.31294445991685,44.96519537429999],[-93.31324585595213,44.9647708873059],[-93.31357995061387,44.96429509537928],[-93.31394674390208,44.96376799852015],[-93.31421259795206,44.96337870962954],[-93.31437751276383,44.96312722870744],[-93.31447276528441,44.96293308497262],[-93.31449835551381,44.96279627842507],[-93.31451257230792,44.96263029932854],[-93.31451541566675,44.962435147683],[-93.31454100589616,44.96223395969287],[-93.31458934299616,44.96202673535815],[-93.31462346330204,44.96180341499755],[-93.3146433668138,44.96156399861107],[-93.31464194513438,44.96128635455027],[-93.31461919826381,44.96097048281513],[-93.31460782482851,44.96071496786726],[-93.31460782482851,44.96051980970667],[-93.31462915001968,44.96028642358501],[-93.31467180040204,44.9600148095023],[-93.31472013750204,44.95971502631975],[-93.31480340293933,44.95920400570143],[-93.31482810496193,44.95904766132573],[-93.31487750900715,44.95873497257432],[-93.3149200513794,44.95845044396093],[-93.31495573207869,44.95819407548555],[-93.31499278511258,44.95797460783486],[-93.31503121048107,44.95779204100886],[-93.31507375285331,44.95761821358398],[-93.31512041222932,44.95745312556024],[-93.31516295460156,44.95730454599689],[-93.31520137997003,44.95717247489394],[-93.31530018806041,44.95697922293789],[-93.31545937887269,44.95672479012875],[-93.31560484633907,44.95651891263476],[-93.31573659045958,44.95636159045594],[-93.31589029193348,44.95620523897833],[-93.31606595076082,44.95604985820192],[-93.31630061997545,44.95585271802111],[-93.3165942995774,44.95561381843592],[-93.31674113937838,44.95549436864332],[-93.31769806928722,44.95465528055769],[-93.31809745453249,44.95430501775753],[-93.31825640382407,44.9541626331206],[-93.31843044323826,44.95400814534108],[-93.31861957277505,44.95384155441894],[-93.3187714800094,44.95370059258617],[-93.31888616494129,44.95358525984274],[-93.31894350740724,44.95352759347102],[-93.31903404814294,44.95350623549675],[-93.31921512961432,44.95346351954821],[-93.31937810293859,44.95343077064132],[-93.31952296811571,44.9534079887761],[-93.31970807361982,44.95337381595113],[-93.31993341945092,44.95332825216642],[-93.32011953096321,44.95329977479533],[-93.32026640815667,44.95328838383785],[-93.32043239950548,44.95328340029408],[-93.32061750500958,44.953284824164],[-93.32081870664449,44.95329407931581],[-93.32103600441017,44.95331116574949],[-93.32131466867452,44.95333893118562],[-93.32165469943749,44.95337737562419],[-93.32220498590895,44.95344002572557],[-93.32296552808887,44.95352688148976],[-93.32346249612708,44.9535852599238],[-93.32369589002357,44.95361516102769],[-93.32388803758491,44.95364577404591],[-93.32403893881109,44.95367709897847],[-93.3241687138656,44.9537077119648],[-93.32427736274846,44.95373761300488],[-93.3243860116313,44.95377748102371],[-93.32449466051413,44.95382731602128],[-93.32459727334793,44.95387715097557],[-93.32469385013269,44.95392698588659],[-93.32478942090927,44.95398180423158],[-93.32488398567767,44.95404160601056],[-93.32496346032346,44.95409357656422],[-93.32502784484663,44.95413771589256],[-93.32511234953328,44.95420677247061],[-93.32521697438344,44.95430074629833],[-93.32530147907009,44.95437549813442],[-93.32536586359326,44.95443102797886],[-93.32543024811643,44.9544815743356],[-93.3254946326396,44.95452713720462],[-93.32557611930174,44.95457697154563],[-93.32567470810284,44.95463107735863],[-93.32575217073227,44.95467165669925],[-93.32580850719006,44.9546987095675],[-93.32587691574592,44.95472576242298],[-93.32595739639987,44.95475281526572],[-93.32604190108654,44.9547798680957],[-93.32613042980589,44.95480692091292],[-93.32622298255795,44.95484038095309],[-93.32631955934269,44.95488024821619],[-93.32641211209474,44.95491869162367],[-93.32650064081412,44.95495571117554],[-93.32658212747626,44.95499629026848],[-93.32665657208116,44.95504042890249],[-93.32672699265339,44.95508385559074],[-93.32679338919289,44.95512657033321],[-93.32686481577328,44.95518352325252],[-93.32694127239455,44.95525471434866],[-93.32701269897494,44.95532732917304],[-93.32707909551445,44.95540136772564],[-93.32713341995587,44.95547327046336],[-93.32717567229921,44.95554303738617],[-93.32721289460166,44.95561921136575],[-93.32724508686324,44.9557017924021],[-93.32727224908396,44.9557829495147],[-93.32729438126381,44.95586268270356],[-93.32730745937008,44.95593956817934],[-93.32731148340278,44.95601360594203],[-93.32731248941094,44.95608052461934],[-93.3273104773946,44.95614032421128],[-93.32730041731286,44.95620368322884],[-93.32728230916571,44.95627060167205],[-93.32726520702674,44.95633467245356],[-93.32724911089596,44.95639589557338],[-93.32722094266707,44.95646922082867],[-93.32718070234009,44.9565546482194],[-93.32712335987414,44.95667139868547],[-93.32704891526922,44.95681947222688],[-93.3269905667951,44.95694974821227],[-93.32694831445177,44.95706222664165],[-93.32691008614114,44.95718965441952],[-93.32687588186322,44.95733203154587],[-93.32684570161797,44.95747156079734],[-93.32681954540544,44.95760824217392],[-93.32679841923377,44.95773709257487],[-93.32678232310298,44.9578581120002],[-93.3267732690294,44.95798980928335],[-93.32677125701306,44.95813218442432],[-93.32677628705395,44.95826388115195],[-93.32678835915203,44.95838489946625],[-93.32680445528283,44.95850022258071],[-93.32682457544632,44.95860985049534],[-93.32684268359345,44.95871307140963],[-93.32685877972425,44.95880988532357],[-93.32689097198583,44.95893232613406],[-93.32693926037821,44.95908039384109],[-93.32698151272155,44.959212088412],[-93.32701772901582,44.95932740984675],[-93.32701853625555,44.95933022650016]]]],"type":"MultiPolygon"} +},{ + "id": 1108800217, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000068, + "geom:area_square_m":599129.520173, + "geom:bbox":"-93.2460641153,44.9165787847,-93.2346478833,44.9251134887", + "geom:latitude":44.920964, + "geom:longitude":-93.241372, + "iso:country":"US", + "lbl:latitude":44.920648, + "lbl:longitude":-93.242623, + "lbl:max_zoom":18.0, + "mps:latitude":44.920648, + "mps:longitude":-93.242623, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Hiawatha Golf Course" + ], + "reversegeo:latitude":44.920648, + "reversegeo:longitude":-93.242623, + "src:geom":"mz", + "wof:belongsto":[ + 85872557, + 102191575, + 1108799987, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"945170f1c662cc5e6e10f4e8820f1fd2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799987, + "microhood_id":1108800217, + "neighbourhood_id":85872557, + "region_id":85688727 + } + ], + "wof:id":1108800217, + "wof:lastmodified":1566623872, + "wof:name":"Hiawatha Golf Club", + "wof:parent_id":85872557, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.24606411527031, + 44.91657878471873, + -93.23464788327729, + 44.92511348865212 +], + "geometry": {"coordinates":[[[[-93.23467896933757,44.92509766825827],[-93.23465592004743,44.92419396103325],[-93.23464788327729,44.92383475794178],[-93.23464788327729,44.92374655661116],[-93.23465792923997,44.92366902470609],[-93.23467802116535,44.9236021622266],[-93.23470012228324,44.92355165968547],[-93.23472423259368,44.92351751708273],[-93.23475939346307,44.92350115708598],[-93.23480560489142,44.92350257969523],[-93.23493821159884,44.92351182665266],[-93.23515721358534,44.92352889795827],[-93.23535110066513,44.92354312404346],[-93.2355198728382,44.92355450490822],[-93.23570270935903,44.92357015359185],[-93.23589961022761,44.92359007009433],[-93.23609450190366,44.92360073964898],[-93.23628738438717,44.92360216225577],[-93.23649031283337,44.92359789443465],[-93.23670328724225,44.92358793618563],[-93.2369393673653,44.92355521619295],[-93.23719855320252,44.92349973445661],[-93.2374557298472,44.92344140744092],[-93.23771089729937,44.92338023514586],[-93.23795400959629,44.92331266101199],[-93.238185066738,44.9232386850393],[-93.23837895381779,44.92316044110965],[-93.23853567083563,44.92307792922306],[-93.23866626835053,44.92298901540462],[-93.23877074636245,44.92289369965437],[-93.23888225654824,44.92277348769557],[-93.2390007989079,44.92262837952822],[-93.2390952309571,44.92247615779324],[-93.23916555269589,44.92231682249064],[-93.23921879629812,44.92217598116429],[-93.23925496176378,44.92205363381422],[-93.23927203990033,44.92195404862866],[-93.23927003070779,44.92187722560764],[-93.23926098934135,44.92180182513807],[-93.23924491580107,44.92172784721994],[-93.23922884226077,44.92165315787766],[-93.23921276872048,44.92157775711122],[-93.23920071356527,44.92147959364263],[-93.23919267679511,44.9213586674719],[-93.23916555269588,44.92120573094014],[-93.23911934126754,44.92102078404734],[-93.23907714822428,44.92083725924125],[-93.23903897356607,44.9206551565219],[-93.23900783108175,44.92048230071403],[-93.23898372077132,44.92031869181766],[-93.23893148176536,44.92009888576621],[-93.23885111406391,44.91982288255969],[-93.23878380611393,44.91964362248769],[-93.23872955791543,44.91956110555023],[-93.23865220400278,44.91947645442617],[-93.23855174437595,44.91938966911553],[-93.23844726636406,44.91930217231556],[-93.23833876996707,44.91921396402626],[-93.23819109431564,44.91911793063449],[-93.23800423940973,44.91901407214024],[-93.23777619605683,44.91888531571743],[-93.23750696425691,44.91873166136607],[-93.23731207258086,44.91861713181498],[-93.23719152102866,44.91854172706417],[-93.23708302463169,44.91846063126629],[-93.23698658338994,44.91837384442132],[-93.23692530301756,44.9182955938924],[-93.23689918351459,44.91822587967952],[-93.23687105481908,44.91813766969533],[-93.23684091693103,44.91803096393982],[-93.23678064115492,44.91794844473846],[-93.23669022749078,44.91789011209124],[-93.2365596299759,44.91784814102149],[-93.23638884861029,44.9178225315292],[-93.23627030625065,44.91779549927395],[-93.23620400289694,44.91776704425574],[-93.23609148811489,44.91763259373211],[-93.23593276190449,44.91739214770306],[-93.23583933445154,44.91724275800672],[-93.23581120575604,44.91718442464311],[-93.23579814600456,44.91714529859297],[-93.23580015519707,44.91712537985633],[-93.23589056886121,44.91706206661154],[-93.23606938699697,44.91695535885859],[-93.23644008301997,44.91675474725488],[-93.23677963655861,44.91657878471873],[-93.2373030312144,44.91658757135882],[-93.23843822499759,44.9166181611131],[-93.24020832362234,44.91667080393823],[-93.24125410833764,44.91670068229474],[-93.2415755791435,44.91670779618262],[-93.24180261790013,44.91671419868108],[-93.24193522460754,44.91671988979013],[-93.24208490945153,44.91673625172093],[-93.24225167243208,44.91676328447349],[-93.24242144920142,44.91679600830998],[-93.24259423975957,44.9168344232304],[-93.24296694497511,44.91691338706923],[-93.24353956484805,44.91703289982649],[-93.24438041192462,44.91721003408233],[-93.24548948620483,44.91744478983675],[-93.24604402334494,44.91756216771397],[-93.24604402334494,44.91764326459617],[-93.24604402334495,44.91780545836058],[-93.24604603253748,44.918282073826],[-93.24605005092255,44.91907311099241],[-93.24605306471135,44.92004623786861],[-93.24605507390388,44.92120145445458],[-93.24605808769269,44.92207639392113],[-93.24606210607777,44.92267105626825],[-93.24606411527031,44.92305374453629],[-93.24606411527031,44.92322445872526],[-93.24606411527031,44.92330981581974],[-93.24586319601666,44.92330768189856],[-93.24546135750933,44.9233034140562],[-93.24518408893928,44.92329985752072],[-93.24503139030649,44.92329701229214],[-93.24493695825728,44.92329843490629],[-93.24490079279161,44.92330412536319],[-93.24486563192222,44.92331977411268],[-93.24483147564911,44.9233453811548],[-93.24481238832,44.9233702768797],[-93.24480836993493,44.92339446128739],[-93.24480435154986,44.92342718134489],[-93.24480033316479,44.9234684370522],[-93.24479631477972,44.92392153170545],[-93.24479077708062,44.92511348865212],[-93.2408144004317,44.92510286451735],[-93.23467896933757,44.92509766825827]]]],"type":"MultiPolygon"} +},{ + "id": 1108800219, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000013, + "geom:area_square_m":110853.321281, + "geom:bbox":"-93.3267436051,44.9657687116,-93.3215596201,44.969762622", + "geom:latitude":44.967783, + "geom:longitude":-93.324244, + "iso:country":"US", + "lbl:latitude":44.96778, + "lbl:longitude":-93.324298, + "lbl:max_zoom":18.0, + "mps:latitude":44.96778, + "mps:longitude":-93.324298, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":44.96778, + "reversegeo:longitude":-93.324298, + "src:geom":"mz", + "wof:belongsto":[ + 1108800221, + 102191575, + 1108799977, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6a229a3c20013986509ccaf01ecda501", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799977, + "microhood_id":1108800219, + "neighbourhood_id":1108800221, + "region_id":85688727 + } + ], + "wof:id":1108800219, + "wof:lastmodified":1566623872, + "wof:name":"Brownie Lake", + "wof:parent_id":1108800221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.3267436050712, + 44.96576871155167, + -93.32155962009318, + 44.96976262203282 +], + "geometry": {"coordinates":[[[[-93.32411036539146,44.96593380215585],[-93.32471342376206,44.96584299136479],[-93.32500000421243,44.96580484769332],[-93.32519011203593,44.96578276449554],[-93.32539724444064,44.96577071911499],[-93.32562140142656,44.96576871155167],[-93.32582569640105,44.9657767418079],[-93.32601012936414,44.96579480988369],[-93.32617753774602,44.96582592709842],[-93.32632792154669,44.96587009345212],[-93.32645418719065,44.96592128622171],[-93.32655633467792,44.96597950540722],[-93.32663720143864,44.966063822686],[-93.32669678747288,44.96617423805806],[-93.32673225535039,44.96628465321758],[-93.3267436050712,44.96639506816457],[-93.32672799920509,44.96654462973711],[-93.32668543775206,44.96673333793521],[-93.32665138858964,44.96687888389205],[-93.32662585171784,44.96698126760764],[-93.3265761966893,44.96711978633047],[-93.32650242350407,44.96729444006058],[-93.32641162573762,44.96742894328666],[-93.32630380338996,44.96752329600872],[-93.32613355757788,44.96767285457681],[-93.32590088830135,44.96787761899093],[-93.32575617936108,44.96802316210547],[-93.32569943075706,44.96810948392042],[-93.32564268215303,44.96821688407753],[-93.32558593354901,44.9683453625768],[-93.32550222935805,44.96848488183088],[-93.3253915695802,44.96863544183975],[-93.32522416119832,44.96881209829239],[-93.3250000042124,44.96901485118877],[-93.3247673349359,44.9692266368147],[-93.32452615336877,44.96944745517017],[-93.32434881398119,44.96960905376913],[-93.32423531677314,44.9697114326116],[-93.32417856816912,44.96976262203282],[-93.32404662766476,44.96976262203282],[-93.32378274665601,44.96976262203282],[-93.32354298380399,44.9697576034702],[-93.32332733910867,44.96974756634494],[-93.32311595055866,44.96972949951125],[-93.32290881815396,44.96970340296914],[-93.32261372541302,44.96965020609728],[-93.32223067233582,44.96956990889568],[-93.32192139244387,44.96951068967012],[-93.32168588573717,44.96947254842059],[-93.3215681323838,44.96945347779583],[-93.3215652949536,44.96942738111032],[-93.32155962009318,44.9693751877393],[-93.32156103880828,44.96930291987847],[-93.32156955109889,44.96921057752782],[-93.3215837382499,44.96912224993214],[-93.3216036002613,44.96903793709144],[-93.32162913713312,44.96895061294032],[-93.32166034886534,44.9688602774788],[-93.32170432903345,44.96876391948117],[-93.32176107763749,44.96866153894744],[-93.32182208238682,44.96856417691059],[-93.32188734328145,44.96847183337061],[-93.3220121902103,44.96831525024346],[-93.3221966231734,44.96809442752917],[-93.32247327261803,44.96777122097656],[-93.32284213854423,44.96734563058563],[-93.32330595392938,44.96682213748408],[-93.32411036539146,44.96593380215585]]]],"type":"MultiPolygon"} +},{ + "id": 1108800229, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000222, + "geom:area_square_m":1937952.204294, + "geom:bbox":"-93.0355512794,44.9630428106,-93.0161188621,44.9775380751", + "geom:latitude":44.970281, + "geom:longitude":-93.027808, + "iso:country":"US", + "lbl:latitude":44.970283, + "lbl:longitude":-93.027808, + "lbl:max_zoom":18.0, + "mps:latitude":44.970283, + "mps:longitude":-93.027808, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.970283, + "reversegeo:longitude":-93.027808, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"22373afe02fd7ef96f24f5f5a001b322", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800229, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800229, + "wof:lastmodified":1566623863, + "wof:name":"Hazel Park", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781021 + ], + "wof:tags":[] +}, + "bbox": [ + -93.03555127941203, + 44.96304281055732, + -93.01611886208073, + 44.97753807507841 +], + "geometry": {"coordinates":[[[-93.03552957019036,44.96304966085955],[-93.03555127941203,44.96505419027213],[-93.03552855431057,44.96852712131409],[-93.035471741557,44.9726670305683],[-93.03546037900628,44.97753807507841],[-93.02528713166049,44.97751496032485],[-93.02529089611495,44.97702366087582],[-93.01611886208073,44.97706125186195],[-93.02028751676404,44.97562366413713],[-93.02020713368617,44.9723880342182],[-93.02019909537837,44.97031235827934],[-93.02024732522509,44.96621765398925],[-93.02024732522509,44.96304281055732],[-93.03552957019036,44.96304966085955]]],"type":"Polygon"} +},{ + "id": 1108800231, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00012, + "geom:area_square_m":1048644.192642, + "geom:bbox":"-93.0202875168,44.9702896107,-93.0050995571,44.9808061182", + "geom:latitude":44.974409, + "geom:longitude":-93.011853, + "iso:country":"US", + "lbl:latitude":44.974404, + "lbl:longitude":-93.011853, + "lbl:max_zoom":18.0, + "mps:latitude":44.974404, + "mps:longitude":-93.011853, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:epo_x_preferred":[ + "Parko Lincoln" + ], + "name:eus_x_preferred":[ + "Lincoln Park" + ], + "name:fas_x_preferred":[ + "\u067e\u0627\u0631\u06a9 \u0644\u06cc\u0646\u06a9\u0644\u0646" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30f3\u30ab\u30fc\u30f3\u30fb\u30d1\u30fc\u30af" + ], + "name:kor_x_preferred":[ + "\ub9c1\ucee8 \uacf5\uc6d0" + ], + "name:nld_x_preferred":[ + "Lincoln Park" + ], + "name:nor_x_preferred":[ + "Lincoln Park" + ], + "name:por_x_preferred":[ + "Lincoln Park" + ], + "name:spa_x_preferred":[ + "Lincoln Park" + ], + "name:zho_x_preferred":[ + "\u6797\u80af\u516c\u56ed" + ], + "reversegeo:latitude":44.974404, + "reversegeo:longitude":-93.011853, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"a26a4db07e532dda81f216a331f64d1a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800231, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800231, + "wof:lastmodified":1566623862, + "wof:name":"Lincoln Park", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781025 + ], + "wof:tags":[] +}, + "bbox": [ + -93.02028751676404, + 44.97028961072962, + -93.00509955709003, + 44.98080611823618 +], + "geometry": {"coordinates":[[[-93.02019909537837,44.97031235827934],[-93.02020713368617,44.9723880342182],[-93.02028751676404,44.97562366413713],[-93.01578606440371,44.97717601930892],[-93.01135695681346,44.97868284402402],[-93.00509955709003,44.98080611823618],[-93.00510996177073,44.97752372446602],[-93.00512123529705,44.97390037338204],[-93.00513240969079,44.97030843010418],[-93.00896957940091,44.97028961072962],[-93.01352729991575,44.97029529761789],[-93.02019909537837,44.97031235827934]]],"type":"Polygon"} +},{ + "id": 1108800233, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00011, + "geom:area_square_m":961728.425678, + "geom:bbox":"-93.0202473252,44.9630359984,-93.0050502494,44.9703123583", + "geom:latitude":44.966664, + "geom:longitude":-93.012664, + "iso:country":"US", + "lbl:latitude":44.966667, + "lbl:longitude":-93.012664, + "lbl:max_zoom":18.0, + "mps:latitude":44.966667, + "mps:longitude":-93.012664, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.966667, + "reversegeo:longitude":-93.012664, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b128d1765d567f5cbac40fc61cd51cb3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800233, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800233, + "wof:lastmodified":1566623862, + "wof:name":"Beaver Lake Heights", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781027 + ], + "wof:tags":[] +}, + "bbox": [ + -93.02024732522509, + 44.96303599843238, + -93.0050502494359, + 44.97031235827934 +], + "geometry": {"coordinates":[[[-93.02024732522509,44.96304281055732],[-93.02024732522509,44.96621765398925],[-93.02019909537837,44.97031235827934],[-93.01352729991575,44.97029529761789],[-93.00896957940091,44.97028961072962],[-93.00513240969079,44.97030843010418],[-93.00513250740879,44.97027701922598],[-93.00509136329458,44.96665648916887],[-93.0050502494359,44.96303599843238],[-93.02024732522509,44.96304281055732]]],"type":"Polygon"} +},{ + "id": 1108800235, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000134, + "geom:area_square_m":1174675.54162, + "geom:bbox":"-93.0252908961,44.9770236609,-93.0050873085,44.9847456645", + "geom:latitude":44.981291, + "geom:longitude":-93.016168, + "iso:country":"US", + "lbl:latitude":44.980898, + "lbl:longitude":-93.016707, + "lbl:max_zoom":18.0, + "mps:latitude":44.980898, + "mps:longitude":-93.016707, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.980898, + "reversegeo:longitude":-93.016707, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"eb7fc4d1736c275a1838edff982827a3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800235, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800235, + "wof:lastmodified":1566623862, + "wof:name":"Hayden Heights", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781029 + ], + "wof:tags":[] +}, + "bbox": [ + -93.02529089611495, + 44.97702366087582, + -93.0050873084804, + 44.98474566447127 +], + "geometry": {"coordinates":[[[-93.02523087022615,44.98473845883355],[-93.0227115971023,44.98473135267695],[-93.0050873084804,44.98474566447127],[-93.00509850456847,44.98113816016437],[-93.00509955709003,44.98080611823618],[-93.01135695681346,44.97868284402402],[-93.01578606440371,44.97717601930892],[-93.01611886208073,44.97706125186195],[-93.02529089611495,44.97702366087582],[-93.02526817101352,44.97998951686172],[-93.02523408336137,44.98365442777838],[-93.02523087022615,44.98473845883355]]],"type":"Polygon"} +},{ + "id": 1108800237, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000218, + "geom:area_square_m":1905112.332033, + "geom:bbox":"-93.0354717416,44.9847313527,-93.0050646103,44.9919806404", + "geom:latitude":44.988332, + "geom:longitude":-93.020159, + "iso:country":"US", + "lbl:latitude":44.988342, + "lbl:longitude":-93.020159, + "lbl:max_zoom":18.0, + "mps:latitude":44.988342, + "mps:longitude":-93.020159, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:bar_x_preferred":[ + "Hillcrest" + ], + "name:cat_x_preferred":[ + "Hillcrest" + ], + "name:ceb_x_preferred":[ + "Hillcrest" + ], + "name:deu_x_preferred":[ + "Hillcrest" + ], + "name:ita_x_preferred":[ + "Hillcrest" + ], + "name:nld_x_preferred":[ + "Hillcrest" + ], + "name:pol_x_preferred":[ + "Hillcrest" + ], + "name:por_x_preferred":[ + "Hillcrest" + ], + "name:srp_x_preferred":[ + "\u0425\u0438\u043b\u043a\u0440\u0435\u0441\u0442" + ], + "name:ukr_x_preferred":[ + "\u0413\u0456\u043b\u043b\u043a\u0440\u0435\u0441\u0442" + ], + "name:vol_x_preferred":[ + "Hillcrest" + ], + "reversegeo:latitude":44.988342, + "reversegeo:longitude":-93.020159, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"48cacf4c338c3d1b5de0ad64f8f88cbb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800237, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800237, + "wof:lastmodified":1566623862, + "wof:name":"Hillcrest", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781031 + ], + "wof:tags":[] +}, + "bbox": [ + -93.03547174155707, + 44.98473135267695, + -93.00506461026804, + 44.99198064044592 +], + "geometry": {"coordinates":[[[-93.0050873084804,44.98474566447127],[-93.0227115971023,44.98473135267695],[-93.02523087022615,44.98473845883355],[-93.03546016760228,44.98476731278686],[-93.03544901645562,44.98751197564687],[-93.03547174155707,44.99002727849387],[-93.03545469773097,44.99018799696869],[-93.03540356625274,44.99030853552905],[-93.03519335906449,44.99055764775047],[-93.0337933261965,44.99196881685526],[-93.03033989185391,44.99195732042215],[-93.02522168601821,44.99194009572936],[-93.0251753166133,44.99194019445252],[-93.02013229246921,44.99195093134439],[-93.01504313822582,44.99196149768282],[-93.01005375524505,44.99197117813494],[-93.00506461026804,44.99198064044592],[-93.00507582831013,44.98836659657139],[-93.0050872871068,44.98475255128076],[-93.0050873084804,44.98474566447127]]],"type":"Polygon"} +},{ + "id": 1108800239, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000071, + "geom:area_square_m":617479.984874, + "geom:bbox":"-93.0452401022,44.9847673128,-93.0337933262,44.9919966995", + "geom:latitude":44.988422, + "geom:longitude":-93.040152, + "iso:country":"US", + "lbl:latitude":44.988385, + "lbl:longitude":-93.040151, + "lbl:max_zoom":18.0, + "mps:latitude":44.988385, + "mps:longitude":-93.040151, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.988385, + "reversegeo:longitude":-93.040151, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d49fe23d48c03b43335faf86574d5876", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800239, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800239, + "wof:lastmodified":1566623862, + "wof:name":"Frost Lake", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781033 + ], + "wof:tags":[] +}, + "bbox": [ + -93.04524010223079, + 44.98476731278686, + -93.0337933261965, + 44.99199669949226 +], + "geometry": {"coordinates":[[[-93.0337933261965,44.99196881685526],[-93.03519335906449,44.99055764775047],[-93.03540356625274,44.99030853552905],[-93.03545469773097,44.99018799696869],[-93.03547174155707,44.99002727849387],[-93.03544901645562,44.98751197564687],[-93.03546016760228,44.98476731278686],[-93.04524010223079,44.98479489921501],[-93.04487789034481,44.99199669949226],[-93.04057848757182,44.99199104482641],[-93.03545810047491,44.99197435886481],[-93.0337933261965,44.99196881685526]]],"type":"Polygon"} +},{ + "id": 1108800241, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000054, + "geom:area_square_m":468835.22858, + "geom:bbox":"-93.0455356199,44.9775438408,-93.0354601676,44.9847948992", + "geom:latitude":44.981554, + "geom:longitude":-93.041567, + "iso:country":"US", + "lbl:latitude":44.98148, + "lbl:longitude":-93.041973, + "lbl:max_zoom":18.0, + "mps:latitude":44.98148, + "mps:longitude":-93.041973, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.98148, + "reversegeo:longitude":-93.041973, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b5b111fd5b9f405caf412f3178e6c667", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800241, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800241, + "wof:lastmodified":1566623861, + "wof:name":"East Phalen", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781035 + ], + "wof:tags":[] +}, + "bbox": [ + -93.0455356198961, + 44.97754384080083, + -93.03546016760228, + 44.98479489921501 +], + "geometry": {"coordinates":[[[-93.03546016760228,44.98476731278686],[-93.03557765758966,44.98457327896599],[-93.03655353792136,44.98322119311241],[-93.03756556196907,44.98178669741785],[-93.03844505905815,44.98055385461791],[-93.03928841243123,44.97933518902254],[-93.04011971789902,44.97820740314575],[-93.04034059616339,44.9779034369104],[-93.04040485165848,44.97774719195681],[-93.04043296343757,44.97761935485993],[-93.04044049880871,44.97754384080083],[-93.0455356198961,44.97754973966573],[-93.04552248745614,44.97918027950515],[-93.04524010223079,44.98479489921501],[-93.03546016760228,44.98476731278686]]],"type":"Polygon"} +},{ + "id": 1108800245, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000092, + "geom:area_square_m":806165.706781, + "geom:bbox":"-93.0404404988,44.9775149603,-93.0252308702,44.9847673128", + "geom:latitude":44.980904, + "geom:longitude":-93.031721, + "iso:country":"US", + "lbl:latitude":44.981143, + "lbl:longitude":-93.031721, + "lbl:max_zoom":18.0, + "mps:latitude":44.981143, + "mps:longitude":-93.031721, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.981143, + "reversegeo:longitude":-93.031721, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"de5d41ffa0cf341fc691fc548f3befab", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800245, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800245, + "wof:lastmodified":1566623862, + "wof:name":"Prosperity Heights", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781037 + ], + "wof:tags":[] +}, + "bbox": [ + -93.0404404988087, + 44.97751496032485, + -93.02523087022615, + 44.98476731278686 +], + "geometry": {"coordinates":[[[-93.04044049880871,44.97754384080083],[-93.04043296343757,44.97761935485993],[-93.04040485165848,44.97774719195681],[-93.04034059616339,44.9779034369104],[-93.04011971789902,44.97820740314575],[-93.03928841243123,44.97933518902254],[-93.03844505905815,44.98055385461791],[-93.03756556196907,44.98178669741785],[-93.03655353792136,44.98322119311241],[-93.03557765758966,44.98457327896599],[-93.03546016760228,44.98476731278686],[-93.02523087022615,44.98473845883355],[-93.02523408336137,44.98365442777838],[-93.02526817101352,44.97998951686172],[-93.02528713166049,44.97751496032485],[-93.03546037900628,44.97753807507841],[-93.04044049880871,44.97754384080083]]],"type":"Polygon"} +},{ + "id": 1108800247, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":542847.006826, + "geom:bbox":"-93.0455559523,44.9696473915,-93.035460379,44.9775497397", + "geom:latitude":44.974302, + "geom:longitude":-93.040391, + "iso:country":"US", + "lbl:latitude":44.974211, + "lbl:longitude":-93.040391, + "lbl:max_zoom":18.0, + "mps:latitude":44.974211, + "mps:longitude":-93.040391, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.974211, + "reversegeo:longitude":-93.040391, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"9f0965f9c3d39d889ed0eddd81e334c0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800247, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800247, + "wof:lastmodified":1566623861, + "wof:name":"Phalen Village", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781039 + ], + "wof:tags":[] +}, + "bbox": [ + -93.04555595227413, + 44.96964739150994, + -93.03546037900628, + 44.97754973966573 +], + "geometry": {"coordinates":[[[-93.0354854356483,44.97166915083663],[-93.03566512499118,44.97166597277746],[-93.03600579804092,44.97164990534876],[-93.03646002877389,44.97162178734658],[-93.03681915494714,44.97159266511473],[-93.03708317656069,44.97156253865323],[-93.03734152029006,44.97153040374182],[-93.03759418613528,44.97149626038052],[-93.03783123779904,44.97146111278055],[-93.03805267528136,44.97142496094192],[-93.03826843487951,44.97138579642127],[-93.03847851659353,44.97134361921861],[-93.03868859830753,44.97130244620621],[-93.03889868002153,44.97126227738409],[-93.03913999009843,44.97120704518598],[-93.03941252853821,44.97113674961188],[-93.0397276511092,44.9710544032324],[-93.04008535781142,44.97096000604753],[-93.04080644910002,44.97076719379729],[-93.04189092497498,44.97047596648167],[-93.04310031430154,44.9701495889845],[-93.04495379198781,44.96964739150994],[-93.04495157350775,44.97002444549755],[-93.04485349855649,44.97036513577341],[-93.04417579075701,44.97124967429846],[-93.04398083482639,44.9717264686149],[-93.04397640824013,44.97247661385249],[-93.04406725037484,44.97336343405768],[-93.04457195547616,44.97434632098371],[-93.04479318708816,44.97456494296854],[-93.04555595227413,44.97502524669413],[-93.0455356198961,44.97754973966573],[-93.03546037900628,44.97753807507841],[-93.035471741557,44.9726670305683],[-93.0354854356483,44.97166915083663]]],"type":"Polygon"} +},{ + "id": 1108800249, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000076, + "geom:area_square_m":662451.120727, + "geom:bbox":"-93.0459530585,44.9630496609,-93.0354854356,44.9716691508", + "geom:latitude":44.966897, + "geom:longitude":-93.040185, + "iso:country":"US", + "lbl:latitude":44.966993, + "lbl:longitude":-93.040185, + "lbl:max_zoom":18.0, + "mps:latitude":44.966993, + "mps:longitude":-93.040185, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.966993, + "reversegeo:longitude":-93.040185, + "src:geom":"mz", + "wof:belongsto":[ + 85873321, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"836ea3d6809e206fbfc5ffcdd7417878", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800249, + "neighbourhood_id":85873321, + "region_id":85688727 + } + ], + "wof:id":1108800249, + "wof:lastmodified":1566623861, + "wof:name":"Parkway/Greenbrier", + "wof:parent_id":85873321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781043 + ], + "wof:tags":[] +}, + "bbox": [ + -93.04595305852973, + 44.96304966085955, + -93.0354854356483, + 44.97166915083663 +], + "geometry": {"coordinates":[[[-93.04495379198781,44.96964739150994],[-93.04310031430154,44.9701495889845],[-93.04189092497498,44.97047596648167],[-93.04080644910002,44.97076719379729],[-93.04008535781142,44.97096000604753],[-93.0397276511092,44.9710544032324],[-93.03941252853821,44.97113674961188],[-93.03913999009843,44.97120704518598],[-93.03889868002153,44.97126227738409],[-93.03868859830753,44.97130244620621],[-93.03847851659353,44.97134361921861],[-93.03826843487951,44.97138579642127],[-93.03805267528136,44.97142496094192],[-93.03783123779904,44.97146111278055],[-93.03759418613528,44.97149626038052],[-93.03734152029006,44.97153040374182],[-93.03708317656069,44.97156253865323],[-93.03681915494714,44.97159266511473],[-93.03646002877389,44.97162178734658],[-93.03600579804092,44.97164990534876],[-93.03566512499118,44.97166597277746],[-93.0354854356483,44.97166915083663],[-93.03552855431057,44.96852712131409],[-93.03555127941203,44.96505419027213],[-93.03552957019036,44.96304966085955],[-93.03958130718776,44.96305147706018],[-93.04595305852973,44.9630713909462],[-93.04594465805297,44.96450348832913],[-93.0456524788024,44.96518458690078],[-93.0451693731499,44.96566053062944],[-93.04497283835001,44.96641010719143],[-93.04495839459847,44.96886512948375],[-93.04495379198781,44.96964739150994]]],"type":"Polygon"} +},{ + "id": 1108800251, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000095, + "geom:area_square_m":828510.607033, + "geom:bbox":"-93.1670551744,44.9674611043,-93.146587561,44.9735643295", + "geom:latitude":44.971112, + "geom:longitude":-93.155732, + "iso:country":"US", + "lbl:latitude":44.971112, + "lbl:longitude":-93.155732, + "lbl:max_zoom":18.0, + "mps:latitude":44.971112, + "mps:longitude":-93.155732, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Energy Park" + ], + "name:eng_x_preferred":[ + "Energy Park" + ], + "reversegeo:latitude":44.971112, + "reversegeo:longitude":-93.155732, + "src:geom":"mz", + "wof:belongsto":[ + 420525031, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5376959" + }, + "wof:country":"US", + "wof:geomhash":"b16f8520df55bebdf0e54b6944e2d833", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800251, + "neighbourhood_id":420525031, + "region_id":85688727 + } + ], + "wof:id":1108800251, + "wof:lastmodified":1566623864, + "wof:name":"Energy Park", + "wof:parent_id":420525031, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781017 + ], + "wof:tags":[] +}, + "bbox": [ + -93.16705517443833, + 44.96746110429428, + -93.14658756101126, + 44.97356432949158 +], + "geometry": {"coordinates":[[[-93.1670433138741,44.97343013879578],[-93.14658877795647,44.97356432949158],[-93.14658756101126,44.96746110429428],[-93.16705517443833,44.97027656268315],[-93.1670433138741,44.97343013879578]]],"type":"Polygon"} +},{ + "id": 1108800255, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000104, + "geom:area_square_m":907042.852826, + "geom:bbox":"-93.1263159552,44.9413207332,-93.116116437,44.9517410337", + "geom:latitude":44.946536, + "geom:longitude":-93.121281, + "iso:country":"US", + "lbl:latitude":44.94653, + "lbl:longitude":-93.121213, + "lbl:max_zoom":18.0, + "mps:latitude":44.94653, + "mps:longitude":-93.121213, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.94653, + "reversegeo:longitude":-93.121213, + "src:geom":"mz", + "wof:belongsto":[ + 85873309, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"f95117fa581087a9a4ae5fa185ef4a9d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800255, + "neighbourhood_id":85873309, + "region_id":85688727 + } + ], + "wof:id":1108800255, + "wof:lastmodified":1566623864, + "wof:name":"Ramsey Hill", + "wof:parent_id":85873309, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781015 + ], + "wof:tags":[] +}, + "bbox": [ + -93.12631595522662, + 44.94132073319854, + -93.11611643699405, + 44.95174103367444 +], + "geometry": {"coordinates":[[[-93.11613440589605,44.95126647359849],[-93.11611643699405,44.94243073233967],[-93.11795853286192,44.94132073319854],[-93.12623089814777,44.94134261456671],[-93.12623656112045,44.94219239412877],[-93.12625073863941,44.94345679283379],[-93.12627342266974,44.94513460497532],[-93.12629327119629,44.94689665243967],[-93.12631028421903,44.94874293522684],[-93.12631595522662,44.95018180584569],[-93.12631028421903,44.95121326429623],[-93.12630744871524,44.95172899352149],[-93.12514205665681,44.95173300690581],[-93.12281127253993,44.95174103367444],[-93.12133113956062,44.95173501359587],[-93.12070165771884,44.95171494667007],[-93.12006934037328,44.95167681947373],[-93.11943418752389,44.95162063200684],[-93.11853816832568,44.95153033052503],[-93.11738128277864,44.95140591502828],[-93.11638602094771,44.95129554625723],[-93.11613440589605,44.95126647359849]]],"type":"Polygon"} +},{ + "id": 1108800257, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000066, + "geom:area_square_m":576136.525516, + "geom:bbox":"-93.1161344059,44.9415827459,-93.1056606105,44.9512664736", + "geom:latitude":44.947177, + "geom:longitude":-93.112235, + "iso:country":"US", + "lbl:latitude":44.947511, + "lbl:longitude":-93.112334, + "lbl:max_zoom":18.0, + "mps:latitude":44.947511, + "mps:longitude":-93.112334, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.947511, + "reversegeo:longitude":-93.112334, + "src:geom":"mz", + "wof:belongsto":[ + 85873309, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1a0722c70f1513afc72c336d7650f1a4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800257, + "neighbourhood_id":85873309, + "region_id":85688727 + } + ], + "wof:id":1108800257, + "wof:lastmodified":1566623864, + "wof:name":"Cathedral Hill", + "wof:parent_id":85873309, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780993 + ], + "wof:tags":[] +}, + "bbox": [ + -93.11613440589605, + 44.94158274587385, + -93.10566061047254, + 44.95126647359849 +], + "geometry": {"coordinates":[[[-93.11611643699405,44.94243073233967],[-93.11613440589605,44.95126647359849],[-93.1155523828329,44.95119922421186],[-93.1148321648698,44.95112898933309],[-93.11422536705835,44.95108484162093],[-93.11354201064454,44.95104069387479],[-93.11278209562832,44.9509965460947],[-93.11206471316899,44.95096845204692],[-93.11138986326652,44.95095641173148],[-93.1107745589437,44.95094838485395],[-93.10992571652048,44.95094465379309],[-93.10566061047254,44.95092469556354],[-93.1079542117884,44.94828409836263],[-93.1080332898166,44.9467554515586],[-93.10842952472792,44.94613060219565],[-93.11005186719265,44.94506877262531],[-93.1095194088452,44.94480596747938],[-93.10854944915818,44.94451557509338],[-93.11372935545052,44.94222942441584],[-93.11478649590666,44.9420362267289],[-93.11612037511505,44.94158274587385],[-93.11611643699405,44.94243073233967]]],"type":"Polygon"} +},{ + "id": 1108800259, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-93.1364144751,44.939961817,-93.1364144751,44.939961817", + "geom:latitude":44.939962, + "geom:longitude":-93.136414, + "iso:country":"US", + "lbl:latitude":44.939962, + "lbl:longitude":-93.136414, + "lbl:max_zoom":18.0, + "mps:latitude":44.939962, + "mps:longitude":-93.136414, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.939962, + "reversegeo:longitude":-93.136414, + "src:geom":"mz", + "wof:belongsto":[ + 85873307, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ec65d7b72386347b8615a5dcd1b43485", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800259, + "neighbourhood_id":85873307, + "region_id":85688727 + } + ], + "wof:id":1108800259, + "wof:lastmodified":1613672351, + "wof:name":"Victoria and Grand", + "wof:parent_id":85873307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780999 + ], + "wof:tags":[] +}, + "bbox": [ + -93.13641447508923, + 44.93996181702958, + -93.13641447508923, + 44.93996181702958 +], + "geometry": {"coordinates":[-93.13641447508923,44.93996181702958],"type":"Point"} +},{ + "id": 1108800263, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000189, + "geom:area_square_m":1655285.344697, + "geom:bbox":"-93.1466145937,44.9340932206,-93.1122949288,44.9413965318", + "geom:latitude":44.938086, + "geom:longitude":-93.133168, + "iso:country":"US", + "lbl:latitude":44.937739, + "lbl:longitude":-93.133167, + "lbl:max_zoom":18.0, + "mps:latitude":44.937739, + "mps:longitude":-93.133167, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Crocus Hill" + ], + "name:ces_x_preferred":[ + "Crocus Hill" + ], + "name:fra_x_preferred":[ + "Crocus Hill" + ], + "name:pol_x_preferred":[ + "Crocus Hill" + ], + "reversegeo:latitude":44.937739, + "reversegeo:longitude":-93.133167, + "src:geom":"mz", + "wof:belongsto":[ + 85873307, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"c95e45fcfd408378efc984b594dd441e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800263, + "neighbourhood_id":85873307, + "region_id":85688727 + } + ], + "wof:id":1108800263, + "wof:lastmodified":1566623870, + "wof:name":"Crocus Hill", + "wof:parent_id":85873307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780995 + ], + "wof:tags":[] +}, + "bbox": [ + -93.14661459368291, + 44.93409322062574, + -93.11229492879083, + 44.9413965318118 +], + "geometry": {"coordinates":[[[-93.12692059264802,44.93409322062574],[-93.14656945506603,44.93417054029428],[-93.14661459368291,44.9413965318118],[-93.11795853286192,44.94132073319854],[-93.11229492879083,44.94130490014756],[-93.11567644533642,44.93990037664859],[-93.11803094286083,44.9390070076942],[-93.11996312942006,44.93819822279491],[-93.12141218435302,44.93760231366458],[-93.12231826607778,44.93713355486141],[-93.12364751938554,44.93636612929225],[-93.12534022082754,44.93517147801564],[-93.12692059264802,44.93409322062574]]],"type":"Polygon"} +},{ + "id": 1108800561, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":154092.312467, + "geom:bbox":"-93.0846262235,44.9285269653,-93.076112929,44.9356291343", + "geom:latitude":44.932032, + "geom:longitude":-93.080307, + "iso:country":"US", + "lbl:latitude":44.932272, + "lbl:longitude":-93.081081, + "lbl:max_zoom":18.0, + "mps:latitude":44.932272, + "mps:longitude":-93.081081, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.932272, + "reversegeo:longitude":-93.081081, + "src:geom":"mz", + "wof:belongsto":[ + 1108800545, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"fc8d70be921a2de97ba22a04d06ef95e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800561, + "neighbourhood_id":1108800545, + "region_id":85688727 + } + ], + "wof:id":1108800561, + "wof:lastmodified":1566623874, + "wof:name":"District del Sol", + "wof:parent_id":1108800545, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780977 + ], + "wof:tags":[] +}, + "bbox": [ + -93.08462622346298, + 44.92852696525784, + -93.07611292897552, + 44.93562913430978 +], + "geometry": {"coordinates":[[[-93.07869489528485,44.92970411853651],[-93.08277588179516,44.93225642090498],[-93.08462622346298,44.93227339814631],[-93.0845382927218,44.93238092055822],[-93.08446634938811,44.93249410182695],[-93.08442638086939,44.93262991905501],[-93.08440239975815,44.93298077874088],[-93.08441039346189,44.93350140529225],[-93.08435443753569,44.93367117379943],[-93.08421055086829,44.9338183060997],[-93.0823480178959,44.93383528287932],[-93.08231604308094,44.93309961782592],[-93.08158062233647,44.93309395882745],[-93.08158861604022,44.93334295423278],[-93.08086918270325,44.93334861320672],[-93.08086778350297,44.93479729219126],[-93.0815462992955,44.93479562985566],[-93.08153266011402,44.93561781681078],[-93.08046949751605,44.93562913430978],[-93.07943830973306,44.93532356105419],[-93.07943596150706,44.93479297700912],[-93.08006981232883,44.93479630168117],[-93.08005382492135,44.9340107093082],[-93.07936636639937,44.93400738459351],[-93.07937011382565,44.93349574633339],[-93.08023907930774,44.93349507449266],[-93.08022169269999,44.93226773906643],[-93.07937436010312,44.93227905722564],[-93.07934238528814,44.9320583527186],[-93.07932639788065,44.93194517059111],[-93.07926244825069,44.9318263291172],[-93.07903862454586,44.93163391859044],[-93.07831119750514,44.9311302526888],[-93.07797546194789,44.93089256612256],[-93.07775163824307,44.93079635937561],[-93.07739192157459,44.93065487857264],[-93.07629678416163,44.93029834540344],[-93.07656057638519,44.92987389826867],[-93.07611292897552,44.92973308707416],[-93.07632875897662,44.92936455756659],[-93.07666399568265,44.92945843233457],[-93.07713612305477,44.92852696525784],[-93.07847107158004,44.92883257467763],[-93.07855900232121,44.92886087176388],[-93.07824724787521,44.92932494198934],[-93.07865492676615,44.92932494198934],[-93.07869489528485,44.92970411853651]]],"type":"Polygon"} +},{ + "id": 1108800563, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000033, + "geom:area_square_m":285804.000872, + "geom:bbox":"-93.0917313468,44.9374483512,-93.0825870373,44.9441710152", + "geom:latitude":44.940581, + "geom:longitude":-93.087311, + "iso:country":"US", + "lbl:latitude":44.940386, + "lbl:longitude":-93.087242, + "lbl:max_zoom":18.0, + "mps:latitude":44.940386, + "mps:longitude":-93.087242, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.940386, + "reversegeo:longitude":-93.087242, + "src:geom":"mz", + "wof:belongsto":[ + 1108800545, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"8969bb9aca50b73254b9a739f6a9ff82", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800563, + "neighbourhood_id":1108800545, + "region_id":85688727 + } + ], + "wof:id":1108800563, + "wof:lastmodified":1566623874, + "wof:name":"West Side Flats", + "wof:parent_id":1108800545, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780981 + ], + "wof:tags":[] +}, + "bbox": [ + -93.09173134678814, + 44.93744835121926, + -93.08258703727635, + 44.94417101522119 +], + "geometry": {"coordinates":[[[-93.08774379516787,44.94417101522119],[-93.08709871711653,44.94351299333013],[-93.08666010926642,44.94307413130734],[-93.08625738751311,44.94268042218621],[-93.08596232405031,44.94239184235629],[-93.08577491887797,44.9422083918176],[-93.08564034601488,44.94207080369376],[-93.08555860546099,44.94197907798477],[-93.08546490287483,44.94186759571438],[-93.08535923825639,44.94173635688261],[-93.08522067804918,44.94156560465893],[-93.08504922225323,44.94135533904335],[-93.0848049974276,44.94106392876571],[-93.08448800357228,44.94069137382601],[-93.08417898440514,44.9403272837889],[-93.0838779399262,44.93997165865436],[-93.0835360251703,44.93956381545041],[-93.08315324013745,44.93910375417705],[-93.08286814503487,44.93875588433238],[-93.08268073986252,44.93852020591638],[-93.08258703727635,44.93840236670838],[-93.08273157849969,44.93834309392672],[-93.08302066094637,44.9382245483634],[-93.08324494905155,44.93813422783653],[-93.08340444281524,44.93807213234609],[-93.08356692708699,44.93802485507098],[-93.0837324018668,44.93799239601117],[-93.08392778172731,44.93795993693301],[-93.08415306666852,44.9379274778365],[-93.08438532946188,44.93789572435536],[-93.08462457010741,44.93786467648958],[-93.08487078860509,44.93783433424145],[-93.08512398495495,44.93780469761097],[-93.08547287756299,44.93776165389106],[-93.08591746642925,44.93770520308171],[-93.08656441300818,44.93761982106259],[-93.0874137172998,44.93750550783371],[-93.08783836944559,44.93744835121926],[-93.08803673981417,44.93768191570241],[-93.08843348055133,44.93814904466873],[-93.08884218332076,44.93863592705964],[-93.08926284812249,44.93914256287515],[-93.08958283248587,44.93955534881632],[-93.08980213641092,44.93987428488315],[-93.08996761119074,44.94010431342791],[-93.09007925682532,44.94024543445061],[-93.09024074426105,44.94047898841711],[-93.09045207349791,44.94080497532743],[-93.09060060206535,44.94103288340953],[-93.09068632996333,44.94116271266344],[-93.09077305469734,44.94130030310049],[-93.09086077626736,44.94144565472069],[-93.09094351365727,44.94158395012087],[-93.09102126686706,44.94171518930102],[-93.09108705804458,44.94183019978252],[-93.09114088718982,44.94192898156536],[-93.09119671000713,44.94202352969449],[-93.09125452649646,44.94211384416991],[-93.09131832400193,44.9422055696602],[-93.09138810252355,44.94229870616537],[-93.09144691584891,44.9423777309895],[-93.09149476397799,44.94244264413258],[-93.09158248554802,44.94254565821514],[-93.09173134678814,44.94271029284327],[-93.08986498644425,44.94339404879545],[-93.08774379516787,44.94417101522119]]],"type":"Polygon"} +},{ + "id": 1108800565, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000068, + "geom:area_square_m":591370.242696, + "geom:bbox":"-93.0977655048,44.9295830479,-93.0843544375,44.9359267391", + "geom:latitude":44.932398, + "geom:longitude":-93.090676, + "iso:country":"US", + "lbl:latitude":44.932593, + "lbl:longitude":-93.090547, + "lbl:max_zoom":18.0, + "mps:latitude":44.932593, + "mps:longitude":-93.090547, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.932593, + "reversegeo:longitude":-93.090547, + "src:geom":"mz", + "wof:belongsto":[ + 1108800545, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"bfa5b2ab325fd7aa3698d0af888d8b85", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800565, + "neighbourhood_id":1108800545, + "region_id":85688727 + } + ], + "wof:id":1108800565, + "wof:lastmodified":1566623874, + "wof:name":"The Bluffs", + "wof:parent_id":1108800545, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780985 + ], + "wof:tags":[] +}, + "bbox": [ + -93.09776550475912, + 44.92958304791023, + -93.0843544375357, + 44.93592673908351 +], + "geometry": {"coordinates":[[[-93.09775705513779,44.92958304791023],[-93.09776550475912,44.93067776252458],[-93.09776268821868,44.93111445086932],[-93.09775142205692,44.93125801781592],[-93.09774578897603,44.93132980128922],[-93.0975021582276,44.93154514955586],[-93.09701489673073,44.93197584608915],[-93.09665860436452,44.93228790062833],[-93.09643328112897,44.93248131317341],[-93.09629104583652,44.93260693150405],[-93.09623189848719,44.93266475562024],[-93.09619387519119,44.93271560092495],[-93.09617697594854,44.93275946741818],[-93.09617134286765,44.93280133995083],[-93.09617697594854,44.93284121852288],[-93.09618260902943,44.93288907276283],[-93.09618824211032,44.93294490267067],[-93.09620936616365,44.93299275684416],[-93.09624598118941,44.93303263528331],[-93.09628400448541,44.93307251369476],[-93.09632343605163,44.93311239207851],[-93.09636145934763,44.93314030693939],[-93.09639807437341,44.93315625827739],[-93.09644595556097,44.93316921873726],[-93.0965051029103,44.93317918831901],[-93.09656284198941,44.93319713355806],[-93.09661917279828,44.9332230544544],[-93.09667268706673,44.93326093880849],[-93.09672338479471,44.93331078662031],[-93.09676985771205,44.93337259782757],[-93.09681210581871,44.93344637243025],[-93.09682900506138,44.93351416523544],[-93.09682055544005,44.93357597624311],[-93.09679520657605,44.9336347963384],[-93.09675295846939,44.93369062552128],[-93.09667409533695,44.93373349433582],[-93.09655861717873,44.933763402782],[-93.0964487721014,44.93378334174266],[-93.09634456010497,44.9337933112178],[-93.09625302254052,44.93380627153188],[-93.09617415940809,44.9338222226849],[-93.09606853914143,44.9338531280192],[-93.09593616174055,44.93389898753477],[-93.09582913320367,44.93394983173088],[-93.09574745353078,44.93400566060751],[-93.09550382278235,44.93419507894495],[-93.09509824095838,44.93451808674318],[-93.09489545004639,44.9346795906423],[-93.09480672902239,44.93466064892102],[-93.09462928697442,44.93462276547845],[-93.0944631110882,44.9345918605519],[-93.09430820136377,44.93456793414137],[-93.09417441569266,44.93456594027452],[-93.09406175407491,44.93458587895135],[-93.0939279684038,44.9346167838779],[-93.09377305867937,44.93465865505416],[-93.09355055198426,44.93472345558511],[-93.09326044831852,44.93481118547074],[-93.09299428524652,44.9348789766895],[-93.09275206276831,44.93492682924141],[-93.09249998239855,44.93498664485653],[-93.09223804413723,44.93505842353486],[-93.09177472323415,44.93518303891077],[-93.09111001968932,44.93536049098426],[-93.09048474771069,44.9355249826408],[-93.08989890729831,44.93567651388039],[-93.08948910066366,44.93577919613727],[-93.08925532780678,44.93583302941144],[-93.0890271880308,44.93587589662447],[-93.08880468133569,44.93590779777635],[-93.08857935810016,44.9359247452627],[-93.08835121832416,44.93592673908351],[-93.08806815600951,44.93590979159599],[-93.08773017115621,44.93587390280013],[-93.08743020959889,44.93583302941664],[-93.08716827133757,44.93578717144553],[-93.08686549323983,44.93573333811715],[-93.08652187530562,44.93567152943149],[-93.08625430396341,44.93561071759679],[-93.08606277921321,44.93555090261302],[-93.085858580031,44.93546516763626],[-93.08564170641681,44.93535351266651],[-93.08543469069416,44.93521095276557],[-93.08523753286306,44.93503748793343],[-93.08505164119374,44.93483311760999],[-93.0848770156862,44.93459784179525],[-93.08473759693422,44.93440044882611],[-93.08463338493779,44.9342409387026],[-93.08456297142668,44.93410037010854],[-93.08447847521333,44.93395057763949],[-93.08435443753569,44.93367117379943],[-93.08441039346189,44.93350140529225],[-93.08440239975815,44.93298077874088],[-93.08442638086939,44.93262991905501],[-93.08446634938811,44.93249410182695],[-93.0845382927218,44.93238092055822],[-93.08462622346298,44.93227339814631],[-93.08476717060887,44.93210994077372],[-93.08483054276887,44.93202370221641],[-93.08491222244174,44.93193198015364],[-93.0849861566284,44.93184623984547],[-93.08505234532885,44.93176648129189],[-93.08509740997594,44.93170566535045],[-93.08512135056972,44.93166379202113],[-93.08514388289328,44.93161593674277],[-93.0851650069466,44.93156209951536],[-93.08517979378394,44.93150726524895],[-93.08518824340527,44.93145143394355],[-93.08519246821594,44.93136070787383],[-93.08519246821594,44.93123508703979],[-93.08518824340527,44.93092103220707],[-93.08517979378394,44.93041854337565],[-93.08517204829772,44.93004466616048],[-93.0851650069466,44.92979940056156],[-93.08516148627105,44.9296767677621],[-93.08550299179991,44.92967776478095],[-93.08618600285764,44.92967975881866],[-93.08707180482736,44.92967975881866],[-93.08816039770905,44.92967776478095],[-93.08906450719165,44.92967726627153],[-93.08978413327517,44.92967826329041],[-93.09026153688046,44.92967876179984],[-93.09049671800756,44.92967876179984],[-93.09065655667776,44.92967527223343],[-93.09074105289108,44.92966829310062],[-93.0908311821853,44.92965682737923],[-93.09092694456039,44.92964087506928],[-93.09100792009818,44.92962641828512],[-93.09107410879861,44.92961345702677],[-93.09116142155239,44.92960298831664],[-93.09126985835948,44.92959501215473],[-93.09146419965013,44.92959152258396],[-93.09174444542434,44.92959251960433],[-93.09226198473097,44.92959351662466],[-93.09301681757003,44.92959451364499],[-93.09398711575307,44.92959501215515],[-93.0951728792801,44.92959501215515],[-93.09626288043201,44.9295930181144],[-93.09775705513779,44.92958304791023]]],"type":"Polygon"} +},{ + "id": 1108800569, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000391, + "geom:area_square_m":3423831.754397, + "geom:bbox":"-93.1291970665,44.920781707,-93.0898649864,44.9465620297", + "geom:latitude":44.934186, + "geom:longitude":-93.112756, + "iso:country":"US", + "lbl:latitude":44.932538, + "lbl:longitude":-93.114695, + "lbl:max_zoom":18.0, + "mps:latitude":44.932538, + "mps:longitude":-93.114695, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.932538, + "reversegeo:longitude":-93.114695, + "src:geom":"mz", + "wof:belongsto":[ + 1108800553, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d1fb5a766d74e39012f91c41bb52dc77", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800569, + "neighbourhood_id":1108800553, + "region_id":85688727 + } + ], + "wof:id":1108800569, + "wof:lastmodified":1566623874, + "wof:name":"Uppertown", + "wof:parent_id":1108800553, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780989 + ], + "wof:tags":[] +}, + "bbox": [ + -93.12919706654338, + 44.92078170703476, + -93.08986498644425, + 44.94656202969599 +], + "geometry": {"coordinates":[[[-93.12621869599796,44.92078170703476],[-93.12621329405486,44.92277067820062],[-93.12620533770203,44.92403681549881],[-93.12619340317278,44.92510434342208],[-93.12618743590815,44.92594018927827],[-93.12618743590816,44.92654435306736],[-93.12618743590816,44.9268464349619],[-93.12618246318765,44.92686192616982],[-93.12617251774661,44.92689290858566],[-93.12615262686452,44.92692107440581],[-93.12612279054137,44.92694642363028],[-93.12606709607152,44.92698092671514],[-93.12598554345499,44.92702458366038],[-93.12591890900001,44.92706401571579],[-93.12586719270658,44.92709922288136],[-93.12581945458959,44.92714287972706],[-93.12577569464898,44.9271949862529],[-93.12574188014943,44.92727103348257],[-93.12571801109092,44.92737102141605],[-93.12570806564989,44.9274900208538],[-93.1257120438263,44.92762803179578],[-93.12571602200272,44.92835609322069],[-93.12572000017911,44.92967420512849],[-93.12572198926732,44.93084724740157],[-93.12572198926732,44.93187522003993],[-93.12572198926732,44.93242581838122],[-93.12572198926732,44.93249904242543],[-93.12572198926732,44.93253565444755],[-93.12666680616641,44.93253987890563],[-93.12919706654338,44.93255119218645],[-93.12866477769164,44.93286757103076],[-93.12715356279031,44.9339342695648],[-93.12534022082754,44.93517147801564],[-93.12364751938554,44.93636612929225],[-93.12231826607778,44.93713355486141],[-93.12141218435302,44.93760231366458],[-93.11996312942006,44.93819822279491],[-93.11803094286083,44.9390070076942],[-93.11567644533642,44.93990037664859],[-93.11229492879083,44.94130490014756],[-93.11013304219202,44.94247397351421],[-93.10919734297542,44.94313403466542],[-93.10761270377532,44.94448030181126],[-93.10628091335694,44.94544506027605],[-93.10527326035164,44.94613038886448],[-93.10469725381857,44.94656202969599],[-93.10462761154892,44.94612881334741],[-93.10441474200712,44.94564429968396],[-93.10405778259447,44.94528679991402],[-93.10126725604759,44.94380248184883],[-93.09997751759191,44.94349360609799],[-93.09868690959075,44.94336302598531],[-93.09721671834797,44.94328292816367],[-93.09484767034813,44.94363358842378],[-93.09283765923789,44.94390869449967],[-93.08986498644425,44.94339404879545],[-93.09430607897319,44.9417670192345],[-93.10144598917051,44.93658122632948],[-93.10518474237671,44.93191464946633],[-93.110623928659,44.92672411800296],[-93.11562456299491,44.92432267119172],[-93.12253272540313,44.92252870793213],[-93.12621869599796,44.92078170703476]]],"type":"Polygon"} +},{ + "id": 1108800571, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000095, + "geom:area_square_m":829422.139248, + "geom:bbox":"-93.2077704268,44.9483910222,-93.1924191665,44.9599608038", + "geom:latitude":44.95501, + "geom:longitude":-93.202094, + "iso:country":"US", + "lbl:latitude":44.955755, + "lbl:longitude":-93.203896, + "lbl:max_zoom":18.0, + "mps:latitude":44.955755, + "mps:longitude":-93.203896, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.955755, + "reversegeo:longitude":-93.203896, + "src:geom":"mz", + "wof:belongsto":[ + 1108800559, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"e6cda6ddb80429eacd88f861b4b6df76", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800571, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800571, + "wof:lastmodified":1566623873, + "wof:name":"Desnoyer Park", + "wof:parent_id":1108800559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781001 + ], + "wof:tags":[] +}, + "bbox": [ + -93.20777042679448, + 44.94839102215807, + -93.19241916646762, + 44.95996080381587 +], + "geometry": {"coordinates":[[[-93.19242263575072,44.95534873755998],[-93.19255693349052,44.9553788711661],[-93.19276743033495,44.95543227175915],[-93.19293821079363,44.95548848285191],[-93.19306927486656,44.95554750444438],[-93.19320232475879,44.95560652597614],[-93.19333736047031,44.95566554744721],[-93.19344658053109,44.95570630035174],[-93.19352998494114,44.95572878468973],[-93.19363126172478,44.95573581104638],[-93.19375041088199,44.9557273794217],[-93.19384374438849,44.95571332670907],[-93.19391126224423,44.95569365290852],[-93.1939767942807,44.95566976328185],[-93.19404034049788,44.95564165782908],[-93.19410587253435,44.95562198400827],[-93.19417339039011,44.95561074181945],[-93.19569254214463,44.95560512072504],[-93.19866332779787,44.95560512072504],[-93.20014872062451,44.95560512072504],[-93.20014872062451,44.95500505623022],[-93.20014872062451,44.95380492724057],[-93.20015467808237,44.95291255057569],[-93.2001665929981,44.95232792623557],[-93.20017255045596,44.95203561406551],[-93.19994616705725,44.95185291593498],[-93.19949340025984,44.95148751967393],[-93.19913992442676,44.95120363388548],[-93.19888573955804,44.95100125856963],[-93.19871694491864,44.95085790917697],[-93.1986335405086,44.95077358570748],[-93.19856403683355,44.95068785671668],[-93.19850843389351,44.95060072220458],[-93.19845283095347,44.95047985787836],[-93.19839722801345,44.95032526373805],[-93.1983138236034,44.9500751008041],[-93.1982026177233,44.94972936907651],[-93.19807751110822,44.94923465796712],[-93.19789532482483,44.94839102215807],[-93.19845589546409,44.9483967601367],[-93.20268814035711,44.9484080633173],[-93.20501832962455,44.95195308446824],[-93.20775122178088,44.95304755268744],[-93.20775879793382,44.95325445990252],[-93.20776096274675,44.95412708417891],[-93.20776427732977,44.95557218597321],[-93.20776966779728,44.95918480721753],[-93.20777042679448,44.95971676033648],[-93.20151289077789,44.95996080381587],[-93.19241916646762,44.95636371200128],[-93.19242263575072,44.95534873755998]]],"type":"Polygon"} +},{ + "id": 1108800577, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000063, + "geom:area_square_m":549706.575614, + "geom:bbox":"-93.2026881404,44.9414864719,-93.192438186,44.9484080633", + "geom:latitude":44.945078, + "geom:longitude":-93.197026, + "iso:country":"US", + "lbl:latitude":44.944937, + "lbl:longitude":-93.197026, + "lbl:max_zoom":18.0, + "mps:latitude":44.944937, + "mps:longitude":-93.197026, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.944937, + "reversegeo:longitude":-93.197026, + "src:geom":"mz", + "wof:belongsto":[ + 85867015, + 102191575, + 1108799987, + 404511883, + 85633793, + 85969169, + 102087709, + 85688727, + 1108800559, + 404514465, + 85953191, + 102087007 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"7afed1b1c1013664e01ee024ff185809", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087709, + "localadmin_id":404511883, + "locality_id":85969169, + "macrohood_id":1108799987, + "microhood_id":1108800577, + "neighbourhood_id":85867015, + "region_id":85688727 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800577, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800577, + "wof:lastmodified":1566623873, + "wof:name":"Shadow Falls", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781013 + ], + "wof:tags":[] +}, + "bbox": [ + -93.20268814035711, + 44.94148647191623, + -93.19243818601025, + 44.9484080633173 +], + "geometry": {"coordinates":[[[-93.19244649349218,44.94836890998975],[-93.19243818601025,44.94441860910619],[-93.19244900204589,44.94148647191623],[-93.20045079021502,44.94149547557926],[-93.20160201470435,44.9450962662848],[-93.20263530033415,44.94832767542709],[-93.20268814035711,44.9484080633173],[-93.19845589546409,44.9483967601367],[-93.19573508110075,44.94836890998975],[-93.19244649349218,44.94836890998975]]],"type":"Polygon"} +},{ + "id": 1108800579, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000145, + "geom:area_square_m":1268198.468356, + "geom:bbox":"-93.1671108366,44.9414464063,-93.1568181304,44.9556921527", + "geom:latitude":44.948568, + "geom:longitude":-93.161919, + "iso:country":"US", + "lbl:latitude":44.948565, + "lbl:longitude":-93.161919, + "lbl:max_zoom":18.0, + "mps:latitude":44.948565, + "mps:longitude":-93.161919, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.948565, + "reversegeo:longitude":-93.161919, + "src:geom":"mz", + "wof:belongsto":[ + 1108800559, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"0d2961bc2293033c0ebbfe8c276ac3a0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800579, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800579, + "wof:lastmodified":1566623873, + "wof:name":"Snelling-Hamline", + "wof:parent_id":1108800559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781011 + ], + "wof:tags":[] +}, + "bbox": [ + -93.16711083655974, + 44.94144640631964, + -93.15681813044533, + 44.95569215269985 +], + "geometry": {"coordinates":[[[-93.15684782755257,44.95569215269985],[-93.15684390185898,44.95514765619021],[-93.15683795460967,44.95439430228241],[-93.15683002494396,44.95343751962187],[-93.15682407769465,44.95278516385293],[-93.15682011286179,44.95243723497556],[-93.15682011286179,44.95218470526027],[-93.15682407769465,44.95202757470705],[-93.15682606011109,44.95179748946781],[-93.15682606011107,44.95149444954256],[-93.15682407769464,44.95090940529316],[-93.15682011286177,44.95004235671961],[-93.15681813044533,44.94904200422249],[-93.15681813044534,44.94790834780179],[-93.15682011286178,44.94693602725824],[-93.15682407769465,44.94612504259185],[-93.15682804252752,44.94515548996678],[-93.15683200736039,44.94402736938302],[-93.15683597219326,44.94294272631527],[-93.15684167028679,44.94144640631964],[-93.16699253024026,44.94145782813195],[-93.1670037860724,44.94281223199312],[-93.16700775090527,44.94398807675734],[-93.16700775090527,44.94538559694878],[-93.16700576848885,44.94665680984073],[-93.16700180365601,44.94780171543317],[-93.16699783882314,44.94884838879004],[-93.16699387399028,44.94979682991134],[-93.16700576848886,44.95037908077474],[-93.1670335223189,44.95059514138026],[-93.16705731131609,44.95082943983715],[-93.16707713548041,44.9510819761454],[-93.16709299481187,44.95129803431087],[-93.16710488931045,44.95147761433357],[-93.16711083655974,44.95165438788257],[-93.16711083655974,44.9518283549579],[-93.16710488931045,44.95199951561055],[-93.16709299481187,44.95216786984057],[-93.16707515306399,44.9523937439838],[-93.16705136406681,44.95267713804027],[-93.16702955748607,44.95293387519087],[-93.16700973332175,44.95316395543558],[-93.16699783882316,44.95342489877655],[-93.16699387399031,44.95371670521377],[-93.16699189157387,44.95433117219631],[-93.16699189157387,44.95566541501512],[-93.15684782755257,44.95569215269985]]],"type":"Polygon"} +},{ + "id": 1108800581, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000025, + "geom:area_square_m":216377.348537, + "geom:bbox":"-93.1825126242,44.9519068285,-93.1766418447,44.9578365922", + "geom:latitude":44.954472, + "geom:longitude":-93.179765, + "iso:country":"US", + "lbl:latitude":44.954472, + "lbl:longitude":-93.179767, + "lbl:max_zoom":18.0, + "mps:latitude":44.954472, + "mps:longitude":-93.179767, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.954472, + "reversegeo:longitude":-93.179767, + "src:geom":"mz", + "wof:belongsto":[ + 1108800559, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"01990267e44155688d841776ab5b763f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800581, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800581, + "wof:lastmodified":1566623875, + "wof:name":"Iris Park", + "wof:parent_id":1108800559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781003 + ], + "wof:tags":[] +}, + "bbox": [ + -93.18251262416912, + 44.95190682850555, + -93.17664184471323, + 44.95783659224004 +], + "geometry": {"coordinates":[[[-93.1771817746358,44.95583470131937],[-93.1771922302872,44.95490982255723],[-93.17719503123159,44.9544460068647],[-93.1771922302872,44.95426166747105],[-93.17718522792622,44.9541367922556],[-93.17717402414863,44.95407138121834],[-93.17715861895445,44.95401588090022],[-93.17713901234366,44.95397029130122],[-93.17710820195529,44.95389695138235],[-93.17706618778935,44.95379586114359],[-93.17700736795702,44.95366404702757],[-93.17693174245829,44.95350150903428],[-93.17686171884839,44.95335185479356],[-93.17679729712725,44.95321508430541],[-93.17674828060032,44.95308822446367],[-93.17671466926754,44.95297127526836],[-93.17668806029577,44.95285135253162],[-93.176668453685,44.95272845625344],[-93.17665444896301,44.95259862197273],[-93.17664604612983,44.95246184968948],[-93.17664184471323,44.9522755214653],[-93.17664184471323,44.95203963730021],[-93.17664184471323,44.95192169521766],[-93.17677068815549,44.95191872187532],[-93.17702837504001,44.95191277519064],[-93.17733087703488,44.95190881073404],[-93.17767819414007,44.95190682850555],[-93.17798209660714,44.95191178407578],[-93.17824258443606,44.95192367744473],[-93.17848766707078,44.95194052637767],[-93.17871734451133,44.95196233087461],[-93.17896382761825,44.95199008203625],[-93.17922711639156,44.95202377986259],[-93.17947640044288,44.95205846877988],[-93.17971167977223,44.95209414878815],[-93.17993435485178,44.9521328021024],[-93.18014442568153,44.95217442872265],[-93.1803572974557,44.95222299306597],[-93.18057297017427,44.95227849513236],[-93.18076763580984,44.95232805051113],[-93.18094129436246,44.95237165920229],[-93.18114996472002,44.95242716110765],[-93.18139364688257,44.95249455622725],[-93.18176477201516,44.95260655075275],[-93.1822633401178,44.95276314468418],[-93.18251262416912,44.95284144164989],[-93.18248461472515,44.95294847984839],[-93.18242859583721,44.95316255624537],[-93.18237537789368,44.9533766318438],[-93.18232496089453,44.95359070664369],[-93.18229555097838,44.9537354051611],[-93.18228714814518,44.95381072739605],[-93.18228574767298,44.95388604953212],[-93.18229134956178,44.95396137156935],[-93.18229555097837,44.95402380951997],[-93.18229835192277,44.954073363384],[-93.18230395381156,44.95411994398079],[-93.18231235664476,44.95416355131034],[-93.18231795853355,44.95421806041015],[-93.18232075947795,44.95428347128022],[-93.18232356042235,44.95444303345479],[-93.18232636136673,44.95469674693387],[-93.18231935900575,44.95562436095288],[-93.18229614471726,44.95783659224004],[-93.17724316808173,44.95584670952778],[-93.1771817746358,44.95583470131937]]],"type":"Polygon"} +},{ + "id": 1108800619, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000039, + "geom:area_square_m":343570.930062, + "geom:bbox":"-93.0924065428,44.9457349332,-93.0809909148,44.9527117455", + "geom:latitude":44.949418, + "geom:longitude":-93.086627, + "iso:country":"US", + "lbl:latitude":44.949352, + "lbl:longitude":-93.087016, + "lbl:max_zoom":18.0, + "mps:latitude":44.949352, + "mps:longitude":-93.087016, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.949352, + "reversegeo:longitude":-93.087016, + "src:geom":"mz", + "wof:belongsto":[ + 85873317, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"21f92e2341cd9b8573f0d720eab82496", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800619, + "neighbourhood_id":85873317, + "region_id":85688727 + } + ], + "wof:id":1108800619, + "wof:lastmodified":1566623873, + "wof:name":"Lowertown", + "wof:parent_id":85873317, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780991 + ], + "wof:tags":[] +}, + "bbox": [ + -93.09240654278037, + 44.94573493319359, + -93.08099091484358, + 44.95271174553782 +], + "geometry": {"coordinates":[[[-93.08099091484358,44.94985922263056],[-93.08597953918658,44.94746312674571],[-93.08780593214135,44.94658153958468],[-93.08793653012077,44.94651011421476],[-93.08805723431389,44.94644008925859],[-93.08816804472067,44.94637146471614],[-93.08829468518559,44.94628743451861],[-93.08843715570859,44.94618799866599],[-93.08856676430941,44.94610256775674],[-93.08868351098798,44.94603114179085],[-93.08879135325888,44.94596601804933],[-93.08889029112208,44.9459071965322],[-93.08900901655792,44.94584207262861],[-93.08914752956642,44.9457706463386],[-93.08921678607065,44.94573493319359],[-93.08941367241843,44.94593800675559],[-93.08980744511398,44.94634415387959],[-93.0902121009745,44.94676010146981],[-93.09062763999995,44.94718584952625],[-93.09122819282962,44.9478076569067],[-93.09201375946344,44.94862552361118],[-93.09240654278037,44.94903445696342],[-93.09192966227971,44.94926132592039],[-93.09097590127843,44.94971506383433],[-93.09029224064366,44.95003926127519],[-93.08987868037548,44.95023391824296],[-93.08967190024137,44.95033124672685],[-93.08966497459095,44.95038446202162],[-93.08965112329008,44.95049089261114],[-93.08964419763966,44.95054410790591],[-93.08961352690207,44.95054550830574],[-93.08955218542688,44.95054830910539],[-93.08948589705854,44.95055461090354],[-93.08941466179704,44.95056441370019],[-93.08932957523467,44.95058191868652],[-93.08923063737147,44.95060712586252],[-93.08911784820742,44.95064843758187],[-93.08899120774251,44.95070585384455],[-93.0886449252213,44.95087039967215],[-93.08807900064379,44.95114207506465],[-93.08769808987046,44.95132762623551],[-93.0875021929013,44.95142705318473],[-93.08735180734924,44.95151247623198],[-93.08724693321425,44.95158389537727],[-93.08714106970061,44.95165531443368],[-93.08703421680835,44.95172673340122],[-93.08694616211008,44.95179115044476],[-93.08687690560585,44.95184856556429],[-93.08680863848024,44.95191158208355],[-93.08674136073326,44.95198020000255],[-93.08666715733585,44.95206212125971],[-93.08658834614663,44.95215462528635],[-93.08620502777519,44.95200486543439],[-93.08486020365969,44.95192175100414],[-93.08345704976897,44.95227628984351],[-93.08255793143019,44.95271174553782],[-93.08099091484358,44.94985922263056]]],"type":"Polygon"} +},{ + "id": 1108800625, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000146, + "geom:area_square_m":1276367.726977, + "geom:bbox":"-93.1568478276,44.9413965318,-93.1466081857,44.9557191423", + "geom:latitude":44.948569, + "geom:longitude":-93.151715, + "iso:country":"US", + "lbl:latitude":44.948572, + "lbl:longitude":-93.151715, + "lbl:max_zoom":18.0, + "mps:latitude":44.948572, + "mps:longitude":-93.151715, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.948572, + "reversegeo:longitude":-93.151715, + "src:geom":"mz", + "wof:belongsto":[ + 1108800559, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"314e202d886bc198da0dd7039cf2a54d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800625, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800625, + "wof:lastmodified":1566623865, + "wof:name":"Lexington-Hamline", + "wof:parent_id":1108800559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85873299 + ], + "wof:tags":[] +}, + "bbox": [ + -93.15684782755257, + 44.9413965318118, + -93.14660818572733, + 44.95571914230818 +], + "geometry": {"coordinates":[[[-93.15684167028679,44.94144640631964],[-93.15683597219326,44.94294272631527],[-93.15683200736039,44.94402736938302],[-93.15682804252752,44.94515548996678],[-93.15682407769465,44.94612504259185],[-93.15682011286178,44.94693602725824],[-93.15681813044534,44.94790834780179],[-93.15681813044533,44.94904200422249],[-93.15682011286177,44.95004235671961],[-93.15682407769464,44.95090940529316],[-93.15682606011107,44.95149444954256],[-93.15682606011109,44.95179748946781],[-93.15682407769465,44.95202757470705],[-93.15682011286179,44.95218470526027],[-93.15682011286179,44.95243723497556],[-93.15682407769465,44.95278516385293],[-93.15683002494396,44.95343751962187],[-93.15683795460967,44.95439430228241],[-93.15684390185898,44.95514765619021],[-93.15684782755257,44.95569215269985],[-93.14660818572733,44.95571914230818],[-93.14661459368291,44.9413965318118],[-93.15171721772494,44.94143791934868],[-93.15293699653286,44.94144201275586],[-93.15684167028679,44.94144640631964]]],"type":"Polygon"} +},{ + "id": 1108800627, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000595, + "geom:area_square_m":5205592.016791, + "geom:bbox":"-93.0409012786,44.9283774546,-93.0048233957,44.9527192463", + "geom:latitude":44.942341, + "geom:longitude":-93.020651, + "iso:country":"US", + "lbl:latitude":44.940759, + "lbl:longitude":-93.01919, + "lbl:max_zoom":18.0, + "mps:latitude":44.940759, + "mps:longitude":-93.01919, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.940759, + "reversegeo:longitude":-93.01919, + "src:geom":"mz", + "wof:belongsto":[ + 1108800557, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"94463847ae5169ebc6119a6520d8aaac", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800627, + "neighbourhood_id":1108800557, + "region_id":85688727 + } + ], + "wof:id":1108800627, + "wof:lastmodified":1566623865, + "wof:name":"Battle Creek", + "wof:parent_id":1108800557, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.0409012785575, + 44.92837745463078, + -93.00482339568737, + 44.95271924631474 +], + "geometry": {"coordinates":[[[-93.00482339568737,44.9329654947302],[-93.00705512122056,44.93299312437294],[-93.00912309304842,44.93300942711862],[-93.01036203385397,44.93300616657152],[-93.01109895031824,44.93299475465279],[-93.01133384244122,44.93297519136242],[-93.01157564315605,44.93294095557512],[-93.01182435246274,44.93289204729088],[-93.01210760472868,44.93281868473957],[-93.01242539995391,44.9327208679212],[-93.01273628658727,44.932608378331],[-93.01304026462878,44.93248121596896],[-93.01337648276561,44.93231492613153],[-93.01374494099773,44.9321095088187],[-93.01408115913455,44.93190572108468],[-93.01438513717605,44.93170356292946],[-93.01471674958496,44.93149162210982],[-93.0150759963613,44.93126989862575],[-93.01541682022602,44.93109382369443],[-93.01573922117915,44.93096339731586],[-93.01612149659499,44.93083623132242],[-93.01656364647356,44.9307123257141],[-93.01719002546818,44.93053950933008],[-93.01800063357888,44.93031778217035],[-93.01883887605698,44.93009279342299],[-93.01970475290248,44.929864543088],[-93.02031731471341,44.92968194238462],[-93.02067656148975,44.92954499131285],[-93.02099435671497,44.92939825762181],[-93.02127070038905,44.9292417413115],[-93.02185102210467,44.92891240202929],[-93.02279305598057,44.92837745463078],[-93.02283441629734,44.92841715550808],[-93.02338219962328,44.92897118844932],[-93.02384520695833,44.92948828153843],[-93.02422343830243,44.92996843477541],[-93.02456906349619,44.93041165001286],[-93.02488208253958,44.93081792725076],[-93.02527335634383,44.93128883511279],[-93.02574288490894,44.93182437359894],[-93.02622545593418,44.93230450800123],[-93.02672106941958,44.93272923831968],[-93.02728841643575,44.9332001307375],[-93.0279274969827,44.93371718525469],[-93.02854049260937,44.93420192004582],[-93.02912740331574,44.93465433511088],[-93.02962301680112,44.93506519921132],[-93.03002733306552,44.93543451234714],[-93.030346873339,44.93574842709938],[-93.03058163762154,44.93600694346807],[-93.03084248682438,44.93637163321203],[-93.03112942094748,44.93684249633129],[-93.03155982213217,44.93753954719239],[-93.0321336903784,44.93846278579535],[-93.03296840782748,44.93982452003823],[-93.03406397447939,44.94162474992103],[-93.03472261871656,44.94272334415102],[-93.03494434053896,44.94312030272819],[-93.03516606236137,44.94344340714402],[-93.03538778418378,44.94369265739849],[-93.03564211215655,44.9439419065708],[-93.03592904627965,44.94419115466094],[-93.03620945917271,44.94439886080153],[-93.03648335083568,44.94456502499255],[-93.03682245479938,44.94474503559161],[-93.03722677106376,44.94493889259871],[-93.03766369347851,44.94514659573328],[-93.03813322204361,44.94536814499533],[-93.03855058076815,44.94557123116572],[-93.03891576965214,44.94575585424445],[-93.03922226746546,44.94593124566155],[-93.03947007420814,44.94609740541704],[-93.03969831726062,44.94627279570597],[-93.03990699662289,44.94645741652833],[-93.04007654860473,44.94663280580189],[-93.04020697320614,44.94679896352665],[-93.04034391903764,44.94697896712059],[-93.04051623262468,44.94725325501611],[-93.0409012785575,44.95271924631474],[-93.04038304641807,44.95271109636472],[-93.03972440218092,44.95269032880844],[-93.03899402441297,44.95265802371571],[-93.03827668910519,44.95261879607155],[-93.03757239625754,44.95257264587599],[-93.03691701263543,44.95252188061188],[-93.03631053823881,44.95246650027922],[-93.03498346791939,44.95229343586291],[-93.03293580167714,44.95200268736296],[-93.03133483969475,44.95178577921116],[-93.03018058197219,44.95164271140754],[-93.02915674885107,44.95152041129454],[-93.02826334033136,44.95141887887215],[-93.02751013825818,44.95135426729946],[-93.02689714263153,44.95132657657646],[-93.02618632855381,44.95130119340351],[-93.02537769602502,44.95127811778059],[-93.02463427579694,44.95127119509483],[-93.02395606786956,44.95128042534622],[-93.02304635627468,44.95131503875275],[-93.02190514101228,44.95137503531443],[-93.02069871344918,44.9514396469183],[-93.01942707358535,44.95150887356436],[-93.01835759185373,44.95155040954197],[-93.01749026825431,44.95156425485115],[-93.01673054495105,44.95156194729888],[-93.01607842194396,44.95154348688516],[-93.01551759615786,44.95151810380202],[-93.01504806759277,44.95148579804945],[-93.01452310857206,44.95143964692609],[-93.01394271909577,44.95137965043197],[-93.01330037793377,44.95131042361334],[-93.01259608508612,44.95123196647022],[-93.0118591860881,44.95114658650067],[-93.01108968093975,44.95105428370472],[-93.01030713333125,44.95096428834117],[-93.0095115432626,44.95087660041002],[-93.00875508057439,44.95078429716874],[-93.00803774526658,44.95068737861732],[-93.00695848168985,44.95053969269497],[-93.00500817810523,44.95027113429979],[-93.00500256572857,44.94862430329221],[-93.00495177353275,44.94463912970852],[-93.00490569506731,44.9410392235011],[-93.00486473212709,44.93743307580873],[-93.00482387810028,44.93382713339664],[-93.00482339568737,44.9329654947302]]],"type":"Polygon"} +},{ + "id": 1108800629, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00039, + "geom:area_square_m":3412986.572846, + "geom:bbox":"-93.022793056,44.8907560478,-93.0043202343,44.9330094271", + "geom:latitude":44.916602, + "geom:longitude":-93.010147, + "iso:country":"US", + "lbl:latitude":44.917107, + "lbl:longitude":-93.010007, + "lbl:max_zoom":18.0, + "mps:latitude":44.917107, + "mps:longitude":-93.010007, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.917107, + "reversegeo:longitude":-93.010007, + "src:geom":"mz", + "wof:belongsto":[ + 1108800557, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"277c974f7ae53c6f8c1a87fa754eda60", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800629, + "neighbourhood_id":1108800557, + "region_id":85688727 + } + ], + "wof:id":1108800629, + "wof:lastmodified":1566623865, + "wof:name":"Highwood Hills", + "wof:parent_id":1108800557, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.02279305598057, + 44.8907560477912, + -93.00432023434075, + 44.93300942711862 +], + "geometry": {"coordinates":[[[-93.02279305598057,44.92837745463078],[-93.02185102210467,44.92891240202929],[-93.02127070038905,44.9292417413115],[-93.02099435671497,44.92939825762181],[-93.02067656148975,44.92954499131285],[-93.02031731471341,44.92968194238462],[-93.01970475290248,44.929864543088],[-93.01883887605698,44.93009279342299],[-93.01800063357888,44.93031778217035],[-93.01719002546818,44.93053950933008],[-93.01656364647356,44.9307123257141],[-93.01612149659499,44.93083623132242],[-93.01573922117915,44.93096339731586],[-93.01541682022602,44.93109382369443],[-93.0150759963613,44.93126989862575],[-93.01471674958496,44.93149162210982],[-93.01438513717605,44.93170356292946],[-93.01408115913455,44.93190572108468],[-93.01374494099773,44.9321095088187],[-93.01337648276561,44.93231492613153],[-93.01304026462878,44.93248121596896],[-93.01273628658727,44.932608378331],[-93.01242539995391,44.9327208679212],[-93.01210760472868,44.93281868473957],[-93.01182435246274,44.93289204729088],[-93.01157564315605,44.93294095557512],[-93.01133384244122,44.93297519136242],[-93.01109895031824,44.93299475465279],[-93.01036203385397,44.93300616657152],[-93.00912309304842,44.93300942711862],[-93.00705512122056,44.93299312437294],[-93.00482339568737,44.9329654947302],[-93.00482186324923,44.93022840391141],[-93.00481995185466,44.92662996523858],[-93.00481803647402,44.92303216706457],[-93.00481612133285,44.91943436694961],[-93.00471700201037,44.91583371368726],[-93.00461789606892,44.91223310161757],[-93.00454886762303,44.90864561501898],[-93.00448008805856,44.90505817049473],[-93.00440590588657,44.90148668956435],[-93.00433173417655,44.89791520766035],[-93.00432610402153,44.89433688011827],[-93.00432023434075,44.89075850767689],[-93.00665579128251,44.8907560477912],[-93.00827903077916,44.89476805659748],[-93.00910722699817,44.89683305587064],[-93.00958979802343,44.89806183013384],[-93.00988325337661,44.89892104091084],[-93.00998759305773,44.89941068820163],[-93.01007236904866,44.89991880809495],[-93.01013758134937,44.90044540059078],[-93.01021583611022,44.9009627500497],[-93.0103071333312,44.90147085647168],[-93.01037886686197,44.90191891092908],[-93.01043103670256,44.90230691342188],[-93.01052885515361,44.90266719936675],[-93.01067232221519,44.90299976876369],[-93.01095273510822,44.90363718299363],[-93.01137009383277,44.90457944205659],[-93.01210699283077,44.90639459154508],[-93.01316343210226,44.90908263145913],[-93.01381555510935,44.9107591730377],[-93.01406336185202,44.91142421628083],[-93.01425247752408,44.91200612406847],[-93.0143829021255,44.91250489640064],[-93.01453941164721,44.91323918772048],[-93.0147220060892,44.91420899802798],[-93.01491764299132,44.91511875900726],[-93.01512632235359,44.91596847065831],[-93.01531543802565,44.9166796352795],[-93.01548499000748,44.91725225287084],[-93.01564802075926,44.91777406946294],[-93.01580453028096,44.91824508505578],[-93.01603929456351,44.91878074425128],[-93.0163523136069,44.91938104704944],[-93.01684792709229,44.92038768390869],[-93.01752613501965,44.92180065482902],[-93.01814565187638,44.92301043226374],[-93.01870647766248,44.92401701621282],[-93.01918904868772,44.92476040456683],[-93.01959336495212,44.92524059732575],[-93.02008245720742,44.925771574326],[-93.02065632545367,44.92635333556757],[-93.02134757584118,44.92701819690063],[-93.02215620836996,44.92776615832518],[-93.02279305598057,44.92837745463078]]],"type":"Polygon"} +},{ + "id": 1108800631, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00024, + "geom:area_square_m":2102413.345495, + "geom:bbox":"-93.0253385686,44.9502711343,-93.0050081781,44.9630450854", + "geom:latitude":44.957108, + "geom:longitude":-93.01502, + "iso:country":"US", + "lbl:latitude":44.957262, + "lbl:longitude":-93.01502, + "lbl:max_zoom":18.0, + "mps:latitude":44.957262, + "mps:longitude":-93.01502, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Conway" + ], + "name:ceb_x_preferred":[ + "Conway" + ], + "name:ces_x_preferred":[ + "Conway" + ], + "name:deu_x_preferred":[ + "Conway" + ], + "name:eng_x_variant":[ + "SunRay" + ], + "name:fas_x_preferred":[ + "\u06a9\u0627\u0646\u0648\u06cc" + ], + "name:fin_x_preferred":[ + "Conway" + ], + "name:fra_x_preferred":[ + "Conway" + ], + "name:hun_x_preferred":[ + "Conway" + ], + "name:ita_x_preferred":[ + "Conway" + ], + "name:jpn_x_preferred":[ + "\u30b3\u30f3\u30a6\u30a7\u30a4" + ], + "name:kor_x_preferred":[ + "\ucf58\uc6e8\uc774" + ], + "name:nld_x_preferred":[ + "Conway" + ], + "name:pol_x_preferred":[ + "Conway" + ], + "name:por_x_preferred":[ + "Conway" + ], + "name:rus_x_preferred":[ + "\u041a\u043e\u043d\u0443\u044d\u0439" + ], + "name:slv_x_preferred":[ + "Conway" + ], + "name:spa_x_preferred":[ + "Conway" + ], + "name:srp_x_preferred":[ + "\u041a\u043e\u043d\u0432\u0435\u0458" + ], + "name:swe_x_preferred":[ + "Conway" + ], + "name:ukr_x_preferred":[ + "\u041a\u043e\u043d\u0432\u0435\u0439" + ], + "name:urd_x_preferred":[ + "\u06a9\u0648\u0646\u0648\u06d2" + ], + "name:vol_x_preferred":[ + "Conway" + ], + "reversegeo:latitude":44.957262, + "reversegeo:longitude":-93.01502, + "src:geom":"mz", + "wof:belongsto":[ + 1108800557, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d02c0c31ee3c2635f8807a69b6740eb6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800631, + "neighbourhood_id":1108800557, + "region_id":85688727 + } + ], + "wof:id":1108800631, + "wof:lastmodified":1566623867, + "wof:name":"Conway", + "wof:parent_id":1108800557, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781049 + ], + "wof:tags":[] +}, + "bbox": [ + -93.02533856864459, + 44.95027113429979, + -93.00500817810523, + 44.96304508541915 +], + "geometry": {"coordinates":[[[-93.02524920406177,44.95127692127093],[-93.02526031388372,44.95377715383828],[-93.02528639880401,44.9575058917333],[-93.02533856864459,44.96162198931888],[-93.02532228317855,44.96304508541915],[-93.0050502494359,44.96303599843238],[-93.00503867203311,44.95943253340558],[-93.00502712241476,44.95582910866569],[-93.00501484266921,44.95222670700791],[-93.00500817810523,44.95027113429979],[-93.00695848168985,44.95053969269497],[-93.00803774526658,44.95068737861732],[-93.00875508057439,44.95078429716874],[-93.0095115432626,44.95087660041002],[-93.01030713333125,44.95096428834117],[-93.01108968093975,44.95105428370472],[-93.0118591860881,44.95114658650067],[-93.01259608508612,44.95123196647022],[-93.01330037793377,44.95131042361334],[-93.01394271909577,44.95137965043197],[-93.01452310857206,44.95143964692609],[-93.01504806759277,44.95148579804945],[-93.01551759615786,44.95151810380202],[-93.01607842194396,44.95154348688516],[-93.01673054495105,44.95156194729888],[-93.01749026825431,44.95156425485115],[-93.01835759185373,44.95155040954197],[-93.01942707358535,44.95150887356436],[-93.02069871344918,44.9514396469183],[-93.02190514101228,44.95137503531443],[-93.02304635627468,44.95131503875275],[-93.02395606786956,44.95128042534622],[-93.02463427579694,44.95127119509483],[-93.02524920406177,44.95127692127093]]],"type":"Polygon"} +},{ + "id": 1108800633, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00015, + "geom:area_square_m":1314634.765799, + "geom:bbox":"-93.0409037713,44.9512769213,-93.0252492041,44.9630514771", + "geom:latitude":44.957377, + "geom:longitude":-93.031952, + "iso:country":"US", + "lbl:latitude":44.957397, + "lbl:longitude":-93.031019, + "lbl:max_zoom":18.0, + "mps:latitude":44.957397, + "mps:longitude":-93.031019, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Eastview" + ], + "name:por_x_preferred":[ + "Eastview" + ], + "reversegeo:latitude":44.957397, + "reversegeo:longitude":-93.031019, + "src:geom":"mz", + "wof:belongsto":[ + 1108800557, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"06ab04451582e69d04e6688a17a478f1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800633, + "neighbourhood_id":1108800557, + "region_id":85688727 + } + ], + "wof:id":1108800633, + "wof:lastmodified":1566623867, + "wof:name":"Eastview", + "wof:parent_id":1108800557, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781047 + ], + "wof:tags":[] +}, + "bbox": [ + -93.04090377125738, + 44.95127692127093, + -93.02524920406177, + 44.96305147706018 +], + "geometry": {"coordinates":[[[-93.02532228317855,44.96304508541915],[-93.02533856864459,44.96162198931888],[-93.02528639880401,44.9575058917333],[-93.02526031388372,44.95377715383828],[-93.02524920406177,44.95127692127093],[-93.02537769602502,44.95127811778059],[-93.02618632855381,44.95130119340351],[-93.02689714263153,44.95132657657646],[-93.02751013825818,44.95135426729946],[-93.02826334033136,44.95141887887215],[-93.02915674885107,44.95152041129454],[-93.03018058197219,44.95164271140754],[-93.03133483969475,44.95178577921116],[-93.03293580167714,44.95200268736296],[-93.03498346791939,44.95229343586291],[-93.03631053823881,44.95246650027922],[-93.03691701263543,44.95252188061188],[-93.03757239625754,44.95257264587599],[-93.03827668910519,44.95261879607155],[-93.03899402441297,44.95265802371571],[-93.03972440218092,44.95269032880844],[-93.04038304641807,44.95271109636472],[-93.0409012785575,44.95271924631474],[-93.04090377125738,44.95275463190049],[-93.03945530342794,44.9539867575516],[-93.03949343349679,44.95765367801504],[-93.03631052913001,44.95768667890498],[-93.03629458095209,44.96033014084892],[-93.03959748282298,44.96034013806201],[-93.03958130718776,44.96305147706018],[-93.02532228317855,44.96304508541915]]],"type":"Polygon"} +},{ + "id": 1108800635, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000224, + "geom:area_square_m":1962817.22588, + "geom:bbox":"-93.1286285939,44.919639513,-93.0959919474,44.9328961025", + "geom:latitude":44.924377, + "geom:longitude":-93.106937, + "iso:country":"US", + "lbl:latitude":44.925404, + "lbl:longitude":-93.103973, + "lbl:max_zoom":18.0, + "mps:latitude":44.925404, + "mps:longitude":-93.103973, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "Cherokee Heights", + "Cherokee", + "Riverview" + ], + "reversegeo:latitude":44.925404, + "reversegeo:longitude":-93.103973, + "src:geom":"mz", + "wof:belongsto":[ + 1108800545, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"3689a82dc07e87eb15a4b3a704a6c0fc", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800635, + "neighbourhood_id":1108800545, + "region_id":85688727 + } + ], + "wof:id":1108800635, + "wof:lastmodified":1566623867, + "wof:name":"Cherokee/Riverview", + "wof:parent_id":1108800545, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420780979 + ], + "wof:tags":[] +}, + "bbox": [ + -93.12862859386367, + 44.91963951297063, + -93.09599194741953, + 44.93289610249069 +], + "geometry": {"coordinates":[[[-93.09607293267049,44.92959336560356],[-93.09606425133421,44.92904173356805],[-93.09603822721473,44.9273881012791],[-93.0960349741998,44.92574133130577],[-93.0960325623838,44.92327865437154],[-93.09599194741953,44.91967010507852],[-93.09932170912836,44.91969884498182],[-93.10578437917638,44.9197546551792],[-93.11083172710495,44.91972654695758],[-93.11434628982477,44.9197068653229],[-93.11587906988801,44.91969825761293],[-93.12025519857328,44.91967364032944],[-93.1209261656051,44.91966978658895],[-93.12576987111662,44.91964161914974],[-93.12597325910507,44.91964075025151],[-93.12862859386367,44.91963951297063],[-93.12253272540313,44.92252870793213],[-93.11562456299491,44.92432267119172],[-93.110623928659,44.92672411800296],[-93.10518474237671,44.93191464946633],[-93.10439842496478,44.93289610249069],[-93.10338028192318,44.93207366832902],[-93.10288094413065,44.93166604617589],[-93.10264347404038,44.93146568737924],[-93.10244341362188,44.93127914586965],[-93.10228076287514,44.93110642164709],[-93.10217016036735,44.93095442398383],[-93.10211160609853,44.93082315287988],[-93.10208232896412,44.9307575173279],[-93.10201564215794,44.93079321389338],[-93.10188226854561,44.93086460702435],[-93.10173425636606,44.93094751504015],[-93.10157160561931,44.93104193794075],[-93.10139594281281,44.93114442113563],[-93.10120726794658,44.93125496462477],[-93.10103323164755,44.93135053854895],[-93.10087383391574,44.9314311429082],[-93.10061847224334,44.93154514020941],[-93.10026714663034,44.93169253045262],[-93.0999385921219,44.93182610258201],[-93.099632808718,44.93194585659759],[-93.09926521803034,44.93208863981931],[-93.09883582005891,44.93225445224717],[-93.09846497635631,44.93239378047183],[-93.09815268692255,44.93250662449326],[-93.09794124095177,44.9325860758324],[-93.09783063844398,44.93263213448923],[-93.09772654196607,44.93266322407386],[-93.097628951518,44.9326793445863],[-93.09754599963716,44.93268510191263],[-93.09747768632353,44.93268049605285],[-93.0974191320547,44.93266898139973],[-93.09737033683066,44.93265055795326],[-93.09729063796476,44.93261486249278],[-93.09718003545697,44.93256189501832],[-93.09705316787451,44.93249050396282],[-93.09691003521735,44.93240068932631],[-93.09671322781377,44.93225675511758],[-93.09670320950141,44.9322488337362],[-93.09701489673073,44.93197584608915],[-93.0975021582276,44.93154514955586],[-93.09774578897603,44.93132980128922],[-93.09775142205692,44.93125801781592],[-93.09776268821868,44.93111445086932],[-93.09776550475912,44.93067776252458],[-93.09775705513779,44.92958304791023],[-93.09626288043201,44.9295930181144],[-93.09607293267049,44.92959336560356]]],"type":"Polygon"} +},{ + "id": 1108800637, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":438560.98483, + "geom:bbox":"-93.2001725505,44.94836891,-93.1924226358,44.955735811", + "geom:latitude":44.952238, + "geom:longitude":-93.195963, + "iso:country":"US", + "lbl:latitude":44.952297, + "lbl:longitude":-93.195705, + "lbl:max_zoom":18.0, + "mps:latitude":44.952297, + "mps:longitude":-93.195705, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":44.952297, + "reversegeo:longitude":-93.195705, + "src:geom":"mz", + "wof:belongsto":[ + 1108800559, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"84fce141ede4a30a17651969d3669b9e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800637, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800637, + "wof:lastmodified":1566623867, + "wof:name":"Town and Country Club", + "wof:parent_id":1108800559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -93.20017255045596, + 44.94836890998975, + -93.19242263575072, + 44.95573581104638 +], + "geometry": {"coordinates":[[[-93.19789532482483,44.94839102215807],[-93.19807751110822,44.94923465796712],[-93.1982026177233,44.94972936907651],[-93.1983138236034,44.9500751008041],[-93.19839722801345,44.95032526373805],[-93.19845283095347,44.95047985787836],[-93.19850843389351,44.95060072220458],[-93.19856403683355,44.95068785671668],[-93.1986335405086,44.95077358570748],[-93.19871694491864,44.95085790917697],[-93.19888573955804,44.95100125856963],[-93.19913992442676,44.95120363388548],[-93.19949340025984,44.95148751967393],[-93.19994616705725,44.95185291593498],[-93.20017255045596,44.95203561406551],[-93.2001665929981,44.95232792623557],[-93.20015467808237,44.95291255057569],[-93.20014872062451,44.95380492724057],[-93.20014872062451,44.95500505623022],[-93.20014872062451,44.95560512072504],[-93.19866332779787,44.95560512072504],[-93.19569254214463,44.95560512072504],[-93.19417339039011,44.95561074181945],[-93.19410587253435,44.95562198400827],[-93.19404034049788,44.95564165782908],[-93.1939767942807,44.95566976328185],[-93.19391126224423,44.95569365290852],[-93.19384374438849,44.95571332670907],[-93.19375041088199,44.9557273794217],[-93.19363126172478,44.95573581104638],[-93.19352998494114,44.95572878468973],[-93.19344658053109,44.95570630035174],[-93.19333736047031,44.95566554744721],[-93.19320232475879,44.95560652597614],[-93.19306927486656,44.95554750444438],[-93.19293821079363,44.95548848285191],[-93.19276743033495,44.95543227175915],[-93.19255693349052,44.9553788711661],[-93.19242263575072,44.95534873755998],[-93.19244649349218,44.94836890998975],[-93.19573508110075,44.94836890998975],[-93.19789532482483,44.94839102215807]]],"type":"Polygon"} +},{ + "id": 1108800641, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000357, + "geom:area_square_m":3120923.54382, + "geom:bbox":"-93.192449002,44.9414578281,-93.1669918916,44.9598320705", + "geom:latitude":44.948654, + "geom:longitude":-93.179945, + "iso:country":"US", + "lbl:latitude":44.946828, + "lbl:longitude":-93.180187, + "lbl:max_zoom":18.0, + "mps:latitude":44.946828, + "mps:longitude":-93.180187, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":44.946828, + "reversegeo:longitude":-93.180187, + "src:geom":"mz", + "wof:belongsto":[ + 1108800559, + 102191575, + 404514465, + 85633793, + 85953191, + 102087007, + 85688727 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"da5d031430a57c969efeada5b73c39f4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087007, + "localadmin_id":404514465, + "locality_id":85953191, + "microhood_id":1108800641, + "neighbourhood_id":1108800559, + "region_id":85688727 + } + ], + "wof:id":1108800641, + "wof:lastmodified":1566623867, + "wof:name":"Merriam Park", + "wof:parent_id":1108800559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420781009 + ], + "wof:tags":[] +}, + "bbox": [ + -93.19244900204589, + 44.94145782813195, + -93.16699189157387, + 44.95983207052751 +], + "geometry": {"coordinates":[[[-93.18229614471726,44.95783659224004],[-93.18231935900575,44.95562436095288],[-93.18232636136673,44.95469674693387],[-93.18232356042235,44.95444303345479],[-93.18232075947795,44.95428347128022],[-93.18231795853355,44.95421806041015],[-93.18231235664476,44.95416355131034],[-93.18230395381156,44.95411994398079],[-93.18229835192277,44.954073363384],[-93.18229555097837,44.95402380951997],[-93.18229134956178,44.95396137156935],[-93.18228574767298,44.95388604953212],[-93.18228714814518,44.95381072739605],[-93.18229555097838,44.9537354051611],[-93.18232496089453,44.95359070664369],[-93.18237537789368,44.9533766318438],[-93.18242859583721,44.95316255624537],[-93.18248461472515,44.95294847984839],[-93.18251262416912,44.95284144164989],[-93.1822633401178,44.95276314468418],[-93.18176477201516,44.95260655075275],[-93.18139364688257,44.95249455622725],[-93.18114996472002,44.95242716110765],[-93.18094129436246,44.95237165920229],[-93.18076763580984,44.95232805051113],[-93.18057297017427,44.95227849513236],[-93.1803572974557,44.95222299306597],[-93.18014442568153,44.95217442872265],[-93.17993435485178,44.9521328021024],[-93.17971167977223,44.95209414878815],[-93.17947640044288,44.95205846877988],[-93.17922711639156,44.95202377986259],[-93.17896382761825,44.95199008203625],[-93.17871734451133,44.95196233087461],[-93.17848766707078,44.95194052637767],[-93.17824258443606,44.95192367744473],[-93.17798209660714,44.95191178407578],[-93.17767819414007,44.95190682850555],[-93.17733087703488,44.95190881073404],[-93.17702837504001,44.95191277519064],[-93.17677068815549,44.95191872187532],[-93.17664184471323,44.95192169521766],[-93.17664184471323,44.95203963730021],[-93.17664184471323,44.9522755214653],[-93.17664604612983,44.95246184968948],[-93.17665444896301,44.95259862197273],[-93.176668453685,44.95272845625344],[-93.17668806029577,44.95285135253162],[-93.17671466926754,44.95297127526836],[-93.17674828060032,44.95308822446367],[-93.17679729712725,44.95321508430541],[-93.17686171884839,44.95335185479356],[-93.17693174245829,44.95350150903428],[-93.17700736795702,44.95366404702757],[-93.17706618778935,44.95379586114359],[-93.17710820195529,44.95389695138235],[-93.17713901234366,44.95397029130122],[-93.17715861895445,44.95401588090022],[-93.17717402414863,44.95407138121834],[-93.17718522792622,44.9541367922556],[-93.1771922302872,44.95426166747105],[-93.17719503123159,44.9544460068647],[-93.1771922302872,44.95490982255723],[-93.1771817746358,44.95583470131937],[-93.1761922944453,44.9556411646288],[-93.16699189157387,44.95566541501512],[-93.16699189157387,44.95433117219631],[-93.16699387399031,44.95371670521377],[-93.16699783882316,44.95342489877655],[-93.16700973332175,44.95316395543558],[-93.16702955748607,44.95293387519087],[-93.16705136406681,44.95267713804027],[-93.16707515306399,44.9523937439838],[-93.16709299481187,44.95216786984057],[-93.16710488931045,44.95199951561055],[-93.16711083655974,44.9518283549579],[-93.16711083655974,44.95165438788257],[-93.16710488931045,44.95147761433357],[-93.16709299481187,44.95129803431087],[-93.16707713548041,44.9510819761454],[-93.16705731131609,44.95082943983715],[-93.1670335223189,44.95059514138026],[-93.16700576848886,44.95037908077474],[-93.16699387399028,44.94979682991134],[-93.16699783882314,44.94884838879004],[-93.16700180365601,44.94780171543317],[-93.16700576848885,44.94665680984073],[-93.16700775090527,44.94538559694878],[-93.16700775090527,44.94398807675734],[-93.1670037860724,44.94281223199312],[-93.16699253024026,44.94145782813195],[-93.19244900204589,44.94148647191623],[-93.19243818601025,44.94441860910619],[-93.19244649349218,44.94836890998975],[-93.19241916646762,44.95636371200128],[-93.18738193346636,44.95437119617621],[-93.18736333038666,44.95983207052751],[-93.18229614471726,44.95783659224004]]],"type":"Polygon"} +},{ + "id": 1108796081, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000264, + "geom:area_square_m":2531921.836333, + "geom:bbox":"-76.5879312863,39.2245102325,-76.5585772135,39.2428653194", + "geom:latitude":39.23301, + "geom:longitude":-76.571637, + "iso:country":"US", + "lbl:latitude":39.233324, + "lbl:longitude":-76.569414, + "lbl:max_zoom":18.0, + "mps:latitude":39.233324, + "mps:longitude":-76.569414, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"", + "name:eng_x_preferred":[ + "Wagner's Point" + ], + "name:eng_x_variant":[ + "East Brooklyn" + ], + "name:fra_x_preferred":[ + "Wagner's Point" + ], + "reversegeo:latitude":39.233324, + "reversegeo:longitude":-76.569414, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7959585" + }, + "wof:country":"US", + "wof:geomhash":"e0b6b4c0656b870375c143204c4619ab", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108796081, + "neighbourhood_id":-1, + "region_id":85688501 + } + ], + "wof:id":1108796081, + "wof:lastmodified":1566624090, + "wof:name":"Wagner's Point", + "wof:parent_id":-1, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420523195 + ], + "wof:tags":[] +}, + "bbox": [ + -76.58793128625005, + 39.22451023246833, + -76.55857721350871, + 39.24286531940083 +], + "geometry": {"coordinates":[[[[-76.5849923993768,39.23237982650302],[-76.58585832103662,39.23327562894069],[-76.58661862489234,39.23406755244669],[-76.58749373246414,39.23498362473334],[-76.58793128625005,39.23544166087666],[-76.58791828960295,39.23583089830829],[-76.58789229630872,39.23660937317155],[-76.58787063523022,39.23704474808819],[-76.58785330636741,39.23713702305823],[-76.587844641936,39.23718316054325],[-76.58726954030156,39.23702629259903],[-76.58611933703267,39.23671255671058],[-76.58525072778443,39.23647767370488],[-76.58466371255679,39.23632164358195],[-76.58424132152584,39.23621259017373],[-76.58398355469157,39.23615051348024],[-76.58378643887711,39.2361060531287],[-76.5836499740825,39.23607920911911],[-76.58353733647425,39.23606494823868],[-76.58344852605236,39.23606327048739],[-76.58328498490961,39.23606998149107],[-76.58304671304599,39.23608508124971],[-76.58286584304042,39.23610185875491],[-76.58274237489293,39.23612031400664],[-76.58228099392068,39.23621930101268],[-76.58148170012365,39.23639881977304],[-76.58060767560578,39.23660266517909],[-76.57965892036704,39.23683083723084],[-76.57812531600851,39.23718483703713],[-76.57600686253022,39.23766466459793],[-76.57478084548654,39.23794148789943],[-76.57444726487749,39.23801530694163],[-76.57421982355314,39.23807234889604],[-76.57409852151349,39.23811261376267],[-76.57397721947382,39.23816462250147],[-76.57385591743417,39.23822837511246],[-76.57355266233502,39.2384246651262],[-76.5730674541764,39.23875349254273],[-76.57206238013353,39.23945140134245],[-76.56981642619959,39.24104042982434],[-76.56976315941191,39.24097950798138],[-76.56925687155967,39.24126022265341],[-76.56922994850724,39.24123180080155],[-76.56973578235656,39.2409510575565],[-76.56968278034508,39.24089616282942],[-76.56967280210506,39.24090133183072],[-76.56953290773404,39.24074784393943],[-76.56953677517949,39.24074522515579],[-76.5695111979493,39.24071684973454],[-76.56886178451155,39.2410918857744],[-76.56856904225849,39.24126263579421],[-76.56800063037552,39.24158338315934],[-76.56758190486998,39.24182323747377],[-76.56708608535116,39.24211256120851],[-76.56725864165355,39.24229318569874],[-76.56728702998481,39.24227804112603],[-76.56770329420327,39.24270716429034],[-76.56774687618785,39.24270589974199],[-76.5677746725403,39.24273509890278],[-76.56774646229444,39.24275123239709],[-76.56771753883501,39.24272203178174],[-76.56772567404796,39.24271788214362],[-76.56772228601162,39.24271536371356],[-76.56771010992261,39.2427155819042],[-76.56745576441098,39.24286531940083],[-76.56743437545431,39.24284540103394],[-76.56743437385013,39.24283939106062],[-76.56742296219019,39.24283525228969],[-76.56726997198757,39.24267720875287],[-76.567104684086,39.24250771945706],[-76.56710337809753,39.24249602078555],[-76.56709541744436,39.24249338909264],[-76.56704999929691,39.24244739829711],[-76.56704999836313,39.2424424233155],[-76.56704142414959,39.24243270206151],[-76.56703197286028,39.2424366837585],[-76.56687293344002,39.24227324424884],[-76.56668115396219,39.24207452643385],[-76.56650580348415,39.24189330525484],[-76.56628045367813,39.24166030000237],[-76.56614325757103,39.24151660587204],[-76.56638908453904,39.24137181828823],[-76.56639445950765,39.24137786973007],[-76.56640012143323,39.24137468118177],[-76.56653304163639,39.24130031135233],[-76.56668490324581,39.24121342295874],[-76.56688843565422,39.24110171589754],[-76.5668468325909,39.24106358302522],[-76.56684942579933,39.24104997737985],[-76.56708979244952,39.24091357690813],[-76.56738680722471,39.24074481178855],[-76.5673826461592,39.24073876486469],[-76.56737855983732,39.24073204803946],[-76.5673758352944,39.24072312573071],[-76.56737346441352,39.24071490462742],[-76.56737053738757,39.24070556451343],[-76.56736841054393,39.24069645524438],[-76.56736658506662,39.24068788484861],[-76.567363823438,39.24067801568818],[-76.567361535911,39.24066999306222],[-76.56735865632547,39.2406610422575],[-76.56735645729445,39.24065275422888],[-76.56735533212012,39.24064388735641],[-76.5673537943032,39.24063620438311],[-76.56735313291472,39.24062650510215],[-76.56735201584394,39.24061972985909],[-76.56735031805114,39.24061206701394],[-76.56734840859588,39.24060454210799],[-76.56734736248109,39.24059600791268],[-76.56734799835968,39.24058841582166],[-76.56734984582,39.24058235500964],[-76.5673533829969,39.24057729938455],[-76.56735589889364,39.24057179861565],[-76.56735618970201,39.2405651366542],[-76.56736003553311,39.24055923363629],[-76.56736416613904,39.2405564015092],[-76.56737032915316,39.24055441459283],[-76.56737665601297,39.24054911162619],[-76.56738120962883,39.24054301394621],[-76.56738503706028,39.24053651814962],[-76.56738826905652,39.24052926801142],[-76.56739077465991,39.24052146392197],[-76.56739393583267,39.24051595111774],[-76.56739855618925,39.24050992574497],[-76.5674028483301,39.24050434594695],[-76.56740637613406,39.24049949656312],[-76.5674095346113,39.24049689685516],[-76.56741251623851,39.24049708619584],[-76.56741312296587,39.24049845851052],[-76.56741304860921,39.24050077593083],[-76.56741298073639,39.24050374013148],[-76.56741373452459,39.24050702173051],[-76.56741922733676,39.24050780492763],[-76.56742484208291,39.24050416576815],[-76.56743019908814,39.24049815121553],[-76.56743509497973,39.24049538225781],[-76.56744148769306,39.2404927674431],[-76.56744480424314,39.24048798844091],[-76.56744665078,39.24048093677125],[-76.56745108462589,39.24047415225649],[-76.56745766259135,39.240470030226],[-76.56746361313822,39.24046526993619],[-76.56746449294018,39.24046155838134],[-76.56746075505841,39.24045735150093],[-76.56746089432605,39.24045255538667],[-76.56746502924625,39.24044882339755],[-76.56747144208938,39.24044879748303],[-76.56748152155686,39.24044300029973],[-76.5674861232887,39.24043869893838],[-76.56749778070173,39.24043019713509],[-76.56750781958394,39.24042421604192],[-76.56751639284488,39.24041942397615],[-76.56752383485754,39.24041493490658],[-76.56752967073173,39.24041036245288],[-76.567535185708,39.24040351345887],[-76.56753536487318,39.24039787166363],[-76.56754159383044,39.24039475450846],[-76.56754841338757,39.24039508679491],[-76.56755917552924,39.24039549665871],[-76.56756985677248,39.24039530540654],[-76.56757757377311,39.24039150103479],[-76.56758566104835,39.24038890326351],[-76.56759649503798,39.24038740644765],[-76.56760208603112,39.2403830997178],[-76.56760447065187,39.24037879829228],[-76.56761166987646,39.24037575226536],[-76.56761763670944,39.24036945620607],[-76.56762149590348,39.2403636360999],[-76.5676276165478,39.24035928267779],[-76.56763192040549,39.24035405691903],[-76.56763203554956,39.24034903552188],[-76.56763641654274,39.24034388751372],[-76.56764348983192,39.24033907550176],[-76.56764696443285,39.24033439886344],[-76.56764739141812,39.24033028839762],[-76.56764400528236,39.24032633593613],[-76.56764585103728,39.24032188119486],[-76.56765201508811,39.24031724688945],[-76.56765602054053,39.24031822276827],[-76.56766360762373,39.24032053237387],[-76.56766918703374,39.24032212027049],[-76.56767662523815,39.24031996508548],[-76.5676804679984,39.24031513036478],[-76.5676817671266,39.24031046553083],[-76.56768557748843,39.24030505419456],[-76.56769306927001,39.240303991846],[-76.56770250229563,39.2403006738986],[-76.56770514356444,39.24029550326731],[-76.56770562647304,39.24028867626939],[-76.56771225648185,39.24028342124107],[-76.56771671622263,39.2402851230139],[-76.56772304187275,39.24028590746218],[-76.56772567800844,39.24028215012768],[-76.56772738312473,39.24027625092474],[-76.56773293764871,39.2402697506668],[-76.5677340596544,39.24026240447328],[-76.56773872215858,39.24025515689019],[-76.56774629738096,39.24025066289227],[-76.56775379000563,39.24024546598511],[-76.56775441501225,39.24023793960787],[-76.56775464401024,39.24022810578811],[-76.567753498442,39.24021915687293],[-76.56775038013448,39.24021059793571],[-76.56774559305049,39.2402017806367],[-76.5677451673869,39.24019445126352],[-76.56774470540174,39.24018680918763],[-76.56774086305177,39.24018016443357],[-76.56773380202064,39.24017136308181],[-76.56772827102215,39.24016525077281],[-76.56772179660189,39.24015941422986],[-76.56771509245945,39.24015344802972],[-76.56770723176624,39.24014623450052],[-76.56770297895271,39.24014003772044],[-76.56769837964123,39.24013177328592],[-76.56769235904248,39.24012084362813],[-76.56769137521648,39.24011310775103],[-76.56769070502641,39.24010484697621],[-76.56769085150498,39.24009829347546],[-76.56769249113263,39.24009116447343],[-76.56769465379888,39.24008431393545],[-76.56769531865427,39.24007785332194],[-76.56769529540929,39.24007063802714],[-76.56769275127677,39.24006404399154],[-76.56768794735005,39.24005856580137],[-76.56767933178739,39.24005167286841],[-76.56767165842318,39.24004565625592],[-76.56766466671598,39.24003936021066],[-76.56765708223986,39.24003244314933],[-76.56765045742972,39.24002638715992],[-76.56764325579543,39.24002032544252],[-76.56763702624964,39.24001650843368],[-76.56763173276394,39.24001381453564],[-76.56762460261398,39.24001066078275],[-76.5676148282348,39.24001544663113],[-76.56761650770044,39.24001851365116],[-76.56718522885784,39.24025723315461],[-76.56711435740819,39.24029725720357],[-76.56711282345381,39.24029521489447],[-76.56707679055361,39.24031475404508],[-76.56698625820826,39.24036483382444],[-76.56686874044308,39.24043050277182],[-76.56669511152005,39.2405295562096],[-76.56667911051311,39.24054387892298],[-76.56664229378421,39.24056217648072],[-76.56663070357584,39.24057312134936],[-76.56653518836416,39.24062207893515],[-76.56653105896467,39.24061901636542],[-76.56651923972719,39.24062743730622],[-76.5664905317621,39.24064758252226],[-76.56649124451742,39.24065985281025],[-76.56648611841302,39.2406654096782],[-76.56636610735339,39.24072436444412],[-76.56625559474722,39.24078122565096],[-76.56628040529296,39.240808229775],[-76.56616108531556,39.24087515333825],[-76.56613919955771,39.24085082088839],[-76.56623107468228,39.24080071339759],[-76.56622644294534,39.24079588073967],[-76.5660707065516,39.24088680951594],[-76.56602630823421,39.24091434783054],[-76.56598620667295,39.24094030493968],[-76.56592084625133,39.24098359683478],[-76.5658827081206,39.24101352007467],[-76.56583332797408,39.24104514742718],[-76.56579996677722,39.24105728809168],[-76.56579228076926,39.24105883872205],[-76.56578344777311,39.24105871777481],[-76.56576990492924,39.24105744623069],[-76.56575777223262,39.24105535028737],[-76.56574536672342,39.24105221564078],[-76.56573153204162,39.2410477137342],[-76.56571484414756,39.24104001703112],[-76.565693809555,39.24103050809937],[-76.56568820102953,39.24102856509612],[-76.56568544506393,39.24102651554539],[-76.56568115729262,39.24102737793774],[-76.56567968893602,39.24102616726825],[-76.56567976017938,39.24102304274322],[-76.56567763654692,39.24102271961519],[-76.56567504534296,39.24102384410419],[-76.5656721925174,39.24102266884734],[-76.56567225094513,39.24102012437404],[-76.56566906385744,39.24101943429894],[-76.56566675354681,39.24102065530916],[-76.56566320265087,39.2410199783003],[-76.56566329823734,39.24101590444845],[-76.56566066421804,39.24101474981791],[-76.56565741429885,39.24101732391876],[-76.5656547325846,39.24101639160306],[-76.56565479909285,39.24101366250074],[-76.56565245689188,39.24101214413585],[-76.56564986317196,39.24101424775745],[-76.56564673636993,39.24101279224603],[-76.56564682134764,39.24100931646958],[-76.56564453824001,39.24100798478355],[-76.56564097611796,39.24101027848852],[-76.56563811983783,39.24100853212666],[-76.56563820185896,39.24100497166643],[-76.56563520383116,39.24100443091782],[-76.56563179931628,39.24100690265836],[-76.56562916214824,39.2410045589924],[-76.56563083240501,39.24100154847695],[-76.56562803638954,39.24100036532224],[-76.56562453524526,39.2410025376477],[-76.56562160794573,39.2410014179621],[-76.56562168075232,39.24099822768628],[-76.56561946024564,39.24099688812445],[-76.56561721595671,39.2409984886043],[-76.56561412219595,39.24099693412899],[-76.56561418828601,39.2409940843213],[-76.56561129283381,39.24099249274715],[-76.56560831153902,39.24099376081606],[-76.56560556609119,39.24099188605267],[-76.56560593974118,39.24098969675037],[-76.56560311394426,39.24098808021208],[-76.56560053439463,39.24098900386974],[-76.56559769818774,39.24098700626495],[-76.5655981584303,39.24098562077445],[-76.56559683600679,39.24098479257256],[-76.56559274496473,39.24098625470506],[-76.56558960581712,39.24098397763957],[-76.56558966355875,39.24098154576056],[-76.56558778681583,39.24098006154468],[-76.56558307863041,39.24098147995747],[-76.56558107945925,39.24097936924967],[-76.56558120596634,39.24097648994],[-76.56558000550706,39.24097598556753],[-76.56557617590119,39.24097693792741],[-76.56557363365405,39.24097460542075],[-76.565576124606,39.24097206994923],[-76.56557329414476,39.24097064796032],[-76.56556928786458,39.24097169875149],[-76.56556696905494,39.24097033360317],[-76.56556802019119,39.24096760273998],[-76.56556628269165,39.24096721528227],[-76.56556414077883,39.24096760820063],[-76.56556225863577,39.24096587084651],[-76.56556411967168,39.24096235029854],[-76.56556136771646,39.24096021428527],[-76.56555842499886,39.24096104652051],[-76.56555508167844,39.24095938663017],[-76.56555628046686,39.24095562132298],[-76.56555427675963,39.24095406277311],[-76.56555218213315,39.24095543590952],[-76.56554825098002,39.24095329643271],[-76.56554831930599,39.24095027098215],[-76.56554491800526,39.24094767497163],[-76.56554162777867,39.2409498318613],[-76.56553844424369,39.24094799420835],[-76.56553968554744,39.24094523162132],[-76.56553686796502,39.24094303050876],[-76.56553425488377,39.24094526917246],[-76.56553031168274,39.24094244866454],[-76.56553121346066,39.24093989560237],[-76.56552849627225,39.24093718952636],[-76.5655247453322,39.24093872677875],[-76.56552212948897,39.24093630662338],[-76.56552384128048,39.24093408083818],[-76.56552048305632,39.24093182818165],[-76.56551654132988,39.24093274139132],[-76.56551349201463,39.24093073939262],[-76.56551533397676,39.24092863209086],[-76.56551265914092,39.24092600904248],[-76.56550892581329,39.24092750762629],[-76.56550530599191,39.24092522337476],[-76.56550547592136,39.24092168485846],[-76.56550221235931,39.24092024234854],[-76.56549924890048,39.24092219236746],[-76.56549655029869,39.24092004574074],[-76.56549729193459,39.24091772898994],[-76.56549453422008,39.24091596677538],[-76.56549171221678,39.24091789479829],[-76.56548689892199,39.24091510079398],[-76.56548834758246,39.24091271549891],[-76.56548547427074,39.24091072496018],[-76.56548174250368,39.2409119686295],[-76.56547799885762,39.24090985416528],[-76.56547918021599,39.2409070445167],[-76.56547681072529,39.24090601156493],[-76.56547419083036,39.24090784935722],[-76.56547017078806,39.24090585006964],[-76.56547081984968,39.24090295017484],[-76.56546749040517,39.24090072734889],[-76.56546513094973,39.24090259673136],[-76.56546147104072,39.24090004930372],[-76.56546232269625,39.24089697991243],[-76.56545930741926,39.24089585179006],[-76.56545744071626,39.24089745906922],[-76.5654542281611,39.24089563211581],[-76.56545566366229,39.24089369355688],[-76.56545209024424,39.24089139866616],[-76.56544900046063,39.240893737351],[-76.56544558366781,39.24089178083049],[-76.56544679932054,39.24088942439899],[-76.56544329727194,39.24088644608388],[-76.5654400542831,39.24088845541849],[-76.56543650997838,39.24088594625057],[-76.5654381006028,39.24088345609098],[-76.56543552249946,39.24088130540505],[-76.56543182232333,39.24088287617108],[-76.56542798215676,39.2408804451759],[-76.56543018727042,39.24087786451129],[-76.56542713581382,39.24087564541556],[-76.56542384490155,39.24087696818169],[-76.56541961361832,39.240874280819],[-76.565422049749,39.24087142897569],[-76.56541881964991,39.24086962988036],[-76.56541519036998,39.240871162175],[-76.56541199101619,39.24086907134219],[-76.56541428051807,39.24086651891432],[-76.56541086961144,39.24086360128755],[-76.56540786437934,39.24086480620851],[-76.56540356903051,39.2408623663212],[-76.56540604354575,39.2408589210095],[-76.56540338711298,39.24085688803445],[-76.56540096791433,39.24085867702545],[-76.56539683617402,39.2408565701296],[-76.56539847234868,39.24085345139812],[-76.56539583809078,39.24085176980722],[-76.56539293191901,39.24085287691008],[-76.56538963895645,39.24085093976259],[-76.56539047607467,39.24084797480783],[-76.56538776487632,39.24084675142647],[-76.56538512099733,39.24084796579162],[-76.5653816288993,39.24084563336718],[-76.56538169231236,39.24084284390153],[-76.5653793598255,39.24084144356853],[-76.56537657294734,39.24084331046603],[-76.56537310480083,39.24084179603379],[-76.56537366059698,39.24083861565313],[-76.56537128746899,39.2408370422207],[-76.5653679154789,39.24083817462156],[-76.56536476822636,39.24083665597252],[-76.56536566368698,39.24083343271148],[-76.56536282156902,39.24083164586034],[-76.56535891764671,39.24083262856441],[-76.56535639271044,39.24083106537891],[-76.56535816120753,39.24082809216267],[-76.56535583728727,39.24082604960827],[-76.56535174573096,39.24082759640338],[-76.56534940833026,39.24082586366558],[-76.56535129583271,39.24082218378161],[-76.56534756566477,39.24081957213517],[-76.56534385241159,39.24082100863457],[-76.56534119733952,39.24081988904904],[-76.56534351265624,39.24081652602047],[-76.5653398119493,39.24081383251239],[-76.56533818247973,39.24081585592538],[-76.56533401807862,39.24081378673886],[-76.56533105539205,39.24081617813624],[-76.56532752056019,39.24081401489766],[-76.56532924814104,39.24081091362029],[-76.56532574767361,39.24080881356313],[-76.56532300557885,39.24081036625472],[-76.56531986538334,39.24080883051583],[-76.56532135146723,39.2408065768745],[-76.56531845212928,39.2408042979872],[-76.56531546542618,39.24080607136349],[-76.56531140489075,39.24080387645228],[-76.56531284218096,39.24080088939944],[-76.56530961472983,39.24079865883961],[-76.56530664021139,39.24080071240187],[-76.56530219490354,39.24079892771975],[-76.56530390635658,39.24079562280784],[-76.56530046823147,39.24079374637301],[-76.56529786628485,39.24079549054729],[-76.5652938902102,39.24079274467382],[-76.56529519440755,39.2407901165376],[-76.56529247643961,39.24078829681581],[-76.56529019746581,39.24079026467731],[-76.56528625110589,39.24078777383298],[-76.56528738143666,39.24078478564374],[-76.56528396153155,39.24078296062009],[-76.56528250415177,39.24078506664012],[-76.56527781058034,39.24078239737737],[-76.56527926422619,39.2407791987033],[-76.56527549821514,39.24077714450163],[-76.56527279833332,39.24077993771567],[-76.56526841594749,39.24077828207614],[-76.56527033183752,39.24077507430471],[-76.56526767082808,39.24077303320254],[-76.56526416246363,39.24077524962865],[-76.56526087773804,39.24077310352816],[-76.56526228812318,39.24076997045073],[-76.56525971954386,39.24076853591234],[-76.56525577965954,39.24077009497582],[-76.56525344438244,39.24076631388137],[-76.56525924020235,39.24076547330334],[-76.56526178003487,39.24076233359924],[-76.56518750164184,39.24067939166638],[-76.565045441322,39.24053565115797],[-76.56487352623334,39.24036484951949],[-76.56469057619152,39.24019104404911],[-76.56462546852772,39.24012341289816],[-76.56469127841886,39.24008578385257],[-76.56468216990766,39.24008565459413],[-76.56475506366715,39.23992625884822],[-76.56491286298319,39.23984680811197],[-76.56493066978291,39.23983838970467],[-76.56506183367917,39.23977386408244],[-76.56507575877508,39.23976866595557],[-76.56508612979697,39.23977995866641],[-76.56509100587071,39.23978005329717],[-76.56509339993681,39.23977479893613],[-76.56509585655195,39.23977540615213],[-76.56510333590738,39.23977580227803],[-76.56510559033538,39.23977197512839],[-76.5651118115491,39.23976729432665],[-76.56512092378368,39.23976227113052],[-76.56513764609012,39.23975521424971],[-76.56515015203858,39.23975231143725],[-76.56516319360998,39.23975008889142],[-76.56517842161361,39.23974530543135],[-76.56519061150394,39.23974105028081],[-76.56519131246303,39.23973554013179],[-76.56519386817696,39.23973093672718],[-76.56520866144999,39.23972639846547],[-76.56521992471919,39.23972402430201],[-76.56523185277777,39.23972034287218],[-76.56523796612559,39.23971833066171],[-76.56539388532991,39.23964478860764],[-76.5654614544774,39.23961198478986],[-76.56559386010221,39.23954750370375],[-76.56570438211375,39.23949569468854],[-76.56571050988185,39.23949302403999],[-76.56571852885165,39.23949003610834],[-76.56572373612534,39.23948654414969],[-76.56573145514898,39.23948070505412],[-76.56573782102446,39.23947149025072],[-76.56573972049983,39.23946679072584],[-76.56574047994705,39.23946212661771],[-76.56574096321491,39.23945697506922],[-76.56574107820475,39.2394520005119],[-76.56573911281238,39.23944551036063],[-76.56573519555684,39.23943486311635],[-76.56573356922343,39.23942596644647],[-76.56573108452092,39.23941783316104],[-76.56572791255269,39.23940824528309],[-76.5657253597188,39.23939894163816],[-76.56572147807394,39.23938947994545],[-76.56571685475882,39.23937988309486],[-76.56571224820915,39.23937057545499],[-76.56570668603382,39.2393614561447],[-76.56570073777111,39.23935334247269],[-76.565693429848,39.23934386540066],[-76.56568726689395,39.2393361959167],[-76.56568029781718,39.23932813431495],[-76.56567230333948,39.23931898078214],[-76.5656659066772,39.2393106988058],[-76.56566023831338,39.23930303385259],[-76.56565373443394,39.23929504783395],[-76.5656465219744,39.23928568370896],[-76.56564040294549,39.23927765227319],[-76.56563391325977,39.23926905107623],[-76.56562713094365,39.2392598119478],[-76.56562080770469,39.23925221573063],[-76.56561286896485,39.23924455678632],[-76.56560432454462,39.23923706584672],[-76.56559480271244,39.23922953796085],[-76.56558558997122,39.23922223010646],[-76.56557643416568,39.23921489363723],[-76.56556664546267,39.23920706210082],[-76.56555770242637,39.23919959670584],[-76.56554783383426,39.23919100281612],[-76.56553967279746,39.2391838970209],[-76.56553092061795,39.23917628730527],[-76.56552187695259,39.2391684206899],[-76.56551370525914,39.2391613535867],[-76.56550417458713,39.23915338067742],[-76.56549342036837,39.23914527442763],[-76.56548167976388,39.23913859765967],[-76.56546969462984,39.23913383323249],[-76.56545890291956,39.23912958215995],[-76.56544770320359,39.2391255646785],[-76.56543608294555,39.23912231490147],[-76.56542483379296,39.2391206969008],[-76.5654135433963,39.23912051818565],[-76.56540185131873,39.23912029654666],[-76.56539055273652,39.23911994124703],[-76.56537767991871,39.23911940536742],[-76.56536639286492,39.23911924827874],[-76.565354298434,39.23911909360424],[-76.56534260600388,39.2391189296077],[-76.56533091715357,39.2391187485085],[-76.56531962645407,39.23911861932586],[-76.56530874247692,39.23911846642652],[-76.56529743457381,39.23911830925397],[-76.56528574406889,39.23911896586538],[-76.56527361109336,39.23912056575062],[-76.56526269707095,39.23912172516568],[-76.56525137782617,39.23912285245262],[-76.56523923712707,39.23912457841428],[-76.56522668117147,39.23912696490668],[-76.56521371863035,39.23912954175709],[-76.56520196347543,39.23913205371831],[-76.56518941724194,39.23913417631552],[-76.56517727438795,39.23913606440241],[-76.56516513522892,39.23913791647065],[-76.56515258649499,39.23913987961741],[-76.56514125225762,39.23914175177961],[-76.56512910953897,39.23914361734258],[-76.56511818190748,39.23914529554052],[-76.56510685247311,39.23914695063029],[-76.56509592690388,39.23914848110662],[-76.56508338211569,39.2391503667939],[-76.56507205189054,39.23915215068825],[-76.56506071800229,39.23915396519432],[-76.56504897187389,39.23915613668054],[-76.56503882947787,39.23915877890804],[-76.56502827689943,39.23916163129706],[-76.56501813591404,39.2391642320923],[-76.56500679616315,39.23916643570649],[-76.56499750641315,39.23916698048134],[-76.56498580925361,39.239167020007],[-76.5649741203797,39.23916684157454],[-76.56496283438928,39.23916669886344],[-76.56495073889771,39.23916652702876],[-76.56493864454245,39.23916635880015],[-76.56492654904547,39.23916618786369],[-76.56491405171307,39.23916599922268],[-76.56490196085504,39.23916582740016],[-76.56489068103403,39.23916524512651],[-76.56487821602106,39.23916375227854],[-76.56486736184296,39.23916213839079],[-76.56485571208734,39.2391603026645],[-76.56484406557652,39.23915831561882],[-76.56483161723433,39.23915599321344],[-76.56481919210421,39.23915271877296],[-76.56480837247878,39.23914887018371],[-76.56479639454393,39.23914463897346],[-76.56478519036099,39.2391407889564],[-76.56477278492842,39.23913656967048],[-76.56476156267752,39.23913283308183],[-76.56474875543461,39.2391285924865],[-76.56473594660972,39.23912442124367],[-76.56472394242563,39.23912050520008],[-76.56471154423819,39.23911680568199],[-76.56470032467394,39.23911376539694],[-76.56468869937534,39.23911077675201],[-76.56467787668731,39.23910799645909],[-76.56466785548456,39.23910541910961],[-76.56465743180841,39.23910273937982],[-76.56464661029776,39.23909995638604],[-76.56463618662322,39.23909727665434],[-76.56462456039266,39.23909425196851],[-76.56461293564185,39.23909117504208],[-76.56460211867029,39.23908821911208],[-76.56459016050252,39.23908473469694],[-76.56457974622423,39.23908165685228],[-76.56456813406247,39.23907822776478],[-76.56455691964847,39.23907491635161],[-76.56454651096971,39.23907149262689],[-76.56453413378954,39.23906607088497],[-76.56452211250445,39.23906022529587],[-76.56451055423112,39.2390544327674],[-76.56449938718856,39.23904906505378],[-76.56448901596208,39.23904425787155],[-76.56447863203208,39.23903963349871],[-76.56446745616874,39.23903476027505],[-76.56445747320623,39.23903048418654],[-76.56444547325457,39.23902626096557],[-76.5644342693392,39.23902256224595],[-76.56442265361419,39.2390191502455],[-76.56441142965774,39.23901626394895],[-76.56439900445538,39.23901300837976],[-76.56439639929604,39.23901226277907],[-76.56439355518295,39.23901062812688],[-76.56439067035225,39.23900902214832],[-76.56438775062313,39.23900744036114],[-76.56438480297307,39.23900587828734],[-76.56438183205738,39.23900433234108],[-76.56437884368978,39.23900279894083],[-76.564375843695,39.23900127270358],[-76.56437283788118,39.23899975094852],[-76.56436983323131,39.23899822829694],[-76.56436683439522,39.23899670206377],[-76.56436384719767,39.23899516686596],[-76.56436087744676,39.23899362002273],[-76.56435793212552,39.2389920561553],[-76.56435501588933,39.23899047167793],[-76.5643521345518,39.23898886300903],[-76.56434929509054,39.23898722567071],[-76.56434650216077,39.238985556077],[-76.56434376158732,39.23898384884502],[-76.56434108033666,39.23898210129818],[-76.56433846191121,39.23898030894571],[-76.56433591560521,39.23897846731813],[-76.56433344375738,39.23897657282112],[-76.56433105450354,39.23897462098088],[-76.56432875249347,39.23897260911243],[-76.56432652029727,39.23897054615886],[-76.5643243439433,39.23896844377831],[-76.56432221995118,39.23896630285877],[-76.56432014483489,39.23896412518872],[-76.5643181185778,39.23896191347057],[-76.5643161353718,39.23895967038497],[-76.56431419521135,39.23895739683271],[-76.56431229344666,39.23895509549892],[-76.56431042890834,39.2389527681807],[-76.56430859810484,39.23895041756755],[-76.56430679870857,39.2389480454523],[-76.56430502722795,39.23894565452439],[-76.56430328134631,39.23894324477512],[-76.56430155871946,39.23894082069972],[-76.56429985586698,39.23893838318607],[-76.56429817161386,39.23893593493212],[-76.56429650247418,39.23893347772645],[-76.56429484496194,39.23893101335776],[-76.56429319790224,39.23892854452395],[-76.56429155665079,39.23892607300932],[-76.56428992003825,39.23892360061109],[-76.56428828573137,39.23892113002299],[-76.56428664908583,39.23891866302929],[-76.56428500892683,39.23891620232791],[-76.56428336293214,39.23891374881107],[-76.56428170761029,39.23891130516812],[-76.56428003946974,39.23890887408843],[-76.56427835734667,39.23890645646847],[-76.56427666473809,39.23890404871803],[-76.56427496866023,39.23890164005399],[-76.56427326910755,39.23889923137697],[-76.56427156839669,39.23889682269564],[-76.56426986653319,39.23889441310925],[-76.5642681646698,39.23889200352281],[-76.56426646281753,39.2388895921348],[-76.56426476212926,39.23888717985038],[-76.56426306260495,39.23888476666945],[-76.56426136656673,39.23888235169986],[-76.56425967285631,39.23887993493735],[-76.56425798379027,39.2388775163905],[-76.56425629821035,39.23887509605498],[-76.56425461843313,39.23887267393948],[-76.56425294562246,39.23887024914745],[-76.56425127862006,39.23886782167466],[-76.56424961974253,39.23886539152965],[-76.56424796783703,39.2388629578074],[-76.56424632520921,39.23886052231798],[-76.56424469303394,39.23885808236351],[-76.56424307130011,39.23885563974542],[-76.56424146001329,39.23885319356299],[-76.56423986033738,39.23885074291974],[-76.56423827342502,39.23884828872078],[-76.56423669928184,39.23884583006527],[-76.56423513906608,39.23884336695758],[-76.56423359393055,39.23884090030275],[-76.56423206388635,39.2388384282993],[-76.56423054893342,39.23883595094714],[-76.56422905254119,39.23883346916001],[-76.56422757239854,39.23883098202851],[-76.5642261108221,39.23882848956127],[-76.56422466781738,39.2388259908575],[-76.5642232445372,39.23882348682231],[-76.56422184214537,39.23882097655918],[-76.56422045947804,39.23881846096461],[-76.56421910002673,39.23881593734924],[-76.56421776496084,39.23881340391585],[-76.56421645544415,39.23881085976794],[-76.56421516914898,39.23880830669848],[-76.56421390724473,39.23880574291028],[-76.56421267087312,39.23880317110982],[-76.56421145888686,39.23880058949134],[-76.56421027011663,39.23879799985207],[-76.56420910572072,39.23879540219631],[-76.56420796685741,39.2387927965283],[-76.56420685004628,39.23879018373597],[-76.56420575876221,39.23878756383216],[-76.56420469068306,39.2387849377091],[-76.56420364697273,39.23878230447022],[-76.56420262646179,39.23877966591286],[-76.56420163030855,39.23877702204123],[-76.56420065736025,39.23877437195031],[-76.56419970760579,39.23877171744162],[-76.56419878220349,39.23876905851942],[-76.56419787883677,39.23876639517517],[-76.56419699982219,39.2387637274174],[-76.5641961439904,39.23876105704338],[-76.56419531134699,39.23875838315233],[-76.56419450188633,39.23875570664501],[-76.56419371560844,39.23875302752147],[-76.56419295134954,39.23875034667803],[-76.56419221142616,39.23874766412346],[-76.56419149004684,39.23874497983611],[-76.56419077794509,39.23874229378168],[-76.56419007163493,39.23873960774876],[-76.56418937112736,39.23873691993577],[-76.56418867757525,39.23873423124788],[-76.5641879898258,39.23873154077994],[-76.56418730903177,39.23872884943706],[-76.5641866328765,39.23872615721056],[-76.56418596251842,39.23872346410487],[-76.56418529795738,39.23872077011989],[-76.56418463803517,39.23871807525137],[-76.56418398391564,39.23871537860281],[-76.56418333442932,39.23871268197148],[-76.56418268958737,39.23870998355577],[-76.56418204937869,39.23870728515732],[-76.5641814138088,39.23870458587531],[-76.56418078288328,39.23870188480893],[-76.56418015543268,39.23869918375549],[-76.56417953262093,39.2386964818185],[-76.5641789132841,39.23869377989437],[-76.56417829859163,39.23869107618594],[-76.5641776862158,39.23868837248613],[-76.56417707847875,39.23868566790275],[-76.56417647306391,39.23868296242718],[-76.56417587112404,39.23868025696452],[-76.56417527266467,39.23867755061399],[-76.56417467652746,39.23867484337133],[-76.56417408270693,39.23867213613728],[-76.56417349120859,39.23866942801101],[-76.56417290202688,39.23866671989335],[-76.56417231632568,39.2386640108879],[-76.56417173178285,39.23866130188668],[-76.56417114839832,39.23865859288976],[-76.56417056733602,39.2386558830007],[-76.56416998859038,39.2386531731202],[-76.56416940985024,39.23865046233899],[-76.56416883342683,39.23864775156632],[-76.5641682570034,39.23864504079371],[-76.56416768289672,39.23864233002963],[-76.56416710879003,39.23863961926561],[-76.56416653468889,39.23863690760078],[-76.56416596174057,39.23863419684104],[-76.56416538995616,39.23863148518482],[-76.56416481701346,39.23862877352428],[-76.56416424407087,39.23862606186375],[-76.56416367228101,39.23862335110827],[-76.56416309933849,39.23862063944773],[-76.56416252523766,39.23861792778286],[-76.56416195113135,39.2386152170188],[-76.56416137703063,39.23861250535392],[-76.56416080060784,39.23860979458121],[-76.56416022418503,39.23860708380852],[-76.5641596454457,39.23860437302718],[-76.56415906670641,39.23860166224587],[-76.564158485645,39.23859895235671],[-76.56415790226706,39.23859624245895],[-76.56415731772529,39.2385935334576],[-76.564156730867,39.23859082444766],[-76.56415614169211,39.23858811542913],[-76.56415555135345,39.23858540730701],[-76.56415495753991,39.23858269917204],[-76.56415436140986,39.23857999102842],[-76.5641537617938,39.2385772846734],[-76.56415315986123,39.2385745783098],[-76.56415255445378,39.23857187193329],[-76.56415194556594,39.23856916644461],[-76.56415133435603,39.23856646184812],[-76.56415071851291,39.2385637572344],[-76.56415009918385,39.23856105440927],[-76.56414947638,39.23855835157123],[-76.56414884893739,39.23855564961675],[-76.56414821801997,39.23855294764937],[-76.56414758245828,39.23855024746626],[-76.56414694226343,39.23854754726597],[-76.56414629742436,39.23854484884999],[-76.5641456467938,39.2385421504125],[-76.56414499268284,39.23853945286285],[-76.5641443327694,39.23853675709316],[-76.5641436682228,39.23853406130632],[-76.56414299672088,39.2385313663944],[-76.56414232057475,39.23852867326676],[-76.5641416386316,39.23852598101841],[-76.56414095089147,39.23852328964929],[-76.56414025735432,39.23852059915943],[-76.56413955686189,39.23851790954446],[-76.56413885056693,39.23851522170956],[-76.56413813847503,39.23851253475384],[-76.5641374171112,39.23850984866453],[-76.56413668879205,39.23850716345011],[-76.56413595120102,39.23850447910207],[-76.56413520549641,39.23850179562465],[-76.56413445284198,39.23849911212144],[-76.5641336909102,39.2384964303853],[-76.56413292086476,39.23849374951983],[-76.56413214154193,39.23849107042144],[-76.56413135526941,39.23848839129723],[-76.5641305597194,39.23848571394012],[-76.56412975605025,39.23848303835442],[-76.56412894310927,39.23848036363503],[-76.56412812205465,39.23847768978635],[-76.56412729288093,39.23847501770899],[-76.56412645442983,39.23847234739879],[-76.56412560786507,39.23846967795917],[-76.56412475318126,39.23846701029098],[-76.56412388922001,39.23846434438988],[-76.56412301598137,39.2384616802559],[-76.56412213462362,39.23845901789328],[-76.56412124398842,39.23845635729775],[-76.56412034523414,39.23845369847363],[-76.56411943719692,39.23845104231737],[-76.5641185198878,39.23844838702746],[-76.56411759445405,39.23844573440966],[-76.56411665974291,39.23844308355898],[-76.56411571575438,39.23844043447536],[-76.56411476364117,39.23843778806393],[-76.56411380109229,39.2384351434153],[-76.56411283041874,39.2384325014388],[-76.56411185046227,39.23842986213014],[-76.56411086122843,39.23842722458856],[-76.56410986271167,39.23842458971485],[-76.56410885491194,39.23842195750897],[-76.56410783782927,39.23841932797097],[-76.56410681146367,39.2384167011008],[-76.56410577582071,39.2384140759977],[-76.56410473088931,39.23841145446322],[-76.56410367667495,39.23840883559661],[-76.56410261201935,39.23840621939349],[-76.5641015392336,39.23840360676331],[-76.56410045600661,39.23840099679668],[-76.56409936349678,39.23839838949783],[-76.56409826170393,39.23839578486691],[-76.56409715062826,39.23839318290377],[-76.5640960302751,39.23839058270777],[-76.5640949006446,39.23838798427884],[-76.5640937617312,39.23838538851773],[-76.56409261469315,39.2383827954288],[-76.56409145838329,39.23838020320617],[-76.56409029394877,39.23837761365571],[-76.5640891225535,39.23837502588092],[-76.56408794188081,39.23837243987322],[-76.5640867542474,39.2383698556412],[-76.56408555965314,39.2383672731849],[-76.56408435693986,39.23836469249997],[-76.56408314842407,39.23836211359504],[-76.56408193178922,39.23835953646151],[-76.5640807093519,39.23835696110793],[-76.56407947995929,39.23835438662931],[-76.56407824475875,39.2383518148314],[-76.56407700376117,39.23834924391274],[-76.56407575696674,39.23834667387333],[-76.56407450436976,39.2383441056139],[-76.56407324712866,39.23834153913879],[-76.5640719840906,39.23833897354287],[-76.56407071525004,39.23833640972694],[-76.5640694429292,39.23833384679887],[-76.56406816596967,39.23833128475433],[-76.56406688436603,39.23832872449405],[-76.5640655981237,39.23832616511733],[-76.56406430840104,39.23832360662844],[-76.56406301519804,39.2383210490274],[-76.56406171850917,39.23831849321492],[-76.56406041950382,39.23831593739385],[-76.56405911585429,39.23831338335702],[-76.56405780988825,39.23831082931163],[-76.56405650160016,39.23830827615835],[-76.56405518982619,39.23830572479365],[-76.56405387689402,39.23830317342465],[-76.5640525616454,39.23830062204699],[-76.56405124406918,39.23829807246226],[-76.56404992533477,39.23829552287321],[-76.56404860543658,39.23829297418061],[-76.56404728438021,39.23829042548365],[-76.5640459610018,39.23828787767886],[-76.56404463877625,39.23828533077911],[-76.56404331423974,39.23828278296993],[-76.56404199085058,39.23828023696659],[-76.56404066630873,39.23827769005817],[-76.56403934176141,39.23827514405051],[-76.5640380172142,39.23827259804281],[-76.56403669382539,39.23827005203938],[-76.56403537043118,39.23826750693673],[-76.56403404935915,39.23826496094189],[-76.5640327282817,39.23826241584782],[-76.56403140720988,39.23825986985292],[-76.56403007336368,39.23825732921524],[-76.56402871978773,39.2382547948097],[-76.56402734879876,39.23825226664489],[-76.56402595924938,39.23824974291502],[-76.56402455460348,39.23824722543452],[-76.56402313487219,39.23824471240181],[-76.56402170237756,39.23824220292482],[-76.56402025827238,39.23823969790855],[-76.56401880256225,39.23823719645225],[-76.56401733872748,39.23823469766812],[-76.56401586560433,39.23823220245254],[-76.56401438668422,39.23822970811622],[-76.56401290195616,39.23822721646059],[-76.56401141258944,39.2382247256885],[-76.56400991974243,39.23822223580422],[-76.56400842573169,39.23821974681644],[-76.56400693172108,39.23821725782858],[-76.5640054388688,39.238214768845],[-76.56400394718051,39.238212278965],[-76.56400246013656,39.23820978730063],[-76.56400097657315,39.2382072947484],[-76.56399949997071,39.23820480042044],[-76.56399803033477,39.23820230341604],[-76.56399577566826,39.23819843521734],[-76.56390086257575,39.23808416963864],[-76.5637599910429,39.2379165694019],[-76.56360378609884,39.23772338759605],[-76.56349338383559,39.2375905198092],[-76.56341125203494,39.23749301523507],[-76.56337710107536,39.23744298792487],[-76.56335213873224,39.23741109047361],[-76.56340324036547,39.2373846563081],[-76.56354083242933,39.23731573795371],[-76.56368452910792,39.23724219952809],[-76.56360713382026,39.23713809108073],[-76.56350704852817,39.2370085809951],[-76.5633996074982,39.23686565342164],[-76.56329582970233,39.23672946276445],[-76.56317134536819,39.23655770076667],[-76.56305269946846,39.23639816677918],[-76.56293482075283,39.23624542827373],[-76.56280678248811,39.23608057689538],[-76.56266768828503,39.23589270897286],[-76.56253312346264,39.23571371508861],[-76.56238243540393,39.2355092707413],[-76.5622474993467,39.23533116959208],[-76.56207311057746,39.23509527318791],[-76.56207100078969,39.23509555356534],[-76.56195414542286,39.23511761444669],[-76.56175182843695,39.23515628086792],[-76.56153868117828,39.23519703862564],[-76.56130909046151,39.23524047290603],[-76.56109849774008,39.23528031161227],[-76.56085554926068,39.23532617399821],[-76.56040458545903,39.23541222078359],[-76.56011989968081,39.23546651064066],[-76.56000000864397,39.23534313320518],[-76.5598668711711,39.23520662129071],[-76.55970691120105,39.23504036765024],[-76.55953170112693,39.23486140424551],[-76.55943714172983,39.23476312862733],[-76.5592458179222,39.23456702466501],[-76.55908423892222,39.23440213323708],[-76.55894940182627,39.23426141352495],[-76.55879743676923,39.23410842104056],[-76.55874166212944,39.2339263363754],[-76.55868216068085,39.23373285994474],[-76.55857721350871,39.2333977833371],[-76.55863426726124,39.23321170992283],[-76.55869818688281,39.23299077247439],[-76.55879315944266,39.23266921325692],[-76.55885984721095,39.23244308860906],[-76.55890580158291,39.23228344445429],[-76.5589431297836,39.23216026196598],[-76.56030989142988,39.23190882662986],[-76.56029501871838,39.23187516200351],[-76.56028756783746,39.2318488007591],[-76.56028103790734,39.23181886057143],[-76.56027670210959,39.23179389549071],[-76.56027204195841,39.23176950028753],[-76.56026504496306,39.23174783919742],[-76.56025595493531,39.23172432997666],[-76.56024638030475,39.23170220613702],[-76.5602365480791,39.23168128116721],[-76.56022548427617,39.23165836356583],[-76.5602163238522,39.23163612597563],[-76.56020189690332,39.23160007143996],[-76.56019196700643,39.23157304243014],[-76.56018262390626,39.2315477649283],[-76.56017224558479,39.23152263938091],[-76.56016121377905,39.2314975555218],[-76.56014983565362,39.23147135339926],[-76.56013720300929,39.23144424579649],[-76.56012411733005,39.23141623301427],[-76.56011106748549,39.23138636386171],[-76.56009696558517,39.23135413072684],[-76.5600870088625,39.23132826541033],[-76.5600780230162,39.23130328829529],[-76.56006390444091,39.23126141496937],[-76.56005891829231,39.23124964743629],[-76.56005260931313,39.23122687734889],[-76.56005059830954,39.23120394411584],[-76.56004913737966,39.2311838269742],[-76.56004905001089,39.23116260071871],[-76.56004882611272,39.23114639848991],[-76.56005351493648,39.23112970033066],[-76.56005945670442,39.23111154490496],[-76.56006435548083,39.23109572939355],[-76.56006614690442,39.23107952030566],[-76.5600710904335,39.2310656407331],[-76.56008119235422,39.23105329920512],[-76.560100257697,39.23103926627986],[-76.56013671278744,39.23102310782829],[-76.56016870238651,39.23101022227318],[-76.56022164388122,39.23099211053163],[-76.56024486485714,39.23098760896984],[-76.56026517434441,39.23098306767108],[-76.56031788127773,39.2309755193299],[-76.56038964121103,39.23096115407774],[-76.56049611191099,39.23093735069562],[-76.56063805569181,39.23091098667911],[-76.56076405122487,39.23088774976398],[-76.56090951074266,39.230858636791],[-76.56101814213484,39.23083467617642],[-76.56121739595828,39.23079047599677],[-76.56130850819474,39.23076519754013],[-76.56143960944509,39.23072926180155],[-76.56154209361732,39.23070534349094],[-76.56161379925945,39.23069274551536],[-76.56169825873729,39.23068206513648],[-76.56181635790452,39.23066485713903],[-76.56190914150726,39.23064851386691],[-76.56199394495708,39.23063350181793],[-76.56209594911243,39.23061186830797],[-76.56220484703552,39.23059038653135],[-76.56228667673176,39.23056925950873],[-76.56237797943875,39.23054792093542],[-76.56243803400214,39.2305350186918],[-76.56248572420587,39.23052784611799],[-76.56254634919019,39.23052029386331],[-76.56261484678909,39.23050648078222],[-76.56265580264134,39.23049338024725],[-76.56267271641741,39.23048651358316],[-76.56267968487954,39.23048188072354],[-76.56268821264362,39.23047587187989],[-76.56270020682541,39.23047137844772],[-76.56271425451405,39.23046951392833],[-76.5627275197253,39.23046625749271],[-76.56273333803,39.23046389120604],[-76.56275130044277,39.23044660283431],[-76.56278247553925,39.23040298800053],[-76.56281538686817,39.23035897517569],[-76.56285921460649,39.23029363204235],[-76.56291377351334,39.23020637149121],[-76.56294586488684,39.23015517367233],[-76.56296246838504,39.23013190084334],[-76.56296986690035,39.23012230808272],[-76.56297474096048,39.23011453089835],[-76.56297717233042,39.23010544659795],[-76.56297594381672,39.23009861953176],[-76.56297048002796,39.23008291123975],[-76.56296404362834,39.23005737544176],[-76.56294592150186,39.22999564791182],[-76.56292629377805,39.2299245106494],[-76.56289998042713,39.22984425332982],[-76.56289826309714,39.22983518060391],[-76.56289429433899,39.22982044981399],[-76.56289013709471,39.2298071757808],[-76.56288604268109,39.22979385514084],[-76.56288153051584,39.22977953668454],[-76.56287706564373,39.2297650616687],[-76.56287256168066,39.22975016404213],[-76.56286706527648,39.22973298915552],[-76.56286153348499,39.22971629515217],[-76.56285668560679,39.22970101161174],[-76.5628513593246,39.2296842355016],[-76.5628436466436,39.22965720145046],[-76.56283859540484,39.22964052454868],[-76.56283360868649,39.22962296242209],[-76.56282881456129,39.22960365350308],[-76.56282411531222,39.2295875580125],[-76.56281879797177,39.22957008473136],[-76.56281341060695,39.22955457938918],[-76.56280834843133,39.22953911669372],[-76.56280346687139,39.22952234764169],[-76.56279877788604,39.22950703226172],[-76.56279161290402,39.22948340969089],[-76.56278658408591,39.22946986667651],[-76.56278140782275,39.22945468910115],[-76.56277677105993,39.2294399224884],[-76.56277241780992,39.22942406698998],[-76.56276790581074,39.22940747226195],[-76.56276419032513,39.22939337385459],[-76.56275922592484,39.22937576676775],[-76.56275509627224,39.22935914914226],[-76.5627506534049,39.22934167370974],[-76.56274554963424,39.22932657567068],[-76.56273875804578,39.22931115877364],[-76.56273291464881,39.22929580035599],[-76.56272762004197,39.22927953239496],[-76.56272294787352,39.22926506470571],[-76.5627171475499,39.22924835528028],[-76.56271099101635,39.22923175171999],[-76.5627064576437,39.22921581087389],[-76.56270243851378,39.22919610759151],[-76.56269730198488,39.22918351088859],[-76.5626836138353,39.22915167683208],[-76.56267801574846,39.22913617069653],[-76.56267625714942,39.22912026721065],[-76.56267103527661,39.22910479310276],[-76.56266628721434,39.22909174475413],[-76.56266374110116,39.22907639861765],[-76.56266210944065,39.22906508326765],[-76.56265785498854,39.22904616998928],[-76.56265520564129,39.22902821751632],[-76.5626502993277,39.22901209422103],[-76.56264453593006,39.2289940968154],[-76.56263891285944,39.22898020567946],[-76.56263286196604,39.228961312729],[-76.56262732071151,39.22894560953144],[-76.56262105719694,39.22892927129575],[-76.56261524769516,39.22891424808621],[-76.56260968327994,39.228897229665],[-76.56260621005036,39.22887652854779],[-76.56260001704536,39.22886002663178],[-76.5625927625771,39.22884681490573],[-76.56258988530014,39.22882807700292],[-76.56258805943676,39.2288150125167],[-76.56258411884914,39.22879854871924],[-76.56257859022934,39.22878418232061],[-76.56257294342088,39.22876850935267],[-76.5625653490164,39.22874919268396],[-76.56256153640774,39.22873714767987],[-76.56255507318834,39.22872916701714],[-76.56254951960798,39.22871152259154],[-76.56254201409584,39.22870014931537],[-76.56253988821959,39.22868878618073],[-76.56253378582284,39.22867600481235],[-76.56253253184033,39.22866129223026],[-76.56253151222671,39.22864688768706],[-76.56253040691639,39.22863135414913],[-76.56252939772693,39.22861694964463],[-76.56252431388437,39.2286016408847],[-76.56251642941311,39.22858936901879],[-76.56251313413102,39.22857757545636],[-76.56251357552974,39.22856439601218],[-76.56251119775746,39.22855143575845],[-76.56250606625461,39.22853690869536],[-76.56250363991082,39.22851717080399],[-76.56249770525862,39.22850348387524],[-76.56248963152835,39.22849599083166],[-76.56248502325542,39.22848601825162],[-76.56248304718167,39.22845542225392],[-76.56247886502656,39.22844095367549],[-76.56246992649839,39.22841649034523],[-76.56246481194177,39.2284020354052],[-76.56245853255338,39.22838415226394],[-76.56245449369611,39.22836597751543],[-76.56244970737649,39.22835144633117],[-76.56244492390243,39.22833325889771],[-76.56244319708237,39.22831333805127],[-76.56243963558086,39.22829550917879],[-76.56243305467517,39.22827731684529],[-76.56242680650183,39.22826057330274],[-76.56241925092878,39.22824192424306],[-76.56241157859988,39.22822267663064],[-76.56240540042936,39.22820491186489],[-76.5623989728637,39.22818476811378],[-76.56239306373429,39.2281671358639],[-76.56238532900888,39.22814598827488],[-76.56237846897305,39.22812667522915],[-76.56237238123249,39.22810739478809],[-76.5623666474029,39.22808293258695],[-76.56235862108488,39.22806212079953],[-76.56235024535943,39.22804538553279],[-76.56233921817173,39.2280275945746],[-76.56232903622181,39.22801059134523],[-76.56231867372891,39.22799413151181],[-76.56230678193907,39.22797794611653],[-76.56229658693006,39.22796024563279],[-76.56229352838029,39.2279388056069],[-76.56228641252532,39.22791403018036],[-76.56227759163689,39.22789680682705],[-76.5622649291815,39.22788126891498],[-76.56225278022143,39.22787017015163],[-76.56224249790696,39.22785799381168],[-76.56223741012353,39.22784033759209],[-76.56223772656945,39.22782507868316],[-76.56224122146934,39.22780730044115],[-76.56224028446442,39.22779209450694],[-76.56223894321595,39.22777220031408],[-76.56223939432206,39.22775275779073],[-76.56224270748467,39.22773064342332],[-76.56224363030385,39.22770982987249],[-76.56224200988336,39.22768693954927],[-76.5622386790423,39.22766383386584],[-76.56223294022173,39.22764075793445],[-76.56222384306277,39.22760861755245],[-76.56221477269715,39.2275781437098],[-76.562203352186,39.22754677383314],[-76.56219410647891,39.22750548368537],[-76.56219147093381,39.22747668136654],[-76.56219269809883,39.22746605225228],[-76.56219791952776,39.22745507862636],[-76.56220699824063,39.22744324833496],[-76.56221821044741,39.22743157552987],[-76.56223237423309,39.22741585752627],[-76.56224331497772,39.22740369368265],[-76.5622534002261,39.22738996559792],[-76.56226834523652,39.22737076088706],[-76.56228335400276,39.22735023046579],[-76.56230055900922,39.22732512597173],[-76.56233048976513,39.2272821650528],[-76.56237004342607,39.2272226836943],[-76.56241403614833,39.22716358458793],[-76.56245248656684,39.22711622086609],[-76.56247619070567,39.227087022213],[-76.56254513947465,39.22700057385885],[-76.56259354363394,39.22693915990928],[-76.56267378533506,39.22685249053502],[-76.56274347563807,39.22677155488726],[-76.56281449036391,39.22668126774086],[-76.56288581915231,39.22658809562419],[-76.56294044414376,39.22651390192496],[-76.56299801937952,39.22643867067735],[-76.56306081677324,39.22636189058546],[-76.56308760946257,39.22632925241878],[-76.56309342373166,39.22631713336493],[-76.56318518964862,39.22620921932256],[-76.5632471947895,39.22613220017495],[-76.56331041747416,39.22605114733156],[-76.56336351955358,39.22598321357957],[-76.56341202865306,39.22592239778781],[-76.56344766253888,39.22587669599805],[-76.56347930696239,39.22583621738909],[-76.56351033814363,39.22579771370046],[-76.56354547528234,39.22575122365241],[-76.5635954961499,39.22568727328824],[-76.56363579889029,39.22563090285768],[-76.56366882755373,39.22559203813349],[-76.56370399778395,39.2255480451186],[-76.56372931833434,39.22551364030473],[-76.56376546572642,39.22546873931456],[-76.56380623552725,39.22542169722548],[-76.56384565720961,39.22537409252978],[-76.56387726780613,39.22533339119138],[-76.56390676270314,39.22529397550174],[-76.56393855493984,39.22525348109948],[-76.56397867978738,39.22520392968406],[-76.56401148502709,39.2251617806903],[-76.56404118657316,39.22512301339341],[-76.56407119842919,39.22508500569728],[-76.56410026086085,39.22504771058648],[-76.56412074126207,39.22501840593541],[-76.56413499250797,39.22500093330202],[-76.56413710412546,39.22499502212411],[-76.56413652807611,39.22498302430873],[-76.56412868230167,39.22494032075853],[-76.5641266278304,39.22491730272464],[-76.56412548934463,39.22489410883727],[-76.56412476490041,39.22487930724554],[-76.56412353147188,39.22486233558798],[-76.56411485539626,39.2248339630512],[-76.56409818591857,39.22477732049696],[-76.56407978551215,39.22472249738983],[-76.5640674756618,39.22468577283829],[-76.56406396660923,39.22467087082448],[-76.56406420335675,39.22466399965898],[-76.5641001686256,39.22464054813741],[-76.56411821703382,39.224631406502],[-76.56413096490054,39.22462488986686],[-76.5641333952359,39.22461705130371],[-76.56414453473097,39.22460464750623],[-76.56416356177043,39.22459342239256],[-76.56417680630713,39.22458768406854],[-76.56421307638787,39.22457040938667],[-76.56423167859975,39.22456235703066],[-76.564257637811,39.22455135310913],[-76.56427005454063,39.22454519644194],[-76.56427570938486,39.22454239259213],[-76.56429395494672,39.22453225449892],[-76.56431231308534,39.22452207628573],[-76.56432881016632,39.2245130279447],[-76.56434278822579,39.22451023246833],[-76.56440598322878,39.22453387017518],[-76.56440915382491,39.22453504935253],[-76.56443000132187,39.22454308330726],[-76.56445413009563,39.22455313366902],[-76.56447452175999,39.22456184961565],[-76.56450059003531,39.22457100998883],[-76.56452556276589,39.22457922407612],[-76.56454892154377,39.2245877447404],[-76.56457316600249,39.2245978207285],[-76.56459263583073,39.22460672780268],[-76.5646148020852,39.22461557641719],[-76.56463811619703,39.22462269708694],[-76.56465998839097,39.2246305870737],[-76.56467974583192,39.2246390538183],[-76.56470033110531,39.2246473668943],[-76.56472214044419,39.22465625560039],[-76.56474294698506,39.22466474784377],[-76.56476415324015,39.22467302447792],[-76.56478456272771,39.22468111169229],[-76.56481183662412,39.224691791577],[-76.56484324306608,39.22470372534899],[-76.56486825562615,39.22471301323923],[-76.56489353663503,39.22472233995205],[-76.56491580577919,39.2247310411628],[-76.56493734171643,39.22473862989143],[-76.56495808229744,39.22474579860712],[-76.56498678198007,39.22475589372537],[-76.56500802796187,39.22476450014749],[-76.56502876115914,39.22477401084906],[-76.56504986332703,39.22478322025252],[-76.56507027141846,39.22479097862717],[-76.56509000397453,39.22479841832152],[-76.56511466454309,39.22480808318168],[-76.56513463766234,39.2248161443967],[-76.5651557461555,39.22482470344179],[-76.56517651046715,39.22483311077782],[-76.56520823544214,39.2248467580125],[-76.56522777653622,39.22485483112267],[-76.56524602674,39.22486170501464],[-76.56526278653649,39.22486818875043],[-76.56530036272427,39.22488082083652],[-76.56532363046553,39.22489024448949],[-76.56535052583105,39.22490111200946],[-76.56537004862568,39.22490934176351],[-76.56538090418243,39.22491567390543],[-76.56538718680387,39.2249181517935],[-76.56539352423599,39.22492056773051],[-76.56539990481531,39.22492293518483],[-76.56540631225693,39.22492526580633],[-76.56541273607203,39.22492757036553],[-76.56541916111729,39.22492986321877],[-76.56542558159123,39.22493214614619],[-76.56543202312615,39.22493439402082],[-76.56543848222006,39.22493661133363],[-76.56544495417458,39.22493880887657],[-76.56545143198053,39.22494099653223],[-76.5654579086233,39.22494318508402],[-76.56546437825737,39.22494538351808],[-76.56547083618422,39.2249476026263],[-76.56547727423663,39.22494985228712],[-76.56548368655814,39.22495214328816],[-76.56548998543809,39.22495461492543],[-76.56549616386202,39.2249572779824],[-76.56550236330825,39.22495991229192],[-76.56550867150385,39.22496237585568],[-76.56551499021629,39.22496482414478],[-76.5655213124145,39.22496727064492],[-76.56552764045864,39.2249697081585],[-76.56553397552337,39.22497213398765],[-76.56554032228505,39.22497454094336],[-76.56554668191838,39.22497692632766],[-76.56555305794168,39.22497928294741],[-76.56555945385117,39.22498160721231],[-76.56556587084359,39.22498389282143],[-76.56557231124053,39.22498613888257],[-76.56557877154022,39.22498834988659],[-76.56558524938788,39.22499053213028],[-76.56559173894351,39.22499269369902],[-76.5655982378524,39.22499484088958],[-76.56560474144911,39.22499697908934],[-76.5656112462098,39.22499911639224],[-76.56561774862719,39.22500125819001],[-76.56562424286119,39.22500341256802],[-76.5656307277208,39.22500558492659],[-76.56563719737687,39.22500778154954],[-76.56564364946378,39.22501001053517],[-76.56565008751082,39.22501226288874],[-76.5656565138562,39.22501453501578],[-76.56566293200176,39.22501682242535],[-76.565669341964,39.22501912241523],[-76.56567574840282,39.22502143049869],[-76.56568215250388,39.2250237421763],[-76.56568855543621,39.22502605565079],[-76.56569495953806,39.22502836732764],[-76.56570136831678,39.22503067181525],[-76.56570778178333,39.22503296731205],[-76.56571420344503,39.22503524842639],[-76.56572063914732,39.22503750617204],[-76.56572712394683,39.22503968933437],[-76.56573364382534,39.22504181767857],[-76.56574017773889,39.22504392355489],[-76.56574670348019,39.22504604020991],[-76.56575320000533,39.22504819999392],[-76.56575964626504,39.22505043615777],[-76.56576601889938,39.22505278104316],[-76.56577229685345,39.22505526880177],[-76.56577848364569,39.22505789224044],[-76.56578461316896,39.22506060104086],[-76.56579069360697,39.22506338262247],[-76.5657967343236,39.22506622080591],[-76.5658027469713,39.22506910392415],[-76.56580873975581,39.22507201579351],[-76.56581472202446,39.22507494293692],[-76.56582070544059,39.2250778718858],[-76.56582669704648,39.22508078735301],[-76.56583270734188,39.22508367676646],[-76.5658387480014,39.22508652485604],[-76.56584482490339,39.22508931723111],[-76.56585098821463,39.22509199372497],[-76.5658572519587,39.22509453367161],[-76.56586355891586,39.22509701432634],[-76.56586985070271,39.22509951384097],[-76.56587606894134,39.22510210946655],[-76.5658821599084,39.2251048748683],[-76.56588815164575,39.22510776961489],[-76.56589408501127,39.22511074071153],[-76.56589997751387,39.22511376570338],[-76.56590584549897,39.22511682303233],[-76.56591170531189,39.22511989114012],[-76.56591757328694,39.22512295027],[-76.56592346693316,39.2251259779673],[-76.56592940143771,39.22512895266937],[-76.56593541636275,39.22513184389616],[-76.56594150818988,39.22513465884086],[-76.56594765709956,39.22513741904876],[-76.56595383864538,39.22514014514744],[-76.56596003067497,39.22514286137602],[-76.56596620990554,39.22514558746546],[-76.56597235534838,39.22514834675849],[-76.56597844370962,39.2251511607876],[-76.56598445170104,39.22515405018466],[-76.56599035833388,39.22515703829225],[-76.5659961403143,39.225160146643],[-76.56600177434845,39.22516339676949],[-76.56600723830066,39.22516681020851],[-76.56601255079386,39.22517037171583],[-76.566017786408,39.22517400590169],[-76.56602295677347,39.22517770470216],[-76.56602806423406,39.225181463622],[-76.56603311461861,39.22518527637726],[-76.56603811490326,39.22518913848997],[-76.56604306858971,39.22519304546907],[-76.56604798266507,39.225196991035],[-76.56605286063115,39.22520097069681],[-76.56605770831692,39.22520497817062],[-76.56606253269283,39.22520900987907],[-76.56606733611365,39.22521305952541],[-76.56607212671896,39.22521712173508],[-76.56607690916876,39.22522119202142],[-76.56608168697016,39.2252252649927],[-76.56608646709935,39.22522933617081],[-76.56609125422715,39.22523339926759],[-76.56609605533507,39.22523744890417],[-76.56610087276133,39.22524148148607],[-76.56610571349853,39.2252454898329],[-76.56611058335906,39.22524947036307],[-76.56611544975689,39.22525344907866],[-76.5661202672954,39.22525746364461],[-76.56612505109038,39.22526150420813],[-76.56612982092827,39.22526555462849],[-76.56613459309393,39.22526960325565],[-76.56613938504667,39.22527363574175],[-76.56614421655102,39.22527763954895],[-76.56614910390829,39.22528160032498],[-76.56615406224519,39.22528550641567],[-76.56615906362451,39.22528938113801],[-76.5661640882762,39.22529323793055],[-76.5661691350311,39.22529707859054],[-76.56617419808239,39.22530090579889],[-76.56617927625535,39.22530472225354],[-76.56618436489575,39.22530853154039],[-76.5661894605292,39.22531233364666],[-76.56619456080655,39.22531613396833],[-76.56619966225358,39.22531993249253],[-76.56620476021031,39.22532373370593],[-76.5662098535133,39.22532753850502],[-76.56621493635549,39.22533134957065],[-76.56622000755682,39.2253351705016],[-76.56622506247388,39.22533900308231],[-76.56623009877407,39.22534285000642],[-76.56623511297207,39.22534671306263],[-76.56624010041349,39.22535059583689],[-76.56624505877674,39.2253544992214],[-76.56624989381636,39.22535849493015],[-76.56625454622224,39.22536262327908],[-76.56625908926762,39.22536683319448],[-76.56626359392047,39.22537107179275],[-76.56626813231257,39.22537528529375],[-76.56627277541185,39.22537942081374],[-76.56627759416446,39.22538342907202],[-76.56628251645523,39.22538736114649],[-76.56628747947217,39.22539126184402],[-76.56629247854457,39.22539513745271],[-76.56629750785983,39.2253989915543],[-76.56630255928384,39.22540282862253],[-76.56630762699871,39.22540665313979],[-76.56631270633902,39.22541047049364],[-76.56631778918168,39.22541428335624],[-76.56632287201387,39.22541809802017],[-76.56632794554885,39.22542191805418],[-76.56633300628489,39.22542574794922],[-76.56633804724044,39.22542959308425],[-76.56634307074268,39.22543345166621],[-76.56634808493122,39.22543731832057],[-76.56635310028386,39.2254411840782],[-76.56635812611495,39.22544504086652],[-76.56636317173307,39.22544888151373],[-76.56636824645251,39.22545269794723],[-76.56637336074563,39.22545648209869],[-76.56637853788972,39.22546021513767],[-76.56638377205033,39.2254639042489],[-76.56638903997212,39.22546756465974],[-76.56639432069943,39.22547121430826],[-76.5663995921131,39.22547487202915],[-76.56640483095224,39.2254785539505],[-76.56641001741929,39.22548227801472],[-76.56641512708441,39.22548606214718],[-76.56642014131909,39.22548992249308],[-76.56642509388396,39.22549383035221],[-76.56643001152521,39.22549776780784],[-76.5664348954283,39.22550173036041],[-76.56643975256387,39.22550571443259],[-76.56644458525905,39.22550971823144],[-76.56644939817372,39.22551373727026],[-76.56645419596229,39.22551776796308],[-76.56645898095186,39.22552180851704],[-76.56646375779687,39.22552585534613],[-76.56646853115713,39.22552990396373],[-76.56647330451793,39.22553395258108],[-76.56647808138105,39.22553799670732],[-76.56648286522629,39.2255420354545],[-76.56648761301169,39.22554610019083],[-76.56649232241018,39.22555019270933],[-76.56649700737375,39.22555430405376],[-76.56650167954389,39.22555842435848],[-76.56650635172007,39.2255625437623],[-76.56651103901797,39.22556665241243],[-76.56651575307902,39.22557074044327],[-76.56652050785529,39.22557479889861],[-76.56652531499924,39.22557881611132],[-76.56653018961549,39.22558278403022],[-76.566535130546,39.22558670265092],[-76.56654011220276,39.22559058989457],[-76.56654512876229,39.22559445114432],[-76.56655017557577,39.22559828908533],[-76.5665552468197,39.22560210910081],[-76.5665603390088,39.22560591297933],[-76.56656544631964,39.22560970610413],[-76.56657056410886,39.22561349025966],[-76.56657568771105,39.22561727083328],[-76.56658081247743,39.22562105051016],[-76.56658593375352,39.22562483287631],[-76.56659104572148,39.22562862241406],[-76.56659614372684,39.22563242270935],[-76.56660122312081,39.22563623644739],[-76.56660629320663,39.22564005735709],[-76.56661136561465,39.22564387737432],[-76.5666164403559,39.22564769469763],[-76.56662151509767,39.2256515120207],[-76.5666265910036,39.22565532844707],[-76.56663166690456,39.225659145774],[-76.56663674164251,39.22566296399714],[-76.5666418140593,39.2256667831123],[-76.56664688298585,39.22567060491668],[-76.5666519495803,39.22567442941454],[-76.5666570103628,39.22567825749383],[-76.56666206764959,39.22568208916312],[-76.56666711796092,39.22568592531034],[-76.56667216244928,39.2256897668405],[-76.56667719879303,39.22569361464584],[-76.56668222815033,39.22569746873057],[-76.56668724355059,39.22570133267215],[-76.5666922275179,39.22570522352081],[-76.5666971823905,39.22570913768207],[-76.56670211631348,39.22571306888062],[-76.56670703511038,39.22571701173323],[-76.56671194808433,39.22572095996879],[-76.56671685989525,39.22572490910061],[-76.56672177869923,39.22572885105181],[-76.56672671147236,39.22573278134425],[-76.56673166403813,39.22573669459478],[-76.56673664570513,39.22574058363144],[-76.56674166229696,39.22574444307111],[-76.56674672079514,39.22574826753491],[-76.56675182819212,39.22575204984233],[-76.56675710554545,39.22575568955308],[-76.5667625831304,39.2257591597555],[-76.56676817479183,39.22576253489621],[-76.56677379324387,39.2257658849137],[-76.56677935232577,39.2257692851554],[-76.56678476590439,39.22577280646488],[-76.56678994667736,39.22577652148306],[-76.56679492955796,39.22578040241468],[-76.56679989148347,39.22578430128429],[-76.56680483711924,39.22578821270449],[-76.5668097676179,39.22579213758026],[-76.56681468414844,39.2257960741144],[-76.56681958671652,39.22580002140616],[-76.56682447763819,39.22580397946403],[-76.56682935808814,39.22580794559006],[-76.56683422690264,39.22581192068075],[-76.56683908756163,39.22581590384814],[-76.56684394123411,39.225819893295],[-76.56684878676745,39.22582388811624],[-76.56685362648346,39.22582788741974],[-76.56685846154005,39.22583189120972],[-76.56686329310102,39.22583589858972],[-76.56686812233529,39.22583990776245],[-76.56687294924843,39.22584391782723],[-76.56687777615664,39.22584792879256],[-76.56688260422347,39.22585193976195],[-76.56688743345991,39.22585594893388],[-76.56689226502411,39.22585995631264],[-76.56689710007963,39.22586396100178],[-76.56690193979554,39.225867961204],[-76.56690678532998,39.22587195692356],[-76.56691163784652,39.22587594726405],[-76.56691649850869,39.22587993132893],[-76.56692136848565,39.22588390732092],[-76.56692627447406,39.22588786543002],[-76.56693128497194,39.22589177798482],[-76.5669363930143,39.22589564766194],[-76.56694158466546,39.22589948071539],[-76.56694685062769,39.22590328251556],[-76.56695217581824,39.22590705751064],[-76.56695754861776,39.2259108119632],[-76.56696295741224,39.22591455123511],[-76.56696838943517,39.22591827978307],[-76.56697383307261,39.22592200296896],[-76.56697927554707,39.22592572705112],[-76.56698470409191,39.22592945648631],[-76.56699010825137,39.22593319664057],[-76.56699547293721,39.22593695286297],[-76.56700078885163,39.22594073052392],[-76.56700604090641,39.22594453497238],[-76.56701121864579,39.22594837157448],[-76.5670163092976,39.22595224568777],[-76.56702130124796,39.22595616267407],[-76.5670261805667,39.22596012788676],[-76.56703093680353,39.22596414579107],[-76.56703555602822,39.22596822174043],[-76.56704002777394,39.2259723629024],[-76.56704433812709,39.22597657192801],[-76.56704847545716,39.22598085688143],[-76.56705242816666,39.22598522042217],[-76.56705618347257,39.22598966970936],[-76.56705972860834,39.22599420919985],[-76.56706305080183,39.22599884425114],[-76.56706617094279,39.22600356773412],[-76.56706911689696,39.22600836804149],[-76.56707189795659,39.22601324070364],[-76.5670745210922,39.22601818214313],[-76.56707699559047,39.22602318879112],[-76.56707933074375,39.22602825617806],[-76.5670815323534,39.2260333825238],[-76.56708361087526,39.22603856246214],[-76.5670855732854,39.22604379151498],[-76.56708742770148,39.22604906791074],[-76.56708918457382,39.22605438718407],[-76.56709084972034,39.22605974485249],[-76.56709243242234,39.22606513824794],[-76.56709394197209,39.22607056290083],[-76.56709538534007,39.2260760152337],[-76.56709677065497,39.22608149167344],[-76.56709810720908,39.22608698775044],[-76.56709940312548,39.22609250079231],[-76.56710066538034,39.22609802632093],[-76.56710190441838,39.22610356077168],[-76.56710312605222,39.2261091005629],[-76.56710434188474,39.2261146421342],[-76.56710555657033,39.22612018189977],[-76.56710678056481,39.22612571449334],[-76.56710802198597,39.22613123814342],[-76.56710928897343,39.22613674747531],[-76.56711058964483,39.22614224071741],[-76.56711193214544,39.22614771159428],[-76.56711332574545,39.22615315923937],[-76.567114777432,39.22615857737295],[-76.56711629648638,39.22616396332696],[-76.56711788292505,39.22616931439908],[-76.56711710099006,39.22617485580814],[-76.56711899450181,39.22618017918788],[-76.56712344509044,39.22618437431505],[-76.56712935064449,39.22618718130349],[-76.56713565061882,39.22618969068775],[-76.56714219173199,39.22619196946086],[-76.56714881725578,39.22619408009925],[-76.56715539705442,39.22619609238382],[-76.56716197586013,39.22619807764094],[-76.56716857219142,39.22620003774055],[-76.56717518722847,39.22620196908386],[-76.5671818186879,39.22620386625772],[-76.5671884700661,39.22620572567199],[-76.5671951390797,39.22620754191351],[-76.56720182690881,39.22620931138355],[-76.56720853590258,39.22621102868607],[-76.56721526377217,39.22621268930873],[-76.56722201170315,39.22621428875205],[-76.56722878436089,39.22621582162854],[-76.56723558172889,39.22621729064047],[-76.56724239910881,39.22621870657983],[-76.56724923297145,39.22622007844141],[-76.5672560821038,39.2262214152285],[-76.56726293949133,39.22622272772465],[-76.56726980392108,39.2262240249331],[-76.56727667070024,39.22622531674514],[-76.56728353630504,39.22622661125476],[-76.56729039719535,39.22622791925831],[-76.56729724983646,39.22622925065129],[-76.5673040907047,39.22623061352768],[-76.56731091510176,39.22623201867956],[-76.56731772407599,39.22623348412642],[-76.56732451998752,39.22623500267061],[-76.56733130522386,39.22623656261084],[-76.56733808333085,39.22623815225015],[-76.56734485554325,39.22623975898214],[-76.56735162772857,39.22624137021751],[-76.56735839995257,39.22624297514715],[-76.56736517693555,39.22624455937605],[-76.56737195989599,39.22624611300014],[-76.56737875355405,39.22624762162432],[-76.56738556029177,39.22624907444802],[-76.56739238134415,39.2262504588649],[-76.56739922257846,39.22625176228573],[-76.56740608406055,39.22625297390135],[-76.56741297051059,39.22625407931668],[-76.56741988543038,39.22625507404078],[-76.56742683677287,39.22625598332473],[-76.56743381987275,39.22625681255598],[-76.56744083126659,39.22625755992026],[-76.56744786515297,39.22625822719771],[-76.56745491805746,39.22625881437553],[-76.56746198302605,39.22625932232883],[-76.5674690565898,39.22625975014412],[-76.5674761352689,39.22626009870926],[-76.56748321211472,39.22626036799873],[-76.56749028248939,39.22626055889616],[-76.56749734292397,39.226260670488],[-76.56750438761695,39.22626070455448],[-76.5675114119415,39.22626066017774],[-76.5675184279503,39.22626045993518],[-76.56752544522101,39.22626005251777],[-76.56753246127823,39.22625946403899],[-76.56753947132482,39.22625872150445],[-76.56754647288001,39.22625785192841],[-76.56755346346846,39.22625688142433],[-76.56756043713503,39.22625583699365],[-76.56756739139887,39.22625474565061],[-76.56757432379024,39.22625363260784],[-76.56758122953403,39.22625252126803],[-76.56758805216785,39.22625117451841],[-76.56759478741029,39.22624953469336],[-76.56760147385783,39.22624772984565],[-76.56760814894891,39.2262458880238],[-76.56761485127458,39.22624413818131],[-76.56760119555794,39.22619568002615],[-76.56759673410984,39.22619592571617],[-76.56759322110361,39.22619618210651],[-76.56758999423892,39.22619718539572],[-76.56758643667061,39.22619753260031],[-76.56758311418307,39.22619693215093],[-76.56758111644942,39.22619464401905],[-76.56758016686302,39.22619196881086],[-76.56757957302803,39.22618925978303],[-76.56757907307616,39.22618653849014],[-76.56757867163425,39.22618380585013],[-76.56757838834628,39.22618106914148],[-76.56757826953073,39.22617832943568],[-76.5675783140624,39.22617558132396],[-76.5675784385086,39.22617283260587],[-76.56757853265154,39.22616992523905],[-76.56758153152883,39.22616908505194],[-76.56758504565835,39.22616864400647],[-76.56758867611974,39.2261683078798],[-76.56759220955838,39.22616792905899],[-76.56759570260604,39.22616752666903],[-76.5675991945011,39.22616712337391],[-76.56760268870131,39.22616672188873],[-76.5676061817269,39.22616632310149],[-76.56760967589962,39.22616592611993],[-76.56761317120295,39.22616553364632],[-76.56761666647338,39.22616514657715],[-76.56762016171082,39.2261647649124],[-76.56762365806242,39.22616439045795],[-76.56762715436467,39.22616402411013],[-76.56763065176457,39.22616366767485],[-76.56763446585509,39.22616379612428],[-76.5676357927203,39.22616214177788],[-76.56763546896715,39.2261592031459],[-76.56763532006077,39.22615645972618],[-76.56763511555447,39.2261537179032],[-76.56763491918785,39.22615097070556],[-76.56763468573456,39.22614822787521],[-76.56763433520335,39.22614550262909],[-76.56763288394855,39.22614266973852],[-76.56763567196259,39.22614203325001],[-76.56763903623458,39.22614166731628],[-76.56764266836335,39.226141437486],[-76.56764641586342,39.2261412801429],[-76.56765013087079,39.22614113348932],[-76.56765391589632,39.226140899718],[-76.56765568668359,39.22614241954921],[-76.56765540114444,39.22614537755545],[-76.56768994816542,39.22628193584881],[-76.56769194167681,39.22628149460379],[-76.56769299754835,39.22628136067382],[-76.5676940681023,39.22628128805081],[-76.56769513978142,39.22628122083662],[-76.5676962251878,39.22628118159714],[-76.56769830734667,39.22628082715329],[-76.56769844595532,39.22628164827321],[-76.56769850223989,39.2262824853039],[-76.56769857008358,39.2262833259803],[-76.56772495006325,39.2263673892247],[-76.56772050270293,39.2263725478181],[-76.56776565233723,39.22650212175864],[-76.56777139147165,39.22650392823719],[-76.56777449198496,39.22650522866945],[-76.56777753289201,39.22650661805919],[-76.56778055861771,39.22650802811088],[-76.56778357381084,39.22650945613923],[-76.56778658083161,39.22651089494675],[-76.56778958317615,39.22651234094325],[-76.56779258435181,39.22651378873688],[-76.5677955890183,39.226515233841],[-76.56779859836671,39.22651667085523],[-76.56780161822046,39.22651809439638],[-76.56780465092314,39.22651949996923],[-76.56780770114015,39.22652088218625],[-76.56781075836625,39.22652225452043],[-76.56781381790864,39.22652362686304],[-76.56781687977289,39.22652499831332],[-76.56781994514441,39.22652636437179],[-76.567823016345,39.22652772414621],[-76.56782609456016,39.22652907313699],[-76.56782917979537,39.22653041044345],[-76.56783227554688,39.22653173247534],[-76.56783538298917,39.22653303653457],[-76.56783850214424,39.22653431901819],[-76.56784163533382,39.22653557903389],[-76.56784478490152,39.22653681208652],[-76.56784795670907,39.22653800648744],[-76.56785117881974,39.22653911820186],[-76.56785444187551,39.22654016250853],[-76.56785773416912,39.22654116008228],[-76.56786104166622,39.22654213339092],[-76.56786435033253,39.22654310490218],[-76.56786764730271,39.22654409528667],[-76.56787091968958,39.22654512881792],[-76.56787415347524,39.22654622526144],[-76.56787734980132,39.22654738732381],[-76.56788053910218,39.22654856197112],[-76.56788372488488,39.2265497438116],[-76.5678869059805,39.22655093464255],[-76.56789008239443,39.22655213356317],[-76.5678932541212,39.22655334147422],[-76.5678964211663,39.22655455747498],[-76.56789958236621,39.2265557824619],[-76.56790273772079,39.22655701643501],[-76.56790588723022,39.2265582593943],[-76.56790903089431,39.22655951133979],[-76.56791216755508,39.22656077226718],[-76.56791529720701,39.22656204307725],[-76.56791841985563,39.22656332286923],[-76.56792153549536,39.22656461254389],[-76.56792464412629,39.22656591210123],[-76.56792773641776,39.22656723231628],[-76.56793079599176,39.22656860015201],[-76.56793382985725,39.22657000572575],[-76.56793684270708,39.22657143914621],[-76.56793984385531,39.22657289234063],[-76.56794283684208,39.22657435451269],[-76.56794583099254,39.22657581578817],[-76.56794883099401,39.22657726717659],[-76.5679518450135,39.22657869879934],[-76.56795487890177,39.22658010076952],[-76.56795794082049,39.22658146410929],[-76.56796103430425,39.22658277892315],[-76.56796416282734,39.22658404522388],[-76.56796729951209,39.22658530254672],[-76.5679704420149,39.22658655538707],[-76.56797359035221,39.22658780104252],[-76.56797674684573,39.22658903862093],[-76.56797991034283,39.22659026721724],[-76.56798308085989,39.22659148412916],[-76.56798626071323,39.2265926893653],[-76.56798944760848,39.226593879314],[-76.56799264501454,39.22659505488883],[-76.56799585063708,39.22659621247824],[-76.56799906563965,39.22659735118579],[-76.56800229118036,39.22659847101563],[-76.56800552728123,39.22659956836483],[-76.56800877394765,39.22660064233254],[-76.56801203234322,39.22660169202231],[-76.5680153024789,39.22660271563267],[-76.56801858435469,39.22660371316354],[-76.56802187786646,39.22660470172936],[-76.56802518064322,39.22660569032919],[-76.56802849270686,39.22660667535999],[-76.56803181523189,39.22660765412371],[-76.56803514592958,39.22660862210816],[-76.56803848480537,39.22660957841242],[-76.56804183188116,39.22661051943354],[-76.56804518833695,39.22661144157274],[-76.56804855071495,39.22661234211495],[-76.56805192134772,39.22661321836642],[-76.56805529794099,39.22661406671561],[-76.56805868166381,39.22661488536523],[-76.56806207138554,39.22661566980722],[-76.56806546711704,39.22661641824014],[-76.56806886772766,39.22661712615587],[-76.5680722732228,39.22661779265361],[-76.56807568478807,39.22661841323395],[-76.56807909895996,39.22661898608248],[-76.56808251808219,39.22661950670397],[-76.5680859563808,39.22661992110409],[-76.56808943280738,39.22662015999257],[-76.56809294144539,39.22662024406558],[-76.56809647289299,39.22662019580793],[-76.5681000223861,39.22662003682087],[-76.56810358168106,39.22661978959344],[-76.56810714369767,39.22661947571834],[-76.56811070135575,39.22661911678814],[-76.56811424756418,39.22661873619702],[-76.56811777525384,39.22661835373606],[-76.56812127733902,39.22661799189871],[-76.56812478278344,39.22661764898999],[-76.56812829742692,39.22661731692434],[-76.56813182012789,39.22661699299524],[-76.56813534975004,39.22661667359537],[-76.56813888515718,39.22661635511749],[-76.56814242173341,39.22661603484224],[-76.56814595950063,39.22661570916663],[-76.56814949616992,39.22661537357823],[-76.56815302943608,39.22661502626716],[-76.56815655816291,39.22661466362601],[-76.56816008006156,39.22661428114249],[-76.56816359398491,39.22661387701084],[-76.56816709649145,39.22661344581373],[-76.56817058642856,39.22661298664612],[-76.56817406151295,39.22661249409499],[-76.5681775206029,39.22661196545376],[-76.56818096139861,39.22661139801162],[-76.56818438276383,39.22661078816131],[-76.56818778125174,39.22661013138623],[-76.56819115571507,39.22660942588065],[-76.56819450502316,39.22660866713645],[-76.5681978257236,39.22660785153791],[-76.5682011041217,39.22660694570574],[-76.56820433682527,39.22660593611586],[-76.56820752724846,39.22660483268938],[-76.56821068111604,39.22660364625668],[-76.56821380068391,39.22660238673467],[-76.56821689284054,39.22660106405722],[-76.5682199610054,39.22659968724472],[-76.5682230085816,39.22659826801981],[-76.56822604246307,39.22659681541563],[-76.56822906605842,39.2265953402541],[-76.56823208278711,39.2265938515555],[-76.56823509953213,39.22659236015456],[-76.56823811855487,39.22659087506737],[-76.5682411455747,39.22658940802511],[-76.56824418401123,39.22658796804811],[-76.56824724074728,39.22658656597108],[-76.56825031689171,39.22658520990503],[-76.56824033023567,39.22656579381791],[-76.56823500096212,39.22655562424028],[-76.56822930036148,39.22654557400069],[-76.56822290122309,39.22653574458408],[-76.56821763032295,39.22652530858989],[-76.56821414534838,39.22651409728979],[-76.56822357551307,39.22650942090979],[-76.56823778810751,39.22650713837606],[-76.56825153080825,39.22650461450495],[-76.56826527239924,39.22650208252116],[-76.56827901286401,39.22649954512694],[-76.56829275218614,39.2264970050246],[-76.56830649265443,39.22649446672639],[-76.56832023309981,39.22649193202965],[-76.56833397465851,39.2264894045416],[-76.56834771963032,39.22648688697306],[-76.56836146683524,39.2264843829228],[-76.56837521741491,39.22648189509738],[-76.5683889725111,39.22647942620328],[-76.56840273210186,39.22647697984356],[-76.56841697717672,39.22647468659827],[-76.56842528642265,39.22648160450537],[-76.56842930132683,39.22649214036226],[-76.56843299934073,39.22650279485733],[-76.56843409761022,39.22651397755782],[-76.56842525404831,39.22652046487503],[-76.56841756822644,39.22652854091831],[-76.56842298312559,39.22653872701648],[-76.56842988010629,39.22654915817114],[-76.56843440425934,39.22655936801681],[-76.56843078135587,39.22656874711343],[-76.56842027864028,39.22657744514549],[-76.56842741454655,39.2265857234172],[-76.5684404442201,39.22659018784457],[-76.56845392935716,39.22659402880482],[-76.56846349073689,39.22660148997836],[-76.56847174497682,39.22661041101112],[-76.56847902175382,39.22662009411128],[-76.56848519919194,39.22663020284055],[-76.56849024787221,39.22664043262782],[-76.56849478050529,39.22665077401566],[-76.56849897888702,39.2266612321764],[-76.56850290105949,39.2266717848041],[-76.56850660623948,39.22668240689452],[-76.56851015477469,39.2266930779518],[-76.56851360356558,39.22670377296323],[-76.56851701297086,39.2267144696313],[-76.56852044219089,39.22672514565416],[-76.56852386574734,39.22673580093816],[-76.56852699825214,39.22674651550423],[-76.56852991621712,39.22675727702276],[-76.5685327425882,39.22676805531927],[-76.56853560144746,39.2267788238265],[-76.56853861688258,39.22678955507656],[-76.56854190951249,39.22680022068786],[-76.56854560457766,39.22681079409747],[-76.56854982723644,39.22682126225366],[-76.56855456009552,39.22683162869569],[-76.56855972330544,39.22684188322125],[-76.56856523698949,39.22685202013214],[-76.56857102012913,39.22686203102344],[-76.56857728471387,39.22687190766657],[-76.56858441043219,39.2268814893169],[-76.56859238722468,39.22689052552092],[-76.56860229568586,39.22689824558073],[-76.56861456445226,39.22690386649327],[-76.56862714423616,39.22690881116218],[-76.56863989089078,39.22691354926395],[-76.56865276720868,39.22691810498289],[-76.56866573134977,39.22692250248607],[-76.5686787461232,39.22692676325561],[-76.56869181953711,39.22693090353485],[-76.56870494683858,39.22693494312345],[-76.56871811629333,39.22693890720006],[-76.56873131385062,39.22694282093489],[-76.56874452431279,39.22694670769226],[-76.5687577347819,39.2269505935474],[-76.56877093120733,39.22695450367044],[-76.56878415108645,39.22695836613694],[-76.56879741898585,39.22696214050203],[-76.56881070914245,39.22696587351159],[-76.56882399696778,39.22696960921338],[-76.56883725785707,39.22697339435758],[-76.56885046604731,39.22697727568992],[-76.56886359810827,39.22698129726259],[-76.56887662827154,39.22698550672218],[-76.56888956004448,39.22698989867693],[-76.56890243912956,39.22699438501843],[-76.5689152737211,39.2269989513644],[-76.56892807432976,39.22700358334096],[-76.56894084450096,39.22700826925102],[-76.56895359242361,39.22701299561301],[-76.56896632628644,39.22701774894534],[-76.56897905195127,39.22702251755938],[-76.56899177760687,39.22702728797358],[-76.56900450912582,39.22703204669777],[-76.56901725468606,39.22703678205188],[-76.56903002016011,39.22704148054579],[-76.56904281373133,39.2270461295987],[-76.56905564944469,39.22705070494109],[-76.56906853898529,39.22705518950107],[-76.56908146129369,39.22705961833164],[-76.56909439529966,39.22706402828742],[-76.56910731761675,39.22706845621439],[-76.56912020601666,39.2270729389629],[-76.56913303824911,39.2270775169863],[-76.56914571253596,39.22708235835657],[-76.56915828621531,39.22708736600013],[-76.56917091607085,39.22709227746526],[-76.56918374603211,39.22709684916927],[-76.56919676908468,39.22710109189573],[-76.56920985299485,39.22710523035384],[-76.56922286782348,39.22710949286432],[-76.56923578897143,39.22711392527661],[-76.56924867147687,39.22711842780641],[-76.56926154227702,39.22712295100972],[-76.56927442947836,39.22712744364532],[-76.56928735770167,39.22713185626075],[-76.56930035504783,39.22713613851551],[-76.56931347660947,39.22714018161764],[-76.56931855794791,39.22714161628696],[-76.56932675283078,39.2271439307312],[-76.56934008999679,39.22714756116417],[-76.5693533920218,39.22715125722349],[-76.56936656283116,39.2271552014147],[-76.56937953566926,39.22715951599875],[-76.56939236206701,39.22716410658306],[-76.56940511465284,39.22716883741661],[-76.56941786142244,39.2271735727313],[-76.56943063395089,39.2271782621994],[-76.56944334790877,39.22718306134615],[-76.56945603844382,39.22718790364303],[-76.56946875242147,39.22719270008474],[-76.56948153670183,39.22719736256704],[-76.56949443466492,39.22720180387338],[-76.56950748488904,39.22720596469394],[-76.56952065419853,39.22720996831357],[-76.5695339323177,39.22721379037358],[-76.5695473184761,39.2272173669158],[-76.5695608130722,39.22722063218487],[-76.56957441301923,39.22722352221417],[-76.56958812542949,39.22722601000638],[-76.56960194634242,39.22722817571622],[-76.5696158521805,39.22723008771633],[-76.56962981589743,39.22723181346593],[-76.56964381392658,39.22723341953612],[-76.56965782038532,39.22723497248965],[-76.56967180938555,39.22723653978991],[-76.56968577970905,39.2272381313411],[-76.56969975960391,39.22723967248211],[-76.56971374906993,39.22724116321292],[-76.56972774807994,39.22724260803741],[-76.56974175430125,39.22724400964923],[-76.56975576770654,39.22724537255231],[-76.56976978479955,39.22724670033681],[-76.56978380555852,39.22724799660589],[-76.56979783603593,39.22724921814429],[-76.56981188710236,39.22725029112804],[-76.56982595143788,39.22725127678326],[-76.56984001937913,39.22725224083133],[-76.56985408009916,39.22725324989012],[-76.56986812744186,39.22725436428929],[-76.56988216145092,39.22725557682279],[-76.56989618582442,39.22725685057215],[-76.56991020416231,39.22725816483283],[-76.56992421765548,39.22725951420437],[-76.56993822876198,39.22726087527563],[-76.56995224226712,39.22726222284231],[-76.56996626177613,39.22726353529899],[-76.5699802873763,39.22726479823346],[-76.56999431896401,39.22726602876018],[-76.57000835298292,39.22726724037783],[-76.57002238819321,39.22726844659345],[-76.57003642103867,39.22726966090575],[-76.57005045143744,39.22727089682607],[-76.57006447582791,39.2272721687538],[-76.57007849415011,39.2272734865974],[-76.57009250768218,39.22727483054431],[-76.57010651878407,39.227276193397],[-76.57012052630847,39.22727757334967],[-76.57013453257169,39.22727897041085],[-76.57014853525199,39.22728038547282],[-76.57016253551852,39.22728181673826],[-76.57017653221305,39.22728326420296],[-76.57019052533023,39.22728472876766],[-76.5702045172135,39.22728620593711],[-76.57021850905375,39.22728769031094],[-76.57023249727304,39.22728919899085],[-76.57024647829333,39.22729074907848],[-76.57026044504612,39.22729236036522],[-76.57027439625331,39.22729405266338],[-76.57028832369363,39.22729584485923],[-76.57030222490377,39.22729776126484],[-76.57031610584328,39.22729977397784],[-76.57032997369539,39.22730184429111],[-76.57034383912855,39.22730393170869],[-76.57035770815675,39.22730599932067],[-76.57037159029575,39.22730800572599],[-76.57038549976446,39.22730989783094],[-76.57039945909581,39.2273115883424],[-76.57041343984083,39.22731318524959],[-76.57042740756371,39.22731482894795],[-76.57044132552362,39.22731665802285],[-76.57045515582145,39.22731881105547],[-76.57046888305321,39.22732134563925],[-76.57048253804395,39.22732414388505],[-76.57049616103093,39.22732706361724],[-76.57050979109852,39.22732996175508],[-76.5705234684728,39.22733269792433],[-76.570537227442,39.22733515605009],[-76.57055105025829,39.227337398221],[-76.57056490618383,39.22733952791418],[-76.5705787656445,39.2273416477101],[-76.57059259791899,39.22734385838349],[-76.57060637111707,39.22734626250644],[-76.57062004944932,39.22734903289747],[-76.57063365063641,39.22735211197168],[-76.57064722583397,39.22735527562234],[-76.57066082618664,39.2273583015444],[-76.57067450168623,39.22736096652765],[-76.57068830349336,39.22736304556465],[-76.57070223953484,39.22736456841007],[-76.57071626669654,39.22736577000924],[-76.57073036163611,39.22736668000244],[-76.57074449868954,39.22736732892233],[-76.57075865451463,39.22736774640915],[-76.5707728069162,39.22736796390895],[-76.57078693024675,39.2273680092521],[-76.57080103573351,39.22736794103023],[-76.57081514632635,39.22736779445761],[-76.57082926082909,39.22736757583536],[-76.57084337806177,39.22736728876226],[-76.57085749683361,39.22736693863859],[-76.57087161480096,39.22736652995972],[-76.5708857319313,39.22736606813013],[-76.57089984704459,39.22736555674868],[-76.57091395893916,39.2273650030172],[-76.57092806528243,39.22736440962945],[-76.57094216719979,39.2273637819943],[-76.57095626233694,39.22736312640855],[-76.57097034727389,39.22736243385187],[-76.57098440705415,39.22736149618989],[-76.57099844172117,39.22736030621654],[-76.57101246223557,39.22735896666057],[-76.57102647841627,39.22735757754432],[-76.57104050239313,39.22735623979919],[-76.57105454165256,39.22735505614137],[-76.57106860956975,39.22735411309438],[-76.57108270863527,39.22735338184243],[-76.57109682319589,39.22735276954814],[-76.57111094108922,39.22735218068454],[-76.57112504435112,39.22735152150508],[-76.57113912081344,39.22735069738363],[-76.57115315367565,39.227349613677],[-76.5711671318296,39.22734819197698],[-76.57118106305016,39.22734648725949],[-76.57119495850488,39.22734456802441],[-76.57120882713218,39.22734248835116],[-76.57122267787067,39.22734030231913],[-76.57123651848984,39.22733806580487],[-76.57125035908091,39.22733583379281],[-76.57126420857712,39.22733366126299],[-76.57127806580942,39.22733155001269],[-76.57129191286808,39.22732939728783],[-76.57130575200392,39.22732721390593],[-76.57131958773525,39.22732501879985],[-76.57133342574384,39.22732283000594],[-76.5713472693954,39.22732066555199],[-76.57136112320822,39.22731854437086],[-76.57137499054788,39.2273164844904],[-76.57138887824897,39.22731450485198],[-76.57140279084065,39.22731262258681],[-76.57141672379933,39.22731081966286],[-76.57143067031762,39.22730907263505],[-76.57144462590449,39.22730735806667],[-76.57145858258905,39.22730565340924],[-76.57147253472735,39.22730393432109],[-76.5714864755067,39.22730217825787],[-76.57150040044135,39.22730036088229],[-76.57151430156031,39.2272984596457],[-76.57152817206153,39.2272964502023],[-76.57154200403384,39.22729430009524],[-76.57155574078867,39.22729180734323],[-76.57156938797515,39.22728899538714],[-76.57158298073925,39.22728598956352],[-76.57159655307458,39.22728291430384],[-76.57161014128003,39.22727989584955],[-76.57162376689249,39.22727701174619],[-76.5716373993222,39.22727414928476],[-76.57165102833073,39.22727127780153],[-76.57166464936724,39.22726838376813],[-76.57167825558609,39.22726545004487],[-76.57169184814551,39.22726247663589],[-76.57170544416185,39.22725950594034],[-76.57171903560979,39.22725652441719],[-76.57173261680192,39.22725351493092],[-76.57174617975635,39.22725045673452],[-76.5717597141532,39.22724733267555],[-76.5717732143323,39.22724412111469],[-76.57178666316618,39.22724078145443],[-76.57180006408029,39.22723732181427],[-76.57181343303834,39.22723378368832],[-76.57182678599868,39.22723020947137],[-76.57184014239944,39.2272266406701],[-76.57185350790084,39.22722309892387],[-76.57186686540271,39.22721953913136],[-76.57188021719413,39.22721596580486],[-76.5718935655424,39.22721238705961],[-76.57190691620018,39.22720880922203],[-76.57192027027121,39.22720524130393],[-76.57193362891365,39.22720168330958],[-76.57194697955107,39.22719810816971],[-76.57196033020344,39.22719453032604],[-76.57197368656905,39.22719096511257],[-76.57198705548257,39.22718743147057],[-76.57200044494228,39.22718394744482],[-76.57201386181002,39.22718052747272],[-76.57202730380212,39.22717716614128],[-76.57204076522576,39.22717384721573],[-76.57205423689759,39.22717055715092],[-76.57206771542994,39.22716728152201],[-76.57208119397187,39.22716400409006],[-76.5720946644872,39.22716071311559],[-76.57210812359925,39.22715739237237],[-76.57212156212991,39.22715402741443],[-76.57212862808073,39.22715189400802],[-76.57213482963736,39.22715002227893],[-76.57214802135546,39.22714610153881],[-76.57216192062941,39.22714545950686],[-76.57217613587072,39.22714658144803],[-76.57219002342971,39.22714865251416],[-76.57220352158151,39.22715192199591],[-76.5722045357749,39.22715217070416],[-76.57221702411199,39.22715523382861],[-76.57223083358829,39.22715757844188],[-76.57224482747867,39.2271594940544],[-76.57225886480254,39.22716054417563],[-76.57227290739664,39.22716033502638],[-76.57228700047794,39.2271590505303],[-76.57230092710577,39.22715694391616],[-76.57231456559822,39.22715422011814],[-76.57232143969368,39.22715259674231],[-76.57232806790422,39.22715103282229],[-76.57234149990316,39.22714759665391],[-76.57235492631089,39.22714412713483],[-76.57236841068546,39.22714083978259],[-76.57238198168159,39.22713778424447],[-76.57239560987173,39.22713484691504],[-76.57240925633027,39.22713195288796],[-76.57242288445852,39.22712902546371],[-76.5724364599631,39.22712598975279],[-76.57244994277102,39.22712276904312],[-76.57246329858864,39.22711928844515],[-76.57247644290315,39.22711535038074],[-76.57248930255464,39.22711079514565],[-76.57250193085716,39.22710580849451],[-76.57251438687746,39.22710058250829],[-76.57252672077006,39.22709525068488],[-76.57253894903042,39.22708976624396],[-76.57255109002581,39.22708415627577],[-76.57256316672331,39.22707845329204],[-76.57257519629393,39.22707269068402],[-76.57258720169393,39.22706690276497],[-76.57259915645481,39.22706106151441],[-76.57261094453386,39.22705501247663],[-76.57262268088067,39.22704889929405],[-76.57263450342268,39.22704289631911],[-76.57264657538178,39.22703720862272],[-76.57265891745236,39.22703186150198],[-76.57267122043794,39.22702646559558],[-76.57268318434701,39.22702064148451],[-76.57269486098562,39.22701444070183],[-76.57270641926334,39.22700808545401],[-76.57271800852074,39.22700177805908],[-76.57272977576625,39.22699572352882],[-76.57274187148813,39.22699012598697],[-76.57275447363871,39.22698524460448],[-76.57276746391352,39.22698091590976],[-76.57278058630773,39.22697676424701],[-76.57279357900399,39.2269724175426],[-76.57280621588055,39.22696753808254],[-76.5728186876505,39.22696238148126],[-76.57283107000697,39.22695707142093],[-76.57284333636743,39.226951598797],[-76.57285546131831,39.22694595270775],[-76.57286741827168,39.22694012494946],[-76.57287904382645,39.22693394017655],[-76.57289004593461,39.2269270460228],[-76.57290088587897,39.22691996301526],[-76.5729120893796,39.22691328127516],[-76.57292377952037,39.22690713997014],[-76.57293564222769,39.2269011902569],[-76.57294761999673,39.22689536526844],[-76.57295965182678,39.22688960172845],[-76.57297167903323,39.22688383636879],[-76.57298368893646,39.22687805923487],[-76.57299579542588,39.2268723977507],[-76.573007915697,39.22686675523176],[-76.57301994741441,39.22686100879992],[-76.57303178592637,39.22685503556867],[-76.57304342779648,39.22684882922007],[-76.57305493971852,39.22684246926536],[-76.57306636652854,39.22683601081501],[-76.57307775420978,39.22682951078546],[-76.57308557296516,39.22682505334944],[-76.57308913380918,39.22682300622149],[-76.5730912271039,39.22682176085288],[-76.57309403288885,39.22682009110684],[-76.57309683983173,39.22681842136495],[-76.5731003592647,39.22681632724559],[-76.57310244222266,39.2268150674267],[-76.57310523190718,39.22681337870551],[-76.57310802158619,39.22681169088499],[-76.57311151798081,39.22680957596355],[-76.57311361932737,39.2268083396316],[-76.57311643661657,39.2268066825378],[-76.57311925158396,39.22680502633622],[-76.57312278132484,39.22680295117],[-76.57312493325971,39.22680177627475],[-76.57312781954231,39.22680020140242],[-76.57313070466662,39.22679862652576],[-76.57313432181694,39.22679665256428],[-76.57313658410166,39.22679561588921],[-76.57313962448232,39.22679422263346],[-76.57314266951154,39.22679282669216],[-76.57314649611628,39.22679107328197],[-76.57314884931752,39.22679013241983],[-76.57315200820891,39.22678886840606],[-76.57315516825285,39.22678760529713],[-76.57315913050707,39.22678601992461],[-76.57316145385155,39.22678503661705],[-76.57316456673206,39.22678372019045],[-76.5731676714894,39.22678240643657],[-76.57317155417448,39.22678076402522],[-76.57317370946306,39.22677960895841],[-76.57317659905016,39.22677806202098],[-76.57317948399923,39.22677651596739],[-76.57318309976149,39.22677457983203],[-76.57318503280113,39.22677321317467],[-76.57318763343974,39.22677137603642],[-76.57319023990125,39.22676953351456],[-76.57319351629398,39.2267672178179],[-76.57319534232728,39.22676573457085],[-76.57319779566375,39.22676374106203],[-76.57320025249064,39.22676174486352],[-76.57320333778402,39.22675923750669],[-76.57320517542513,39.22675774979777],[-76.57320763803678,39.22675575452092],[-76.57321009831578,39.22675376193791],[-76.57321317773668,39.2267512680711],[-76.57321513628608,39.22674989610132],[-76.57321775776359,39.22674805993894],[-76.5732203757396,39.22674622826761],[-76.5732236485152,39.2267439359772],[-76.57322577043314,39.22674274475692],[-76.57322861862878,39.22674114722415],[-76.5732314668351,39.22673954788979],[-76.57323504247702,39.226737542247],[-76.573237255317,39.22673644593885],[-76.57324022667201,39.22673497496256],[-76.57324320035403,39.22673350219308],[-76.57324693371996,39.22673165295807],[-76.57324920182946,39.22673060999657],[-76.57325224571193,39.22672921134595],[-76.57325529192131,39.22672781090214],[-76.57325911390903,39.22672605386838],[-76.57326140161939,39.22672502539037],[-76.57326446854451,39.2267236466403],[-76.57326753662763,39.22672226789442],[-76.57327138276722,39.22672053887216],[-76.57327365208825,39.22671948690682],[-76.5732766925658,39.22671807653306],[-76.57327973187968,39.22671666705577],[-76.57328354002297,39.22671490096307],[-76.57328573914819,39.22671377397768],[-76.57328868641913,39.22671226327832],[-76.57329163252649,39.22671075347547],[-76.5732953314227,39.22670885817391],[-76.57329743499272,39.22670763625921],[-76.57330026377352,39.22670599271435],[-76.5733030948704,39.22670434917792],[-76.57330665815365,39.22670227953276],[-76.57331055685611,39.22670009040262],[-76.57331134446828,39.22670046258501],[-76.57344392131567,39.22663061531776],[-76.57344400319501,39.22663028773199],[-76.57345334549494,39.22662341001243],[-76.57346642270328,39.22661924369634],[-76.57347949094277,39.22661502780338],[-76.57349260946661,39.22661092378817],[-76.57350583291719,39.22660708948554],[-76.57351922167888,39.22660369085798],[-76.57353291939062,39.2266011085559],[-76.57354682921488,39.22659907559693],[-76.57356073797217,39.22659702731916],[-76.57357443478269,39.22659440177162],[-76.57358789110981,39.22659112949074],[-76.57360123578566,39.22658754963724],[-76.57361452008649,39.22658380201817],[-76.57362779645229,39.22658002554383],[-76.57364111615405,39.22657636092192],[-76.57365452830905,39.22657292182891],[-76.57366801933928,39.2265696550696],[-76.57368153208564,39.22656643612881],[-76.57369500476749,39.22656313867324],[-76.57370838021487,39.22655963998942],[-76.57372160927255,39.2265558327062],[-76.57373475861314,39.22655179993736],[-76.57374780277441,39.22654753888823],[-76.57376068524684,39.22654300971923],[-76.57377335415337,39.22653817260785],[-76.57378574505076,39.22653295886097],[-76.57379786389707,39.22652734057623],[-76.57380980595538,39.2265214613233],[-76.57382167337811,39.22651547460558],[-76.57383356601225,39.22650953211627],[-76.57384550335648,39.22650366545356],[-76.57385738895697,39.226497736448],[-76.57386926766621,39.22649179750766],[-76.57388118429917,39.22648590734581],[-76.57389318369758,39.22648012017198],[-76.57390526126154,39.22647443056474],[-76.5739173859492,39.22646880057873],[-76.57392953131867,39.22646319768985],[-76.57394167209705,39.22645758757685],[-76.57395378067896,39.22645193861223],[-76.57396583178594,39.22644621737548],[-76.57397780357077,39.22644039766472],[-76.5739897121334,39.22643449845477],[-76.57400157011021,39.22642853690633],[-76.57401339015399,39.22642252747769],[-76.57402518144846,39.22641648371402],[-76.57403695433548,39.2264104191644],[-76.57404871801506,39.22640434467163],[-76.57406042538862,39.22639819610954],[-76.57407207070325,39.22639196715175],[-76.5740836815429,39.22638569302881],[-76.5740952831805,39.22637940806195],[-76.57410690204171,39.22637314747752],[-76.57411856455228,39.22636694650166],[-76.57413029713797,39.2263608403606],[-76.57414212506637,39.22635486427643],[-76.57415407476337,39.2263490534753],[-76.57416625997907,39.22634355879986],[-76.57417892191701,39.22633871441318],[-76.57419186416735,39.22633424846821],[-76.57420484892023,39.22632984032582],[-76.57421763491828,39.22632516483054],[-76.57422998782549,39.22631990135611],[-76.57424183522666,39.22631395866131],[-76.5742533850749,39.22630761494035],[-76.57426487521809,39.22630118452695],[-76.57427654002467,39.22629498264291],[-76.57428858289671,39.22628927395402],[-76.5743009165529,39.22628393563764],[-76.57431343293092,39.22627883398663],[-76.57432603886696,39.22627386147043],[-76.57433865041358,39.22626891869885],[-76.57435129061406,39.22626402557273],[-76.57436397558462,39.22625919836435],[-76.57437669955101,39.22625443435054],[-76.57438946021325,39.22624973082055],[-76.57440225296054,39.22624508415456],[-76.57441508241453,39.22624049617089],[-76.57442796005373,39.22623598402585],[-76.57444089038631,39.22623156845381],[-76.5744538825585,39.22622726930497],[-76.5744669617192,39.22622314161794],[-76.57448015196201,39.22621922331275],[-76.57449338686733,39.22621538894042],[-76.57450659772633,39.22621150853969],[-76.57451973418171,39.22620748194169],[-76.57453285232178,39.2262034192447],[-76.5745459658766,39.22619934842258],[-76.57455907485682,39.22619526767387],[-76.5745721804044,39.22619117970505],[-76.57458528137205,39.22618708271032],[-76.57459837774356,39.22618297939209],[-76.57461147184588,39.22617886795715],[-76.5746245613521,39.22617475019859],[-76.5746376485783,39.22617062612493],[-76.57465073120305,39.22616649662845],[-76.57466381384779,39.22616236352744],[-76.57467694238883,39.22615830175283],[-76.57469011339506,39.22615430408585],[-76.57470329244181,39.22615031725591],[-76.5747164462678,39.22614628709568],[-76.57472954043746,39.22614216213617],[-76.57474254053679,39.22613788730508],[-76.57475541329377,39.22613341023688],[-76.57476811969958,39.22612866953725],[-76.57478055307564,39.22612349367187],[-76.57479275244123,39.2261179422336],[-76.57480481413818,39.22611217230696],[-76.57481683567718,39.22610633917909],[-76.57482891340555,39.22610059903373],[-76.57484114481272,39.22609511076096],[-76.57485362741507,39.22609002874714],[-76.57486642084059,39.22608545229371],[-76.57487936907644,39.22608113222074],[-76.57489242510442,39.22607699089086],[-76.57490556828903,39.22607299309897],[-76.57491878028949,39.22606910725134],[-76.57493203930686,39.22606529903947],[-76.57494532700034,39.22606153686965],[-76.57495862388708,39.22605778644174],[-76.57497190932089,39.22605401435214],[-76.57498516611881,39.22605018901147],[-76.57499837248196,39.22604627611111],[-76.57501150891656,39.22604224315258],[-76.57502455593442,39.22603805673646],[-76.5750375020946,39.22603369340115],[-76.57505036001751,39.22602917300949],[-76.57506314459133,39.22602452353955],[-76.57507587187837,39.22601977027131],[-76.57508855448293,39.22601493576985],[-76.57510120613517,39.22601004800904],[-76.57511384175012,39.22600513046316],[-76.57512647391601,39.2260002083995],[-76.57513911869522,39.22599530709806],[-76.57515178868144,39.22599045092542],[-76.57516448845308,39.22598564890594],[-76.57517715157881,39.22598077739249],[-76.57518978949412,39.22597586074748],[-76.57520243887009,39.22597096395975],[-76.57521513405635,39.2259661529104],[-76.57522791057136,39.22596149168324],[-76.57524080507021,39.22595704796925],[-76.5752538920858,39.22595294634559],[-76.5752671566762,39.2259491678417],[-76.57528053458613,39.2259456122387],[-76.57529395807506,39.22594218110651],[-76.57530740993877,39.22593884645875],[-76.57532092350338,39.22593565165333],[-76.57533447475606,39.22593254525902],[-76.57534804086352,39.22592947224572],[-76.57536159782893,39.22592637847985],[-76.57537512048651,39.22592321162526],[-76.57538858484486,39.22591991664763],[-76.57540196690688,39.22591643941351],[-76.57541525180592,39.22591274834192],[-76.57542846701828,39.22590889667816],[-76.57544162280526,39.22590491148276],[-76.5754547294442,39.2259008171139],[-76.57546779490181,39.22589663702067],[-76.57548082946086,39.22589239466058],[-76.57549384109329,39.22588811258182],[-76.57550683892393,39.2258838142377],[-76.57551980578594,39.22587946533653],[-76.57553261358788,39.22587479518156],[-76.57554532409132,39.22586993370833],[-76.57555803224461,39.22586507762986],[-76.57557083297434,39.22586042726228],[-76.5755838212236,39.22585618021936],[-76.57559708275146,39.22585252056992],[-76.57561053291973,39.22584927055447],[-76.57562409739434,39.22584627226799],[-76.57563774873654,39.22584346615982],[-76.57565146067078,39.22584079178277],[-76.57566520805824,39.22583819229689],[-76.57567896346521,39.22583560725088],[-76.5756927006054,39.2258329779991],[-76.5757063943613,39.22583024409853],[-76.5757200172776,39.22582734870096],[-76.57573354308397,39.22582423045854],[-76.57574697074608,39.22582086864958],[-76.57576035994114,39.22581735446851],[-76.57577369678815,39.22581368516283],[-76.57578696396939,39.22580985166215],[-76.57580014301972,39.22580584309042],[-76.57581321546344,39.22580165037315],[-76.57582616284077,39.2257972617335],[-76.57583896551792,39.22579266809279],[-76.57585157644864,39.22578779631795],[-76.57586393844369,39.22578252639892],[-76.57587611573754,39.22577696215739],[-76.575888181781,39.22577121555535],[-76.57590020652916,39.22576540214519],[-76.5759122622642,39.2257596356863],[-76.57592441895747,39.22575402902869],[-76.57593674888575,39.22574869683243],[-76.57594933581012,39.22574377001288],[-76.57596222221983,39.22573930907569],[-76.5759753151593,39.22573517136188],[-76.57598851131992,39.22573120246506],[-76.57600170854569,39.22572724888386],[-76.57601497110907,39.22572340813451],[-76.57602860085137,39.22572013980356],[-76.57604195030311,39.22571648762773],[-76.57605430650982,39.22571140683117],[-76.57606596451983,39.22570533085363],[-76.57607733535427,39.22569886019747],[-76.57608852130377,39.22569212584516],[-76.57609962000502,39.22568526236535],[-76.57611073142702,39.22567840163273],[-76.57612195437534,39.2256716764186],[-76.57613338997199,39.22566521950256],[-76.5761451335805,39.2256591582387],[-76.57615718989265,39.2256534827353],[-76.5761694807603,39.22564809182287],[-76.57618193489253,39.22564289966997],[-76.5761944787037,39.22563781683381],[-76.57620703860275,39.22563275477225],[-76.57621954215664,39.22562762494753],[-76.57623196749054,39.22562240566199],[-76.57624443877005,39.22561724959547],[-76.57625693187951,39.22561212243141],[-76.57626940544479,39.22560697087444],[-76.57628181925499,39.22560174073264],[-76.57629413425219,39.2255963787192],[-76.57630629644125,39.22559081167609],[-76.57631827825374,39.22558500167119],[-76.57633013595766,39.22557902907695],[-76.57634192811059,39.22557297877795],[-76.57635366511913,39.22556685351409],[-76.57636521976244,39.22556043033395],[-76.57637665283892,39.22555380674104],[-76.57638804344005,39.2255471199392],[-76.57639947299505,39.22554050353762],[-76.57641101944267,39.22553409383499],[-76.57642276537574,39.2255280235439],[-76.57643479104408,39.2255224298722],[-76.57644717440277,39.2255174464163],[-76.57645996271354,39.22551311027863],[-76.576473073846,39.2255092112812],[-76.57648645481829,39.22550570059081],[-76.57650005374738,39.22550253928661],[-76.57651381757626,39.22549969114591],[-76.57652769789078,39.22549711816134],[-76.57654164049187,39.22549478140383],[-76.57655559463848,39.22549264465913],[-76.57656950844218,39.22549066990733],[-76.57658334489798,39.22548884800719],[-76.57659738115723,39.22548789517663],[-76.5766116127633,39.225487976242],[-76.57662585107876,39.22548887433588],[-76.57663991208246,39.22549037531001],[-76.57665374226281,39.22549232493833],[-76.5766675267858,39.22549474550745],[-76.57668122997643,39.2254975990561],[-76.57669479996245,39.22550084486205],[-76.57670818604581,39.22550443950521],[-76.57672134092746,39.22550835218859],[-76.57673427194635,39.22551271175011],[-76.5767470012085,39.22551750115466],[-76.57675954315341,39.22552262947579],[-76.57677190990987,39.22552800487794],[-76.57678411360649,39.22553353552545],[-76.57679602350616,39.2255393938964],[-76.57680761479513,39.22554566277309],[-76.57681906368227,39.22555211849708],[-76.57683054869779,39.22555853651747],[-76.57684223322548,39.22556470754201],[-76.57685407870467,39.22557068908137],[-76.57686599996646,39.2255765862196],[-76.57687793406048,39.22558246808959],[-76.57688981804719,39.2255884020229],[-76.57690159012357,39.22559445895816],[-76.57691318733941,39.22560070802848],[-76.57692447561767,39.22560729918058],[-76.57693550041932,39.22561418303562],[-76.57694642848951,39.22562116922968],[-76.57695743236921,39.22562806651889],[-76.57696867766157,39.22563468183273],[-76.57698034968944,39.22564081676711],[-76.57699250673301,39.22564640847742],[-76.57700497177441,39.22565162206875],[-76.57701755616139,39.2256566316122],[-76.57703018987155,39.22566152693323],[-76.57704289605596,39.22566630991666],[-76.57705565248017,39.22567101921598],[-76.57706843577827,39.22567568897648],[-76.57708122256845,39.22568035604582],[-76.57709398832682,39.22568505456524],[-76.57710670850817,39.22568982227892],[-76.57711936555852,39.22569468975018],[-76.57713198401268,39.22569962103627],[-76.57714460012016,39.22570455771721],[-76.57715724782523,39.22570943956312],[-76.57716996337203,39.22571420905479],[-76.57718290328086,39.2257186424622],[-76.57719607921305,39.22572272631563],[-76.57720919333863,39.22572688200718],[-76.57722194782789,39.22573153092915],[-76.57723409743761,39.22573701539478],[-76.57724589207058,39.22574298860395],[-76.57725746836122,39.22574926008388],[-76.57726889637443,39.22575573280296],[-76.57728024847538,39.22576231244011],[-76.57729159473428,39.22576890106289],[-76.57730300520538,39.22577540344111],[-76.57731454639342,39.2257817369426],[-76.57732621226664,39.2257879420807],[-76.57733794219644,39.22579408709611],[-76.57734966864858,39.2258002329986],[-76.57736132754174,39.22580644441344],[-76.57737285365801,39.22581278235874],[-76.57738418291063,39.22581931236056],[-76.57739525357205,39.22582609274739],[-76.57740608653096,39.22583311638814],[-76.57741672257808,39.22584034019251],[-76.57742718505774,39.22584773361805],[-76.57743749268171,39.22585526610576],[-76.57744766647801,39.22586290710488],[-76.57745772864355,39.22587062426739],[-76.57746767574147,39.22587841127547],[-76.57747730172179,39.22588644664224],[-76.57748666939521,39.22589468465424],[-76.5774959253681,39.22590301053962],[-76.57750521163052,39.22591130680759],[-76.57751467363632,39.22591945778133],[-76.57752445568102,39.22592734777985],[-76.57753465659418,39.22593491140189],[-76.5775451819375,39.22594225459931],[-76.5775559993431,39.22594936734696],[-76.5775670869679,39.22595622254283],[-76.57757842296874,39.22596279308484],[-76.57758998898201,39.22596905098272],[-76.57760200072434,39.22597475019945],[-76.57761444745647,39.22597994384224],[-76.57762708427343,39.22598491747706],[-76.57763967435559,39.22598996030223],[-76.57765197395632,39.22599535788821],[-76.57766398175161,39.22600113815435],[-76.57767592978387,39.2260070362062],[-76.57768774946814,39.22601309503434],[-76.57769936872363,39.22601936121982],[-76.57771071545899,39.22602588314545],[-76.57772168266285,39.22603273879398],[-76.57773197326273,39.22604022255193],[-76.57774182827636,39.22604811819907],[-76.57775162267988,39.22605607938414],[-76.57776173143877,39.22606376155723],[-76.57777235600246,39.22607098078343],[-76.57778322854536,39.2260779820116],[-76.57779424194905,39.22608486123959],[-76.57780530074585,39.22609170279717],[-76.57781630715701,39.2260985901049],[-76.57782716570416,39.22610560929413],[-76.57783778090881,39.22611284649619],[-76.57784817371859,39.22612028467166],[-76.577858473379,39.22612780718432],[-76.57786881265267,39.22613529020428],[-76.57787932311737,39.22614261440125],[-76.57789033193478,39.22614948909967],[-76.57790189067182,39.2261558117961],[-76.57791367456859,39.22616185876224],[-76.57792556921527,39.22616778361956],[-76.57793748951356,39.22617367974303],[-76.57794935386079,39.226179636917],[-76.57796108063835,39.22618574762816],[-76.57797254512084,39.22619214744554],[-76.5779837204792,39.22619886870078],[-76.57799481656401,39.22620567794619],[-76.57800605024397,39.22621233004909],[-76.57801762786313,39.22621859695361],[-76.57802953312225,39.22622449301352],[-76.57804160394208,39.22623020320632],[-76.57805367824893,39.22623591160885],[-76.57806573959374,39.2262416577962],[-76.57807756664681,39.2262476580603],[-76.5780881681937,39.22625486276212],[-76.57809838529897,39.22626244801101],[-76.57810846843769,39.2262701651918],[-76.57811865292246,39.22627778365034],[-76.57812904805381,39.22628522991577],[-76.57813935593886,39.22629274162348],[-76.57814921247991,39.22630058859906],[-76.57815866768426,39.22630873589198],[-76.57816792630415,39.22631702840365],[-76.57817710233148,39.22632538277145],[-76.57818630975287,39.22633371653338],[-76.57819565326876,39.22634195079733],[-76.57820511540584,39.22635010261518],[-76.57821462755766,39.22635821858088],[-76.57822413273091,39.22636633992538],[-76.57824425631563,39.22637493360105],[-76.57825543242402,39.22638153773143],[-76.57826596864136,39.22638882865675],[-76.57827619722686,39.2263964373512],[-76.57828626519346,39.22640418058432],[-76.57829627755166,39.22641192721991],[-76.57830616078986,39.22641976977395],[-76.57831595676031,39.22642768137352],[-76.57832572712083,39.22643561539964],[-76.57833553123983,39.22644352072138],[-76.57834543077513,39.22645135071965],[-76.57835548275214,39.22645905875886],[-76.57836567435145,39.22646665830464],[-76.5783759764973,39.22647416997038],[-76.57838636825289,39.22648160899406],[-76.57839683101354,39.22648898791969],[-76.57840734269507,39.22649632017966],[-76.57841780529427,39.22650372702691],[-76.57842825842761,39.2265111680688],[-76.57843884205205,39.22651847806485],[-76.57844969498788,39.22652548816727],[-76.57846095834483,39.22653203404045],[-76.5784727262985,39.22653805386878],[-76.57848492777107,39.22654362035991],[-76.57849744892549,39.2265487907547],[-76.57851017942049,39.22655361870344],[-76.57852301222329,39.22655818579253],[-76.57853590358552,39.22656264319556],[-76.57854884639269,39.22656701881104],[-76.57856183013629,39.22657132701379],[-76.57857484661859,39.22657558308748],[-76.57858788764192,39.2265798023159],[-76.57860094270848,39.22658399727231],[-76.5786140047787,39.22658818324464],[-76.57862706333871,39.2265923755083],[-76.57864011019622,39.22659658844639],[-76.57865313716425,39.22660083554121],[-76.57866613605063,39.22660513117577],[-76.57867909517796,39.22660949152221],[-76.57869202502279,39.22661390761026],[-76.57870496879323,39.22661831924303],[-76.57871791365396,39.22662274258833],[-76.57873084093085,39.22662720190026],[-76.57874372963906,39.22663172052369],[-76.57875656226794,39.22663632181597],[-76.57876931782728,39.2266410300228],[-76.57878197880655,39.2266458685017],[-76.57879452422085,39.22665086059748],[-76.578806876919,39.22665612673764],[-76.57881888845313,39.22666189698869],[-76.57883061859235,39.22666805266257],[-76.57884214461626,39.22667445171366],[-76.57885354263036,39.22668095479454],[-76.57886492307716,39.22668749114003],[-76.57887617615397,39.22669421889309],[-76.57888698344328,39.22670132157086],[-76.57889702188423,39.22670898447539],[-76.5789063286967,39.22671718071701],[-76.57891521317767,39.22672570242516],[-76.57892379286794,39.22673445363829],[-76.57893218301352,39.22674333478359],[-76.57894049884979,39.2267522480897],[-76.57894883811743,39.22676111644031],[-76.57895705182496,39.22677006631069],[-76.57896494836567,39.22677918438897],[-76.57897235368611,39.22678852679989],[-76.57897941052784,39.22679804451276],[-76.57898634757836,39.22680764736938],[-76.57899299438149,39.22681737078945],[-76.57899918165496,39.22682724749463],[-76.5790047401004,39.2268373129088],[-76.57900961983327,39.22684758126566],[-76.57901399483207,39.22685800905109],[-76.57901804725167,39.22686854107037],[-76.57902195694668,39.22687911941797],[-76.57902590607213,39.22688968889907],[-76.5790300756304,39.22690019341383],[-76.5790346651537,39.22691057692886],[-76.57903960266283,39.22692086891166],[-76.57904451465745,39.22693116710811],[-76.57904907054609,39.22694155950969],[-76.57905339560268,39.22695201323678],[-76.5790576209024,39.22696249362925],[-76.57906183228459,39.22697297757475],[-76.57906611790497,39.22698344196921],[-76.57907064476711,39.22699384777728],[-76.57907562042499,39.22700415340676],[-76.57908037929761,39.22701449519042],[-76.57908406563763,39.22702504841348],[-76.57908603131524,39.22703593595975],[-76.57908807808828,39.22704681929292],[-76.57909058857335,39.22705762592131],[-76.57909246504042,39.2270685194529],[-76.57909310882803,39.22707948332843],[-76.5790934316624,39.2270904721755],[-76.57909338968982,39.2271014597143],[-76.57909297596673,39.22711244501913],[-76.57909244378439,39.22712348574732],[-76.57909131091765,39.22713446036611],[-76.57908898528531,39.22714521902452],[-76.57908487791182,39.22715567403652],[-76.57907957657612,39.22716591938906],[-76.57907408577191,39.22717608569419],[-76.57907359389372,39.22717700632675],[-76.57906867038808,39.22718622794851],[-76.57906308274198,39.22719631914119],[-76.57905728706,39.2272063375253],[-76.57905125449589,39.22721626498165],[-76.57904522409687,39.22722621766722],[-76.57903921552951,39.22723619925571],[-76.57903308449345,39.22724613086177],[-76.57902668783571,39.22725593540591],[-76.57901988125585,39.2272655340028],[-76.57901251929515,39.22727484776298],[-76.57900435601626,39.22728375059601],[-76.57899553803027,39.22729232229613],[-76.57898637593165,39.22730072251417],[-76.57897717914061,39.22730911359929],[-76.57896825824635,39.2273176561033],[-76.57895987187219,39.22732648516985],[-76.57895170244294,39.2273354465277],[-76.57894365070736,39.22734448127011],[-76.57893573979584,39.22735359488488],[-76.5789279928602,39.22736278925658],[-76.57892043419426,39.22737206897634],[-76.57891308809735,39.22738143773442],[-76.57890604119898,39.22739093457516],[-76.57889942856677,39.22740063294616],[-76.57889314629043,39.22741047842812],[-76.57888707542521,39.22742041294444],[-76.5788810970426,39.22743037571635],[-76.57887513955257,39.22744033045596],[-76.57886927681864,39.22745032066551],[-76.57886350191343,39.22746034271712],[-76.57885779865538,39.22747039114805],[-76.57885214972063,39.22748045778916],[-76.57884654008033,39.22749053808268],[-76.578840951258,39.22750062295446],[-76.57883541328468,39.22751072602397],[-76.57882995044358,39.22752085368379],[-76.57882456041858,39.22753100592568],[-76.57881924669465,39.22754118096054],[-76.57881400811905,39.22755137788345],[-76.57880887470695,39.22756161301614],[-76.57880395286698,39.22757191016074],[-76.5787993640634,39.22758229317337],[-76.57879504694247,39.22759275733],[-76.57879100387923,39.22760329273062],[-76.57878740738123,39.22761390900217],[-76.57878453286361,39.22762464406487],[-76.57878242771895,39.22763551340218],[-76.57878055056422,39.22764641058096],[-76.57877815661195,39.22765735184468],[-76.57877689898979,39.22766826205601],[-76.57877849785909,39.22767908973865],[-76.57878183537727,39.2276898732173],[-76.5787866207243,39.22770024303004],[-76.57879246122081,39.22771021037834],[-76.57879904526509,39.22771998042197],[-76.57880624698488,39.22772949145622],[-76.5788139497941,39.22773867820657],[-76.57882314134521,39.22774699744496],[-76.57883308581816,39.22775490592734],[-76.57884171500677,39.22776353211307],[-76.57884900908375,39.22777289935151],[-76.57885571754225,39.22778258876812],[-76.57886213797453,39.22779241406914],[-76.57886855048332,39.22780220871487],[-76.57887491191867,39.2278120229941],[-76.57888107021296,39.22782191581253],[-76.57888690127534,39.22783191554984],[-76.57889225546121,39.22784206310504],[-76.57889707471423,39.22785238349157],[-76.57890162012646,39.22786279117168],[-76.57890617831141,39.22787319349268],[-76.57891090009871,39.22788354505612],[-76.57891566595504,39.22789388686885],[-76.57892038889786,39.22790423933676],[-76.57892498426064,39.22791462287395],[-76.57892936737697,39.2279250578946],[-76.57893353581827,39.22793556330638],[-76.57893738413038,39.22794614954026],[-76.57894069223619,39.22795682121151],[-76.57894316462483,39.22796760878725],[-76.57894471196484,39.22797853806963],[-76.57894580275551,39.22798950714994],[-76.57894675573415,39.22800047483503],[-76.57894729512618,39.2280114635558],[-76.57894704366333,39.22802242421774],[-76.5789455774632,39.22803335620094],[-76.5789432420175,39.22804419859109],[-76.57893983629675,39.22805486869624],[-76.57893651625017,39.22806554361252],[-76.57893469020985,39.22807641665477],[-76.57893381089741,39.22808739848431],[-76.5789333334999,39.22809837454947],[-76.57893300662769,39.22810935655921],[-76.57893285113784,39.2281203427869],[-76.57893289486844,39.22813132612611],[-76.57893315056448,39.22814230572184],[-76.57893357874246,39.228153299448],[-76.57893434287595,39.22816427816531],[-76.57893563776679,39.22817520293841],[-76.57893796290809,39.22818601881023],[-76.57894113746566,39.22819675305605],[-76.57894396670736,39.22820751849095],[-76.57894554674229,39.22821840375175],[-76.57894646042213,39.22822935868428],[-76.57894698708171,39.22824034645794],[-76.57894732722272,39.22825134347097],[-76.5789476315524,39.22826232504233],[-76.57894769035718,39.22827330573283],[-76.5789475835271,39.22828428943225],[-76.57894748364572,39.22829527315656],[-76.5789474729516,39.22830625539922],[-76.57894744140562,39.2283172384678],[-76.57894743533872,39.22832822162781],[-76.57894751151024,39.22833920328121],[-76.57894767915867,39.22835018796501],[-76.57894771690874,39.2283612037101],[-76.57894797131618,39.22837220581988],[-76.57894890597839,39.2283831383077],[-76.57895090201947,39.22839398632678],[-76.57895392812213,39.22840475787174],[-76.57895786221843,39.22841533540344],[-76.57896263066333,39.22842563848842],[-76.57896814840537,39.22843575239538],[-76.57897413717095,39.22844573017273],[-76.57898031523843,39.22845562035255],[-76.57898668612508,39.22846541574123],[-76.5789932856798,39.22847512547511],[-76.57899997693772,39.22848480040717],[-76.57900662408127,39.22849449319613],[-76.57901314931215,39.22850423779252],[-76.57901965003694,39.22851401382782],[-76.57902521787713,39.22852408017032],[-76.57902969505817,39.22853448129308],[-76.57903368028602,39.22854503288261],[-76.57903760987094,39.2285555932802],[-76.57904135393535,39.22856618994413],[-76.57904507018418,39.22857679011126],[-76.57904934781321,39.2285872508695],[-76.57905383370083,39.22859774750478],[-76.57905897185422,39.22860801227699],[-76.57906559292485,39.22861761308938],[-76.57907352613209,39.22862663940708],[-76.57908220712903,39.22863534052284],[-76.57909122615163,39.22864387350401],[-76.57910018970298,39.22865238646838],[-76.57910927319139,39.22866079086801],[-76.57911853337643,39.22866908510495],[-76.57912781332685,39.22867736680107],[-76.57913695493714,39.22868573627664],[-76.57914592202708,39.22869424024227],[-76.57915433487993,39.22870304668277],[-76.57916135928403,39.2287126020952],[-76.57916618314503,39.22872294320226],[-76.57916840761828,39.22873375240128],[-76.57916885564755,39.2287447254779],[-76.57916905326678,39.22875573999314],[-76.57916972129038,39.22876672286625],[-76.5791703706718,39.22877772458875],[-76.57917141525861,39.22878868088778],[-76.57917333727184,39.22879952052927],[-76.57917657946521,39.22881018745083],[-76.57918052868379,39.22882076322637],[-76.57918431678242,39.2288313618442],[-76.57918792176692,39.22884198142413],[-76.57919146065814,39.22885261427854],[-76.5791947514241,39.22886329398449],[-76.5791980547598,39.2288740025602],[-76.57920094432318,39.22888476279827],[-76.5792027678049,39.22889561829967],[-76.57920364801092,39.22890656229864],[-76.57920399631794,39.22891755663566],[-76.57920412102784,39.22892856278194],[-76.57920426323815,39.22893954737228],[-76.57920419583438,39.22895052940952],[-76.57920401839588,39.22896151285383],[-76.57920392898193,39.22897249571287],[-76.57920406542287,39.2289834766793],[-76.57920428176546,39.22899445973367],[-76.57920458381646,39.22900544219453],[-76.57920501445409,39.22901641971166],[-76.57920561422969,39.22902738972813],[-76.57920656155704,39.22903834297502],[-76.57920782282332,39.22904928383571],[-76.57920909682956,39.22906022474204],[-76.57921001396595,39.22907119139224],[-76.57921053015311,39.22908219533841],[-76.57921170005501,39.22909311425268],[-76.57921516606284,39.22910373603499],[-76.57921880001425,39.22911435661769],[-76.57922102429416,39.22912520184487],[-76.57922276173504,39.22913611558729],[-76.57922403347692,39.22914704837804],[-76.57922434474875,39.22915803897842],[-76.5792238499847,39.22916902038371],[-76.57922313736522,39.22918002172585],[-76.57922170017483,39.22919094750745],[-76.57921910576627,39.22920171150439],[-76.57921595002152,39.22921241133518],[-76.57921241816989,39.22922306027473],[-76.5792086283268,39.22923366144884],[-76.57920469746557,39.22924421527679],[-76.57920040351972,39.22925467051894],[-76.57919574407678,39.22926504338056],[-76.57919105919045,39.22927540984533],[-76.57918668656637,39.22928585129316],[-76.57918266321757,39.22929637596379],[-76.57917875552278,39.22930692807221],[-76.57917493341273,39.22931750030447],[-76.57917116334372,39.22932808533402],[-76.57916741408835,39.22933867584269],[-76.57916365442981,39.22934926271083],[-76.57915986816997,39.229359843178],[-76.57915611776906,39.22937043097981],[-76.57915239165628,39.22938102427327],[-76.57914866901154,39.22939161847972],[-76.57914492323455,39.22940220719848],[-76.57914113118903,39.22941278584258],[-76.57913726511651,39.22942334800714],[-76.57913299749916,39.22943385198273],[-76.57912849153006,39.22944431637008],[-76.5791242390623,39.22945480418567],[-76.57912073660333,39.22946537485959],[-76.57911889430846,39.22947644871557],[-76.57912068890836,39.22948729240281],[-76.57912831420886,39.22949630770155],[-76.57913702778947,39.22950519719005],[-76.57914433036713,39.22951473017829],[-76.57915100143019,39.22952451041702],[-76.57915571262502,39.22953471960456],[-76.5791585165906,39.22954546512224],[-76.57915999605082,39.22955652476605],[-76.57916019799389,39.22956759153942],[-76.57915898601328,39.22957842624729],[-76.57915606867913,39.22958915125125],[-76.57915234548476,39.22959983643381],[-76.57914882259192,39.22961053224297],[-76.57914356995693,39.22962620945376],[-76.57914048925933,39.22963694377999],[-76.57913954733922,39.22964774342474],[-76.57914114368194,39.22965881880079],[-76.57914508675648,39.22966946121029],[-76.57915202744611,39.22967889201293],[-76.57916125177437,39.22968759236559],[-76.57916890548422,39.22969670414616],[-76.57917206666851,39.22970717170281],[-76.5791721215965,39.22971842170715],[-76.57917030628781,39.22972943710935],[-76.57916622295853,39.22974030656088],[-76.57916856908241,39.22975052798529],[-76.5791745705987,39.22976052741261],[-76.57918228756243,39.22977010692226],[-76.57919080358094,39.22977892093311],[-76.5792009341711,39.2297867480752],[-76.57921171787653,39.2297942019337],[-76.57922157161711,39.22980203708923],[-76.57922892156725,39.22981100995761],[-76.57923326581476,39.22982138627096],[-76.57923586290826,39.22983245172094],[-76.57923799250005,39.22984344883745],[-76.57923773534814,39.2298549850705],[-76.57924063650829,39.22986457793873],[-76.57925533922402,39.22986543954138],[-76.57926944260068,39.22986365881579],[-76.57928342036587,39.22986353056448],[-76.57929669040688,39.22986751902912],[-76.57930853921781,39.22987348500899],[-76.57932011176877,39.22987994542504],[-76.57933088218458,39.22988710557128],[-76.57934052445039,39.22989506066273],[-76.57934977820001,39.22990329990739],[-76.57935882364787,39.22991170594935],[-76.57936770501767,39.22992024291607],[-76.5793764676966,39.22992887403834],[-76.57938515590293,39.22993756434435],[-76.57939381386042,39.22994627796152],[-76.5794024869455,39.22995497992208],[-76.57941121822905,39.22996363344858],[-76.57942003796218,39.22997221522917],[-76.57942881005253,39.22998082386169],[-76.57943753563706,39.22998946295324],[-76.57944626820471,39.2299980966645],[-76.57945506471899,39.23000668916851],[-76.57946397751607,39.2300152037208],[-76.57947306588656,39.23002360270112],[-76.57948243214375,39.2300318198186],[-76.57949201581768,39.23003989629218],[-76.57950168555014,39.23004791362192],[-76.57951131227261,39.23005595782013],[-76.57952076579041,39.23006410949027],[-76.57952991819306,39.23007245464886],[-76.57953868555376,39.23008108397371],[-76.57954695539176,39.23009002048231],[-76.57955458759,39.23009926006965],[-76.57956166698806,39.23010875349704],[-76.57956847088359,39.23011841798555],[-76.57957486610334,39.23012825035598],[-76.57958071597288,39.23013825192029],[-76.5795858362473,39.23014843823265],[-76.57958986020395,39.2301589331877],[-76.57959321238262,39.23016962841131],[-76.57959649722321,39.23018035131764],[-76.57960029943446,39.23019093645649],[-76.57960445773793,39.23020143279285],[-76.57960876101097,39.2302118963195],[-76.57961323479211,39.23022231721935],[-76.57961790232473,39.23023268206396],[-76.57962283901794,39.23024296950471],[-76.57962811674226,39.23025316898966],[-76.57963356499634,39.23026332224467],[-76.57963899355245,39.2302734772304],[-76.57964421450974,39.23028368011436],[-76.57964903880385,39.23029397796061],[-76.57965315905554,39.23030444803612],[-76.57965629575094,39.23031515599737],[-76.57965888738202,39.23032598451223],[-76.57966140839743,39.23033680736945],[-76.57966393416361,39.23034761042646],[-76.57966635907376,39.23035842933626],[-76.57966871327218,39.23036925880207],[-76.57967102806147,39.23038009353129],[-76.57967333473898,39.23039092913222],[-76.57967565880041,39.23040176299369],[-76.57967777297219,39.23041264024156],[-76.57967969348459,39.23042355823167],[-76.57968163488201,39.23043446999099],[-76.57968381516747,39.23044533126141],[-76.57968645120728,39.23045609417755],[-76.57968976796978,39.23046671180374],[-76.57969417481814,39.23047709642889],[-76.57969944214658,39.23048729587263],[-76.57970509796043,39.23049741293497],[-76.57971066796975,39.23050754680448],[-76.57971581116497,39.23051778183399],[-76.57972075937795,39.23052808552495],[-76.57972568205921,39.23053839813196],[-76.57973073358713,39.23054866255814],[-76.57973606602383,39.23055882169819],[-76.57974183491666,39.23056881665769],[-76.57974833391836,39.23057854129546],[-76.57975545393685,39.23058803305355],[-76.57976285720761,39.23059741502971],[-76.57977020132286,39.23060681210672],[-76.57977754205075,39.23061619475873],[-76.57978501864967,39.23062551664388],[-76.57979246158348,39.2306348519196],[-76.57979970014189,39.23064427744169],[-76.57980662631599,39.23065384326694],[-76.57981336668274,39.23066349309966],[-76.57981996073728,39.23067320726413],[-76.57982643868286,39.23068297055529],[-76.57983282842223,39.23069276505752],[-76.57983899180191,39.23070264612443],[-76.5798447697571,39.23071267984424],[-76.57985062435611,39.23072267960853],[-76.57985703509887,39.23073244896272],[-76.57986395202387,39.23074201475118],[-76.57987112436807,39.23075147696335],[-76.57987848597682,39.2307608587825],[-76.57988597187494,39.23077017979324],[-76.57989351590247,39.23077946407965],[-76.57990108662335,39.23078873945327],[-76.57990872004238,39.23079798892828],[-76.57991645919337,39.23080718203216],[-76.5799243482417,39.23081629280055],[-76.57993243022653,39.23082528986018],[-76.5799408957234,39.23083406670058],[-76.57994997132327,39.23084249802378],[-76.57995920847169,39.23085083534277],[-76.57996811910823,39.23085935164801],[-76.57997629069897,39.2308682787645],[-76.57998395446749,39.23087749141113],[-76.57999129752537,39.23088688126337],[-76.57999843960199,39.23089637488614],[-76.58000550159031,39.2309058979475],[-76.58001249051388,39.23091543786175],[-76.58001924835409,39.23092507963725],[-76.5800258981923,39.23093477056862],[-76.58003257589799,39.23094444988924],[-76.58003930933127,39.23095410688939],[-76.58004595913232,39.23096380502566],[-76.58005274017727,39.23097344147743],[-76.58005989638212,39.23098289911562],[-76.58006750673236,39.23099213948935],[-76.5800753819065,39.23100125289965],[-76.580083401102,39.23101029836558],[-76.58009144120544,39.2310193339972],[-76.58009938140901,39.23102841971432],[-76.58010710670628,39.23103761365614],[-76.5801146716704,39.23104689259765],[-76.58012224012698,39.2310561688488],[-76.5801299805559,39.23106535113304],[-76.58013801259614,39.23107438132779],[-76.58014612690678,39.23108340551078],[-76.58015441316313,39.23109234023053],[-76.58016303666363,39.23110104465624],[-76.58017216619169,39.23110937616808],[-76.58018195509086,39.2311172569468],[-76.58019233818887,39.23112473990489],[-76.58020314608713,39.2311318757807],[-76.58021420707101,39.23113871530424],[-76.58022560464674,39.23114523895704],[-76.58023763497947,39.23115111180834],[-76.58025028430941,39.23115591855063],[-76.58026341594113,39.2311598595681],[-76.58027685395267,39.23116330535164],[-76.58029047369921,39.23116637706028],[-76.58030414938314,39.23116919494826],[-76.58031788498478,39.23117167345602],[-76.5803317502984,39.23117376148876],[-76.58034566396621,39.23117570286616],[-76.58035955039497,39.23117774593225],[-76.58037333283862,39.2311801381264],[-76.58038701329963,39.2311829326016],[-76.58040065580019,39.23118587917074],[-76.58041431870433,39.2311887051072],[-76.58042806385586,39.23119113679578],[-76.58044194597353,39.23119293032149],[-76.58045594707212,39.2311941892094],[-76.58047002678836,39.23119507995894],[-76.5804841518998,39.23119573666706],[-76.58049828802595,39.23119629342657],[-76.58051240078106,39.23119688523117],[-76.5805265107271,39.23119736442694],[-76.58054063920621,39.23119764731792],[-76.58055476909377,39.23119788787565],[-76.58056888673971,39.23119824008431],[-76.58058297385607,39.23119885881209],[-76.58059701930638,39.23119986472338],[-76.58061103539633,39.23120113535648],[-76.58062502958064,39.23120258516421],[-76.58063901150263,39.23120415022589],[-76.58065298848928,39.23120576661252],[-76.58066696787805,39.23120736859369],[-76.58068095698508,39.23120889404186],[-76.58069496898133,39.23121027004113],[-76.5807084681621,39.23121101186157],[-76.58070914086002,39.23121104939487],[-76.58072340159231,39.23121149217372],[-76.58073753753588,39.2312122768003],[-76.5807513385181,39.23121408261049],[-76.5807647356947,39.23121719220237],[-76.58077799990066,39.2312208525932],[-76.58079113997222,39.23122494040821],[-76.58080414710155,39.23122937814912],[-76.58081701131714,39.23123408921435],[-76.58082972495853,39.23123899791132],[-76.58084227804888,39.23124402853924],[-76.58085465608907,39.23124928283413],[-76.58086683991539,39.23125486792005],[-76.58087881117252,39.23126075400591],[-76.58089055381075,39.23126691311035],[-76.58090204714766,39.23127331723553],[-76.58091329022713,39.23127993214862],[-76.58092440614662,39.23128670244096],[-76.5809354030666,39.23129361913401],[-76.5809462531534,39.23130068843385],[-76.58095693205857,39.23130791475745],[-76.58096741196442,39.2313153016087],[-76.58097766620605,39.2313228533963],[-76.58098766926082,39.23133057723548],[-76.58099730355644,39.23133857359354],[-76.58100659577909,39.23134683445884],[-76.581015657625,39.23135527375564],[-76.58102460078507,39.23136380630885],[-76.58103353580282,39.23137234513774],[-76.58104257437451,39.23138080416636],[-76.58105182934925,39.23138909822379],[-76.581061410107,39.23139714122568],[-76.58107127083005,39.23140504290328],[-76.58108136966948,39.23141282922968],[-76.58109178162627,39.23142035184428],[-76.58110258054326,39.23142746238241],[-76.58111384372708,39.23143401429318],[-76.58112560040861,39.23143996084045],[-76.58113772279867,39.23144556369408],[-76.58115014816376,39.23145085505802],[-76.58116282204223,39.23145583924176],[-76.58117568995664,39.23146052325704],[-76.58118869627123,39.2314649141115],[-76.58120178883554,39.2314690170237],[-76.58121499582323,39.23147276813896],[-76.58122841841087,39.23147609755762],[-76.5812420074125,39.2314790969834],[-76.5812557101675,39.23148185810758],[-76.58126947515228,39.23148447622864],[-76.5812832508593,39.23148704394284],[-76.58129698461751,39.23148965474306],[-76.5813108336216,39.23149197049799],[-76.58132488231284,39.23149381315501],[-76.58133889260401,39.23149568629977],[-76.58135262409705,39.23149809260903],[-76.58136583401428,39.23150154556061],[-76.58137830663625,39.23150648756742],[-76.58139025195629,39.23151246538708],[-76.58140199140821,39.23151878656808],[-76.58141349407099,39.23152519517957],[-76.58142271303404,39.23153351790359],[-76.58143174008005,39.23154197866209],[-76.58144031854796,39.23155069544244],[-76.58144831832742,39.23155973443821],[-76.58145594855633,39.23156898379823],[-76.5814634231277,39.2315783109702],[-76.58147080482803,39.2315876747424],[-76.58147801460292,39.23159712527644],[-76.58148519650355,39.23160658922222],[-76.58149250039848,39.23161598874657],[-76.5815000761511,39.23162524691707],[-76.58150795271624,39.23163436383681],[-76.58151603246084,39.23164339770813],[-76.58152439344558,39.23165227044173],[-76.58153312301289,39.23166090127907],[-76.58154231082666,39.23166920856902],[-76.58155199054357,39.23167718072138],[-76.58156200049534,39.23168493245907],[-76.58157215810773,39.23169258833919],[-76.58158227733749,39.23170027200564],[-76.58159217326732,39.23170811251115],[-76.58160178176672,39.23171618259004],[-76.58161130183161,39.2317243226135],[-76.5816209662684,39.23173233524049],[-76.5816310079048,39.23174001952681],[-76.58164166055676,39.23174720335666],[-76.58165289752748,39.23175389654332],[-76.5816645168028,39.23176018123802],[-76.58167635326102,39.23176616854846],[-76.58168844946861,39.2317719072683],[-76.58170084355974,39.23177721557643],[-76.58171357496998,39.23178188733544],[-76.58172683219546,39.23178557912026],[-76.58173054619544,39.23178643458109],[-76.58195302974131,39.23206453845766],[-76.58198005560014,39.23206731271672],[-76.58309517372754,39.23217786397093],[-76.58312929948713,39.2321812477861],[-76.58394230199509,39.23226141897045],[-76.58423985958237,39.23229207372158],[-76.58438577647395,39.23230710738635],[-76.58494427474375,39.23237405568246],[-76.5849923993768,39.23237982650302]]]],"type":"MultiPolygon"} +},{ + "id": 1108796101, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000033, + "geom:area_square_m":316883.811453, + "geom:bbox":"-76.6269266871,39.3450203774,-76.6148899997,39.3517377304", + "geom:latitude":39.3474, + "geom:longitude":-76.619856, + "iso:country":"US", + "lbl:latitude":39.347116, + "lbl:longitude":-76.618765, + "lbl:max_zoom":18.0, + "mps:latitude":39.347116, + "mps:longitude":-76.618765, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Loyola" + ], + "name:deu_x_preferred":[ + "Loyola" + ], + "name:eus_x_preferred":[ + "Loiola" + ], + "name:fra_x_preferred":[ + "Loyola" + ], + "name:hun_x_preferred":[ + "Loyola" + ], + "name:nld_x_preferred":[ + "Loyola" + ], + "name:pol_x_preferred":[ + "Loyola" + ], + "name:por_x_preferred":[ + "Loyola" + ], + "name:rus_x_preferred":[ + "\u041b\u043e\u0439\u043e\u043b\u0430" + ], + "name:spa_x_preferred":[ + "Loyola" + ], + "name:swe_x_preferred":[ + "Loyola" + ], + "reversegeo:latitude":39.347116, + "reversegeo:longitude":-76.618765, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108795097, + 102191575, + 1108794685, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"6af3be14ca24b9e530d4fe884646b4d9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "macrohood_id":1108794685, + "microhood_id":1108796101, + "neighbourhood_id":1108795097, + "region_id":85688501 + } + ], + "wof:id":1108796101, + "wof:lastmodified":1566624057, + "wof:name":"Loyola", + "wof:parent_id":1108795097, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85870121 + ], + "wof:tags":[] +}, + "bbox": [ + -76.62692668706234, + 39.34502037742487, + -76.61488999966865, + 39.35173773038662 +], + "geometry": {"coordinates":[[[[-76.62683856958721,39.34669800242385],[-76.62661129705825,39.34662727161358],[-76.62644868778587,39.34659688913703],[-76.62630244857446,39.34659182538689],[-76.62615293535086,39.34660110892565],[-76.62600014811507,39.34662473975332],[-76.62582662546869,39.34667368927288],[-76.62563236741175,39.34674795748433],[-76.62545229674099,39.34684754422625],[-76.62528641345642,39.34697244949864],[-76.62511507348485,39.34710410614661],[-76.62493827682628,39.34724251417018],[-76.62477566755391,39.34736066719552],[-76.62462724566768,39.34745856522263],[-76.62444826633433,39.34752692501392],[-76.62423872955381,39.34756574656941],[-76.62406957225704,39.34758515734715],[-76.623940794444,39.34758515734715],[-76.62344205325287,39.34752692494922],[-76.62257334868363,39.34741046015336],[-76.6220756988299,39.34735391565376],[-76.62194910369166,39.34735729145041],[-76.62182359989083,39.3473682627866],[-76.62169918742741,39.34738682966233],[-76.62156931827698,39.34742227548945],[-76.62143399243955,39.34747460026797],[-76.62123427769562,39.34758178142062],[-76.62097017404518,39.34774381894739],[-76.62075518057767,39.34787294242378],[-76.62058929729308,39.34796915184975],[-76.62042013999631,39.34806198538757],[-76.62024770868734,39.34815144303721],[-76.62004799394342,39.34823330513903],[-76.61982099576453,39.34830757169304],[-76.61959727159783,39.34839027752032],[-76.61937682144331,39.34848142262086],[-76.61915091460182,39.34859872950016],[-76.61891955107332,39.34874219815822],[-76.61875366778874,39.34884431399664],[-76.61865326474808,39.3489050770154],[-76.61857032310579,39.34897090355229],[-76.61850484286187,39.3490417936073],[-76.61844045395536,39.34914390884883],[-76.61837715638623,39.34927724927689],[-76.61831931550411,39.34937936431123],[-76.61826693130899,39.34945025395187],[-76.61819381170329,39.34948738661899],[-76.61809995668703,39.34949076231257],[-76.61799955364637,39.34951101646332],[-76.61789260258131,39.34954814907124],[-76.61779110820325,39.34958696950247],[-76.61769507051217,39.349627477757],[-76.61761322020729,39.34969330358476],[-76.61754555728857,39.34978444698576],[-76.61749862978044,39.3498806537696],[-76.61747243768286,39.3499819239363],[-76.61741568813815,39.35007728655452],[-76.61732838114625,39.35016674162428],[-76.6172214300812,39.35029164086902],[-76.61709483494298,39.35045198428877],[-76.61701080196329,39.35056169285163],[-76.61696933114214,39.35062076655763],[-76.61689948554864,39.35067646458157],[-76.61680126518279,39.35072878692346],[-76.61668994876814,39.35082077280283],[-76.61656553630471,39.35095242221969],[-76.61642693645508,39.35108322748673],[-76.61627414921929,39.35121318860398],[-76.61612027064609,39.35142247577248],[-76.6159509957272,39.35173773038662],[-76.61568349896585,39.35166100108984],[-76.61517248872107,39.35149489145586],[-76.61516997401897,39.35149279244983],[-76.61517002048335,39.35149278888686],[-76.61488999966865,39.34990600016256],[-76.61489000024454,39.34969494065835],[-76.61488999984071,39.34900599971523],[-76.6149019888593,39.34891008906208],[-76.6149899995478,39.3482060001332],[-76.61500811201103,39.3481244997827],[-76.61519000043808,39.34730600002516],[-76.61520363217545,39.34727620298601],[-76.61531386237377,39.3473237572872],[-76.61564320085468,39.34743502961614],[-76.61581810339104,39.34746537625201],[-76.61599683123767,39.34747404250103],[-76.6160589269831,39.34747192767884],[-76.61645138179745,39.34746294371957],[-76.61677466967312,39.34745355107463],[-76.61698348504329,39.347450396144],[-76.61713089479495,39.34744187152624],[-76.61728481849505,39.34741207884202],[-76.61724865924326,39.34732698854262],[-76.61720150119281,39.34718861673364],[-76.61718120269914,39.34705075300472],[-76.6171650439899,39.34673710719949],[-76.61715548330082,39.34647707352973],[-76.61712848298558,39.3461300819291],[-76.61710245314538,39.34584035737532],[-76.61709260980237,39.34561252522425],[-76.6170833013225,39.34548905506875],[-76.61708515356429,39.34538519443844],[-76.6171061842593,39.34530600010559],[-76.61710768934749,39.34530032851444],[-76.61754526625921,39.34528823438901],[-76.61789318764126,39.34530161578785],[-76.61823853694432,39.34533681194586],[-76.61829997677766,39.34534540997342],[-76.61896174068306,39.34541626176793],[-76.6193757648165,39.34545496845208],[-76.61975070372725,39.34548294460879],[-76.62012729283802,39.34548900528387],[-76.6202824086389,39.34548511883826],[-76.62054141161896,39.34547252135351],[-76.62080510462079,39.34545624897573],[-76.62098118659469,39.34544341637909],[-76.62120531699649,39.34542830542313],[-76.62138976489429,39.3454148920666],[-76.62165588642442,39.34538149614525],[-76.62189400006585,39.34533744742253],[-76.62209760991222,39.34530592566356],[-76.62216190868934,39.34530166552819],[-76.62246428121321,39.34528163332367],[-76.62284245600713,39.34525397823518],[-76.62318198848887,39.34523048472929],[-76.62356704145708,39.34520510301876],[-76.62407646042203,39.34517208222664],[-76.62468112464965,39.34513433716558],[-76.62498875079943,39.34511474760036],[-76.62508176041673,39.34510882459573],[-76.62520570185194,39.34509855405325],[-76.62567630748067,39.34507179067461],[-76.62610738126412,39.34504038697207],[-76.62638435985272,39.34502037742487],[-76.62641312269275,39.3450872590176],[-76.62644003129461,39.34514983365606],[-76.62646660749046,39.3451786356248],[-76.62648604553144,39.34519934334032],[-76.62650686426254,39.34522485730633],[-76.62652792315846,39.34525653312217],[-76.62654904768614,39.34529799392734],[-76.62656786610724,39.34534428169777],[-76.62657949406399,39.34538293083409],[-76.62658186862997,39.34541928340601],[-76.6265800470871,39.34546975262462],[-76.62657841620084,39.34551419917145],[-76.62658345246813,39.34556917677659],[-76.62659082551987,39.34560118021545],[-76.62661438199629,39.34566086447708],[-76.62663599154263,39.34570630178509],[-76.6266520670026,39.34574435342795],[-76.62666943514459,39.34579269296844],[-76.62667425943194,39.34580599966744],[-76.62668297149537,39.34583003306205],[-76.62669929111556,39.34586887272242],[-76.62670903934959,39.34588978382259],[-76.62672602137332,39.34592620618292],[-76.62674898571331,39.34596950399624],[-76.62676585057564,39.34600130606159],[-76.62679882421071,39.34604811971641],[-76.62682593960967,39.34608741427162],[-76.62684913746995,39.346127362937],[-76.62687006593816,39.34616516332658],[-76.62689491904763,39.34621088830178],[-76.62691189514508,39.34624317980022],[-76.62692605526266,39.34628834299922],[-76.62692668706234,39.34631289297935],[-76.62692557731141,39.34633021887105],[-76.62690985545329,39.34636268313642],[-76.62688027436755,39.34639000880972],[-76.62685069912702,39.34641776234724],[-76.62683676554157,39.34644966661059],[-76.62683522999608,39.3464826406742],[-76.6268451160927,39.3465331389313],[-76.6268527155255,39.34658542601279],[-76.62685146379241,39.34662310646183],[-76.62684416493516,39.34665210886724],[-76.62683614342139,39.34667933181067],[-76.62683856958721,39.34669800242385]]]],"type":"MultiPolygon"} +},{ + "id": 1108826435, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000291, + "geom:area_square_m":3115608.928367, + "geom:bbox":"-89.9872879996,29.9053218596,-89.9613917844,29.9301959262", + "geom:latitude":29.918714, + "geom:longitude":-89.978063, + "iso:country":"US", + "lbl:latitude":29.91866, + "lbl:longitude":-89.97847, + "lbl:max_zoom":18.0, + "mps:latitude":29.91866, + "mps:longitude":-89.97847, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "Cutoff", + "Cut-Off" + ], + "reversegeo:latitude":29.91866, + "reversegeo:longitude":-89.97847, + "src:geom":"mz", + "wof:belongsto":[ + 420521765, + 102191575, + 1108746803, + 85633793, + 85948111, + 102086693, + 85688735, + 1108739497 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1fe6a7ad56b9ffde3d07a2d8ee9bfcef", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108746803, + "microhood_id":1108826435, + "neighbourhood_id":420521765, + "region_id":85688735 + }, + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739497, + "microhood_id":1108826435, + "neighbourhood_id":420521765, + "region_id":85688735 + } + ], + "wof:id":1108826435, + "wof:lastmodified":1566624122, + "wof:name":"Cut Off", + "wof:parent_id":420521765, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85813311 + ], + "wof:tags":[] +}, + "bbox": [ + -89.9872879996017, + 29.90532185957562, + -89.96139178437612, + 29.93019592615992 +], + "geometry": {"coordinates":[[[-89.96139178437612,29.9228502788167],[-89.98576259891753,29.90532185957562],[-89.98580799980566,29.90536899986274],[-89.98622599978084,29.90581600001158],[-89.98634299991984,29.90593600005641],[-89.98723500017358,29.90685099982066],[-89.9872879996017,29.90706900035623],[-89.98721200011954,29.90735100014037],[-89.98701399927056,29.90808499984959],[-89.98695100010383,29.90867699990635],[-89.98678399960359,29.90991600017428],[-89.98672000046543,29.91039600006793],[-89.98668199985347,29.91070599978423],[-89.98663799969788,29.91116100027581],[-89.9865780004649,29.91165300019331],[-89.98655300009712,29.91186700013514],[-89.98649200042675,29.91247300043428],[-89.98645399984044,29.91280199939646],[-89.98640700052225,29.9132910006001],[-89.98631099955692,29.9139669998815],[-89.98620499989256,29.91477299966772],[-89.98611100040708,29.91550500049274],[-89.98603300064742,29.91621800060646],[-89.98601200080017,29.91634399984819],[-89.98598299965477,29.91648399928507],[-89.98595500021257,29.91664600017095],[-89.98590400006115,29.9168909997677],[-89.98580299954186,29.91769800026792],[-89.98570700050603,29.91863000033982],[-89.98561199968078,29.91954800050062],[-89.98552599980539,29.92016900058984],[-89.98551299967953,29.92026500010459],[-89.98548800028996,29.92044600025639],[-89.98537599993178,29.92134299948903],[-89.98526800053884,29.92224500005939],[-89.98514200078245,29.92316899932549],[-89.98511100010167,29.92341500011946],[-89.98506000078032,29.92392000021507],[-89.98503899927579,29.92408999958911],[-89.98500000062599,29.92441099998805],[-89.98493699974178,29.92488999984604],[-89.98489699994848,29.92534800033518],[-89.98492699991311,29.9256420001832],[-89.98493599988576,29.92573600017683],[-89.98499199930613,29.9262969998978],[-89.98505100050255,29.93017299941023],[-89.98505134957425,29.93019592615992],[-89.98391579308782,29.92968673699997],[-89.98381003538279,29.92963931403997],[-89.98315896639117,29.92934736532113],[-89.98185144972292,29.92880604171602],[-89.98055155615894,29.9282678545465],[-89.97761722724492,29.92713139539023],[-89.96751874304306,29.92346326367891],[-89.96291170210145,29.92299412703895],[-89.96199779640129,29.92290763869291],[-89.96139178437612,29.9228502788167]]],"type":"Polygon"} +},{ + "id": 1108827613, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000313, + "geom:area_square_m":3210403.596313, + "geom:bbox":"-118.366045,33.9971002299,-118.335095,34.021562", + "geom:latitude":34.011516, + "geom:longitude":-118.350125, + "iso:country":"US", + "lbl:latitude":34.011023, + "lbl:longitude":-118.362372, + "lbl:max_zoom":18.0, + "mps:latitude":34.011602, + "mps:longitude":-118.349083, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Baldwin Hills" + ], + "name:eng_x_preferred":[ + "Baldwin Hills" + ], + "name:eng_x_variant":[ + "Baldwin Hls" + ], + "name:nld_x_preferred":[ + "Baldwin Hills" + ], + "name:spa_x_preferred":[ + "Baldwin Hills" + ], + "name:zho_x_preferred":[ + "\u9b91\u5fb7\u6eab\u5c71" + ], + "reversegeo:latitude":34.011602, + "reversegeo:longitude":-118.349083, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1041531571, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q804862" + }, + "wof:country":"US", + "wof:geomhash":"9ee2cfe162c056798641095d10f422a4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1108827613, + "neighbourhood_id":1041531571, + "region_id":85688637 + } + ], + "wof:id":1108827613, + "wof:lastmodified":1566624122, + "wof:name":"Baldwin Hills", + "wof:parent_id":1041531571, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865473 + ], + "wof:tags":[] +}, + "bbox": [ + -118.366045, + 33.99710022987493, + -118.335095, + 34.021562 +], + "geometry": {"coordinates":[[[-118.36587400000001,34.021562],[-118.35220815421451,34.02151189980395],[-118.345901,34.017528],[-118.345389,34.017207],[-118.34522699999999,34.017105],[-118.344032,34.016354],[-118.341683,34.014877],[-118.34150099999999,34.01466],[-118.337791,34.012327],[-118.335629,34.010966],[-118.335509,34.010914],[-118.335376,34.010874],[-118.33529299999999,34.010868],[-118.33522600000001,34.010871],[-118.335157,34.010887],[-118.33509599999999,34.010925],[-118.335095,34.008465],[-118.3357113078643,34.00824145920434],[-118.33569107105525,34.00811406527479],[-118.33606497053776,34.00796429643224],[-118.33621815395493,34.00790307358894],[-118.3363581581886,34.0078466955138],[-118.33643391850642,34.00781454072959],[-118.3365491750523,34.00775788781272],[-118.33663311992066,34.0077095662211],[-118.33670222911208,34.00766437668369],[-118.33678940611884,34.00759955835518],[-118.33683216143478,34.00756509052996],[-118.3368716127471,34.00752960174665],[-118.33689626701009,34.0075065199181],[-118.33693078118162,34.00747413639091],[-118.33701126124792,34.007384949262],[-118.33707034793575,34.00730921828225],[-118.33713598963018,34.00722247648888],[-118.33718029903159,34.00716430404148],[-118.33723445037522,34.00709202071],[-118.33728039650705,34.00703075255727],[-118.33732306378811,34.00697464570971],[-118.33735589811006,34.00693471021751],[-118.3375955075424,34.0070326194587],[-118.33764147972538,34.00697787685868],[-118.33769075321705,34.00692312528721],[-118.33774003748847,34.00687146483425],[-118.33775975281399,34.00685114483402],[-118.33779590551262,34.00681600798477],[-118.33783205910953,34.00678121441737],[-118.33789123203562,34.00672712175932],[-118.33794548578722,34.00668059946923],[-118.33801454916457,34.00662441866705],[-118.33806553125189,34.00658477492452],[-118.33810665073572,34.00655408966016],[-118.3382037101089,34.00648546516812],[-118.3383205369099,34.00640991508833],[-118.3383978890424,34.00636401443339],[-118.33844233139445,34.00633915845653],[-118.33848348501424,34.00631671673068],[-118.33851640826941,34.00629910649513],[-118.33853616491744,34.00628909052311],[-118.33855098172974,34.00628149178783],[-118.33856744695061,34.00627354603007],[-118.33859872898371,34.00625800153413],[-118.33866623827564,34.0062258677442],[-118.33873046332688,34.00619717884474],[-118.33884245719167,34.00615049392339],[-118.33889187082052,34.0061311202432],[-118.33894293734944,34.0061124286887],[-118.3390005921227,34.006091314674],[-118.33904671612096,34.0060743545007],[-118.3391093125266,34.00605116504205],[-118.33916037905556,34.00603247346996],[-118.33922956370546,34.00600686154139],[-118.33929380941795,34.00598332355187],[-118.33956231495809,34.00588433256227],[-118.33974839288435,34.00579999837364],[-118.33980108087239,34.00577408850036],[-118.33982413164259,34.00576303213923],[-118.33983894575994,34.00575474675581],[-118.3398751658322,34.00573644012155],[-118.33989985602777,34.00572263139261],[-118.33992454712165,34.00570916596217],[-118.33995911249717,34.00568983388381],[-118.34002330071748,34.00565255706676],[-118.34012039422663,34.00559320395801],[-118.34039350093764,34.00540901335287],[-118.34050372961288,34.00533451009484],[-118.34054979611896,34.00530346692723],[-118.3406057324151,34.00526552567622],[-118.34063370056315,34.00524655541675],[-118.34066331352648,34.00522654928743],[-118.34067812045733,34.00521654659337],[-118.34071431897002,34.00519308806683],[-118.34075709674383,34.00516480169677],[-118.34082950275238,34.00512028773044],[-118.34091179921218,34.00507334157471],[-118.34097105657989,34.00504088637388],[-118.34100892056912,34.00502120115885],[-118.34104513974307,34.00500289436645],[-118.34112746315232,34.00496316050373],[-118.34122461954358,34.00491960634232],[-118.34132343602145,34.00487879635729],[-118.34142391617922,34.00484107236743],[-118.34144862613775,34.00483241529137],[-118.3414749836065,34.00482306713761],[-118.34149475283098,34.00481648477971],[-118.34152605552535,34.00480609181717],[-118.34160349479444,34.00478217221095],[-118.34165622320664,34.00476690968159],[-118.34173532166403,34.00474538947331],[-118.34184079825145,34.00471967364384],[-118.34194793672214,34.0046970438267],[-118.3420567388727,34.00467750002418],[-118.34214082118329,34.0046645527366],[-118.34224305036096,34.00465155406302],[-118.34235518615957,34.00464058840876],[-118.34240136315843,34.00463702205747],[-118.34242610186303,34.00463523478591],[-118.34245413918138,34.00463343783326],[-118.34249537364954,34.00463125959601],[-118.34253496150579,34.00462977392643],[-118.34260588978569,34.00462751153832],[-118.34278075583886,34.00462667152066],[-118.34488740668976,34.00461826538548],[-118.34533282284866,34.00461664864906],[-118.34562976545742,34.00461545490039],[-118.34587228004141,34.00461682141873],[-118.34588712829473,34.00461712227615],[-118.34602571947846,34.00462084650399],[-118.3461115211645,34.00462472264971],[-118.34619402513516,34.00462929434185],[-118.34631448921475,34.00463753589801],[-118.34642010683764,34.00464616320608],[-118.34645641404649,34.00464949423296],[-118.34650097407784,34.00465383134438],[-118.34656864147324,34.00466085010692],[-118.34658679642514,34.00466285929739],[-118.34663961197394,34.00466888984732],[-118.34675020177194,34.00468299886013],[-118.34684924282865,34.00469679733234],[-118.34688225771198,34.00470185456231],[-118.3468987642553,34.0047042115248],[-118.34694168486126,34.00471095772449],[-118.34704898952027,34.0047285102031],[-118.34717610831952,34.00475047127532],[-118.34735605434565,34.00478121006473],[-118.34763670780335,34.00482951991809],[-118.34807749584191,34.00490484650619],[-118.34842088135082,34.00496362295847],[-118.34868007405638,34.00500821371023],[-118.34880554175213,34.00502949108201],[-118.34889138925224,34.00504435589817],[-118.34907297470379,34.00507199665983],[-118.34910928820081,34.00507670013849],[-118.34917530718768,34.00508406589273],[-118.34922811914323,34.00508906575836],[-118.34931063299535,34.00509569650014],[-118.34938654063684,34.00510062859804],[-118.34948389016587,34.0051044689767],[-118.34955318441024,34.00510564186716],[-118.34962577457341,34.00510611847023],[-118.34972804866685,34.00510410482212],[-118.34988474000522,34.00509643746912],[-118.34999853229721,34.00508717721814],[-118.35014528737022,34.00507026450468],[-118.35024421074763,34.00505589491375],[-118.35032004382897,34.00504296555652],[-118.35044202516308,34.00501959783458],[-118.35051289684912,34.00500393544765],[-118.35057058036844,34.00499037234844],[-118.35066616021638,34.00496536405204],[-118.35069746919896,34.00495668539255],[-118.35072712887469,34.00494835599351],[-118.35079797989947,34.00492754031168],[-118.35085399434901,34.00490951648287],[-118.35091000790024,34.00489114860148],[-118.35092648030761,34.00488526179333],[-118.35094624773544,34.00487833464675],[-118.35096436675471,34.00487175601661],[-118.35101872201594,34.00485133202537],[-118.35110601490534,34.00481741713774],[-118.35115542044933,34.0047970072826],[-118.35121799619371,34.00476969037391],[-118.35133819167703,34.0047140400204],[-118.35140239427041,34.00468156532016],[-118.35149128346607,34.00463493616261],[-118.35165584674128,34.00453793864548],[-118.35180226584438,34.00444133570763],[-118.35190259508522,34.00436925485062],[-118.35192726282293,34.00435063514418],[-118.35196015104378,34.00432546505971],[-118.35200289827489,34.00429099143743],[-118.3520867344471,34.00421998952334],[-118.35215576548511,34.00415899185912],[-118.35220177000744,34.00411454811225],[-118.35223298556527,34.0040838872752],[-118.3523200565708,34.00399741772731],[-118.35236769782355,34.00394987816771],[-118.35241533907634,34.00390233858151],[-118.35251883757348,34.0037996782448],[-118.3528014017478,34.00351856922034],[-118.35364908618587,34.00267661428477],[-118.35391850171936,34.00240893771044],[-118.35399242857568,34.00233590263597],[-118.35408278651686,34.00224770579828],[-118.35415672415296,34.00217741785004],[-118.35423396669096,34.00210849416827],[-118.35429642206108,34.00205369700859],[-118.35436874901787,34.00199268810724],[-118.35443943924417,34.0019344316478],[-118.35450849094346,34.00187927169689],[-118.35459563650916,34.00181169348444],[-118.35464825622526,34.00177169375259],[-118.35467950412242,34.00174927539566],[-118.35473542155391,34.0017089233808],[-118.35479134078204,34.00166891540863],[-118.3549377401222,34.00156990524056],[-118.35514831510628,34.00143292294971],[-118.35527827886999,34.00134838698872],[-118.35538685554343,34.00127765220552],[-118.35545595126015,34.00123313918084],[-118.35553161815315,34.0011817374106],[-118.3556746784554,34.00107380558188],[-118.35575029683939,34.0010114122716],[-118.35583247112834,34.00093903880424],[-118.35591133602375,34.00086426948026],[-118.35594911467302,34.00082603133318],[-118.35601645597998,34.00075679302325],[-118.35607884217984,34.00068619477791],[-118.35617075061319,34.00057532211731],[-118.35622652161929,34.00050096505515],[-118.35630686244673,34.00038566024243],[-118.35637240981805,34.00028276553221],[-118.35640515161356,34.00022393296446],[-118.3564477155883,34.00014721031375],[-118.3565065821889,34.00002510036001],[-118.35653109182311,33.99997006949827],[-118.35655884347719,33.99990129073868],[-118.35657678013845,33.99985212014356],[-118.35659473207107,33.9998067268353],[-118.35661427761504,33.99974793340902],[-118.35662565298149,33.99970771226239],[-118.35663540868546,33.99967436579171],[-118.35665004852967,33.99962589139747],[-118.35667757111334,33.99950352897176],[-118.35668890156403,33.99945266013478],[-118.3566985638432,33.99939733100525],[-118.35671463650026,33.99929801656835],[-118.3567274976802,33.99921932099925],[-118.35673875267238,33.99915059152975],[-118.35690434901019,33.99813888501051],[-118.35691567856254,33.99808801610116],[-118.35693193537423,33.99803198005561],[-118.35694494657281,33.99798831956382],[-118.356961261775,33.99794602269623],[-118.35696942207105,33.99792538925286],[-118.35698738927505,33.99788377455015],[-118.35699720067458,33.99786348070032],[-118.35700866138097,33.99784318088761],[-118.35701847188218,33.99782288628331],[-118.35702993708016,33.9978036172037],[-118.35705285939126,33.99776336236719],[-118.35706597209945,33.99774374472788],[-118.35709220200745,33.99770519610178],[-118.35710531830891,33.9976862658601],[-118.3571184355087,33.99766767894751],[-118.35714796852196,33.99763049542814],[-118.35716273862188,33.99761259070166],[-118.35717094652861,33.99760329239689],[-118.35719392812854,33.9975767760241],[-118.35721199055396,33.99755748752496],[-118.35722677233194,33.99754233019787],[-118.3572612694355,33.99750856730167],[-118.35727934353901,33.99749202620344],[-118.35734178363779,33.99743482347124],[-118.35735492868534,33.99742276283321],[-118.35761781885658,33.997179140409],[-118.35770326031822,33.99710022987493],[-118.35773793888144,33.99710905754492],[-118.35783391758135,33.99718021733459],[-118.35811853979595,33.99738992860524],[-118.35815918317269,33.99763608558075],[-118.35820829317095,33.99793339686159],[-118.35821507814629,33.99797699929071],[-118.35822011859334,33.99799828065812],[-118.35825907942555,33.9982368863143],[-118.3582997084292,33.99847960828092],[-118.35831323436244,33.99855650819878],[-118.3583521655502,33.99878790089487],[-118.35837078852437,33.99889947818463],[-118.3583927361634,33.99901688370822],[-118.35842633315504,33.99915830038043],[-118.35844478005937,33.99922865934339],[-118.35846487537231,33.9992986704529],[-118.35850836012025,33.99943765134954],[-118.35855843760409,33.99957524084286],[-118.3585951140205,33.99966512431281],[-118.35862176793331,33.99972584145861],[-118.35868836094365,33.99986784529385],[-118.3587349556591,33.99996216485528],[-118.35879149741972,34.00006813422631],[-118.35888795761659,34.00025058032903],[-118.35894450656373,34.00035826595209],[-118.3589644635361,34.0003959896988],[-118.35898605005237,34.00042890021719],[-118.3590773700892,34.00056670929042],[-118.35914547496417,34.0006760776052],[-118.35918038439442,34.00073848754587],[-118.35922031720372,34.00081805676519],[-118.35927029497456,34.00093194526127],[-118.35930536430492,34.00103110735277],[-118.35932544883806,34.00109837042178],[-118.35934223565577,34.00116598643811],[-118.35935737406496,34.00123395167724],[-118.35936246841091,34.00126794097897],[-118.35937266159446,34.00133660841258],[-118.35938127194645,34.0014210795942],[-118.35938479963058,34.00147430877283],[-118.35938494785259,34.00150865693529],[-118.3593851832112,34.00156361307264],[-118.35938374321181,34.00161239244225],[-118.35938382855174,34.00163231377977],[-118.35938224122863,34.00164674501721],[-118.35938074014381,34.00168144089523],[-118.3593759386486,34.00171580386839],[-118.35937278735858,34.00175016161455],[-118.35936798586339,34.00178452530458],[-118.35936318257158,34.00181854417485],[-118.35935673176952,34.00185291156082],[-118.35934539503064,34.00190206386923],[-118.35933407266479,34.00195465005309],[-118.35931456574839,34.00202203080116],[-118.35929343916953,34.00209628599476],[-118.35926741228081,34.00218223468617],[-118.3592560081683,34.00221558613006],[-118.35924952143364,34.00224171082287],[-118.35921372267124,34.00235688428006],[-118.35880383578015,34.00371692597268],[-118.35872738825113,34.0039709875019],[-118.35868672241655,34.00410575468185],[-118.35819713070524,34.00573463425597],[-118.35811741510524,34.00599660649117],[-118.35807675196558,34.00613240258794],[-118.35783273809338,34.00693893997886],[-118.35781647768843,34.00699428877008],[-118.35780023435146,34.00705376004768],[-118.35778235608065,34.00711667019154],[-118.35777262732616,34.00715654304553],[-118.35776292462276,34.00720225561427],[-118.35774839796629,34.00727752201329],[-118.35772918120574,34.00741325499875],[-118.35772287952405,34.00748300021638],[-118.35771695423642,34.00764067756021],[-118.35771715006915,34.00768636008156],[-118.3577208385517,34.00777737282214],[-118.35772433120151,34.00782270229709],[-118.35773120241514,34.0078862262224],[-118.35774147465042,34.00797378349301],[-118.3577500661378,34.00805378975532],[-118.35778935754999,34.00836899235316],[-118.35781846116856,34.00861621439795],[-118.35782557852058,34.00873744298146],[-118.35782757008555,34.00881746863011],[-118.35782778568122,34.00886796027333],[-118.3578262217143,34.00888788661099],[-118.35782326715533,34.00896861433077],[-118.35782018144235,34.00901877302206],[-118.35781226009817,34.00909539308744],[-118.35780748016253,34.00913490757698],[-118.35732923716731,34.01002638053059],[-118.35723171327342,34.01018390442447],[-118.35710623716729,34.01036533274282],[-118.35694533274282,34.01052480884895],[-118.35659718937953,34.0109028566367],[-118.35622633274282,34.0112298566367],[-118.35608095221222,34.01132890442447],[-118.355931,34.011461],[-118.355839,34.011587],[-118.355729,34.011761],[-118.355633,34.011941],[-118.355553,34.012126],[-118.35548900000001,34.012315],[-118.355446,34.01248],[-118.355388,34.012822],[-118.355479,34.018237],[-118.35556200000001,34.018316],[-118.35686200000001,34.01832],[-118.35794199999999,34.018324],[-118.358289,34.018322],[-118.35859499999999,34.018306],[-118.358823,34.018281],[-118.359049,34.018247],[-118.359145,34.01823],[-118.359661,34.01812],[-118.359971,34.018071],[-118.36012599999999,34.018054],[-118.36036300000001,34.018035],[-118.360679,34.018027],[-118.36099400000001,34.018037],[-118.36114000000001,34.018048],[-118.361386,34.018076],[-118.36161800000001,34.018113],[-118.36184799999999,34.018159],[-118.362117,34.01822],[-118.362381,34.018271],[-118.36260799999999,34.018303],[-118.36291199999999,34.018331],[-118.363091,34.018339],[-118.36407199999999,34.018344],[-118.365032,34.018347],[-118.366045,34.01835],[-118.365903,34.021009],[-118.36587400000001,34.021562]]],"type":"Polygon"} +},{ + "id": 1108827615, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000465, + "geom:area_square_m":4777367.607589, + "geom:bbox":"-118.29180054,33.8727061283,-118.281193,33.92372", + "geom:latitude":33.898676, + "geom:longitude":-118.286962, + "iso:country":"US", + "lbl:latitude":33.89949, + "lbl:longitude":-118.287032, + "lbl:max_zoom":18.0, + "mps:latitude":33.89949, + "mps:longitude":-118.287032, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":33.89949, + "reversegeo:longitude":-118.287032, + "src:geom":"mz", + "wof:belongsto":[ + 420780757, + 102191575, + 1108692885, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"61c99df5d77a46d7ed688e68c8d37866", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692885, + "microhood_id":1108827615, + "neighbourhood_id":420780757, + "region_id":85688637 + } + ], + "wof:id":1108827615, + "wof:lastmodified":1566624123, + "wof:name":"Harbor Gateway North", + "wof:parent_id":420780757, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865781 + ], + "wof:tags":[] +}, + "bbox": [ + -118.29180053971, + 33.87270612830339, + -118.281193, + 33.92372 +], + "geometry": {"coordinates":[[[-118.281193,33.92372],[-118.281239,33.923295],[-118.28125323250077,33.9232039119951],[-118.28126325830814,33.92320390937341],[-118.28140993882099,33.92320356723033],[-118.28146071249915,33.92310899182454],[-118.28171615024682,33.92310324321794],[-118.28194851476643,33.92309789116941],[-118.28197195001556,33.92320534577799],[-118.28209885411742,33.92320539199339],[-118.28210292168903,33.92294502370118],[-118.28210712670287,33.92272553014161],[-118.28210998873536,33.92259637366173],[-118.28212626531,33.92155661914793],[-118.28212903930761,33.92140170346645],[-118.28213170550735,33.92121449933212],[-118.28213290475827,33.92108122654267],[-118.28213695077031,33.92081433147681],[-118.28214225172881,33.92043099587994],[-118.28214611807779,33.92011051828652],[-118.28214742512651,33.92000918876349],[-118.2821501569033,33.91984156351317],[-118.28215261918551,33.91959390813422],[-118.28215810968851,33.91926690102843],[-118.28216052435999,33.91900516324156],[-118.28216207934376,33.91897733721053],[-118.28216730214882,33.91857064361242],[-118.28217002494245,33.91840061443182],[-118.28217256717471,33.91817665955118],[-118.2821724503937,33.91814196836365],[-118.28217380235822,33.9180540338143],[-118.28217523247615,33.91798945578525],[-118.28217793460851,33.91781290120618],[-118.28217905390937,33.91765592721645],[-118.28218038251767,33.91756112350548],[-118.28218306937869,33.91738010272942],[-118.28218845118555,33.91702080929423],[-118.28219118925054,33.91685524534008],[-118.28219629168134,33.91641283066572],[-118.28219760681493,33.91631390386797],[-118.28219882493045,33.91618647014351],[-118.28220284399303,33.91591167636262],[-118.28220705439676,33.91569389940489],[-118.28221231223614,33.91529785421177],[-118.28221364264107,33.91520339377988],[-118.28222412238718,33.91440065442526],[-118.28222669336552,33.91418528675282],[-118.2822332690334,33.91369134615862],[-118.28223399307549,33.91341690291502],[-118.28223536390465,33.91284534833162],[-118.28223893560617,33.91145939595266],[-118.28224062982881,33.91098367117148],[-118.28224087237396,33.9105663418519],[-118.28224061096422,33.91048871600525],[-118.28224291424459,33.91019400359352],[-118.28224343886073,33.90986048253595],[-118.28224361493051,33.90942357456635],[-118.28224473333306,33.90926625858028],[-118.28224976120369,33.90684505190478],[-118.28225176714174,33.90646206725078],[-118.28225350448348,33.90599939543333],[-118.28225823770671,33.90446917817521],[-118.28225884227291,33.90415935746922],[-118.28226015560983,33.90406008839418],[-118.28225976484269,33.9039439937413],[-118.28226107907795,33.90384506812743],[-118.2822608688722,33.9037825557708],[-118.282267646661,33.90139157209475],[-118.28226880818266,33.90124730795861],[-118.2822689986255,33.90081452228708],[-118.28227006672238,33.90064243708677],[-118.2822748754041,33.89913489044932],[-118.28227646003224,33.89862687919418],[-118.28227572790529,33.89840945847418],[-118.28227989069833,33.89719936795619],[-118.28311595812313,33.89692949234248],[-118.28302086246717,33.89462736843769],[-118.28298501968732,33.89377081290816],[-118.282924033961,33.89229811420531],[-118.28290786967577,33.89190211988744],[-118.2828899339128,33.89146937701393],[-118.28276247734703,33.88836083929904],[-118.28274994495051,33.88806410258299],[-118.28273018201426,33.88757743802509],[-118.28262800943048,33.88512420103796],[-118.2826155210514,33.88484051702979],[-118.28260298865487,33.88454343546488],[-118.28259575272526,33.8843517914739],[-118.28258674711455,33.88412374170804],[-118.2823967570252,33.87956037280392],[-118.28236620981399,33.87880513260205],[-118.28234652592946,33.87834045144418],[-118.28230346608463,33.87729328371888],[-118.28228019073563,33.87674033599349],[-118.28226768978013,33.87645184266756],[-118.28215469609043,33.87371182828765],[-118.28215468890392,33.87370976752469],[-118.28185812448591,33.87270612830339],[-118.28715042591311,33.87274069030036],[-118.29075933929508,33.8727639802408],[-118.29091252450893,33.87276498415603],[-118.29091255056007,33.87277254037011],[-118.29091425825743,33.87279005368934],[-118.29091604859977,33.87283126714485],[-118.29093897540245,33.87326777412324],[-118.29094604783869,33.87340720924877],[-118.29096195430742,33.87371905028051],[-118.29096901057397,33.87385367697598],[-118.29097079193319,33.87389248607253],[-118.29097255442778,33.87392579905185],[-118.29097428907458,33.87395086973591],[-118.29099237575453,33.87441624082741],[-118.29100136699221,33.87463398449398],[-118.29101578135925,33.87499048143633],[-118.29102645334483,33.87521783887055],[-118.29103183515167,33.87534457084766],[-118.29103375844473,33.87542425286376],[-118.29104089196639,33.87558120541682],[-118.29105524884125,33.87592087263238],[-118.29108405511747,33.87662699648939],[-118.29109668453204,33.87694365415841],[-118.29118307461461,33.87905275359039],[-118.29119203980113,33.87926259791009],[-118.29123155669051,33.88020569770566],[-118.29124422563095,33.8805333468684],[-118.29125129537225,33.88067175138551],[-118.29126035488189,33.88090873139453],[-118.29127108435962,33.88115223182406],[-118.29127654342162,33.88130094569382],[-118.29127834095048,33.88134422009256],[-118.29128012500462,33.88138371562505],[-118.29128021483618,33.88140947619762],[-118.29128190366892,33.88142149436494],[-118.29128198721224,33.88144553740644],[-118.29128380719901,33.88149533725897],[-118.29128554813401,33.881522124729],[-118.29128558945651,33.88153414660933],[-118.29128915756483,33.88161279517021],[-118.29129088322848,33.88163546071458],[-118.29129094790719,33.88165400809395],[-118.2913069244445,33.88198508372986],[-118.29131750390361,33.88218530713753],[-118.29132470839218,33.88236252466047],[-118.29132638105526,33.882369733989],[-118.29132643944577,33.88238656445373],[-118.29132823697464,33.88242983830188],[-118.2913282648224,33.88243773820425],[-118.29132993119727,33.88244323002683],[-118.29132997072314,33.88245456492677],[-118.29133002282541,33.88246967787578],[-118.29133172513288,33.88248547319785],[-118.29133178711665,33.88250333428793],[-118.29133720844938,33.88264140076131],[-118.29134975342232,33.88293298373491],[-118.29135870513413,33.88313870713655],[-118.29136050266301,33.88318198134895],[-118.29136233253125,33.88323452905677],[-118.29136949120574,33.88339835133598],[-118.29137138305774,33.88346876129007],[-118.29137489816544,33.88353229605538],[-118.29137679091572,33.88360270440739],[-118.29138206222983,33.8836974921897],[-118.29138565279602,33.88378266634593],[-118.29139112084115,33.88393412820601],[-118.29140371252649,33.88423910715375],[-118.2914073102792,33.88432634351308],[-118.29143252509091,33.88494523227766],[-118.29143434417936,33.88499468928249],[-118.29144508443689,33.88524093878712],[-118.29144855912041,33.88529279541613],[-118.29146294384306,33.88563967478807],[-118.29146829959879,33.88575850660781],[-118.2915097361879,33.88677854152655],[-118.29151516919872,33.88691969808605],[-118.291518805579,33.88701792520115],[-118.29152422960668,33.88715667789283],[-118.29152778424026,33.88723120412664],[-118.29153133528058,33.88730504348379],[-118.29153322264099,33.88737407808316],[-118.29153853168431,33.88747951431748],[-118.29153863588888,33.88750939689191],[-118.29154043341778,33.88755267112448],[-118.29154215369157,33.88757361918602],[-118.29154222465847,33.88759388416182],[-118.2915457424611,33.88765810639233],[-118.29154754268495,33.88770206735784],[-118.29155291640699,33.88782604997004],[-118.29155295054296,33.88783601128608],[-118.29155301611998,33.88785490258528],[-118.29155474358026,33.8878779109934],[-118.2915565393125,33.88792049897817],[-118.2915584078083,33.8879840386311],[-118.29156385429387,33.88812897323291],[-118.29156731640097,33.88817705254584],[-118.29157821386367,33.88846829743462],[-118.29158182149787,33.88855827965802],[-118.29158720330473,33.88868466743733],[-118.2916015538914,33.88902124298342],[-118.29160518218683,33.88911706500782],[-118.29160692132523,33.88914350855069],[-118.29161056040043,33.88924242213811],[-118.2916286551652,33.8897081371219],[-118.29163228885054,33.88980567721751],[-118.29164861752746,33.89023739201156],[-118.29165232487462,33.8903558833544],[-118.29167574036082,33.89093012556504],[-118.29167947286082,33.89105582975986],[-118.29171014853115,33.89182274705882],[-118.29171377323333,33.89191753838433],[-118.29171565610216,33.8919852001772],[-118.29172105677364,33.89211673926749],[-118.29172109809615,33.89212876114622],[-118.29172290370987,33.89217409633512],[-118.29172644307211,33.89224450053747],[-118.29172820466837,33.89227712703732],[-118.29173014323274,33.89236093176227],[-118.29173553761603,33.89249075446718],[-118.29174627787357,33.89273631644402],[-118.29175169381639,33.89287232171528],[-118.29177511828576,33.89344896817425],[-118.29178235511368,33.89363477327761],[-118.29180053971,33.89412556184431],[-118.29176974546206,33.8942719594403],[-118.29170813720323,33.89455891386711],[-118.29170166663823,33.89459327761508],[-118.29170171514727,33.89462522093778],[-118.29170047367553,33.89472380380656],[-118.29170071172908,33.89479215534393],[-118.29169823327722,33.89550041739184],[-118.29169846414425,33.89556670807174],[-118.29169787664607,33.89587137699683],[-118.29169827010814,33.89598438074678],[-118.29169681753233,33.89604037216996],[-118.29169699180548,33.89609051992178],[-118.29169533531213,33.89656143490824],[-118.29169569733318,33.89666550868267],[-118.29169456365928,33.89681320753517],[-118.29169150489574,33.8973545393925],[-118.29169135308047,33.89778423408574],[-118.29169034067912,33.89796696818495],[-118.2916904556635,33.89799994219612],[-118.29169054549502,33.89802570297042],[-118.29168886115386,33.8984887185481],[-118.29168931300646,33.89861855205682],[-118.29168787929528,33.89868003849266],[-118.29168695133558,33.89888681625409],[-118.29168738432355,33.8990111554186],[-118.29168769514064,33.89910045918879],[-118.29168636293907,33.89919114151645],[-118.29168641414304,33.89920591149767],[-118.29168468398778,33.89965553164618],[-118.29168476393785,33.89967854432705],[-118.29168427166108,33.90001069004901],[-118.29168448815506,33.90007285920733],[-118.2916820564156,33.90079451768653],[-118.29168251365809,33.90092572630722],[-118.29168112486262,33.90100026511478],[-118.29167945579285,33.90194106227381],[-118.29167828618633,33.90207845681941],[-118.29167734565023,33.90275511548195],[-118.29167749656719,33.90279839390849],[-118.2916750154204,33.90350596913314],[-118.29167380179643,33.90363065571247],[-118.29167429766649,33.90377319949133],[-118.29167444858345,33.90381647740107],[-118.29167140688789,33.9043629621974],[-118.29167190545289,33.90450619142489],[-118.29166922757503,33.90515709457389],[-118.29166943598416,33.90521720295994],[-118.29166982225972,33.90532814550834],[-118.29166852329585,33.90542844496909],[-118.29166858977118,33.90544733609925],[-118.29166872092522,33.90548511909266],[-118.29166812174891,33.90578635281535],[-118.29166690902326,33.90591138274537],[-118.29166711114421,33.90596943061583],[-118.29166742645286,33.90606010861993],[-118.29166763216708,33.90611918675202],[-118.29166606640354,33.90661620712978],[-118.29166457879343,33.90666223692888],[-118.29166335349139,33.90725714779585],[-118.29166380264901,33.90738629621318],[-118.29166255758403,33.90750205217311],[-118.29166286390954,33.90758998195422],[-118.29166151284338,33.90814882824154],[-118.29166027855814,33.90826767566767],[-118.29166038725431,33.9082989324439],[-118.29165917183373,33.90842327502929],[-118.29165939012434,33.90848578771057],[-118.29165760696849,33.90892063833822],[-118.29165807588906,33.9090552817996],[-118.29165689909604,33.90919061615675],[-118.29165706618269,33.90923870297931],[-118.29165762134154,33.90939807668052],[-118.29165625410569,33.90947879746929],[-118.29165676255214,33.90962477655678],[-118.29165550491074,33.90973709706797],[-118.29165566570917,33.90978312294517],[-118.29165454012011,33.90993322650607],[-118.29165519768689,33.91012214031],[-118.29165524889088,33.91013690914308],[-118.29165536028196,33.91016885260677],[-118.29165375409424,33.91018087865013],[-118.29165390231626,33.91022346966189],[-118.29165397957136,33.91024579584551],[-118.29165418977715,33.91030624731127],[-118.29165488686984,33.9105064959335],[-118.29165376667066,33.91065797295844],[-118.29165255394504,33.9107830024525],[-118.29165310910388,33.91094272067704],[-118.29165193500579,33.91107874163947],[-118.29165097291011,33.91127590127284],[-118.29165145440713,33.9114143237461],[-118.29165045278557,33.91159980491544],[-118.29164962813215,33.91183646564861],[-118.29164997218689,33.91193538720696],[-118.29164883761467,33.91208274276604],[-118.29164890498834,33.91210232126982],[-118.29164904422721,33.91214216412993],[-118.29164913136381,33.91216723849272],[-118.29164808123322,33.91233898135309],[-118.29164858518809,33.91248392898348],[-118.29164624148353,33.91275734569442],[-118.29164667357318,33.91288168475766],[-118.29164559828978,33.91304621422497],[-118.2916458049023,33.91310563566256],[-118.29164482573864,33.91329764444544],[-118.29164515991194,33.91339381790214],[-118.29164440083552,33.91364902600296],[-118.29164337406115,33.91382763856625],[-118.2916436884715,33.91391797273958],[-118.2916423490834,33.91400659368065],[-118.29164242274523,33.91402788935153],[-118.29164271020616,33.91411032485378],[-118.29164276859663,33.91412715501873],[-118.29164282249556,33.91414261198965],[-118.29164287280121,33.91415703794657],[-118.29164156305751,33.91425424591632],[-118.29164210204669,33.91440915371953],[-118.29164233471036,33.91447613194532],[-118.29164097016944,33.91455754122602],[-118.29164108066222,33.91458914085516],[-118.29164133039387,33.91466092806014],[-118.29164153071817,33.91471863226774],[-118.29164001705692,33.91475710519672],[-118.29164017516041,33.91480244400937],[-118.29164019133007,33.91480725312174],[-118.29164057491072,33.91491750927207],[-118.29163945920313,33.91507036132417],[-118.29163973678256,33.91515004797795],[-118.29163868665196,33.91532179079109],[-118.29163894806173,33.91539701254182],[-118.29163760867362,33.91548563418122],[-118.29163620999677,33.91555742510386],[-118.29163342971094,33.91570547141961],[-118.29163197264356,33.91576043231793],[-118.2916305533054,33.91582604004537],[-118.2916305883397,33.91583600107238],[-118.29163072039205,33.91587412759706],[-118.29162649381865,33.91608022627485],[-118.29162497386918,33.91611698251315],[-118.29162360573498,33.91619735998533],[-118.29161834430238,33.91657966724744],[-118.29161868386555,33.91667721462292],[-118.29161876381563,33.91670022718164],[-118.29161736154546,33.91677098908328],[-118.29161758792091,33.91683590573169],[-118.29161797150152,33.91694616223914],[-118.29161685669227,33.91709935729273],[-118.29161578949369,33.91726629167672],[-118.29161595658036,33.91731437841557],[-118.29161369013089,33.91761012028304],[-118.2916141536616,33.91774339104747],[-118.2916127504931,33.9178138076818],[-118.2916129741736,33.91787803771589],[-118.2916124387777,33.91819781999831],[-118.29161113981378,33.91829811922364],[-118.29161149285171,33.91839944556342],[-118.29161160154786,33.91843070160566],[-118.29161072838539,33.91865327971868],[-118.29160958572835,33.91879857516974],[-118.29160861195459,33.91899229981602],[-118.29160656199912,33.91935055548063],[-118.2916055981068,33.919547029552],[-118.29160468182523,33.91975724162887],[-118.29160512828791,33.91988570244585],[-118.29160407905566,33.92005778979699],[-118.29160422727769,33.92010038034523],[-118.29160208030416,33.9204304710944],[-118.29160254113989,33.92056305388554],[-118.29160276032884,33.92062591025172],[-118.2916007067801,33.92098313557309],[-118.29159940062965,33.92108137413747],[-118.2915994446471,33.92109408219858],[-118.29159956052979,33.92112739985138],[-118.29159978421029,33.92119163036928],[-118.29159883918258,33.92186725993892],[-118.29159765789801,33.92200122026713],[-118.29159787259536,33.9220630461476],[-118.29159557560317,33.92282386210972],[-118.29159605620185,33.92296194007979],[-118.29159407451834,33.92333977435491],[-118.29152396689605,33.92367566003093],[-118.281193,33.92372]]],"type":"Polygon"} +},{ + "id": 1108827619, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":150471.805185, + "geom:bbox":"-118.236347638,33.9289190888,-118.230250271,33.9324552045", + "geom:latitude":33.930679, + "geom:longitude":-118.232932, + "iso:country":"US", + "lbl:latitude":33.931145, + "lbl:longitude":-118.232753, + "lbl:max_zoom":18.0, + "mps:latitude":33.930734, + "mps:longitude":-118.232264, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Imperial Cts" + ], + "reversegeo:latitude":33.930734, + "reversegeo:longitude":-118.232264, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85854791, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"66d57201ed83bd3677db8f56b59a9685", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1108827619, + "neighbourhood_id":85854791, + "region_id":85688637 + } + ], + "wof:id":1108827619, + "wof:lastmodified":1566624122, + "wof:name":"Imperial Courts", + "wof:parent_id":85854791, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867333 + ], + "wof:tags":[] +}, + "bbox": [ + -118.2363476383673, + 33.9289190887701, + -118.23025027073935, + 33.93245520448072 +], + "geometry": {"coordinates":[[[-118.23355580479932,33.929077487872],[-118.23354621333807,33.9298839268799],[-118.23510940166327,33.92989811736666],[-118.23634421782393,33.92990379356071],[-118.23634763836731,33.93070980927416],[-118.23632711510697,33.93149027496683],[-118.23354621333804,33.93149595105533],[-118.2335462133381,33.9321146423713],[-118.2335462133381,33.93245520448072],[-118.23163070904462,33.93245236646877],[-118.2306202046414,33.93243926628474],[-118.23062581324054,33.93242050144305],[-118.2307760690482,33.93191735809665],[-118.23084303485936,33.93169431004664],[-118.23077457964145,33.93137637841733],[-118.2307395013279,33.93120779615782],[-118.23069775032846,33.93101003196155],[-118.23060592184517,33.93058326030864],[-118.23059257198172,33.93052386447624],[-118.23057086958278,33.93042360945837],[-118.23053245672294,33.93024095090452],[-118.23039054356927,33.92958173932458],[-118.23025027073935,33.9289190887701],[-118.23291744337806,33.92904689327266],[-118.23355580479932,33.929077487872]]],"type":"Polygon"} +},{ + "id": 1108827623, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":206319.048212, + "geom:bbox":"-118.236773749,33.9431425501,-118.230509603,33.948220841", + "geom:latitude":33.94586, + "geom:longitude":-118.234258, + "iso:country":"US", + "lbl:latitude":33.946286, + "lbl:longitude":-118.236594, + "lbl:max_zoom":18.0, + "mps:latitude":33.944952, + "mps:longitude":-118.234258, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":33.944952, + "reversegeo:longitude":-118.234258, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85854791, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"33f0504a62f5d4d4a475e9b5763bbaf9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1108827623, + "neighbourhood_id":85854791, + "region_id":85688637 + } + ], + "wof:id":1108827623, + "wof:lastmodified":1566624122, + "wof:name":"Jordan Downs", + "wof:parent_id":85854791, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867337 + ], + "wof:tags":[] +}, + "bbox": [ + -118.2367737487082, + 33.94314255013186, + -118.23050960268377, + 33.94822084096077 +], + "geometry": {"coordinates":[[[-118.23284436127211,33.94602080777985],[-118.23280824233319,33.94440878514147],[-118.23180564260818,33.94440257815305],[-118.23179067843319,33.94314255013186],[-118.23491819100819,33.9431611713714],[-118.2349256730957,33.94393084570868],[-118.2367737487082,33.94394325975386],[-118.23676626662069,33.94818255030511],[-118.23394001812387,33.94818058425474],[-118.23051434399184,33.94822084096077],[-118.23050960268377,33.94709697927647],[-118.23492271306094,33.94705136776966],[-118.23491326907234,33.94603502599323],[-118.23438407243681,33.9460312462884],[-118.23414337873787,33.94602965302951],[-118.23300750307857,33.94602189166733],[-118.23284436127211,33.94602080777985]]],"type":"Polygon"} +},{ + "id": 1108827631, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000013, + "geom:area_square_m":131551.47964, + "geom:bbox":"-118.243373565,33.9929667231,-118.238933683,33.9966457727", + "geom:latitude":33.99482, + "geom:longitude":-118.241524, + "iso:country":"US", + "lbl:latitude":33.994309, + "lbl:longitude":-118.241789, + "lbl:max_zoom":18.0, + "mps:latitude":33.994309, + "mps:longitude":-118.241789, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":33.994309, + "reversegeo:longitude":-118.241789, + "src:geom":"mz", + "wof:belongsto":[ + 85865791, + 102191575, + 1108692435, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"419ef218d2528a5d307d964217e0bd5f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692435, + "microhood_id":1108827631, + "neighbourhood_id":85865791, + "region_id":85688637 + } + ], + "wof:id":1108827631, + "wof:lastmodified":1566624121, + "wof:name":"Pueblo del Rio Public Housing", + "wof:parent_id":85865791, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551249 + ], + "wof:tags":[] +}, + "bbox": [ + -118.24337356513139, + 33.99296672307665, + -118.2389336825578, + 33.99664577265641 +], + "geometry": {"coordinates":[[[-118.24016214679929,33.99296672307665],[-118.24137368338391,33.99298276287512],[-118.24217653796694,33.99299412439741],[-118.24297455607658,33.99300615424305],[-118.24337356513139,33.99301216916586],[-118.2433711468947,33.99333630415413],[-118.24336631042129,33.99398457413069],[-118.2433622800268,33.99459608239457],[-118.24335905571121,33.99517082894577],[-118.24335744355341,33.99575359116391],[-118.24335744355344,33.99634436904901],[-118.24335744355344,33.99663975799155],[-118.24275288437946,33.99664176287984],[-118.24154376603153,33.99664577265641],[-118.2405071485679,33.99664577265641],[-118.23964303198858,33.99664176287984],[-118.23914165091365,33.99663842139925],[-118.23900300534308,33.99663574821465],[-118.2389336825578,33.99663441162235],[-118.2389336825578,33.99651745947065],[-118.2389336825578,33.99628355516723],[-118.2389336825578,33.99616660301552],[-118.23948101012996,33.99616927621476],[-118.24057566527428,33.99617462261322],[-118.24112299284644,33.99617729581245],[-118.24112379892534,33.99599217597063],[-118.24112541108313,33.99562193628699],[-118.24112621716203,33.99543681644516],[-118.24065627316415,33.99543748475075],[-118.23971638516835,33.9954388213619],[-118.23924644117047,33.99543948966748],[-118.23924644117047,33.99528711545109],[-118.23924644117048,33.99498236701832],[-118.23924724724938,33.99481796321197],[-118.23924885940716,33.99479390403206],[-118.23925530803835,33.99476984484534],[-118.23926659314293,33.9947457856518],[-118.23928029648421,33.99472373138586],[-118.2392964180622,33.9947036820475],[-118.23931979435025,33.99468363270442],[-118.23935042534838,33.99466358335659],[-118.23938105634653,33.99464687556411],[-118.23941168734468,33.99463350932697],[-118.23944151226394,33.99462482127243],[-118.23947053110429,33.99462081140047],[-118.23948504052446,33.99461880646449],[-118.23948423444556,33.99443769313356],[-118.23948262228777,33.99407546647168],[-118.23948181620887,33.99389435314075],[-118.23956161801982,33.99389702641148],[-118.23972122164174,33.99390237295293],[-118.23982036934626,33.9939063828589],[-118.23985906113342,33.99390905612936],[-118.23989130428936,33.99390838781171],[-118.23991709881412,33.99390437790594],[-118.23994289333888,33.99389301650375],[-118.23996868786362,33.99387430360514],[-118.24000899180855,33.9938495758373],[-118.24006380517366,33.99381883320026],[-118.24008178208159,33.99380355596677],[-118.2400960483296,33.99379143214643],[-118.24010572127638,33.99376737267583],[-118.24012426109105,33.99355685132448],[-118.24016214679929,33.99296672307665]]],"type":"Polygon"} +},{ + "id": 1108827633, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":495158.94003, + "geom:bbox":"-118.361546051,34.1576585772,-118.351839771,34.1649134214", + "geom:latitude":34.160634, + "geom:longitude":-118.357777, + "iso:country":"US", + "lbl:latitude":34.157819, + "lbl:longitude":-118.348828, + "lbl:max_zoom":18.0, + "mps:latitude":34.16016, + "mps:longitude":-118.35914, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":34.16016, + "reversegeo:longitude":-118.35914, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85852321, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"4a3bdaf16bd462195730c7a4a4bd5e25", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1108827633, + "neighbourhood_id":85852321, + "region_id":85688637 + } + ], + "wof:id":1108827633, + "wof:lastmodified":1566624121, + "wof:name":"Toluca Woods", + "wof:parent_id":85852321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85886615 + ], + "wof:tags":[] +}, + "bbox": [ + -118.36154605061662, + 34.15765857718626, + -118.35183977148095, + 34.16491342135124 +], + "geometry": {"coordinates":[[[-118.35183977148095,34.15831517017607],[-118.35254631094556,34.15804772207455],[-118.35315489466568,34.15783025897569],[-118.35357848276632,34.1577034945654],[-118.35373884111844,34.15767251867064],[-118.35390179286765,34.15765857718626],[-118.36152582900739,34.15766434334005],[-118.36152795531964,34.1581558655843],[-118.36153018673483,34.1594356879944],[-118.36153335688945,34.16016833428245],[-118.36153377909766,34.16026588290398],[-118.36153405218548,34.16032908369417],[-118.36153515441835,34.1613478606141],[-118.36153809460427,34.16202726609975],[-118.36153970348697,34.16239925731394],[-118.36154209659885,34.16333421908092],[-118.36154468554351,34.16431452032647],[-118.36154581472582,34.16457556607291],[-118.36154605061662,34.16491342135124],[-118.35717015601116,34.1648444660885],[-118.35716323269529,34.16129146791202],[-118.35649219566962,34.16129207446116],[-118.35584264454893,34.16129261336823],[-118.35520796773268,34.1612931054461],[-118.35488567107338,34.16129336486482],[-118.35442784468883,34.16129367705926],[-118.35390390499433,34.16129383761635],[-118.35366259594943,34.16129385694272],[-118.35356673223389,34.16129379376049],[-118.35346260581436,34.16129375510786],[-118.35311551744982,34.16129408216869],[-118.35309882405689,34.16125497311834],[-118.35301534900744,34.16105736933583],[-118.35291352407168,34.16081963079526],[-118.35279334385969,34.16054072765009],[-118.35274826819538,34.16043403493016],[-118.35261139728541,34.16011602316335],[-118.35241442009979,34.15965392162023],[-118.35235768250645,34.1595249358905],[-118.35232929933674,34.15945735178811],[-118.35226086028851,34.15929714335318],[-118.35218741133593,34.15912458477852],[-118.35214903081544,34.15903745051806],[-118.35208726445312,34.15889164872691],[-118.35201381909381,34.15871977691559],[-118.35197876952635,34.15863881496141],[-118.35194872716832,34.15856917554685],[-118.35192202115321,34.15850708250949],[-118.35188029350998,34.1584099971903],[-118.35183977148095,34.15831517017607]]],"type":"Polygon"} +},{ + "id": 1108828497, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":0.0, + "geom:bbox":"-71.1189915677,42.3735282398,-71.1189915677,42.3735282398", + "geom:latitude":42.373528, + "geom:longitude":-71.118992, + "iso:country":"US", + "lbl:latitude":42.373528, + "lbl:longitude":-71.118992, + "lbl:max_zoom":18.0, + "mps:latitude":42.373528, + "mps:longitude":-71.118992, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":12.0, + "name:ceb_x_preferred":[ + "Harvard Square" + ], + "name:deu_x_preferred":[ + "Harvard Square" + ], + "name:eng_x_preferred":[ + "Harvard Square" + ], + "name:eng_x_variant":[ + "Harvard Sq", + "Harvardsquare" + ], + "name:fra_x_preferred":[ + "Harvard Square" + ], + "name:ind_x_preferred":[ + "Lapangan Harvard" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30fc\u30d0\u30fc\u30c9\u30fb\u30b9\u30af\u30a8\u30a2" + ], + "name:lat_x_preferred":[ + "Quadratum Harvardianum" + ], + "name:nld_x_preferred":[ + "Harvard Square" + ], + "name:nld_x_variant":[ + "Harbor Gateway North" + ], + "name:zho_x_preferred":[ + "\u54c8\u4f5b\u5e7f\u573a" + ], + "reversegeo:latitude":42.373528, + "reversegeo:longitude":-71.118992, + "src:geom":"mz", + "wof:belongsto":[ + 85876611, + 102191575, + 404476475, + 85633793, + 85950329, + 102084643, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1587858" + }, + "wof:country":"US", + "wof:geomhash":"8961f40095f67696db5f01dbc5ac089e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084643, + "localadmin_id":404476475, + "locality_id":85950329, + "microhood_id":1108828497, + "neighbourhood_id":85876611, + "region_id":85688645 + } + ], + "wof:id":1108828497, + "wof:lastmodified":1613672353, + "wof:name":"Harvard Square", + "wof:parent_id":85876611, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865509 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11899156766793, + 42.37352823982862, + -71.11899156766793, + 42.37352823982862 +], + "geometry": {"coordinates":[-71.11899156766793,42.37352823982862],"type":"Point"} +},{ + "id": 1108797013, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00004, + "geom:area_square_m":379762.09172, + "geom:bbox":"-76.540876,39.245402,-76.532467,39.267328", + "geom:latitude":39.255523, + "geom:longitude":-76.537783, + "iso:country":"US", + "lbl:latitude":39.250319, + "lbl:longitude":-76.538757, + "lbl:max_zoom":18.0, + "mps:latitude":39.250319, + "mps:longitude":-76.538757, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "reversegeo:latitude":39.250319, + "reversegeo:longitude":-76.538757, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 102191575, + 85633793, + 102081589, + 85949461, + 1108797011, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"67f162268ff71e9906a9c17db4a5fa82", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797013, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797013, + "wof:lastmodified":1613773789, + "wof:name":"Colgate Creek", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.540876, + 39.245402, + -76.532467, + 39.267328 +], + "geometry": {"coordinates":[[[-76.53890699999999,39.253082],[-76.538905,39.253082],[-76.538904,39.253082],[-76.538903,39.253082],[-76.538901,39.253082],[-76.5389,39.253082],[-76.538899,39.253082],[-76.53889700000001,39.253082],[-76.53889599999999,39.253082],[-76.538895,39.253082],[-76.538893,39.253082],[-76.538892,39.253082],[-76.53889100000001,39.253082],[-76.538889,39.253083],[-76.538888,39.253083],[-76.538887,39.253083],[-76.53888499999999,39.253084],[-76.538884,39.253084],[-76.538883,39.253084],[-76.538882,39.253085],[-76.53888000000001,39.253085],[-76.53887899999999,39.253086],[-76.538878,39.253086],[-76.538877,39.253087],[-76.538876,39.253088],[-76.538875,39.253088],[-76.53887400000001,39.253089],[-76.538873,39.253089],[-76.538872,39.25309],[-76.538871,39.253091],[-76.53887,39.253092],[-76.53886900000001,39.253093],[-76.53886799999999,39.253093],[-76.538867,39.253094],[-76.538866,39.253095],[-76.538866,39.253096],[-76.538865,39.253097],[-76.538864,39.253098],[-76.538864,39.253099],[-76.53886300000001,39.2531],[-76.53886300000001,39.253101],[-76.53886199999999,39.253102],[-76.53886199999999,39.253103],[-76.538861,39.253104],[-76.538861,39.253105],[-76.538861,39.253106],[-76.53886,39.253107],[-76.53886,39.253108],[-76.53886,39.253109],[-76.53886,39.25311],[-76.53886,39.253111],[-76.53886,39.253112],[-76.53886,39.253113],[-76.53886,39.253114],[-76.53886,39.253115],[-76.53886,39.253116],[-76.53886,39.253117],[-76.53886,39.253118],[-76.538861,39.253119],[-76.538861,39.25312],[-76.53886199999999,39.253121],[-76.53886199999999,39.253122],[-76.53886199999999,39.253123],[-76.53886300000001,39.253124],[-76.53886300000001,39.253125],[-76.538864,39.253126],[-76.538865,39.253127],[-76.538865,39.253128],[-76.538866,39.253129],[-76.538867,39.25313],[-76.53886799999999,39.25313],[-76.53886900000001,39.253131],[-76.53886900000001,39.253132],[-76.53887,39.253133],[-76.538871,39.253134],[-76.538872,39.253134],[-76.538873,39.253135],[-76.53887400000001,39.253136],[-76.538875,39.253137],[-76.538873,39.253137],[-76.538871,39.253138],[-76.53886900000001,39.253138],[-76.538867,39.253138],[-76.538865,39.253139],[-76.53886300000001,39.253139],[-76.538861,39.25314],[-76.538859,39.25314],[-76.53885699999999,39.253141],[-76.538856,39.253141],[-76.538854,39.253142],[-76.53885200000001,39.253142],[-76.53885,39.253143],[-76.538848,39.253143],[-76.53884600000001,39.253144],[-76.53884499999999,39.253145],[-76.538843,39.253145],[-76.53884100000001,39.253146],[-76.538839,39.253147],[-76.538838,39.253147],[-76.538836,39.253148],[-76.53883399999999,39.253149],[-76.538833,39.25315],[-76.538831,39.253151],[-76.53882900000001,39.253152],[-76.538828,39.253152],[-76.538826,39.253153],[-76.538825,39.253154],[-76.53882299999999,39.253155],[-76.538821,39.253156],[-76.53882,39.253157],[-76.53881800000001,39.253158],[-76.53881699999999,39.253159],[-76.538816,39.25316],[-76.538814,39.253161],[-76.538813,39.253162],[-76.538811,39.253163],[-76.53881,39.253165],[-76.538809,39.253166],[-76.53880700000001,39.253167],[-76.53880599999999,39.253168],[-76.538805,39.253169],[-76.538804,39.25317],[-76.538803,39.253172],[-76.53880100000001,39.253173],[-76.53879999999999,39.253174],[-76.538799,39.253175],[-76.538798,39.253177],[-76.538797,39.253178],[-76.538796,39.253179],[-76.53879499999999,39.253181],[-76.538794,39.253182],[-76.538793,39.253183],[-76.538792,39.253185],[-76.538791,39.253186],[-76.538791,39.253188],[-76.53879000000001,39.253189],[-76.53878899999999,39.25319],[-76.538788,39.253192],[-76.538788,39.253193],[-76.538787,39.253195],[-76.538786,39.253196],[-76.538786,39.253198],[-76.538785,39.253199],[-76.538785,39.2532],[-76.53878400000001,39.253202],[-76.53878400000001,39.253203],[-76.538783,39.253205],[-76.538783,39.253206],[-76.538782,39.253208],[-76.538782,39.253209],[-76.538782,39.253211],[-76.538781,39.253212],[-76.538781,39.253214],[-76.538781,39.253215],[-76.538781,39.253217],[-76.538781,39.253219],[-76.538781,39.25322],[-76.538781,39.253222],[-76.53878,39.253223],[-76.53878,39.253225],[-76.538781,39.253226],[-76.538781,39.253228],[-76.538781,39.253229],[-76.538781,39.253231],[-76.538781,39.253232],[-76.538781,39.253234],[-76.538781,39.253235],[-76.538782,39.253237],[-76.538782,39.253238],[-76.538782,39.25324],[-76.538783,39.253241],[-76.538783,39.253243],[-76.53878400000001,39.253244],[-76.53878400000001,39.253246],[-76.538785,39.253247],[-76.538785,39.253249],[-76.538786,39.25325],[-76.538786,39.253252],[-76.538787,39.253253],[-76.538788,39.253255],[-76.538788,39.253256],[-76.53878899999999,39.253258],[-76.53879000000001,39.253259],[-76.538791,39.25326],[-76.538791,39.253262],[-76.538792,39.253263],[-76.538793,39.253264],[-76.538794,39.253266],[-76.53879499999999,39.253267],[-76.538796,39.253268],[-76.538797,39.25327],[-76.538798,39.253271],[-76.538799,39.253272],[-76.53879999999999,39.253274],[-76.53880100000001,39.253275],[-76.538803,39.253276],[-76.538804,39.253277],[-76.538805,39.253279],[-76.53880599999999,39.25328],[-76.538808,39.253281],[-76.538809,39.253282],[-76.53881,39.253283],[-76.538811,39.253284],[-76.538813,39.253285],[-76.538814,39.253287],[-76.538816,39.253288],[-76.53881699999999,39.253289],[-76.538819,39.25329],[-76.53882,39.253291],[-76.538822,39.253292],[-76.53882299999999,39.253293],[-76.538825,39.253294],[-76.538826,39.253294],[-76.538828,39.253295],[-76.53882900000001,39.253296],[-76.538831,39.253297],[-76.538833,39.253298],[-76.53883399999999,39.253299],[-76.538836,39.2533],[-76.538838,39.2533],[-76.538839,39.253301],[-76.53884100000001,39.253302],[-76.538843,39.253303],[-76.53884499999999,39.253303],[-76.538847,39.253304],[-76.538848,39.253304],[-76.53885,39.253305],[-76.53885200000001,39.253306],[-76.538854,39.253306],[-76.538856,39.253307],[-76.53885699999999,39.253307],[-76.538859,39.253308],[-76.538861,39.253308],[-76.53886300000001,39.253309],[-76.538865,39.253309],[-76.538867,39.253309],[-76.53886900000001,39.25331],[-76.538871,39.25331],[-76.538873,39.25331],[-76.538875,39.253311],[-76.538865,39.253342],[-76.53886,39.253341],[-76.538856,39.253341],[-76.538853,39.25334],[-76.538849,39.25334],[-76.53884600000001,39.253339],[-76.538842,39.253338],[-76.538839,39.253338],[-76.53883500000001,39.253337],[-76.538832,39.253337],[-76.538828,39.253336],[-76.538825,39.253336],[-76.538822,39.253335],[-76.53881800000001,39.253334],[-76.538815,39.253334],[-76.538811,39.253333],[-76.538808,39.253333],[-76.538804,39.253332],[-76.53880100000001,39.253332],[-76.538797,39.253331],[-76.538794,39.25333],[-76.53879000000001,39.25333],[-76.538787,39.253329],[-76.53878400000001,39.253329],[-76.53878,39.253328],[-76.538777,39.253328],[-76.53877300000001,39.253327],[-76.53877,39.253326],[-76.538766,39.253326],[-76.538763,39.253325],[-76.538759,39.253325],[-76.53875600000001,39.253324],[-76.538752,39.253324],[-76.538749,39.253323],[-76.538746,39.253322],[-76.538742,39.253322],[-76.53873900000001,39.253321],[-76.538735,39.253321],[-76.538732,39.25332],[-76.53872800000001,39.25332],[-76.538725,39.253319],[-76.538721,39.253319],[-76.538718,39.253318],[-76.538714,39.253318],[-76.53871100000001,39.253317],[-76.538707,39.253317],[-76.538704,39.253316],[-76.538701,39.253315],[-76.538697,39.253315],[-76.53869400000001,39.253314],[-76.53869,39.253314],[-76.538687,39.253314],[-76.53868300000001,39.253314],[-76.53868,39.253316],[-76.538678,39.253318],[-76.538676,39.25332],[-76.538675,39.253323],[-76.538673,39.253325],[-76.53867200000001,39.253328],[-76.53867,39.25333],[-76.538668,39.253333],[-76.538667,39.253335],[-76.53866499999999,39.253338],[-76.538664,39.25334],[-76.538662,39.253343],[-76.538661,39.253345],[-76.538659,39.253347],[-76.538658,39.25335],[-76.538656,39.253352],[-76.53865500000001,39.253355],[-76.538653,39.253357],[-76.538652,39.25336],[-76.53865,39.253362],[-76.53864900000001,39.253365],[-76.538647,39.253367],[-76.538646,39.25337],[-76.53864400000001,39.253372],[-76.53864299999999,39.253375],[-76.538641,39.253377],[-76.53864,39.25338],[-76.538639,39.253382],[-76.53863699999999,39.253385],[-76.538636,39.253387],[-76.538634,39.25339],[-76.538633,39.253392],[-76.538631,39.253395],[-76.53863,39.253397],[-76.538628,39.2534],[-76.53862700000001,39.253402],[-76.538625,39.253405],[-76.538624,39.253407],[-76.538622,39.25341],[-76.53862100000001,39.253412],[-76.538619,39.253415],[-76.538618,39.253417],[-76.538616,39.25342],[-76.53861499999999,39.253422],[-76.538614,39.253425],[-76.538612,39.253427],[-76.538611,39.25343],[-76.53860899999999,39.253432],[-76.538608,39.253435],[-76.538606,39.253437],[-76.538605,39.25344],[-76.53860299999999,39.253442],[-76.538602,39.253445],[-76.5386,39.253447],[-76.538599,39.25345],[-76.538597,39.253452],[-76.538596,39.253455],[-76.538594,39.253457],[-76.53859300000001,39.25346],[-76.538591,39.253462],[-76.538589,39.253465],[-76.538588,39.253467],[-76.538586,39.25347],[-76.538585,39.253472],[-76.538583,39.253474],[-76.53858200000001,39.253477],[-76.53858099999999,39.253479],[-76.538579,39.253482],[-76.538578,39.253484],[-76.53857600000001,39.253487],[-76.53857499999999,39.253489],[-76.538573,39.253492],[-76.538572,39.253494],[-76.53857000000001,39.253497],[-76.538569,39.253499],[-76.538567,39.253502],[-76.538566,39.253504],[-76.53856399999999,39.253507],[-76.538563,39.253509],[-76.538561,39.253512],[-76.53856,39.253514],[-76.53855799999999,39.253517],[-76.538557,39.253519],[-76.538555,39.253522],[-76.538554,39.253524],[-76.538552,39.253527],[-76.538551,39.253529],[-76.538549,39.253532],[-76.53854800000001,39.253534],[-76.538546,39.253537],[-76.538545,39.253539],[-76.538543,39.253542],[-76.53854200000001,39.253544],[-76.53854,39.253547],[-76.538539,39.253549],[-76.53853700000001,39.253552],[-76.53853599999999,39.253554],[-76.538534,39.253557],[-76.538533,39.253559],[-76.53853100000001,39.253562],[-76.53852999999999,39.253564],[-76.538528,39.253567],[-76.538527,39.253569],[-76.53852500000001,39.253572],[-76.538524,39.253574],[-76.538522,39.253576],[-76.538521,39.253579],[-76.53851899999999,39.253581],[-76.538518,39.253584],[-76.538516,39.253586],[-76.538515,39.253589],[-76.53851299999999,39.253591],[-76.538512,39.253594],[-76.53851,39.253596],[-76.538509,39.253599],[-76.538507,39.253601],[-76.538506,39.253604],[-76.538504,39.253606],[-76.53850300000001,39.253609],[-76.538501,39.253611],[-76.5385,39.253614],[-76.538498,39.253616],[-76.53849700000001,39.253619],[-76.538495,39.253621],[-76.538494,39.253624],[-76.538493,39.253626],[-76.53849099999999,39.253629],[-76.53849,39.253631],[-76.538488,39.253634],[-76.538487,39.253636],[-76.53848499999999,39.253639],[-76.538484,39.253641],[-76.538482,39.253644],[-76.538481,39.253646],[-76.538479,39.253649],[-76.538478,39.253651],[-76.538476,39.253654],[-76.53847500000001,39.253656],[-76.538473,39.253659],[-76.538472,39.253661],[-76.53847,39.253664],[-76.53846900000001,39.253666],[-76.538467,39.253669],[-76.538466,39.253671],[-76.538464,39.253674],[-76.53846299999999,39.253676],[-76.538461,39.253679],[-76.53846,39.253681],[-76.53845800000001,39.253684],[-76.53845699999999,39.253686],[-76.538455,39.253689],[-76.538454,39.253691],[-76.53845200000001,39.253694],[-76.53845099999999,39.253696],[-76.538449,39.253698],[-76.538448,39.253701],[-76.53844599999999,39.253703],[-76.538445,39.253706],[-76.538443,39.253708],[-76.538442,39.253711],[-76.53843999999999,39.253713],[-76.538439,39.253716],[-76.538437,39.253718],[-76.538436,39.253721],[-76.538434,39.253723],[-76.538433,39.253726],[-76.538431,39.253728],[-76.53843000000001,39.253731],[-76.538428,39.253733],[-76.538427,39.253736],[-76.538425,39.253738],[-76.53842400000001,39.253741],[-76.538422,39.253743],[-76.538421,39.253746],[-76.538419,39.253748],[-76.53841799999999,39.253751],[-76.538417,39.253753],[-76.538415,39.253756],[-76.538414,39.253758],[-76.53841199999999,39.253761],[-76.538411,39.253763],[-76.538409,39.253766],[-76.538408,39.253768],[-76.53840599999999,39.253771],[-76.538405,39.253773],[-76.538403,39.253776],[-76.538402,39.253778],[-76.5384,39.253781],[-76.538399,39.253783],[-76.538397,39.253786],[-76.53839600000001,39.253788],[-76.538394,39.253791],[-76.538393,39.253793],[-76.538391,39.253796],[-76.53839000000001,39.253798],[-76.538388,39.2538],[-76.538387,39.253803],[-76.53838500000001,39.253805],[-76.53838399999999,39.253808],[-76.538382,39.25381],[-76.538381,39.253813],[-76.53837900000001,39.253815],[-76.53837799999999,39.253818],[-76.538376,39.25382],[-76.538375,39.253823],[-76.53837300000001,39.253825],[-76.538372,39.253828],[-76.53837,39.25383],[-76.538369,39.253833],[-76.53836699999999,39.253835],[-76.538366,39.253838],[-76.538364,39.25384],[-76.538363,39.253843],[-76.53836099999999,39.253845],[-76.53836,39.253848],[-76.538358,39.25385],[-76.538357,39.253853],[-76.538355,39.253855],[-76.538354,39.253858],[-76.538352,39.25386],[-76.53835100000001,39.253863],[-76.538349,39.253865],[-76.538348,39.253868],[-76.538346,39.25387],[-76.53834500000001,39.253873],[-76.538344,39.253875],[-76.538342,39.253878],[-76.538341,39.25388],[-76.53833899999999,39.253883],[-76.538338,39.253885],[-76.538336,39.253888],[-76.538335,39.25389],[-76.53833299999999,39.253893],[-76.538332,39.253895],[-76.53833,39.253898],[-76.538329,39.2539],[-76.538327,39.253903],[-76.538326,39.253905],[-76.538324,39.253908],[-76.53832300000001,39.25391],[-76.538321,39.253913],[-76.53832,39.253915],[-76.538318,39.253918],[-76.53831700000001,39.25392],[-76.538315,39.253923],[-76.538314,39.253925],[-76.538312,39.253927],[-76.53831099999999,39.25393],[-76.538309,39.253932],[-76.538308,39.253935],[-76.53830600000001,39.253937],[-76.53830499999999,39.25394],[-76.538303,39.253942],[-76.538302,39.253945],[-76.53830000000001,39.253947],[-76.53829899999999,39.25395],[-76.538297,39.253952],[-76.538296,39.253955],[-76.53829399999999,39.253957],[-76.538293,39.25396],[-76.538291,39.253962],[-76.53829,39.253965],[-76.53828799999999,39.253967],[-76.538287,39.25397],[-76.538285,39.253972],[-76.538284,39.253975],[-76.538282,39.253977],[-76.538281,39.25398],[-76.538279,39.253982],[-76.53827800000001,39.253985],[-76.538276,39.253987],[-76.538275,39.25399],[-76.538273,39.253992],[-76.53827200000001,39.253995],[-76.53827,39.253997],[-76.538269,39.254],[-76.538267,39.254002],[-76.53826599999999,39.254005],[-76.538265,39.254007],[-76.538263,39.25401],[-76.538262,39.254012],[-76.53825999999999,39.254015],[-76.538259,39.254017],[-76.538257,39.25402],[-76.538256,39.254022],[-76.53825399999999,39.254025],[-76.538253,39.254027],[-76.538251,39.25403],[-76.53825000000001,39.254032],[-76.538248,39.254034],[-76.538247,39.254037],[-76.538245,39.254039],[-76.53824400000001,39.254042],[-76.538242,39.254044],[-76.538241,39.254047],[-76.538239,39.254049],[-76.53823800000001,39.254052],[-76.538236,39.254054],[-76.538235,39.254057],[-76.53823300000001,39.254059],[-76.53823199999999,39.254062],[-76.53823,39.254064],[-76.538229,39.254067],[-76.53822700000001,39.254069],[-76.53822599999999,39.254072],[-76.538224,39.254074],[-76.538223,39.254077],[-76.53822099999999,39.254079],[-76.53822,39.254082],[-76.538218,39.254084],[-76.538217,39.254087],[-76.53821499999999,39.254089],[-76.538214,39.254092],[-76.538212,39.254094],[-76.538211,39.254097],[-76.53820899999999,39.254099],[-76.538208,39.254102],[-76.538206,39.254104],[-76.538205,39.254107],[-76.538203,39.254109],[-76.538202,39.254112],[-76.5382,39.254114],[-76.53819900000001,39.254117],[-76.53819799999999,39.254119],[-76.538196,39.254122],[-76.538195,39.254124],[-76.53819300000001,39.254127],[-76.538192,39.254129],[-76.53819,39.254132],[-76.538189,39.254134],[-76.53818699999999,39.254137],[-76.538186,39.254139],[-76.538184,39.254142],[-76.538183,39.254144],[-76.53818099999999,39.254147],[-76.53818,39.254149],[-76.538178,39.254152],[-76.538157,39.254186],[-76.538084,39.254308],[-76.538032,39.254397],[-76.53799600000001,39.254456],[-76.537941,39.254549],[-76.53788299999999,39.254647],[-76.537809,39.254771],[-76.53774,39.254885],[-76.537661,39.255017],[-76.53759700000001,39.255122],[-76.537524,39.255244],[-76.537463,39.255345],[-76.537419,39.25542],[-76.53734300000001,39.255547],[-76.53728599999999,39.255644],[-76.53721299999999,39.25577],[-76.537145,39.255882],[-76.537074,39.255996],[-76.536997,39.256123],[-76.536935,39.256227],[-76.53688,39.25632],[-76.536818,39.256425],[-76.53679099999999,39.256472],[-76.536745,39.25655],[-76.536697,39.256632],[-76.536661,39.256692],[-76.53665700000001,39.256709],[-76.536647,39.256744],[-76.536632,39.25681],[-76.53661,39.256898],[-76.536597,39.256948],[-76.536585,39.256995],[-76.536553,39.257126],[-76.53653199999999,39.257208],[-76.536513,39.257279],[-76.536492,39.257362],[-76.53645899999999,39.257484],[-76.536452,39.257507],[-76.536446,39.257537],[-76.53643700000001,39.257576],[-76.536422,39.257639],[-76.536405,39.257719],[-76.536385,39.257803],[-76.536365,39.257888],[-76.536356,39.257927],[-76.53632899999999,39.258037],[-76.536288,39.258203],[-76.536272,39.258266],[-76.536272,39.258309],[-76.536271,39.258329],[-76.536269,39.258404],[-76.536269,39.25844],[-76.53626800000001,39.258464],[-76.536272,39.258499],[-76.53627899999999,39.258552],[-76.536286,39.258594],[-76.536297,39.258636],[-76.536314,39.258693],[-76.536321,39.258716],[-76.536334,39.258752],[-76.536339,39.258766],[-76.536356,39.258807],[-76.53636899999999,39.258833],[-76.536389,39.258876],[-76.53641,39.258914],[-76.53643,39.258946],[-76.536444,39.258966],[-76.53645299999999,39.258978],[-76.536466,39.258996],[-76.536473,39.259006],[-76.53648,39.259015],[-76.53648699999999,39.259025],[-76.536494,39.259034],[-76.536501,39.259044],[-76.536509,39.259053],[-76.536517,39.259062],[-76.536524,39.259071],[-76.53653199999999,39.25908],[-76.53654,39.259089],[-76.536548,39.259098],[-76.536557,39.259107],[-76.536565,39.259116],[-76.536573,39.259125],[-76.536581,39.259134],[-76.53659,39.259143],[-76.536598,39.259152],[-76.536607,39.25916],[-76.536616,39.259169],[-76.536625,39.259177],[-76.53663400000001,39.259185],[-76.536644,39.259194],[-76.536653,39.259202],[-76.53666200000001,39.25921],[-76.536672,39.259219],[-76.536681,39.259227],[-76.536691,39.259235],[-76.53670099999999,39.259242],[-76.536711,39.25925],[-76.536721,39.259258],[-76.536731,39.259266],[-76.53674100000001,39.259273],[-76.536751,39.259281],[-76.536761,39.259288],[-76.536772,39.259296],[-76.536782,39.259304],[-76.53679200000001,39.259311],[-76.53680199999999,39.259319],[-76.536812,39.259327],[-76.536823,39.259334],[-76.536833,39.259342],[-76.536843,39.259349],[-76.53685299999999,39.259357],[-76.53686399999999,39.259364],[-76.536874,39.259372],[-76.536884,39.25938],[-76.536894,39.259387],[-76.53690400000001,39.259395],[-76.536914,39.259403],[-76.536924,39.25941],[-76.536934,39.259418],[-76.53694400000001,39.259426],[-76.53695399999999,39.259434],[-76.536964,39.259441],[-76.536974,39.259449],[-76.536984,39.259457],[-76.53699400000001,39.259465],[-76.537004,39.259472],[-76.537014,39.25948],[-76.537024,39.259488],[-76.53703400000001,39.259496],[-76.53704399999999,39.259503],[-76.537054,39.259511],[-76.537064,39.259519],[-76.537074,39.259527],[-76.53708399999999,39.259534],[-76.537094,39.259542],[-76.537105,39.25955],[-76.537115,39.259557],[-76.537125,39.259565],[-76.53713500000001,39.259573],[-76.537145,39.25958],[-76.537155,39.259588],[-76.537166,39.259595],[-76.537176,39.259603],[-76.53718600000001,39.259611],[-76.53719599999999,39.259618],[-76.537206,39.259626],[-76.537217,39.259633],[-76.537227,39.259641],[-76.537237,39.259649],[-76.53724699999999,39.259656],[-76.537257,39.259664],[-76.537267,39.259672],[-76.537277,39.259679],[-76.53728700000001,39.259687],[-76.53729800000001,39.259695],[-76.537308,39.259702],[-76.537318,39.25971],[-76.537328,39.259718],[-76.53733800000001,39.259725],[-76.53734799999999,39.259733],[-76.537358,39.259741],[-76.537368,39.259748],[-76.537378,39.259756],[-76.53738800000001,39.259764],[-76.537398,39.259772],[-76.537408,39.25978],[-76.537418,39.259787],[-76.53742800000001,39.259795],[-76.537437,39.259803],[-76.537447,39.259811],[-76.537457,39.259819],[-76.53746700000001,39.259827],[-76.537476,39.259835],[-76.537486,39.259843],[-76.537496,39.259851],[-76.53750599999999,39.259858],[-76.537516,39.259866],[-76.537526,39.259874],[-76.537536,39.259882],[-76.53754600000001,39.259889],[-76.537556,39.259897],[-76.537566,39.259905],[-76.537576,39.259913],[-76.537587,39.25992],[-76.53759700000001,39.259928],[-76.53760699999999,39.259936],[-76.537617,39.259943],[-76.537627,39.259951],[-76.537637,39.259959],[-76.53764700000001,39.259967],[-76.537657,39.259974],[-76.537667,39.259982],[-76.537677,39.25999],[-76.537688,39.259997],[-76.53769800000001,39.260005],[-76.53770799999999,39.260012],[-76.537719,39.26002],[-76.537729,39.260027],[-76.537739,39.260035],[-76.53775,39.260042],[-76.53776000000001,39.260049],[-76.53776999999999,39.260057],[-76.537781,39.260064],[-76.537791,39.260072],[-76.537801,39.26008],[-76.537811,39.260087],[-76.53782099999999,39.260095],[-76.537831,39.260103],[-76.537842,39.26011],[-76.537852,39.260118],[-76.537862,39.260126],[-76.53787199999999,39.260133],[-76.537882,39.260141],[-76.537892,39.260149],[-76.537902,39.260156],[-76.53791200000001,39.260164],[-76.53792300000001,39.260172],[-76.537933,39.260179],[-76.537943,39.260187],[-76.537953,39.260195],[-76.537963,39.260202],[-76.53797299999999,39.26021],[-76.537983,39.260218],[-76.537993,39.260226],[-76.538003,39.260233],[-76.53801300000001,39.260241],[-76.538023,39.260249],[-76.538033,39.260257],[-76.538043,39.260264],[-76.538053,39.260272],[-76.53806299999999,39.26028],[-76.538073,39.260287],[-76.538083,39.260295],[-76.538093,39.260303],[-76.538104,39.26031],[-76.53811399999999,39.260318],[-76.538124,39.260326],[-76.538134,39.260333],[-76.538144,39.260341],[-76.53815400000001,39.260349],[-76.53816399999999,39.260356],[-76.538174,39.260364],[-76.538185,39.260372],[-76.538195,39.260379],[-76.538205,39.260387],[-76.53821499999999,39.260395],[-76.538225,39.260402],[-76.538235,39.26041],[-76.538246,39.260417],[-76.538256,39.260425],[-76.53826599999999,39.260433],[-76.538276,39.26044],[-76.538286,39.260448],[-76.538296,39.260456],[-76.538307,39.260463],[-76.53831700000001,39.260471],[-76.538327,39.260478],[-76.538337,39.260486],[-76.538347,39.260494],[-76.538357,39.260502],[-76.53836699999999,39.260509],[-76.538377,39.260517],[-76.538388,39.260524],[-76.538398,39.260532],[-76.538408,39.26054],[-76.53841799999999,39.260547],[-76.538428,39.260555],[-76.538439,39.260562],[-76.538449,39.26057],[-76.538459,39.260578],[-76.53846900000001,39.260585],[-76.538479,39.260593],[-76.53849,39.2606],[-76.5385,39.260608],[-76.53851,39.260615],[-76.53852000000001,39.260623],[-76.53852999999999,39.260631],[-76.538541,39.260638],[-76.538551,39.260646],[-76.538561,39.260654],[-76.538571,39.260662],[-76.53858099999999,39.260669],[-76.538591,39.260677],[-76.538601,39.260685],[-76.538611,39.260692],[-76.53862100000001,39.2607],[-76.538631,39.260708],[-76.538641,39.260715],[-76.538651,39.260723],[-76.538661,39.260731],[-76.53867099999999,39.260739],[-76.538681,39.260747],[-76.538691,39.260754],[-76.538701,39.260762],[-76.53871100000001,39.26077],[-76.538721,39.260778],[-76.538731,39.260785],[-76.538741,39.260793],[-76.538751,39.260801],[-76.53876099999999,39.260809],[-76.538771,39.260816],[-76.538781,39.260824],[-76.538791,39.260832],[-76.53880100000001,39.26084],[-76.538811,39.260848],[-76.538821,39.260855],[-76.538831,39.260863],[-76.53884100000001,39.260871],[-76.53885099999999,39.260878],[-76.538861,39.260886],[-76.538871,39.260894],[-76.538881,39.260902],[-76.538892,39.260909],[-76.53890199999999,39.260917],[-76.538912,39.260924],[-76.538922,39.260932],[-76.538932,39.26094],[-76.53894200000001,39.260947],[-76.53895300000001,39.260955],[-76.538963,39.260962],[-76.538973,39.26097],[-76.538983,39.260978],[-76.538993,39.260985],[-76.53900299999999,39.260993],[-76.53901399999999,39.261001],[-76.539024,39.261008],[-76.539034,39.261016],[-76.539044,39.261023],[-76.53905399999999,39.261031],[-76.539064,39.261039],[-76.539075,39.261046],[-76.539085,39.261054],[-76.539095,39.261062],[-76.53910500000001,39.261069],[-76.539115,39.261077],[-76.539126,39.261084],[-76.539136,39.261092],[-76.539146,39.2611],[-76.53915600000001,39.261107],[-76.53916599999999,39.261115],[-76.539176,39.261123],[-76.539186,39.26113],[-76.539196,39.261138],[-76.53920599999999,39.261146],[-76.53921699999999,39.261153],[-76.539227,39.261161],[-76.539237,39.261169],[-76.539247,39.261177],[-76.53925700000001,39.261184],[-76.539267,39.261192],[-76.539277,39.261199],[-76.539288,39.261207],[-76.539298,39.261214],[-76.539309,39.261222],[-76.53931900000001,39.261229],[-76.53933000000001,39.261236],[-76.53934,39.261244],[-76.53935,39.261251],[-76.539361,39.261259],[-76.539371,39.261266],[-76.53938100000001,39.261274],[-76.53939099999999,39.261282],[-76.539401,39.26129],[-76.539411,39.261298],[-76.539421,39.261305],[-76.53943099999999,39.261313],[-76.539441,39.261321],[-76.539451,39.261328],[-76.539461,39.261336],[-76.53947100000001,39.261344],[-76.53948099999999,39.261352],[-76.539491,39.261359],[-76.539501,39.261367],[-76.53952,39.261381],[-76.539531,39.261389],[-76.539541,39.261397],[-76.539551,39.261404],[-76.53956100000001,39.261412],[-76.539571,39.26142],[-76.539581,39.261427],[-76.539591,39.261435],[-76.539601,39.261443],[-76.53961099999999,39.26145],[-76.53962199999999,39.261458],[-76.539632,39.261466],[-76.539642,39.261473],[-76.539652,39.261481],[-76.53966200000001,39.261489],[-76.539672,39.261496],[-76.539682,39.261504],[-76.539692,39.261512],[-76.53970200000001,39.261519],[-76.53971199999999,39.261527],[-76.539722,39.261535],[-76.539731,39.261543],[-76.53974100000001,39.261551],[-76.539751,39.261559],[-76.53976,39.261567],[-76.53977,39.261575],[-76.53977999999999,39.261583],[-76.539789,39.261591],[-76.539799,39.2616],[-76.53980799999999,39.261608],[-76.539818,39.261616],[-76.539827,39.261624],[-76.53983599999999,39.261633],[-76.539845,39.261641],[-76.53985400000001,39.26165],[-76.539863,39.261658],[-76.539873,39.261666],[-76.53988200000001,39.261674],[-76.539891,39.261683],[-76.5399,39.261691],[-76.53990899999999,39.261699],[-76.539918,39.261708],[-76.53992700000001,39.261716],[-76.539936,39.261725],[-76.539945,39.261734],[-76.53995399999999,39.261742],[-76.539963,39.261751],[-76.53997200000001,39.261759],[-76.53998,39.261768],[-76.53998900000001,39.261777],[-76.539997,39.261785],[-76.54000600000001,39.261794],[-76.540014,39.261803],[-76.54002300000001,39.261812],[-76.540031,39.261821],[-76.54003899999999,39.26183],[-76.540048,39.261838],[-76.54005600000001,39.261847],[-76.540064,39.261856],[-76.54007300000001,39.261865],[-76.540081,39.261874],[-76.54008899999999,39.261883],[-76.540097,39.261892],[-76.540105,39.261901],[-76.54011300000001,39.26191],[-76.540121,39.261919],[-76.54013,39.261928],[-76.540138,39.261937],[-76.54014599999999,39.261946],[-76.540154,39.261955],[-76.540162,39.261964],[-76.54016900000001,39.261973],[-76.540177,39.261983],[-76.54018499999999,39.261992],[-76.540192,39.262001],[-76.5402,39.26201],[-76.540207,39.26202],[-76.540215,39.262029],[-76.540222,39.262038],[-76.54022999999999,39.262048],[-76.540237,39.262057],[-76.540244,39.262067],[-76.540251,39.262076],[-76.54025799999999,39.262085],[-76.54026500000001,39.262095],[-76.540273,39.262104],[-76.54028,39.262114],[-76.54028700000001,39.262123],[-76.540291,39.262128],[-76.540294,39.262133],[-76.540301,39.262142],[-76.540308,39.262152],[-76.54031500000001,39.262162],[-76.54032100000001,39.262171],[-76.540328,39.262181],[-76.540335,39.262191],[-76.540341,39.2622],[-76.54034799999999,39.26221],[-76.54035500000001,39.26222],[-76.540361,39.262229],[-76.540368,39.262239],[-76.540374,39.262249],[-76.540381,39.262259],[-76.54038799999999,39.262268],[-76.54039400000001,39.262278],[-76.540401,39.262288],[-76.540407,39.262297],[-76.540414,39.262307],[-76.54042099999999,39.262317],[-76.54042699999999,39.262327],[-76.540434,39.262336],[-76.54044,39.262346],[-76.540446,39.262356],[-76.540453,39.262366],[-76.540459,39.262376],[-76.540465,39.262385],[-76.540471,39.262395],[-76.540477,39.262405],[-76.54048299999999,39.262415],[-76.54048899999999,39.262425],[-76.540494,39.262435],[-76.54049999999999,39.262445],[-76.54050599999999,39.262455],[-76.54051200000001,39.262466],[-76.54051800000001,39.262476],[-76.54052299999999,39.262486],[-76.54052900000001,39.262496],[-76.54053500000001,39.262506],[-76.54053999999999,39.262516],[-76.54054600000001,39.262526],[-76.54055099999999,39.262536],[-76.540556,39.262546],[-76.54056199999999,39.262556],[-76.540567,39.262567],[-76.540572,39.262577],[-76.540577,39.262587],[-76.540582,39.262597],[-76.540587,39.262608],[-76.540592,39.262618],[-76.54059700000001,39.262628],[-76.540601,39.262639],[-76.540606,39.262649],[-76.540611,39.262659],[-76.540616,39.26267],[-76.54062,39.26268],[-76.54062500000001,39.26269],[-76.540629,39.262701],[-76.540634,39.262711],[-76.540638,39.262722],[-76.540643,39.262732],[-76.54064700000001,39.262743],[-76.54065199999999,39.262753],[-76.540656,39.262763],[-76.540661,39.262774],[-76.540666,39.262784],[-76.54067000000001,39.262794],[-76.54067499999999,39.262805],[-76.54067999999999,39.262815],[-76.540684,39.262826],[-76.540689,39.262836],[-76.540693,39.262846],[-76.54069800000001,39.262857],[-76.540702,39.262867],[-76.540706,39.262878],[-76.54071,39.262888],[-76.54071399999999,39.262899],[-76.540719,39.262909],[-76.540723,39.26292],[-76.540727,39.26293],[-76.54073099999999,39.262941],[-76.540734,39.262951],[-76.540738,39.262962],[-76.540741,39.262973],[-76.540745,39.262983],[-76.54074799999999,39.262994],[-76.540751,39.263005],[-76.540755,39.263015],[-76.540758,39.263026],[-76.540762,39.263037],[-76.54076499999999,39.263047],[-76.540769,39.263058],[-76.540772,39.263069],[-76.540775,39.263079],[-76.540778,39.26309],[-76.540781,39.263101],[-76.540784,39.263112],[-76.54078699999999,39.263122],[-76.54079,39.263133],[-76.540792,39.263144],[-76.540795,39.263155],[-76.540798,39.263165],[-76.5408,39.263176],[-76.540803,39.263187],[-76.54080500000001,39.263198],[-76.540808,39.263209],[-76.54080999999999,39.263219],[-76.540813,39.26323],[-76.54081499999999,39.263241],[-76.540818,39.263252],[-76.54082,39.263263],[-76.54082200000001,39.263274],[-76.540824,39.263284],[-76.540826,39.263295],[-76.540828,39.263306],[-76.540831,39.263317],[-76.54083300000001,39.263328],[-76.540835,39.263339],[-76.540837,39.26335],[-76.54083900000001,39.26336],[-76.540841,39.263371],[-76.540842,39.263382],[-76.54084400000001,39.263393],[-76.540846,39.263404],[-76.540848,39.263415],[-76.54084899999999,39.263426],[-76.540851,39.263437],[-76.540853,39.263448],[-76.54085499999999,39.263459],[-76.540857,39.263469],[-76.540858,39.26348],[-76.540859,39.263491],[-76.54086100000001,39.263502],[-76.540862,39.263513],[-76.540863,39.263524],[-76.540864,39.263535],[-76.540865,39.263546],[-76.54086599999999,39.263557],[-76.54086700000001,39.263568],[-76.540868,39.263579],[-76.540868,39.26359],[-76.540869,39.263601],[-76.54087,39.263612],[-76.54087,39.263623],[-76.540871,39.263634],[-76.54087199999999,39.263645],[-76.54087199999999,39.263656],[-76.540873,39.263667],[-76.540874,39.263678],[-76.540874,39.263689],[-76.540875,39.2637],[-76.540875,39.263711],[-76.540876,39.263722],[-76.540876,39.263733],[-76.540876,39.263743],[-76.540876,39.263754],[-76.540876,39.263765],[-76.540876,39.263776],[-76.540875,39.263787],[-76.540875,39.263798],[-76.540875,39.263809],[-76.540875,39.26382],[-76.540875,39.263831],[-76.540875,39.263842],[-76.540874,39.263853],[-76.540874,39.263864],[-76.540874,39.263875],[-76.540874,39.263886],[-76.540873,39.263897],[-76.540873,39.263908],[-76.54087199999999,39.263919],[-76.54087199999999,39.263924],[-76.540871,39.26393],[-76.540871,39.263935],[-76.540871,39.263941],[-76.54087,39.263946],[-76.54087,39.263952],[-76.54087,39.263957],[-76.540869,39.263963],[-76.540869,39.263968],[-76.540869,39.263974],[-76.540868,39.263979],[-76.540868,39.263985],[-76.54086700000001,39.26399],[-76.54086700000001,39.263996],[-76.54086599999999,39.264001],[-76.54086599999999,39.264007],[-76.540865,39.264012],[-76.540864,39.264018],[-76.540864,39.264023],[-76.540863,39.264028],[-76.540863,39.264034],[-76.540862,39.264039],[-76.540862,39.264045],[-76.54086100000001,39.26405],[-76.54086,39.264056],[-76.54086,39.264061],[-76.540859,39.264067],[-76.540858,39.264072],[-76.540858,39.264078],[-76.540857,39.264083],[-76.54085600000001,39.264089],[-76.54085600000001,39.264094],[-76.54085499999999,39.2641],[-76.540854,39.264105],[-76.540853,39.26411],[-76.540853,39.264116],[-76.540852,39.264121],[-76.540851,39.264127],[-76.54085000000001,39.264132],[-76.54084899999999,39.264138],[-76.54084899999999,39.264143],[-76.540848,39.264149],[-76.540847,39.264154],[-76.540846,39.26416],[-76.540845,39.264165],[-76.54084400000001,39.26417],[-76.540843,39.264176],[-76.540842,39.264181],[-76.540842,39.264187],[-76.540841,39.264192],[-76.54084,39.264198],[-76.54083900000001,39.264203],[-76.54083799999999,39.264209],[-76.540837,39.264214],[-76.540836,39.264219],[-76.540835,39.264225],[-76.540835,39.26423],[-76.540834,39.264236],[-76.54083300000001,39.264241],[-76.54083199999999,39.264247],[-76.540831,39.264252],[-76.540829,39.264258],[-76.540829,39.264263],[-76.540828,39.264268],[-76.54082699999999,39.264274],[-76.540826,39.264279],[-76.540825,39.264285],[-76.540824,39.26429],[-76.540823,39.264296],[-76.54082200000001,39.264301],[-76.54082099999999,39.264306],[-76.54082,39.264312],[-76.540819,39.264317],[-76.540818,39.264323],[-76.540817,39.264328],[-76.54081600000001,39.264334],[-76.540814,39.264339],[-76.540813,39.264345],[-76.540812,39.26435],[-76.54081100000001,39.264355],[-76.54080999999999,39.264361],[-76.540809,39.264366],[-76.540808,39.264372],[-76.540807,39.264377],[-76.540806,39.264382],[-76.54080500000001,39.264388],[-76.540803,39.264393],[-76.540802,39.264399],[-76.540801,39.264404],[-76.5408,39.26441],[-76.54079900000001,39.264415],[-76.540797,39.26442],[-76.540796,39.264426],[-76.540795,39.264431],[-76.54079299999999,39.264437],[-76.540792,39.264442],[-76.540791,39.264447],[-76.540789,39.264453],[-76.54078800000001,39.264458],[-76.54078699999999,39.264463],[-76.540785,39.264469],[-76.540784,39.264474],[-76.540783,39.26448],[-76.54078199999999,39.264485],[-76.54078,39.26449],[-76.540779,39.264496],[-76.540778,39.264501],[-76.54077599999999,39.264507],[-76.540775,39.264512],[-76.540773,39.264517],[-76.540772,39.264523],[-76.54076999999999,39.264528],[-76.540769,39.264534],[-76.540768,39.264539],[-76.540766,39.264544],[-76.54076499999999,39.26455],[-76.540763,39.264555],[-76.540762,39.26456],[-76.54076000000001,39.264566],[-76.54075899999999,39.264571],[-76.540757,39.264577],[-76.540756,39.264582],[-76.54075400000001,39.264587],[-76.540753,39.264593],[-76.540751,39.264598],[-76.54074900000001,39.264603],[-76.54074799999999,39.264609],[-76.540746,39.264614],[-76.540744,39.264619],[-76.54074300000001,39.264625],[-76.540741,39.26463],[-76.540739,39.264635],[-76.540738,39.264641],[-76.540736,39.264646],[-76.540734,39.264651],[-76.540733,39.264657],[-76.54073099999999,39.264662],[-76.540729,39.264667],[-76.540727,39.264673],[-76.54072600000001,39.264678],[-76.540724,39.264683],[-76.540722,39.264689],[-76.540721,39.264694],[-76.540719,39.264699],[-76.540717,39.264705],[-76.54071500000001,39.26471],[-76.54071399999999,39.264715],[-76.540712,39.26472],[-76.54071,39.264726],[-76.540708,39.264731],[-76.540706,39.264736],[-76.540705,39.264742],[-76.54070299999999,39.264747],[-76.540701,39.264752],[-76.540699,39.264758],[-76.54069699999999,39.264763],[-76.540695,39.264768],[-76.540693,39.264773],[-76.540691,39.264779],[-76.540689,39.264784],[-76.54068700000001,39.264789],[-76.540685,39.264795],[-76.540683,39.2648],[-76.54068100000001,39.264805],[-76.540679,39.26481],[-76.540677,39.264816],[-76.54067499999999,39.264821],[-76.540673,39.264826],[-76.54067000000001,39.264831],[-76.540668,39.264836],[-76.540666,39.264842],[-76.54066400000001,39.264847],[-76.540662,39.264852],[-76.54065900000001,39.264857],[-76.540657,39.264863],[-76.540655,39.264868],[-76.54065300000001,39.264873],[-76.54065,39.264878],[-76.540648,39.264883],[-76.540644,39.264888],[-76.540639,39.264892],[-76.540634,39.264896],[-76.540628,39.264898],[-76.540622,39.264901],[-76.540617,39.264905],[-76.540612,39.264909],[-76.54060699999999,39.264913],[-76.540603,39.264917],[-76.540598,39.264922],[-76.54059599999999,39.264927],[-76.540595,39.264932],[-76.540594,39.264938],[-76.540594,39.264943],[-76.540594,39.264949],[-76.540593,39.264954],[-76.540593,39.26496],[-76.540594,39.264965],[-76.540595,39.264971],[-76.540595,39.264976],[-76.540595,39.264982],[-76.54059599999999,39.264987],[-76.54059599999999,39.264993],[-76.540594,39.264998],[-76.54059100000001,39.265003],[-76.540589,39.265008],[-76.540586,39.265013],[-76.540584,39.265019],[-76.540581,39.265024],[-76.54057899999999,39.265029],[-76.540576,39.265034],[-76.54057400000001,39.265039],[-76.540571,39.265044],[-76.540569,39.265049],[-76.540566,39.265054],[-76.540564,39.26506],[-76.540561,39.265065],[-76.540559,39.26507],[-76.540556,39.265075],[-76.540554,39.26508],[-76.54055099999999,39.265085],[-76.540549,39.26509],[-76.54054600000001,39.265096],[-76.540544,39.265101],[-76.540541,39.265106],[-76.540539,39.265111],[-76.540536,39.265116],[-76.54053399999999,39.265121],[-76.540531,39.265126],[-76.54052900000001,39.265131],[-76.540526,39.265136],[-76.540522,39.265141],[-76.54051699999999,39.265145],[-76.540513,39.26515],[-76.540508,39.265154],[-76.540504,39.265158],[-76.540497,39.265161],[-76.540492,39.265164],[-76.540487,39.265167],[-76.540481,39.265171],[-76.540477,39.265175],[-76.54047199999999,39.265179],[-76.54046700000001,39.265183],[-76.540463,39.265188],[-76.540459,39.265193],[-76.54045600000001,39.265197],[-76.540452,39.265202],[-76.540449,39.265207],[-76.540446,39.265212],[-76.540443,39.265217],[-76.54043900000001,39.265222],[-76.540436,39.265227],[-76.54043299999999,39.265232],[-76.540431,39.265237],[-76.54043,39.265242],[-76.540429,39.265247],[-76.54042800000001,39.265253],[-76.54042699999999,39.265258],[-76.54042699999999,39.265264],[-76.54042699999999,39.265269],[-76.54042699999999,39.265275],[-76.54042699999999,39.26528],[-76.54042699999999,39.265286],[-76.54042699999999,39.265292],[-76.54042699999999,39.265297],[-76.54042699999999,39.265302],[-76.54042699999999,39.265308],[-76.54042699999999,39.265313],[-76.54042800000001,39.265319],[-76.54042800000001,39.265324],[-76.540429,39.26533],[-76.540429,39.265335],[-76.54043,39.265341],[-76.54043,39.265346],[-76.540431,39.265352],[-76.540431,39.265357],[-76.540432,39.265363],[-76.54043299999999,39.265368],[-76.54043299999999,39.265374],[-76.54043299999999,39.265379],[-76.540432,39.265385],[-76.54043,39.26539],[-76.54042699999999,39.265395],[-76.540424,39.2654],[-76.54042,39.265404],[-76.540415,39.265408],[-76.54041100000001,39.265413],[-76.540407,39.265417],[-76.540402,39.265422],[-76.540398,39.265426],[-76.54039400000001,39.26543],[-76.540391,39.265435],[-76.540389,39.265441],[-76.540387,39.265446],[-76.540386,39.265451],[-76.540384,39.265457],[-76.54038300000001,39.265462],[-76.540381,39.265467],[-76.540381,39.265468],[-76.54038,39.265473],[-76.540378,39.265478],[-76.54037700000001,39.265483],[-76.54037599999999,39.265489],[-76.540375,39.265494],[-76.540374,39.2655],[-76.540373,39.265505],[-76.540372,39.265511],[-76.54037099999999,39.265516],[-76.54037,39.265522],[-76.540369,39.265527],[-76.540368,39.265532],[-76.540367,39.265538],[-76.54036499999999,39.265543],[-76.540364,39.265549],[-76.540363,39.265554],[-76.540362,39.265559],[-76.540361,39.265565],[-76.54036000000001,39.26557],[-76.540358,39.265576],[-76.540357,39.265581],[-76.540356,39.265587],[-76.54035399999999,39.265592],[-76.540353,39.265597],[-76.540352,39.265603],[-76.54035,39.265608],[-76.54034799999999,39.265613],[-76.540347,39.265619],[-76.540345,39.265624],[-76.54034299999999,39.265629],[-76.540341,39.265635],[-76.540339,39.26564],[-76.54033699999999,39.265645],[-76.540335,39.26565],[-76.540333,39.265656],[-76.54033200000001,39.265661],[-76.54033,39.265666],[-76.540329,39.265672],[-76.540327,39.265677],[-76.54032599999999,39.265683],[-76.540325,39.265688],[-76.540324,39.265693],[-76.540323,39.265699],[-76.540322,39.265704],[-76.54032100000001,39.26571],[-76.54031999999999,39.265715],[-76.540319,39.265721],[-76.540318,39.265726],[-76.540317,39.265731],[-76.540316,39.265737],[-76.54031500000001,39.265742],[-76.540314,39.265748],[-76.540313,39.265753],[-76.540312,39.265759],[-76.540311,39.265764],[-76.54031000000001,39.26577],[-76.54030899999999,39.265775],[-76.540308,39.265781],[-76.540307,39.265786],[-76.540306,39.265791],[-76.540305,39.265797],[-76.54030299999999,39.265802],[-76.540302,39.265807],[-76.5403,39.265813],[-76.54029800000001,39.265818],[-76.540295,39.265823],[-76.54029300000001,39.265828],[-76.54029,39.265833],[-76.540288,39.265839],[-76.540285,39.265844],[-76.540283,39.265849],[-76.54028,39.265854],[-76.540278,39.265859],[-76.54027600000001,39.265864],[-76.540274,39.26587],[-76.540272,39.265875],[-76.54027000000001,39.26588],[-76.540268,39.265885],[-76.540266,39.265891],[-76.54026399999999,39.265896],[-76.540262,39.265901],[-76.54026,39.265907],[-76.54025799999999,39.265912],[-76.540256,39.265917],[-76.540254,39.265922],[-76.540252,39.265928],[-76.54025,39.265933],[-76.540249,39.265938],[-76.54024699999999,39.265944],[-76.540245,39.265949],[-76.540243,39.265954],[-76.54024200000001,39.26596],[-76.54024,39.265965],[-76.540238,39.26597],[-76.540237,39.265976],[-76.540235,39.265981],[-76.540233,39.265986],[-76.540232,39.265992],[-76.54022999999999,39.265997],[-76.540229,39.266002],[-76.540227,39.266008],[-76.54022500000001,39.266013],[-76.54022399999999,39.266018],[-76.540222,39.266024],[-76.54022000000001,39.266029],[-76.540218,39.266034],[-76.540216,39.26604],[-76.54021400000001,39.266045],[-76.54021299999999,39.26605],[-76.540211,39.266055],[-76.540209,39.266061],[-76.540207,39.266066],[-76.540205,39.266071],[-76.54020300000001,39.266077],[-76.540201,39.266082],[-76.540199,39.266087],[-76.54019700000001,39.266092],[-76.540195,39.266098],[-76.540193,39.266103],[-76.54019099999999,39.266108],[-76.540189,39.266113],[-76.54018600000001,39.266119],[-76.540184,39.266124],[-76.540182,39.266129],[-76.54018000000001,39.266134],[-76.540178,39.26614],[-76.540176,39.266145],[-76.54017399999999,39.26615],[-76.540171,39.266155],[-76.54016900000001,39.26616],[-76.540167,39.266166],[-76.540165,39.266171],[-76.540162,39.266176],[-76.54016,39.266181],[-76.54015800000001,39.266186],[-76.540155,39.266192],[-76.540153,39.266197],[-76.54015099999999,39.266202],[-76.540148,39.266207],[-76.54014599999999,39.266212],[-76.540139,39.266224],[-76.540132,39.266234],[-76.540126,39.266243],[-76.540119,39.266253],[-76.54011300000001,39.266263],[-76.540108,39.266273],[-76.540103,39.266283],[-76.540098,39.266294],[-76.540094,39.266304],[-76.54009000000001,39.266315],[-76.540087,39.266326],[-76.54008399999999,39.266336],[-76.540082,39.266347],[-76.54007900000001,39.266358],[-76.540077,39.266369],[-76.540074,39.26638],[-76.540072,39.26639],[-76.540069,39.266401],[-76.540066,39.266412],[-76.540063,39.266423],[-76.54006,39.266434],[-76.540057,39.266444],[-76.540053,39.266455],[-76.540047,39.266465],[-76.54004,39.266474],[-76.54003299999999,39.266484],[-76.540026,39.266493],[-76.540018,39.266502],[-76.54001100000001,39.266512],[-76.540004,39.266521],[-76.539996,39.266531],[-76.53998799999999,39.26654],[-76.53998,39.266549],[-76.53997200000001,39.266558],[-76.539964,39.266567],[-76.539956,39.266576],[-76.539947,39.266584],[-76.539939,39.266593],[-76.53993,39.266602],[-76.539922,39.266611],[-76.539913,39.266619],[-76.53990400000001,39.266628],[-76.539894,39.266636],[-76.539885,39.266644],[-76.53987499999999,39.266652],[-76.539866,39.26666],[-76.539856,39.266668],[-76.539846,39.266676],[-76.53983599999999,39.266684],[-76.53982600000001,39.266692],[-76.539817,39.2667],[-76.539807,39.266707],[-76.53979699999999,39.266715],[-76.539787,39.266723],[-76.539777,39.266731],[-76.539767,39.266738],[-76.539756,39.266746],[-76.53974599999999,39.266754],[-76.539736,39.266761],[-76.539725,39.266768],[-76.539714,39.266775],[-76.539704,39.266783],[-76.539693,39.26679],[-76.539683,39.266797],[-76.539672,39.266804],[-76.53966200000001,39.266812],[-76.53965100000001,39.266819],[-76.539641,39.266827],[-76.539631,39.266834],[-76.53962,39.266842],[-76.53961,39.266849],[-76.53959999999999,39.266857],[-76.53959,39.266865],[-76.539579,39.266872],[-76.53956700000001,39.266878],[-76.539554,39.266882],[-76.539541,39.266886],[-76.539528,39.26689],[-76.53951499999999,39.266894],[-76.539502,39.266898],[-76.53948800000001,39.266902],[-76.539475,39.266906],[-76.539462,39.266911],[-76.53945400000001,39.26692],[-76.53945,39.26693],[-76.539447,39.266941],[-76.539446,39.266952],[-76.539446,39.266963],[-76.539446,39.266974],[-76.539447,39.266985],[-76.53944799999999,39.266996],[-76.53945,39.267007],[-76.539451,39.267018],[-76.53945299999999,39.267029],[-76.539456,39.267039],[-76.539458,39.26705],[-76.539461,39.267061],[-76.539468,39.26707],[-76.539478,39.267078],[-76.539491,39.267083],[-76.53950399999999,39.267085],[-76.539518,39.267087],[-76.53953199999999,39.267089],[-76.539546,39.267091],[-76.53955999999999,39.267092],[-76.539574,39.267093],[-76.53958900000001,39.267094],[-76.539603,39.267095],[-76.53961700000001,39.267096],[-76.539631,39.267097],[-76.53964499999999,39.267097],[-76.539659,39.267098],[-76.53967299999999,39.267098],[-76.539687,39.267098],[-76.53970099999999,39.267099],[-76.539716,39.267099],[-76.53973000000001,39.267099],[-76.539744,39.2671],[-76.53975800000001,39.2671],[-76.539772,39.267101],[-76.53978600000001,39.267101],[-76.5398,39.267102],[-76.53981400000001,39.267103],[-76.539828,39.267103],[-76.539843,39.267104],[-76.539857,39.267104],[-76.53987100000001,39.267105],[-76.539885,39.267106],[-76.53989900000001,39.267106],[-76.539913,39.267107],[-76.53992700000001,39.267108],[-76.539941,39.267108],[-76.53995500000001,39.267109],[-76.53997,39.267109],[-76.539984,39.26711],[-76.539998,39.26711],[-76.540012,39.26711],[-76.540026,39.267111],[-76.54004,39.267111],[-76.540054,39.267112],[-76.54006800000001,39.267112],[-76.540082,39.267113],[-76.540097,39.267113],[-76.540111,39.267114],[-76.540125,39.267114],[-76.540139,39.267115],[-76.540153,39.267115],[-76.540167,39.267116],[-76.540181,39.267116],[-76.540195,39.267116],[-76.540209,39.267117],[-76.54022399999999,39.267117],[-76.540238,39.267117],[-76.540252,39.267117],[-76.540266,39.267117],[-76.54028,39.267117],[-76.540294,39.267117],[-76.540308,39.267117],[-76.540323,39.267117],[-76.54033699999999,39.267117],[-76.540351,39.267117],[-76.54036499999999,39.267117],[-76.540379,39.267116],[-76.54039299999999,39.267116],[-76.540407,39.267115],[-76.54042200000001,39.267114],[-76.540435,39.267115],[-76.540429,39.267125],[-76.54041700000001,39.267131],[-76.540403,39.267134],[-76.540389,39.267134],[-76.540375,39.267133],[-76.540361,39.267132],[-76.540347,39.267132],[-76.540333,39.267131],[-76.540318,39.267131],[-76.54030400000001,39.267131],[-76.54029,39.267131],[-76.54027600000001,39.267131],[-76.540262,39.267131],[-76.54024800000001,39.267131],[-76.540234,39.267131],[-76.54022000000001,39.267132],[-76.540205,39.267132],[-76.54019099999999,39.267133],[-76.540177,39.267133],[-76.54016300000001,39.267132],[-76.540149,39.267131],[-76.54013500000001,39.26713],[-76.540121,39.267129],[-76.54010700000001,39.267128],[-76.540093,39.267127],[-76.54007900000001,39.267126],[-76.540065,39.267125],[-76.54005100000001,39.267124],[-76.540036,39.267124],[-76.54002199999999,39.267124],[-76.540008,39.267123],[-76.53999399999999,39.267123],[-76.53998,39.267123],[-76.53996600000001,39.267122],[-76.539952,39.267122],[-76.53993800000001,39.267122],[-76.539923,39.267121],[-76.53990899999999,39.267121],[-76.539895,39.267121],[-76.53988099999999,39.26712],[-76.539867,39.26712],[-76.53985299999999,39.26712],[-76.539839,39.26712],[-76.53982499999999,39.26712],[-76.53981,39.267119],[-76.539796,39.267119],[-76.539782,39.267118],[-76.539768,39.267117],[-76.539754,39.267116],[-76.53973999999999,39.267115],[-76.539726,39.267114],[-76.53971199999999,39.267113],[-76.539698,39.267113],[-76.53968399999999,39.267112],[-76.53967,39.267111],[-76.539655,39.267111],[-76.539641,39.26711],[-76.539627,39.267109],[-76.539613,39.267109],[-76.539599,39.267108],[-76.539585,39.267108],[-76.539571,39.267107],[-76.539557,39.267107],[-76.53954299999999,39.267107],[-76.539528,39.267108],[-76.539514,39.267109],[-76.5395,39.26711],[-76.53948699999999,39.267113],[-76.539473,39.267117],[-76.539466,39.267126],[-76.539467,39.267137],[-76.539468,39.267148],[-76.539469,39.267159],[-76.53946999999999,39.26717],[-76.53947100000001,39.26718],[-76.539473,39.267191],[-76.539474,39.267202],[-76.53947599999999,39.267213],[-76.53947700000001,39.267224],[-76.539479,39.267235],[-76.53948,39.267246],[-76.539483,39.267257],[-76.539486,39.267268],[-76.539491,39.267278],[-76.53949299999999,39.267289],[-76.539491,39.2673],[-76.539486,39.26731],[-76.53948,39.267317],[-76.539479,39.267319],[-76.539466,39.267324],[-76.539452,39.267326],[-76.539438,39.267328],[-76.53942499999999,39.267326],[-76.539419,39.267316],[-76.53941399999999,39.267306],[-76.539417,39.267284],[-76.539417,39.267273],[-76.53941500000001,39.267262],[-76.539413,39.267251],[-76.53941,39.267241],[-76.53940799999999,39.26723],[-76.539405,39.267219],[-76.53940299999999,39.267208],[-76.5394,39.267197],[-76.53939800000001,39.267187],[-76.539395,39.267176],[-76.539393,39.267165],[-76.53939099999999,39.267154],[-76.539389,39.267143],[-76.539387,39.267132],[-76.539385,39.267121],[-76.539384,39.26711],[-76.539383,39.2671],[-76.53938100000001,39.267089],[-76.53937999999999,39.267078],[-76.539379,39.267067],[-76.539378,39.267056],[-76.539377,39.267045],[-76.539376,39.267034],[-76.53937500000001,39.267023],[-76.539374,39.267012],[-76.539372,39.267001],[-76.539371,39.26699],[-76.53936899999999,39.266979],[-76.539367,39.266968],[-76.539365,39.266957],[-76.53936299999999,39.266946],[-76.539361,39.266936],[-76.53935300000001,39.266926],[-76.539342,39.26692],[-76.539328,39.266919],[-76.539314,39.266918],[-76.5393,39.266916],[-76.539286,39.266915],[-76.539272,39.266914],[-76.539258,39.266913],[-76.539244,39.266913],[-76.53922900000001,39.266913],[-76.539215,39.266914],[-76.53920100000001,39.266915],[-76.539187,39.266916],[-76.53917300000001,39.266917],[-76.539159,39.266918],[-76.539145,39.266919],[-76.539131,39.26692],[-76.539117,39.266921],[-76.539103,39.266922],[-76.539089,39.266923],[-76.539075,39.266924],[-76.53906000000001,39.266924],[-76.539046,39.266925],[-76.53903200000001,39.266926],[-76.539018,39.266926],[-76.53900400000001,39.266927],[-76.53899,39.266927],[-76.53897600000001,39.266928],[-76.538962,39.266928],[-76.538948,39.266929],[-76.538933,39.266929],[-76.53891900000001,39.266929],[-76.538905,39.26693],[-76.53889100000001,39.26693],[-76.538877,39.26693],[-76.53886300000001,39.26693],[-76.538849,39.26693],[-76.53883500000001,39.26693],[-76.53882,39.266929],[-76.53880599999999,39.266929],[-76.538792,39.266929],[-76.53877799999999,39.266928],[-76.538764,39.266928],[-76.53874999999999,39.266928],[-76.538736,39.266928],[-76.53872200000001,39.266928],[-76.538707,39.266928],[-76.53869299999999,39.266928],[-76.538679,39.266929],[-76.53866499999999,39.266929],[-76.538651,39.266929],[-76.53863699999999,39.266929],[-76.538623,39.266929],[-76.53860899999999,39.266928],[-76.538594,39.266928],[-76.53858,39.266927],[-76.538566,39.266926],[-76.538552,39.266925],[-76.538538,39.266924],[-76.538524,39.266923],[-76.538522,39.266923],[-76.53851,39.266922],[-76.53849599999999,39.266921],[-76.538482,39.266919],[-76.53846799999999,39.266918],[-76.538454,39.266917],[-76.53843999999999,39.266917],[-76.538426,39.266916],[-76.538411,39.266915],[-76.538397,39.266915],[-76.538383,39.266915],[-76.538369,39.266915],[-76.538355,39.266914],[-76.538341,39.266914],[-76.538327,39.266913],[-76.538313,39.266913],[-76.53829899999999,39.266912],[-76.538285,39.26691],[-76.53827099999999,39.266909],[-76.538257,39.266907],[-76.53824299999999,39.266905],[-76.538229,39.266903],[-76.53821499999999,39.266901],[-76.538201,39.2669],[-76.53818699999999,39.266898],[-76.538173,39.266896],[-76.53815899999999,39.266895],[-76.538145,39.266894],[-76.53813100000001,39.266894],[-76.538117,39.266893],[-76.53810199999999,39.266893],[-76.538088,39.266893],[-76.53807399999999,39.266893],[-76.53806,39.266893],[-76.53804599999999,39.266893],[-76.538032,39.266893],[-76.53801799999999,39.266894],[-76.538004,39.266894],[-76.537989,39.266894],[-76.537975,39.266894],[-76.537961,39.266894],[-76.537947,39.266895],[-76.537933,39.266895],[-76.537919,39.266895],[-76.537904,39.266895],[-76.537891,39.266897],[-76.53787800000001,39.266902],[-76.53786700000001,39.266909],[-76.537858,39.266917],[-76.53784899999999,39.266926],[-76.53784,39.266934],[-76.537829,39.266938],[-76.53781499999999,39.266936],[-76.537806,39.266928],[-76.5378,39.266918],[-76.537798,39.266907],[-76.537795,39.266896],[-76.537792,39.266885],[-76.53778699999999,39.266875],[-76.537775,39.266869],[-76.537761,39.266867],[-76.537747,39.266866],[-76.537733,39.266867],[-76.537719,39.266867],[-76.53770400000001,39.266868],[-76.53769,39.266869],[-76.537676,39.266869],[-76.537662,39.26687],[-76.537648,39.266869],[-76.537634,39.266868],[-76.53762,39.266866],[-76.537606,39.266865],[-76.537592,39.266864],[-76.537578,39.266863],[-76.537564,39.266863],[-76.53755,39.266862],[-76.537536,39.266861],[-76.537521,39.266861],[-76.53750700000001,39.26686],[-76.537493,39.26686],[-76.537479,39.26686],[-76.537465,39.266859],[-76.537451,39.266859],[-76.537437,39.266858],[-76.537423,39.266857],[-76.537409,39.266855],[-76.537395,39.266853],[-76.537381,39.266851],[-76.537367,39.266849],[-76.537353,39.266847],[-76.537339,39.266845],[-76.53732599999999,39.266842],[-76.537312,39.26684],[-76.53729800000001,39.266838],[-76.537284,39.266836],[-76.53727000000001,39.266834],[-76.537256,39.266832],[-76.53724200000001,39.26683],[-76.537228,39.266829],[-76.53721400000001,39.266828],[-76.5372,39.266827],[-76.53718600000001,39.266826],[-76.537172,39.266826],[-76.53715800000001,39.266825],[-76.537144,39.266825],[-76.53712899999999,39.266824],[-76.537115,39.266823],[-76.537102,39.266821],[-76.537088,39.266819],[-76.537074,39.266817],[-76.53706,39.266815],[-76.537046,39.266813],[-76.537032,39.266811],[-76.537018,39.266809],[-76.537004,39.266807],[-76.536991,39.266804],[-76.53697699999999,39.266801],[-76.536963,39.266798],[-76.53695,39.266795],[-76.536936,39.266791],[-76.536923,39.266788],[-76.53690899999999,39.266785],[-76.536896,39.266782],[-76.53688200000001,39.26678],[-76.536868,39.266777],[-76.53685400000001,39.266776],[-76.53684,39.266775],[-76.536826,39.266774],[-76.536812,39.266773],[-76.536798,39.266771],[-76.536784,39.266769],[-76.53677,39.266767],[-76.536756,39.266765],[-76.536742,39.266763],[-76.53672899999999,39.266761],[-76.536715,39.266759],[-76.53670099999999,39.266758],[-76.536687,39.266756],[-76.53667299999999,39.266754],[-76.536659,39.266753],[-76.53664499999999,39.266751],[-76.536631,39.26675],[-76.53661700000001,39.266748],[-76.536603,39.266747],[-76.53658900000001,39.266746],[-76.536575,39.266745],[-76.53655999999999,39.266744],[-76.536546,39.266743],[-76.53653199999999,39.266742],[-76.536518,39.266741],[-76.53650399999999,39.266739],[-76.53649,39.266738],[-76.536477,39.266735],[-76.536463,39.266733],[-76.536449,39.26673],[-76.53643599999999,39.266727],[-76.536422,39.266724],[-76.53640799999999,39.266721],[-76.536395,39.266718],[-76.53638100000001,39.266715],[-76.536368,39.266712],[-76.536354,39.266709],[-76.53634,39.266706],[-76.536327,39.266703],[-76.53631300000001,39.266699],[-76.5363,39.266696],[-76.536287,39.266692],[-76.53627400000001,39.266688],[-76.53626,39.266684],[-76.536247,39.26668],[-76.53623399999999,39.266676],[-76.536221,39.266672],[-76.536208,39.266667],[-76.53619500000001,39.266663],[-76.536182,39.26666],[-76.53616700000001,39.266659],[-76.536153,39.26666],[-76.536141,39.266665],[-76.53613199999999,39.266674],[-76.536123,39.266682],[-76.53611100000001,39.266688],[-76.5361,39.266684],[-76.536101,39.266673],[-76.536101,39.266662],[-76.53609899999999,39.266651],[-76.53608699999999,39.266646],[-76.536073,39.266644],[-76.53605899999999,39.266642],[-76.536045,39.266639],[-76.53603200000001,39.266636],[-76.536018,39.266633],[-76.53600400000001,39.266631],[-76.53599,39.266629],[-76.53597600000001,39.266628],[-76.535962,39.266627],[-76.535948,39.266625],[-76.535934,39.266623],[-76.53592,39.266621],[-76.53590699999999,39.266619],[-76.535893,39.266616],[-76.53587899999999,39.266613],[-76.535866,39.266611],[-76.53585200000001,39.266609],[-76.535838,39.266608],[-76.53582400000001,39.266607],[-76.535809,39.266606],[-76.53579499999999,39.266606],[-76.535781,39.266605],[-76.53576700000001,39.266604],[-76.535753,39.266603],[-76.53573900000001,39.266601],[-76.535725,39.266599],[-76.53571100000001,39.266598],[-76.535697,39.266596],[-76.53568300000001,39.266595],[-76.535669,39.266595],[-76.53565500000001,39.266594],[-76.53565,39.266594],[-76.535641,39.266594],[-76.53562700000001,39.266592],[-76.535613,39.266591],[-76.535599,39.26659],[-76.535585,39.266588],[-76.535571,39.266586],[-76.535557,39.266585],[-76.535543,39.266584],[-76.535529,39.266582],[-76.535515,39.26658],[-76.53550199999999,39.266576],[-76.535489,39.266572],[-76.53547500000001,39.266568],[-76.535462,39.266565],[-76.535448,39.266561],[-76.535436,39.266557],[-76.53542299999999,39.266552],[-76.53541,39.266547],[-76.535397,39.266543],[-76.53538500000001,39.266538],[-76.535372,39.266533],[-76.53536,39.266527],[-76.535347,39.266522],[-76.535335,39.266517],[-76.53532199999999,39.266512],[-76.53531,39.266506],[-76.535297,39.266501],[-76.535285,39.266496],[-76.53527200000001,39.266491],[-76.53525999999999,39.266486],[-76.535247,39.266481],[-76.535234,39.266477],[-76.53522100000001,39.266473],[-76.535208,39.266469],[-76.535194,39.266466],[-76.53518099999999,39.266462],[-76.535168,39.266457],[-76.535156,39.266453],[-76.53514300000001,39.266448],[-76.53513,39.266443],[-76.53511399999999,39.266437],[-76.535101,39.266433],[-76.535087,39.266429],[-76.53507399999999,39.266425],[-76.535061,39.266421],[-76.535048,39.266418],[-76.535034,39.266414],[-76.535021,39.26641],[-76.535008,39.266406],[-76.534994,39.266403],[-76.534981,39.266399],[-76.53496800000001,39.266396],[-76.534954,39.266393],[-76.53494000000001,39.266391],[-76.534926,39.266389],[-76.53491200000001,39.266387],[-76.534898,39.266385],[-76.53488400000001,39.266384],[-76.53487,39.266382],[-76.534856,39.266381],[-76.534842,39.266379],[-76.534829,39.266376],[-76.53481499999999,39.266374],[-76.534801,39.266371],[-76.53478800000001,39.266368],[-76.534774,39.266365],[-76.53476000000001,39.266362],[-76.534747,39.266359],[-76.534733,39.266356],[-76.53471999999999,39.266352],[-76.534706,39.266349],[-76.534693,39.266346],[-76.534679,39.266342],[-76.534666,39.266339],[-76.53465300000001,39.266336],[-76.534639,39.266332],[-76.534626,39.266329],[-76.534612,39.266325],[-76.534599,39.266322],[-76.53458500000001,39.266319],[-76.534572,39.266316],[-76.534558,39.266312],[-76.53454499999999,39.266309],[-76.534531,39.266306],[-76.53451800000001,39.266303],[-76.534504,39.2663],[-76.534491,39.266297],[-76.534477,39.266293],[-76.534464,39.26629],[-76.534451,39.266286],[-76.534437,39.266282],[-76.534424,39.266278],[-76.53441100000001,39.266273],[-76.534398,39.266269],[-76.534385,39.266265],[-76.534372,39.26626],[-76.53435899999999,39.266256],[-76.534346,39.266252],[-76.534333,39.266248],[-76.534319,39.266245],[-76.534306,39.266243],[-76.53429199999999,39.26624],[-76.534278,39.266238],[-76.53426399999999,39.266237],[-76.53425,39.266235],[-76.53423600000001,39.266234],[-76.534222,39.266234],[-76.53420800000001,39.266233],[-76.534194,39.26623],[-76.534181,39.266227],[-76.534167,39.266223],[-76.534154,39.266219],[-76.53414100000001,39.266215],[-76.534128,39.266211],[-76.534115,39.266207],[-76.534102,39.266202],[-76.53408899999999,39.266198],[-76.534076,39.266193],[-76.534063,39.266189],[-76.53404999999999,39.266184],[-76.534037,39.26618],[-76.534024,39.266175],[-76.53401100000001,39.266171],[-76.533998,39.266167],[-76.533985,39.266163],[-76.53397200000001,39.266158],[-76.533959,39.266154],[-76.533946,39.26615],[-76.533933,39.266145],[-76.53392100000001,39.266141],[-76.533908,39.266136],[-76.533895,39.266131],[-76.533883,39.266126],[-76.53386999999999,39.266121],[-76.533858,39.266116],[-76.533845,39.266111],[-76.533832,39.266106],[-76.53381899999999,39.266101],[-76.533807,39.266097],[-76.533794,39.266092],[-76.533781,39.266087],[-76.53376799999999,39.266083],[-76.533756,39.266078],[-76.533743,39.266073],[-76.53373000000001,39.266069],[-76.533717,39.266064],[-76.533704,39.26606],[-76.533691,39.266055],[-76.53367900000001,39.26605],[-76.533666,39.266045],[-76.533654,39.26604],[-76.533641,39.266035],[-76.533629,39.26603],[-76.53361599999999,39.266025],[-76.533604,39.26602],[-76.533591,39.266015],[-76.533579,39.266009],[-76.53356599999999,39.266004],[-76.533554,39.265999],[-76.533541,39.265994],[-76.533528,39.265989],[-76.53351600000001,39.265985],[-76.533503,39.26598],[-76.53349,39.265975],[-76.533478,39.26597],[-76.53346500000001,39.265965],[-76.53345299999999,39.265959],[-76.53344199999999,39.265953],[-76.533429,39.265947],[-76.533416,39.265943],[-76.53340300000001,39.26594],[-76.533389,39.265937],[-76.53337500000001,39.265934],[-76.533362,39.26593],[-76.533349,39.265927],[-76.53333600000001,39.265923],[-76.533323,39.265918],[-76.533309,39.265914],[-76.53329600000001,39.26591],[-76.533283,39.265906],[-76.533271,39.265901],[-76.533258,39.265896],[-76.53324499999999,39.265891],[-76.533233,39.265886],[-76.533221,39.26588],[-76.533209,39.265875],[-76.533197,39.265869],[-76.53318400000001,39.265864],[-76.53317199999999,39.265859],[-76.533159,39.265854],[-76.533146,39.265849],[-76.53313300000001,39.265844],[-76.53312099999999,39.26584],[-76.533108,39.265835],[-76.533096,39.265829],[-76.533083,39.265824],[-76.53307100000001,39.265819],[-76.533058,39.265814],[-76.533045,39.26581],[-76.53303099999999,39.265808],[-76.533017,39.265806],[-76.53300400000001,39.265803],[-76.53299,39.2658],[-76.532977,39.265796],[-76.532963,39.265792],[-76.53295,39.265789],[-76.532937,39.265785],[-76.532923,39.265781],[-76.53291,39.265779],[-76.53289599999999,39.265776],[-76.532882,39.265774],[-76.53286799999999,39.265772],[-76.532854,39.265771],[-76.53283999999999,39.26577],[-76.532826,39.265769],[-76.53281200000001,39.265769],[-76.532798,39.265768],[-76.53278400000001,39.265768],[-76.532769,39.265769],[-76.53275499999999,39.265769],[-76.532741,39.26577],[-76.53272699999999,39.265771],[-76.532713,39.265773],[-76.53269899999999,39.265776],[-76.532685,39.265779],[-76.53267099999999,39.265781],[-76.532658,39.265782],[-76.532644,39.265781],[-76.53263,39.265779],[-76.532617,39.265775],[-76.53260400000001,39.26577],[-76.53259,39.265767],[-76.532577,39.265764],[-76.532563,39.265761],[-76.53254800000001,39.265759],[-76.532534,39.265756],[-76.53252000000001,39.265754],[-76.532505,39.265752],[-76.53249099999999,39.265752],[-76.532478,39.265752],[-76.53247,39.265753],[-76.532467,39.265731],[-76.532472,39.265731],[-76.532479,39.26573],[-76.53248600000001,39.265729],[-76.532493,39.265729],[-76.5325,39.265728],[-76.532507,39.265727],[-76.53251400000001,39.265727],[-76.532521,39.265726],[-76.532528,39.265726],[-76.532535,39.265725],[-76.53254200000001,39.265725],[-76.53255,39.265724],[-76.532557,39.265724],[-76.53256399999999,39.265723],[-76.532571,39.265723],[-76.532578,39.265722],[-76.532585,39.265721],[-76.53259199999999,39.26572],[-76.532599,39.265719],[-76.532605,39.265718],[-76.532612,39.265717],[-76.532619,39.265715],[-76.53262599999999,39.265714],[-76.532633,39.265712],[-76.532639,39.265711],[-76.532646,39.265709],[-76.532653,39.265707],[-76.53266000000001,39.265706],[-76.53266600000001,39.265704],[-76.532673,39.265703],[-76.53268,39.265701],[-76.532687,39.2657],[-76.53269400000001,39.265699],[-76.532701,39.265698],[-76.532708,39.265697],[-76.532715,39.265696],[-76.53272200000001,39.265695],[-76.532729,39.265694],[-76.532735,39.265693],[-76.532742,39.265692],[-76.532749,39.265691],[-76.53275600000001,39.26569],[-76.532763,39.265689],[-76.53277,39.265688],[-76.532777,39.265687],[-76.53278400000001,39.265686],[-76.532791,39.265685],[-76.532798,39.265684],[-76.532805,39.265683],[-76.53281200000001,39.265683],[-76.532819,39.265682],[-76.532826,39.265682],[-76.532833,39.265682],[-76.53283999999999,39.265682],[-76.532848,39.265682],[-76.532855,39.265682],[-76.53286199999999,39.265682],[-76.53286900000001,39.265682],[-76.532876,39.265683],[-76.532883,39.265684],[-76.53288999999999,39.265685],[-76.53289599999999,39.265686],[-76.532903,39.265688],[-76.53291,39.26569],[-76.532916,39.265693],[-76.532922,39.265695],[-76.532928,39.265698],[-76.532934,39.265702],[-76.53294,39.265705],[-76.532945,39.265708],[-76.532951,39.265711],[-76.532957,39.265714],[-76.532963,39.265717],[-76.53296899999999,39.265721],[-76.53297499999999,39.265724],[-76.53298100000001,39.265727],[-76.53298700000001,39.26573],[-76.532993,39.265732],[-76.532999,39.265735],[-76.533006,39.265736],[-76.533013,39.265737],[-76.53301999999999,39.265738],[-76.533027,39.265738],[-76.533034,39.265739],[-76.533041,39.26574],[-76.533047,39.265742],[-76.53305400000001,39.265744],[-76.533061,39.265746],[-76.533067,39.265747],[-76.533074,39.265749],[-76.533081,39.265751],[-76.53308699999999,39.265753],[-76.53309400000001,39.265756],[-76.5331,39.265758],[-76.533107,39.26576],[-76.533113,39.265762],[-76.533119,39.265765],[-76.533126,39.265768],[-76.53313199999999,39.26577],[-76.53313799999999,39.265773],[-76.53314399999999,39.265775],[-76.533151,39.265778],[-76.533157,39.26578],[-76.533163,39.265783],[-76.53317,39.265785],[-76.53317699999999,39.265786],[-76.53318299999999,39.265788],[-76.53319,39.26579],[-76.533197,39.265792],[-76.533203,39.265793],[-76.53321,39.265795],[-76.53321699999999,39.265796],[-76.533224,39.265798],[-76.533231,39.265799],[-76.533237,39.2658],[-76.533244,39.265802],[-76.53325100000001,39.265803],[-76.533258,39.265805],[-76.533265,39.265806],[-76.533272,39.265807],[-76.53327899999999,39.265809],[-76.53328500000001,39.26581],[-76.533292,39.265811],[-76.533299,39.265813],[-76.533306,39.265814],[-76.53331300000001,39.265816],[-76.53332,39.265817],[-76.533326,39.265819],[-76.533333,39.265821],[-76.53334,39.265822],[-76.53334599999999,39.265824],[-76.53335300000001,39.265826],[-76.533359,39.265828],[-76.533366,39.26583],[-76.533372,39.265833],[-76.533379,39.265835],[-76.533385,39.265838],[-76.53339099999999,39.26584],[-76.53339699999999,39.265843],[-76.533404,39.265845],[-76.53341,39.265848],[-76.533416,39.265851],[-76.533422,39.265853],[-76.533429,39.265856],[-76.533435,39.265858],[-76.533441,39.265861],[-76.53344800000001,39.265863],[-76.53345400000001,39.265865],[-76.533461,39.265868],[-76.533467,39.26587],[-76.533473,39.265872],[-76.53348,39.265875],[-76.533486,39.265877],[-76.53349300000001,39.265879],[-76.53349900000001,39.265882],[-76.53350500000001,39.265884],[-76.533512,39.265886],[-76.533518,39.265889],[-76.533525,39.265891],[-76.533531,39.265893],[-76.53353799999999,39.265895],[-76.53354400000001,39.265897],[-76.533551,39.2659],[-76.533557,39.265902],[-76.533564,39.265904],[-76.53357,39.265906],[-76.53357699999999,39.265907],[-76.533584,39.265909],[-76.53359,39.265911],[-76.533597,39.265912],[-76.533604,39.265913],[-76.53361099999999,39.265915],[-76.533618,39.265916],[-76.533625,39.265917],[-76.533631,39.265919],[-76.533638,39.26592],[-76.53364500000001,39.265922],[-76.533652,39.265924],[-76.533658,39.265926],[-76.533665,39.265927],[-76.533672,39.265929],[-76.53367799999999,39.265931],[-76.53368500000001,39.265933],[-76.533692,39.265935],[-76.533698,39.265937],[-76.533705,39.265939],[-76.533711,39.265941],[-76.53371799999999,39.265943],[-76.533725,39.265945],[-76.533731,39.265947],[-76.533738,39.265949],[-76.533744,39.265951],[-76.533751,39.265953],[-76.53375699999999,39.265955],[-76.53376400000001,39.265957],[-76.533771,39.265959],[-76.533777,39.265961],[-76.533784,39.265963],[-76.53379,39.265965],[-76.53379700000001,39.265967],[-76.533804,39.265969],[-76.53381,39.265971],[-76.533817,39.265973],[-76.533823,39.265975],[-76.53382999999999,39.265977],[-76.53383599999999,39.26598],[-76.533843,39.265982],[-76.533849,39.265984],[-76.533855,39.265987],[-76.533861,39.265989],[-76.533868,39.265992],[-76.533874,39.265995],[-76.53388,39.265997],[-76.533886,39.266],[-76.53389199999999,39.266003],[-76.53389799999999,39.266006],[-76.533903,39.266009],[-76.53390899999999,39.266013],[-76.53391499999999,39.266016],[-76.53392100000001,39.266019],[-76.53392700000001,39.266022],[-76.533933,39.266025],[-76.53393800000001,39.266028],[-76.53394400000001,39.266031],[-76.53395,39.266034],[-76.533956,39.266037],[-76.533962,39.26604],[-76.533968,39.266043],[-76.533975,39.266045],[-76.533981,39.266048],[-76.533987,39.26605],[-76.53399400000001,39.266052],[-76.53400000000001,39.266054],[-76.534007,39.266056],[-76.534013,39.266058],[-76.53402,39.26606],[-76.53402699999999,39.266062],[-76.53403299999999,39.266064],[-76.53404,39.266066],[-76.534047,39.266068],[-76.534053,39.26607],[-76.53406,39.266072],[-76.53406699999999,39.266074],[-76.53407300000001,39.266075],[-76.53408,39.266077],[-76.534086,39.266079],[-76.534093,39.266081],[-76.5341,39.266083],[-76.53410599999999,39.266085],[-76.534113,39.266087],[-76.53412,39.266089],[-76.534126,39.266091],[-76.534133,39.266093],[-76.534139,39.266095],[-76.53414600000001,39.266097],[-76.534153,39.266099],[-76.534159,39.2661],[-76.534166,39.266102],[-76.534173,39.266104],[-76.53417899999999,39.266106],[-76.53418600000001,39.266108],[-76.534193,39.26611],[-76.534199,39.266111],[-76.534206,39.266113],[-76.53421299999999,39.266115],[-76.53421899999999,39.266117],[-76.534226,39.266118],[-76.534233,39.26612],[-76.534239,39.266122],[-76.534246,39.266124],[-76.53425300000001,39.266125],[-76.53426,39.266127],[-76.534266,39.266129],[-76.534273,39.26613],[-76.53428,39.266132],[-76.53428700000001,39.266133],[-76.53429300000001,39.266135],[-76.5343,39.266136],[-76.534307,39.266138],[-76.53431399999999,39.266139],[-76.53432100000001,39.26614],[-76.534328,39.266141],[-76.534335,39.266142],[-76.534342,39.266143],[-76.53434900000001,39.266144],[-76.534356,39.266144],[-76.534363,39.266145],[-76.53437,39.266147],[-76.53437599999999,39.266148],[-76.53438300000001,39.266149],[-76.53439,39.266151],[-76.534397,39.266152],[-76.53440399999999,39.266153],[-76.53441100000001,39.266155],[-76.534417,39.266156],[-76.534424,39.266158],[-76.534431,39.266159],[-76.53443799999999,39.266161],[-76.53444500000001,39.266162],[-76.534451,39.266164],[-76.534458,39.266165],[-76.534465,39.266167],[-76.53447199999999,39.266169],[-76.53447799999999,39.26617],[-76.534485,39.266172],[-76.534492,39.266174],[-76.534499,39.266175],[-76.534505,39.266177],[-76.53451200000001,39.266179],[-76.534519,39.266181],[-76.534525,39.266182],[-76.534532,39.266184],[-76.534539,39.266186],[-76.53454499999999,39.266188],[-76.53455200000001,39.266189],[-76.534559,39.266191],[-76.534566,39.266193],[-76.534572,39.266195],[-76.53457899999999,39.266196],[-76.534586,39.266198],[-76.534592,39.2662],[-76.534599,39.266201],[-76.534606,39.266203],[-76.53461299999999,39.266205],[-76.53461900000001,39.266206],[-76.534626,39.266208],[-76.534633,39.266209],[-76.53464,39.266211],[-76.534646,39.266213],[-76.53465300000001,39.266214],[-76.53466,39.266216],[-76.534667,39.266218],[-76.534673,39.266219],[-76.53467999999999,39.266221],[-76.53468700000001,39.266223],[-76.534693,39.266224],[-76.5347,39.266226],[-76.534707,39.266228],[-76.53471399999999,39.266229],[-76.53471999999999,39.266231],[-76.534727,39.266232],[-76.534734,39.266234],[-76.534741,39.266235],[-76.53474799999999,39.266236],[-76.534755,39.266238],[-76.534762,39.266239],[-76.534768,39.26624],[-76.534775,39.266241],[-76.53478200000001,39.266243],[-76.534789,39.266244],[-76.534796,39.266245],[-76.534803,39.266247],[-76.53480999999999,39.266248],[-76.53481600000001,39.266249],[-76.534823,39.266251],[-76.53483,39.266252],[-76.534837,39.266253],[-76.53484400000001,39.266255],[-76.534851,39.266256],[-76.534858,39.266257],[-76.534864,39.266259],[-76.534871,39.26626],[-76.53487800000001,39.266261],[-76.534885,39.266263],[-76.534892,39.266264],[-76.534899,39.266266],[-76.53490499999999,39.266267],[-76.53491200000001,39.266269],[-76.534919,39.26627],[-76.534926,39.266272],[-76.534932,39.266274],[-76.53493899999999,39.266275],[-76.53494600000001,39.266277],[-76.534953,39.266279],[-76.534959,39.26628],[-76.534966,39.266282],[-76.53497299999999,39.266284],[-76.53497900000001,39.266285],[-76.534986,39.266287],[-76.534993,39.266289],[-76.535,39.266291],[-76.535006,39.266293],[-76.53501300000001,39.266294],[-76.53502,39.266296],[-76.535026,39.266298],[-76.535033,39.2663],[-76.53504,39.266302],[-76.53504599999999,39.266303],[-76.535053,39.266305],[-76.535059,39.266307],[-76.535066,39.266309],[-76.535073,39.266311],[-76.535079,39.266313],[-76.53508600000001,39.266315],[-76.535093,39.266317],[-76.535099,39.266319],[-76.535106,39.266321],[-76.535112,39.266323],[-76.53511899999999,39.266325],[-76.53512499999999,39.266327],[-76.535132,39.266329],[-76.535149,39.266334],[-76.535162,39.266339],[-76.535175,39.266343],[-76.53518800000001,39.266348],[-76.535201,39.266352],[-76.535214,39.266357],[-76.53522700000001,39.266361],[-76.535239,39.266366],[-76.535252,39.266371],[-76.535265,39.266376],[-76.53527800000001,39.26638],[-76.53529,39.266385],[-76.535303,39.26639],[-76.53531599999999,39.266395],[-76.53532800000001,39.2664],[-76.535341,39.266404],[-76.535354,39.266409],[-76.535366,39.266414],[-76.53537900000001,39.266419],[-76.535391,39.266425],[-76.535404,39.26643],[-76.535416,39.266435],[-76.535428,39.26644],[-76.53544100000001,39.266446],[-76.535453,39.266451],[-76.535465,39.266457],[-76.535478,39.266462],[-76.53549099999999,39.266466],[-76.535504,39.266469],[-76.535518,39.266472],[-76.53553100000001,39.266475],[-76.535545,39.266478],[-76.53555900000001,39.26648],[-76.535573,39.266482],[-76.53558700000001,39.266484],[-76.535601,39.266487],[-76.535614,39.266489],[-76.535628,39.266492],[-76.53563800000001,39.266494],[-76.535642,39.266495],[-76.535656,39.266497],[-76.535669,39.2665],[-76.53568300000001,39.266502],[-76.535697,39.266503],[-76.53571100000001,39.266503],[-76.535725,39.266503],[-76.53574,39.266502],[-76.535754,39.266502],[-76.535768,39.266501],[-76.535782,39.266501],[-76.535796,39.266501],[-76.53581,39.266502],[-76.53582400000001,39.266503],[-76.535838,39.266504],[-76.53585200000001,39.266504],[-76.535867,39.266504],[-76.535881,39.266503],[-76.535894,39.266501],[-76.53590800000001,39.266498],[-76.535922,39.266495],[-76.53593499999999,39.266492],[-76.53594699999999,39.266485],[-76.53595799999999,39.266479],[-76.53597000000001,39.266473],[-76.535984,39.266471],[-76.53599800000001,39.26647],[-76.536012,39.26647],[-76.53602600000001,39.26647],[-76.53604,39.266469],[-76.536055,39.266469],[-76.536069,39.266468],[-76.536083,39.266468],[-76.536097,39.266468],[-76.53611100000001,39.26647],[-76.536125,39.266472],[-76.53613799999999,39.266474],[-76.536152,39.266477],[-76.53616599999999,39.26648],[-76.536179,39.266483],[-76.536193,39.266486],[-76.536207,39.266488],[-76.536221,39.26649],[-76.53623399999999,39.266493],[-76.536248,39.266495],[-76.53626199999999,39.266499],[-76.536275,39.266501],[-76.536289,39.266503],[-76.536303,39.266505],[-76.536317,39.266505],[-76.536332,39.266505],[-76.53634599999999,39.266506],[-76.53636,39.266507],[-76.536374,39.266508],[-76.536388,39.266509],[-76.536402,39.266509],[-76.536416,39.26651],[-76.53643,39.266512],[-76.536444,39.266514],[-76.536458,39.266516],[-76.53647100000001,39.266519],[-76.536485,39.266522],[-76.53649799999999,39.266526],[-76.536512,39.26653],[-76.536525,39.266533],[-76.53653799999999,39.266537],[-76.536551,39.266541],[-76.536564,39.266545],[-76.53657699999999,39.26655],[-76.53659,39.266554],[-76.536603,39.266559],[-76.536615,39.266565],[-76.53662799999999,39.266569],[-76.536641,39.266573],[-76.536654,39.266577],[-76.53666800000001,39.26658],[-76.536681,39.266583],[-76.53669499999999,39.266586],[-76.536709,39.266589],[-76.53672299999999,39.266591],[-76.536737,39.266592],[-76.536751,39.266594],[-76.536765,39.266596],[-76.536778,39.266599],[-76.53679200000001,39.266602],[-76.536805,39.266605],[-76.53681899999999,39.266609],[-76.536832,39.266613],[-76.536845,39.266616],[-76.53685900000001,39.266618],[-76.536873,39.266618],[-76.53688699999999,39.266615],[-76.5369,39.26661],[-76.536912,39.266605],[-76.536925,39.266601],[-76.536939,39.266598],[-76.536953,39.266596],[-76.536967,39.266595],[-76.536981,39.266596],[-76.536995,39.266599],[-76.537008,39.266602],[-76.53702199999999,39.266605],[-76.537035,39.266608],[-76.537049,39.266612],[-76.53706200000001,39.266616],[-76.537075,39.26662],[-76.53708899999999,39.266623],[-76.537102,39.266625],[-76.537116,39.266626],[-76.537131,39.266628],[-76.537144,39.266629],[-76.53715800000001,39.266631],[-76.537172,39.266633],[-76.53718600000001,39.266634],[-76.5372,39.266635],[-76.53721400000001,39.266636],[-76.537229,39.266637],[-76.537243,39.266638],[-76.537257,39.266639],[-76.537271,39.26664],[-76.537285,39.266641],[-76.537299,39.266642],[-76.537313,39.266644],[-76.537327,39.266645],[-76.537341,39.266645],[-76.53735500000001,39.266646],[-76.537369,39.266647],[-76.53738300000001,39.266647],[-76.537398,39.266648],[-76.537412,39.266648],[-76.537426,39.266648],[-76.53744,39.266648],[-76.537454,39.266649],[-76.537468,39.266649],[-76.537482,39.266649],[-76.537496,39.266649],[-76.53751099999999,39.266649],[-76.537525,39.266649],[-76.537539,39.266648],[-76.537553,39.266648],[-76.537567,39.266648],[-76.537581,39.266648],[-76.537595,39.266649],[-76.537609,39.266649],[-76.53762399999999,39.266649],[-76.537638,39.26665],[-76.53765199999999,39.266651],[-76.537666,39.266651],[-76.53767999999999,39.266651],[-76.537694,39.266651],[-76.53770799999999,39.26665],[-76.537722,39.26665],[-76.53773700000001,39.266649],[-76.537751,39.266649],[-76.53776499999999,39.266649],[-76.537779,39.26665],[-76.53779299999999,39.26665],[-76.537807,39.266651],[-76.53782099999999,39.266651],[-76.537835,39.266651],[-76.53785000000001,39.266651],[-76.537864,39.266651],[-76.53787800000001,39.26665],[-76.537892,39.266649],[-76.53790600000001,39.266649],[-76.53792,39.266648],[-76.53793400000001,39.266647],[-76.537948,39.266646],[-76.53796199999999,39.266646],[-76.537976,39.266645],[-76.53799100000001,39.266645],[-76.538005,39.266644],[-76.53801900000001,39.266644],[-76.538033,39.266644],[-76.53804700000001,39.266644],[-76.538061,39.266643],[-76.53807500000001,39.266643],[-76.538089,39.266642],[-76.538104,39.266641],[-76.538118,39.266642],[-76.538132,39.266642],[-76.538146,39.266644],[-76.53816,39.266646],[-76.538173,39.266649],[-76.53818699999999,39.266652],[-76.5382,39.266656],[-76.538213,39.26666],[-76.53822700000001,39.266663],[-76.53824,39.266666],[-76.53825399999999,39.266668],[-76.538268,39.26667],[-76.538282,39.266671],[-76.538296,39.26667],[-76.53831099999999,39.266669],[-76.538325,39.266668],[-76.53833899999999,39.266667],[-76.538353,39.266667],[-76.53836699999999,39.266666],[-76.538381,39.266665],[-76.53839499999999,39.266665],[-76.538409,39.266664],[-76.53842299999999,39.266663],[-76.538437,39.266663],[-76.53845200000001,39.266662],[-76.538466,39.266661],[-76.53848000000001,39.266661],[-76.538494,39.26666],[-76.53850799999999,39.26666],[-76.538522,39.26666],[-76.538524,39.26666],[-76.53853599999999,39.266659],[-76.53855,39.266659],[-76.53856500000001,39.266659],[-76.538579,39.266659],[-76.53859300000001,39.266659],[-76.538607,39.266659],[-76.53862100000001,39.266659],[-76.538635,39.266659],[-76.53864900000001,39.266659],[-76.538663,39.26666],[-76.538678,39.26666],[-76.538692,39.266661],[-76.538706,39.266663],[-76.538719,39.266665],[-76.53873299999999,39.266668],[-76.538747,39.266671],[-76.53876099999999,39.266673],[-76.538774,39.266675],[-76.538788,39.266677],[-76.538802,39.266679],[-76.538816,39.26668],[-76.538831,39.266681],[-76.53884499999999,39.266681],[-76.538859,39.266682],[-76.538873,39.266682],[-76.538887,39.266682],[-76.538901,39.266682],[-76.538915,39.266682],[-76.538929,39.266681],[-76.538943,39.266681],[-76.53895799999999,39.266681],[-76.538972,39.26668],[-76.53898599999999,39.26668],[-76.539,39.26668],[-76.53901399999999,39.26668],[-76.539028,39.266681],[-76.53904199999999,39.266681],[-76.539056,39.26668],[-76.53907,39.266679],[-76.539084,39.266677],[-76.539098,39.266676],[-76.539112,39.266673],[-76.539126,39.266671],[-76.53914,39.266669],[-76.539153,39.266666],[-76.53916700000001,39.266663],[-76.539181,39.26666],[-76.53919399999999,39.266656],[-76.539208,39.266653],[-76.539221,39.26665],[-76.53923399999999,39.266646],[-76.539248,39.266642],[-76.539261,39.266638],[-76.53927400000001,39.266635],[-76.539288,39.266632],[-76.53930200000001,39.26663],[-76.539316,39.266628],[-76.53933000000001,39.266626],[-76.539344,39.266624],[-76.53935799999999,39.266622],[-76.539371,39.266618],[-76.539383,39.266613],[-76.539395,39.266607],[-76.539407,39.266601],[-76.539419,39.266595],[-76.53943099999999,39.26659],[-76.539445,39.266586],[-76.539457,39.266581],[-76.53946999999999,39.266576],[-76.53948200000001,39.266571],[-76.539494,39.266565],[-76.539506,39.266558],[-76.539517,39.266552],[-76.539528,39.266545],[-76.53953799999999,39.266538],[-76.53954899999999,39.26653],[-76.539559,39.266523],[-76.53957,39.266515],[-76.53958,39.266508],[-76.539591,39.266501],[-76.53959999999999,39.266492],[-76.539607,39.266483],[-76.539615,39.266473],[-76.539625,39.266466],[-76.53963899999999,39.266463],[-76.539652,39.266459],[-76.539665,39.266455],[-76.53967799999999,39.26645],[-76.539691,39.266445],[-76.539703,39.266439],[-76.539715,39.266434],[-76.539727,39.266428],[-76.539739,39.266423],[-76.539751,39.266417],[-76.53976299999999,39.266411],[-76.53977500000001,39.266406],[-76.539778,39.266404],[-76.539781,39.266402],[-76.539784,39.2664],[-76.539787,39.266399],[-76.53979,39.266397],[-76.53979200000001,39.266395],[-76.539795,39.266394],[-76.539798,39.266392],[-76.539801,39.26639],[-76.539804,39.266389],[-76.539806,39.266387],[-76.53980900000001,39.266385],[-76.539812,39.266384],[-76.539815,39.266382],[-76.539818,39.26638],[-76.53982000000001,39.266379],[-76.539823,39.266377],[-76.53982600000001,39.266375],[-76.539828,39.266373],[-76.53983100000001,39.266372],[-76.539834,39.26637],[-76.53983599999999,39.266368],[-76.539839,39.266366],[-76.53984199999999,39.266364],[-76.539844,39.266362],[-76.53984699999999,39.26636],[-76.539849,39.266359],[-76.539852,39.266357],[-76.53985400000001,39.266355],[-76.539857,39.266353],[-76.53985900000001,39.266351],[-76.539862,39.266349],[-76.53986399999999,39.266347],[-76.539867,39.266345],[-76.539869,39.266343],[-76.53987100000001,39.266341],[-76.539874,39.266339],[-76.53987600000001,39.266337],[-76.539879,39.266335],[-76.53988099999999,39.266333],[-76.539883,39.266331],[-76.539886,39.266329],[-76.539888,39.266326],[-76.53989,39.266324],[-76.53989300000001,39.266322],[-76.539895,39.26632],[-76.539897,39.266318],[-76.53989900000001,39.266316],[-76.539902,39.266314],[-76.53990400000001,39.266312],[-76.539906,39.26631],[-76.539908,39.266307],[-76.53991000000001,39.266305],[-76.539912,39.266303],[-76.53991499999999,39.266301],[-76.539917,39.266299],[-76.539919,39.266296],[-76.53992100000001,39.266294],[-76.539923,39.266292],[-76.539924,39.266289],[-76.53992599999999,39.266287],[-76.539928,39.266285],[-76.539929,39.266282],[-76.539931,39.26628],[-76.539933,39.266277],[-76.539934,39.266275],[-76.539936,39.266272],[-76.53993699999999,39.26627],[-76.539939,39.266267],[-76.53994,39.266265],[-76.539942,39.266262],[-76.53994299999999,39.26626],[-76.539945,39.266257],[-76.539946,39.266255],[-76.539947,39.266252],[-76.53994899999999,39.26625],[-76.53995,39.266247],[-76.539951,39.266245],[-76.539952,39.266242],[-76.539953,39.266239],[-76.53995500000001,39.266237],[-76.539956,39.266234],[-76.539957,39.266232],[-76.539958,39.266229],[-76.539959,39.266226],[-76.53995999999999,39.266224],[-76.539962,39.266221],[-76.539963,39.266219],[-76.539964,39.266216],[-76.539968,39.266201],[-76.53997200000001,39.266191],[-76.539975,39.26618],[-76.539978,39.266169],[-76.53998199999999,39.266159],[-76.539985,39.266148],[-76.53998799999999,39.266137],[-76.539991,39.266127],[-76.539995,39.266116],[-76.539998,39.266105],[-76.540001,39.266094],[-76.540003,39.266084],[-76.54000600000001,39.266073],[-76.540009,39.266062],[-76.54001100000001,39.266051],[-76.540014,39.266041],[-76.54001700000001,39.26603],[-76.540019,39.266019],[-76.540021,39.266008],[-76.540024,39.265997],[-76.540026,39.265986],[-76.540029,39.265976],[-76.540031,39.265965],[-76.54003400000001,39.265954],[-76.540037,39.265943],[-76.54004,39.265932],[-76.540042,39.265922],[-76.54004500000001,39.265911],[-76.540047,39.2659],[-76.540049,39.265889],[-76.54004999999999,39.265878],[-76.54005100000001,39.265867],[-76.540052,39.265856],[-76.540052,39.265845],[-76.540052,39.265834],[-76.540052,39.265823],[-76.540053,39.265812],[-76.540053,39.265801],[-76.540053,39.26579],[-76.540053,39.265779],[-76.540053,39.265768],[-76.540053,39.265757],[-76.540054,39.265747],[-76.540054,39.265736],[-76.540055,39.265725],[-76.540055,39.265714],[-76.54005600000001,39.265703],[-76.54005600000001,39.265692],[-76.540057,39.265681],[-76.540057,39.26567],[-76.540058,39.265659],[-76.540058,39.265648],[-76.540058,39.265637],[-76.540059,39.265626],[-76.540059,39.265615],[-76.540059,39.265604],[-76.540059,39.265593],[-76.540059,39.265582],[-76.540059,39.265571],[-76.540059,39.26556],[-76.540059,39.265549],[-76.540059,39.265538],[-76.540059,39.265527],[-76.54006,39.265516],[-76.54006099999999,39.265505],[-76.54006200000001,39.265494],[-76.540063,39.265483],[-76.540064,39.265472],[-76.540065,39.265461],[-76.54006699999999,39.26545],[-76.54006800000001,39.265437],[-76.54006200000001,39.265433],[-76.540048,39.265439],[-76.54003899999999,39.265448],[-76.540031,39.265457],[-76.54002300000001,39.265466],[-76.540015,39.265475],[-76.54000499999999,39.265482],[-76.539991,39.265485],[-76.53998,39.265492],[-76.539969,39.265499],[-76.539958,39.265506],[-76.539948,39.265514],[-76.53993800000001,39.265522],[-76.539929,39.265531],[-76.53992100000001,39.265539],[-76.539912,39.265548],[-76.53990400000001,39.265557],[-76.539897,39.265566],[-76.539889,39.265575],[-76.53988099999999,39.265585],[-76.539874,39.265594],[-76.539867,39.265604],[-76.53986,39.265613],[-76.53985299999999,39.265623],[-76.539846,39.265632],[-76.53984,39.265642],[-76.539834,39.265652],[-76.539829,39.265663],[-76.539824,39.265673],[-76.53982000000001,39.265684],[-76.539817,39.265694],[-76.53981400000001,39.265705],[-76.539811,39.265716],[-76.53980799999999,39.265726],[-76.539805,39.265737],[-76.53980300000001,39.265748],[-76.5398,39.265759],[-76.53979699999999,39.26577],[-76.539794,39.26578],[-76.53979200000001,39.265791],[-76.539789,39.265802],[-76.53978499999999,39.265812],[-76.53977999999999,39.265823],[-76.539773,39.265832],[-76.539762,39.26584],[-76.539749,39.265838],[-76.539736,39.265832],[-76.539727,39.265824],[-76.53971900000001,39.265815],[-76.53971199999999,39.265805],[-76.539705,39.265795],[-76.539699,39.265785],[-76.539694,39.265775],[-76.539689,39.265765],[-76.53968399999999,39.265755],[-76.53967900000001,39.265744],[-76.53967400000001,39.265734],[-76.53967,39.265724],[-76.539665,39.265713],[-76.53966,39.265703],[-76.539655,39.265693],[-76.53965100000001,39.265682],[-76.539647,39.265671],[-76.53964499999999,39.265661],[-76.539644,39.265649],[-76.539647,39.265639],[-76.539655,39.26563],[-76.53966200000001,39.26562],[-76.539669,39.265611],[-76.539677,39.265602],[-76.539686,39.265593],[-76.53969499999999,39.265585],[-76.539705,39.265577],[-76.539714,39.265569],[-76.539722,39.26556],[-76.53972899999999,39.26555],[-76.53973499999999,39.26554],[-76.53973999999999,39.26553],[-76.539744,39.265519],[-76.539748,39.265509],[-76.539751,39.265498],[-76.539754,39.265487],[-76.539756,39.265476],[-76.539756,39.265465],[-76.539754,39.265454],[-76.53975,39.265444],[-76.53974599999999,39.265433],[-76.539742,39.265423],[-76.539737,39.265412],[-76.539732,39.265402],[-76.539728,39.265392],[-76.539723,39.265381],[-76.53971900000001,39.265371],[-76.539715,39.26536],[-76.53971,39.26535],[-76.53970700000001,39.265339],[-76.539703,39.265328],[-76.539699,39.265318],[-76.53969600000001,39.265307],[-76.53969499999999,39.265296],[-76.53969600000001,39.265285],[-76.539697,39.265274],[-76.539699,39.265263],[-76.53970200000001,39.265252],[-76.539706,39.265242],[-76.53971199999999,39.265232],[-76.53971799999999,39.265222],[-76.53972,39.26522],[-76.53972400000001,39.265212],[-76.53973000000001,39.265202],[-76.539737,39.265192],[-76.539742,39.265182],[-76.53974599999999,39.265172],[-76.539749,39.265161],[-76.539749,39.26515],[-76.539749,39.265139],[-76.539748,39.265128],[-76.53974700000001,39.265117],[-76.53974599999999,39.265106],[-76.539743,39.265095],[-76.53973999999999,39.265084],[-76.539737,39.265074],[-76.539737,39.265063],[-76.539738,39.265052],[-76.539742,39.265041],[-76.539748,39.265031],[-76.539755,39.265021],[-76.539761,39.265012],[-76.539767,39.265002],[-76.539771,39.264991],[-76.539773,39.26498],[-76.539773,39.264969],[-76.539773,39.264958],[-76.539773,39.264947],[-76.539773,39.264936],[-76.539773,39.264925],[-76.539773,39.264914],[-76.539771,39.264903],[-76.53976900000001,39.264892],[-76.539767,39.264882],[-76.539766,39.264871],[-76.539767,39.26486],[-76.539768,39.264849],[-76.53977,39.264838],[-76.53977399999999,39.264827],[-76.539781,39.264817],[-76.539788,39.264808],[-76.539794,39.264798],[-76.5398,39.264788],[-76.539805,39.264778],[-76.53981,39.264768],[-76.53981400000001,39.264757],[-76.539818,39.264747],[-76.539822,39.264736],[-76.53982499999999,39.264725],[-76.539828,39.264714],[-76.53982999999999,39.264703],[-76.53983100000001,39.264692],[-76.539833,39.264682],[-76.53983599999999,39.264671],[-76.539841,39.264661],[-76.539845,39.26465],[-76.53985,39.26464],[-76.539856,39.26463],[-76.539861,39.26462],[-76.539866,39.26461],[-76.539872,39.264599],[-76.539878,39.264589],[-76.539883,39.264579],[-76.539889,39.264569],[-76.539894,39.264559],[-76.53989900000001,39.264549],[-76.539905,39.264539],[-76.539911,39.264529],[-76.539917,39.264519],[-76.539922,39.264508],[-76.539928,39.264498],[-76.539933,39.264488],[-76.53993800000001,39.264478],[-76.539942,39.264467],[-76.539946,39.264457],[-76.53995,39.264446],[-76.539953,39.264436],[-76.539956,39.264425],[-76.539959,39.264414],[-76.539962,39.264403],[-76.539965,39.264393],[-76.539968,39.264382],[-76.53997,39.264371],[-76.539973,39.26436],[-76.539975,39.264349],[-76.539976,39.264338],[-76.539978,39.264328],[-76.53998,39.264317],[-76.53998300000001,39.264306],[-76.539985,39.264295],[-76.53998799999999,39.264284],[-76.539991,39.264274],[-76.53999399999999,39.264263],[-76.539997,39.264252],[-76.53999899999999,39.264241],[-76.540001,39.26423],[-76.540003,39.264219],[-76.540004,39.264209],[-76.54000600000001,39.264198],[-76.540007,39.264187],[-76.540008,39.264176],[-76.540009,39.264165],[-76.540009,39.264154],[-76.54001,39.264143],[-76.54001,39.264132],[-76.54001,39.264121],[-76.54001,39.26411],[-76.54001,39.264099],[-76.54001,39.264088],[-76.54001,39.264077],[-76.54001,39.264066],[-76.54001,39.264055],[-76.540009,39.264044],[-76.540009,39.264033],[-76.540008,39.264022],[-76.540007,39.264011],[-76.54000600000001,39.264],[-76.540004,39.263989],[-76.540003,39.263978],[-76.540001,39.263967],[-76.53999899999999,39.263956],[-76.539997,39.263946],[-76.53999399999999,39.263935],[-76.539992,39.263924],[-76.539991,39.263912],[-76.53999,39.263901],[-76.53999,39.26389],[-76.53998900000001,39.263879],[-76.53998799999999,39.263868],[-76.539987,39.263857],[-76.539985,39.263847],[-76.53998300000001,39.263836],[-76.53998,39.263825],[-76.539978,39.263814],[-76.539974,39.263803],[-76.53997099999999,39.263793],[-76.539968,39.263782],[-76.539964,39.263772],[-76.53995999999999,39.263761],[-76.539956,39.26375],[-76.539952,39.26374],[-76.539947,39.263729],[-76.53994299999999,39.263719],[-76.53993800000001,39.263709],[-76.539933,39.263698],[-76.539928,39.263688],[-76.539923,39.263678],[-76.539918,39.263668],[-76.539912,39.263658],[-76.539907,39.263648],[-76.539901,39.263637],[-76.539895,39.263627],[-76.539889,39.263617],[-76.539884,39.263607],[-76.539878,39.263597],[-76.53987100000001,39.263588],[-76.53986500000001,39.263578],[-76.53985900000001,39.263568],[-76.539852,39.263558],[-76.539846,39.263548],[-76.539841,39.263538],[-76.53983599999999,39.263528],[-76.53983100000001,39.263517],[-76.539827,39.263507],[-76.539823,39.263496],[-76.539818,39.263486],[-76.53981400000001,39.263476],[-76.53980900000001,39.263465],[-76.539805,39.263455],[-76.539799,39.263445],[-76.53979200000001,39.263435],[-76.539783,39.263427],[-76.53977399999999,39.263418],[-76.53976400000001,39.26341],[-76.539755,39.263402],[-76.539744,39.263395],[-76.539733,39.263388],[-76.539721,39.263382],[-76.53971,39.263376],[-76.539698,39.263369],[-76.539687,39.263363],[-76.539676,39.263356],[-76.539665,39.263348],[-76.539655,39.263341],[-76.53964499999999,39.263333],[-76.539635,39.263326],[-76.539625,39.263318],[-76.539615,39.26331],[-76.53960499999999,39.263302],[-76.53959500000001,39.263294],[-76.539586,39.263286],[-76.539576,39.263278],[-76.53956599999999,39.26327],[-76.539557,39.263262],[-76.539547,39.263254],[-76.53953799999999,39.263245],[-76.539529,39.263237],[-76.53952,39.263229],[-76.539511,39.26322],[-76.539502,39.263212],[-76.539494,39.263203],[-76.539486,39.263194],[-76.539478,39.263184],[-76.53946999999999,39.263175],[-76.539463,39.263166],[-76.539455,39.263157],[-76.539447,39.263147],[-76.53944,39.263138],[-76.53943200000001,39.263129],[-76.539424,39.26312],[-76.539416,39.263111],[-76.53940799999999,39.263102],[-76.5394,39.263093],[-76.539393,39.263083],[-76.539385,39.263074],[-76.539378,39.263065],[-76.539371,39.263055],[-76.53936400000001,39.263046],[-76.539357,39.263036],[-76.53935,39.263027],[-76.539343,39.263017],[-76.53933600000001,39.263007],[-76.539329,39.262998],[-76.539322,39.262988],[-76.539315,39.262979],[-76.53930800000001,39.262969],[-76.53930099999999,39.26296],[-76.539294,39.26295],[-76.539287,39.262941],[-76.53928000000001,39.262931],[-76.53927299999999,39.262921],[-76.539266,39.262912],[-76.539259,39.262902],[-76.539253,39.262893],[-76.53924600000001,39.262883],[-76.53923899999999,39.262874],[-76.539232,39.262864],[-76.539224,39.262855],[-76.53921699999999,39.262845],[-76.53921,39.262836],[-76.539203,39.262826],[-76.539196,39.262817],[-76.539188,39.262807],[-76.53918,39.262798],[-76.53917199999999,39.262789],[-76.539164,39.262781],[-76.53915499999999,39.262772],[-76.539146,39.262763],[-76.539137,39.262755],[-76.53912800000001,39.262747],[-76.539118,39.262738],[-76.539109,39.26273],[-76.53909899999999,39.262722],[-76.539089,39.262714],[-76.539079,39.262707],[-76.539069,39.262699],[-76.539058,39.262692],[-76.539047,39.262685],[-76.53903699999999,39.262678],[-76.539027,39.26267],[-76.539017,39.262662],[-76.539007,39.262654],[-76.53899699999999,39.262646],[-76.538988,39.262638],[-76.538978,39.26263],[-76.538968,39.262623],[-76.53895799999999,39.262615],[-76.53894699999999,39.262608],[-76.53893600000001,39.262601],[-76.538926,39.262593],[-76.538915,39.262586],[-76.538905,39.262578],[-76.538895,39.26257],[-76.53888600000001,39.262562],[-76.538877,39.262554],[-76.538867,39.262546],[-76.53885699999999,39.262538],[-76.538847,39.26253],[-76.538837,39.262523],[-76.538826,39.262516],[-76.538816,39.262508],[-76.538805,39.262501],[-76.53879499999999,39.262493],[-76.53878400000001,39.262486],[-76.53877300000001,39.262479],[-76.538763,39.262472],[-76.538753,39.262464],[-76.53874399999999,39.262456],[-76.53873400000001,39.262447],[-76.538725,39.262439],[-76.538715,39.262431],[-76.538706,39.262423],[-76.538696,39.262415],[-76.538686,39.262407],[-76.538676,39.2624],[-76.53866600000001,39.262392],[-76.53865500000001,39.262385],[-76.538645,39.262377],[-76.538635,39.26237],[-76.538624,39.262362],[-76.538614,39.262355],[-76.53860400000001,39.262347],[-76.538594,39.262339],[-76.538584,39.262331],[-76.538574,39.262323],[-76.53856500000001,39.262315],[-76.538555,39.262307],[-76.538552,39.262305],[-76.538545,39.2623],[-76.538535,39.262292],[-76.538524,39.262285],[-76.53851299999999,39.262278],[-76.538501,39.262272],[-76.53849,39.262265],[-76.538478,39.262259],[-76.538467,39.262253],[-76.538455,39.262247],[-76.538443,39.262241],[-76.538431,39.262235],[-76.538419,39.262229],[-76.538408,39.262222],[-76.538397,39.262215],[-76.538387,39.262208],[-76.538377,39.2622],[-76.53836699999999,39.262192],[-76.538358,39.262184],[-76.538348,39.262176],[-76.538338,39.262168],[-76.538327,39.262161],[-76.53831700000001,39.262153],[-76.53830600000001,39.262146],[-76.538296,39.262138],[-76.538286,39.262131],[-76.538276,39.262123],[-76.538273,39.262121],[-76.53826599999999,39.262115],[-76.538257,39.262107],[-76.538247,39.262099],[-76.53823800000001,39.26209],[-76.538228,39.262082],[-76.538219,39.262074],[-76.53820899999999,39.262066],[-76.5382,39.262058],[-76.53819,39.26205],[-76.53818,39.262042],[-76.53816999999999,39.262034],[-76.53816,39.262026],[-76.538151,39.262019],[-76.538141,39.262011],[-76.53813,39.262003],[-76.53812000000001,39.261995],[-76.53811,39.261988],[-76.5381,39.26198],[-76.53809,39.261972],[-76.53807999999999,39.261964],[-76.53807,39.261957],[-76.53806,39.261949],[-76.53805,39.261941],[-76.53804,39.261933],[-76.53803000000001,39.261926],[-76.53802,39.261918],[-76.53801,39.26191],[-76.538,39.261903],[-76.53798999999999,39.261895],[-76.53798,39.261887],[-76.53797,39.261879],[-76.53796,39.261871],[-76.53795,39.261864],[-76.53794000000001,39.261856],[-76.537931,39.261848],[-76.537921,39.26184],[-76.53791099999999,39.261832],[-76.53790100000001,39.261824],[-76.537891,39.261817],[-76.537881,39.261809],[-76.537871,39.261801],[-76.537862,39.261793],[-76.537852,39.261785],[-76.537842,39.261777],[-76.53783199999999,39.261769],[-76.537823,39.261761],[-76.537813,39.261753],[-76.537803,39.261745],[-76.53779400000001,39.261737],[-76.537784,39.261729],[-76.537775,39.261721],[-76.53776499999999,39.261713],[-76.537755,39.261705],[-76.537746,39.261697],[-76.537736,39.261689],[-76.53772600000001,39.261681],[-76.537717,39.261673],[-76.537707,39.261665],[-76.53769699999999,39.261657],[-76.53768700000001,39.261649],[-76.537677,39.261641],[-76.537667,39.261633],[-76.537657,39.261626],[-76.537646,39.261619],[-76.53763499999999,39.261612],[-76.537623,39.261606],[-76.537611,39.2616],[-76.537599,39.261595],[-76.537586,39.26159],[-76.53757400000001,39.261585],[-76.53756,39.261581],[-76.537547,39.261576],[-76.537539,39.261568],[-76.53753399999999,39.261557],[-76.53752900000001,39.261547],[-76.537524,39.261537],[-76.537519,39.261526],[-76.537513,39.261516],[-76.53750700000001,39.261506],[-76.53749999999999,39.261497],[-76.53749000000001,39.26149],[-76.53747799999999,39.261484],[-76.537465,39.261479],[-76.537451,39.261475],[-76.53743900000001,39.261469],[-76.53742699999999,39.261463],[-76.53741599999999,39.261457],[-76.537404,39.261451],[-76.53739299999999,39.261444],[-76.53738199999999,39.261437],[-76.53737099999999,39.26143],[-76.537361,39.261422],[-76.537352,39.261414],[-76.537342,39.261406],[-76.537333,39.261397],[-76.537324,39.261389],[-76.53731399999999,39.261381],[-76.537305,39.261373],[-76.537295,39.261364],[-76.53728599999999,39.261356],[-76.53727600000001,39.261348],[-76.537267,39.26134],[-76.537257,39.261332],[-76.53724699999999,39.261324],[-76.53723599999999,39.261314],[-76.537226,39.261305],[-76.537217,39.261297],[-76.53720800000001,39.261288],[-76.537199,39.26128],[-76.53719,39.261271],[-76.537182,39.261263],[-76.53717399999999,39.261254],[-76.537165,39.261245],[-76.53715699999999,39.261236],[-76.537148,39.261227],[-76.537139,39.261219],[-76.53713,39.261211],[-76.53712,39.261203],[-76.53711,39.261195],[-76.5371,39.261188],[-76.53709000000001,39.26118],[-76.53708,39.261172],[-76.53707,39.261164],[-76.53706099999999,39.261156],[-76.53705100000001,39.261148],[-76.537041,39.26114],[-76.537032,39.261132],[-76.53702199999999,39.261123],[-76.537013,39.261115],[-76.537004,39.261107],[-76.536995,39.261098],[-76.536986,39.26109],[-76.53697699999999,39.261081],[-76.536969,39.261072],[-76.536962,39.261063],[-76.53695399999999,39.261054],[-76.536946,39.261045],[-76.53693699999999,39.261036],[-76.536928,39.261028],[-76.536918,39.261019],[-76.536908,39.261011],[-76.53689799999999,39.261004],[-76.53688699999999,39.260997],[-76.53687600000001,39.26099],[-76.53686399999999,39.260985],[-76.536851,39.26098],[-76.536838,39.260975],[-76.53682499999999,39.260971],[-76.536812,39.260968],[-76.536798,39.260965],[-76.536784,39.260963],[-76.53677,39.260962],[-76.536756,39.260961],[-76.536742,39.26096],[-76.536727,39.260959],[-76.53671300000001,39.260959],[-76.536699,39.260959],[-76.53668500000001,39.260959],[-76.536671,39.260959],[-76.53665700000001,39.260959],[-76.536643,39.260958],[-76.536629,39.260957],[-76.536615,39.260956],[-76.536601,39.260955],[-76.536586,39.260954],[-76.53657200000001,39.260953],[-76.536558,39.260951],[-76.53654400000001,39.26095],[-76.53653,39.260947],[-76.536517,39.260945],[-76.53650399999999,39.260941],[-76.536491,39.260936],[-76.536478,39.260931],[-76.536466,39.260926],[-76.53645400000001,39.260919],[-76.53644300000001,39.260912],[-76.536433,39.260905],[-76.536424,39.260897],[-76.53641500000001,39.260888],[-76.536407,39.260879],[-76.536399,39.26087],[-76.53639,39.260861],[-76.536382,39.260852],[-76.53637500000001,39.260843],[-76.536367,39.260834],[-76.536359,39.260825],[-76.536351,39.260815],[-76.536343,39.260806],[-76.53633600000001,39.260797],[-76.536328,39.260788],[-76.53632,39.260779],[-76.536312,39.26077],[-76.536304,39.260761],[-76.53629599999999,39.260751],[-76.536288,39.260742],[-76.53628,39.260734],[-76.536271,39.260725],[-76.53626300000001,39.260716],[-76.536255,39.260707],[-76.536247,39.260698],[-76.53623899999999,39.260689],[-76.536232,39.260678],[-76.536231,39.260669],[-76.53623899999999,39.26066],[-76.536241,39.260649],[-76.536241,39.260638],[-76.53623899999999,39.260627],[-76.53623399999999,39.260617],[-76.536226,39.260608],[-76.53621699999999,39.260599],[-76.536207,39.260591],[-76.536197,39.260584],[-76.536185,39.260577],[-76.536174,39.26057],[-76.536165,39.260562],[-76.53615600000001,39.260554],[-76.536147,39.260545],[-76.53613900000001,39.260536],[-76.536131,39.260527],[-76.53612200000001,39.260518],[-76.536114,39.26051],[-76.53610500000001,39.260501],[-76.536096,39.260492],[-76.53608699999999,39.260484],[-76.536078,39.260475],[-76.53607,39.260467],[-76.536061,39.260458],[-76.536052,39.260449],[-76.536044,39.26044],[-76.536036,39.260431],[-76.536028,39.260422],[-76.53601999999999,39.260413],[-76.536012,39.260404],[-76.53600400000001,39.260395],[-76.535996,39.260386],[-76.535988,39.260377],[-76.535979,39.260368],[-76.53597000000001,39.26036],[-76.535961,39.260351],[-76.53595199999999,39.260343],[-76.535943,39.260334],[-76.535934,39.260326],[-76.535926,39.260317],[-76.535917,39.260309],[-76.53590800000001,39.2603],[-76.535899,39.260292],[-76.53588999999999,39.260283],[-76.535881,39.260275],[-76.535873,39.260266],[-76.535864,39.260257],[-76.535855,39.260249],[-76.535847,39.26024],[-76.535838,39.260231],[-76.53583,39.260222],[-76.535821,39.260213],[-76.535813,39.260205],[-76.535804,39.260196],[-76.53579499999999,39.260188],[-76.535786,39.260179],[-76.535777,39.260171],[-76.53576700000001,39.260163],[-76.535758,39.260154],[-76.535749,39.260146],[-76.53574,39.260138],[-76.535731,39.260129],[-76.53572200000001,39.260121],[-76.535713,39.260112],[-76.535704,39.260103],[-76.535696,39.260095],[-76.535687,39.260086],[-76.535679,39.260077],[-76.53567,39.260068],[-76.535662,39.26006],[-76.535653,39.260051],[-76.535645,39.260042],[-76.535636,39.260033],[-76.53562700000001,39.260025],[-76.535618,39.260016],[-76.53561000000001,39.260008],[-76.535601,39.259999],[-76.53559199999999,39.259991],[-76.535583,39.259982],[-76.535574,39.259974],[-76.53556500000001,39.259965],[-76.535556,39.259957],[-76.53554699999999,39.259948],[-76.535538,39.25994],[-76.535529,39.259931],[-76.53552000000001,39.259923],[-76.53551,39.259915],[-76.535501,39.259906],[-76.535492,39.259898],[-76.535482,39.25989],[-76.535473,39.259882],[-76.535464,39.259874],[-76.535454,39.259865],[-76.535445,39.259857],[-76.53543500000001,39.259849],[-76.535426,39.259841],[-76.535417,39.259833],[-76.53540700000001,39.259824],[-76.535398,39.259816],[-76.535389,39.259807],[-76.53538,39.259799],[-76.535372,39.25979],[-76.535363,39.259782],[-76.535354,39.259773],[-76.53534500000001,39.259764],[-76.535337,39.259756],[-76.53532800000001,39.259747],[-76.53532,39.259738],[-76.53531099999999,39.259729],[-76.535303,39.259721],[-76.53529399999999,39.259712],[-76.535286,39.259703],[-76.53527800000001,39.259694],[-76.535269,39.259685],[-76.53526100000001,39.259676],[-76.535253,39.259667],[-76.53524400000001,39.259659],[-76.535236,39.25965],[-76.535228,39.259641],[-76.53522,39.259632],[-76.535212,39.259623],[-76.53520399999999,39.259614],[-76.535195,39.259605],[-76.53518800000001,39.259596],[-76.53518,39.259586],[-76.535172,39.259577],[-76.535166,39.259567],[-76.53515899999999,39.259558],[-76.535152,39.259548],[-76.535145,39.259539],[-76.53513700000001,39.259529],[-76.53513,39.25952],[-76.535122,39.259511],[-76.535116,39.259501],[-76.53511,39.259491],[-76.535104,39.259481],[-76.535098,39.259471],[-76.53509099999999,39.259461],[-76.535083,39.259452],[-76.53507399999999,39.259445],[-76.53506299999999,39.259438],[-76.535051,39.259431],[-76.535039,39.259425],[-76.535027,39.259419],[-76.535014,39.259414],[-76.53500699999999,39.259405],[-76.535005,39.259395],[-76.535003,39.259384],[-76.53500099999999,39.259373],[-76.534999,39.259362],[-76.534997,39.259351],[-76.534995,39.25934],[-76.534993,39.259329],[-76.53498999999999,39.259319],[-76.534988,39.259308],[-76.534986,39.259297],[-76.53498399999999,39.259286],[-76.534982,39.259275],[-76.53498,39.259264],[-76.534978,39.259253],[-76.534976,39.259243],[-76.53497400000001,39.259232],[-76.534972,39.259221],[-76.534969,39.25921],[-76.53496699999999,39.259199],[-76.534965,39.259188],[-76.534963,39.259177],[-76.534961,39.259167],[-76.534959,39.259156],[-76.53495700000001,39.259145],[-76.534954,39.259134],[-76.534952,39.259123],[-76.53494999999999,39.259112],[-76.534948,39.259101],[-76.53494600000001,39.259091],[-76.534944,39.25908],[-76.534941,39.259069],[-76.53493899999999,39.259058],[-76.534937,39.259047],[-76.534935,39.259036],[-76.534933,39.259025],[-76.534931,39.259015],[-76.53492900000001,39.259004],[-76.534927,39.258993],[-76.534924,39.258982],[-76.53492199999999,39.258971],[-76.53492,39.25896],[-76.534918,39.25895],[-76.534916,39.258939],[-76.534914,39.258928],[-76.53491200000001,39.258917],[-76.53491,39.258906],[-76.534908,39.258895],[-76.53490600000001,39.258884],[-76.534904,39.258873],[-76.534902,39.258863],[-76.534899,39.258852],[-76.534897,39.258841],[-76.53489500000001,39.25883],[-76.534893,39.258819],[-76.534891,39.258808],[-76.53488900000001,39.258797],[-76.534887,39.258787],[-76.534885,39.258776],[-76.53488299999999,39.258765],[-76.534881,39.258754],[-76.534879,39.258743],[-76.53487699999999,39.258732],[-76.534875,39.258721],[-76.53487199999999,39.258711],[-76.53487199999999,39.2587],[-76.53487199999999,39.258689],[-76.53487199999999,39.258678],[-76.53487199999999,39.258667],[-76.534873,39.258656],[-76.534876,39.258645],[-76.534879,39.258634],[-76.534881,39.258623],[-76.534864,39.258557],[-76.534843,39.258471],[-76.534817,39.258386],[-76.534769,39.258288],[-76.53472600000001,39.258199],[-76.534694,39.258114],[-76.53468100000001,39.258068],[-76.534683,39.257989],[-76.53472499999999,39.257977],[-76.53478,39.257955],[-76.53479900000001,39.257926],[-76.534801,39.257901],[-76.53482099999999,39.257829],[-76.53481499999999,39.257753],[-76.534813,39.257739],[-76.534808,39.257712],[-76.53479400000001,39.257673],[-76.53477700000001,39.257637],[-76.534755,39.257599],[-76.53472499999999,39.257549],[-76.53469800000001,39.2575],[-76.53467499999999,39.257441],[-76.53466299999999,39.257383],[-76.534649,39.25728],[-76.534643,39.257188],[-76.534638,39.257086],[-76.53463499999999,39.256951],[-76.53463600000001,39.256856],[-76.534646,39.256763],[-76.534645,39.256676],[-76.534633,39.256614],[-76.53462399999999,39.256573],[-76.534615,39.256538],[-76.53461299999999,39.256535],[-76.534611,39.256533],[-76.534609,39.256531],[-76.53460699999999,39.256529],[-76.534605,39.256526],[-76.534603,39.256524],[-76.53460099999999,39.256522],[-76.534599,39.256519],[-76.53459700000001,39.256517],[-76.53459599999999,39.256515],[-76.534594,39.256513],[-76.534592,39.25651],[-76.53458999999999,39.256508],[-76.534588,39.256506],[-76.534586,39.256503],[-76.534584,39.256501],[-76.534582,39.256499],[-76.53458000000001,39.256496],[-76.53457899999999,39.256494],[-76.534577,39.256491],[-76.534575,39.256489],[-76.53457400000001,39.256487],[-76.534572,39.256484],[-76.534571,39.256482],[-76.534569,39.256479],[-76.53456799999999,39.256477],[-76.534566,39.256474],[-76.534565,39.256472],[-76.53456300000001,39.256469],[-76.53456199999999,39.256467],[-76.53456,39.256464],[-76.534559,39.256462],[-76.53455700000001,39.256459],[-76.53455599999999,39.256457],[-76.534554,39.256454],[-76.534553,39.256452],[-76.53455200000001,39.256449],[-76.53455,39.256446],[-76.534549,39.256444],[-76.534548,39.256441],[-76.534547,39.256439],[-76.53454499999999,39.256436],[-76.534544,39.256434],[-76.534543,39.256431],[-76.534542,39.256428],[-76.534541,39.256426],[-76.53454000000001,39.256423],[-76.534539,39.256421],[-76.534538,39.256418],[-76.534537,39.256415],[-76.534536,39.256413],[-76.534536,39.25641],[-76.53453500000001,39.256407],[-76.53453399999999,39.256405],[-76.53453399999999,39.256402],[-76.53453399999999,39.256399],[-76.534533,39.256396],[-76.534533,39.256394],[-76.534533,39.256391],[-76.534533,39.256388],[-76.534532,39.256385],[-76.534532,39.256383],[-76.534532,39.25638],[-76.534532,39.256377],[-76.534532,39.256374],[-76.534531,39.256372],[-76.534531,39.256369],[-76.534531,39.256366],[-76.53453,39.256363],[-76.53453,39.256361],[-76.53453,39.256358],[-76.53452900000001,39.256355],[-76.53452900000001,39.256352],[-76.53452900000001,39.25635],[-76.53452799999999,39.256347],[-76.53452799999999,39.256344],[-76.53452799999999,39.256341],[-76.534527,39.256339],[-76.534527,39.256336],[-76.534527,39.256333],[-76.534526,39.256331],[-76.534526,39.256328],[-76.534526,39.256325],[-76.534526,39.256322],[-76.534525,39.25632],[-76.534525,39.256317],[-76.534525,39.256314],[-76.534524,39.256311],[-76.534524,39.256309],[-76.534524,39.256306],[-76.53452299999999,39.256303],[-76.53452299999999,39.2563],[-76.53452299999999,39.256298],[-76.53452299999999,39.256295],[-76.534522,39.256292],[-76.534522,39.256289],[-76.534522,39.256287],[-76.534522,39.256284],[-76.534521,39.256281],[-76.534521,39.256279],[-76.534521,39.256276],[-76.534521,39.256273],[-76.53452,39.25627],[-76.53452,39.256268],[-76.53452,39.256265],[-76.53452,39.256262],[-76.53452,39.256259],[-76.534519,39.256257],[-76.534519,39.256254],[-76.534519,39.256251],[-76.534519,39.256248],[-76.534519,39.256246],[-76.534519,39.256243],[-76.534526,39.256231],[-76.534532,39.256221],[-76.534538,39.256211],[-76.534544,39.256201],[-76.53455,39.256191],[-76.53455599999999,39.256181],[-76.53456199999999,39.256171],[-76.53456799999999,39.256161],[-76.53457400000001,39.256151],[-76.53458000000001,39.256141],[-76.534586,39.256132],[-76.534592,39.256122],[-76.534598,39.256112],[-76.534604,39.256102],[-76.53461,39.256092],[-76.534616,39.256082],[-76.534622,39.256072],[-76.534628,39.256062],[-76.534634,39.256052],[-76.53464,39.256042],[-76.534646,39.256032],[-76.53465199999999,39.256022],[-76.53465799999999,39.256012],[-76.53466400000001,39.256002],[-76.53467000000001,39.255992],[-76.534676,39.255982],[-76.534682,39.255972],[-76.534688,39.255963],[-76.534694,39.255953],[-76.5347,39.255943],[-76.534706,39.255933],[-76.534712,39.255923],[-76.534718,39.255913],[-76.534724,39.255903],[-76.53473,39.255893],[-76.534736,39.255883],[-76.53474199999999,39.255873],[-76.53474900000001,39.255863],[-76.534755,39.255853],[-76.534761,39.255843],[-76.534767,39.255833],[-76.534773,39.255823],[-76.534779,39.255814],[-76.534785,39.255804],[-76.534791,39.255794],[-76.534797,39.255784],[-76.534803,39.255774],[-76.534809,39.255764],[-76.53481499999999,39.255754],[-76.53482099999999,39.255744],[-76.53482700000001,39.255734],[-76.53483300000001,39.255724],[-76.53483900000001,39.255714],[-76.534845,39.255704],[-76.534851,39.255694],[-76.534857,39.255684],[-76.534863,39.255675],[-76.534869,39.255665],[-76.534875,39.255655],[-76.534881,39.255645],[-76.534892,39.255639],[-76.53490600000001,39.255636],[-76.534919,39.255634],[-76.534933,39.255632],[-76.534947,39.255631],[-76.534961,39.255629],[-76.534975,39.255627],[-76.534989,39.255625],[-76.535003,39.255624],[-76.535017,39.255622],[-76.535031,39.25562],[-76.535045,39.255618],[-76.535059,39.255616],[-76.535073,39.255615],[-76.535087,39.255613],[-76.535101,39.255611],[-76.535115,39.255609],[-76.535129,39.255608],[-76.53514199999999,39.255606],[-76.535156,39.255604],[-76.53516999999999,39.255602],[-76.535184,39.2556],[-76.53519799999999,39.255597],[-76.535212,39.255595],[-76.535225,39.255592],[-76.535239,39.25559],[-76.535253,39.255588],[-76.535267,39.255586],[-76.535281,39.255584],[-76.535295,39.255582],[-76.535309,39.25558],[-76.53532300000001,39.255578],[-76.535337,39.255577],[-76.53534999999999,39.255575],[-76.535364,39.255573],[-76.53537799999999,39.255571],[-76.535392,39.255569],[-76.53540599999999,39.255567],[-76.53542,39.255565],[-76.535434,39.255563],[-76.535448,39.255561],[-76.535462,39.25556],[-76.535476,39.255558],[-76.53549,39.255556],[-76.535504,39.255554],[-76.535517,39.255552],[-76.53553100000001,39.25555],[-76.535545,39.255548],[-76.535552,39.25554],[-76.535555,39.255529],[-76.53555799999999,39.255518],[-76.535562,39.255508],[-76.53556500000001,39.255497],[-76.535568,39.255486],[-76.535571,39.255476],[-76.53557499999999,39.255465],[-76.535578,39.255454],[-76.53558099999999,39.255444],[-76.535585,39.255433],[-76.535588,39.255422],[-76.535591,39.255412],[-76.535594,39.255401],[-76.53559799999999,39.25539],[-76.535601,39.25538],[-76.53560400000001,39.255369],[-76.535608,39.255358],[-76.535611,39.255348],[-76.535614,39.255337],[-76.535617,39.255326],[-76.53562100000001,39.255316],[-76.535624,39.255305],[-76.53562700000001,39.255294],[-76.53563,39.255283],[-76.535634,39.255273],[-76.53563699999999,39.255262],[-76.53564,39.255251],[-76.535644,39.255241],[-76.535647,39.25523],[-76.53565,39.255219],[-76.535653,39.255209],[-76.535657,39.255198],[-76.53565999999999,39.255187],[-76.535663,39.255177],[-76.535667,39.255166],[-76.53567,39.255155],[-76.535673,39.255145],[-76.535676,39.255134],[-76.53568,39.255123],[-76.53568300000001,39.255113],[-76.535686,39.255102],[-76.53569,39.255091],[-76.53569299999999,39.255081],[-76.535696,39.25507],[-76.53569899999999,39.255059],[-76.535703,39.255049],[-76.535706,39.255038],[-76.535709,39.255027],[-76.535713,39.255016],[-76.53571599999999,39.255006],[-76.535719,39.254995],[-76.535723,39.254984],[-76.535726,39.254974],[-76.535729,39.254963],[-76.53573299999999,39.254952],[-76.535736,39.254942],[-76.53573900000001,39.254931],[-76.535743,39.25492],[-76.535746,39.25491],[-76.535749,39.254899],[-76.535752,39.254888],[-76.53575600000001,39.254878],[-76.535759,39.254867],[-76.53576200000001,39.254856],[-76.535765,39.254846],[-76.535769,39.254835],[-76.53577199999999,39.254824],[-76.535775,39.254814],[-76.53577900000001,39.254803],[-76.535782,39.254792],[-76.535785,39.254782],[-76.535788,39.254771],[-76.535792,39.25476],[-76.53579499999999,39.25475],[-76.535799,39.254739],[-76.535802,39.254728],[-76.53580599999999,39.254718],[-76.535809,39.254707],[-76.53581200000001,39.254696],[-76.535816,39.254686],[-76.535819,39.254675],[-76.535822,39.254664],[-76.535826,39.254654],[-76.53582900000001,39.254643],[-76.535832,39.254632],[-76.53583500000001,39.254622],[-76.535839,39.254611],[-76.535842,39.2546],[-76.53584499999999,39.254589],[-76.535849,39.254579],[-76.53585200000001,39.254568],[-76.535855,39.254557],[-76.535859,39.254547],[-76.53586199999999,39.254536],[-76.535865,39.254525],[-76.53586799999999,39.254515],[-76.535872,39.254504],[-76.535875,39.254493],[-76.535878,39.254483],[-76.535882,39.254472],[-76.53588499999999,39.254461],[-76.535888,39.254451],[-76.535892,39.25444],[-76.535895,39.254429],[-76.535898,39.254419],[-76.53590199999999,39.254408],[-76.535905,39.254397],[-76.53590800000001,39.254387],[-76.535912,39.254376],[-76.535915,39.254365],[-76.53591900000001,39.254355],[-76.535922,39.254344],[-76.53592500000001,39.254333],[-76.535929,39.254323],[-76.535932,39.254312],[-76.53593499999999,39.254301],[-76.535939,39.254291],[-76.53594200000001,39.25428],[-76.535945,39.254269],[-76.535949,39.254259],[-76.53595199999999,39.254248],[-76.535955,39.254237],[-76.53595900000001,39.254227],[-76.535962,39.254216],[-76.535965,39.254205],[-76.53596899999999,39.254195],[-76.535972,39.254184],[-76.53597499999999,39.254173],[-76.535979,39.254163],[-76.535982,39.254152],[-76.53598599999999,39.254141],[-76.535989,39.254131],[-76.53599199999999,39.25412],[-76.535996,39.254109],[-76.535999,39.254099],[-76.536002,39.254088],[-76.536006,39.254077],[-76.53600900000001,39.254067],[-76.536012,39.254056],[-76.536016,39.254045],[-76.536019,39.254035],[-76.536022,39.254024],[-76.53602600000001,39.254013],[-76.536029,39.254003],[-76.53603200000001,39.253992],[-76.536036,39.253981],[-76.536039,39.253971],[-76.53604199999999,39.25396],[-76.536046,39.253949],[-76.53604900000001,39.253939],[-76.536053,39.253928],[-76.536056,39.253917],[-76.53605899999999,39.253907],[-76.536063,39.253896],[-76.53606600000001,39.253885],[-76.536069,39.253875],[-76.536073,39.253864],[-76.53607599999999,39.253853],[-76.536079,39.253843],[-76.536083,39.253832],[-76.536086,39.253821],[-76.536089,39.253811],[-76.53609299999999,39.2538],[-76.536096,39.253789],[-76.53609899999999,39.253779],[-76.536103,39.253768],[-76.536106,39.253757],[-76.536109,39.253747],[-76.536113,39.253736],[-76.53611600000001,39.253725],[-76.536119,39.253715],[-76.536123,39.253704],[-76.536125,39.253698],[-76.536126,39.253693],[-76.536129,39.253683],[-76.53613300000001,39.253672],[-76.536136,39.253661],[-76.53613900000001,39.253651],[-76.536143,39.25364],[-76.536146,39.253629],[-76.536148,39.253623],[-76.53615000000001,39.253618],[-76.536151,39.253613],[-76.536153,39.253607],[-76.53615499999999,39.253602],[-76.53615600000001,39.253597],[-76.536158,39.253591],[-76.53616,39.253586],[-76.53616100000001,39.25358],[-76.536163,39.253575],[-76.536164,39.25357],[-76.53616599999999,39.253564],[-76.536168,39.253559],[-76.536169,39.253554],[-76.536171,39.253548],[-76.53617300000001,39.253543],[-76.536174,39.253538],[-76.536176,39.253532],[-76.53617800000001,39.253527],[-76.536179,39.253522],[-76.536181,39.253516],[-76.53618299999999,39.253511],[-76.53618400000001,39.253506],[-76.536186,39.2535],[-76.536188,39.253495],[-76.53618899999999,39.25349],[-76.536191,39.253484],[-76.536193,39.253479],[-76.53619399999999,39.253474],[-76.536196,39.253468],[-76.536198,39.253463],[-76.536199,39.253458],[-76.53620100000001,39.253452],[-76.536203,39.253447],[-76.536204,39.253442],[-76.53620600000001,39.253436],[-76.536208,39.253431],[-76.536209,39.253426],[-76.53621099999999,39.25342],[-76.536213,39.253415],[-76.536214,39.25341],[-76.536216,39.253404],[-76.53621800000001,39.253399],[-76.536219,39.253394],[-76.536221,39.253388],[-76.53622300000001,39.253383],[-76.536224,39.253378],[-76.536226,39.253372],[-76.53622799999999,39.253367],[-76.53622900000001,39.253362],[-76.536231,39.253356],[-76.536233,39.253351],[-76.53623399999999,39.253346],[-76.536236,39.25334],[-76.536238,39.253335],[-76.53623899999999,39.25333],[-76.536241,39.253324],[-76.536243,39.253319],[-76.53624499999999,39.253314],[-76.53624600000001,39.253308],[-76.536248,39.253303],[-76.53625,39.253298],[-76.53625099999999,39.253292],[-76.536253,39.253287],[-76.536255,39.253282],[-76.53625700000001,39.253276],[-76.536258,39.253271],[-76.53626,39.253266],[-76.53626199999999,39.25326],[-76.536264,39.253255],[-76.536265,39.25325],[-76.536267,39.253245],[-76.536269,39.253239],[-76.536271,39.253234],[-76.536272,39.253229],[-76.53627400000001,39.253223],[-76.536276,39.253218],[-76.536277,39.253213],[-76.53627899999999,39.253207],[-76.536281,39.253202],[-76.536283,39.253197],[-76.53628399999999,39.253191],[-76.536286,39.253186],[-76.536288,39.253181],[-76.536289,39.253175],[-76.53629100000001,39.25317],[-76.536293,39.253165],[-76.536295,39.253159],[-76.53629599999999,39.253154],[-76.536298,39.253149],[-76.5363,39.253143],[-76.53630099999999,39.253138],[-76.536303,39.253133],[-76.536305,39.253127],[-76.53630699999999,39.253122],[-76.53630800000001,39.253117],[-76.53631,39.253111],[-76.536312,39.253106],[-76.53631300000001,39.253101],[-76.536315,39.253095],[-76.536317,39.25309],[-76.53631900000001,39.253085],[-76.53632,39.253079],[-76.536322,39.253074],[-76.53632399999999,39.253069],[-76.53632500000001,39.253063],[-76.536327,39.253058],[-76.53632899999999,39.253053],[-76.536331,39.253047],[-76.536332,39.253042],[-76.536334,39.253037],[-76.53633600000001,39.253031],[-76.536338,39.253026],[-76.536339,39.253021],[-76.53634099999999,39.253015],[-76.536343,39.25301],[-76.536344,39.253005],[-76.53634599999999,39.252999],[-76.536348,39.252994],[-76.53635,39.252989],[-76.536351,39.252984],[-76.53635300000001,39.252978],[-76.536355,39.252973],[-76.536356,39.252968],[-76.53635800000001,39.252962],[-76.53636,39.252957],[-76.536362,39.252952],[-76.53636299999999,39.252946],[-76.536365,39.252941],[-76.536367,39.252936],[-76.536368,39.25293],[-76.53637000000001,39.252925],[-76.536372,39.25292],[-76.536374,39.252914],[-76.53637500000001,39.252909],[-76.536377,39.252904],[-76.536379,39.252898],[-76.53637999999999,39.252893],[-76.536382,39.252888],[-76.536384,39.252882],[-76.53638599999999,39.252877],[-76.536387,39.252872],[-76.536389,39.252866],[-76.53639099999999,39.252861],[-76.53639200000001,39.252856],[-76.536394,39.25285],[-76.536396,39.252845],[-76.53639699999999,39.25284],[-76.536399,39.252834],[-76.536401,39.252829],[-76.53640300000001,39.252824],[-76.536404,39.252818],[-76.536406,39.252813],[-76.53640799999999,39.252808],[-76.53640900000001,39.252802],[-76.536411,39.252797],[-76.536413,39.252792],[-76.53641399999999,39.252786],[-76.536416,39.252781],[-76.536418,39.252776],[-76.536419,39.25277],[-76.536421,39.252765],[-76.536423,39.25276],[-76.536424,39.252754],[-76.53642600000001,39.252749],[-76.536428,39.252744],[-76.536429,39.252738],[-76.53643099999999,39.252733],[-76.536433,39.252728],[-76.536434,39.252722],[-76.53643599999999,39.252717],[-76.536438,39.252712],[-76.536439,39.252706],[-76.536441,39.252701],[-76.53644300000001,39.252696],[-76.536444,39.25269],[-76.536446,39.252685],[-76.53644799999999,39.25268],[-76.536449,39.252674],[-76.536451,39.252669],[-76.53645299999999,39.252664],[-76.53645400000001,39.252658],[-76.536456,39.252653],[-76.536458,39.252648],[-76.53645899999999,39.252642],[-76.536461,39.252637],[-76.536463,39.252632],[-76.536464,39.252626],[-76.536466,39.252621],[-76.536468,39.252616],[-76.536469,39.25261],[-76.53647100000001,39.252605],[-76.536472,39.2526],[-76.536474,39.252594],[-76.53647599999999,39.252589],[-76.536477,39.252584],[-76.536479,39.252578],[-76.53648099999999,39.252573],[-76.53648200000001,39.252568],[-76.536484,39.252562],[-76.536486,39.252557],[-76.53648699999999,39.252552],[-76.536489,39.252546],[-76.536491,39.252541],[-76.536492,39.252535],[-76.536494,39.25253],[-76.536495,39.252525],[-76.536497,39.252519],[-76.53649900000001,39.252514],[-76.5365,39.252509],[-76.536502,39.252503],[-76.53650399999999,39.252498],[-76.53650500000001,39.252493],[-76.536507,39.252487],[-76.536509,39.252482],[-76.53651000000001,39.252477],[-76.536512,39.252471],[-76.536514,39.252466],[-76.53651499999999,39.252461],[-76.536517,39.252455],[-76.536519,39.25245],[-76.53652,39.252445],[-76.53652200000001,39.252439],[-76.536524,39.252434],[-76.536525,39.252429],[-76.53652700000001,39.252423],[-76.536529,39.252418],[-76.53653,39.252413],[-76.53653199999999,39.252407],[-76.536534,39.252402],[-76.536535,39.252397],[-76.536537,39.252391],[-76.536539,39.252386],[-76.53654,39.252381],[-76.536542,39.252375],[-76.53654400000001,39.25237],[-76.536546,39.252365],[-76.536547,39.252359],[-76.53654899999999,39.252354],[-76.536551,39.252349],[-76.536552,39.252343],[-76.536554,39.252338],[-76.536556,39.252333],[-76.536557,39.252327],[-76.536559,39.252322],[-76.53656100000001,39.252317],[-76.536563,39.252311],[-76.536564,39.252306],[-76.53656599999999,39.252301],[-76.536568,39.252295],[-76.536569,39.25229],[-76.536571,39.252285],[-76.536573,39.252279],[-76.536575,39.252274],[-76.536576,39.252269],[-76.53657800000001,39.252264],[-76.53658,39.252258],[-76.536581,39.252253],[-76.53658299999999,39.252248],[-76.536585,39.252242],[-76.536587,39.252237],[-76.53658799999999,39.252232],[-76.53659,39.252226],[-76.536592,39.252221],[-76.536593,39.252216],[-76.53659500000001,39.25221],[-76.536597,39.252205],[-76.536598,39.2522],[-76.53660000000001,39.252194],[-76.536602,39.252189],[-76.536603,39.252183],[-76.53660499999999,39.252178],[-76.53660600000001,39.252173],[-76.536608,39.252167],[-76.53661,39.252162],[-76.53661099999999,39.252157],[-76.536613,39.252151],[-76.536615,39.252146],[-76.536616,39.252141],[-76.536618,39.252135],[-76.53662,39.25213],[-76.536621,39.252125],[-76.53662300000001,39.252119],[-76.536625,39.252114],[-76.536626,39.252109],[-76.53662799999999,39.252103],[-76.53663,39.252098],[-76.536631,39.252093],[-76.53663299999999,39.252087],[-76.536635,39.252082],[-76.536636,39.252077],[-76.536638,39.252071],[-76.53664000000001,39.252066],[-76.536642,39.252061],[-76.536643,39.252055],[-76.53664499999999,39.25205],[-76.536647,39.252045],[-76.536648,39.252039],[-76.53664999999999,39.252034],[-76.536652,39.252029],[-76.536653,39.252023],[-76.536655,39.252018],[-76.53665700000001,39.252013],[-76.536658,39.252007],[-76.53666,39.252002],[-76.53666200000001,39.251997],[-76.536663,39.251991],[-76.536665,39.251986],[-76.53666699999999,39.251981],[-76.53666800000001,39.251975],[-76.53667,39.25197],[-76.536672,39.251965],[-76.53667299999999,39.251959],[-76.536675,39.251954],[-76.536677,39.251949],[-76.53667799999999,39.251943],[-76.53668,39.251938],[-76.536682,39.251933],[-76.536683,39.251927],[-76.53668500000001,39.251922],[-76.536687,39.251917],[-76.536689,39.251911],[-76.53668999999999,39.251906],[-76.536692,39.251901],[-76.536694,39.251895],[-76.53669499999999,39.25189],[-76.53669600000001,39.251888],[-76.536697,39.251885],[-76.536699,39.251879],[-76.53670099999999,39.251874],[-76.53670200000001,39.251869],[-76.536704,39.251863],[-76.536706,39.251858],[-76.53670700000001,39.251853],[-76.536709,39.251847],[-76.53671,39.251842],[-76.53671199999999,39.251837],[-76.536714,39.251831],[-76.536715,39.251826],[-76.536717,39.251821],[-76.53671900000001,39.251815],[-76.53672,39.25181],[-76.536722,39.251805],[-76.53672299999999,39.251799],[-76.536725,39.251794],[-76.536727,39.251789],[-76.536728,39.251783],[-76.53673000000001,39.251778],[-76.536732,39.251773],[-76.536733,39.251767],[-76.53673499999999,39.251762],[-76.536737,39.251757],[-76.536738,39.251751],[-76.53673999999999,39.251746],[-76.536742,39.251741],[-76.536743,39.251735],[-76.536745,39.25173],[-76.53674700000001,39.251725],[-76.536749,39.251719],[-76.53675,39.251714],[-76.53675200000001,39.251709],[-76.536754,39.251703],[-76.536755,39.251698],[-76.53675699999999,39.251693],[-76.536759,39.251687],[-76.53676,39.251682],[-76.536762,39.251677],[-76.53676400000001,39.251671],[-76.536765,39.251666],[-76.536767,39.251661],[-76.53676900000001,39.251655],[-76.53677,39.25165],[-76.536772,39.251645],[-76.53677399999999,39.251639],[-76.53677500000001,39.251634],[-76.536777,39.251629],[-76.536779,39.251623],[-76.53677999999999,39.251618],[-76.536782,39.251613],[-76.536784,39.251607],[-76.53678499999999,39.251602],[-76.536787,39.251597],[-76.536789,39.251591],[-76.53679099999999,39.251586],[-76.53679200000001,39.251581],[-76.536794,39.251575],[-76.536796,39.25157],[-76.53679700000001,39.251565],[-76.536799,39.251559],[-76.53680199999999,39.25155],[-76.536804,39.251545],[-76.536805,39.251539],[-76.536807,39.251534],[-76.53680900000001,39.251529],[-76.53681,39.251523],[-76.536812,39.251518],[-76.53681400000001,39.251513],[-76.536815,39.251507],[-76.536817,39.251502],[-76.53681899999999,39.251497],[-76.536821,39.251491],[-76.536822,39.251486],[-76.536824,39.251481],[-76.536826,39.251475],[-76.536827,39.25147],[-76.536829,39.251465],[-76.53683100000001,39.251459],[-76.536832,39.251454],[-76.536834,39.251449],[-76.53683599999999,39.251443],[-76.53683700000001,39.251438],[-76.536839,39.251433],[-76.536841,39.251427],[-76.53684199999999,39.251422],[-76.536844,39.251417],[-76.536846,39.251411],[-76.53684699999999,39.251406],[-76.536849,39.251401],[-76.536851,39.251395],[-76.53685299999999,39.25139],[-76.53685400000001,39.251385],[-76.536856,39.251379],[-76.536858,39.251374],[-76.53685900000001,39.251369],[-76.536861,39.251363],[-76.536863,39.251358],[-76.53686399999999,39.251353],[-76.536866,39.251347],[-76.536868,39.251342],[-76.536869,39.251337],[-76.536871,39.251331],[-76.536873,39.251326],[-76.536874,39.251321],[-76.53687600000001,39.251315],[-76.536878,39.25131],[-76.53688,39.251305],[-76.53688099999999,39.251299],[-76.536883,39.251294],[-76.536885,39.251289],[-76.536886,39.251283],[-76.536888,39.251278],[-76.53689,39.251273],[-76.536891,39.251267],[-76.53689300000001,39.251262],[-76.536895,39.251257],[-76.536896,39.251251],[-76.53689799999999,39.251246],[-76.5369,39.251241],[-76.536902,39.251235],[-76.536903,39.25123],[-76.536905,39.251225],[-76.536907,39.251219],[-76.536908,39.251214],[-76.53691000000001,39.251209],[-76.536912,39.251203],[-76.536913,39.251198],[-76.53691499999999,39.251193],[-76.536917,39.251187],[-76.536919,39.251182],[-76.53691999999999,39.251177],[-76.536922,39.251171],[-76.536924,39.251166],[-76.536925,39.251161],[-76.53692700000001,39.251155],[-76.536929,39.25115],[-76.53693,39.251145],[-76.53693199999999,39.251139],[-76.536934,39.251134],[-76.536936,39.251129],[-76.53693699999999,39.251123],[-76.536939,39.251118],[-76.536941,39.251113],[-76.536942,39.251107],[-76.53694400000001,39.251102],[-76.536946,39.251097],[-76.536947,39.251091],[-76.53694900000001,39.251086],[-76.536951,39.251081],[-76.536952,39.251075],[-76.53695399999999,39.25107],[-76.536956,39.251065],[-76.536958,39.251059],[-76.536959,39.251054],[-76.53696100000001,39.251049],[-76.536963,39.251043],[-76.536964,39.251038],[-76.53696600000001,39.251033],[-76.536968,39.251027],[-76.536969,39.251022],[-76.53697099999999,39.251017],[-76.536973,39.251011],[-76.536974,39.251006],[-76.536976,39.251001],[-76.536978,39.250995],[-76.536979,39.25099],[-76.536981,39.250985],[-76.53698300000001,39.250979],[-76.536984,39.250974],[-76.536986,39.250969],[-76.53698799999999,39.250963],[-76.53698900000001,39.250958],[-76.536991,39.250953],[-76.536993,39.250947],[-76.53699400000001,39.250942],[-76.536996,39.250937],[-76.536998,39.250931],[-76.53699899999999,39.250926],[-76.537001,39.250921],[-76.537003,39.250915],[-76.537004,39.25091],[-76.53700600000001,39.250905],[-76.537008,39.250899],[-76.537009,39.250894],[-76.53701100000001,39.250889],[-76.537013,39.250883],[-76.537014,39.250878],[-76.53701599999999,39.250873],[-76.537018,39.250867],[-76.537019,39.250862],[-76.537021,39.250857],[-76.537023,39.250851],[-76.537024,39.250846],[-76.537026,39.250841],[-76.53702800000001,39.250835],[-76.53703,39.25083],[-76.537031,39.250825],[-76.53703299999999,39.250819],[-76.537035,39.250814],[-76.537036,39.250809],[-76.537038,39.250803],[-76.53704,39.250798],[-76.537041,39.250793],[-76.537043,39.250787],[-76.53704500000001,39.250782],[-76.537046,39.250777],[-76.537048,39.250771],[-76.53704999999999,39.250766],[-76.537052,39.250761],[-76.537053,39.250755],[-76.537055,39.25075],[-76.537057,39.250745],[-76.537058,39.250739],[-76.53706,39.250734],[-76.53706200000001,39.250729],[-76.537064,39.250723],[-76.537065,39.250718],[-76.53706699999999,39.250713],[-76.537069,39.250707],[-76.53707,39.250702],[-76.53707199999999,39.250697],[-76.537074,39.250691],[-76.537075,39.250686],[-76.537077,39.250681],[-76.53707900000001,39.250675],[-76.537081,39.25067],[-76.537082,39.250665],[-76.53708399999999,39.250659],[-76.537086,39.250654],[-76.537087,39.250649],[-76.53708899999999,39.250643],[-76.537091,39.250638],[-76.537092,39.250633],[-76.537094,39.250627],[-76.53709600000001,39.250622],[-76.537097,39.250617],[-76.537099,39.250611],[-76.53710100000001,39.250606],[-76.537103,39.250601],[-76.537104,39.250595],[-76.53710599999999,39.25059],[-76.537108,39.250585],[-76.537109,39.250579],[-76.537111,39.250574],[-76.53711300000001,39.250569],[-76.537114,39.250563],[-76.537116,39.250558],[-76.53711800000001,39.250553],[-76.537119,39.250547],[-76.537121,39.250542],[-76.53712299999999,39.250537],[-76.53712400000001,39.250531],[-76.537126,39.250526],[-76.537128,39.250521],[-76.53712899999999,39.250515],[-76.537131,39.25051],[-76.537133,39.250505],[-76.53713500000001,39.250499],[-76.537136,39.250494],[-76.537138,39.250489],[-76.53713999999999,39.250483],[-76.53714100000001,39.250478],[-76.537143,39.250473],[-76.537145,39.250467],[-76.53714600000001,39.250462],[-76.537148,39.250457],[-76.53715,39.250451],[-76.53715099999999,39.250446],[-76.537153,39.250441],[-76.537155,39.250435],[-76.537156,39.25043],[-76.53715800000001,39.250425],[-76.53716,39.250419],[-76.537161,39.250414],[-76.53716300000001,39.250409],[-76.537165,39.250403],[-76.537166,39.250398],[-76.53716799999999,39.250393],[-76.53717,39.250387],[-76.537171,39.250382],[-76.537173,39.250377],[-76.537175,39.250371],[-76.537176,39.250366],[-76.537178,39.250361],[-76.53718000000001,39.250355],[-76.537181,39.25035],[-76.537183,39.250345],[-76.53718499999999,39.250339],[-76.53718600000001,39.250334],[-76.537188,39.250329],[-76.537189,39.250324],[-76.53719,39.250323],[-76.53719100000001,39.250318],[-76.537193,39.250313],[-76.537195,39.250307],[-76.53719599999999,39.250302],[-76.537198,39.250297],[-76.5372,39.250291],[-76.53720199999999,39.250286],[-76.53720300000001,39.250281],[-76.537205,39.250275],[-76.537207,39.25027],[-76.53720800000001,39.250265],[-76.53721,39.250259],[-76.537212,39.250254],[-76.53721299999999,39.250249],[-76.537215,39.250243],[-76.537217,39.250238],[-76.537218,39.250233],[-76.53722,39.250227],[-76.537222,39.250222],[-76.537223,39.250217],[-76.53722500000001,39.250211],[-76.537227,39.250206],[-76.537228,39.250201],[-76.53722999999999,39.250195],[-76.537232,39.25019],[-76.537233,39.250185],[-76.537235,39.250179],[-76.537237,39.250174],[-76.537238,39.250169],[-76.53724,39.250163],[-76.53724200000001,39.250158],[-76.537243,39.250153],[-76.537245,39.250147],[-76.53724699999999,39.250142],[-76.53724800000001,39.250137],[-76.53725,39.250131],[-76.537252,39.250126],[-76.537254,39.250121],[-76.537255,39.250115],[-76.537257,39.25011],[-76.53725900000001,39.250105],[-76.53726,39.250099],[-76.537262,39.250094],[-76.53726399999999,39.250089],[-76.537265,39.250083],[-76.537267,39.250078],[-76.53726899999999,39.250073],[-76.53727000000001,39.250067],[-76.537272,39.250062],[-76.537274,39.250057],[-76.53727499999999,39.250051],[-76.537277,39.250046],[-76.537279,39.250041],[-76.53728,39.250035],[-76.537282,39.25003],[-76.537284,39.250025],[-76.537285,39.250019],[-76.53728700000001,39.250014],[-76.537289,39.250009],[-76.537291,39.250003],[-76.53729199999999,39.249998],[-76.537294,39.249993],[-76.537296,39.249987],[-76.537297,39.249982],[-76.537299,39.249977],[-76.537301,39.249971],[-76.537302,39.249966],[-76.53730400000001,39.249961],[-76.537306,39.249955],[-76.537307,39.24995],[-76.53730899999999,39.249945],[-76.537311,39.249939],[-76.537313,39.249934],[-76.53731399999999,39.249929],[-76.537316,39.249923],[-76.537318,39.249918],[-76.537319,39.249913],[-76.53732100000001,39.249907],[-76.537323,39.249902],[-76.537324,39.249897],[-76.53732599999999,39.249891],[-76.537328,39.249886],[-76.537329,39.249881],[-76.53733099999999,39.249875],[-76.537333,39.24987],[-76.537335,39.249865],[-76.537336,39.249859],[-76.53733800000001,39.249854],[-76.53734,39.249849],[-76.537341,39.249844],[-76.53734300000001,39.249838],[-76.537345,39.249833],[-76.537346,39.249828],[-76.53734799999999,39.249822],[-76.53735,39.249817],[-76.537352,39.249812],[-76.537353,39.249806],[-76.53735500000001,39.249801],[-76.537357,39.249796],[-76.537358,39.24979],[-76.53736000000001,39.249785],[-76.537362,39.24978],[-76.537363,39.249774],[-76.53736499999999,39.249769],[-76.537367,39.249764],[-76.537368,39.249758],[-76.53737,39.249753],[-76.537372,39.249748],[-76.537374,39.249742],[-76.537375,39.249737],[-76.53737700000001,39.249732],[-76.537379,39.249726],[-76.53738,39.249721],[-76.53738199999999,39.249716],[-76.537384,39.24971],[-76.537385,39.249705],[-76.537387,39.2497],[-76.537389,39.249694],[-76.537391,39.249689],[-76.537392,39.249684],[-76.53739400000001,39.249678],[-76.537396,39.249673],[-76.537397,39.249668],[-76.53739899999999,39.249662],[-76.537401,39.249657],[-76.537402,39.249652],[-76.537404,39.249646],[-76.537406,39.249641],[-76.537407,39.249636],[-76.537409,39.24963],[-76.53741100000001,39.249625],[-76.537413,39.24962],[-76.537414,39.249614],[-76.53741599999999,39.249609],[-76.537418,39.249604],[-76.537419,39.249598],[-76.53742099999999,39.249593],[-76.537423,39.249588],[-76.537424,39.249582],[-76.537426,39.249577],[-76.53742800000001,39.249572],[-76.53743,39.249566],[-76.537431,39.249561],[-76.53743299999999,39.249556],[-76.537435,39.24955],[-76.537436,39.249545],[-76.53743799999999,39.24954],[-76.53744,39.249534],[-76.537441,39.249529],[-76.537443,39.249524],[-76.53744500000001,39.249518],[-76.537447,39.249513],[-76.537448,39.249508],[-76.53745000000001,39.249502],[-76.537452,39.249497],[-76.537453,39.249492],[-76.53745499999999,39.249486],[-76.537457,39.249481],[-76.537458,39.249476],[-76.53746,39.24947],[-76.537462,39.249465],[-76.537464,39.24946],[-76.537465,39.249454],[-76.53746700000001,39.249449],[-76.537469,39.249444],[-76.53747,39.249438],[-76.53747199999999,39.249433],[-76.537474,39.249428],[-76.537475,39.249422],[-76.537477,39.249417],[-76.537479,39.249412],[-76.53748,39.249406],[-76.537482,39.249401],[-76.53748400000001,39.249396],[-76.537486,39.24939],[-76.537487,39.249385],[-76.53748899999999,39.24938],[-76.537491,39.249374],[-76.537492,39.249369],[-76.537494,39.249364],[-76.537496,39.249358],[-76.537497,39.249353],[-76.537499,39.249348],[-76.53750100000001,39.249342],[-76.537503,39.249337],[-76.537504,39.249332],[-76.53750599999999,39.249326],[-76.537508,39.249321],[-76.537509,39.249316],[-76.53751099999999,39.24931],[-76.537513,39.249305],[-76.537514,39.2493],[-76.537516,39.249294],[-76.53751800000001,39.249289],[-76.53752,39.249284],[-76.537521,39.249279],[-76.53752299999999,39.249273],[-76.537525,39.249268],[-76.537526,39.249263],[-76.53752799999999,39.249257],[-76.53753,39.249252],[-76.537531,39.249247],[-76.537533,39.249241],[-76.53753500000001,39.249236],[-76.537536,39.249231],[-76.537538,39.249225],[-76.53754000000001,39.24922],[-76.537542,39.249215],[-76.537543,39.249209],[-76.53754499999999,39.249204],[-76.537547,39.249199],[-76.537548,39.249193],[-76.53755,39.249188],[-76.53755200000001,39.249183],[-76.537553,39.249177],[-76.537555,39.249172],[-76.53755700000001,39.249167],[-76.537559,39.249161],[-76.53756,39.249156],[-76.53756199999999,39.249151],[-76.537564,39.249145],[-76.537565,39.24914],[-76.537567,39.249135],[-76.537569,39.249129],[-76.53757,39.249124],[-76.53757299999999,39.249116],[-76.537575,39.249111],[-76.537577,39.249105],[-76.537578,39.2491],[-76.53758000000001,39.249095],[-76.537582,39.249089],[-76.537584,39.249084],[-76.537586,39.249079],[-76.537587,39.249073],[-76.537589,39.249068],[-76.53759100000001,39.249063],[-76.537592,39.249057],[-76.537594,39.249052],[-76.53759599999999,39.249047],[-76.53759700000001,39.249041],[-76.537599,39.249036],[-76.537601,39.249031],[-76.53760200000001,39.249025],[-76.537604,39.24902],[-76.537606,39.249015],[-76.53760699999999,39.249009],[-76.537609,39.249004],[-76.537611,39.248999],[-76.537612,39.248993],[-76.537614,39.248988],[-76.537615,39.248983],[-76.537617,39.248977],[-76.53761900000001,39.248972],[-76.53762,39.248967],[-76.537622,39.248961],[-76.53762399999999,39.248956],[-76.53762500000001,39.248951],[-76.537627,39.248945],[-76.537629,39.24894],[-76.53762999999999,39.248935],[-76.537632,39.248929],[-76.537633,39.248924],[-76.53763499999999,39.248919],[-76.537637,39.248913],[-76.537638,39.248908],[-76.53764,39.248903],[-76.53764200000001,39.248897],[-76.537643,39.248892],[-76.537645,39.248887],[-76.53764700000001,39.248881],[-76.537648,39.248876],[-76.53765,39.248871],[-76.53765199999999,39.248865],[-76.537654,39.24886],[-76.537655,39.248855],[-76.537657,39.248849],[-76.537659,39.248844],[-76.53766,39.248839],[-76.537662,39.248833],[-76.53766400000001,39.248828],[-76.537666,39.248823],[-76.537667,39.248817],[-76.53766899999999,39.248812],[-76.537671,39.248807],[-76.537673,39.248801],[-76.537674,39.248796],[-76.537676,39.248791],[-76.537678,39.248785],[-76.53767999999999,39.24878],[-76.53768100000001,39.248775],[-76.537683,39.248769],[-76.537685,39.248764],[-76.53768700000001,39.248759],[-76.537688,39.248753],[-76.53769,39.248748],[-76.53769200000001,39.248743],[-76.537693,39.248737],[-76.537695,39.248732],[-76.53769699999999,39.248727],[-76.537699,39.248721],[-76.5377,39.248716],[-76.537702,39.248711],[-76.53770400000001,39.248705],[-76.537705,39.2487],[-76.537707,39.248695],[-76.53770900000001,39.24869],[-76.537711,39.248684],[-76.537712,39.248679],[-76.53771399999999,39.248674],[-76.537716,39.248668],[-76.537717,39.248663],[-76.537719,39.248658],[-76.537721,39.248652],[-76.537722,39.248647],[-76.537724,39.248642],[-76.53772600000001,39.248636],[-76.537727,39.248631],[-76.537729,39.248626],[-76.53773099999999,39.24862],[-76.537733,39.248615],[-76.537734,39.24861],[-76.537736,39.248604],[-76.537738,39.248599],[-76.537739,39.248594],[-76.537741,39.248588],[-76.53774300000001,39.248583],[-76.537744,39.248578],[-76.537746,39.248572],[-76.53774799999999,39.248567],[-76.53774900000001,39.248562],[-76.537751,39.248556],[-76.537753,39.248551],[-76.53775400000001,39.248546],[-76.537756,39.24854],[-76.537758,39.248535],[-76.53775899999999,39.24853],[-76.537761,39.248524],[-76.537763,39.248519],[-76.537764,39.248514],[-76.537766,39.248508],[-76.537768,39.248503],[-76.537769,39.248498],[-76.53777100000001,39.248492],[-76.537773,39.248487],[-76.537774,39.248481],[-76.53777599999999,39.248476],[-76.537778,39.248471],[-76.537779,39.248465],[-76.537781,39.24846],[-76.537783,39.248455],[-76.537784,39.248449],[-76.537786,39.248444],[-76.53778800000001,39.248439],[-76.537789,39.248433],[-76.537791,39.248428],[-76.53779299999999,39.248423],[-76.53779400000001,39.248417],[-76.537796,39.248412],[-76.537798,39.248407],[-76.53779900000001,39.248401],[-76.537801,39.248396],[-76.537803,39.248391],[-76.53780399999999,39.248385],[-76.537806,39.24838],[-76.537808,39.248375],[-76.537809,39.248369],[-76.537811,39.248364],[-76.537813,39.248359],[-76.537814,39.248353],[-76.53781600000001,39.248348],[-76.537818,39.248343],[-76.537819,39.248337],[-76.53782099999999,39.248332],[-76.537823,39.248327],[-76.537824,39.248321],[-76.537826,39.248316],[-76.537828,39.248311],[-76.537829,39.248305],[-76.537831,39.2483],[-76.53783300000001,39.248295],[-76.537834,39.248289],[-76.537836,39.248284],[-76.53783799999999,39.248279],[-76.53783900000001,39.248273],[-76.537841,39.248268],[-76.537843,39.248263],[-76.53784400000001,39.248257],[-76.537846,39.248252],[-76.537848,39.248247],[-76.53785000000001,39.248241],[-76.537851,39.248236],[-76.537853,39.248231],[-76.53785499999999,39.248225],[-76.537856,39.24822],[-76.537858,39.248215],[-76.53785999999999,39.248209],[-76.53786100000001,39.248204],[-76.537863,39.248199],[-76.537865,39.248193],[-76.53786599999999,39.248188],[-76.537868,39.248183],[-76.53787,39.248177],[-76.537871,39.248172],[-76.537873,39.248167],[-76.537875,39.248161],[-76.537876,39.248156],[-76.53787800000001,39.248151],[-76.53788,39.248145],[-76.537881,39.24814],[-76.53788299999999,39.248135],[-76.537885,39.248129],[-76.537886,39.248124],[-76.537888,39.248119],[-76.53789,39.248113],[-76.537891,39.248108],[-76.537893,39.248103],[-76.53789500000001,39.248097],[-76.537896,39.248092],[-76.537898,39.248087],[-76.53789999999999,39.248081],[-76.53790100000001,39.248076],[-76.537903,39.248071],[-76.53790499999999,39.248065],[-76.53790600000001,39.24806],[-76.537908,39.248055],[-76.53791,39.248049],[-76.53791099999999,39.248044],[-76.537913,39.248039],[-76.537915,39.248033],[-76.537916,39.248028],[-76.537918,39.248023],[-76.53792,39.248017],[-76.537921,39.248012],[-76.53792300000001,39.248007],[-76.537925,39.248001],[-76.537926,39.247996],[-76.53792799999999,39.247991],[-76.53793,39.247985],[-76.537931,39.24798],[-76.537933,39.247975],[-76.537935,39.247969],[-76.537936,39.247964],[-76.537938,39.247959],[-76.53794000000001,39.247953],[-76.537941,39.247948],[-76.537943,39.247943],[-76.53794499999999,39.247937],[-76.53794600000001,39.247932],[-76.537948,39.247927],[-76.53795,39.247921],[-76.53795100000001,39.247916],[-76.537953,39.247911],[-76.537955,39.247905],[-76.53795599999999,39.2479],[-76.537958,39.247895],[-76.53796,39.247889],[-76.537961,39.247884],[-76.537963,39.247879],[-76.537964,39.247873],[-76.537966,39.247868],[-76.53796800000001,39.247863],[-76.537969,39.247857],[-76.537971,39.247852],[-76.53797299999999,39.247847],[-76.53797400000001,39.247841],[-76.537976,39.247836],[-76.537978,39.247831],[-76.53797900000001,39.247825],[-76.537981,39.24782],[-76.537983,39.247815],[-76.53798399999999,39.247809],[-76.537986,39.247804],[-76.537988,39.247798],[-76.537989,39.247793],[-76.53799100000001,39.247788],[-76.537993,39.247782],[-76.537994,39.247777],[-76.53799600000001,39.247772],[-76.537998,39.247766],[-76.537999,39.247761],[-76.53800099999999,39.247756],[-76.538003,39.24775],[-76.538005,39.247745],[-76.538006,39.24774],[-76.538008,39.247735],[-76.53801,39.247729],[-76.538011,39.247724],[-76.53801300000001,39.247719],[-76.538015,39.247713],[-76.538016,39.247708],[-76.53801799999999,39.247703],[-76.53802,39.247697],[-76.538022,39.247692],[-76.538023,39.247687],[-76.538025,39.247681],[-76.538027,39.247676],[-76.538028,39.247671],[-76.53803000000001,39.247665],[-76.538032,39.24766],[-76.538033,39.247655],[-76.53803499999999,39.247649],[-76.538037,39.247644],[-76.538039,39.247639],[-76.53804,39.247633],[-76.538042,39.247628],[-76.538044,39.247623],[-76.538045,39.247617],[-76.53804700000001,39.247612],[-76.538049,39.247607],[-76.538051,39.247601],[-76.53805199999999,39.247596],[-76.538054,39.247591],[-76.538056,39.247585],[-76.53805699999999,39.24758],[-76.538059,39.247575],[-76.538061,39.247569],[-76.53806299999999,39.247564],[-76.53806400000001,39.247559],[-76.538066,39.247553],[-76.538068,39.247548],[-76.53806899999999,39.247543],[-76.538071,39.247537],[-76.538073,39.247532],[-76.53807500000001,39.247527],[-76.538076,39.247521],[-76.538078,39.247516],[-76.53807999999999,39.247511],[-76.53808100000001,39.247505],[-76.538083,39.2475],[-76.538085,39.247495],[-76.538087,39.247489],[-76.538088,39.247484],[-76.53809,39.247479],[-76.53809200000001,39.247473],[-76.538093,39.247468],[-76.538095,39.247463],[-76.53809699999999,39.247457],[-76.538099,39.247452],[-76.5381,39.247447],[-76.53810199999999,39.247441],[-76.538104,39.247436],[-76.538105,39.247431],[-76.538107,39.247426],[-76.53810900000001,39.24742],[-76.538111,39.247415],[-76.538112,39.24741],[-76.53811399999999,39.247404],[-76.538116,39.247399],[-76.538117,39.247394],[-76.53811899999999,39.247388],[-76.538121,39.247383],[-76.538123,39.247378],[-76.538124,39.247372],[-76.53812600000001,39.247367],[-76.538128,39.247362],[-76.538129,39.247356],[-76.53813100000001,39.247351],[-76.538133,39.247346],[-76.538134,39.24734],[-76.53813599999999,39.247335],[-76.538138,39.24733],[-76.53814,39.247324],[-76.538141,39.247319],[-76.53814300000001,39.247314],[-76.538145,39.247308],[-76.538146,39.247303],[-76.53814800000001,39.247298],[-76.53815,39.247292],[-76.538151,39.247287],[-76.53815299999999,39.247282],[-76.538155,39.247276],[-76.538156,39.247271],[-76.538158,39.247266],[-76.53816,39.24726],[-76.538162,39.247255],[-76.538163,39.24725],[-76.53816500000001,39.247244],[-76.538167,39.247239],[-76.538168,39.247234],[-76.53816999999999,39.247228],[-76.538172,39.247223],[-76.538173,39.247218],[-76.538175,39.247212],[-76.538177,39.247207],[-76.538178,39.247202],[-76.53818,39.247196],[-76.53818200000001,39.247191],[-76.538183,39.247186],[-76.538185,39.24718],[-76.53818699999999,39.247175],[-76.53818800000001,39.24717],[-76.53819,39.247164],[-76.538192,39.247159],[-76.53819300000001,39.247154],[-76.538195,39.247148],[-76.538197,39.247143],[-76.53819799999999,39.247138],[-76.5382,39.247132],[-76.538202,39.247127],[-76.538203,39.247122],[-76.538205,39.247116],[-76.538206,39.247111],[-76.538208,39.247106],[-76.53821000000001,39.2471],[-76.538211,39.247095],[-76.538213,39.24709],[-76.53821499999999,39.247084],[-76.53821600000001,39.247079],[-76.538218,39.247074],[-76.53822,39.247068],[-76.53822099999999,39.247063],[-76.538223,39.247057],[-76.538225,39.247052],[-76.53822599999999,39.247047],[-76.538228,39.247041],[-76.53823,39.247036],[-76.538231,39.247031],[-76.53823300000001,39.247025],[-76.538234,39.24702],[-76.538236,39.247015],[-76.53823800000001,39.247009],[-76.538239,39.247005],[-76.538239,39.247004],[-76.538241,39.246999],[-76.53824299999999,39.246993],[-76.53824400000001,39.246988],[-76.538246,39.246983],[-76.538248,39.246977],[-76.53824899999999,39.246972],[-76.538251,39.246967],[-76.538253,39.246961],[-76.53825399999999,39.246956],[-76.538256,39.246951],[-76.538257,39.246945],[-76.538259,39.24694],[-76.53826100000001,39.246935],[-76.538262,39.246929],[-76.538264,39.246924],[-76.53826599999999,39.246919],[-76.538267,39.246913],[-76.538269,39.246908],[-76.53827099999999,39.246903],[-76.53827200000001,39.246897],[-76.538274,39.246892],[-76.538276,39.246887],[-76.53827699999999,39.246881],[-76.538279,39.246876],[-76.538281,39.246871],[-76.538282,39.246865],[-76.538284,39.24686],[-76.538285,39.246855],[-76.538287,39.246849],[-76.53828900000001,39.246844],[-76.53829,39.246839],[-76.538292,39.246833],[-76.53829399999999,39.246828],[-76.53829500000001,39.246822],[-76.538297,39.246817],[-76.538298,39.246812],[-76.53830000000001,39.246806],[-76.538302,39.246801],[-76.538303,39.246796],[-76.53830499999999,39.24679],[-76.538307,39.246785],[-76.538308,39.24678],[-76.53831,39.246774],[-76.538312,39.246769],[-76.538313,39.246764],[-76.538315,39.246758],[-76.53831599999999,39.246753],[-76.538318,39.246748],[-76.53832,39.246742],[-76.538321,39.246737],[-76.53832300000001,39.246732],[-76.538325,39.246726],[-76.538326,39.246721],[-76.53832800000001,39.246716],[-76.53833,39.24671],[-76.538331,39.246705],[-76.53833299999999,39.2467],[-76.538335,39.246694],[-76.538336,39.246689],[-76.538338,39.246684],[-76.53834000000001,39.246678],[-76.538342,39.246671],[-76.538344,39.246666],[-76.53834500000001,39.246661],[-76.538347,39.246655],[-76.538349,39.24665],[-76.53834999999999,39.246645],[-76.538352,39.246639],[-76.538354,39.246634],[-76.53835599999999,39.246629],[-76.538357,39.246623],[-76.538359,39.246618],[-76.53836099999999,39.246613],[-76.53836200000001,39.246607],[-76.538364,39.246602],[-76.538366,39.246597],[-76.53836699999999,39.246591],[-76.538369,39.246586],[-76.538371,39.246581],[-76.538372,39.246575],[-76.538374,39.24657],[-76.538376,39.246565],[-76.53837799999999,39.246559],[-76.53837900000001,39.246554],[-76.538381,39.246549],[-76.538383,39.246543],[-76.53838399999999,39.246538],[-76.538386,39.246533],[-76.538388,39.246527],[-76.538389,39.246522],[-76.538391,39.246517],[-76.538393,39.246511],[-76.538394,39.246506],[-76.53839600000001,39.246501],[-76.538398,39.246495],[-76.5384,39.24649],[-76.53840099999999,39.246485],[-76.538403,39.246479],[-76.538405,39.246474],[-76.53840599999999,39.246469],[-76.538408,39.246463],[-76.53841,39.246458],[-76.538411,39.246453],[-76.53841300000001,39.246447],[-76.538415,39.246442],[-76.538416,39.246437],[-76.53841799999999,39.246431],[-76.53842,39.246426],[-76.538422,39.246421],[-76.53842299999999,39.246415],[-76.538425,39.24641],[-76.538427,39.246405],[-76.538428,39.246399],[-76.53843000000001,39.246394],[-76.538432,39.246389],[-76.538433,39.246383],[-76.53843500000001,39.246378],[-76.538437,39.246373],[-76.538438,39.246367],[-76.53843999999999,39.246362],[-76.538442,39.246357],[-76.538444,39.246351],[-76.538445,39.246346],[-76.53844700000001,39.246341],[-76.538449,39.246335],[-76.53845,39.24633],[-76.53845200000001,39.246325],[-76.538454,39.246319],[-76.538455,39.246314],[-76.53845699999999,39.246309],[-76.538459,39.246303],[-76.53846,39.246298],[-76.538462,39.246293],[-76.538464,39.246287],[-76.538466,39.246282],[-76.538467,39.246277],[-76.53846900000001,39.246271],[-76.538471,39.246266],[-76.538472,39.246261],[-76.53847399999999,39.246255],[-76.538476,39.24625],[-76.538477,39.246245],[-76.538479,39.246239],[-76.538481,39.246234],[-76.538483,39.246229],[-76.538484,39.246223],[-76.53848600000001,39.246218],[-76.538488,39.246213],[-76.538489,39.246207],[-76.53849099999999,39.246202],[-76.538493,39.246197],[-76.538494,39.246191],[-76.53849599999999,39.246186],[-76.538498,39.246181],[-76.5385,39.246176],[-76.538501,39.24617],[-76.53850300000001,39.246165],[-76.538505,39.24616],[-76.538506,39.246154],[-76.53850799999999,39.246149],[-76.53851,39.246144],[-76.538511,39.246138],[-76.53851299999999,39.246133],[-76.538515,39.246128],[-76.538517,39.246122],[-76.538518,39.246117],[-76.53852000000001,39.246112],[-76.538522,39.246106],[-76.538523,39.246101],[-76.53852500000001,39.246096],[-76.538527,39.24609],[-76.538529,39.246085],[-76.53852999999999,39.24608],[-76.538532,39.246074],[-76.538534,39.246069],[-76.538535,39.246064],[-76.53853700000001,39.246058],[-76.538539,39.246053],[-76.538541,39.246048],[-76.53854200000001,39.246042],[-76.538544,39.246037],[-76.538546,39.246032],[-76.53854699999999,39.246026],[-76.538549,39.246021],[-76.538551,39.246016],[-76.53855299999999,39.24601],[-76.538554,39.246005],[-76.538556,39.246],[-76.53855799999999,39.245994],[-76.53855900000001,39.245989],[-76.538561,39.245984],[-76.538563,39.245978],[-76.53856500000001,39.245973],[-76.538566,39.245968],[-76.538568,39.245962],[-76.53857000000001,39.245957],[-76.538572,39.245952],[-76.538573,39.245946],[-76.53857499999999,39.245941],[-76.538577,39.245936],[-76.538578,39.24593],[-76.53858,39.245925],[-76.53858200000001,39.24592],[-76.538584,39.245915],[-76.538585,39.245909],[-76.53858700000001,39.245904],[-76.538589,39.245899],[-76.53859,39.245893],[-76.53859199999999,39.245888],[-76.538594,39.245883],[-76.538596,39.245877],[-76.538597,39.245872],[-76.538599,39.245867],[-76.538601,39.245861],[-76.53860299999999,39.245856],[-76.53860400000001,39.245851],[-76.538606,39.245845],[-76.538608,39.24584],[-76.53860899999999,39.245835],[-76.538611,39.245829],[-76.538613,39.245824],[-76.53861499999999,39.245819],[-76.538616,39.245813],[-76.538618,39.245808],[-76.53861999999999,39.245803],[-76.538622,39.245797],[-76.538623,39.245792],[-76.538625,39.245787],[-76.53862700000001,39.245781],[-76.538628,39.245776],[-76.53863,39.245771],[-76.53863200000001,39.245765],[-76.538634,39.24576],[-76.538635,39.245755],[-76.53863699999999,39.245749],[-76.538639,39.245744],[-76.538641,39.245739],[-76.538642,39.245733],[-76.53864400000001,39.245728],[-76.538646,39.245723],[-76.53864799999999,39.245718],[-76.53864900000001,39.245712],[-76.538651,39.245707],[-76.538653,39.245702],[-76.53865399999999,39.245696],[-76.538656,39.245691],[-76.538657,39.245685],[-76.538659,39.24568],[-76.538661,39.245675],[-76.538662,39.245669],[-76.538664,39.245664],[-76.53866600000001,39.245659],[-76.538667,39.245653],[-76.538669,39.245648],[-76.53867,39.245643],[-76.53867200000001,39.245637],[-76.538674,39.245632],[-76.538675,39.245627],[-76.53867700000001,39.245621],[-76.538679,39.245616],[-76.53868,39.245611],[-76.53868199999999,39.245605],[-76.53868300000001,39.2456],[-76.538685,39.245595],[-76.538687,39.245589],[-76.53868799999999,39.245584],[-76.53869,39.245579],[-76.538692,39.245573],[-76.53869299999999,39.245568],[-76.538695,39.245563],[-76.538696,39.245557],[-76.538698,39.245552],[-76.53870000000001,39.245547],[-76.538701,39.245541],[-76.538703,39.245536],[-76.53870499999999,39.245531],[-76.538706,39.245525],[-76.538708,39.24552],[-76.53870999999999,39.245514],[-76.53871100000001,39.245509],[-76.538713,39.245504],[-76.538714,39.245498],[-76.53871599999999,39.245493],[-76.538718,39.245488],[-76.538719,39.245482],[-76.538721,39.245477],[-76.538723,39.245472],[-76.538724,39.245466],[-76.538726,39.245461],[-76.53872699999999,39.245456],[-76.538729,39.24545],[-76.538731,39.245445],[-76.538732,39.24544],[-76.53873400000001,39.245434],[-76.538736,39.245429],[-76.538737,39.245424],[-76.53873900000001,39.245418],[-76.538741,39.245413],[-76.538743,39.245408],[-76.53874399999999,39.245402],[-76.54042800000001,39.250526],[-76.540426,39.250527],[-76.540424,39.250527],[-76.54042200000001,39.250527],[-76.54042,39.250528],[-76.540418,39.250528],[-76.54041599999999,39.250528],[-76.540414,39.250529],[-76.540412,39.250529],[-76.54041100000001,39.25053],[-76.540409,39.25053],[-76.540407,39.25053],[-76.54040500000001,39.250531],[-76.540403,39.250532],[-76.540401,39.250532],[-76.54040000000001,39.250533],[-76.540398,39.250533],[-76.540396,39.250534],[-76.54039400000001,39.250535],[-76.540392,39.250535],[-76.540391,39.250536],[-76.540389,39.250537],[-76.540387,39.250538],[-76.540386,39.250538],[-76.540384,39.250539],[-76.54038199999999,39.25054],[-76.540381,39.250541],[-76.540379,39.250542],[-76.540378,39.250543],[-76.54037599999999,39.250543],[-76.540374,39.250544],[-76.540373,39.250545],[-76.54037099999999,39.250546],[-76.54037,39.250547],[-76.540368,39.250548],[-76.540367,39.250549],[-76.54036600000001,39.25055],[-76.540364,39.250551],[-76.540363,39.250553],[-76.540362,39.250554],[-76.54036000000001,39.250555],[-76.540359,39.250556],[-76.540358,39.250557],[-76.540356,39.250558],[-76.54035500000001,39.250559],[-76.54035399999999,39.250561],[-76.540353,39.250562],[-76.540352,39.250563],[-76.540351,39.250564],[-76.54035,39.250566],[-76.54034900000001,39.250567],[-76.54034799999999,39.250568],[-76.540347,39.25057],[-76.540346,39.250571],[-76.540345,39.250572],[-76.540344,39.250574],[-76.54034299999999,39.250575],[-76.540342,39.250576],[-76.540341,39.250578],[-76.54034,39.250579],[-76.54034,39.250581],[-76.540339,39.250582],[-76.54033800000001,39.250583],[-76.54033800000001,39.250585],[-76.54033699999999,39.250586],[-76.54033699999999,39.250588],[-76.540336,39.250589],[-76.540335,39.250591],[-76.540335,39.250592],[-76.540335,39.250594],[-76.540334,39.250595],[-76.540334,39.250597],[-76.540333,39.250598],[-76.540333,39.2506],[-76.540333,39.250601],[-76.540333,39.250603],[-76.54033200000001,39.250604],[-76.54033200000001,39.250606],[-76.54033200000001,39.250607],[-76.54033200000001,39.250609],[-76.54033200000001,39.25061],[-76.54033200000001,39.250612],[-76.54033200000001,39.250613],[-76.54033200000001,39.250615],[-76.54033200000001,39.250616],[-76.54033200000001,39.250618],[-76.54033200000001,39.250619],[-76.54033200000001,39.250621],[-76.54033200000001,39.250622],[-76.540333,39.250624],[-76.540333,39.250625],[-76.540333,39.250627],[-76.540333,39.250628],[-76.540334,39.25063],[-76.540334,39.250631],[-76.540335,39.250633],[-76.540335,39.250634],[-76.540336,39.250636],[-76.540336,39.250637],[-76.54033699999999,39.250639],[-76.54033699999999,39.25064],[-76.54033800000001,39.250642],[-76.540339,39.250643],[-76.540339,39.250644],[-76.54034,39.250646],[-76.540341,39.250647],[-76.540342,39.250649],[-76.540342,39.25065],[-76.54034299999999,39.250651],[-76.540344,39.250653],[-76.540345,39.250654],[-76.540346,39.250655],[-76.540347,39.250657],[-76.54034799999999,39.250658],[-76.54034900000001,39.250659],[-76.54035,39.250661],[-76.540351,39.250662],[-76.540352,39.250663],[-76.540353,39.250664],[-76.540351,39.250664],[-76.54035,39.250664],[-76.54034900000001,39.250663],[-76.54034799999999,39.250663],[-76.540346,39.250663],[-76.540345,39.250663],[-76.540344,39.250662],[-76.54034299999999,39.250662],[-76.540341,39.250662],[-76.54034,39.250662],[-76.540339,39.250662],[-76.54033699999999,39.250662],[-76.540336,39.250662],[-76.540335,39.250662],[-76.540334,39.250662],[-76.54033200000001,39.250663],[-76.54033099999999,39.250663],[-76.54033,39.250663],[-76.540329,39.250663],[-76.540327,39.250664],[-76.54032599999999,39.250664],[-76.540325,39.250664],[-76.540324,39.250665],[-76.540323,39.250665],[-76.54032100000001,39.250666],[-76.54031999999999,39.250666],[-76.540319,39.250667],[-76.540318,39.250667],[-76.540317,39.250668],[-76.540316,39.250668],[-76.54031500000001,39.250669],[-76.540314,39.25067],[-76.540313,39.25067],[-76.540312,39.250671],[-76.540311,39.250672],[-76.54031000000001,39.250673],[-76.54030899999999,39.250674],[-76.540308,39.250675],[-76.540307,39.250676],[-76.540307,39.250677],[-76.540306,39.250677],[-76.540306,39.250678],[-76.540305,39.250679],[-76.540305,39.25068],[-76.54030400000001,39.250681],[-76.54030400000001,39.250682],[-76.54030299999999,39.250683],[-76.54030299999999,39.250684],[-76.54030299999999,39.250685],[-76.540302,39.250686],[-76.540302,39.250687],[-76.540302,39.250688],[-76.540302,39.250689],[-76.540302,39.25069],[-76.540302,39.250691],[-76.540302,39.250692],[-76.540302,39.250693],[-76.540302,39.250694],[-76.540302,39.250695],[-76.540302,39.250696],[-76.54030299999999,39.250697],[-76.54030299999999,39.250698],[-76.54030299999999,39.250699],[-76.54030400000001,39.2507],[-76.54030400000001,39.250701],[-76.54030400000001,39.250702],[-76.540305,39.250703],[-76.540305,39.250704],[-76.540306,39.250704],[-76.540307,39.250705],[-76.540307,39.250706],[-76.540308,39.250707],[-76.54030899999999,39.250708],[-76.54030899999999,39.250709],[-76.54031000000001,39.250709],[-76.540311,39.25071],[-76.540312,39.250711],[-76.540313,39.250712],[-76.540314,39.250712],[-76.54031500000001,39.250713],[-76.540316,39.250714],[-76.540317,39.250714],[-76.540318,39.250715],[-76.540318,39.250716],[-76.540316,39.250716],[-76.540314,39.250717],[-76.540313,39.250717],[-76.540311,39.250717],[-76.54030899999999,39.250717],[-76.540307,39.250718],[-76.540305,39.250718],[-76.54030299999999,39.250718],[-76.540301,39.250719],[-76.5403,39.250719],[-76.54029800000001,39.25072],[-76.540296,39.25072],[-76.540294,39.250721],[-76.54029199999999,39.250721],[-76.540291,39.250722],[-76.540289,39.250722],[-76.54028700000001,39.250723],[-76.540285,39.250723],[-76.540284,39.250724],[-76.540282,39.250725],[-76.54028,39.250725],[-76.540279,39.250726],[-76.540277,39.250727],[-76.54027499999999,39.250727],[-76.540274,39.250728],[-76.540272,39.250729],[-76.54027000000001,39.25073],[-76.540269,39.250731],[-76.540267,39.250731],[-76.540266,39.250732],[-76.54026399999999,39.250733],[-76.540263,39.250734],[-76.540261,39.250735],[-76.54026,39.250736],[-76.54025799999999,39.250737],[-76.540257,39.250738],[-76.540256,39.250739],[-76.540254,39.25074],[-76.54025300000001,39.250741],[-76.540252,39.250742],[-76.54025,39.250743],[-76.540249,39.250744],[-76.54024800000001,39.250745],[-76.54024699999999,39.250747],[-76.540245,39.250748],[-76.540244,39.250749],[-76.540243,39.25075],[-76.54024200000001,39.250751],[-76.54024099999999,39.250752],[-76.54024,39.250754],[-76.540239,39.250755],[-76.540238,39.250756],[-76.540237,39.250757],[-76.54023599999999,39.250759],[-76.540235,39.25076],[-76.540234,39.250761],[-76.540233,39.250763],[-76.540232,39.250764],[-76.540232,39.250765],[-76.54023100000001,39.250767],[-76.54022999999999,39.250768],[-76.540229,39.250769],[-76.540229,39.250771],[-76.540228,39.250772],[-76.540227,39.250773],[-76.540227,39.250775],[-76.540226,39.250776],[-76.540226,39.250778],[-76.54022500000001,39.250779],[-76.54022500000001,39.250781],[-76.54022399999999,39.250782],[-76.54022399999999,39.250783],[-76.540223,39.250785],[-76.540223,39.250786],[-76.540223,39.250788],[-76.540223,39.250789],[-76.540222,39.250791],[-76.540222,39.250792],[-76.540222,39.250794],[-76.540222,39.250795],[-76.540222,39.250797],[-76.540222,39.250798],[-76.540222,39.2508],[-76.540222,39.250801],[-76.540222,39.250802],[-76.540222,39.250804],[-76.540222,39.250805],[-76.540222,39.250807],[-76.540222,39.250808],[-76.540222,39.25081],[-76.540222,39.250811],[-76.540223,39.250813],[-76.540223,39.250814],[-76.540223,39.250816],[-76.54022399999999,39.250817],[-76.54022399999999,39.250819],[-76.54022399999999,39.25082],[-76.54022500000001,39.250821],[-76.54022500000001,39.250823],[-76.540226,39.250824],[-76.540226,39.250826],[-76.540227,39.250827],[-76.540228,39.250829],[-76.540228,39.25083],[-76.540229,39.250831],[-76.54022999999999,39.250833],[-76.54022999999999,39.250834],[-76.54023100000001,39.250835],[-76.540232,39.250837],[-76.540233,39.250838],[-76.540233,39.250839],[-76.540234,39.250841],[-76.540235,39.250842],[-76.54023599999999,39.250843],[-76.540237,39.250845],[-76.540238,39.250846],[-76.540239,39.250847],[-76.54024,39.250848],[-76.540238,39.250848],[-76.540237,39.250848],[-76.540235,39.250848],[-76.540234,39.250848],[-76.540232,39.250848],[-76.54023100000001,39.250848],[-76.540229,39.250848],[-76.540228,39.250848],[-76.540226,39.250848],[-76.54022500000001,39.250848],[-76.540223,39.250848],[-76.540222,39.250848],[-76.540221,39.250849],[-76.54021899999999,39.250849],[-76.540218,39.250849],[-76.540216,39.25085],[-76.540215,39.25085],[-76.54021400000001,39.250851],[-76.540212,39.250851],[-76.540211,39.250852],[-76.54021,39.250852],[-76.54020800000001,39.250853],[-76.540207,39.250853],[-76.540206,39.250854],[-76.540205,39.250855],[-76.540204,39.250855],[-76.54020300000001,39.250856],[-76.54020199999999,39.250857],[-76.540201,39.250858],[-76.5402,39.250859],[-76.540199,39.25086],[-76.540198,39.25086],[-76.54019700000001,39.250861],[-76.54019599999999,39.250862],[-76.540195,39.250863],[-76.540194,39.250864],[-76.540194,39.250865],[-76.540193,39.250866],[-76.540192,39.250867],[-76.540192,39.250868],[-76.54019099999999,39.250869],[-76.54019099999999,39.250871],[-76.54019,39.250872],[-76.54019,39.250873],[-76.54019,39.250874],[-76.54019,39.250875],[-76.540189,39.250876],[-76.540189,39.250877],[-76.540189,39.250878],[-76.540189,39.25088],[-76.540189,39.250881],[-76.540189,39.250882],[-76.540189,39.250883],[-76.540189,39.250884],[-76.540189,39.250885],[-76.54019,39.250886],[-76.54019,39.250888],[-76.54019,39.250889],[-76.54019099999999,39.25089],[-76.54019099999999,39.250891],[-76.540192,39.250892],[-76.540192,39.250893],[-76.540193,39.250894],[-76.540193,39.250895],[-76.540194,39.250896],[-76.540195,39.250897],[-76.540195,39.250898],[-76.54019599999999,39.250899],[-76.54019700000001,39.2509],[-76.540198,39.250901],[-76.540199,39.250902],[-76.5402,39.250903],[-76.540201,39.250903],[-76.54020199999999,39.250904],[-76.54020300000001,39.250905],[-76.540204,39.250906],[-76.540205,39.250906],[-76.540207,39.250907],[-76.540209,39.250908],[-76.540207,39.250909],[-76.540205,39.250909],[-76.54020300000001,39.250909],[-76.540201,39.250909],[-76.5402,39.25091],[-76.540198,39.25091],[-76.54019599999999,39.25091],[-76.540194,39.25091],[-76.540192,39.250911],[-76.54019,39.250911],[-76.540188,39.250912],[-76.540187,39.250912],[-76.54018499999999,39.250913],[-76.540183,39.250913],[-76.540181,39.250914],[-76.54017899999999,39.250914],[-76.540178,39.250915],[-76.540176,39.250915],[-76.54017399999999,39.250916],[-76.540172,39.250917],[-76.540171,39.250917],[-76.54016900000001,39.250918],[-76.540167,39.250919],[-76.540166,39.250919],[-76.540164,39.25092],[-76.540162,39.250921],[-76.540161,39.250922],[-76.540159,39.250923],[-76.54015699999999,39.250923],[-76.540156,39.250924],[-76.540154,39.250925],[-76.540153,39.250926],[-76.54015099999999,39.250927],[-76.54015,39.250928],[-76.540148,39.250929],[-76.540147,39.25093],[-76.54014599999999,39.250931],[-76.540144,39.250932],[-76.540143,39.250933],[-76.54014100000001,39.250934],[-76.54013999999999,39.250935],[-76.540139,39.250936],[-76.540137,39.250937],[-76.540136,39.250938],[-76.54013500000001,39.25094],[-76.54013399999999,39.250941],[-76.540133,39.250942],[-76.540132,39.250943],[-76.54013,39.250944],[-76.54012899999999,39.250946],[-76.540128,39.250947],[-76.540127,39.250948],[-76.540126,39.250949],[-76.540125,39.250951],[-76.54012400000001,39.250952],[-76.54012299999999,39.250953],[-76.540122,39.250954],[-76.540122,39.250956],[-76.540121,39.250957],[-76.54012,39.250959],[-76.540119,39.25096],[-76.54011800000001,39.250961],[-76.54011800000001,39.250963],[-76.540117,39.250964],[-76.540116,39.250965],[-76.540116,39.250967],[-76.540115,39.250968],[-76.540115,39.25097],[-76.540114,39.250971],[-76.540114,39.250973],[-76.54011300000001,39.250974],[-76.54011300000001,39.250975],[-76.54011199999999,39.250977],[-76.54011199999999,39.250978],[-76.54011199999999,39.25098],[-76.540111,39.250981],[-76.540111,39.250983],[-76.540111,39.250984],[-76.540111,39.250986],[-76.540111,39.250987],[-76.54011,39.250989],[-76.54011,39.25099],[-76.54011,39.250992],[-76.54011,39.250993],[-76.54011,39.250995],[-76.54011,39.250996],[-76.54011,39.250998],[-76.540111,39.250999],[-76.540111,39.251001],[-76.540111,39.251002],[-76.540111,39.251004],[-76.540111,39.251005],[-76.54011199999999,39.251007],[-76.54011199999999,39.251008],[-76.54011199999999,39.25101],[-76.54011300000001,39.251011],[-76.54011300000001,39.251012],[-76.54011300000001,39.251014],[-76.540114,39.251015],[-76.540114,39.251017],[-76.540115,39.251018],[-76.540116,39.25102],[-76.540116,39.251021],[-76.540117,39.251022],[-76.540117,39.251024],[-76.54011800000001,39.251025],[-76.540119,39.251027],[-76.54012,39.251028],[-76.54012,39.251029],[-76.540121,39.251031],[-76.540122,39.251032],[-76.54012299999999,39.251033],[-76.54012400000001,39.251035],[-76.540125,39.251036],[-76.540126,39.251037],[-76.540127,39.251039],[-76.540128,39.251041],[-76.540126,39.25104],[-76.540125,39.25104],[-76.54012299999999,39.25104],[-76.540122,39.25104],[-76.540121,39.25104],[-76.540119,39.251039],[-76.54011800000001,39.251039],[-76.540117,39.251039],[-76.540115,39.251039],[-76.540114,39.251039],[-76.54011199999999,39.251039],[-76.540111,39.25104],[-76.54011,39.25104],[-76.540108,39.25104],[-76.54010700000001,39.25104],[-76.54010599999999,39.25104],[-76.540104,39.251041],[-76.540103,39.251041],[-76.540102,39.251041],[-76.5401,39.251042],[-76.540099,39.251042],[-76.540098,39.251043],[-76.540097,39.251043],[-76.54009499999999,39.251044],[-76.540094,39.251044],[-76.540093,39.251045],[-76.540092,39.251046],[-76.540091,39.251046],[-76.54009000000001,39.251047],[-76.54008899999999,39.251048],[-76.540088,39.251048],[-76.540087,39.251049],[-76.540086,39.25105],[-76.540085,39.251051],[-76.54008399999999,39.251052],[-76.540083,39.251052],[-76.540082,39.251053],[-76.540082,39.251054],[-76.540081,39.251055],[-76.54008,39.251056],[-76.54008,39.251057],[-76.54007900000001,39.251058],[-76.54007900000001,39.251059],[-76.54007799999999,39.25106],[-76.54007799999999,39.251061],[-76.540077,39.251062],[-76.540077,39.251063],[-76.540077,39.251064],[-76.540076,39.251065],[-76.540076,39.251066],[-76.540076,39.251067],[-76.540076,39.251069],[-76.540076,39.25107],[-76.540076,39.251071],[-76.540076,39.251072],[-76.540076,39.251073],[-76.540076,39.251074],[-76.540076,39.251075],[-76.540077,39.251076],[-76.540077,39.251077],[-76.540077,39.251078],[-76.54007799999999,39.251079],[-76.54007799999999,39.25108],[-76.54007900000001,39.251081],[-76.54007900000001,39.251082],[-76.54008,39.251083],[-76.54008,39.251084],[-76.540081,39.251085],[-76.540082,39.251086],[-76.540082,39.251087],[-76.540083,39.251088],[-76.54008399999999,39.251089],[-76.540085,39.25109],[-76.540086,39.25109],[-76.540087,39.251091],[-76.540087,39.251092],[-76.540088,39.251093],[-76.54009000000001,39.251094],[-76.540091,39.251094],[-76.540092,39.251095],[-76.540093,39.251096],[-76.540094,39.251096],[-76.54009600000001,39.251097],[-76.540094,39.251097],[-76.540092,39.251098],[-76.540091,39.251098],[-76.54008899999999,39.251098],[-76.540087,39.251098],[-76.540085,39.251099],[-76.540083,39.251099],[-76.540081,39.251099],[-76.54007900000001,39.2511],[-76.540077,39.2511],[-76.540076,39.251101],[-76.540074,39.251101],[-76.540072,39.251102],[-76.54007,39.251102],[-76.54006800000001,39.251103],[-76.540066,39.251103],[-76.540065,39.251104],[-76.540063,39.251104],[-76.54006099999999,39.251105],[-76.540059,39.251106],[-76.540058,39.251106],[-76.54005600000001,39.251107],[-76.540054,39.251108],[-76.540053,39.251109],[-76.54005100000001,39.251109],[-76.540049,39.25111],[-76.540048,39.251111],[-76.540046,39.251112],[-76.54004500000001,39.251113],[-76.540043,39.251114],[-76.540041,39.251114],[-76.54004,39.251115],[-76.540038,39.251116],[-76.540037,39.251117],[-76.540035,39.251118],[-76.54003400000001,39.251119],[-76.54003299999999,39.25112],[-76.540031,39.251121],[-76.54003,39.251122],[-76.540029,39.251123],[-76.54002699999999,39.251125],[-76.540026,39.251126],[-76.540025,39.251127],[-76.54002300000001,39.251128],[-76.54002199999999,39.251129],[-76.540021,39.25113],[-76.54002,39.251132],[-76.540019,39.251133],[-76.540018,39.251134],[-76.54001599999999,39.251135],[-76.540015,39.251136],[-76.540014,39.251138],[-76.540013,39.251139],[-76.540012,39.25114],[-76.540012,39.251142],[-76.54001100000001,39.251143],[-76.54001,39.251144],[-76.540009,39.251146],[-76.540008,39.251147],[-76.540007,39.251148],[-76.54000600000001,39.25115],[-76.54000600000001,39.251151],[-76.54000499999999,39.251153],[-76.540004,39.251154],[-76.540004,39.251155],[-76.540003,39.251157],[-76.540003,39.251158],[-76.540002,39.25116],[-76.540002,39.251161],[-76.540001,39.251163],[-76.540001,39.251164],[-76.54000000000001,39.251166],[-76.54000000000001,39.251167],[-76.54000000000001,39.251168],[-76.53999899999999,39.25117],[-76.53999899999999,39.251171],[-76.53999899999999,39.251173],[-76.539998,39.251174],[-76.539998,39.251176],[-76.539998,39.251177],[-76.539998,39.251179],[-76.539998,39.25118],[-76.539998,39.251182],[-76.539998,39.251183],[-76.539998,39.251185],[-76.539998,39.251186],[-76.539998,39.251188],[-76.539998,39.251189],[-76.539998,39.251191],[-76.53999899999999,39.251192],[-76.53999899999999,39.251194],[-76.53999899999999,39.251195],[-76.53999899999999,39.251197],[-76.54000000000001,39.251198],[-76.54000000000001,39.2512],[-76.54000000000001,39.251201],[-76.540001,39.251203],[-76.540001,39.251204],[-76.540002,39.251206],[-76.540002,39.251207],[-76.540003,39.251209],[-76.540004,39.25121],[-76.540004,39.251211],[-76.54000499999999,39.251213],[-76.54000499999999,39.251214],[-76.54000600000001,39.251216],[-76.540007,39.251217],[-76.540008,39.251218],[-76.540009,39.25122],[-76.540009,39.251221],[-76.54001,39.251222],[-76.54001100000001,39.251224],[-76.540012,39.251225],[-76.540013,39.251226],[-76.540014,39.251228],[-76.540015,39.251229],[-76.54001599999999,39.25123],[-76.540014,39.25123],[-76.540013,39.25123],[-76.54001100000001,39.25123],[-76.540009,39.25123],[-76.540008,39.25123],[-76.54000600000001,39.25123],[-76.540004,39.25123],[-76.540003,39.251231],[-76.540001,39.251231],[-76.53999899999999,39.251231],[-76.539998,39.251231],[-76.539996,39.251232],[-76.53999399999999,39.251232],[-76.539993,39.251233],[-76.539991,39.251233],[-76.53999,39.251234],[-76.53998799999999,39.251234],[-76.539987,39.251235],[-76.539985,39.251236],[-76.539984,39.251236],[-76.53998300000001,39.251237],[-76.539981,39.251238],[-76.53998,39.251239],[-76.539979,39.251239],[-76.53997699999999,39.25124],[-76.539976,39.251241],[-76.539975,39.251242],[-76.539974,39.251243],[-76.539973,39.251244],[-76.53997200000001,39.251245],[-76.53997099999999,39.251246],[-76.53997,39.251247],[-76.539969,39.251249],[-76.539968,39.25125],[-76.539967,39.251251],[-76.539967,39.251252],[-76.53996600000001,39.251253],[-76.539965,39.251254],[-76.539965,39.251256],[-76.539964,39.251257],[-76.539964,39.251258],[-76.539963,39.251259],[-76.539963,39.251261],[-76.539963,39.251262],[-76.539963,39.251263],[-76.539962,39.251265],[-76.539962,39.251266],[-76.539962,39.251267],[-76.539962,39.251269],[-76.539962,39.25127],[-76.539962,39.251271],[-76.539963,39.251273],[-76.539963,39.251274],[-76.539963,39.251275],[-76.539963,39.251276],[-76.539964,39.251278],[-76.539964,39.251279],[-76.539965,39.25128],[-76.539965,39.251281],[-76.53996600000001,39.251283],[-76.539967,39.251284],[-76.539967,39.251285],[-76.539968,39.251286],[-76.539969,39.251287],[-76.539967,39.251288],[-76.539965,39.251288],[-76.539964,39.251288],[-76.539962,39.251289],[-76.53995999999999,39.251289],[-76.539958,39.25129],[-76.539956,39.25129],[-76.53995500000001,39.251291],[-76.539953,39.251291],[-76.539951,39.251292],[-76.53994899999999,39.251292],[-76.539948,39.251293],[-76.539946,39.251294],[-76.53994400000001,39.251294],[-76.53994299999999,39.251295],[-76.539941,39.251296],[-76.539939,39.251296],[-76.53993800000001,39.251297],[-76.539936,39.251298],[-76.539934,39.251299],[-76.539933,39.2513],[-76.539931,39.2513],[-76.53993,39.251301],[-76.539928,39.251302],[-76.53992700000001,39.251303],[-76.539925,39.251304],[-76.539924,39.251305],[-76.539922,39.251306],[-76.53992100000001,39.251307],[-76.539919,39.251308],[-76.539918,39.251309],[-76.539917,39.25131],[-76.53991499999999,39.251311],[-76.539914,39.251312],[-76.539913,39.251313],[-76.539911,39.251314],[-76.53991000000001,39.251315],[-76.53990899999999,39.251316],[-76.539908,39.251318],[-76.539907,39.251319],[-76.539906,39.25132],[-76.53990400000001,39.251321],[-76.539903,39.251322],[-76.539902,39.251324],[-76.539901,39.251325],[-76.5399,39.251326],[-76.53989900000001,39.251327],[-76.53989799999999,39.251329],[-76.539897,39.25133],[-76.539897,39.251331],[-76.539896,39.251333],[-76.539895,39.251334],[-76.539894,39.251335],[-76.53989300000001,39.251337],[-76.53989300000001,39.251338],[-76.53989199999999,39.251339],[-76.539891,39.251341],[-76.539891,39.251342],[-76.53989,39.251343],[-76.539889,39.251345],[-76.539889,39.251346],[-76.539888,39.251348],[-76.539888,39.251349],[-76.53988699999999,39.251351],[-76.53988699999999,39.251352],[-76.53988699999999,39.251353],[-76.539886,39.251355],[-76.539886,39.251356],[-76.539886,39.251358],[-76.539885,39.251359],[-76.539885,39.251361],[-76.539885,39.251362],[-76.539885,39.251364],[-76.539885,39.251365],[-76.539885,39.251367],[-76.539884,39.251368],[-76.539884,39.25137],[-76.539884,39.251371],[-76.539884,39.251373],[-76.539885,39.251374],[-76.539885,39.251375],[-76.539885,39.251377],[-76.539885,39.251378],[-76.539885,39.25138],[-76.539885,39.251381],[-76.539886,39.251383],[-76.539886,39.251384],[-76.539886,39.251386],[-76.53988699999999,39.251387],[-76.53988699999999,39.251389],[-76.53988699999999,39.25139],[-76.539888,39.251391],[-76.539888,39.251393],[-76.539889,39.251394],[-76.53989,39.251396],[-76.53989,39.251397],[-76.539891,39.251399],[-76.539891,39.2514],[-76.53989199999999,39.251401],[-76.53989300000001,39.251403],[-76.539894,39.251404],[-76.539894,39.251405],[-76.539895,39.251407],[-76.539896,39.251408],[-76.539897,39.251409],[-76.53989799999999,39.251411],[-76.53989900000001,39.251412],[-76.5399,39.251413],[-76.5399,39.251414],[-76.539902,39.251416],[-76.5399,39.251415],[-76.53989799999999,39.251415],[-76.539897,39.251415],[-76.539896,39.251415],[-76.539895,39.251415],[-76.53989300000001,39.251414],[-76.53989199999999,39.251414],[-76.539891,39.251414],[-76.53989,39.251414],[-76.539888,39.251414],[-76.53988699999999,39.251414],[-76.539886,39.251415],[-76.539885,39.251415],[-76.539883,39.251415],[-76.53988200000001,39.251415],[-76.53988099999999,39.251415],[-76.53988,39.251416],[-76.539878,39.251416],[-76.539877,39.251416],[-76.53987600000001,39.251417],[-76.53987499999999,39.251417],[-76.539874,39.251417],[-76.539873,39.251418],[-76.539872,39.251418],[-76.53987100000001,39.251419],[-76.539869,39.251419],[-76.539868,39.25142],[-76.539867,39.251421],[-76.539866,39.251422],[-76.53986500000001,39.251423],[-76.53986399999999,39.251423],[-76.539863,39.251424],[-76.539862,39.251425],[-76.539861,39.251426],[-76.53986,39.251427],[-76.53985900000001,39.251428],[-76.53985900000001,39.251429],[-76.539858,39.25143],[-76.539857,39.251431],[-76.539856,39.251432],[-76.539856,39.251433],[-76.539856,39.251434],[-76.539855,39.251435],[-76.539855,39.251436],[-76.539855,39.251437],[-76.53985400000001,39.251438],[-76.53985400000001,39.251439],[-76.53985400000001,39.25144],[-76.53985400000001,39.251441],[-76.53985400000001,39.251442],[-76.53985400000001,39.251443],[-76.53985400000001,39.251444],[-76.53985400000001,39.251445],[-76.53985400000001,39.251446],[-76.53985400000001,39.251447],[-76.539855,39.251448],[-76.539855,39.251449],[-76.539855,39.25145],[-76.539855,39.251451],[-76.539856,39.251452],[-76.539856,39.251453],[-76.539857,39.251454],[-76.539858,39.251455],[-76.539858,39.251456],[-76.53985900000001,39.251457],[-76.53986,39.251458],[-76.53986,39.251459],[-76.539861,39.251459],[-76.539862,39.25146],[-76.539863,39.251461],[-76.53986399999999,39.251462],[-76.53986500000001,39.251463],[-76.539866,39.251464],[-76.539867,39.251464],[-76.539868,39.251465],[-76.539869,39.251466],[-76.539869,39.251467],[-76.539867,39.251467],[-76.53986500000001,39.251468],[-76.539863,39.251468],[-76.539862,39.251468],[-76.53986,39.251469],[-76.539858,39.251469],[-76.539856,39.25147],[-76.53985400000001,39.25147],[-76.539852,39.251471],[-76.53985,39.251471],[-76.53984800000001,39.251472],[-76.539846,39.251472],[-76.539844,39.251473],[-76.539843,39.251474],[-76.539841,39.251474],[-76.539839,39.251475],[-76.53983700000001,39.251476],[-76.539835,39.251476],[-76.539834,39.251477],[-76.539832,39.251478],[-76.53982999999999,39.251479],[-76.539828,39.251479],[-76.539827,39.25148],[-76.53982499999999,39.251481],[-76.539823,39.251482],[-76.539822,39.251483],[-76.53982000000001,39.251484],[-76.539818,39.251485],[-76.539817,39.251486],[-76.539815,39.251487],[-76.53981400000001,39.251488],[-76.539812,39.251489],[-76.539811,39.25149],[-76.53980900000001,39.251491],[-76.53980799999999,39.251492],[-76.539806,39.251493],[-76.539805,39.251494],[-76.539804,39.251496],[-76.53980199999999,39.251497],[-76.539801,39.251498],[-76.5398,39.251499],[-76.539799,39.2515],[-76.53979699999999,39.251502],[-76.539796,39.251503],[-76.539795,39.251504],[-76.539794,39.251505],[-76.539793,39.251507],[-76.53979200000001,39.251508],[-76.53979099999999,39.251509],[-76.53979,39.251511],[-76.539789,39.251512],[-76.539788,39.251514],[-76.539787,39.251515],[-76.53978600000001,39.251516],[-76.53978499999999,39.251518],[-76.539784,39.251519],[-76.539783,39.251521],[-76.539782,39.251522],[-76.539782,39.251524],[-76.539781,39.251525],[-76.53977999999999,39.251526],[-76.53977999999999,39.251528],[-76.539779,39.251529],[-76.539779,39.251531],[-76.539778,39.251532],[-76.539778,39.251534],[-76.539777,39.251536],[-76.539777,39.251537],[-76.539776,39.251539],[-76.539776,39.25154],[-76.53977500000001,39.251542],[-76.53977500000001,39.251543],[-76.53977500000001,39.251545],[-76.53977500000001,39.251546],[-76.53977399999999,39.251548],[-76.53977399999999,39.251549],[-76.53977399999999,39.251551],[-76.53977399999999,39.251553],[-76.53977399999999,39.251554],[-76.53977399999999,39.251556],[-76.53977399999999,39.251557],[-76.53977399999999,39.251559],[-76.53977399999999,39.25156],[-76.53977399999999,39.251562],[-76.53977399999999,39.251564],[-76.53977500000001,39.251565],[-76.53977500000001,39.251567],[-76.53977500000001,39.251568],[-76.53977500000001,39.25157],[-76.539776,39.251571],[-76.539776,39.251573],[-76.539776,39.251574],[-76.539777,39.251576],[-76.539777,39.251577],[-76.539778,39.251579],[-76.539778,39.251581],[-76.539779,39.251582],[-76.53977999999999,39.251584],[-76.53977999999999,39.251585],[-76.539781,39.251586],[-76.539782,39.251588],[-76.539782,39.251589],[-76.539783,39.251591],[-76.539784,39.251592],[-76.53978499999999,39.251594],[-76.53978600000001,39.251595],[-76.53978600000001,39.251597],[-76.539787,39.251598],[-76.539788,39.251599],[-76.53978600000001,39.251599],[-76.539784,39.251599],[-76.539783,39.251599],[-76.539782,39.251599],[-76.53977999999999,39.251599],[-76.539779,39.251599],[-76.539778,39.251599],[-76.539776,39.251599],[-76.53977500000001,39.251599],[-76.53977399999999,39.251599],[-76.539773,39.251599],[-76.539771,39.251599],[-76.53977,39.2516],[-76.53976900000001,39.2516],[-76.539767,39.2516],[-76.539766,39.251601],[-76.539765,39.251601],[-76.53976400000001,39.251601],[-76.53976299999999,39.251602],[-76.539761,39.251602],[-76.53976,39.251603],[-76.539759,39.251603],[-76.53975800000001,39.251604],[-76.53975699999999,39.251605],[-76.539756,39.251605],[-76.539755,39.251606],[-76.539754,39.251607],[-76.539753,39.251607],[-76.53975199999999,39.251608],[-76.539751,39.251609],[-76.53975,39.25161],[-76.539749,39.251611],[-76.539748,39.251612],[-76.53974700000001,39.251613],[-76.53974700000001,39.251614],[-76.53974599999999,39.251615],[-76.539745,39.251616],[-76.539745,39.251617],[-76.539744,39.251618],[-76.539744,39.251619],[-76.539743,39.25162],[-76.539743,39.251621],[-76.539743,39.251622],[-76.539742,39.251623],[-76.539742,39.251624],[-76.539742,39.251626],[-76.539742,39.251627],[-76.539742,39.251628],[-76.539742,39.251629],[-76.539742,39.25163],[-76.539742,39.251631],[-76.539742,39.251632],[-76.539742,39.251633],[-76.539743,39.251634],[-76.539743,39.251635],[-76.539743,39.251636],[-76.539743,39.251637],[-76.539744,39.251638],[-76.539744,39.251639],[-76.539745,39.25164],[-76.539745,39.251641],[-76.53974599999999,39.251641],[-76.53974700000001,39.251642],[-76.53974700000001,39.251643],[-76.539748,39.251644],[-76.539749,39.251645],[-76.539749,39.251646],[-76.53975,39.251647],[-76.539751,39.251647],[-76.53975199999999,39.251648],[-76.539753,39.251649],[-76.539754,39.25165],[-76.539755,39.25165],[-76.539756,39.251652],[-76.539755,39.251652],[-76.539753,39.251652],[-76.539751,39.251653],[-76.539749,39.251653],[-76.53974700000001,39.251654],[-76.539745,39.251654],[-76.539743,39.251655],[-76.53974100000001,39.251655],[-76.539739,39.251656],[-76.539738,39.251656],[-76.539736,39.251657],[-76.539734,39.251657],[-76.539732,39.251658],[-76.53973000000001,39.251659],[-76.539728,39.251659],[-76.539727,39.25166],[-76.539725,39.251661],[-76.539723,39.251662],[-76.539721,39.251662],[-76.53971900000001,39.251663],[-76.53971799999999,39.251664],[-76.539716,39.251665],[-76.539714,39.251666],[-76.53971300000001,39.251667],[-76.539711,39.251668],[-76.53971,39.251669],[-76.539708,39.25167],[-76.539706,39.251671],[-76.539705,39.251672],[-76.539703,39.251673],[-76.53970200000001,39.251674],[-76.5397,39.251675],[-76.539699,39.251676],[-76.539697,39.251677],[-76.53969600000001,39.251678],[-76.53969499999999,39.251679],[-76.539693,39.25168],[-76.539692,39.251682],[-76.539691,39.251683],[-76.539689,39.251684],[-76.539688,39.251685],[-76.539687,39.251687],[-76.539686,39.251688],[-76.53968500000001,39.251689],[-76.53968399999999,39.25169],[-76.539682,39.251692],[-76.539681,39.251693],[-76.53968,39.251694],[-76.53967900000001,39.251696],[-76.53967799999999,39.251697],[-76.539677,39.251698],[-76.539677,39.2517],[-76.539676,39.251701],[-76.539675,39.251703],[-76.53967400000001,39.251704],[-76.53967299999999,39.251706],[-76.539672,39.251707],[-76.539672,39.251709],[-76.539671,39.25171],[-76.53967,39.251712],[-76.53967,39.251713],[-76.539669,39.251715],[-76.539669,39.251716],[-76.53966800000001,39.251718],[-76.53966800000001,39.251719],[-76.53966699999999,39.251721],[-76.53966699999999,39.251722],[-76.539666,39.251724],[-76.539666,39.251725],[-76.539666,39.251727],[-76.539665,39.251728],[-76.539665,39.25173],[-76.539665,39.251731],[-76.539665,39.251733],[-76.539665,39.251735],[-76.539665,39.251736],[-76.539665,39.251738],[-76.539664,39.251739],[-76.539664,39.251741],[-76.539665,39.251742],[-76.539665,39.251744],[-76.539665,39.251746],[-76.539665,39.251747],[-76.539665,39.251749],[-76.539665,39.25175],[-76.539665,39.251752],[-76.539666,39.251753],[-76.539666,39.251755],[-76.539666,39.251756],[-76.53966699999999,39.251758],[-76.53966699999999,39.25176],[-76.53966800000001,39.251761],[-76.53966800000001,39.251763],[-76.539669,39.251764],[-76.539669,39.251766],[-76.53967,39.251767],[-76.53967,39.251769],[-76.539671,39.25177],[-76.539672,39.251772],[-76.53967299999999,39.251773],[-76.53967299999999,39.251774],[-76.53967400000001,39.251776],[-76.539675,39.251777],[-76.539676,39.251779],[-76.539677,39.25178],[-76.53967799999999,39.251782],[-76.53967900000001,39.251783],[-76.53968,39.251784],[-76.539681,39.251786],[-76.53967900000001,39.251786],[-76.53967799999999,39.251786],[-76.539677,39.251786],[-76.539675,39.251786],[-76.53967400000001,39.251786],[-76.53967299999999,39.251785],[-76.539672,39.251785],[-76.53967,39.251785],[-76.539669,39.251785],[-76.53966800000001,39.251785],[-76.539666,39.251785],[-76.539665,39.251785],[-76.539664,39.251786],[-76.539663,39.251786],[-76.539661,39.251786],[-76.53966,39.251786],[-76.539659,39.251786],[-76.539658,39.251787],[-76.53965599999999,39.251787],[-76.539655,39.251787],[-76.539654,39.251788],[-76.539653,39.251788],[-76.539652,39.251789],[-76.53965100000001,39.251789],[-76.53964999999999,39.25179],[-76.539648,39.25179],[-76.539647,39.251791],[-76.539646,39.251791],[-76.53964499999999,39.251792],[-76.539644,39.251793],[-76.539643,39.251793],[-76.539643,39.251794],[-76.539642,39.251795],[-76.539641,39.251795],[-76.53964000000001,39.251796],[-76.53963899999999,39.251797],[-76.539638,39.251798],[-76.539638,39.251799],[-76.539637,39.251799],[-76.539636,39.2518],[-76.539636,39.251801],[-76.539635,39.251802],[-76.539635,39.251803],[-76.53963400000001,39.251804],[-76.53963400000001,39.251805],[-76.53963400000001,39.251806],[-76.53963299999999,39.251807],[-76.53963299999999,39.251808],[-76.53963299999999,39.251809],[-76.539632,39.25181],[-76.539632,39.251811],[-76.539632,39.251812],[-76.539632,39.251813],[-76.539632,39.251814],[-76.539632,39.251815],[-76.539632,39.251816],[-76.539632,39.251817],[-76.539632,39.251818],[-76.539632,39.251819],[-76.53963299999999,39.25182],[-76.53963299999999,39.251821],[-76.53963299999999,39.251822],[-76.53963400000001,39.251823],[-76.539635,39.251824],[-76.539635,39.251825],[-76.539636,39.251826],[-76.539636,39.251827],[-76.539637,39.251828],[-76.539637,39.251829],[-76.539638,39.25183],[-76.53963899999999,39.251831],[-76.53964000000001,39.251831],[-76.53964000000001,39.251832],[-76.539641,39.251833],[-76.539642,39.251834],[-76.539643,39.251834],[-76.539644,39.251835],[-76.53964499999999,39.251836],[-76.539646,39.251836],[-76.539647,39.251837],[-76.539648,39.251838],[-76.539649,39.251838],[-76.53964999999999,39.251839],[-76.53964999999999,39.25184],[-76.539648,39.25184],[-76.539646,39.25184],[-76.53964499999999,39.251841],[-76.539643,39.251841],[-76.539641,39.251841],[-76.53963899999999,39.251842],[-76.539637,39.251842],[-76.539635,39.251842],[-76.53963299999999,39.251843],[-76.539632,39.251843],[-76.53963,39.251844],[-76.53962799999999,39.251844],[-76.539626,39.251845],[-76.539624,39.251845],[-76.53962300000001,39.251846],[-76.539621,39.251847],[-76.539619,39.251847],[-76.53961700000001,39.251848],[-76.539616,39.251849],[-76.539614,39.251849],[-76.53961200000001,39.25185],[-76.53961099999999,39.251851],[-76.539609,39.251852],[-76.539607,39.251852],[-76.53960600000001,39.251853],[-76.539604,39.251854],[-76.539603,39.251855],[-76.539601,39.251856],[-76.53959999999999,39.251857],[-76.539598,39.251858],[-76.539597,39.251859],[-76.53959500000001,39.25186],[-76.53959399999999,39.251861],[-76.539592,39.251862],[-76.539591,39.251863],[-76.53958900000001,39.251864],[-76.53958799999999,39.251865],[-76.539587,39.251866],[-76.539585,39.251867],[-76.539584,39.251868],[-76.53958299999999,39.251869],[-76.539582,39.25187],[-76.53958,39.251871],[-76.539579,39.251873],[-76.53957800000001,39.251874],[-76.53957699999999,39.251875],[-76.539576,39.251876],[-76.539575,39.251878],[-76.539574,39.251879],[-76.539573,39.25188],[-76.53957200000001,39.251881],[-76.539571,39.251883],[-76.53957,39.251884],[-76.539569,39.251885],[-76.539568,39.251887],[-76.53956700000001,39.251888],[-76.53956599999999,39.251889],[-76.53956599999999,39.251891],[-76.539565,39.251892],[-76.539564,39.251893],[-76.539563,39.251895],[-76.539563,39.251896],[-76.539562,39.251898],[-76.539562,39.251899],[-76.53956100000001,39.251901],[-76.53955999999999,39.251902],[-76.53955999999999,39.251903],[-76.53955999999999,39.251905],[-76.539559,39.251906],[-76.539559,39.251908],[-76.539558,39.251909],[-76.539558,39.251911],[-76.539558,39.251912],[-76.539557,39.251914],[-76.539557,39.251915],[-76.539557,39.251917],[-76.539557,39.251918],[-76.539557,39.25192],[-76.539557,39.251921],[-76.539557,39.251923],[-76.539556,39.251924],[-76.539556,39.251926],[-76.539556,39.251927],[-76.539557,39.251929],[-76.539557,39.25193],[-76.539557,39.251932],[-76.539557,39.251933],[-76.539557,39.251935],[-76.539557,39.251936],[-76.539558,39.251938],[-76.539558,39.251939],[-76.539558,39.251941],[-76.539559,39.251942],[-76.539559,39.251943],[-76.539559,39.251945],[-76.53955999999999,39.251946],[-76.53955999999999,39.251948],[-76.53956100000001,39.251949],[-76.53956100000001,39.251951],[-76.539562,39.251952],[-76.539563,39.251954],[-76.539563,39.251955],[-76.539564,39.251956],[-76.539565,39.251958],[-76.539565,39.251959],[-76.53956599999999,39.25196],[-76.53956700000001,39.251962],[-76.539568,39.251963],[-76.539569,39.251965],[-76.53957,39.251966],[-76.539571,39.251967],[-76.53957200000001,39.251968],[-76.539573,39.25197],[-76.539571,39.25197],[-76.53957,39.25197],[-76.539568,39.25197],[-76.53956700000001,39.25197],[-76.53956599999999,39.25197],[-76.539565,39.25197],[-76.539563,39.25197],[-76.539562,39.25197],[-76.53956100000001,39.25197],[-76.539559,39.25197],[-76.539558,39.25197],[-76.539557,39.25197],[-76.539556,39.25197],[-76.539554,39.25197],[-76.539553,39.251971],[-76.539552,39.251971],[-76.539551,39.251971],[-76.53954899999999,39.251972],[-76.539548,39.251972],[-76.539547,39.251972],[-76.539546,39.251973],[-76.539545,39.251973],[-76.53954299999999,39.251974],[-76.539542,39.251974],[-76.539541,39.251975],[-76.53954,39.251975],[-76.539539,39.251976],[-76.53953799999999,39.251977],[-76.539537,39.251977],[-76.539536,39.251978],[-76.539535,39.251979],[-76.539534,39.25198],[-76.53953300000001,39.251981],[-76.53953199999999,39.251982],[-76.539531,39.251983],[-76.539531,39.251984],[-76.53953,39.251984],[-76.539529,39.251985],[-76.539529,39.251986],[-76.539528,39.251987],[-76.539528,39.251988],[-76.53952700000001,39.251989],[-76.53952700000001,39.25199],[-76.539526,39.251991],[-76.539526,39.251992],[-76.539526,39.251993],[-76.539526,39.251994],[-76.539525,39.251995],[-76.539525,39.251996],[-76.539525,39.251997],[-76.539525,39.251998],[-76.539525,39.251999],[-76.539525,39.252],[-76.539525,39.252001],[-76.539525,39.252002],[-76.539525,39.252003],[-76.539526,39.252004],[-76.539526,39.252005],[-76.539526,39.252006],[-76.53952700000001,39.252007],[-76.53952700000001,39.252008],[-76.53952700000001,39.252009],[-76.539528,39.25201],[-76.539528,39.252011],[-76.539529,39.252012],[-76.539529,39.252013],[-76.53953,39.252013],[-76.539531,39.252014],[-76.539531,39.252015],[-76.53953199999999,39.252016],[-76.53953300000001,39.252017],[-76.539534,39.252018],[-76.539535,39.252018],[-76.539536,39.252019],[-76.539537,39.25202],[-76.539537,39.252021],[-76.53953799999999,39.252021],[-76.539539,39.252022],[-76.539541,39.252022],[-76.539542,39.252023],[-76.53954299999999,39.252024],[-76.539545,39.252025],[-76.53954299999999,39.252025],[-76.539541,39.252025],[-76.539539,39.252025],[-76.539537,39.252025],[-76.539536,39.252025],[-76.539534,39.252026],[-76.53953199999999,39.252026],[-76.53953,39.252026],[-76.539528,39.252027],[-76.539526,39.252027],[-76.539525,39.252027],[-76.539523,39.252028],[-76.53952099999999,39.252028],[-76.539519,39.252028],[-76.539518,39.252029],[-76.53951600000001,39.252029],[-76.539514,39.25203],[-76.539512,39.25203],[-76.539511,39.252031],[-76.539509,39.252032],[-76.539507,39.252032],[-76.53950500000001,39.252033],[-76.53950399999999,39.252033],[-76.539502,39.252034],[-76.5395,39.252035],[-76.53949900000001,39.252036],[-76.539497,39.252036],[-76.539496,39.252037],[-76.539494,39.252038],[-76.539492,39.252039],[-76.539491,39.252039],[-76.539489,39.25204],[-76.53948800000001,39.252041],[-76.539486,39.252042],[-76.539485,39.252043],[-76.539483,39.252044],[-76.53948200000001,39.252045],[-76.53948099999999,39.252046],[-76.539479,39.252047],[-76.539478,39.252048],[-76.53947700000001,39.252049],[-76.539475,39.25205],[-76.539474,39.252051],[-76.539473,39.252052],[-76.53947100000001,39.252053],[-76.53946999999999,39.252054],[-76.539469,39.252055],[-76.539468,39.252056],[-76.539467,39.252057],[-76.539466,39.252059],[-76.539464,39.25206],[-76.539463,39.252061],[-76.539462,39.252062],[-76.539461,39.252063],[-76.53946000000001,39.252065],[-76.53945899999999,39.252066],[-76.539458,39.252067],[-76.539458,39.252068],[-76.539457,39.25207],[-76.539456,39.252071],[-76.539455,39.252072],[-76.53945400000001,39.252074],[-76.53945299999999,39.252075],[-76.53945299999999,39.252076],[-76.539452,39.252078],[-76.539451,39.252079],[-76.539451,39.25208],[-76.53945,39.252082],[-76.53945,39.252083],[-76.539449,39.252085],[-76.539449,39.252086],[-76.53944799999999,39.252087],[-76.53944799999999,39.252089],[-76.539447,39.25209],[-76.539447,39.252092],[-76.539446,39.252093],[-76.539446,39.252095],[-76.539446,39.252096],[-76.539446,39.252097],[-76.539445,39.252099],[-76.539445,39.2521],[-76.539445,39.252102],[-76.539445,39.252103],[-76.539445,39.252105],[-76.539445,39.252106],[-76.539445,39.252108],[-76.539445,39.252109],[-76.539445,39.25211],[-76.539445,39.252112],[-76.539445,39.252113],[-76.539445,39.252115],[-76.539445,39.252116],[-76.539445,39.252118],[-76.539446,39.252119],[-76.539446,39.252121],[-76.539446,39.252122],[-76.539446,39.252123],[-76.539447,39.252125],[-76.539447,39.252126],[-76.53944799999999,39.252128],[-76.53944799999999,39.252129],[-76.53944799999999,39.252131],[-76.539449,39.252132],[-76.53945,39.252133],[-76.53945,39.252135],[-76.539451,39.252136],[-76.539451,39.252137],[-76.539452,39.252139],[-76.53945299999999,39.25214],[-76.53945299999999,39.252142],[-76.53945400000001,39.252143],[-76.539455,39.252144],[-76.539456,39.252145],[-76.539457,39.252147],[-76.539457,39.252148],[-76.539458,39.252149],[-76.53945899999999,39.252151],[-76.53946000000001,39.252152],[-76.539461,39.252153],[-76.539462,39.252154],[-76.539463,39.252156],[-76.539464,39.252157],[-76.539462,39.252156],[-76.539461,39.252156],[-76.53946000000001,39.252156],[-76.53945899999999,39.252155],[-76.539457,39.252155],[-76.539456,39.252155],[-76.539455,39.252155],[-76.53945299999999,39.252155],[-76.539452,39.252155],[-76.539451,39.252155],[-76.539449,39.252155],[-76.53944799999999,39.252155],[-76.539447,39.252155],[-76.539445,39.252155],[-76.539444,39.252155],[-76.53944300000001,39.252156],[-76.539441,39.252156],[-76.53944,39.252156],[-76.539439,39.252156],[-76.539438,39.252157],[-76.53943599999999,39.252157],[-76.539435,39.252158],[-76.539434,39.252158],[-76.539433,39.252158],[-76.53943200000001,39.252159],[-76.53943099999999,39.25216],[-76.539429,39.25216],[-76.539428,39.252161],[-76.539427,39.252161],[-76.53942600000001,39.252162],[-76.53942499999999,39.252163],[-76.539424,39.252163],[-76.539423,39.252164],[-76.539422,39.252165],[-76.539422,39.252166],[-76.539421,39.252166],[-76.53942000000001,39.252167],[-76.539419,39.252168],[-76.539419,39.252169],[-76.539418,39.25217],[-76.539417,39.252171],[-76.539417,39.252172],[-76.539416,39.252173],[-76.539416,39.252174],[-76.53941500000001,39.252175],[-76.53941500000001,39.252176],[-76.53941399999999,39.252177],[-76.53941399999999,39.252178],[-76.53941399999999,39.252179],[-76.539413,39.25218],[-76.539413,39.252181],[-76.539413,39.252182],[-76.539413,39.252183],[-76.539413,39.252184],[-76.539413,39.252185],[-76.539413,39.252186],[-76.539413,39.252187],[-76.539413,39.252188],[-76.539413,39.252189],[-76.539413,39.25219],[-76.53941399999999,39.252191],[-76.53941399999999,39.252192],[-76.53941399999999,39.252193],[-76.53941500000001,39.252194],[-76.53941500000001,39.252195],[-76.539416,39.252196],[-76.539416,39.252197],[-76.539417,39.252198],[-76.539417,39.252199],[-76.539418,39.252199],[-76.539419,39.2522],[-76.539419,39.252201],[-76.53942000000001,39.252202],[-76.539421,39.252203],[-76.539422,39.252204],[-76.539423,39.252204],[-76.539424,39.252205],[-76.539424,39.252206],[-76.53942499999999,39.252207],[-76.53942600000001,39.252207],[-76.539427,39.252208],[-76.539429,39.252209],[-76.539429,39.25221],[-76.539427,39.25221],[-76.53942499999999,39.25221],[-76.539423,39.252211],[-76.539421,39.252211],[-76.53942000000001,39.252211],[-76.539418,39.252212],[-76.539416,39.252212],[-76.53941399999999,39.252212],[-76.539412,39.252213],[-76.539411,39.252213],[-76.53940900000001,39.252213],[-76.539407,39.252214],[-76.539405,39.252214],[-76.539404,39.252215],[-76.539402,39.252215],[-76.5394,39.252216],[-76.53939800000001,39.252217],[-76.53939699999999,39.252217],[-76.539395,39.252218],[-76.539393,39.252219],[-76.53939200000001,39.252219],[-76.53939,39.25222],[-76.539388,39.252221],[-76.539387,39.252221],[-76.539385,39.252222],[-76.539384,39.252223],[-76.539382,39.252224],[-76.53937999999999,39.252224],[-76.539379,39.252225],[-76.539377,39.252226],[-76.539376,39.252227],[-76.539374,39.252228],[-76.539373,39.252229],[-76.539372,39.25223],[-76.53937000000001,39.252231],[-76.53936899999999,39.252232],[-76.539367,39.252233],[-76.539366,39.252234],[-76.539365,39.252235],[-76.53936400000001,39.252236],[-76.539362,39.252237],[-76.539361,39.252238],[-76.53936,39.252239],[-76.539359,39.25224],[-76.539357,39.252241],[-76.539356,39.252243],[-76.539355,39.252244],[-76.539354,39.252245],[-76.53935300000001,39.252246],[-76.53935199999999,39.252247],[-76.539351,39.252249],[-76.53935,39.25225],[-76.539349,39.252251],[-76.539348,39.252252],[-76.53934700000001,39.252254],[-76.53934599999999,39.252255],[-76.539345,39.252256],[-76.539345,39.252257],[-76.539344,39.252259],[-76.539343,39.25226],[-76.539342,39.252261],[-76.539342,39.252263],[-76.53934099999999,39.252264],[-76.53934,39.252266],[-76.53934,39.252267],[-76.539339,39.252268],[-76.539339,39.25227],[-76.539338,39.252271],[-76.539338,39.252273],[-76.539337,39.252274],[-76.539337,39.252275],[-76.53933600000001,39.252277],[-76.53933600000001,39.252278],[-76.53933600000001,39.25228],[-76.53933600000001,39.252281],[-76.53933499999999,39.252283],[-76.53933499999999,39.252284],[-76.53933499999999,39.252285],[-76.53933499999999,39.252287],[-76.53933499999999,39.252288],[-76.539334,39.25229],[-76.539334,39.252291],[-76.539334,39.252293],[-76.539334,39.252294],[-76.539334,39.252296],[-76.539334,39.252297],[-76.53933499999999,39.252299],[-76.53933499999999,39.2523],[-76.53933499999999,39.252301],[-76.53933499999999,39.252303],[-76.53933499999999,39.252304],[-76.53933600000001,39.252306],[-76.53933600000001,39.252307],[-76.53933600000001,39.252309],[-76.539337,39.25231],[-76.539337,39.252311],[-76.539337,39.252313],[-76.539338,39.252314],[-76.539338,39.252316],[-76.539339,39.252317],[-76.539339,39.252318],[-76.53934,39.25232],[-76.53934,39.252321],[-76.53934099999999,39.252323],[-76.539342,39.252324],[-76.539342,39.252325],[-76.539343,39.252327],[-76.539344,39.252328],[-76.539345,39.252329],[-76.53934599999999,39.252331],[-76.53934599999999,39.252332],[-76.53934700000001,39.252333],[-76.539348,39.252334],[-76.539349,39.252336],[-76.53935,39.252337],[-76.539351,39.252338],[-76.53935199999999,39.252339],[-76.53935300000001,39.252341],[-76.539354,39.252342],[-76.53935199999999,39.252341],[-76.539351,39.252341],[-76.53935,39.252341],[-76.539348,39.252341],[-76.53934700000001,39.25234],[-76.539345,39.25234],[-76.539344,39.25234],[-76.539343,39.25234],[-76.53934099999999,39.25234],[-76.53934,39.25234],[-76.539339,39.25234],[-76.539337,39.25234],[-76.53933600000001,39.25234],[-76.539334,39.252341],[-76.539333,39.252341],[-76.539332,39.252341],[-76.53933000000001,39.252341],[-76.539329,39.252342],[-76.539328,39.252342],[-76.539326,39.252342],[-76.53932500000001,39.252343],[-76.53932399999999,39.252343],[-76.539323,39.252344],[-76.539321,39.252344],[-76.53932,39.252345],[-76.53931900000001,39.252345],[-76.53931799999999,39.252346],[-76.539317,39.252346],[-76.539316,39.252347],[-76.539315,39.252348],[-76.539314,39.252349],[-76.53931300000001,39.252349],[-76.539312,39.25235],[-76.539311,39.252351],[-76.53931,39.252352],[-76.539309,39.252353],[-76.53930800000001,39.252353],[-76.53930699999999,39.252354],[-76.53930699999999,39.252355],[-76.539306,39.252356],[-76.539305,39.252357],[-76.539305,39.252358],[-76.539304,39.252359],[-76.539304,39.25236],[-76.539303,39.252361],[-76.539303,39.252362],[-76.53930200000001,39.252363],[-76.53930200000001,39.252364],[-76.53930200000001,39.252365],[-76.53930200000001,39.252366],[-76.53930099999999,39.252367],[-76.53930099999999,39.252369],[-76.53930099999999,39.25237],[-76.53930099999999,39.252371],[-76.53930099999999,39.252372],[-76.53930099999999,39.252373],[-76.53930099999999,39.252374],[-76.53930099999999,39.252375],[-76.53930200000001,39.252376],[-76.53930200000001,39.252377],[-76.53930200000001,39.252378],[-76.539303,39.252379],[-76.539303,39.25238],[-76.539303,39.252381],[-76.539304,39.252382],[-76.539304,39.252383],[-76.539305,39.252384],[-76.539306,39.252385],[-76.539306,39.252386],[-76.53930699999999,39.252387],[-76.53930800000001,39.252388],[-76.53930800000001,39.252389],[-76.539309,39.25239],[-76.53931,39.252391],[-76.539311,39.252391],[-76.539312,39.252392],[-76.53931300000001,39.252393],[-76.539314,39.252394],[-76.539315,39.252394],[-76.539315,39.252396],[-76.53931300000001,39.252396],[-76.539311,39.252396],[-76.53931,39.252397],[-76.53930800000001,39.252397],[-76.539306,39.252397],[-76.539304,39.252398],[-76.53930200000001,39.252398],[-76.5393,39.252399],[-76.539299,39.252399],[-76.539297,39.252399],[-76.539295,39.2524],[-76.539293,39.2524],[-76.53929100000001,39.252401],[-76.53928999999999,39.252401],[-76.539288,39.252402],[-76.539286,39.252403],[-76.53928399999999,39.252403],[-76.539283,39.252404],[-76.539281,39.252405],[-76.53927899999999,39.252405],[-76.539278,39.252406],[-76.539276,39.252407],[-76.53927400000001,39.252407],[-76.53927299999999,39.252408],[-76.539271,39.252409],[-76.53927,39.25241],[-76.53926800000001,39.252411],[-76.539267,39.252412],[-76.539265,39.252412],[-76.539264,39.252413],[-76.53926199999999,39.252414],[-76.539261,39.252415],[-76.539259,39.252416],[-76.539258,39.252417],[-76.53925599999999,39.252418],[-76.539255,39.252419],[-76.539254,39.25242],[-76.539252,39.252421],[-76.53925099999999,39.252422],[-76.53925,39.252423],[-76.539248,39.252424],[-76.539247,39.252426],[-76.53924600000001,39.252427],[-76.53924499999999,39.252428],[-76.539244,39.252429],[-76.539243,39.25243],[-76.539242,39.252431],[-76.53924000000001,39.252433],[-76.53923899999999,39.252434],[-76.539238,39.252435],[-76.539237,39.252436],[-76.539236,39.252438],[-76.53923500000001,39.252439],[-76.53923500000001,39.25244],[-76.53923399999999,39.252442],[-76.539233,39.252443],[-76.539232,39.252444],[-76.539231,39.252446],[-76.539231,39.252447],[-76.53923,39.252448],[-76.53922900000001,39.25245],[-76.53922799999999,39.252451],[-76.53922799999999,39.252452],[-76.539227,39.252454],[-76.539227,39.252455],[-76.539226,39.252457],[-76.539226,39.252458],[-76.539225,39.25246],[-76.539225,39.252461],[-76.539224,39.252462],[-76.539224,39.252464],[-76.539224,39.252465],[-76.53922300000001,39.252467],[-76.53922300000001,39.252468],[-76.53922300000001,39.25247],[-76.53922300000001,39.252471],[-76.539222,39.252473],[-76.539222,39.252474],[-76.539222,39.252476],[-76.539222,39.252477],[-76.539222,39.252478],[-76.539222,39.25248],[-76.539222,39.252481],[-76.539222,39.252483],[-76.539222,39.252484],[-76.539222,39.252486],[-76.539222,39.252487],[-76.53922300000001,39.252489],[-76.53922300000001,39.25249],[-76.53922300000001,39.252492],[-76.53922300000001,39.252493],[-76.539224,39.252495],[-76.539224,39.252496],[-76.539224,39.252498],[-76.539225,39.252499],[-76.539225,39.2525],[-76.539226,39.252502],[-76.539226,39.252503],[-76.539227,39.252505],[-76.539227,39.252506],[-76.53922799999999,39.252507],[-76.53922799999999,39.252509],[-76.53922900000001,39.25251],[-76.53923,39.252512],[-76.539231,39.252513],[-76.539231,39.252514],[-76.539232,39.252516],[-76.539233,39.252517],[-76.53923399999999,39.252518],[-76.53923500000001,39.25252],[-76.539236,39.252521],[-76.539236,39.252522],[-76.539237,39.252524],[-76.539238,39.252525],[-76.53923899999999,39.252526],[-76.539241,39.252527],[-76.53923899999999,39.252527],[-76.539237,39.252527],[-76.539236,39.252527],[-76.53923500000001,39.252527],[-76.53923399999999,39.252526],[-76.539233,39.252526],[-76.539231,39.252526],[-76.53923,39.252526],[-76.53922900000001,39.252526],[-76.53922799999999,39.252526],[-76.539226,39.252525],[-76.539225,39.252525],[-76.539224,39.252525],[-76.539222,39.252526],[-76.539221,39.252526],[-76.53922,39.252526],[-76.539219,39.252526],[-76.53921699999999,39.252526],[-76.539216,39.252526],[-76.539215,39.252527],[-76.539214,39.252527],[-76.539213,39.252527],[-76.53921099999999,39.252528],[-76.53921,39.252528],[-76.539209,39.252528],[-76.539208,39.252529],[-76.539207,39.252529],[-76.53920599999999,39.25253],[-76.539205,39.25253],[-76.539204,39.252531],[-76.539203,39.252532],[-76.539202,39.252532],[-76.53920100000001,39.252533],[-76.53919999999999,39.252533],[-76.539199,39.252534],[-76.539198,39.252535],[-76.539197,39.252536],[-76.539196,39.252536],[-76.539196,39.252537],[-76.53919500000001,39.252538],[-76.53919399999999,39.252539],[-76.53919399999999,39.25254],[-76.539193,39.252541],[-76.539192,39.252541],[-76.539192,39.252542],[-76.539191,39.252543],[-76.539191,39.252544],[-76.53919,39.252545],[-76.53919,39.252546],[-76.53919,39.252547],[-76.53918899999999,39.252548],[-76.53918899999999,39.252549],[-76.53918899999999,39.25255],[-76.53918899999999,39.252551],[-76.53918899999999,39.252552],[-76.53918899999999,39.252553],[-76.53918899999999,39.252554],[-76.53918899999999,39.252555],[-76.53918899999999,39.252556],[-76.53918899999999,39.252557],[-76.53918899999999,39.252558],[-76.53918899999999,39.252559],[-76.53918899999999,39.25256],[-76.53919,39.252561],[-76.53919,39.252562],[-76.53919,39.252563],[-76.539191,39.252564],[-76.539192,39.252565],[-76.539192,39.252566],[-76.539193,39.252567],[-76.53919399999999,39.252568],[-76.53919399999999,39.252569],[-76.53919500000001,39.25257],[-76.539196,39.25257],[-76.539196,39.252571],[-76.539197,39.252572],[-76.539198,39.252573],[-76.539199,39.252573],[-76.53919999999999,39.252574],[-76.53920100000001,39.252575],[-76.539202,39.252576],[-76.539203,39.252576],[-76.539204,39.252577],[-76.539205,39.252577],[-76.53920599999999,39.252578],[-76.53920599999999,39.252579],[-76.539204,39.252579],[-76.539202,39.25258],[-76.53919999999999,39.25258],[-76.539198,39.25258],[-76.539196,39.252581],[-76.53919500000001,39.252581],[-76.539193,39.252581],[-76.539191,39.252582],[-76.53918899999999,39.252582],[-76.539187,39.252583],[-76.539185,39.252583],[-76.53918299999999,39.252584],[-76.539182,39.252584],[-76.53918,39.252585],[-76.53917800000001,39.252585],[-76.539176,39.252586],[-76.539174,39.252587],[-76.53917300000001,39.252587],[-76.539171,39.252588],[-76.539169,39.252589],[-76.539168,39.25259],[-76.53916599999999,39.25259],[-76.539164,39.252591],[-76.539163,39.252592],[-76.53916099999999,39.252593],[-76.539159,39.252594],[-76.539158,39.252594],[-76.53915600000001,39.252595],[-76.53915499999999,39.252596],[-76.539153,39.252597],[-76.539151,39.252598],[-76.53915000000001,39.252599],[-76.53914899999999,39.2526],[-76.539147,39.252601],[-76.539146,39.252602],[-76.53914399999999,39.252603],[-76.539143,39.252604],[-76.539141,39.252605],[-76.53914,39.252607],[-76.53913900000001,39.252608],[-76.53913799999999,39.252609],[-76.539136,39.25261],[-76.539135,39.252611],[-76.539134,39.252612],[-76.53913300000001,39.252614],[-76.539132,39.252615],[-76.53913,39.252616],[-76.539129,39.252617],[-76.53912800000001,39.252619],[-76.53912699999999,39.25262],[-76.539126,39.252621],[-76.539125,39.252622],[-76.539124,39.252624],[-76.539123,39.252625],[-76.539123,39.252626],[-76.53912200000001,39.252628],[-76.53912099999999,39.252629],[-76.53912,39.252631],[-76.539119,39.252632],[-76.539119,39.252633],[-76.539118,39.252635],[-76.539117,39.252636],[-76.539117,39.252638],[-76.53911600000001,39.252639],[-76.539115,39.252641],[-76.539115,39.252642],[-76.539114,39.252644],[-76.539114,39.252645],[-76.539113,39.252646],[-76.539113,39.252648],[-76.539113,39.252649],[-76.539112,39.252651],[-76.539112,39.252652],[-76.539112,39.252654],[-76.53911100000001,39.252655],[-76.53911100000001,39.252657],[-76.53911100000001,39.252658],[-76.53911100000001,39.25266],[-76.53911100000001,39.252661],[-76.53911100000001,39.252663],[-76.53911100000001,39.252665],[-76.53911100000001,39.252666],[-76.53911100000001,39.252668],[-76.53911100000001,39.252669],[-76.53911100000001,39.252671],[-76.53911100000001,39.252672],[-76.53911100000001,39.252674],[-76.53911100000001,39.252675],[-76.53911100000001,39.252677],[-76.539112,39.252678],[-76.539112,39.25268],[-76.539112,39.252681],[-76.539113,39.252683],[-76.539113,39.252684],[-76.539114,39.252686],[-76.539114,39.252687],[-76.539114,39.252689],[-76.539115,39.25269],[-76.53911600000001,39.252691],[-76.53911600000001,39.252693],[-76.539117,39.252694],[-76.539117,39.252696],[-76.539118,39.252697],[-76.539119,39.252699],[-76.53912,39.2527],[-76.53912,39.252701],[-76.53912099999999,39.252703],[-76.53912200000001,39.252704],[-76.539123,39.252706],[-76.539124,39.252707],[-76.539125,39.252708],[-76.539126,39.25271],[-76.53912699999999,39.252711],[-76.53912800000001,39.252712],[-76.539129,39.252713],[-76.53912699999999,39.252713],[-76.539126,39.252713],[-76.539124,39.252713],[-76.539123,39.252712],[-76.53912200000001,39.252712],[-76.53912099999999,39.252712],[-76.539119,39.252712],[-76.539118,39.252712],[-76.539117,39.252712],[-76.539115,39.252712],[-76.539114,39.252712],[-76.539113,39.252712],[-76.539112,39.252712],[-76.53910999999999,39.252713],[-76.539109,39.252713],[-76.539108,39.252713],[-76.539107,39.252713],[-76.53910500000001,39.252714],[-76.53910399999999,39.252714],[-76.539103,39.252714],[-76.539102,39.252715],[-76.539101,39.252715],[-76.5391,39.252716],[-76.539098,39.252716],[-76.539097,39.252717],[-76.539096,39.252717],[-76.539095,39.252718],[-76.53909400000001,39.252718],[-76.53909299999999,39.252719],[-76.539092,39.25272],[-76.539091,39.25272],[-76.53909,39.252721],[-76.53909,39.252722],[-76.539089,39.252723],[-76.53908800000001,39.252723],[-76.53908699999999,39.252724],[-76.53908699999999,39.252725],[-76.539086,39.252726],[-76.539085,39.252727],[-76.539085,39.252728],[-76.539084,39.252729],[-76.53908300000001,39.25273],[-76.53908300000001,39.252731],[-76.53908199999999,39.252732],[-76.53908199999999,39.252733],[-76.53908199999999,39.252734],[-76.539081,39.252735],[-76.539081,39.252736],[-76.539081,39.252737],[-76.539081,39.252738],[-76.539081,39.252739],[-76.539081,39.25274],[-76.539081,39.252741],[-76.539081,39.252742],[-76.539081,39.252743],[-76.539081,39.252744],[-76.539081,39.252745],[-76.539081,39.252746],[-76.53908199999999,39.252747],[-76.53908199999999,39.252748],[-76.53908199999999,39.252749],[-76.53908300000001,39.25275],[-76.53908300000001,39.252751],[-76.539084,39.252752],[-76.539084,39.252753],[-76.539085,39.252754],[-76.539086,39.252755],[-76.53908699999999,39.252756],[-76.53908699999999,39.252757],[-76.53908800000001,39.252758],[-76.539089,39.252759],[-76.53909,39.252759],[-76.53909,39.25276],[-76.539091,39.252761],[-76.539092,39.252762],[-76.53909299999999,39.252762],[-76.53909400000001,39.252763],[-76.539095,39.252763],[-76.539096,39.252764],[-76.539097,39.252765],[-76.539098,39.252765],[-76.539101,39.252766],[-76.53909899999999,39.252766],[-76.539097,39.252766],[-76.539095,39.252767],[-76.53909299999999,39.252767],[-76.539091,39.252767],[-76.539089,39.252767],[-76.53908699999999,39.252768],[-76.539086,39.252768],[-76.539084,39.252768],[-76.53908199999999,39.252769],[-76.53908,39.252769],[-76.539078,39.25277],[-76.53907599999999,39.25277],[-76.539075,39.25277],[-76.539073,39.252771],[-76.53907100000001,39.252771],[-76.539069,39.252772],[-76.539068,39.252773],[-76.53906600000001,39.252773],[-76.539064,39.252774],[-76.539062,39.252774],[-76.539061,39.252775],[-76.53905899999999,39.252776],[-76.539057,39.252777],[-76.539056,39.252777],[-76.53905399999999,39.252778],[-76.539052,39.252779],[-76.539051,39.25278],[-76.53904900000001,39.25278],[-76.53904799999999,39.252781],[-76.539046,39.252782],[-76.539044,39.252783],[-76.53904300000001,39.252784],[-76.539041,39.252785],[-76.53904,39.252786],[-76.539039,39.252787],[-76.53903699999999,39.252788],[-76.539036,39.252789],[-76.539034,39.25279],[-76.539033,39.252791],[-76.53903200000001,39.252792],[-76.53903,39.252793],[-76.539029,39.252794],[-76.539028,39.252795],[-76.539027,39.252796],[-76.539025,39.252797],[-76.539024,39.252799],[-76.539023,39.2528],[-76.539022,39.252801],[-76.53902100000001,39.252802],[-76.53901999999999,39.252803],[-76.539019,39.252805],[-76.539018,39.252806],[-76.539017,39.252807],[-76.539016,39.252808],[-76.53901500000001,39.25281],[-76.53901399999999,39.252811],[-76.539013,39.252812],[-76.539012,39.252814],[-76.539011,39.252815],[-76.53901,39.252816],[-76.53901,39.252818],[-76.53900899999999,39.252819],[-76.539008,39.25282],[-76.539008,39.252822],[-76.539007,39.252823],[-76.539006,39.252825],[-76.539006,39.252826],[-76.539005,39.252827],[-76.539005,39.252829],[-76.53900400000001,39.25283],[-76.53900400000001,39.252832],[-76.53900299999999,39.252833],[-76.53900299999999,39.252835],[-76.53900299999999,39.252836],[-76.539002,39.252838],[-76.539002,39.252839],[-76.539002,39.252841],[-76.539002,39.252842],[-76.539001,39.252843],[-76.539001,39.252845],[-76.539001,39.252846],[-76.539001,39.252848],[-76.539001,39.252849],[-76.539001,39.252851],[-76.539001,39.252852],[-76.539001,39.252854],[-76.539001,39.252855],[-76.539001,39.252857],[-76.539001,39.252858],[-76.539002,39.25286],[-76.539002,39.252861],[-76.539002,39.252863],[-76.539002,39.252864],[-76.53900299999999,39.252866],[-76.53900299999999,39.252867],[-76.53900299999999,39.252869],[-76.53900400000001,39.25287],[-76.53900400000001,39.252871],[-76.539005,39.252873],[-76.539005,39.252874],[-76.539006,39.252876],[-76.539006,39.252877],[-76.539007,39.252879],[-76.539008,39.25288],[-76.539008,39.252881],[-76.53900899999999,39.252883],[-76.53901,39.252884],[-76.53901,39.252885],[-76.539011,39.252887],[-76.539012,39.252888],[-76.539013,39.252889],[-76.53901399999999,39.252891],[-76.53901500000001,39.252892],[-76.539016,39.252893],[-76.539017,39.252895],[-76.539018,39.252896],[-76.539019,39.252897],[-76.539017,39.252897],[-76.53901500000001,39.252897],[-76.53901399999999,39.252896],[-76.539013,39.252896],[-76.539011,39.252896],[-76.53901,39.252896],[-76.53900899999999,39.252896],[-76.539007,39.252896],[-76.539006,39.252896],[-76.539005,39.252896],[-76.53900299999999,39.252896],[-76.539002,39.252896],[-76.539001,39.252896],[-76.538999,39.252896],[-76.53899800000001,39.252896],[-76.53899699999999,39.252897],[-76.538995,39.252897],[-76.538994,39.252897],[-76.538993,39.252898],[-76.53899199999999,39.252898],[-76.53899,39.252898],[-76.538989,39.252899],[-76.538988,39.252899],[-76.53898700000001,39.2529],[-76.53898599999999,39.2529],[-76.538985,39.252901],[-76.538984,39.252902],[-76.538983,39.252902],[-76.538982,39.252903],[-76.53898100000001,39.252904],[-76.53898,39.252904],[-76.538979,39.252905],[-76.538978,39.252906],[-76.538977,39.252907],[-76.53897600000001,39.252908],[-76.53897499999999,39.252908],[-76.538974,39.252909],[-76.538974,39.25291],[-76.538973,39.252911],[-76.538972,39.252912],[-76.538972,39.252913],[-76.538971,39.252914],[-76.538971,39.252915],[-76.53897000000001,39.252916],[-76.53897000000001,39.252917],[-76.53897000000001,39.252918],[-76.53896899999999,39.252919],[-76.53896899999999,39.25292],[-76.53896899999999,39.252921],[-76.538968,39.252922],[-76.538968,39.252923],[-76.538968,39.252924],[-76.538968,39.252925],[-76.538968,39.252926],[-76.538968,39.252927],[-76.538968,39.252928],[-76.538968,39.252929],[-76.53896899999999,39.25293],[-76.53896899999999,39.252931],[-76.53896899999999,39.252932],[-76.53896899999999,39.252933],[-76.53897000000001,39.252934],[-76.53897000000001,39.252935],[-76.538971,39.252936],[-76.538971,39.252937],[-76.538972,39.252938],[-76.538972,39.252939],[-76.538973,39.25294],[-76.538973,39.252941],[-76.538974,39.252942],[-76.53897499999999,39.252943],[-76.53897600000001,39.252943],[-76.53897600000001,39.252944],[-76.538977,39.252945],[-76.538978,39.252946],[-76.538979,39.252947],[-76.53898,39.252947],[-76.53898100000001,39.252948],[-76.538982,39.252949],[-76.538983,39.252949],[-76.538983,39.252951],[-76.538982,39.252951],[-76.53898,39.252951],[-76.538978,39.252951],[-76.53897600000001,39.252952],[-76.538974,39.252952],[-76.538972,39.252952],[-76.538971,39.252952],[-76.53896899999999,39.252953],[-76.538967,39.252953],[-76.538965,39.252953],[-76.538963,39.252954],[-76.538962,39.252954],[-76.53896,39.252955],[-76.53895799999999,39.252955],[-76.538956,39.252956],[-76.538955,39.252956],[-76.53895300000001,39.252957],[-76.538951,39.252957],[-76.53895,39.252958],[-76.538948,39.252959],[-76.538946,39.252959],[-76.538945,39.25296],[-76.538943,39.252961],[-76.53894099999999,39.252961],[-76.53894,39.252962],[-76.538938,39.252963],[-76.538937,39.252964],[-76.538935,39.252964],[-76.538933,39.252965],[-76.538932,39.252966],[-76.53892999999999,39.252967],[-76.538929,39.252968],[-76.538927,39.252969],[-76.538926,39.25297],[-76.53892500000001,39.25297],[-76.538923,39.252971],[-76.538922,39.252972],[-76.538921,39.252973],[-76.53891900000001,39.252974],[-76.538918,39.252975],[-76.538917,39.252976],[-76.538915,39.252978],[-76.53891400000001,39.252979],[-76.53891299999999,39.25298],[-76.538912,39.252981],[-76.538911,39.252982],[-76.538909,39.252983],[-76.53890800000001,39.252984],[-76.53890699999999,39.252985],[-76.538906,39.252987],[-76.538905,39.252988],[-76.538904,39.252989],[-76.538903,39.25299],[-76.53890199999999,39.252991],[-76.538901,39.252993],[-76.5389,39.252994],[-76.538899,39.252995],[-76.538899,39.252997],[-76.538898,39.252998],[-76.53889700000001,39.252999],[-76.53889599999999,39.253],[-76.53889599999999,39.253002],[-76.538895,39.253003],[-76.538894,39.253005],[-76.538894,39.253006],[-76.538893,39.253007],[-76.538892,39.253009],[-76.538892,39.25301],[-76.53889100000001,39.253011],[-76.53889100000001,39.253013],[-76.53888999999999,39.253014],[-76.53888999999999,39.253016],[-76.53888999999999,39.253017],[-76.538889,39.253018],[-76.538889,39.25302],[-76.538889,39.253021],[-76.538888,39.253023],[-76.538888,39.253024],[-76.538888,39.253026],[-76.538888,39.253027],[-76.538888,39.253028],[-76.538888,39.25303],[-76.538888,39.253031],[-76.538888,39.253033],[-76.538888,39.253034],[-76.538888,39.253036],[-76.538888,39.253037],[-76.538888,39.253039],[-76.538888,39.25304],[-76.538888,39.253041],[-76.538888,39.253043],[-76.538889,39.253044],[-76.538889,39.253046],[-76.538889,39.253047],[-76.538889,39.253049],[-76.53888999999999,39.25305],[-76.53888999999999,39.253051],[-76.53889100000001,39.253053],[-76.53889100000001,39.253054],[-76.538892,39.253056],[-76.538892,39.253057],[-76.538893,39.253058],[-76.538893,39.25306],[-76.538894,39.253061],[-76.538894,39.253063],[-76.538895,39.253064],[-76.53889599999999,39.253065],[-76.53889700000001,39.253067],[-76.53889700000001,39.253068],[-76.538898,39.253069],[-76.538899,39.25307],[-76.5389,39.253072],[-76.538901,39.253073],[-76.538901,39.253074],[-76.53890199999999,39.253076],[-76.538903,39.253077],[-76.538904,39.253078],[-76.538905,39.253079],[-76.538906,39.25308],[-76.53890699999999,39.253082]]],"type":"Polygon"} +},{ + "id": 1108797015, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":295402.154237, + "geom:bbox":"-76.6316563343,39.2672439556,-76.6203824455,39.2745906047", + "geom:latitude":39.270245, + "geom:longitude":-76.624425, + "iso:country":"US", + "lbl:latitude":39.2697, + "lbl:longitude":-76.623958, + "lbl:max_zoom":18.0, + "mps:latitude":39.2697, + "mps:longitude":-76.623958, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "name:eng_x_variant":[ + "Ridgley's Cove" + ], + "reversegeo:latitude":39.2697, + "reversegeo:longitude":-76.623958, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108797011, + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"bbedb917efb448a33df56d1353a3071e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797015, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797015, + "wof:lastmodified":1566624047, + "wof:name":"Ferry Branch", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.63165633434724, + 39.26724395555199, + -76.62038244553972, + 39.27459060472349 +], + "geometry": {"coordinates":[[[[-76.62119383051852,39.26724395555199],[-76.6216634785491,39.2672472610295],[-76.62216654324455,39.26725714614859],[-76.62261087449839,39.26727296233825],[-76.62296838240378,39.26728877852435],[-76.62323906696074,39.26730459470687],[-76.62355060956401,39.26733029599043],[-76.62390301021361,39.267365882375],[-76.62421199918899,39.26740344575976],[-76.62447757649015,39.26744298614469],[-76.62470995662866,39.2674765954586],[-76.62490913960451,39.2675042737015],[-76.62512109071986,39.26753985999172],[-76.62534580997468,39.26758335432925],[-76.6255654219737,39.26762882565134],[-76.62575771238181,39.26767136016182],[-76.62576216459057,39.26767762716364],[-76.62576709360501,39.26771398245332],[-76.6257676288906,39.26775794331661],[-76.62576142558717,39.2677775422211],[-76.62575789143004,39.26778871125999],[-76.62574161098915,39.2678076835449],[-76.62571456941255,39.26783509323074],[-76.62568761581913,39.26787811255531],[-76.62568012761301,39.26789217305666],[-76.62566381770561,39.26790332298923],[-76.62564156495458,39.26791083019636],[-76.62561998174773,39.26791882234399],[-76.62560862889717,39.26792563647333],[-76.62558886095874,39.26792539149758],[-76.62555665656153,39.26791990494624],[-76.62552230193714,39.26791432145313],[-76.62547691446824,39.26790497900132],[-76.62543789115328,39.26789585950232],[-76.6253896458925,39.26788677452852],[-76.62536809028568,39.26788733990674],[-76.62535638343461,39.26789030661399],[-76.62534792855283,39.26789474113303],[-76.62534038384612,39.26790083416208],[-76.62533538764862,39.26790599312045],[-76.6253256968853,39.26791097856659],[-76.62531289442165,39.26791492450922],[-76.62529341768567,39.26792097946571],[-76.62528282613141,39.26792428390814],[-76.62526790554672,39.26792841495048],[-76.62525561640206,39.26793324347339],[-76.62522734807736,39.26794363277205],[-76.62521592234155,39.26794493124405],[-76.6253134409383,39.26797053140518],[-76.62544078398037,39.26800554232664],[-76.62546378210683,39.26801204623872],[-76.62552863996585,39.26803038457226],[-76.6256144166145,39.26805510122201],[-76.62572596822206,39.26808869683013],[-76.62582401205806,39.26811870748554],[-76.62590977891064,39.26814466243946],[-76.62612728122949,39.26818851523969],[-76.62653254025815,39.26827022142187],[-76.62679802287488,39.26829467173391],[-76.62705934385298,39.2683260567329],[-76.62716488057616,39.26834101755271],[-76.62737830841793,39.26837367209317],[-76.62759899443991,39.2684128870148],[-76.62791091957338,39.26847670678887],[-76.62815808354105,39.26853524488907],[-76.62816064482385,39.26853585110674],[-76.62830148492897,39.26857059448551],[-76.62865695623344,39.26865434890421],[-76.62881113424224,39.26868897981154],[-76.62893998458378,39.26871819886547],[-76.62907254920253,39.26874738807357],[-76.62916263704336,39.2687580178621],[-76.62917196723842,39.2687583580873],[-76.62917902550147,39.2687586001608],[-76.62918608497047,39.26875883323005],[-76.62919314447714,39.26875905909288],[-76.62920020399802,39.26875928225302],[-76.62920726467772,39.2687595054164],[-76.62921432417986,39.26875973217872],[-76.62922138364904,39.26875996524582],[-76.62922844190777,39.2687602082171],[-76.62923549778297,39.26876046379117],[-76.62924255356887,39.26876073647905],[-76.62924960693836,39.26876102807496],[-76.62925665786798,39.2687613430826],[-76.62926370634358,39.26876168420428],[-76.629270752351,39.26876205414224],[-76.62927779706797,39.26876244929711],[-76.62928485349536,39.26876282106868],[-76.62929192162848,39.26876317035755],[-76.62929899676155,39.2687635106605],[-76.62930607536167,39.26876385277553],[-76.62931315388187,39.26876421020282],[-76.62932022761632,39.26876459643909],[-76.62932729303228,39.26876502228237],[-76.62933434657793,39.26876550213362],[-76.62934138471586,39.26876604769168],[-76.62934840274491,39.26876667155241],[-76.62935539712294,39.26876738631537],[-76.62936236430285,39.2687682054808],[-76.62936929959318,39.26876913984314],[-76.62937619944215,39.26877020380336],[-76.62938307560256,39.26877136587181],[-76.62938995039737,39.26877256756923],[-76.6293968215043,39.268773809789],[-76.62940368892343,39.26877509253121],[-76.62941054801946,39.26877641578114],[-76.62941740111009,39.26877777954619],[-76.62942424471416,39.26877918471605],[-76.62943107651886,39.26878063038271],[-76.62943789766877,39.26878211925214],[-76.62944470354294,39.26878364860735],[-76.62945149644484,39.26878522115796],[-76.62945827174394,39.26878683598859],[-76.62946502828143,39.26878849309562],[-76.62947176721151,39.26879019338336],[-76.6294784838942,39.26879193773809],[-76.62948517949773,39.26879372436187],[-76.62949185053168,39.26879555594598],[-76.62949849700065,39.26879743158968],[-76.62950511542832,39.26879935128206],[-76.62951170696873,39.2688013159275],[-76.62951827046788,39.26880332462159],[-76.62952481757962,39.2688053647904],[-76.62953135178499,39.26880743554412],[-76.62953787310757,39.26880953237908],[-76.62954438154264,39.26881165619593],[-76.62955087941722,39.26881380520052],[-76.62955736558662,39.26881597668696],[-76.62956384236841,39.26881817066254],[-76.62957030978149,39.26882038352431],[-76.62957676782112,39.26882261617295],[-76.62958321881899,39.26882486591358],[-76.62958966162104,39.2688271318418],[-76.62959609855895,39.26882941126262],[-76.62960252963275,39.26883170417604],[-76.62960895485656,39.26883400787985],[-76.62961537539383,39.26883632147693],[-76.62962179241278,39.26883864316948],[-76.62962820591815,39.26884097205672],[-76.62963461707814,39.26884330634078],[-76.62964102590213,39.26884564422016],[-76.62964743355364,39.26884798479779],[-76.62965384120091,39.26885032627585],[-76.62966024885327,39.26885266685279],[-76.62966665651547,39.26885500562787],[-76.62966959433933,39.26885607509233],[-76.62967306651916,39.26885733990618],[-76.6296794788597,39.26885967058842],[-76.6296858935559,39.26886199407164],[-76.62969231177593,39.26886430855794],[-76.62969873351504,39.26886661494812],[-76.62970516110971,39.26886890964646],[-76.62971159456465,39.26887119175219],[-76.62971803388444,39.26887346036459],[-76.62972448024213,39.26887571278508],[-76.62973093363765,39.26887794901364],[-76.62973739524388,39.26888016635161],[-76.62974386622432,39.26888236390195],[-76.62975034658835,39.26888453986319],[-76.62975683750422,39.26888669243745],[-76.62976334013069,39.26888882162831],[-76.6297698533231,39.26889092472998],[-76.62977637940838,39.26889299994823],[-76.6297829183913,39.2688950463823],[-76.62978947143998,39.2688970622343],[-76.62979603855914,39.26889904660351],[-76.62980262091695,39.26890099769208],[-76.62980921852288,39.2689029136985],[-76.62981583489082,39.26890478742775],[-76.62982248172632,39.26890659639757],[-76.62982915556235,39.2689083387955],[-76.6298358575248,39.26891002093046],[-76.62984258528667,39.2689116445966],[-76.62984933650205,39.26891321519117],[-76.62985610999819,39.26891473541271],[-76.62986290343383,39.26891620975768],[-76.62986971679499,39.26891764092839],[-76.62987654774045,39.26891903342116],[-76.62988339277508,39.26892039082807],[-76.62989025303879,39.26892171675591],[-76.62989712503179,39.26892301569729],[-76.62990400758108,39.2689242903509],[-76.62991090066322,39.26892554522043],[-76.62991779962418,39.26892678389433],[-76.62992470444985,39.26892800907484],[-76.62993161394854,39.26892922706354],[-76.62993852579798,39.26893043875388],[-76.62994543881115,39.26893164954674],[-76.62995235065161,39.26893286303773],[-76.6299592601419,39.26893408282632],[-76.62996616494553,39.26893531250814],[-76.62997306388017,39.26893655658328],[-76.62997995693183,39.26893781775401],[-76.62998683944647,39.26893909960877],[-76.62999371255474,39.26894040755565],[-76.63000057161206,39.26894174338155],[-76.63000741774897,39.26894311249471],[-76.63001424863384,39.26894451758996],[-76.63002106779007,39.26894594967087],[-76.63002788341377,39.26894739254939],[-76.63003469667323,39.26894884442773],[-76.63004150524606,39.26895030619929],[-76.63004831146401,39.26895177516921],[-76.63005511532235,39.26895325223813],[-76.63006191798932,39.2689547356083],[-76.63006871715197,39.26895622437161],[-76.63007551512796,39.2689577185354],[-76.6300823119313,39.26895921539739],[-76.63008910755266,39.26896071675905],[-76.63009590316962,39.26896221902111],[-76.63010269761868,39.26896372308062],[-76.63010949090456,39.26896522803679],[-76.63011628534944,39.26896673299627],[-76.6301230809629,39.26896823615747],[-76.63012987542716,39.26896973751315],[-76.63013667222816,39.26897123527273],[-76.63014347020231,39.26897273033332],[-76.63015026935902,39.2689742208934],[-76.63015706970297,39.26897570605226],[-76.63016387356119,39.26897718401564],[-76.63017067861138,39.26897865567701],[-76.63017748717576,39.26898012014296],[-76.63018429810971,39.26898157470755],[-76.6301911125673,39.2689830202752],[-76.63019793171671,39.26898445504806],[-76.63020475324033,39.26898587901881],[-76.63021157946046,39.26898729129399],[-76.6302184080407,39.26898869546931],[-76.63022523897639,39.26899009244551],[-76.630232073431,39.26899148132558],[-76.63023890907752,39.2689928639036],[-76.63024574823365,39.2689942401869],[-76.63025258858163,39.26899561016823],[-76.63025943011687,39.26899697474829],[-76.63026627515225,39.26899833483517],[-76.630273120216,39.26899968951711],[-76.63027996761647,39.26900104060299],[-76.63028681619473,39.26900238808908],[-76.63029366479206,39.26900373197177],[-76.6303005157213,39.26900507315915],[-76.63030736666019,39.26900641254458],[-76.63031421877226,39.26900774923104],[-76.63032107088922,39.26900908501634],[-76.63032792301119,39.26901041990046],[-76.63033477629691,39.26901175388711],[-76.63034162842403,39.26901308786971],[-76.63034848171024,39.26901442185555],[-76.6303553338285,39.26901575763882],[-76.63036218594708,39.26901709342175],[-76.63036903805177,39.26901843190648],[-76.6303758889886,39.26901977218868],[-76.63038273875277,39.2690211151691],[-76.63038958734428,39.26902246084767],[-76.63039643475851,39.26902381012523],[-76.63040328099075,39.26902516390251],[-76.630410126041,39.26902652217948],[-76.63041696638592,39.2690278939527],[-76.63042380315613,39.26902928463038],[-76.63043063519761,39.269030693308],[-76.63043746252906,39.26903211638271],[-76.63044428747746,39.26903355206019],[-76.63045111005697,39.26903499763824],[-76.63045793027695,39.26903645131539],[-76.63046474815613,39.26903790948857],[-76.6304715671756,39.26903937126803],[-76.63047838503189,39.26904083394414],[-76.63048520290249,39.26904229391764],[-76.63049202195096,39.26904375029141],[-76.63049884335017,39.26904520036678],[-76.63050566595066,39.26904664233868],[-76.63051249208883,39.26904807261135],[-76.63051932061525,39.26904948937964],[-76.63052615386154,39.26905088994864],[-76.63053299183245,39.26905227341759],[-76.63053983455141,39.2690536352827],[-76.63054668318193,39.26905497464686],[-76.63055353773332,39.26905628970864],[-76.63056039938789,39.26905757596784],[-76.63056726930439,39.26905883342815],[-76.6305741463475,39.26906005758219],[-76.63058103283946,39.26906124753647],[-76.63058792879434,39.26906240058877],[-76.63059483422155,39.26906351493752],[-76.63060175032209,39.2690645824797],[-76.63060868414247,39.26906558522213],[-76.63061563102882,39.26906652675321],[-76.63062259327049,39.26906741248474],[-76.63062956736768,39.26906824690958],[-76.63063655329216,39.26906903543215],[-76.63064354869827,39.26906978344973],[-76.63065055239902,39.26907049636311],[-76.63065756436625,39.26907117957688],[-76.63066458341767,39.26907183759104],[-76.63067160604885,39.26907247579922],[-76.63067863338568,39.26907310051033],[-76.6306856630918,39.26907371532005],[-76.63069269398031,39.26907432562922],[-76.63069972485957,39.26907493773947],[-76.6307067545426,39.26907555705168],[-76.63071378185192,39.26907618716515],[-76.63072080559589,39.26907683438154],[-76.63072782342878,39.26907750409808],[-76.63073483648593,39.26907820082211],[-76.63074184126283,39.26907892994719],[-76.6307488377267,39.26907969777864],[-76.63075582354121,39.26908050791211],[-76.63076279867813,39.26908136575219],[-76.63076976667963,39.26908225869924],[-76.63077672757849,39.26908318044799],[-76.63078368370641,39.26908412830351],[-76.63079063507276,39.26908510046435],[-76.63079758169623,39.26908609332742],[-76.6308045247451,39.26908710509489],[-76.63081146423342,39.26908813306456],[-76.63081840017516,39.2690891745341],[-76.63082533490211,39.26909022680864],[-76.63083226726009,39.26909128898374],[-76.63083919843133,39.26909235655928],[-76.63084612842529,39.26909342773374],[-76.63085305841004,39.26909450070931],[-76.63085998956315,39.26909557188662],[-76.6308669207306,39.26909664036123],[-76.63087385309451,39.26909770163309],[-76.63088078782307,39.26909875390436],[-76.63088772492108,39.26909979627423],[-76.63089466441177,39.26910082423898],[-76.63090160746347,39.2691018360007],[-76.63090855289387,39.26910283605959],[-76.63091550067489,39.26910382982005],[-76.63092245081117,39.26910481638146],[-76.63092940097111,39.26910579843864],[-76.63093635231341,39.2691067759953],[-76.6309433048288,39.26910775085296],[-76.63095025735376,39.26910872390874],[-76.63095721103768,39.26910969696772],[-76.63096416356301,39.26911067002262],[-76.63097111607917,39.26911164487861],[-76.63097806742735,39.26911262153209],[-76.63098501758877,39.26911360358599],[-76.63099196657292,39.26911458923887],[-76.6309989143609,39.26911558209366],[-76.63100585979406,39.26911658214676],[-76.63101280402637,39.26911759030259],[-76.63101974473567,39.26911860745457],[-76.63102668422547,39.26911963631223],[-76.63103362253791,39.26912066876885],[-76.63104057837786,39.26912167335644],[-76.63104753885793,39.26912267705742],[-76.63105449222613,39.26912371136164],[-76.63106142323997,39.26912481045031],[-76.63106831897471,39.26912600851187],[-76.63107516419728,39.26912733792604],[-76.63108194714162,39.2691288328849],[-76.63108867839171,39.26913046369649],[-76.63109539079211,39.26913215389895],[-76.63110208438032,39.26913389628631],[-76.6311087614927,39.26913568726285],[-76.63111542215265,39.26913752232482],[-76.63112206871062,39.26913939517425],[-76.63112870118538,39.26914130220808],[-76.63112982585041,39.26914163181745],[-76.63113532075904,39.2691432389263],[-76.63114192861859,39.269145199928],[-76.63114852594626,39.26914718071305],[-76.63115511392422,39.26914917678142],[-76.63116169258525,39.26915118182775],[-76.63116826309292,39.26915319495502],[-76.63117480668149,39.26915525934096],[-76.63118131750086,39.26915738577639],[-76.63118780373753,39.26915955987483],[-76.63119427356398,39.26916176995196],[-76.63120073053634,39.26916400070598],[-76.63120718515403,39.26916623865834],[-76.6312136421131,39.26916847211383],[-76.6312201084414,39.2691706866824],[-76.63122659232067,39.26917286887813],[-76.63123309961999,39.2691750043073],[-76.63123963735291,39.26917708128195],[-76.63124619260877,39.26917913128829],[-76.63125274189306,39.26918121550457],[-76.63125928757495,39.26918332402983],[-76.63126583086942,39.26918544605869],[-76.63127237646783,39.26918757079672],[-76.6312789267393,39.26918968834293],[-76.63128548521179,39.26919178880002],[-76.63129205425898,39.26919386136621],[-76.6312986362594,39.26919589433899],[-76.63130523589504,39.26919787872554],[-76.63131185553965,39.26919980372401],[-76.63131849872582,39.26920165853635],[-76.63132516666383,39.26920343325795],[-76.63133186404498,39.26920511709431],[-76.63133859324311,39.26920669924379],[-76.63134535778605,39.26920816980893],[-76.63135216822475,39.26920950540305],[-76.63135903041399,39.26921069433451],[-76.63136593848486,39.26921175099719],[-76.63137288888598,39.2692126897921],[-76.63137987226736,39.26921352600291],[-76.63138688507765,39.2692142740307],[-76.63139392028911,39.26921494826568],[-76.63140097202348,39.26921556490316],[-76.63140803326242,39.26921613653181],[-76.63141509928172,39.26921668025131],[-76.63142216306304,39.26921720865037],[-76.63142921872813,39.26921773792428],[-76.63143626040807,39.26921828246688],[-76.63144328573856,39.26921885127842],[-76.63145032163875,39.26921939309975],[-76.63145737170201,39.26921988542301],[-76.63146443362952,39.26922032463798],[-76.63147150050102,39.26922070441755],[-76.63147857002713,39.26922101934998],[-76.63148563644636,39.26922126311177],[-76.63149269398815,39.26922143118106],[-76.63149974152638,39.26922151724892],[-76.63150677444915,39.26922151679707],[-76.63151437793113,39.26922143616539],[-76.63152191063588,39.26922070315738],[-76.63152782400752,39.26921849501998],[-76.63152821901836,39.26921807740369],[-76.63165633434724,39.2693631700534],[-76.63165353982659,39.26936529159744],[-76.63164846743807,39.26936912375553],[-76.63164361325065,39.26937311333084],[-76.63163876598745,39.26937710833229],[-76.63163381714585,39.26938102644986],[-76.63162882328781,39.269384910197],[-76.63162380518301,39.26938877675332],[-76.63161876284549,39.26939262341658],[-76.63161369513053,39.26939644748091],[-76.63160850858121,39.26940017028659],[-76.63160311319382,39.26940371768858],[-76.6315978331679,39.2694073654371],[-76.63159254852491,39.26941100956782],[-76.63158721543576,39.26941461030961],[-76.63158185466088,39.26941818664366],[-76.63157648235348,39.26942175213211],[-76.6315711065878,39.26942531400641],[-76.63156573658293,39.2694288822039],[-76.63156042426549,39.2694324992234],[-76.63155459085868,39.26943559576735],[-76.6315487217434,39.26943865076378],[-76.63154297589547,39.26944184576518],[-76.63153714248715,39.26944494230826],[-76.6315312745151,39.26944800000967],[-76.63152541115439,39.26945106222912],[-76.63151956391363,39.26945414431567],[-76.63151372243837,39.26945723182457],[-76.63150787980848,39.26946031842887],[-76.63150203947697,39.26946340864307],[-76.63149601386732,39.26946624966457],[-76.63148955108019,39.26946847859544],[-76.63148313544373,39.26947077703281],[-76.63147671981157,39.26947307456905],[-76.63147029842705,39.26947536398004],[-76.63146387704671,39.26947765248988],[-76.63145745566602,39.26947994099937],[-76.63145103084122,39.2694822231924],[-76.63144460026875,39.26948449635934],[-76.63143816050955,39.26948675328337],[-76.63143169433118,39.26948896508588],[-76.63142519141195,39.26949111101689],[-76.63141861620772,39.26949311800291],[-76.63141206394073,39.26949517099953],[-76.63140552314914,39.26949724565016],[-76.63139898350667,39.26949932210558],[-76.63139243928472,39.26950138773709],[-76.6313858893151,39.26950344434255],[-76.6313793359014,39.26950549463145],[-76.63137277444588,39.2695075313833],[-76.63136621185922,39.26950956272664],[-76.63135972720572,39.26951176095572],[-76.63135295653147,39.2695132493847],[-76.63134601766886,39.26951432203284],[-76.63133909719724,39.26951542356269],[-76.63133217445925,39.26951651517667],[-76.63132525285181,39.26951761219834],[-76.63131833577644,39.26951872905067],[-76.63131142667213,39.26951987295057],[-76.63130451868433,39.26952102496048],[-76.63129760959829,39.26952216525657],[-76.63129068683092,39.26952326227256],[-76.63128370520924,39.26952408887394],[-76.63127667743345,39.26952465410824],[-76.63126964857359,39.26952520492647],[-76.63126261861099,39.26952574493161],[-76.63125558865296,39.26952628403556],[-76.6312485587042,39.26952682133766],[-76.63124152761524,39.26952735503266],[-76.63123449765691,39.26952789413536],[-76.63122746879172,39.26952844585179],[-76.63122045555063,39.2695291129148],[-76.63121339967174,39.26952928802586],[-76.63120633279922,39.26952934870487],[-76.63119926809917,39.26952943731399],[-76.63119220554819,39.26952955835692],[-76.63118514301124,39.26952967669725],[-76.63117808032443,39.26952982386115],[-76.63117101669887,39.26952992868569],[-76.63116395509824,39.2695298668747],[-76.63115689533534,39.26952967445813],[-76.63114983573637,39.26952945051491],[-76.63114277476328,39.2695292680021],[-76.63113571371527,39.2695290999009],[-76.63112865384014,39.26952892910066],[-76.63112159286713,39.26952874658662],[-76.63111453308103,39.26952855867127],[-76.63110747333717,39.26952836264876],[-76.63110041482702,39.26952815221743],[-76.63109348799166,39.26952713331253],[-76.63108661226386,39.26952586865898],[-76.63107971408336,39.2695246877056],[-76.63107280411828,39.26952354454691],[-76.63106589177957,39.26952241218953],[-76.63105898062335,39.26952127533166],[-76.63105207654664,39.26952011417496],[-76.63104519019427,39.26951888731766],[-76.63103829793096,39.26951768296058],[-76.6310373380901,39.26951752321202],[-76.63103139031297,39.26951653440224],[-76.63102447798029,39.26951540114167],[-76.63101756563377,39.26951427058296],[-76.63101065683419,39.26951312652349],[-76.63100375160026,39.2695119653603],[-76.63099684871231,39.2695107987995],[-76.63098994699745,39.26950962953966],[-76.63098304530149,39.26950845667644],[-76.63097614476466,39.26950728381644],[-76.63096924307389,39.26950611005163],[-76.63096234253747,39.26950493719082],[-76.63095544083311,39.26950376612749],[-76.6309485379514,39.26950259866305],[-76.63094163506057,39.26950143299977],[-76.63093473100177,39.26950026913388],[-76.63092782694324,39.26949910526761],[-76.630920924039,39.26949794230534],[-76.63091401998086,39.26949677843827],[-76.63090711709118,39.26949561277296],[-76.63090021421111,39.26949444530567],[-76.63089331250411,39.26949327513942],[-76.63088641080665,39.26949210317124],[-76.63087950911417,39.26949093030193],[-76.63087260859011,39.26948975563433],[-76.63086570807094,39.26948858006559],[-76.63085880871078,39.26948740450008],[-76.63085244967719,39.26948861946086],[-76.63084627661577,39.26949128613801],[-76.63084009318551,39.26949394107228],[-76.63083390169467,39.2694965860725],[-76.63082770445615,39.26949922204665],[-76.63082150261474,39.26950185170068],[-76.6308152961751,39.26950447413376],[-76.63080908053013,39.2695070839269],[-76.63080285797865,39.26950968469034],[-76.63079663313259,39.26951228094242],[-76.63079040944014,39.26951487809856],[-76.63078419034971,39.26951748157418],[-76.63077758012031,39.26951931186435],[-76.63077073708409,39.26952067392524],[-76.63076389061341,39.26952202786808],[-76.63075704299767,39.26952337910463],[-76.63075019653584,39.26952473124516],[-76.63074335236321,39.26952608879708],[-76.63073650818097,39.26952744815011],[-76.63072966399376,39.26952880840349],[-76.63072281980634,39.26953016865643],[-76.63071597562329,39.26953152800826],[-76.63070913029055,39.26953288555453],[-76.63070228497163,39.26953424039818],[-76.63069543735354,39.26953559163111],[-76.63068858403493,39.26953692483043],[-76.63068172614638,39.26953824540428],[-76.63067487514489,39.26953957861007],[-76.63066789232816,39.26953929723039],[-76.63066087661308,39.26953865724242],[-76.63065386094034,39.26953800914732],[-76.63064684524895,39.26953736465476],[-76.63063983073062,39.2695367174632],[-76.63063281505356,39.26953607026756],[-76.63062580054481,39.26953542127362],[-76.63061878603155,39.26953477318006],[-76.63061177152304,39.26953412418531],[-76.63060475585118,39.26953347608726],[-76.63059774132893,39.2695328297939],[-76.63059072564326,39.26953218439727],[-76.63058371110714,39.26953154080534],[-76.63057669424417,39.26953089900718],[-76.63056967852137,39.26953026081528],[-76.6305626616352,39.26952962352008],[-76.6305556447351,39.26952898892667],[-76.63054862781635,39.26952835793586],[-76.63054160855195,39.26952773234183],[-76.63053459041365,39.26952711305627],[-76.63052756992033,39.26952650096903],[-76.63052053730904,39.26952599062968],[-76.63051349746821,39.26952553341226],[-76.6305064612587,39.2695250464806],[-76.63049942505869,39.26952455774703],[-76.63049238883063,39.26952407441753],[-76.63048535143447,39.26952359288545],[-76.63047831403372,39.26952311225375],[-76.63047127663307,39.26952263162158],[-76.63046424038194,39.26952215279414],[-76.63045720179447,39.26952167756198],[-76.63045016434252,39.26952120683684],[-76.63044312453077,39.26952074421072],[-76.63043608465814,39.26952029329392],[-76.63042904359864,39.26951984777752],[-76.63042200255332,39.26951939955847],[-76.63041496388665,39.26951893963653],[-76.63040792526236,39.26951847160746],[-76.63040088666159,39.26951799907419],[-76.6303938492385,39.26951752294115],[-76.63038681182022,39.26951704590693],[-76.63037977441135,39.26951656707078],[-76.63037273699793,39.26951608913496],[-76.63036569957524,39.26951561300024],[-76.63035866215728,39.26951513596432],[-76.63035162474414,39.26951465802728],[-76.63034458735926,39.26951417468525],[-76.63033755232024,39.26951368594564],[-76.63033058948461,39.26951290648583],[-76.63032390061339,39.26951114515352],[-76.63031714956988,39.26950952864828],[-76.63031039499867,39.26950792203991],[-76.63030363808664,39.26950631992766],[-76.63029688002078,39.26950471691056],[-76.63029012545982,39.26950310849957],[-76.63028337559076,39.26950148929377],[-76.63027663276873,39.2694998520945],[-76.63026990285354,39.26949818430942],[-76.6302631811724,39.26949649313003],[-76.6302564630008,39.2694947956559],[-76.63024974014272,39.26949310807507],[-76.63024300671013,39.26949144838429],[-76.63023626153952,39.26948981748058],[-76.63022951050473,39.26948820006956],[-76.63022275594217,39.26948659255542],[-76.63021599903416,39.26948499043809],[-76.63020924095353,39.26948339101897],[-76.63020248286857,39.26948179250025],[-76.63019572596615,39.26948018948099],[-76.630188972578,39.2694785792663],[-76.6301822227136,39.26947696005465],[-76.63017547755516,39.26947532734602],[-76.63016874059791,39.26947367754824],[-76.63016200951951,39.26947201155485],[-76.63015528431062,39.26947033116728],[-76.63014856379834,39.2694686390842],[-76.63014184797325,39.26946693710708],[-76.63013513450369,39.26946522793087],[-76.63012842338027,39.26946351335703],[-76.63012171343469,39.26946179518355],[-76.6301150034942,39.26946007610883],[-76.63010829470811,39.26945835793823],[-76.630101583586,39.26945664336286],[-76.63009487129595,39.26945493058501],[-76.63008816133798,39.26945321511179],[-76.63008145139435,39.26945149693595],[-76.63007474262399,39.26944977606114],[-76.6300680350128,39.26944805518959],[-76.63006132741127,39.26944633251614],[-76.63005461981012,39.26944460984227],[-76.63004791220925,39.2694428871681],[-76.63004120460401,39.26944116539426],[-76.6300344958309,39.26943944541785],[-76.63002778705348,39.26943772634185],[-76.63002107711277,39.26943600816259],[-76.63001436716776,39.26943429088362],[-76.63000765721837,39.26943257450507],[-76.630000947274,39.26943085722535],[-76.62999423732522,39.26942914084603],[-76.6299875273768,39.26942742446631],[-76.62998082101318,39.26942568737992],[-76.62997379809079,39.26942576613849],[-76.62996674398711,39.26942604656976],[-76.62995968871523,39.26942632879842],[-76.62995263343856,39.26942661192744],[-76.62994557932531,39.2694268941589],[-76.62993852405322,39.26942717638634],[-76.62993146878577,39.26942745771257],[-76.62992441469119,39.26942773633977],[-76.62991735945181,39.26942801226065],[-76.62991030307238,39.26942828457446],[-76.62990324787049,39.2694285532885],[-76.62989619152383,39.26942881929622],[-76.62988913634531,39.26942908350564],[-76.62988208002203,39.26942934500877],[-76.6298750236987,39.26942960651144],[-76.62986796737998,39.26942986711295],[-76.62986091106124,39.26943012771402],[-76.62984751818173,39.26943062506132],[-76.62984399000354,39.26943075896429],[-76.62984045891268,39.26943078476619],[-76.62983692671003,39.26943080155686],[-76.6298333945403,39.26943081204215],[-76.62982986237053,39.26943082252735],[-76.62982633018197,39.26943083661543],[-76.62982279795581,39.26943085790939],[-76.62981926566856,39.26943089091303],[-76.62981573449785,39.26943093202694],[-76.6298122033036,39.26943097764449],[-76.62980867093182,39.2694310268613],[-76.62980513970935,39.26943107788317],[-76.62980160847285,39.26943113160718],[-76.62979807723158,39.26943118623182],[-76.62979454598566,39.2694312417571],[-76.62979101473969,39.26943129728227],[-76.62978748233962,39.26943135190294],[-76.62978395110778,39.26943140472564],[-76.6297804198806,39.2694314566475],[-76.62977688864875,39.26943150947],[-76.6297733574122,39.26943156319316],[-76.62976982501681,39.26943161691257],[-76.62976629378019,39.26943167063547],[-76.62976276254362,39.26943172435831],[-76.62975923130699,39.26943177808101],[-76.62975570007512,39.26943183090291],[-76.62975216884318,39.26943188372466],[-76.62974863646191,39.26943193474117],[-76.62974510523937,39.2694319857612],[-76.62974157402627,39.26943203497962],[-76.62973804050957,39.26943208148839],[-76.62973450777315,39.26943197847257],[-76.62973268434716,39.26942964784955],[-76.62973092147081,39.26942726157001],[-76.62972916906625,39.26942486721654],[-76.62972740615253,39.26942248814292],[-76.6297256420755,39.26942010996634],[-76.62972387916201,39.26941773089266],[-76.6297221162487,39.26941535181896],[-76.62972035449901,39.26941297184815],[-76.62971859158594,39.2694105927744],[-76.62971682983648,39.26940821280351],[-76.62971506924124,39.269405833737],[-76.62971330749201,39.26940345376602],[-76.62971154690176,39.26940107379873],[-76.62970978631157,39.26939869383139],[-76.6297080257262,39.26939631296325],[-76.62970626513625,39.26939393299585],[-76.62970450687345,39.26939155123421],[-76.62970276493283,39.26938915060797],[-76.62970103347334,39.26938674010636],[-76.62969929967758,39.26938433320036],[-76.62969754839628,39.26938194605605],[-76.62969576681685,39.26937959124371],[-76.62969359943845,39.26937766307819],[-76.62969006770606,39.26937736820127],[-76.62968655925332,39.26937705358079],[-76.62968305079592,39.26937673986096],[-76.62967954117498,39.26937642703814],[-76.62967603271294,39.26937611421882],[-76.62967252308742,39.26937580229652],[-76.62966901345717,39.26937549127486],[-76.62966550499053,39.26937517935601],[-76.62966199536982,39.26937486653267],[-76.62965848574436,39.26937455460996],[-76.6296549772872,39.26937424088927],[-76.62965146883477,39.26937392626775],[-76.62964795922827,39.2693736107417],[-76.62964445078531,39.26937329431848],[-76.62964094234707,39.26937297699439],[-76.62963743391357,39.26937265876946],[-76.62963392664359,39.2693723396473],[-76.62963041821017,39.26937202142216],[-76.62962690978615,39.26937170139539],[-76.62962340135749,39.26937138226929],[-76.62961989409233,39.26937106224598],[-76.62961638567313,39.26937074131817],[-76.62961287841274,39.26937042039386],[-76.62960936999362,39.26937009946582],[-76.62960586273799,39.26936977764061],[-76.62960235432361,39.2693694558116],[-76.62959884706805,39.26936913398617],[-76.62959533981724,39.26936881125986],[-76.62959183140767,39.26936848852984],[-76.62958832537218,39.26936815499796],[-76.62958482055666,39.26936780975992],[-76.62958131693287,39.26936745822017],[-76.62957781215032,39.26936710667664],[-76.62957430733013,39.26936676233901],[-76.62957080128542,39.26936643060816],[-76.62956729281964,39.26936611868638],[-76.62956378074109,39.26936583287524],[-76.62956026502624,39.26936557767858],[-76.62955674685273,39.26936534949702],[-76.62955322508998,39.26936514292237],[-76.62954970207906,39.26936495345814],[-76.62954617668002,39.26936477749783],[-76.62954265007049,39.26936461144199],[-76.62953912342799,39.26936445169127],[-76.62953559562203,39.26936429283759],[-76.62953206898428,39.26936413218591],[-76.6295285435383,39.2693639652326],[-76.62952501813467,39.26936379017236],[-76.62952149392278,39.26936360881042],[-76.62951796972969,39.26936342384538],[-76.62951444438727,39.26936323707512],[-76.62951092020835,39.26936304940763],[-76.62950739602472,39.2693628626408],[-76.62950387183173,39.26936267767537],[-76.6295003464611,39.26936249630913],[-76.6294968210623,39.26936232034731],[-76.62949329679411,39.26936214979354],[-76.62948977016602,39.26936198733913],[-76.62948624464495,39.26936183479651],[-76.62948271791342,39.26936169215836],[-76.62947919111599,39.26936156213063],[-76.62947566180345,39.26936146992697],[-76.62947213106867,39.26936142816153],[-76.62946859900113,39.26936141972011],[-76.62946506568538,39.26936142838919],[-76.62946153236962,39.26936143705811],[-76.62945799914317,39.26936142861271],[-76.62945446720734,39.26936139494988],[-76.62945093529027,39.26936135768391],[-76.6294474033826,39.26936131861636],[-76.62944387147965,39.26936127864793],[-76.62944034073556,39.26936123868307],[-76.62943680884202,39.26936119691293],[-76.62943327694849,39.26936115514265],[-76.62942974505495,39.26936111337232],[-76.62942621316618,39.26936107070114],[-76.62942268127738,39.26936102802981],[-76.62941915054735,39.26936098536207],[-76.6294156186586,39.26936094269053],[-76.62941208676979,39.26936090001891],[-76.62940855487629,39.26936085824789],[-76.62940502298279,39.2693608164768],[-76.62940149224345,39.26936077561002],[-76.62939796034054,39.26936073564024],[-76.62939442843293,39.26936069657108],[-76.62939089651593,39.2693606593033],[-76.62938736459898,39.26936062203544],[-76.62938383267257,39.26936058656894],[-76.62938030072264,39.2693605556061],[-76.62937676868334,39.26936054175745],[-76.62937323655939,39.26936054412213],[-76.62936970437893,39.26936055729571],[-76.62936616128458,39.26936066321356],[-76.62936260962222,39.26936085647845],[-76.62935915612042,39.2693604492428],[-76.6293557409568,39.26935980162385],[-76.62935233655664,39.26935909008445],[-76.62934894051753,39.26935833083078],[-76.62934554927845,39.26935754006539],[-76.62934216044172,39.26935673309372],[-76.62933877276387,39.26935592612561],[-76.62933538384733,39.26935513446649],[-76.62933199015916,39.26935436891441],[-76.62932859761581,39.26935360606816],[-76.62932520509131,39.26935283961876],[-76.62932181489391,39.2693520713751],[-76.6293184235425,39.26935130222695],[-76.62931503335932,39.26935053128084],[-76.62931164317627,39.26934976033464],[-76.62930825298858,39.26934899028909],[-76.62930486279157,39.26934822204494],[-76.62930147026756,39.26934745559484],[-76.62929807773428,39.26934669094618],[-76.62929468401869,39.26934593079752],[-76.6292912891255,39.26934517424812],[-76.62928789189128,39.26934442219503],[-76.6292844934748,39.26934367464194],[-76.62928109388076,39.2693429306881],[-76.62927769311385,39.2693421894327],[-76.62927429117408,39.26934145087584],[-76.62927088806143,39.26934071501748],[-76.62926748493948,39.26933998096052],[-76.62926408064463,39.26933924960202],[-76.62926067518636,39.26933851914057],[-76.62925726971405,39.26933779138122],[-76.6292538630783,39.26933706451891],[-76.62925045643792,39.26933633855721],[-76.62924704979284,39.26933561349616],[-76.62924364314317,39.26933488933582],[-76.62924023533009,39.26933416607239],[-76.62923682867111,39.26933344371333],[-76.62923341967577,39.26933272494982],[-76.62923000833939,39.26933201068267],[-76.62922659698891,39.26933129911767],[-76.62922318562443,39.26933059025477],[-76.62921977193766,39.26932988228527],[-76.62921635940036,39.2693291761208],[-76.62921294570901,39.26932846905181],[-76.62920953317655,39.26932776198638],[-76.62920612065355,39.2693270531194],[-76.62920270929889,39.26932634245443],[-76.62919929801954,39.26932561737735],[-76.62919588794151,39.26932488419713],[-76.62919247781645,39.26932416002427],[-76.62918906757378,39.26932345837007],[-76.62918614045935,39.26932366350999],[-76.62918577254803,39.26932643220056],[-76.62918629805242,39.2693296522929],[-76.62918711457429,39.26933306516705],[-76.62918715810164,39.2693358234467],[-76.62918539002675,39.26933709695035],[-76.62918254988446,39.26933751224301],[-76.62917946734302,39.26933774481569],[-76.62917617588545,39.26933781819404],[-76.62917271131715,39.2693377550102],[-76.62916910828487,39.26933757789263],[-76.62916540260336,39.26933730767207],[-76.62916162891457,39.26933696787774],[-76.62915782186046,39.26933658203888],[-76.62915401726049,39.26933617008549],[-76.6291502497519,39.26933575644757],[-76.62914655282718,39.26933536284925],[-76.62914296460934,39.26933501193004],[-76.62913946093758,39.26933467028535],[-76.62913596571647,39.26933426381219],[-76.62913247541316,39.26933380330853],[-76.62912898996161,39.26933330138493],[-76.62912550697847,39.26933277064451],[-76.62912202755651,39.26933222370145],[-76.62911854931222,39.269331673159],[-76.62911507102567,39.26933113072316],[-76.62911159262141,39.26933061080596],[-76.62910811172543,39.26933012420911],[-76.62910462942581,39.26932968444751],[-76.62910114218033,39.26932930412063],[-76.62909765108644,39.26932899494196],[-76.6290941537607,39.26932876951466],[-76.62909065012299,39.26932864315145],[-76.62908714128982,39.26932862396273],[-76.62908362848577,39.26932869934173],[-76.62908011063686,39.26932885307117],[-76.6290765889725,39.2693290716436],[-76.62907306473625,39.26932933884908],[-76.6290695391622,39.2693296402793],[-76.62906601116694,39.26932996151855],[-76.62906248315284,39.26933028636075],[-76.62905895519513,39.26933060039381],[-76.62905542736931,39.2693308892058],[-76.62905190207293,39.26933113749121],[-76.62904837703557,39.26933133623529],[-76.62904485085346,39.26933153227333],[-76.62904132125614,39.26933171659056],[-76.62903779186597,39.26933186127468],[-76.62903426165605,39.26933194110099],[-76.62903073424404,39.26933192905805],[-76.62902719770285,39.26933188996323],[-76.6290236507041,39.2693318562398],[-76.62902009917849,39.26933180178441],[-76.62901655368704,39.26933170140895],[-76.62901302016049,39.26933152901001],[-76.62900950683755,39.26933126029291],[-76.6290060219666,39.26933086916154],[-76.62900257025822,39.26933034121859],[-76.62899913041581,39.26932976016785],[-76.62899569651822,39.26932915031136],[-76.62899226855129,39.2693285143513],[-76.62898884533745,39.26932785588705],[-76.62898542687186,39.2693271758193],[-76.62898201198175,39.26932647684671],[-76.62897859948936,39.26932576256859],[-76.62897519170289,39.26932503479374],[-76.62897178513188,39.26932429621346],[-76.62896837976213,39.26932354953],[-76.62896497673833,39.26932279744925],[-76.62896157373339,39.26932204176543],[-76.62895817073328,39.26932128518074],[-76.62895476772384,39.26932053039747],[-76.62895136353207,39.26931978011415],[-76.6289479581439,39.2693190370331],[-76.62894455039105,39.26931830295214],[-76.62894114141825,39.26931758057714],[-76.62893772773963,39.26931687169864],[-76.62893431520575,39.26931616552601],[-76.6289309026814,39.26931545755173],[-76.6289274901618,39.26931474867664],[-76.62892407765167,39.26931403799992],[-76.62892066630046,39.26931332732677],[-76.62891725495398,39.26931261575274],[-76.62891384360762,39.26931190417866],[-76.62891043226126,39.26931119260447],[-76.62890702091504,39.26931048103017],[-76.62890360841003,39.26930976945212],[-76.62890019706389,39.26930905787761],[-76.62889678570845,39.26930834810452],[-76.62889337319422,39.26930763832765],[-76.62888996067537,39.26930692945147],[-76.62888654814715,39.26930622237663],[-76.62888313445079,39.26930551709959],[-76.62887972074977,39.26930481272316],[-76.62887630587591,39.26930411104523],[-76.62887289099733,39.26930341026794],[-76.62886947494125,39.26930271308993],[-76.62886605771698,39.26930201770961],[-76.62886263931979,39.2693013250278],[-76.62885922090857,39.26930063504815],[-76.62885580131973,39.26929994866772],[-76.62885238055338,39.26929926588657],[-76.62884895744584,39.26929858760167],[-76.62884553431488,39.2692979138205],[-76.62884210884272,39.26929724453562],[-76.62883868219302,39.26929657884996],[-76.62883525436573,39.26929591676356],[-76.62883182536555,39.26929525737563],[-76.6288283963513,39.26929460068989],[-76.62882496616889,39.26929394580186],[-76.62882153481358,39.26929329361229],[-76.62881810345367,39.26929264232341],[-76.62881467208905,39.26929199193516],[-76.628811239561,39.26929134244392],[-76.62880780819185,39.26929069295622],[-76.62880437566392,39.26929004346477],[-76.62880094429484,39.26928939397687],[-76.62879751293531,39.26928874268737],[-76.62879408157578,39.26928809139779],[-76.62879065023046,39.26928743740585],[-76.6287858910508,39.26928652700255],[-76.62852329762126,39.26923352798713],[-76.62844288230828,39.26921863436655],[-76.628347739299,39.26920156647779],[-76.62831043806965,39.26919775889566],[-76.62824238799527,39.26918918890892],[-76.62818068816156,39.2691771079889],[-76.62807894850334,39.26915244086045],[-76.62791792868974,39.26911151619611],[-76.62781171610551,39.26907978797861],[-76.62775659490424,39.26906531183146],[-76.62771335050375,39.26905216320379],[-76.62743817801147,39.26902928219446],[-76.62734201366833,39.26901900562026],[-76.62726162763421,39.26899796896406],[-76.62722084006009,39.26898636645876],[-76.6271923163909,39.26897254555332],[-76.6271751792743,39.26896446893743],[-76.62715637043593,39.26895718779193],[-76.62713669028629,39.26894966337281],[-76.62711926128236,39.2689437683758],[-76.62710194309562,39.26893795569773],[-76.62708223726166,39.26893113108231],[-76.6270608875509,39.26892487503079],[-76.62703979348375,39.26891892694807],[-76.62702233848574,39.26891401188656],[-76.62700525879659,39.26890978709972],[-76.62698682101717,39.26890378979488],[-76.62696775345856,39.26889921819951],[-76.62695024466274,39.26889528028649],[-76.62692911192624,39.26889184159267],[-76.62690705414008,39.26889198860459],[-76.62688147398296,39.26889205055885],[-76.62685399903836,39.26889257488506],[-76.62682112702629,39.26889824974497],[-76.62679766871504,39.26890667572231],[-76.62677855635592,39.26891481014687],[-76.62676469106876,39.26892053458278],[-76.62674560856017,39.26892827996632],[-76.62672383414105,39.26893623837901],[-76.62670616793386,39.26894526193965],[-76.62669093579393,39.26895638481145],[-76.62667578423432,39.26897091282959],[-76.62666403396025,39.26898739550941],[-76.62665705351702,39.26900848094801],[-76.62664759863976,39.26902720842355],[-76.62663307018263,39.26904818429201],[-76.62662250340658,39.269070104145],[-76.62661660463993,39.26908888976337],[-76.62661576402792,39.26910439376199],[-76.62661629829098,39.26911759887534],[-76.62661682605173,39.26913071839531],[-76.62661753791595,39.26914386642426],[-76.62661789812618,39.26915799606986],[-76.62661842447285,39.26917072375234],[-76.62661884391203,39.26918901331925],[-76.62661903144144,39.26920358649282],[-76.62661918006975,39.26921498164351],[-76.62661904962141,39.26922964208099],[-76.6266178131515,39.26924241550231],[-76.62661756489483,39.26925942385962],[-76.62661811515262,39.26927377389561],[-76.62661848345152,39.26928834854435],[-76.62661912294591,39.26929895348285],[-76.62662400273501,39.269304025892],[-76.62663186417649,39.2693088807874],[-76.62664186735402,39.26931017005696],[-76.62665126944199,39.26931227530939],[-76.62666665764614,39.2693212832369],[-76.62667729071563,39.26932971847325],[-76.62668809331866,39.26933963060144],[-76.62670959664811,39.26936582564188],[-76.6267162019255,39.26937640900736],[-76.62672158051465,39.26938667500731],[-76.6267324395192,39.26940393214837],[-76.62674885669772,39.26942066919666],[-76.62676413995867,39.26943289160776],[-76.62678144456251,39.26944549065489],[-76.62680549697072,39.26945523950328],[-76.6268281923975,39.26946564879947],[-76.62684808161961,39.26947839116395],[-76.62686285895303,39.2694900868084],[-76.62687662368474,39.26950416626103],[-76.6268871603725,39.26951617540702],[-76.62689735848821,39.26952667919885],[-76.62691008835164,39.26953878358514],[-76.62692215271251,39.26954918881471],[-76.62693516150878,39.26956047889198],[-76.62694952132553,39.26957092203633],[-76.62696254445392,39.26958036919088],[-76.62698163548963,39.26959792448626],[-76.62699010131642,39.26960531512854],[-76.62699658839344,39.2696123833171],[-76.62700381602612,39.26962098335612],[-76.62700968856126,39.2696305456118],[-76.62701656597025,39.26964272237603],[-76.62702911019686,39.26965443612813],[-76.62704123487647,39.26966682141785],[-76.62705229679686,39.26967768464174],[-76.62706624662188,39.26968941366245],[-76.62707591302096,39.26969768635646],[-76.62708899787071,39.26970950900959],[-76.62710155755038,39.26972225598003],[-76.62711353811218,39.26973450568967],[-76.62712620502234,39.26974713679914],[-76.62713785792759,39.26975911163333],[-76.62714820904846,39.26977028335501],[-76.62715958736452,39.26978357243194],[-76.62716844475932,39.26979584554888],[-76.62717921022168,39.26980866247892],[-76.62719201436231,39.26982076436688],[-76.62720684088086,39.26983106303629],[-76.62722180505394,39.26984074781904],[-76.62723563329823,39.26985158737804],[-76.62724950886722,39.26986334586574],[-76.62726426337672,39.26987610518879],[-76.62727982713679,39.26989055781387],[-76.62729353938244,39.26990340840563],[-76.62730943154946,39.26991799718353],[-76.62732339772393,39.2699312638301],[-76.62735338127851,39.26996043656217],[-76.62736677401091,39.26997080272258],[-76.62737692364476,39.26998041365916],[-76.62738111949935,39.26998797448031],[-76.627379302604,39.2699976528384],[-76.62737082409815,39.27000590036332],[-76.62737089025794,39.27001095566544],[-76.62741977404417,39.27005148123452],[-76.62743227714013,39.27005163259403],[-76.62744657623404,39.27005138160308],[-76.62746105464741,39.27005140861478],[-76.62748261802916,39.27005213277059],[-76.62750219208074,39.2700569752149],[-76.6275210652404,39.27007171303671],[-76.62754869558006,39.27010503258112],[-76.62756361620929,39.27012237097959],[-76.62757207597296,39.27013182340979],[-76.6275832305237,39.27014184736262],[-76.62759414523167,39.27014921509928],[-76.62760565635566,39.27015599472512],[-76.6276161149604,39.27016194681275],[-76.62762884410414,39.27017092095825],[-76.62763987562997,39.27017943753604],[-76.62764703242175,39.27018809225571],[-76.62765459893322,39.27019816968068],[-76.6276656489234,39.2702106776032],[-76.62767546085405,39.27022216103313],[-76.62769144130702,39.27023541240177],[-76.62770602760996,39.27024646778803],[-76.62772811860549,39.27025995020148],[-76.62775686292321,39.2702740211808],[-76.62777160798339,39.27028309267718],[-76.62778671646385,39.2702929147598],[-76.62780391179705,39.27030565292407],[-76.62781695984557,39.2703143731429],[-76.62783539827339,39.27032629554596],[-76.62788965831601,39.27036021282633],[-76.62796075712102,39.27040416840127],[-76.62801459178692,39.27044099734828],[-76.62805468599187,39.27046855261887],[-76.62807716538661,39.27048445745088],[-76.62814598552855,39.27053803757168],[-76.62816544225906,39.27055380310568],[-76.62818682071138,39.27057038811084],[-76.62820334050355,39.27058380325302],[-76.62822553373505,39.27060479466861],[-76.62824764890121,39.27062564801579],[-76.62827003806997,39.27064529970508],[-76.62828830877008,39.27066051289844],[-76.62831329368937,39.27068106815481],[-76.62834237359884,39.270701921907],[-76.62836754093318,39.27071686056068],[-76.62839273627043,39.27073419893438],[-76.62841650727584,39.27074978891584],[-76.62877553915258,39.27107809640781],[-76.62877814499463,39.27107995031094],[-76.62878074967334,39.27108180511102],[-76.62878335435684,39.27108365901035],[-76.62878595787694,39.27108551380671],[-76.62878856255601,39.27108736860665],[-76.62879116607166,39.27108922430359],[-76.62879377075105,39.27109107910346],[-76.62879637426698,39.27109293480031],[-76.62879897778777,39.27109478959638],[-76.62880158014516,39.2710966452894],[-76.6288041836615,39.27109850098609],[-76.62880678717326,39.27110035758346],[-76.628809389531,39.27110221327636],[-76.62881199304776,39.27110406897287],[-76.62881459540111,39.2711059255664],[-76.6288171977593,39.27110778125913],[-76.62881980011294,39.27110963785258],[-76.62882240363024,39.27111149354882],[-76.62882500598408,39.27111335014214],[-76.62882760833811,39.27111520673538],[-76.62883021069699,39.27111706242781],[-76.6288328130513,39.27111891902093],[-76.62883541540569,39.27112077561397],[-76.62883801776027,39.27112263220697],[-76.62884062011499,39.27112448879993],[-76.62884322247454,39.27112634449207],[-76.62884582482948,39.27112820108489],[-76.62884842718461,39.27113005767769],[-76.62885102954459,39.27113191336965],[-76.62885363189997,39.2711337699623],[-76.62885623541433,39.27113562655854],[-76.62885883777467,39.27113748225033],[-76.62886144013518,39.27113933794206],[-76.62886404364994,39.27114119453815],[-76.62886664716954,39.27114305023343],[-76.62886924953047,39.27114490592498],[-76.62887185305036,39.27114676162008],[-76.6288744565751,39.27114861641446],[-76.62887706009525,39.2711504721095],[-76.62887966362025,39.27115232690375],[-76.62888226829951,39.27115418260229],[-76.62888487182484,39.27115603739641],[-76.62888747650908,39.27115789219415],[-76.62889008119815,39.27115974609104],[-76.62889268588272,39.2711616008886],[-76.62889529057207,39.27116345478542],[-76.62889789642043,39.27116530868582],[-76.62890050111007,39.27116716258248],[-76.6289031069587,39.27116901648277],[-76.62890571397097,39.27117086948591],[-76.62890831982459,39.2711727224853],[-76.62891092683716,39.27117457548831],[-76.62891353269578,39.27117642758684],[-76.62891614087216,39.27117827969265],[-76.62891874788987,39.27118013179474],[-76.62892135606653,39.27118198390041],[-76.62892396424805,39.2711838351053],[-76.62892657242973,39.2711856863101],[-76.62892918177035,39.2711875375185],[-76.62893179111585,39.27118938782615],[-76.62893440046143,39.27119123813372],[-76.62893701097074,39.27119308754409],[-76.6289396214802,39.27119493695443],[-76.62894223198977,39.27119678636473],[-76.62894484366302,39.27119863487786],[-76.62894745533642,39.27120048339098],[-76.62895006701466,39.27120233100323],[-76.62895267985191,39.27120417861909],[-76.62895529268924,39.27120602623495],[-76.6289579066903,39.27120787295358],[-76.62896052185502,39.27120971877511],[-76.6289631370246,39.27121156369581],[-76.62896575219432,39.2712134086165],[-76.62896836968186,39.2712152535444],[-76.62897098602009,39.27121709666712],[-76.62897360467615,39.27121893979706],[-76.62897622333706,39.27122078202622],[-76.62897884199811,39.27122262425529],[-76.62898146182283,39.27122446558725],[-76.62898408280655,39.27122630692277],[-76.62898670379508,39.2712281473575],[-76.62898932478851,39.27122998689141],[-76.62899194694083,39.27123182642897],[-76.62899457025222,39.27123366597007],[-76.62899719356842,39.27123550461042],[-76.62899981688945,39.27123734234989],[-76.62900244136945,39.271239180093],[-76.62900506584963,39.27124101783607],[-76.62900769033462,39.27124285467833],[-76.6290103159786,39.27124469152415],[-76.62901294162273,39.27124652836994],[-76.62901556843052,39.27124836431856],[-76.62901819524316,39.2712501993664],[-76.62902082205125,39.27125203531494],[-76.62902344886415,39.27125387036264],[-76.62902607684074,39.27125570451318],[-76.62902870481274,39.27125753956442],[-76.62903133278965,39.27125937371488],[-76.62903396192547,39.27126120786892],[-76.62903658990736,39.27126304111849],[-76.62903921904345,39.2712648752724],[-76.62904184818444,39.2712667085255],[-76.62904447848439,39.27126854178223],[-76.62904710762565,39.27127037503521],[-76.62904973793059,39.27127220739105],[-76.62905236707205,39.27127404064389],[-76.62905499737725,39.27127587299962],[-76.62905762768258,39.2712777053553],[-76.62906025798807,39.27127953771092],[-76.62906288829367,39.27128137006645],[-76.62906551975824,39.27128320242559],[-76.62906815006413,39.27128503478101],[-76.62907078037014,39.27128686713636],[-76.629073410681,39.27128869859091],[-76.62907604214612,39.27129053094981],[-76.62907867245254,39.27129236330498],[-76.6290813027591,39.27129419566013],[-76.62908393422934,39.2712960271181],[-76.62908657151748,39.27129785409053],[-76.62908921346465,39.27129967657384],[-76.62909186122499,39.2713014954724],[-76.62909451480324,39.27130330988541],[-76.62909717187226,39.2713051216071],[-76.62909983244151,39.27130692883598],[-76.62910249765567,39.27130873427793],[-76.62910516636532,39.27131053612779],[-76.62910783740217,39.27131233618341],[-76.6291105107663,39.27131413444474],[-76.62911318646239,39.27131593001114],[-76.62911586448095,39.27131772468407],[-76.62911854366327,39.2713195184598],[-76.62912122285036,39.27132131133473],[-76.62912390319646,39.27132310421327],[-76.62912658470623,39.27132489619462],[-76.62912926505732,39.2713266881723],[-76.62913194540383,39.27132848105065],[-76.6291346245869,39.27133027482601],[-76.62913730261131,39.27133206859766],[-76.629139978304,39.27133386506416],[-76.62914265283327,39.27133566242772],[-76.62914532387677,39.27133746158176],[-76.62914799259332,39.27133926252985],[-76.62915065897344,39.27134106707361],[-76.62915332070423,39.27134287430493],[-76.62915597778566,39.27134468422373],[-76.62915863137187,39.27134649773455],[-76.62916128030402,39.27134831483363],[-76.62916392341853,39.27135013641815],[-76.62916656187429,39.2713519624917],[-76.62916919335356,39.27135379304698],[-76.62917181901054,39.27135562898842],[-76.62917443769105,39.27135746941156],[-76.62917704938569,39.27135931611795],[-76.62917965409915,39.27136116820684],[-76.6291822506679,39.27136302657529],[-76.62918483908727,39.27136489212405],[-76.62918741820302,39.27136676394874],[-76.6291899891694,39.27136864295377],[-76.62919254966864,39.2713705291318],[-76.62919510085489,39.27137242338727],[-76.62919764156936,39.27137432571647],[-76.629200171812,39.27137623611943],[-76.62920269157816,39.2713781554969],[-76.62920519970889,39.27138008384527],[-76.62920769852668,39.271382020271],[-76.62921018804093,39.27138396297268],[-76.62921266941046,39.27138591195398],[-76.62921514379406,39.27138786721849],[-76.62921761003301,39.27138982876256],[-76.62922006813196,39.27139179568547],[-76.62922252040855,39.27139376799456],[-76.62922496570397,39.27139574568616],[-76.62922740401351,39.27139772966093],[-76.62922983651018,39.2713997172204],[-76.6292322620257,39.27140171016238],[-76.62923468171883,39.27140370849052],[-76.62923709559908,39.27140571040326],[-76.62923950482057,39.27140771680513],[-76.62924190822449,39.27140972769233],[-76.62924430697427,39.27141174216789],[-76.62924670107002,39.27141376023177],[-76.62924909051171,39.27141578188397],[-76.62925147529934,39.27141780712445],[-76.62925385659176,39.27141983595693],[-76.62925623323477,39.271421867477],[-76.62925860754613,39.27142390169191],[-76.62926097720815,39.27142593859443],[-76.62926334454319,39.27142797729105],[-76.62926570954659,39.27143001868257],[-76.62926807105941,39.27143206276526],[-76.62927043025006,39.27143410774141],[-76.62927278826778,39.27143615541608],[-76.62927514280447,39.27143820398045],[-76.62927749617305,39.27144025434264],[-76.62927984838288,39.2714423047011],[-76.62928219942461,39.27144435685734],[-76.62928454930292,39.27144640991069],[-76.62928689917663,39.27144846386467],[-76.62928924789639,39.27145051691424],[-76.62929159660685,39.27145257176527],[-76.62929394416331,39.27145462571183],[-76.62929629287876,39.27145667966197],[-76.62929864275786,39.271458732715],[-76.6293009914783,39.27146078576433],[-76.62930334251655,39.27146283882089],[-76.62930569472317,39.27146489007961],[-76.62930804693464,39.27146694043749],[-76.62931040262752,39.27146898990554],[-76.62931275832992,39.27147103757208],[-76.62931511751839,39.27147308344805],[-76.62931747787525,39.27147512752611],[-76.62931984171819,39.27147716981357],[-76.6293222078931,39.27147920940606],[-76.62932457755407,39.27148124720799],[-76.62932694954704,39.27148328231495],[-76.62932932618955,39.27148531473424],[-76.62933170632292,39.27148734446217],[-76.62933464836236,39.27148984526171],[-76.62934127011668,39.27149627780099],[-76.62934563727426,39.27150060804654],[-76.62935002654459,39.27150492034638],[-76.62935449375445,39.27150917614392],[-76.62935909359082,39.27151333327572],[-76.62936388073109,39.27151735137996],[-76.62936887257676,39.27152122690849],[-76.6293740307684,39.27152498225929],[-76.62937931694167,39.27152864073121],[-76.62938468809705,39.27153222560839],[-76.62939010471608,39.27153575928516],[-76.62939564362134,39.27153917714904],[-76.62940151774255,39.27154231503189],[-76.62940745593951,39.27154538826164],[-76.62941315101618,39.2715486372737],[-76.6294182980894,39.27155230341177],[-76.62942277039333,39.27155647274932],[-76.62942679832038,39.27156096586047],[-76.62943058077646,39.27156564105211],[-76.62943431780752,39.27157036023775],[-76.62943821063728,39.27157498173153],[-76.6294424558351,39.27157936743589],[-76.62944697426082,39.27158358195621],[-76.62945158098525,39.27158775351824],[-76.62945627837303,39.2715918731218],[-76.62946106647131,39.27159593175939],[-76.62946594532231,39.2715999213242],[-76.6294709161414,39.27160383101094],[-76.62947597897092,39.27160765271289],[-76.62948114313332,39.27161137655096],[-76.62948649915513,39.27161497668857],[-76.62949205529874,39.27161842432736],[-76.62949778737413,39.27162169146722],[-76.62950367234554,39.27162475101265],[-76.6295096860228,39.27162757496347],[-76.62951598444403,39.27163001968969],[-76.62952262829238,39.2716320043139],[-76.62952945616355,39.2716335904796],[-76.62953636020936,39.2716347922588],[-76.62954381116698,39.27163512021986],[-76.62955143564209,39.27163506410135],[-76.62955854911192,39.27163544143971],[-76.62956446358675,39.27163706795906],[-76.6295686222123,39.27164094625542],[-76.62957110182117,39.27164656583787],[-76.62957216151031,39.27165246648414],[-76.62957185509273,39.27165788541651],[-76.62957033586201,39.27166342663062],[-76.62956835869331,39.27166900333166],[-76.62956669250936,39.27167450174629],[-76.62956610622376,39.27167980990265],[-76.62956733746131,39.27168481573023],[-76.6295704431612,39.27168948968335],[-76.62957477611268,39.27169393961383],[-76.62957966122194,39.27169828679691],[-76.62958442339986,39.27170265160742],[-76.62958863237503,39.27170709754327],[-76.6295928833138,39.27171149677156],[-76.6295970726883,39.27171592372923],[-76.62960098674384,39.27172047862776],[-76.62960470468386,39.27172530673995],[-76.62960740634433,39.2717303478304],[-76.6296067715307,39.27173562881089],[-76.62960412520893,39.27174085480627],[-76.62960111031408,39.27174586886036],[-76.62959878197231,39.27175100848434],[-76.62959740532713,39.2717565411407],[-76.6295977465621,39.27176199003923],[-76.62959988212184,39.27176714103922],[-76.62960251605308,39.27177228100016],[-76.6296056082945,39.27177731431473],[-76.62960912225678,39.27178214628722],[-76.62961303176129,39.27178668585788],[-76.6296174179228,39.27179093418321],[-76.62962217595118,39.271794985513],[-76.62962713848313,39.27179893299878],[-76.62963213815998,39.27180286889159],[-76.6296370029829,39.27180688632848],[-76.62964158301834,39.27181106950844],[-76.62964606652646,39.27181531813968],[-76.62965054418449,39.27181957756143],[-76.62965499739907,39.27182385762347],[-76.62965940643217,39.27182816546978],[-76.62966375154558,39.2718325082441],[-76.62966801184257,39.27183689308677],[-76.62967216873436,39.27184132894679],[-76.62967620132405,39.27184582296439],[-76.62968007243914,39.27185039213689],[-76.62968348110039,39.27185519585131],[-76.62968650167164,39.27186019651009],[-76.62968936192233,39.27186527322826],[-76.62969229076188,39.27187030872743],[-76.62969551595971,39.27187518212263],[-76.62969926295364,39.27187977522374],[-76.62970346528955,39.27188416438609],[-76.62970793585181,39.27188845260764],[-76.62971265278217,39.27189260919342],[-76.6297175976941,39.27189660436022],[-76.62972275219639,39.27190040922557],[-76.62972809443059,39.27190399309454],[-76.6297336303697,39.27190732175693],[-76.62973944005425,39.27191038015202],[-76.62974547336695,39.27191322306839],[-76.62975166743358,39.27191590705593],[-76.62975795704821,39.27191849135959],[-76.62976427700502,39.27192103522412],[-76.62977056210268,39.27192359699372],[-76.62977679490676,39.27192618652181],[-76.62978311292318,39.27192865831807],[-76.62978948929621,39.2719310510307],[-76.62979587735686,39.27193342486376],[-76.62980222926797,39.27193584181921],[-76.62980849835586,39.27193836300193],[-76.62981463561979,39.27194105131091],[-76.62982064792371,39.27194392388239],[-76.629826615562,39.27194691701519],[-76.62983247700272,39.27195005213369],[-76.62983816488685,39.27195335694933],[-76.62984361419173,39.27195685557783],[-76.62984875639948,39.27196057572695],[-76.62985360657041,39.27196451834501],[-76.6298582425685,39.27196864134145],[-76.62986270747332,39.27197290611925],[-76.62986703857503,39.27197727316231],[-76.62987127663068,39.27198170476697],[-76.62987546125281,39.27198616052375],[-76.6298796331985,39.27199060272893],[-76.62988368901978,39.27199509050699],[-76.62988749495518,39.27199971801663],[-76.62989116376113,39.27200441895668],[-76.62989481167061,39.27200912703687],[-76.62989848270125,39.27201384599898],[-76.62990102090122,39.27201890458231],[-76.62990230215085,39.2720243258157],[-76.6299037830007,39.27202969453293],[-76.62990526268725,39.27203506414727],[-76.62990674005164,39.27204043465503],[-76.62990821625735,39.2720458051591],[-76.6299096924633,39.27205117566314],[-76.62991116866948,39.27205654616711],[-76.62991264487586,39.2720619166711],[-76.62991412108246,39.27206728717507],[-76.62991559961175,39.27207265678557],[-76.62991708045891,39.2720780264033],[-76.62991856362405,39.27208339602836],[-76.6299200491118,39.27208876475989],[-76.62992153808104,39.27209413260164],[-76.62992303053178,39.27209949955358],[-76.62992452762752,39.27210486471857],[-76.62992602935896,39.27211022989815],[-76.62992753689426,39.27211559329449],[-76.6299290502288,39.27212095580828],[-76.62993056936719,39.27212631653877],[-76.62993228219911,39.27213164635285],[-76.62993554339219,39.27213651174752],[-76.62993920988127,39.2721412144801],[-76.62994312956039,39.27214581081934],[-76.62994521466767,39.27214975462938],[-76.62993942530447,39.2721534601469],[-76.62993456969038,39.27215744604167],[-76.62992973831309,39.27216145092866],[-76.62992492540175,39.27216547028588],[-76.62992011940544,39.2721694968708],[-76.62991531572631,39.27217352346278],[-76.62991050279923,39.27217754552166],[-76.62990567602645,39.27218155582673],[-76.62990082501108,39.27218554803993],[-76.62989594167402,39.27218951583044],[-76.62989102370702,39.27219345738947],[-76.62988609188957,39.27219738809548],[-76.62988114852057,39.27220131155875],[-76.62987619592246,39.27220522688583],[-76.62987123524002,39.27220913678264],[-76.62986626763211,39.27221304125283],[-76.62986129425279,39.2722169412008],[-76.62985631625165,39.27222083843174],[-76.62985133710048,39.27222473385724],[-76.62984635563572,39.27222862837455],[-76.62984137301632,39.27223252198719],[-76.62983639270935,39.27223641650767],[-76.62983141470544,39.27224031373751],[-76.62982644132704,39.27224421278324],[-76.62982147256002,39.27224811634709],[-76.62981650956321,39.27225202443275],[-76.62981155580387,39.27225593885265],[-76.62980661128192,39.2722598596068],[-76.62980167598795,39.27226378849672],[-76.62979675455752,39.27226772553698],[-76.62979189198853,39.27227170870157],[-76.6297871737076,39.27227580131323],[-76.62978252816158,39.27227994639833],[-76.62977787225108,39.27228407883983],[-76.62977312518974,39.27228813442887],[-76.62976761796541,39.27228995732941],[-76.62976278034057,39.2722856058009],[-76.62975794786929,39.27228159928109],[-76.62975310376774,39.27227760083128],[-76.62974825037234,39.27227360685579],[-76.62974339115966,39.27226961736555],[-76.62973853078869,39.27226562787146],[-76.62973367273601,39.27226163838451],[-76.62972881818395,39.27225764440452],[-76.62972397292678,39.27225364594985],[-76.62971913930103,39.27224963942471],[-76.6297143219516,39.27224562304233],[-76.62970952204664,39.27224159500479],[-76.62970474539452,39.27223755262815],[-76.62969999432249,39.27223349411818],[-76.62969527231643,39.27222941768436],[-76.62969064449797,39.27222528029541],[-76.62968657132576,39.27222078615092],[-76.62968269929446,39.27221616653352],[-76.62967847023945,39.27221178629426],[-76.62967348061308,39.27220791709228],[-76.62966817001451,39.27220426306131],[-76.6296632176701,39.27220035614432],[-76.62965876898689,39.27219609141036],[-76.6296544993981,39.27219170653863],[-76.62965026462727,39.27218731186807],[-76.62964608798309,39.27218288225086],[-76.62964189622731,39.2721784615935],[-76.62963762542063,39.27217408842716],[-76.62963332091365,39.27216973316968],[-76.62962898967353,39.27216539314077],[-76.62962460727509,39.2721610853778],[-76.62962015277888,39.27215682512784],[-76.62961563902167,39.27215259531676],[-76.62961106019044,39.27214839952935],[-76.62960630568604,39.27214433469932],[-76.62960127535796,39.2721404941902],[-76.62959603438412,39.27213682416174],[-76.62959067121379,39.27213325283169],[-76.62958523706226,39.2721297371249],[-76.62957978313554,39.27212623576773],[-76.62957436179829,39.27212270749015],[-76.62956902893906,39.27211910202568],[-76.6295638475592,39.2721153385042],[-76.62955871045612,39.2721115291832],[-76.62955348239868,39.27210782766681],[-76.62954802700592,39.27210438575393],[-76.6295420097302,39.27210157710719],[-76.6295353909257,39.27209944844127],[-76.6295290144615,39.27209707192843],[-76.62952352140421,39.27209374159038],[-76.629518528318,39.27208987237066],[-76.62951377760984,39.27208574809831],[-76.62950905244405,39.27208161489865],[-76.62950425839371,39.27207757966482],[-76.62949952482072,39.2720735031864],[-76.6294948098605,39.27206941325507],[-76.62949006349413,39.27206534574354],[-76.62948524849254,39.27206132845809],[-76.62948040673906,39.27205733000407],[-76.62947555102819,39.27205334141424],[-76.62947067671027,39.2720493653762],[-76.62946578144422,39.27204540638636],[-76.62946086174398,39.27204146623529],[-76.62945591296001,39.27203754761057],[-76.62945088621822,39.27203368909089],[-76.62944578734114,39.27202988529],[-76.62944067101127,39.27202609494529],[-76.6294355977147,39.2720222750109],[-76.62943062098927,39.27201838151836],[-76.62942582808303,39.27201435078864],[-76.62942121665937,39.2720101864175],[-76.62941670407282,39.27200595840374],[-76.6294122856456,39.27200167483958],[-76.62940795094333,39.27199733659278],[-76.62940361391917,39.27199299923928],[-76.62939918734864,39.27198872195425],[-76.62939463754508,39.27198451994433],[-76.62939008780316,39.27198030622455],[-76.62938551483298,39.27197610233964],[-76.62938088369022,39.27197194240847],[-76.62937615828565,39.27196785784378],[-76.62937130367968,39.2719638818637],[-76.62936626980174,39.27196006024908],[-76.62936089374894,39.27195651949365],[-76.62935525697985,39.27195319499931],[-76.6293495119486,39.27194996384254],[-76.62934380994605,39.27194670399681],[-76.62933812999039,39.27194343881577],[-76.62933240342237,39.27194022302942],[-76.62932668268681,39.27193700005503],[-76.62932102253673,39.27193371511891],[-76.62931543229006,39.27193035924267],[-76.62930987817069,39.27192696474743],[-76.62930435433256,39.27192354152297],[-76.62929885029902,39.27192009854396],[-76.62929335906981,39.27191664479592],[-76.62928787949556,39.27191317847371],[-76.62928241156686,39.27190970137888],[-76.62927695411537,39.27190621530916],[-76.62927150599175,39.27190271845947],[-76.62926606717708,39.27189921443284],[-76.62926064000803,39.27189569963346],[-76.62925524661088,39.27189215341374],[-76.62924987534537,39.27188858564526],[-76.62924450290748,39.27188502057513],[-76.62923910602127,39.2718814770459],[-76.62923367769602,39.27187796224165],[-76.62922824354406,39.27187445372409],[-76.6292228280284,39.2718709272498],[-76.6292174590839,39.2718673594872],[-76.62921209832716,39.27186377733789],[-76.62920672828605,39.27186019786132],[-76.62920141295623,39.27185657171753],[-76.6291962209547,39.27185285228334],[-76.62919121511359,39.27184899111598],[-76.62918643149845,39.27184496130629],[-76.62918180845487,39.27184080769796],[-76.62917727150574,39.27183658950621],[-76.62917274269728,39.27183236593542],[-76.62916816733768,39.27182818004955],[-76.62916360591777,39.27182398790217],[-76.62915905962463,39.27181978409244],[-76.62915451681336,39.27181557939275],[-76.6291499623764,39.27181138186229],[-76.62914538351934,39.27180720046828],[-76.62914067796224,39.27180309253669],[-76.62913584685903,39.27179905897186],[-76.62913105527029,39.27179500391332],[-76.62912646939645,39.27179083510707],[-76.62912225429794,39.27178645669266],[-76.62911835883465,39.27178189733312],[-76.62911464818922,39.27177723136611],[-76.62911107933822,39.27177248657946],[-76.62910761043126,39.27176768806252],[-76.6291042007721,39.27176286180887],[-76.62910080734193,39.27175803470556],[-76.62909744870601,39.27175320230747],[-76.62909434214814,39.27174825450679],[-76.6290913447768,39.27174325840954],[-76.62908826489694,39.27173830618908],[-76.6290849084957,39.27173349001144],[-76.62908112105551,39.27172888415195],[-76.62907709085606,39.27172438471658],[-76.62907289802281,39.27171996043165],[-76.62906856459739,39.27171560686291],[-76.62906411609332,39.27171132048787],[-76.62905957455227,39.2717070968723],[-76.62905496432897,39.27170293249004],[-76.62905026446991,39.27169884529022],[-76.62904538434003,39.27169488182628],[-76.62904036464975,39.27169101340238],[-76.6290352542308,39.27168720954672],[-76.62903010424206,39.27168343799332],[-76.62902496467875,39.27167966737338],[-76.62901986122864,39.27167586083674],[-76.62901475201787,39.2716720479763],[-76.62900958226021,39.27166828987102],[-76.62900429717438,39.27166464669902],[-76.62899884198835,39.27166117683693],[-76.6289931864072,39.27165791171585],[-76.62898738055817,39.27165479474588],[-76.62898146286682,39.27165179091862],[-76.62897547177295,39.27164886252336],[-76.62896944570224,39.27164597455172],[-76.62896342308495,39.27164309109445],[-76.62895739691628,39.27164022203792],[-76.62895126462882,39.27163747965356],[-76.62894509035485,39.27163478847982],[-76.62893895686707,39.27163205419792],[-76.62893294576533,39.27162918518769],[-76.62892712121484,39.27162609968236],[-76.62892141110811,39.27162284699621],[-76.62891583857962,39.27161943530913],[-76.62891046164241,39.27161585129306],[-76.6289053359871,39.27161208251327],[-76.62890049878631,39.27160811197275],[-76.62889589431173,39.27160395931215],[-76.62889144575912,39.27159968554088],[-76.62888707865616,39.27159534897337],[-76.6288827185209,39.27159100972536],[-76.62887829321278,39.27158672341634],[-76.62887389346581,39.27158242457725],[-76.62886953791103,39.27157809615238],[-76.62886517188471,39.27157377580115],[-76.62886073956444,39.27156950117922],[-76.62885618396886,39.27156530993867],[-76.62885149929896,39.27156120296185],[-76.62884673557369,39.27155714437627],[-76.62884189276475,39.27155313958645],[-76.62883697316626,39.27154919310344],[-76.62883197791353,39.27154530943458],[-76.62882689301085,39.27154150565028],[-76.6288216044296,39.27153786966489],[-76.62881618549274,39.27153434135902],[-76.62881075725267,39.27153081932889],[-76.62880543960298,39.27152720216698],[-76.62880024649213,39.27152348181053],[-76.62879509296641,39.27151972644914],[-76.62878996853955,39.27151594685889],[-76.62878485924894,39.27151215380477],[-76.6287797522907,39.2715083580555],[-76.62877463717393,39.27150457128786],[-76.62876950111375,39.27150080066752],[-76.62876435341377,39.27149703991861],[-76.62875920222365,39.27149328186071],[-76.62875404870228,39.27148952649748],[-76.62874889402258,39.2714857711304],[-76.62874374166584,39.27148201486964],[-76.62868694705598,39.27145762547764],[-76.62866811677593,39.27144542814229],[-76.62866017000218,39.27143997771231],[-76.62865190321367,39.2714334525588],[-76.62863753270106,39.27142094774668],[-76.62862510429754,39.27140847159311],[-76.62861399603905,39.27139905770788],[-76.62860630329237,39.27139356394001],[-76.6285965636186,39.27138836365303],[-76.62858483214164,39.27138377408991],[-76.62857206321829,39.27137834983905],[-76.62855588302858,39.2713695243207],[-76.62854272262337,39.27136051828986],[-76.62853259244297,39.2713517722544],[-76.62852285549475,39.27134206904847],[-76.6285113745719,39.27133145956092],[-76.62849974682682,39.27132188999069],[-76.62848502400304,39.27131050459592],[-76.62847443673306,39.2713020777815],[-76.62846134732094,39.27129036246641],[-76.6284515224467,39.27128129851896],[-76.62844116768672,39.27127096191558],[-76.6284279715919,39.27125793384533],[-76.62841653886196,39.27124764247046],[-76.62840713209241,39.27123973372125],[-76.62839492348468,39.27122845175074],[-76.62838453609901,39.27122014356054],[-76.62837563580618,39.27121665105796],[-76.62836270730193,39.27121537429935],[-76.62835098349886,39.27121154047818],[-76.62834401523729,39.27120668042122],[-76.62833921606374,39.27119280607177],[-76.62833275003227,39.27118188816075],[-76.62832245372472,39.271172345305],[-76.62830986418213,39.27116365992458],[-76.6282973081598,39.27115875245516],[-76.62828438180195,39.27115795309986],[-76.6282741831086,39.27115809376701],[-76.62826522353211,39.27115906255485],[-76.62825994687817,39.27115913322724],[-76.62825101574556,39.27115799071207],[-76.62824170997087,39.27115514186314],[-76.62821737893537,39.2711411390242],[-76.62820892442791,39.27113617336855],[-76.62819788573783,39.27112942502532],[-76.62819158459429,39.27112464183452],[-76.6281856355989,39.27111878064231],[-76.62818114616695,39.271110600999],[-76.6281723911866,39.2710961898735],[-76.62815881331422,39.27108615020079],[-76.62814964446555,39.27108194252433],[-76.62813853733716,39.27107830519931],[-76.62813125196266,39.27107735164188],[-76.62811780417559,39.27107543907368],[-76.62810709864071,39.2710712400395],[-76.62809719327363,39.27106472406953],[-76.62808938208235,39.2710575220424],[-76.62808267787032,39.2710482787848],[-76.6280740562114,39.27103673700881],[-76.62806494560346,39.27102738974767],[-76.62805160092229,39.27101531597371],[-76.62804273957656,39.27100572809526],[-76.62803528480315,39.27099796241381],[-76.62802907042933,39.27099210577747],[-76.62802220218104,39.27098696587996],[-76.62801253208455,39.2709780176827],[-76.6280083331955,39.27097322222426],[-76.62800603532179,39.27096877507754],[-76.62800210291506,39.27096023238163],[-76.62800022461451,39.27095665670229],[-76.6279976358571,39.27095132768623],[-76.62799337207542,39.27094255334461],[-76.62798617723145,39.27093052426376],[-76.62798031228017,39.27092322750822],[-76.62797266867945,39.27091722041764],[-76.62796289158071,39.27091321167003],[-76.62795266698814,39.27091100483469],[-76.62793729809013,39.27090639557607],[-76.62793373850907,39.27090410536488],[-76.62792676827982,39.27089896874154],[-76.62791849961422,39.27089216339123],[-76.6279160153657,39.27088966850972],[-76.62790591938116,39.270874428915],[-76.62790070418535,39.27086521468463],[-76.62789358892425,39.27085613495318],[-76.6278902808946,39.27085316726192],[-76.62787402443846,39.27084190844082],[-76.62786310069482,39.27083623774399],[-76.62785208692057,39.27083160354086],[-76.62784032387788,39.27082908195764],[-76.62782851036357,39.2708266827173],[-76.62781576484208,39.27082301314641],[-76.62781113288729,39.27082124918265],[-76.62777539173395,39.27078321462172],[-76.62774172286342,39.27075507881489],[-76.62771314317617,39.27073433098818],[-76.62768816730963,39.27071738049267],[-76.6276620933358,39.27069901501218],[-76.62763248279512,39.27068170932196],[-76.62760128413736,39.27066670814897],[-76.62757417984491,39.27065477264269],[-76.62755211498771,39.27064335753992],[-76.62752761445495,39.27062682286881],[-76.62750351445963,39.27060794297088],[-76.62748127456454,39.27058859606645],[-76.62745991695671,39.27056807105386],[-76.62744042344166,39.27054984980132],[-76.62742419164434,39.27053392143061],[-76.62740763811138,39.27051813435762],[-76.62738626612439,39.27049903159296],[-76.62737030069655,39.2704842426262],[-76.62735250062984,39.27046640054882],[-76.62733084996303,39.27044255526397],[-76.62731172475084,39.27042218052866],[-76.62729029352201,39.27040157057841],[-76.62726787856265,39.27038270318405],[-76.62724867060034,39.2703699252252],[-76.62722834118711,39.27035620690823],[-76.62720898377063,39.27034298349061],[-76.62719352895479,39.27033182079705],[-76.62717532593523,39.27031878479416],[-76.62715405424657,39.2703048770145],[-76.62713481604413,39.27029234845241],[-76.627111618397,39.2702766717536],[-76.62708599449761,39.27025673753789],[-76.62706642556792,39.27023812685115],[-76.62704976283385,39.27022219885989],[-76.6270227550928,39.27019811761809],[-76.62700053851022,39.2701805578109],[-76.62697284101917,39.27016424346309],[-76.62694525194412,39.27015331962957],[-76.62691278552514,39.27014301623548],[-76.62688385020307,39.2701309315287],[-76.62685875735654,39.27011889505377],[-76.62683242892787,39.27010536658396],[-76.62680257045693,39.27009143956189],[-76.62677510380841,39.27007884155522],[-76.62674947918092,39.27006722852769],[-76.62672169504563,39.27005242442702],[-76.62669463591783,39.27003814416707],[-76.62667124547299,39.27002698860625],[-76.62664453879383,39.2700148839013],[-76.62662146478664,39.27000305646506],[-76.62659834525596,39.26998798972902],[-76.62657684490048,39.26997000965855],[-76.62655772947913,39.2699531243908],[-76.62654008093106,39.2699360618299],[-76.62652172816942,39.26991981311976],[-76.62650436648293,39.26990263436609],[-76.62649072685754,39.26988151849401],[-76.62648179641955,39.26986354865632],[-76.62646870591912,39.26984885067628],[-76.62644791034953,39.26983524693727],[-76.62642256923947,39.26982879882418],[-76.62640324372333,39.26982629987931],[-76.62637856036245,39.26982632494423],[-76.62635776647883,39.269826490287],[-76.62633598393128,39.26982844950648],[-76.62631069437167,39.26983708033794],[-76.62629177452968,39.26984666822846],[-76.62627379000023,39.26985865062318],[-76.62625807367304,39.2698710041423],[-76.6262401560719,39.26988831837224],[-76.62621637717044,39.26991925062467],[-76.62620794577967,39.2699394288472],[-76.62619550797801,39.26996362343858],[-76.62618280929368,39.26998740374701],[-76.62615515509832,39.27004034555092],[-76.62614023488216,39.2700700656323],[-76.62612782414243,39.27009923252391],[-76.62612070823107,39.27012112457874],[-76.62611437798653,39.27013994212145],[-76.62610827944052,39.27015987194524],[-76.62610365245034,39.27017719513623],[-76.6260970826267,39.27019397438502],[-76.62609292013376,39.27022452948804],[-76.6260908413436,39.27023901077112],[-76.62608139192655,39.27025246423474],[-76.62606996375928,39.27026889022662],[-76.6260566218847,39.27028452195476],[-76.62604659657875,39.27029532353173],[-76.62603346048971,39.27030466947491],[-76.62601929624074,39.27031494443408],[-76.62600734632115,39.27032174318555],[-76.62598603843266,39.27033607225335],[-76.62596264812248,39.27036292612496],[-76.6259370954218,39.27039263123111],[-76.62590686123667,39.27043986831748],[-76.62587693748469,39.27050822391352],[-76.62585507907309,39.27055595696484],[-76.62582291069499,39.27062516022006],[-76.6258121604251,39.27065167781091],[-76.6258062774284,39.2706687258561],[-76.62580559982682,39.27067789348195],[-76.62580423134999,39.27068973597927],[-76.62580176781604,39.27070002927529],[-76.62579643147481,39.2707151595319],[-76.62579366251089,39.27072513658685],[-76.62579037837376,39.27073523540493],[-76.62578549576868,39.27074936725786],[-76.62578297166314,39.27075861997705],[-76.62578153405222,39.27076862829669],[-76.62578091598296,39.27077859238784],[-76.6257785611887,39.27078430654188],[-76.62577566434415,39.27078710859799],[-76.62576930842623,39.27079208849006],[-76.62576648217197,39.2707968868654],[-76.62576532042688,39.27080358755507],[-76.62576246828944,39.2708106566756],[-76.6257580648028,39.27081633998031],[-76.62575238749983,39.27082250744022],[-76.62574264638269,39.27083718948899],[-76.62573692336142,39.27085268331987],[-76.62573303734507,39.27086418000626],[-76.62572569266067,39.27088326902496],[-76.62571862692027,39.27089956566088],[-76.62571430086361,39.27091341644375],[-76.62571028398447,39.27093236473821],[-76.62570867075128,39.27095171793],[-76.62570826646814,39.27095652132019],[-76.62571021162157,39.27097156758661],[-76.62571162768576,39.27098036626474],[-76.62571384084086,39.27098656697557],[-76.62571782030275,39.27098965216594],[-76.62572623140754,39.27099534027668],[-76.62573861629755,39.27100387215337],[-76.62575767767228,39.27101893693146],[-76.62577365289253,39.27103270738223],[-76.62580509788391,39.27106116634733],[-76.62583712926434,39.27108699153457],[-76.62585889738163,39.27110586704639],[-76.62587600046672,39.2711200284046],[-76.62590227278133,39.27114357791156],[-76.62592254015485,39.27116158479753],[-76.6259533603809,39.27118877345502],[-76.62597712915152,39.27120823270604],[-76.62600553903434,39.27123013609354],[-76.62602808374081,39.27124526146077],[-76.62605611265603,39.27126513510085],[-76.62609149504856,39.27129261297994],[-76.62612742568055,39.27131853787373],[-76.62615221225873,39.27133707254093],[-76.62618164154844,39.2713588503203],[-76.62620969693656,39.27138119480409],[-76.62624894029284,39.27141184480447],[-76.62625266170119,39.27141464811645],[-76.62625519882378,39.27141655770421],[-76.62625773594179,39.27141846819267],[-76.62626027422823,39.27142037688329],[-76.62626281367369,39.27142228557754],[-76.62626535311925,39.2714241942717],[-76.62626789256973,39.27142610206505],[-76.62627043317913,39.27142800986208],[-76.62627297378872,39.27142991765903],[-76.62627551439843,39.2714318254559],[-76.62627805501303,39.27143373235198],[-76.62628059562303,39.27143564014876],[-76.62628313623316,39.2714375479455],[-76.62628567684817,39.27143945484141],[-76.62628821745852,39.27144136263801],[-76.62629075690549,39.27144327133163],[-76.62629329635733,39.27144517912444],[-76.62629583580453,39.27144708781791],[-76.62629837525189,39.27144899651139],[-76.62630091237696,39.27145090609815],[-76.62630345066098,39.27145281568854],[-76.62630598778158,39.27145472617595],[-76.62630852373874,39.27145663756034],[-76.62631105853714,39.27145854894102],[-76.62631359216738,39.27146046211944],[-76.62631612579774,39.27146237529782],[-76.62631865826468,39.27146428937317],[-76.62632118840929,39.27146620434188],[-76.6263237185493,39.27146812021126],[-76.62632624636231,39.27147003787474],[-76.62632877301655,39.27147195553442],[-76.62633129850263,39.27147387499189],[-76.62633382282522,39.27147579534638],[-76.62633634482086,39.27147771749494],[-76.62633886565295,39.27147964054048],[-76.62634137949894,39.27148156986912],[-76.6263438840364,39.27148350637419],[-76.62634637810169,39.27148545095272],[-76.62634886169005,39.27148740450559],[-76.62635133131548,39.2714893688231],[-76.62635378698275,39.27149134300456],[-76.62635622752826,39.27149332794706],[-76.62635865178844,39.27149532454763],[-76.6263610574408,39.27149733369964],[-76.62636344447594,39.2714993572046],[-76.62636580940772,39.27150139685299],[-76.62636815456344,39.27150345085064],[-76.62637048343377,39.27150551650634],[-76.62637280066835,39.27150759113263],[-76.62637510976275,39.27150967113757],[-76.62637741419813,39.27151175563144],[-76.62637971631122,39.27151384101866],[-76.62638202075163,39.27151592461171],[-76.62638433101009,39.27151800371939],[-76.62638665057267,39.27152007655128],[-76.62638898178078,39.271522138611],[-76.62639133043336,39.27152418901618],[-76.62639369887177,39.27152622327056],[-76.62639609057737,39.27152824048436],[-76.62639850904085,39.27153023796637],[-76.62640095776253,39.27153221122398],[-76.62640344836403,39.27153415398875],[-76.62640597852766,39.27153606625336],[-76.62640854244022,39.27153795160229],[-76.62641113543788,39.27153981542533],[-76.62641374938501,39.27154166220046],[-76.62641638077659,39.27154349732105],[-76.62641902148179,39.27154532436438],[-76.6264216656779,39.27154714871639],[-76.62642430870103,39.27154897576692],[-76.6264269424251,39.27155080819242],[-76.62642956334031,39.27155265228704],[-76.62643216215227,39.27155451252508],[-76.62643473651954,39.27155639340284],[-76.62643727714757,39.2715582993947],[-76.62643979333572,39.2715602251255],[-76.62644230021526,39.27156215803284],[-76.62644479778152,39.27156409901732],[-76.62644728603917,39.2715660471783],[-76.62644976614715,39.27156800251937],[-76.62645223926896,39.27156996414353],[-76.62645470425052,39.27157193114633],[-76.62645716109189,39.27157390352781],[-76.62645961326953,39.27157588129898],[-76.62646205847052,39.27157786355171],[-76.62646449901729,39.27157984939264],[-76.62646693374629,39.27158183971883],[-76.62646936382576,39.27158383273251],[-76.62647179041461,39.27158582843729],[-76.62647421235879,39.27158782592882],[-76.6264766319711,39.27158982611514],[-76.62647903877942,39.27159183706988],[-76.62648140485753,39.27159388032253],[-76.62648373950937,39.27159594959735],[-76.62648605204851,39.27159803681713],[-76.62648834946107,39.27160013569866],[-76.62649064221944,39.2716022381684],[-76.62649293848293,39.27160433524467],[-76.62649524870959,39.27160642155611],[-76.62649757989522,39.27160848901811],[-76.62649994135801,39.27161052865265],[-76.62650234240188,39.27161253418393],[-76.62650479234024,39.27161449753476],[-76.62650729932305,39.27161641152494],[-76.62650987847691,39.27161826449256],[-76.62651257872942,39.27162000795196],[-76.62651538958927,39.27162165357971],[-76.62651828543866,39.27162322471425],[-76.62652123833713,39.27162474558727],[-76.6265242226621,39.27162624043801],[-76.62652721163205,39.27162773350192],[-76.62653017730666,39.27162924901076],[-76.62653309406333,39.27163081120376],[-76.62653593627932,39.27163244432003],[-76.62653870745976,39.27163414296613],[-76.62654146698068,39.27163585508657],[-76.62654421601523,39.27163757798276],[-76.62654695688587,39.27163931076135],[-76.62654968727482,39.27164105341495],[-76.62655240718216,39.27164280594357],[-76.62655511892555,39.27164456835453],[-76.62655781903321,39.27164633973613],[-76.62656050981809,39.27164812099643],[-76.62656319012606,39.27164991123098],[-76.62656586111595,39.27165171044348],[-76.62656852047014,39.27165351862657],[-76.626571170511,39.27165533488687],[-76.62657381007968,39.27165715922068],[-76.6265764391715,39.2716589925288],[-76.62657906826341,39.2716608258368],[-76.62658170664997,39.27166265467049],[-76.62658434968627,39.27166448081665],[-76.62658699620405,39.27166630607302],[-76.62658964504904,39.2716681295352],[-76.62659229504358,39.27166995480248],[-76.62659494271112,39.27167178186387],[-76.62659758805158,39.27167361071932],[-76.62660022872832,39.27167544496445],[-76.62660286242844,39.27167728369115],[-76.6266054879836,39.2716791286973],[-76.62660810306659,39.27168098177693],[-76.62661070651856,39.27168284292639],[-76.62661329717122,39.27168471394354],[-76.62661587154322,39.27168659571805],[-76.62661842962994,39.27168848915063],[-76.62662096910407,39.27169039603548],[-76.62662348764324,39.27169231726594],[-76.6266259840839,39.27169425373908],[-76.62662845609879,39.27169620724906],[-76.62663090252914,39.27169817779214],[-76.62663332220177,39.27170016806694],[-76.62663571164499,39.27170217716163],[-76.62663808128367,39.27170420601016],[-76.62664043808033,39.27170625283303],[-76.62664278087618,39.2717083176267],[-76.62664510968071,39.27171039858958],[-76.62664741985367,39.27171249660771],[-76.62664971255876,39.27171461078401],[-76.62665198548301,39.27171674021043],[-76.62665423514984,39.2717188848758],[-76.62665646272285,39.27172104388313],[-76.62665866587962,39.27172321812586],[-76.62666084115307,39.27172540579129],[-76.626662989702,39.27172760688325],[-76.62666510805467,39.27172982048984],[-76.62666719504747,39.27173204750817],[-76.62666924953106,39.27173428613312],[-76.62667126918771,39.27173653635722],[-76.62667325285851,39.27173879817686],[-76.62667519938938,39.27174107068755],[-76.62667710646745,39.2717433529812],[-76.62667897292904,39.27174564595493],[-76.62668078717617,39.27174795137329],[-76.62668215319306,39.27175042921442],[-76.62668300478782,39.27175310539008],[-76.6266835393818,39.27175590126052],[-76.62668395207395,39.2717587390794],[-76.6266844379726,39.27176153929889],[-76.6266851933357,39.27176422417624],[-76.62668641442583,39.27176671506812],[-76.62668819411203,39.27176898164367],[-76.626690393015,39.27177108381105],[-76.62669289971926,39.27177305274287],[-76.62669560858947,39.27177492233233],[-76.62669841053274,39.27177672285873],[-76.62670119876891,39.2717784855094],[-76.62670392103141,39.27178023263731],[-76.62670666894034,39.27178195102221],[-76.62670944479453,39.27178364427444],[-76.62671224509833,39.27178531598601],[-76.62671506286567,39.27178697243999],[-76.62671789344202,39.27178861722465],[-76.62672073217313,39.27179025392834],[-76.62672357554919,39.27179188884516],[-76.62672641659829,39.27179352555606],[-76.62672925066593,39.27179516764925],[-76.6267320730836,39.27179682141536],[-76.62673488035111,39.27179849134696],[-76.6267376655011,39.27180018012425],[-76.62674042386497,39.27180189403771],[-76.62674316126541,39.27180362770134],[-76.62674589399742,39.27180536765545],[-76.62674862207528,39.2718071111977],[-76.62675134433053,39.27180886012597],[-76.62675406308095,39.27181061444766],[-76.62675677601356,39.27181237325462],[-76.62675948312365,39.27181413744756],[-76.62676218557,39.27181590703022],[-76.62676488219859,39.27181768109816],[-76.62676757184106,39.27181946144918],[-76.62677025565618,39.27182124808695],[-76.62677293365358,39.27182303921004],[-76.62677560466004,39.2718248375169],[-76.62677826868514,39.27182664120615],[-76.62678092456997,39.27182845027403],[-76.62678357462281,39.27183026652945],[-76.62678621653065,39.27183208906428],[-76.62678885029825,39.27183391697773],[-76.62679148404231,39.27183574939488],[-76.6267941514263,39.27183757561353],[-76.62679685014207,39.27183939382482],[-76.62679957786239,39.27184120582284],[-76.62680232646113,39.27184301428407],[-76.62680509246169,39.2718448191975],[-76.62680787237807,39.27184662235351],[-76.62681065808411,39.27184842642865],[-76.62681344726685,39.27185023051478],[-76.62681623411311,39.27185203819641],[-76.6268190139874,39.27185384945894],[-76.62682178109085,39.27185566518465],[-76.62682453076903,39.27185748896179],[-76.62682725839126,39.27185931987486],[-76.62682995930322,39.27186116151219],[-76.62683262771539,39.27186301295464],[-76.62683525897815,39.27186487688965],[-76.6268378484466,39.27186675510409],[-76.62684039148066,39.27186864848385],[-76.62684288228127,39.2718705579114],[-76.62684531620354,39.27187248517347],[-76.62684768744381,39.27187443205312],[-76.62684999252073,39.27187639944012],[-76.6268522267942,39.27187838822042],[-76.62685438329686,39.27188040107427],[-76.62685645854738,39.2718824388913],[-76.62685840842421,39.27188451774516],[-76.62685966511225,39.27188685201516],[-76.62686016827999,39.27188945502127],[-76.62686008287756,39.27189225252402],[-76.62685957384535,39.27189517208557],[-76.62685880613823,39.27189813856578],[-76.62685794586497,39.27190107772893],[-76.62685715565331,39.27190391622905],[-76.62685651217686,39.27190661827922],[-76.62685575644805,39.27190929024754],[-76.62685488258741,39.27191194832899],[-76.62685391954244,39.2719145971195],[-76.62685289512093,39.2719172376081],[-76.62685183826565,39.27191987529132],[-76.62685077793377,39.27192251296351],[-76.62684974077408,39.27192515161006],[-76.62684875688836,39.27192779673119],[-76.62684785407491,39.2719304511176],[-76.62684706129066,39.27193311756348],[-76.62684640517516,39.27193579885583],[-76.62684590771811,39.27193850046909],[-76.62684555847568,39.27194122507235],[-76.62684533777583,39.27194396719855],[-76.62684523058192,39.27194672139534],[-76.62684521953484,39.27194948310369],[-76.62684528612613,39.27195224595948],[-76.62684541416029,39.27195500450667],[-76.62684558627819,39.2719577541863],[-76.62684578162528,39.27196049403133],[-76.62684595017195,39.27196326171489],[-76.62684611510942,39.27196605460834],[-76.62684631708755,39.27196885572639],[-76.62684659792457,39.27197164628584],[-76.62684699943381,39.27197440840423],[-76.62684756227473,39.27197712329466],[-76.62684832825121,39.27197977487626],[-76.62684933918626,39.27198234346501],[-76.62685062523376,39.27198482465296],[-76.62685215256435,39.27198726066852],[-76.62685388873487,39.27198965050783],[-76.62685580594237,39.27199199228102],[-76.62685787524875,39.27199427959076],[-76.62686006537906,39.27199650963546],[-76.6268623497035,39.27199867782662],[-76.62686469695666,39.27200077956111],[-76.62686707934033,39.27200281204831],[-76.62686951419929,39.27200478254944],[-76.62687221225073,39.27200672866527],[-76.626875135693,39.27200856650465],[-76.62687820508621,39.27201019673105],[-76.62688134099527,39.27201151910729],[-76.62688446165303,39.2720124360911],[-76.6268876424766,39.27201271012019],[-76.62689115206713,39.27201194931466],[-76.62689453582088,39.27201043597105],[-76.62689728205672,39.27200850805207],[-76.6268995156214,39.27200644519122],[-76.626901757691,39.27200430759391],[-76.62690398504589,39.27200210329327],[-76.62690616867205,39.27199984030399],[-76.62690828419571,39.27199752575473],[-76.6269103049206,39.27199516766763],[-76.6269122041553,39.27199277316395],[-76.62691395519869,39.27199035116659],[-76.62691553135943,39.27198790879687],[-76.62691690825891,39.27198545408414],[-76.62691805804678,39.27198299414616],[-76.62691870083007,39.27198042360513],[-76.6269186804432,39.27197768881986],[-76.6269181413213,39.27197487041719],[-76.62691722559121,39.27197204721519],[-76.62691607768816,39.27196929984056],[-76.62691484205662,39.27196670711867],[-76.62691282131831,39.27196421909373],[-76.62690984998486,39.27196179200326],[-76.6269068963739,39.27195952080129],[-76.62690493343837,39.27195750045649],[-76.62690491214602,39.27195581956262],[-76.62690682500525,39.27195436009569],[-76.62691000469695,39.27195308570666],[-76.62691392477998,39.27195205597523],[-76.62691805881818,39.27195132958003],[-76.6269218815293,39.27195096610458],[-76.62692532116887,39.27195094550413],[-76.62692884184136,39.27195116206199],[-76.62693239963362,39.27195159221885],[-76.62693594366034,39.27195221599617],[-76.62693942304568,39.27195301161404],[-76.62694278458669,39.27195395908659],[-76.62694597969677,39.27195504204594],[-76.62694900206554,39.27195635865515],[-76.62695189344956,39.27195790184085],[-76.62695469128728,39.27195960416467],[-76.62695743533961,39.27196139729476],[-76.6269601642086,39.27196321289562],[-76.62696291766467,39.27196498083407],[-76.62696573307517,39.27196664718281],[-76.62696859972628,39.27196826595379],[-76.62697143843245,39.27196990985728],[-76.62697416771415,39.27197164709265],[-76.62697673051761,39.27197352882231],[-76.62697925489444,39.2719754455596],[-76.62698177576642,39.27197736769033],[-76.62698429081111,39.27197929610783],[-76.62698679653778,39.27198123350338],[-76.62698929411468,39.27198317807903],[-76.62699178004644,39.27198513342683],[-76.62699425201997,39.2719870986387],[-76.62699670887179,39.27198907461162],[-76.62699914943346,39.27199106314344],[-76.62700157022849,39.27199306422317],[-76.62700397124739,39.27199507965223],[-76.62700635017245,39.27199710942333],[-76.62700870468124,39.27199915442981],[-76.62701103360543,39.27200121646954],[-76.62701335437988,39.27200328568943],[-76.62701567282262,39.27200535760417],[-76.62701799124649,39.27200743312188],[-76.62702030617504,39.27200951223146],[-76.62702261644938,39.27201159492927],[-76.62702492206,39.2720136830168],[-76.62702722068923,39.27201577648677],[-76.62702951118298,39.2720178744346],[-76.62703179237288,39.27201997865824],[-76.62703406425889,39.27202208915759],[-76.62703632451871,39.27202420682616],[-76.62703857199807,39.27202633075938],[-76.62704080552875,39.2720284627552],[-76.62704302395186,39.27203060280983],[-76.62704522610376,39.27203275182037],[-76.62704740967155,39.27203490887879],[-76.62704957580458,39.27203707579019],[-76.62705172103104,39.27203925164279],[-76.62705384534148,39.27204143823811],[-76.62705594757699,39.27204363557249],[-76.62705802541986,39.27204584363849],[-76.62706007305694,39.27204806602082],[-76.627061954533,39.27205037254727],[-76.62706365357676,39.27205277217392],[-76.62706521667012,39.27205524072772],[-76.62706669377647,39.2720577531459],[-76.62706813369542,39.27206028526277],[-76.62706958523141,39.27206281201191],[-76.62707109603001,39.27206530832327],[-76.6270727148957,39.27206774913031],[-76.62707449178703,39.27207011027113],[-76.62707645574636,39.27207237832641],[-76.62707854054389,39.27207458641414],[-76.62708071828656,39.27207674975876],[-76.62708297154428,39.2720788773125],[-76.62708527709259,39.27208097800931],[-76.62708761517894,39.27208306169488],[-76.62708996836835,39.27208513822224],[-76.62709231343652,39.27208721652529],[-76.62709463178955,39.27208930645339],[-76.62709690251614,39.27209141784858],[-76.62709910587306,39.27209355875507],[-76.62710122210295,39.27209573991923],[-76.62710323029444,39.27209797118316],[-76.62710508627841,39.27210027762794],[-76.62710648529408,39.27210287537027],[-76.62710748901168,39.27210571686531],[-76.62710828471681,39.27210866759324],[-76.62710906318115,39.27211159124342],[-76.62711001053636,39.27211435239152],[-76.6271113163953,39.27211681472333],[-76.62711316804372,39.27211884371881],[-76.6271157004295,39.27212034072238],[-76.62711855761758,39.2721215568179],[-76.62712160812713,39.27212259247346],[-76.62712482632611,39.27212347372989],[-76.62712818424573,39.27212423022358],[-76.62713165509504,39.27212488799164],[-76.62713521090528,39.27212547667052],[-76.6271388260397,39.27212602320166],[-76.62714247253898,39.27212655542005],[-76.62714612243916,39.27212710206133],[-76.62714974894456,39.27212769006343],[-76.6271533252548,39.27212834726488],[-76.62715682456479,39.27212910240507],[-76.62716021776109,39.27212998241457],[-76.62716347919276,39.27213101693712],[-76.62716658555964,39.27213222931864],[-76.62716963221446,39.27213355770912],[-76.6271726668833,39.27213496172566],[-76.62717568030946,39.27213643863659],[-76.62717866554939,39.27213798661838],[-76.62718161103811,39.27213960113043],[-76.62718450866841,39.27214128124632],[-76.62718735035665,39.27214302153573],[-76.62719012683682,39.27214482106852],[-76.62719282885223,39.27214667711303],[-76.62719544715567,39.27214858513607],[-76.62719797480345,39.2721505433141],[-76.62720040022127,39.27215254890809],[-76.62720271647018,39.2721545991937],[-76.62720491313939,39.27215669053486],[-76.62720698673343,39.27215882652351],[-76.62720898674229,39.27216107217183],[-76.62721091778724,39.27216343019671],[-76.62721276951902,39.27216588525239],[-76.62721453275199,39.27216842109591],[-76.62721619599695,39.27217101877474],[-76.62721774890458,39.27217366294307],[-76.62721917997632,39.27217633644987],[-76.6272204800359,39.27217902125079],[-76.62722163872931,39.2721817029007],[-76.62722264456738,39.27218436244708],[-76.62722348835969,39.27218698454776],[-76.62722415745817,39.27218955024658],[-76.62722464382648,39.27219204510578],[-76.62722473672785,39.27219443512822],[-76.62722342722428,39.27219663604275],[-76.62722100015294,39.27219869469238],[-76.62721796044865,39.27220067483245],[-76.62721481536403,39.27220264022569],[-76.6272120698291,39.27220465552841],[-76.62720977909051,39.27220679297701],[-76.62720755029119,39.27220905222534],[-76.62720535587879,39.27221138364391],[-76.627203170633,39.27221373490838],[-76.62720096933347,39.27221605369434],[-76.62719872675034,39.2722182894789],[-76.6271964176632,39.27222038993765],[-76.62719401569294,39.27222230274259],[-76.62719149792744,39.27222397737813],[-76.62718883682392,39.27222536241327],[-76.6271858333199,39.27222618698689],[-76.62718238744215,39.27222628954478],[-76.62717868710467,39.27222585714159],[-76.62717492253928,39.27222507683939],[-76.62717128049164,39.27222413749072],[-76.62716792233563,39.27222320444773],[-76.62716467115428,39.27222220328623],[-76.62716145755336,39.27222110766358],[-76.62715827333575,39.27221993376768],[-76.6271551114489,39.27221870049218],[-76.62715196717694,39.27221742313501],[-76.6271488323132,39.27221611968546],[-76.62714570097346,39.27221480723942],[-76.62714256727357,39.27221350289265],[-76.62713942301627,39.27221222283289],[-76.62713626346674,39.27221098596122],[-76.62711993385342,39.27221074495703],[-76.6271059465074,39.27221157248759],[-76.62709319241652,39.27221566740117],[-76.62708116633777,39.27222170126814],[-76.62706982110788,39.27222850474691],[-76.62705961155523,39.27223641436626],[-76.62705004313382,39.27224493313579],[-76.62703943977172,39.27225125886002],[-76.6270247978148,39.27225007109408],[-76.62701447762296,39.2722430916258],[-76.62700576850629,39.27223408334748],[-76.62699831453563,39.27222461876422],[-76.6269922062389,39.27221467204158],[-76.62698655224051,39.27220450157041],[-76.62698021484741,39.27219470724939],[-76.6269722005007,39.27218580656449],[-76.62696276845428,39.27217764270509],[-76.62695255876282,39.27216992765771],[-76.62694218006395,39.27216239763008],[-76.62693162543285,39.27215504719548],[-76.62692024016383,39.27214852642748],[-76.62690802758969,39.27214308304671],[-76.62689544995585,39.27213808348242],[-76.62688270787842,39.27213328246324],[-76.62686999029496,39.27212845179531],[-76.62685733800235,39.27212354656999],[-76.62684461454761,39.27211873119363],[-76.62683205093778,39.27211371094948],[-76.62681988989179,39.27210816773828],[-76.62680820385106,39.27210198919482],[-76.62679682801486,39.27209544142178],[-76.6267856652366,39.27208870696565],[-76.62677507201617,39.2720814275545],[-76.6267652714081,39.27207349850786],[-76.62675582700841,39.27206526703485],[-76.62674591323302,39.27205748264996],[-76.62673454842016,39.272051044799],[-76.62672213894763,39.27204558636065],[-76.62671079149321,39.27203915396711],[-76.62670094619827,39.27203135087993],[-76.62669168429662,39.27202301639379],[-76.62668245277371,39.27201463516369],[-76.62667272542521,39.27200666220454],[-76.62666252967244,39.27199895167957],[-76.62665163133723,39.27199196043242],[-76.62663962482807,39.27198634653313],[-76.62662677862406,39.27198174152146],[-76.62661376696876,39.27197730622687],[-76.62660111252627,39.27197237754687],[-76.62658855193148,39.27196723298042],[-76.62657661956743,39.27196140492846],[-76.6265657336193,39.27195448487301],[-76.62655552359075,39.27194684815582],[-76.62654557427078,39.27193899878556],[-76.62653555041669,39.27193121943707],[-76.62652585346808,39.27192320062314],[-76.6265171678518,39.27191459052001],[-76.62650939478094,39.27190544285961],[-76.62650210647035,39.27189600849564],[-76.62649498314531,39.2718864935871],[-76.62648778650633,39.27187703699462],[-76.62648069328678,39.27186752758548],[-76.62647395542668,39.27185787698531],[-76.62646789688063,39.27184796552205],[-76.62646255251829,39.2718377734899],[-76.62645713611907,39.2718276172589],[-76.62645085102362,39.27181781496738],[-76.62644371947336,39.27180832434997],[-76.62643600599908,39.2717990867974],[-76.62642782749798,39.27179013060521],[-76.62641903536685,39.27178150664412],[-76.62640929433492,39.27177350299291],[-76.62639859487231,39.27176638894954],[-76.62638732732754,39.27175976041157],[-76.62637571042266,39.27175345503628],[-76.62636392783922,39.27174736261389],[-76.62635205819707,39.27174129783705],[-76.6263398936084,39.27173556630422],[-76.62632722511459,39.2717308969696],[-76.62631363913034,39.27172814514412],[-76.62629948303008,39.2717267048175],[-76.62628510535478,39.27172640865571],[-76.62627137418882,39.27172525882326],[-76.62625952765228,39.27171964989726],[-76.62624826613448,39.2717127610441],[-76.62623753700242,39.27170534423457],[-76.6262274464443,39.27169770066217],[-76.62621802983649,39.27168949445452],[-76.62620883432777,39.2716811151022],[-76.62619957813878,39.27167281572406],[-76.62619048126928,39.27166441146282],[-76.62618151812023,39.27165592205383],[-76.62617271659407,39.27164733047144],[-76.62616394530448,39.27163871916778],[-76.62615504728035,39.27163018762805],[-76.62614616347773,39.27162159668242],[-76.62613656978598,39.27161357185869],[-76.62612575629524,39.27160655470956],[-76.62611438299034,39.27159999336558],[-76.62610314358612,39.27159331264514],[-76.62609203340934,39.27158651973942],[-76.62608096866224,39.27157968283979],[-76.62607010534225,39.27157266732834],[-76.62605957617973,39.27156535562748],[-76.62604931829796,39.27155780428534],[-76.62603915124984,39.27155016946036],[-76.62602889805052,39.27154261002442],[-76.62601835387443,39.27153529016509],[-76.62600754320925,39.27152818113589],[-76.62599679185621,39.27152103266088],[-76.62598643721468,39.27151359269978],[-76.62597714989396,39.27150527248678],[-76.6259691034308,39.271495907735],[-76.62596034217266,39.27148738021867],[-76.62594906519624,39.27148145780716],[-76.62593575564361,39.27147772048083],[-76.62592187767015,39.27147453261037],[-76.62590862645179,39.2714705018175],[-76.62589581612274,39.27146571308307],[-76.62588470283221,39.27145907868201],[-76.62587426548227,39.27145172401995],[-76.62586410204922,39.27144406937421],[-76.62585402375062,39.27143631321238],[-76.62584384179465,39.27142865580356],[-76.62583329991529,39.27142134674374],[-76.62582226551031,39.27141447928994],[-76.6258112264056,39.27140762443085],[-76.62580015819415,39.27140079560006],[-76.62578900841457,39.27139405208101],[-76.62577780059041,39.27138732819271],[-76.62576640170148,39.27138079645813],[-76.62575416580532,39.27137542223993],[-76.6257412120536,39.27137102576475],[-76.62572802114369,39.27136699154043],[-76.62571489083763,39.27136267286618],[-76.62570136990931,39.27135990856586],[-76.62568721967625,39.27135978870453],[-76.62567309044611,39.27136095970406],[-76.6256591692337,39.27136333838936],[-76.62564647285788,39.27136792875112],[-76.62563513642323,39.27137460241095],[-76.62562483490143,39.27138214500336],[-76.62561511387074,39.27139014523218],[-76.62560600019843,39.27139856264877],[-76.62559762262072,39.27140737784689],[-76.62558984691627,39.27141655166592],[-76.62558223870502,39.27142582780474],[-76.62557444219918,39.27143498984645],[-76.62556660641418,39.27144412834246],[-76.62555880529266,39.27145328586457],[-76.62555103653598,39.27146245880229],[-76.62554324349858,39.27147162085288],[-76.62553537419411,39.27148074122461],[-76.62552731883649,39.27148976191847],[-76.62551893872093,39.27149861493485],[-76.62551062796754,39.27150749969848],[-76.62550285003725,39.2715166518861],[-76.62549590773951,39.27152622559328],[-76.62548905676047,39.27153584282795],[-76.62548124766859,39.2715449696933],[-76.62547229439825,39.27155350921394],[-76.62546471543241,39.27156272778921],[-76.62545819638309,39.27157246948528],[-76.62545192699133,39.27158233538186],[-76.62544543334751,39.27159209337196],[-76.62543892467963,39.27160184320682],[-76.62543233738434,39.27161155946229],[-76.62542554312444,39.27162118588158],[-76.62541852337723,39.27163071880258],[-76.62541129899249,39.27164016009324],[-76.62540385846724,39.27164949350303],[-76.62539608273968,39.27165866190407],[-76.62538804233316,39.27166769704792],[-76.62538652742822,39.27166928386671],[-76.62537958567616,39.27167655341292],[-76.62537065382438,39.27168520108569],[-76.62536425158684,39.27169476299594],[-76.62536090068703,39.27170541465592],[-76.6253581210113,39.27171630413827],[-76.62535441566831,39.2717269231406],[-76.62535065812845,39.27173755098391],[-76.62534642273432,39.27174803498195],[-76.62534122600941,39.27175819884401],[-76.62533493607292,39.27176799891259],[-76.6253280052308,39.27177758885961],[-76.62532094247771,39.27178714055326],[-76.6253142521827,39.27179682404555],[-76.62530845254499,39.271806823845],[-76.62530329946138,39.27181706080638],[-76.62529792311776,39.27182722139105],[-76.62529234295759,39.27183735430219],[-76.62528656614805,39.27184741902831],[-76.62527995132491,39.27185707303409],[-76.62527158661398,39.27186584771474],[-76.62526208452194,39.27187406389479],[-76.62525340750211,39.27188272678357],[-76.62524610310898,39.27189216780823],[-76.62524042263955,39.2719022013126],[-76.62523668727007,39.27191038184566],[-76.62523569422405,39.27191255582446],[-76.62523119481261,39.27192299573875],[-76.62522629400617,39.27193329655499],[-76.62522032663007,39.2719432354633],[-76.62521328103851,39.27195282323544],[-76.62520613949812,39.27196236566276],[-76.62519993173208,39.27197217949733],[-76.62519551626288,39.27198252239538],[-76.62519250436843,39.27199326971192],[-76.62518998422915,39.27200416181926],[-76.62518704402486,39.27201493908961],[-76.62518277885948,39.27202534732178],[-76.62517688210256,39.27203529726219],[-76.62517018688165,39.27204502756974],[-76.62516364898703,39.27205481062337],[-76.62515823921271,39.27206493055992],[-76.62515447216441,39.27207559439628],[-76.62515119572693,39.27208640031765],[-76.62514698606279,39.27209683034383],[-76.62514066093968,39.27210647986125],[-76.62513267114919,39.2721155700949],[-76.62512362586793,39.27212417505007],[-76.62511405918519,39.2721323234542],[-76.62510338081765,39.27213943603297],[-76.6250917144322,39.2721457951202],[-76.62508106233331,39.27215297984198],[-76.62507044776746,39.27216095645447],[-76.62506039878723,39.27216936093312],[-76.62505301335253,39.27217833779277],[-76.62505082788365,39.27218817436849],[-76.6250541612846,39.27219905002993],[-76.62505846311676,39.27221021882901],[-76.6250607227998,39.27222120816178],[-76.62506227401273,39.27223227269842],[-76.62506095546796,39.27224297047016],[-76.62505632079483,39.27225333968544],[-76.6250498120484,39.27226330207738],[-76.62504259451285,39.27227274156428],[-76.62503462062473,39.27228188678836],[-76.62502585081388,39.27229055026402],[-76.62501626050407,39.27229855806524],[-76.62500569979319,39.27230598717889],[-76.62499422837598,39.27231250631402],[-76.6249819901205,39.2723178646165],[-76.62496928764256,39.27232269178594],[-76.62495625596236,39.27232709544433],[-76.6249429994058,39.27233107052006],[-76.62492962115915,39.27233460833497],[-76.62491602711341,39.27233731585527],[-76.62490201505744,39.2723388618545],[-76.62488789887328,39.27234015620625],[-76.6248738443829,39.27234183718128],[-76.62485947498547,39.27234324061408],[-76.62484568832356,39.27234555477776],[-76.62483331104529,39.27235024425357],[-76.62482212970696,39.27235756778027],[-76.62481373851389,39.27236650718262],[-76.62480876291758,39.27237646995486],[-76.62480570298689,39.2723873017789],[-76.62480357558624,39.27239842212413],[-76.62480163931433,39.2724093395072],[-76.6248008708249,39.2724203263766],[-76.62480101313737,39.2724313278656],[-76.6248028503004,39.27244244105916],[-76.62480416093506,39.27245341024982],[-76.62480147195195,39.27246378296798],[-76.62479479270118,39.2724735439302],[-76.6247875449147,39.27248321480079],[-76.62478271642246,39.27249209352144],[-76.62477991298844,39.27249715316563],[-76.62477726697344,39.27250224844246],[-76.62477493695563,39.27250741498843],[-76.62477301435182,39.272512678317],[-76.62477130464953,39.27251800447847],[-76.62476977316875,39.27252337714825],[-76.62476841533596,39.27252878460189],[-76.62476722657773,39.27253421511471],[-76.62476620117594,39.27253965425637],[-76.62476532170011,39.27254511097873],[-76.62476423975126,39.27255116245938],[-76.62476315931146,39.27255758596044],[-76.62476257997494,39.27256370210036],[-76.62476300017256,39.27256883239456],[-76.6247649253264,39.2725722911747],[-76.62476998516523,39.27257269917292],[-76.6247775650655,39.27257057326532],[-76.62478548087736,39.27256760171203],[-76.62479207509786,39.27256515648622],[-76.6247984487101,39.27256279072333],[-76.62480480637893,39.27256037176405],[-76.62481113310091,39.27255788785052],[-76.6248174138633,39.27255532902643],[-76.6248236301719,39.27255268622504],[-76.62482976586926,39.27254994678403],[-76.62483580593312,39.27254710254855],[-76.62484173420117,39.27254414175705],[-76.62484757610974,39.27254085641427],[-76.62485338365823,39.27253705572429],[-76.62485913610296,39.27253293688823],[-76.6248648161673,39.27252869891979],[-76.6248704030792,39.27252454442468],[-76.62487587724922,39.27252067150837],[-76.62488122023261,39.27251728098246],[-76.62488641126214,39.27251457455184],[-76.62489143306158,39.27251275123018],[-76.62489642396393,39.2725134841787],[-76.62490104691229,39.27251849368129],[-76.62490408031735,39.27252517352868],[-76.62490432723435,39.27253085904055],[-76.62490238268896,39.2725356710182],[-76.62489925157833,39.27254045848861],[-76.62489538803315,39.27254524992501],[-76.6248912438714,39.27255007289251],[-76.62488727323844,39.27255495316226],[-76.62488392794286,39.27255992010097],[-76.62488132024689,39.27256500199103],[-76.62487904458207,39.27257019123164],[-76.62487697715976,39.27257544779389],[-76.62487499764886,39.2725807352629],[-76.62487298457344,39.27258601451774],[-76.62487082108842,39.27259124735317],[-76.62486856035869,39.27259646096188],[-76.62486636433918,39.27260170990708],[-76.62486409079459,39.27260693608549],[-76.62486159403197,39.27261207777978],[-76.62485873066659,39.27261707508149],[-76.62485539085402,39.27262188080005],[-76.62485169367135,39.2726265493616],[-76.62484774899143,39.27263112255222],[-76.62484365628139,39.27263563762094],[-76.62483951615735,39.27264013362204],[-76.62483542692756,39.27264464780079],[-76.62483148921788,39.27264921741009],[-76.62482780132693,39.27265388149671],[-76.62482446272178,39.2726586773098],[-76.62482160990075,39.27266365212515],[-76.62481922090265,39.27266879506347],[-76.62481714187487,39.272674053389],[-76.62481522013798,39.27267937166738],[-76.62481330068996,39.27268469535763],[-76.62481123083222,39.27268997262836],[-76.62480885788987,39.2726951471445],[-76.62480624546232,39.27270024523133],[-76.62480356128007,39.27270532507357],[-76.62480080651146,39.27271038487343],[-76.62479798347425,39.27271542463834],[-76.6247950968086,39.27272044348229],[-76.62479214769245,39.27272543780602],[-76.62478914075646,39.27273040852511],[-76.62478607832789,39.27273535384541],[-76.62478300749633,39.27274035408544],[-76.62478002093893,39.27274563473223],[-76.62477684355416,39.27275084180743],[-76.62477315771962,39.27275555363929],[-76.62476864928951,39.27275934856728],[-76.62476276561843,39.27276219960421],[-76.62475554578523,39.27276438701242],[-76.62474792546011,39.27276560662057],[-76.62474085194492,39.27276554618787],[-76.62473519204987,39.27276377431573],[-76.62473078388416,39.27275978605909],[-76.62472694888314,39.27275457459434],[-76.62472302597561,39.27274933132181],[-76.62471835178226,39.27274524583289],[-76.62471239255207,39.27274310098753],[-76.62470540645076,39.27274228959467],[-76.6246979479136,39.27274228107419],[-76.62469057360305,39.27274256196768],[-76.62468356908114,39.27274304221054],[-76.62467660779771,39.27274411169094],[-76.62466965166038,39.27274530369137],[-76.62466267661202,39.27274612721833],[-76.62465552693021,39.27274644485806],[-76.62464811013659,39.2727466508497],[-76.62464088639878,39.2727462899764],[-76.62463434163222,39.27274485936326],[-76.62462879171943,39.27274201412654],[-76.62462393694058,39.27273811091177],[-76.62461939439551,39.2727336763431],[-76.62461478467493,39.27272923435346],[-76.62460973184139,39.27272530978748],[-76.62460419179133,39.2727219151149],[-76.62459843887842,39.27271866928854],[-76.62459250420139,39.27271560843829],[-76.62458641655083,39.27271276688528],[-76.62458020817462,39.27271018256463],[-76.6245738020492,39.27270795701646],[-76.62456698140076,39.27270632104415],[-76.6245599607049,39.27270525911955],[-76.62455297409502,39.27270476388426],[-76.62454597128766,39.27270513963576],[-76.62453892087278,39.27270597102133],[-76.62453186110034,39.27270659970463],[-76.62452480171743,39.27270671675463],[-76.62451772945769,39.27270663919801],[-76.62451065841884,39.2727065499349],[-76.62450359807249,39.27270663004924],[-76.62449655486171,39.27270697594337],[-76.62448951219483,39.27270743803743],[-76.6244824770869,39.27270800464388],[-76.62447545764996,39.27270867578869],[-76.62446846430427,39.27270945330665],[-76.62446150501874,39.27271036424619],[-76.6244545853113,39.27271146086935],[-76.62444768821355,39.27271266475532],[-76.6244407944921,39.27271388756774],[-76.62443388490382,39.27271504277171],[-76.62442694470779,39.2727160690681],[-76.62441998724299,39.27271707369052],[-76.62441301390675,39.27271801160519],[-76.62440602051649,39.27271879722616],[-76.62439900286606,39.2727193494712],[-76.62439196310625,39.27271969987395],[-76.62438490767063,39.27271994663826],[-76.6243778411327,39.27272010148867],[-76.62437076805642,39.27272017795126],[-76.62436369415505,39.27272019135727],[-76.62435662515617,39.27272015433574],[-76.62434956449822,39.27272007410381],[-76.6243425042457,39.27271991730775],[-76.62433544554784,39.27271968575285],[-76.62432838832366,39.2727193947518],[-76.62432133365577,39.27271905872024],[-76.62431428261709,39.27271869387543],[-76.62430723284707,39.27271830831671],[-76.62430009126943,39.27271753333369],[-76.6242928818008,39.2727164482702],[-76.62428573183496,39.27271550661809],[-76.624278764154,39.27271515735082],[-76.62427210499735,39.2727158530559],[-76.62426564421055,39.27271760509089],[-76.62425929778315,39.27272008350737],[-76.62425315122786,39.2727231156322],[-76.62424729237055,39.27272652970045],[-76.62424180556526,39.27273015303522],[-76.62423683015736,39.27273393293743],[-76.62423254619476,39.2727382275865],[-76.62422869146909,39.2727428749068],[-76.62422496592048,39.27274763883883],[-76.62422106252626,39.27275228510241],[-76.62421670774678,39.27275660294414],[-76.62421198687062,39.27276068091187],[-76.62420704655372,39.27276461765801],[-76.62420199310154,39.27276847207239],[-76.62419689464865,39.27277228941123],[-76.62419141235824,39.27277593437645],[-76.62418566648994,39.27277945689484],[-76.62417995884454,39.27278298313826],[-76.62417458660656,39.27278663566098],[-76.62416985042267,39.27279053973048],[-76.62416604862675,39.27279481970626],[-76.62416343233451,39.27279976283498],[-76.62416195213953,39.27280528879061],[-76.62416146960834,39.27281105934362],[-76.62416184745685,39.27281673806961],[-76.6241629654357,39.27282205435455],[-76.62416485783811,39.27282731636954],[-76.62416744696297,39.27283253467502],[-76.62417062210783,39.2728376053288],[-76.6241742737101,39.27284242799546],[-76.62417829337069,39.27284690144248],[-76.62418272474963,39.27285109696992],[-76.624187572034,39.27285509926288],[-76.62419274827533,39.27285891434857],[-76.62419817115121,39.27286255007034],[-76.62420375602132,39.2728660142642],[-76.62420941825503,39.27286931296475],[-76.62421531967897,39.27287230617048],[-76.62422162645009,39.27287491154269],[-76.62422813013873,39.27287731577342],[-76.62423461884366,39.2728797046429],[-76.62424088064928,39.27288226663353],[-76.6242467036447,39.27288518932711],[-76.62425187551378,39.27288873686918],[-76.62425620684569,39.27289322482206],[-76.62425956861551,39.27289828886425],[-76.6242618379501,39.27290349713678],[-76.62426308177261,39.2729089048004],[-76.6242633898068,39.27291463824918],[-76.62426262073288,39.27292024754967],[-76.62426060771219,39.27292528719057],[-76.62425661458205,39.2729295890761],[-76.62425124705794,39.27293344428917],[-76.62424570519292,39.27293717644032],[-76.62424005303474,39.27294072718473],[-76.62423412958179,39.27294408069425],[-76.62423003123553,39.27294811741754],[-76.62422860577566,39.27295424976322],[-76.62423160292786,39.27295879470014],[-76.62423719910609,39.27296143833232],[-76.62424337133814,39.27296384690623],[-76.62424997235226,39.27296603796593],[-76.6242568548959,39.27296802545248],[-76.62426387286554,39.27296982511218],[-76.62427088015788,39.27297145269132],[-76.6242777306839,39.27297292123406],[-76.62428461137439,39.27297394579612],[-76.62429165584264,39.27297446194999],[-76.62429878076432,39.27297466669634],[-76.62430590746962,39.27297475344785],[-76.62431307220311,39.27297466196931],[-76.62432059300988,39.27297363933837],[-76.62432765273445,39.27297324396554],[-76.62433355038061,39.27297520217505],[-76.62433936248567,39.27297908954755],[-76.62434418903304,39.27298394749352],[-76.62434664945162,39.27298896361192],[-76.62434599051882,39.2729936896154],[-76.62434337125114,39.27299853905885],[-76.6243395405544,39.27300346209316],[-76.62433520690307,39.27300838441931],[-76.62433108341665,39.27301322995191],[-76.62432686124929,39.27301788961121],[-76.62432167700014,39.27302236874246],[-76.62431773825399,39.27302690500259],[-76.62431711706081,39.27303172570684],[-76.62431843679825,39.27303680483357],[-76.62432077106692,39.27304200790788],[-76.62432384231055,39.27304722595011],[-76.6243273729871,39.27305234727855],[-76.62433108786247,39.27305726202029],[-76.62433479481231,39.27306192272106],[-76.62433864358356,39.27306650100505],[-76.62434263521581,39.2730710193946],[-76.62434674996075,39.27307548683428],[-76.62435096809841,39.27307990686396],[-76.62435526756737,39.27308428752002],[-76.62435963095598,39.2730886341513],[-76.62436403620755,39.27309295389336],[-76.62436846243376,39.27309725208404],[-76.62437289105927,39.27310153496919],[-76.62437732228938,39.27310598270235],[-76.624381881082,39.27311085240091],[-76.62438669307164,39.27311539773314],[-76.62439187963861,39.27311880029273],[-76.62439758113408,39.27312016066502],[-76.6244039782738,39.27311861649581],[-76.62441081763779,39.27311562891483],[-76.62441775893952,39.27311308753763],[-76.62442454852214,39.27311271741721],[-76.62443202065759,39.27311344841125],[-76.62443991312082,39.2731146833753],[-76.62444750702576,39.27311649297238],[-76.62445408233208,39.27311894696138],[-76.62445892131224,39.27312211600941],[-76.62446150088142,39.27312608041359],[-76.62446240049886,39.2731308375232],[-76.62446207776556,39.27313619874006],[-76.62446093587283,39.27314196448311],[-76.62445937105416,39.27314793604953],[-76.62445778419274,39.27315391204924],[-76.62445657384013,39.27315969378704],[-76.62445577396129,39.2731652138142],[-76.62445456707977,39.27317077757812],[-76.62445327555275,39.27317635007903],[-76.62445232156246,39.2731818660103],[-76.62445212846936,39.27318725646604],[-76.62445310444929,39.27319247501102],[-76.62445508250661,39.27319798140162],[-76.62445782801004,39.27320365778819],[-76.62446128890983,39.27320904731688],[-76.62446541084796,39.27321369132491],[-76.62447013829295,39.27321713384801],[-76.62447560722755,39.27321886278613],[-76.62448216452627,39.27321880898861],[-76.62448944733897,39.27321765137206],[-76.62449704513497,39.27321610022744],[-76.62450454970181,39.27321486585326],[-76.62451186597549,39.27321461180867],[-76.62451873573559,39.2732163929638],[-76.62452217839186,39.27322085104225],[-76.62452523873607,39.27322572405139],[-76.62452800099824,39.27323086273369],[-76.62453046686636,39.27323616710974],[-76.62453263801879,39.27324153900159],[-76.6245345161434,39.27324687842989],[-76.62453582395004,39.27325224485941],[-76.62453643681465,39.27325775589181],[-76.62453673993599,39.27326332718592],[-76.62453711967176,39.27326887440437],[-76.62453796238451,39.27327431230886],[-76.6245396497871,39.27327955834866],[-76.62454203208003,39.27328466969366],[-76.62454479945781,39.27328971831542],[-76.62454789518829,39.27329469412405],[-76.62455126021172,39.27329958882397],[-76.62455483547329,39.27330439321867],[-76.62455856307686,39.2733090981154],[-76.62456239208451,39.27331369344296],[-76.62456660127906,39.2733180566878],[-76.6245712334912,39.27332219699443],[-76.62457610510882,39.27332621015763],[-76.62458103366434,39.27333019467817],[-76.62458583669975,39.27333424725531],[-76.6245906373322,39.27333831603834],[-76.62459554830613,39.27334233833416],[-76.62460010726936,39.27334652434443],[-76.62460378743101,39.27335121647735],[-76.62460607329514,39.27335725079589],[-76.62460811021414,39.27336280601297],[-76.62461149048187,39.27336525878838],[-76.62461757041284,39.27336146528667],[-76.62462173718812,39.27335654241718],[-76.62462438334151,39.27335142913016],[-76.62462673837767,39.27334614106513],[-76.6246295868664,39.27334111669951],[-76.62463355718077,39.27333652738515],[-76.62463850515714,39.27333224114974],[-76.62464422571163,39.27332912657492],[-76.62465087331996,39.27332755707062],[-76.62465839289757,39.27332699200226],[-76.62466562322004,39.27332765284977],[-76.62467154179444,39.27332982458993],[-76.62467649581161,39.27333359750826],[-76.62468091795779,39.27333823526171],[-76.62468514399734,39.2733429210296],[-76.62468945280249,39.27334729629823],[-76.62469376602925,39.27335171211518],[-76.62469788056954,39.27335622548035],[-76.62470159450278,39.27336088799287],[-76.62470470937059,39.2733657539652],[-76.62470730398115,39.27337082274845],[-76.62470953274116,39.27337604259173],[-76.62471145384202,39.27338136684127],[-76.624713120835,39.27338674972926],[-76.62471459074305,39.27339214639969],[-76.62471579063332,39.27339754220727],[-76.62471624938266,39.27340305274602],[-76.62471637179128,39.27340861265282],[-76.62471668449376,39.27341412812942],[-76.62471771297088,39.27341950447323],[-76.62471962990014,39.27342474133512],[-76.62472192818581,39.27342996320175],[-76.62472459072109,39.27343511777415],[-76.62472761780617,39.27344014830508],[-76.62473101322266,39.27344499715771],[-76.62473477611186,39.27344960758116],[-76.62473888078796,39.27345401552378],[-76.62474326199657,39.27345828833452],[-76.62474785583755,39.27346245643501],[-76.62475259957436,39.27346654935005],[-76.62475743161023,39.27347060021111],[-76.62476228689094,39.27347463853554],[-76.62476710267505,39.27347869474886],[-76.62477181852957,39.27348280108551],[-76.62477648910266,39.27348692349103],[-76.62478122478296,39.27349100647074],[-76.62478597441802,39.27349508048722],[-76.62479068568683,39.27349917780075],[-76.62479530627319,39.27350332977102],[-76.62479978618337,39.2735075668643],[-76.62480409285928,39.27351190969415],[-76.62480828905649,39.27351632513275],[-76.62481238874828,39.27352080061411],[-76.62481640124372,39.27352532896189],[-76.62482033239436,39.27352989938554],[-76.62482419151409,39.27353450380801],[-76.62482798559428,39.27353913504552],[-76.624831816659,39.27354378531703],[-76.62483569616853,39.27354847897986],[-76.62483937247006,39.27355324855841],[-76.62484259042449,39.2735581283675],[-76.62484509722003,39.27356315092791],[-76.62484592572473,39.27356865093694],[-76.62484539054675,39.27357452491103],[-76.62484517191723,39.27358014768225],[-76.62484695931504,39.27358489861626],[-76.62485204643836,39.27358848909686],[-76.62485904235163,39.27359096782602],[-76.62486598077031,39.27359226546949],[-76.62487317654225,39.27359179483412],[-76.62488047175047,39.27359092908045],[-76.62488716339936,39.27359155486536],[-76.62489324476336,39.27359406760284],[-76.62489891861583,39.27359759690186],[-76.62490408925224,39.27360161280751],[-76.62490866821317,39.27360574932723],[-76.62491272506169,39.27361022016429],[-76.62491650850748,39.27361489189919],[-76.6249202709654,39.27361958788758],[-76.62492425903687,39.27362413506951],[-76.6249283528478,39.27362862944394],[-76.62493249078717,39.27363310684461],[-76.62493680785161,39.27363746051167],[-76.62494143557539,39.27364158097205],[-76.6249463784132,39.2736455024689],[-76.62495153393601,39.27364930934686],[-76.62495691531527,39.27365292148007],[-76.62496253571763,39.27365625964327],[-76.62496841410409,39.27365924462969],[-76.62497456551142,39.27366188189198],[-76.62498091752725,39.273664277489],[-76.62498738265002,39.27366654193523],[-76.62499386989184,39.27366878753575],[-76.62500028942871,39.27367112569838],[-76.62500655610533,39.27367366154071],[-76.62501274916841,39.27367631154465],[-76.62501891064703,39.27367901729481],[-76.62502501727313,39.27368179583139],[-76.62503104808219,39.27368466690432],[-76.62503697865208,39.27368764664929],[-76.62504278570037,39.27369075480888],[-76.62504845635571,39.27369401476186],[-76.62505401274633,39.27369740586134],[-76.62505948171692,39.27370089216239],[-76.62506488893892,39.27370444041884],[-76.62507026356045,39.2737080173954],[-76.62507563823489,39.27371158446343],[-76.62508108382534,39.27371510942169],[-76.62508656308097,39.27371862367804],[-76.62509200276385,39.2737221702353],[-76.62509733309362,39.27372579571045],[-76.62510248430897,39.27372954311752],[-76.62510738431646,39.27373345816532],[-76.62511196101333,39.27373758836432],[-76.62511620042629,39.27374194628059],[-76.62512018745345,39.27374647543704],[-76.62512401281124,39.27375111487129],[-76.62512776605716,39.27375580361727],[-76.62513153675334,39.2737604798081],[-76.62513541562109,39.27376508158071],[-76.62514135868979,39.27377118160646],[-76.62514563975965,39.27377555226526],[-76.62515007899009,39.27377981894006],[-76.625154741502,39.27378393950283],[-76.62515953658865,39.27378797311437],[-76.62516438866095,39.27379196907551],[-76.62516922096137,39.2737959784848],[-76.62517396021872,39.2738000506504],[-76.62517854363909,39.27380422590635],[-76.62518301192146,39.2738084782604],[-76.62518740926511,39.27381277722755],[-76.62519177752777,39.27381709681932],[-76.62519615742255,39.27382140834116],[-76.62520058733071,39.27382568579342],[-76.62520511027355,39.27382990229046],[-76.62520973323774,39.27383405154916],[-76.62521438759217,39.27383818199182],[-76.62521906752828,39.27384229630215],[-76.62522377189181,39.27384639357575],[-76.62522850183697,39.27385047471699],[-76.62523325621441,39.27385453792074],[-76.62523803618296,39.27385858319067],[-76.62524283942012,39.27386261142013],[-76.62524766709427,39.27386662081132],[-76.62525251804183,39.27387061226131],[-76.62525739808565,39.27387458038403],[-76.62526231302978,39.27387852339652],[-76.62526725822435,39.27388244398623],[-76.62527222552387,39.27388634843248],[-76.62527721143746,39.27389023942646],[-76.62528220782913,39.27389412144602],[-76.62528721003481,39.27389799988082],[-76.62529221339986,39.27390187831914],[-76.62529720978841,39.27390576123879],[-76.62530219569996,39.27390965313242],[-76.62530716300331,39.27391355757718],[-76.62531210936645,39.27391747726788],[-76.62531705339812,39.27392139965323],[-76.62532199742553,39.27392532293914],[-76.62532693796732,39.27392924801522],[-76.62533187501403,39.27393317668298],[-76.62533680392049,39.2739371107292],[-76.6253417235184,39.27394105195157],[-76.6253466314805,39.27394500214428],[-76.6253515254889,39.27394896129989],[-76.62535640436579,39.27395293301772],[-76.62536126463442,39.27395691728668],[-76.62536608883556,39.2739609284633],[-76.62537085601876,39.27396498359526],[-76.62537558247989,39.27396906922311],[-76.62538028567346,39.27397317189105],[-76.62538498189048,39.27397727904039],[-76.62538968973975,39.27398137811976],[-76.62539442436277,39.27398545476525],[-76.62539920553202,39.27398949552837],[-76.62540404837475,39.27399348874758],[-76.62540897150927,39.27399742006992],[-76.62541399472698,39.27400127244404],[-76.62541912849115,39.27400503959797],[-76.62542434837002,39.27400873946895],[-76.62542962876356,39.27401239179226],[-76.62543494290799,39.27401601720005],[-76.62544026752094,39.27401963543487],[-76.62544557700716,39.27402326533114],[-76.62545084343915,39.27402692841806],[-76.62545604469831,39.27403064354126],[-76.62546115286194,39.27403443132918],[-76.62546619232378,39.27403828105053],[-76.62547119797399,39.2740421693967],[-76.62547614890036,39.27404610620936],[-76.62548102072348,39.2740500995177],[-76.62548579253581,39.27405415826269],[-76.6254904399437,39.2740582931757],[-76.62549493973611,39.27406251048811],[-76.62549923842359,39.27406684425838],[-76.62550327320277,39.27407133662221],[-76.62550711963424,39.27407594368311],[-76.62551085793787,39.2740806170556],[-76.62551457181988,39.27408530656388],[-76.62551834265891,39.27408996382612],[-76.62552225299756,39.27409453956351],[-76.62552635622545,39.27409901863329],[-76.62553053150927,39.27410345919981],[-76.62553462898175,39.27410793104482],[-76.62553845647101,39.27411261460915],[-76.62553703194939,39.27411704903147],[-76.62553207320246,39.27412096055171],[-76.62552712484693,39.274124879311],[-76.62552217648607,39.2741287989708],[-76.62551722812948,39.27413271772962],[-76.62551228092642,39.27413663739269],[-76.62550733372284,39.27414055705556],[-76.62550238651392,39.27414447761895],[-76.62549744046814,39.27414839728508],[-76.62549249325818,39.27415231784806],[-76.62548754720649,39.27415623841449],[-76.62548259999542,39.27416015897704],[-76.62547765394271,39.27416407954308],[-76.62547270673527,39.27416799920442],[-76.62546775952256,39.27417191976633],[-76.62546281231408,39.27417583942727],[-76.62545786510499,39.27417975908801],[-76.62545291789542,39.27418367874849],[-76.62544796952636,39.27418759840513],[-76.62544302116152,39.27419151716078],[-76.62543807164202,39.27419543501177],[-76.62543312211722,39.27419935376331],[-76.62542817144249,39.2742032707094],[-76.62542322076717,39.2742071876553],[-76.62541826893249,39.27421110459731],[-76.62541331710671,39.27421501973762],[-76.62540831418941,39.27421895363075],[-76.62540220313595,39.27421853870485],[-76.62539580202147,39.27421621143264],[-76.62538953760077,39.27421367561889],[-76.62538331173775,39.27421108047739],[-76.6253769982784,39.27420861386539],[-76.62537074438892,39.27420605916816],[-76.62536445453151,39.27420351246281],[-76.62535817172299,39.27420094776428],[-76.62535205673197,39.27419820615025],[-76.62534627619738,39.27419511430492],[-76.62534108182817,39.27419141000817],[-76.6253361683118,39.27418741115666],[-76.625331061336,39.27418361706188],[-76.62532494757939,39.27418064215257],[-76.62531828323758,39.2741825151988],[-76.62531218388816,39.2741812013432],[-76.62530647226259,39.27417757015821],[-76.62530086264665,39.27417415368014],[-76.62529590333293,39.27417026907776],[-76.62529147217681,39.27416600333557],[-76.62528718063012,39.27416163535158],[-76.62528299141813,39.27415720103732],[-76.62527886842508,39.27415273630827],[-76.62527483720827,39.27414822953595],[-76.62527090595599,39.27414366633433],[-76.62526702932898,39.27413907358163],[-76.6252631596701,39.27413447814876],[-76.62525934231387,39.27412985405817],[-76.62525561096801,39.27412518250139],[-76.62525178546252,39.27412056559063],[-76.62524768562747,39.27411610543813],[-76.62524334636755,39.27411177603302],[-76.62523885251458,39.27410753350858],[-76.62523424006079,39.27410336536889],[-76.62522954499352,39.27409926001889],[-76.62522480105842,39.27409519144408],[-76.62522001758852,39.27409114796427],[-76.62521518526988,39.2740871376567],[-76.62521029942886,39.27408316771241],[-76.6252053530693,39.27407924621611],[-76.62520033919509,39.27407538125226],[-76.62519526366731,39.27407156022888],[-76.62519012998635,39.27406777865329],[-76.62518492299156,39.27406405449238],[-76.62517963097984,39.27406040932713],[-76.62517424109879,39.27405686293336],[-76.62516873234087,39.27405344316758],[-76.62516301737564,39.27405022811766],[-76.62515714630167,39.2740471675006],[-76.62515120182339,39.27404418141238],[-76.62514526781366,39.27404118815114],[-76.62513939672694,39.27403813023539],[-76.6251335501582,39.2740350381686],[-76.62512769658899,39.27403195508682],[-76.62512180451536,39.27402892142386],[-76.62511584358249,39.27402597941872],[-76.62510978110835,39.27402317310446],[-76.62510354125145,39.27402059952156],[-76.62509716136724,39.27401820744566],[-76.62509073945424,39.2740158737849],[-76.62508437119307,39.27401347544004],[-76.62507815458699,39.27401088841852],[-76.62507217131972,39.27400800669106],[-76.62506631996378,39.27400494433081],[-76.62506055382575,39.27400176514301],[-76.62505486934332,39.27399848533],[-76.62504925947277,39.27399512198394],[-76.62504372297431,39.27399169041372],[-76.62503825164532,39.2739882077078],[-76.62503285239146,39.27398468289584],[-76.62502794788271,39.27398073990716],[-76.62502335422498,39.2739765276815],[-76.62501847882271,39.27397255956399],[-76.62501306204496,39.27396906171807],[-76.62500744152028,39.27396574157254],[-76.62500171505674,39.27396251206571],[-76.62499597579838,39.27395929152535],[-76.62499031690825,39.27395599467641],[-76.62498478146989,39.27395258292358],[-76.62497925770653,39.27394915499399],[-76.62497375141749,39.27394571000544],[-76.62496827658072,39.27394223449109],[-76.62496284948728,39.27393871589227],[-76.62495748641872,39.27393514345181],[-76.62495220251192,39.27393150370657],[-76.62494703156977,39.27392775983321],[-76.62494198525734,39.2739238974568],[-76.62493701815424,39.27391995876818],[-76.62493208829795,39.27391598957229],[-76.62492715142696,39.27391203206371],[-76.62492216442932,39.27390813024223],[-76.62491708302927,39.27390432900459],[-76.62491186527846,39.27390067145349],[-76.62490644825432,39.27389722224298],[-76.624900502126,39.27389433341908],[-76.62489413175966,39.27389189812572],[-76.62488762033067,39.27388962091594],[-76.62488122771779,39.27388722878751],[-76.62487467074557,39.27388501718726],[-76.62486806476724,39.27388286848365],[-76.62486180600827,39.27388036688846],[-76.62485626037268,39.27387713254741],[-76.62485128914381,39.27387331814732],[-76.62484664997365,39.27386916882268],[-76.62484216231147,39.27386485874511],[-76.62483764560622,39.27386056208608],[-76.62483292046126,39.27385645392139],[-76.62482805458714,39.27385244078801],[-76.62482312484636,39.27384845177098],[-76.62481797493417,39.27384467823379],[-76.62481244855044,39.27384131063904],[-76.62480657131434,39.27383832564864],[-76.62480051346117,39.27383552743985],[-76.62479432275755,39.27383286842471],[-76.62478804579214,39.27383030461471],[-76.62478173033161,39.27382778842182],[-76.6247754241235,39.27382527586124],[-76.62476912946181,39.27382277144404],[-76.62476263057178,39.27382053570243],[-76.62475608962416,39.27381836378036],[-76.62474974691605,39.27381596009417],[-76.6247438310938,39.27381304073309],[-76.62473816846462,39.27380979790566],[-76.62473260971485,39.27380641579144],[-76.62472714894065,39.27380291508921],[-76.62472177676131,39.27379931648648],[-76.62471648726812,39.27379564158277],[-76.62471127107565,39.27379191196646],[-76.6247061234389,39.27378814833993],[-76.62470113047235,39.2737842834211],[-76.62469640749134,39.27378020678447],[-76.62469183464997,39.27377600902429],[-76.62468728741882,39.27377178972745],[-76.62468264128303,39.27376764577848],[-76.6246778636653,39.273763601394],[-76.62467305115771,39.27375958031769],[-76.62466820258717,39.2737555852481],[-76.62466331678054,39.27375161888373],[-76.62465839141042,39.27374768301866],[-76.62465348009522,39.27374371927463],[-76.62464856885674,39.27373974111841],[-76.62464356677337,39.27373584824425],[-76.62463838410616,39.27373213584627],[-76.62463289618769,39.27372872963296],[-76.62462693419864,39.27372577679009],[-76.62462070176277,39.27372312303687],[-76.62461441877113,39.27372060603787],[-76.6246079569938,39.27371836770395],[-76.62460135236086,39.27371640724908],[-76.62459458800923,39.27371484532183],[-76.62458773923674,39.27371346868168],[-76.6245791518639,39.27372221467377],[-76.62457038876319,39.27373087993552],[-76.62456181525457,39.27373963317677],[-76.62455379782179,39.27374864221044],[-76.62454673876923,39.27375809478074],[-76.62454077338606,39.27376804806858],[-76.62453529586257,39.27377822720592],[-76.62452964258777,39.27378833011691],[-76.62452314993615,39.27379805742797],[-76.62451576010152,39.27380738283187],[-76.62450791587273,39.27381650861452],[-76.62449977103788,39.27382550012248],[-76.62449148054404,39.27383442270614],[-76.62448319470269,39.27384334170096],[-76.6244750522271,39.27385232420705],[-76.62446695243264,39.27386134378039],[-76.62445861583254,39.27387021757293],[-76.62444975951102,39.27387875371812],[-76.62444023092912,39.27388686975851],[-76.62443029458444,39.27389473408181],[-76.62442029245295,39.27390254685037],[-76.62441056766002,39.27391051003176],[-76.62440146912058,39.273918826513],[-76.62439473713685,39.27392844225734],[-76.62438857470281,39.27393839580761],[-76.62437984163545,39.27394707015848],[-76.62437060586727,39.27395547537401],[-76.6243640051875,39.27396502397912],[-76.62435974007036,39.27397559701617],[-76.62435590282401,39.27398634436824],[-76.62435068748481,39.27399646398379],[-76.62434318592933,39.27400565030153],[-76.62433469946195,39.27401458755987],[-76.62432540969837,39.27402311960677],[-76.62431542548326,39.27403104501897],[-76.62430485798392,39.27403816148009],[-76.62429299993688,39.27404365603997],[-76.62427963354358,39.2740475144901],[-76.62426592712798,39.27405102235454],[-76.62425283578334,39.27405524468935],[-76.62423995251177,39.27405978565806],[-76.62422707959695,39.27406434016999],[-76.62421411499518,39.27406870072284],[-76.62420096240012,39.27407267064202],[-76.62418765229037,39.27407662204042],[-76.62417420866909,39.27408039916269],[-76.624160598526,39.27408345153637],[-76.62414679001503,39.27408522779201],[-76.62413280734411,39.27408597121325],[-76.62411872220066,39.27408636931234],[-76.62410456452982,39.2740864573148],[-76.62409036659928,39.274086269553],[-76.62407615835407,39.2740858412525],[-76.62406196857579,39.27408520853595],[-76.62404782953666,39.27408440483499],[-76.62403377001812,39.27408346627227],[-76.62401976959552,39.27408209192737],[-76.62400584792454,39.2740798530995],[-76.62399214807273,39.27407687004843],[-76.62397881655559,39.27407326844945],[-76.62396614791912,39.27406857634465],[-76.62395399925794,39.27406286173476],[-76.62394180632228,39.27405719202001],[-76.62392900057738,39.27405213105973],[-76.62391549072092,39.27404653819421],[-76.62390205323382,39.27404390907212],[-76.62388923208988,39.27404656400175],[-76.62387650551784,39.27405039833283],[-76.62386381726934,39.27405487322839],[-76.62385116922391,39.27405985267911],[-76.62383856324706,39.27406520337792],[-76.62382600237254,39.27407079022001],[-76.62381348848037,39.274076477196],[-76.62380102575385,39.27408213100627],[-76.62378861490951,39.27408761653857],[-76.62377622245913,39.27409291116651],[-76.62376380443017,39.27409822102421],[-76.62375142424135,39.27410360666596],[-76.62373914998055,39.27410912235577],[-76.62372704741283,39.27411482325098],[-76.6237151823177,39.27412076180661],[-76.62370362276849,39.27412699498903],[-76.62369238571377,39.27413360482212],[-76.62368145674036,39.27414068674072],[-76.62367099814031,39.27414823225738],[-76.62366117572054,39.27415622568969],[-76.62365215990935,39.27416465407245],[-76.62364399831196,39.27417350044391],[-76.62363639798311,39.27418271612508],[-76.62362927470612,39.27419222878496],[-76.62362255933485,39.27420196524025],[-76.62361618503132,39.27421185411645],[-76.62361008497183,39.27422182133687],[-76.62360419693002,39.27423180004554],[-76.62359861435563,39.27424186980928],[-76.6235933648661,39.2742520676479],[-76.62358840456237,39.2742623672986],[-76.62358368837204,39.27427274519714],[-76.62357917240553,39.27428317327917],[-76.62357481274934,39.27429362798412],[-76.6235706453291,39.27430410942717],[-76.62356689112507,39.27431468767534],[-76.62356343553152,39.27432533894159],[-76.6235601246167,39.27433602490043],[-76.62355680674759,39.27434671083684],[-76.62355332914157,39.27435736023062],[-76.62354959571572,39.27436795295697],[-76.62354560646524,39.27437848991656],[-76.62354129892447,39.27438894929089],[-76.62353670893295,39.27439934740852],[-76.62353195571306,39.27440971167442],[-76.62352715502985,39.2744200658796],[-76.62352242150357,39.27443043110898],[-76.62351787438563,39.27444082936319],[-76.62351362712334,39.27445128442572],[-76.62350979780919,39.2744618182935],[-76.62350694682677,39.2744725309462],[-76.62350507996619,39.27448342330315],[-76.62350356620442,39.27449438524997],[-76.6235017756911,39.2745053039737],[-76.62349936915707,39.27451612434093],[-76.62349672289369,39.27452691331359],[-76.62349400830249,39.27453769305952],[-76.62349138635996,39.27454848481229],[-76.62348941129714,39.27455945608908],[-76.62348829035589,39.2745706453865],[-76.62348266608811,39.27458004664346],[-76.62347087809295,39.27458672494815],[-76.62345773047386,39.27459060472349],[-76.62344371137159,39.27458967612856],[-76.62342968379357,39.27458772423712],[-76.62341575587182,39.27458577446507],[-76.62340190596777,39.27458353669712],[-76.6233882664758,39.27458074022792],[-76.62337474774068,39.27457746403724],[-76.62336140291397,39.27457373802081],[-76.62334841924257,39.274569437573],[-76.62333600921404,39.27456426792484],[-76.62332417652543,39.27455818765314],[-76.62331271090385,39.27455172933602],[-76.62330107943332,39.27454529480643],[-76.62328996142854,39.27453841154068],[-76.62328047300527,39.27453040934749],[-76.62327208019849,39.27452166933912],[-76.62326403755043,39.27451268004098],[-76.62325626594541,39.27450349974897],[-76.62324868625818,39.27449418856057],[-76.62324121936341,39.27448480657308],[-76.62323378266407,39.27447541297201],[-76.62322629934786,39.27446606876294],[-76.62321835197415,39.27445681764487],[-76.62321098541227,39.2744473116718],[-76.62320738704361,39.27443682604611],[-76.62320551472105,39.27442538754494],[-76.62320664200749,39.27441432077385],[-76.62321196904558,39.27440459069801],[-76.62321896768437,39.27439499389292],[-76.62322704097409,39.27438555096231],[-76.62323599397341,39.27437652610533],[-76.62324563176013,39.27436817991791],[-76.62325575591181,39.27436077748879],[-76.62326715215184,39.27435563194956],[-76.62328145668391,39.27435430506785],[-76.62329630491563,39.27435338256966],[-76.62331024716605,39.27435044125443],[-76.62332489383786,39.27434731844085],[-76.62333882000276,39.27434347720759],[-76.62335031708925,39.27433810769346],[-76.62335783838159,39.27433025553413],[-76.62336157646487,39.27431966372941],[-76.6233627634544,39.27430782429263],[-76.62336264367296,39.27429633106244],[-76.62336095643296,39.27428517149288],[-76.623357541999,39.27427365418581],[-76.62335353666616,39.27426210976223],[-76.62335007555552,39.27425087154193],[-76.62334829379215,39.27424027194404],[-76.62334932881835,39.27423064339512],[-76.62335495967012,39.27422240144785],[-76.62336597903308,39.27421576572762],[-76.62338010167566,39.27421049200411],[-76.62339495551288,39.27420632405924],[-76.62340871189977,39.27420324071637],[-76.62342342118453,39.27420228893222],[-76.62343875489073,39.2742024723092],[-76.62345365886222,39.27420239578721],[-76.62346707661445,39.27420066610075],[-76.62347799430182,39.2741959351596],[-76.62348666461594,39.27418841185109],[-76.6234937767838,39.27417903067569],[-76.62349977801399,39.27416847134248],[-76.62350511203856,39.27415741354923],[-76.62351022490247,39.27414653790187],[-76.62351559336737,39.27413619632582],[-76.62352092016833,39.27412540693623],[-76.62352450110731,39.274114502057],[-76.62352453349848,39.27410402897893],[-76.62352038140823,39.27409414870181],[-76.6235135344933,39.27408455613759],[-76.62350539475695,39.27407508463482],[-76.62349736417806,39.27406557204629],[-76.62349055602841,39.27405588232236],[-76.62348413196439,39.2740461010506],[-76.6234778008233,39.27403628044274],[-76.62347148361457,39.2740264553754],[-76.62346509556254,39.27401665890497],[-76.62345855884026,39.27400692501104],[-76.62345201552502,39.27399712353819],[-76.62344580763417,39.27398700967459],[-76.62343957201305,39.27397688040868],[-76.6234329152615,39.27396705425041],[-76.62342544396992,39.27395785151103],[-76.62341676357445,39.27394959159723],[-76.62340612329587,39.2739428936286],[-76.62339368727778,39.27393761851253],[-76.62338046241574,39.2739329290644],[-76.62336745908704,39.27392798721051],[-76.62335568535627,39.2739219539694],[-76.62334552203409,39.2739144810662],[-76.62333622652966,39.27390617323467],[-76.62332741789872,39.27389740397124],[-76.62331872218384,39.27388854048903],[-76.6233097630905,39.27387995359668],[-76.62330016782016,39.27387201051101],[-76.62328949740775,39.27386509895386],[-76.62327733560033,39.27385947610909],[-76.6232641781925,39.27385496431461],[-76.6232506255317,39.27385133850322],[-76.62323708869437,39.27384844326064],[-76.62322329889564,39.27384626331236],[-76.62320931537089,39.27384455564208],[-76.62319524382075,39.27384305666494],[-76.62318118529161,39.27384150638436],[-76.62316723028044,39.27383966728897],[-76.62315312835135,39.27383799706416],[-76.62313885467965,39.27383658750814],[-76.6231245425262,39.27383522286506],[-76.62311033094628,39.27383368739788],[-76.62310283832313,39.27383265629992],[-76.62309635436944,39.27383176355302],[-76.62308275068763,39.2738292364906],[-76.6230696566485,39.2738258886646],[-76.62305726524805,39.27382138561051],[-76.62304576386526,39.27381535951737],[-76.62303494760495,39.27380820336177],[-76.62302457880713,39.27380036946527],[-76.62301441865755,39.27379230924503],[-76.6230042318136,39.27378447502998],[-76.62299391229526,39.27377696466315],[-76.62298362556758,39.2737693904464],[-76.62297347622199,39.27376169776894],[-76.62296356766691,39.27375383651988],[-76.62295400331566,39.27374575568782],[-76.62294488773071,39.27373740606638],[-76.62293652418856,39.27372841841544],[-76.62292900300001,39.27371859035313],[-76.62292191251422,39.27370840336748],[-76.62291484105167,39.27369834435095],[-76.62290737346102,39.27368889928391],[-76.62289909689913,39.2736805559557],[-76.62288959038193,39.27367380753383],[-76.62287736710746,39.27367103987181],[-76.62286268540323,39.27367183674453],[-76.62284729812323,39.27367325107532],[-76.62283294755971,39.27367236097586],[-76.62281961887855,39.27366912316222],[-76.62280654312137,39.27366496017386],[-76.62279362078795,39.27366027703522],[-76.62278075351739,39.27365548237718],[-76.62276787719294,39.27365086513922],[-76.62275526644071,39.27364555966829],[-76.622742729466,39.27364011031075],[-76.62272992822497,39.27363554014951],[-76.62271653655885,39.27363281645801],[-76.62270268960623,39.27363115240248],[-76.62268859674607,39.27362996586105],[-76.62267435296805,39.27362926434492],[-76.62266004978486,39.27362905535416],[-76.62264578218617,39.27362934640003],[-76.62263164052585,39.27363014497897],[-76.62261766674844,39.27363140888993],[-76.6226036190221,39.27363284911134],[-76.62258949287892,39.27363443410212],[-76.62257533343362,39.27363617932017],[-76.62256118463723,39.27363810112046],[-76.62254709044093,39.27364021585809],[-76.62253309595461,39.27364253989175],[-76.6225192451341,39.27364508867571],[-76.62250558193057,39.27364787856507],[-76.6224921502901,39.27365092681567],[-76.62247899649125,39.27365424798856],[-76.62246631510014,39.27365808411405],[-76.62245613040838,39.27366532414443],[-76.62244787305067,39.27367494388291],[-76.62244002626511,39.2736845027879],[-76.6224365364543,39.27368957998539],[-76.62243335264701,39.27369421138752],[-76.62242857618836,39.2737045656282],[-76.62242447346361,39.27371505985148],[-76.62242063687289,39.27372563149515],[-76.62241689977706,39.27373623498524],[-76.6224130990135,39.27374682475903],[-76.62240906910662,39.2737573543456],[-76.62240469431678,39.27376779544902],[-76.62240006951392,39.27377817809963],[-76.62239530119527,39.27378852515879],[-76.62239049352593,39.2737988621828],[-76.62238575067592,39.27380921382726],[-76.62238117798856,39.27381960204912],[-76.62237687962906,39.27383005240476],[-76.62237297482355,39.2738405913997],[-76.62236952955651,39.27385123275759],[-76.62236640839704,39.2738619463178],[-76.62236346434453,39.27387269827948],[-76.62236055154256,39.27388345754761],[-76.6223575218411,39.2738941885161],[-76.62235448867642,39.27390491677104],[-76.62235155275162,39.27391566515531],[-76.62234862725111,39.27392641447382],[-76.62234562187301,39.27393714732158],[-76.62234244631529,39.27394784629378],[-76.62233901492593,39.27395849129815],[-76.62233571941138,39.27396930067835],[-76.62233263846565,39.27398029540502],[-76.62232926480043,39.27399119911393],[-76.62232509345921,39.27400173274591],[-76.62231961832173,39.27401161813891],[-76.62231234127904,39.27402059607243],[-76.62230320771451,39.27402869429418],[-76.62229274712212,39.27403615410974],[-76.62228152606144,39.27404322054718],[-76.62227011109199,39.27405013863458],[-76.62225905951681,39.27405715066833],[-76.62224689059703,39.27406332139681],[-76.62223447747779,39.27406921210176],[-76.62222509500454,39.27407682400498],[-76.62221912327162,39.27408637991776],[-76.62221451284066,39.2740966662247],[-76.62221065572,39.27410738371821],[-76.62220694508143,39.27411823229348],[-76.62220277177396,39.27412891273907],[-76.62219755902308,39.27413913945884],[-76.62219163388735,39.27414908374924],[-76.62218535821596,39.27415891251466],[-76.62217882108499,39.27416865576684],[-76.62217211274844,39.27417833991821],[-76.62216532460023,39.27418799498799],[-76.62215854456718,39.27419764918269],[-76.62215185826803,39.27420732889991],[-76.62214518240661,39.27421700684879],[-76.62213846606862,39.27422666845331],[-76.62213171387518,39.27423631643058],[-76.62212493393369,39.27424595170748],[-76.62211813086537,39.27425557700118],[-76.6221113116043,39.27426519593701],[-76.62210448193534,39.2742748103351],[-76.6220976430174,39.27428442019922],[-76.62209075206752,39.27429400737636],[-76.62208381255269,39.2743035736793],[-76.6220768545369,39.27431313181533],[-76.62206990345341,39.27432269357634],[-76.62206298705802,39.27433226986076],[-76.62205613540033,39.27434187607825],[-76.62204981459745,39.2743521208437],[-76.62204380023942,39.27436270798442],[-76.6220372994398,39.27437258555899],[-76.6220295193073,39.27438070252652],[-76.62201534517123,39.27438278181334],[-76.62200314173039,39.27437736227613],[-76.62199450280944,39.27436742967281],[-76.6219913628114,39.27435664823216],[-76.62199549750081,39.27434713415965],[-76.62200292378766,39.2743377829097],[-76.62201167938764,39.27432842332666],[-76.62201981819861,39.27431889241446],[-76.62202631610221,39.27430912292303],[-76.62203257217016,39.27429928239337],[-76.62203870798042,39.27428939103365],[-76.6220447466486,39.27427946062808],[-76.62205071246328,39.27426950026251],[-76.62205663201672,39.27425952173252],[-76.62206252727015,39.27424953591788],[-76.62206842482533,39.27423955281262],[-76.62207436400772,39.27422958695551],[-76.62208037956954,39.2742196411606],[-76.62208642290467,39.2742097026609],[-76.6220924431083,39.27419975507878],[-76.62209838811198,39.27418978293372],[-76.62210420583774,39.27417977254677],[-76.62210984654457,39.2741697066433],[-76.62211525699568,39.27415957154067],[-76.62212039322533,39.274149353586],[-76.62212534780548,39.27413907919927],[-76.62213017858474,39.27412876658193],[-76.62213489945053,39.27411841938168],[-76.6221395242808,39.27410804304778],[-76.62214406928079,39.27409764123549],[-76.62214854601069,39.27408721938657],[-76.62215297066608,39.27407678295769],[-76.62215735829338,39.27406633560031],[-76.62216172045267,39.27405588275622],[-76.62216607334911,39.27404542808062],[-76.62217043201476,39.27403497792721],[-76.62217480802407,39.27402453503552],[-76.62217922107324,39.27401410036966],[-76.62218366191043,39.27400367029683],[-76.62218811548925,39.27399324116553],[-76.62219256675854,39.27398281022511],[-76.62219700066721,39.27397237472481],[-76.62220140101012,39.27396193100946],[-76.62220575273136,39.27395147722913],[-76.62221004078931,39.27394100883163],[-76.62221425012827,39.27393052396692],[-76.62221836453814,39.27392001988069],[-76.62222237013161,39.27390949292517],[-76.62222625069867,39.27389894034597],[-76.62222999118832,39.27388835939232],[-76.62223357655432,39.27387774641287],[-76.62223701026853,39.27386710231955],[-76.62224031201296,39.27385643077866],[-76.62224350146938,39.27384573545667],[-76.62224659599717,39.2738350209132],[-76.62224961643706,39.2738242908183],[-76.62225258015307,39.27381354883097],[-76.62225550682719,39.2738027986175],[-76.62225841613635,39.27379204474504],[-76.62226132544457,39.27378129087244],[-76.62226425559268,39.27377054066983],[-76.62226722394459,39.27375979779611],[-76.62227025017734,39.27374906681834],[-76.6222733539727,39.27373835140291],[-76.62227655501243,39.27372765521618],[-76.6222798833891,39.27371698556099],[-76.62228345720285,39.27370636263401],[-76.62228723592648,39.27369577999941],[-76.6222911408375,39.27368522209116],[-76.62229509668533,39.27367467425497],[-76.62229902706059,39.27366412183286],[-76.62230285208692,39.27365354835423],[-76.6223064988268,39.27364294007309],[-76.6223098550368,39.27363226510175],[-76.62231280516482,39.27362146001513],[-76.62231549957757,39.27361057934269],[-76.62231811293506,39.27359968579883],[-76.62232082220542,39.27358884390679],[-76.62232379856222,39.27357811817139],[-76.62232722013702,39.27356757221882],[-76.62233140033852,39.27355732866001],[-76.62234130792058,39.2735494599166],[-76.62235224076933,39.27354209349229],[-76.62236383016622,39.27353504714772],[-76.62237369649056,39.2735273079789],[-76.62237933771245,39.27351778162022],[-76.62238289596613,39.2735072469145],[-76.62238510693098,39.27349618092993],[-76.62238635344207,39.27348494430225],[-76.6223870125591,39.2734738940457],[-76.62238697915063,39.27346296857029],[-76.6223862528777,39.27345201384427],[-76.62238509211259,39.27344104150746],[-76.62238375639595,39.273430061402],[-76.62238191587628,39.27341267704202],[-76.62238114297956,39.27340721682714],[-76.6223804327006,39.27340174960744],[-76.622379749095,39.27339627887041],[-76.62237905505488,39.2733908090006],[-76.62237831346742,39.27338534528324],[-76.62237748838352,39.2733798921066],[-76.62237654384927,39.27337445475965],[-76.6223754416075,39.27336903582161],[-76.62237420484044,39.27336363446634],[-76.62237292517128,39.27335823747691],[-76.62237160607174,39.27335284576527],[-76.62237025102334,39.27334745844184],[-76.62236886466634,39.27334207462079],[-76.62236745047261,39.27333669521402],[-76.6223660119331,39.27333131753049],[-76.62236455367382,39.27332594338656],[-76.62236307802198,39.27332057098819],[-76.62236159076728,39.27331520125482],[-76.62236009307819,39.27330983238857],[-76.62235858959008,39.27330446440446],[-76.62235708610226,39.27329909642032],[-76.62235558376871,39.27329372934066],[-76.62235408723453,39.27328836137884],[-76.62235259997161,39.27328299344677],[-76.62235117191213,39.27327760678897],[-76.62234983092185,39.27327219158668],[-76.62234855610261,39.27326675497882],[-76.62234732424332,39.27326130319607],[-76.62234611328239,39.2732558442744],[-76.62234490117233,39.27325038354744],[-76.62234366584184,39.27324493085272],[-76.62234238408944,39.2732394906194],[-76.62234103384876,39.27323407178416],[-76.62233959422637,39.27322868058515],[-76.62233804084774,39.27322332415015],[-76.6223363516558,39.27321800961431],[-76.62233450574792,39.27321274501726],[-76.6223324799177,39.27320753568906],[-76.62233025210364,39.27320238966551],[-76.62232779908503,39.27319731497889],[-76.62232508610545,39.27319230971587],[-76.62232212477274,39.27318737031069],[-76.62231894060612,39.2731824923416],[-76.62231555796603,39.27317767138306],[-76.62231200352561,39.27317290391781],[-76.62230829933227,39.27316818461215],[-76.62230447321814,39.27316350995246],[-76.62230054722578,39.27315887550585],[-76.62229654803319,39.27315427685423],[-76.62229250115954,39.27314970957592],[-76.62228842980151,39.27314517014239],[-76.622284359483,39.27314065323114],[-76.62228031571837,39.27313615532118],[-76.62227618931949,39.27313172380192],[-76.6222716898925,39.27312748474708],[-76.62226686265258,39.27312343469901],[-76.62226177368416,39.27311956846559],[-76.62225648560944,39.27311587814138],[-76.62225105988692,39.27311235671788],[-76.62224553037328,39.27310895746425],[-76.62223990422308,39.27310564257131],[-76.62223420005981,39.27310239678607],[-76.62222843418914,39.2730992048479],[-76.62222262523457,39.27309605150375],[-76.62221679066545,39.27309292059597],[-76.62221094678272,39.27308979776484],[-76.62220511337831,39.27308666595948],[-76.62219930558945,39.27308351171711],[-76.62219354320811,39.27308031798687],[-76.62218784253041,39.27307707130981],[-76.62218222103529,39.27307375372676],[-76.62217669617782,39.27307035178248],[-76.62217128658145,39.27306685022393],[-76.62216600740258,39.2730632319853],[-76.62216083183858,39.27305952490413],[-76.62215573079776,39.27305575140589],[-76.62215069496121,39.27305192046834],[-76.62214572083791,39.27304803478246],[-76.62214080026783,39.2730441033297],[-76.62213592744219,39.27304012879362],[-76.62213109652349,39.27303611926236],[-76.62212629937562,39.27303207921356],[-76.62212153017074,39.27302801493387],[-76.62211678192678,39.27302393180533],[-76.62211204997469,39.27301983611833],[-76.6221073261688,39.27301573415196],[-76.62210260353676,39.27301162948689],[-76.62209787739987,39.27300753021496],[-76.62209314077612,39.27300344171825],[-76.62208838668829,39.27299936847815],[-76.62208360814968,39.27299531677748],[-76.62207880630945,39.27299128842155],[-76.62207408824898,39.27298719638071],[-76.62206944930398,39.2729830460446],[-76.62206483012744,39.27297888316119],[-76.62206017022316,39.2729747516733],[-76.62205540907563,39.27297069912663],[-76.62205048850146,39.27296677037226],[-76.62204540850077,39.27296296541007],[-76.62204024355296,39.27295922593007],[-76.62203501111298,39.27295553847696],[-76.6220297286215,39.27295189229769],[-76.62202441006654,39.2729482721243],[-76.62201907288861,39.27294466720371],[-76.62201373454756,39.27294106317989],[-76.62200841016629,39.27293744929234],[-76.62200311604565,39.27293381118132],[-76.62199785919169,39.27293013896093],[-76.62199262914581,39.27292643800214],[-76.62198741542059,39.27292271908036],[-76.62198220869232,39.27291899207395],[-76.62197699963723,39.27291526686138],[-76.62197177775839,39.27291155601951],[-76.62196653605938,39.2729078676327],[-76.62196126288912,39.27290421337344],[-76.62195595007796,39.2729006040245],[-76.62195058830693,39.27289704856362],[-76.62194516708381,39.27289355866688],[-76.62193936460794,39.27289049990953],[-76.62193296290877,39.27288810849082],[-76.62192663596788,39.27288560651839],[-76.62192531123672,39.27288497712355],[-76.62192060762685,39.27288274339965],[-76.62191459098544,39.27287985960062],[-76.62190858487027,39.27287695781993],[-76.6219025892766,39.27287403895826],[-76.62189660070864,39.27287110660743],[-76.6218906214841,39.27286816077488],[-76.62188464811196,39.27286520415177],[-76.62187868174638,39.27286223764245],[-76.62187271889626,39.27285926393799],[-76.62186675955685,39.27285628393922],[-76.62186080371859,39.27285329944758],[-76.62185485021769,39.27285031136014],[-76.62184889671734,39.27284732327237],[-76.62184294205385,39.27284433608129],[-76.62183698738119,39.27284135069143],[-76.62183103036733,39.27283836979753],[-76.62182506984377,39.27283539519737],[-76.62181910465164,39.27283242688726],[-76.6218131347717,39.27282946847013],[-76.62180715903553,39.27282652174375],[-76.62180546107298,39.27282568847374],[-76.62180117512538,39.2728235867007],[-76.6217951841857,39.27282066604693],[-76.62178918273034,39.27281776157275],[-76.62178317190849,39.27281487508339],[-76.62177714939762,39.2728120074721],[-76.62177111518335,39.27280916144117],[-76.62176506810201,39.2728063378876],[-76.62175900582139,39.27280353950613],[-76.62175292833678,39.27280076719758],[-76.62174683564339,39.27279802186262],[-76.62174072540415,39.27279530709685],[-76.6217345964555,39.27279262379727],[-76.62172844879257,39.27278997286457],[-76.6217222812373,39.2727873578981],[-76.62171609147674,39.27278477798955],[-76.62170987245688,39.27278225203226],[-76.62170351657751,39.27277996433642],[-76.62169700978342,39.27277794278032],[-76.6216903731502,39.2727761468975],[-76.62168363006161,39.2727745380304],[-76.62167680159334,39.27277307571245],[-76.62166991112908,39.27277172128611],[-76.62166298090352,39.27277043428858],[-76.62165603081894,39.27276917695194],[-76.62164908543258,39.2727679079201],[-76.62164216580562,39.27276658942873],[-76.62163529301385,39.27276518101144],[-76.62162849160002,39.27276364401437],[-76.62162175924641,39.2727619784301],[-76.62161503393278,39.2727602966544],[-76.62160831098528,39.27275860587827],[-76.62160159157709,39.27275690340323],[-76.62159487803081,39.27275518833598],[-76.62158817036082,39.27275345797431],[-76.62158147089934,39.27275170962338],[-76.62157477964628,39.27274994328324],[-76.6215680989435,39.2727481544576],[-76.62156142879086,39.27274634314644],[-76.62155477268433,39.27274450575803],[-76.62154812946977,39.27274264138784],[-76.62154150263822,39.27274074734483],[-76.62153488988638,39.27273882091932],[-76.62152829242109,39.27273685310751],[-76.62152171142056,39.27273484031021],[-76.62151515385234,39.27273277984752],[-76.62150862321224,39.27273066812767],[-76.62150212415018,39.27272850246334],[-76.62149566016681,39.27272627836206],[-76.62148923822967,39.2727239931439],[-76.62148419193427,39.27272213391667],[-76.62148286067581,39.27272164321344],[-76.62147656140539,39.27271917373327],[-76.62147040828611,39.27271646241815],[-76.62146435454535,39.27271358748389],[-76.62145834520713,39.27271064423437],[-76.62145232529548,39.27270772797338],[-76.62144623983436,39.27270493400478],[-76.62144003616541,39.27270235763979],[-76.62143365134953,39.27270006623287],[-76.6214269860313,39.27269778473065],[-76.62142011501776,39.27269561065673],[-76.62141316094257,39.27269380022345],[-76.62140951265361,39.27269317143965],[-76.62139134840608,39.27244859948951],[-76.62139230555697,39.27244470586812],[-76.62139354660533,39.27243929717537],[-76.62139468909281,39.27243389897401],[-76.62139559299429,39.27242847388138],[-76.62139626991291,39.27242301923258],[-76.62139676848244,39.27241754239049],[-76.62139713618721,39.27241204891274],[-76.62139741818925,39.27240654525032],[-76.62139766312696,39.27240103786536],[-76.62139791616697,39.27239553230802],[-76.62139822594305,39.2723900359412],[-76.62139861562265,39.27238455064114],[-76.62139895435085,39.27237905797071],[-76.6213992282262,39.27237355698431],[-76.6213994534678,39.27236804863504],[-76.62139964859831,39.27236253658562],[-76.62139982866843,39.27235702358687],[-76.62140001453278,39.27235151060681],[-76.62140022123256,39.27234600219769],[-76.62140046614581,39.2723404993164],[-76.62140076895388,39.27233500562932],[-76.6214011447171,39.27232952208585],[-76.62140161195313,39.27232405324944],[-76.62140218804002,39.27231860007688],[-76.6214028903415,39.27231316622728],[-76.62140373623063,39.27230775355812],[-76.62140485654785,39.27230238320871],[-76.62140666349563,39.27229712226364],[-76.62140900308518,39.27229194410432],[-76.62141165879731,39.272286812903],[-76.62141441063653,39.27228169282056],[-76.62141704325728,39.27227654533088],[-76.62141933897217,39.27227133640392],[-76.62142117853912,39.27226604313624],[-76.62142286183787,39.2722607160365],[-76.62142443981978,39.27225536247504],[-76.62142592055834,39.27224998968415],[-76.62142731563263,39.27224459950249],[-76.62142863544828,39.27223919646753],[-76.6214298892473,39.27223378601364],[-76.62143108860394,39.27222837088046],[-76.621432242765,39.27222295560153],[-76.62143335987612,39.27221753389782],[-76.62143442837758,39.27221210032749],[-76.6214354285592,39.27220665662852],[-76.62143634187453,39.27220120364186],[-76.62143714976742,39.27219574401005],[-76.62143783485993,39.27219027677629],[-76.62143837744192,39.27218480367858],[-76.62143876822807,39.27217932738928],[-76.62143907791834,39.27217384633474],[-76.62143933431081,39.2721683633069],[-76.62143954204089,39.27216287832064],[-76.62143970806656,39.27215739049765],[-76.6214398393362,39.27215190076112],[-76.62143994279808,39.27214641003418],[-76.62144002309242,39.272140917431],[-76.62144008948528,39.27213542388228],[-76.62144014544847,39.27212993029989],[-76.62144019909398,39.27212443671007],[-76.62144025622081,39.27211894223066],[-76.62144032493136,39.27211344868937],[-76.62144040870702,39.2721079551966],[-76.62144051681385,39.27210246268304],[-76.62144065388712,39.27209697116357],[-76.62144082687534,39.27209148156141],[-76.62144105432003,39.27208599393628],[-76.62144134897825,39.27208050652782],[-76.62144169578004,39.27207502018814],[-76.62144207734738,39.27206953396055],[-76.62144247745633,39.2720640477927],[-76.6214428798781,39.27205856253306],[-76.62144326955249,39.27205307723229],[-76.62144362793771,39.27204759183069],[-76.62144393997355,39.27204210537894],[-76.62144418942644,39.27203661962618],[-76.62144436008687,39.27203113181793],[-76.62144443455767,39.27202564460043],[-76.62144440474128,39.27202015524521],[-76.62144434131335,39.2720146666824],[-76.62144426977824,39.27200917719271],[-76.62144418896752,39.2720036885739],[-76.62144409889078,39.27199819902442],[-76.62144400185619,39.27199271035325],[-76.62144389555557,39.27198722075148],[-76.62144378230184,39.27198173112725],[-76.62144366209499,39.27197624148062],[-76.62144353493029,39.27197075271231],[-76.62144340081724,39.27196526302084],[-76.62144326090997,39.27195977331072],[-76.62144311520849,39.27195428358189],[-76.62144296487165,39.27194879383809],[-76.62144280874053,39.27194330407561],[-76.62144264797404,39.27193781429817],[-76.62144248257212,39.2719323245058],[-76.62144231368892,39.27192683560295],[-76.62144214017516,39.27192134578441],[-76.62144196434365,39.27191585595837],[-76.62144178503564,39.27191036612114],[-76.62144160341001,39.27190487627644],[-76.62144141946668,39.27189938642422],[-76.62144123321045,39.27189389566381],[-76.62144104579062,39.27188840580039],[-76.62144085721198,39.27188291593324],[-76.62144066747447,39.27187742606231],[-76.62144047657817,39.27187193618766],[-76.62144028684074,39.27186644631674],[-76.62144009594449,39.27186095644206],[-76.62143990620716,39.27185546657112],[-76.62143971762865,39.2718499767039],[-76.62143953020905,39.2718444868404],[-76.6214393439483,39.27183899698063],[-76.62143916000531,39.27183350712833],[-76.62143897838008,39.27182801728348],[-76.62143879907254,39.2718225274461],[-76.62143862208269,39.27181703761618],[-76.6214384497283,39.27181154780119],[-76.62143827969167,39.2718060579937],[-76.62143811544929,39.27180056820484],[-76.62143788415905,39.27179265784535],[-76.62143849278276,39.27178718676139],[-76.62143908403324,39.27178171381993],[-76.62143965791053,39.27177623902093],[-76.6214402190452,39.27177076328002],[-76.62144076975494,39.27176528660478],[-76.62144131120338,39.27175980809813],[-76.62144184685752,39.27175432957282],[-76.621442377881,39.2717488501318],[-76.6214429077455,39.27174337068704],[-76.62144343760518,39.27173789214299],[-76.62144397094609,39.27173241270938],[-76.62144451007156,39.27172693509596],[-76.62144505615005,39.27172145750493],[-76.62144561265323,39.27171598084827],[-76.6214461818941,39.27171050603417],[-76.62144676619511,39.27170503216934],[-76.62144736786911,39.27169956016208],[-76.62144798807017,39.27169409091678],[-76.62144863143848,39.27168862354766],[-76.62144929796918,39.27168315895551],[-76.6214499923026,39.27167769625447],[-76.62145071442897,39.27167223724606],[-76.62145146782488,39.27166678194151],[-76.62145225597175,39.27166132945123],[-76.62145308002344,39.27165588067972],[-76.62145394113418,39.27165043653148],[-76.62145482659973,39.27164498885864],[-76.62145571792188,39.27163952949474],[-76.62145661971675,39.27163406205767],[-76.62145754240437,39.2716285883826],[-76.62145849059611,39.2716231129882],[-76.62145947354823,39.27161763860658],[-76.62146049819953,39.2716121679624],[-76.62146157264256,39.27160670468481],[-76.62146270149358,39.27160125239173],[-76.62146389517252,39.27159581291827],[-76.62146515829562,39.27159038988239],[-76.62146650127308,39.27158498692068],[-76.62146792872603,39.27157960675034],[-76.62146944874709,39.27157425300047],[-76.62147106943374,39.27156892839957],[-76.6214727977198,39.27156363657286],[-76.62147464054871,39.27155837934444],[-76.62147660484953,39.2715531612403],[-76.62147884453249,39.27154802329095],[-76.62148160842244,39.27154302755038],[-76.62148480277779,39.27153815029646],[-76.62148832114814,39.27153336056013],[-76.62149206169914,39.27152863099022],[-76.62149591565314,39.27152393241165],[-76.62149978119021,39.27151923477101],[-76.62150355184086,39.27151451070233],[-76.62150712346759,39.27150973014467],[-76.62151039075965,39.27150486573582],[-76.6215132472668,39.27149988650664],[-76.62151565714183,39.2714947779295],[-76.62151786814198,39.2714895849403],[-76.62151991842289,39.27148432387575],[-76.62152180214213,39.27147900372467],[-76.62152351924212,39.27147363529608],[-76.62152506735724,39.27146822759003],[-76.62152644296293,39.27146278960281],[-76.62152764252978,39.27145733123143],[-76.62152866600502,39.27145186238413],[-76.62152950985926,39.27144639295803],[-76.62153017056811,39.27144093194936],[-76.62153064809301,39.2714354865641],[-76.62153094949285,39.27143003700824],[-76.62153109102991,39.27142457612799],[-76.62153109239493,39.2714191057884],[-76.62153096748928,39.27141362693501],[-76.62153073484971,39.27140814052829],[-76.62153041068551,39.27140264932284],[-76.62153001122061,39.27139715337088],[-76.62152955383286,39.2713916536292],[-76.62152905589531,39.2713861519553],[-76.6215285336269,39.27138064930222],[-76.62152800323707,39.2713751484245],[-76.62152748211329,39.27136964847737],[-76.62152698762857,39.27136415131839],[-76.6215265359922,39.27135865970202],[-76.62152614343287,39.27135317277991],[-76.62152574275211,39.27134768763307],[-76.62152527602217,39.2713422013727],[-76.62152475484119,39.2713367122345],[-76.62152418731142,39.27133122204614],[-76.62152358269877,39.27132573173829],[-76.6215229526013,39.27132023954677],[-76.6215223051165,39.27131474819998],[-76.62152165068356,39.27130925593],[-76.62152099856362,39.27130376456824],[-76.62152035802738,39.27129827414454],[-76.62151973949959,39.27129278559332],[-76.62151915110178,39.27128729713917],[-76.62151860440792,39.2712818115217],[-76.62151810869355,39.27127632787001],[-76.62151767206576,39.27127084711107],[-76.62151730611772,39.27126536838139],[-76.62151701895166,39.27125989350866],[-76.62151682215598,39.27125442253017],[-76.62151672268378,39.27124895546843],[-76.62151673211855,39.27124349326143],[-76.62151685973581,39.27123803503836],[-76.62151711480151,39.27123258172979],[-76.6215174904009,39.27122712610737],[-76.62151797960991,39.27122166274421],[-76.62151857661971,39.27121619432388],[-76.62151928025234,39.27121072444558],[-76.62152008586759,39.27120525399513],[-76.62152099345097,39.2711997856748],[-76.62152199719391,39.27119432216822],[-76.62152236261959,39.27119251190793],[-76.62152309709155,39.27118886437603],[-76.6215242873257,39.27118341678334],[-76.62152556673257,39.27117798028723],[-76.62152693182135,39.27117255757861],[-76.62152838026465,39.27116715045165],[-76.62152990857155,39.27116176159728],[-76.62153151440994,39.27115639371037],[-76.62153319429363,39.27115104858111],[-76.6215349447366,39.27114572799986],[-76.62153676456064,39.2711404355659],[-76.62153865144334,39.27113517217243],[-76.62154067718944,39.27112994615777],[-76.62154286961102,39.2711247576115],[-76.62154521250351,39.27111960287839],[-76.6215476873495,39.27111447739492],[-76.62155028026216,39.27110937751318],[-76.62155297271437,39.27110430047136],[-76.62155574734767,39.27109924170949],[-76.62155858795748,39.27109419757241],[-76.62156147833927,39.27108916440486],[-76.62156439997085,39.27108413854398],[-76.6215673378113,39.27107911543757],[-76.62157027449253,39.27107409232733],[-76.62157319381477,39.2710690646573],[-76.62157607725588,39.27106402876466],[-76.62157890860651,39.2710589818949],[-76.62158167167183,39.27105391859131],[-76.62158435949884,39.27104883883145],[-76.62158706236626,39.27104376362379],[-76.62158980226808,39.27103869754306],[-76.62159256762546,39.27103363875037],[-76.62159535150464,39.27102858362039],[-76.62159814463493,39.27102353212317],[-76.62160093892844,39.27101847972887],[-76.62160372627814,39.2710134255106],[-76.62160649626414,39.27100836763326],[-76.62160924311137,39.27100330247514],[-76.6216119552364,39.27099822909821],[-76.62161462570536,39.27099314387709],[-76.62161724525235,39.27098804588111],[-76.62161980693885,39.27098293238568],[-76.6216223003497,39.27097780065488],[-76.62162471738266,39.27097264886115],[-76.6216270487767,39.27096747517309],[-76.62162928875203,39.27096227686982],[-76.62163144424733,39.27095705667597],[-76.62163352799534,39.27095181733486],[-76.6216355446218,39.27094656066293],[-76.62163750338789,39.27094128849158],[-76.6216394100733,39.27093600354169],[-76.62164127163106,39.27093070583561],[-76.62164309499502,39.27092539899885],[-76.62164488827224,39.27092008395825],[-76.62164665840606,39.2709147625377],[-76.62164841002233,39.27090943655364],[-76.6216501535409,39.27090410784113],[-76.62165189242862,39.27089877821296],[-76.62165363710548,39.27089344950413],[-76.62165539219718,39.27088812353114],[-76.62165716696482,39.27088280212531],[-76.62165896603406,39.27087748710308],[-76.62166079750716,39.27087218029211],[-76.62166266832757,39.27086688351624],[-76.62166458543382,39.27086159950016],[-76.6216665557789,39.27085632826626],[-76.62166858630142,39.27085107253915],[-76.62167068510362,39.2708458341465],[-76.6216728071158,39.27084058952325],[-76.62167492228033,39.270835325061],[-76.6216770433155,39.27083004620544],[-76.62167917944404,39.27082476199384],[-76.62168134337949,39.27081947877252],[-76.62168354666693,39.27081420468563],[-76.62168580086107,39.2708089460756],[-76.62168811635293,39.27080371018211],[-76.62169050468771,39.27079850514925],[-76.62169297857891,39.27079333732324],[-76.62169554841277,39.27078821484449],[-76.62169822573915,39.27078314495624],[-76.62170102210807,39.27077813490192],[-76.62170394907409,39.27077319102398],[-76.62170701817762,39.27076832236732],[-76.62171024097802,39.27076353437366],[-76.62171411813101,39.27075903853388],[-76.62171891673611,39.27075494650229],[-76.62172433615477,39.27075113390564],[-76.62173007574349,39.27074747727155],[-76.62173583486852,39.27074385132609],[-76.62174131404528,39.27074013260071],[-76.62174621147649,39.27073619671857],[-76.62175022767759,39.27073192021129],[-76.62175308513881,39.27072718778798],[-76.62175529968151,39.27072219207218],[-76.62175721129658,39.27071706657133],[-76.62175885002723,39.27071182759597],[-76.62176024129576,39.27070648873948],[-76.62176141282785,39.27070106630492],[-76.62176239119974,39.2706955747901],[-76.62176320414672,39.27069002869661],[-76.62176387824024,39.27068444342306],[-76.62176444005182,39.27067883436796],[-76.62176491847551,39.27067321603668],[-76.62176534008762,39.27066760292698],[-76.62176573029595,39.27066201133451],[-76.62176611684046,39.27065645486005],[-76.62176652861035,39.27065094890965],[-76.62176694251538,39.27064547719517],[-76.62176730545099,39.27064000171353],[-76.62176761973006,39.27063452337283],[-76.62176789114193,39.27062904309255],[-76.62176811969628,39.27062355907116],[-76.62176831117762,39.27061807312886],[-76.62176846790364,39.27061258527307],[-76.62176859219679,39.27060709461057],[-76.62176868752395,39.27060160295396],[-76.62176875736162,39.27059611031452],[-76.62176880519117,39.27059061580263],[-76.62176883332538,39.27058512032656],[-76.62176884524074,39.27057962389751],[-76.62176884557266,39.27057412653033],[-76.62176883547025,39.27056863003034],[-76.6217688184197,39.27056313260715],[-76.62176879789271,39.27055763517277],[-76.62176877736088,39.27055213863919],[-76.62176876030074,39.27054664301749],[-76.62176874903471,39.27054114741447],[-76.62176874703457,39.27053565274201],[-76.6217687577719,39.27053015991213],[-76.62176878356443,39.27052466893222],[-76.62176879778791,39.27051917431204],[-76.6217687819058,39.270513675091],[-76.62176873707701,39.27050817127297],[-76.62176866793199,39.27050266377352],[-76.62176857563448,39.27049715169567],[-76.62176846365125,39.27049163685214],[-76.62176833430006,39.27048611925036],[-76.62176819105251,39.27048059980229],[-76.62176803506752,39.27047507851164],[-76.62176787098036,39.27046955539337],[-76.62176769878143,39.27046403224898],[-76.62176752426964,39.27045850819637],[-76.62176734744028,39.27045298413625],[-76.62176717291896,39.27044746188514],[-76.62176700187415,39.27044193964517],[-76.62176683776794,39.27043642012983],[-76.62176668292759,39.2704309015451],[-76.6217665408151,39.27042538660442],[-76.62176641375305,39.27041987441451],[-76.62176630289537,39.27041436587978],[-76.62176621403617,39.270408861019],[-76.6217661460071,39.2704033616299],[-76.621766104607,39.27039786683034],[-76.62176609214885,39.27039237752858],[-76.62176610979134,39.27038689372835],[-76.62176616100133,39.27038141724231],[-76.62176624810137,39.27037594717725],[-76.62176637455831,39.2703704853458],[-76.62176654153566,39.27036503085091],[-76.62176675365927,39.27035958550913],[-76.6217670120926,39.27035414842334],[-76.62176732146628,39.27034872050924],[-76.62176768177058,39.27034330356835],[-76.62176809765046,39.27033789581404],[-76.6217685945665,39.27033250363375],[-76.62177013582121,39.27032728776363],[-76.62177294480851,39.27032229756447],[-76.62177664284188,39.27031748497676],[-76.62178085122052,39.2703128046434],[-76.62178519357587,39.27030820851247],[-76.6217892923805,39.27030364852842],[-76.62179339292136,39.2702991975424],[-76.62179776504142,39.27029488704937],[-76.62180229664193,39.27029065903935],[-76.62180687910534,39.27028645461284],[-76.62181139916935,39.27028221665688],[-76.62181574821157,39.2702778871728],[-76.62181981643658,39.27027341086034],[-76.62182367897599,39.27026882399209],[-76.62182742017919,39.27026417277867],[-76.6218310677811,39.27025947172164],[-76.62183464836276,39.27025473441812],[-76.62183818734148,39.27024997536217],[-76.62184171129819,39.27024520815085],[-76.62184524681388,39.27024044638121],[-76.62185047639031,39.27023354174158],[-76.62185181285817,39.27022260895625],[-76.62185317829136,39.27021167716485],[-76.62185455762524,39.27020074631898],[-76.62185593116936,39.27018981455363],[-76.62185728153659,39.2701788827136],[-76.62185859135903,39.27016794804067],[-76.62185984210031,39.2701570095744],[-76.62186101637326,39.27014606815963],[-76.62186210268578,39.27013510574395],[-76.6218629248921,39.27012412266107],[-76.62186319195519,39.27011315040139],[-76.6218624239694,39.27010221624433],[-76.62186050507715,39.2700913153129],[-76.62185846439876,39.27008043470688],[-76.62185654543084,39.27006954818732],[-76.62185455109693,39.27005866953189],[-76.62185234568545,39.2700478226243],[-76.62184974475667,39.27003704200051],[-76.62184616028952,39.27002641944667],[-76.62184241810384,39.27001581890396],[-76.62183893460023,39.270005169652],[-76.62183538501613,39.26999452559166],[-76.62183201171776,39.26998385507588],[-76.6218290547535,39.2699731264501],[-76.6218265872441,39.26996231833144],[-76.62182423353977,39.2699514655409],[-76.62182205268266,39.26994057907778],[-76.62182014774517,39.26992967098399],[-76.62181862066004,39.26991874969461],[-76.62181757335033,39.26990782544627],[-76.62181730710864,39.26989689920924],[-76.62181814534097,39.26988595400962],[-76.62181956539574,39.26987499266819],[-76.62182100055314,39.26986402416925],[-76.6218218980234,39.26985305303808],[-76.62182256496554,39.26984206675228],[-76.62182326095949,39.26983106524701],[-76.62182379124235,39.26982006320809],[-76.62182396104646,39.26980907622211],[-76.62182357792689,39.26979811898239],[-76.62182254339878,39.26978718846958],[-76.62182134355389,39.26977618356155],[-76.62182002113883,39.26976512871673],[-76.62181850986597,39.26975406785917],[-76.62181674343805,39.26974304671427],[-76.62181465323536,39.26973211190094],[-76.62181217412436,39.26972130824765],[-76.62180923981268,39.26971068057915],[-76.62180578168076,39.26970027551421],[-76.6217996320003,39.26969022569069],[-76.62178972471943,39.26968160408931],[-76.62177806726895,39.26967587100907],[-76.62176481014487,39.2696730548579],[-76.62175037738541,39.2696718689068],[-76.62173582763245,39.26967110863898],[-76.62172174948235,39.26967013910938],[-76.62170764641318,39.26966949647554],[-76.62169352171723,39.26966899789277],[-76.62167940434897,39.26966842907224],[-76.62166531733921,39.26966760002668],[-76.62165125105747,39.26966657828245],[-76.62163719575298,39.26966545388471],[-76.62162314530032,39.26966428896641],[-76.62160909388152,39.26966308801281],[-76.62159505396725,39.26966146823873],[-76.62158101142607,39.26966034117306],[-76.62156695455373,39.2696605976348],[-76.62155289867022,39.2696615377788],[-76.62153883876809,39.26966279677903],[-76.62152477057117,39.26966408997995],[-76.62151068864479,39.26966513272221],[-76.6214965867666,39.26966578806945],[-76.62148246099025,39.26966636136836],[-76.62146832307702,39.26966682022928],[-76.62145418615826,39.26966709263331],[-76.62144005986502,39.2696671110541],[-76.6214259573193,39.26966680527427],[-76.6214118727753,39.26966616626773],[-76.62139779890056,39.26966526517118],[-76.62138373302686,39.26966416773195],[-76.62136967711621,39.26966294061295],[-76.62135562849059,39.26966165136298],[-76.62134158679429,39.2696603666375],[-76.62132755792243,39.26965906753944],[-76.62131354837085,39.26965762257803],[-76.62129955085983,39.26965609298187],[-76.6212855557296,39.26965455168174],[-76.62127155449814,39.26965306800922],[-76.62125753635642,39.26965171308994],[-76.62124349513519,39.26965055716366],[-76.62122942607887,39.26964962273414],[-76.62121533647682,39.26964884677137],[-76.62120123347412,39.26964819326776],[-76.62118711957116,39.26964762800225],[-76.62117299959058,39.26964711586057],[-76.62115887950448,39.2696466235337],[-76.6211447629767,39.2696461159036],[-76.62113064996886,39.2696456001763],[-76.62111653319623,39.26964513848104],[-76.62110241391859,39.26964471190583],[-76.62108829338612,39.26964430334024],[-76.62107417286818,39.26964389207065],[-76.62106005477871,39.26964346008959],[-76.62104594153631,39.26964298848881],[-76.62103183324685,39.26964245745185],[-76.6210177595693,39.2696415211805],[-76.62100375126808,39.26964006087314],[-76.62098976430239,39.26963851145723],[-76.62097578572811,39.26963690982231],[-76.62096180834695,39.26963530188418],[-76.62094782496541,39.26963373265798],[-76.62093382722644,39.2696322480557],[-76.62091981645234,39.26963081745558],[-76.62090580605414,39.26962931659532],[-76.62089179580579,39.26962778781012],[-76.62087778195161,39.26962628333228],[-76.62086376075534,39.26962485179106],[-76.6208497284709,39.26962354361714],[-76.62083568250627,39.26962241014588],[-76.62082162027903,39.26962150091097],[-76.62080753923067,39.26962086094238],[-76.6207934395344,39.26962045781313],[-76.62077932723923,39.26962024380222],[-76.6207652025569,39.26962017927663],[-76.62075107033434,39.26962022461831],[-76.62073693077853,39.26962034109511],[-76.62072278873653,39.26962048908891],[-76.62070864673305,39.26962062987504],[-76.62069450498468,39.26962072291973],[-76.62068036949741,39.26962072860876],[-76.6206662404735,39.26962060911053],[-76.62065211815866,39.26962031848689],[-76.62063799898506,39.26961987384092],[-76.62062388147129,39.26961933551897],[-76.62060976528507,39.26961876567282],[-76.62059565011347,39.26961822285125],[-76.62058153330639,39.26961776919844],[-76.62056741569515,39.26961746596909],[-76.62055329342272,39.26961738431126],[-76.62053914020983,39.26961767096473],[-76.62052496584219,39.26961822957922],[-76.62051078851603,39.26961890798422],[-76.62049662642285,39.26961955490992],[-76.62048249892736,39.26962001638814],[-76.62046842422141,39.26962014114905],[-76.62045442167003,39.2696197752244],[-76.62044038175945,39.26961837780119],[-76.62042647607186,39.26961550175361],[-76.6204132651968,39.26961141732168],[-76.62040132892497,39.26960583813472],[-76.62039124048199,39.26959775538735],[-76.62038383427115,39.26958846077228],[-76.62038244553972,39.26957749757366],[-76.62038862483813,39.26956745870207],[-76.62039854820817,39.26955895782828],[-76.62041156455699,39.2695565119861],[-76.62042547657333,39.26955646957664],[-76.62043973212366,39.26955719662852],[-76.62045410688519,39.26955816817131],[-76.62046837537578,39.26955885923097],[-76.62048250730463,39.26955908325114],[-76.62049664930859,39.26955915687441],[-76.62051079133668,39.26955922599224],[-76.62052491986636,39.26955943558412],[-76.6205390236881,39.26955993153779],[-76.62055309175621,39.26956082911553],[-76.62056714112757,39.26956197254012],[-76.62058117918869,39.26956328076648],[-76.62059520849806,39.2695647087647],[-76.62060923160939,39.26956621240549],[-76.62062325107151,39.26956774846035],[-76.62063727059683,39.26956927280379],[-76.62065129158017,39.26957074130284],[-76.6206653165798,39.26957210892745],[-76.62067934929846,39.26957333335366],[-76.62069339345325,39.2695743695552],[-76.62070744928477,39.26957517249458],[-76.62072152053415,39.26957569264178],[-76.62073560871632,39.2695758633451],[-76.62074971243152,39.26957572963821],[-76.6207638266977,39.26957535636019],[-76.62077795001893,39.26957480655971],[-76.6207920797405,39.26957414328179],[-76.62080621204902,39.26957342956768],[-76.6208203465979,39.26957273027131],[-76.62083447841971,39.26957210752952],[-76.62084860485523,39.26957162528798],[-76.6208627294387,39.26957127274895],[-76.62087685996046,39.26957089320449],[-76.62089099270828,39.26957053078001],[-76.62090512503724,39.26957024671905],[-76.62091925314863,39.26957010136064],[-76.62093337208003,39.26957015594076],[-76.62094747682578,39.26957047980218],[-76.6209615658135,39.2695711504057],[-76.62097564417419,39.26957207498896],[-76.6209897171879,39.26957313286656],[-76.62100379128385,39.26957420515821],[-76.62101787405003,39.26957517298738],[-76.62103196710693,39.26957594988583],[-76.62104606381855,39.2695766934661],[-76.62106016171334,39.26957743254461],[-76.62107426083462,39.26957815901473],[-76.6210883623892,39.26957886387265],[-76.62110246642524,39.26957953811081],[-76.62111657183678,39.26958017181732],[-76.62113067982588,39.26958075688908],[-76.62114479159951,39.26958128432246],[-76.62115890489281,39.26958174420157],[-76.62117302201854,39.26958213743477],[-76.62118714175546,39.26958247572802],[-76.62120126406013,39.26958276718803],[-76.62121538772568,39.26958302081865],[-76.62122951387727,39.26958324292873],[-76.62124364131274,39.26958344162141],[-76.62125776883003,39.26958362499965],[-76.62127189639547,39.26958379936868],[-76.62128602511503,39.26958397464051],[-76.62130015264215,39.26958415621215],[-76.62131428009242,39.26958435219408],[-76.62132840626381,39.26958457068929],[-76.62134252717992,39.26958490536457],[-76.62135664648561,39.26958532470495],[-76.62137077967263,39.26958553150775],[-76.62138491532164,39.2695857112938],[-76.62139904229186,39.2695859973405],[-76.62141314712999,39.26958652201696],[-76.62142722353758,39.26958737988313],[-76.62144128378048,39.26958844397076],[-76.62145533286409,39.26958964493707],[-76.62146937453402,39.26959093235122],[-76.62148341137699,39.2695922557788],[-76.62149744947061,39.2695935620941],[-76.62151149023308,39.26959480266053],[-76.62152553857349,39.26959592615021],[-76.62153959708803,39.26959688032716],[-76.62155369254734,39.26959720858967],[-76.62156783049905,39.2695967398102],[-76.6215819649789,39.26959627011711],[-76.62159608919379,39.26959598684764],[-76.62161021337008,39.26959571078245],[-76.62162433757031,39.26959543021182],[-76.62163846185689,39.26959513342597],[-76.62165258396979,39.26959480960851],[-76.62166670396182,39.26959444885112],[-76.62168082758862,39.26959405837851],[-76.62169500487279,39.26959381940556],[-76.6217092096706,39.269593636367],[-76.62172338964193,39.26959332804037],[-76.62173749013836,39.26959271139439],[-76.62175146114181,39.26959160431338],[-76.62176541310252,39.2695897216106],[-76.62177931880993,39.26958651553315],[-76.62179205785701,39.26958173386178],[-76.62180287294875,39.26957504988262],[-76.62181221239184,39.26956649386437],[-76.62181972275562,39.26955693300693],[-76.62182532317404,39.26954697236437],[-76.62182964981969,39.2695363996034],[-76.62183255872374,39.26952548358937],[-76.62183385471857,39.26951453265637],[-76.62183415967903,39.26950362537193],[-76.62183406037241,39.26949268706049],[-76.62183364019978,39.26948172429591],[-76.62183298488455,39.26947074275878],[-76.62183217667365,39.26945974811863],[-76.6218313001315,39.26944874605226],[-76.62183043982259,39.2694377422366],[-76.62182967799369,39.26942674234103],[-76.62182910036313,39.269415752947],[-76.62182871156122,39.26940477497017],[-76.62182834825808,39.26939379617465],[-76.62182800001958,39.26938281742758],[-76.6218276714857,39.26937183784315],[-76.62182736497419,39.26936085742886],[-76.62182708048012,39.26934987708542],[-76.62182682263874,39.26933889682775],[-76.62182659261373,39.26932791575889],[-76.62182639155897,39.26931693478324],[-76.62182622411451,39.26930595301501],[-76.6218260914296,39.2692949722595],[-76.62182601784392,39.26928399169422],[-76.62182604044899,39.26927300963712],[-76.62182613374135,39.26926202780762],[-76.62182627454959,39.26925104523033],[-76.62182643737516,39.26924006272387],[-76.62182659904188,39.26922908021368],[-76.62182673405599,39.26921809761758],[-76.62182681807766,39.26920711575806],[-76.62182682676735,39.26919613545744],[-76.62182670103536,39.26918515472392],[-76.62182630412343,39.26917417672023],[-76.62182576235124,39.26916320005153],[-76.62182523564364,39.26915222343131],[-76.6218248839256,39.26914124557304],[-76.62182481612956,39.26913026592667],[-76.62182489435264,39.26911928494895],[-76.6218250826718,39.26910830252418],[-76.62182536948461,39.26909732131728],[-76.6218257374089,39.26908634127236],[-76.6218261725342,39.26907536324526],[-76.62182668064483,39.26906438905623],[-76.62182726059642,39.26905341599932],[-76.62182789385284,39.26904244311395],[-76.62182855955079,39.26903147123377],[-76.62182923799054,39.26902050029538],[-76.62182990948212,39.26900952843382],[-76.62183055547497,39.26899855739087],[-76.62183115627907,39.26898758530155],[-76.62183169103598,39.26897661209884],[-76.6218321400461,39.26896563771918],[-76.62183248593223,39.26895466120585],[-76.62183269740665,39.26894368245819],[-76.62183278026355,39.26893270149477],[-76.62183275188492,39.26892171837159],[-76.62183263196094,39.26891073495364],[-76.62183243903725,39.26889975039979],[-76.62183219048148,39.26888876746831],[-76.6218319059934,39.26887778622265],[-76.62183160063255,39.26886680761198],[-76.62183127673096,39.26885582894159],[-76.62183093313463,39.26884484930699],[-76.62183056751641,39.26883387050222],[-76.62183017987623,39.26882289252723],[-76.62182976674259,39.26881191447013],[-76.62182932927429,39.26880093633466],[-76.62182886514411,39.26878995991478],[-76.62182837203923,39.26877898430238],[-76.62182785111851,39.26876800950109],[-76.62182729890556,39.26875703549979],[-76.62182671539558,39.26874606319915],[-76.62182608320185,39.26873509344406],[-76.62182537451309,39.26872412614489],[-76.62182460323979,39.26871316044567],[-76.62182378212401,39.2687021972882],[-76.62182292972088,39.26869123402994],[-76.62182206108523,39.26868027252092],[-76.62182119129587,39.26866931010733],[-76.62182033657116,39.26865834774225],[-76.62181951198508,39.26864738367264],[-76.62181873375592,39.26863641885149],[-76.62181801696255,39.26862545062509],[-76.62181735811882,39.26861448078374],[-76.62181674563681,39.26860350929009],[-76.62181616908252,39.26859253701131],[-76.62181561687275,39.26858156300941],[-76.62181507857353,39.26857058815144],[-76.62181454374601,39.26855961420544],[-76.62181400196592,39.26854864023698],[-76.62181336818655,39.26853622925134],[-76.62180829489989,39.26845621413255],[-76.6218046174381,39.26832564353967],[-76.6218111428732,39.26821276800882],[-76.62181221147625,39.26814011299957],[-76.6218119810551,39.26813159912232],[-76.6218074227551,39.26810281309071],[-76.6217950323536,39.26805049275566],[-76.62178397612008,39.268008975093],[-76.62176634710981,39.26797659524468],[-76.6217497755474,39.26794649413311],[-76.62172190142617,39.26791392274458],[-76.62169335369586,39.2678883760517],[-76.62165403905588,39.26786248300011],[-76.62162132240394,39.26784772483983],[-76.62158557111077,39.26783856866196],[-76.62153766165116,39.26782745646324],[-76.62148907064031,39.26782029010403],[-76.62144974578172,39.26781935896791],[-76.62142388277539,39.26781712096731],[-76.62141903521987,39.26781413191325],[-76.62140536653355,39.26780142758828],[-76.62138253887571,39.26779476489443],[-76.62135748915821,39.26779430220798],[-76.62133356685312,39.26779755070284],[-76.62130738277176,39.26779706813431],[-76.62123219305711,39.26779568078079],[-76.62117858859506,39.26779468908563],[-76.62116155537653,39.26779446389579],[-76.62114795907613,39.26779664402598],[-76.62113896325305,39.26779990460175],[-76.62112988436321,39.26780222811256],[-76.62111668770748,39.2678035664118],[-76.6211060392863,39.26780424906664],[-76.62108839208719,39.26780442272603],[-76.62106793659699,39.26780404055673],[-76.62104457739549,39.26780361118193],[-76.62102190067492,39.26780319211178],[-76.62100408697786,39.26780286259392],[-76.6209883310166,39.26780280634102],[-76.62097080116276,39.26780292271246],[-76.62095391987938,39.26780636049606],[-76.62093940802863,39.26781007525411],[-76.62092494012444,39.26781358928146],[-76.6209055523104,39.2678176837325],[-76.62088411673203,39.26782224086868],[-76.62086333662732,39.26782513910514],[-76.62084769707207,39.26782628483057],[-76.62082593355223,39.26782802150079],[-76.62081047333656,39.26782943532771],[-76.6207942790101,39.26783139264618],[-76.62077474968832,39.26783290772658],[-76.62075918965766,39.26783261607505],[-76.62074219860017,39.26783230628858],[-76.62073037069295,39.26783208703698],[-76.62072199048309,39.26783117001629],[-76.62071900259741,39.26782909310942],[-76.62071848736439,39.26782380845471],[-76.62071886381941,39.26781147998997],[-76.62071934460714,39.26778960464665],[-76.62072120446473,39.26771524523916],[-76.6207295495807,39.26758656988346],[-76.62073108243609,39.26755604427983],[-76.62073147403157,39.26754825392081],[-76.62073500032231,39.26753284870317],[-76.62074068700227,39.26751563631998],[-76.6207485069928,39.26749908117859],[-76.62075845022366,39.26748701870662],[-76.62076521017491,39.26747800225257],[-76.62077233945698,39.26747294945935],[-76.62101157229813,39.26738464861446],[-76.62110587335873,39.26734984194927],[-76.62114112251389,39.26733730711631],[-76.62115954188435,39.26732531338935],[-76.62116955795322,39.26731087669862],[-76.62119383051852,39.26724395555199]]]],"type":"MultiPolygon"} +},{ + "id": 1108797017, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000116, + "geom:area_square_m":1109337.171616, + "geom:bbox":"-76.632205927,39.2551471141,-76.6152394343,39.2676713602", + "geom:latitude":39.260712, + "geom:longitude":-76.623264, + "iso:country":"US", + "lbl:latitude":39.259717, + "lbl:longitude":-76.623389, + "lbl:max_zoom":18.0, + "mps:latitude":39.259717, + "mps:longitude":-76.623389, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "reversegeo:latitude":39.259717, + "reversegeo:longitude":-76.623389, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108797011, + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"1f1b08082ec93cab14ce147d6895dc06", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797017, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797017, + "wof:lastmodified":1566624039, + "wof:name":"Middle Branch", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.63220592698049, + 39.25514711414235, + -76.61523943429565, + 39.26767136016182 +], + "geometry": {"coordinates":[[[[-76.61548783029305,39.25974423039617],[-76.61698815339641,39.25614801167234],[-76.61707364839758,39.25616660347475],[-76.61714389126816,39.25617141203801],[-76.61718759717206,39.25617451446344],[-76.61722450285113,39.25617359439024],[-76.61722728001367,39.2561733863582],[-76.61728615737333,39.25616714768778],[-76.61732932264427,39.25616200356103],[-76.61734674915,39.25615903467035],[-76.61736658187114,39.2561543882797],[-76.6174252122282,39.25613980221048],[-76.61743247208582,39.25613722624534],[-76.61748829135745,39.25612075378341],[-76.61752904478156,39.25610628507396],[-76.61758013786664,39.25609306696455],[-76.61764812152317,39.25607806716724],[-76.61770772557963,39.25606831945494],[-76.61775436587067,39.25605900781921],[-76.61783452324029,39.25604267206964],[-76.61789838883212,39.25602642827405],[-76.61796482478371,39.25601222764359],[-76.61799519972219,39.25600347461213],[-76.6180507935259,39.25598687233943],[-76.61809805991024,39.25597143107016],[-76.61812482229766,39.25596525596585],[-76.6181758877607,39.25595670168879],[-76.61823446018991,39.25594808442273],[-76.61830106131681,39.25593416698065],[-76.61838625964626,39.25591931819704],[-76.61844960367461,39.25590737537968],[-76.61851298883771,39.25589316452578],[-76.61857357388732,39.25588343037079],[-76.61863449034631,39.2558756249063],[-76.61868645558026,39.25586842808612],[-76.61874244542388,39.2558608722934],[-76.61880795447998,39.25585286816882],[-76.61887433175438,39.25584478305439],[-76.61895592760622,39.25583600145372],[-76.61899605780854,39.25583156928202],[-76.61904591873399,39.25582160461819],[-76.61909432415445,39.25580715839023],[-76.61917695690565,39.25577742901647],[-76.61927851390111,39.25573999541807],[-76.61935999096879,39.25570450715576],[-76.61942177842944,39.2556759648038],[-76.61949744930733,39.25564312029953],[-76.619578966861,39.25560544134624],[-76.61963376331536,39.25558248441944],[-76.61966765849975,39.25556644793233],[-76.61969448034472,39.25555193334446],[-76.6197092458229,39.25554583702263],[-76.61972769351168,39.25554079031007],[-76.61974210549425,39.255539905589],[-76.61974596034526,39.25554030540348],[-76.61979512431114,39.25555029920377],[-76.61981135840746,39.25555618875187],[-76.61983250064209,39.25556743214554],[-76.61986188806523,39.25557965434194],[-76.61988914603367,39.25558775672658],[-76.61992041145463,39.25558810204446],[-76.62005524912058,39.25558132057165],[-76.62011017697181,39.25557815644311],[-76.62013533378526,39.25557295572287],[-76.62015539858402,39.25556796101475],[-76.62016761471455,39.25556236892584],[-76.6201806665064,39.25556061591354],[-76.62019246748902,39.25555812292568],[-76.62020715731754,39.25555489704712],[-76.62022158097386,39.25555334573603],[-76.62023901695413,39.25555245271941],[-76.62025589549586,39.25555158762277],[-76.62026986630117,39.25555087165539],[-76.62028409785509,39.2555501439189],[-76.62029898262986,39.25555010918274],[-76.62031280150161,39.25555202116264],[-76.62032766131044,39.25555210524361],[-76.62034189402739,39.25555137660307],[-76.62035403836825,39.25555075470539],[-76.6203655313073,39.25555039912948],[-76.62037681486279,39.25555019960929],[-76.62038577103883,39.25555081856868],[-76.62039542115595,39.25555253240351],[-76.6204033202867,39.25555387576542],[-76.62041849689487,39.25555949878621],[-76.62043257272752,39.25556622439079],[-76.62044374004289,39.2555712957879],[-76.62045575535406,39.25557487014483],[-76.62046887786224,39.25557960826964],[-76.62048035643916,39.25558128927448],[-76.62049467079908,39.25558111034833],[-76.62051154817148,39.25558024791346],[-76.62052652260314,39.25557948111312],[-76.62054384849152,39.25557859310006],[-76.62055904890914,39.25557781531587],[-76.62057346474313,39.25557707642977],[-76.62058949763347,39.25557640401937],[-76.62060300912744,39.25557556582523],[-76.6206179117093,39.25557436821354],[-76.62062852533971,39.255572048797],[-76.62064469502519,39.2555681097323],[-76.62067156361516,39.25555803496272],[-76.62068429229336,39.25555235169681],[-76.62069979205879,39.25554585587984],[-76.62071273873283,39.25554100562546],[-76.6207267764724,39.25553708578509],[-76.62073926696796,39.25553304384555],[-76.62075282227433,39.255528774747],[-76.62076433191746,39.25552550880178],[-76.62077698289639,39.25552113769513],[-76.62078993841095,39.25551549838725],[-76.62080183343338,39.25550927735946],[-76.62081306077273,39.25550311722812],[-76.62082539649793,39.25549724802024],[-76.62083979955199,39.25549412652656],[-76.62085421551036,39.25549336058342],[-76.6208708286284,39.25549251075518],[-76.6208859393566,39.25549377017835],[-76.62090156804638,39.25549675264122],[-76.62092128283807,39.25550022389982],[-76.62093897597902,39.25550280677587],[-76.62096046799878,39.25550607478694],[-76.62098551025679,39.25550798958904],[-76.6210044854928,39.25550719150428],[-76.6210262419018,39.25550607811608],[-76.62104684170232,39.25550502494562],[-76.62106621769176,39.2555040326774],[-76.62108776024215,39.25550261142546],[-76.6211101886804,39.2555010561113],[-76.62113082904784,39.25549999945392],[-76.62115106880427,39.25549910994413],[-76.62116856927969,39.25549806747004],[-76.62118944064092,39.25549714666299],[-76.62120846394578,39.25549602442354],[-76.62122508400688,39.25549517546835],[-76.62124188356621,39.25549434240295],[-76.62125520057886,39.25549564013023],[-76.6212682765694,39.25549846388175],[-76.6212800988865,39.25550064854625],[-76.62129221259266,39.25550055340255],[-76.62130052089501,39.25550012711224],[-76.62130966189106,39.25549911350327],[-76.62136476635078,39.25549300924814],[-76.62137131748892,39.25549228363588],[-76.62139143654439,39.25548904268875],[-76.62140407217214,39.25548493448962],[-76.6214172338035,39.25548039201294],[-76.62143296994621,39.25547496247105],[-76.62144858962979,39.25547029640356],[-76.62146185363633,39.25546915015058],[-76.6214750516472,39.25546821266171],[-76.6214911491208,39.25546389672641],[-76.62150719767943,39.25545897621535],[-76.62152187914862,39.25545339193263],[-76.62153446340328,39.25544783421677],[-76.62155357590524,39.2554397582733],[-76.6215687337983,39.25543499702151],[-76.6215877452826,39.25543195874717],[-76.62160649601219,39.25542893314099],[-76.62162071362546,39.25542494531508],[-76.621635516278,39.25541857683902],[-76.62164643153736,39.25541269576158],[-76.62165960300598,39.25540608512413],[-76.62167794053281,39.25539906686824],[-76.62169025184949,39.25539558633007],[-76.6217163190325,39.25539323193188],[-76.62173189371548,39.25539243718639],[-76.62174761212464,39.25539163119184],[-76.62176668791427,39.25539065405489],[-76.62178572313383,39.25538968038727],[-76.62180237561779,39.25538882875259],[-76.62181653296469,39.25538810239296],[-76.62183236608968,39.25538772822487],[-76.62184574196677,39.25538928369468],[-76.62186304978425,39.25539264525645],[-76.62187826191682,39.25539552986557],[-76.62189595170888,39.2553993952816],[-76.62191301821039,39.25540477648342],[-76.62192678352474,39.25540869771629],[-76.62194157325014,39.25541279789582],[-76.62195756300969,39.25541608043592],[-76.6219753591165,39.25541586660003],[-76.62199477283167,39.25541496257549],[-76.62201225779778,39.25541552059205],[-76.6220489795131,39.25541838164071],[-76.62206651121053,39.25541951989475],[-76.62208331520434,39.25541915422231],[-76.62209997665812,39.25541835932276],[-76.62211865151376,39.25541891664914],[-76.62213559649028,39.25542014308152],[-76.62215384843923,39.25541918034506],[-76.62217137583184,39.25541895120246],[-76.62218847863234,39.25542165359443],[-76.62220633127973,39.2554221361998],[-76.62222182832078,39.25542177981394],[-76.62224043364563,39.25542277557168],[-76.62225661252106,39.25542252856636],[-76.62227353989803,39.25542227315743],[-76.62228874775191,39.25542204734467],[-76.62230309365574,39.2554244246816],[-76.62231741444793,39.25542564264651],[-76.62233002438217,39.25542700373367],[-76.62234137107552,39.25542973983347],[-76.62235295010841,39.2554317065221],[-76.62236789172744,39.25543099973304],[-76.62238037212427,39.2554303588898],[-76.62239400680434,39.25542965870347],[-76.62240484846687,39.25542910626751],[-76.62241423184889,39.25542826089512],[-76.62246926462849,39.2554231881726],[-76.62250976619275,39.25541724810797],[-76.62252350712052,39.25541334421344],[-76.62253378169243,39.25540984172613],[-76.62253696086438,39.25540875841288],[-76.62255160064882,39.25540445926477],[-76.62256620218261,39.25540059866633],[-76.62258241745164,39.25539677478004],[-76.6225966544834,39.25539304541918],[-76.62261134994121,39.25539025883346],[-76.62262623284566,39.25538664684333],[-76.62264281333846,39.25538320785005],[-76.62265778918169,39.2553815093876],[-76.62267026838943,39.25538087211283],[-76.62268313275335,39.25538035857893],[-76.62269843238414,39.25537943040839],[-76.62271094752636,39.25537878964166],[-76.62272481898901,39.25537822439235],[-76.62274154795892,39.25537736656494],[-76.62275560469371,39.25537638485125],[-76.62277282372374,39.25537378830844],[-76.6227872057313,39.25537133577975],[-76.62280348088355,39.25536823086885],[-76.62281621667867,39.2553653118546],[-76.62282980343205,39.2553631621267],[-76.62284689907193,39.25536045528289],[-76.62286322776191,39.25535664973754],[-76.62287671639925,39.25535290442745],[-76.62288983951667,39.25534882826048],[-76.62290193936595,39.25534457585814],[-76.62291570290111,39.2553396811446],[-76.62293113040008,39.25533452784776],[-76.62294596770066,39.25532946273057],[-76.6229590809951,39.25532527122589],[-76.6229740699582,39.25532109925405],[-76.62298803883904,39.25531593315923],[-76.62300059801186,39.25531049050434],[-76.62301513412754,39.25530497763],[-76.62302925883634,39.25530122893996],[-76.62304161481424,39.25529783127435],[-76.62305426459896,39.25529386886787],[-76.62306667658309,39.25528799696738],[-76.62307669370193,39.25528169581805],[-76.62308668223051,39.25527597827426],[-76.62309767916784,39.25527148901225],[-76.62311048912566,39.25526856209721],[-76.62312290729328,39.25526806960224],[-76.62313410548465,39.25526735340267],[-76.62314755600313,39.25526488973321],[-76.62317370721856,39.25525869170073],[-76.62318836438011,39.25525372505931],[-76.62320090491971,39.25525025951085],[-76.6232126718392,39.25524695091459],[-76.62322521884973,39.25524357546115],[-76.62323782806708,39.2552400488768],[-76.62324926568367,39.25523678876255],[-76.62326256004776,39.25523296531866],[-76.62327555786845,39.25522869414046],[-76.62328883259916,39.25522464003382],[-76.6233026953668,39.25521959426413],[-76.62331502780897,39.25521407698515],[-76.62332819359359,39.25520740939406],[-76.62334881419018,39.25520044954537],[-76.62336202255213,39.25519645556902],[-76.62337646268234,39.25519242770991],[-76.62339008097148,39.25518891065122],[-76.62340636585662,39.2551859236888],[-76.62341776737186,39.25518356871503],[-76.62343447765082,39.25518076416756],[-76.62344961908092,39.25517710606221],[-76.6234599448138,39.25517311724273],[-76.62347134966542,39.2551681671594],[-76.62348135909698,39.25516396023843],[-76.62349229998107,39.25515976441032],[-76.62350336786405,39.25515434214118],[-76.62351557878461,39.25515185283642],[-76.62352451082569,39.25515090143898],[-76.62354390312164,39.25514746502859],[-76.62356932294706,39.25514720963763],[-76.62358252451349,39.25514711414235],[-76.62359785221938,39.2551487450291],[-76.62361338946354,39.25515018922563],[-76.62362935788688,39.25515050703952],[-76.6236448731982,39.25515215473531],[-76.62365934763854,39.25515345049535],[-76.62367295615785,39.25515592348549],[-76.62368932039661,39.25515785133306],[-76.62370554380831,39.25515989943002],[-76.62371924495147,39.25515998117035],[-76.62373523832615,39.2551593082041],[-76.62375252233912,39.25515842408757],[-76.62377059441388,39.25515749925673],[-76.62378572039461,39.25515675144275],[-76.62380082008421,39.25515615487178],[-76.62381636312534,39.25515585066762],[-76.62383132215459,39.25515796585711],[-76.62384552474364,39.25516136942313],[-76.62386054050461,39.25516458553014],[-76.62387756159362,39.25516412391433],[-76.62389048926988,39.2551634600227],[-76.62390517037096,39.25516270806603],[-76.62391882127501,39.25516221313009],[-76.62393219628329,39.25516196502031],[-76.62394867061427,39.25516126564154],[-76.62396659434627,39.25516034841236],[-76.62398112247064,39.25515960406322],[-76.62399637732275,39.25515902417784],[-76.62401066865074,39.25515989414527],[-76.62402484526656,39.25516164109249],[-76.62404188487,39.25516402684244],[-76.62405790425539,39.25516719209156],[-76.62407353863392,39.25516845548356],[-76.62409114012175,39.2551682235895],[-76.62410637301835,39.25516785169715],[-76.62412028700861,39.25516777823904],[-76.62413415842833,39.25516721102174],[-76.62414887298105,39.25516736171202],[-76.62416242032685,39.25516913815526],[-76.62417557904735,39.25517166459424],[-76.62418905423978,39.25517525224954],[-76.62420238976506,39.25517896015934],[-76.62421667434425,39.25518241888969],[-76.62422921560312,39.25518558919777],[-76.62424265146323,39.2551917925537],[-76.62425402837883,39.25519801814391],[-76.62426888031061,39.25520679862412],[-76.62428151613868,39.25521333540225],[-76.6242951146429,39.25522098951031],[-76.62430523787521,39.25522788846217],[-76.62432202710224,39.25523840010642],[-76.62433247673002,39.25524426781917],[-76.62434249103423,39.25525117182383],[-76.62435016633458,39.25525694238357],[-76.62435713333852,39.25526234946852],[-76.624364181201,39.25526780275096],[-76.62437039347412,39.25527045557195],[-76.62437668872043,39.25527056578768],[-76.6243831322836,39.25527023510085],[-76.62438950513051,39.25526991229439],[-76.62440723304137,39.25526900247839],[-76.62442395674073,39.25526540966045],[-76.62443632350141,39.25526477724299],[-76.62444612211503,39.25526427532859],[-76.62445762711832,39.25526491113737],[-76.62446731755139,39.25526755616138],[-76.62447731551819,39.25527207666798],[-76.62448728826297,39.25527807975848],[-76.62450652918655,39.25529317872533],[-76.62451608606104,39.25530179811754],[-76.62452446056021,39.25531009395502],[-76.62453422053349,39.25532018224824],[-76.62454280127508,39.25533044782445],[-76.6245513587951,39.25534225634261],[-76.62455730453055,39.25535193159542],[-76.6245642680679,39.25536259824563],[-76.62457115192433,39.25537233955108],[-76.62458182421449,39.25538299373763],[-76.62459121116312,39.25539088656045],[-76.62459856669616,39.25539775772146],[-76.62460792708654,39.25540672957901],[-76.62461736209062,39.25541561429973],[-76.62462632578766,39.25542335804045],[-76.62463665763349,39.25543091338973],[-76.62464763952441,39.25543779884258],[-76.62465839372247,39.25544414220452],[-76.62466875939027,39.25544815133244],[-76.62467897228524,39.25545344446737],[-76.62468775717701,39.25546038594761],[-76.62469512141897,39.25546736612319],[-76.62470642073319,39.25547842314425],[-76.62471517045883,39.25548719577281],[-76.62472307917274,39.25549484785871],[-76.62473155947141,39.25550264499311],[-76.62474193696515,39.25551296583871],[-76.6247507171491,39.25552211508315],[-76.62475964267266,39.25553116750832],[-76.62476703750733,39.25553849997759],[-76.6247749492416,39.25554624034484],[-76.62478278928069,39.25555351658658],[-76.62479127505914,39.25556093721267],[-76.62480020156933,39.25556914741906],[-76.62480753520936,39.25557534562231],[-76.62481647165579,39.25558233441679],[-76.62482556508283,39.25558899673315],[-76.62483300928783,39.25559510160807],[-76.6248418889639,39.25560011843652],[-76.62485110168187,39.25560284477281],[-76.62485804043722,39.25560571877546],[-76.62486539709155,39.25560822209534],[-76.62487338896632,39.25560891419681],[-76.62488380954973,39.25560823948373],[-76.62489491198754,39.25560767143714],[-76.62490660781609,39.25560706835355],[-76.62491879038126,39.25560731895085],[-76.62493189463291,39.25560877231491],[-76.6249439756124,39.25560873343832],[-76.62495592585454,39.25560887880052],[-76.62496844766368,39.25560829546365],[-76.62498006400797,39.25560935944173],[-76.62499198659523,39.25561188814586],[-76.62500354724891,39.25561362481798],[-76.62501423829725,39.25561394990954],[-76.62502372053393,39.25561456749271],[-76.62503603156205,39.25561638042097],[-76.62506930254641,39.25562221104887],[-76.62509414639783,39.25562486567331],[-76.62510536125266,39.25562429166039],[-76.62511485976138,39.25562380314418],[-76.62512311244976,39.25562183969452],[-76.62513050116526,39.25561849440905],[-76.6251409454988,39.25561595515782],[-76.62514932795531,39.25561552612963],[-76.62515655961755,39.25561515377862],[-76.62516352124356,39.25561479677896],[-76.62517008072147,39.25561446101429],[-76.62517894761385,39.2556140056066],[-76.62520465882115,39.25561498844743],[-76.62521864383287,39.25561749849015],[-76.62523225356055,39.25562086666672],[-76.62525087460531,39.25562636313832],[-76.62526579292884,39.25563270352023],[-76.62527819833235,39.25563814862353],[-76.62528444082136,39.25564167433691],[-76.62528857469997,39.25564387369477],[-76.62529442541728,39.25564677212317],[-76.62530372263335,39.25565039585905],[-76.62531255409139,39.25565314166001],[-76.62532174539012,39.25565597958621],[-76.62533097819784,39.25565775834018],[-76.62534034605999,39.25565853496885],[-76.62535134352694,39.25565985545604],[-76.62536244507054,39.25566077453144],[-76.62537296725945,39.25566170346732],[-76.62538228721343,39.2556629960802],[-76.62539344665721,39.25566414052955],[-76.62540520679437,39.25566540309338],[-76.62542660942744,39.25566765393376],[-76.62544030630205,39.25567009997703],[-76.62545003476096,39.25567280178905],[-76.6254582571088,39.25567658692461],[-76.62546700805777,39.25568207619842],[-76.62547750242192,39.25568893749846],[-76.62548636332436,39.25569554677692],[-76.62549474256066,39.2557029751187],[-76.62550195653118,39.25571122664889],[-76.62550911073211,39.25571938791116],[-76.62551745511286,39.25572749441884],[-76.62552464580331,39.25573466945485],[-76.62553329294228,39.25574226889339],[-76.62554184412194,39.25574939061789],[-76.62555036784335,39.25575556824868],[-76.62555907452527,39.25576132580332],[-76.62556950470653,39.25576630158155],[-76.62558130740157,39.25576696795449],[-76.6255936435424,39.25576732255976],[-76.62560430899627,39.25576723316236],[-76.62561679392745,39.25576705588536],[-76.62562660813737,39.25576690342029],[-76.62563591433715,39.2557675122857],[-76.62564480335891,39.25577143104577],[-76.62565141830737,39.25577793406644],[-76.62565408555105,39.25578647645183],[-76.62565429721556,39.25579467231947],[-76.62565397751887,39.25580168648617],[-76.62565449609339,39.25581056431332],[-76.62558099001214,39.25595494834101],[-76.62557113817159,39.25598287227815],[-76.62563121589707,39.25602411546666],[-76.62564683848869,39.25603446376223],[-76.62569883377817,39.25607088185191],[-76.62571331960625,39.25608104546026],[-76.62573611171052,39.25609974420217],[-76.62574770550104,39.25610971663272],[-76.62576686621738,39.25609375753421],[-76.62580557687295,39.25612096070893],[-76.62578820880346,39.25613576984075],[-76.62580938370205,39.25615113777664],[-76.62586634168336,39.25619213760089],[-76.62588140941244,39.25620291736618],[-76.62593515491734,39.2562425449587],[-76.6259487810447,39.25625162397557],[-76.62600046714705,39.25628851024382],[-76.62601441103793,39.25629819468065],[-76.6260650714844,39.25633690621299],[-76.6260786460206,39.25634698760538],[-76.62613183213554,39.25638749427566],[-76.6261456810376,39.25639784226041],[-76.62619911381769,39.25643772635303],[-76.62621437834983,39.25644745640503],[-76.6262660953749,39.25648534430632],[-76.62627950390497,39.2564948378455],[-76.62633537101256,39.25653649783077],[-76.62634770610002,39.25654544117953],[-76.62639909825066,39.2565832234978],[-76.62641125630634,39.25659212484108],[-76.62646857245279,39.25663499009583],[-76.6264802537318,39.25664378542598],[-76.6265357080955,39.25668356049381],[-76.62654712027624,39.25669131457379],[-76.62660099402106,39.25673137282874],[-76.6266118438694,39.25673986644637],[-76.62663903229462,39.2567594356186],[-76.62668519515439,39.25676497709501],[-76.6267007771127,39.25677694289782],[-76.62673035597722,39.25672995286956],[-76.62676407218039,39.25674334097405],[-76.62677783345401,39.25674945229073],[-76.62684530751605,39.25677735005129],[-76.62685735892288,39.25678187147322],[-76.62692249315758,39.25680746389346],[-76.62693483964037,39.25681271947029],[-76.62699084258887,39.25683548775617],[-76.62699970207576,39.25683227943932],[-76.62701104595874,39.25682879256922],[-76.62701743773043,39.25682687712165],[-76.62702733892822,39.25682563218344],[-76.62703170701749,39.25682649998649],[-76.62703566224819,39.25682788261818],[-76.62704090438847,39.25683087000255],[-76.62704630699575,39.25683440916657],[-76.62705089199187,39.25683897891473],[-76.62705415193331,39.25684413175498],[-76.62705673053355,39.25684951843239],[-76.6270602948848,39.25685605311708],[-76.6270651113426,39.25686199637061],[-76.62707079049116,39.25686869360461],[-76.62707551438803,39.25687505361942],[-76.62707988450374,39.25688148997653],[-76.62708350411216,39.25688809329433],[-76.62708573528371,39.25689499395985],[-76.62708734255358,39.25690178094862],[-76.62708893379634,39.25690875164318],[-76.62708967823792,39.25691613400185],[-76.62709043404796,39.2569235578319],[-76.62709136775739,39.25693130290038],[-76.62709186746925,39.25693851423654],[-76.62709235990577,39.25694622817823],[-76.62709295237271,39.25695452973848],[-76.62709361589914,39.25696253787396],[-76.62709461269581,39.25697106591031],[-76.62709554968242,39.25697906950957],[-76.6270959142563,39.2569868623127],[-76.62709616974878,39.25699402603315],[-76.62709642052074,39.25700142664068],[-76.62709683603946,39.25700834405881],[-76.62709860778158,39.25701668539475],[-76.62710055148273,39.25702449402195],[-76.62710274010607,39.25703199626493],[-76.6271050543906,39.25703917733263],[-76.62711522044903,39.25706228369564],[-76.6271190198734,39.25706972799972],[-76.62712317648152,39.25707711038417],[-76.62712839056817,39.25708500055671],[-76.62713291806355,39.25709169773316],[-76.62713792861244,39.25709907472179],[-76.62714250138926,39.25710597471443],[-76.62714735322479,39.25711334849635],[-76.62715215742659,39.25712052666008],[-76.62715718666398,39.25712787578335],[-76.62716260876461,39.25713564951486],[-76.62716806469132,39.25714249826454],[-76.62717483473232,39.25714996551036],[-76.62718120134835,39.2571568135479],[-76.62718749636292,39.25716383790827],[-76.6271943114519,39.25717133231898],[-76.62720054430316,39.257179383357],[-76.62720486108782,39.25718715537867],[-76.62720739046833,39.25719441729529],[-76.62720900692982,39.2572034283076],[-76.62721272370094,39.25721183256476],[-76.62721874272786,39.2572189028871],[-76.62722455156039,39.25722782992577],[-76.62722623176005,39.25723595658575],[-76.6272270933033,39.25724619474962],[-76.627227474655,39.25725498745761],[-76.62722773731528,39.25726277453151],[-76.62722800100232,39.25727433672805],[-76.62722704924401,39.25728149481341],[-76.62722643236096,39.25728930882038],[-76.62722540501434,39.2572980637277],[-76.62722456237013,39.25730650665477],[-76.62722275511118,39.25731506992473],[-76.62722022328471,39.25732305170045],[-76.62721746485448,39.25733182273033],[-76.62721714327532,39.25734120861426],[-76.62721762759935,39.25735069073659],[-76.62721937252134,39.25736127489736],[-76.62721996046147,39.25736978001516],[-76.62721945400459,39.25737951120703],[-76.62721936248084,39.25739009764437],[-76.62722231680607,39.25739983982317],[-76.6272261363215,39.25740875874422],[-76.62722966019234,39.25741771455881],[-76.62723234355437,39.25742588313595],[-76.62723402483155,39.2574346880771],[-76.62723428088687,39.25744240937356],[-76.62723392222212,39.25745069440089],[-76.62723294756483,39.25745956477346],[-76.62723304187601,39.25746785934565],[-76.62723262421636,39.2574719348962],[-76.62723273498068,39.25747577342077],[-76.62723290332318,39.2574807822259],[-76.62723327140455,39.25748658704332],[-76.62723579483875,39.25749233655012],[-76.62724040782882,39.25749688115718],[-76.6272477810368,39.2574989330933],[-76.627255216466,39.25750060960615],[-76.62725852137426,39.25750559233718],[-76.62725722888119,39.25751144502849],[-76.62725331840751,39.25751653366479],[-76.62724887737198,39.25752160440287],[-76.62724631411164,39.25752740802163],[-76.62724594063984,39.25753410044377],[-76.62724618730108,39.2575414046545],[-76.62724680720646,39.2575491189988],[-76.62724869747134,39.25755718056844],[-76.62725178302782,39.2575653224977],[-76.62725541030748,39.25757334274128],[-76.6272571480085,39.25757736208005],[-76.62726100296304,39.25758637479184],[-76.6272647574491,39.25759576550711],[-76.62726862925624,39.25760421709359],[-76.6272727622745,39.25761212904821],[-76.62727742607845,39.25761979587705],[-76.62728336990106,39.25762773609831],[-76.62729104639467,39.25763535934399],[-76.62729882932804,39.25764212989967],[-76.62730929456654,39.25765131672133],[-76.62732058182114,39.25766128351383],[-76.62732969773441,39.25766861317117],[-76.62734106940407,39.25767795059269],[-76.62735323985265,39.25768719776897],[-76.62736402383031,39.25769415889851],[-76.62737350005985,39.25769994938242],[-76.62738298965058,39.25770540211998],[-76.62739185864818,39.25771055113012],[-76.62740081171084,39.25771579859011],[-76.62741000811337,39.25772104141689],[-76.6274198379609,39.25772612681691],[-76.62742862921762,39.25773063603226],[-76.62743768085302,39.25773520552382],[-76.6274458310684,39.2577393334806],[-76.62745466043073,39.25774408872453],[-76.62746171959358,39.257750130053],[-76.62746793737642,39.25775576967138],[-76.62747439173086,39.25776070744093],[-76.62748284133045,39.25776563262384],[-76.62749085778107,39.25776986103909],[-76.62749870220769,39.25777375202081],[-76.62750768845427,39.25777797810684],[-76.6275162381832,39.25778082463233],[-76.62752563916165,39.25778263437114],[-76.62753550732056,39.25778461763786],[-76.62754412970618,39.25778620421733],[-76.62755390326993,39.25778788812742],[-76.6275637880297,39.2577900200711],[-76.62757401123206,39.25779279173192],[-76.62758395459774,39.25779567870333],[-76.62759421984353,39.25779860813012],[-76.62760422553214,39.25780043779588],[-76.62761427411178,39.25780160102843],[-76.62762468742928,39.25780236727734],[-76.62763440836721,39.25780259897579],[-76.62764413759518,39.25780279647058],[-76.62765487735761,39.25780273504543],[-76.62766460751102,39.25780253530272],[-76.62767567601858,39.2578023118791],[-76.62768775614423,39.25780206463897],[-76.62769882118522,39.25780183940062],[-76.62770922226994,39.25780162466693],[-76.62771960594223,39.25780141618245],[-76.62773133053517,39.25780091559558],[-76.62774264965188,39.25780018492697],[-76.62775437866748,39.25779994557455],[-76.62776604518353,39.25779969341209],[-76.6277776903566,39.25779931327173],[-76.62778765442668,39.25779891699217],[-76.62779792345592,39.25779781277398],[-76.62780753421322,39.25779673979675],[-76.62781811236437,39.2577952384172],[-76.62782764231575,39.25779344546859],[-76.62783744793548,39.25779122732963],[-76.62784754404925,39.25778862908574],[-76.62785801387383,39.25778414311483],[-76.62786865514238,39.25777789578408],[-76.62787890250436,39.25777274704178],[-76.6278892831877,39.25776979299198],[-76.62790053603291,39.25776888374608],[-76.62791083512052,39.2577686749767],[-76.62792114117391,39.25776846352617],[-76.62793144721309,39.25776825477696],[-76.62794269636449,39.25776738695068],[-76.62795433864842,39.25776424142589],[-76.62796436108223,39.25775956216437],[-76.62797439671465,39.25775501715826],[-76.62798510789752,39.25775222808689],[-76.62799595795812,39.25775057442218],[-76.6280059667842,39.25774782726137],[-76.62801655125905,39.25774180132623],[-76.62802430148575,39.2577340477463],[-76.62802716259775,39.25772512299271],[-76.62802887596594,39.25771831951491],[-76.62803558576547,39.25771144358943],[-76.62804467680252,39.25770518592734],[-76.62805522351908,39.25770105688652],[-76.62806345110501,39.25769507032132],[-76.6280721566025,39.25768897807798],[-76.62808238139554,39.25768746744842],[-76.6280936943315,39.25768702767456],[-76.62810451252858,39.2576848190258],[-76.62811447573142,39.25767994139485],[-76.6281247760086,39.25767485945549],[-76.62813576731823,39.2576738863051],[-76.62814738165086,39.25767275388918],[-76.62815881335773,39.25766998960287],[-76.62816960901722,39.25766743768415],[-76.62817906364634,39.25766519948912],[-76.62818920973231,39.25766323011015],[-76.62820077011189,39.25766155885881],[-76.62821060554049,39.25765961641813],[-76.62822072099537,39.25765730104452],[-76.62823106292785,39.25765289120071],[-76.6282342859195,39.25764587811665],[-76.6282328496264,39.25763960512453],[-76.62822822472585,39.25763378142856],[-76.62822149504299,39.25762764841027],[-76.62822065017447,39.25762039185029],[-76.62822132680486,39.25761243210397],[-76.62822050600801,39.25760522516241],[-76.62821668531068,39.25759783307273],[-76.62821664100041,39.25759014577799],[-76.62822378227303,39.25758538801266],[-76.62823431488847,39.25758372431318],[-76.62824337779404,39.2575808399228],[-76.6282523614294,39.25757472963041],[-76.62826031400617,39.2575681521776],[-76.6282684620564,39.25756385068316],[-76.62827845233629,39.25756264645605],[-76.6282875695825,39.25756155296116],[-76.62829749118001,39.25755797679276],[-76.62830651232606,39.25755355195199],[-76.62831626922365,39.25755222087534],[-76.62832604121282,39.25755353900454],[-76.62833432455812,39.25755658820106],[-76.62834256868796,39.25756048849862],[-76.62834995098304,39.25756479501656],[-76.62835836200456,39.2575684652446],[-76.62836644550414,39.25756985188928],[-76.62837528508365,39.25756978708671],[-76.62838553565499,39.25756998707086],[-76.62839511883719,39.25757173876693],[-76.62840504267069,39.25757503725823],[-76.62841465246314,39.25757834556408],[-76.62842381579097,39.25758194970974],[-76.62843285895403,39.25758681815278],[-76.62844297446934,39.25759267632935],[-76.62845088161161,39.25759875811389],[-76.62845258791748,39.25760524634055],[-76.62845562782259,39.25761084792734],[-76.62846216141563,39.25761482477385],[-76.62847295554181,39.25761720993196],[-76.62848125559238,39.25762105454901],[-76.62848498375755,39.2576266511065],[-76.62849114724875,39.25763249407249],[-76.62849952890004,39.25763712982073],[-76.6285085292932,39.25763998940982],[-76.62851657680903,39.25764094806547],[-76.62852663416331,39.25764154016086],[-76.62853503317592,39.25764219546763],[-76.62854405174809,39.25764291038286],[-76.62855310144171,39.25764387761087],[-76.62856196426719,39.25764889229855],[-76.62856630307051,39.25765536903381],[-76.6285715363716,39.2576607334476],[-76.62858118624203,39.25766170077041],[-76.62858983664249,39.25766081385279],[-76.62859989267419,39.25765767405585],[-76.62860910663792,39.25765359839905],[-76.62861830306102,39.25764955331217],[-76.6286268815274,39.25764602781479],[-76.62863692923425,39.25764137830116],[-76.62864656896481,39.25763542588667],[-76.62865567421315,39.25762931865052],[-76.62866534673546,39.25762462741339],[-76.62867685382933,39.25762295054211],[-76.62868553862108,39.25762611898386],[-76.62868696059334,39.25763247929952],[-76.62868324150658,39.25763865311286],[-76.62867638853578,39.2576443396087],[-76.62866897231083,39.25764983426094],[-76.62866160880702,39.25765521738414],[-76.62865352379187,39.25766098195231],[-76.62864571081134,39.25766657173047],[-76.6286382664882,39.25767189964978],[-76.62863099562901,39.257677955037],[-76.62862706844275,39.25768470468187],[-76.62863007114635,39.25769188339106],[-76.62863898566609,39.25769521380015],[-76.62864696751022,39.25769898173448],[-76.6286531991848,39.25770530501678],[-76.62865924390559,39.25771104310902],[-76.62866769661207,39.25771671765532],[-76.62867749368463,39.25772011210461],[-76.6286873798267,39.25772176294794],[-76.62869708888894,39.25772647764316],[-76.628705806551,39.25773421758471],[-76.6287090962837,39.25774256549544],[-76.6287105120816,39.25775210009746],[-76.62871081220067,39.25776095289336],[-76.62871112021273,39.25777006873848],[-76.62870993047439,39.25777822773586],[-76.62870973603656,39.25778704563951],[-76.62871696445268,39.25779397648521],[-76.62872524059321,39.25780106917842],[-76.62873053024154,39.25780851273544],[-76.62873404143862,39.25781638754155],[-76.62873993526127,39.25782461757727],[-76.62874754458336,39.25783160457222],[-76.62875665505418,39.25783779192691],[-76.62876537448854,39.25784320338412],[-76.62877489919491,39.25784861198195],[-76.62878383305795,39.25785356562479],[-76.6287929835734,39.25785962969795],[-76.62880113044127,39.25786840280998],[-76.62880524957544,39.25787767572594],[-76.62880956830347,39.25789109911057],[-76.62881362210751,39.25790200851498],[-76.628817569699,39.25791439574365],[-76.62881989087755,39.25792229110586],[-76.62882231505496,39.25793131725738],[-76.62882257046437,39.257939860047],[-76.62881680084125,39.25794864141069],[-76.62880886986073,39.25795707274906],[-76.6288006972452,39.25796473947184],[-76.62879230011934,39.2579719118635],[-76.62878389692544,39.2579791364799],[-76.62878041660512,39.25798750712271],[-76.62878291352068,39.25799547420173],[-76.62878463200394,39.25800451523746],[-76.62878291348058,39.25801253834898],[-76.62877781001143,39.25802000129077],[-76.62877107152325,39.25802749689554],[-76.62876373654613,39.25803406552544],[-76.62875852169037,39.25804133625064],[-76.62875857269428,39.25804974868336],[-76.6287613957582,39.25805760690015],[-76.62876752519834,39.25806465497053],[-76.62877438142283,39.25807186477418],[-76.62878229168103,39.25808002461664],[-76.62878982089437,39.25808815623095],[-76.62879726622491,39.25809748379933],[-76.62880347424598,39.25810501582848],[-76.62881007858401,39.25811297967712],[-76.6288168557432,39.25812046576399],[-76.6288234506325,39.25812757835634],[-76.62883022568498,39.25813458162415],[-76.62883726632867,39.25814109211021],[-76.62884481325169,39.25814716912527],[-76.62885265390639,39.25815379743742],[-76.62885954216588,39.25816086681728],[-76.62886498712527,39.25816830815593],[-76.62886828804935,39.25817740373374],[-76.62886861215327,39.25818699163049],[-76.62886927615993,39.25819516999903],[-76.6288713642993,39.25820376181731],[-76.62887534943312,39.25821340632343],[-76.62887922719827,39.25822031846116],[-76.62888496680881,39.25822880111685],[-76.62889094178286,39.25823570276776],[-76.62889716806748,39.25824240524211],[-76.62890288286565,39.25825098059755],[-76.62890735247819,39.25825948716221],[-76.62891022803962,39.25826861111961],[-76.62891255313049,39.25827731357948],[-76.62891427245181,39.25828486924898],[-76.6289147057703,39.25829440074205],[-76.62891475775362,39.2583019646538],[-76.62891199798291,39.25830969532939],[-76.62890632458733,39.25831558103212],[-76.62890119742366,39.25832070460973],[-76.6289050400004,39.25832681405103],[-76.62891334660979,39.2583280950719],[-76.62892399465555,39.25833074275021],[-76.62893328010692,39.25833605419593],[-76.62894203767679,39.25834216385464],[-76.62894887163093,39.25835031758166],[-76.62895238397159,39.25835798340533],[-76.62895192370377,39.25836690225458],[-76.62894858720496,39.25837480135355],[-76.62894663136021,39.25838278768592],[-76.62894681455957,39.25839029706529],[-76.62894782190403,39.25839840535713],[-76.62895459886431,39.2584050510183],[-76.62896212403388,39.25841263674255],[-76.62896839402117,39.25842051395202],[-76.62897440007238,39.25842812460065],[-76.62898091473326,39.25843773746131],[-76.62898593181568,39.25844613585863],[-76.62899263310149,39.25845329561677],[-76.62900144358605,39.25845815246995],[-76.62901203968259,39.25845855165958],[-76.62902236296651,39.25845772223986],[-76.62903250589599,39.25845504387394],[-76.62904318284889,39.25845150065562],[-76.62905254038814,39.25844834510219],[-76.62906167959152,39.25844573021974],[-76.62907199233234,39.2584449223808],[-76.62908300505781,39.25844674429166],[-76.62909345318796,39.2584510685526],[-76.62910248548285,39.25845804650617],[-76.6291067727081,39.25846620839319],[-76.62910814499278,39.25847388366613],[-76.62910843734282,39.25848157264247],[-76.62910894408893,39.25848991805496],[-76.62911606072994,39.25849608737255],[-76.62912520170096,39.25850045163946],[-76.62913485099351,39.25850510035216],[-76.62914334477426,39.25850892661677],[-76.62915362454062,39.25851243514562],[-76.62916297039165,39.25851417792163],[-76.62917367821753,39.25851625738138],[-76.6291833859503,39.25851704017938],[-76.62919411683723,39.25851803248341],[-76.62920587191378,39.2585190361275],[-76.62921690489307,39.25852097609026],[-76.62922650841729,39.258524185224],[-76.62923673726289,39.25852790526517],[-76.62924772269398,39.2585309629277],[-76.62926589821235,39.25853655823383],[-76.62928106690558,39.25854129011648],[-76.6292942314023,39.25854552655301],[-76.62931566568888,39.25855277604047],[-76.629325779529,39.25855832967393],[-76.6293350847745,39.25856518686725],[-76.62934440792816,39.25857194323037],[-76.6293535407696,39.25858075274244],[-76.62935947999476,39.25858830190776],[-76.62936645386294,39.25859585794151],[-76.62937512858376,39.25860187092356],[-76.62938472402077,39.25860796337623],[-76.62939395905316,39.2586153995368],[-76.62940103723474,39.2586218407472],[-76.62940960542373,39.25862784258123],[-76.62941943212053,39.25863158565787],[-76.62942977721832,39.25863279560924],[-76.62944646814179,39.25863402918852],[-76.62945949433002,39.25863568987496],[-76.62947207686979,39.25863910385554],[-76.62948247751923,39.25864454308203],[-76.62949330546674,39.25864714443599],[-76.6295046316821,39.25864773954986],[-76.62951462376107,39.2586482133535],[-76.62952492110686,39.25864969337611],[-76.6295357915407,39.25865236872316],[-76.6295482962892,39.25865581487776],[-76.6295581808362,39.25865868798358],[-76.62956928747735,39.25866272603347],[-76.62957909733915,39.25866636725678],[-76.62958827988216,39.2586696579033],[-76.62959843346147,39.25867293269601],[-76.62960849953174,39.25867477048731],[-76.62961830854189,39.25867435734919],[-76.62962796213455,39.25867486250311],[-76.62963925589175,39.25867745990821],[-76.62965061000979,39.25867759390289],[-76.62965687087555,39.25867791270416],[-76.62966125058685,39.25867813549542],[-76.62967142010029,39.25868191025812],[-76.62968170614613,39.25868688971388],[-76.62969129548328,39.2586894952502],[-76.62970161253264,39.25868986557362],[-76.62971058386718,39.25868966867272],[-76.62972120075136,39.25868942201334],[-76.6297325267827,39.25869005403606],[-76.62974359000781,39.25869442161348],[-76.62975389774775,39.25869924169535],[-76.62976339897038,39.25870252522603],[-76.62977330314285,39.25870563707898],[-76.62978520823678,39.25870898583617],[-76.62979584070607,39.25871041644858],[-76.62980614319855,39.25871024625636],[-76.62981647138305,39.25871003741116],[-76.62982612392747,39.25870985616049],[-76.62983674486595,39.25871149841326],[-76.62984682409143,39.258715703443],[-76.62985416892504,39.2587219013583],[-76.62986175591102,39.25872921158373],[-76.62987061995925,39.25873603491571],[-76.62987967470738,39.25874139510062],[-76.62988871444041,39.25874563558322],[-76.62989832316433,39.25874785923817],[-76.62990767372901,39.25874870750721],[-76.62991844206806,39.25875341372797],[-76.6299278827246,39.25875720508731],[-76.62993826336745,39.25875715853493],[-76.62994818844302,39.25875604223549],[-76.62995735763387,39.25875389938028],[-76.62996765916434,39.25875324816085],[-76.62997797386622,39.25875340406989],[-76.62998957932213,39.25875600242336],[-76.63000003985098,39.25876219033027],[-76.6300076315198,39.2587677170409],[-76.63001582449633,39.25877458418643],[-76.63004288788134,39.25878201701772],[-76.63008728253602,39.25879632595518],[-76.63011643623315,39.25880574434094],[-76.63012951056655,39.25880906972307],[-76.63014418038892,39.25881461511685],[-76.63015943508168,39.25882020919074],[-76.63017397591099,39.25882560644861],[-76.63018979819975,39.2588314518188],[-76.63020766389957,39.25883827555034],[-76.63022188478244,39.25884392671183],[-76.63023826652856,39.25884958467606],[-76.63025173194036,39.25885368503536],[-76.6302653255471,39.25885230552654],[-76.63027609045407,39.25884744735274],[-76.63028693746838,39.25884506564666],[-76.63029894502559,39.25884521334592],[-76.63031021077383,39.25884785923945],[-76.63032528141949,39.25885231053893],[-76.63034588406796,39.25885865464974],[-76.63035562318234,39.25885809530557],[-76.6303637074725,39.25885335929661],[-76.6303706083946,39.25884580376239],[-76.63037669372321,39.25883756107706],[-76.63038099778731,39.25882895157666],[-76.63038530514753,39.25882171125326],[-76.6303905449205,39.25881163734726],[-76.6303905767835,39.25880284955851],[-76.63041978922944,39.25881256440626],[-76.6304209916954,39.25882506634185],[-76.63042725973756,39.25883402258535],[-76.6304341904557,39.25883921120163],[-76.63044921790107,39.25884572961093],[-76.63046266084285,39.25885236733774],[-76.63047752345243,39.25885872308646],[-76.63049387781203,39.25886697513947],[-76.6305060021959,39.25887561832459],[-76.63051733314377,39.25888354740542],[-76.63053322274398,39.25888871196061],[-76.63054697881836,39.25889418326807],[-76.63056166128449,39.25890131580165],[-76.63057828873275,39.25890785904506],[-76.63059845864606,39.25891387206894],[-76.63061401260661,39.25891785465094],[-76.6306322992791,39.25892172332247],[-76.63064758706903,39.25892386389377],[-76.63066509814369,39.25892715272854],[-76.63068618097076,39.25893207597764],[-76.63070120917995,39.25893711980023],[-76.63072018202448,39.25893960703704],[-76.63073788368457,39.25893944832194],[-76.630753574701,39.25893936074765],[-76.6307713777115,39.25894199202344],[-76.63078717626294,39.25894662390417],[-76.63080293869014,39.25895174118293],[-76.6308189872058,39.25895776913422],[-76.63083567288042,39.25895869443664],[-76.63085345069669,39.25895859719572],[-76.63087230380617,39.25895848892009],[-76.63089215151626,39.258958290088],[-76.63090977845613,39.25895824100577],[-76.63093033074914,39.25895846504037],[-76.63094818431856,39.25896095682923],[-76.63096650531033,39.25896179627511],[-76.63098461013365,39.25896142530797],[-76.63100428054059,39.25895967207567],[-76.63102367306564,39.2589574351555],[-76.63104485753937,39.25895440217943],[-76.63106556914634,39.25895250898634],[-76.63108545096307,39.25895198955552],[-76.63110905469487,39.25894829129516],[-76.63113211449331,39.2589438013482],[-76.63115711424793,39.25893857255556],[-76.63117816892341,39.25893375923103],[-76.63120264730406,39.2589283017977],[-76.63122631863111,39.25892296432909],[-76.631247152437,39.2589180656264],[-76.63127640629553,39.25891092072358],[-76.63130080056133,39.25890380919641],[-76.63131814561181,39.25890025338038],[-76.63133451376454,39.25889895632216],[-76.6313519428147,39.25889885791084],[-76.63136604549983,39.25889873193978],[-76.63138760080322,39.25889902750153],[-76.63141588926335,39.25889950903481],[-76.63143989851707,39.25889937541741],[-76.63146274288347,39.25890021817419],[-76.63148585036195,39.25890305064703],[-76.63151182298377,39.25890614882526],[-76.63153503650099,39.25890886632294],[-76.63155785301051,39.25891306703529],[-76.63158665575185,39.25891938441256],[-76.63160530918316,39.25892091118671],[-76.63163002087407,39.25892072298578],[-76.63164722720381,39.25892067517572],[-76.63167270800693,39.25892053261531],[-76.63169230845581,39.25892042114768],[-76.63171145131199,39.25892029473005],[-76.63173079613425,39.2589169730194],[-76.63174797381254,39.25891150518629],[-76.6317650414196,39.25890492005374],[-76.63178424106256,39.25889697423915],[-76.63180151499535,39.25888947817146],[-76.63182241691406,39.25888149084844],[-76.63184141467745,39.25887582873806],[-76.63186501532877,39.25886779762418],[-76.63190058542446,39.25885296540061],[-76.63191906214999,39.25884276357728],[-76.63193964425723,39.25882516854469],[-76.63196028771195,39.25880914734171],[-76.63197496764082,39.25879444958821],[-76.6319895558177,39.25878090993237],[-76.63200236315534,39.25876826005666],[-76.63201379263982,39.25875855497464],[-76.63202755980009,39.2587502849338],[-76.63204424306417,39.25874205915912],[-76.63206010495287,39.2587355990151],[-76.63207350980471,39.2587310588129],[-76.63208761939249,39.25872534801785],[-76.63209743109718,39.25872039030862],[-76.63210870035812,39.25871297987113],[-76.63211555481536,39.25870406753316],[-76.63212185685597,39.2586928691174],[-76.63213773931049,39.25867774364297],[-76.6321405815504,39.25867594380568],[-76.63214876226354,39.25867224926341],[-76.6321655542571,39.25866897082768],[-76.63218420353998,39.25867106407999],[-76.63220242871586,39.25867964873375],[-76.63220546515285,39.25868576184575],[-76.63220592698049,39.25869211370389],[-76.63220280268345,39.25869937671546],[-76.63219520818845,39.25870643656391],[-76.6321941236851,39.25870733123222],[-76.63213440311809,39.25874846146281],[-76.63211495363372,39.25876081040474],[-76.63207578147704,39.25878545517829],[-76.63205550665097,39.25879899053742],[-76.63203761928202,39.25881128671214],[-76.6320209077177,39.25882273264114],[-76.63200529035075,39.25883387213285],[-76.63199067896602,39.25884428875656],[-76.63197790220096,39.25885372118485],[-76.63197013652459,39.25886049223638],[-76.63196062676268,39.25886642821406],[-76.63195164723682,39.25886753143337],[-76.63194358486611,39.25886739086451],[-76.63193874645029,39.25886691720804],[-76.63193366795959,39.25887028637408],[-76.63191835900911,39.25887959285809],[-76.63190622962703,39.25888617727929],[-76.63189154073818,39.25889321396779],[-76.63187383945321,39.25890156804115],[-76.6318565039997,39.25891020339747],[-76.63184132421964,39.25891850501981],[-76.63182930427801,39.25892498528711],[-76.63181189748208,39.25893374652061],[-76.63179535657967,39.25894176463115],[-76.63177832963031,39.25894877505785],[-76.63176156212785,39.25895401628748],[-76.6317436753076,39.25895859734483],[-76.63172434609075,39.25896091925454],[-76.63170269660834,39.25896246913202],[-76.63168123071121,39.25896324942509],[-76.63165918400666,39.25896431433637],[-76.63163653849338,39.2589644441699],[-76.63162033533932,39.25896453295785],[-76.63160140883295,39.25896471858931],[-76.63158658335185,39.25896524856707],[-76.63156858415137,39.25896714675947],[-76.63155184348192,39.25897078647864],[-76.63153734092215,39.25897249836969],[-76.63151773930002,39.25897260980786],[-76.63150300883241,39.25897269239179],[-76.63148041974409,39.25897355829937],[-76.63146493960767,39.25897364393033],[-76.63145020915377,39.25897372380535],[-76.63143456098163,39.25897381521032],[-76.63141914158578,39.25897514498595],[-76.63139730840621,39.25897859845311],[-76.63138101776694,39.25897991467959],[-76.63136465937255,39.25898334479258],[-76.63133473899222,39.25898898064057],[-76.63132594484051,39.25899030418135],[-76.63130733402613,39.25899350742718],[-76.63129296298014,39.25899577367304],[-76.63127615054914,39.25900028687219],[-76.63125670737868,39.25900535748973],[-76.63124118092158,39.2590110114908],[-76.63122411460145,39.2590188954581],[-76.63120605107822,39.2590269240169],[-76.63118645313317,39.25903056101553],[-76.63116875524561,39.25903065855795],[-76.63115173982132,39.25903075373758],[-76.63113550090266,39.25903638296756],[-76.63112365221667,39.25904445085305],[-76.63110865469491,39.25905578403604],[-76.63109826512273,39.25906534186849],[-76.63108149271201,39.25907418695657],[-76.63106962585233,39.25908396533704],[-76.63106275561644,39.25909498896308],[-76.63106056396896,39.25910758921951],[-76.63105297834289,39.25911581011095],[-76.6310414675492,39.25912061466816],[-76.6310196164698,39.25912437877374],[-76.63100562307305,39.25912665247652],[-76.63099060412341,39.25912917516975],[-76.63097293126259,39.25913136254204],[-76.63095726453552,39.25913145022214],[-76.6309420879379,39.25913153493675],[-76.63092389641467,39.25913163629544],[-76.63090774186585,39.25913172874103],[-76.63089220458058,39.25913076562358],[-76.63088076457635,39.25912685816399],[-76.63086741707687,39.25912524346571],[-76.63085374012026,39.25912971962103],[-76.63084194798475,39.25913514840695],[-76.63082862117389,39.2591355704047],[-76.63081352374992,39.25913357638012],[-76.63080203199729,39.25913003986639],[-76.63078684316552,39.25912735376151],[-76.63076833133189,39.25912644162625],[-76.63075326516704,39.25912645730461],[-76.63073924841892,39.25912653663251],[-76.63072334184878,39.25912662442793],[-76.63070776665521,39.25912671236259],[-76.63068867713761,39.25912681986841],[-76.63067245830027,39.25912791103063],[-76.6306570095467,39.25913153306728],[-76.63064756042715,39.25913736554107],[-76.63064640489532,39.25914633715421],[-76.63064930487062,39.25915438202313],[-76.63065492896496,39.25916151667757],[-76.63066218117061,39.25916594334084],[-76.63067356209871,39.25917029201195],[-76.63068649746806,39.25917451135653],[-76.63070039723915,39.25917531531996],[-76.63071534986724,39.25917529929129],[-76.63073209049047,39.25917658508797],[-76.63074850742719,39.25917817432385],[-76.63076241514365,39.2591794557117],[-76.63077806797786,39.25917936801386],[-76.63079177420573,39.25917929040726],[-76.63081190887638,39.25917917806376],[-76.63082666488253,39.25917909474595],[-76.63084589112928,39.25917898854826],[-76.63086386434166,39.25917875950707],[-76.63088126475446,39.25917816565323],[-76.63090040384813,39.25917788532455],[-76.6309174019237,39.25917779102746],[-76.63093178368742,39.25917770652015],[-76.63094588703157,39.25917791028238],[-76.63096057805802,39.25918007325767],[-76.63097481012582,39.25918159254159],[-76.6309930992379,39.25918166623048],[-76.63101051484104,39.25918684182121],[-76.63102170167012,39.25919264819115],[-76.63103291186304,39.25920131547107],[-76.63104081623517,39.25921001289726],[-76.63104895255402,39.25922290412441],[-76.63105321202775,39.25923645604329],[-76.63105669542017,39.25924929661949],[-76.63107447580023,39.25927390650457],[-76.63108444182149,39.25928676744682],[-76.63109070688205,39.25930055626154],[-76.63109537905129,39.25931540748103],[-76.63109590192435,39.25933295607416],[-76.63109604984942,39.25934885598549],[-76.63109485346249,39.25936279971037],[-76.63109283274569,39.25937662014258],[-76.63108816423622,39.25939427583093],[-76.63108066207421,39.25940582712308],[-76.63107005628426,39.25941818475896],[-76.63105912688185,39.25943016215396],[-76.63104751465544,39.25944042684507],[-76.63103586910267,39.25944974652528],[-76.63102179331877,39.25946094567571],[-76.63101006130279,39.25947040289903],[-76.63099423839759,39.2594762234783],[-76.63098152812796,39.25947683118756],[-76.63096244231247,39.25948311621291],[-76.63094880725023,39.25948910489925],[-76.63093441301773,39.25949580820879],[-76.63092107047987,39.25950124654162],[-76.63090499767038,39.25950476576332],[-76.63089630735789,39.25950794247699],[-76.63089332110235,39.25951714704031],[-76.63089342050462,39.25952788720285],[-76.630899838156,39.25953795363469],[-76.63090280900826,39.25954596899382],[-76.63089721288044,39.25955305125244],[-76.63089379096709,39.25956381457539],[-76.63089048940695,39.25957527456977],[-76.63088989721625,39.25958598913828],[-76.63089057601384,39.25959671761037],[-76.63089687012207,39.25960469657571],[-76.63091063811214,39.25961392407642],[-76.63092472464895,39.25962294630102],[-76.63093010406723,39.25963035400531],[-76.63092789160525,39.25963670016398],[-76.63091670619643,39.25963952043986],[-76.63090649147003,39.25963838489309],[-76.63089679377764,39.25963563859694],[-76.63088739903422,39.25963301215357],[-76.63086129792651,39.25962204703298],[-76.63084748819058,39.25961483170963],[-76.63083489076909,39.25960866418536],[-76.63081931908607,39.25960538417682],[-76.6308031628277,39.25960511629596],[-76.63078850639569,39.2596051963211],[-76.63077223533564,39.25960739617781],[-76.63075710875906,39.25960764586653],[-76.63074256817745,39.25960772895251],[-76.63071335097683,39.25960976738677],[-76.63068314795433,39.2596104299437],[-76.6306678031346,39.25960986824384],[-76.63065677651866,39.25960666556273],[-76.6306526444109,39.25959915187543],[-76.6306530449142,39.25959343956738],[-76.63065754533604,39.25958717717544],[-76.63066868384976,39.25958112302163],[-76.63068005188467,39.25957571633961],[-76.63069413392469,39.25957201343648],[-76.6307238854944,39.2595683706192],[-76.63073126707886,39.25956553299507],[-76.63073163424561,39.25955954584784],[-76.63073062495199,39.25955399664886],[-76.63072400585786,39.25955013766337],[-76.63071182000903,39.25954838067663],[-76.63070043690145,39.25954844666425],[-76.63068399999776,39.2595486742072],[-76.63066740084241,39.25955069016165],[-76.63064704057491,39.25955361036394],[-76.63062380415015,39.25955926705457],[-76.63060887076824,39.25956291592748],[-76.6305957678978,39.25956303864786],[-76.63057781071507,39.25956551151041],[-76.63056401969023,39.25956561584852],[-76.6305415527432,39.25956813126542],[-76.63052045305636,39.25957865249726],[-76.63050001666758,39.25959129441748],[-76.63048353451683,39.25960822111737],[-76.63046699624564,39.25962502063012],[-76.63044584251088,39.2596465832854],[-76.63042373110738,39.25967092989706],[-76.63039906840075,39.25970037312301],[-76.63036969320778,39.25973607355316],[-76.63033971716541,39.2597801249002],[-76.63032066786771,39.2598105135705],[-76.63030316874442,39.25984715213819],[-76.63028936984179,39.25988123066225],[-76.63027334118824,39.25992028791108],[-76.63026297011859,39.2599402594976],[-76.63025419544518,39.25995894531013],[-76.63024677560998,39.2599766742694],[-76.63023990465621,39.25999802423964],[-76.63023322659585,39.26002037917226],[-76.63022513283234,39.26004869903142],[-76.63021967187014,39.26006584415443],[-76.63021408539785,39.26008194849564],[-76.63020644605278,39.26009754914812],[-76.63020016861709,39.26011150388329],[-76.63019440554712,39.26012747615518],[-76.63018762929153,39.26014443337763],[-76.63018166856288,39.26015920160115],[-76.63017315851762,39.26017645782161],[-76.63016529807297,39.26019245951692],[-76.63015684564077,39.26020777476398],[-76.63014464127278,39.26022311422371],[-76.63013336061307,39.26023662803404],[-76.63011398650733,39.26026104625971],[-76.63011102377367,39.26026504534159],[-76.6300992146604,39.2602810201816],[-76.63008859335844,39.26029696273147],[-76.63007926608775,39.2603133903666],[-76.63006653504583,39.26033084496174],[-76.63005291474546,39.26034818145571],[-76.63003920687075,39.26036408995599],[-76.63002724707884,39.2603785122917],[-76.63001398423967,39.2603963993752],[-76.63000261535535,39.26041415730974],[-76.62999151092734,39.26043186112955],[-76.62997981536259,39.26045204830233],[-76.62996673592299,39.26047520094247],[-76.62995356169607,39.26050675293666],[-76.62994326468051,39.26052671031318],[-76.62993324947175,39.26054617495638],[-76.62992295615392,39.26056497665829],[-76.62991165237598,39.26058557130435],[-76.62989850428625,39.26060521523164],[-76.62988645894717,39.26062269718875],[-76.62986444434917,39.26064927069136],[-76.62984038887261,39.26067658989695],[-76.62983659298672,39.26067992698362],[-76.6298336168899,39.26068314955468],[-76.62983053569727,39.26068741668433],[-76.62982774418076,39.26069168292543],[-76.62982509300568,39.26069570009641],[-76.62982275717896,39.26069990381952],[-76.6298211532971,39.2607041738044],[-76.62981969867006,39.26070870728378],[-76.62981831720437,39.26071365354514],[-76.62981695902745,39.2607187998502],[-76.62981572797698,39.26072378712023],[-76.62981426517271,39.26072944383037],[-76.62981264728322,39.26073417766607],[-76.6298103656422,39.26073976603877],[-76.62980830768987,39.26074423185996],[-76.62980364833457,39.26075383466208],[-76.62980218491995,39.26075827533447],[-76.62980033306508,39.26076321380723],[-76.62979766219362,39.26076878473877],[-76.62979509739621,39.26077356783342],[-76.62979029627219,39.26078413671113],[-76.62978778223275,39.26079073951524],[-76.62978533304661,39.26079934763138],[-76.62978290605962,39.26080614347401],[-76.62978042200044,39.26081255180674],[-76.62977795266383,39.26081813688467],[-76.62977628713551,39.2608231173797],[-76.62977526245061,39.26082808097907],[-76.62977484544218,39.26083272221815],[-76.62977289921072,39.26083553908626],[-76.62977155651784,39.26083704994328],[-76.62976837005226,39.26083995027548],[-76.62976412416364,39.26084270134303],[-76.62976042035449,39.26084393362464],[-76.62975602633072,39.26084598432878],[-76.62975257768753,39.26084916667477],[-76.62975003652176,39.26085297251048],[-76.62974971914936,39.26085694929743],[-76.62974979300377,39.26086100478394],[-76.62975102967764,39.26086493512708],[-76.62975416265523,39.26086895612136],[-76.6297580720057,39.26087230128581],[-76.62976282095725,39.26087462222275],[-76.62976974987264,39.26087796429641],[-76.62977702476633,39.26088139663637],[-76.62978314779927,39.26088440828924],[-76.62979032747641,39.26088787996195],[-76.62979807480374,39.26089203890756],[-76.62980616102793,39.26089720147485],[-76.62981097094311,39.260900497232],[-76.62981321815796,39.26090373086414],[-76.62981345424141,39.2609086732168],[-76.62981311974126,39.26091371285508],[-76.62981112073449,39.26091776180674],[-76.62980870877128,39.26092123296561],[-76.6298049394416,39.26092280823433],[-76.62980064225538,39.26092317571167],[-76.62979274894647,39.26092323369767],[-76.62978870503876,39.26092324797158],[-76.62978529962923,39.26092280666869],[-76.62977861125499,39.26092132994228],[-76.62977472422725,39.26092036827877],[-76.62977182570687,39.26091937910565],[-76.62976694355976,39.26091771350762],[-76.62976214977878,39.26091532307045],[-76.6297591896715,39.26091325728616],[-76.62975612861271,39.26091188567487],[-76.62974723625909,39.26090977146065],[-76.62973422163331,39.26090847835799],[-76.62972857497179,39.26090765887037],[-76.6297150117835,39.26090779445404],[-76.62970679362785,39.26090859814585],[-76.62970252118838,39.26091443785786],[-76.62970078346464,39.26092392646349],[-76.6296935173652,39.26094323491313],[-76.62968932720491,39.26095573335454],[-76.62968659940155,39.26096133112677],[-76.62968186311441,39.26096746302527],[-76.62967677026829,39.26097686448445],[-76.62967231752323,39.26098639136718],[-76.62966418455485,39.26100861556623],[-76.62965946861553,39.26102017284811],[-76.62965504622348,39.26103120951145],[-76.62965013749951,39.26104196270065],[-76.62964056696867,39.26105811749913],[-76.62963592569099,39.2610664682846],[-76.62963112118415,39.26107612286581],[-76.62962696381773,39.2610823340538],[-76.62962191469441,39.2610875732036],[-76.62961889297121,39.26109065240307],[-76.62961515749356,39.26109506338719],[-76.62961188226052,39.2611000937491],[-76.62960891884019,39.26110487828425],[-76.62960478630578,39.26110766303183],[-76.62960072701718,39.26110995619145],[-76.6295979842637,39.26111441984855],[-76.62959669370059,39.2611201491601],[-76.62959392417898,39.26112507932996],[-76.62959005761623,39.26113040688064],[-76.62958614668682,39.26113602073513],[-76.62958231989184,39.26114105476093],[-76.62957796060377,39.26114599162555],[-76.62957300255165,39.26115131843488],[-76.62956878993518,39.26115590356188],[-76.62956457503493,39.26115959421985],[-76.62955561912086,39.26116565605341],[-76.62954985326618,39.2611694652232],[-76.62954464237379,39.26117372832851],[-76.62953891992844,39.26117943194782],[-76.62953488971911,39.26118503191274],[-76.62953207519065,39.26119103565343],[-76.62952980180529,39.26119747707254],[-76.62952618886949,39.2612037151959],[-76.6295222876772,39.26120945969014],[-76.62951733946244,39.26121556389004],[-76.62951237693832,39.26122174551051],[-76.62950763775873,39.261227759392],[-76.62950342280189,39.26123345695651],[-76.62950034276504,39.26124037954182],[-76.62949717589444,39.26124751083096],[-76.62949423388881,39.26125373936022],[-76.62948966293088,39.26126326316008],[-76.6294858866318,39.26127105098674],[-76.62948391077903,39.26127798336085],[-76.62948041508464,39.26128795192891],[-76.62947704269297,39.26129538702822],[-76.62947357382632,39.26130310196155],[-76.62947036665635,39.26130973950242],[-76.629466838604,39.26131658410783],[-76.62946258329193,39.2613246829883],[-76.62945914132968,39.2613310171302],[-76.62945575468541,39.2613371866062],[-76.62945262685706,39.26134305243956],[-76.6294475440757,39.26135184680275],[-76.62944354012497,39.26135907183088],[-76.62943820336966,39.26136857339507],[-76.62943473395879,39.26137572534603],[-76.62943215168322,39.26138118395212],[-76.629429415278,39.26138775632058],[-76.6294262024812,39.2613970231812],[-76.62942461987267,39.26140386851991],[-76.62942388938328,39.26141195420156],[-76.62942386898418,39.2614178577641],[-76.6294237140841,39.26142377891752],[-76.62942237239562,39.26143064123025],[-76.62941980659438,39.26143760416886],[-76.62941681352315,39.26144473330168],[-76.62941355753581,39.26145272904332],[-76.62941103572038,39.26145970022745],[-76.62940814121984,39.26146814479088],[-76.62940502979266,39.2614775245665],[-76.62940200596975,39.26148654791481],[-76.6293995473368,39.26149473263115],[-76.6293964421118,39.26150292431441],[-76.62939256810428,39.261511667543],[-76.62938880033263,39.26151981479898],[-76.62938272995277,39.26153511318264],[-76.62937905045089,39.26154188884876],[-76.62937535771067,39.26154831497536],[-76.62936987956371,39.26155715222448],[-76.62936457654486,39.26156507034302],[-76.62935817281399,39.26157453070325],[-76.62935230659336,39.26158334961205],[-76.6293477761778,39.26159064953995],[-76.62934381483885,39.26159858540391],[-76.62933974834307,39.26160757573385],[-76.62933528492304,39.26161757727281],[-76.62933062412958,39.26162831951974],[-76.62932361278992,39.26164252229942],[-76.62931904554836,39.26165221274537],[-76.62931528924069,39.26166060234122],[-76.62931230281843,39.26166845120473],[-76.62931000889746,39.26167704268465],[-76.62930727776813,39.2616852625691],[-76.62930432772225,39.26169435460562],[-76.62930158625288,39.26170255734272],[-76.62929855405878,39.26171118252238],[-76.62929598470633,39.26171882102178],[-76.6292924709165,39.26172825176815],[-76.62929010302464,39.26173525406117],[-76.6292874524883,39.26174312830496],[-76.62928273356967,39.26175545661673],[-76.62927839701466,39.26176756454667],[-76.6292742898984,39.26177811667555],[-76.62927041540775,39.26178761203836],[-76.62926618579077,39.26179765844994],[-76.62926239364509,39.26180625150394],[-76.62925864009418,39.26181411055461],[-76.6292549004493,39.26182152557099],[-76.6292512098086,39.26182621412058],[-76.62924532743685,39.26182924644596],[-76.62923849064104,39.26183132454778],[-76.62923228301064,39.26183517914647],[-76.6292288858763,39.26184046492973],[-76.62922794931957,39.26184717989214],[-76.62922734423523,39.26185565329733],[-76.62922596567495,39.26186202727497],[-76.62922435205351,39.26186992370718],[-76.62922317505556,39.2618769729956],[-76.62922290005125,39.26188347926728],[-76.62922475494264,39.26189017061582],[-76.62922779853535,39.26189577849192],[-76.62923122325236,39.26190140378507],[-76.62923509283866,39.26190770876023],[-76.62923984133529,39.26191544963032],[-76.62924411211284,39.26192192341443],[-76.62924823388832,39.26192875072935],[-76.62925167235596,39.26193507145729],[-76.62925415966542,39.26194092168416],[-76.62925641640348,39.26194632620414],[-76.62925933720501,39.26195126352108],[-76.62926343600006,39.26195561455476],[-76.62926843709847,39.26195891994426],[-76.62927454103918,39.26196138569746],[-76.62928087862758,39.26196237763263],[-76.62928718497855,39.26196336046114],[-76.62929376532637,39.26196601417608],[-76.62930034130237,39.26196928310057],[-76.62930643893553,39.26197295676054],[-76.62931166901572,39.26197723479844],[-76.62931683954355,39.26198182251194],[-76.62932165821063,39.26198700181909],[-76.62932815102369,39.26199354837009],[-76.62933522625377,39.26199928696963],[-76.62934221200044,39.26200551980737],[-76.62934824951755,39.26201049938729],[-76.62935495046355,39.26201513336488],[-76.6293624094898,39.26202037865318],[-76.62936884276934,39.26202479199807],[-76.62937513648176,39.26202886170988],[-76.62938240812971,39.26203293450782],[-76.62938852299008,39.2620361956666],[-76.62939436108333,39.2620414223256],[-76.62939742439538,39.26204658618116],[-76.62939888155042,39.26205311683562],[-76.62940122276505,39.26205921070584],[-76.62940527461106,39.26206501092],[-76.62941004857164,39.26207010000561],[-76.62941349497225,39.26207557133039],[-76.62941678234581,39.26208176276668],[-76.62942072261495,39.26208674112885],[-76.62942783805183,39.2620903306199],[-76.62943484678567,39.26209194259066],[-76.62944288157108,39.26209188777705],[-76.62945009913696,39.26209145206212],[-76.62945698360973,39.26209134227404],[-76.62946477731889,39.26209218746506],[-76.62947253785462,39.26209539165919],[-76.62947920353632,39.26209923734732],[-76.62948538847048,39.2621037264672],[-76.62949197335637,39.26210817811572],[-76.62949866965249,39.26211215270897],[-76.62950647826919,39.2621154696484],[-76.6295143062646,39.26211662841114],[-76.62952183535988,39.26211666837877],[-76.62952958162901,39.26211661354975],[-76.62953644564652,39.26211687120535],[-76.62954477232725,39.26211905571114],[-76.62955200005935,39.26212222218847],[-76.629561523712,39.26212795408576],[-76.6295673901158,39.26213331053567],[-76.62957296395585,39.26213922003397],[-76.62957784742409,39.26214619746523],[-76.62958167925133,39.2621535291834],[-76.62958474879805,39.2621610539633],[-76.62958726598285,39.26216851304632],[-76.62958930780314,39.26217602827892],[-76.62959063004782,39.26218310256824],[-76.62959104846981,39.26219018211353],[-76.62959113308435,39.26219772450074],[-76.62959122348039,39.26220549119711],[-76.62959129531853,39.262213261438],[-76.62959137656348,39.26222011743026],[-76.62959147039638,39.26222722567692],[-76.62959226688196,39.26223424336091],[-76.62959607111966,39.26224020222286],[-76.62959582332421,39.26224705177256],[-76.62959357380831,39.26225379862625],[-76.62958783190919,39.26226121544342],[-76.62958267435486,39.26226479053176],[-76.62957571468863,39.26226709345716],[-76.6295687737195,39.26226870014839],[-76.6295637039705,39.26227232415433],[-76.62955945751425,39.2622793835793],[-76.6295574917249,39.26228527199578],[-76.62955621855055,39.26229099505451],[-76.62955547434544,39.2622948281717],[-76.62955309024721,39.26229494765888],[-76.62955149312378,39.26229502729265],[-76.62954447332646,39.26229286672717],[-76.62953743371025,39.26229028544066],[-76.62953115100572,39.26228942790695],[-76.62952445002634,39.26229233966301],[-76.62951967104671,39.26229730762756],[-76.62951492200622,39.26230253330566],[-76.62950919035131,39.26230576608967],[-76.6295019778526,39.26230922209524],[-76.62949640579713,39.26231384436448],[-76.62949346564599,39.26232015306602],[-76.62949185037949,39.26232725862243],[-76.62948997559742,39.2623325816433],[-76.62948552830346,39.26233727051453],[-76.62947849550278,39.26234026319071],[-76.62946983031053,39.2623425445146],[-76.62946138373714,39.26234578584433],[-76.62945334551544,39.26235048770408],[-76.62944817341828,39.26235484820919],[-76.62944598321229,39.2623588875422],[-76.62944608227942,39.2623643248829],[-76.62944598320925,39.26236909593175],[-76.62944352128494,39.26237391176898],[-76.62943867307899,39.26237704555062],[-76.62943146680793,39.26237886307674],[-76.6294232217647,39.26238189786329],[-76.6294157947009,39.26238716552911],[-76.62941006903813,39.26239346453713],[-76.62940483895933,39.26240005155269],[-76.62939908900742,39.26240611988722],[-76.62939153726836,39.26241307249257],[-76.62937274838724,39.26242799564653],[-76.62935793017876,39.2624398588147],[-76.62935353665647,39.26244334532693],[-76.62934408173311,39.26245084949674],[-76.62933436221815,39.2624588743745],[-76.62932053337278,39.2624681077197],[-76.62930694184418,39.26247383332598],[-76.62929796537559,39.26247558670604],[-76.62928939190989,39.26247782777165],[-76.62928274890591,39.26248117026336],[-76.62927729378055,39.26248580640272],[-76.62927346641482,39.26248893529334],[-76.62926916875189,39.2624907061444],[-76.62926291338819,39.2624914880782],[-76.62926087217835,39.26249561615317],[-76.62925835617752,39.26249924640666],[-76.62925492219419,39.26250359527599],[-76.62925570996072,39.26250894921818],[-76.62925596084075,39.26251149647774],[-76.6292561864777,39.26251377432839],[-76.62925195589987,39.26251756400885],[-76.62924497589005,39.26251931828341],[-76.62923744293298,39.26252045288581],[-76.6292305325331,39.26252307751997],[-76.62922585892676,39.2625271648552],[-76.62922122958096,39.26253120819241],[-76.62921490757066,39.26253454358688],[-76.62920967708973,39.26253854088801],[-76.6292056465458,39.26254285454384],[-76.62920152061805,39.26254768223614],[-76.6291978518167,39.2625528401516],[-76.62919659926568,39.26255815792619],[-76.62919703140371,39.26256393590762],[-76.62919978127847,39.26256832592002],[-76.6292028302213,39.26257291504533],[-76.62920545653564,39.26257855493157],[-76.62920552691646,39.26258460019915],[-76.62920296417886,39.26260050054778],[-76.62920086663063,39.26261540972025],[-76.6291986900502,39.26264322662977],[-76.62919702140773,39.26266054040183],[-76.62919455085523,39.26267232453727],[-76.62919220793586,39.26268474051312],[-76.62919027139037,39.26269722082575],[-76.62918841627224,39.26271296667464],[-76.62918688464708,39.26272490240112],[-76.62918658804178,39.26272822349195],[-76.62918197987662,39.26274218073222],[-76.62918169769729,39.26274895000343],[-76.62918158712908,39.26275591798515],[-76.62918117180595,39.26276111409729],[-76.62917726196117,39.26276450124413],[-76.62916998105783,39.26276484846729],[-76.62916082219814,39.2627649105219],[-76.62915151617381,39.26276497391255],[-76.62914196083617,39.26276529503515],[-76.62913426178709,39.26276716503271],[-76.62912756950888,39.26277061725335],[-76.62912403990515,39.26277286072492],[-76.62912057152543,39.26277558359762],[-76.62911525765438,39.26277735213429],[-76.62910742352443,39.26277735441421],[-76.62909894605147,39.26277762669314],[-76.62909081050188,39.26278076178712],[-76.62908357749069,39.2627854688668],[-76.62907812177596,39.26279131922821],[-76.62907335421899,39.26279807973582],[-76.62906964327372,39.26280597584446],[-76.62906695662595,39.26281387428771],[-76.6290630085122,39.26282391617385],[-76.6290588998107,39.26283497541887],[-76.62905535094052,39.26284356382772],[-76.62905149215095,39.26285070372548],[-76.62904681084088,39.26285781039875],[-76.6290447748667,39.26286558749177],[-76.62904463472569,39.26287355523072],[-76.6290439049741,39.26287927189281],[-76.62904276646448,39.26288294162266],[-76.62904167119609,39.2628876491722],[-76.62904131862419,39.26289236537326],[-76.62904137575424,39.26289761792398],[-76.62904130334439,39.2629026034385],[-76.62904066876065,39.2629078474987],[-76.62903968198782,39.26291352281432],[-76.62903816444479,39.26292009902134],[-76.62903683161549,39.26292636234509],[-76.62903511416764,39.26293327570808],[-76.62903351951789,39.26293975078561],[-76.62903180759731,39.26294560666597],[-76.62902990143228,39.26295093858722],[-76.62902712460854,39.26295657942325],[-76.62902489165525,39.26296213820605],[-76.62902267094968,39.26296867886309],[-76.62902214700202,39.26297425925856],[-76.62902188242414,39.26297898834816],[-76.62901985509177,39.26298378122805],[-76.62901640349175,39.26298794627785],[-76.62901176497122,39.26299218504382],[-76.62900846639579,39.26299700093033],[-76.62900596765245,39.26300197877934],[-76.62900368704666,39.26300667807979],[-76.62900075210577,39.2630113113585],[-76.62899815305671,39.26301530615409],[-76.62899528302202,39.2630203792118],[-76.62899336727548,39.26302488329762],[-76.62899271804773,39.26303004624214],[-76.6289922304983,39.26303619963993],[-76.62899217251679,39.26304108431393],[-76.62899042335533,39.26304608344687],[-76.62898709824833,39.26305109741755],[-76.62898448582608,39.26305631991538],[-76.62898285800867,39.26306226703797],[-76.62898051028387,39.26306694901128],[-76.62897559150974,39.26307204261855],[-76.62897113098467,39.26307680889364],[-76.628966689828,39.26308252463774],[-76.62896378560694,39.26308815155802],[-76.62896252363278,39.26309437997465],[-76.62896106756027,39.2631000565088],[-76.62895797196276,39.26310571885492],[-76.62895525448441,39.26311020149074],[-76.62895118508085,39.26311506808516],[-76.6289471898808,39.26311926114052],[-76.62894318542996,39.2631245585063],[-76.62894086010255,39.26313005304096],[-76.62893972650197,39.26313610621342],[-76.6289394441467,39.26314157477586],[-76.62893733100348,39.26314726454645],[-76.62893434401433,39.26315232101917],[-76.62893101450365,39.26315684585798],[-76.62892561781804,39.26316092819354],[-76.62892177260541,39.26316480104909],[-76.62892054545327,39.26316990902154],[-76.62891781567657,39.26317519149825],[-76.62891429797241,39.26318002920864],[-76.62890989696865,39.26318604142949],[-76.62890610178549,39.26319120434029],[-76.62890183502105,39.26319680623553],[-76.6288923493702,39.26320727739569],[-76.628889883941,39.26321142123739],[-76.6288882658578,39.26321639105752],[-76.62888649993982,39.26322171170938],[-76.62888404860689,39.2632271481955],[-76.62888299656655,39.26323311425065],[-76.62888304137725,39.26323872616781],[-76.62888309850058,39.2632439778173],[-76.62888500294258,39.26324939293896],[-76.62888941005382,39.26325351436203],[-76.62889452273109,39.26325632559776],[-76.62889919451442,39.26326057666642],[-76.62890175947501,39.26326576237812],[-76.62890277869712,39.2632702820424],[-76.62890311506645,39.26327620024076],[-76.62890318749939,39.26328184827578],[-76.62890325457687,39.26328785569977],[-76.62890307838154,39.26329318678005],[-76.62890123146077,39.26330269664113],[-76.62889991038318,39.26330803851567],[-76.6288983135321,39.26331293634157],[-76.62889625629543,39.26331856953956],[-76.62889372379342,39.26332468134414],[-76.62889081950949,39.26333031726978],[-76.62888811333676,39.2633352944603],[-76.62888499624957,39.263340409971],[-76.62888150230742,39.26334535494654],[-76.62887759551008,39.26335014458609],[-76.62886989660916,39.26335684717908],[-76.62886260286977,39.26336362491489],[-76.62885727777206,39.26337018908516],[-76.6288539948428,39.26337666062518],[-76.62884967579177,39.26338472414785],[-76.62884719889669,39.26339105861642],[-76.6288448087154,39.26339831574387],[-76.62884277797114,39.26340442102619],[-76.62884101826313,39.26340921745059],[-76.62883860418772,39.26341439643405],[-76.62883560401063,39.26341931234271],[-76.6288329364404,39.26342421849328],[-76.62883208506274,39.26342970147032],[-76.62883001806814,39.26343454016009],[-76.62882587861621,39.26343861565545],[-76.62882265226645,39.26344379477342],[-76.62882302760238,39.26344957257525],[-76.62882587379298,39.26345438085534],[-76.62882590761104,39.26345943516299],[-76.62882414403305,39.26346452792705],[-76.62882180312783,39.26346967381301],[-76.62882006462667,39.2634746243351],[-76.62881674952351,39.26348791007069],[-76.62889210758451,39.263539347808],[-76.6288654827641,39.26356405275826],[-76.62879591797379,39.26351778480052],[-76.62877827614493,39.26352600077149],[-76.62876999608058,39.2635288327285],[-76.62875900733391,39.26353246681174],[-76.62874713063759,39.26353639083584],[-76.62874107481159,39.2635382164603],[-76.62873428098273,39.26354002083514],[-76.6287286430999,39.26354147216069],[-76.62872152601653,39.26354349169676],[-76.62871451558642,39.26354550166113],[-76.62870820312725,39.26354721117443],[-76.62870208699898,39.26354904561386],[-76.6286952555277,39.26355117864719],[-76.62868952450961,39.26355359890107],[-76.62868319188411,39.26355694774422],[-76.62867738376058,39.26355882369079],[-76.62867077965579,39.2635606863109],[-76.6286647549815,39.26356320111627],[-76.62865955232702,39.26356673188302],[-76.62865612761,39.26356973591874],[-76.62865101150888,39.26357222657356],[-76.62864626042499,39.26357382842512],[-76.62864188036171,39.26357516572367],[-76.62863709294237,39.26357684672742],[-76.62863440583311,39.26357817586796],[-76.62862870130215,39.26358151228217],[-76.6286217365644,39.26358696781724],[-76.6286178159051,39.26359107912693],[-76.62861307465471,39.26359478700027],[-76.62860785089902,39.26359814204847],[-76.62860311236304,39.26360133108852],[-76.62859472322793,39.26360817380125],[-76.62851668202276,39.26357769903085],[-76.62846530782832,39.26365858206424],[-76.6285296706962,39.2636825451964],[-76.62852007470042,39.26369060912839],[-76.62851765321557,39.26369498369708],[-76.62851635741069,39.26370102464153],[-76.62851545630768,39.26370648313786],[-76.62851355517319,39.26371217086843],[-76.62850891702425,39.26372030813216],[-76.62849671539814,39.26371546214175],[-76.62849075149255,39.26372473648171],[-76.62844301863488,39.26370567207094],[-76.62833322546314,39.26387944908655],[-76.62838040281977,39.26389795510919],[-76.62837497846147,39.26390597728351],[-76.62839424834492,39.26391393708366],[-76.62839693979075,39.26390934898963],[-76.62843435609309,39.26392472996952],[-76.62847714203163,39.26385445333201],[-76.62847878950204,39.26387287291156],[-76.62848126658618,39.26388554642458],[-76.62848563235315,39.26390376562586],[-76.6284881319651,39.26390992306585],[-76.6284914755457,39.2639168884609],[-76.62849563225444,39.26392435545275],[-76.62849954203027,39.26392918962393],[-76.62850414389385,39.26393307747738],[-76.62850938926682,39.26393710878672],[-76.6284489334007,39.26401827834389],[-76.62840065381722,39.26408499847346],[-76.62833383221093,39.26406117341685],[-76.6283252529455,39.26407664755182],[-76.62826234609965,39.26405449765929],[-76.62825328223451,39.26406824618827],[-76.62819340051506,39.26404661116488],[-76.62818999844239,39.26405214100735],[-76.62819394756605,39.26405344340824],[-76.62818197334879,39.26407241887203],[-76.62817847389877,39.26407110077995],[-76.62817510282136,39.2640766856668],[-76.62817786864365,39.26407803116141],[-76.62816651955791,39.26409711759558],[-76.62816351283138,39.26409597130803],[-76.62816045659423,39.264101620245],[-76.62816246238137,39.26410228325478],[-76.62815082794394,39.26412275236088],[-76.62814796638756,39.26412154347899],[-76.62814449572592,39.26412667226178],[-76.6281477586944,39.2641280094229],[-76.62813684270311,39.26414736655451],[-76.62813302862455,39.2641459429759],[-76.62813011479992,39.26415139149208],[-76.62824873984405,39.26419302217541],[-76.62821550975541,39.26421373638779],[-76.6282055137421,39.26422072171023],[-76.62819813636898,39.26422529766592],[-76.62819027181558,39.2642304125384],[-76.6281821946361,39.26423585821915],[-76.6281736471209,39.26424128169252],[-76.62816511663848,39.26424699256364],[-76.62815678685513,39.26425265813059],[-76.62814856149259,39.26425918245783],[-76.6281409075722,39.26426545097483],[-76.6281346106685,39.26427147427622],[-76.62812718506876,39.26427839657092],[-76.62812187345379,39.26428435183119],[-76.62811620830286,39.26429121394409],[-76.62811092057223,39.26429880236876],[-76.62810809130892,39.26430624454778],[-76.62810469519137,39.26431328769362],[-76.62810038354826,39.26432057384913],[-76.62809571444956,39.26432796696444],[-76.62809054046546,39.26433529722843],[-76.62808521138838,39.2643419298079],[-76.62808012577428,39.26434743269651],[-76.62807795864101,39.26435389693798],[-76.62807729999665,39.2643608415616],[-76.62807521237806,39.26436761051386],[-76.62807103703109,39.26437519975735],[-76.6280663477343,39.26438246579935],[-76.62806068334061,39.26439028632711],[-76.62805366644633,39.264396826185],[-76.62804689440148,39.26440329835975],[-76.62804144082811,39.26440870009612],[-76.6280347285029,39.26441438969342],[-76.62803035489389,39.26442001013311],[-76.62802623271912,39.2644256331706],[-76.62799931179802,39.26441695728658],[-76.62797348186243,39.26446232001953],[-76.62799366186715,39.26446865688391],[-76.62798988219122,39.2644734883307],[-76.62798611576549,39.26448043391778],[-76.62797956273663,39.26449286895421],[-76.62797351825881,39.26450334103006],[-76.62796851290584,39.26451209683484],[-76.62796308220226,39.26452197454735],[-76.62795838416663,39.26453024040764],[-76.62795264851206,39.26453971361023],[-76.62794797493969,39.26454795432613],[-76.62794303554477,39.26455694724019],[-76.62793876511404,39.2645645442843],[-76.62793235576328,39.26457034743124],[-76.62792690601766,39.26457567801368],[-76.62792206286811,39.26458333089158],[-76.62791740828568,39.26459192656824],[-76.62791354307576,39.26459958794894],[-76.62790971411638,39.26460718639072],[-76.62790488929318,39.2646159841998],[-76.62790044198432,39.26462350141456],[-76.62789607252684,39.26463097744055],[-76.62789188332083,39.26463788835632],[-76.62788807566179,39.2646431917125],[-76.62788209786883,39.26464624528408],[-76.62787733743727,39.26465093850435],[-76.62787467717871,39.26465708050623],[-76.62787480755645,39.2646618279573],[-76.62787234463821,39.26466679778682],[-76.62786748408124,39.26467158076601],[-76.62786090129919,39.26467620335566],[-76.62785600085873,39.2646812996746],[-76.62785132209994,39.26468787395245],[-76.62784706458281,39.26469410997618],[-76.62784196441795,39.26470237906099],[-76.6278411589126,39.26470904037662],[-76.62784104128565,39.26471600292655],[-76.62784066963259,39.26472699199714],[-76.62784077793627,39.26473263383907],[-76.62784084403464,39.26473615964741],[-76.62784833923976,39.2647427148559],[-76.62780865078788,39.26478468638288],[-76.62780347199319,39.26478474743514],[-76.62779617487433,39.26478483149846],[-76.62778729847855,39.26478644185831],[-76.62777839099154,39.26479177048171],[-76.62777152741343,39.26479800815069],[-76.62776864642406,39.26480447642842],[-76.62776875991695,39.26481045337174],[-76.62776882502646,39.26481637611573],[-76.62776680251426,39.26482221207434],[-76.62776171296807,39.26482690694885],[-76.62775493660962,39.26482800331999],[-76.62774807399227,39.26482787167302],[-76.62774215214732,39.26482710346382],[-76.62772460617384,39.26484656023974],[-76.62770011668704,39.26488063965648],[-76.62771045895026,39.26488852172032],[-76.62770440028525,39.26489770834311],[-76.62769114538581,39.26489415243221],[-76.62767426097143,39.2649275344401],[-76.62767323088131,39.26497456738073],[-76.62766264567136,39.26497787205899],[-76.62765552293129,39.2649822614279],[-76.62764780495547,39.26498856844172],[-76.6276418299917,39.26499372529874],[-76.62763521287805,39.26499759472608],[-76.62762650121982,39.2649991623593],[-76.62761565448953,39.26500129340656],[-76.62760683782396,39.2650041019611],[-76.62759812660637,39.26500646857319],[-76.62758997779918,39.26500941886307],[-76.62758386960175,39.26501236211224],[-76.62757829346583,39.26501615196707],[-76.62757289721833,39.26502209612396],[-76.62757204129426,39.26502444891295],[-76.62756948145075,39.26503441227575],[-76.62756598125101,39.26504515271968],[-76.62756269582108,39.26505272585012],[-76.62755409134668,39.2650656623871],[-76.62724480085782,39.26512240665389],[-76.62723248965021,39.26513155358837],[-76.6272288776718,39.2651408416323],[-76.62722900754828,39.26514766174481],[-76.62723324600064,39.26515632075191],[-76.62723686707312,39.26516228721081],[-76.62723718127251,39.26517041582071],[-76.62723455385753,39.26517624714738],[-76.62722774672513,39.26518120857778],[-76.62721734928085,39.26518383283269],[-76.62720309881479,39.26518846887674],[-76.62719246531543,39.26519301461496],[-76.62718048587564,39.2651994422835],[-76.62717091009577,39.26520579561222],[-76.62716934175562,39.2652070003619],[-76.62716052969223,39.26521377677218],[-76.62714930457908,39.2652239576224],[-76.62714247731476,39.26523208697825],[-76.62713389707361,39.26524171594797],[-76.6271260908531,39.26525465859083],[-76.6271253149386,39.26526118758207],[-76.62712193176652,39.26526772450854],[-76.62711667564457,39.26527521750602],[-76.6271105678685,39.2652816007575],[-76.62710348480788,39.26528790885051],[-76.627096696099,39.26529332972244],[-76.62708889016358,39.26529871853921],[-76.62708127860243,39.26530416382028],[-76.62707400363659,39.26531214942925],[-76.62706914737346,39.26531940409058],[-76.62706345466721,39.26532948990545],[-76.62705656972382,39.265345724166],[-76.62705297309016,39.26535539327686],[-76.62704962760606,39.26536489924575],[-76.62704626460251,39.2653744312811],[-76.62704063344208,39.26538206540495],[-76.62703429416648,39.26539016117417],[-76.62702975157192,39.26539770237274],[-76.62702536887406,39.26540700958044],[-76.62702202639953,39.26541594176998],[-76.62701559526654,39.26542652155911],[-76.6270094219488,39.2654339062488],[-76.62700000883054,39.26543994751411],[-76.6269900744466,39.26544242729557],[-76.626977982079,39.26544497588588],[-76.62696856067873,39.26544884447463],[-76.62695910184506,39.26545542515034],[-76.62695286605273,39.26546323029628],[-76.62694835244832,39.26547274876516],[-76.62694581688791,39.26548402460661],[-76.62694601932401,39.26549511187803],[-76.6269462297719,39.26550621809091],[-76.62694802521101,39.26551736266717],[-76.62695273269395,39.2655289362508],[-76.62695638357856,39.26553848876193],[-76.62695837026359,39.26554764055019],[-76.626958965928,39.26555732837934],[-76.62695917234922,39.26556831928114],[-76.62695935468918,39.26557749866602],[-76.62695716266504,39.26558646693542],[-76.6269517908279,39.26559590521198],[-76.6269454137225,39.26560501962213],[-76.62693948221758,39.26561202945656],[-76.62693253533337,39.26561931620328],[-76.62692572294689,39.26562460367633],[-76.62691858336943,39.26563085212759],[-76.62691811215578,39.26564069330065],[-76.62691327895122,39.26564619964137],[-76.62691172963441,39.26565281985311],[-76.62691185362755,39.26565943096868],[-76.62691104010565,39.26566693716941],[-76.6269049084992,39.26567299425664],[-76.62689758996238,39.26567911783231],[-76.62689057473736,39.26568595667862],[-76.6268835109523,39.26569475813926],[-76.62687727835083,39.26570459541897],[-76.62687421344489,39.26571384375364],[-76.62686360155756,39.26575392745031],[-76.62686134265191,39.26576437276111],[-76.62685990320207,39.26577147342935],[-76.62685962728364,39.26577877055846],[-76.6268582643709,39.2657860804475],[-76.62685488380428,39.26579299389392],[-76.62685203887212,39.26580073504453],[-76.62684861409038,39.26580724210479],[-76.62684359492489,39.26581395307645],[-76.62684201750973,39.26582106681744],[-76.62684217316362,39.26582980924558],[-76.6268423475811,39.26583961103407],[-76.62684284143495,39.26584772309986],[-76.62684458170993,39.26585459246613],[-76.62684666195373,39.26586269876351],[-76.62685132280606,39.26587036017537],[-76.62685694761919,39.26587738690769],[-76.6268597561503,39.26588340033726],[-76.62685982014349,39.26589194520623],[-76.62685953933102,39.26589841001183],[-76.6268612011196,39.26590610242844],[-76.62686392189593,39.26591315866595],[-76.62686861939036,39.26591936185344],[-76.62687336009238,39.26592660376107],[-76.62687515700924,39.2659328391675],[-76.62687562513348,39.26594033592805],[-76.62687554378104,39.26594721301734],[-76.62687358496079,39.26595369771282],[-76.62687390901613,39.26595994465328],[-76.62687692684885,39.26596824579195],[-76.62688282346323,39.26597735505637],[-76.62688418929696,39.26598359449754],[-76.62688432600433,39.26599109290726],[-76.62688523094906,39.26599837667322],[-76.6268905917311,39.26600603490244],[-76.62689640320372,39.26601304601179],[-76.62689932068075,39.26601905708397],[-76.62689979196055,39.26602551346968],[-76.62689919523109,39.26603344011522],[-76.62689307638725,39.26604058987087],[-76.62689006200728,39.26604749907658],[-76.62689224159126,39.26605456530368],[-76.62686901590222,39.26611611740835],[-76.62686324779645,39.26612333583411],[-76.62685724719913,39.26613069404041],[-76.62685074263246,39.26613847400493],[-76.62684777028251,39.26614642372756],[-76.62684789178381,39.26615350773635],[-76.62684803328983,39.26616141510874],[-76.62684816064962,39.26616870721306],[-76.62684827855028,39.26617537415582],[-76.6268484329333,39.26618413819736],[-76.62684839914694,39.26619122441499],[-76.62684658118746,39.26619978762399],[-76.62684458342149,39.26620772693163],[-76.62684343712692,39.26621482853025],[-76.62684287251572,39.26622546027699],[-76.62684252723838,39.26623338591933],[-76.62684251760102,39.26623984618131],[-76.62684256366293,39.26624651199487],[-76.6268396166616,39.26625404744528],[-76.62683471023956,39.26626222972466],[-76.62682928778104,39.26626916190256],[-76.62682610199884,39.26627649031846],[-76.62682515792061,39.2662854625492],[-76.62682356444691,39.26629298338415],[-76.6268215756421,39.26629987873209],[-76.62681769319714,39.26630659061162],[-76.62681233774343,39.26631289967168],[-76.62680571830967,39.26631960195241],[-76.62680011948578,39.26632591564307],[-76.62679688588076,39.26633220081931],[-76.62679596318895,39.26633908874553],[-76.62679601142095,39.26634534111434],[-76.62679613273355,39.26635179908997],[-76.62679479035759,39.26635806505482],[-76.62678956878935,39.26636491499873],[-76.62678072317338,39.26636790175037],[-76.62677311881882,39.26636798477421],[-76.6267644147288,39.26636807781389],[-76.62675639784101,39.26636816222786],[-76.6267482681473,39.26636920469753],[-76.62674262335852,39.26637478231358],[-76.62673273787101,39.266400102947],[-76.6267235002574,39.26642187572072],[-76.62671168185368,39.26644346193852],[-76.62670415824935,39.26644889936648],[-76.62669590397653,39.26645423718861],[-76.62669031592125,39.26646048244988],[-76.62668545301136,39.2664669957419],[-76.62667909984144,39.26647352141086],[-76.62667162526691,39.26647910942044],[-76.62666416728123,39.26648484791016],[-76.62665677345285,39.26649050553446],[-76.62664934842446,39.26649680710663],[-76.62664276668772,39.26650250514393],[-76.62663545171098,39.26650925294414],[-76.62662901960408,39.26651536310636],[-76.62662225863222,39.26652209014797],[-76.6266142936306,39.26652684518779],[-76.62660706201443,39.26653052254068],[-76.62660167585938,39.26653671349286],[-76.62659877554951,39.26654549844731],[-76.62659815885122,39.26655258821538],[-76.6265982473719,39.26655800750369],[-76.62659712394563,39.26656406068066],[-76.62659243458876,39.26656974041141],[-76.62658578088576,39.26657567962187],[-76.62657905487688,39.26658060524053],[-76.62657212644508,39.26658369985911],[-76.62656481255034,39.26658561504993],[-76.62655779231575,39.26658743749448],[-76.626550104608,39.26658970279435],[-76.62654339177104,39.26659432669632],[-76.62653710223591,39.26659866459979],[-76.62652983795839,39.2666012798412],[-76.6265224709614,39.26660315612759],[-76.62651534193455,39.26660671399925],[-76.62651179308918,39.26661256129324],[-76.62650605423934,39.26661794943775],[-76.62649849492007,39.26662003859246],[-76.62649213632284,39.26662098489078],[-76.62648465118099,39.26662505236214],[-76.62647929515683,39.2666314595882],[-76.6264747996441,39.2666379551237],[-76.62647030559275,39.26664439301472],[-76.6264630207906,39.2666513462746],[-76.62645673479686,39.26665787124416],[-76.62645184643209,39.26666459072068],[-76.62644813428507,39.26667130042684],[-76.62644329702638,39.26667843712004],[-76.62643830520217,39.26668411768393],[-76.62643355913696,39.26668999990011],[-76.62642998372135,39.26669671004063],[-76.62642681405232,39.26670382771704],[-76.62642362143707,39.26671178213177],[-76.62642156644009,39.26671847458942],[-76.62641793073632,39.26672871193633],[-76.62641594394101,39.26673499566314],[-76.62641278206021,39.2667406334058],[-76.62640644426716,39.26674422891767],[-76.62640085358959,39.26674413997187],[-76.62639595427879,39.2667441324926],[-76.62638918111664,39.26674590346868],[-76.62638559519547,39.2667515263501],[-76.62638282745058,39.26675801566869],[-76.62638078508738,39.26676428840892],[-76.62637697564097,39.26677120858231],[-76.62637015446136,39.26677747692773],[-76.62636336612799,39.26678212850281],[-76.62635767173846,39.26678765099538],[-76.62635415866005,39.26679352361965],[-76.62635272719156,39.26680041532747],[-76.62634714197556,39.26680523016508],[-76.62634037368116,39.26681091678235],[-76.62633483787234,39.26681713156642],[-76.62632995062818,39.2668236339566],[-76.626328652057,39.26682949380948],[-76.6263287546078,39.26683532569297],[-76.6263297333459,39.26684135042591],[-76.62633037591779,39.26684739750914],[-76.62632828498627,39.26685408985055],[-76.62632419485078,39.26686017772225],[-76.62631882192984,39.26686648670341],[-76.62631287270511,39.26687198856602],[-76.62630929716663,39.26687827804459],[-76.62630825938228,39.26688412611629],[-76.62630740000905,39.26688976217492],[-76.62630537373684,39.26689561791029],[-76.62630029138104,39.26690088112545],[-76.62629397426591,39.2669047271098],[-76.62628987489916,39.26691036636953],[-76.62628720334092,39.26691685148789],[-76.62628114964726,39.26692282591834],[-76.6262760608237,39.26692799633299],[-76.6262703763397,39.26693493485634],[-76.62626601276858,39.26694123353564],[-76.6262637143941,39.26694792791791],[-76.62626388083712,39.26695438873905],[-76.62626431732117,39.26696084141189],[-76.62626469438879,39.26696625441204],[-76.62626531814414,39.26697125294427],[-76.62626611697489,39.26697645290443],[-76.62626622743875,39.26698166148304],[-76.62626431361952,39.2669877265531],[-76.62625945620397,39.26699318234532],[-76.6262530426679,39.26699707215805],[-76.62624656940405,39.26699954127291],[-76.62623633916691,39.26700050315928],[-76.62623276524523,39.26700054312831],[-76.62622512694381,39.26700089804004],[-76.62621831310376,39.26700422630056],[-76.62621292434677,39.26701023797367],[-76.6262068380573,39.26701359827449],[-76.62619811013309,39.26701380108995],[-76.62619103432677,39.26701384432344],[-76.62618447172342,39.26701391441151],[-76.62617836655404,39.26701491914856],[-76.62617188043497,39.26702070753986],[-76.6261654181549,39.26703098902574],[-76.62616429724044,39.26703391744982],[-76.62616146920813,39.26704040657086],[-76.62615741716664,39.26704607750326],[-76.62615171619795,39.26705218185923],[-76.62614670578377,39.26705786235107],[-76.62614136796576,39.26706542079759],[-76.62613734081317,39.26707164577935],[-76.62613409191688,39.26707751653537],[-76.62613144681664,39.26708337480128],[-76.62612534088437,39.26708804204625],[-76.62611755793043,39.26708835775759],[-76.62611064081233,39.2670886320875],[-76.6261045197007,39.26709200127971],[-76.62609906908781,39.26709743355823],[-76.62609407262916,39.26710332306988],[-76.62608813290923,39.26710921318103],[-76.62608032638502,39.26711334175587],[-76.62607255462405,39.26711615081917],[-76.62606496054293,39.26712020620659],[-76.62605750519687,39.2671247619602],[-76.62605058646874,39.26713017875247],[-76.62604346344939,39.2671358804365],[-76.62603713945275,39.26714036592862],[-76.62602924742848,39.26714202703064],[-76.62602265737425,39.26714048735413],[-76.62601510742593,39.26714012552415],[-76.62600814964043,39.26714019974853],[-76.62600030251569,39.26714059721746],[-76.62599172462257,39.2671437712205],[-76.62598343838573,39.26714833243012],[-76.62597580868002,39.26715057085402],[-76.62596804386932,39.26715074068924],[-76.62595859198346,39.26715088623447],[-76.62595515655246,39.267151911173],[-76.62594908908046,39.26715719285346],[-76.62594411492685,39.26716412371476],[-76.62594068877985,39.26717020197761],[-76.62593641780978,39.26717629196174],[-76.62593247152813,39.26718189926869],[-76.62592810355126,39.26718704674263],[-76.62592145774485,39.26719080698781],[-76.62591400160132,39.26719221365314],[-76.62590594404801,39.26719230058205],[-76.62589794195912,39.26719219762556],[-76.62589114598279,39.26718949349651],[-76.62588699535094,39.26718484583507],[-76.62588396027276,39.26718048726995],[-76.62587811415578,39.26717719075997],[-76.62587063670847,39.26717912160023],[-76.6258649066355,39.26718216775011],[-76.62585796359168,39.26718186279025],[-76.62585421527555,39.26717739476096],[-76.62585301848117,39.26717273398972],[-76.62585191840684,39.26716687190527],[-76.62585011591176,39.26715972759495],[-76.62584820375598,39.26715338191433],[-76.62584712172901,39.2671469542065],[-76.62584609174736,39.2671405455805],[-76.62584463025557,39.26713444003852],[-76.62584149782633,39.26712964519146],[-76.62583661540718,39.26712511049463],[-76.62583055447746,39.26712189796977],[-76.6258220641265,39.2671203360136],[-76.62581331454659,39.26712046757105],[-76.62580371826837,39.2671211864315],[-76.62579684628099,39.26712147169589],[-76.62578929170029,39.26712154941029],[-76.62578251853765,39.26712067390185],[-76.62577626180958,39.26711877316582],[-76.62576999174154,39.26711698498264],[-76.62576301414177,39.26711598271442],[-76.62575527560642,39.2671160048937],[-76.62574834217622,39.26711607557724],[-76.62574147166427,39.2671173994259],[-76.62573732146367,39.26712080190305],[-76.62573547305729,39.26712653929418],[-76.62573306910093,39.26713149034784],[-76.62572724231218,39.26713397860888],[-76.6257207293569,39.2671347397166],[-76.62571365233431,39.26713588995847],[-76.62570686220022,39.26713823192648],[-76.62570204715044,39.26714157733667],[-76.62570058032091,39.26714659172778],[-76.62569469639028,39.2671504660834],[-76.62569052788051,39.26715470260954],[-76.62569009590692,39.26715948700058],[-76.6256923658936,39.26716499611226],[-76.62569595840151,39.26717110034136],[-76.62569991800123,39.26717637253209],[-76.62570438054823,39.26718141933276],[-76.62570768653211,39.26718538423064],[-76.62571002186418,39.26719058819066],[-76.62571033368334,39.26719715936905],[-76.62570883262765,39.26720382925829],[-76.62570511312533,39.26720861938524],[-76.62569908768459,39.26721120069135],[-76.62569233266572,39.2672121564921],[-76.62568611647926,39.26721223486265],[-76.62567911935928,39.26721229543071],[-76.62567304722198,39.26721230580151],[-76.62566660647607,39.26721211772939],[-76.6256597760607,39.26721133030649],[-76.62565310088056,39.26720989212441],[-76.62564784361949,39.26720809905633],[-76.62564241532171,39.26720599828169],[-76.62563721986855,39.26720479000707],[-76.62562988989578,39.26720490355707],[-76.62562289955837,39.26720763221123],[-76.62561480292159,39.26721336949844],[-76.6256077199227,39.26721762735636],[-76.62560000317663,39.26722208316334],[-76.62559402836881,39.26722385213487],[-76.62559027482153,39.26722367262564],[-76.6255876659708,39.26722287073369],[-76.62558116285436,39.26722154569182],[-76.62557408454784,39.26722161950625],[-76.62556645011969,39.26722387049924],[-76.6255564642987,39.2672261590328],[-76.62554746691747,39.26722625374973],[-76.62553769761611,39.26722637933298],[-76.62552764345617,39.26723129698102],[-76.62552194528314,39.26723817597367],[-76.62551660463269,39.26724625592592],[-76.62551647097294,39.26725423628318],[-76.62551807431362,39.26726310132657],[-76.62552027987284,39.26727071622603],[-76.6255205725104,39.26727960141051],[-76.62551950339481,39.26728873807011],[-76.62551160690116,39.26729519299773],[-76.62550483984485,39.26729842768635],[-76.62549779135486,39.26730031573327],[-76.62549094039237,39.26730144416349],[-76.62548421272109,39.26730248561225],[-76.62547811227208,39.267303248022],[-76.62546992096355,39.26730474329189],[-76.62546179842603,39.26730791870848],[-76.62545238770308,39.26731277534849],[-76.62544473907097,39.26731661704033],[-76.62543681899773,39.26732073169866],[-76.62542957620822,39.26732123014116],[-76.62542158935361,39.26732131185784],[-76.62540531908165,39.26732167791656],[-76.62539502914807,39.26732186398016],[-76.62538012788843,39.26732587169385],[-76.6253749309537,39.26733152813769],[-76.62536956365885,39.26733652918122],[-76.6253646773543,39.26734502492796],[-76.62536097016225,39.26735406219305],[-76.62535633947287,39.26736484309641],[-76.62534528530561,39.26737523509421],[-76.62533614944842,39.26738443429194],[-76.6253265711257,39.26739425450639],[-76.62531847598316,39.26740233376834],[-76.62530836957879,39.26741055433821],[-76.62530518968241,39.26742133716596],[-76.62530510162435,39.26743274688275],[-76.62530525684511,39.26744153614781],[-76.62530707438245,39.26745920956296],[-76.62531666733302,39.26747580975223],[-76.6253987055258,39.26749932022329],[-76.62545097522748,39.26751890654473],[-76.62551752098209,39.26754449512902],[-76.62558449612064,39.26757173074287],[-76.62563804576128,39.26759319555406],[-76.62569204569192,39.2676147581577],[-76.62573795847038,39.26764355423314],[-76.62575771238181,39.26767136016182],[-76.6255654219737,39.26762882565134],[-76.62534580997468,39.26758335432925],[-76.62512109071986,39.26753985999172],[-76.62490913960451,39.2675042737015],[-76.62470995662866,39.2674765954586],[-76.62447757649015,39.26744298614469],[-76.62421199918899,39.26740344575976],[-76.62390301021361,39.267365882375],[-76.62355060956401,39.26733029599043],[-76.62323906696074,39.26730459470687],[-76.62296838240378,39.26728877852435],[-76.62261087449839,39.26727296233825],[-76.62216654324455,39.26725714614859],[-76.6216634785491,39.2672472610295],[-76.62119383051852,39.26724395555199],[-76.62119532525946,39.26723983444752],[-76.62120325235223,39.26720991946184],[-76.62120723880302,39.26718426679966],[-76.62120820964067,39.26715999699436],[-76.62120875753949,39.26714201857485],[-76.62120987815574,39.26712138384253],[-76.62121114757031,39.2670958845537],[-76.6212183513489,39.26700174983306],[-76.62121912112292,39.26699170066952],[-76.62122258129094,39.2669647780294],[-76.62122731032102,39.26694567272474],[-76.62122838855763,39.26693883758778],[-76.62123056325994,39.26691458787725],[-76.6212312094582,39.26689338863456],[-76.62122531264914,39.26687054330685],[-76.62121636725229,39.26683398749625],[-76.62120874066746,39.26679980044885],[-76.62119706670057,39.26677728778352],[-76.6211771956043,39.26676148099983],[-76.6211501217158,39.26674715255363],[-76.6211157370868,39.26673997961939],[-76.62106992945417,39.26673166367691],[-76.6210330945716,39.26673089446426],[-76.6210021649716,39.26673032264965],[-76.62098288715632,39.26672841476446],[-76.62094946436413,39.26671581506849],[-76.62090598146429,39.2666894633224],[-76.62086557629945,39.26665487588431],[-76.62083991209477,39.26662267081137],[-76.62082275210204,39.26659721290522],[-76.62080669195433,39.26658994321162],[-76.62077038565943,39.26658156505115],[-76.62075127521652,39.26657415038486],[-76.620738703203,39.26656381132658],[-76.62072578301634,39.26654988789528],[-76.62071851142449,39.2665412575915],[-76.62071071799903,39.2665322652954],[-76.6207035863596,39.26652390116861],[-76.62069626048415,39.2665119864951],[-76.62069491868365,39.2665041689168],[-76.62069521321379,39.26649459292373],[-76.62069553423478,39.26648396311995],[-76.62069224193357,39.26646969245922],[-76.6206835253405,39.2664588965481],[-76.62067570478797,39.26644717754302],[-76.62066842883668,39.26643611425266],[-76.62066330520389,39.2664212801013],[-76.62065478781126,39.26640638814731],[-76.62064583517849,39.26639227755234],[-76.62063663011153,39.26637531611739],[-76.62063149836806,39.26635940011811],[-76.62062515326264,39.26634263978408],[-76.62062381449974,39.26633338909557],[-76.62062402395576,39.26632650611788],[-76.62062424719531,39.26631921243542],[-76.62062479460955,39.26630135111177],[-76.62062405800327,39.26628979280415],[-76.62062366304474,39.26628043797324],[-76.62061934962423,39.26626990038859],[-76.62061853333677,39.26626089189219],[-76.62061882423622,39.26625134651295],[-76.62061893568129,39.2662476240067],[-76.62061922944751,39.26624426149516],[-76.62061920487834,39.26624018725075],[-76.62061949167048,39.26623075985851],[-76.62061973475605,39.26621910382974],[-76.62061426186723,39.26620089337635],[-76.62061011878421,39.26618710637725],[-76.62060603020184,39.26617287907934],[-76.62060311284282,39.2661623928437],[-76.62060109238378,39.26615450641427],[-76.62059847626962,39.26614511107869],[-76.62059552787871,39.26613436081801],[-76.62059104933512,39.26612176624928],[-76.62058678053198,39.26611090543197],[-76.62058493536131,39.26609862653207],[-76.6205841691407,39.26608545665718],[-76.62058328121422,39.26606774202384],[-76.62058021480087,39.26604222332028],[-76.62057942409392,39.26602366408218],[-76.62058167059826,39.26587635913991],[-76.62059245911981,39.26574040442045],[-76.62060176036294,39.26573090706594],[-76.62060525654135,39.2657250237468],[-76.62061039066919,39.26571729284301],[-76.62061552208385,39.26570616784306],[-76.62061989463966,39.26569631767784],[-76.62062663156614,39.26568551042988],[-76.6206309072318,39.2656738422049],[-76.62063577757198,39.26564890941556],[-76.62063616632695,39.26563623148567],[-76.62063677388812,39.26561643820915],[-76.62063730962751,39.26559880834104],[-76.62063770014842,39.26557994755705],[-76.62063841785712,39.26556252635361],[-76.62064131751394,39.26554532387864],[-76.62064936241943,39.26552762728991],[-76.62065478712609,39.26550672091327],[-76.62065693132102,39.26549210840272],[-76.62066606832333,39.26547560975641],[-76.6206750273829,39.26546118319781],[-76.62068180046184,39.26544425715736],[-76.62068670054578,39.26542957878398],[-76.62069196633394,39.26541628787091],[-76.62069719279343,39.26540320040375],[-76.6207023938195,39.26538966787556],[-76.62070595288331,39.2653767840002],[-76.62071855296544,39.26534801008184],[-76.62072582401807,39.26533959068234],[-76.62073104819942,39.26532887852684],[-76.62073534637256,39.2653177616387],[-76.62073917125608,39.26530977608713],[-76.62074253638093,39.26530195659319],[-76.62074605017416,39.26529428890797],[-76.62075087075182,39.26528711095592],[-76.62075701801506,39.26527951753094],[-76.6207607954275,39.2652732585944],[-76.62077956888749,39.26524782482939],[-76.62079364770342,39.2652344083389],[-76.62081046798554,39.26522557569103],[-76.62082788080559,39.26521818347781],[-76.6208469903885,39.26521398094931],[-76.62086376464795,39.26520768740556],[-76.62088130817756,39.26519968578757],[-76.62089841403667,39.26519357166115],[-76.62091309925029,39.26518919089958],[-76.62092667293764,39.26518312571822],[-76.62094127345547,39.26517442550506],[-76.62095508409021,39.26516912223279],[-76.62097681453547,39.26516409583437],[-76.62099551646649,39.26516201507233],[-76.6210175266542,39.26516210502141],[-76.62103907033884,39.26515689785555],[-76.62105950917869,39.26515569823322],[-76.62107835673638,39.26515607431773],[-76.62109667478811,39.26515644148463],[-76.62111559339468,39.26515696641884],[-76.62113778556078,39.26515726320802],[-76.62115582010654,39.26515712322038],[-76.6211730628925,39.26515378835991],[-76.62119469591082,39.26515051179599],[-76.62121956099708,39.26514718169866],[-76.62124146346457,39.2651448743191],[-76.62126597052205,39.26514457773905],[-76.62128876743209,39.26514468098375],[-76.62130995609115,39.26514454664017],[-76.62133451123492,39.26514501044768],[-76.62135380833949,39.26514539604447],[-76.62137535668087,39.26514582582782],[-76.62139810422326,39.2651462774887],[-76.62142291992632,39.26514677184304],[-76.62145017411035,39.26514848558333],[-76.6214765712495,39.26515120361159],[-76.62150333651029,39.26515290405364],[-76.62152550128394,39.2651539915541],[-76.62154940681374,39.26515697897187],[-76.62157386664614,39.26515793333979],[-76.62159917902582,39.26515829234093],[-76.62161944940118,39.26515869544237],[-76.62163942431214,39.26515909488613],[-76.62166046511226,39.26515887443012],[-76.62168319721424,39.26515526803366],[-76.6217048803864,39.26515062147182],[-76.62172428370741,39.26514542890396],[-76.62174141776289,39.26514074786496],[-76.62175947667347,39.26513538341836],[-76.62177628322132,39.2651304049673],[-76.62179546711565,39.26512398483723],[-76.6218145211932,39.2651169184365],[-76.62182876439469,39.26511110031554],[-76.62184384777534,39.26510135305332],[-76.62185584354573,39.2650930361723],[-76.62186429514897,39.26508397645566],[-76.62187066286128,39.2650719546141],[-76.62187216852907,39.26505991171233],[-76.6218796696717,39.26499979800063],[-76.62188098657244,39.2649892560682],[-76.62188157567701,39.26497133811883],[-76.62188194755893,39.26496004460664],[-76.62188085079622,39.26494775732415],[-76.62187663590433,39.26494002058182],[-76.62186849548607,39.26493395923562],[-76.62185723798848,39.26492681503895],[-76.62184448769966,39.26491820769342],[-76.62183028273891,39.26491033429042],[-76.62181883814829,39.26490198696442],[-76.62180770063868,39.26489233361414],[-76.62179709356769,39.26488251442851],[-76.62178563755033,39.26487218177316],[-76.6217721654634,39.2648592096832],[-76.62175850754748,39.26484392742803],[-76.62174655516843,39.26482823991518],[-76.62173730392732,39.2648171036667],[-76.62171638476705,39.2647964807929],[-76.62170504508799,39.26478845716851],[-76.62168739246093,39.26477913952228],[-76.62167553702571,39.26476961625886],[-76.62165943255013,39.26475898577453],[-76.62164525778095,39.26474915417968],[-76.62162749502987,39.26473419737152],[-76.62161242556722,39.264720698572],[-76.62159699921682,39.26470654736627],[-76.62158218265061,39.2646934313026],[-76.6215678566472,39.26468023935193],[-76.62155167291677,39.26466513899379],[-76.62153447118168,39.26464689708217],[-76.62152148753361,39.26463165570414],[-76.62150506226732,39.26461491786819],[-76.62147683870789,39.2645890352518],[-76.62146898633698,39.26457547502363],[-76.62146444396325,39.26456288838383],[-76.62146033019651,39.26454750264234],[-76.62146077551624,39.26453288103435],[-76.62145927660023,39.26451801445608],[-76.62145448766255,39.26450255807949],[-76.62144996825984,39.26448588383441],[-76.62145069783429,39.26446945710565],[-76.62144950357563,39.26445439153884],[-76.62144487749288,39.26443642885326],[-76.62144068783118,39.26441876392651],[-76.62144037221032,39.26440103492276],[-76.62144080457691,39.26438232559391],[-76.62144150956172,39.26436659868104],[-76.62144203605826,39.26435066221486],[-76.62144261349512,39.26433321352577],[-76.6214430169282,39.2643210139432],[-76.62144346784471,39.26430729852355],[-76.62144415815966,39.26429323527892],[-76.62144901148139,39.26428054471067],[-76.62145258380187,39.26426904983395],[-76.62145525674428,39.26425520105719],[-76.62145841317798,39.26424151417526],[-76.62146037652074,39.264227531599],[-76.62146184043907,39.26421398428453],[-76.62146491541758,39.2642016645034],[-76.62146725123235,39.26418888835322],[-76.62146907164917,39.26417476299475],[-76.62146971465744,39.26416087794871],[-76.62147013874733,39.26414806320845],[-76.62147051020996,39.26413685976998],[-76.62147002188466,39.26412435285306],[-76.62146659216042,39.264113244353],[-76.62146095180729,39.26410317451703],[-76.6214555135043,39.26409389350285],[-76.62144930613644,39.26408150776897],[-76.62144517785555,39.2640701520078],[-76.62144123867783,39.26405853653446],[-76.62143626032181,39.2640477500194],[-76.62143052602646,39.26403487399077],[-76.621427731849,39.26402170838558],[-76.62142757031796,39.2640083287779],[-76.6214283348088,39.26397949229737],[-76.6214283501174,39.26396532779109],[-76.62142626642103,39.26395343365622],[-76.62142226011045,39.26394050284605],[-76.62141893790482,39.26392966041675],[-76.6214146385408,39.26391649266063],[-76.62140892347405,39.26390414183945],[-76.62140368240887,39.26389221140256],[-76.62139995183881,39.26387776909313],[-76.6213988667561,39.26384810785175],[-76.62139564624589,39.26382949933891],[-76.6213929364754,39.2638137641168],[-76.62138986965566,39.2637974071151],[-76.62138577421774,39.26377924886654],[-76.62138130556664,39.26376219555594],[-76.6213781974399,39.26374706616556],[-76.62137463316445,39.26372990857915],[-76.62137181778749,39.26371268494894],[-76.6213703903634,39.26369571890913],[-76.62136689016396,39.26368110349255],[-76.62136191553537,39.26366897394179],[-76.62135589476823,39.26365354961599],[-76.62135087544689,39.26364045880248],[-76.62134589943793,39.2636251144099],[-76.62134114399524,39.26361208299654],[-76.62133134169729,39.26359264256734],[-76.62132486987825,39.26358162063381],[-76.62131722744002,39.26356631177902],[-76.62131148475135,39.26355241424606],[-76.62130499754971,39.26353841342593],[-76.62129954875641,39.26352481319228],[-76.62129359032151,39.26350965569053],[-76.62128631161514,39.26349111335281],[-76.6212795702077,39.26347567769049],[-76.62127362320655,39.26346250461361],[-76.62126625825685,39.26344535998632],[-76.62125959740469,39.26342872746331],[-76.6212534332894,39.2634152023859],[-76.62125055988579,39.26340104297262],[-76.62125037233096,39.26338842082311],[-76.62124985339898,39.26337579490251],[-76.62124766407665,39.26336459491277],[-76.62124189836423,39.26335154312126],[-76.62123587594481,39.26334056316595],[-76.6212274222146,39.26333028967619],[-76.62121665834388,39.26332081582142],[-76.62120702581544,39.26331104656033],[-76.62119754748963,39.26330104359647],[-76.62118879156283,39.26328986025526],[-76.62118115044797,39.26327887327368],[-76.62117460702301,39.26326890229463],[-76.62116884723335,39.26326017149682],[-76.62115520659067,39.26324108437945],[-76.621140534124,39.26322014916096],[-76.62112929396926,39.26320330999204],[-76.62112429690639,39.26319322599849],[-76.62112027064298,39.26318535291651],[-76.62111488683821,39.26317890767368],[-76.62110806939242,39.26317056439294],[-76.62110295812384,39.26316602875385],[-76.62109435392175,39.26316159173776],[-76.62108781746066,39.26315813332046],[-76.62108095171781,39.26315341096515],[-76.62106896910421,39.26314216495821],[-76.62106560018491,39.2631359649179],[-76.62106273155912,39.26312959985005],[-76.62106114937907,39.26312296960402],[-76.62105750431267,39.26311510315436],[-76.62105410765203,39.26310758880525],[-76.62105039606814,39.26309829172287],[-76.62104355963277,39.26308352590888],[-76.62103807897681,39.26307547428232],[-76.62103211495904,39.26306723823993],[-76.62102509452849,39.26305915462062],[-76.62101847376377,39.26305043815079],[-76.62101050431018,39.26304149213615],[-76.6210023884703,39.26303478855817],[-76.62099437286626,39.26302840957918],[-76.62098379122698,39.26302127828406],[-76.62097364708606,39.26301684439554],[-76.62096467805422,39.26301324840919],[-76.62095698521861,39.26300740102113],[-76.62094874929608,39.26300192119397],[-76.62093971635605,39.2629957560121],[-76.62092955631969,39.26298822523168],[-76.62091936120692,39.26298422444271],[-76.62090771789833,39.26298191962578],[-76.62089159573071,39.26297990390681],[-76.6208859191991,39.26297663831598],[-76.62088218142124,39.26297159906858],[-76.6208773305536,39.26296604279032],[-76.62086996492813,39.26295707709689],[-76.62086199622399,39.26294929756745],[-76.62085467203994,39.26294255239733],[-76.62084683626468,39.26293635234047],[-76.62083603323455,39.26293032465729],[-76.62082050021749,39.26292300981726],[-76.62080691436844,39.2629169010843],[-76.62079333186786,39.26291081668131],[-76.62078171260895,39.26290553219228],[-76.62076941377829,39.26290035269881],[-76.62075403049424,39.26289429310183],[-76.62074150926141,39.26289235294586],[-76.62070072265109,39.26287752159656],[-76.62064069582976,39.26286175253353],[-76.62060796528573,39.26284291083972],[-76.62056855152677,39.26281946534092],[-76.62056109730035,39.26280865997509],[-76.62054044263552,39.26279032117579],[-76.62052006195142,39.26277622046611],[-76.62049479297319,39.26276812197949],[-76.62047751058667,39.26276704735846],[-76.6204607164082,39.26276373410522],[-76.62044854532392,39.26275937649011],[-76.6204371991017,39.2627537469546],[-76.62042966646742,39.26274764062823],[-76.62041939043363,39.26274144976917],[-76.62040742663125,39.26273516788068],[-76.62039688915824,39.26273019671387],[-76.62038574936436,39.26272518576678],[-76.62037713022521,39.26271879398454],[-76.62036690797147,39.26271099902863],[-76.6203569009021,39.2627047838121],[-76.62034429638717,39.26269740991759],[-76.62029086807046,39.26265707286845],[-76.62023505043763,39.2626243323429],[-76.62018957116948,39.26260129316162],[-76.62015396524119,39.26258195922793],[-76.62014620175128,39.2625707159623],[-76.62014486616421,39.26256825705178],[-76.62013464857915,39.26255310462479],[-76.62012037732177,39.26254713321305],[-76.62008951698826,39.26254045777776],[-76.62005979614828,39.26253456068089],[-76.62002822408373,39.26253356586623],[-76.61999705585998,39.26253159231532],[-76.61997221591314,39.26253103722642],[-76.61994322321468,39.26253111364144],[-76.61992394550838,39.2625367594095],[-76.61989939586692,39.26253738524971],[-76.6198784272886,39.26253811095201],[-76.61986215778361,39.26254242610597],[-76.6198386491544,39.26254858511263],[-76.61981677047569,39.26255243261861],[-76.61979976485637,39.26255442860783],[-76.61977981164723,39.26255422618672],[-76.61976268208454,39.26255102434315],[-76.61974809108536,39.26254396552567],[-76.61972977029323,39.26254099311858],[-76.61970384716837,39.26253888244361],[-76.61969958356376,39.26253836060321],[-76.61968324805532,39.2625359630023],[-76.61966439301676,39.26253387070575],[-76.61964546291053,39.26253367788084],[-76.61962344069725,39.2625359836734],[-76.61960788468525,39.262537753734],[-76.61958848368782,39.26253786113154],[-76.61956783761138,39.2625376510253],[-76.61954465917417,39.26253495199837],[-76.61953474656804,39.26253209958077],[-76.61951838092627,39.26252948837747],[-76.61949965174564,39.26252877643741],[-76.61948013295014,39.26252859518989],[-76.6194638998841,39.26253064858068],[-76.61944694812189,39.26253383640824],[-76.61943034403541,39.2625352841773],[-76.61941370690624,39.26253511495992],[-76.61939596789861,39.26253493406202],[-76.6193811209003,39.26253478145128],[-76.61936902516287,39.26253475845925],[-76.61935581130936,39.26253753502891],[-76.61935239638636,39.26253821664946],[-76.61932923899556,39.26254153207021],[-76.61930588197907,39.26254361188757],[-76.61928732873444,39.26254509475272],[-76.61927034699522,39.26254522885713],[-76.61925464953943,39.26254506806846],[-76.61924051344002,39.2625448024467],[-76.6192373244279,39.2625446272661],[-76.61922752039976,39.26254400006941],[-76.61921473969734,39.26254379108396],[-76.61920015803955,39.26254363931073],[-76.61918411021412,39.26254485555014],[-76.61917115072922,39.26254838056065],[-76.61916057575796,39.26255257716839],[-76.61915029417244,39.2625532761472],[-76.61913907025658,39.26255316588231],[-76.61913648530182,39.26255313858235],[-76.61912494393647,39.26255302098115],[-76.61910974818124,39.26255286450263],[-76.61909682967968,39.26255134354047],[-76.61908672388171,39.26254778786001],[-76.61907508525832,39.26254592965632],[-76.61906213513468,39.2625457669446],[-76.61904776595802,39.2625461815235],[-76.61903346186456,39.26255022910557],[-76.61900883608872,39.26255855877388],[-76.61898745248149,39.26256687373513],[-76.61897066354543,39.2625725328265],[-76.61896633695677,39.26257381499171],[-76.61895258736406,39.2625777427596],[-76.61893713956644,39.26258114977637],[-76.61892151944596,39.26258298529407],[-76.6189169420728,39.26258349738848],[-76.61889916333148,39.26258553487607],[-76.61887948362684,39.26258899030412],[-76.61885831452291,39.26259339120413],[-76.61883934917027,39.26259738490047],[-76.61882105602281,39.26260286073618],[-76.61880260003966,39.2626093133727],[-76.61878696055966,39.26261475097741],[-76.61878192568004,39.26261652175454],[-76.61877083034996,39.2626200824979],[-76.61875605527661,39.26262573458497],[-76.61874330150984,39.26263172471498],[-76.61872922114442,39.26264006153863],[-76.61871618878463,39.26264851616077],[-76.61870598031597,39.26265609089349],[-76.61869782166622,39.26266344168484],[-76.61869245648985,39.26266802628283],[-76.61868966536285,39.26266884592547],[-76.61868407831302,39.26266878995131],[-76.61867615026544,39.26267074589492],[-76.61867300895014,39.26267225979222],[-76.61866265165317,39.26267734071453],[-76.61864522424852,39.26268622693612],[-76.61862863193971,39.26269474475117],[-76.61861477851124,39.26270224638618],[-76.61860401908666,39.26270776647232],[-76.61859234637923,39.26271181624164],[-76.61858170002759,39.26271268242945],[-76.61856923749895,39.26271255637709],[-76.61855879758792,39.26271252516856],[-76.61854799997295,39.2627152329307],[-76.61853162510204,39.26272145087916],[-76.61851885038871,39.26272809757594],[-76.61850933946229,39.26273459003392],[-76.61850694329053,39.26273953556783],[-76.61850687505562,39.26274360681343],[-76.61850587052469,39.26274660940982],[-76.61850117335393,39.26274914242024],[-76.61849354659064,39.2627521703424],[-76.61848555609387,39.26275560963369],[-76.61848008603609,39.26276008578917],[-76.61847450993251,39.26276661354723],[-76.61846935302046,39.26277383715843],[-76.61846250316631,39.26278602660251],[-76.61845350724083,39.26280125456681],[-76.61844427466372,39.26281717895514],[-76.61843635483149,39.26282988646511],[-76.61842058762186,39.26284591932895],[-76.61840524357063,39.26286406406295],[-76.61840286322094,39.26286800438996],[-76.61839749323272,39.26287800256874],[-76.61839607853437,39.26289285162042],[-76.61839375636245,39.26290493507046],[-76.61838641331194,39.26291833443872],[-76.61838510982561,39.26292090549577],[-76.61838142009549,39.26292937422701],[-76.61837693083346,39.26293978421505],[-76.6183762611732,39.26294149259542],[-76.61837247100091,39.26295075457567],[-76.6183687193875,39.26295952576304],[-76.61836104838198,39.26297142158428],[-76.6183533462645,39.26297251170245],[-76.6183420243847,39.26297229114963],[-76.61833420549692,39.26297160907824],[-76.61832760090557,39.26297028960693],[-76.61831215863305,39.26296790823048],[-76.61829954202119,39.26296539911998],[-76.61828842338193,39.26295970706281],[-76.61827681998889,39.26295258301069],[-76.6182674611686,39.26294672912932],[-76.61826466391818,39.26294480680701],[-76.61825512033317,39.26293754352433],[-76.61823559304351,39.26292578178141],[-76.61823027921456,39.26292016623884],[-76.61822871171643,39.26291688775536],[-76.6182287896527,39.26291230850902],[-76.61823238682379,39.26290338639572],[-76.61823830157566,39.26289767044062],[-76.61828211632081,39.26284318765474],[-76.61831697178569,39.26280722703016],[-76.61835143502155,39.2627657659371],[-76.61836658761807,39.26273603402021],[-76.61837311178897,39.2627055471416],[-76.61837335936808,39.26269312186388],[-76.61837903636355,39.26267515919975],[-76.61838991429761,39.26265859251124],[-76.61839309144989,39.26265494031682],[-76.61840604145215,39.26264392368107],[-76.61842151941477,39.26262866453823],[-76.61842939187628,39.26261872943589],[-76.61843109195758,39.26261652988207],[-76.61843865116803,39.26260709909161],[-76.61844681431265,39.26259374381898],[-76.61845448787763,39.26257877548262],[-76.61845981705552,39.26256429314898],[-76.61845987589035,39.26256067766081],[-76.61845900324494,39.26255078800533],[-76.61845185193771,39.26253564539323],[-76.61845117492967,39.2625341956607],[-76.61844137940449,39.26251474779701],[-76.6184405376281,39.26251312548253],[-76.61842968928366,39.26249445606274],[-76.61841003456517,39.26246826814672],[-76.61840794140025,39.26246534826391],[-76.6183956149643,39.26244897189464],[-76.61838867986471,39.2624382311292],[-76.61838809552277,39.26243721856949],[-76.61838736436928,39.26243592629488],[-76.61838582638056,39.26241272383954],[-76.61838590160609,39.26240821574421],[-76.61838598682078,39.26240314290035],[-76.61838854248704,39.26239417866356],[-76.61838891772004,39.26238818077343],[-76.6183882512281,39.26238132827302],[-76.61838216588667,39.26236555497982],[-76.61838127548282,39.2623630641672],[-76.61837911996206,39.26234502200132],[-76.61837932182767,39.26233290913996],[-76.61837856472161,39.26232200649551],[-76.61837525108423,39.26231096403077],[-76.61837387585577,39.26230813205326],[-76.61836901316272,39.26229620090147],[-76.61836850473702,39.26229486160985],[-76.61836549740475,39.26228589911099],[-76.61836267140976,39.26227553650828],[-76.61835959055524,39.26226710252059],[-76.61835433831526,39.26225995317601],[-76.61834496685417,39.26225194102003],[-76.61833511370214,39.26224709889907],[-76.61833378488733,39.26224662528048],[-76.61832611076318,39.26224403315135],[-76.61831892599135,39.26223900153308],[-76.61831218052093,39.26223157259911],[-76.61830401137114,39.26222256539678],[-76.61829772730283,39.26221423178981],[-76.61828324838262,39.26219413094428],[-76.61827137909692,39.26217830010985],[-76.61825927043091,39.26216345933997],[-76.61824742341214,39.26215059930573],[-76.6182288913904,39.26212252069248],[-76.61821770065923,39.26208825515367],[-76.61821684201283,39.2620869705702],[-76.61820317982824,39.26206216946321],[-76.6181902222216,39.26204316978515],[-76.61818225101455,39.26202796053377],[-76.61817859672972,39.26201283197508],[-76.61817247851555,39.2619977989929],[-76.6181700925948,39.26198705679092],[-76.61817037859059,39.26197008186016],[-76.61817060231941,39.26195671159764],[-76.61817071906586,39.26194341214781],[-76.61817123912229,39.26192966722874],[-76.61817549230935,39.26191747205794],[-76.61818241629415,39.26190743480179],[-76.61819811584893,39.26189339514425],[-76.61821461385931,39.2618773962092],[-76.61822835571247,39.26186821252466],[-76.61824238309518,39.26185786057071],[-76.61825132382938,39.26184447811151],[-76.61825297535721,39.26184010124734],[-76.61825686733492,39.26183279966886],[-76.61826006401574,39.2618280963452],[-76.61827564965881,39.26181174764],[-76.61828950896546,39.26179860365595],[-76.61830414153367,39.2617832291814],[-76.61831773245027,39.26176871065135],[-76.61833243577584,39.26175159612063],[-76.61834709710948,39.2617343166111],[-76.61836537850239,39.26171504735959],[-76.6183829524754,39.26169847540605],[-76.61839914613569,39.26168260336436],[-76.618415348776,39.2616637669241],[-76.61842894964715,39.26164544897633],[-76.61844778670753,39.26162454212058],[-76.61846279699178,39.26160872747699],[-76.6184784488882,39.26159124489327],[-76.61849089416772,39.26157428244156],[-76.61850479758709,39.26155658069172],[-76.61851867972726,39.26154046512244],[-76.6185308330523,39.26152327652599],[-76.61854166910962,39.26150799417686],[-76.61855440196778,39.2614894761262],[-76.6185642222229,39.26147455258374],[-76.6185727651706,39.26145625692202],[-76.61857669977005,39.26144424896085],[-76.61858091184659,39.26141898800876],[-76.6185820722352,39.26140207356379],[-76.61857775893442,39.26138063029612],[-76.61857151487344,39.26136615449834],[-76.61856093240326,39.26135323284402],[-76.61855003404176,39.26134130911365],[-76.61853094201113,39.26132754101636],[-76.61851312000066,39.26131591366219],[-76.61849235798795,39.26130263465451],[-76.61847132384585,39.26129126618753],[-76.61844644619855,39.2612775477366],[-76.61842249672513,39.26126575993882],[-76.618397477024,39.26125475953206],[-76.61837313608893,39.26124509626322],[-76.61833863205833,39.26123244814274],[-76.6182893737229,39.26121560852214],[-76.61821794042416,39.26118431062944],[-76.61813434415834,39.2611450824168],[-76.61805004182435,39.26111283910117],[-76.61796616456377,39.26107074000803],[-76.61788253048115,39.26103535776849],[-76.61781329092186,39.26100384968035],[-76.61771980451293,39.26095837908786],[-76.61760117565885,39.26089981135563],[-76.6174849866092,39.26083490464081],[-76.61736589644134,39.26077493537186],[-76.61728099527946,39.26073484836425],[-76.61717118603525,39.26068485361839],[-76.61703591259459,39.26062044991536],[-76.61694640003981,39.26057760748815],[-76.61689881517408,39.26055849109282],[-76.61682680575677,39.26053992191542],[-76.61673710050708,39.26050855808239],[-76.61662246054428,39.26047438615134],[-76.61656845317671,39.26046407527586],[-76.61651043176492,39.26045876584071],[-76.61646073820276,39.26045788923281],[-76.61641969526532,39.26046410828597],[-76.61638051226305,39.26047178093486],[-76.61634734261538,39.26048206472636],[-76.61632999745946,39.26048307006068],[-76.61632424535981,39.26048742809716],[-76.6163238358186,39.26049781261148],[-76.61632792044416,39.2605065516948],[-76.6163302650168,39.26051330790738],[-76.61633003771655,39.26052127445563],[-76.61632535772684,39.26053050104178],[-76.61630437184982,39.26057181824618],[-76.61629678023422,39.26062451897938],[-76.61629607622757,39.26064886172853],[-76.61629565993587,39.26066306547541],[-76.61629285341066,39.26067210001275],[-76.61628446388377,39.26068078752634],[-76.61625521377978,39.26069924865809],[-76.61617680101109,39.26073496724428],[-76.61613515432842,39.26074480621168],[-76.61609303243091,39.26075124411329],[-76.6160481911583,39.26075509781345],[-76.61603361727271,39.26075357830575],[-76.61599437471929,39.2607486642037],[-76.61597142223563,39.26074095693813],[-76.61595665669172,39.26073160371792],[-76.61594137055486,39.26071867454679],[-76.61592634189539,39.26071126702122],[-76.6159114940626,39.26071198230784],[-76.6159021866676,39.260716198984],[-76.61589633801029,39.26072340310959],[-76.61589699790811,39.26073656458387],[-76.61590375767398,39.26074106531199],[-76.61591925160829,39.26074685658337],[-76.61593411990779,39.26075263769953],[-76.61594221263213,39.26076154934076],[-76.61595811441349,39.26078211813448],[-76.61597062286531,39.26078996779766],[-76.61598592682242,39.26079511078684],[-76.61601830704701,39.26080184722445],[-76.61603106394099,39.26080125750011],[-76.61605023705538,39.26079542556796],[-76.61606952438663,39.26079268273855],[-76.61608547809652,39.26079702075121],[-76.61610553623814,39.26080386460429],[-76.61611791597873,39.26080895117639],[-76.61612381109089,39.26081457682617],[-76.61612589953782,39.26082948145032],[-76.61612351332826,39.26086833907311],[-76.61611816751015,39.26089825680946],[-76.61611746362686,39.26092856263828],[-76.61611692982964,39.26094691763746],[-76.61611661660356,39.26095769790167],[-76.61611580646965,39.26096908906335],[-76.61611196238499,39.26097521612882],[-76.61610528072778,39.26098175907995],[-76.61609675899571,39.26098810054839],[-76.61609331173892,39.26099026913598],[-76.61608446486508,39.26099866869541],[-76.61607403850697,39.26100924384851],[-76.61606823063586,39.26102004488067],[-76.61606594618094,39.2610291639893],[-76.61606278195222,39.26103812889246],[-76.61605810191318,39.26104735186358],[-76.61605363721853,39.26105789156013],[-76.61604881015613,39.2610690173721],[-76.61604451872722,39.26107815694109],[-76.61604035537623,39.26108525398769],[-76.61603467331278,39.26109164617178],[-76.61602850481226,39.26109671353738],[-76.61601644485224,39.26110297226962],[-76.61600225939661,39.26112623054287],[-76.61598956010042,39.26115149698144],[-76.61597713275395,39.26117811005467],[-76.6159665120708,39.26120702959533],[-76.61596171295223,39.26122198015396],[-76.61595594486492,39.26123784182245],[-76.61595186826041,39.26124774774267],[-76.61594556929862,39.26125465134223],[-76.61593703282536,39.26126049642757],[-76.61592911490909,39.2612670182103],[-76.61591946363075,39.26127802645101],[-76.61590880057875,39.26129121754448],[-76.61589457969713,39.26130859097321],[-76.61587075200133,39.26134438069468],[-76.61584290315493,39.26138174981322],[-76.61583245251005,39.26139615222593],[-76.61582450389756,39.26140555725798],[-76.6158181683043,39.26141408571524],[-76.61581322350573,39.26142254846253],[-76.61581062642344,39.26143011992464],[-76.61580738966011,39.2614362075312],[-76.61579951223216,39.26144380585465],[-76.61579153255875,39.26145059945763],[-76.61578202200477,39.26145572433347],[-76.61577013157425,39.26146125937763],[-76.61575924606295,39.2614673760016],[-76.61574732978949,39.26147468727248],[-76.61573751229281,39.26148107401641],[-76.61572646267513,39.26148925015566],[-76.61571709371088,39.26149754078663],[-76.61570913611277,39.26150753037943],[-76.61570277827452,39.26151866467796],[-76.61569639524099,39.261532525517],[-76.61569378948124,39.26154939917413],[-76.61569356053542,39.26156557260652],[-76.61569373685268,39.26158714746631],[-76.61569349200327,39.26160176432018],[-76.61569170302069,39.26160924294262],[-76.61568405808569,39.26161691047726],[-76.61567269533023,39.26162492074596],[-76.61565833985014,39.2616346038521],[-76.61564929352377,39.26164193801759],[-76.61564603901004,39.2616468059221],[-76.6156432602169,39.26165005580362],[-76.6156373323455,39.26165025889045],[-76.6156288256031,39.26165017339706],[-76.61561901076554,39.26165007281202],[-76.61560859267617,39.26164882267371],[-76.61559687038893,39.26164491280252],[-76.61558486212084,39.26164032101378],[-76.61557319781502,39.26163554749402],[-76.61555979770276,39.26163378135769],[-76.61553845136103,39.26163006066083],[-76.61551920958053,39.26162627478941],[-76.61549802119089,39.26162205918023],[-76.61548312670405,39.26162022869133],[-76.61547143079105,39.26161487496361],[-76.61546275285643,39.26160832048605],[-76.61545669663981,39.26160163137116],[-76.6154506567262,39.26159407216792],[-76.61544444817451,39.26158876703321],[-76.61543563328812,39.26158353803486],[-76.61542590250393,39.26158033006097],[-76.6154201870997,39.2615785314264],[-76.61540012869023,39.26156123224868],[-76.61537856113597,39.26154103666061],[-76.61535766008976,39.26151887237219],[-76.61533324238026,39.26149585614404],[-76.61531517622196,39.26148126217694],[-76.6152967589618,39.2614609012436],[-76.61528202434089,39.26144070280048],[-76.61526808840287,39.26142236705721],[-76.61525550463554,39.26139912295601],[-76.61524654606268,39.26137787332084],[-76.61523943429565,39.26134319028348],[-76.61523987535833,39.26131719107191],[-76.61524033904686,39.2612895831633],[-76.61524248086805,39.26126063050229],[-76.61524583727622,39.26122393341755],[-76.61524587881561,39.26122118711316],[-76.61524590529709,39.26121843985862],[-76.61524592020155,39.26121569076466],[-76.61524592468767,39.26121293983504],[-76.61524592106308,39.26121018887881],[-76.61524591165001,39.26120743700285],[-76.61524589991956,39.26120468511929],[-76.61524588587667,39.26120193232742],[-76.61524587298751,39.26119918044004],[-76.61524586242068,39.26119642765955],[-76.61524585879609,39.26119367670334],[-76.61524586096489,39.26119092576607],[-76.61524587355197,39.26118817666449],[-76.61524589656229,39.2611854284978],[-76.61524593462561,39.261182682182],[-76.61524598890063,39.26117993772086],[-76.61524606054603,39.26117719511814],[-76.6152461530378,39.26117445438528],[-76.61524626752977,39.26117171642677],[-76.61524640749303,39.2611689821548],[-76.6152465740961,39.26116624977163],[-76.61524676964645,39.26116352108642],[-76.61524700456738,39.26116079703402],[-76.61524756487097,39.26115811187999],[-76.6152484899327,39.26115546935636],[-76.61524963153478,39.26115285186299],[-76.61525084263285,39.2611502391011],[-76.61525197499957,39.26114761527204],[-76.61525289201369,39.26114496101205],[-76.61525362727207,39.26114227733198],[-76.61525427224157,39.26113957714227],[-76.61525538371427,39.26113482292921],[-76.61525592144356,39.26113266825328],[-76.6152564946434,39.26112995521763],[-76.61525706205961,39.26112724036152],[-76.61525765724983,39.26112453190175],[-76.6152583149498,39.26112183445598],[-76.61525906639986,39.26111915623351],[-76.61525995211936,39.26111650367245],[-76.61526099758946,39.26111387865778],[-76.6152621553435,39.26111127382792],[-76.61526336981386,39.26110867999304],[-76.61526458775046,39.26110608797107],[-76.61526575358077,39.261103489473],[-76.6152668129008,39.26110087441213],[-76.61526771013823,39.26109823449946],[-76.61526837930222,39.26109555961039],[-76.61526875438751,39.26109284232249],[-76.61526891760143,39.26109009371432],[-76.61526897198777,39.26108732853581],[-76.61526901595583,39.26108456152161],[-76.6152691525495,39.26108180742161],[-76.61526948250007,39.26107908007739],[-76.61527007297167,39.26107638691511],[-76.61527083599778,39.26107371053202],[-76.61527173914037,39.26107104992099],[-76.61527276036512,39.26106840861296],[-76.6152738799501,39.26106579104712],[-76.61527507470716,39.26106319984987],[-76.61527632955894,39.26106063767401],[-76.61527765381386,39.26105809734396],[-76.61527903823186,39.26105557342478],[-76.61528047123591,39.26105306407707],[-76.6152819412637,39.2610505647591],[-76.61528343326715,39.26104807271924],[-76.61528493452523,39.261045583412],[-76.61528643462448,39.26104309410092],[-76.61528791852179,39.26104060113364],[-76.61528939205924,39.26103809552171],[-76.61529131057264,39.26103579674256],[-76.61529371475704,39.26103367880727],[-76.61529629823292,39.2610316173069],[-76.6152988353813,39.26102955205162],[-76.61530109710701,39.26102742284027],[-76.61530285431996,39.26102516857089],[-76.61530388716525,39.26102273447721],[-76.61530420714173,39.26102013681071],[-76.61530401560965,39.2610174221702],[-76.6153035151269,39.26101462995236],[-76.61530291055887,39.2610118013628],[-76.61530240446346,39.26100897579811],[-76.61530220170121,39.26100619536479],[-76.61530233703706,39.26100345927593],[-76.61530262067332,39.26100072547447],[-76.61530299815227,39.26099799378193],[-76.61530342081942,39.26099526223749],[-76.61530383770294,39.26099252887249],[-76.61530419665769,39.26098979441699],[-76.61530444787047,39.26098705690623],[-76.61530458091332,39.26098431630597],[-76.61530463982059,39.26098157185984],[-76.61530464543384,39.26097882633831],[-76.61530461977264,39.2609760789128],[-76.61530458368344,39.26097333145309],[-76.61530456033474,39.26097058493593],[-76.61530455900083,39.26096783849086],[-76.61530452870008,39.26096509195091],[-76.61530447639437,39.26096234353729],[-76.61530441713663,39.26095959510097],[-76.61530436714334,39.2609568475957],[-76.61530434263599,39.26095410107472],[-76.6153043621533,39.26095135559871],[-76.61530443958466,39.26094861391553],[-76.61530459115643,39.26094587517751],[-76.61530480761378,39.26094313665205],[-76.61530506811037,39.26094039646935],[-76.61530537494902,39.26093765733923],[-76.61530573044203,39.26093492017004],[-76.6153061368873,39.26093218857235],[-76.61530659775596,39.26092946345834],[-76.61530711535553,39.26092674663708],[-76.6153076919887,39.26092404081843],[-76.61530834386228,39.26092134875775],[-76.61530909183719,39.26091866962268],[-76.61530991275465,39.26091600063494],[-76.61531078693184,39.26091333902793],[-76.61531169236872,39.26091068202704],[-76.61531260591617,39.26090802505276],[-76.61531350672801,39.26090536623521],[-76.61531437396266,39.26090270280383],[-76.61531519025971,39.26090003109866],[-76.61531602162427,39.26089735854204],[-76.61531687962842,39.26089468787423],[-76.61531774343079,39.26089201632465],[-76.61531859218013,39.26088934292424],[-76.61531940503498,39.26088666490235],[-76.61532016113934,39.26088398219076],[-76.61532083849308,39.26088129201501],[-76.61532141856721,39.26087859251285],[-76.61532187703456,39.26087588270395],[-76.61532216526028,39.26087315702429],[-76.61532230871558,39.26087041916033],[-76.61532235025669,39.26086767195491],[-76.61532233158107,39.2608649182468],[-76.61532229785253,39.26086216268785],[-76.6153222907685,39.26085940811697],[-76.61532235202164,39.26085665827378],[-76.61532252793924,39.26085391691315],[-76.61532281157895,39.26085118221072],[-76.61532315892113,39.26084845222084],[-76.61532355723499,39.26084572419951],[-76.61532399261654,39.26084299810108],[-76.61532445000306,39.26084027387629],[-76.61532491665398,39.2608375505826],[-76.61532537867502,39.26083482637299],[-76.61532582215736,39.26083210210264],[-76.61532625984633,39.26082937781327],[-76.61532670332372,39.26082665444368],[-76.61532715259439,39.26082393109307],[-76.61532760649486,39.26082120865836],[-76.61532806155884,39.26081848532669],[-76.61532851893521,39.26081576290334],[-76.61532897515289,39.26081304047625],[-76.61532943021189,39.26081031804529],[-76.61532987369392,39.26080759377492],[-76.61533026508462,39.26080486032622],[-76.61533061943685,39.26080211955001],[-76.61533096452465,39.2607993778427],[-76.61533132581914,39.2607966388908],[-76.61533172994525,39.26079390728535],[-76.61533220236944,39.26079118761358],[-76.61533277086546,39.26078848627192],[-76.61533346091434,39.26078580514525],[-76.61533431417443,39.2607831542786],[-76.61533533527549,39.26078053458784],[-76.61533647791958,39.26077793691363],[-76.6153376958039,39.26077535299743],[-76.61533894263529,39.2607727727791],[-76.61534017095229,39.26077018799625],[-76.61534133792809,39.26076759040174],[-76.61534239379365,39.260764969924],[-76.6153433223422,39.26076232380776],[-76.61534416641531,39.26075965759787],[-76.61534495262325,39.26075697858767],[-76.61534570526877,39.26075429226139],[-76.61534645097197,39.26075160411079],[-76.61534721518453,39.26074892142549],[-76.61534802337761,39.26074624789189],[-76.6153489021567,39.26074359170408],[-76.61534987930537,39.26074095745691],[-76.61535099879934,39.2607383552029],[-76.6153522421243,39.26073578037752],[-76.61535355835741,39.26073322200477],[-76.61535490005187,39.26073066911997],[-76.61535621742881,39.26072811345325],[-76.61535746304634,39.26072554313917],[-76.61535858713539,39.26072294810626],[-76.61535953993187,39.26072031738229],[-76.61536029248857,39.26071764726942],[-76.61536087721406,39.26071494417915],[-76.61536134734853,39.26071221909512],[-76.61536175151213,39.26070948028346],[-76.61536214178628,39.260706738724],[-76.61536256794982,39.26070400268672],[-76.61536308208424,39.26070128315138],[-76.61536373396343,39.26069858928873],[-76.61536455252477,39.26069592659818],[-76.6153654729512,39.26069328225663],[-76.61536647208885,39.26069065258511],[-76.61536753373591,39.26068803392764],[-76.6153686428443,39.26068542353247],[-76.61536978204381,39.26068281954124],[-76.61537093629128,39.26068021830159],[-76.61537208821643,39.26067761795507],[-76.61537322278103,39.26067501394862],[-76.61537432955707,39.26067240624807],[-76.61537544674147,39.26066980218467],[-76.61537657781517,39.26066720086904],[-76.61537771814351,39.26066460228602],[-76.61537886425532,39.26066200552346],[-76.61538000805457,39.26065940785259],[-76.61538114607019,39.26065680836115],[-76.6153822725137,39.26065420612955],[-76.61538338159662,39.26065160023797],[-76.6153845115355,39.26064899441472],[-76.61538570284942,39.26064639509781],[-76.61538692195668,39.26064379857429],[-76.61538813759761,39.26064120023783],[-76.61538931386818,39.26063859726855],[-76.61539041951852,39.26063598325879],[-76.6153914186398,39.26063335628933],[-76.61539228113591,39.26063071085697],[-76.61539296995403,39.26062804233659],[-76.61539342140156,39.2606253442142],[-76.61539363548346,39.26062261558901],[-76.61539368167099,39.26061986569626],[-76.61539362596902,39.26061710195828],[-76.61539353437773,39.26061433269815],[-76.61539347406064,39.26061156534197],[-76.61539351217164,39.26060880911736],[-76.61539371472055,39.26060607054596],[-76.61539414190912,39.26060335883258],[-76.61539474511738,39.26060066571104],[-76.61539547570077,39.260597987419],[-76.61539630124592,39.26059531844562],[-76.61539719279594,39.26059265689459],[-76.615398120245,39.26058999906417],[-76.61539905349223,39.26058734035196],[-76.61539996242689,39.26058467795708],[-76.61540081578458,39.26058200817396],[-76.61540158461816,39.26057932730484],[-76.61540224579342,39.26057662806773],[-76.61540281900757,39.26057391052719],[-76.61540333898166,39.26057118200303],[-76.61540383927306,39.26056845071213],[-76.61540435460749,39.26056572307355],[-76.61540491738864,39.26056300639956],[-76.61540556348626,39.26056030981535],[-76.61540632531377,39.26055763883168],[-76.61540723642845,39.26055500166532],[-76.61540830262363,39.26055239833526],[-76.61540945329395,39.26054981509879],[-76.61541067339624,39.26054724830357],[-76.61541195368073,39.26054469431609],[-76.6154132825656,39.26054215219784],[-76.61541465311352,39.26053961922363],[-76.61541605258894,39.26053709355031],[-76.6154174729007,39.26053457154829],[-76.61541890478438,39.26053205228646],[-76.61542033666794,39.26052953302462],[-76.61542176045046,39.2605270119347],[-76.61542316572357,39.26052448537948],[-76.6154245432228,39.26052195242796],[-76.61542588137613,39.26051941033983],[-76.61542721374579,39.26051686643127],[-76.61542856926422,39.2605143271023],[-76.6154299363497,39.2605117914143],[-76.61543130807468,39.26050925484068],[-76.61543267169371,39.26050671733974],[-76.61543402027442,39.26050417528572],[-76.6154353433986,39.2605016268429],[-76.61543662948932,39.26049907017188],[-76.61543787276794,39.26049650255143],[-76.61543905934514,39.26049392123375],[-76.61544018343241,39.26049132529911],[-76.61544122767431,39.2604887101869],[-76.61544217702762,39.26048607224469],[-76.61544304421814,39.26048341511728],[-76.61544384776506,39.26048074246838],[-76.61544460618262,39.26047805886249],[-76.61544533451388,39.26047536795188],[-76.61544605127791,39.26047267340036],[-76.61544677382547,39.26046998066929],[-76.61544752068545,39.26046729162091],[-76.61544830688624,39.26046461260981],[-76.61544915211046,39.2604619464027],[-76.61545003783912,39.26045928933594],[-76.61545093630323,39.26045663411241],[-76.61545184749792,39.26045398163285],[-76.61545276911075,39.26045133098896],[-76.61545370230041,39.26044868218453],[-76.61545464474467,39.26044603611265],[-76.61545559760707,39.26044339187644],[-76.61545655972893,39.26044074947204],[-76.61545752994678,39.2604381097965],[-76.61545850827025,39.26043547104823],[-76.61545949468972,39.26043283502879],[-76.61546048805127,39.26043020083358],[-76.61546148720122,39.26042756755812],[-76.61546249098575,39.26042493429777],[-76.61546350402972,39.26042230286929],[-76.61546452632831,39.26041967417342],[-76.61546556251618,39.26041704822533],[-76.61546661490566,39.26041442593335],[-76.61546768464575,39.26041180910279],[-76.61546877521246,39.26040919774503],[-76.61546989007195,39.26040659367293],[-76.61547103038777,39.26040399598957],[-76.61547219615504,39.26040140559569],[-76.6154733816,39.2603988188693],[-76.61547458788131,39.26039623581414],[-76.61547581961403,39.26039366004852],[-76.6154770802693,39.26039109248448],[-76.61547837215474,39.26038853493113],[-76.61547969873652,39.26038598920142],[-76.61548106348084,39.2603834571081],[-76.61548246985402,39.26038094046416],[-76.61548392363946,39.26037844109006],[-76.61548543061598,39.260375961707],[-76.61548698385589,39.26037349778843],[-76.61548857410459,39.26037104660183],[-76.61549019095364,39.26036860450994],[-76.61549182398967,39.26036616877645],[-76.61549346396781,39.26036373486718],[-76.61549510163336,39.26036130004953],[-76.61549672773666,39.26035886069016],[-76.61549833071044,39.26035641314814],[-76.61549990130504,39.26035395379005],[-76.6155014510875,39.26035148625692],[-76.61550300087964,39.26034901692227],[-76.61550454257565,39.26034654485876],[-76.61550606923828,39.2603440673414],[-76.61550757277142,39.26034158164138],[-76.61550904392055,39.26033908502612],[-76.61551047573846,39.26033657657202],[-76.61551186013405,39.26033405264962],[-76.6155132052083,39.2603315150869],[-76.61551454222057,39.26032896849013],[-76.61551585843053,39.26032641191671],[-76.61551713646799,39.26032384350837],[-76.61551836127521,39.26032126231497],[-76.61551951896296,39.26031866558871],[-76.61552059331483,39.26031605237577],[-76.61552156928278,39.26031341992459],[-76.6155224144488,39.26031076362512],[-76.61552309296269,39.26030807074931],[-76.61552364764616,39.26030535044497],[-76.61552412247462,39.2603026127646],[-76.61552456373114,39.26029986956971],[-76.61552501887205,39.26029713002337],[-76.6155255330217,39.26029440598326],[-76.61552615363641,39.26029170661242],[-76.61552692584537,39.26028904286791],[-76.61552789709518,39.26028642571426],[-76.6155290893564,39.26028386333027],[-76.61553046328822,39.26028134567868],[-76.61553197144406,39.260278861795],[-76.61553356523828,39.2602763971078],[-76.6155351972194,39.26027394155328],[-76.61553681647956,39.26027148145323],[-76.61553837674057,39.26026900404544],[-76.6155398282435,39.26026649745693],[-76.61554112355159,39.26026394892173],[-76.61554227655409,39.26026136118755],[-76.61554333237542,39.26025874611219],[-76.61554431184219,39.26025610916835],[-76.61554524040584,39.26025345764557],[-76.61554613772948,39.26025079791361],[-76.61554702812067,39.26024813455588],[-76.61554793354998,39.26024547575118],[-76.61554887600754,39.2602428260754],[-76.61554987862755,39.26024019281041],[-76.61555095878985,39.26023757601306],[-76.61555209683637,39.26023496841292],[-76.61555326960357,39.26023236813263],[-76.6155544493129,39.26022976967656],[-76.61555561049815,39.26022716845745],[-76.61555672769333,39.26022455988824],[-76.61555777542733,39.26022194028239],[-76.61555872707056,39.26021930594964],[-76.61555955832526,39.26021665050509],[-76.61556023908095,39.26021397114784],[-76.61556076702036,39.26021126787032],[-76.61556117572019,39.26020854528628],[-76.61556149643502,39.26020580890268],[-76.61556176274162,39.26020306333326],[-76.61556200705809,39.26020031318802],[-76.61556226179756,39.26019756397767],[-76.61556256053191,39.26019482121672],[-76.61556293684768,39.26019208771744],[-76.61556339189372,39.26018936528511],[-76.61556385736762,39.26018664288695],[-76.61556433443302,39.26018391962594],[-76.61556482886849,39.26018119822331],[-76.61556534414517,39.26017847959124],[-76.61556588721007,39.26017576465321],[-76.61556646384685,39.26017305522966],[-76.61556707984379,39.26017035224037],[-76.61556773982583,39.26016765750202],[-76.61556845189875,39.26016497194183],[-76.61556924500451,39.26016230015845],[-76.61557011683075,39.26015964124352],[-76.61557104885357,39.26015699243408],[-76.61557202486625,39.26015435097483],[-76.61557302749881,39.26015171500732],[-76.61557403939076,39.26014908087165],[-76.61557504317206,39.26014644670938],[-76.61557603190046,39.26014381069633],[-76.61557702178258,39.2601411755878],[-76.61557801398195,39.26013854048685],[-76.61557900733986,39.26013590538964],[-76.61558000185153,39.26013327119701],[-76.6155809986804,39.26013063701194],[-76.61558199666304,39.26012800373139],[-76.61558299696286,39.26012537045846],[-76.61558399842127,39.26012273718926],[-76.61558500103341,39.26012010482464],[-76.61558600596277,39.26011747246759],[-76.6155870132045,39.26011484101885],[-76.61558802044615,39.2601122095701],[-76.61558903000508,39.26010957812895],[-76.61559004187635,39.26010694759611],[-76.61559105490616,39.26010431706703],[-76.61559206908974,39.26010168744251],[-76.61559308558563,39.26009905872632],[-76.61559410324502,39.26009642911311],[-76.61559512205811,39.2600938004045],[-76.61559614318352,39.26009117260421],[-76.61559716430891,39.26008854480388],[-76.61559828032217,39.26008593983337],[-76.6155995675679,39.26008338136256],[-76.61560093808566,39.26008085108811],[-76.6156023143869,39.26007832263413],[-76.61560369415908,39.26007579509223],[-76.61560507855609,39.26007326936702],[-76.61560646642408,39.26007074455392],[-76.61560785660438,39.26006822064917],[-76.61560925026058,39.26006569675572],[-76.61561064622418,39.26006317467136],[-76.61561204334639,39.26006065259079],[-76.61561344278583,39.26005813051782],[-76.61561484222031,39.26005560934553],[-76.61561624165462,39.26005308817321],[-76.61561764224753,39.26005056700472],[-76.61561904168659,39.26004804493164],[-76.61562043996194,39.26004552375547],[-76.61562183824211,39.26004300167858],[-76.61562323305107,39.26004047868951],[-76.61562462670128,39.26003795569665],[-76.61562601688036,39.26003543179161],[-76.61562740359305,39.26003290607371],[-76.61562878798837,39.26003038034818],[-76.61563016775867,39.26002785280595],[-76.61563154289915,39.26002532434779],[-76.615632912256,39.26002279406918],[-76.61563427698793,39.26002026197381],[-76.61563563593131,39.26001772895876],[-76.61563698909592,39.26001519322243],[-76.61563833415966,39.26001265565807],[-76.61563967343973,39.26001011627324],[-76.61564100346506,39.26000757415574],[-76.61564232654817,39.26000503021401],[-76.6156436311268,39.2600024799063],[-76.61564489753307,39.25999991776369],[-76.61564612692571,39.25999734378987],[-76.61564732392462,39.25999476070235],[-76.61564849200579,39.25999216851249],[-76.61564963347686,39.25998956902932],[-76.61565075412614,39.25998696317269],[-76.61565185626127,39.25998435275158],[-76.61565294335324,39.25998173867809],[-76.6156540177146,39.25997912186069],[-76.61565508512878,39.25997650411976],[-76.61565614790831,39.25997388636366],[-76.61565720027443,39.25997126587109],[-76.61565823759749,39.25996864172627],[-76.61565925988234,39.25996601302837],[-76.61566026596539,39.25996338067436],[-76.61566125700541,39.25996074466799],[-76.61566223184856,39.25995810410479],[-76.6156631916437,39.25995546079],[-76.61566413407358,39.25995281471612],[-76.61566506146043,39.25995016498988],[-76.61566597264064,39.25994751250826],[-76.61566686761417,39.25994485727129],[-76.61566774406876,39.25994219837065],[-76.61566859621581,39.25993953488662],[-76.61566942522389,39.25993686502144],[-76.6156702310783,39.25993419147743],[-76.61567101609633,39.25993151426211],[-76.61567178144156,39.25992883247855],[-76.61567252710429,39.2599261479283],[-76.61567325424305,39.2599234606151],[-76.61567396633384,39.25992077055032],[-76.61567466104967,39.25991807952793],[-76.61567536041474,39.25991538581841],[-76.61567608643367,39.25991269129538],[-76.61567682058261,39.25990999319586],[-76.61567754431336,39.25990729326069],[-76.61567824141454,39.25990458963533],[-76.61567889102541,39.25990188315217],[-76.61567947576623,39.25989917375445],[-76.61567997710331,39.25989646048064],[-76.61568037765687,39.25989374327394],[-76.61568065888852,39.25989102207362],[-76.61568079531757,39.25988829499475],[-76.61568079389595,39.2598855620601],[-76.61568067779677,39.25988282334554],[-76.61568047365935,39.25988008073974],[-76.61568020581059,39.25987733522314],[-76.61567990088977,39.25987458868445],[-76.61567958323354,39.25987184030251],[-76.61567927831277,39.25986909376378],[-76.61567901162279,39.25986634825094],[-76.61567880748548,39.25986360564515],[-76.61567863926651,39.2598608631569],[-76.61567848496111,39.25985811891265],[-76.61567833529034,39.25985537468359],[-76.61567817982146,39.25985263133629],[-76.61567801044878,39.25984988794348],[-76.61567781672969,39.2598471471733],[-76.61567758824125,39.25984440809088],[-76.61567731570443,39.25984167246734],[-76.61567699448955,39.25983893938674],[-76.61567663270721,39.25983620887573],[-76.61567623846793,39.25983348096074],[-76.61567581872855,39.25983075476385],[-76.61567538508046,39.25982802942223],[-76.61567494332179,39.25982530405402],[-76.61567450388054,39.25982257869342],[-76.61567377949953,39.25981791034449],[-76.61566649588188,39.25980125742772],[-76.61548783029305,39.25974423039617]]]],"type":"MultiPolygon"} +},{ + "id": 1108797019, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":259287.628638, + "geom:bbox":"-76.6082210265,39.2593051784,-76.5995134028,39.2659055365", + "geom:latitude":39.262337, + "geom:longitude":-76.60368, + "iso:country":"US", + "lbl:latitude":39.261835, + "lbl:longitude":-76.604702, + "lbl:max_zoom":18.0, + "mps:latitude":39.261835, + "mps:longitude":-76.604702, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "reversegeo:latitude":39.261835, + "reversegeo:longitude":-76.604702, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108797011, + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"0227e02d38deb25e2728a052fa7edf12", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797019, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797019, + "wof:lastmodified":1566624038, + "wof:name":"Winans Cove", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.60822102647262, + 39.2593051783579, + -76.59951340278704, + 39.2659055365403 +], + "geometry": {"coordinates":[[[[-76.59951340278704,39.26187382390671],[-76.60490162190482,39.2593051783579],[-76.60490895999095,39.2593376009909],[-76.60491102211118,39.25933952926847],[-76.60503982933569,39.25944394730494],[-76.60525026090829,39.25961539016953],[-76.60547238023281,39.25979698303983],[-76.60548434516546,39.25979460737833],[-76.60558003669097,39.25987235528399],[-76.60579331403039,39.26004404270541],[-76.60598268658832,39.26019692975212],[-76.60613251073909,39.26031660042249],[-76.60626831917335,39.26042701174539],[-76.60640314963248,39.26053437323028],[-76.60646241025825,39.26058166580987],[-76.60651978299097,39.2606273711845],[-76.60657821764245,39.26067466093615],[-76.60665215401767,39.26073394947291],[-76.60670627717474,39.26077792700438],[-76.60678423578815,39.26084282449825],[-76.60686401361536,39.2609052256956],[-76.60697150558373,39.26099057388619],[-76.60697792136467,39.26098637255906],[-76.60698086020281,39.26098881266729],[-76.60700344386399,39.26097131606782],[-76.60711593479493,39.26105999748151],[-76.60710489518361,39.26107017435358],[-76.60710507779363,39.26107549039659],[-76.60710863062546,39.26108192926353],[-76.60711339975755,39.26108738135498],[-76.60711892049976,39.26109101911189],[-76.60712664218431,39.26109413367984],[-76.60713630497958,39.2610997066319],[-76.60714035215439,39.26110496624484],[-76.60714282398764,39.26111139428794],[-76.60714841335657,39.26111917130199],[-76.60715445440844,39.2611234278239],[-76.60716066865589,39.26112360804902],[-76.60716740536245,39.26111962216807],[-76.60717290751249,39.26111636267963],[-76.6071781072813,39.26111560811602],[-76.60718222400021,39.26111709644449],[-76.60718579047638,39.26112044391886],[-76.60718574831981,39.26112471071585],[-76.60718233137854,39.26112574777954],[-76.60717757373625,39.26112575438339],[-76.60717448683283,39.2611257791869],[-76.60717429787468,39.26112747019709],[-76.60717666414988,39.26112931477879],[-76.60717739272329,39.2611316619151],[-76.60717717968399,39.26113456347689],[-76.60717397664146,39.2611381954677],[-76.6071726467143,39.26114107978165],[-76.60716169056388,39.26113429457605],[-76.60715345654179,39.26113644688849],[-76.60715050458585,39.26113449045323],[-76.60714625369927,39.261137982021],[-76.60715266242083,39.26114154528089],[-76.60721382056543,39.26118428142787],[-76.60728075731667,39.26123725788202],[-76.60733572699149,39.26128167301638],[-76.60738657656057,39.26132312703619],[-76.60744989448094,39.26137472212431],[-76.60751419556645,39.2614272752773],[-76.60757162855784,39.2614769968477],[-76.6076092085827,39.26151495377892],[-76.60762118753154,39.26150735799714],[-76.60762497586987,39.26150746974004],[-76.60763348064665,39.26150748734844],[-76.60763805679848,39.26150573172913],[-76.60763714371745,39.26149777219563],[-76.60762597785785,39.26149620538274],[-76.60761993852527,39.26149749491929],[-76.60761499488039,39.26149236834408],[-76.60763753477214,39.26148195061375],[-76.60767559595773,39.26151902187488],[-76.60771217988029,39.26150661621556],[-76.60772341186644,39.26150691135689],[-76.60772836446075,39.26150622800462],[-76.60773870675543,39.26151235804902],[-76.60776042331629,39.26152637447633],[-76.60778181454808,39.26153355371672],[-76.60779440990879,39.26153778092175],[-76.60780804860029,39.26154435253676],[-76.60781416375083,39.26155282666657],[-76.60781780369562,39.26155756605285],[-76.60781947128773,39.26155563947516],[-76.60781776670056,39.26155335754192],[-76.60781171846961,39.261542209256],[-76.60781194651511,39.26154057152092],[-76.60781295773351,39.26153916339497],[-76.60781517133333,39.26153802861429],[-76.6078172249956,39.26153773912043],[-76.60781909302037,39.2615383326598],[-76.60782049582473,39.26154028930875],[-76.60782064370071,39.26154351365079],[-76.60782325918217,39.26154639673604],[-76.60782515376643,39.26154994218027],[-76.60782779801924,39.26154950603193],[-76.6078300317718,39.26155164380789],[-76.60783167803586,39.26155420568497],[-76.607831045175,39.26155738868655],[-76.60782849317164,39.26156105079275],[-76.6078275588017,39.26156385896874],[-76.6078285991761,39.26156619092814],[-76.60783173675743,39.26156706344139],[-76.60783532091071,39.2615647054909],[-76.60783992953483,39.26156860589355],[-76.60784560456665,39.2615789341336],[-76.60784592281708,39.26159347358938],[-76.60784675175988,39.26159884043014],[-76.60784535679525,39.26160385214775],[-76.60784035275253,39.26160902205773],[-76.60783977088292,39.26161136481321],[-76.60784026667827,39.26161935627968],[-76.60784399418718,39.26162481567093],[-76.60784566386994,39.26163341457198],[-76.60785135694455,39.26163775276575],[-76.60785850065362,39.26164566734791],[-76.60786875735582,39.26165198535516],[-76.60788208537983,39.26165858654994],[-76.60789428264522,39.26166642162244],[-76.60790413722926,39.2616719104782],[-76.60790971940045,39.26167618974883],[-76.60791113698836,39.2616784076686],[-76.60791107239523,39.26168443629193],[-76.60791548319227,39.26170107559006],[-76.60788464918136,39.26172367018092],[-76.60795866941058,39.26178159799041],[-76.60804468125362,39.26184812217127],[-76.60810117251862,39.26189330136221],[-76.60815951061448,39.26193936043242],[-76.60822102647262,39.26198721719803],[-76.60819596810231,39.2620046562274],[-76.60821727133229,39.26202264447476],[-76.6082083742849,39.26202713664482],[-76.60806356296035,39.26212160242859],[-76.60794675357617,39.26219892533449],[-76.6079216412413,39.26221526799666],[-76.60788932168104,39.26223630099329],[-76.60789703596225,39.26225147946565],[-76.60790221492769,39.26225827863816],[-76.60790335105796,39.26226425362054],[-76.60790026431924,39.26226885344277],[-76.60789763162525,39.26226970938909],[-76.60789077131696,39.26226941985476],[-76.60788220471311,39.26226652500695],[-76.60787427381615,39.26226119120096],[-76.60786432189187,39.26225778639525],[-76.60785171040843,39.26225968003038],[-76.60783915633469,39.26225621699053],[-76.60783098455182,39.26225023202289],[-76.60782511991734,39.26224044631402],[-76.60782456360847,39.26223250148679],[-76.60781899011531,39.26222748361241],[-76.60781022259299,39.26222907661363],[-76.60780101774267,39.26223558094049],[-76.6077815197755,39.26224695376609],[-76.60777353467901,39.26225457281133],[-76.60776305703486,39.26225949383821],[-76.60773202347255,39.26226195736389],[-76.60770531107805,39.2622622662686],[-76.60767914302168,39.2622624121453],[-76.60765860317221,39.26226040236742],[-76.60764196522432,39.2622597675839],[-76.60763345846026,39.26225820695475],[-76.60762802919223,39.26225518835673],[-76.60761597305091,39.26224801219087],[-76.60760403332775,39.26224325227167],[-76.60758862678746,39.26224078763236],[-76.60756894320038,39.26223606038172],[-76.60755252004881,39.26223283389392],[-76.60753706488305,39.26222659126559],[-76.60752157454129,39.26222398581761],[-76.60750612357499,39.26222201283813],[-76.60748873747085,39.26221984602867],[-76.60747265519881,39.26221972381374],[-76.60745433879124,39.26221983553407],[-76.60743865822893,39.26222417796124],[-76.60741792615647,39.2622286422168],[-76.60739401068182,39.26223297151964],[-76.60736930234219,39.26224049679271],[-76.60734708785098,39.26224692065357],[-76.60732337214469,39.2622551419264],[-76.60729337866873,39.26226563915815],[-76.60727215553571,39.26227403539829],[-76.60725325223672,39.26228388062167],[-76.60722659310608,39.26229361522874],[-76.60720080886847,39.2623004063451],[-76.60717453252066,39.26230504117333],[-76.60714927853714,39.26230521160819],[-76.60712700448694,39.26230396789362],[-76.60710901511956,39.26229523421487],[-76.60708825159831,39.26228569857558],[-76.60706456256872,39.26228093261684],[-76.60704187666171,39.26227287770421],[-76.60701281896817,39.26226503566321],[-76.60699118844384,39.26226329685264],[-76.60696862186757,39.26225545670785],[-76.6069441774269,39.26224796157258],[-76.60692225648111,39.2622434293973],[-76.60689847138988,39.26223488256129],[-76.60687608125039,39.26222636200881],[-76.60685163748526,39.26221812102071],[-76.60683152494467,39.26221156275089],[-76.60680846870066,39.26220991821754],[-76.60678036078714,39.2622103069113],[-76.60675701695087,39.26221058634545],[-76.60673590003373,39.26221339808474],[-76.6067054115754,39.26222141189393],[-76.60668443521308,39.26222792264704],[-76.60666058171211,39.26223632347833],[-76.60665430856002,39.26223880930232],[-76.60662410816767,39.26225421755678],[-76.60660675255204,39.26226703859292],[-76.60659599023992,39.26228441798128],[-76.60658666149146,39.26230196340877],[-76.60657201853041,39.26232228701416],[-76.60656145536299,39.26234136321195],[-76.60655335120389,39.26235893706014],[-76.60654891693903,39.26236915222177],[-76.60654577140514,39.26237639826713],[-76.60653564856247,39.26239818634761],[-76.60653343814172,39.26242151873275],[-76.60652665496944,39.26243594611957],[-76.6065198093646,39.26245013909715],[-76.60651738762475,39.2624735482396],[-76.60651753511884,39.26249208653238],[-76.60651302877103,39.26250923916335],[-76.60650775315071,39.26252825110304],[-76.60650289679667,39.26254541607217],[-76.60649771324728,39.26256495797112],[-76.60649269815131,39.2625829574193],[-76.60648740082438,39.26260191163587],[-76.6064832029811,39.26261880137407],[-76.60648029664058,39.26264559667774],[-76.60648162344059,39.26265665984809],[-76.60649358996574,39.26266786946679],[-76.60650671212814,39.26267838215947],[-76.60651106488801,39.26268893122216],[-76.60651196307431,39.26270143778703],[-76.60651210849001,39.26271742509778],[-76.60651233875039,39.26273566461173],[-76.60651251316852,39.26275457140729],[-76.60651230144438,39.26277436596644],[-76.60650170160746,39.26280317482748],[-76.60649536247456,39.26281838556528],[-76.60649209120115,39.26283952642756],[-76.60648534768178,39.26286330210912],[-76.60648538945162,39.26288188958782],[-76.60648372087395,39.26290320606523],[-76.60648260859099,39.26291844332495],[-76.60648291275196,39.26292607114307],[-76.60648673000094,39.26292871417613],[-76.60649746580522,39.26293640757653],[-76.60650258983824,39.26294160506088],[-76.60650381864286,39.26294735607543],[-76.60649980492482,39.26295339668453],[-76.60648938508243,39.26296311347748],[-76.60652511027719,39.26298851683134],[-76.60653475909997,39.26297763005715],[-76.60654329986258,39.26297745870329],[-76.6065508911967,39.26297778319295],[-76.60655800381384,39.26298315307877],[-76.60656319435624,39.2629897316598],[-76.60656864219247,39.26299692722767],[-76.60657366159981,39.26300574093991],[-76.60657463008069,39.26301581206324],[-76.60657585322274,39.26302634793496],[-76.60657600440187,39.26303607312762],[-76.60657522930563,39.2630458798891],[-76.60657249465712,39.2630550855789],[-76.60656699762609,39.26306240571508],[-76.60654394412269,39.26308550612455],[-76.60653858656903,39.26308731402951],[-76.60651527430217,39.26310629795953],[-76.60649362782496,39.26312285539462],[-76.6065111545529,39.26312895196922],[-76.60647633113651,39.26315426124147],[-76.60635975434421,39.2632477322958],[-76.60622998415367,39.26315050344985],[-76.60609546782116,39.26325791651728],[-76.60588597134686,39.2634328047132],[-76.60575794456521,39.26353595061454],[-76.60566387671093,39.26361257922523],[-76.60558896181784,39.26367183413303],[-76.60520867185359,39.26397891415337],[-76.60496965505401,39.26417469652986],[-76.60492619393861,39.26420987751573],[-76.60492245237562,39.26420945597975],[-76.60487753300184,39.26417667635592],[-76.60487589881379,39.26417590790751],[-76.60487392003846,39.26417542654517],[-76.6048714564656,39.2641756488524],[-76.60481277940855,39.26421922329133],[-76.60477541734922,39.26425199447569],[-76.60472989440991,39.26429200827201],[-76.60231084788016,39.26235487598095],[-76.60171848736336,39.26188050026194],[-76.60167619565527,39.2618464383938],[-76.6016761596384,39.26211193513708],[-76.60197883445227,39.262353751109],[-76.60200382029063,39.26237371394027],[-76.60222052785024,39.26254678582072],[-76.60243290077254,39.26271650436858],[-76.60260606240431,39.26285433777046],[-76.60279728977653,39.26300801887148],[-76.60297875801996,39.26315382547502],[-76.60315979067828,39.26329850435798],[-76.60333980093985,39.26344255616869],[-76.60348200422125,39.26355682767686],[-76.60365515728908,39.26369505759469],[-76.60384926346053,39.26384821699481],[-76.60403831045718,39.26399926021794],[-76.60423362563684,39.2641586635562],[-76.60433892868413,39.26424288433705],[-76.60427682407779,39.26428596955366],[-76.60450393268643,39.26446438756205],[-76.60425640988581,39.26464823258269],[-76.60402449758367,39.26482442004808],[-76.60404151719563,39.26483733228348],[-76.60393558692095,39.26491792430579],[-76.60391992655907,39.26490521480858],[-76.60373797462226,39.26503911343851],[-76.60374634533773,39.26504744405435],[-76.60364116332687,39.26513315919409],[-76.60292869215242,39.26571377110377],[-76.60276019401502,39.26584998992767],[-76.60276295939632,39.26585196205309],[-76.60275124592987,39.26586034640299],[-76.60268429177498,39.26587777042658],[-76.60258126149097,39.2659055365403],[-76.60257998698394,39.26590488998035],[-76.60245368705485,39.26573784852917],[-76.60229909919109,39.26553143409047],[-76.60215862885656,39.26534538226109],[-76.6019766890587,39.2651042447093],[-76.60185178225184,39.264938070219],[-76.60167580371176,39.26470421166],[-76.60164174820019,39.26465916046427],[-76.60153410165709,39.26451667218684],[-76.60149878711668,39.26446928819092],[-76.60141840777582,39.26436143855522],[-76.60129673226119,39.26419972779142],[-76.60117490728599,39.26403749393938],[-76.60106617686699,39.26389397734714],[-76.60103075169118,39.26384886365892],[-76.6009259472897,39.26370953352164],[-76.60081767844382,39.26356653709298],[-76.60068454731535,39.26339055097451],[-76.60057861533615,39.26324963221946],[-76.6004344712685,39.26305766745073],[-76.60029301286849,39.26287061811559],[-76.60016370524407,39.26269905093307],[-76.60000272311282,39.26248479190569],[-76.59989881386105,39.26234668257104],[-76.59972221920563,39.26211196303605],[-76.5996299973115,39.26198872713177],[-76.59955041150407,39.2618837576811],[-76.59954429087004,39.26187827274925],[-76.59954157191277,39.26187633042863],[-76.59953626517746,39.261874045098],[-76.59953091914252,39.26187276939413],[-76.59952312284074,39.26187244915561],[-76.59951715065579,39.26187289538595],[-76.59951340278704,39.26187382390671]]]],"type":"MultiPolygon"} +},{ + "id": 1108831863, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":315014.278585, + "geom:bbox":"-122.461523603,37.7445755718,-122.454609864,37.751946036", + "geom:latitude":37.748756, + "geom:longitude":-122.457807, + "iso:country":"US", + "lbl:latitude":37.749268, + "lbl:longitude":-122.457115, + "lbl:max_zoom":18.0, + "mps:latitude":37.749268, + "mps:longitude":-122.457115, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":37.749268, + "reversegeo:longitude":-122.457115, + "src:geom":"mz", + "wof:belongsto":[ + 85887429, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6b4f8ea098c734c6ab51adc91a4f3f36", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831863, + "neighbourhood_id":85887429, + "region_id":85688637 + } + ], + "wof:id":1108831863, + "wof:lastmodified":1566624116, + "wof:name":"West of Twin Peaks", + "wof:parent_id":85887429, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420552249, + 420782037 + ], + "wof:tags":[] +}, + "bbox": [ + -122.46152360299993, + 37.7445755717636, + -122.4546098639999, + 37.75194603600005 +], + "geometry": {"coordinates":[[[-122.45460986399991,37.74860639000008],[-122.45462559500983,37.74710371374282],[-122.45550295665242,37.74710167330792],[-122.45583841845692,37.74647321668353],[-122.45622548976985,37.74655483472849],[-122.45631838688494,37.74653034932445],[-122.45638547924588,37.7463344658005],[-122.4564990201643,37.74611409621635],[-122.45714929996998,37.7454978740815],[-122.45740734751193,37.74548971216448],[-122.45865629761495,37.74571008360783],[-122.46012200765314,37.7445755717636],[-122.46073099985215,37.74505712927495],[-122.46097356454156,37.74497550957829],[-122.46099420834491,37.74511426300904],[-122.46103549595162,37.7452122064506],[-122.46110258831254,37.74529382588624],[-122.46131418729688,37.74546114544787],[-122.4613810969999,37.74556949700008],[-122.45917437499992,37.74728631900007],[-122.45914669799993,37.74738865800003],[-122.4588566799999,37.74765706600004],[-122.45878594199991,37.74781189900006],[-122.4588161559999,37.74804011500004],[-122.45894158999994,37.74820127500004],[-122.45921234699989,37.74846312300008],[-122.45961093599993,37.74884859100007],[-122.45962571599989,37.74894167000008],[-122.45973077699995,37.74897831400006],[-122.4599848769999,37.74922388900006],[-122.4604881009999,37.74971022400007],[-122.46064659799993,37.74990558600007],[-122.46071278099993,37.75004401000007],[-122.46113072599991,37.75091814600006],[-122.46150345299992,37.75139897500009],[-122.46152360299993,37.75150356000006],[-122.46115958899992,37.75169349900005],[-122.46102392599994,37.75172671600006],[-122.46066796799994,37.75181387100008],[-122.46057485799992,37.75182118400005],[-122.45898510099994,37.75194603600005],[-122.45703195499993,37.75140150000004],[-122.45644843399992,37.75148331200006],[-122.45644154799993,37.75133891400009],[-122.45586859699989,37.75128510300004],[-122.45519019299991,37.75126469900005],[-122.45464353699992,37.75119989300003],[-122.45460986399991,37.74860639000008]]],"type":"Polygon"} +},{ + "id": 1108831947, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":163355.273249, + "geom:bbox":"-122.478431016,37.7784636307,-122.473834654,37.7825335007", + "geom:latitude":37.780493, + "geom:longitude":-122.476136, + "iso:country":"US", + "lbl:latitude":37.780281, + "lbl:longitude":-122.481793, + "lbl:max_zoom":18.0, + "mps:latitude":37.780495, + "mps:longitude":-122.476137, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:bel_x_preferred":[ + "\u041c\u0430\u043b\u0430\u044f \u0420\u0443\u0441\u044c" + ], + "name:bul_x_preferred":[ + "\u041c\u0430\u043b\u043e\u0440\u0443\u0441\u0438\u044f" + ], + "name:cat_x_preferred":[ + "Petita R\u00fassia" + ], + "name:deu_x_preferred":[ + "Kleinrussland" + ], + "name:fra_x_preferred":[ + "Petite Russie" + ], + "name:jpn_x_preferred":[ + "\u5c0f\u30ed\u30b7\u30a2" + ], + "name:kat_x_preferred":[ + "\u10db\u10d0\u10da\u10dd\u10e0\u10dd\u10e1\u10d8\u10d0" + ], + "name:kor_x_preferred":[ + "\uc18c\ub7ec\uc2dc\uc544" + ], + "name:lav_x_preferred":[ + "Mazkrievija" + ], + "name:lit_x_preferred":[ + "Ma\u017eoji Rusija" + ], + "name:nld_x_preferred":[ + "Klein-Rusland" + ], + "name:nor_x_preferred":[ + "Lillerussland" + ], + "name:pol_x_preferred":[ + "Ma\u0142orosja" + ], + "name:por_x_preferred":[ + "Pequena R\u00fassia" + ], + "name:ron_x_preferred":[ + "Rusia Mic\u0103" + ], + "name:rus_x_preferred":[ + "\u041c\u0430\u043b\u0430\u044f \u0420\u0443\u0441\u044c" + ], + "name:spa_x_preferred":[ + "Rusia Menor" + ], + "name:swe_x_preferred":[ + "Lillryssland" + ], + "name:ukr_x_preferred":[ + "\u041c\u0430\u043b\u0430 \u0420\u0443\u0441\u044c" + ], + "name:vie_x_preferred":[ + "Ti\u1ec3u Nga" + ], + "name:zho_x_preferred":[ + "\u5c0f\u4fc4\u7f85\u65af" + ], + "reversegeo:latitude":37.780495, + "reversegeo:longitude":-122.476137, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865919, + 102191575, + 1108830805, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ba72568dc2a70f23017cd3595aad66e7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830805, + "microhood_id":1108831947, + "neighbourhood_id":85865919, + "region_id":85688637 + } + ], + "wof:id":1108831947, + "wof:lastmodified":1566624112, + "wof:name":"Little Russia", + "wof:parent_id":85865919, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887433 + ], + "wof:tags":[] +}, + "bbox": [ + -122.47843101552074, + 37.77846363068153, + -122.47383465403195, + 37.78253350069038 +], + "geometry": {"coordinates":[[[-122.47843101552074,37.78231386954811],[-122.47412366727893,37.78253350069038],[-122.47383465403195,37.7786665878624],[-122.47816045844334,37.77846363068153],[-122.47843101552074,37.78231386954811]]],"type":"Polygon"} +},{ + "id": 1108831949, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":145470.71188, + "geom:bbox":"-122.423730984,37.7777735609,-122.418141751,37.7821692974", + "geom:latitude":37.779794, + "geom:longitude":-122.420596, + "iso:country":"US", + "lbl:latitude":37.779283, + "lbl:longitude":-122.419267, + "lbl:max_zoom":18.0, + "mps:latitude":37.779584, + "mps:longitude":-122.420541, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":18.0, + "mz:note":"development name", + "mz:tier_metro":1, + "reversegeo:latitude":37.779584, + "reversegeo:longitude":-122.420541, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866841, + 102191575, + 1108830801, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"54b1b6907f5eae130734d8cb4a174330", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830801, + "microhood_id":1108831949, + "neighbourhood_id":85866841, + "region_id":85688637 + } + ], + "wof:id":1108831949, + "wof:lastmodified":1566624112, + "wof:name":"Opera Plaza", + "wof:parent_id":85866841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85839649 + ], + "wof:tags":[] +}, + "bbox": [ + -122.42373098399992, + 37.77777356092018, + -122.4181417507571, + 37.78216929735218 +], + "geometry": {"coordinates":[[[-122.41899295244343,37.78216929735218],[-122.4181417507571,37.77797098478192],[-122.41971036783109,37.77777356092018],[-122.41980694934945,37.77824737730258],[-122.42152043870095,37.7780209987432],[-122.42171027134052,37.77895809618193],[-122.42335402499992,37.77874737100007],[-122.42335586247138,37.77874805479004],[-122.42373098399992,37.78061162100005],[-122.42043951799991,37.78103084100007],[-122.42063824899992,37.78196076500006],[-122.41899295244343,37.78216929735218]]],"type":"Polygon"} +},{ + "id": 1108831951, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000144, + "geom:area_square_m":1408898.703298, + "geom:bbox":"-122.410298518,37.774806594,-122.392722833,37.791152808", + "geom:latitude":37.78283, + "geom:longitude":-122.400798, + "iso:country":"US", + "lbl:latitude":37.787561, + "lbl:longitude":-122.396272, + "lbl:max_zoom":18.0, + "mps:latitude":37.782125, + "mps:longitude":-122.400931, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.782125, + "reversegeo:longitude":-122.400931, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865939, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3ac6b04c8cedec43558bc00843216c5a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831951, + "neighbourhood_id":85865939, + "region_id":85688637 + } + ], + "wof:id":1108831951, + "wof:lastmodified":1566624112, + "wof:name":"Financial District South", + "wof:parent_id":85865939, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887417 + ], + "wof:tags":[] +}, + "bbox": [ + -122.41029851820134, + 37.77480659399124, + -122.39272283299994, + 37.79115280800005 +], + "geometry": {"coordinates":[[[-122.39429677738373,37.78008659367037],[-122.40099092249855,37.77480659399124],[-122.40875153241724,37.7809669297217],[-122.41029851820134,37.78222544815116],[-122.4089521589999,37.78328785200005],[-122.40206572999996,37.78872115200006],[-122.40104304499994,37.7878896130001],[-122.40050309599991,37.78745049800006],[-122.3958134209999,37.79115280800005],[-122.39272283299994,37.78868666100004],[-122.39670517799993,37.78554213000007],[-122.39361807599994,37.78307785400006],[-122.39584349899991,37.78132125600007],[-122.39429677738373,37.78008659367037]]],"type":"Polygon"} +},{ + "id": 1108831957, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":158820.414943, + "geom:bbox":"-122.411374729,37.797420185,-122.405460482,37.8014592832", + "geom:latitude":37.799383, + "geom:longitude":-122.40838, + "iso:country":"US", + "lbl:latitude":37.798941, + "lbl:longitude":-122.409846, + "lbl:max_zoom":18.0, + "mps:latitude":37.799118, + "mps:longitude":-122.40838, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:bul_x_preferred":[ + "\u041d\u043e\u0440\u0442 \u0411\u0438\u0439\u0447" + ], + "name:ceb_x_preferred":[ + "North Beach" + ], + "name:ces_x_preferred":[ + "North Beach" + ], + "name:deu_x_preferred":[ + "North Beach" + ], + "name:eng_x_preferred":[ + "Little Italy" + ], + "name:eng_x_variant":[ + "North Beach" + ], + "name:epo_x_preferred":[ + "Norda Marbordo" + ], + "name:fra_x_preferred":[ + "North Beach" + ], + "name:ita_x_preferred":[ + "North Beach" + ], + "name:jpn_x_preferred":[ + "\u30ce\u30fc\u30b9\u30d3\u30fc\u30c1" + ], + "name:nld_x_preferred":[ + "North Beach" + ], + "name:por_x_preferred":[ + "North Beach" + ], + "name:slk_x_preferred":[ + "North Beach" + ], + "name:spa_x_preferred":[ + "North Beach" + ], + "name:zho_x_preferred":[ + "\u5317\u6ee9" + ], + "reversegeo:latitude":37.799118, + "reversegeo:longitude":-122.40838, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85837317, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2000502" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e7749977ad6ff092307e61cdc35d2001", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831957, + "neighbourhood_id":85837317, + "region_id":85688637 + } + ], + "wof:id":1108831957, + "wof:lastmodified":1566624112, + "wof:name":"Little Italy", + "wof:parent_id":85837317, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85830943 + ], + "wof:tags":[] +}, + "bbox": [ + -122.41137472917664, + 37.79742018500008, + -122.40546048228286, + 37.80145928320362 +], + "geometry": {"coordinates":[[[-122.40564526799994,37.79896930800004],[-122.40546048228286,37.79803820507034],[-122.40667846668107,37.79787508251107],[-122.40668454575828,37.79786259326819],[-122.40701616299992,37.79782230100005],[-122.40861884499992,37.79762756100007],[-122.4102635239999,37.79742018500008],[-122.41045615899992,37.79837270300004],[-122.41064427299995,37.79930285300009],[-122.41083363899992,37.80023915900006],[-122.41095373999991,37.80083298100004],[-122.41137472917664,37.80112406662467],[-122.40857854330682,37.80145928320362],[-122.40839274907663,37.80057845790016],[-122.40758444399989,37.80063802000006],[-122.40602391399995,37.80083450800004],[-122.40583404799992,37.79990085500009],[-122.40564526799994,37.79896930800004]]],"type":"Polygon"} +},{ + "id": 1108831961, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":489407.251688, + "geom:bbox":"-122.476164433,37.743051812,-122.46689028,37.7506872682", + "geom:latitude":37.746509, + "geom:longitude":-122.472343, + "iso:country":"US", + "lbl:latitude":37.743902, + "lbl:longitude":-122.471993, + "lbl:max_zoom":18.0, + "mps:latitude":37.746116, + "mps:longitude":-122.472897, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.746116, + "reversegeo:longitude":-122.472897, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85887419, + 102191575, + 1108830803, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"228ffc61c18c60b8a704a6bebc15d77f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830803, + "microhood_id":1108831961, + "neighbourhood_id":85887419, + "region_id":85688637 + } + ], + "wof:id":1108831961, + "wof:lastmodified":1566624117, + "wof:name":"Inner Parkside", + "wof:parent_id":85887419, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865965 + ], + "wof:tags":[] +}, + "bbox": [ + -122.47616443275558, + 37.74305181200009, + -122.46689028023502, + 37.75068726823606 +], + "geometry": {"coordinates":[[[-122.47616443275558,37.75052401932261],[-122.47190373265913,37.75068726823606],[-122.47175922603563,37.74881013525287],[-122.46959162668331,37.74890807380329],[-122.4694264762565,37.74716148353242],[-122.46849750510549,37.74721045391477],[-122.46824977946521,37.74703089568772],[-122.46816720425181,37.74644324753505],[-122.46689028023502,37.7465114704051],[-122.4674419399999,37.74521772200006],[-122.46745800699989,37.74521745400006],[-122.46760642099991,37.74505542500009],[-122.46752287599992,37.74493556200008],[-122.46757090799991,37.74492837800005],[-122.46758596099994,37.74488983500004],[-122.46819318299993,37.74486397800007],[-122.46807329099994,37.74338394500006],[-122.47564446799993,37.74305181200009],[-122.47577324199995,37.74491871700008],[-122.47616443275558,37.75052401932261]]],"type":"Polygon"} +},{ + "id": 1108831963, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":94325.333259, + "geom:bbox":"-122.450377441,37.7484897299,-122.446715794,37.754139766", + "geom:latitude":37.75175, + "geom:longitude":-122.448582, + "iso:country":"US", + "lbl:latitude":37.752854, + "lbl:longitude":-122.443764, + "lbl:max_zoom":18.0, + "mps:latitude":37.751906, + "mps:longitude":-122.448407, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0642\u0645\u0645 \u0627\u0644\u062a\u0648\u0623\u0645" + ], + "name:bos_x_preferred":[ + "Twin Peaks" + ], + "name:bul_x_preferred":[ + "\u0422\u0443\u0438\u043d \u041f\u0438\u0439\u043a\u0441" + ], + "name:ceb_x_preferred":[ + "Twin Peaks" + ], + "name:deu_x_preferred":[ + "Twin Peaks" + ], + "name:eng_x_preferred":[ + "Twin Peaks" + ], + "name:epo_x_preferred":[ + "\u011cemelaj Pintoj" + ], + "name:fra_x_preferred":[ + "Twin Peaks" + ], + "name:jpn_x_preferred":[ + "\u30c4\u30a4\u30f3\u30d4\u30fc\u30af\u30b9" + ], + "name:nld_x_preferred":[ + "Twin Peaks" + ], + "name:ron_x_preferred":[ + "Twin Peaks" + ], + "name:rus_x_preferred":[ + "\u0422\u0432\u0438\u043d-\u041f\u0438\u043a\u0441" + ], + "name:spa_x_preferred":[ + "Twin Peaks" + ], + "name:swe_x_preferred":[ + "Twin Peaks" + ], + "name:zho_x_preferred":[ + "\u96d9\u5cf0" + ], + "reversegeo:latitude":37.751906, + "reversegeo:longitude":-122.448407, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869489, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1344297" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"640571719ebccbecbe3ccc587a1101a7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831963, + "neighbourhood_id":85869489, + "region_id":85688637 + } + ], + "wof:id":1108831963, + "wof:lastmodified":1566624117, + "wof:name":"Twin Peaks", + "wof:parent_id":85869489, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865963 + ], + "wof:tags":[] +}, + "bbox": [ + -122.45037744064987, + 37.74848972990983, + -122.44671579399994, + 37.75413976600004 +], + "geometry": {"coordinates":[[[-122.44772718693214,37.75020047303411],[-122.44772718699994,37.75020047300006],[-122.44816045576742,37.74987310590895],[-122.44912297309891,37.74848972990983],[-122.45037450367734,37.74883863691469],[-122.45037744064987,37.7491943497684],[-122.45036127402344,37.7494229770854],[-122.45025612436751,37.74983382902401],[-122.45002838515683,37.75078183607104],[-122.45002097854484,37.7511360770475],[-122.44981615330846,37.75117025246129],[-122.44965661697734,37.75126129415421],[-122.44954617106767,37.75140539928367],[-122.44922253965385,37.75278371336776],[-122.44919918513622,37.75325453635541],[-122.44928295428836,37.75365420620105],[-122.44956737199993,37.75413976600004],[-122.4494355789999,37.75408875500005],[-122.44930859899989,37.75388792000007],[-122.44859664399991,37.75412195600006],[-122.44815816699992,37.75410987800007],[-122.44713416999991,37.75398055200009],[-122.44700291899994,37.75387241000004],[-122.44686935399994,37.75376236100004],[-122.44673419799994,37.75357302100008],[-122.44671579399994,37.75338821100007],[-122.44677725399993,37.75324943600009],[-122.44735741499994,37.75272109900004],[-122.44753609499992,37.75248195400007],[-122.44739786399992,37.75226150900005],[-122.44727683899993,37.75213049500007],[-122.44709531299992,37.75193115900004],[-122.44702884099991,37.75177512500005],[-122.44703392999992,37.75165880700007],[-122.44708957099994,37.75150506000006],[-122.44716949699995,37.75141726000004],[-122.44738333499993,37.75118235400004],[-122.44763266699994,37.75090845400007],[-122.44776895899992,37.75083086400008],[-122.44792812499992,37.75079809800008],[-122.44839925699989,37.75085906000004],[-122.44873003499993,37.75090186000006],[-122.44892497199993,37.75078025100004],[-122.44918511899994,37.75063740200005],[-122.44930480399989,37.75054717000006],[-122.44942330399994,37.75041175500007],[-122.44956417099991,37.75009963800005],[-122.44968179499995,37.74982308300008],[-122.4497165489999,37.74953977900009],[-122.44967765699994,37.74942465400005],[-122.44964031399991,37.74931411400007],[-122.44954309299993,37.74918179800005],[-122.44940047999989,37.74910603500007],[-122.4492452959999,37.74910598100007],[-122.44905115099994,37.74918280900005],[-122.44888505499989,37.74933887500003],[-122.44862558599993,37.74968552400009],[-122.44851157699992,37.74983783800008],[-122.44826420599992,37.75016831900007],[-122.44813345099993,37.75025012300006],[-122.44795768199992,37.75027024800005],[-122.44772718693214,37.75020047303411]]],"type":"Polygon"} +},{ + "id": 1108831965, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00004, + "geom:area_square_m":389769.523611, + "geom:bbox":"-122.407534229,37.7607335015,-122.39677485,37.7664324903", + "geom:latitude":37.763973, + "geom:longitude":-122.403001, + "iso:country":"US", + "lbl:latitude":37.765418, + "lbl:longitude":-122.401082, + "lbl:max_zoom":18.0, + "mps:latitude":37.764125, + "mps:longitude":-122.403001, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.764125, + "reversegeo:longitude":-122.403001, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85842947, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6a707f13e0a3663a20c951f35ad2295f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831965, + "neighbourhood_id":85842947, + "region_id":85688637 + } + ], + "wof:id":1108831965, + "wof:lastmodified":1566624117, + "wof:name":"Potrero Flats", + "wof:parent_id":85842947, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887453 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4075342289999, + 37.76073350151088, + -122.3967748496725, + 37.76643249033869 +], + "geometry": {"coordinates":[[[-122.3967748496725,37.76513048433316],[-122.39773962562252,37.7650723484988],[-122.39761558141828,37.76379755129672],[-122.40051467167767,37.76362103918309],[-122.40039062747343,37.76234761788159],[-122.40329237582296,37.76217180276716],[-122.40317364779888,37.76089345321387],[-122.40606299172794,37.76076246491583],[-122.40628789944333,37.76074762337927],[-122.40706211549617,37.76073350151088],[-122.40753422899991,37.76578329800009],[-122.39689708975862,37.76643249033869],[-122.3967748496725,37.76513048433316]]],"type":"Polygon"} +},{ + "id": 1108831971, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000038, + "geom:area_square_m":370963.016993, + "geom:bbox":"-122.457547076,37.7367197224,-122.44596433,37.745534237", + "geom:latitude":37.741661, + "geom:longitude":-122.451712, + "iso:country":"US", + "lbl:latitude":37.744624, + "lbl:longitude":-122.453398, + "lbl:max_zoom":18.0, + "mps:latitude":37.74258, + "mps:longitude":-122.452106, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.74258, + "reversegeo:longitude":-122.452106, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420552235, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c874fb56df27a4a93c98e80f234a7973", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831971, + "neighbourhood_id":420552235, + "region_id":85688637 + } + ], + "wof:id":1108831971, + "wof:lastmodified":1566624117, + "wof:name":"Twin Peaks West", + "wof:parent_id":420552235, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887471 + ], + "wof:tags":[] +}, + "bbox": [ + -122.45754707599991, + 37.73671972244293, + -122.44596432999992, + 37.74553423700007 +], + "geometry": {"coordinates":[[[-122.44596432999992,37.74119873400008],[-122.44608615672816,37.74109285865735],[-122.44628227286,37.74101531579397],[-122.44648871089356,37.740990828558],[-122.44675191938636,37.74098674735562],[-122.4470254497808,37.74104490452923],[-122.4472628535194,37.7411336706577],[-122.44744864774961,37.74124896443834],[-122.44767572958651,37.74144384112511],[-122.44780991430834,37.74163157525029],[-122.44782023620999,37.74178665960326],[-122.449069186313,37.74189276976283],[-122.44896596729623,37.74177033494983],[-122.44882146067275,37.74168054929159],[-122.4487079197543,37.74158260117658],[-122.44846019411402,37.74123161936676],[-122.44995686985727,37.74044802606522],[-122.4498897774964,37.74036640128594],[-122.4497039832662,37.74004398252788],[-122.44960076424941,37.73971748108863],[-122.4495697985444,37.73952157953383],[-122.44957495949525,37.73931343356382],[-122.44871308070515,37.7392767018613],[-122.44873888545931,37.73899917285319],[-122.44892984064035,37.73826045086398],[-122.44892467968954,37.73801148764881],[-122.44930659005162,37.73803189450123],[-122.44947174047849,37.73801556901974],[-122.44975043182377,37.73796659255368],[-122.44996203080817,37.73788088366013],[-122.45016330789088,37.73775844221148],[-122.45035942402274,37.73757069826358],[-122.45052973540039,37.73743805279597],[-122.45073101248312,37.73730744779566],[-122.45185868024143,37.73671972244293],[-122.45201866971745,37.73682583986566],[-122.45207027922581,37.73696052714471],[-122.45201866971745,37.73712378412414],[-122.45160063269948,37.7377482387483],[-122.45143548227264,37.73811148117191],[-122.45139419466594,37.7383645254025],[-122.45138903371509,37.73851145391367],[-122.45140967751847,37.73868491080844],[-122.45141225799388,37.73882571669476],[-122.45128323422291,37.73932567746061],[-122.45128839517376,37.73951749824593],[-122.45138129228886,37.73967666830747],[-122.45170608599994,37.73985812600006],[-122.45186163699992,37.74011560900004],[-122.45191034299989,37.74017198800004],[-122.45195823499989,37.74021050200008],[-122.45203941699992,37.74025457900007],[-122.45211641999992,37.74027973400007],[-122.45217549899991,37.74029044500008],[-122.4522661929999,37.74029404400005],[-122.45232632299991,37.74028806200005],[-122.4524451929999,37.74025159400009],[-122.4525716089999,37.74020938800004],[-122.45270419199994,37.74018156400007],[-122.45284036099991,37.74016866400007],[-122.45295738199991,37.74017004800004],[-122.45316515999991,37.74017926400006],[-122.4532826549999,37.74018883500008],[-122.45339969799994,37.74017717100008],[-122.45345194599992,37.74016476100007],[-122.4534533559999,37.74027957800007],[-122.45411750999995,37.74045340300006],[-122.4543989259999,37.74073421500009],[-122.4549021709999,37.74033844200005],[-122.4551545299999,37.74059112200007],[-122.45527519899991,37.74054352600007],[-122.45547426199994,37.74082074600005],[-122.45575877199991,37.74067051700007],[-122.4559561129999,37.74053746300007],[-122.45615013799994,37.74040664300009],[-122.45636611299994,37.74031466400004],[-122.45654278799992,37.74055912000006],[-122.45695111599991,37.74036411300006],[-122.45699391099993,37.74042037200007],[-122.4574675529999,37.74096880600007],[-122.45754707599991,37.74103592000006],[-122.45694041899992,37.74135730700004],[-122.45636074099991,37.74166815100006],[-122.45615599799993,37.74180435000005],[-122.4559417559999,37.74202897900005],[-122.45581237199991,37.74223437100005],[-122.45574984799993,37.74233902100008],[-122.45536911699992,37.74297625900005],[-122.45527107499993,37.74304866400007],[-122.45528424399993,37.74313062500005],[-122.45436448699991,37.74395604400007],[-122.45420490099991,37.74398466000008],[-122.4541428149999,37.74410460400009],[-122.45393238299994,37.74429232600005],[-122.4535337609999,37.74455641700007],[-122.45336484099994,37.74459289500004],[-122.45328103899993,37.74473152000007],[-122.45238616299991,37.74527019100009],[-122.45217148099994,37.74537861500005],[-122.45190586899992,37.74551343200005],[-122.45162398699989,37.74553423700007],[-122.45150431199994,37.74546053400007],[-122.45096372099994,37.74479619900006],[-122.4505184809999,37.74424903100004],[-122.44992921499994,37.74352102100005],[-122.44977187299992,37.74334185700008],[-122.44952567099995,37.74311248400005],[-122.44931111599993,37.74297703500008],[-122.44910455399992,37.74288956700008],[-122.44880174699995,37.74281260200007],[-122.44847738999994,37.74276985100005],[-122.44804203299992,37.74273200900006],[-122.44769833299989,37.74270213300008],[-122.44737498199993,37.74267402600009],[-122.44709363199991,37.74264481600005],[-122.44680910299991,37.74258001800007],[-122.44661390399995,37.74249770600005],[-122.4464634389999,37.74240930700006],[-122.4463490149999,37.74232565900007],[-122.44625422399992,37.74222030300007],[-122.44617695999995,37.74209861800006],[-122.44610547999991,37.74181518500006],[-122.44607494999991,37.74154609000004],[-122.4460211569999,37.74137768500009],[-122.44597848399991,37.74129107000005],[-122.44596432999992,37.74119873400008]]],"type":"Polygon"} +},{ + "id": 1108831973, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000264, + "geom:area_square_m":2576941.529705, + "geom:bbox":"-122.40210512,37.722431603,-122.379109648,37.745100998", + "geom:latitude":37.733111, + "geom:longitude":-122.389884, + "iso:country":"US", + "lbl:latitude":37.734317, + "lbl:longitude":-122.385986, + "lbl:max_zoom":18.0, + "mps:latitude":37.734291, + "mps:longitude":-122.385873, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":15.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:bul_x_preferred":[ + "\u0425\u044a\u043d\u0442\u044a\u0440\u0441 \u041f\u043e\u0439\u043d\u0442" + ], + "name:eng_x_preferred":[ + "Bayview-Hunters Point" + ], + "name:eng_x_variant":[ + "Bayview", + "Bayview District" + ], + "name:epo_x_preferred":[ + "Golfvido-\u0108asista Punkto" + ], + "name:fra_x_preferred":[ + "Bayview" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30f3\u30bf\u30fc\u30ba\u30fb\u30dd\u30a4\u30f3\u30c8" + ], + "name:zho_x_preferred":[ + "\u7063\u666f\u7375\u4eba\u89d2" + ], + "reversegeo:latitude":37.734291, + "reversegeo:longitude":-122.385873, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865995, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2892361" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f1af05d62bc9a387a1ba2b0bcf73766c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831973, + "neighbourhood_id":85865995, + "region_id":85688637 + } + ], + "wof:id":1108831973, + "wof:lastmodified":1566624117, + "wof:name":"Bayview-Hunters Point", + "wof:parent_id":85865995, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85804963 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40210511999993, + 37.72243160300008, + -122.37910964799994, + 37.74510099800005 +], + "geometry": {"coordinates":[[[-122.37955189299993,37.73110941400006],[-122.37964817699992,37.73096006500003],[-122.37977895799992,37.73079941500004],[-122.37990119199992,37.73071900400004],[-122.37999510499992,37.73065722400008],[-122.38031149599993,37.73052928900006],[-122.3804741749999,37.73051689200008],[-122.38064047799992,37.73050421800008],[-122.38092055499993,37.73053090500008],[-122.38143938799993,37.73058171700006],[-122.38178200199991,37.73061680500007],[-122.38209002899993,37.73063512100003],[-122.38227021699993,37.73061959200004],[-122.38262836299992,37.73051211000006],[-122.38288787199991,37.73034197000004],[-122.3834311839999,37.72973755200007],[-122.3839937489999,37.72911170200007],[-122.38455630499993,37.72848584800005],[-122.3851188509999,37.72785999300004],[-122.38568220299993,37.72723322700006],[-122.38624189299992,37.72660616400009],[-122.3868001059999,37.72598566500005],[-122.38736826099989,37.72535410300009],[-122.38793049499992,37.72472910900007],[-122.38849620799994,37.72410023400005],[-122.38961954099995,37.72285144100005],[-122.39149191399991,37.72391410400007],[-122.39335876099994,37.72497357100008],[-122.39424349299992,37.72547564900009],[-122.39492615199993,37.72397256300007],[-122.39526464599993,37.72322233400007],[-122.39562275999992,37.72243160300008],[-122.39581586599991,37.72243328300004],[-122.39662620099995,37.72262621400006],[-122.39766813499995,37.72287427600008],[-122.39834811499992,37.72303615800007],[-122.39921440699993,37.72324238900006],[-122.40007300199994,37.72344678000007],[-122.40078474699993,37.72361620800007],[-122.40118291699991,37.72458825300004],[-122.40130284499992,37.72497427100006],[-122.40138367399993,37.72523443700004],[-122.40147123999992,37.72551628900004],[-122.4016885399999,37.72629529200009],[-122.40174797999993,37.72650838000004],[-122.40187511799991,37.72696475900005],[-122.40199062999994,37.72737906500004],[-122.40210511999993,37.72778970300004],[-122.40195514399994,37.72795745600007],[-122.40170249699992,37.72824004600005],[-122.40139458699991,37.72858444500008],[-122.40083401499993,37.72921143700006],[-122.39986697399991,37.73029192800004],[-122.39897045799989,37.73016461300006],[-122.39807430999991,37.73003734300005],[-122.39739019399991,37.72994018000009],[-122.39717687799993,37.72990988300006],[-122.39640930799993,37.72980086100006],[-122.39537693299991,37.72965421900005],[-122.39488573699992,37.72958444500006],[-122.39358151699992,37.72939917100007],[-122.39262453499992,37.72927845300006],[-122.3921466189999,37.73064213800006],[-122.3920729539999,37.73085518200008],[-122.39179715599994,37.73164354500005],[-122.39152135099994,37.73243190700003],[-122.39124449299993,37.73322326100003],[-122.3906937729999,37.73479735800004],[-122.39221365999992,37.73566095900009],[-122.39409283299995,37.73672865100008],[-122.3951193289999,37.73731363100006],[-122.39594482699994,37.73778405300004],[-122.39780954499992,37.73884664700006],[-122.39725361899991,37.73946411700007],[-122.39734729599991,37.73965213500009],[-122.3969525899999,37.74008865100006],[-122.39670893699991,37.74007836800007],[-122.39557435099994,37.74134624600003],[-122.39504606299994,37.74193657900008],[-122.39482947099992,37.74187373600006],[-122.39478767499992,37.74195130300006],[-122.39481480399991,37.74202556300008],[-122.39382903599994,37.74313356900007],[-122.39378101799991,37.74310662900007],[-122.39371947899991,37.74352754100005],[-122.39345652099991,37.74382562400007],[-122.3933068529999,37.74383978300006],[-122.39218233999991,37.74510099800005],[-122.38792635099992,37.74270315300004],[-122.38655454199994,37.74195024000005],[-122.38470553999991,37.74089751600008],[-122.3809425529999,37.73876357600005],[-122.37910964799994,37.73768029300004],[-122.37933558999993,37.73739879000004],[-122.37940635299992,37.73713619800009],[-122.37940991199991,37.73675961200007],[-122.37941451499989,37.73627245500006],[-122.3794145679999,37.73524467400006],[-122.37942086499993,37.73447938300006],[-122.37943074399993,37.73408161600008],[-122.37954650499989,37.73404099000004],[-122.37982696599994,37.73373540300008],[-122.3799245379999,37.73358350900008],[-122.37993172499989,37.73338073200006],[-122.3799231349999,37.73320956500004],[-122.37959606299989,37.73246457100004],[-122.37934572899991,37.73183698400004],[-122.37934710899992,37.73167941000008],[-122.37934829799991,37.73154360200004],[-122.3794751719999,37.73122841700007],[-122.37955189299993,37.73110941400006]]],"type":"Polygon"} +},{ + "id": 1108831975, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000146, + "geom:area_square_m":1425227.120446, + "geom:bbox":"-122.509834497,37.737874695,-122.494181399,37.749227776", + "geom:latitude":37.743162, + "geom:longitude":-122.502174, + "iso:country":"US", + "lbl:latitude":37.740847, + "lbl:longitude":-122.501431, + "lbl:max_zoom":18.0, + "mps:latitude":37.742823, + "mps:longitude":-122.502174, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.742823, + "reversegeo:longitude":-122.502174, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865975, + 102191575, + 1108830803, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"82739092b107a801b9be95134ecd01ca", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830803, + "microhood_id":1108831975, + "neighbourhood_id":85865975, + "region_id":85688637 + } + ], + "wof:id":1108831975, + "wof:lastmodified":1566624117, + "wof:name":"Outer Parkside", + "wof:parent_id":85865975, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865977 + ], + "wof:tags":[] +}, + "bbox": [ + -122.50983449699993, + 37.73787469500007, + -122.4941813989999, + 37.74922777595294 +], + "geometry": {"coordinates":[[[-122.50514509445257,37.74922777595294],[-122.50500091038853,37.74737827925013],[-122.4948367479999,37.7478171210001],[-122.4941813989999,37.73849645300004],[-122.5064356069999,37.73795985200007],[-122.50704669699991,37.73795092500006],[-122.50876360699993,37.73787469500007],[-122.5088979439999,37.73912685100004],[-122.50872437599992,37.74025457300007],[-122.50924675199991,37.74134487800006],[-122.50905383299994,37.74245669800007],[-122.50926853699991,37.74323553000005],[-122.50968252099995,37.74443947000009],[-122.50933587999992,37.74593838600003],[-122.50983449699993,37.74780779000008],[-122.50974541359474,37.74890608011592],[-122.50514509445257,37.74922777595294]]],"type":"Polygon"} +},{ + "id": 1108831979, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":147486.905672, + "geom:bbox":"-122.406684546,37.795531832,-122.400485536,37.79938214", + "geom:latitude":37.797424, + "geom:longitude":-122.403221, + "iso:country":"US", + "lbl:latitude":37.797022, + "lbl:longitude":-122.402881, + "lbl:max_zoom":18.0, + "mps:latitude":37.797404, + "mps:longitude":-122.403278, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Jackson Square" + ], + "name:urd_x_preferred":[ + "\u062c\u06cc\u06a9\u0633\u0646 \u0627\u0633\u06a9\u0648\u0627\u0626\u0631\u060c \u0633\u0646 \u0641\u0631\u0627\u0646\u06a9\u0633\u06a9\u0648" + ], + "name:urd_x_variant":[ + "\u062c\u06cc\u06a9\u0633\u0646 \u0627\u0633\u06a9\u0648\u0627\u0626\u0631" + ], + "reversegeo:latitude":37.797404, + "reversegeo:longitude":-122.403278, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85837317, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q14682502" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"efedadc7a995d5520a7ab2aad0377926", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108831979, + "neighbourhood_id":85837317, + "region_id":85688637 + } + ], + "wof:id":1108831979, + "wof:lastmodified":1566624117, + "wof:name":"Jackson Square", + "wof:parent_id":85837317, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887427 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40668454575828, + 37.79553183200005, + -122.4004855359999, + 37.79938214000003 +], + "geometry": {"coordinates":[[[-122.40668454575828,37.79786259326819],[-122.40667846668107,37.79787508251107],[-122.40546048228286,37.79803820507034],[-122.40564526799994,37.79896930800004],[-122.40405312999991,37.79917221700003],[-122.4024206659999,37.79938214000003],[-122.40222863899993,37.79842970100009],[-122.40105129299991,37.79858005300008],[-122.40086317599992,37.79765413900009],[-122.40068133699992,37.79677684200004],[-122.40048553599991,37.79587500300005],[-122.4016760259999,37.79571937900005],[-122.40331694499991,37.79553183200005],[-122.40441216099993,37.79630209700008],[-122.40514297699991,37.79621095400006],[-122.40528839699994,37.79690905600006],[-122.40551293599992,37.79706459000005],[-122.4066679309999,37.79786461200007],[-122.40668454575828,37.79786259326819]]],"type":"Polygon"} +},{ + "id": 1108831991, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000142, + "geom:area_square_m":1392717.005579, + "geom:bbox":"-122.495465688,37.7537931046,-122.476423601,37.765447986", + "geom:latitude":37.760115, + "geom:longitude":-122.483511, + "iso:country":"US", + "lbl:latitude":37.758326, + "lbl:longitude":-122.485106, + "lbl:max_zoom":18.0, + "mps:latitude":37.759609, + "mps:longitude":-122.482378, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.759609, + "reversegeo:longitude":-122.482378, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865975, + 102191575, + 1108830803, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d3067d176adcc0a92be3662f13a0ed02", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830803, + "microhood_id":1108831991, + "neighbourhood_id":85865975, + "region_id":85688637 + } + ], + "wof:id":1108831991, + "wof:lastmodified":1566624118, + "wof:name":"Central Sunset", + "wof:parent_id":85865975, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85851557 + ], + "wof:tags":[] +}, + "bbox": [ + -122.49546568843195, + 37.75379310461891, + -122.47642360096837, + 37.76544798600008 +], + "geometry": {"coordinates":[[[-122.47642360096837,37.75425598040927],[-122.48716466428958,37.75379310461891],[-122.48761882796337,37.75937501918472],[-122.48972449590563,37.7593097360684],[-122.49001350915262,37.76303078174766],[-122.4953396104183,37.76276966184225],[-122.49546568843195,37.76463846901854],[-122.48368543599992,37.76516017700004],[-122.47730839499991,37.76544798600008],[-122.47701088699989,37.76169937400005],[-122.47681389199994,37.75983393500007],[-122.47642360096837,37.75425598040927]]],"type":"Polygon"} +},{ + "id": 1108831999, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000061, + "geom:area_square_m":596869.367777, + "geom:bbox":"-122.483962651,37.7726171112,-122.477766947,37.784173986", + "geom:latitude":37.778397, + "geom:longitude":-122.480864, + "iso:country":"US", + "lbl:latitude":37.777569, + "lbl:longitude":-122.479776, + "lbl:max_zoom":18.0, + "mps:latitude":37.778396, + "mps:longitude":-122.480864, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.778396, + "reversegeo:longitude":-122.480864, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865923, + 102191575, + 1108830805, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e428d324d6104b942ed21ecc4fea89d4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830805, + "microhood_id":1108831999, + "neighbourhood_id":85865923, + "region_id":85688637 + } + ], + "wof:id":1108831999, + "wof:lastmodified":1566624118, + "wof:name":"Central Richmond", + "wof:parent_id":85865923, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85844431 + ], + "wof:tags":[] +}, + "bbox": [ + -122.48396265117957, + 37.77261711115047, + -122.4777669469999, + 37.78417398600004 +], + "geometry": {"coordinates":[[[-122.48314587509587,37.77261711115047],[-122.48396265117957,37.78392994037676],[-122.47857883799992,37.78417398600004],[-122.47776694699991,37.77286365500004],[-122.48314587509587,37.77261711115047]]],"type":"Polygon"} +},{ + "id": 1108832003, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":20808.919844, + "geom:bbox":"-122.457775995,37.764810068,-122.455443459,37.7660364104", + "geom:latitude":37.765424, + "geom:longitude":-122.456633, + "iso:country":"US", + "lbl:latitude":37.765514, + "lbl:longitude":-122.456046, + "lbl:max_zoom":18.0, + "mps:latitude":37.765429, + "mps:longitude":-122.456634, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.765429, + "reversegeo:longitude":-122.456634, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865957, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e484b9c009dc5f76b8fdf338a6014bcf", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832003, + "neighbourhood_id":85865957, + "region_id":85688637 + } + ], + "wof:id":1108832003, + "wof:lastmodified":1566624119, + "wof:name":"Park View Commons", + "wof:parent_id":85865957, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85840617 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4577759954168, + 37.76481006800009, + -122.45544345908708, + 37.76603641039182 +], + "geometry": {"coordinates":[[[-122.4555949916503,37.76603641039182],[-122.45544345908708,37.76510359580028],[-122.45771818799994,37.76481006800009],[-122.45775613299992,37.76535415000006],[-122.4577759954168,37.76575360319814],[-122.45725885743434,37.7658195801826],[-122.45691342299995,37.76587361400004],[-122.4555949916503,37.76603641039182]]],"type":"Polygon"} +},{ + "id": 1108832009, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":178760.355008, + "geom:bbox":"-122.443960753,37.741484995,-122.435315517,37.7486645", + "geom:latitude":37.746096, + "geom:longitude":-122.439183, + "iso:country":"US", + "lbl:latitude":37.742244, + "lbl:longitude":-122.437673, + "lbl:max_zoom":18.0, + "mps:latitude":37.745925, + "mps:longitude":-122.439118, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.745925, + "reversegeo:longitude":-122.439118, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814471, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"232a57f6c51c80802608a16551ad76b0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832009, + "neighbourhood_id":85814471, + "region_id":85688637 + } + ], + "wof:id":1108832009, + "wof:lastmodified":1566624119, + "wof:name":"Vista del Monte", + "wof:parent_id":85814471, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85854011 + ], + "wof:tags":[] +}, + "bbox": [ + -122.44396075299994, + 37.74148499500006, + -122.43531551699994, + 37.74866450000007 +], + "geometry": {"coordinates":[[[-122.43562104599994,37.74153426300006],[-122.4355887827228,37.74162098971103],[-122.4358003817072,37.74211072873602],[-122.436094555905,37.74252292323743],[-122.43646614436538,37.74287798002714],[-122.43718867748282,37.74339627826007],[-122.43752930023817,37.74360441274957],[-122.43784927919017,37.74361257487448],[-122.43960400247539,37.74466548144152],[-122.43990204738633,37.74489809831411],[-122.44011880732157,37.74519192910814],[-122.44020654348583,37.74538781565609],[-122.44024783109252,37.74555921596025],[-122.4402684748959,37.74582447755321],[-122.4401884801579,37.74648660715021],[-122.44023299335888,37.74674829464116],[-122.44046523614662,37.74700947109746],[-122.44074650796735,37.7471339376781],[-122.44104068216515,37.74717678678038],[-122.44135033921548,37.74712577594153],[-122.44204964805415,37.74689724695184],[-122.44265347930228,37.74665647457428],[-122.44320054009118,37.74652180493678],[-122.44339149527222,37.74651364313269],[-122.4436392209125,37.74655445214412],[-122.44376308373265,37.74658709933708],[-122.4438766246511,37.74666055546857],[-122.44396075299994,37.74676521700007],[-122.44258420699992,37.74807934400008],[-122.44251900899991,37.74818321500004],[-122.44204662499993,37.74841158200007],[-122.4419167019999,37.74847439000007],[-122.44163401399993,37.74854977100006],[-122.44140809499993,37.74861001200009],[-122.4409315,37.74862936600005],[-122.44041229699991,37.74864196500005],[-122.43824612599991,37.74866450000007],[-122.4378610039999,37.74463429400004],[-122.4356803419999,37.74476073600005],[-122.43560321199993,37.74400035000008],[-122.43555900699994,37.74316144500006],[-122.43553609299994,37.74269722200006],[-122.4355089369999,37.74259248700008],[-122.43546247499989,37.74227259400004],[-122.43538708499995,37.74192300500005],[-122.43531551699994,37.74171462500004],[-122.43533105499989,37.74161619500006],[-122.43546046299991,37.74148499500006],[-122.43562104599994,37.74153426300006]]],"type":"Polygon"} +},{ + "id": 1108832011, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":215611.876842, + "geom:bbox":"-122.44018848,37.7340200543,-122.433949902,37.74015348", + "geom:latitude":37.736969, + "geom:longitude":-122.437171, + "iso:country":"US", + "lbl:latitude":37.736377, + "lbl:longitude":-122.437643, + "lbl:max_zoom":18.0, + "mps:latitude":37.736377, + "mps:longitude":-122.437643, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":37.736377, + "reversegeo:longitude":-122.437643, + "src:geom":"mz", + "wof:belongsto":[ + 85865961, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3444a6b8e0e91520fc1da1decdcf821a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832011, + "neighbourhood_id":85865961, + "region_id":85688637 + } + ], + "wof:id":1108832011, + "wof:lastmodified":1566624120, + "wof:name":"Glenridge", + "wof:parent_id":85865961, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420552251 + ], + "wof:tags":[] +}, + "bbox": [ + -122.44018848015799, + 37.73402005425737, + -122.43394990199994, + 37.74015348000006 +], + "geometry": {"coordinates":[[[-122.43394990199994,37.73813599400006],[-122.43445208330063,37.7386564690072],[-122.43457078516992,37.7387574819916],[-122.43473206488359,37.73741369191981],[-122.43469706718575,37.73725604752235],[-122.43493108405038,37.73721434057464],[-122.4351220392314,37.73711026441915],[-122.43520977539568,37.73703679880956],[-122.43529106037138,37.73693476311971],[-122.43539169891272,37.73684344105804],[-122.43550282063552,37.73678821411414],[-122.43538282852857,37.73649843141453],[-122.43536734567603,37.73636272292934],[-122.43542153565984,37.73622395309325],[-122.4358376373212,37.73588978201619],[-122.43507736475071,37.73557703733652],[-122.43538008677336,37.73533903417876],[-122.4355516883888,37.73479835856715],[-122.43582263830784,37.7348534594471],[-122.43640195503954,37.73490958067158],[-122.43667290495856,37.73404122750811],[-122.43677580141593,37.73402005425737],[-122.43861051943928,37.73438433536581],[-122.43897178599798,37.73449861926577],[-122.43918854593322,37.73461290298935],[-122.4395704562953,37.73476800204632],[-122.43993438599995,37.73485680900006],[-122.43975237981208,37.73543622527131],[-122.43973947743497,37.73559336335576],[-122.43971883363162,37.73635456000502],[-122.43974463838582,37.73724431345992],[-122.43976012123835,37.73737083716535],[-122.43980140884506,37.73748919785534],[-122.43988398405847,37.73769122687177],[-122.43992785214058,37.73774632559875],[-122.43998978355069,37.73781468877707],[-122.44012396827249,37.73794121150772],[-122.44018848015799,37.73815548338094],[-122.44007751971495,37.73844934094146],[-122.43984140621403,37.73864983683674],[-122.4396272267542,37.73870085351732],[-122.43954904899994,37.73868842100006],[-122.43946503699993,37.73864326300009],[-122.43879776199992,37.73850955300009],[-122.43790249599994,37.73833015100007],[-122.43764726599994,37.73827900400005],[-122.43747008199995,37.73826575700008],[-122.43739820399992,37.73828796800007],[-122.4373091249999,37.73827451100004],[-122.4369252489999,37.73841103300003],[-122.43666957499994,37.73869363700004],[-122.43668035299993,37.73875232600005],[-122.43583957599992,37.74015348000006],[-122.43553503599992,37.74005096500008],[-122.43525337799991,37.74004951900008],[-122.43493973699992,37.74008060100005],[-122.43432911399992,37.74011573500007],[-122.43431099499992,37.73944659500006],[-122.43420970099993,37.73921161300007],[-122.4341579799999,37.73909163200005],[-122.43404041299993,37.73877872000008],[-122.43394990199994,37.73813599400006]]],"type":"Polygon"} +},{ + "id": 1108832015, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":673547.202779, + "geom:bbox":"-122.389619541,37.719667249,-122.37510939,37.731109414", + "geom:latitude":37.725804, + "geom:longitude":-122.382786, + "iso:country":"US", + "lbl:latitude":37.720532, + "lbl:longitude":-122.374312, + "lbl:max_zoom":18.0, + "mps:latitude":37.726118, + "mps:longitude":-122.382294, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.726118, + "reversegeo:longitude":-122.382294, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869357, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1a57ed695d437dbdd4edc72f130ba14a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832015, + "neighbourhood_id":85869357, + "region_id":85688637 + } + ], + "wof:id":1108832015, + "wof:lastmodified":1566624120, + "wof:name":"South Basin", + "wof:parent_id":85869357, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887461 + ], + "wof:tags":[] +}, + "bbox": [ + -122.38961954099995, + 37.71966724900005, + -122.37510938987994, + 37.73110941400006 +], + "geometry": {"coordinates":[[[-122.37955189299993,37.73110941400006],[-122.37935991865724,37.73102678437726],[-122.37863421862211,37.73041556179574],[-122.37830435496973,37.73023666642722],[-122.37790851858692,37.73010249461723],[-122.37748440817678,37.73002795461774],[-122.37706972244241,37.73003540862106],[-122.37666446138381,37.73012485660244],[-122.37627804967681,37.7301472185809],[-122.37574084315729,37.73005777062654],[-122.37510938987994,37.72973724790281],[-122.37668331073537,37.72853713887143],[-122.37768232636819,37.72863404280695],[-122.37828550561818,37.72896947852763],[-122.37854939654004,37.72894711619352],[-122.37958611087596,37.72773954012375],[-122.37819125886035,37.72756809254228],[-122.3777671484502,37.72749354999175],[-122.37783312118069,37.72655430742655],[-122.380146879085,37.72396387433956],[-122.38207245699994,37.72221307600006],[-122.38237422499992,37.72230887600006],[-122.38254910799992,37.72238677300004],[-122.38356034099991,37.72300260900005],[-122.38380222399991,37.72319498100006],[-122.3839560109999,37.72345515100005],[-122.38433692899991,37.72349849600005],[-122.38489274799991,37.72391469700005],[-122.38504120499994,37.72410941300006],[-122.38519661599992,37.72410108900004],[-122.3856092389999,37.72414393000008],[-122.38620886699994,37.72446945400009],[-122.3864458299999,37.72447218400004],[-122.38669294899989,37.72439818000004],[-122.38680468299992,37.72430402600008],[-122.38692208399993,37.72416067900008],[-122.3859635099999,37.72362678700006],[-122.3854597539999,37.72336345000008],[-122.38515192999989,37.72322553700008],[-122.38471472899994,37.72303886300006],[-122.38423908199991,37.72268492000006],[-122.38368416299994,37.72234871300009],[-122.38295219599991,37.72198546100009],[-122.38280151899994,37.72183919200006],[-122.38272614399995,37.72173052000005],[-122.38278216499992,37.72141647600006],[-122.38287718599992,37.72120859500006],[-122.3830398639999,37.72100959000005],[-122.38333258199992,37.72068832800005],[-122.38340066799992,37.72050937600005],[-122.38335647999992,37.72033496600005],[-122.38345282599994,37.72030305500004],[-122.38399947399989,37.71969539900005],[-122.38408586999992,37.71966724900005],[-122.38421660499989,37.71980830200005],[-122.38774624699994,37.72181325800005],[-122.38961954099995,37.72285144100005],[-122.38849620799994,37.72410023400005],[-122.38455630499993,37.72848584800005],[-122.38288787199991,37.73034197000004],[-122.38262836299992,37.73051211000006],[-122.38227021699993,37.73061959200004],[-122.38209002899993,37.73063512100003],[-122.38186417799994,37.73062169100007],[-122.38164060999991,37.73060232500006],[-122.38143938799993,37.73058171700006],[-122.38064047799992,37.73050421800008],[-122.38031149599993,37.73052928900006],[-122.37999510499992,37.73065722400008],[-122.37990119199992,37.73071900400004],[-122.37977895799992,37.73079941500004],[-122.37964817699992,37.73096006500003],[-122.37955189299993,37.73110941400006]]],"type":"Polygon"} +},{ + "id": 1108832017, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000036, + "geom:area_square_m":350691.938169, + "geom:bbox":"-122.425782133,37.7478303699,-122.420964093,37.758498508", + "geom:latitude":37.753928, + "geom:longitude":-122.423502, + "iso:country":"US", + "lbl:latitude":37.753807, + "lbl:longitude":-122.420277, + "lbl:max_zoom":18.0, + "mps:latitude":37.753965, + "mps:longitude":-122.423458, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.753965, + "reversegeo:longitude":-122.423458, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869187, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "parent_id" + ], + "wof:country":"US", + "wof:geomhash":"f2ada09ed8403afe296d1f7040b875b2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832017, + "neighbourhood_id":85869187, + "region_id":85688637 + } + ], + "wof:id":1108832017, + "wof:lastmodified":1566624120, + "wof:name":"Baja Noe", + "wof:parent_id":85869187, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887409 + ], + "wof:tags":[] +}, + "bbox": [ + -122.42578213269523, + 37.74783036992087, + -122.4209640929999, + 37.75849850800006 +], + "geometry": {"coordinates":[[[-122.4224873629999,37.74801344900004],[-122.42287797599994,37.74794804300006],[-122.42476720659238,37.74783036992087],[-122.42578213269523,37.75822585788632],[-122.42127172799991,37.75849850800006],[-122.4211175399999,37.75690200800005],[-122.4209640929999,37.75529478100009],[-122.42143524699992,37.75526822100005],[-122.4215951519999,37.75204680900003],[-122.42287883299991,37.75197162500007],[-122.42257106199992,37.74877289700004],[-122.4224873629999,37.74801344900004]]],"type":"Polygon"} +},{ + "id": 1108832021, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":191711.505345, + "geom:bbox":"-122.439480381,37.780588486,-122.43233072,37.784355056", + "geom:latitude":37.782463, + "geom:longitude":-122.435895, + "iso:country":"US", + "lbl:latitude":37.782315, + "lbl:longitude":-122.433309, + "lbl:max_zoom":18.0, + "mps:latitude":37.782475, + "mps:longitude":-122.435895, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.782475, + "reversegeo:longitude":-122.435895, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85856855, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5c94a4d3a174c0cbdf01b102cbd2b958", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832021, + "neighbourhood_id":85856855, + "region_id":85688637 + } + ], + "wof:id":1108832021, + "wof:lastmodified":1566624114, + "wof:name":"Marcus Garvey Square", + "wof:parent_id":85856855, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85832413 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4394803809999, + 37.78058848600006, + -122.43233071984264, + 37.78435505600004 +], + "geometry": {"coordinates":[[[-122.43233071984264,37.78142968069945],[-122.4389267549999,37.78058848600006],[-122.4391139359999,37.78152035200009],[-122.4394803809999,37.78330848700006],[-122.43784794299989,37.78371763700005],[-122.43456209899995,37.78415186300003],[-122.43291424799992,37.78435505600004],[-122.43270617899992,37.78329259100008],[-122.43233071984264,37.78142968069945]]],"type":"Polygon"} +},{ + "id": 1108832023, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":151407.759944, + "geom:bbox":"-122.430426868,37.777919295,-122.423354025,37.781117126", + "geom:latitude":37.7795, + "geom:longitude":-122.427174, + "iso:country":"US", + "lbl:latitude":37.779579, + "lbl:longitude":-122.428037, + "lbl:max_zoom":18.0, + "mps:latitude":37.779548, + "mps:longitude":-122.428303, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.779548, + "reversegeo:longitude":-122.428303, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85856855, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"26bc6dda92e65014b79369d8aa379b36", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832023, + "neighbourhood_id":85856855, + "region_id":85688637 + } + ], + "wof:id":1108832023, + "wof:lastmodified":1566624114, + "wof:name":"Thomas Paine Square", + "wof:parent_id":85856855, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85852165 + ], + "wof:tags":[] +}, + "bbox": [ + -122.43042686839824, + 37.77791929500006, + -122.42335402499992, + 37.78111712600008 +], + "geometry": {"coordinates":[[[-122.42720275599993,37.78111712600008],[-122.42701675699993,37.78019303000008],[-122.42373098399992,37.78061162100005],[-122.42335402499992,37.77874737100007],[-122.42664149799992,37.77832856300006],[-122.42984919899993,37.77791929500006],[-122.43042686839824,37.780712763857],[-122.42720275599993,37.78111712600008]]],"type":"Polygon"} +},{ + "id": 1108832025, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000013, + "geom:area_square_m":123010.183217, + "geom:bbox":"-122.432003325,37.784953879,-122.426103114,37.788786894", + "geom:latitude":37.787067, + "geom:longitude":-122.428588, + "iso:country":"US", + "lbl:latitude":37.787084, + "lbl:longitude":-122.42926, + "lbl:max_zoom":18.0, + "mps:latitude":37.787159, + "mps:longitude":-122.428588, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:note":"dup", + "mz:tier_metro":1, + "reversegeo:latitude":37.787159, + "reversegeo:longitude":-122.428588, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866845, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0d09e3b211d5dae4428b7aa581421f52", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832025, + "neighbourhood_id":85866845, + "region_id":85688637 + } + ], + "wof:id":1108832025, + "wof:lastmodified":1566624115, + "wof:name":"Little Osaka", + "wof:parent_id":85866845, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85830987 + ], + "wof:tags":[] +}, + "bbox": [ + -122.43200332499993, + 37.78495387900006, + -122.42610311399994, + 37.78878689400005 +], + "geometry": {"coordinates":[[[-122.42798892699994,37.78495387900006],[-122.42814855354747,37.78578426879576],[-122.42978377856512,37.78556482243523],[-122.43016927203925,37.78744078813827],[-122.43181282304992,37.78723154563868],[-122.43200332499993,37.78815907400008],[-122.43035591799992,37.78836831100006],[-122.42871211099992,37.78857706700006],[-122.42705967299992,37.78878689400005],[-122.42686464299993,37.78786244200006],[-122.42666680699995,37.78692466600006],[-122.42663846399989,37.78678243300004],[-122.4265621319999,37.78679229300008],[-122.42649670299994,37.78646824000003],[-122.42622334299995,37.78650296600006],[-122.42619771599993,37.78650622100008],[-122.42612250699995,37.78613372400008],[-122.42610311399994,37.78604058000008],[-122.42637002299995,37.78600715800007],[-122.42636173999995,37.78591262300006],[-122.42625401699991,37.78537908600003],[-122.4262256259999,37.78527419500006],[-122.42789421399993,37.78506425400008],[-122.42798892699994,37.78495387900006]]],"type":"Polygon"} +},{ + "id": 1108832027, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":146216.743162, + "geom:bbox":"-122.421393307,37.7821692974,-122.415883117,37.7863135856", + "geom:latitude":37.784478, + "geom:longitude":-122.418524, + "iso:country":"US", + "lbl:latitude":37.784791, + "lbl:longitude":-122.418032, + "lbl:max_zoom":18.0, + "mps:latitude":37.78464, + "mps:longitude":-122.418301, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:fra_x_preferred":[ + "Little Saigon" + ], + "name:ind_x_preferred":[ + "Little Saigon" + ], + "name:vie_x_preferred":[ + "Little Saigon" + ], + "name:zho_x_preferred":[ + "\u5c0f\u897f\u8ca2" + ], + "reversegeo:latitude":37.78464, + "reversegeo:longitude":-122.418301, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865903, + 102191575, + 1108830801, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dcabf68cb5841ff815e6f3ff4caa49f9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830801, + "microhood_id":1108832027, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":1108832027, + "wof:lastmodified":1566624114, + "wof:name":"Little Saigon", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85882193 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4213933069999, + 37.78216929735218, + -122.4158831170161, + 37.78631358562203 +], + "geometry": {"coordinates":[[[-122.41899295244343,37.78216929735218],[-122.41927408579963,37.78356838993415],[-122.42092111915203,37.78335628929462],[-122.4213933069999,37.78568580200005],[-122.41645144687263,37.78631358562203],[-122.41644912299989,37.78631021800004],[-122.41588311701609,37.78351640563838],[-122.4175289576748,37.78331110021431],[-122.41733887999993,37.78237894200004],[-122.41899295244343,37.78216929735218]]],"type":"Polygon"} +},{ + "id": 1108832029, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":98808.11614, + "geom:bbox":"-122.427988927,37.782056939,-122.424099207,37.7854804325", + "geom:latitude":37.783764, + "geom:longitude":-122.426053, + "iso:country":"US", + "lbl:latitude":37.782778, + "lbl:longitude":-122.425965, + "lbl:max_zoom":18.0, + "mps:latitude":37.783763, + "mps:longitude":-122.426055, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.783763, + "reversegeo:longitude":-122.426055, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882165, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5a758f1c4a452e8f41b785e5382d4cd4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832029, + "neighbourhood_id":85882165, + "region_id":85688637 + } + ], + "wof:id":1108832029, + "wof:lastmodified":1566624114, + "wof:name":"Laguna Heights", + "wof:parent_id":85882165, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829033 + ], + "wof:tags":[] +}, + "bbox": [ + -122.42798892699994, + 37.78205693900009, + -122.42409920687078, + 37.78548043246951 +], + "geometry": {"coordinates":[[[-122.4262256259999,37.78527419500006],[-122.42471866074713,37.78548043246951],[-122.42409920687078,37.78247983772838],[-122.42739639799993,37.78205693900009],[-122.42758432499994,37.78298604600008],[-122.42777887099993,37.78392473400004],[-122.42798892699994,37.78495387900006],[-122.42789421399993,37.78506425400008],[-122.42622878599991,37.78527379800005],[-122.42622922307264,37.78527562183291],[-122.4262256259999,37.78527419500006]]],"type":"Polygon"} +},{ + "id": 1108832033, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":59579.733603, + "geom:bbox":"-122.430989254,37.7816414919,-122.427396398,37.783924734", + "geom:latitude":37.782774, + "geom:longitude":-122.429194, + "iso:country":"US", + "lbl:latitude":37.783377, + "lbl:longitude":-122.428391, + "lbl:max_zoom":18.0, + "mps:latitude":37.782772, + "mps:longitude":-122.429194, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "name:fra_x_preferred":[ + "St-Francis Square" + ], + "name:spa_x_preferred":[ + "St. Francis Square" + ], + "reversegeo:latitude":37.782772, + "reversegeo:longitude":-122.429194, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85856855, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4b85ddce148c382d64ff628a367296f1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832033, + "neighbourhood_id":85856855, + "region_id":85688637 + } + ], + "wof:id":1108832033, + "wof:lastmodified":1566624114, + "wof:name":"St. Francis Square", + "wof:parent_id":85856855, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85846645 + ], + "wof:tags":[] +}, + "bbox": [ + -122.43098925399994, + 37.78164149189941, + -122.42739639799993, + 37.78392473400004 +], + "geometry": {"coordinates":[[[-122.42739639799993,37.78205693900009],[-122.43060513777111,37.78164149189941],[-122.43098925399994,37.78350775300004],[-122.43023749999992,37.78359535700008],[-122.4278367579999,37.78388331000008],[-122.42777887099993,37.78392473400004],[-122.42758432499994,37.78298604600008],[-122.42739639799993,37.78205693900009]]],"type":"Polygon"} +},{ + "id": 1108797023, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000359, + "geom:area_square_m":3439801.545134, + "geom:bbox":"-76.6118862104,39.2607558464,-76.5687639557,39.286621773", + "geom:latitude":39.274254, + "geom:longitude":-76.585785, + "iso:country":"US", + "lbl:latitude":39.277215, + "lbl:longitude":-76.584305, + "lbl:max_zoom":18.0, + "mps:latitude":39.277215, + "mps:longitude":-76.584305, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "reversegeo:latitude":39.277215, + "reversegeo:longitude":-76.584305, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108797011, + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"d9e8fc6288e6b0a185c177cfe240a8bd", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797023, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797023, + "wof:lastmodified":1566624074, + "wof:name":"Northwest Harbor", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.61188621037728, + 39.26075584637316, + -76.56876395566624, + 39.28662177299078 +], + "geometry": {"coordinates":[[[[-76.57160264921907,39.26160493252407],[-76.57192471094484,39.26148148632384],[-76.57235780760257,39.26131107152024],[-76.57284770382194,39.2611461535933],[-76.57339439960298,39.26098673254303],[-76.57381329637026,39.26087953554585],[-76.57410439412382,39.26082456260176],[-76.57452684086373,39.26078333287753],[-76.57508063658997,39.26075584637316],[-76.57574093149435,39.2607585950223],[-76.57650772557687,39.26079157882496],[-76.57716802048125,39.2608080707263],[-76.5777218162075,39.2608080707263],[-76.57826496201594,39.26082181396556],[-76.57879745790657,39.26084930044406],[-76.57935125363282,39.2609015246959],[-76.57992634919469,39.26097848672106],[-76.58054049445522,39.26108018635657],[-76.58119368941441,39.26120662360245],[-76.58179718475711,39.26132756337761],[-76.58235098048337,39.26144300568202],[-76.58287637642879,39.26157493946485],[-76.58337337259337,39.26172336472611],[-76.58379581933328,39.26187178967308],[-76.58411158249581,39.26200650480127],[-76.58411055909657,39.26200751305138],[-76.58410341129174,39.26201517489695],[-76.58409662682779,39.26202252546224],[-76.5840906915988,39.26203009071554],[-76.58408657438237,39.26203647069061],[-76.58408561173898,39.26203801029796],[-76.58408226114274,39.26204505955697],[-76.5840810823362,39.26204730189909],[-76.58407586464259,39.26205600286014],[-76.58407108827664,39.2620635415909],[-76.58406503115629,39.26207312143081],[-76.58405871950926,39.26208105286285],[-76.58405176044432,39.2620885370215],[-76.58404414056831,39.26209667279712],[-76.58403781760164,39.26210475551703],[-76.58402998040431,39.2621143839965],[-76.58402232626199,39.26212184137044],[-76.58400877596462,39.26213414831353],[-76.58400275369149,39.26213975768494],[-76.58399809670678,39.26214432339788],[-76.58398523831147,39.26216055653796],[-76.58397797576288,39.26216920701327],[-76.58396978941786,39.26217869913629],[-76.58396213772484,39.26218870118658],[-76.5839556865256,39.26219750586409],[-76.58394890371646,39.26220674263613],[-76.58394272366846,39.26221455652721],[-76.58393560086408,39.26222348132862],[-76.58392915632422,39.26223174196391],[-76.58392709233405,39.26223456306464],[-76.58392358811162,39.26223935174579],[-76.58391742972978,39.2622482124055],[-76.58391035168626,39.26225780213121],[-76.58390297990688,39.26227065249914],[-76.58389713121922,39.26227906297002],[-76.58389222512662,39.26228520414114],[-76.58389052836209,39.26228724917905],[-76.58388698597739,39.26229103606899],[-76.58388349839942,39.26229476370234],[-76.58387739005134,39.26230180858745],[-76.58386914346917,39.26231089784618],[-76.58386132150321,39.26231969946231],[-76.58385429468383,39.26232845525419],[-76.58384673803857,39.26233666780603],[-76.58384444687971,39.26233890530285],[-76.58383885241999,39.26234565295182],[-76.58383106473435,39.26235591843647],[-76.58382546593857,39.2623632074314],[-76.58381928636013,39.26237152935096],[-76.58381345065997,39.26237831487681],[-76.58380633727427,39.26238977716881],[-76.5838019941788,39.26239633468502],[-76.58379683005089,39.26240419000105],[-76.5837929709691,39.26240942059862],[-76.58378235803968,39.26242269634369],[-76.58377222269374,39.26243277785327],[-76.58376659023013,39.26243750764217],[-76.58376136334617,39.26244163985722],[-76.58375539352362,39.26244541093267],[-76.58374351454422,39.26244814139148],[-76.58373886946514,39.26244830057575],[-76.58373631555382,39.2624483167442],[-76.58373082322949,39.26244831619104],[-76.58372516066839,39.26244849698948],[-76.58371728398883,39.26244923742298],[-76.58370994368097,39.26245434308083],[-76.5837001196756,39.26246369246215],[-76.58369364886556,39.26246990464304],[-76.58368844563529,39.26247612672199],[-76.58368743801306,39.26248157820484],[-76.58368899553973,39.26248470308846],[-76.58369188677788,39.26248782369261],[-76.58369589594379,39.2624913797281],[-76.5837002660932,39.26249482985166],[-76.58370390931438,39.26249993030857],[-76.5837052274467,39.26250574223697],[-76.58370415716061,39.26251120971158],[-76.58369939254628,39.26251969607672],[-76.58369333774185,39.26252827334924],[-76.58368676282639,39.26253642901935],[-76.58367933496481,39.26254440871757],[-76.58367145528182,39.2625535596142],[-76.58366491549869,39.26256105874724],[-76.58365704910335,39.26257031417917],[-76.58364742641216,39.26258030381535],[-76.58364040470919,39.26258896863448],[-76.58363272428176,39.26259832290788],[-76.58362581256168,39.26260621345503],[-76.58361924140864,39.26261431779075],[-76.58361184876257,39.26262221744102],[-76.58360505592339,39.26262840955883],[-76.58359714907745,39.26263724958884],[-76.58359049847547,39.26264526716736],[-76.58358258610782,39.26265327036274],[-76.58357490046151,39.26266114194858],[-76.58356783711687,39.26267137125066],[-76.58356114461132,39.26267961747408],[-76.5835534161525,39.26268767536573],[-76.58354515377906,39.26269450451656],[-76.58353629441289,39.26270196839293],[-76.58352700175119,39.26271178984496],[-76.58351934098087,39.26272075144532],[-76.58351147792159,39.26272943218863],[-76.58350376608435,39.26273820985002],[-76.58349589583916,39.26274752200557],[-76.58348913095458,39.26275684438656],[-76.58348220368018,39.26276599774744],[-76.58347634598555,39.26277415054467],[-76.58346935148799,39.2627846881476],[-76.5834624154936,39.26279493140635],[-76.58345557839054,39.26280431658294],[-76.58344660363196,39.26281524800214],[-76.58344017997102,39.26282368343275],[-76.58343450429764,39.26283142251995],[-76.58342853077792,39.2628389731904],[-76.5834231998287,39.26284523083478],[-76.58341864752541,39.26284991219384],[-76.58341204240061,39.26285491324931],[-76.58340612240264,39.26286045179144],[-76.58340018587855,39.26286702886081],[-76.58339374227745,39.2628757011202],[-76.58339049231138,39.2628811833778],[-76.58338751278032,39.26288757547025],[-76.58338607431199,39.26289733019444],[-76.58338312380651,39.26290233070229],[-76.58337726985967,39.26290984125963],[-76.58337234718987,39.26291701463022],[-76.58336738350324,39.26292387168531],[-76.58336126062682,39.26293278108206],[-76.58335646726312,39.26294003417838],[-76.58335275572503,39.26294538598729],[-76.58334553552923,39.26295528233526],[-76.58333972993286,39.26296284530679],[-76.58333388928368,39.26297065496424],[-76.58332842322196,39.26297821283453],[-76.58332291476341,39.26298588675329],[-76.58331680079529,39.26299426382497],[-76.58331097689749,39.26300217983138],[-76.58330430328392,39.26301094765163],[-76.58329844545756,39.2630185239472],[-76.58329131197171,39.26302667490998],[-76.58328522159114,39.26303359912396],[-76.58327994560767,39.26303956871072],[-76.58327356988558,39.26304871320676],[-76.58326998875076,39.26305415375104],[-76.58326592525607,39.26305984750093],[-76.58326166489722,39.2630655207351],[-76.58325718697118,39.26307134452616],[-76.58325187044855,39.26307691582806],[-76.58324728577082,39.2630817781198],[-76.58324277876829,39.26308683074923],[-76.5832392425794,39.2630911283768],[-76.58323629140084,39.26309742418349],[-76.58323230035877,39.26310222372615],[-76.58322681374565,39.26310795025616],[-76.58322119101894,39.2631145581552],[-76.58321646085987,39.26312150160546],[-76.58321071469084,39.26313038440715],[-76.58320454388203,39.26313659762501],[-76.58319753640252,39.26314440043166],[-76.58319142781264,39.26315146239362],[-76.58318668153709,39.26315740052774],[-76.58318264175929,39.26316260524149],[-76.58317859691762,39.26316827743601],[-76.5831748445613,39.26317327509214],[-76.58317019528087,39.26317887578168],[-76.58316583366064,39.26318482068491],[-76.58315792247053,39.26319576126104],[-76.58315373219922,39.26320251926519],[-76.58314943425191,39.26320985427962],[-76.58314542788526,39.2632172605888],[-76.5831385887947,39.26322716728403],[-76.58313314270342,39.26323250211908],[-76.58312964476485,39.26323580903358],[-76.58312493290728,39.26324002862101],[-76.58312099368354,39.26324685327128],[-76.58311438121854,39.26325486915569],[-76.58310644440245,39.26326878847861],[-76.58309649072947,39.26327986141848],[-76.58308614883151,39.26329252013325],[-76.58307619935567,39.26330583599972],[-76.58306550120983,39.26331720084504],[-76.58305707195686,39.26332795761947],[-76.58304892898218,39.26333850462994],[-76.58303869029625,39.26334917390928],[-76.58303027161104,39.26335753917903],[-76.58301990472219,39.2633647841805],[-76.58300792655858,39.26337174241979],[-76.58299806674952,39.26337768220495],[-76.58298770962028,39.26338326532045],[-76.58297880840881,39.26338776908005],[-76.58295479378027,39.26340292750162],[-76.58290569077204,39.26343553747578],[-76.58285653704219,39.26346691229551],[-76.58280334926751,39.26349540561699],[-76.58275348712839,39.26351757472548],[-76.58270582618269,39.26353251666273],[-76.58264084024189,39.26349221413152],[-76.58253103367403,39.26342408062738],[-76.58239230503447,39.26333610833181],[-76.58223606030755,39.26323728955544],[-76.58204704199737,39.2631176993022],[-76.58188068527633,39.26301290798769],[-76.58174936611445,39.26292963178349],[-76.58171715414827,39.26290888134137],[-76.58170790344553,39.26290367347445],[-76.58170302361684,39.26289745610165],[-76.58169664157576,39.26288975161306],[-76.58162558965667,39.26280150060259],[-76.58157982262902,39.26274622941001],[-76.58156386144746,39.2627271266837],[-76.58150377748746,39.26265178846218],[-76.58145886956271,39.26259764534117],[-76.58131997030029,39.2624283209095],[-76.58119787830394,39.26228147638199],[-76.58117297581897,39.26225152437755],[-76.58103052658299,39.26207530954967],[-76.58089466093455,39.26191003985802],[-76.58078580312818,39.26178065667285],[-76.5806934559544,39.26166757860691],[-76.58054359812148,39.26148448364456],[-76.58055360339186,39.2614678425447],[-76.58055402202785,39.26146327533932],[-76.5805516324277,39.26145470949756],[-76.58054733303983,39.2614471655123],[-76.58053288970358,39.2614283644114],[-76.58052995538975,39.26142511296249],[-76.58051534250185,39.26140892618632],[-76.5804999735838,39.26139675503827],[-76.58048976269271,39.26138859182162],[-76.58048906036613,39.26138195334666],[-76.58048617113869,39.26137421172368],[-76.58045939922179,39.26135953172479],[-76.58044185018231,39.26135354196439],[-76.58041261098928,39.2613481436719],[-76.58040711199142,39.26134752230927],[-76.58040254565233,39.26134926879789],[-76.58039814786341,39.26135366775286],[-76.58038582372083,39.26135272114401],[-76.58036075976092,39.26134725038362],[-76.58030077421421,39.26133522962355],[-76.58024005972543,39.26132812983105],[-76.58019080734023,39.2613207962506],[-76.58014629931289,39.26131316074031],[-76.58011418398912,39.26130682970234],[-76.58007547019542,39.26130063990017],[-76.58003051834842,39.26129595187693],[-76.57999621988029,39.26129199913619],[-76.5799702542098,39.26128971018669],[-76.57994310248979,39.26128440751911],[-76.57992113618027,39.26128004578288],[-76.57990092109272,39.26127522100688],[-76.57987552788029,39.26127214050678],[-76.57984773389181,39.26127081331574],[-76.57981165973463,39.26127048156501],[-76.5797835517227,39.26127033144121],[-76.57976260083036,39.26127157969618],[-76.57974201088381,39.26127468482367],[-76.57972182814613,39.26127926956717],[-76.57971251159424,39.26128211057691],[-76.57970598325674,39.26128664780529],[-76.57969424480162,39.261293047191],[-76.57967643758799,39.26129896816305],[-76.57963835000223,39.26130345817563],[-76.57960292473226,39.26131153195919],[-76.57956513679846,39.26132489739852],[-76.57952910454981,39.26134193344119],[-76.57950767892977,39.26135426661762],[-76.57943636957518,39.2614012863144],[-76.57937244191763,39.26143701874872],[-76.57929884846031,39.26147624122915],[-76.5792430640806,39.26150903473259],[-76.57916964540117,39.26155041329853],[-76.5791168595823,39.26157833081528],[-76.57908318603653,39.2615989142965],[-76.57904714795718,39.26161630417221],[-76.57900531094434,39.26163714120813],[-76.57898790008272,39.26164595496546],[-76.57897740787858,39.26165300640038],[-76.57896335591215,39.26166360941428],[-76.57895647367857,39.26166997299238],[-76.5789424860843,39.26168163824132],[-76.57892877174831,39.2616970462632],[-76.57890962223762,39.26172216309943],[-76.57884897294959,39.26179991076587],[-76.57879289019256,39.26187157477152],[-76.57873142261653,39.26194736747315],[-76.57867315896537,39.26201707343073],[-76.57861079935215,39.26209006237553],[-76.57855392757074,39.26215968589192],[-76.57852949995778,39.26219200428496],[-76.57851926225919,39.26220495662856],[-76.57850173810569,39.26222812906455],[-76.57849072740235,39.26224090838559],[-76.57847328529955,39.26226099327572],[-76.57846414186871,39.26227152737457],[-76.57846400762402,39.26227169443565],[-76.57845796205655,39.26227919865838],[-76.57845016570245,39.26228903769428],[-76.57844236029898,39.26229903433175],[-76.57843396382501,39.26231002689873],[-76.5784266999169,39.26231995972292],[-76.57840601376759,39.26234504843795],[-76.57839698644879,39.26235748897533],[-76.57838102963549,39.26238071656204],[-76.57837125571547,39.26239224554089],[-76.578361547035,39.26240351983549],[-76.5783542485497,39.26241341830166],[-76.57834013138783,39.26243066237468],[-76.57832992111636,39.26244152231335],[-76.57832152640722,39.26245026205526],[-76.57831206452707,39.26245977983176],[-76.57830174477597,39.26247053758792],[-76.57829186668849,39.26248048263415],[-76.57828215234044,39.26249095161428],[-76.57827506332308,39.26250128049431],[-76.57826689331637,39.26251334757873],[-76.57825873981618,39.26252439144835],[-76.57825059635441,39.26253491560981],[-76.57824083903543,39.26254715354215],[-76.57823220754193,39.2625584920461],[-76.57822294581675,39.26257117583598],[-76.57821489480753,39.2625815444939],[-76.5782065930142,39.26259199692269],[-76.57819917379999,39.26260134097227],[-76.57819136790864,39.2626104332187],[-76.57818283806776,39.26262065242823],[-76.57817499762452,39.26263009855155],[-76.57816621260842,39.26264036008018],[-76.57815840667108,39.26264945862955],[-76.57814946413581,39.26266009791388],[-76.57814162208078,39.26266864416103],[-76.57813226635231,39.26267881355988],[-76.57812340388935,39.2626890414785],[-76.57811568637712,39.26269807728875],[-76.57810647796379,39.26270841385696],[-76.57809780953362,39.26271874695989],[-76.57808932337267,39.26272980043134],[-76.57808132890645,39.2627409817764],[-76.57807328063268,39.26275263763274],[-76.57806646925836,39.26276439701732],[-76.57806148134888,39.26277348947148],[-76.57805498731301,39.26278449425049],[-76.57804829485026,39.26279632612271],[-76.57804434325472,39.26280944062955],[-76.57804107979049,39.2628235547599],[-76.57803331794854,39.26283887236706],[-76.57802598465298,39.26285266110732],[-76.57801767175742,39.26286633463155],[-76.57801070475774,39.26287795563574],[-76.57800264602299,39.26289019694901],[-76.57799419781463,39.26290402041364],[-76.57798698101294,39.26291653318049],[-76.57798125904921,39.26292864236995],[-76.57797710978123,39.26294206422665],[-76.57797195608245,39.26295292158763],[-76.57796548903981,39.26296366883837],[-76.57795803013839,39.26297616722167],[-76.57795261115126,39.26298584452194],[-76.57794196816558,39.26300631317269],[-76.57793597235923,39.26301731523137],[-76.57793020028348,39.26302771638034],[-76.5779244596403,39.26303731325546],[-76.57791933888629,39.26304691506058],[-76.57791271132372,39.26306029557917],[-76.57790762635193,39.26307128379555],[-76.57790271552187,39.26308221588916],[-76.57789912347768,39.26309370669568],[-76.57789572908689,39.26310430555069],[-76.57788993817306,39.26311670273333],[-76.57788303519543,39.26312768261199],[-76.57787599982747,39.26314007532053],[-76.57787055840608,39.26315001375896],[-76.57786521086523,39.26316072719569],[-76.57785911068072,39.26317329891477],[-76.57785468532347,39.26318345538787],[-76.57785117628517,39.26319092455859],[-76.57784738618673,39.26319869717862],[-76.57784310066737,39.26320599331241],[-76.57783820012916,39.26321460776201],[-76.57783364340308,39.26322308292747],[-76.57782841336068,39.26323254741851],[-76.57782317868204,39.26324201189261],[-76.57781796696597,39.26325131701299],[-76.57781248187513,39.26326080220477],[-76.57780747340765,39.26326924872195],[-76.57780176746044,39.26327846108702],[-76.57779695087814,39.26328659572685],[-76.5777915215172,39.26329508757006],[-76.57778628394358,39.26330464751348],[-76.57778109230846,39.26331408151417],[-76.57777556395416,39.26333570530771],[-76.57777293602489,39.26334348210366],[-76.57776889900501,39.26335166007977],[-76.57776004444246,39.26336891129144],[-76.57775546998194,39.26337802683633],[-76.57775065553764,39.26338696857054],[-76.57774666886048,39.26339466931942],[-76.57774198631064,39.26340403398797],[-76.57773752262946,39.26341283646294],[-76.57773325934318,39.26342126043471],[-76.57772883658799,39.26342961087061],[-76.5777249711209,39.26343641398815],[-76.57772005875442,39.26344467438772],[-76.57771645582433,39.26345136585292],[-76.57771223342928,39.26345934318961],[-76.5777086295534,39.26346599862043],[-76.57769746436374,39.26348696259309],[-76.57767546822848,39.26352315203906],[-76.57766544953355,39.26354149709328],[-76.57765855426116,39.26355584225715],[-76.57765403180669,39.26356672889587],[-76.57764760701832,39.26358048304534],[-76.57763550834629,39.26360408921171],[-76.57762804585545,39.26361697488979],[-76.57762073489471,39.26362951521719],[-76.57761503095433,39.26364188567446],[-76.57760943723657,39.2636548159052],[-76.57760315682204,39.26366747793888],[-76.57759586400465,39.26368164061413],[-76.57759194314505,39.26369365717648],[-76.57759127622079,39.26370291557971],[-76.57759023514811,39.26371176368815],[-76.57758937615678,39.2637231156875],[-76.57758676361162,39.26373492077114],[-76.57758175465989,39.26374694242662],[-76.57757615511727,39.26375773420982],[-76.57757185578939,39.26376578242488],[-76.57756689989317,39.26377414624917],[-76.57756365598757,39.26378027962338],[-76.57755906807252,39.26379047873596],[-76.57755377221149,39.26380028076493],[-76.57754725118569,39.26381111877397],[-76.57754119408115,39.2638205226264],[-76.57753517404541,39.26383090124351],[-76.57753042393171,39.26383973240459],[-76.57752522880527,39.26384623708079],[-76.57751777142384,39.26385378031099],[-76.57751031673904,39.26386125959583],[-76.57750556853352,39.26386918549034],[-76.57750440718777,39.26387799172954],[-76.57750364256592,39.26388828206118],[-76.57750254900446,39.26389991065216],[-76.57750136082787,39.26391030394896],[-76.57750033556972,39.26392116443],[-76.57749956324371,39.26393158084135],[-76.5774986405189,39.26394137337969],[-76.5774979009699,39.26394920380233],[-76.57749702283303,39.2639585136891],[-76.57749886583602,39.26396814413121],[-76.57749890646768,39.26397786266933],[-76.57750019002721,39.26398901159588],[-76.57750212031868,39.26399994035938],[-76.57750480760951,39.2640112015276],[-76.57750887833953,39.26402325854778],[-76.57751367460567,39.26403470475466],[-76.57751703295973,39.26404594131373],[-76.57751998838903,39.26405615134843],[-76.57752214628923,39.26406505149874],[-76.57752567031397,39.26407765602008],[-76.57752840334777,39.26408843634168],[-76.57752990466109,39.26409901766594],[-76.57753017908669,39.26410936668201],[-76.57753141034162,39.26412151707418],[-76.57753321786075,39.26413282732087],[-76.57753421065489,39.26414221239655],[-76.5775361301519,39.26415320417392],[-76.57753833887307,39.26416602555175],[-76.57754001240671,39.26417745872143],[-76.57754049996703,39.26418684738399],[-76.57754189030405,39.26419952619841],[-76.57754371657298,39.26421196967888],[-76.57754473180006,39.26422420486641],[-76.57754537209877,39.26423596580167],[-76.57754622608984,39.26424725640369],[-76.57754786894262,39.26425897770853],[-76.57755043789545,39.26427065550493],[-76.5775520519871,39.26428312074098],[-76.57755377283603,39.26429497654069],[-76.57755590357938,39.26430902448379],[-76.57755766092632,39.26432175686237],[-76.57755807651556,39.26433545003798],[-76.57755695884043,39.26434820990637],[-76.57755589442192,39.26436039347449],[-76.57755699518469,39.26437480612643],[-76.57756052887358,39.26438637479656],[-76.57756107572214,39.26439826240333],[-76.57756042466968,39.26441088703335],[-76.57756063810805,39.26442369582752],[-76.57756124946657,39.26443623131875],[-76.57756351960174,39.26445061214607],[-76.5775678064313,39.2644643309569],[-76.57757167256861,39.26447591973837],[-76.57757672733889,39.26448463033648],[-76.57757873411441,39.2644951729425],[-76.57758007268939,39.2645052591576],[-76.57758290149832,39.26451416442119],[-76.57758598360006,39.26452217613274],[-76.57758914598178,39.26453013318607],[-76.57759301419907,39.26453728568973],[-76.57759973467354,39.26454200737027],[-76.57760504693196,39.2645444486443],[-76.57762523827178,39.2645592344197],[-76.57768084615869,39.26469779063378],[-76.57774570226691,39.26485407566274],[-76.57780619251965,39.26500314240878],[-76.57786531895918,39.26514815255837],[-76.57791818247593,39.26527738842788],[-76.57796043298363,39.26538169339902],[-76.57800321664888,39.26548482926863],[-76.57805830198433,39.2656218682917],[-76.57806022339551,39.26562359386079],[-76.57823639951165,39.2657308182126],[-76.57824681165984,39.2657371555787],[-76.57829910142235,39.26576813701558],[-76.57847889209788,39.26587932654607],[-76.57814234165292,39.26620803153509],[-76.57818759863611,39.26623635751037],[-76.57852204040124,39.26590700528126],[-76.57881060693042,39.26608445330065],[-76.57865688223519,39.26630029513822],[-76.57865205315655,39.26629997785641],[-76.57862323575006,39.26628860134898],[-76.57861320004133,39.26630315237439],[-76.57864285255108,39.26631420310028],[-76.57864475388057,39.26631697437882],[-76.57858179164157,39.26640396620746],[-76.5787128835007,39.26645826013683],[-76.57872648084253,39.26644125107379],[-76.57861584059226,39.26639492127194],[-76.5788319056353,39.26609747462366],[-76.57886179299418,39.26611521974389],[-76.57907754105588,39.2662496870166],[-76.57934968785696,39.26641622418071],[-76.579619315568,39.26658373982638],[-76.57928446443746,39.26691815955968],[-76.57948316380001,39.26704172332703],[-76.5795022213983,39.26702274303265],[-76.57944981474654,39.26699149239985],[-76.57946967706934,39.26696205978178],[-76.57946861681152,39.26695912038325],[-76.57946672159237,39.26695765615452],[-76.57946420504757,39.26695798763313],[-76.57946294638135,39.26695880642757],[-76.57943655540322,39.26698433065345],[-76.57940035037095,39.26696023246409],[-76.57942064277832,39.26693390093597],[-76.57942063335422,39.26693079865831],[-76.57941936678765,39.26692982219396],[-76.57941726781027,39.26692949940813],[-76.57941265244659,39.26693163211058],[-76.5793883560614,39.26695372109328],[-76.57934688587054,39.26692702062758],[-76.57952592903354,39.2667472164216],[-76.57966603384041,39.26661043466241],[-76.57988948320322,39.26674815452774],[-76.58007281723484,39.26686178721762],[-76.58023088375828,39.26695750130842],[-76.5802916308303,39.26699497597893],[-76.58037911202759,39.26708935936041],[-76.58049573441617,39.26721420173993],[-76.58060949915181,39.26733598559521],[-76.58049385992503,39.26753127782493],[-76.58042189467993,39.26765281260229],[-76.58019819213878,39.26803732542728],[-76.58020279364925,39.26805007872645],[-76.58043768491612,39.26813272402098],[-76.58020352666659,39.26853202608194],[-76.58019929698878,39.2685320244741],[-76.58019436399378,39.26854121448324],[-76.58019148016416,39.26854622775341],[-76.58018859980523,39.26855124193668],[-76.58018572060467,39.26855625612401],[-76.58018284140367,39.26856127031132],[-76.58017995873122,39.26856628358531],[-76.58017707374616,39.26857129595019],[-76.5801741829773,39.26857630649282],[-76.58017128527128,39.26858131430824],[-76.58016837947461,39.26858631849159],[-76.58016546210558,39.26859131993126],[-76.58016253433361,39.26859631682974],[-76.58015959268769,39.26860130827399],[-76.58015661865369,39.26860628969391],[-76.58015360762313,39.26861125656922],[-76.58015056768086,39.26861621343264],[-76.58014751038824,39.26862116482936],[-76.58014444616369,39.26862611259812],[-76.58014138424568,39.2686310621766],[-76.58013833621148,39.26863601540772],[-76.58013531129944,39.26864097772906],[-76.5801323199228,39.26864595188016],[-76.58012937364813,39.26865094150548],[-76.58012647708937,39.26865595022458],[-76.58012359788549,39.26866096350953],[-76.58012072214697,39.2686659786083],[-76.58011785219131,39.26867099552919],[-76.58011498454221,39.2686760142598],[-76.58011212268133,39.26868103391178],[-76.58010926313233,39.26868605447272],[-76.58010640704866,39.2686910768475],[-76.58010355443565,39.26869610013544],[-76.58010070529325,39.26870112433642],[-76.58009785845739,39.26870615034713],[-76.58009501509754,39.26871117637022],[-76.58009217289077,39.26871620329807],[-76.58008933414931,39.26872123203979],[-76.58008649656625,39.26872626078558],[-76.58008366129503,39.26873129044032],[-76.58008082834104,39.2687363201033],[-76.58007799654008,39.26874135067109],[-76.5800751658922,39.26874638214365],[-76.58007233640272,39.26875141362031],[-76.58006950807163,39.26875644510104],[-76.58006667973481,39.26876147748247],[-76.58006385255636,39.26876650986793],[-76.58006102537752,39.2687715422533],[-76.58005819935711,39.26877657464275],[-76.58005537217748,39.26878160702804],[-76.58005254615627,39.26878663941733],[-76.58004971782236,39.26879167089752],[-76.58004689064153,39.26879670328255],[-76.58004406114804,39.26880173475846],[-76.58004123165416,39.26880676623428],[-76.58003840100636,39.26881179680515],[-76.58003556804061,39.26881682736763],[-76.5800327350798,39.26882185702932],[-76.58002990558424,39.26882688850485],[-76.58002708533741,39.26883192361645],[-76.58002427434992,39.26883696056264],[-76.5800214668224,39.26884200022337],[-76.58001866392972,39.26884703990066],[-76.58001586218475,39.26885208138349],[-76.58001306044471,39.2688571219655],[-76.58001025523855,39.26886216073353],[-76.58000744539675,39.26886719948487],[-76.5800046286231,39.2688722346083],[-76.58000180258935,39.26887726789703],[-76.57999896615264,39.26888229664461],[-76.57999611699536,39.26888732084278],[-76.57999325395878,39.26889234048743],[-76.57999038282618,39.26889735740076],[-76.57998751053971,39.26890237340911],[-76.57998463477644,39.26890738940489],[-76.57998175785926,39.26891240449577],[-76.57997887862945,39.2689174186775],[-76.57997599708692,39.26892243195015],[-76.5799731143852,39.26892744521854],[-76.57997022937079,39.26893245757785],[-76.57996734320253,39.26893746903216],[-76.57996445587504,39.26894248048229],[-76.57996156739368,39.2689474910274],[-76.57995867659432,39.26895250156416],[-76.57995578579455,39.26895751210083],[-76.57995289384088,39.26896252173255],[-76.57995000072806,39.26896753136001],[-76.5799471076201,39.26897254008669],[-76.57994421334763,39.26897754970989],[-76.57994131792124,39.26898255842808],[-76.57993842365327,39.26898756715038],[-76.57993552822613,39.26899257586841],[-76.57993263279852,39.26899758458638],[-76.57992973737055,39.26900259330429],[-76.57992684194217,39.2690076020221],[-76.57992394767211,39.26901261074399],[-76.57992105340169,39.26901761946579],[-76.57991815913088,39.26902262818753],[-76.57991526485431,39.26902763780994],[-76.57991237289497,39.26903264744052],[-76.57990948093517,39.26903765707105],[-76.57990659012846,39.2690426676064],[-76.57990370048013,39.2690476781458],[-76.57990081199017,39.26905268868928],[-76.57989792465332,39.26905770013762],[-76.57989503846952,39.26906271249068],[-76.57989215344409,39.26906772484788],[-76.5798892672648,39.26907273630007],[-76.57988638107977,39.26907774865295],[-76.57988349374088,39.26908276010084],[-76.57988060640159,39.26908777154869],[-76.57987771906187,39.26909278299642],[-76.57987483288055,39.26909779444825],[-76.57987194669349,39.26910280680071],[-76.57986906282358,39.26910781916143],[-76.579866178948,39.2691128324228],[-76.57986329738958,39.26911784569236],[-76.57986041814304,39.26912285987089],[-76.57985754120834,39.26912787495841],[-76.57985466658555,39.26913289095488],[-76.5798517954334,39.26913790786444],[-76.57984892775195,39.2691429256871],[-76.57984606353584,39.26914794532362],[-76.57984320394915,39.26915296587744],[-76.57984034782785,39.26915798824508],[-76.57983749748954,39.26916301243485],[-76.57983465984958,39.2691680447769],[-76.57983184301442,39.26917308620099],[-76.57982905393681,39.26917813673197],[-76.57982629841614,39.26918319548984],[-76.57982358456938,39.26918826160287],[-76.57982091819589,39.26919333419109],[-76.57982171258665,39.26919871371194],[-76.5798235781559,39.26920402230157],[-76.57982532072145,39.26920935927559],[-76.57982727456852,39.26921463305104],[-76.57982979943868,39.2692197584413],[-76.57983304167757,39.2692246792216],[-76.5798375076363,39.26922881801019],[-76.57984387266715,39.26923123772301],[-76.5798502555019,39.26923358633857],[-76.57985666285327,39.26923590441543],[-76.57986309359455,39.26923818654485],[-76.57986954892178,39.2692404264259],[-76.57987602769748,39.26924262045134],[-76.57988253464229,39.26924475422577],[-76.57988908844632,39.2692468025946],[-76.5798956750599,39.2692487898283],[-76.57990227805712,39.26925075009716],[-76.57990887640879,39.26925271215059],[-76.57991545601199,39.26925470926653],[-76.57992175988582,39.26925630275293],[-76.57992802414756,39.26925362556072],[-76.5799346457064,39.26925166755743],[-76.5799414448322,39.26925005608348],[-76.57994819440627,39.26924839759203],[-76.57995468676971,39.26924633914039],[-76.57995955307631,39.26924235984188],[-76.57996247363246,39.26923741426714],[-76.57996517585113,39.26923235351401],[-76.57996775794822,39.26922722567443],[-76.57997032161609,39.26922207885275],[-76.57997296391696,39.26921696023602],[-76.57997578770734,39.269211917032],[-76.5799787328626,39.26920692650646],[-76.57998169073234,39.26920194143088],[-76.57998466248061,39.26919696090872],[-76.57998764580053,39.26919198313017],[-76.57999063952263,39.26918700989255],[-76.57999364133994,39.26918203938609],[-76.57999665009368,39.26917707160668],[-76.57999966578917,39.26917210565355],[-76.58000268610873,39.26916714151839],[-76.580005709899,39.26916217829631],[-76.58000873484231,39.26915721597906],[-76.58001176094399,39.26915225366589],[-76.58001478704529,39.2691472913526],[-76.58001781083381,39.26914232813021],[-76.58002083115089,39.26913736399453],[-76.58002384684832,39.26913239713999],[-76.58002685675663,39.26912742936387],[-76.58002985856888,39.26912245885642],[-76.58003285229037,39.26911748471687],[-76.58003583675708,39.26911250784187],[-76.58003880850315,39.26910752641743],[-76.58004176868209,39.26910254134852],[-76.5800447138282,39.26909755082112],[-76.58004764510018,39.26909255483947],[-76.58005055670948,39.26908755248204],[-76.58005345097361,39.26908254375713],[-76.58005632904607,39.26907752956967],[-76.58005919208567,39.26907250992377],[-76.5800620412512,39.26906748482357],[-76.58006488000314,39.26906245698375],[-76.58006770834675,39.26905742550358],[-76.58007052975846,39.2690523903955],[-76.58007334422233,39.26904735436174],[-76.58007615522,39.26904231651392],[-76.58007896391034,39.2690372768563],[-76.58008177143618,39.26903223809515],[-76.58008458012041,39.26902719933813],[-76.58008739227526,39.26902216149421],[-76.5800902090543,39.2690171254683],[-76.580093031611,39.26901209216521],[-76.58009586342702,39.26900706069672],[-76.58009870448637,39.26900203376506],[-76.58010155711209,39.2689970104777],[-76.58010442477512,39.26899199174792],[-76.58010730630606,39.26898697937297],[-76.5801102051866,39.2689819724646],[-76.58011312141682,39.26897697102279],[-76.58011605383251,39.26897197594413],[-76.58011899896792,39.26896698541466],[-76.58012195682841,39.26896199853374],[-76.5801249250911,39.26895701619374],[-76.58012790260773,39.26895203658909],[-76.5801308882196,39.26894705971555],[-76.58013388076786,39.26894208556901],[-76.58013687909903,39.26893711324463],[-76.58013987973675,39.26893214272994],[-76.58014288385039,39.26892717222762],[-76.58014588796367,39.26892220172518],[-76.58014889207115,39.26891723212344],[-76.58015189387129,39.26891226071182],[-76.5801548921946,39.26890728928765],[-76.5801578858983,39.26890231514461],[-76.58016087265943,39.26889733917517],[-76.58016385248337,39.2688923604785],[-76.58016682421123,39.26888737905054],[-76.58016978437733,39.2688823930773],[-76.58017273181756,39.2688774034554],[-76.58017566653716,39.26887240928416],[-76.58017858738278,39.2688674096586],[-76.58018149435439,39.26886240457881],[-76.5801843886001,39.26885739585039],[-76.5801872724375,39.26885238348157],[-76.58019014702543,39.26884736747655],[-76.58019301235856,39.26884234873607],[-76.58019587191328,39.26883732727258],[-76.58019872452543,39.26883230398262],[-76.58020157366616,39.26882727977946],[-76.58020441934069,39.26882225376228],[-76.58020726386141,39.2688172268401],[-76.58021010722284,39.26881219991376],[-76.58021295173742,39.26880717389221],[-76.58021579856913,39.26880214787884],[-76.58021864886622,39.26879712367935],[-76.58022150378744,39.26879210129784],[-76.58022436449156,39.26878708073843],[-76.58022723329091,39.26878206291023],[-76.58023011134424,39.26877704781729],[-76.58023299864621,39.26877203636042],[-76.58023589750911,39.26876702944864],[-76.58023880793831,39.26876202618116],[-76.5802417276161,39.26875702654977],[-76.58024465539447,39.26875202874877],[-76.58024759010388,39.26874703457552],[-76.5802505305962,39.2687420422244],[-76.58025347803024,39.26873705169956],[-76.5802564289296,39.26873206298855],[-76.5802593844584,39.26872707519476],[-76.58026234345247,39.26872208921482],[-76.58026530475847,39.26871710414387],[-76.5802682683816,39.26871211908106],[-76.58027123315777,39.26870713492312],[-76.58027419677481,39.26870215076089],[-76.58027716155016,39.26869716660274],[-76.58028012401286,39.26869218153549],[-76.5802830853163,39.26868719646404],[-76.58028604315363,39.26868220957853],[-76.58028899751945,39.26867722177982],[-76.58029194841914,39.26867223216708],[-76.58029489352981,39.26866724163279],[-76.58029783286199,39.26866224837549],[-76.58030076525166,39.26865725329178],[-76.58030369070418,39.26865225548087],[-76.58030661037822,39.26864725494693],[-76.58030952658083,39.26864225349975],[-76.58031243815849,39.26863725023441],[-76.58031534510587,39.26863224605167],[-76.5803182497406,39.26862724095989],[-76.58032114975035,39.2686222340499],[-76.58032404860629,39.26861722623498],[-76.58032694398538,39.26861221840755],[-76.58032983821593,39.26860720877438],[-76.58033273012852,39.26860219913286],[-76.58033562088718,39.2685971885864],[-76.58033851048667,39.2685921780357],[-76.58034140008576,39.26858716748492],[-76.58034428852558,39.26858215692994],[-76.58034717697041,39.26857714547411],[-76.58035006656826,39.26857213492313],[-76.5803529561657,39.26856712437203],[-76.58035584692152,39.26856211382501],[-76.58035873883037,39.26855710418278],[-76.58036163305644,39.26855209454876],[-76.58036452843025,39.26854708672032],[-76.58036742843346,39.26854207980908],[-76.58037033421965,39.26853707471999],[-76.5803732400054,39.26853206963077],[-76.58048914673698,39.2683285157871],[-76.58057326457717,39.26818078594224],[-76.58072830363105,39.2682354459408],[-76.58074387199231,39.26823137780785],[-76.58074534635773,39.26823171004983],[-76.58076517642752,39.26819985854864],[-76.58076013525194,39.26819658157643],[-76.58083079565986,39.26815449413525],[-76.58084654977037,39.2681429097485],[-76.58087462481281,39.26809161847029],[-76.58089973640635,39.26804881985286],[-76.58091284142552,39.26801761719905],[-76.5809377931886,39.26794850208412],[-76.5809995920556,39.26778077721215],[-76.58100995460519,39.26778383175419],[-76.5810184951324,39.26776830597121],[-76.58100834417104,39.26776454688391],[-76.58108670677341,39.26762683247062],[-76.58129749679161,39.26727114149163],[-76.58141057983138,39.26713195807365],[-76.58154750400428,39.26698717655313],[-76.58175221858741,39.26705915562685],[-76.58166766642184,39.26735569970167],[-76.58149968375727,39.26764251087302],[-76.58137621896122,39.26785780192009],[-76.58131776969286,39.26795662211766],[-76.58132365005103,39.26796104423082],[-76.58131858768932,39.26796823052029],[-76.58131015498243,39.26797884482416],[-76.58117485763236,39.26812088899997],[-76.58116094915877,39.2681350949405],[-76.58115672978275,39.26814081237541],[-76.58109553111859,39.26824535062956],[-76.58112109882276,39.26828918848936],[-76.58114579768207,39.26834496201324],[-76.58119499755855,39.26845176309497],[-76.58114167565023,39.26853226996197],[-76.58113526263803,39.26854328238822],[-76.58113235112228,39.2685482856741],[-76.58112943961139,39.26855328805912],[-76.58112652809476,39.26855829134483],[-76.58112361773654,39.26856329463456],[-76.58112070853672,39.26856829792838],[-76.58111779817236,39.26857330211873],[-76.5811148889717,39.26857830541239],[-76.58111198092409,39.26858330961083],[-76.58110907171731,39.26858831380507],[-76.58110616366892,39.26859331800338],[-76.58110325446663,39.26859832129667],[-76.58110034641737,39.26860332549482],[-76.58109743720894,39.26860832968873],[-76.58109452915889,39.26861333388671],[-76.58109161995495,39.26861833717975],[-76.58108871074526,39.26862334137343],[-76.5810858015352,39.26862834556702],[-76.58108289233002,39.26863334885978],[-76.58107998196566,39.26863835214834],[-76.58107707160089,39.26864335543686],[-76.58107416007687,39.26864835872109],[-76.58107124739898,39.26865336110042],[-76.58106833472068,39.26865836347966],[-76.58106542204197,39.26866336585882],[-76.5810625070453,39.2686683682296],[-76.58105959205348,39.26867336969957],[-76.58105667590245,39.26867837116533],[-76.58105375859756,39.26868337172615],[-76.58105084013347,39.26868837228274],[-76.58104792051014,39.26869337283508],[-76.58104499973295,39.26869837248252],[-76.58104207780187,39.26870337122496],[-76.58103915471155,39.26870836996319],[-76.58103622930857,39.26871336779233],[-76.58103330274639,39.26871836561727],[-76.58103037502498,39.26872336343798],[-76.58102744499622,39.26872835944884],[-76.58102451380822,39.26873335545547],[-76.58102158146635,39.26873835055717],[-76.58101864796527,39.26874334565466],[-76.58101571330495,39.26874834074789],[-76.58101277749074,39.26875333493621],[-76.58100984167613,39.26875832912445],[-76.58100690470233,39.26876332330841],[-76.58100396657466,39.2687683165875],[-76.58100102728773,39.26877330986229],[-76.58099808800038,39.26877830313703],[-76.58099514755384,39.26878329640759],[-76.5809922071122,39.26878828877726],[-76.58098926435254,39.26879328113861],[-76.58098632275662,39.26879827260326],[-76.58098337999611,39.26880326496445],[-76.58098043608175,39.26880825642069],[-76.58097749216695,39.26881324787679],[-76.58097454825175,39.26881823933287],[-76.58097160317736,39.26882323078471],[-76.58096865810781,39.26882822133572],[-76.58096571187912,39.26883321188254],[-76.58096276564997,39.26883820242925],[-76.58095981942044,39.26884319297589],[-76.58095687203168,39.26884818351829],[-76.58095392464249,39.26885317406066],[-76.58095097725288,39.2688581646029],[-76.5809480298682,39.26886315424433],[-76.58094508247777,39.26886814478644],[-76.58094213393346,39.26887313442356],[-76.5809391865422,39.26887812496552],[-76.58093623799707,39.26888311460247],[-76.58093328945152,39.26888810423937],[-76.58093034090024,39.2688930947769],[-76.5809273923538,39.26889808441366],[-76.58092444380701,39.26890307405031],[-76.58092149641325,39.26890806459171],[-76.58091854786564,39.26891305422819],[-76.58091559931759,39.26891804386464],[-76.58091265192262,39.26892303440582],[-76.58090970453253,39.2689280240462],[-76.58090675713672,39.26893301458725],[-76.58090380974048,39.26893800512818],[-76.58090086234382,39.26894299566909],[-76.58089791494682,39.26894798620986],[-76.58089496870812,39.26895297675473],[-76.58089202362787,39.26895796730361],[-76.58088907738835,39.26896295784833],[-76.58088613230193,39.26896794929778],[-76.58088318722042,39.26897293984646],[-76.58088024329196,39.26897793129993],[-76.58087729936308,39.2689829227533],[-76.58087435658726,39.26898791511147],[-76.58087141381634,39.26899290656883],[-76.58086847219853,39.268997898931],[-76.58086553058024,39.26900289129307],[-76.58086259011507,39.26900788455998],[-76.58085964965481,39.26901287692602],[-76.58085671034759,39.26901787019686],[-76.58085377219879,39.2690228634718],[-76.58085083404423,39.26902785764735],[-76.58084789821223,39.26903285093039],[-76.58084496121029,39.26903784601069],[-76.58084202653093,39.26904284019841],[-76.58083909300458,39.26904783529096],[-76.58083615947787,39.26905283038342],[-76.58083322710421,39.26905782638067],[-76.58083029588893,39.26906282238203],[-76.58082736583205,39.26906781838739],[-76.58082443692825,39.26907281529761],[-76.58082150918283,39.26907781221181],[-76.58081858143166,39.26908281002672],[-76.58081565368545,39.26908780694081],[-76.58081272825103,39.26909280476382],[-76.58080980281626,39.26909780258676],[-76.58080687737576,39.26910280131037],[-76.58080395309894,39.26910779913727],[-76.58080102997523,39.26911279786901],[-76.58079810684575,39.26911779750137],[-76.58079518372116,39.26912279623294],[-76.58079226174969,39.26912779586932],[-76.58078934094192,39.26913279460899],[-76.58078642012842,39.2691377942493],[-76.58078349930916,39.26914279479033],[-76.58078057965363,39.26914779443466],[-76.58077765999241,39.26915279497963],[-76.58077474149482,39.26915779462793],[-76.58077182299158,39.26916279517691],[-76.5807689044879,39.26916779572575],[-76.58076598713723,39.26917279717944],[-76.58076306979153,39.2691777977323],[-76.58076015244009,39.26918279918582],[-76.58075723625235,39.26918779974267],[-76.58075432005893,39.26919280120018],[-76.58075140386507,39.26919780265759],[-76.58074848882956,39.26920280411908],[-76.58074557262958,39.26920780647712],[-76.58074265759325,39.26921280793844],[-76.58073974371536,39.26921780940381],[-76.5807368286729,39.26922281176571],[-76.58073391479418,39.26922781323093],[-76.58073099975094,39.26923281559269],[-76.58072808586603,39.26923781795849],[-76.58072517198609,39.26924281942346],[-76.58072225925918,39.26924782179324],[-76.5807193453731,39.26925282415884],[-76.58071643148659,39.26925782652432],[-76.58071351875846,39.26926282889385],[-76.58071060487114,39.2692678312592],[-76.58070769214221,39.26927283362858],[-76.58070477941286,39.2692778359979],[-76.58070186552429,39.26928283836299],[-76.58069895279411,39.26928784073211],[-76.58069604006351,39.26929284310122],[-76.58069312733252,39.2692978454702],[-76.58069021343701,39.26930284873573],[-76.58068730070518,39.26930785110454],[-76.58068438797295,39.26931285347332],[-76.58068147408152,39.26931785583784],[-76.580678560195,39.26932285730155],[-76.58067564746153,39.26932785967004],[-76.58067273356887,39.26933286203436],[-76.58066981967579,39.26933786439857],[-76.58066690578225,39.26934286676268],[-76.58066399189369,39.26934786822603],[-76.58066107684058,39.26935287058587],[-76.58065816179234,39.26935787204487],[-76.58065524789721,39.26936287440868],[-76.58065233284816,39.26936787586754],[-76.58064941663994,39.26937287732216],[-76.58064650159007,39.2693778787809],[-76.58064358538097,39.26938288023538],[-76.58064066917153,39.26938788168976],[-76.58063775180815,39.26939288223916],[-76.58063483559783,39.26939788369344],[-76.58063191823364,39.26940288424269],[-76.58062899971017,39.26940788478774],[-76.58062608233982,39.2694128862376],[-76.58062316266209,39.26941788587762],[-76.58062024413744,39.26942288642242],[-76.58061732445354,39.26942788696303],[-76.58061440477461,39.26943288660281],[-76.58061148393644,39.26943788623836],[-76.58060856309783,39.26944288587382],[-76.58060564109998,39.26944788550507],[-76.58060271910709,39.26945288423548],[-76.58059979710845,39.26945788386661],[-76.5805968739559,39.26946288259272],[-76.58059394964945,39.26946788041387],[-76.58059101261169,39.2694728754872],[-76.58058798649425,39.26947784502082],[-76.58058489443603,39.2694827954028],[-76.58058178272557,39.26948773760756],[-76.58057869878883,39.2694926862168],[-76.58057568891431,39.26949765220503],[-76.58057279822104,39.26950264834416],[-76.58057015051013,39.26950770750386],[-76.58056902091067,39.26951315220901],[-76.58056871843522,39.26951864490642],[-76.58056947176361,39.26952411975616],[-76.58057166239664,39.26952933941737],[-76.58057514188646,39.26953412771032],[-76.58058026162975,39.26953785084908],[-76.58058644431011,39.26954054550468],[-76.58059233514803,39.26954360122606],[-76.58059850330251,39.26954620485174],[-76.58060496584146,39.26954840958779],[-76.58061144475859,39.26955058825973],[-76.58061793885771,39.26955274716865],[-76.58062444347706,39.26955489080177],[-76.58063095627236,39.26955702365449],[-76.58063747257643,39.26955915111478],[-76.58064399003972,39.26956127857883],[-76.58065050515914,39.26956341053801],[-76.58065701327286,39.26956555147946],[-76.58066351319007,39.26956770680358],[-76.58066999909025,39.26956988099337],[-76.58067631355809,39.26957243469434],[-76.58068282554844,39.26957391988989],[-76.58068992514931,39.26957303816596],[-76.58069654101179,39.26957126115369],[-76.58070208538517,39.26956784182054],[-76.58070763154491,39.26956431620297],[-76.58071092317286,39.26955951876003],[-76.58071389714402,39.26955454813641],[-76.580716865342,39.26954957388906],[-76.5807198277668,39.26954459601796],[-76.58072278557194,39.26953961542795],[-76.58072573875734,39.2695346321191],[-76.58072868616426,39.26952964608721],[-76.58073163011564,39.26952465643986],[-76.580734569442,39.26951966497435],[-76.58073750414331,39.26951467169071],[-76.5807404365426,39.26950967569652],[-76.58074336316341,39.2695046769793],[-76.58074628747148,39.269499677353],[-76.58074920831335,39.26949467591265],[-76.58075212684783,39.26948967266252],[-76.58075504191615,39.26948466759837],[-76.58075795351289,39.26947966162098],[-76.58076086395575,39.26947465473864],[-76.58076377093245,39.26946964604233],[-76.58076667674992,39.26946463734177],[-76.58076958025997,39.26945962683136],[-76.58077248260555,39.26945461721749],[-76.58077538263834,39.26944960669454],[-76.58077828151725,39.26944459526661],[-76.5807811803905,39.26943958473935],[-76.5807840781098,39.2694345733071],[-76.58078697466453,39.26942956277142],[-76.5807898712189,39.26942455223566],[-76.58079276661407,39.26941954169568],[-76.58079566315693,39.26941453296126],[-76.58079855969943,39.26940952422674],[-76.5808014539239,39.26940451548389],[-76.58080434699447,39.26939950583607],[-76.58080723659353,39.26939449527502],[-76.58081012503334,39.26938948470975],[-76.58081301000701,39.26938447233048],[-76.58081589498026,39.26937945995117],[-76.580818776482,39.26937444665859],[-76.58082165682983,39.26936943246103],[-76.58082453601843,39.26936441825931],[-76.58082741288905,39.26935940404922],[-76.58083028976985,39.26935438803756],[-76.58083316433267,39.26934937201753],[-76.58083603773629,39.2693443559933],[-76.58083890998071,39.26933933996485],[-76.5808417810712,39.26933432303145],[-76.5808446521666,39.26932930519722],[-76.5808475220975,39.26932428825951],[-76.58085039087446,39.26931927041686],[-76.58085325965106,39.26931425257415],[-76.58085612842721,39.26930923473131],[-76.58085899604949,39.26930421598354],[-76.58086186366609,39.26929919813645],[-76.58086473128755,39.2692941793885],[-76.58086759890327,39.26928916154127],[-76.58087046767739,39.26928414369805],[-76.5808733352977,39.26927912494987],[-76.58087620407099,39.26927410710654],[-76.58087907284396,39.26926908926308],[-76.58088194161644,39.26926407141961],[-76.58088481154206,39.2692590544809],[-76.58088768263138,39.26925403664549],[-76.58089055486845,39.26924902061565],[-76.58089342711048,39.26924400368499],[-76.58089630166435,39.26923898766326],[-76.58089917621783,39.26923397164149],[-76.58090205308315,39.2692289565286],[-76.5809049299428,39.26922394231642],[-76.58090780912495,39.26921892721166],[-76.58091068714258,39.26921391300348],[-76.58091356400634,39.26920889789027],[-76.58091643971085,39.26920388277291],[-76.58091931542026,39.26919886675469],[-76.58092218997048,39.26919385073226],[-76.5809250645203,39.26918883470976],[-76.58092793791091,39.26918381868304],[-76.58093081130113,39.26917880265624],[-76.58093368469621,39.26917378572864],[-76.58093655692682,39.26916876969754],[-76.58093943032114,39.26916375276978],[-76.58094230370968,39.26915873674266],[-76.58094517709785,39.26915372071548],[-76.58094805048563,39.26914870468827],[-76.58095092503179,39.26914368866505],[-76.58095379957754,39.26913867264176],[-76.58095667528168,39.26913365662254],[-76.58095955098008,39.26912864150397],[-76.58096242899572,39.26912362639364],[-76.58096530700563,39.26911861218396],[-76.58096818617391,39.2691135979783],[-76.58097106650062,39.26910858377672],[-76.58097394798041,39.26910357047995],[-76.58097683177203,39.26909855809211],[-76.5809797167221,39.26909354570837],[-76.58098260282522,39.26908853422936],[-76.58098549240434,39.26908352276273],[-76.58098838197775,39.26907851219676],[-76.58099127502179,39.26907350254385],[-76.58099416921893,39.26906849379577],[-76.58099706572798,39.26906348595656],[-76.58099996570772,39.26905847903053],[-76.58100286684582,39.26905347210847],[-76.58100577144924,39.26904846700024],[-76.58100867836463,39.26904346280097],[-76.58101158759715,39.26903845860992],[-76.58101450029505,39.26903345623263],[-76.58101741646358,39.26902845476842],[-76.58102033378529,39.26902345420903],[-76.5810232545776,39.26901845456271],[-76.58102617652297,39.26901345582121],[-76.58102910194435,39.26900845709199],[-76.58103202851883,39.2690034592676],[-76.58103495739985,39.26899846325286],[-76.58103788744454,39.26899346634147],[-76.58104081979582,39.26898847123977],[-76.5810437544643,39.26898347614622],[-76.58104669028583,39.26897848195748],[-76.58104962726576,39.26897348777277],[-76.58105256655755,39.26896849449703],[-76.58105550700242,39.26896350212609],[-76.58105844860563,39.2689585097592],[-76.58106139136729,39.26895351739635],[-76.58106433528199,39.26894852593831],[-76.58106727919098,39.26894353538097],[-76.58107022542241,39.26893854393101],[-76.58107317164819,39.26893355338174],[-76.58107611903232,39.26892856283652],[-76.58107906641071,39.26892357319198],[-76.5810820149475,39.26891858355151],[-76.58108496348918,39.26891359301016],[-76.58108791318389,39.26890860337365],[-76.58109086287294,39.26890361463777],[-76.58109381256685,39.26889862500108],[-76.58109676226039,39.26889363536432],[-76.58109971195346,39.26888864572744],[-76.58110266164617,39.26888365609052],[-76.58110561017962,39.26887866644937],[-76.5811085598715,39.26887367681229],[-76.58111150840412,39.26886868717099],[-76.58111445693633,39.2688636975296],[-76.58111740431467,39.26885870698322],[-76.58112035168726,39.26885371733755],[-76.58112329791125,39.26884872588614],[-76.58112624412955,39.26884373533543],[-76.58112918803515,39.26883874387558],[-76.58113213194031,39.26883375241568],[-76.58113507468629,39.26882876095156],[-76.58113801627833,39.26882376858247],[-76.58130698431314,39.26853231356636],[-76.58147033400823,39.26825365978599],[-76.58196857487526,39.26739805877631],[-76.58204224788017,39.26728257418097],[-76.58217281697279,39.26720083746125],[-76.58217533814862,39.26720050594111],[-76.58217849091065,39.26720115129842],[-76.58272579245362,39.26739079373638],[-76.58267109702388,39.2674313978417],[-76.58263965371566,39.26745333868811],[-76.58253126204325,39.26752066411372],[-76.58251280961093,39.26753163832292],[-76.5825042144337,39.26753721144115],[-76.58249793423876,39.26754342692894],[-76.58243368402053,39.26764531038824],[-76.58227606471642,39.2678968791318],[-76.58191093420793,39.2684687163984],[-76.58182890812762,39.26859796908506],[-76.58182268741804,39.26860782925105],[-76.58181646786552,39.26861768942081],[-76.58181024714717,39.26862755048685],[-76.58180402759119,39.2686374106559],[-76.58179780687466,39.26864727082046],[-76.58179158615643,39.26865713098466],[-76.58178536543649,39.2686669911485],[-76.58177914355598,39.26867685130784],[-76.58177292283257,39.26868671147098],[-76.58176670095391,39.26869657072889],[-76.58176047790944,39.26870643088306],[-76.58175425486854,39.2687162901361],[-76.58174803182591,39.26872614938881],[-76.58174180878154,39.26873600864111],[-76.58173558342321,39.26874586698411],[-76.58172935575082,39.26875572441772],[-76.58172312576441,39.26876558094198],[-76.58171688999292,39.26877543564373],[-76.58171065075392,39.26878528853127],[-76.58170439879292,39.26879513686928],[-76.58169812948539,39.26880497883981],[-76.58169185439809,39.26881481808706],[-76.58168558162131,39.26882465824298],[-76.58167932039891,39.2688345038443],[-76.58167308346181,39.26884435763865],[-76.58166686849233,39.26885421961784],[-76.58166066854835,39.26886408795556],[-76.58165447901062,39.26887395993304],[-76.58164829525452,39.26888383373229],[-76.5816421103326,39.26889370842783],[-76.58163592194848,39.26890358040841],[-76.58162972315472,39.26891344874846],[-76.58162351626352,39.26892331435704],[-76.58161730937059,39.26893317996518],[-76.58161110247595,39.26894304557305],[-76.58160489557962,39.26895291118056],[-76.58159868868151,39.2689627767877],[-76.58159248178167,39.26897264239447],[-76.58158627372664,39.26898250709604],[-76.58158006566458,39.26899237269792],[-76.58157385760609,39.26900223739878],[-76.58156764954587,39.26901210209927],[-76.58156144147863,39.26902196770012],[-76.58155523341497,39.2690318323999],[-76.58154902419079,39.26904169709517],[-76.58154281612369,39.2690515617942],[-76.58153660689599,39.26906142648878],[-76.58153039766664,39.26907129118298],[-76.58152418959435,39.26908115588098],[-76.58151798036155,39.26909102057443],[-76.58151177112696,39.26910088526759],[-76.58150556073191,39.26911074995625],[-76.58149935149387,39.26912061464866],[-76.58149314225416,39.26913047934073],[-76.58148693301804,39.2691403431317],[-76.58148072261604,39.26915020781893],[-76.58147451337115,39.26916007250991],[-76.58146830297099,39.2691699362957],[-76.58146209372265,39.26917980098595],[-76.58145588331374,39.26918966567177],[-76.58144967290846,39.26919952945645],[-76.58144346365488,39.26920939414569],[-76.58143725324616,39.26921925792965],[-76.58143104283035,39.26922912261399],[-76.58142483241279,39.26923898729803],[-76.58141862199889,39.26924885108092],[-76.58141241042973,39.26925871395859],[-76.58140619538241,39.26926857682352],[-76.58139997917991,39.26927843878323],[-76.58139376297565,39.26928830074256],[-76.58138754561084,39.26929816269738],[-76.58138132940313,39.26930802465603],[-76.5813751131937,39.26931788661429],[-76.58136890045367,39.26932774948533],[-76.58136268886538,39.26933761326087],[-76.58135647843415,39.2693474770402],[-76.58135026799593,39.26935734171995],[-76.58134405871472,39.26936720640344],[-76.58133784943185,39.2693770710866],[-76.58133164130602,39.2693869357735],[-76.5813254320197,39.26939680045594],[-76.58131922389043,39.26940666514217],[-76.58131301575413,39.26941653072873],[-76.5813068076214,39.26942639541424],[-76.58130059948697,39.2694362600994],[-76.58129439134548,39.26944612568489],[-76.58128818320759,39.26945599036932],[-76.58128197506264,39.26946585595416],[-76.58127576807478,39.26947572154277],[-76.5812695599317,39.26948558622608],[-76.58126335178159,39.26949545180984],[-76.58125714363506,39.26950531649249],[-76.58125093548681,39.26951518117476],[-76.58124472733151,39.26952504675743],[-76.58123851917981,39.26953491143902],[-76.58123231102638,39.26954477612021],[-76.58122610170706,39.2695546416977],[-76.58121989355017,39.26956450637822],[-76.58121368423276,39.2695743710542],[-76.58120747491895,39.26958423482914],[-76.58120126443924,39.26959409950027],[-76.58119505395781,39.2696039641711],[-76.58118884348002,39.26961382794082],[-76.58118263300045,39.26962369171013],[-76.58117642136037,39.26963355547503],[-76.58117020971855,39.26964341923953],[-76.58116399691619,39.26965328299953],[-76.58115778064632,39.2696631449453],[-76.58115155743778,39.26967300416369],[-76.58114532844409,39.26968286155951],[-76.58113909830047,39.26969271714933],[-76.5811328658322,39.26970257363133],[-76.58112663452101,39.2697124301171],[-76.58112040667916,39.26972228751563],[-76.58111418346029,39.26973214673185],[-76.58110796255191,39.2697420068567],[-76.58110174164187,39.26975186698122],[-76.58109551957124,39.26976172710124],[-76.58108929866304,39.26977158632429],[-76.58108307658897,39.2697814464436],[-76.58107685567199,39.26979130656669],[-76.5810706347533,39.26980116668938],[-76.58106441383282,39.26981102681176],[-76.58105819291067,39.26982088693379],[-76.5810519719868,39.26983074705544],[-76.58104575105581,39.26984060807746],[-76.58103953012846,39.26985046819839],[-76.58103331035821,39.26986032832311],[-76.58102708942741,39.2698701884433],[-76.58102086964837,39.26988004946806],[-76.58101464987291,39.2698899095917],[-76.58100843009041,39.2698997706157],[-76.5810022103115,39.26990963073862],[-76.58099599052554,39.26991949176193],[-76.58098977189665,39.26992935278904],[-76.58098355326604,39.26993921381575],[-76.5809773346337,39.26994907484215],[-76.58097111599967,39.26995893586814],[-76.58096489851737,39.26996879779868],[-76.58095868103868,39.2699786588281],[-76.58095246355292,39.26998852075793],[-76.58094624607079,39.26999838178665],[-76.58094003205275,39.27000824462891],[-76.58093382381104,39.27001811019374],[-76.58092762135645,39.27002797667961],[-76.58092142583173,39.27003784679292],[-76.58091523608876,39.27004771872807],[-76.58090905328105,39.27005759338991],[-76.58090287740852,39.27006747077848],[-76.58089670615894,39.27007734998469],[-76.58089053953223,39.27008723100862],[-76.58088437406265,39.27009711203634],[-76.58087821090371,39.27010699397273],[-76.58087204658416,39.2701168759046],[-76.58086588110945,39.27012675693124],[-76.58085971216191,39.27013663704437],[-76.58085353858796,39.27014651533914],[-76.58084735923414,39.27015639091061],[-76.58084117293636,39.27016626465539],[-76.58083497854633,39.27017613476792],[-76.58082877490534,39.27018600124399],[-76.5808225585422,39.27019586317048],[-76.58081632367875,39.27020571782444],[-76.58081007146852,39.27021556611076],[-76.58080380191147,39.27022540802945],[-76.58079751847876,39.27023524449363],[-76.5807912211703,39.27024507550337],[-76.58078491114506,39.27025490106275],[-76.58077858955113,39.27026472297737],[-76.58077225755264,39.27027454035068],[-76.58076590821261,39.27028435045559],[-76.58075954499159,39.27029415600674],[-76.58075317020719,39.27030395701241],[-76.58074678733053,39.27031375438577],[-76.58074040098097,39.27032355084557],[-76.58073401347619,39.27033334640016],[-76.58072762828192,39.27034314286334],[-76.58072124770521,39.27035294204496],[-76.58071487754022,39.27036274396568],[-76.58070851777094,39.27037255132772],[-76.58070217535032,39.270382364156],[-76.58069585142657,39.27039218425604],[-76.58068954947082,39.27040201254105],[-76.58068330878729,39.27041186536519],[-76.58067714672647,39.27042174819501],[-76.58067103438697,39.27043164921729],[-76.58066494169789,39.27044155841631],[-76.58065883975779,39.27045146397889],[-76.58065269965988,39.27046135499266],[-76.58064648903165,39.2704712187312],[-76.58064015931409,39.27048103610508],[-76.58063370703607,39.27049080620105],[-76.58062720619203,39.27050055810794],[-76.58062073194598,39.27051031911706],[-76.5806143594353,39.27052012102359],[-76.58060817423751,39.27052999385846],[-76.58060211043801,39.27053991396637],[-76.58059602351345,39.27054982498372],[-76.58058974234616,39.27055966054341],[-76.5805831998732,39.27056939518445],[-76.58057850251411,39.27057948411046],[-76.58058132861528,39.27058993228745],[-76.58059119099394,39.27059787804095],[-76.58060147426175,39.27060539382933],[-76.58061180174826,39.27061287914864],[-76.58062216530439,39.27062034027514],[-76.5806325556328,39.27062778167947],[-76.58064296806103,39.27063520965017],[-76.58065339445059,39.27064262866217],[-76.58066382550427,39.27065004318605],[-76.58067425538536,39.27065746040707],[-76.5806846759607,39.27066488389924],[-76.58069507908657,39.27067231903818],[-76.58070545893163,39.27067977210841],[-76.58071582133253,39.27068723592454],[-76.58072617906306,39.27069470602849],[-76.58073653098567,39.27070217881307],[-76.58074688057151,39.27070965519142],[-76.5807572278312,39.27071713336209],[-76.58076757392894,39.27072461242842],[-76.58077791887003,39.2707320914897],[-76.58078826613094,39.27073957055831],[-76.58079861456881,39.27074704692789],[-76.5808089676655,39.27075451971007],[-76.58081932309271,39.27076199069815],[-76.58082967851672,39.27076946258597],[-76.58084003395355,39.27077693267143],[-76.58085039171557,39.27078440186349],[-76.58086075297223,39.27079186836474],[-76.58087112005717,39.27079932948127],[-76.58088149296496,39.27080678611384],[-76.58089187402938,39.27081423556842],[-76.58090227838964,39.2708216652883],[-76.58091270488161,39.27082907617013],[-76.58092313836067,39.27083648167137],[-76.58093356252868,39.27084389434455],[-76.58094396223569,39.27085132854787],[-76.58095433982072,39.27085878068666],[-76.58096471158719,39.27086623730762],[-76.58097507868855,39.27087369931555],[-76.58098544114088,39.27088116400827],[-76.58099580242582,39.27088863049742],[-76.58100616138474,39.27089609877885],[-76.58101652150989,39.27090356616275],[-76.58102688280144,39.27091103264911],[-76.58103724643411,39.27091849553984],[-76.58104761587907,39.27092595574801],[-76.58105798999344,39.27093341056735],[-76.58106837225372,39.27094086001017],[-76.58107876966611,39.27094829509384],[-76.58108920201585,39.27095570147667],[-76.58109965417434,39.27096308991388],[-76.58111011098093,39.27097047656515],[-76.58112055265575,39.27097787487149],[-76.58113096173119,39.2709852991828],[-76.5811413475045,39.27099274502848],[-76.58115172628975,39.27100019715368],[-76.581162095764,39.27100765645082],[-76.58117245475779,39.27101512471737],[-76.58118280094273,39.27102260374648],[-76.58119313431884,39.27103009353814],[-76.58120345139908,39.27103759588153],[-76.58121372421714,39.27104513679909],[-76.58122390270925,39.27105275574607],[-76.58123406373595,39.27106038904218],[-76.58124429116931,39.27106796312351],[-76.58125502068357,39.27107509491623],[-76.58126715037065,39.27108021758617],[-76.58128047706936,39.27107750064764],[-76.58128846473727,39.27106872323201],[-76.58129463138324,39.27105884399148],[-76.58130078531217,39.27104895930074],[-76.58130692999525,39.27103907007287],[-76.58131307005189,39.27102917902656],[-76.5813192101069,39.27101928797995],[-76.58132535479547,39.2710093969495],[-76.58133150525525,39.27099950954236],[-76.58133766958747,39.27098962758888],[-76.58134384895088,39.27097975109328],[-76.58135004218676,39.27096988005137],[-76.58135623772787,39.27096001081886],[-76.58136243789733,39.27095014250327],[-76.58136863921854,39.2709402750922],[-76.58137484400929,39.27093040859392],[-76.58138104995177,39.27092054300017],[-76.58138725936902,39.27091067741843],[-76.58139346877398,39.27090081363784],[-76.58139968049483,39.27089094986518],[-76.58140589221397,39.2708810860921],[-76.581412106249,39.27087122232697],[-76.58141831911817,39.2708613594581],[-76.5814245331445,39.27085149659298],[-76.58143074716902,39.27084163372753],[-76.58143696003309,39.27083177085756],[-76.5814431717418,39.27082190708239],[-76.58144938344884,39.27081204330687],[-76.58145559400064,39.27080217862607],[-76.58146180223305,39.27079231393666],[-76.58146800931023,39.27078244834203],[-76.58147421291449,39.2707725818339],[-76.58148041420998,39.27076271351571],[-76.58148660509018,39.2707528424577],[-76.58149278556579,39.27074296685846],[-76.5814989625738,39.27073308944494],[-76.58150513610892,39.270723211118],[-76.58151131079583,39.27071333369551],[-76.58151749010575,39.27070345809074],[-76.58152367750982,39.27069358521672],[-76.58152987647915,39.27068371598666],[-76.5815360904744,39.27067385311513],[-76.58154232180785,39.27066399751115],[-76.58154858436419,39.27065415282729],[-76.5815548735081,39.27064431904701],[-76.58156117999548,39.27063449163348],[-76.58156749341822,39.27062466694665],[-76.58157380799797,39.27061484226358],[-76.58158011216781,39.27060501393998],[-76.58158639783183,39.27059517924469],[-76.58159265575129,39.27058533274028],[-76.58159888360323,39.27057547531918],[-76.58160509064238,39.2705656097167],[-76.58161128148811,39.27055573865154],[-76.58161745961684,39.27054586213617],[-76.58162363196035,39.27053598379826],[-76.58162980199511,39.2705261036503],[-76.58163597549401,39.27051622531586],[-76.58164215476936,39.27050634970394],[-76.58164834676357,39.27049647864079],[-76.58165454685189,39.27048661030844],[-76.58166075156315,39.27047674379373],[-76.58166695858506,39.27046687818768],[-76.58167316791754,39.27045701349026],[-76.58167937840187,39.27044714969738],[-76.5816855877309,39.27043728499929],[-76.58169179474591,39.27042741939179],[-76.58169799944682,39.27041755287497],[-76.58170419952134,39.27040768453976],[-76.58171039381061,39.27039781438205],[-76.58171658000769,39.27038794059215],[-76.58172275347717,39.27037806315347],[-76.58172891885972,39.27036818118182],[-76.58173507961054,39.27035829829255],[-76.58174124035969,39.27034841540298],[-76.58174740457827,39.27033853342611],[-76.58175357572681,39.27032865507667],[-76.58175975959949,39.27031878037528],[-76.58176595734443,39.27030891112753],[-76.58177218283573,39.27029905278744],[-76.58177845688435,39.27028921353605],[-76.58178476215572,39.27027938520463],[-76.58179107088588,39.27026955958749],[-76.58179736227976,39.27025972580137],[-76.58180361204455,39.27024987655361],[-76.58180984099656,39.27024001912447],[-76.58181606647572,39.27023016078186],[-76.58182228848193,39.27022030152577],[-76.58182850817944,39.27021044045956],[-76.58183472555758,39.27020057938473],[-76.58184094062692,39.27019071649982],[-76.58184715337696,39.27018085360629],[-76.58185336497172,39.27017098980755],[-76.58185957541122,39.27016112510358],[-76.58186578469022,39.27015126039509],[-76.58187199396215,39.27014139658704],[-76.58187820323765,39.27013153187783],[-76.58188441251149,39.2701216671683],[-76.58189062294234,39.27011180246252],[-76.58189683452503,39.27010193866126],[-76.58190304725946,39.27009207576452],[-76.58190925999754,39.27008221196669],[-76.58191547272854,39.27007234906923],[-76.58192168430431,39.27006248526654],[-76.5819278947248,39.27005262055863],[-76.58193410282595,39.27004275584211],[-76.58194030977191,39.27003289022035],[-76.58194651555726,39.2700230245941],[-76.58195271787511,39.27001315715366],[-76.58195891325421,39.27000328698583],[-76.58196510168931,39.26999341499146],[-76.58197128896913,39.2699835420918],[-76.58197747740607,39.26997366919594],[-76.58198367046064,39.26996379901848],[-76.58198987392693,39.26995393158001],[-76.58199608895315,39.26994406868618],[-76.58200231553397,39.2699342112377],[-76.58200855136764,39.26992435652411],[-76.58201479182424,39.26991450362815],[-76.58202103343264,39.26990465163674],[-76.58202727273229,39.26989479783519],[-76.58203350508263,39.26988494310778],[-76.58203972934602,39.26987508384745],[-76.5820459397284,39.26986522003348],[-76.58205212929819,39.26985534803818],[-76.58205830036759,39.26984546877062],[-76.5820644610325,39.26983558496184],[-76.5820706170657,39.26982570023544],[-76.58207677772187,39.26981581732667],[-76.58208295109674,39.26980593896668],[-76.58208913834386,39.2697960660603],[-76.5820953313674,39.26978619587644],[-76.58210152901916,39.26977632660945],[-76.58210773013502,39.26976645915595],[-76.58211393356682,39.26975659171038],[-76.58212014046272,39.2697467260783],[-76.5821263485104,39.26973686135072],[-76.58213255887398,39.26972699663107],[-76.5821387692305,39.26971713281176],[-76.58214497958534,39.26970726899211],[-76.58215119109725,39.26969740517625],[-76.58215740376623,39.26968754136413],[-76.58216361874052,39.26967767936143],[-76.58216983487188,39.26966781736245],[-76.58217605216031,39.26965795536726],[-76.58218227175404,39.26964809518145],[-76.58218849366371,39.26963823500353],[-76.58219471903746,39.26962837663913],[-76.58220094672178,39.26961851918336],[-76.58220717440437,39.26960866172719],[-76.58221340208523,39.26959880427069],[-76.582219632082,39.2695889468221],[-76.58222586554281,39.269579091187],[-76.58223210246778,39.26956923736539],[-76.58223834516915,39.26955938626625],[-76.58224459596984,39.26954953699715],[-76.58225085485925,39.2695396913595],[-76.5822571253085,39.26952985026646],[-76.58226343391193,39.26952002372105],[-76.58226977951071,39.26951021171917],[-76.5822761378281,39.26950040426593],[-76.58228248111104,39.2694905913543],[-76.58228878508282,39.26948076298943],[-76.582295033552,39.26947091370914],[-76.58230124271003,39.26946104897566],[-76.58230742873786,39.26945117605267],[-76.58231360899117,39.26944129950569],[-76.5823197973332,39.26943142659024],[-76.58232600879136,39.26942156366508],[-76.58233226072123,39.26941171529577],[-76.58233854849294,39.26940188056506],[-76.58234486053954,39.26939205582877],[-76.58235118646358,39.26938223564532],[-76.58235751469817,39.26937241637044],[-76.58236383367648,39.26936259436003],[-76.58237013184217,39.26935276416835],[-76.58237640225838,39.26934292306838],[-76.58238265649196,39.26933307470441],[-76.58238890840093,39.26932322723257],[-76.58239516378453,39.26931337977273],[-76.58240141916109,39.26930353321325],[-76.58240767569475,39.2692936866576],[-76.58241393107316,39.26928383919667],[-76.58242018644458,39.26927399263612],[-76.58242644181949,39.26926414517447],[-76.58243269602859,39.26925429860913],[-76.58243895140004,39.26924445114675],[-76.5824452067645,39.26923460458477],[-76.58245146213248,39.26922475712168],[-76.58245771749871,39.26921490965825],[-76.58246397285798,39.26920506309516],[-76.58247022822074,39.26919521563097],[-76.58247648241769,39.2691853690631],[-76.58248273777699,39.26917552159821],[-76.5824889931346,39.26916567413294],[-76.58249524732634,39.26915582756394],[-76.58250150268043,39.26914598009795],[-76.58250775802748,39.26913613353237],[-76.58251401337814,39.26912628606567],[-76.58252026756824,39.26911643859449],[-76.58252652291009,39.26910659202778],[-76.5825327770967,39.2690967445559],[-76.58253903244038,39.26908689708777],[-76.58254528777707,39.26907705052],[-76.58255154195848,39.26906720304699],[-76.58255779729694,39.26905735557774],[-76.58256405262837,39.26904750900893],[-76.58257030680457,39.26903766153484],[-76.58257656213789,39.26902781406452],[-76.5825828174641,39.26901796749458],[-76.5825890716351,39.26900812001945],[-76.58259532695784,39.26899827344877],[-76.58260158228416,39.26898842597701],[-76.58260783644994,39.26897857850076],[-76.58261409176754,39.26896873192904],[-76.58262034708865,39.26895888445618],[-76.58262660124922,39.26894903697887],[-76.58263285656156,39.26893919040602],[-76.5826391118775,39.26892934293208],[-76.58264536602758,39.26891949635445],[-76.5826977252692,39.26883554176579],[-76.58277226255456,39.2687173836519],[-76.58284388281508,39.26860376399991],[-76.58288830666893,39.26853270714093],[-76.58308083120207,39.26822548694333],[-76.58315425316432,39.26810917658838],[-76.58370906752823,39.26853290445856],[-76.58381150070602,39.26861124060945],[-76.58389672158962,39.26867603570606],[-76.58387459622517,39.26871041975723],[-76.58373638412675,39.26892802455722],[-76.58362844051774,39.26909869755085],[-76.58353117736515,39.26925317379226],[-76.58346325158678,39.26936092583691],[-76.58333821851063,39.26955922390275],[-76.58324375461942,39.26970962214136],[-76.58317177436993,39.26982368300103],[-76.58306877472127,39.26998693175842],[-76.58301011163958,39.27007984204532],[-76.58300753592977,39.27008391517472],[-76.58300597786784,39.27008637954493],[-76.58300441980582,39.27008884391514],[-76.58300286174892,39.27009130738458],[-76.5830013048455,39.27009377175884],[-76.58299974678313,39.27009623612899],[-76.58299818872068,39.27009870049908],[-76.5829966318222,39.27010116397254],[-76.58299507375946,39.27010362834261],[-76.5829935168555,39.27010609271677],[-76.58299195879259,39.27010855708679],[-76.5829904018884,39.27011102146091],[-76.58298884498409,39.27011348583498],[-76.58298728692617,39.27011594930415],[-76.58298573002165,39.27011841367825],[-76.58298417311701,39.27012087805226],[-76.58298261505342,39.27012334242215],[-76.58298105814858,39.27012580679614],[-76.58297950124363,39.27012827117007],[-76.58297794317976,39.2701307355399],[-76.58297638627458,39.2701331999138],[-76.58297482937459,39.27013566338696],[-76.58297327131035,39.27013812775671],[-76.58297171440485,39.27014059213055],[-76.58297015749925,39.27014305650437],[-76.58296859943474,39.27014552087405],[-76.58296704252892,39.27014798524781],[-76.58296548562299,39.27015044962157],[-76.58296392755815,39.2701529139912],[-76.5829623706573,39.27015537746416],[-76.58296081259218,39.27015784183371],[-76.58295925568582,39.27016030620739],[-76.58295769877935,39.27016277058105],[-76.58295614071397,39.27016523495053],[-76.58295458380729,39.27016769932414],[-76.58295302574699,39.27017016279287],[-76.58295146768121,39.27017262716227],[-76.58294991077422,39.27017509153581],[-76.58294835270829,39.2701775559052],[-76.58294679580635,39.27018001937792],[-76.58294523774018,39.27018248374726],[-76.58294367967392,39.27018494811664],[-76.58294212161285,39.27018741158515],[-76.58294056354633,39.27018987595443],[-76.58293900548506,39.27019233942295],[-76.58293744741839,39.27019480379219],[-76.58293588935683,39.27019726726063],[-76.58293433128993,39.27019973162983],[-76.58293277322822,39.27020219509826],[-76.58293121516107,39.27020465946741],[-76.58292965594032,39.27020712293165],[-76.58292809787299,39.27020958730074],[-76.58292653865199,39.27021205076497],[-76.58292498058974,39.2702145142333],[-76.58292342136853,39.27021697769747],[-76.58292186330077,39.27021944206647],[-76.58292030407932,39.27022190553058],[-76.58291874485778,39.27022436899468],[-76.58291718563619,39.27022683245877],[-76.58291562641442,39.27022929592284],[-76.58291406719256,39.27023175938684],[-76.58291250681182,39.27023422284675],[-76.58291094758974,39.27023668631075],[-76.58290938836755,39.27023914977472],[-76.58290782798645,39.27024161323452],[-76.58290626761053,39.27024407579361],[-76.58290470722919,39.2702465392534],[-76.58290314685311,39.2702490018124],[-76.58290158647156,39.27025146527215],[-76.58290002493635,39.27025392782699],[-76.58289846455989,39.27025639038596],[-76.5828969030245,39.27025885294075],[-76.58289534033023,39.27026131549145],[-76.58289377879458,39.27026377804619],[-76.58289221610006,39.27026624059678],[-76.58289065456425,39.27026870315154],[-76.58288909186948,39.27027116570209],[-76.58288752917994,39.27027362735194],[-76.58288596648494,39.27027608990246],[-76.58288440263632,39.27027855154811],[-76.58288283994646,39.27028101319783],[-76.58288127609232,39.27028347574421],[-76.58287971224338,39.27028593738979],[-76.5828781495532,39.27028839903945],[-76.58287658570404,39.27029086068498],[-76.58287502184947,39.27029332323127],[-76.58287345800011,39.27029578487677],[-76.58287189415061,39.27029824652222],[-76.58287032914222,39.27030070816353],[-76.58286876529252,39.27030316980895],[-76.58286720144271,39.27030563145435],[-76.58286563759285,39.27030809309973],[-76.582864072584,39.27031055474101],[-76.58286250873388,39.27031301638631],[-76.58286094488362,39.27031547803165],[-76.58285937987976,39.27031793877205],[-76.5828578160293,39.27032040041731],[-76.58285625217873,39.27032286206255],[-76.58285468716925,39.27032532370364],[-76.58285312331846,39.27032778534884],[-76.58285155946756,39.270330246994],[-76.58284999561656,39.2703327086392],[-76.58284843176021,39.27033517118506],[-76.582846867909,39.27033763283016],[-76.58284530405766,39.27034009447523],[-76.58284374020623,39.27034255612028],[-76.58284217635467,39.27034501776535],[-76.58284061365659,39.27034748031522],[-76.58283904980482,39.2703499419602],[-76.58277821879682,39.27044664385661],[-76.58272130107646,39.27053743167845],[-76.58264476905325,39.27065925053712],[-76.58256695076446,39.27078258976852],[-76.58248937759149,39.27090597845758],[-76.58243762827991,39.27098799302488],[-76.58239636890805,39.27105286635059],[-76.5823505763704,39.27112496119888],[-76.58226967216545,39.27125440274784],[-76.58222049331755,39.27133296741254],[-76.58212073649574,39.27149423702458],[-76.58207362496286,39.2715707957663],[-76.58204511441733,39.27161723960809],[-76.58204313749353,39.27162017267408],[-76.58204182108004,39.27162271986036],[-76.58204084592607,39.27162537004765],[-76.58204044047788,39.27162809792676],[-76.58204060268845,39.27163085755132],[-76.582041470177,39.27163350078465],[-76.58204281673535,39.27163606645539],[-76.582044534053,39.27163844878847],[-76.58204675333401,39.27164060501399],[-76.58210139182457,39.27168052684192],[-76.58222132550236,39.27176635428636],[-76.58235323805908,39.27186036893229],[-76.58245213669002,39.27193197839942],[-76.58257192258253,39.2720184471974],[-76.58262683122454,39.27205805176405],[-76.58270387492924,39.27211314526222],[-76.58277727100599,39.27216619992741],[-76.58286950899915,39.27223233303433],[-76.5829467478775,39.27228661997571],[-76.58302458458265,39.27234193946398],[-76.58303594580002,39.27235010110689],[-76.58304252821296,39.27235188096985],[-76.58304606847157,39.27235209891305],[-76.58304962305493,39.27235204847873],[-76.58305295968979,39.27235122261169],[-76.58305617344405,39.2723500089789],[-76.58305906690445,39.27234847623856],[-76.58306150200332,39.27234645455645],[-76.58309048059107,39.27230135248062],[-76.58313839667753,39.27222483673969],[-76.58321537198532,39.27210286245193],[-76.58328820029206,39.27198725082093],[-76.58336047640792,39.27187248480382],[-76.58342732490145,39.27176587934608],[-76.58352863449272,39.27160517442919],[-76.58362168778177,39.27145811017771],[-76.58371385251502,39.27131152280647],[-76.5838259850449,39.27113176873834],[-76.58393162450923,39.27096397084575],[-76.58400055032062,39.27085399722687],[-76.58413122888678,39.27064774043134],[-76.58420195458572,39.27053663989539],[-76.58430819343128,39.27036829699788],[-76.58440615241584,39.27021251561387],[-76.58447153143109,39.27010835350553],[-76.58454124385477,39.26999774008429],[-76.58465035487056,39.26982407537883],[-76.58473469969903,39.26969063501004],[-76.58482118659605,39.26955486916333],[-76.58491752080761,39.26940307648051],[-76.58500566134542,39.26946712082249],[-76.58513354271264,39.26955997329159],[-76.58526383014802,39.26965163789639],[-76.58528947190962,39.26966945103041],[-76.58523794291651,39.2697569091561],[-76.58516274334251,39.26988559641125],[-76.58516479502264,39.2698862981494],[-76.58525025877164,39.269915367782],[-76.58524607124698,39.26992400125415],[-76.58538548335365,39.26997277730662],[-76.58554526347513,39.27002790071366],[-76.58543981040032,39.27021288826991],[-76.58535483540504,39.27036306584174],[-76.5852912279495,39.27047559469979],[-76.58524048352001,39.27056275111944],[-76.58517368611372,39.27067693866393],[-76.58511135858804,39.27078372594811],[-76.58503513277074,39.27091547026644],[-76.58492990382051,39.27109754774198],[-76.58483698975034,39.2712574107134],[-76.58476469067737,39.2713819625921],[-76.58471224799446,39.27147294552108],[-76.58464746302026,39.27158356471674],[-76.58457548504855,39.27170858059885],[-76.58449373510902,39.27184905053605],[-76.58441533155104,39.27198400154894],[-76.58435465067568,39.27208883415841],[-76.58426152547288,39.27224987319139],[-76.58421474572187,39.27233044055053],[-76.58416856130488,39.2724094642828],[-76.58425081107055,39.27243885471435],[-76.58433820134175,39.27246989006438],[-76.58444843156495,39.27250873653755],[-76.58452468211637,39.27253494386035],[-76.5845907054546,39.2725576082781],[-76.58464634071872,39.27257708414103],[-76.58470057217816,39.27248416914454],[-76.58479704343357,39.27231681012167],[-76.58487323994142,39.27218486232831],[-76.58498560178705,39.27199099571241],[-76.58508817517954,39.27181516557052],[-76.58521127451364,39.27160236561794],[-76.58529742581786,39.27145307870571],[-76.58539280241162,39.27128813384505],[-76.58546909440128,39.27115691919404],[-76.58559313332285,39.27094317451849],[-76.58569097768101,39.27077650863203],[-76.58580767483876,39.2705755151829],[-76.58590943815311,39.27039919049064],[-76.58595770781945,39.27031575332901],[-76.58602491725701,39.27019979047293],[-76.58605718964888,39.27021017026192],[-76.58611937711841,39.27025560881375],[-76.58620386191016,39.27031637136881],[-76.58629774661664,39.27038422898301],[-76.58638565404678,39.2704469365052],[-76.58646182905271,39.27050095979463],[-76.58653310091925,39.2705512311941],[-76.58658654615172,39.27058958841535],[-76.58668795830151,39.27066182831298],[-76.58662573941176,39.27076528123771],[-76.58656276087191,39.27087139141579],[-76.58649385001746,39.27099041567486],[-76.5864122010682,39.27113185023536],[-76.58635317927127,39.27123460265767],[-76.58629904658936,39.27132820517208],[-76.58620977617201,39.27148275311087],[-76.58613503835353,39.27161153803193],[-76.58605647066142,39.27174600404648],[-76.58597142368987,39.27189273631497],[-76.58592392673935,39.27197424853243],[-76.58587464881342,39.272058881909],[-76.58580548046595,39.27217734995109],[-76.58574877850103,39.27227448494203],[-76.58567893354957,39.27239463585025],[-76.5855967612883,39.27253443666393],[-76.58554134557448,39.27262950882718],[-76.5854914974685,39.27271438412539],[-76.58540775338575,39.27285769133498],[-76.58533425900943,39.27298658188079],[-76.58526712983826,39.27310462351126],[-76.58524335030343,39.27314510462533],[-76.58524094516351,39.27314874783628],[-76.58523936397654,39.27315120494611],[-76.58523796556972,39.27315371764804],[-76.58523679266328,39.27315631311609],[-76.58523584539938,39.27315896702994],[-76.58523513666775,39.27316165511451],[-76.58523465705539,39.27316440165716],[-76.58523461902503,39.27316714075165],[-76.58523510961841,39.27316985108686],[-76.585235963054,39.27317254288663],[-76.58523711603624,39.27317514026306],[-76.58523861725349,39.27317764068582],[-76.58524059477651,39.27317994282054],[-76.58524299595014,39.27318193478636],[-76.58524550533586,39.27318385237071],[-76.58524808102479,39.27318572785315],[-76.5852507044013,39.27318757377869],[-76.58525335802966,39.27318939909336],[-76.58525602213535,39.27319121633808],[-76.58525868044156,39.27319303446304],[-76.58526131666623,39.27319486331911],[-76.58526394940388,39.2731966939644],[-76.58526658563933,39.27319852101889],[-76.58526922420317,39.27320034627999],[-76.58527186393133,39.27320217064439],[-76.5852745059931,39.27320399231468],[-76.58527715037805,39.27320581309233],[-76.5852797947684,39.2732076329692],[-76.58528244148185,39.2732094519534],[-76.5852850870366,39.27321127093347],[-76.58528773375564,39.27321308901681],[-76.5852903804695,39.27321490800092],[-76.58529302602992,39.27321672608004],[-76.58529567157993,39.27321854596061],[-76.58529831597123,39.27322036583706],[-76.58530095919328,39.27322218751082],[-76.58530360008717,39.27322401097785],[-76.58530623981703,39.27322583534146],[-76.58530887605467,39.27322766239497],[-76.58531150995887,39.2732294921425],[-76.58531413920669,39.27323132547657],[-76.58531676379285,39.27323316329792],[-76.58531938488673,39.27323500380926],[-76.58532200481132,39.27323684611789],[-76.58532462241305,39.27323868931903],[-76.58532724001495,39.27324053252012],[-76.58532985877581,39.27324237572522],[-76.58533247870625,39.27324421713289],[-76.58533510097035,39.27324605584643],[-76.58533772788583,39.27324789187403],[-76.58534035830444,39.27324972341009],[-76.58534299454379,39.27325155046282],[-76.58534565742684,39.27325337941112],[-76.58534859694177,39.27325487064807],[-76.58535181421054,39.27325603048297],[-76.58535514639632,39.27325696012743],[-76.58535861338861,39.2732574290557],[-76.58536216526718,39.27325765057298],[-76.5853657153439,39.2732577838087],[-76.58536909169692,39.27325710484108],[-76.58537241664722,39.27325609961471],[-76.58537560269511,39.27325486780564],[-76.58537853997413,39.27325337029313],[-76.58538117809401,39.27325150421202],[-76.58538344201848,39.27324941792381],[-76.58538522793332,39.27324702819156],[-76.58540051000334,39.27322069780929],[-76.58547810771539,39.27308771422085],[-76.58555322535815,39.27295786279581],[-76.58562004309054,39.27284105304855],[-76.58570668720432,39.27269143074022],[-76.58581309575574,39.27250904334574],[-76.58595123081987,39.27227078149172],[-76.58608402115161,39.27204169744682],[-76.58618470778815,39.27186861064931],[-76.58627965226884,39.27170715854388],[-76.58644578294842,39.27142128199504],[-76.58655051018965,39.27123701346311],[-76.58669442603679,39.27128631632157],[-76.58682392621003,39.27133037717249],[-76.58695168378902,39.27137381022221],[-76.58712430073976,39.27143325432736],[-76.58723135008015,39.27147065389941],[-76.58734184436369,39.27150973009312],[-76.58760117519121,39.27160430265909],[-76.58764520548219,39.27162041162853],[-76.58765129240678,39.27162151391913],[-76.58765473294986,39.27162213581743],[-76.58765816994843,39.2716227694131],[-76.58766159986834,39.27162342460228],[-76.58766501446894,39.2716243229444],[-76.58766840846687,39.27162517707651],[-76.58767183379776,39.27162522603366],[-76.58767539655703,39.27162455936416],[-76.58767854341023,39.2716232724081],[-76.58768100168861,39.27162142275807],[-76.58768312951396,39.27161920443526],[-76.58768508209498,39.27161683056543],[-76.5876869927272,39.271614496182],[-76.5876887668511,39.27161212078485],[-76.58769045316444,39.27160970004108],[-76.58769217875799,39.27160730015279],[-76.58769407186571,39.27160499002841],[-76.58769608875505,39.27160271726994],[-76.58769813008473,39.27160042658196],[-76.58770024187348,39.27159817577495],[-76.5877024701087,39.27159602806407],[-76.58770486196285,39.27159404216465],[-76.58770747155091,39.27159227861799],[-76.58771041456372,39.27159077115856],[-76.58771362038505,39.2715895069277],[-76.58771697092266,39.27158846659477],[-76.58772034692032,39.27158763172582],[-76.58772375817965,39.27158711044715],[-76.58772729932291,39.27158697244987],[-76.58773088690064,39.27158702017331],[-76.58773443859612,39.27158706056459],[-76.58773797658428,39.27158706667848],[-76.58774151907704,39.27158709532728],[-76.58774505776351,39.27158718071084],[-76.58774858202058,39.27158735612026],[-76.5877520835374,39.27158765575551],[-76.58775556702794,39.27158806612159],[-76.58775904314156,39.2715885494237],[-76.58776250962342,39.27158909484478],[-76.58776596538264,39.27158969067101],[-76.58776941048731,39.2715903251927],[-76.58777284268253,39.27159098759274],[-76.58777626552853,39.27159166347133],[-76.58777971501762,39.27159234124486],[-76.58778314907021,39.27159308291851],[-76.58778650351037,39.27159396393137],[-76.58778971647462,39.27159506063149],[-76.58779277397829,39.27159638648115],[-76.58779574611201,39.27159784534456],[-76.58779865742605,39.27159940037642],[-76.58780153014773,39.27160101562403],[-76.58780438881692,39.27160265604367],[-76.58780725333803,39.27160428657544],[-76.58781014825607,39.2716058712747],[-76.58781304073099,39.27160747758369],[-76.58781589095913,39.27160917472174],[-76.58781875639365,39.27161084759238],[-76.58782169103215,39.27161237748405],[-76.587824754661,39.27161364660615],[-76.58782800829887,39.27161452456173],[-76.58783145895111,39.27161500236777],[-76.58783502335596,39.27161524907601],[-76.58783861708777,39.27161543463495],[-76.58784215455151,39.27161573079059],[-76.5878456745175,39.27161604670154],[-76.58784921216441,39.27161631133078],[-76.58785275096491,39.27161657686469],[-76.58785626977215,39.27161689277128],[-76.58785975205359,39.27161731213769],[-76.58786317781583,39.2716178853366],[-76.58786653284413,39.27161866546346],[-76.58786981833397,39.27161964621702],[-76.58787305317746,39.27162076731226],[-76.58787625509207,39.27162197116233],[-76.58787944413918,39.27162319568482],[-76.58788263337996,39.27162438687952],[-76.58788571629226,39.27162572812896],[-76.58788880270743,39.27162706488683],[-76.58789200725411,39.27162821469975],[-76.58789524571615,39.27162931148638],[-76.58789849821517,39.27163038580304],[-76.58790174486251,39.27163147000749],[-76.58784603757202,39.27172811498441],[-76.58777081721517,39.27186342888715],[-76.58768067220421,39.27201635796613],[-76.58762483105431,39.27211100626207],[-76.58757833514134,39.27219086704422],[-76.58752335491108,39.27228628756529],[-76.58750753185284,39.27231394856021],[-76.58739604529514,39.2725054696241],[-76.5872971321175,39.27267765207745],[-76.58725453433844,39.27275206867849],[-76.58725943432,39.27275741212668],[-76.58726391748408,39.2727616939085],[-76.58726834037317,39.27276398568664],[-76.58727673069731,39.27276737592877],[-76.58727998189516,39.27277027520898],[-76.58728013667479,39.27277574250056],[-76.58728190535511,39.27277949049698],[-76.58728758083436,39.27278460066841],[-76.58729296958342,39.27279098982022],[-76.58730146630405,39.27279680979976],[-76.58731088518314,39.2728006918687],[-76.58731864117385,39.27280395647394],[-76.58732449748132,39.27280886100355],[-76.58730744237475,39.27284109713214],[-76.58736408739563,39.27286047616658],[-76.58736541410987,39.27285832079148],[-76.58750527296375,39.27290843707013],[-76.58750055937186,39.27291667693405],[-76.58750975295382,39.27291984749134],[-76.58750168124593,39.27293400800431],[-76.5876085792152,39.27297155530209],[-76.58779132413804,39.273035879164],[-76.58794356470959,39.27308908115806],[-76.58796544475575,39.2730974359572],[-76.58802038647798,39.27311623490898],[-76.58808606607823,39.27313890515398],[-76.58815293016723,39.27316236408247],[-76.58816905836585,39.27313443204646],[-76.58828522937625,39.27316916932379],[-76.58829758591759,39.27317449022509],[-76.58830396443749,39.2731776913862],[-76.58831394842331,39.27318546125782],[-76.58832290399131,39.27319491195549],[-76.58833456984524,39.27320063127254],[-76.58835053402802,39.27320515412418],[-76.58835621947853,39.2732103624614],[-76.58836097471014,39.27321750418412],[-76.58836825487397,39.27322609598107],[-76.58837920513707,39.27323390976801],[-76.58838962785499,39.27323717193789],[-76.58840007826747,39.27323745807424],[-76.58841509989045,39.27323465619074],[-76.58842760087136,39.27323226162599],[-76.58844711437725,39.2732302573438],[-76.58846111592433,39.27322849676805],[-76.5884732627283,39.27322802319125],[-76.58849537031608,39.27323013277942],[-76.58850612029333,39.27323111985082],[-76.58851192008262,39.27323000340472],[-76.58851580892716,39.27322687605983],[-76.5885286680123,39.27320709345846],[-76.58861240353262,39.27323734265241],[-76.5886794466559,39.27326174951207],[-76.58870452403374,39.27321575866907],[-76.58874575617949,39.27314040628379],[-76.58878285025692,39.27307058000376],[-76.58881746997679,39.27300616225293],[-76.58884879717176,39.27294535404281],[-76.58888700492278,39.27287049544425],[-76.58892251817923,39.2727998375799],[-76.58899568925983,39.27282623388462],[-76.58901357357703,39.27283257480612],[-76.5890590904697,39.27284871365941],[-76.58911565916493,39.27286894820843],[-76.58915802879322,39.27288424640726],[-76.5892135674697,39.27290445028265],[-76.58925765018434,39.27291971300173],[-76.58928824970076,39.27297533780288],[-76.58932372324796,39.27303842536683],[-76.5893825730809,39.27314253084271],[-76.58941144164876,39.27319470863121],[-76.58943456090579,39.27323488252846],[-76.58939056430623,39.27330302656792],[-76.58938796985383,39.27330697726288],[-76.58935490127982,39.27335734865567],[-76.58931697295574,39.27341320311989],[-76.58930816163242,39.27343246310367],[-76.58929495539887,39.27346159632226],[-76.58928221530292,39.27349128333852],[-76.58927056363457,39.27351912849095],[-76.58925481246361,39.27356867496002],[-76.58930618378422,39.27358856695864],[-76.58927511814156,39.27364204846639],[-76.58922315181701,39.27373333495564],[-76.58915707489162,39.27384877833072],[-76.58911576282988,39.27391972402062],[-76.58910453891934,39.27391650595318],[-76.58909176399484,39.27393877141728],[-76.58910207217528,39.27394282399404],[-76.58907742176778,39.27398472783184],[-76.58905080896925,39.27403229151279],[-76.58904114718926,39.27402928427973],[-76.58903552550787,39.27403025364958],[-76.58900819192458,39.27407719957557],[-76.5890105195307,39.27408271229778],[-76.58902021816877,39.27408656007638],[-76.58897681565362,39.27416102129184],[-76.58892132392837,39.27425837546487],[-76.58887686576159,39.27433498037006],[-76.58885305251268,39.27437616467351],[-76.5888417676736,39.27437225097747],[-76.58883654283058,39.27437433056907],[-76.5888092580167,39.27442121446288],[-76.58881150043997,39.27442622696554],[-76.58882200105104,39.27443008026997],[-76.58879018383833,39.27448633696775],[-76.58877820417759,39.27448172994615],[-76.5887651342413,39.27450427177454],[-76.58877677517978,39.27450833445],[-76.58874618824152,39.27456006549385],[-76.58875889145402,39.27456480746455],[-76.5887298486427,39.2746154548848],[-76.5887138841241,39.27464312003205],[-76.58869971202847,39.27463826842395],[-76.58868820504142,39.27465807648912],[-76.58870343339886,39.27466344433287],[-76.58869889546543,39.27467117412179],[-76.58867423279408,39.27471370926119],[-76.58865738809443,39.27474286298475],[-76.58864335460771,39.27476707324383],[-76.58863110354403,39.27478788304993],[-76.58861657318826,39.27481323643779],[-76.58860354720842,39.27483597296568],[-76.58859051987743,39.27485914095375],[-76.58858159486493,39.27487535769309],[-76.58857532797427,39.27487306311009],[-76.58856406623981,39.27489313414375],[-76.58857024548141,39.27489615443707],[-76.58855968796384,39.27491369678692],[-76.58854080572719,39.27494685716436],[-76.58849582796999,39.27502578226508],[-76.58847629917051,39.2750597114209],[-76.58846176119845,39.27505458917422],[-76.58845063159941,39.27507504618661],[-76.58846427909216,39.27507964287071],[-76.58845601064539,39.27509474495147],[-76.58844130724768,39.27512113809323],[-76.58845216828161,39.27512500620405],[-76.5884653542859,39.27512944543851],[-76.58848890968957,39.27513759702541],[-76.58848162158321,39.27515051998866],[-76.58850837732034,39.27516017895554],[-76.58851628276261,39.27514731940555],[-76.58853603149038,39.27515420558289],[-76.58855566271318,39.27516117061258],[-76.5885466520164,39.27517576747223],[-76.58857189198928,39.27518541030533],[-76.58858120829595,39.27516987321479],[-76.58859848891417,39.27517609227674],[-76.58861090668621,39.27515512632687],[-76.58862268615313,39.27513571286054],[-76.58861432386396,39.27512742805868],[-76.58863142997855,39.27509837974854],[-76.58865750347994,39.27505260140435],[-76.58868605831471,39.27500340523297],[-76.58870982601672,39.27496173439722],[-76.58873736580165,39.27491389661475],[-76.58876269106069,39.27487042158403],[-76.58879084857637,39.27482156718546],[-76.58881909827417,39.27477259780427],[-76.58885931490954,39.27470303197445],[-76.58888116761719,39.27466500609979],[-76.58889890695872,39.27463404043332],[-76.58892625153821,39.27464425623942],[-76.58895687533995,39.27465556263228],[-76.58896756303452,39.27465953728054],[-76.58898493466563,39.27465403044361],[-76.58899674966443,39.27465666058864],[-76.5889236085569,39.27479619347007],[-76.58909162280021,39.27485786678955],[-76.58910926553365,39.27486438880021],[-76.58912584596062,39.27487043779331],[-76.58914539582707,39.2748776393417],[-76.58916520241903,39.27488473729606],[-76.58918071326323,39.27489036998961],[-76.58919568240773,39.27489588638916],[-76.58920287754717,39.27489839316318],[-76.58921529135043,39.2749030953386],[-76.58920639160601,39.27492297832731],[-76.58919757717594,39.27494273730805],[-76.58918973980614,39.27496027841875],[-76.5891841376211,39.27497308031469],[-76.58918940669417,39.27497497683988],[-76.58919742212221,39.27497732434557],[-76.58920656879742,39.27495702877025],[-76.58921896711882,39.27492977624761],[-76.58922603712971,39.27491466181471],[-76.5892394094019,39.27488332412283],[-76.58925168376361,39.27485525867249],[-76.58924556387819,39.27485078929151],[-76.58925915278373,39.27482386700462],[-76.58927451824262,39.27483018916355],[-76.58927181249338,39.27483473667249],[-76.58927036665014,39.27483725465953],[-76.58926896246452,39.27483978360149],[-76.58926769487228,39.274842340044],[-76.58926668541162,39.27484494963362],[-76.58926619450092,39.27484767092994],[-76.58926596876397,39.274850430085],[-76.58926576166846,39.27485317219071],[-76.58926563450554,39.2748559199805],[-76.5892656394674,39.27485866643084],[-76.58926578467157,39.2748614106693],[-76.58926593324294,39.27486417383564],[-76.58926615251745,39.27486693544768],[-76.58926653303531,39.27486967060067],[-76.58926716882357,39.2748723526004],[-76.58926806079096,39.27487502468682],[-76.58926907983049,39.27487776747731],[-76.58927028219499,39.27488047307675],[-76.58927173113763,39.27488302550757],[-76.5892734933778,39.27488531060602],[-76.58927577885729,39.27488709760953],[-76.58927915801713,39.27488794263414],[-76.58928289793202,39.27488853040061],[-76.589286084002,39.2748896981245],[-76.58928869746575,39.27489148357238],[-76.58929127781839,39.27489338330157],[-76.58929377873515,39.27489539174558],[-76.58929615274296,39.27489750153214],[-76.58929835351718,39.27489970709482],[-76.58930033588678,39.27490200377176],[-76.58930205354275,39.27490438329419],[-76.58930355294007,39.27490682871001],[-76.58930494661183,39.27490931969512],[-76.58930625198846,39.27491184820362],[-76.58930748067974,39.27491441067306],[-76.58930864779299,39.27491699995007],[-76.58930976610232,39.27491961157556],[-76.58931084955607,39.27492223839217],[-76.58931191209241,39.27492487504404],[-76.58931296880303,39.27492751708012],[-76.58931403131866,39.27493015733497],[-76.58931511473104,39.2749327913575],[-76.58931623298866,39.27493541199038],[-76.58931740002443,39.27493801477853],[-76.58931862746377,39.2749405934572],[-76.58931991878345,39.27494314803859],[-76.58932122867691,39.27494569728028],[-76.58932255482111,39.27494824207493],[-76.58932389837493,39.27495078242664],[-76.58932525817954,39.27495331833132],[-76.58932663772198,39.27495584799968],[-76.58932803468454,39.27495837142352],[-76.58932945254911,39.27496088771435],[-76.58933089015159,39.2749633977688],[-76.58933234866124,39.27496589978944],[-76.58933382924218,39.27496839287958],[-76.58933533188932,39.27497087793998],[-76.58933685777184,39.27497335317317],[-76.58933840107449,39.27497582216188],[-76.58933993621282,39.2749783001297],[-76.58934146086902,39.2749807870685],[-76.58934297852504,39.27498328208962],[-76.58934449267312,39.27498578250315],[-76.58934600564159,39.27498828651556],[-76.58934752092797,39.27499079053601],[-76.58934904085528,39.27499329367195],[-76.5893505700695,39.27499579413799],[-76.58935210975044,39.27499828833528],[-76.58935366338002,39.27500077537519],[-76.5893552356094,39.27500325257171],[-76.58935682760803,39.27500571812737],[-76.58935844286812,39.27500816935209],[-76.58936008487693,39.2750106044565],[-76.58936175712148,39.27501302165135],[-76.58936346193522,39.2750154182424],[-76.58936520165169,39.27501779153559],[-76.58936698091162,39.27502014064632],[-76.58936880204844,39.27502246288053],[-76.58937066739567,39.27502475554397],[-76.58937258159409,39.27502701775215],[-76.58937459234103,39.27502921814508],[-76.58937684848149,39.27503126986891],[-76.58937932327733,39.27503318724236],[-76.58938197485696,39.27503499624121],[-76.58938475903098,39.27503672283316],[-76.58938763393819,39.27503839119252],[-76.58939055770183,39.27504002819588],[-76.58939348614291,39.27504165800935],[-76.58939637622572,39.27504330750548],[-76.58939918724795,39.27504500086268],[-76.58940193201495,39.27504672821721],[-76.5894046954287,39.27504843762156],[-76.58940747516107,39.27505013086914],[-76.589410267704,39.27505181335227],[-76.58941306840629,39.27505348775696],[-76.58941587261148,39.27505515767],[-76.58941867681679,39.27505682758296],[-76.5894214775247,39.27505850108669],[-76.5894242712376,39.27506018177203],[-76.58940006351186,39.27510045412484],[-76.58938885834752,39.27509616514217],[-76.58933894447189,39.27518609326245],[-76.58929236202881,39.27527167871079],[-76.58923094058252,39.27537527348229],[-76.58920717652462,39.27541514290053],[-76.5891978923619,39.27543195203187],[-76.58918402781227,39.27545741770697],[-76.58919010393932,39.27545944496319],[-76.58919338626447,39.27546060581989],[-76.58919668215238,39.27546182617436],[-76.58919904156825,39.27546365667435],[-76.58920055824279,39.27546612196833],[-76.58920152045999,39.27546887176629],[-76.58920201566347,39.27547161542695],[-76.58920224908421,39.2754743356529],[-76.58920232825031,39.27547707605693],[-76.5892023134718,39.27547982874309],[-76.58920226736629,39.27548258762506],[-76.58920225023351,39.27548534660832],[-76.58920232237836,39.27548809869773],[-76.58920253946492,39.27549083778258],[-76.58920283538859,39.27549357173863],[-76.5892031707308,39.27549630313023],[-76.58920353968654,39.27549903373861],[-76.58920393530768,39.27550176263874],[-76.58920435064068,39.27550448980627],[-76.58920477872174,39.27550721701838],[-76.5892052149204,39.27550994335811],[-76.58920565112432,39.27551266879713],[-76.58920608036956,39.27551539511249],[-76.58920650266663,39.27551812050285],[-76.58920693423501,39.27552084592565],[-76.58920737624399,39.27552356958338],[-76.58920782752953,39.27552629237277],[-76.58920828345073,39.27552901517841],[-76.58920874169502,39.27553173709138],[-76.58920920109301,39.27553445990917],[-76.58920965817843,39.27553718181811],[-76.58921011177671,39.27553990551636],[-76.58920864524131,39.27554099031276],[-76.58920722831989,39.27554211311481],[-76.58920586332505,39.27554327483131],[-76.58920455027774,39.27554447185934],[-76.58920329033674,39.27554570420291],[-76.58920208815346,39.27554696917606],[-76.58920094257415,39.27554826587393],[-76.58919985476295,39.27554959339986],[-76.58919882705848,39.27555094815892],[-76.5891978617734,39.27555233106002],[-76.58919695776966,39.27555373849614],[-76.58919611736511,39.27555517047531],[-76.58919534173948,39.27555662339867],[-76.58919463089798,39.27555809636544],[-76.5891939871689,39.27555958758224],[-76.58919341055741,39.27556109614834],[-76.5891929010844,39.2755626184607],[-76.58919245991403,39.27556415362267],[-76.5891920870515,39.27556570073354],[-76.58919178483548,39.27556725619837],[-76.58919155211753,39.27556881821164],[-76.5891913888976,39.27557038677333],[-76.58919129519657,39.27557195828048],[-76.58919127217858,39.27557353183639],[-76.58919131986454,39.27557510383807],[-76.58919143824917,39.27557667518625],[-76.58919162619968,39.27557824137318],[-76.58919188372127,39.27557980149807],[-76.58919221081918,39.27558135466023],[-76.58919260751425,39.27558289725661],[-76.58919307265278,39.27558442838245],[-76.58919360624529,39.27558594623618],[-76.58919420714838,39.27558744811162],[-76.5891948742085,39.27558893310392],[-76.58919560743603,39.27559039941158],[-76.58919640684137,39.27559184523307],[-76.58919726895823,39.2755932687548],[-76.58919819496124,39.27559466727853],[-76.58919918253248,39.2755960407962],[-76.5892002316877,39.27559738660553],[-76.58920133896051,39.27559870289291],[-76.5892025055151,39.27559998876161],[-76.58920372788516,39.2756012423979],[-76.58920500607586,39.27560246290118],[-76.58920633778513,39.27560364756101],[-76.58920772185913,39.27560479547262],[-76.58920915714951,39.27560590483045],[-76.58921064017953,39.27560697562231],[-76.58921216980062,39.27560800604272],[-76.58921374602846,39.27560899338934],[-76.58921536422224,39.27560993854681],[-76.58921702323867,39.27561083880877],[-76.58921872307774,39.27561169417526],[-76.5892204591142,39.2756125028285],[-76.58922223018918,39.27561326476449],[-76.58922403399532,39.2756139781736],[-76.58922586937888,39.2756146421511],[-76.58922773286832,39.27561525578399],[-76.58922962214584,39.27561581906425],[-76.58923422508965,39.27561888064857],[-76.58923689879023,39.27562067531545],[-76.58923957015217,39.27562247357718],[-76.58924223918611,39.2756242736322],[-76.58924490938421,39.27562607279049],[-76.58924758192116,39.2756278683538],[-76.58925026143778,39.27562965943765],[-76.58925294911906,39.27563144154234],[-76.5892556461343,39.27563321287042],[-76.58925835712442,39.2756349725374],[-76.58926108326916,39.27563671694426],[-76.58926382689674,39.27563844429769],[-76.58926658800721,39.27564015459765],[-76.58926936076428,39.27564185502987],[-76.58927214516271,39.2756435464951],[-76.58927493889513,39.27564522718369],[-76.58927774427414,39.27564689800455],[-76.58928056014605,39.27564855805281],[-76.58928338766978,39.27565020733257],[-76.5892862245379,39.27565184403428],[-76.58928907305783,39.27565346996746],[-76.58929193324005,39.27565508333061],[-76.5892948027666,39.2756566841157],[-76.58929768396065,39.27565827143005],[-76.58930057566326,39.27565984526955],[-76.58930348602844,39.27566139845669],[-76.58930641972837,39.27566292470235],[-76.58930937441923,39.27566442850225],[-76.58931234661375,39.27566591164566],[-76.58931533396287,39.27566737952904],[-76.5893183306564,39.27566883483422],[-76.58932133551453,39.27567028116028],[-76.58932434503454,39.27567172299875],[-76.58932735457033,39.27567316213486],[-76.58933036293165,39.27567460396911],[-76.58933337012897,39.27567604669995],[-76.58933644248091,39.27567744552103],[-76.58933957883896,39.27567879862683],[-76.58934275709524,39.27568012125302],[-76.58934595164411,39.27568143222616],[-76.58934913922918,39.27568274497637],[-76.58935229656802,39.2756840774376],[-76.58935539923488,39.27568544483743],[-76.58935842279867,39.27568686330419],[-76.5893613439822,39.27568834987106],[-76.5893641383597,39.27568991976568],[-76.58936678265914,39.27569158912042],[-76.58936919524059,39.27569344682565],[-76.58937113708836,39.27569574065679],[-76.58937262162306,39.27569835446219],[-76.58937368912859,39.27570113615338],[-76.58937438222232,39.27570393094781],[-76.58937471908028,39.27570660199278],[-76.58937449504586,39.27570926747372],[-76.58937380839717,39.2757119673679],[-76.58937285394592,39.2757146825396],[-76.58937183114486,39.27571739296853],[-76.58937093365219,39.27572007861405],[-76.58936992981582,39.27572271614728],[-76.58936885189772,39.27572533810847],[-76.58936803087734,39.27572802672368],[-76.58936813909587,39.27573075461824],[-76.58937054851637,39.27573275823623],[-76.58937367050659,39.27573419145893],[-76.58937695838303,39.27573559733779],[-76.58938032415716,39.27573635944196],[-76.58938366151844,39.27573602341426],[-76.58938699370378,39.27573538020757],[-76.58939032917641,39.27573456946996],[-76.58939366767574,39.2757336362388],[-76.58939701010527,39.27573262465476],[-76.58940035620427,39.27573157975512],[-76.5894037057121,39.27573054657726],[-76.58940706185018,39.27572956926994],[-76.5894104220765,39.27572868655708],[-76.58941378274578,39.2757277272807],[-76.58941714177476,39.27572665089904],[-76.5894205022701,39.27572552137724],[-76.58942386617949,39.2757244026765],[-76.58942723545594,39.27572335785712],[-76.58943061437026,39.27572244998763],[-76.58943400255238,39.27572174302102],[-76.58943740427833,39.27572129912497],[-76.58944082032654,39.27572118405813],[-76.58944425198635,39.27572137530584],[-76.58944769254747,39.27572163053885],[-76.58945114097597,39.27572192813523],[-76.58945459611827,39.27572226719015],[-76.5894580556721,39.27572264499324],[-76.58946152196053,39.27572306065196],[-76.58946499152255,39.27572351145182],[-76.58946846436325,39.2757239964921],[-76.58947193818048,39.27572451306249],[-76.58947541413841,39.27572506026624],[-76.58947889109373,39.27572563539709],[-76.58948236673388,39.27572623754621],[-76.58948584106923,39.27572686491202],[-76.58948931295654,39.27572751478839],[-76.58949278240105,39.27572818627441],[-76.58949624593639,39.2757288775565],[-76.58949970589602,39.27572958594056],[-76.58950315996212,39.27573031141841],[-76.58950660584301,39.27573104947832],[-76.58951004585123,39.27573180102904],[-76.58951347536676,39.27573256335218],[-76.58951689672307,39.27573333375356],[-76.58952030644865,39.27573411132033],[-76.58952370571286,39.27573489425506],[-76.58952709220824,39.2757356807481],[-76.58953046824226,39.27573647260904],[-76.58953383956771,39.27573727706416],[-76.58953720618986,39.27573809321272],[-76.58954056810349,39.27573892195542],[-76.58954392531903,39.27573976149073],[-76.58954728014906,39.27574061272763],[-76.58955063029144,39.27574147295565],[-76.58955397689462,39.2757423439804],[-76.58955731996903,39.27574322400037],[-76.58956065951469,39.27574411301557],[-76.58956399669573,39.27574501012931],[-76.58956733035318,39.2757459153375],[-76.5895706616565,39.27574682684275],[-76.58957399060031,39.27574774554572],[-76.58957731718995,39.27574867054577],[-76.58958064142536,39.27574960184287],[-76.58958396447589,39.27575053763951],[-76.58958728518269,39.27575147793171],[-76.58959060470455,39.27575242272352],[-76.58959392304679,39.27575337111416],[-76.58959724021453,39.27575432220289],[-76.58960055620261,39.27575527689046],[-76.58960387102668,39.27575623247463],[-76.58960718583522,39.27575719076097],[-76.58961049948493,39.27575814904319],[-76.58961381428323,39.27575910913079],[-76.58961712792788,39.27576006831355],[-76.58962044273156,39.27576102750025],[-76.58962375638684,39.27576198488132],[-76.58962707236523,39.27576294136962],[-76.58963038719521,39.2757638960523],[-76.58963370435877,39.27576484804076],[-76.58963702269691,39.27576579733092],[-76.58964034106123,39.27576674211726],[-76.5896436617643,39.27576768330862],[-76.58964698481131,39.27576862000423],[-76.58965030904336,39.27576955220011],[-76.58965363447092,39.27577047809466],[-76.58965696341691,39.27577139679533],[-76.5896582024325,39.27577157767395],[-76.58965944264867,39.27577175135071],[-76.58966068522437,39.27577191782955],[-76.58966192783649,39.27577207800315],[-76.58966317280817,39.27577223097885],[-76.58966442013934,39.27577237675666],[-76.58966566750694,39.27577251622924],[-76.5896669160752,39.2757726484999],[-76.58966816584399,39.2757727735686],[-76.5896694179723,39.27577289143942],[-76.58967067013708,39.27577300300498],[-76.58967192234354,39.27577310736458],[-76.58967317690431,39.27577320542704],[-76.58967443267088,39.27577329538676],[-76.5896756884739,39.27577337904133],[-76.5896769443186,39.27577345548985],[-76.58967820135865,39.2757735256372],[-76.58967945960455,39.27577358768185],[-76.58968071788686,39.27577364342126],[-76.58968197736459,39.27577369285947],[-76.58968323573031,39.27577373418691],[-76.58968449529137,39.27577376921315],[-76.58968575605822,39.27577379613673],[-76.58968701569744,39.27577381765173],[-76.58968827654242,39.27577383106405],[-76.58968953626497,39.27577383816711],[-76.5896907971933,39.2757738371675],[-76.589692056994,39.27577383075931],[-76.58969331800046,39.27577381624845],[-76.58969457788969,39.27577379452755],[-76.5896958378154,39.27577376650139],[-76.58969709662381,39.27577373126523],[-76.58969835662764,39.27577368972786],[-76.58969961551945,39.27577364007972],[-76.58970087328876,39.27577358412226],[-76.58970213109976,39.27577352095883],[-76.58970338895247,39.27577345058941],[-76.58970464568269,39.27577337391069],[-76.58970590129563,39.27577329002197],[-76.58970715579137,39.27577319892319],[-76.58970841032875,39.27577310061844],[-76.58970966258478,39.27577299600034],[-76.58971091488249,39.27577288417625],[-76.58971216606291,39.27577276514213],[-76.58971341612089,39.27577263979872],[-76.58971466506163,39.27577250724527],[-76.58971591288515,39.27577236748179],[-76.58971715959137,39.27577222050829],[-76.58973320874112,39.27574933679008],[-76.58975919712067,39.27570336605154],[-76.58979623647419,39.27563705049334],[-76.58979799703744,39.27563341755182],[-76.58979919683223,39.27563075998174],[-76.58980054092835,39.27562820019819],[-76.5898022024801,39.27562585680616],[-76.58980445629268,39.27562390641458],[-76.58980748479701,39.27562246675987],[-76.58981081903758,39.27562126597485],[-76.58981401209418,39.27562002956678],[-76.58981715917953,39.27561872634149],[-76.58982032704704,39.27561743670016],[-76.58982353033036,39.27561623545738],[-76.58982678366311,39.27561519742778],[-76.58983010283271,39.27561439833071],[-76.58983354608954,39.27561398609503],[-76.58983709634684,39.27561390931747],[-76.58984068615065,39.2756140083271],[-76.58984424457013,39.27561412344075],[-76.58984780464323,39.27561415298742],[-76.58985139142332,39.27561417361963],[-76.58985495558534,39.27561429776063],[-76.58985844783027,39.27561463333024],[-76.58986181884865,39.27561529004942],[-76.5898650710417,39.27561625351449],[-76.5898682466977,39.27561742568965],[-76.58987137639616,39.2756187292159],[-76.58987448954716,39.27562008853175],[-76.58987761789949,39.27562142448068],[-76.58988079201696,39.27562266240594],[-76.58988402715804,39.27562376903256],[-76.58988727970367,39.27562487211676],[-76.58989055089611,39.2756259572507],[-76.58989384556882,39.27562699022216],[-76.58989716854488,39.27562793862044],[-76.5899005258114,39.27562876913814],[-76.58990392336085,39.27562944756716],[-76.5899073760143,39.27563001629517],[-76.58991088233691,39.27563052305764],[-76.58991442506995,39.27563094617602],[-76.58991798347279,39.27563126486027],[-76.58992153797927,39.27563145562218],[-76.58992506900239,39.27563149857654],[-76.58992855696565,39.27563137203665],[-76.58993198385222,39.27563098496235],[-76.58993535718821,39.27563023829581],[-76.58993869825879,39.27562925911914],[-76.58994202598456,39.27562818261319],[-76.58994536277332,39.27562714216938],[-76.58994872986342,39.27562627297661],[-76.58995214732933,39.27562571112044],[-76.58995562297112,39.275625510674],[-76.589959142306,39.27562557070107],[-76.58996268970266,39.27562578845986],[-76.58996624837614,39.27562606030383],[-76.58996980502329,39.27562628169777],[-76.58997334285911,39.2756263489951],[-76.5899768553726,39.27562618560814],[-76.58998037889921,39.27562592137384],[-76.58998390633978,39.27562558148882],[-76.58998742271172,39.27562515148856],[-76.58999090839163,39.27562461779314],[-76.58999434606348,39.27562396863208],[-76.58999772073955,39.27562319044164],[-76.59000103237811,39.27562229042776],[-76.59000431552273,39.27562130744395],[-76.59000757357718,39.27562025411285],[-76.59001080648427,39.27561914034262],[-76.59001401766342,39.27561797605357],[-76.5900172105237,39.27561677296762],[-76.59002038616678,39.27561554099703],[-76.59002354800691,39.27561429096285],[-76.59002669598163,39.27561303367408],[-76.59002983468497,39.27561177635287],[-76.59003296075991,39.27561049826986],[-76.59003607075569,39.27560919490925],[-76.59003916583129,39.27560786627506],[-76.59004224366362,39.27560651325999],[-76.59004530309902,39.27560513495914],[-76.59004834297332,39.27560373226933],[-76.59005136328135,39.27560230609124],[-76.59005436286942,39.27560085552008],[-76.59005733940926,39.27559938234932],[-76.59006031369879,39.27559789746065],[-76.59006328689176,39.27559640175893],[-76.59006624859958,39.27559488800169],[-76.5900691884337,39.2755933489467],[-76.59007209831296,39.27559177916102],[-76.59007496900774,39.27559017140641],[-76.59007778897058,39.27558851843639],[-76.59008055012031,39.27558681481823],[-76.59008324323767,39.27558505151207],[-76.59008586715339,39.27558323031538],[-76.59008843920948,39.2755813584948],[-76.59009096399467,39.27557944417324],[-76.59009344842609,39.27557749368017],[-76.59009590173326,39.27557551425395],[-76.59009832852074,39.27557351131524],[-76.59010073569509,39.27557149299503],[-76.59010313249632,39.27556946473018],[-76.59010552351847,39.27556743374278],[-76.59010791682711,39.27556540816791],[-76.59011031934966,39.27556339253358],[-76.59011271608271,39.27556137597823],[-76.59011507587621,39.27555933407245],[-76.59011740797024,39.27555727225321],[-76.59011972390704,39.27555519866754],[-76.59012203292154,39.27555311965307],[-76.59012434424322,39.27555104244815],[-76.59012666826077,39.27554897429513],[-76.59014034940098,39.2755104638933],[-76.59014160315489,39.27550869466222],[-76.59014362060775,39.27550853686229],[-76.59017634370544,39.27551865584362],[-76.59026460912142,39.27554594981117],[-76.59033725287534,39.27556670191687],[-76.59043320610107,39.27559411264757],[-76.59055059598113,39.27562778628667],[-76.59060282187238,39.27564270125043],[-76.59068962252064,39.27566440324696],[-76.59072940814151,39.27567435121932],[-76.59073659806971,39.27567175684867],[-76.59074484957885,39.27567478875101],[-76.59063209363218,39.27586837912092],[-76.59058280634953,39.27595072188689],[-76.5905853728389,39.2759572460651],[-76.59067973623844,39.27597367432738],[-76.59086313283319,39.27600498706185],[-76.59108104879088,39.27604089649645],[-76.59123508519016,39.27606596140816],[-76.59143708250275,39.27609901790377],[-76.59157808337784,39.27612247149008],[-76.59168556956872,39.27614016961345],[-76.59186886176245,39.27617023915626],[-76.59201751040425,39.27619557256182],[-76.59203071342269,39.27619410243589],[-76.59214203318636,39.27600461865789],[-76.59219467745118,39.27591539334823],[-76.59227662393667,39.27577759961371],[-76.59233680356257,39.27567359632392],[-76.59239843820082,39.27556765059664],[-76.59246584709929,39.27545089767635],[-76.59252966447224,39.27534016107363],[-76.59259136964923,39.27523656377557],[-76.59262837324474,39.27524924428483],[-76.59269517794341,39.27527275263908],[-76.59269958176027,39.27527418481399],[-76.59270284154563,39.27527524280713],[-76.59270610134142,39.27527629899863],[-76.59270936346026,39.2752773542974],[-76.59271262558441,39.27527840869529],[-76.59271588771897,39.27527946129157],[-76.59271915101772,39.27528051299112],[-76.59272241548581,39.27528156289301],[-76.59272567879509,39.27528261279084],[-76.59272894442742,39.27528366179587],[-76.59273220890614,39.27528470989605],[-76.59273547454383,39.27528575800014],[-76.59273874018685,39.27528680520338],[-76.59274200699397,39.27528785150981],[-76.59274527264235,39.27528889781211],[-76.59274853944966,39.27528994411839],[-76.59275180625711,39.27529099042452],[-76.5927550719109,39.27529203582582],[-76.59275833871855,39.27529308213185],[-76.59276160552625,39.27529412843769],[-76.59276487117521,39.27529517473949],[-76.59276813681903,39.27529622194194],[-76.59277140362191,39.27529726914825],[-76.59277466810704,39.2752983163465],[-76.59277793374082,39.27529936535012],[-76.59278119821582,39.2753004143497],[-76.59278446268573,39.27530146424989],[-76.59278772599167,39.27530251504673],[-76.59279098929255,39.27530356674425],[-76.59279425258831,39.27530461934236],[-76.59279751355604,39.27530567373387],[-76.59280077567763,39.27530672903008],[-76.59280403547633,39.27530778521891],[-76.59280729525958,39.27530884410983],[-76.59281055387889,39.27530990389744],[-76.59281381133421,39.27531096458171],[-76.59281706877411,39.27531202796808],[-76.59282032388599,39.27531309314785],[-76.59282357898763,39.27531416012899],[-76.5928268317612,39.27531522890353],[-76.59283008451935,39.27531630038021],[-76.59283333494945,39.27531737365022],[-76.59283658536935,39.27531844872168],[-76.59283983345078,39.27531952738797],[-76.59284308036315,39.27532060785169],[-76.59284632494227,39.27532169100952],[-76.59284956950599,39.27532277686949],[-76.59285281173646,39.27532386542356],[-76.59285605163376,39.27532495667177],[-76.59285929151046,39.27532605152284],[-76.59286252789499,39.27532714906405],[-76.59286576310528,39.27532824930337],[-76.59286899713607,39.27532935314159],[-76.59287222882332,39.2753304614754],[-76.59287545817216,39.27533157340412],[-76.59287868402372,39.27533268892362],[-76.59288190869063,39.2753338089428],[-76.59288513101916,39.27533493255682],[-76.5928883521682,39.27533605976974],[-76.59289156981998,39.27533719057351],[-76.59289478629745,39.27533832407538],[-76.5928980015954,39.27533946117618],[-76.59290121455501,39.2753406018718],[-76.59290442518656,39.27534174436079],[-76.59290763579759,39.27534289045272],[-76.59291084407532,39.27534403923875],[-76.59291405118398,39.27534518982219],[-76.59291725595938,39.27534634309971],[-76.59292046071943,39.2753474990794],[-76.5929236631514,39.2753486568525],[-76.59292686557313,39.27534981642695],[-76.59293006682576,39.27535097779882],[-76.59293326575032,39.27535214096404],[-76.59293646582358,39.2753533059347],[-76.59293966357396,39.27535447179801],[-76.59294286131927,39.27535563856192],[-76.5929460578954,39.27535680712329],[-76.59294925446655,39.27535797658525],[-76.59295244987366,39.2753591469439],[-76.59295564527578,39.27536031820318],[-76.59295884067278,39.27536149036316],[-76.59296203606988,39.27536266252302],[-76.59296523030821,39.27536383467877],[-76.59296842454151,39.2753650077352],[-76.59297161993894,39.27536617989483],[-76.59297481417241,39.27536735295106],[-76.59297800841115,39.27536852510649],[-76.59298120380889,39.27536969726582],[-76.59298439921196,39.27537086852431],[-76.59298759462024,39.275372038882],[-76.59299079002862,39.2753732092396],[-76.59299177999607,39.27537357117455],[-76.59299398660123,39.27537437870039],[-76.59299718434318,39.27537554636356],[-76.59300038209038,39.27537671312594],[-76.59300358100175,39.27537787899146],[-76.59300677992356,39.27537904305546],[-76.59300998001476,39.27538020532185],[-76.59301318127009,39.27538136669144],[-76.59301638369995,39.27538252536272],[-76.59301958729914,39.27538368223641],[-76.59308778190541,39.27540575936257],[-76.59322235632922,39.27545820685702],[-76.59324109549212,39.27546500857617],[-76.59325390757546,39.27546964054153],[-76.59326672316818,39.27547426711305],[-76.59327953994213,39.27547889008422],[-76.5932923543793,39.27548351664893],[-76.59330516529495,39.27548815130694],[-76.59331796919685,39.27549279674843],[-76.59333076141327,39.27549745926257],[-76.59334354192352,39.27550214245235],[-76.59335630489699,39.27550685260299],[-76.59336905031816,39.27551159241665],[-76.59338177352041,39.27551636728187],[-76.59339447567305,39.27552117540112],[-76.59340716027343,39.27552601318343],[-76.59341983083961,39.27553087343491],[-76.593432488546,39.27553575345733],[-76.59344513806427,39.27554064696148],[-76.59345778289713,39.27554554945569],[-76.5934704242343,39.27555045553951],[-76.59348306673216,39.27555536162598],[-76.59349571274458,39.27556026141785],[-76.59350836461009,39.27556515132021],[-76.59352130052935,39.27556900992778],[-76.59353441928432,39.27556502710843],[-76.59354681642637,39.27555976000215],[-76.59355919289197,39.27555446039545],[-76.59357155325483,39.27554913911338],[-76.593583900971,39.27554379977093],[-76.59359623718908,39.27553844417366],[-76.59360856420628,39.27553307593252],[-76.5936208820122,39.27552769684902],[-76.59363319407333,39.27552230873675],[-76.59364550153309,39.27551691430188],[-76.59365780669377,39.2755115162547],[-76.593670110704,39.27550611640076],[-76.59368241586093,39.27550071835098],[-76.59369472331319,39.27549532391095],[-76.59370703535795,39.27548993669163],[-76.59371935430788,39.27548455760175],[-76.59373168130124,39.27547919024832],[-76.59374401749177,39.27547383553618],[-76.59375635942344,39.27546848985025],[-76.59376870711681,39.27546314958747],[-76.59378105594659,39.27545781293045],[-76.59379340362598,39.27545247446659],[-76.5938057501549,39.2754471341959],[-76.59381809783052,39.27544179572944],[-76.59383044780667,39.27543645997191],[-76.59384279778089,39.27543112421309],[-76.59385514774817,39.27542578935369],[-76.59386749655984,39.27542045358823],[-76.59387984537992,39.27541511601996],[-76.59389219305476,39.27540977574419],[-76.59390453955849,39.27540443726457],[-76.59391688837815,39.27539909879165],[-76.5939292360319,39.27539376121416],[-76.593941583689,39.27538842273461],[-76.5939539313442,39.27538308425376],[-76.59396627784895,39.27537774396614],[-76.59397862320321,39.27537240187164],[-76.59399096625334,39.27536705706564],[-76.59400330816324,39.27536170865133],[-76.59401564661007,39.27535635752145],[-76.59402798045033,39.27535100096976],[-76.59404030279757,39.27534562726252],[-76.59405261594905,39.27534024001072],[-76.59406492449907,39.27533484643637],[-76.59407723304206,39.27532945376147],[-76.59408954733647,39.27532406831128],[-76.59410187312535,39.27531869911329],[-76.59411421500823,39.27531335248872],[-76.59412657297993,39.27530802933835],[-76.59413894245641,39.27530272063867],[-76.59415131997122,39.27529742457617],[-76.59416370439637,39.27529213574237],[-76.59417609110663,39.27528685231976],[-76.59418847781501,39.27528156889578],[-76.59420086337811,39.27527628276431],[-76.59421324318606,39.27527098940549],[-76.59422561610054,39.27526568521233],[-76.59423797750141,39.27526036746669],[-76.59425032741439,39.27525503166473],[-76.59426265202534,39.27524966154501],[-76.59427493984303,39.27524423995329],[-76.59428720121012,39.2752387822383],[-76.59429944877662,39.27523330555837],[-76.59431169403376,39.27522782706757],[-76.59432311371278,39.27522424633778],[-76.59433080524239,39.27523341476648],[-76.59433856157479,39.27524260053296],[-76.5943460064731,39.27525193384947],[-76.59435338861738,39.27526129757477],[-76.59436075215939,39.27527067204449],[-76.59436814011242,39.27528003398729],[-76.5943755966385,39.27528936193736],[-76.59438316124334,39.27529863801585],[-76.59439082346087,39.27530786849187],[-76.59439853681641,39.27531707392253],[-76.59440625831718,39.27532627397623],[-76.59441394033992,39.27533548740455],[-76.59442091466519,39.2753450352745],[-76.59440858682446,39.27534995591792],[-76.59439589560041,39.27535478522866],[-76.59438319520123,39.27535959739178],[-76.59437049020076,39.27536440323235],[-76.59435778406022,39.27536920546448],[-76.59434507561045,39.27537400588576],[-76.59433236601555,39.27537880359942],[-76.59431965411656,39.27538359860145],[-76.59430693762137,39.27538838638009],[-76.5942942061978,39.27539314978514],[-76.59428147248042,39.27539790867705],[-76.5942687490833,39.27540268651931],[-76.59425605326649,39.27540750498988],[-76.59424340107952,39.27541239477021],[-76.59423079253772,39.27541735315812],[-76.5942181989209,39.27542233591688],[-76.59420559383689,39.27542729701629],[-76.59419294624756,39.27543219221167],[-76.59418016891584,39.27543687437694],[-76.59416719641254,39.27544123339256],[-76.5941659348542,39.27544945031377],[-76.59417260714574,39.27545911875789],[-76.59417937343947,39.27546876500728],[-76.59418613854004,39.27547841755744],[-76.59419281536969,39.27548810403133],[-76.59419933309579,39.27549784850473],[-76.594205755582,39.27550762958006],[-76.59421212114947,39.27551743387827],[-76.59421845651498,39.27552725068245],[-76.59422478839518,39.27553706927576],[-76.59423114351202,39.27554687804052],[-76.59423754974107,39.2755566662639],[-76.59424400940024,39.27556643395392],[-76.59425049578304,39.27557619002592],[-76.5942570042333,39.27558593806684],[-76.59426352895133,39.27559567895747],[-76.594270064127,39.27560541538001],[-76.59427660510941,39.27561515002066],[-76.59428315654952,39.27562488019323],[-76.59428983344741,39.27563455945518],[-76.5942937994121,39.2756432583282],[-76.59428089519206,39.27564803374543],[-76.59426843368453,39.27565321423319],[-76.5942559630018,39.27565837757338],[-76.59424348886627,39.27566353639653],[-76.59423101473406,39.27566869431755],[-76.5942185406,39.27567385223728],[-76.59420606531043,39.27567900925088],[-76.59419359117278,39.27568416716794],[-76.59418111703843,39.27568932418289],[-76.59416864289201,39.27569448299804],[-76.59415616874892,39.2756996409111],[-76.59414369575263,39.27570480062828],[-76.59413122275451,39.27570996034418],[-76.59411875090322,39.27571512186424],[-76.59410628020382,39.27572028428771],[-76.59409380949232,39.27572544851134],[-76.59408134108652,39.27573061454311],[-76.59406887267374,39.27573578147434],[-76.59405640656669,39.27574095021374],[-76.59404394160126,39.27574612165807],[-76.59403147892608,39.27575129761279],[-76.59401902775575,39.27575648801815],[-76.59400658577242,39.27576169286625],[-76.59399414837655,39.27576690583573],[-76.59398171444525,39.2757721206174],[-76.59396927705085,39.2757773326835],[-76.59395683506021,39.2757825375263],[-76.59394438387379,39.27578772882448],[-76.5939319211892,39.27579290386782],[-76.59391945390833,39.27579807168784],[-76.59390698202614,39.27580323318526],[-76.59389450785008,39.2758083901696],[-76.59388203021092,39.27581354443837],[-76.59386955143162,39.2758186950988],[-76.59385707149677,39.27582384485314],[-76.59384459156017,39.27582899460613],[-76.59383211162168,39.27583414435782],[-76.59381963398378,39.2758392968184],[-76.59380715748749,39.27584445198389],[-76.5937946832866,39.27584961075906],[-76.59378221253998,39.27585477314795],[-76.59376974638597,39.27585994275746],[-76.59375728712692,39.27586512229793],[-76.5937448324656,39.27587030815832],[-76.59373238008931,39.27587549942989],[-76.59371993001872,39.27588069250966],[-76.59370747995149,39.27588588468736],[-76.59369502757494,39.27589107505417],[-76.59368257175078,39.27589626000315],[-76.59367011248409,39.27590143863357],[-76.59365764515481,39.27590660822714],[-76.59364516749149,39.27591176066909],[-76.59363267373564,39.27591688963417],[-76.59362017078411,39.2759220050546],[-76.59360766437462,39.2759271168587],[-76.5935951637218,39.2759322349867],[-76.59358267339935,39.27593737026368],[-76.59357019802239,39.27594252630861],[-76.59355773183754,39.2759476958955],[-76.59354527254754,39.27595287541339],[-76.593532817845,39.27595806305263],[-76.59352036890428,39.27596325611511],[-76.59350792109478,39.27596845368402],[-76.59349547673963,39.27597365486665],[-76.59348303582838,39.27597886146441],[-76.59347059721769,39.27598407077113],[-76.59345815974862,39.27598928278277],[-76.59344572342631,39.27599449659862],[-76.59343328826625,39.27599970951638],[-76.5934208519454,39.27600492242878],[-76.59340841331525,39.27601013353038],[-76.593395973545,39.27601534102367],[-76.59338353147574,39.27602054490458],[-76.5933710847948,39.2760257442644],[-76.59335863467656,39.27603093640487],[-76.59334617995701,39.27603612222278],[-76.59333371258046,39.2760412917817],[-76.59332123372131,39.27604644238355],[-76.59330874450757,39.27605157943672],[-76.59329625071315,39.27605670656428],[-76.5932837522967,39.27606183097222],[-76.59327125619114,39.27606695628759],[-76.59325876352956,39.27607208701816],[-76.59324626856385,39.2760772150371],[-76.59323376899677,39.27608233673345],[-76.59322126828965,39.27608745482144],[-76.59320876757039,39.27609257470962],[-76.59319627145399,39.27609770001697],[-76.59318378107355,39.27610283525128],[-76.59317129989037,39.27610798312678],[-76.59315883250396,39.27611314996482],[-76.59314638694921,39.27611834930472],[-76.59313395747809,39.27612357301965],[-76.59312153605551,39.27612880757034],[-76.59310911348253,39.27613404031413],[-76.5930966794064,39.27613925770378],[-76.59308422809956,39.27614444800951],[-76.5930717629976,39.27614961844927],[-76.59305928984332,39.27615477805066],[-76.59304681093913,39.27615992952391],[-76.59303432858739,39.27616507557929],[-76.59302184508007,39.27617022072858],[-76.59300936272471,39.27617536678129],[-76.59299688151613,39.27618051463818],[-76.59299781651274,39.27618904721857],[-76.5930044654019,39.27619873906606],[-76.59301071122796,39.27620858985259],[-76.5930168885193,39.27621846832497],[-76.5930231250568,39.2762283226816],[-76.59302979487565,39.27623800379089],[-76.59304079823251,39.27623693307533],[-76.59305331852048,39.27623184299814],[-76.59306581581944,39.27622671951172],[-76.59307830737359,39.27622158699641],[-76.59309079663394,39.276216449968],[-76.59310328013407,39.27621130661294],[-76.59311575789974,39.27620615242753],[-76.59312822415706,39.27620098378868],[-76.59314065938516,39.276195769102],[-76.5931530601279,39.27619050475256],[-76.59316547925658,39.27618526748837],[-76.59317795355706,39.27618010968127],[-76.59319044395153,39.27617497444773],[-76.59320294123052,39.2761698509466],[-76.59321544541476,39.27616473557497],[-76.59322795073027,39.27615962470975],[-76.59324045720295,39.27615451384715],[-76.59325296253036,39.27614940027701],[-76.59326546209755,39.27614428038021],[-76.59327795592515,39.27613915055385],[-76.59329043939806,39.27613400717875],[-76.59330290679409,39.2761288376245],[-76.59331534658588,39.27612363104203],[-76.59332777144417,39.27611840098664],[-76.59334019170106,39.27611316460865],[-76.59335261885288,39.27610793816163],[-76.59336505980149,39.27610273067713],[-76.59337750073789,39.27609752499278],[-76.59338994396968,39.2760923229181],[-76.59340239411188,39.27608712807216],[-76.59341485113349,39.27608194585942],[-76.5934273208033,39.27607678080366],[-76.59343981230495,39.27607164824969],[-76.59345232104917,39.27606654007468],[-76.59346483208365,39.27606143641011],[-76.59347733277379,39.27605631739539],[-76.59348981047472,39.27605116497151],[-76.59350227323692,39.27604598997547],[-76.59351472794164,39.27604080504179],[-76.59352717805534,39.27603561198403],[-76.59353962587521,39.27603041441319],[-76.59355207253945,39.27602521593624],[-76.59356452035047,39.27602001926353],[-76.59357697275925,39.27601482891073],[-76.59358942975537,39.27600964667936],[-76.59360188560116,39.27600446264114],[-76.59361434375259,39.27599928041112],[-76.59362680650175,39.27599410450103],[-76.59363927613038,39.27598894122412],[-76.59365175840725,39.27598379510421],[-76.5936642613726,39.27597867877975],[-76.59367679191284,39.27597360398451],[-76.59368933279903,39.27596854363597],[-76.59370186562769,39.2759634733498],[-76.59371437432883,39.2759583660475],[-76.59372685314395,39.27595321540379],[-76.59373932392216,39.27594805121943],[-76.59375178664806,39.2759428761968],[-76.5937642424651,39.27593769304197],[-76.59377669484991,39.27593250176714],[-76.59378914262825,39.27592730507045],[-76.5938015869486,39.2759221047574],[-76.593814030134,39.27591689993533],[-76.59382646985114,39.27591169329835],[-76.59383889808564,39.27590646770435],[-76.59385131366295,39.27590122585146],[-76.59386372579789,39.27589597768002],[-76.5938761402281,39.27589073311824],[-76.59388856385567,39.27588550119766],[-76.59390100241839,39.27588029184651],[-76.59391346052104,39.27587511048535],[-76.59392593241027,39.27586994988808],[-76.59393841349683,39.27586480193202],[-76.59395090033487,39.2758596612006],[-76.59396338601226,39.27585452046382],[-76.59397586708823,39.2758493734045],[-76.59398834013241,39.27584421190385],[-76.59400079936582,39.27583903323959],[-76.59401325056228,39.27583384103472],[-76.5940256948498,39.2758286406978],[-76.59403813684864,39.27582343494707],[-76.59405057768674,39.27581822919099],[-76.5940630219791,39.27581302704858],[-76.59407547085894,39.2758078330276],[-76.5940879289361,39.27580265164782],[-76.59410039735926,39.27579748471469],[-76.59411287267734,39.27579232771244],[-76.59412535258292,39.27578717883165],[-76.59413783709142,39.27578203537],[-76.59415032389531,39.27577689551801],[-76.59416281184087,39.27577175837089],[-76.59417530093837,39.27576662212727],[-76.59418779003407,39.27576148588226],[-76.59420027683078,39.27575634602491],[-76.59421276132326,39.27575120345602],[-76.59422524121437,39.27574605456452],[-76.59423771766809,39.27574089845368],[-76.59425018720776,39.27573573511157],[-76.59426265331014,39.27573056455008],[-76.59427511481101,39.27572538766606],[-76.59428757285397,39.27572020716568],[-76.59430002860823,39.27571502125152],[-76.59431248090448,39.27570983172104],[-76.59432493090171,39.27570463857819],[-76.59433737859477,39.27569944272378],[-76.5943498251425,39.27569424416183],[-76.59436227053462,39.27568904469378],[-76.59437471478152,39.27568384251816],[-76.5943871555704,39.27567863672621],[-76.59439959521922,39.27567342732598],[-76.59441203140486,39.27566821521015],[-76.59442446759896,39.27566300129153],[-76.5944369026375,39.27565778646682],[-76.5944493365256,39.27565256983525],[-76.59446177041187,39.2756473532024],[-76.59447420429117,39.27564213746894],[-76.5944866393224,39.27563692263893],[-76.59449907550039,39.27563170961309],[-76.59451151282521,39.27562649839141],[-76.59452395360429,39.27562129078343],[-76.59453639552505,39.27561608588032],[-76.5945488397309,39.27561088638838],[-76.59456128855001,39.27560569051413],[-76.59457374080796,39.27560050095573],[-76.594586199961,39.27559532132827],[-76.59459866715761,39.27559015343719],[-76.59461114125956,39.27558499367546],[-76.59462361994393,39.2755798429359],[-76.59463610207229,39.27557469761149],[-76.59464858880878,39.27556955680546],[-76.59466107668692,39.27556441870434],[-76.59467356570671,39.27555928330812],[-76.5946860558836,39.2755541479146],[-76.59469854834563,39.27554901793217],[-76.59471104541576,39.27554389246818],[-76.5947235447762,39.27553877151455],[-76.59473604528344,39.27553365236511],[-76.59474854693752,39.27552853501978],[-76.59476104858976,39.27552341767316],[-76.59477355024025,39.27551830032515],[-76.59478605189916,39.27551318117435],[-76.59479855008983,39.27550806020868],[-76.59481104714558,39.275502934734],[-76.59482354074332,39.27549780564298],[-76.59483603089852,39.27549267023338],[-76.59484851529341,39.27548752849725],[-76.59486099739954,39.27548238134728],[-76.59487347605281,39.27547722968026],[-76.59488595124816,39.27547207439694],[-76.59489842529818,39.27546691640604],[-76.59491089820293,39.27546175570757],[-76.59492336880345,39.27545659229752],[-76.59493583824325,39.27545142888217],[-76.59494830769154,39.27544626366396],[-76.594960777138,39.27544109844446],[-76.59497324773641,39.27543593412835],[-76.59498571832276,39.27543077161238],[-76.59499819006099,39.27542560999985],[-76.59501066294094,39.27542045109218],[-76.59502313812148,39.27541529489348],[-76.59503561560257,39.27541014140363],[-76.59504809423045,39.27540498971798],[-76.59506057400519,39.27539983983642],[-76.59507305492671,39.27539469175908],[-76.59508553700019,39.27538954458512],[-76.59509801906162,39.2753843992113],[-76.59511050228008,39.27537925384018],[-76.59512298664541,39.27537411027318],[-76.59513547100376,39.2753689676056],[-76.59514795651407,39.2753638258415],[-76.59516044201747,39.27535868497669],[-76.59517292751389,39.27535354501134],[-76.59518541532117,39.27534840595345],[-76.59519790427527,39.27534326869964],[-76.59521039321729,39.27533813324602],[-76.59522288331122,39.27533299869582],[-76.5952353733983,39.275327865045],[-76.5952478646373,39.27532273229759],[-76.59526035587957,39.27531759864809],[-76.59527284712011,39.27531246499726],[-76.59528533719988,39.27530733134109],[-76.59529782728305,39.27530219678287],[-76.59531031621574,39.27529706041781],[-76.59532280399286,39.27529192314668],[-76.59533529177845,39.2752867840727],[-76.59534777610092,39.27528164228322],[-76.5953602592832,39.27527649688535],[-76.59537274131505,39.27527134968068],[-76.59538522103756,39.27526620066521],[-76.59539770076856,39.27526104984693],[-76.5954101793388,39.27525589902329],[-76.59542265790726,39.27525074819832],[-76.59543513762765,39.27524559827677],[-76.59544761849492,39.27524045015937],[-76.59546010050893,39.27523530384611],[-76.59547258482358,39.27523016024175],[-76.59548507143366,39.27522502024705],[-76.59549756033407,39.27521988476268],[-76.59551005383751,39.27521475469747],[-76.59552254963127,39.27520962914261],[-76.5955350488742,39.27520450810216],[-76.59554755041781,39.27519938977055],[-76.59556005310823,39.27519427324312],[-76.59557255579165,39.27518915761508],[-76.59558505962708,39.27518404289043],[-76.59559756230696,39.27517892725972],[-76.59561006383636,39.2751738098222],[-76.59562256306158,39.27516868967309],[-76.5956350611518,39.27516356501491],[-76.59564755462506,39.27515843673648],[-76.59566004580955,39.27515330304423],[-76.59567253238738,39.2751481639302],[-76.59568501666617,39.27514302120391],[-76.59569749979964,39.27513787577001],[-76.59570998063401,39.27513272672383],[-76.59572245915389,39.27512757676754],[-76.59573493768738,39.27512242410774],[-76.59574741506013,39.27511727144259],[-76.59575989127732,39.27511211787136],[-76.59577236865672,39.27510696340204],[-76.59578484602403,39.2751018107329],[-76.59579732454328,39.27509665896716],[-76.59580980420941,39.27509150900556],[-76.5958199988645,39.27508730779157],[-76.59582623925766,39.27508473596433],[-76.59583248081944,39.27508216233925],[-76.59583872237572,39.27507958961461],[-76.59584496277778,39.27507701598488],[-76.59585120317932,39.2750744423548],[-76.59585744473424,39.27507186962917],[-76.59586368513493,39.2750692959984],[-76.59586992669401,39.27506672237137],[-76.59587616708868,39.2750641496407],[-76.59588240864176,39.27506157691371],[-76.59588865019442,39.27505900418635],[-76.59589489174142,39.27505643235946],[-76.59590113444692,39.27505386053619],[-76.59590737598795,39.27505128960934],[-76.59591361868739,39.27504871868615],[-76.59591986253508,39.27504614956813],[-76.59592610638227,39.27504358044978],[-76.5959323513828,39.27504101223579],[-76.59593859637776,39.27503844492222],[-76.59594484136709,39.27503587850909],[-76.59595108866357,39.27503331390508],[-76.59595733595955,39.27503074930078],[-76.59596358324481,39.2750281864976],[-76.59596983168345,39.2750256245988],[-76.5959760812754,39.27502306360439],[-76.59598233086687,39.27502050260969],[-76.59598858045277,39.27501794251537],[-76.59599483119197,39.2750153833255],[-76.59600108193074,39.27501282413525],[-76.59600733266903,39.27501026494468],[-76.59601358340689,39.27500770575377],[-76.59601983413923,39.27500514746325],[-76.59602608487617,39.27500258827166],[-76.59603233561268,39.27500002907976],[-76.59603858518985,39.27499746988351],[-76.59604483593057,39.27499490979018],[-76.59605108551197,39.27499234969256],[-76.59605733509804,39.2749897886938],[-76.59606358352477,39.27498722769075],[-76.59606983196126,39.27498466488589],[-76.59607607924359,39.27498210117591],[-76.59608232653055,39.27497953656493],[-76.59608857266329,39.27497697104883],[-76.59609481764183,39.27497440462763],[-76.59610106263013,39.27497183640463],[-76.5961072961213,39.27496925192802],[-76.59611350777237,39.27496663584918],[-76.59611971022359,39.27496400712769],[-76.59612591957131,39.27496138833801],[-76.59613219327349,39.27495886525035],[-76.59613635746435,39.27495577913673],[-76.59613298348245,39.27495095564922],[-76.59612970826899,39.27494608656225],[-76.59612642258485,39.27494122464529],[-76.59612313225013,39.27493636541456],[-76.59611984307993,39.27493150528694],[-76.59611655390505,39.27492664605993],[-76.59611326589464,39.27492178593609],[-76.59610997904873,39.2749169249154],[-76.59610669219816,39.27491206479534],[-76.59610340535311,39.27490720377446],[-76.5961001196623,39.27490234365823],[-76.59609683397709,39.27489748264109],[-76.59609354829745,39.27489262072316],[-76.59609026377201,39.27488775970983],[-76.5960869815751,39.27488289690288],[-76.59608370402448,39.2748780323103],[-76.59608042879208,39.2748731677256],[-76.5960771547293,39.27486830134328],[-76.59607388298994,39.27486343406808],[-76.59607061240983,39.27485856679674],[-76.59606734183023,39.27485369952534],[-76.59606407125111,39.27484883225383],[-76.59606079950834,39.27484396587898],[-76.5960575266072,39.27483909950006],[-76.59605425138352,39.2748342340138],[-76.59605097267337,39.27482937031698],[-76.59604769164075,39.27482450751288],[-76.59604440596783,39.27481964559342],[-76.59604111680332,39.2748147863642],[-76.59603782183447,39.27480992891642],[-76.59603452221516,39.27480507415484],[-76.59603121562748,39.27480022207149],[-76.59602790207151,39.27479537266635],[-76.59602458038319,39.27479052683621],[-76.59602122733332,39.2747856935088],[-76.59601783246106,39.27478087805272],[-76.59601440738606,39.27477607510337],[-76.59601096140533,39.27477128018887],[-76.59600750728707,39.27476648975015],[-76.59600405432822,39.27476169931528],[-76.59600061298957,39.27475690351564],[-76.59599719488057,39.27475209878818],[-76.59599417175079,39.27474712787699],[-76.59599864850425,39.27474369424723],[-76.59600491531531,39.2747411576311],[-76.59601120634471,39.27473864181548],[-76.59601746051467,39.27473608623914],[-76.59602370777189,39.27473352343251],[-76.59602995504397,39.27473095792332],[-76.59603620000298,39.27472839150509],[-76.59604244496661,39.27472582418578],[-76.59604868993497,39.27472325596541],[-76.59605493373887,39.27472068864144],[-76.59606117870626,39.27471812042036],[-76.59606742366302,39.27471555400047],[-76.59607366977819,39.27471298758419],[-76.59607991703641,39.27471042387386],[-76.59608616544799,39.27470786106792],[-76.59609241615637,39.27470530187257],[-76.59609866801296,39.27470274448241],[-76.59610492101254,39.27470018979808],[-76.59611117516555,39.2746976360182],[-76.59611743047179,39.27469508314269],[-76.59612368462383,39.27469252936211],[-76.59612993992405,39.27468997738671],[-76.59613619407013,39.27468742450623],[-76.59614244936945,39.27468487253012],[-76.59614870582726,39.27468232055769],[-76.59615496112056,39.27467976948164],[-76.59616121757233,39.27467721840927],[-76.59616747401849,39.27467466823733],[-76.59617373046935,39.27467211716431],[-76.59617998690953,39.27466956789244],[-76.59618624335438,39.27466701771949],[-76.59619250095253,39.27466446845091],[-76.59619875739131,39.27466191917801],[-76.59620501498856,39.27465936990879],[-76.59621127258025,39.27465682153996],[-76.59621753017147,39.27465427317081],[-76.59622378892118,39.27465172480532],[-76.59623004651152,39.27464917643545],[-76.59623630525515,39.27464662897003],[-76.59624256283945,39.27464408150029],[-76.59624882158219,39.27464153403419],[-76.59625508031941,39.27463898746853],[-76.59626133906124,39.27463644000175],[-76.59626759779751,39.27463389343538],[-76.59627385653337,39.27463134686865],[-76.59628011642761,39.27462880030561],[-76.5962863751574,39.274626254639],[-76.59629263504567,39.27462370897607],[-76.59629889723075,39.27462116692366],[-76.59630516171782,39.2746186275812],[-76.59631142734794,39.27461609094462],[-76.5963176941263,39.27461355611317],[-76.59632396205791,39.27461102218611],[-76.59633022998399,39.27460848915947],[-76.59633649905827,39.27460595793796],[-76.59634276813721,39.27460342581541],[-76.59634903721572,39.27460089369249],[-76.59635530629376,39.27459836156922],[-76.59636157422274,39.27459582764012],[-76.59636784099746,39.27459329280599],[-76.59637410662823,39.27459075526532],[-76.59638036994592,39.27458821681557],[-76.59638663212472,39.2745856747585],[-76.59639289200069,39.27458312999087],[-76.5963991495789,39.27458058161201],[-76.59640540486447,39.27457802872108],[-76.59641165669339,39.27457547221488],[-76.59641790507597,39.27457291029192],[-76.59642415000704,39.27457034385296],[-76.59643037310822,39.27456774401035],[-76.59643656862606,39.27456510353819],[-76.59644274459077,39.27456243687632],[-76.59644891251455,39.27455975757581],[-76.59645508043786,39.27455707827497],[-76.59646125754986,39.27455441341763],[-76.59646745188597,39.27455177654287],[-76.59647343063678,39.27454914433165],[-76.59647108464468,39.2745441109039],[-76.5964679127834,39.27453920434875],[-76.59646467477857,39.27453431287929],[-76.5964613949362,39.27452944198351],[-76.59645810111077,39.27452458455109],[-76.59645479799417,39.27451973068974],[-76.59645148674524,39.27451488040336],[-76.59644816852803,39.27451003279524],[-76.5964448456655,39.27450518697258],[-76.59644151932159,39.27450034203868],[-76.59643818948612,39.27449549979491],[-76.59643485849219,39.27449065754707],[-76.59643152633983,39.27448581529515],[-76.59642819534679,39.27448097304711],[-76.59642486667715,39.27447612990619],[-76.59642153684902,39.27447128676121],[-76.5964182035345,39.27446644540568],[-76.59641486557456,39.27446160583556],[-76.59641152645106,39.27445676716212],[-76.59640818501028,39.27445192848064],[-76.59640484356478,39.27444709069976],[-76.59640150328379,39.27444225202208],[-76.59639816532612,39.27443741245148],[-76.59639482969183,39.27443257198795],[-76.59639149870381,39.27442772973883],[-76.59638817352096,39.27442288570798],[-76.59638485415351,39.27441803809399],[-76.59638154291416,39.27441318780549],[-76.59637823864905,39.27440833393781],[-76.59637494018908,39.27440347828846],[-76.59637164637542,39.27439862085344],[-76.59636835721311,39.274393760732],[-76.59636507153307,39.27438889972167],[-76.59636178933528,39.27438403782246],[-76.59635850946593,39.27437917412963],[-76.59635523075596,39.27437431044066],[-76.59635195204639,39.2743694467516],[-76.59634867450133,39.27436458216567],[-76.59634539695158,39.27435971848038],[-76.59634211708453,39.27435485478706],[-76.596338836059,39.27434999108962],[-76.5963355527059,39.27434512918558],[-76.59633226586634,39.27434026907104],[-76.59632897902719,39.27433540895642],[-76.59632569219367,39.27433054794089],[-76.59632240536061,39.27432568692529],[-76.59631911968174,39.27432082681432],[-76.59631583284953,39.27431596579853],[-76.59631254601268,39.27431110568342],[-76.59630925918137,39.27430624466741],[-76.59630597002761,39.27430138454413],[-76.59630268086921,39.27429652532145],[-76.59629939055237,39.27429166609475],[-76.59629609907194,39.27428680776463],[-76.59629280643308,39.27428194943047],[-76.59628951030781,39.27427709288579],[-76.59628621302399,39.27427223633697],[-76.59628291341782,39.27426738068085],[-76.59627961380693,39.2742625259254],[-76.59627631652454,39.27425766937628],[-76.59627301808366,39.27425281282311],[-76.59626971732037,39.2742479571626],[-76.59626641307067,39.27424310329154],[-76.59626310301152,39.27423825210274],[-76.59625978482016,39.2742334044889],[-76.59625645733762,39.27422856044611],[-76.59625311823592,39.27422372176784],[-76.59624976635102,39.27421888935085],[-76.59624625180709,39.2742141293366],[-76.59624250850152,39.27420944960467],[-76.59624697479546,39.27420642037263],[-76.59625330350991,39.27420399294838],[-76.59625962654223,39.27420154568743],[-76.5962659438719,39.27419908219277],[-76.59627225546822,39.27419660786885],[-76.59627856247469,39.27419412542194],[-76.5962848637017,39.27419164025255],[-76.59629116261559,39.27418915417409],[-76.59629746038549,39.27418666538909],[-76.59630375585257,39.27418417389356],[-76.59631005016547,39.27418168149291],[-76.59631634449325,39.27417918638969],[-76.59632263651308,39.27417668947667],[-76.59632892737874,39.27417419165856],[-76.5963352182542,39.27417169203866],[-76.59634150681654,39.27416919150971],[-76.59634779654755,39.27416668918288],[-76.59635408396551,39.27416418594699],[-76.59636037138303,39.2741616827108],[-76.5963666588103,39.27415917767276],[-76.5963729450783,39.27415667263038],[-76.59637923135094,39.27415416668693],[-76.59638551532075,39.27415165803295],[-76.59639179929525,39.27414914847785],[-76.59639808096181,39.27414663711296],[-76.59640436263811,39.27414412394628],[-76.59641064316023,39.27414160987449],[-76.59641692369215,39.27413909400086],[-76.59642320191095,39.27413657721824],[-76.59642948013447,39.27413405953444],[-76.59643575720376,39.27413154094564],[-76.59644203428286,39.27412902055499],[-76.59644830219801,39.27412648121648],[-76.59644915875097,39.27412218120493],[-76.59644597173694,39.27411729351252],[-76.59644275109521,39.27411240930751],[-76.59643950957859,39.274107527733],[-76.59643625763246,39.27410264612254],[-76.59643300685077,39.27409776361523],[-76.59642976651996,39.27409287754068],[-76.5964265493981,39.27408798614115],[-76.59642335084956,39.27408308940078],[-76.59642016042395,39.27407819088673],[-76.59641697581367,39.27407328878946],[-76.59641379468556,39.27406838580326],[-76.59641061703974,39.27406348192824],[-76.59640744055832,39.27405857715632],[-76.59640426407738,39.27405367238433],[-76.59640108527398,39.27404876850505],[-76.59639790298921,39.27404386551444],[-76.59639471605402,39.27403896521002],[-76.59639152215054,39.27403406758391],[-76.59638832127885,39.27402917263602],[-76.59638510995201,39.27402428215594],[-76.59638188701628,39.27401939523897],[-76.5963785990246,39.27401453602201],[-76.59637523785975,39.27400970537798],[-76.59637185578417,39.2740048836696],[-76.59636850390665,39.27400005035497],[-76.59636523800221,39.27399517950359],[-76.59636223002633,39.27399019424058],[-76.59636449514608,39.27398621523883],[-76.59665895999669,39.27387887562117],[-76.59666476372145,39.27388031515788],[-76.59666810322237,39.27388121207822],[-76.59667145678361,39.27388208202377],[-76.59667481154474,39.27388294476725],[-76.59667818276073,39.27388376703265],[-76.59668155985824,39.2738845740052],[-76.59668491816795,39.27388542414983],[-76.59668823418966,39.27388637413411],[-76.59669151603558,39.27388742398583],[-76.59669478375996,39.27388851162112],[-76.59669805625308,39.2738895758528],[-76.59670135589721,39.27389055280338],[-76.59670470158262,39.27389138128574],[-76.59670812009155,39.27389203887271],[-76.5967116291265,39.27389267335052],[-76.59671519642814,39.27389325128013],[-76.59671877948648,39.27389370766036],[-76.59672234043721,39.27389397570474],[-76.5967258367702,39.27389399041215],[-76.59672922830345,39.27389368498797],[-76.59673260766041,39.27389307506328],[-76.59673605091778,39.27389223296056],[-76.59673947110812,39.27389116738871],[-76.59674278123842,39.27388989156071],[-76.59674589550534,39.27388841328867],[-76.59674872459807,39.27388674577756],[-76.59675118270816,39.27388489774039],[-76.59675329314126,39.27388284673808],[-76.59675514972588,39.27388060029891],[-76.59675680554535,39.27387819823884],[-76.59675831251903,39.27387568127057],[-76.59675972257139,39.27387308920593],[-76.59676108645266,39.27387046455528],[-76.59676245609754,39.27386784532897],[-76.5967638822562,39.27386527403725],[-76.59676541456098,39.27386278598026],[-76.59676701156334,39.27386033327525],[-76.5967686328612,39.27385788785973],[-76.59677025531782,39.2738554424482],[-76.59677185811428,39.273852989763],[-76.59677341810368,39.27385052432012],[-76.59677491214934,39.27384803883398],[-76.59677632058606,39.2738455269317],[-76.59677762490254,39.27384298314519],[-76.5967788771972,39.27384041666092],[-76.59678008903329,39.27383783202244],[-76.59678125460621,39.27383523101133],[-76.59678236811634,39.27383261450846],[-76.59678342260025,39.27382998429151],[-76.59678440993547,39.273827342134],[-76.59678532548142,39.27382468892088],[-76.5967861622746,39.27382202642973],[-76.59678690294199,39.27381935279937],[-76.59678741555537,39.27381663514936],[-76.59678772442575,39.27381387806698],[-76.59678791405422,39.27381109895688],[-76.59678806661381,39.2738083170172],[-76.59678826427763,39.27380555144613],[-76.59678859154673,39.27380281964833],[-76.59678912942499,39.27380014261946],[-76.5967899797762,39.27379754142687],[-76.59679153826706,39.27379513542905],[-76.59679363134687,39.27379287448813],[-76.59679585059099,39.27379064100322],[-76.59679778294949,39.27378831555616],[-76.59679914150632,39.27378581158924],[-76.59680025260005,39.27378321219246],[-76.59680119483494,39.27378055276542],[-76.59680198663537,39.27377785408903],[-76.59680264874348,39.27377513695215],[-76.59680319958365,39.27377242213556],[-76.59680353147728,39.2737696921551],[-76.59680359240276,39.27376692431304],[-76.59680353056881,39.27376414163732],[-76.59680349303038,39.27376136625111],[-76.59680362914484,39.27375862298783],[-76.59680408713115,39.27375593307389],[-76.59680495728462,39.27375331393379],[-76.59680607981286,39.27375074159912],[-76.59680738525468,39.27374820322066],[-76.59680881920411,39.27374568780246],[-76.59681032841409,39.27374318435257],[-76.59681185963251,39.27374068277972],[-76.59681336193509,39.27373817119917],[-76.59681477859307,39.27373563950778],[-76.59681605868225,39.27373307582076],[-76.59681724965019,39.27373049201097],[-76.59681842210159,39.27372790363373],[-76.59681957951813,39.27372530980029],[-76.59682072304854,39.27372271231612],[-76.59682185501053,39.27372011118915],[-76.5968229765579,39.27371750732418],[-76.59682409000325,39.27371490162979],[-76.59682519651058,39.27371229320931],[-76.59682629954634,39.27370968387611],[-76.59682739910534,39.27370707453096],[-76.59682849867454,39.27370446338434],[-76.59682959939228,39.27370185404313],[-76.59683070242767,39.27369924470989],[-76.59683181009342,39.27369663629333],[-76.59683292353812,39.27369403059888],[-76.59683404624354,39.27369142673771],[-76.59683517936341,39.27368882561458],[-76.59683632405158,39.27368622813419],[-76.59683748378457,39.2736836343085],[-76.59683865855219,39.273681045939],[-76.5968398506773,39.27367846213291],[-76.59684106247259,39.27367588379888],[-76.59684229509689,39.27367331094099],[-76.59684354854001,39.27367074536062],[-76.59684480661849,39.27366817979615],[-76.59684606469182,39.27366561513242],[-76.59684732508278,39.27366305047665],[-76.59684858431478,39.27366048581688],[-76.59684984586447,39.27365792116504],[-76.59685110856782,39.2736553574179],[-76.59685237127108,39.27365279367077],[-76.59685363397423,39.2736502299236],[-76.59685489898992,39.27364766708509],[-76.59685616401069,39.27364510334591],[-76.59685743018504,39.27364254051135],[-76.59685869635936,39.27363997767683],[-76.59685996368732,39.27363741574699],[-76.59686123217925,39.27363485292035],[-76.59686250182476,39.27363229099845],[-76.59686377147024,39.27362972907653],[-76.59686504227449,39.27362716715857],[-76.59686631307352,39.27362460614135],[-76.59686758503645,39.27362204422733],[-76.59686885815309,39.27361948321801],[-76.59687013126957,39.27361692220869],[-76.59687140553976,39.2736143621041],[-76.59687267981498,39.27361180109871],[-76.59687395524385,39.27360924099807],[-76.59687523183155,39.27360668090133],[-76.5968765084191,39.2736041208046],[-76.59687778616546,39.27360156071187],[-76.59687906390661,39.27359900151985],[-76.59688034280654,39.27359644233175],[-76.59688162286525,39.27359388314765],[-76.59688290292391,39.27359132396357],[-76.59688418298244,39.27358876477942],[-76.59688546419466,39.27358620650001],[-76.59688674656563,39.27358364822453],[-76.59688802893653,39.27358108994906],[-76.5968893124662,39.27357853167753],[-76.59689059599577,39.273575973406],[-76.59689188067905,39.27357341603919],[-76.59689316536729,39.27357085777161],[-76.59689445120925,39.27356830040871],[-76.59689573705111,39.2735657430458],[-76.59689702404663,39.27356318658763],[-76.59689831104717,39.27356062922865],[-76.59689959920141,39.27355807277444],[-76.59690088736062,39.27355551541944],[-76.59690217551467,39.27355295896516],[-76.59690346482749,39.27355040251486],[-76.59690475529396,39.27354784696927],[-76.59690604576546,39.27354529052292],[-76.59690733623175,39.27354273497726],[-76.59690862785681,39.27354017943556],[-76.59690991948182,39.27353762389387],[-76.59691121226557,39.27353506835613],[-76.59691250504925,39.2735325128184],[-76.59691379782772,39.27352995818142],[-76.59691509177009,39.27352740264762],[-76.59691638570725,39.27352484801453],[-76.59691768080317,39.27352229338543],[-76.596918975899,39.27351973875629],[-76.59692027099473,39.27351718412717],[-76.59692156724417,39.27351463040271],[-76.59692286349863,39.27351207577756],[-76.59692415974783,39.27350952205306],[-76.59692545715585,39.2735069683326],[-76.59692675456377,39.27350441461205],[-76.59692805313047,39.27350186089551],[-76.5969293505382,39.27349930717494],[-76.59693064909959,39.27349675435909],[-76.59693194882492,39.27349420064647],[-76.59693324738612,39.27349164783062],[-76.59693454710609,39.2734890950187],[-76.59693584798488,39.27348654221077],[-76.59693714770471,39.27348398939878],[-76.59693844858326,39.27348143659079],[-76.59693974946177,39.2734788837828],[-76.59694105149391,39.27347633187949],[-76.59694235237224,39.27347377907148],[-76.5969436544042,39.27347122716815],[-76.59694495759494,39.27346867526881],[-76.59694625962672,39.27346612336543],[-76.59694756281732,39.27346357146603],[-76.59694886600778,39.27346101956661],[-76.59695016919819,39.27345846766717],[-76.59695147238334,39.2734559166685],[-76.59695277673242,39.273453364773],[-76.59695408107625,39.27345081377823],[-76.59695538542003,39.27344826278348],[-76.59695668976883,39.27344571088793],[-76.59695799411237,39.27344315989315],[-76.59695929961472,39.2734406089023],[-76.59696060395812,39.27343805790742],[-76.59696191177808,39.27343550692452],[-76.59696322540762,39.27343295325922],[-76.5969645506207,39.27343040053441],[-76.59696589203746,39.27342785146826],[-76.59696725427808,39.27342530877895],[-76.59696864196268,39.27342277518453],[-76.59697005855766,39.2734202524985],[-76.59697150867288,39.27341774524045],[-76.59697299810281,39.27341525343032],[-76.59697453029331,39.27341278248452],[-76.59697610987477,39.27341033331968],[-76.5969777414673,39.27340790865395],[-76.5969794331575,39.2734055130189],[-76.59698125084259,39.27340317456442],[-76.59698319799404,39.27340089420311],[-76.59698524571166,39.27339865922508],[-76.59698736741289,39.27339645692847],[-76.59698953419247,39.27339427550413],[-76.59699171830894,39.27339210224607],[-76.59699389318497,39.27338992355167],[-76.59699602991522,39.27338772761183],[-76.59699810421967,39.27338550443478],[-76.59700014617269,39.27338326403215],[-76.59700218466429,39.2733810209153],[-76.59706232320698,39.27326940715781],[-76.59717607057094,39.27329868308376],[-76.59718202126612,39.27330076534493],[-76.59718524352949,39.27330189604763],[-76.59718842373097,39.27330308695728],[-76.59719152681798,39.27330438839643],[-76.59719449549439,39.2733058902452],[-76.59719739640406,39.27330748914414],[-76.59720032775643,39.27330903320071],[-76.59720338775085,39.27331037232389],[-76.59720661263445,39.27331144988985],[-76.59720991941643,39.27331239082029],[-76.59721328117691,39.27331324186263],[-76.59721667333406,39.27331404616933],[-76.59722006781922,39.27331484868239],[-76.59722343773807,39.27331569164555],[-76.59722677134333,39.27331660294221],[-76.59723009088367,39.27331754211429],[-76.59723340338907,39.2733184956744],[-76.59723671588438,39.27331945103588],[-76.59724003190746,39.2733203974017],[-76.59724335732436,39.27332132218132],[-76.59724669683698,39.27332221368086],[-76.59725005512172,39.2733230647102],[-76.59725342865597,39.27332388336425],[-76.59725680924575,39.27332468402709],[-76.59726018984588,39.27332548288831],[-76.59726356691324,39.27332629164572],[-76.59726693108475,39.27332712648101],[-76.59727027881236,39.27332799999273],[-76.59727359954846,39.27332893286233],[-76.59727688965808,39.27332995300099],[-76.59728015740156,39.27333103431497],[-76.59728341223388,39.273332144409],[-76.59728666476904,39.27333325089206],[-76.59728992562096,39.27333432137289],[-76.59729320540849,39.27333532255968],[-76.59729651359197,39.27333622115647],[-76.59729987619806,39.27333692357297],[-76.59730339296473,39.27333700859301],[-76.59730698062363,39.27333685425247],[-76.59731051441558,39.27333700238422],[-76.59731401331193,39.27333737738909],[-76.59731750956345,39.27333781003374],[-76.59732099151495,39.27333831198816],[-76.59732444750095,39.27333889672389],[-76.59732666544875,39.27333933669549],[-76.59732786587655,39.27333957410933],[-76.59733125247701,39.27334033695846],[-76.59733461787535,39.27334116008608],[-76.59733796910656,39.27334202910408],[-76.59734130854471,39.27334293411209],[-76.59734463859432,39.27334385980549],[-76.59734796511631,39.27334479449432],[-76.59735129165884,39.27334572558006],[-76.59735462292896,39.27334664046816],[-76.59735796819255,39.27334754009109],[-76.5973613169533,39.27334843612289],[-76.59736466102237,39.2733493420469],[-76.59736799104196,39.27335027314408],[-76.59737129651569,39.27335124108843],[-76.59737456809599,39.27335225935931],[-76.59737779642495,39.27335334323769],[-76.59738093335494,39.27335460425341],[-76.59738391590307,39.27335611335101],[-76.59738671429636,39.27335780737491],[-76.59738931486353,39.27335964484298],[-76.59739176866654,39.27336161331967],[-76.59739414440597,39.27336365539142],[-76.59739650616753,39.27336571002592],[-76.59739892148788,39.27336772070644],[-76.59740134933618,39.27336977016279],[-76.59740445524349,39.27337098423175],[-76.59740773160887,39.27337197639594],[-76.5974110651936,39.27337289219113],[-76.59741442443715,39.27337377924963],[-76.59741777893798,39.27337468520793],[-76.59742109482303,39.27337565678953],[-76.59742434053685,39.27337674072622],[-76.59742754180982,39.27337789567095],[-76.59743073487876,39.27337906680121],[-76.59743391859001,39.27338025321233],[-76.5974370952765,39.27338145221004],[-76.59744026726634,39.27338266200072],[-76.59744343225189,39.27338388077495],[-76.59744659488406,39.27338510584637],[-76.59744975516794,39.27338633631427],[-76.59745291311879,39.27338756947638],[-76.59745606990072,39.2733888044359],[-76.5974592278518,39.27339003759784],[-76.59746238814124,39.27339126716467],[-76.59746555077406,39.27339249223559],[-76.59746871808846,39.27339370921556],[-76.59747189008445,39.27339491810464],[-76.59747506794137,39.27339611530376],[-76.59747825282321,39.27339729991615],[-76.59748144706298,39.27339846924754],[-76.59748468342093,39.27339956846346],[-76.59748800399967,39.27340053015089],[-76.59749135736941,39.27340143159936],[-76.59749469208991,39.27340235189983],[-76.59749795208047,39.27340337102832],[-76.59750093826813,39.27340485221165],[-76.59750290955378,39.27340709917033],[-76.59750430437198,39.27340963780283],[-76.59750568642222,39.27341217999465],[-76.59750705224836,39.27341472213082],[-76.59750860048803,39.27341718202173],[-76.59751057048253,39.27341945239569],[-76.59751277055767,39.27342161366479],[-76.59751497768841,39.2734237569427],[-76.59751720575055,39.2734258876816],[-76.59751945939497,39.27342800319507],[-76.59752173630898,39.27343010257449],[-76.59752403532855,39.2734321867166],[-76.59752637852866,39.27343424578866],[-76.59752882415944,39.27343622594434],[-76.59753137223633,39.27343812448137],[-76.59753395637642,39.2734399988213],[-76.59753658242521,39.27344183997645],[-76.59753925275156,39.27344363894731],[-76.59754197552371,39.27344538585343],[-76.5975447297389,39.27344710584426],[-76.59754750724413,39.27344880609803],[-76.59755031387461,39.27345047942858],[-76.59755315548611,39.27345211504676],[-76.59755603560626,39.27345370395703],[-76.59755896007547,39.27345523807257],[-76.59756192419688,39.27345672818636],[-76.59756491630512,39.27345818776998],[-76.59756793640022,39.27345961682342],[-76.59757097984662,39.27346101533073],[-76.59757404547014,39.27346238599021],[-76.59757712980439,39.27346372698855],[-76.59758023167512,39.27346504102389],[-76.59758336044531,39.27346631191457],[-76.59758655580798,39.27346748845303],[-76.59758979439647,39.27346860388747],[-76.59759304468623,39.27346969954505],[-76.59759627979318,39.27347081586816],[-76.59759946588521,39.27347199237448],[-76.59760257607324,39.27347327040709],[-76.59760569727283,39.27347465026385],[-76.59760882479749,39.27347614093632],[-76.597611692805,39.27347782258253],[-76.59761403427878,39.27347977805886],[-76.59761573649125,39.27348206282663],[-76.59761703391321,39.27348461103244],[-76.5976180082381,39.27348732207061],[-76.59761873534967,39.27349009801762],[-76.59761929230568,39.27349283825185],[-76.59761940672945,39.2734955490462],[-76.59761897271883,39.27349830840448],[-76.59761855029694,39.27350106780247],[-76.5976186750944,39.27350378854078],[-76.59761925864848,39.27350653877455],[-76.59762024123404,39.27350922371874],[-76.59762170604058,39.27351168332221],[-76.59762372738432,39.27351389171736],[-76.59762615995623,39.27351592767365],[-76.59762878215561,39.27351783547011],[-76.59763142572059,39.27351965416395],[-76.5976341822126,39.27352138226733],[-76.59763705056476,39.27352300356285],[-76.59764000999385,39.27352450446774],[-76.59764306557913,39.27352601110657],[-76.5976462204398,39.27352758654352],[-76.59764942518392,39.27352894867],[-76.59765263045027,39.27352980997275],[-76.5976557841467,39.27352975141751],[-76.59765888712657,39.2735284181058],[-76.59766203612024,39.27352673635546],[-76.59766533780292,39.27352571809131],[-76.59766894860832,39.27352516207774],[-76.59767266793381,39.27352488387143],[-76.5976761745454,39.2735251264794],[-76.59767918439032,39.27352611592136],[-76.59768180556591,39.27352779581958],[-76.59768420763635,39.27352989742599],[-76.59768652887622,39.27353215188558],[-76.59768890988801,39.27353428854961],[-76.59769132402262,39.27353630642604],[-76.59769368573212,39.27353837276419],[-76.59769611852656,39.27354036998685],[-76.59769874708996,39.27354217781862],[-76.59770157249962,39.27354381067534],[-76.59770447233791,39.27354539784794],[-76.59770744207671,39.27354692040478],[-76.59771047718765,39.27354835941435],[-76.59771357429628,39.27354969684973],[-76.59771673003827,39.27355091288252],[-76.59771995501211,39.2735519778238],[-76.59772327480492,39.27355287554748],[-76.59772666598386,39.27355365101153],[-76.59773009931136,39.27355435095555],[-76.59773354786266,39.27355502302786],[-76.59773698355403,39.27355571487291],[-76.59774038533673,39.27355645974684],[-76.59774378478131,39.27355720821572],[-76.59774718542062,39.27355795038325],[-76.59775058841348,39.27355868625337],[-76.59775399259084,39.27355941762366],[-76.59775739911152,39.27356014449798],[-76.5977608068014,39.27356086957472],[-76.59776422386959,39.2735615757674],[-76.59776769707454,39.27356219207576],[-76.59777119953746,39.27356275804133],[-76.59777469616523,39.27356333119296],[-76.59777815302354,39.27356396906334],[-76.59778153387583,39.27356472647509],[-76.59778480593644,39.27356566276647],[-76.5977879457778,39.27356682199467],[-76.59779100807137,39.27356816831641],[-76.59779399182158,39.27356967290373],[-76.5977968844136,39.2735713122936],[-76.59779967323767,39.27357306212214],[-76.59780234682761,39.27357490073174],[-76.59780489141464,39.27357680375459],[-76.59780726396713,39.27357879806633],[-76.59780942702328,39.27358095019527],[-76.59781144574055,39.27358321442555],[-76.5978133876452,39.27358553604174],[-76.59781532139708,39.27358786483609],[-76.59781731450707,39.2735901487954],[-76.59781943565025,39.27359233500971],[-76.59782196279906,39.27359424788091],[-76.5978249674925,39.27359573812688],[-76.59782820643775,39.27359679230386],[-76.59783159262196,39.27359763170207],[-76.59781258722862,39.27363290183606],[-76.59782432240094,39.27363717021249],[-76.59784366245094,39.27364447588557],[-76.59791243358629,39.27366867169665],[-76.59793318525941,39.2736751480791],[-76.59806994710308,39.27372365488436],[-76.59813760635038,39.27374735223736],[-76.59829498613931,39.27380411457499],[-76.59829158472762,39.27380841850658],[-76.59842408765169,39.2738576183304],[-76.59850892380621,39.27388941352464],[-76.59858230207691,39.27377246580247],[-76.59869567215239,39.27359146616473],[-76.59886229192416,39.27332353079311],[-76.5988880374596,39.2732951221165],[-76.59894880547307,39.27317534951865],[-76.598976903048,39.27313143227196],[-76.59902529881499,39.27305527657359],[-76.59904873500825,39.27306410661735],[-76.59900806216213,39.27313943476768],[-76.59922795086142,39.27321712326517],[-76.59943834750598,39.27328886274949],[-76.59948645252612,39.27330048633783],[-76.59957335029728,39.27331808813815],[-76.59970674841722,39.27336554479217],[-76.59971282428491,39.2733678444358],[-76.59971599983022,39.27336904697091],[-76.59971917538068,39.27337024860513],[-76.59972235092107,39.27337145204079],[-76.59972552529764,39.27337265637316],[-76.59972869850529,39.27337386250299],[-76.59973187054906,39.27337506952952],[-76.59973505660108,39.27337625858841],[-76.59973824966234,39.2733774377627],[-76.59974143804753,39.27337862412708],[-76.59974460774352,39.27337983654985],[-76.599747747065,39.27338109210579],[-76.59975084433682,39.27338240606802],[-76.59975392636048,39.27338375240579],[-76.59975699433045,39.27338512481774],[-76.59976003661727,39.27338653047044],[-76.59976304273526,39.27338797923647],[-76.59976600338287,39.27338947648882],[-76.59976890576172,39.27339103119152],[-76.599771721881,39.27339267477588],[-76.59977443422547,39.27339443060224],[-76.59977707661595,39.27339626095361],[-76.59977968171931,39.27339812720848],[-76.59978228103351,39.27339999254281],[-76.59978486176018,39.27340186592065],[-76.59978739008865,39.27340378325732],[-76.59978990676241,39.27340571226418],[-76.59979245022765,39.27340761704163],[-76.59979505423901,39.27340947158248],[-76.59979770017834,39.27341128933478],[-76.59980037056589,39.2734130873535],[-76.59980304911146,39.27341487729304],[-76.59980572182721,39.27341667351803],[-76.59980836307567,39.27341850116251],[-76.59981099266432,39.27342034137793],[-76.59981365373585,39.27342214747149],[-76.59981639291448,39.27342387186148],[-76.59981929409628,39.2734254337649],[-76.59982234687185,39.27342682954328],[-76.59982547570084,39.27342809677128],[-76.59982875418171,39.2734291312109],[-76.59973471690182,39.27357309171309],[-76.59967985801059,39.27365608678882],[-76.59961180242524,39.27378593247737],[-76.59951358538648,39.2739616881551],[-76.59941538459975,39.27413714744711],[-76.5994514265653,39.27415133040923],[-76.59945757033979,39.27414120064199],[-76.59945903681789,39.27413721885768],[-76.59945998468618,39.27413457113911],[-76.59946093023655,39.27413192341262],[-76.59946189198588,39.27412928024518],[-76.59946288497932,39.27412664529116],[-76.59946392657473,39.27412402311358],[-76.59946503180709,39.27412141916832],[-76.59946620648103,39.27411883167361],[-76.59946742975693,39.27411625695537],[-76.59946869585052,39.27411369319228],[-76.5994700012902,39.27411113947181],[-76.59947133912773,39.27410859486941],[-76.59947270471741,39.27410606117088],[-76.59947409460294,39.27410353476125],[-76.59947550066195,39.27410101741442],[-76.59947695764068,39.27409851285194],[-76.59947855230806,39.27409604749184],[-76.599480286809,39.27409365196749],[-76.59948225620775,39.27409132029768],[-76.59948525851711,39.27409016314456],[-76.59948877567926,39.27409039042123],[-76.59949232894922,39.27409099614214],[-76.5994957179622,39.27409175263138],[-76.59949906445202,39.27409265129638],[-76.5995024015081,39.27409357875353],[-76.59950576570174,39.27409442073053],[-76.59950918776372,39.27409507104176],[-76.59951264398767,39.27409562328606],[-76.59951611550088,39.2740961359487],[-76.59951959883178,39.27409660811712],[-76.59952309280619,39.27409704248963],[-76.59952659394241,39.27409743995508],[-76.5995300999176,39.2740978014063],[-76.59953360609107,39.27409812772829],[-76.59953711599039,39.27409840992538],[-76.59954063444924,39.27409861288427],[-76.59954416136605,39.27409875461984],[-76.59954769428573,39.27409885944444],[-76.59955122844053,39.27409895076163],[-76.59955476138563,39.27409905108225],[-76.59955829181476,39.27409918652403],[-76.59956181859941,39.27409935167852],[-76.59956535010102,39.27409950243679],[-76.5995688827615,39.27409965319885],[-76.59957241301275,39.27409982016635],[-76.59957593726624,39.27410002314393],[-76.5995794519487,39.27410027923388],[-76.59958295231795,39.27410060733612],[-76.59958644417345,39.27410100656967],[-76.59958993570875,39.27410146255021],[-76.59959341762229,39.27410198065065],[-76.59959687826419,39.27410257164037],[-76.59960030833287,39.27410324089234],[-76.59960369618362,39.27410399827524],[-76.59960703008517,39.27410486897049],[-76.59961030992582,39.27410587279459],[-76.59961355216379,39.27410696836842],[-76.59961677326227,39.27410811341214],[-76.59961999199236,39.27410926745537],[-76.59962322366843,39.27411038641279],[-76.59962647412574,39.27411146309822],[-76.59962972226027,39.27411254067639],[-76.59963297038475,39.27411362005598],[-76.59963621967836,39.27411469763792],[-76.59963947015126,39.27411577162071],[-76.59964272413649,39.27411683931005],[-76.59964598396202,39.27411789891233],[-76.5996492461512,39.27411895041568],[-76.59965251067854,39.27411999832385],[-76.59965577753897,39.27412104353758],[-76.59965904557365,39.27412208605296],[-76.59966231361861,39.27412312676672],[-76.59966558399161,39.2741241656868],[-76.5996688543799,39.2741252019046],[-76.59967212709626,39.27412623632862],[-76.59967539981777,39.27412726985184],[-76.59967867254451,39.27412830247423],[-76.59968194644036,39.27412933329899],[-76.59968522268457,39.27413035872706],[-76.59968850243602,39.27413137876242],[-76.59969178453079,39.27413239430181],[-76.59969506896371,39.27413340624603],[-76.59969835223781,39.27413441818626],[-76.59970163667097,39.27413543013031],[-76.59970491877114,39.27413644476862],[-76.59970819852825,39.27413746390263],[-76.59971147477322,39.27413848932999],[-76.59971474749588,39.27413952285212],[-76.59971801553228,39.27414056536581],[-76.59972127655448,39.27414161866471],[-76.59972453872554,39.27414267376894],[-76.59972780088647,39.27414373067462],[-76.59973106070943,39.27414479117526],[-76.59973431817912,39.27414585797315],[-76.59973756979353,39.27414693556018],[-76.5997408132298,39.27414802482919],[-76.59974404731372,39.27414912847849],[-76.59974727086104,39.27415025100783],[-76.59975048038498,39.27415139420688],[-76.59975367471648,39.27415255987323],[-76.59975684914377,39.27415376150221],[-76.59975999897036,39.2741550098871],[-76.59976312071441,39.27415630591671],[-76.59976620976082,39.27415764597229],[-76.59976926378668,39.27415903094671],[-76.59977227933572,39.27416045722509],[-76.5997752377437,39.27416194636223],[-76.5997780958169,39.27416355405836],[-76.59978088855053,39.27416523989834],[-76.59978366144603,39.27416694999128],[-76.59978645883577,39.27416863224391],[-76.59977812301908,39.27418729020651],[-76.60014645378703,39.2742986983877],[-76.60015251348608,39.27428722615905],[-76.60015475551474,39.27428792557919],[-76.60014716343592,39.27430438643129],[-76.60057422043216,39.27444368809309],[-76.60070021331251,39.27425539366829],[-76.60070469372404,39.27425579442782],[-76.60070820833724,39.27425606489599],[-76.60071173678293,39.27425614264734],[-76.60071525781279,39.2742558906935],[-76.60071877030141,39.27425550900036],[-76.60072227045788,39.27425505340247],[-76.60072569062241,39.27425439666199],[-76.60072904253084,39.27425351269666],[-76.60073239625709,39.27425251163795],[-76.60073562928315,39.27425133542045],[-76.60073861448623,39.27424992055852],[-76.60074113637566,39.27424804923528],[-76.60074320785627,39.27424569357093],[-76.60074527203879,39.27424339913374],[-76.60074786338835,39.27424174693233],[-76.60075167832899,39.2742415752438],[-76.60075429255079,39.2742430667892],[-76.60075621309655,39.27424549727585],[-76.60075782241161,39.27424804200236],[-76.60075915010174,39.27425058847385],[-76.60076020496142,39.27425322139209],[-76.60076114031381,39.27425587912551],[-76.60076209522543,39.27425856214682],[-76.60076289707766,39.27426125996082],[-76.60076336050913,39.27426396112826],[-76.60076341114306,39.2742667023277],[-76.6007633299965,39.27426958990389],[-76.60076299271009,39.27427248111318],[-76.60076222176779,39.27427520600845],[-76.60076083849975,39.27427759373776],[-76.60075872058056,39.27427955200723],[-76.60075600863954,39.27428121550891],[-76.60075291995476,39.27428269037078],[-76.60074966831255,39.2742840854113],[-76.60074646984222,39.27428550495311],[-76.60074354065803,39.27428705602114],[-76.60074174136994,39.27428923245781],[-76.60074209156237,39.27429208006506],[-76.6007427566653,39.2742947774143],[-76.60074354809737,39.27429747339144],[-76.60074438009566,39.27430016860572],[-76.60074516805624,39.27430286367035],[-76.6007458250421,39.27430556189274],[-76.60074626761316,39.2743082629893],[-76.60074632516941,39.27431100961685],[-76.60074570494584,39.27431392958954],[-76.60074476240386,39.27431687458868],[-76.60074393083828,39.27431966323201],[-76.60074363890828,39.27432211412142],[-76.60074502386846,39.27432375101525],[-76.60074930997146,39.27432346563054],[-76.600752224556,39.27432203791749],[-76.60075459677525,39.27431999133685],[-76.60075677807835,39.27431768468693],[-76.60075889643124,39.27431544357881],[-76.60076089213942,39.27431316692393],[-76.60076280587042,39.27431083594446],[-76.60076472650898,39.27430851309534],[-76.60076673716071,39.27430625810948],[-76.60076892672051,39.27430413164035],[-76.60077135308205,39.27430214289235],[-76.6007739840601,39.27430024491629],[-76.60077678802504,39.27429849795591],[-76.60077973449097,39.27429696496109],[-76.60078280109948,39.27429570620708],[-76.60078618244766,39.27429473946977],[-76.60078977025714,39.27429415355691],[-76.60079332049227,39.27429406653993],[-76.60079666933927,39.27429455082402],[-76.60079995560307,39.27429544744553],[-76.60080320327228,39.27429661236371],[-76.60080642124466,39.27429790599023],[-76.60080961492102,39.27429919232799],[-76.60081278583526,39.27430040472556],[-76.60081592520622,39.27430166205407],[-76.60081904119176,39.27430295623437],[-76.60082214431306,39.27430427108847],[-76.60082524510149,39.27430558863682],[-76.60082834940724,39.27430689899093],[-76.60083143264531,39.27430824620473],[-76.60083449949694,39.27430962218725],[-76.60083756518469,39.27431099906649],[-76.60084064376223,39.274312350768],[-76.60084375392886,39.27431364943172],[-76.60084690857428,39.27431486987992],[-76.60085012163049,39.2743160076562],[-76.60085338089034,39.27431717261238],[-76.60085667729049,39.27431832778627],[-76.60086000537605,39.27431941280811],[-76.60086336087109,39.27432036370899],[-76.60086673832075,39.27432112011922],[-76.60087013113136,39.27432161806205],[-76.60087356730368,39.27432182430437],[-76.6008771275749,39.27432180757858],[-76.6008807527808,39.27432157849292],[-76.60088437222404,39.27432113770778],[-76.60088791288439,39.27432048677663],[-76.60089130175174,39.27431962545138],[-76.6008944669598,39.27431855619012],[-76.60089734881362,39.27431717790436],[-76.60089998818852,39.27431543488554],[-76.60090245976885,39.2743134417847],[-76.6009048440435,39.27431131147088],[-76.60090721570202,39.27430915769424],[-76.60090965407944,39.27430709241923],[-76.6009122051362,39.27430518606167],[-76.60091478730044,39.27430331223724],[-76.60091738214648,39.27430145016579],[-76.60091998738183,39.27429959533573],[-76.60092259838113,39.27429774592979],[-76.60092521168791,39.27429589833314],[-76.6009278330713,39.27429405706923],[-76.60093050177147,39.27429225109586],[-76.60093318662501,39.27429045778803],[-76.60093584608417,39.27428864637854],[-76.60093843860119,39.27428678610028],[-76.60094091571045,39.27428483985711],[-76.60094307572597,39.27428260789491],[-76.60094508453983,39.27428026642632],[-76.60094726816223,39.27427816425435],[-76.6009502089597,39.27427681409129],[-76.6009538666513,39.27427678418276],[-76.60095737054533,39.27427751850084],[-76.60096058503291,39.27427881391284],[-76.60096288248633,39.27428078718729],[-76.60096476444738,39.27428327969211],[-76.60096600794569,39.27428596098989],[-76.60096623803408,39.2742885289513],[-76.60096502653525,39.27429107940422],[-76.60096310720331,39.27429358331476],[-76.60096123619108,39.27429594416786],[-76.60095917571358,39.27429819898775],[-76.60095702621423,39.27430041567298],[-76.60095496115672,39.27430266056884],[-76.60095315750138,39.2743049964292],[-76.60095174476032,39.27430747413703],[-76.60095057250082,39.27431005354761],[-76.60094958064803,39.27431270112846],[-76.60094874036152,39.27431539336173],[-76.60094802395447,39.2743181076343],[-76.60094740259667,39.27432081862671],[-76.6009468762677,39.274323529942],[-76.60094655940394,39.27432629421331],[-76.60094653222208,39.27432906667499],[-76.60094686919511,39.27433179353415],[-76.60094751933181,39.27433447461759],[-76.60094828876838,39.27433716781625],[-76.60094918573355,39.27433985244063],[-76.60095022077385,39.27434250780881],[-76.60095140792268,39.27434511144945],[-76.60095275773162,39.27434764178005],[-76.60095429697672,39.27435007727318],[-76.60095610332894,39.27435241368887],[-76.60095812801873,39.27435466797602],[-76.6009603013911,39.27435686151628],[-76.60096255496002,39.27435901389379],[-76.60096481792684,39.27436114378403],[-76.60096707057016,39.27436325472313],[-76.6009694162592,39.27436530652781],[-76.60097183522696,39.27436731084089],[-76.60097429839983,39.27436928557881],[-76.60097677440167,39.27437124594808],[-76.60097925620826,39.27437320453549],[-76.60098180550922,39.27437511381006],[-76.60098447949549,39.27437690190494],[-76.6009873388092,39.27437850146875],[-76.60099032865327,39.27437997086502],[-76.60099332314824,39.27438143757477],[-76.60100092394171,39.27438462057684],[-76.60104653128643,39.27439151322509],[-76.60111915098639,39.27443523528819],[-76.60136888343092,39.27441431978092],[-76.60143039212662,39.27443341216057],[-76.60140000087065,39.27445505618628],[-76.60144261137995,39.27447143347065],[-76.60167445374765,39.27456053996031],[-76.60173682649288,39.27458615934699],[-76.60189128916093,39.27464998064877],[-76.60201591703951,39.27469063927662],[-76.60181812449724,39.27487237642533],[-76.60170446952047,39.27497635994898],[-76.601707932331,39.27497863981714],[-76.60167669443004,39.2750065629726],[-76.60169064470979,39.27508928966111],[-76.60169684865252,39.27509358572879],[-76.60272674976724,39.27499075029721],[-76.60272674976723,39.27499075029726],[-76.60295977938807,39.27496748156128],[-76.60337719466909,39.27492552007094],[-76.60338328815857,39.27493673715113],[-76.60340558281666,39.27507183523341],[-76.60340615676054,39.27507531051938],[-76.60344147412462,39.27529442992964],[-76.60345881822012,39.27540254148509],[-76.60349076058561,39.27539964617637],[-76.60349375745703,39.27541895426999],[-76.60346660976531,39.27542160814861],[-76.60348008545165,39.27550586520501],[-76.60363192582523,39.27549017927766],[-76.60402326437617,39.27545070817373],[-76.60435500214651,39.27541748538565],[-76.60441459944039,39.2757846953392],[-76.60430955307169,39.27579454354662],[-76.60433229548629,39.27593450524581],[-76.60426260647583,39.27594235662107],[-76.60427034052216,39.27599006733548],[-76.60257093700581,39.27615854971022],[-76.60256418198075,39.2761537113672],[-76.60202060671406,39.27620790370685],[-76.60167422520053,39.2762422133185],[-76.60166835536384,39.27624279512212],[-76.60166485109167,39.2762431417418],[-76.60166134682451,39.27624348746064],[-76.60165784255229,39.27624383408013],[-76.60165433828485,39.27624417979878],[-76.6016508340176,39.2762445255173],[-76.60164732975026,39.27624487123568],[-76.60164382548295,39.27624521695399],[-76.60164032121538,39.27624556267229],[-76.60163681694294,39.27624590929109],[-76.60163331267552,39.27624625500909],[-76.60162980839794,39.2762466025285],[-76.60162630528431,39.276246949151],[-76.60162280100651,39.27624729667016],[-76.60161929672371,39.27624764508997],[-76.60161579244097,39.27624799350969],[-76.60161228930679,39.27624834373474],[-76.6016087861728,39.27624869395966],[-76.60160528187475,39.27624904508136],[-76.60160177873053,39.27624939710758],[-76.60159827558105,39.27624975003442],[-76.60159477242669,39.2762501038619],[-76.60159127043609,39.27625045679251],[-76.60158776728167,39.27625081061979],[-76.601584264127,39.27625116444701],[-76.60158076097244,39.27625151827408],[-76.60157725781789,39.27625187210113],[-76.60157375465806,39.27625222682874],[-76.60157025266241,39.27625258065943],[-76.60156674950757,39.27625293448609],[-76.60156324634778,39.27625328921338],[-76.60155974319306,39.27625364303987],[-76.60155624119201,39.27625399777089],[-76.60155273803217,39.27625435249791],[-76.60154923487208,39.2762547072248],[-76.60154573171718,39.27625506105088],[-76.6015422297162,39.27625541578151],[-76.60153872655096,39.2762557714088],[-76.60153522339093,39.27625612613526],[-76.60153172138958,39.27625648086558],[-76.60152821822949,39.27625683559184],[-76.60152471506431,39.27625719121879],[-76.60152121306291,39.27625754594877],[-76.60151770989761,39.27625790157555],[-76.60151420673212,39.27625825720205],[-76.60151070473081,39.27625861193172],[-76.60150720156525,39.2762589675581],[-76.60150369955876,39.27625932318833],[-76.60150019639319,39.27625967881456],[-76.60149669322767,39.27626003444058],[-76.60149319121608,39.2762603909713],[-76.60148968805035,39.27626074659711],[-76.60148618604369,39.27626110222681],[-76.60148268287281,39.27626145875321],[-76.60147918086614,39.27626181438271],[-76.60147567769519,39.27626217090887],[-76.6014721756884,39.27626252653819],[-76.60146867251738,39.27626288306415],[-76.60146517050551,39.27626323959397],[-76.60146166733465,39.27626359611973],[-76.60145816532248,39.2762639526494],[-76.60145466215148,39.27626430917494],[-76.60145116013926,39.27626466570432],[-76.60144765812721,39.27626502223366],[-76.60144415495596,39.27626537875886],[-76.60144065294378,39.276265735288],[-76.60143714976739,39.2762660927138],[-76.60143364775519,39.27626644924265],[-76.60143252757409,39.27626656344155],[-76.60143014573771,39.27626680667215],[-76.60142664256642,39.27626716319686],[-76.60142314054907,39.27626752062623],[-76.60141963853147,39.27626787805543],[-76.60141613535487,39.27626823548061],[-76.60141263333735,39.2762685929096],[-76.60140913131984,39.27626895033846],[-76.60140562814314,39.2762693077633],[-76.60140212612552,39.276269665192],[-76.6013986241077,39.27627002262057],[-76.60139512209007,39.27627038004904],[-76.60139161890815,39.27627073837423],[-76.60138811689039,39.27627109580248],[-76.60138461486737,39.27627145413141],[-76.60138111284454,39.27627181246021],[-76.60137761082144,39.27627217078887],[-76.60137410763951,39.27627252911356],[-76.60137060561129,39.27627288834282],[-76.60136710358832,39.27627324667115],[-76.60136360156002,39.27627360590014],[-76.6013600995317,39.27627396512909],[-76.6013565975035,39.27627432435797],[-76.6013530954753,39.27627468358668],[-76.60134959344181,39.27627504371598],[-76.60134609140827,39.27627540384525],[-76.60134258937994,39.27627576307367],[-76.60133908734635,39.27627612320271],[-76.60133558531291,39.27627648333164],[-76.60133208443308,39.27627684436517],[-76.60132858239959,39.27627720449386],[-76.60132508036078,39.27627756552327],[-76.601321578327,39.27627792565177],[-76.60131807628828,39.27627828668097],[-76.60131457540834,39.27627864771396],[-76.60131107336449,39.27627900964362],[-76.60130757132551,39.27627937067248],[-76.60130406928162,39.27627973260199],[-76.60130056840153,39.27628009363453],[-76.60129706635739,39.27628045556384],[-76.60129356546726,39.27628081839767],[-76.60129006342304,39.27628118032679],[-76.60128656137894,39.2762815422557],[-76.60128306048854,39.27628190508928],[-76.60127955843936,39.27628226791877],[-76.6012760575539,39.27628262985137],[-76.60127255549938,39.27628299358142],[-76.60126905460905,39.27628335641455],[-76.60126555371842,39.27628371924754],[-76.60126205165872,39.27628408387805],[-76.6012585518918,39.27628445302006],[-76.60125505210941,39.27628482486413],[-76.60125155230678,39.27628520031114],[-76.6012480536529,39.27628557756352],[-76.60124455498888,39.27628595661719],[-76.60124105631468,39.27628633747229],[-76.60123755879438,39.27628671923195],[-76.60123406011502,39.27628710098758],[-76.60123055788289,39.27628749624254],[-76.60122727804124,39.27628853269588],[-76.60122417387397,39.27628986159311],[-76.6012214441794,39.27629157909035],[-76.6012189864108,39.27629357854915],[-76.60121669614918,39.2762956740577],[-76.60121464494365,39.27629791990473],[-76.60121305506956,39.27630035918089],[-76.60121198103182,39.27630298576584],[-76.60121123807602,39.2763056792307],[-76.60121119954736,39.27630841021715],[-76.60121159442021,39.27631114898043],[-76.60121201022464,39.27631387520405],[-76.60121243530548,39.27631660055844],[-76.60121286850381,39.27631932503962],[-76.60121330749681,39.2763220495405],[-76.60121374880769,39.2763247740492],[-76.60121419128266,39.27632749766107],[-76.60121463375259,39.27633022217369],[-76.60121507158692,39.27633294667057],[-76.60121550478544,39.27633567115181],[-76.60121593102549,39.27633839651002],[-76.60121635030693,39.27634112274547],[-76.6012167661065,39.27634384986983],[-76.6012171784345,39.27634657608159],[-76.6012175884396,39.27634930318631],[-76.60121799728594,39.27635203028703],[-76.60121840497312,39.27635475738382],[-76.60121881150165,39.2763574844767],[-76.60121921687099,39.27636021156564],[-76.60121962223555,39.27636293955532],[-76.60122002760522,39.27636566664422],[-76.60122043413381,39.27636839373707],[-76.60122084066228,39.27637112082987],[-76.60122124950887,39.27637384793057],[-76.60122165603228,39.27637657592416],[-76.60122264049969,39.27637916355924],[-76.60122438750361,39.27638155381364],[-76.60122652736271,39.27638374272981],[-76.60122893715042,39.27638574430267],[-76.60123166588542,39.27638749744665],[-76.60123462549495,39.27638900096191],[-76.60123783509847,39.27639015222636],[-76.60124120180019,39.27639098335188],[-76.60124468673808,39.276391397825],[-76.6012482070564,39.27639170342557],[-76.60143192473583,39.27637387844791],[-76.60167350171814,39.27635043948984],[-76.60168841002633,39.27634947128405],[-76.60180551479058,39.27633826020701],[-76.60223538195967,39.27629576128088],[-76.60318025083673,39.27620161176967],[-76.60353009616772,39.27616676354859],[-76.60428654275775,39.27609100931552],[-76.60429376608013,39.2761392830847],[-76.60436621157697,39.27613386583297],[-76.60441234756864,39.27641225105613],[-76.60435895532274,39.27641592288401],[-76.60434323191652,39.2764298452737],[-76.60434649938011,39.27645201237475],[-76.60434356353237,39.27645205472929],[-76.60434611890551,39.27646890762566],[-76.60443898019523,39.27648811753123],[-76.6043781109172,39.27655487622057],[-76.60431055481723,39.27656253934336],[-76.60431947665826,39.27661673324278],[-76.60439877244278,39.27660874754929],[-76.60454916210772,39.27659381038806],[-76.6046311999436,39.27708913113401],[-76.60465372909098,39.27722179670968],[-76.60450822175079,39.27723635771327],[-76.60437268851305,39.2772504747284],[-76.60434497955563,39.277246001878],[-76.60400144715308,39.27728120349562],[-76.60388564583882,39.27729351378544],[-76.60388436458629,39.27728075104483],[-76.60378789485226,39.27729096009525],[-76.60380136973839,39.27737217158069],[-76.60381720434565,39.27737118461065],[-76.60384239284841,39.27752526415659],[-76.6038396628303,39.27754219471301],[-76.60383867303406,39.27755818443615],[-76.6038402546575,39.27758357239411],[-76.6038473277779,39.27762592404219],[-76.60385107003674,39.27764336734413],[-76.60385924755008,39.27766622748509],[-76.60385996498749,39.27766767382914],[-76.60386808827299,39.27768405639403],[-76.60387408294446,39.27772216270547],[-76.60379391327974,39.27774278551676],[-76.60373768178114,39.27775743860617],[-76.6037079061324,39.27776501715881],[-76.60343107441001,39.2777978938788],[-76.60343960629802,39.27785209191508],[-76.60332128020279,39.27786535153832],[-76.60329524922527,39.27789052554147],[-76.60330763994945,39.27796718995671],[-76.60334144332798,39.27798922420362],[-76.60352484011355,39.27797077243701],[-76.60404591331736,39.2779176583524],[-76.60464395682123,39.27785780753573],[-76.60493965267855,39.27782785493732],[-76.60531171232775,39.27779026213181],[-76.60559100311573,39.27776206150096],[-76.60560293793557,39.27782777805783],[-76.60567462673201,39.27782096487487],[-76.60568277118797,39.27787532357885],[-76.60573081676579,39.27790339052303],[-76.60574348405886,39.2779751824694],[-76.60570697111642,39.27801222360858],[-76.60571597939305,39.27807006665811],[-76.60564507767982,39.27807701852451],[-76.60565451427654,39.27814474439235],[-76.60534114912606,39.27817360444546],[-76.60533746401991,39.27817394336102],[-76.60533755814019,39.27817452466977],[-76.60538399129751,39.27845979215851],[-76.6049171706497,39.27850559131924],[-76.6039190925591,39.27860449538891],[-76.60393812510418,39.27872184348107],[-76.60419360784363,39.27869672576249],[-76.60438913185672,39.27867779557148],[-76.60474969006367,39.27864204389263],[-76.60526201662996,39.27859148557255],[-76.60562572209902,39.27855629395162],[-76.60584819719587,39.27853469188234],[-76.6058591197169,39.27859889712197],[-76.60589273194849,39.27859628329597],[-76.60592412637742,39.27880996414104],[-76.6058901414703,39.27881413594719],[-76.60590043469369,39.27887960193612],[-76.60586482816615,39.27888317739324],[-76.60589367915129,39.27905044957325],[-76.60577580177382,39.27910970615054],[-76.60436441388565,39.27924941694788],[-76.60429158884116,39.27925644168891],[-76.60430602611621,39.2793545798496],[-76.60480176011974,39.2793054953255],[-76.60591386782626,39.27919542130255],[-76.60592096231483,39.27930700013299],[-76.60593825952064,39.27957903461211],[-76.60594029595119,39.27960114076808],[-76.6059387689983,39.27960562234671],[-76.60593781784178,39.27960826649865],[-76.60593670698177,39.2796108677789],[-76.60593539243693,39.27961341523078],[-76.60593400266838,39.27961594261352],[-76.60593268811334,39.27961849186688],[-76.60593147885997,39.27962107119875],[-76.60593029621791,39.27962365872666],[-76.60592907770736,39.2796262353251],[-76.60592782216466,39.27962880189084],[-76.60592655273923,39.27963136390622],[-76.60592527868266,39.27963392500532],[-76.60592400809804,39.27963648701679],[-76.60591760351937,39.27964628564917],[-76.60591269603057,39.27964988484749],[-76.60590672280821,39.27965275985937],[-76.60590026135935,39.27965526932446],[-76.60589350458955,39.27965732111145],[-76.60588664079397,39.27965881856952],[-76.6058797899525,39.27965965310909],[-76.60587280484543,39.27965982964052],[-76.6058657142802,39.27965958696278],[-76.60585857019895,39.27965917205932],[-76.60585142451326,39.27965883731802],[-76.60584432799625,39.27965883151972],[-76.60583730886147,39.27965929167528],[-76.60583030717935,39.27965994825535],[-76.60582331747507,39.27966074359276],[-76.60581633874985,39.27966164885972],[-76.60580937233291,39.27966263343463],[-76.60580241606117,39.27966366938676],[-76.60579547242801,39.27966472519764],[-76.60578852428873,39.27966575757317],[-76.60578147954594,39.2796666545096],[-76.60577436458593,39.27966746473664],[-76.60576723228604,39.2796682667982],[-76.60576013206206,39.27966913652432],[-76.60575311563224,39.27967015245476],[-76.60574623587429,39.27967139313361],[-76.60573954335761,39.27967293529541],[-76.60573308864646,39.27967485657565],[-76.60572692117159,39.27967723010196],[-76.60572103056718,39.27968004412988],[-76.60571536628842,39.27968321742083],[-76.60570987200107,39.27968666781653],[-76.60570449716563,39.27969031317777],[-76.60569918776555,39.27969407135381],[-76.60569388863058,39.27969785928926],[-76.60568854922126,39.27970159484502],[-76.60568311436202,39.27970519586636],[-76.60567753808938,39.27970859103877],[-76.60567195132539,39.2797119969848],[-76.60566639887459,39.2797154850152],[-76.60566085091884,39.27971899828183],[-76.60565527761537,39.27972248444011],[-76.60564964914096,39.27972588754284],[-76.60564393682174,39.27972915344766],[-76.60563810850644,39.27973222800097],[-76.6056321366802,39.27973505706468],[-76.60562598919211,39.27973758648483],[-76.60561963957106,39.27973978284442],[-76.60561308990955,39.27974168668472],[-76.60560637475693,39.27974333775526],[-76.60559952867199,39.27974477400419],[-76.60559258274722,39.27974603156638],[-76.60558557385941,39.27974714839765],[-76.6055785342398,39.27974816423991],[-76.60557149614478,39.27974911433104],[-76.60556449528185,39.27975003842469],[-76.60555753292552,39.27975091580761],[-76.60555052531654,39.27975159396946],[-76.6055434780547,39.27975210805887],[-76.60553640244935,39.27975250855636],[-76.60552931327179,39.27975284865686],[-76.60552222415406,39.27975317794794],[-76.60551514755474,39.27975354871569],[-76.60550809825494,39.27975401235333],[-76.60550108755902,39.27975462024232],[-76.60549413024816,39.27975542377579],[-76.6054872387903,39.27975647343845],[-76.60548040174643,39.27975774216879],[-76.60547360549857,39.27975917767709],[-76.60546684552654,39.27976075923034],[-76.60546011848325,39.27976246339762],[-76.60545342332507,39.27976426945792],[-76.6054467543822,39.27976615487302],[-76.60544010946199,39.27976809711652],[-76.60543348636661,39.27977007456271],[-76.60542688057548,39.27977206647892],[-76.60542028990579,39.27977404853716],[-76.60541375211781,39.27977610823823],[-76.60540732211635,39.27977837637736],[-76.60540097009351,39.27978079430476],[-76.60539466972328,39.27978330248168],[-76.6053883923617,39.27978584136151],[-76.60538211279709,39.27978835951606],[-76.60537583094906,39.27979087135729],[-76.60536954677758,39.27979338409109],[-76.60536326375984,39.27979589772923],[-76.60535698418843,39.27979841678315],[-76.60535070690433,39.27980094124901],[-76.60534443652357,39.27980347474535],[-76.60533817304123,39.27980601817294],[-76.60533191991406,39.27980857514645],[-76.60532567597809,39.27981114656272],[-76.60531944584945,39.27981373604032],[-76.60531322836354,39.27981634447612],[-76.60530702814677,39.27981897368713],[-76.60530084517896,39.27982162727638],[-76.60529467945996,39.27982430524384],[-76.60528850677181,39.27982698588992],[-76.60528232019527,39.27982966288587],[-76.60527613241442,39.27983234798442],[-76.60526995380451,39.27983505112862],[-76.60526379821837,39.27983778227357],[-76.60525767371881,39.27984055045399],[-76.60525159299436,39.27984336652166],[-76.60524556873361,39.27984624132828],[-76.60523961015855,39.27984918391273],[-76.60523372996252,39.27985220422578],[-76.6052279385213,39.27985531221093],[-76.60522223577969,39.27985851777634],[-76.60521650702891,39.27986181513187],[-76.60521078119308,39.27986521338237],[-76.60520513468495,39.27986872719693],[-76.60519964276257,39.27987237034005],[-76.60519438300307,39.27987615658368],[-76.6051894318235,39.27988009969637],[-76.60518486215992,39.27988421433541],[-76.60518075390637,39.27988851428093],[-76.60517717743535,39.2798930583191],[-76.60517413917908,39.27989794015105],[-76.60517158965753,39.27990309565607],[-76.6051694771328,39.27990844989722],[-76.6051681084831,39.27991279958553],[-76.60516775216982,39.27991393064705],[-76.60516636417924,39.27991946477386],[-76.6051652625672,39.2799249800466],[-76.60516440483741,39.27993040696344],[-76.60516392035954,39.27993582432586],[-76.60516380540133,39.27994127806013],[-76.60516397540749,39.27994675887449],[-76.60516434232515,39.27995226106821],[-76.60516482159396,39.27995777625029],[-76.60516532632018,39.27996329872409],[-76.60516576962063,39.27996882099139],[-76.60516606577033,39.27997433555792],[-76.60516612788606,39.27997983492546],[-76.60516605439057,39.27998533563876],[-76.60516603755521,39.27999085996232],[-76.60516607160451,39.27999640427373],[-76.60516614611811,39.28000196673637],[-76.60516625416186,39.28000754372391],[-76.60516638879723,39.28001313251082],[-76.60516654076227,39.28001873126428],[-76.60516670312795,39.28002433545733],[-76.6051668689505,39.28002994326509],[-76.60516702781432,39.28003555195009],[-76.60516717510332,39.28004115789399],[-76.6051673004017,39.28004675835932],[-76.60516739561187,39.28005235061663],[-76.60516745611739,39.28005793104738],[-76.60516747033385,39.28006349871187],[-76.60516743249136,39.28006904908681],[-76.60516733449197,39.28007457944279],[-76.60516716823774,39.28008008705017],[-76.60516692678992,39.28008556918342],[-76.60516660089171,39.28009102310924],[-76.6051661824451,39.28009644609787],[-76.60516566568027,39.28010183362633],[-76.60516504132515,39.28010718566333],[-76.60516430129722,39.28011249677714],[-76.6051634386523,39.28011776514293],[-76.60516244413877,39.2801229871265],[-76.60516131196667,39.28012816180769],[-76.6051596754241,39.28013316454913],[-76.60515644937891,39.28013763319945],[-76.60515189643378,39.28014165601537],[-76.60514639603899,39.28014535947833],[-76.60514032533169,39.28014886916129],[-76.6051340614393,39.28015231243885],[-76.60512798265798,39.28015581488786],[-76.60512246727929,39.28015950298641],[-76.60512142830771,39.28016438253008],[-76.60512218256511,39.28016984278923],[-76.60512287188925,39.28017530823454],[-76.60512355078249,39.2801807736448],[-76.60512422155793,39.28018623992858],[-76.60512488305676,39.28019170708187],[-76.60512553644253,39.28019717420786],[-76.60512617938764,39.28020264310027],[-76.60512681654301,39.28020811107248],[-76.60512745137557,39.28021357993766],[-76.6051278550692,39.28021705553787],[-76.60512808620803,39.28021904880276],[-76.60512872104063,39.28022451766785],[-76.6051293535553,39.28022998652512],[-76.60512998607021,39.28023545538248],[-76.60513061858003,39.28024092514045],[-76.60513124877716,39.28024639398991],[-76.60513187897432,39.28025186283936],[-76.60513250801245,39.28025733168497],[-76.60513313704575,39.28026280143127],[-76.60513376492521,39.28026827027283],[-76.60513439164095,39.2802737400113],[-76.60513501835655,39.28027920974977],[-76.60513564391829,39.28028467858356],[-76.60513626831626,39.28029014831419],[-76.60513689271433,39.28029561804483],[-76.60513751595325,39.28030108777157],[-76.6051381380335,39.28030655749438],[-76.6051387601138,39.28031202721716],[-76.60513938103517,39.28031749693606],[-76.60514000079768,39.28032296665103],[-76.60514061940124,39.28032843636212],[-76.60514123800506,39.2803339060732],[-76.60514181138319,39.28033938013602],[-76.60514234649976,39.28034485677246],[-76.60514288858047,39.28035033163083],[-76.60514348748177,39.28035580127561],[-76.60514479266844,39.28036119042444],[-76.60514656418968,39.28036650547683],[-76.60514834615222,39.2803718187627],[-76.60515013623792,39.28037713027427],[-76.60515193328291,39.28038244090852],[-76.60515373265116,39.28038775064974],[-76.60515553317872,39.28039306039484],[-76.60515733254229,39.28039837103679],[-76.60515912727045,39.28040368166303],[-76.60516091619377,39.28040899407129],[-76.60516269583539,39.28041430824986],[-76.60516446503644,39.28041962419483],[-76.60516622030964,39.28042494369603],[-76.60516796050642,39.28043026494791],[-76.60516969373954,39.280435587978],[-76.60517141884976,39.28044091278218],[-76.60517313931928,39.28044623847155],[-76.60517485398938,39.2804515650421],[-76.60517656517243,39.28045689340248],[-76.60517827171988,39.2804622217472],[-76.60517997479072,39.28046755008026],[-76.60518167669277,39.28047288021084],[-76.60518337511797,39.28047821032971],[-76.60518507354847,39.28048353954785],[-76.60518677196917,39.28048887056733],[-76.60518846923635,39.2804942006822],[-76.60519016882668,39.28049952990413],[-76.60519186841219,39.28050486002675],[-76.60519357147986,39.28051018926022],[-76.60519527687084,39.28051551760074],[-76.60519698689814,39.28052084595684],[-76.60519869925378,39.28052617251922],[-76.60520041392252,39.28053149999],[-76.60520213439646,39.28053682567882],[-76.60520386299362,39.28054214959334],[-76.60520560319108,39.28054747174526],[-76.60520757791602,39.28055272082293],[-76.60521223376936,39.28055686917195],[-76.60521673384724,39.28056110166889],[-76.60522123508473,39.28056533416959],[-76.60522573399467,39.28056956846376],[-76.60523023174611,39.2805738027539],[-76.60523472716501,39.28057803973829],[-76.60523921793872,39.2805822785085],[-76.60524370522069,39.28058651996898],[-76.60524818785225,39.28059076411597],[-76.60525266350533,39.28059501274315],[-76.60525713333899,39.28059926585448],[-76.60526159736322,39.28060352164827],[-76.60526605556784,39.28060778192621],[-76.60527050912707,39.28061204398994],[-76.6052749591949,39.28061630874398],[-76.60527940692997,39.28062057619233],[-76.60528385234801,39.28062484363268],[-76.60528829543827,39.28062911286659],[-76.60529273852902,39.28063338210031],[-76.60529718277958,39.28063765133774],[-76.60530162587146,39.2806419205711],[-76.60530607245093,39.28064618801451],[-76.60531052019998,39.28065045366012],[-76.60531497259049,39.28065471842037],[-76.60531942731963,39.28065897958528],[-76.60532388785929,39.28066323806725],[-76.60532835305058,39.28066749386241],[-76.60533282522624,39.28067174427623],[-76.60533730321255,39.28067599200719],[-76.60534178701941,39.2806802352536],[-76.6053462754827,39.28068447491246],[-76.60535076859267,39.28068871278528],[-76.60535526635412,39.28069294797124],[-76.60535976644421,39.28069718136333],[-76.60536426886786,39.28070141206074],[-76.60536877476898,39.28070564276966],[-76.60537328184465,39.28070987078008],[-76.60537779007969,39.2807140987942],[-76.6053822983155,39.28071832680825],[-76.6053868077158,39.2807225539251],[-76.60539131711654,39.28072678104188],[-76.60539582535392,39.2807310090553],[-76.60540033126878,39.28073523796149],[-76.60540483717419,39.280739468669],[-76.60540933959822,39.28074370026544],[-76.60541383969975,39.2807479327546],[-76.60541833514564,39.28075216883104],[-76.60542282826421,39.28075640670095],[-76.6054273167322,39.28076064725741],[-76.60543180287281,39.28076488960741],[-76.60543628785499,39.28076913195331],[-76.6054407705096,39.28077337609271],[-76.60544525316475,39.28077762023198],[-76.60544973465161,39.2807818661686],[-76.60545421382072,39.2807861120973],[-76.60545869298556,39.28079035892659],[-76.60546317098692,39.28079460665253],[-76.60546764782981,39.28079885437442],[-76.60547212350916,39.28080310299297],[-76.60547659802505,39.28080735250824],[-76.60548107254142,39.28081160202334],[-76.60548554473553,39.28081585243115],[-76.60549001808393,39.28082010374349],[-76.60549448911506,39.28082435504783],[-76.6054989601467,39.28082860635202],[-76.60550343001488,39.28083285855286],[-76.60550789987835,39.28083711165426],[-76.60551236858355,39.28084136475159],[-76.60551683728926,39.28084561784884],[-76.60552130483164,39.28084987184266],[-76.60552577237439,39.28085412583634],[-76.60553023759465,39.28085838072281],[-76.6055346888526,39.28086264547058],[-76.60553912848574,39.28086691648458],[-76.60554356229461,39.28087119288332],[-76.60554799262697,39.28087546927028],[-76.60555242760095,39.28087974477177],[-76.60555686956431,39.28088401399128],[-76.60556132547636,39.28088827605137],[-76.60556579302894,39.2808925291428],[-76.60557026290512,39.28089678134099],[-76.60557473394088,39.28090103354296],[-76.60557920730506,39.28090528395099],[-76.60558368067494,39.28090953345816],[-76.60558815520422,39.28091378296897],[-76.60559263089803,39.28091803158279],[-76.60559710775141,39.28092228020033],[-76.60560158461038,39.28092652791701],[-76.60560606262888,39.28093077563738],[-76.60561054181196,39.2809350224606],[-76.60561501983632,39.28093926927985],[-76.60561949902547,39.28094351520213],[-76.60562397936903,39.2809477620287],[-76.60562845855925,39.28095200795063],[-76.60563293890884,39.28095625387616],[-76.60563741809513,39.28096050069843],[-76.60564189844578,39.28096474662364],[-76.60564637763315,39.28096899344552],[-76.60565085682606,39.28097323936649],[-76.60565533485551,39.28097748618416],[-76.60565981288023,39.28098173390236],[-76.60566429090569,39.28098598162041],[-76.60566876893675,39.28099022843757],[-76.60567324812733,39.28099447525843],[-76.60567772964632,39.2809987202854],[-76.60568221349395,39.28100296351845],[-76.6056874296066,39.28100662371364],[-76.60569302294756,39.2810099771141],[-76.6056986337492,39.28101331706146],[-76.60570423638826,39.28101666598878],[-76.60570980757484,39.28102004363461],[-76.60571537061372,39.28102342755823],[-76.60572093480731,39.28102681238613],[-76.60572649667839,39.2810301981068],[-76.60573205854479,39.28103358472798],[-76.60573762041194,39.2810369713488],[-76.60574318111554,39.28104035886624],[-76.60574874065566,39.28104374728026],[-76.60575430019632,39.28104713569405],[-76.60575985973752,39.28105052410758],[-76.60576541927422,39.28105391342154],[-76.60577097765244,39.28105730273143],[-76.60577653603117,39.281060692041],[-76.60578209440548,39.28106408225104],[-76.60578765278029,39.28106747246081],[-76.60579321000181,39.28107086176564],[-76.60579876837767,39.28107425197491],[-76.60580432675405,39.28107764218388],[-76.60580988513097,39.28108103239261],[-76.60581544351344,39.28108442170031],[-76.60582100189642,39.28108781100771],[-76.60582656027994,39.28109120031492],[-76.60583211982303,39.2810945896257],[-76.60583767937166,39.28109797803547],[-76.60584323892081,39.28110136644496],[-76.6058487984705,39.28110475485423],[-76.60585435802071,39.28110814326324],[-76.60585991757146,39.28111153167197],[-76.60586547828179,39.28111492008423],[-76.60587103783358,39.28111830849243],[-76.60587659738593,39.28112169690032],[-76.6058821569388,39.28112508530798],[-76.6058877164872,39.28112847461616],[-76.60589327604113,39.28113186302321],[-76.60589883443156,39.28113525232695],[-76.60590439398155,39.2811386416343],[-76.60590995237305,39.28114203093742],[-76.60591551076527,39.28114542024038],[-76.60592106915281,39.28114881044377],[-76.60592662638186,39.28115220064295],[-76.60593218361143,39.28115559084189],[-76.60593774083658,39.28115898194137],[-76.60594329805737,39.2811623739413],[-76.60594885411953,39.28116576593703],[-76.60595441018239,39.28116915793255],[-76.60595996508154,39.28117255082464],[-76.60596551998147,39.2811759437165],[-76.60597107487686,39.28117933750875],[-76.60597662861358,39.2811827312969],[-76.60598218234605,39.28118612598555],[-76.605987736084,39.28118951977323],[-76.60599328981735,39.28119291446131],[-76.60599884355139,39.28119630914915],[-76.60600439612689,39.28119970383277],[-76.60600994985704,39.28120309942083],[-76.60601550243362,39.28120649410398],[-76.60602105501077,39.28120988878687],[-76.60602660874247,39.28121328437418],[-76.60603216132047,39.28121667905651],[-76.60603771505822,39.2812200737425],[-76.60604326763747,39.28122346842423],[-76.60604882137632,39.28122686310969],[-76.60605437511568,39.28123025779494],[-76.60605992885539,39.28123365247976],[-76.60606548260078,39.28123704626373],[-76.60607103750576,39.28124044005121],[-76.60607659241612,39.28124383293775],[-76.60608214732716,39.281247225824],[-76.60608770456659,39.28125061691622],[-76.60609326181178,39.28125400710746],[-76.60609882138037,39.28125739640551],[-76.60610438094949,39.28126078570317],[-76.60610994052414,39.28126417409992],[-76.60611550009932,39.2812675624964],[-76.60612105967503,39.2812709508926],[-76.60612661808725,39.28127434018536],[-76.60613217649997,39.28127772947789],[-76.60613773374421,39.28128112056777],[-76.60614328982496,39.28128451255418],[-76.60614884357334,39.28128790723485],[-76.60615439615819,39.28129130281204],[-76.60615994641577,39.28129470018277],[-76.60616549433558,39.28129810114847],[-76.60617103876902,39.28130150390368],[-76.60617658203395,39.28130490845621],[-76.60618212297133,39.28130831480224],[-76.60618766389945,39.28131172294948],[-76.60619320250507,39.28131513198937],[-76.60619874111116,39.28131854102907],[-76.60620427971764,39.2813219500685],[-76.60620981831981,39.28132536000838],[-76.60621535693257,39.28132876814652],[-76.60622089670484,39.28133217628827],[-76.6062264388005,39.28133558353686],[-76.6062319809117,39.28133898808287],[-76.60623752651058,39.28134239083877],[-76.606243073279,39.2813457917968],[-76.60624862237584,39.28134919096085],[-76.60625417147821,39.28135258922394],[-76.60625972290414,39.28135598659368],[-76.60626527433581,39.28135938306256],[-76.60627082576785,39.28136277953107],[-76.60627637836947,39.28136617420174],[-76.6062789357787,39.28136773749033],[-76.60628193212538,39.2813695697767],[-76.60628748589205,39.28137296355003],[-76.60629303965931,39.28137635732301],[-76.60629859458086,39.28137975200038],[-76.60630414835417,39.28138314487211],[-76.60630970328199,39.28138653864819],[-76.60631525704612,39.28138993332083],[-76.60632081081602,39.28139332709248],[-76.60632636458139,39.28139672176467],[-76.60633191834732,39.28140011643651],[-76.60633747095477,39.28140351110427],[-76.60634302355271,39.28140690757319],[-76.6063485749972,39.28141030313731],[-76.60635412760121,39.28141369870495],[-76.60635967904174,39.28141709516921],[-76.60636523164681,39.28142049073637],[-76.60637078308842,39.28142388720019],[-76.60637633568955,39.28142728366755],[-76.60638188713722,39.28143067922996],[-76.60638743858037,39.2814340756929],[-76.60639299118316,39.28143747215948],[-76.60639854262736,39.28144086862194],[-76.60640409407716,39.28144426418328],[-76.60640964668148,39.28144766064913],[-76.60641519812735,39.28145105711072],[-76.60642074957367,39.28145445357206],[-76.6064263010206,39.28145785003314],[-76.60643185363206,39.28146124559705],[-76.60643740508004,39.28146464205768],[-76.60644295652855,39.28146803851793],[-76.6064485091366,39.28147143498182],[-76.60645406058617,39.28147483144157],[-76.60645961204123,39.28147822700036],[-76.60647302626678,39.28148644276023],[-76.60648412566923,39.28149324016918],[-76.60649522391979,39.28150003667249],[-76.60650632332629,39.28150683407931],[-76.6065174215761,39.28151363148121],[-76.60652852098704,39.281520428886],[-76.60653961924108,39.28152722628575],[-76.60655071749208,39.28153402458528],[-76.60656181691439,39.281540821086],[-76.60657309841768,39.28154717952422],[-76.60658719444217,39.28154636020289],[-76.60660129993829,39.28154571385807],[-76.60661540656844,39.28154507201904],[-76.6066295143322,39.28154443468598],[-76.60664362206073,39.28154380365655],[-76.60665772976421,39.28154317712905],[-76.60667183743732,39.28154255600436],[-76.60668594623426,39.28154194118709],[-76.60670005615506,39.2815413326772],[-76.60671416488661,39.28154072956619],[-76.60672827474696,39.2815401318619],[-76.60674238458236,39.28153953865957],[-76.60675649556117,39.28153894816172],[-76.60677060651994,39.28153836126514],[-76.60678471630951,39.28153777616447],[-76.60679882725287,39.28153719196675],[-76.60681293819098,39.28153660866807],[-76.60682704913889,39.28153602356626],[-76.60684116007658,39.28153544026414],[-76.60685527099402,39.2815348605634],[-76.60686938189131,39.28153428446387],[-76.60688349394222,39.28153370926734],[-76.60689760482903,39.28153313496598],[-76.60691171688468,39.28153255886528],[-76.60692582780098,39.281531979156],[-76.60693993874203,39.28153139494133],[-76.60695404857373,39.28153080171356],[-76.60696815736085,39.28153018776312],[-76.6069822650536,39.28152956209745],[-76.60699637273115,39.28152893913226],[-76.60701048262196,39.28152833508885],[-76.60702459464061,39.28152776527985],[-76.60703870988687,39.28152724051802],[-76.60705282618197,39.28152673557477],[-76.6070669425218,39.28152622252316],[-76.60708105328595,39.28152566981763],[-76.6070906497885,39.28152864651123],[-76.60709142240565,39.28153961137674],[-76.60709200605999,39.28155058371686],[-76.60709258507354,39.28156155694224],[-76.60709315945608,39.28157252925136],[-76.60709373151577,39.2815835024534],[-76.60709430125776,39.28159447564772],[-76.60709486868183,39.28160544883415],[-76.60709543494724,39.28161642201669],[-76.60709600005363,39.28162739519531],[-76.60709656747822,39.28163836838173],[-76.60709713489801,39.28164934246879],[-76.60709770464605,39.28166031476203],[-76.60709827786613,39.28167128796763],[-76.60709885340457,39.28168226118103],[-76.60709943358428,39.28169323350902],[-76.60710001491803,39.28170420674174],[-76.60710059857504,39.2817151790813],[-76.60710118339129,39.28172615142477],[-76.60710176936158,39.28173712467279],[-76.60710235765526,39.28174809702783],[-76.60710294594898,39.28175906938274],[-76.6071035342429,39.28177004173765],[-76.60710412369596,39.28178101409644],[-76.6071047131495,39.28179198645522],[-76.60710530375701,39.28180295971848],[-76.60710589205164,39.28181393207331],[-76.60710648150545,39.28182490443186],[-76.60710707211854,39.28183587679433],[-76.60710766389082,39.28184684916058],[-76.6071082591402,39.28185782153849],[-76.60710885787194,39.28186879302722],[-76.60710946123505,39.28187976543219],[-76.60711007735216,39.28189073697901],[-76.60711070737786,39.28190170857222],[-76.6071113362497,39.28191267926082],[-76.60711195352648,39.28192365081137],[-76.60711256037243,39.281934622327],[-76.60711316373647,39.28194559473176],[-76.60711376478275,39.2819565671287],[-76.60711436235711,39.2819675386131],[-76.60711495529067,39.28197851098284],[-76.6071155424242,39.28198948423384],[-76.60711612029091,39.28200045655306],[-76.6071166842447,39.28201142972659],[-76.60711724355744,39.28202240378511],[-76.60711780287536,39.28203337694293],[-76.6071183726247,39.28204435013568],[-76.60711895165113,39.28205532245862],[-76.60711953299109,39.28206629568993],[-76.60712011781294,39.28207726803222],[-76.60712070495329,39.28208824038204],[-76.60712129672979,39.28209921274748],[-76.60712189198341,39.2821101851245],[-76.60712249187344,39.2821211575169],[-76.60712311263087,39.28213212907836],[-76.60712374846078,39.28214309978941],[-76.60712438197272,39.28215407049269],[-76.60712499345857,39.28216504202302],[-76.60712555509694,39.28217601518808],[-76.60712601472193,39.28218699161502],[-76.60712645579771,39.28219796888055],[-76.6071268806473,39.28220894609192],[-76.60712729274292,39.28221992416123],[-76.60712776164547,39.28223089971823],[-76.60712837892757,39.28224187126767],[-76.60712926630647,39.28225283561353],[-76.60713007372321,39.28226379789049],[-76.60713150312432,39.28227420827869],[-76.60714241514823,39.28228117884371],[-76.60715289615216,39.28228854250011],[-76.60716334454106,39.28229593577163],[-76.60717377428796,39.28230334699511],[-76.6071841958842,39.28231076539655],[-76.60719462097948,39.28231818020556],[-76.60720503793908,39.2823255994903],[-76.60721543276455,39.28233303941759],[-76.60722579731804,39.28234050446406],[-76.60723612461049,39.28234800091176],[-76.60724644725414,39.28235550004516],[-76.6072568106503,39.28236296598575],[-76.60726736852753,39.28237026593455],[-76.60727779132235,39.28237768072837],[-76.607288106886,39.28238520415498],[-76.60730203420745,39.28238494806079],[-76.60731614736375,39.28238441244905],[-76.60733026166388,39.28238387954178],[-76.60734437708818,39.2823833529419],[-76.60735849246726,39.282382834447],[-76.60737260895027,39.2823823258625],[-76.60738672537329,39.28238182808531],[-76.60740084172137,39.28238134381748],[-76.60741496032753,39.2823808703648],[-76.60742908000776,39.28238041222685],[-76.60744319958306,39.28237997300293],[-76.60745732017779,39.28237955900205],[-76.60747144176679,39.28237917472793],[-76.60748557369512,39.28237901657806],[-76.60749914562422,39.28237763422066],[-76.60750870956241,39.28236955120965],[-76.6075182758117,39.28236146910638],[-76.60752783629842,39.28235338067768],[-76.60753737830835,39.28234527957579],[-76.60754689145531,39.28233715765916],[-76.60755636533789,39.28232900948846],[-76.6075656995048,39.2823207653694],[-76.6075749320694,39.28231244974985],[-76.60758422582077,39.28230417757064],[-76.607593770116,39.28229608007477],[-76.60760344718294,39.2822880758002],[-76.60760690808554,39.28227822581493],[-76.60760612031326,39.28226726090495],[-76.6076053081969,39.28225629681442],[-76.6076045424514,39.28224533107711],[-76.60760384510326,39.28223436286601],[-76.6076031257342,39.28222339458127],[-76.60760231129575,39.28221243138349],[-76.60760147251811,39.2822014681044],[-76.60760061982259,39.28219050658034],[-76.607599760173,39.28217954503292],[-76.60759889588792,39.28216858346997],[-76.60759803160305,39.28215762190704],[-76.60759717079547,39.28214666035569],[-76.60759631926524,39.28213569793444],[-76.60759548048446,39.28212473555582],[-76.6075946625762,39.2821137714453],[-76.60759386900759,39.28210280741612],[-76.60759308935729,39.28209184163178],[-76.60759231433853,39.28208087676371],[-76.60759153121182,39.28206991096773],[-76.60759072837199,39.28205894690742],[-76.60758983974536,39.28204798616346],[-76.6075889824173,39.28203702462326],[-76.60758830594102,39.28202605558033],[-76.60758766308626,39.28201508484816],[-76.60758680228201,39.28200412329623],[-76.60758597644268,39.28199312673136],[-76.60758535325209,39.28198216327085],[-76.60759755699412,39.28198002329401],[-76.60761166805862,39.28197943179275],[-76.60762577911292,39.28197884209128],[-76.60763989019185,39.28197824788437],[-76.60765400015637,39.28197764556525],[-76.60766810903132,39.28197703063003],[-76.60768221567781,39.28197639947199],[-76.60769645858107,39.28197565076748],[-76.60769866338924,39.28196616049154],[-76.60769970332215,39.28195667803509],[-76.60771382683997,39.28195634868502],[-76.60772794947749,39.28195596888758],[-76.60774206896164,39.28195553052847],[-76.60775618848025,39.28195508586232],[-76.6077703079989,39.28195464119452],[-76.60778442637803,39.28195419291816],[-76.60779854591128,39.28195374554483],[-76.60781266542939,39.28195330087191],[-76.60782678492743,39.28195285980035],[-76.60784090442009,39.28195241962777],[-76.60785502390283,39.28195198125503],[-76.60786914337521,39.28195154468205],[-76.60788326284268,39.28195110900816],[-76.60789738346382,39.28195067423717],[-76.60791150292097,39.28195024036132],[-76.60792562237297,39.28194980738454],[-76.60793974297867,39.2819493753107],[-76.60795386242535,39.2819489432313],[-76.60796798302572,39.28194851205484],[-76.60798210247205,39.28194807997198],[-76.60799622307705,39.28194764789136],[-76.60801034252304,39.28194721580517],[-76.60802446312772,39.28194678372115],[-76.60803858257833,39.28194635073082],[-76.60805270203376,39.28194591683808],[-76.60806682265284,39.2819454820466],[-76.60808094211782,39.28194504634901],[-76.60809506158749,39.28194460974888],[-76.60810918106711,39.28194417134551],[-76.60812330055646,39.28194373113904],[-76.60813742005048,39.28194329003013],[-76.60815153955943,39.28194284621723],[-76.60816565907808,39.2819424006012],[-76.60817977860641,39.28194195318195],[-76.6081938969906,39.2819415030549],[-76.60820801538952,39.28194105022394],[-76.60822213496218,39.2819405946928],[-76.60823625339043,39.281940136454],[-76.60825037183855,39.28193967461045],[-76.60826448914234,39.28193921005909],[-76.60827860761994,39.28193874280767],[-76.60829272496315,39.28193827104701],[-76.60830684234099,39.2819377929794],[-76.6083209597634,39.28193730680334],[-76.60833507607636,39.28193681161432],[-76.60834919242882,39.28193630921766],[-76.60836330765684,39.28193580051015],[-76.60837742291953,39.28193528549572],[-76.60839153820703,39.28193476597589],[-76.60840565351897,39.28193424195064],[-76.60841976769159,39.28193371431681],[-76.60843388304308,39.28193318308227],[-76.60844799724505,39.28193265004059],[-76.6084621114568,39.28193211519572],[-76.6084762256685,39.28193158034917],[-76.60849033988481,39.28193104460016],[-76.6085044540911,39.28193051065098],[-76.60851856829201,39.2819299776008],[-76.60853268248282,39.28192944635046],[-76.60854679781771,39.28192891780454],[-76.6085609119683,39.28192839375671],[-76.60857502725291,39.28192787421485],[-76.60858914251243,39.28192735917501],[-76.6086032589012,39.28192684954177],[-76.60861737409078,39.28192634710896],[-76.60863149039943,39.28192585188428],[-76.6086456078222,39.28192536476853],[-76.6086597251951,39.28192488665849],[-76.60867384251812,39.28192441755425],[-76.60868796094535,39.28192395836034],[-76.6087020793027,39.28192351177516],[-76.60871619987374,39.2819230841117],[-76.60873032035008,39.28192267356076],[-76.60874444304997,39.2819222801299],[-76.60875856566548,39.28192190201012],[-76.60877268821605,39.28192153559831],[-76.60878681301995,39.28192118090228],[-76.60880093777409,39.28192083521195],[-76.60881506248319,39.28192049762661],[-76.60882918716747,39.28192016454329],[-76.60884331298585,39.2819198359659],[-76.60885743879422,39.28191950918836],[-76.60887156459728,39.28191918330973],[-76.60888568925621,39.28191885472339],[-76.60889981508902,39.28191852343696],[-76.60891393979237,39.2819181867405],[-76.60892806453042,39.28191784373715],[-76.60894218816382,39.28191749081996],[-76.6089563106927,39.28191712798912],[-76.60897043328598,39.28191675344674],[-76.60898455480447,39.28191636358623],[-76.60899867640732,39.28191595841133],[-76.6090127957911,39.28191553521208],[-76.60902691412502,39.28191509219091],[-76.60904103141885,39.28191462754625],[-76.60905514651847,39.28191414037348],[-76.60906926060302,39.28191362707359],[-76.60908337370184,39.28191308224196],[-76.60909748348729,39.28191250767254],[-76.60911159226747,39.28191190517443],[-76.60912569886814,39.28191127744599],[-76.60913980558266,39.28191062899872],[-76.60915391009316,39.28190995982486],[-76.60916801353366,39.28190927443208],[-76.60918211588947,39.28190857552249],[-76.60919621830418,39.28190786580237],[-76.60921031960955,39.28190714706915],[-76.60922442094419,39.28190642292974],[-76.60923852113937,39.28190569518186],[-76.60925262248851,39.28190496833688],[-76.60926672382725,39.28190424329164],[-76.60928082513597,39.28190352364918],[-76.60929492755876,39.2819028121157],[-76.60930902992177,39.28190211138943],[-76.60932313337413,39.28190142327578],[-76.60933723905005,39.28190075228223],[-76.60935134462154,39.2819001002027],[-76.60936545239659,39.28189946884635],[-76.60937956119152,39.28189886271305],[-76.60939367099654,39.28189828360431],[-76.60940778299545,39.28189772702024],[-76.60942189720289,39.28189719025849],[-76.60943601131611,39.28189667060931],[-76.60945012765779,39.28189616717955],[-76.60946424392488,39.28189567725929],[-76.60947836127643,39.28189520085239],[-76.60949247857326,39.28189473435192],[-76.60950659813325,39.28189427776574],[-76.60952071648961,39.28189382928066],[-76.60953483712917,39.2818933871069],[-76.60954895658453,39.28189294943125],[-76.60956307718411,39.28189251446003],[-76.60957719660958,39.28189208218543],[-76.60959131719869,39.28189164901231],[-76.60960543779773,39.28189121403599],[-76.60961955725222,39.28189077635186],[-76.60963367789552,39.28189033326547],[-76.60964779740912,39.28188988476894],[-76.60966191580832,39.28188942816029],[-76.60967603426185,39.28188896164164],[-76.6096901516156,39.2818884843085],[-76.60970426788444,39.28188799345863],[-76.60971838422748,39.28188748909588],[-76.60973249948056,39.28188697211719],[-76.60974661363406,39.28188644432391],[-76.60976072783674,39.2818859075215],[-76.60977484092469,39.28188536260679],[-76.60978895405232,39.2818848104845],[-76.60980306721932,39.28188425115454],[-76.60981717925165,39.2818836873153],[-76.60983129131363,39.28188311806984],[-76.6098454033903,39.28188254612046],[-76.60985951548156,39.28188197146721],[-76.60987362642348,39.28188139500685],[-76.60988773852898,39.28188081764792],[-76.60990185062946,39.28188024118803],[-76.60991596157069,39.28187966472267],[-76.60993007365569,39.28187909096163],[-76.60994418572081,39.28187852080185],[-76.6099582977659,39.28187795424341],[-76.60997240978109,39.28187739308775],[-76.6099865229252,39.28187683733869],[-76.61000063602962,39.28187628879396],[-76.61001475025306,39.28187574745731],[-76.61002886326304,39.28187521602334],[-76.61004297854113,39.28187469360275],[-76.61005709375965,39.28187418198948],[-76.61007120891873,39.2818736811835],[-76.61008532632124,39.28187319389462],[-76.61009944362928,39.28187272371832],[-76.61011356195286,39.28187227966576],[-76.61012768245574,39.28187186084008],[-76.61014180399852,39.28187146363439],[-76.61015592660119,39.28187108444586],[-76.61017005027364,39.28187072147288],[-76.61018417387669,39.28187037110862],[-76.6101982985941,39.28187002885326],[-76.61021242327175,39.28186969380211],[-76.61022654792953,39.28186936235227],[-76.61024067374595,39.28186903090459],[-76.6102547984183,39.28186869674916],[-76.6102689231202,39.28186835718751],[-76.61028304671235,39.2818680086129],[-76.61029717036872,39.28186764832687],[-76.61031129294507,39.28186727362331],[-76.61032541446627,39.2818668799986],[-76.61033953493695,39.28186646655192],[-76.61035365438219,39.28186602877958],[-76.61036777281662,39.28186556397929],[-76.61038188907132,39.28186507394877],[-76.61039600422606,39.28186457310367],[-76.6104101194301,39.2818640632495],[-76.61042423468344,39.2818635443861],[-76.61043834882712,39.28186301650975],[-76.61045246301002,39.28186248142568],[-76.61046657723242,39.28186193913403],[-76.61048069032995,39.2818613905316],[-76.61049480345721,39.28186083652292],[-76.6105089154596,39.28186027620359],[-76.61052302864077,39.28185971228337],[-76.61053714069233,39.28185914295315],[-76.61055125275853,39.28185857091893],[-76.61056536483915,39.28185799618087],[-76.61057947577545,39.28185741873494],[-76.6105935878756,39.28185684039047],[-76.61060769882629,39.28185626023902],[-76.6106218109408,39.28185567918892],[-76.61063592304993,39.28185509903786],[-76.61065003399992,39.28185451888122],[-76.6106641460989,39.28185394052827],[-76.61067825702372,39.28185336487201],[-76.61069236910227,39.28185279011869],[-76.61070648115602,39.28185221986739],[-76.61072059319478,39.28185165231658],[-76.61073470636251,39.2818510901724],[-76.61074881835133,39.28185053162567],[-76.61076293146441,39.28184997938633],[-76.6107770445425,39.28184943345052],[-76.610791158745,39.28184889382203],[-76.61080527174855,39.28184836139408],[-76.61081938702547,39.28184783707877],[-76.61083350109396,39.28184732176533],[-76.61084761627166,39.28184681546153],[-76.61086173255879,39.28184631816734],[-76.61087584878642,39.28184583168039],[-76.61088996707014,39.28184539293899],[-76.61090408962905,39.28184501996573],[-76.61091821420951,39.28184470104311],[-76.61093234087079,39.28184442536236],[-76.61094646852291,39.28184418030914],[-76.61096059838432,39.28184395507824],[-76.61097472819624,39.28184373885311],[-76.61098885686879,39.2818435190195],[-76.6110029856254,39.28184328387149],[-76.61101711336102,39.28184302349702],[-76.61103123898597,39.2818427252819],[-76.6110453614004,39.28184237841321],[-76.6110594807474,39.28184195676942],[-76.61107359154818,39.28184140268363],[-76.61108769824108,39.28184075220086],[-76.61110180172813,39.28184005216393],[-76.61111590638384,39.28183935032762],[-76.61113001195125,39.28183869353081],[-76.6111441239395,39.28183813403582],[-76.61115824768423,39.28183775563133],[-76.61117237673025,39.28183746731889],[-76.61118650032169,39.28183711683414],[-76.61120059669504,39.28183644558623],[-76.61121467388514,39.28183525633473],[-76.61121707132617,39.28184382601614],[-76.61121763887748,39.28185468118039],[-76.61141313093304,39.2819926402748],[-76.61168720884677,39.28218820678327],[-76.61169834776558,39.28240961312749],[-76.61172931311576,39.28287356384372],[-76.61180409609163,39.28418731550347],[-76.61184260553971,39.28479777091579],[-76.61187793509163,39.2853599231759],[-76.61188621037728,39.28549160760179],[-76.61187717243342,39.28549932428801],[-76.611425787721,39.28588467027819],[-76.61113466134492,39.2858998638625],[-76.61109512918902,39.2852137302423],[-76.61074000210265,39.28522399725184],[-76.61078136111279,39.2859080067534],[-76.61058899958162,39.28591552112238],[-76.60994718706607,39.28594059115046],[-76.60991829672393,39.28593801542178],[-76.6098948255113,39.28592568352136],[-76.60987130128157,39.28591350907329],[-76.60984777472689,39.28590133731507],[-76.60982424585208,39.2858891673459],[-76.60980071814453,39.28587699737571],[-76.60977719044993,39.28586482650008],[-76.60975366626042,39.2858526520283],[-76.60973014674018,39.2858404730634],[-76.60970663190389,39.28582828690323],[-76.60968312873094,39.28581608906715],[-76.60965978890748,39.28580369720459],[-76.60963719272974,39.28581435739128],[-76.60961520053185,39.2858281596349],[-76.60959322103098,39.28584197002337],[-76.60957125537571,39.28585579036214],[-76.60954929777591,39.28586961973117],[-76.60952734247587,39.28588345090529],[-76.60950538485895,39.28589728026594],[-76.60948343414327,39.28591111775228],[-76.60946148804062,39.28592495795217],[-76.60943953500943,39.28593879181953],[-76.60941756352888,39.28595260670546],[-76.60939290625339,39.28596118553846],[-76.6093646057067,39.28596201381028],[-76.60933636721883,39.28596293866314],[-76.60930812985463,39.28596386981832],[-76.6092798945598,39.28596484601163],[-76.60925166350873,39.28596589337242],[-76.60922343454662,39.28596698216838],[-76.60919520560844,39.28596806645385],[-76.6091669734551,39.2859691029815],[-76.60913874031569,39.2859701079724],[-76.60911050609086,39.2859710994415],[-76.60908227074577,39.28597208369403],[-76.60905403540988,39.28597306613825],[-76.60902580121225,39.2859740521826],[-76.60899756696436,39.2859750472275],[-76.60896933263132,39.28597605757829],[-76.60894110054117,39.28597708144125],[-76.60891286841029,39.28597811250336],[-76.60888463623911,39.28597915076461],[-76.60885640519119,39.28598019532817],[-76.60882817411763,39.28598124438865],[-76.6087999430186,39.28598229794614],[-76.60877171305285,39.28598335600435],[-76.60874355684012,39.28598449176694],[-76.60874152883575,39.28596255777843],[-76.60873990648085,39.28594063054532],[-76.60873791195795,39.28591872098858],[-76.60873585598534,39.28589681482991],[-76.60873379769083,39.28587490956417],[-76.60873170577949,39.28585300508691],[-76.60872963357345,39.2858311006752],[-76.6087275729648,39.28580919540121],[-76.60872551583947,39.28578728923777],[-76.60872346335164,39.2857653830897],[-76.60872140738775,39.28574347692978],[-76.60871934678418,39.28572157165505],[-76.60871729198195,39.28569966549868],[-76.60871525224917,39.28567775939234],[-76.60871323687297,39.28565585066466],[-76.6087112469978,39.28563394202176],[-76.6087092733608,39.28561203163113],[-76.60870730784339,39.28559012036668],[-76.60870534116329,39.28556820999899],[-76.60870336521178,39.28554629960021],[-76.60870137187037,39.28552439004406],[-76.60869936113919,39.28550248133055],[-76.60869734576796,39.28548057350216],[-76.60869532576177,39.2854586656582],[-76.60869330227963,39.28543675780244],[-76.60869127647547,39.28541485083959],[-76.60868924835945,39.285392942968],[-76.60868722023974,39.28537103599703],[-76.60868519212625,39.28534912812511],[-76.60868316516813,39.28532722115767],[-76.60868114053444,39.28530531329697],[-76.60867911822002,39.28528340544391],[-76.60867710170217,39.28526149760987],[-76.60867508866778,39.28523958888652],[-76.6086730825841,39.28521768108697],[-76.60867108346596,39.28519577150883],[-76.60866909709893,39.28517386197302],[-76.60866712696486,39.28515195159041],[-76.60866516958686,39.28513004034927],[-76.60866322148745,39.28510812823818],[-76.60866128034358,39.28508621615001],[-76.60865934151911,39.28506430406937],[-76.60865740269587,39.28504239198861],[-76.60865546155581,39.28502047989995],[-76.60865351346239,39.28499856778795],[-76.60865156072903,39.28497665656106],[-76.60864960684272,39.28495474442935],[-76.60864765179358,39.28493283319438],[-76.60864570022291,39.2849109219709],[-76.60864375445372,39.28488900986574],[-76.60864181448096,39.28486709777965],[-76.608639884946,39.28484518482745],[-76.60863796700777,39.28482327101301],[-76.60863610356155,39.28480135467756],[-76.60863430736188,39.28477943496299],[-76.60863251695875,39.28475751526753],[-76.60863067438891,39.28473559719961],[-76.60862871702851,39.28471368685589],[-76.60862660894699,39.28469178411679],[-76.60862438608014,39.28466988820108],[-76.60862209712352,39.2846479965688],[-76.60861979310049,39.28462610488611],[-76.60861752154239,39.28460421150991],[-76.60861533578083,39.28458231391556],[-76.60861345727521,39.28456039842877],[-76.60861054823617,39.28453871370618],[-76.60859256213411,39.28452224099689],[-76.60856586219641,39.28451499277352],[-76.60853941184698,39.28450725536148],[-76.60851298027201,39.28449947747174],[-76.60848653933564,39.28449171665925],[-76.60846006439509,39.28448402778849],[-76.60843356013071,39.28447640276793],[-76.6084070394662,39.28446881011413],[-76.60838051059973,39.28446123454147],[-76.60835398172378,39.28445366166503],[-76.6083274587285,39.28444607438992],[-76.60830094864259,39.28443845922828],[-76.60827444911335,39.28443082247759],[-76.60824795428562,39.28442317492734],[-76.60822145945343,39.28441552917258],[-76.60819495759827,39.28440789689989],[-76.60816844285002,39.28440029160092],[-76.60814191050761,39.28439272497005],[-76.60811535471109,39.28438520869756],[-76.60808877312243,39.28437774637872],[-76.60806217044247,39.28437032631924],[-76.6080355501784,39.28436294312627],[-76.60800891583207,39.2843555923077],[-76.60798226859221,39.28434826846279],[-76.60795561312,39.28434096710339],[-76.60792895176826,39.28433368193203],[-76.60790228802956,39.28432641025807],[-76.60787657186115,39.28432951491453],[-76.60787740568804,39.28435103239436],[-76.60787962251896,39.28437292830691],[-76.60788179644652,39.28439482767914],[-76.60788396573911,39.28441672703566],[-76.60788613619212,39.28443862639592],[-76.6078882799783,39.28446052746843],[-76.60789038550682,39.28448243021467],[-76.60789247132294,39.28450433469636],[-76.60789455250884,39.28452623826171],[-76.60789664296371,39.28454814275855],[-76.60789875661102,39.28457004553111],[-76.60790090504598,39.28459194571725],[-76.60790308478708,39.28461384420622],[-76.60790527960224,39.28463574184469],[-76.60790747789585,39.28465763949442],[-76.60790966575445,39.28467953800995],[-76.60791182926907,39.28470143734476],[-76.60791395568022,39.28472333925782],[-76.60791597427007,39.28474524621544],[-76.60791787691046,39.28476716089265],[-76.60791979230656,39.28478907471152],[-76.60792182480884,39.28481098171503],[-76.60792391064915,39.28483288529333],[-76.60792602199517,39.28485478805575],[-76.60792814841528,39.28487668996766],[-76.60793028179104,39.28489859190252],[-76.60793241169584,39.28492049292488],[-76.60793455551087,39.28494239399341],[-76.60793671672305,39.28496429331837],[-76.60793887445443,39.28498619353218],[-76.60794101247797,39.28500809458092],[-76.60794310992075,39.28502999819632],[-76.60794516330523,39.28505190436669],[-76.60794718770958,39.28507381134096],[-76.60794919356012,39.28509572005461],[-76.6079511901343,39.28511762963788],[-76.60795318671468,39.28513953832029],[-76.60795519256887,39.28516144703342],[-76.60795721349716,39.28518335489593],[-76.60795923558581,39.28520526276216],[-76.60796126115279,39.28522717063974],[-76.60796329715771,39.28524907765127],[-76.60796534708268,39.28527098290756],[-76.60796741671314,39.28529288822941],[-76.60796950025851,39.28531479269684],[-76.60797159424204,39.285336696298],[-76.60797369402199,39.28535859991837],[-76.6079757949673,39.28538050264173],[-76.60797789243183,39.28540240625409],[-76.60797998294323,39.28542430984298],[-76.60798206301922,39.28544621429764],[-76.60798412570038,39.28546812049557],[-76.60798616288341,39.2854900266083],[-76.60798815832098,39.28551193618455],[-76.6079901282553,39.28553384657625],[-76.60799208891328,39.28555575783761],[-76.60799406000913,39.28557766823279],[-76.60799605892879,39.28559957781999],[-76.60799809496011,39.28562148392769],[-76.60800014373768,39.28564339097856],[-76.60800220063983,39.28566529625478],[-76.60800426217943,39.28568720154637],[-76.60800632951589,39.28570910685712],[-76.60800840033075,39.2857310121793],[-76.60801047347007,39.28575291660825],[-76.60801254660566,39.28577482193773],[-76.60801461974756,39.28579672636633],[-76.60801668940857,39.28581863168393],[-76.60801875675253,39.28584053699361],[-76.60802081946167,39.28586244228756],[-76.60802287521247,39.28588434845899],[-76.60802492516916,39.2859062546108],[-76.60802696933175,39.28592816074309],[-76.60802901117742,39.28595006686753],[-76.60803104954223,39.28597197388091],[-76.60803308674919,39.28599388089026],[-76.60803512279828,39.28601578789555],[-76.60803716116671,39.28603769490841],[-76.60803920069563,39.28605960192497],[-76.60804123791243,39.28608150803283],[-76.60804327628479,39.28610341504514],[-76.60804531234018,39.28612532204955],[-76.60804734955593,39.28614722905764],[-76.60804938677275,39.2861691360656],[-76.60805142515014,39.28619104307711],[-76.60805346469269,39.28621294919171],[-76.60805550654997,39.28623485621456],[-76.60805755189044,39.28625676234806],[-76.60805959839145,39.28627866848524],[-76.60806164721176,39.28630057463008],[-76.60806369719249,39.28632248077856],[-76.60806574485144,39.28634438781985],[-76.60806779019823,39.28636629395245],[-76.60806983322817,39.28638820007714],[-76.60807187857273,39.28641010711017],[-76.60807392392346,39.28643201324234],[-76.60807596811638,39.28645391937036],[-76.60807800998732,39.28647582639121],[-76.60808004722325,39.28649773339644],[-76.60808207866481,39.28651964038217],[-76.60808410314814,39.28654154824531],[-76.60807667120642,39.28655681387193],[-76.60804789597651,39.28655728624438],[-76.60801966458192,39.28655834952231],[-76.60799143865316,39.28655947226193],[-76.607963210515,39.28656057517064],[-76.607934978118,39.28656160960049],[-76.60790674357598,39.28656261248979],[-76.60787850911798,39.28656360005962],[-76.60785027350012,39.28656458761882],[-76.60782203791626,39.28656556886604],[-76.60779380241138,39.28656653569453],[-76.60776556685586,39.28656751152372],[-76.60773733229937,39.28656851617369],[-76.60770910097511,39.28656956496513],[-76.6076808706797,39.28657063717295],[-76.60765264141797,39.28657173189644],[-76.60762441432915,39.28657285274254],[-76.60759619055212,39.28657400331797],[-76.60757612588611,39.28656821645746],[-76.60757523520233,39.28655929414404],[-76.6075739415496,39.28654631795965],[-76.60757183838061,39.28652441432816],[-76.60756973868504,39.28650251160898],[-76.60756764247333,39.28648060800034],[-76.60756555089901,39.28645870440712],[-76.6075634639674,39.28643679992844],[-76.60756138283249,39.28641489546894],[-76.60755930749427,39.28639299102861],[-76.60755725071276,39.28637108484853],[-76.60755521943747,39.28634917785274],[-76.6075531951228,39.28632726997935],[-76.6075511626909,39.28630536297931],[-76.60754910359128,39.28628345769156],[-76.60754700855126,39.28626155408511],[-76.60754489032097,39.28623965220251],[-76.60754275702385,39.28621775026927],[-76.60754061445053,39.2861958492058],[-76.6075384695551,39.28617394903505],[-76.60753632582535,39.28615204796721],[-76.60753419021025,39.28613014692631],[-76.60753206735154,39.28610824502714],[-76.60752996188523,39.28608634228515],[-76.60752787033915,39.28606443778785],[-76.60752579038029,39.28604253422993],[-76.60752551876494,39.28603967070273],[-76.60752371854625,39.2860206288974],[-76.6075216548271,39.28599872359188],[-76.60751959575039,39.28597681740082],[-76.60751754246537,39.28595491212978],[-76.60751549266416,39.28593300596935],[-76.6075134498232,39.28591109893127],[-76.60751141162019,39.28588919190853],[-76.60750937689556,39.28586728489724],[-76.60750734564928,39.28584537789735],[-76.60750531440452,39.28582347089731],[-76.60750328200167,39.28580156389319],[-76.60750124728202,39.28577965688111],[-76.60749920908634,39.28575774985729],[-76.60749716509179,39.2857358437147],[-76.60749511414386,39.28571393754869],[-76.60749305160158,39.28569203224447],[-76.60749097051027,39.28567012777886],[-76.60748887666529,39.28564822417126],[-76.60748677818556,39.2856263205479],[-76.60748467970693,39.28560441692444],[-76.60748258934336,39.28558251332787],[-76.6074805117356,39.285560608873],[-76.60747845500258,39.28553870268614],[-76.60747641682084,39.28551679566036],[-76.60747438907232,39.28549488866925],[-76.60747236480691,39.28547298078889],[-76.60747033821978,39.2854510738013],[-76.6074683000431,39.28542916677475],[-76.60746624447674,39.28540726059075],[-76.60746416572027,39.28538535613056],[-76.60746207073306,39.28536345251668],[-76.60745996531047,39.28534154976857],[-76.60745785757112,39.28531964701248],[-76.60745575563344,39.28529774337489],[-76.60745366760563,39.28527583978359],[-76.60745160045262,39.28525393446029],[-76.60744956112832,39.28523202742831],[-76.60744755310525,39.28521011959997],[-76.60744556595643,39.28518821003973],[-76.60744359620503,39.28516629873593],[-76.60744163920432,39.28514438747452],[-76.60743969263655,39.28512247624776],[-76.60743842267838,39.28510815980193],[-76.6074377495522,39.28510056413174],[-76.60743580762795,39.28507865201946],[-76.60743386338696,39.28505673989916],[-76.60743191219277,39.28503482775559],[-76.60742994939902,39.28501291737444],[-76.60742797385687,39.28499100695059],[-76.60742599252067,39.28496909650723],[-76.60742400306722,39.28494718693723],[-76.60742200665567,39.28492527824463],[-76.60741999981371,39.28490336951701],[-76.6074179825366,39.28488146165502],[-76.60741595366994,39.28485955375416],[-76.60741391552205,39.28483764762363],[-76.60741187042606,39.28481574056893],[-76.60740981488992,39.28479383528063],[-76.60740774660545,39.28477192994958],[-76.60740566440836,39.2847500254726],[-76.6074035648216,39.28472812183811],[-76.60740145827702,39.28470621908092],[-76.60739935057468,39.28468431631966],[-76.60739724287342,39.28466241355824],[-76.60739513169638,39.28464051078499],[-76.60739301472537,39.2846186079923],[-76.60739088963233,39.28459670697367],[-76.60738875527306,39.28457480502321],[-76.60738660815559,39.28455290483139],[-76.60738444828985,39.28453100459682],[-76.60738227218862,39.28450910610926],[-76.60738007753879,39.28448720846035],[-76.60737786549963,39.28446531165383],[-76.60737563606601,39.28444341659052],[-76.60737339156579,39.28442152147674],[-76.60737113546675,39.28439962812539],[-76.60736887009662,39.28437773474292],[-76.60736659545545,39.28435584132931],[-76.60736431501522,39.28433394879688],[-76.60736203225346,39.28431205715723],[-76.60735974718013,39.28429016460885],[-76.607357462103,39.28426827296112],[-76.60735518050954,39.28424638042407],[-76.60735290819493,39.28422448701708],[-76.60735076465096,39.28420257332279],[-76.60734678971042,39.28418088049855],[-76.60733274380421,39.28416208148539],[-76.6072971198885,39.2841478123274],[-76.6072707309177,39.28413992440584],[-76.60724439691688,39.28413194838748],[-76.60721806173795,39.28412397686307],[-76.60719173243,39.28411599274167],[-76.6071654160171,39.28410798343607],[-76.60713911953356,39.28409993455768],[-76.6071128382881,39.28409185599926],[-76.60708656407792,39.28408376394697],[-76.60706028753083,39.28407567638478],[-76.60703400982548,39.28406758971346],[-76.60700773446921,39.28405949854037],[-76.60698146027801,39.28405140736526],[-76.60695518375965,39.28404331887867],[-76.60692890373033,39.28403523758054],[-76.60690262370684,39.28402715627657],[-76.60687634955457,39.28401906237553],[-76.60685007774146,39.28401096577429],[-76.60682380242713,39.28400287455985],[-76.60679752008467,39.2839947977282],[-76.60677122603273,39.28398674337049],[-76.60674491557559,39.28397872228017],[-76.60671858754381,39.28397073625468],[-76.6066922455845,39.28396275468052],[-76.60666589077158,39.28395479287414],[-76.60663951484226,39.28394687783069],[-76.60661311301493,39.28393903565625],[-76.60658668050897,39.28393129245696],[-76.60655971399889,39.28392516343008],[-76.60653378700145,39.28393223224087],[-76.60651846167286,39.28395043574852],[-76.60651814626733,39.28397219439948],[-76.60652047164763,39.28399408530061],[-76.60652270775756,39.28401598040642],[-76.60652486038731,39.28403788063684],[-76.60652683098785,39.28405979106657],[-76.6065286995582,39.2840817074597],[-76.60653053798441,39.28410362555321],[-76.60653240888024,39.284125541053],[-76.60653437484925,39.28414745146643],[-76.60653650430079,39.28416935251894],[-76.6065387682433,39.28419124681567],[-76.60654106233775,39.28421313851089],[-76.60654327990601,39.28423503535418],[-76.60654532936317,39.28425694064185],[-76.60654724432152,39.2842788544864],[-76.60654909319516,39.28430077171252],[-76.60655093743352,39.28432268892291],[-76.60655284080501,39.28434460272818],[-76.60655481605886,39.28436651317097],[-76.60655681334097,39.28438842278656],[-76.60655882570205,39.28441033065101],[-76.60656084617773,39.28443223854237],[-76.60656286665466,39.28445414643369],[-76.60656488133765,39.28447605430527],[-76.60656688326705,39.28449796303477],[-76.6065688620068,39.28451987348795],[-76.60657078973412,39.28454178647243],[-76.60657268731715,39.28456370115723],[-76.60657459417884,39.28458561497224],[-76.60657654741905,39.28460752624007],[-76.60657852616484,39.28462943669234],[-76.60658051534828,39.28465134627871],[-76.60658251381044,39.28467325499516],[-76.60658451922815,39.28469516373472],[-76.60658652580621,39.28471707247802],[-76.60658853354937,39.28473898032429],[-76.6065905424481,39.28476088907501],[-76.60659256526161,39.28478279697131],[-76.60659461474496,39.28480470315525],[-76.60659671408403,39.28482660680379],[-76.6065988574889,39.28484850699657],[-76.6066009997308,39.28487040808611],[-76.60660309443759,39.28489231171847],[-76.60660511958207,39.28491421872078],[-76.60660710878166,39.28493612830485],[-76.6066090794274,39.28495803962808],[-76.60661104776135,39.2849799500426],[-76.60661303232847,39.2850018596106],[-76.60661503312849,39.28502376833198],[-76.60661703508411,39.28504567795779],[-76.60661904168713,39.28506758579754],[-76.60662105639966,39.28508949456499],[-76.60662307923211,39.28511140245865],[-76.60662511598457,39.28513330859729],[-76.60662719215139,39.28515521396687],[-76.60662929615229,39.2851771167273],[-76.60663139319503,39.28519902036501],[-76.60663345197986,39.28522092567585],[-76.60663543423745,39.2852428361349],[-76.60663733765951,39.28526474993281],[-76.60663921905056,39.28528666545827],[-76.60664113638897,39.28530857840164],[-76.60664310010115,39.28533048969862],[-76.60664507541038,39.28535240013341],[-76.60664708318482,39.28537430887524],[-76.60664914661578,39.28539621420028],[-76.60665127614001,39.28541811524256],[-76.6066534462431,39.28544001461914],[-76.60665564185722,39.28546191227932],[-76.60665785254542,39.28548380908899],[-76.60666006439432,39.28550570590246],[-76.60666226465375,39.28552760267688],[-76.60666444055892,39.28554950207189],[-76.60666658052421,39.28557140314786],[-76.6066686903449,39.28559330592434],[-76.60667077929864,39.28561520953135],[-76.60667285781687,39.28563711400407],[-76.6066749363364,39.28565901847661],[-76.60667702297079,39.28568092297613],[-76.60667912932084,39.28570282574002],[-76.60668126813619,39.28572472681081],[-76.60668344637648,39.28574662531118],[-76.60668564548648,39.28576852298053],[-76.60668784575697,39.28579042065346],[-76.60669002864255,39.28581231826812],[-76.60669217210096,39.28583421935353],[-76.60669425875081,39.28585612295089],[-76.60669629554164,39.2858780299842],[-76.6066982975512,39.28589993870233],[-76.606700282166,39.28592184916356],[-76.60670226446879,39.28594375871618],[-76.60670426184086,39.28596566831903],[-76.60670628588811,39.28598757530869],[-76.60670832384533,39.28600948234479],[-76.60671036992257,39.28603138850716],[-76.60671241947828,39.28605329468094],[-76.60671446787607,39.28607520085063],[-76.60671651163389,39.28609710790542],[-76.60671854727943,39.28611901493289],[-76.60672057828971,39.28614092194462],[-76.60672261625595,39.28616282897947],[-76.60672465074616,39.2861847360025],[-76.60672667248271,39.28620664388335],[-76.6067286698747,39.28622855258333],[-76.60673063363937,39.28625046387283],[-76.60673253943605,39.28627237767041],[-76.60673436291411,39.28629429569605],[-76.60673614233285,39.28631621627616],[-76.60673792291182,39.28633813686013],[-76.60673975102951,39.28636005490072],[-76.60674166958684,39.28638196783934],[-76.60674365191028,39.28640387828894],[-76.60674566438621,39.28642578613707],[-76.60674770236839,39.28644769316957],[-76.60674975658389,39.28646959935558],[-76.60675182239665,39.28649150467946],[-76.60675389285218,39.28651340911787],[-76.60675596098552,39.28653531444905],[-76.60675801984257,39.28655722064985],[-76.60676010769315,39.28657912424518],[-76.60676162725457,39.28660066833579],[-76.6067332140863,39.28660189643623],[-76.60670497737321,39.28660286660203],[-76.60669018152797,39.28660345390244],[-76.60667675025681,39.28660398722041],[-76.60664853830323,39.28660529974489],[-76.60662032954602,39.28660666271595],[-76.6065921229262,39.28660805811482],[-76.60656391623009,39.28660946701807],[-76.60653571071722,39.28661087141467],[-76.60650750301983,39.28661225147673],[-76.60647929206905,39.28661359098676],[-76.60645107674554,39.28661488273501],[-76.60642285925768,39.28661614654568],[-76.60639464179378,39.28661740584586],[-76.60636642654718,39.28661868316198],[-76.60633821455204,39.28662000101635],[-76.60631004524082,39.28662177299078],[-76.60629734446449,39.28660972778058],[-76.60629527414739,39.28658782333477],[-76.60629328848012,39.28656591286705],[-76.60629131208162,39.28654400333112],[-76.60628934032569,39.28652209290966],[-76.60628737089418,39.28650018159509],[-76.60628539682264,39.28647827116564],[-76.60628341695191,39.28645636161724],[-76.60628142201421,39.28643445201817],[-76.60627941779984,39.28641254328863],[-76.60627741822337,39.28639063457444],[-76.60627541864798,39.28636872586008],[-76.60627341791985,39.28634681624094],[-76.60627141718774,39.28632490752228],[-76.60626941413891,39.28630299879575],[-76.60626741225022,39.28628109007288],[-76.60626540920379,39.286259181346],[-76.60626340731757,39.28623727262282],[-76.60626140775098,39.2862153639072],[-76.60625940819041,39.28619345429066],[-76.60625741094432,39.28617154558245],[-76.60625541602271,39.28614963598113],[-76.60625342341535,39.2861277272881],[-76.60625143545066,39.28610581770978],[-76.60624944981026,39.28608390723821],[-76.60624747112071,39.28606199769052],[-76.60624552490158,39.28604008554929],[-76.60624360418851,39.28601817259261],[-76.60624169159497,39.28599625876214],[-76.60623976972515,39.28597434580118],[-76.606237828147,39.28595243367469],[-76.60623588077496,39.28593052152874],[-76.60623392992176,39.28590861027159],[-76.60623197907455,39.2858866981135],[-76.60623002474664,39.28586478684439],[-76.60622807041972,39.28584287557506],[-76.60622611609399,39.2858209643056],[-76.60622416061037,39.28579905303211],[-76.60622220629227,39.2857771408615],[-76.60622025660642,39.28575522960706],[-76.60621831504051,39.28573331747884],[-76.60621636536207,39.2857114053233],[-76.60621439481174,39.28568949489917],[-76.60621238948018,39.28566758615972],[-76.60621036327657,39.28564567915165],[-76.60620832200622,39.28562377209293],[-76.60620627145954,39.28560186590357],[-76.60620421511382,39.28557996059551],[-76.6062021599332,39.2855580543903],[-76.60620010823141,39.28553614819663],[-76.60619805073013,39.28551424288406],[-76.60619598859415,39.28549233755582],[-76.60619392645938,39.28547043222736],[-76.60619187128519,39.2854485260213],[-76.60618982654412,39.28542661985006],[-76.60618780035921,39.28540471193927],[-76.60618579156679,39.28538280318589],[-76.60618379552535,39.28536089447505],[-76.6061818076037,39.28533898489049],[-76.60617982432444,39.28531707442056],[-76.60617785495521,39.28529516399713],[-76.6061758948648,39.28527325270381],[-76.60617393825289,39.285251341422],[-76.60617197932385,39.2852294301322],[-76.60617001111855,39.28520751971192],[-76.60616802668271,39.28518561013781],[-76.60616602022066,39.28516370139044],[-76.60616398361408,39.2851417943433],[-76.60616190410832,39.28511988985445],[-76.60615979445818,39.2850979870659],[-76.60615766741832,39.28507608511962],[-76.60615553921582,39.28505418406997],[-76.60615342261518,39.28503228125752],[-76.6061513326793,39.28501037763363],[-76.60614928216792,39.28498847143941],[-76.60614728730798,39.28496656272917],[-76.60614533535454,39.28494465055971],[-76.60614340658837,39.28492273756707],[-76.60614148246002,39.28490082458974],[-76.6061395432598,39.28487891246241],[-76.60613757971545,39.2848570011541],[-76.60613561153113,39.28483509073086],[-76.60613363987093,39.28481318029569],[-76.60613166357562,39.28479126984488],[-76.60612968264036,39.28476936027904],[-76.60612769706998,39.28474745069754],[-76.60612571034189,39.28472554111192],[-76.60612372477891,39.2847036306293],[-76.60612173689422,39.28468172103945],[-76.60611974436938,39.28465981233462],[-76.60611774373753,39.28463790270166],[-76.60611573150622,39.28461599483114],[-76.60611370536751,39.28459408691384],[-76.60611163864293,39.28457218246331],[-76.60610953134777,39.28455027877735],[-76.60610741708935,39.28452837686932],[-76.6061053283466,39.28450647234439],[-76.60610330452739,39.28448456533472],[-76.60610135260082,39.28446265316138],[-76.6060994099477,39.28444074101898],[-76.60609740584609,39.28441883227328],[-76.6060952730456,39.28439693120279],[-76.60609301618268,39.28437503782295],[-76.6060907222264,39.28435314521921],[-76.60608848159791,39.28433125099264],[-76.60608637199388,39.28430934819762],[-76.60608435630431,39.2842874403128],[-76.60608239279358,39.28426552899974],[-76.60608044087449,39.28424361772534],[-76.6060784622933,39.28422170726217],[-76.6060764303771,39.28419980022292],[-76.60607436136257,39.28417789486063],[-76.60607227727648,39.2841559903484],[-76.6060702013052,39.28413408586319],[-76.60606815548034,39.28411217967741],[-76.60606616067508,39.28409027005945],[-76.60606423195161,39.28406835796068],[-76.60606234961153,39.28404644241421],[-76.60606048698139,39.28402452603289],[-76.60605861739811,39.28400260962803],[-76.60605671534759,39.28398069581651],[-76.60605475648998,39.28395878451654],[-76.60605273850223,39.28393687662106],[-76.60605068689324,39.28391497041425],[-76.60604862369011,39.28389306506907],[-76.60604657440183,39.28387115886969],[-76.60604456221425,39.28384925099297],[-76.60604260452314,39.28382733969588],[-76.60604068741463,39.28380542583234],[-76.60603879581143,39.28378351115345],[-76.60603691812288,39.28376159562027],[-76.60603504391253,39.28373968009858],[-76.60603315927204,39.28371776454173],[-76.60603123636928,39.28369585155861],[-76.60601520298061,39.2836804154689],[-76.605990881878,39.28366922749571],[-76.60596653860641,39.28365806736672],[-76.60594220467472,39.28364689645488],[-76.60591787192477,39.28363572283955],[-76.60589352749687,39.28362456629438],[-76.60586915505449,39.28361344658142],[-76.60584473708209,39.28360238706157],[-76.60582020817721,39.28359147669087],[-76.60579561972354,39.28358064628296],[-76.60577107448724,39.28356975746537],[-76.60574666704642,39.28355868534961],[-76.60572237754734,39.28354745689195],[-76.60569813010189,39.28353617092162],[-76.60567385463681,39.28352492268409],[-76.60564951962277,39.28351375440949],[-76.60562516711578,39.28350260678857],[-76.6056008052639,39.28349147354331],[-76.60557643525132,39.28348035017394],[-76.60555206058008,39.28346923218839],[-76.60552768240441,39.28345812049129],[-76.6055032855564,39.28344703304696],[-76.60547888171189,39.28343595458161],[-76.60545448605824,39.28342486352795],[-76.60543011608647,39.28341374102872],[-76.6054057753137,39.28340257988974],[-76.6053814520693,39.28339139448394],[-76.60535713933936,39.28338019559691],[-76.60533282895508,39.28336899310967],[-76.60530851507123,39.28335779601011],[-76.60528418951955,39.28334661417925],[-76.60525984529571,39.28333545660107],[-76.60523549407502,39.28332430800193],[-76.60521114052901,39.28331316209209],[-76.60518678232428,39.28330202156608],[-76.605162415954,39.28329089181667],[-76.60513804024363,39.28327977554225],[-76.60511365169125,39.28326867723469],[-76.605089249123,39.28325759959243],[-76.60506471148226,39.28324663498694],[-76.60504334450579,39.28325346118319],[-76.605042741166,39.28325690547099],[-76.60504219979981,39.28325962755564],[-76.60504171986729,39.28326234894632],[-76.60504222521057,39.28326505653518],[-76.60504276417602,39.28326776243557],[-76.60504332284006,39.28327046930305],[-76.60504390005885,39.28327317443134],[-76.60504449118609,39.2832758796064],[-76.6050450939038,39.28327858482044],[-76.6050457070528,39.28328129006944],[-76.60504632715607,39.2832839953419],[-76.60504695189562,39.28328670062999],[-76.60504757779407,39.28328940592186],[-76.6050482036928,39.28329211121379],[-76.60504882726825,39.2832948173987],[-76.60504944388471,39.28329752446088],[-76.60505005238792,39.2833002314959],[-76.60505065045476,39.28330293939645],[-76.60505123461324,39.28330564725035],[-76.60505180833033,39.28330835687059],[-76.60505237973456,39.28331106558233],[-76.60505294997473,39.2833137751909],[-76.60505352021478,39.28331648479935],[-76.60505409045504,39.28331919440794],[-76.60505465837721,39.28332190400868],[-76.60505522629963,39.28332461360946],[-76.60505579421684,39.28332732411088],[-76.60505636098006,39.28333003370774],[-76.60505692657928,39.28333274420142],[-76.6050574921837,39.28333545379432],[-76.60505805778303,39.28333816428806],[-76.60505862222847,39.28334087387702],[-76.60505918550993,39.28334358436291],[-76.60505974879116,39.28334629484876],[-76.60506031207269,39.28334900533459],[-76.6050608741952,39.28335171581656],[-76.60506143631771,39.28335442629849],[-76.60506199728123,39.2833571367766],[-76.60506255939886,39.28335984815924],[-76.60506311920334,39.28336255863336],[-76.60506368016698,39.28336526911146],[-76.60506423997182,39.28336797958553],[-76.60506479977147,39.2833706909604],[-76.60506535957612,39.28337340143453],[-76.60506591821682,39.28337611280547],[-76.60506647686269,39.28337882327571],[-76.60506703550344,39.28338153464669],[-76.60506759414946,39.28338424511688],[-76.60506815279027,39.2833869564878],[-76.60506871143116,39.28338966785881],[-76.60506926891821,39.28339237832508],[-76.6050698264001,39.28339508969213],[-76.60507038388224,39.28339780105912],[-76.60507094252829,39.28340051152928],[-76.60507150001045,39.2834032228963],[-76.60507205749256,39.28340593426333],[-76.60507261497983,39.28340864472962],[-76.60507317130293,39.28341135609272],[-76.60507372762625,39.28341406745584],[-76.60507428394962,39.28341677881895],[-76.60507483911394,39.28341949017811],[-76.60507539311924,39.28342220153341],[-76.60507594712456,39.28342491288871],[-76.60507650112493,39.2834276251447],[-76.60507705397133,39.28343033649615],[-76.6050776068177,39.28343304784753],[-76.60507815965913,39.28343576009961],[-76.60507871134656,39.28343847144708],[-76.60507926302921,39.28344118369534],[-76.60507981471669,39.28344389504277],[-76.60508036639924,39.28344660729092],[-76.60508091692292,39.28344931953526],[-76.6050814674515,39.28345203087883],[-76.60508201797528,39.28345474312308],[-76.60508256849893,39.28345745536737],[-76.6050831190278,39.28346016671092],[-76.60508366955153,39.28346287895523],[-76.60508422007547,39.28346559119945],[-76.60508477060424,39.28346830254301],[-76.60508532112831,39.28347101478725],[-76.60508587165218,39.28347372703156],[-76.60508642334021,39.28347643837897],[-76.60508697386435,39.28347915062317],[-76.60508752438838,39.28348186286745],[-76.60508807607671,39.28348457421482],[-76.60508862775984,39.28348728646297],[-76.6050891794481,39.28348999781037],[-76.60508973229039,39.28349271006235],[-76.60509028513781,39.28349542141363],[-76.60509083798536,39.28349813276493],[-76.60509139082784,39.2835008450169],[-76.6050919448344,39.28350355637207],[-76.60509250000007,39.28350626773111],[-76.60509305516564,39.28350897909013],[-76.60509361033141,39.28351169044915],[-76.60509416665629,39.28351440181211],[-76.60509472298121,39.28351711317504],[-76.60509528047005,39.28351982364112],[-76.60509583911318,39.28352253501184],[-76.60509639776119,39.28352524548175],[-76.60509695756329,39.28352795685632],[-76.60509751852956,39.28353066733413],[-76.60509808065493,39.28353337781574],[-76.60509864278029,39.28353608829735],[-76.60509920606481,39.28353879878288],[-76.60509976934934,39.28354150926837],[-76.60510033379283,39.28354421975776],[-76.60510089940061,39.28354692935029],[-76.60510146384419,39.28354963983975],[-76.60510203061114,39.28355234943617],[-76.60510259621381,39.28355505992942],[-76.60510316298068,39.28355776952589],[-76.60510372974274,39.283560480023],[-76.60510429650964,39.28356318961946],[-76.60510486327665,39.28356589921589],[-76.60510543003883,39.28356860971298],[-76.60510599796474,39.28357131931332],[-76.60510656473208,39.2835740289097],[-76.60510713149419,39.28357673940682],[-76.60510769826135,39.28357944900323],[-76.60510826502376,39.28358215950038],[-76.60510883179107,39.2835848690967],[-76.60510939855835,39.28358757869308],[-76.60510996416188,39.28359028918629],[-76.60511052976516,39.28359299967955],[-76.60511109421464,39.28359570926811],[-76.6051116586592,39.28359841975738],[-76.60511222310355,39.28360113024669],[-76.60511278638911,39.28360384073208],[-76.60511334851566,39.28360655121357],[-76.60511391064217,39.28360926169512],[-76.60511447160971,39.28361197217265],[-76.6051150325773,39.2836146826503],[-76.60511559122676,39.28361739312007],[-76.60511614987142,39.28362010449062],[-76.60511670735694,39.2836228158572],[-76.60511726368352,39.28362552721995],[-76.60511781885118,39.28362823857876],[-76.60511837285974,39.28363094993371],[-76.60511892570928,39.28363366128469],[-76.60511947623573,39.28363637352869],[-76.60512002676238,39.28363908577264],[-76.60512057497075,39.28364179800884],[-76.60512112202031,39.28364451024105],[-76.60512166906985,39.28364722247332],[-76.60512221496039,39.28364993470172],[-76.60512275968711,39.28365264782691],[-76.60512330325959,39.28365536004753],[-76.6051238468271,39.28365807316879],[-76.60512438923578,39.28366078628619],[-76.6051249316443,39.28366349940356],[-76.60512547405305,39.28366621252093],[-76.6051260153028,39.28366892563449],[-76.60512655655756,39.28367163784719],[-76.60512709780717,39.28367435096069],[-76.60512763905702,39.28367706407415],[-76.60512818030669,39.28367977718759],[-76.60512872271572,39.28368249030496],[-76.60512926396568,39.28368520341848],[-76.60512980637458,39.28368791653581],[-76.60513034878372,39.28369062965316],[-76.60513089119274,39.28369334277047],[-76.60513143476599,39.28369605499102],[-76.60513197949321,39.28369876811608],[-76.60513252422547,39.2837014803405],[-76.60513307011185,39.2837041934695],[-76.60513361716235,39.28370690570168],[-76.60513416421286,39.28370961793381],[-76.60513471358161,39.28371233017378],[-76.60513526410922,39.28371504241758],[-76.60513581464215,39.2837177537607],[-76.605136367488,39.28372046601229],[-76.605136921498,39.28372317736704],[-76.60513747782599,39.28372588872961],[-76.60513803415424,39.28372860009216],[-76.60513859164661,39.28373131055788],[-76.60513915029287,39.28373402192822],[-76.60513970894442,39.28373673239777],[-76.60514026990894,39.28373944377585],[-76.60514083087847,39.28374215425329],[-76.60514139184809,39.28374486473061],[-76.60514195397683,39.28374757521187],[-76.60514251726448,39.283750285697],[-76.60514308055235,39.28375299618212],[-76.60514364500435,39.2837557057704],[-76.60514421061029,39.28375841626329],[-76.60514477505735,39.28376112675236],[-76.60514534066841,39.28376383634451],[-76.60514590743372,39.28376654684129],[-76.60514647420389,39.28376925643732],[-76.60514704097415,39.28377196603341],[-76.6051476077396,39.28377467653018],[-76.60514817566897,39.28377738613008],[-76.60514874243935,39.28378009572614],[-76.60514931036381,39.28378280622679],[-76.6051498782933,39.28378551582671],[-76.60515044622286,39.28378822542665],[-76.6051510141525,39.28379093502653],[-76.60515158324122,39.28379364463029],[-76.6051521511661,39.28379635513092],[-76.60515271909581,39.28379906473086],[-76.60515328702557,39.2838017743307],[-76.60515385379637,39.28380448392668],[-76.6051544217212,39.28380719442728],[-76.60515498849222,39.28380990402329],[-76.60515555642215,39.28381261362313],[-76.6051561231881,39.28381532411984],[-76.60515668879997,39.28381803371192],[-76.6051572544071,39.28382074420475],[-76.60515782117814,39.28382345380065],[-76.6051583891083,39.28382616340048],[-76.6051589558746,39.28382887389724],[-76.60515952496399,39.28383158350091],[-76.60516009289427,39.28383429310072],[-76.60516066198367,39.28383700270449],[-76.60516123223201,39.28383971231207],[-76.60516180132171,39.28384242191581],[-76.60516237157017,39.28384513152336],[-76.60516294181885,39.28384784113095],[-76.60516351206756,39.28385055073858],[-76.60516408231631,39.28385326034614],[-76.60516465257011,39.28385596905298],[-76.60516522281897,39.28385867866053],[-76.60516579306764,39.28386138826815],[-76.60516636331656,39.28386409787565],[-76.60516693356554,39.28386680748321],[-76.60516750265548,39.2838695170869],[-76.60516807174544,39.28387222669054],[-76.60516864083552,39.28387493629423],[-76.6051692087665,39.28387764589392],[-76.60516977785159,39.28388035639831],[-76.60517034462357,39.28388306599421],[-76.60517091139582,39.28388577559006],[-76.60517147816293,39.28388848608661],[-76.60517204261708,39.28389119567465],[-76.60517260822519,39.28389390616726],[-76.60517317151533,39.28389661665221],[-76.60517373480558,39.28389932713704],[-76.60517429693657,39.28390203761808],[-76.60517485790868,39.28390474809508],[-76.60517541772202,39.28390745856822],[-76.6051759763711,39.28391016993822],[-76.60517653386634,39.28391288040362],[-76.60517709135642,39.28391559176976],[-76.60517764768765,39.28391830313189],[-76.60517820285985,39.2839210144903],[-76.60517875919118,39.28392372585245],[-76.60517931552234,39.28392643721465],[-76.60517987185375,39.28392914857685],[-76.60518042702611,39.28393185993511],[-76.60518098335746,39.28393457129727],[-76.60518153852992,39.28393728265557],[-76.60518209370241,39.28393999401383],[-76.60518264887496,39.28394270537207],[-76.60518320404753,39.28394541673035],[-76.60518375922015,39.28394812808861],[-76.60518431439262,39.28395083944687],[-76.60518486956532,39.2839535508051],[-76.60518542473807,39.28395626216334],[-76.60518597991091,39.28395897352158],[-76.60518653392467,39.28396168487594],[-76.60518708909756,39.28396439623413],[-76.60518764311139,39.28396710758847],[-76.60518819828435,39.28396981894669],[-76.60518875229326,39.28397253120171],[-76.60518930746615,39.28397524255993],[-76.60518986148037,39.2839779539143],[-76.60519041549442,39.2839806652686],[-76.6051909695083,39.28398337662291],[-76.60519152352248,39.28398608797715],[-76.60519207753165,39.2839888002322],[-76.60519263154607,39.28399151158647],[-76.60519318556034,39.28399422294076],[-76.60519373957443,39.28399693429504],[-76.6051942924299,39.28399964564542],[-76.60519484643933,39.28400235790043],[-76.60519540045377,39.28400506925468],[-76.60519595330915,39.28400778060507],[-76.60519650732365,39.28401049195929],[-76.60519706017418,39.28401320421042],[-76.60519761418877,39.28401591556467],[-76.60519816704432,39.28401862691502],[-76.60519872105405,39.28402133916995],[-76.60519927390969,39.28402405052029],[-76.60519982676537,39.2840267618706],[-76.60520038077517,39.28402947412559],[-76.60520093363098,39.2840321854759],[-76.60520148648702,39.28403489682623],[-76.60520203933785,39.28403760907726],[-76.60520259219375,39.2840403204276],[-76.60520314504974,39.2840430317779],[-76.60520369790071,39.2840457440289],[-76.60520425075678,39.28404845537921],[-76.60520480361299,39.28405116672952],[-76.60520535646415,39.28405387898051],[-76.6052059093203,39.28405659033079],[-76.60520646217152,39.28405930258175],[-76.60520701502776,39.28406201393209],[-76.60520756788404,39.28406472528234],[-76.60520812073538,39.2840674375333],[-76.60520867243288,39.28407014887966],[-76.60520922528927,39.28407286022991],[-76.6052097781407,39.28407557248089],[-76.60521033099725,39.28407828383115],[-76.60521088384876,39.28408099608216],[-76.60521143554647,39.28408370742841],[-76.60521198839811,39.28408641967943],[-76.60521254125477,39.2840891310296],[-76.60521309295237,39.28409184237594],[-76.60521364580416,39.28409455462693],[-76.60521419866116,39.28409726597714],[-76.60521475035387,39.28409997822421],[-76.6052153032108,39.28410268957438],[-76.6052158560677,39.28410540092457],[-76.60521640891965,39.28410811317546],[-76.60521696061775,39.28411082452174],[-76.60521751346984,39.28411353677267],[-76.60521806632691,39.28411624812283],[-76.60521861802501,39.28411895946913],[-76.60521917087715,39.28412167171998],[-76.60521972373455,39.28412438307024],[-76.60522027542771,39.28412709531714],[-76.60522082828506,39.2841298066673],[-76.60522138113737,39.2841325189182],[-76.60522193399476,39.28413523026837],[-76.60522248569333,39.28413794161455],[-76.60522303854579,39.28414065386548],[-76.60522359140329,39.28414336521561],[-76.60522414426087,39.28414607656565],[-76.60522469711344,39.28414878881649],[-76.60522524997107,39.28415150016663],[-76.60522580166484,39.2841542124136],[-76.60522635452261,39.28415692376372],[-76.60522690738037,39.28415963511381],[-76.60522746023315,39.28416234736462],[-76.60522801309105,39.28416505871473],[-76.60522856594915,39.28416777006483],[-76.60522911880206,39.2841704823156],[-76.60522967166001,39.28417319366568],[-76.60523022567216,39.28417590592039],[-76.6052307785302,39.28417861727046],[-76.60523133138828,39.28418132862051],[-76.60523188424146,39.28418404087127],[-76.60523243709963,39.28418675222131],[-76.60523299111695,39.28418946357531],[-76.60523354397526,39.28419217492534],[-76.60523409682877,39.28419488717609],[-76.6052346508462,39.28419759853],[-76.60523520370459,39.28420030987998],[-76.6052357577171,39.2842030221347],[-76.60523631057562,39.2842057334847],[-76.60523686459322,39.28420844483862],[-76.60523741861086,39.28421115619248],[-76.60523797262354,39.28421386844715],[-76.60523852548224,39.28421657979717],[-76.60523907950001,39.28421929115097],[-76.60523963351783,39.28422200250485],[-76.60524018753067,39.28422471475948],[-76.60524074154863,39.28422742611335],[-76.60524129556656,39.28423013746722],[-76.60524184958453,39.28423284882108],[-76.60524240360257,39.28423556017491],[-76.60524295877973,39.28423827153265],[-76.60524351279282,39.2842409837873],[-76.60524406681104,39.28424369514114],[-76.60524462198832,39.28424640649884],[-76.60524517600655,39.28424911785267],[-76.60524573118393,39.2842518292104],[-76.60524628636112,39.28425454056811],[-76.60524684037955,39.28425725192191],[-76.60524739555703,39.28425996327962],[-76.60524795073458,39.28426267463733],[-76.60524850591216,39.28426538599505],[-76.60524906108978,39.28426809735269],[-76.60524961626744,39.28427080871038],[-76.60525017260404,39.28427352007197],[-76.60525072778179,39.28427623142967],[-76.60525128527776,39.28427894279509],[-76.60525184393767,39.28428165326376],[-76.60525240606987,39.28428436464479],[-76.60525296937119,39.28428707422819],[-76.60525353498554,39.28428978472017],[-76.60525410176399,39.28429249431532],[-76.60525466969678,39.284295204815],[-76.6052552387935,39.28429791441792],[-76.6052558090492,39.28430062402465],[-76.60525637931011,39.28430333273073],[-76.60525695072513,39.28430604234134],[-76.60525752329926,39.28430875195597],[-76.60525809587831,39.28431146066977],[-76.60525866729341,39.28431417028046],[-76.60525923986755,39.28431687989488],[-76.60525981128777,39.2843195886048],[-76.60526038270305,39.28432229821541],[-76.60526095411824,39.28432500782608],[-76.60526152321543,39.28432771742891],[-76.60526209231269,39.28433042703176],[-76.60525624798454,39.28433047585009],[-76.60513383127849,39.28434585566611],[-76.6049888257199,39.28436407336113],[-76.60475792807843,39.28439308127859],[-76.60472268452266,39.28421991730523],[-76.60461873210707,39.28370784542352],[-76.60459698488509,39.28361399837766],[-76.60458118864173,39.28354692399461],[-76.604572555069,39.28354687331321],[-76.60456784611851,39.28353225970918],[-76.60457336191435,39.28352688541406],[-76.60456898576602,39.28347855740107],[-76.6045539314355,39.28340835355881],[-76.60454011165142,39.28340009208228],[-76.60453745639815,39.28338779674623],[-76.60452184868241,39.28330979313587],[-76.60452127365657,39.28330690605845],[-76.604520737074,39.28330419205673],[-76.60452020048628,39.28330147895574],[-76.60451966622193,39.28329876496183],[-76.60451913079839,39.28329605096407],[-76.60451859537505,39.28329333696625],[-76.60451805878751,39.28329062386527],[-76.60451752104616,39.28328790985963],[-76.60451698098169,39.28328519674695],[-76.6045164374402,39.28328248362248],[-76.60451589041661,39.28327977138714],[-76.6045153387519,39.28327706003689],[-76.60451478245099,39.28327434867103],[-76.6045142157089,39.28327163907155],[-76.60451363505324,39.28326893032595],[-76.60451304395633,39.28326622334674],[-76.60451244705935,39.28326351724872],[-76.60451184668017,39.28326081203983],[-76.60451124630606,39.28325810593013],[-76.60451065288639,39.2832553998438],[-76.60451006643085,39.28325269197939],[-76.60450949388874,39.28324998326111],[-76.60450893874751,39.28324727189909],[-76.60450840448385,39.28324455790516],[-76.60450788877992,39.28324184127133],[-76.60450738467632,39.28323912287505],[-76.60450688637316,39.28323640359748],[-76.60450638922889,39.28323368432394],[-76.60450588860262,39.2832309659393],[-76.60450537753998,39.28322824842038],[-76.60450485139005,39.28322553445364],[-76.60450430436728,39.28322282221814],[-76.60450373182061,39.28322011440051],[-76.60450312679602,39.28321741097741],[-76.60450248698524,39.28321471013937],[-76.60450180658833,39.28321201276777],[-76.60450107979989,39.28320932064457],[-76.60450029963579,39.28320663915073],[-76.60449945796735,39.28320397096132],[-76.60449854897453,39.28320132056042],[-76.60449753668225,39.28319869593383],[-76.60449622500741,39.2831961333525],[-76.60449474390258,39.28319360803274],[-76.60449329874312,39.28319108013169],[-76.60449209373996,39.28318851070346],[-76.60449131571359,39.28318586164417],[-76.60449068758942,39.28318314373098],[-76.60449008985628,39.28318037998122],[-76.60448955253364,39.28317759121344],[-76.60448910914793,39.28317479285366],[-76.60448879321088,39.28317200302979],[-76.60448863591597,39.28316923986224],[-76.60448867193877,39.28316652058221],[-76.60448893363181,39.28316386331377],[-76.6044895865311,39.28316130554573],[-76.6044914528278,39.28315897975606],[-76.60449405083037,39.28315680055202],[-76.60449663481408,39.28315464111745],[-76.60449845442744,39.28315237281921],[-76.60449900285755,39.28314984262295],[-76.60449892156237,39.2831469608107],[-76.60449832631397,39.28314395926807],[-76.60449722378428,39.28314109653626],[-76.60449562180978,39.2831386302598],[-76.60449351548715,39.28313681623864],[-76.60449067260767,39.28313572575182],[-76.60448722308477,39.28313513314539],[-76.6044834453435,39.28313478534175],[-76.60447961666004,39.28313442745816],[-76.60447601545448,39.28313380731777],[-76.60447286097616,39.28313268335386],[-76.60446992847807,39.28313103589369],[-76.60446735402809,39.28312899060136],[-76.60446537683831,39.28312667528982],[-76.60446400783606,39.28312420889662],[-76.60446276334756,39.28312165374728],[-76.60446162588198,39.28311902869876],[-76.60446060462111,39.28311634999579],[-76.60445971104978,39.28311363659313],[-76.60445895550409,39.28311090563994],[-76.60445834947879,39.28310817428948],[-76.60445790446886,39.28310545969486],[-76.60445764129143,39.28310277003314],[-76.60445772635644,39.28309998606327],[-76.60445818260833,39.28309715019836],[-76.60445898053879,39.28309435781979],[-76.6044600871529,39.28309170609885],[-76.60446146945493,39.28308929220671],[-76.60446422786647,39.28308765400074],[-76.60446820416236,39.28308669006283],[-76.6044704094287,39.28308510133768],[-76.60447054919167,39.2830826931698],[-76.60447009679513,39.28308005601595],[-76.60446923372562,39.28307727696034],[-76.60446814494583,39.28307444309894],[-76.60446701309111,39.28307164332151],[-76.6044660185639,39.28306895119713],[-76.60446515770732,39.28306619106498],[-76.60446426577764,39.28306339119464],[-76.60446318552233,39.28306069157547],[-76.60446175735052,39.28305823579213],[-76.60445981469655,39.28305617100865],[-76.60445684917039,39.28305483510061],[-76.60445316569904,39.28305400300337],[-76.60444947749106,39.28305318890523],[-76.60444649427859,39.28305190698319],[-76.60444462800595,39.28304986317428],[-76.60444328891471,39.28304743741574],[-76.6044423128277,39.28304476426926],[-76.60444158674633,39.28304194604117],[-76.60444099533893,39.28303908773231],[-76.60444042677057,39.28303629075216],[-76.60443977899618,39.28303356376471],[-76.60443913972205,39.2830307674472],[-76.6044387102727,39.28302796463021],[-76.60443869773863,39.28302522356819],[-76.60443930918439,39.28302261701956],[-76.60444075798245,39.28302012588597],[-76.60444284391671,39.28301769634813],[-76.60444520427998,39.28301531457404],[-76.60444747404291,39.28301296762464],[-76.60444928933956,39.28301064166373],[-76.60445028746842,39.28300832195877],[-76.60445004906123,39.28300597106703],[-76.60444849770707,39.28300357341827],[-76.60444609181019,39.28300123324287],[-76.60444330364294,39.28299906202423],[-76.60444059853334,39.2829971694208],[-76.60443768923606,39.28299572741163],[-76.60443442110426,39.28299461657532],[-76.60443105400763,39.2829935855735],[-76.60442784428453,39.28299239296435],[-76.60442476055542,39.28299105395512],[-76.60442170836656,39.2829896709147],[-76.60441865268555,39.28298829056469],[-76.6043698979508,39.28298045006805],[-76.60437461773589,39.28296525569152],[-76.60427618223511,39.2829433409483],[-76.60400730490329,39.28288422035308],[-76.60400429274809,39.28288355804663],[-76.60383224143737,39.28284567192548],[-76.60371726411149,39.28282005553518],[-76.6036859967458,39.28281294031277],[-76.60368409486397,39.28281271140762],[-76.60368281936216,39.28281260171499],[-76.60368153902813,39.2828125271358],[-76.6036802573438,39.28281248678088],[-76.60367897430439,39.28281248155123],[-76.60367769107357,39.2828125105498],[-76.60367641112366,39.28281257468926],[-76.60367513330044,39.28281267306478],[-76.60367386223538,39.28281280659282],[-76.60367259677923,39.28281297346799],[-76.60367134039906,39.28281317550351],[-76.60367009310478,39.28281341089794],[-76.60366885720973,39.28281368055972],[-76.60366763503674,39.28281398359598],[-76.60366642659091,39.28281431910601],[-76.6036652341904,39.28281468709768],[-76.60366405784015,39.28281508667011],[-76.60366290101211,39.28281551873588],[-76.6036617648755,39.28281598149737],[-76.6036606494304,39.28281647495456],[-76.60365955699967,39.28281699821459],[-76.60365848874773,39.28281755038056],[-76.60365744583325,39.2828181314564],[-76.60365642942034,39.28281874054527],[-76.60365544183213,39.28281937675436],[-76.60365448191476,39.28282003917882],[-76.60365355314529,39.28282072783052],[-76.60365265553351,39.28282144090796],[-76.60365179140283,39.28282217751815],[-76.60365095959899,39.28282293675648],[-76.60365016359943,39.28282371863463],[-76.60364940224983,39.28282452224804],[-76.60364867672435,39.28282534489838],[-76.60364799049523,39.28282618749797],[-76.60364734125935,39.28282704733697],[-76.60364673017581,39.28282792441917],[-76.60364616072688,39.2828288178555],[-76.60364563059915,39.28282972673752],[-76.60364514096686,39.28283064836688],[-76.60364469414856,39.28283158275134],[-76.60364428898956,39.28283252898627],[-76.60364392665439,39.2828334861749],[-76.60364360715791,39.28283445161492],[-76.60364333165417,39.28283542621092],[-76.60364309899923,39.28283640725697],[-76.60364291151623,39.28283739385998],[-76.60364276805633,39.28283838421451],[-76.60364266861419,39.28283937922146],[-76.60364261436931,39.28284037528161],[-76.60364260532134,39.28284137239513],[-76.60364264031666,39.28284236965717],[-76.60364272052907,39.28284336436953],[-76.60364284479473,39.28284435742901],[-76.60364707959657,39.28286537749782],[-76.60380599950622,39.28333338135536],[-76.60389197507619,39.28358704761932],[-76.60409120263286,39.28419585980536],[-76.6043676929764,39.28501280328991],[-76.60436757572006,39.28501283712392],[-76.60435397049473,39.28501676275947],[-76.6043597105771,39.28503271476732],[-76.60401163536437,39.28504793487394],[-76.60367954626146,39.28410166702366],[-76.60358065932076,39.28381513690054],[-76.6034920606308,39.2835525242058],[-76.6032730255112,39.28291934409983],[-76.60288429449645,39.28243708823107],[-76.60289223779898,39.28243246624963],[-76.60293121895889,39.28239329325208],[-76.60295961922544,39.28234706933814],[-76.60297556154087,39.28230052587484],[-76.6029796446194,39.28225334421933],[-76.60297061234419,39.28220319976263],[-76.60295001691138,39.282157095773],[-76.60291437122918,39.28211164079501],[-76.60286982253756,39.28207269073856],[-76.60284277506257,39.28209611460053],[-76.6026220199951,39.2821031352684],[-76.60262207984162,39.28212638685724],[-76.60243662852281,39.28213142332369],[-76.60243552039121,39.28210599915012],[-76.60231607425003,39.28210790076513],[-76.60231623350612,39.28213614471758],[-76.6016734148666,39.28215725674652],[-76.60148267708028,39.28216289981044],[-76.60139938341335,39.28216627608832],[-76.60118854309626,39.28217482207298],[-76.60076921484035,39.28218682078427],[-76.60076647826185,39.28217777323015],[-76.60015444728059,39.28219748271698],[-76.59933934829348,39.28222543840904],[-76.599339464964,39.2822304335366],[-76.59901034477808,39.28223987190781],[-76.59900937944413,39.28224743321817],[-76.59894549644375,39.28224950395805],[-76.59856388391347,39.28226187397792],[-76.59820928003175,39.28227103385073],[-76.59788366663432,39.28228131066393],[-76.59755580989103,39.28228963234032],[-76.59731527121268,39.28229520519533],[-76.59702786386585,39.28230187424347],[-76.59674122972585,39.28231177357711],[-76.59672372860264,39.2821116720724],[-76.59692321200806,39.28210677744818],[-76.59704345671415,39.28210552089541],[-76.59712384320899,39.28210753150307],[-76.59718994214398,39.28210874092388],[-76.59723177519496,39.28211080930281],[-76.5973035337617,39.28211997558834],[-76.59739484703738,39.28212516713246],[-76.59739983193226,39.28212457800469],[-76.59740152363838,39.28212282641461],[-76.59740288143924,39.2821163951176],[-76.59740029715054,39.28211040699609],[-76.59740478914429,39.28210272357182],[-76.59742783408767,39.28210072179209],[-76.59745660259237,39.28210296960498],[-76.59749784441939,39.28210342439819],[-76.59754575500317,39.28210169425603],[-76.59758871275888,39.2820987824403],[-76.59762922744416,39.28209358961538],[-76.597662195092,39.28209298643538],[-76.59769385529412,39.28209607099517],[-76.59770746054919,39.28211152514073],[-76.59771131934167,39.28211575572821],[-76.59782026398427,39.28208618293126],[-76.59783524773798,39.28208296446377],[-76.59788935468205,39.2820824326932],[-76.59794649864158,39.2820746835717],[-76.59800287882861,39.28207449461355],[-76.59804542187703,39.28207174064667],[-76.59810509962418,39.28207255736575],[-76.59814654567026,39.28207317386656],[-76.59817439337745,39.28206896708989],[-76.59818970115434,39.28207074621727],[-76.59818919031477,39.28207621930645],[-76.59813772665068,39.28209095718164],[-76.59813435202121,39.28209414424522],[-76.59813483184863,39.28210171769934],[-76.59814379227156,39.28209907669188],[-76.59816209803341,39.28209541105943],[-76.59819209872212,39.28208720324917],[-76.59820463150696,39.28208186496239],[-76.59820468385753,39.28207896558583],[-76.59820600422083,39.28207462932607],[-76.59821476386666,39.28207182909217],[-76.59824143880837,39.28206390534366],[-76.59825728416621,39.28205876303758],[-76.59833671362283,39.28205641255213],[-76.59850135195205,39.28205306250229],[-76.59861875327479,39.28204855187216],[-76.59876183685265,39.28204480712926],[-76.5987751046889,39.28204495423591],[-76.59878904350889,39.28204204464237],[-76.59879912644674,39.28203458383408],[-76.59881055253814,39.28202182392077],[-76.59881614457296,39.28201060780503],[-76.59881624185277,39.28200529273573],[-76.59880764939456,39.2818848665236],[-76.59879752551606,39.2817347864644],[-76.59879326841184,39.28169543110306],[-76.5987910149956,39.28168235964142],[-76.59878960687077,39.28168008761147],[-76.59878692196956,39.28167957581505],[-76.59878485297148,39.28167939309921],[-76.59878154572787,39.28167887107004],[-76.59870442519193,39.28167963719438],[-76.59869716802561,39.28167971959171],[-76.59869532263049,39.28167873325692],[-76.59869478881245,39.28166245824986],[-76.59868907972302,39.28155462732719],[-76.59869281984381,39.2815540248842],[-76.59870214690854,39.28155396307025],[-76.59871022946645,39.28155405463743],[-76.59884005474458,39.28155016001806],[-76.59889792193506,39.281548057085],[-76.59897012478142,39.28154417632081],[-76.59905555405616,39.28154221424698],[-76.59914991945377,39.28153922511103],[-76.59927350129408,39.28153671209491],[-76.59936721528763,39.28153516178286],[-76.59943334898058,39.28153443702441],[-76.59950180428424,39.28153164568751],[-76.59957460891513,39.28152873852689],[-76.59964595078173,39.28152645867117],[-76.59973492583467,39.2815234074563],[-76.59981373873643,39.28152072689601],[-76.59987307303186,39.28151783220661],[-76.599934706081,39.28151383827905],[-76.59997575601506,39.28151332232901],[-76.60003786907602,39.28151690269593],[-76.60014330696183,39.28152063592623],[-76.60019279128113,39.28152359402996],[-76.60021475171806,39.28152415698852],[-76.60023548679129,39.28152373934559],[-76.60026089128291,39.28151741147059],[-76.6002753654805,39.28150790633512],[-76.6002851122516,39.28149609266926],[-76.60029218902127,39.2814813271244],[-76.60029502135805,39.28147541965081],[-76.6003015453846,39.28145857596588],[-76.60031404382839,39.28142101884849],[-76.60033446634395,39.28135777641307],[-76.60035317487662,39.28129757542263],[-76.60039514913952,39.28116626538062],[-76.60043450813463,39.28105312922537],[-76.60046750380344,39.28095957741817],[-76.60046982740646,39.2809524152477],[-76.60049203247704,39.28088398143733],[-76.60049911883978,39.28086214221786],[-76.6005284359366,39.28076565129813],[-76.60055534896134,39.28066446011803],[-76.60058422661113,39.28056941431046],[-76.60060249751768,39.28051049446631],[-76.60062122583518,39.28043805121441],[-76.60065946409576,39.28030685985653],[-76.60067229615271,39.28026205808438],[-76.60068462762018,39.28021064570861],[-76.60069926862811,39.28015764683109],[-76.60071197615176,39.28011993003335],[-76.60073066909025,39.28006053148998],[-76.60073918671529,39.28003662446011],[-76.60074470847667,39.28001783619247],[-76.60074611695498,39.27999739545473],[-76.60074591925553,39.27997403528808],[-76.60074402585686,39.27995274831912],[-76.60073982530018,39.27992129559976],[-76.60073578733385,39.27989781698955],[-76.60073394568178,39.27988710695882],[-76.60073138428731,39.27987536761131],[-76.60072963291714,39.27986447323085],[-76.6007280995675,39.27985355617158],[-76.60072661145412,39.27984263296069],[-76.60072504911577,39.2798317185051],[-76.60072331515765,39.27982081967977],[-76.60072147103622,39.27980993128905],[-76.60071957008994,39.27979904901051],[-76.60071765987236,39.27978816670031],[-76.60071578675787,39.2797772818139],[-76.60071399598218,39.27976638819971],[-76.60071232696062,39.27975548419014],[-76.60071075883145,39.27974456971433],[-76.60070925100007,39.27973365003893],[-76.60070776404599,39.27972272773208],[-76.6007062573745,39.27971180806049],[-76.60070469272424,39.27970089359629],[-76.60070302834656,39.27968998870141],[-76.6007012735185,39.27967909250664],[-76.60069945028097,39.27966820148381],[-76.60069756094171,39.27965731744234],[-76.60069561014184,39.27964643949715],[-76.60069359903012,39.27963556945379],[-76.60069152065275,39.27962470728851],[-76.60068933441524,39.27961385826796],[-76.60068706815835,39.27960301798291],[-76.60068476594856,39.27959218207936],[-76.60068246605741,39.27958134618364],[-76.60068022300239,39.27957050237418],[-76.60067829203686,39.27955960197679],[-76.60067635642586,39.27954870336508],[-76.60067385694026,39.27953791182863],[-76.60067040849142,39.27952728100482],[-76.60066622810199,39.27951675938709],[-76.60066135591565,39.27950642187523],[-76.60065584145411,39.27949632448482],[-76.60064988611764,39.27948630846544],[-76.60064335588409,39.27947650487279],[-76.60063603631095,39.27946712465702],[-76.60062771666591,39.27945833734585],[-76.60061846705037,39.27945004319264],[-76.60060864537645,39.2794420749714],[-76.60059861765377,39.27943426818609],[-76.60058853244382,39.27942658550977],[-76.60057804907727,39.27941921944816],[-76.60056741786408,39.27941196998202],[-76.60055689607324,39.27940463621527],[-76.60054639756031,39.27939728541216],[-76.60053584081192,39.27938998575361],[-76.60052521651055,39.27938274531473],[-76.60051453863494,39.27937555153235],[-76.60050377803825,39.27936843493325],[-76.60049291259858,39.27936141345752],[-76.60048198890817,39.27935444582841],[-76.60047107453734,39.27934747012311],[-76.60046023472835,39.27934042621236],[-76.60044954636898,39.27933324409817],[-76.60043897451253,39.27932595518846],[-76.60042840032511,39.27931866897212],[-76.60041769798853,39.2793115003189],[-76.6004067882766,39.27930452282185],[-76.60039576090711,39.27929765211426],[-76.60038475100545,39.27929076705286],[-76.60037388673832,39.27928374737137],[-76.60036316461357,39.27927659576026],[-76.60035252404512,39.2792693687615],[-76.60034193823458,39.2792620915053],[-76.6003313850245,39.2792547882369],[-76.60032086791722,39.27924745446444],[-76.60031039507116,39.27924008210878],[-76.60029994552345,39.27923268911388],[-76.60028949831104,39.27922529342371],[-76.60027903595294,39.27921791209325],[-76.60026860504661,39.2792105029452],[-76.60025819045934,39.27920307763797],[-76.6002477467528,39.27919567835284],[-76.60023722849382,39.27918834637032],[-76.6002265925873,39.27918111937574],[-76.60021584485858,39.27917399198431],[-76.60020501326497,39.27916693906982],[-76.60019412109749,39.27915994089467],[-76.60018318815001,39.27915298131252],[-76.60017223655457,39.27914604058189],[-76.6001612861304,39.27913909805267],[-76.60015031941681,39.27913216717691],[-76.60013930724675,39.27912528208427],[-76.6001282193093,39.2791184741983],[-76.60011702644748,39.27911177584724],[-76.60010562610347,39.27910528756733],[-76.60009399380191,39.27909903359589],[-76.60008230319859,39.27909284247817],[-76.60007073029279,39.27908653826383],[-76.6000594522275,39.2790799477087],[-76.60004872767978,39.27907282578515],[-76.60003846576269,39.27906525865722],[-76.60002825047565,39.27905764394671],[-76.60001766467917,39.27905037566831],[-76.60000671427471,39.27904343492596],[-76.59999559265121,39.27903664492779],[-76.5999842985226,39.27903002818842],[-76.59997283522355,39.27902360994057],[-76.59996110003875,39.27901751864352],[-76.59994897872414,39.27901187190812],[-76.59993675829489,39.27900633202476],[-76.59992473387918,39.27900056131153],[-76.59991286234649,39.27899460375897],[-76.59990106898972,39.27898855369282],[-76.59988933163105,39.27898243896125],[-76.59987775057651,39.2789761473105],[-76.5998661893636,39.27896983140558],[-76.59985449166986,39.27896367176739],[-76.59984274265854,39.27895756960211],[-76.59983095047285,39.27895151953278],[-76.59981911862529,39.27894551526607],[-76.59980725060788,39.27893955411164],[-76.59979534058525,39.27893364325556],[-76.59978338386551,39.27892779259031],[-76.59977138047419,39.27892199761217],[-76.59975935490696,39.27891623048087],[-76.59974733166467,39.2789104624555],[-76.59973532478199,39.27890467106479],[-76.59972332022934,39.27889887787924],[-76.59971129466993,39.27889311074299],[-76.59969922942312,39.278887393913],[-76.59968714681408,39.27888167341955],[-76.59967478364155,39.2788763798313],[-76.59966187339974,39.2788719130797],[-76.5996486587234,39.27886799565558],[-76.5996352215174,39.27886449002126],[-76.59962135575554,39.27886257997846],[-76.59960719564295,39.27886210204559],[-76.59959328354302,39.27886388497249],[-76.59957977237195,39.27886711949402],[-76.59956666540305,39.27887122552964],[-76.59955385793285,39.27887586223394],[-76.59954146404273,39.27888114619444],[-76.59952934165291,39.27888678778167],[-76.59951734466293,39.27889259373423],[-76.59950524067546,39.27889825970237],[-76.59949308030856,39.27890385251513],[-76.59948088657391,39.27890940197621],[-76.59946866408191,39.27891491260512],[-76.59945641167862,39.27892038349713],[-76.59944413282578,39.27892581736641],[-76.59943183210837,39.27893122323611],[-76.59941952104994,39.27893661285555],[-76.59940720193286,39.27894199253777],[-76.59939486671044,39.2789473505455],[-76.59938250619743,39.27895267153431],[-76.59937011118318,39.2789579446637],[-76.5993576851243,39.27896317354843],[-76.59934522802072,39.27896835818856],[-76.5993327398827,39.27897349678253],[-76.59932021612015,39.27897858120788],[-76.59930763373693,39.27898357895854],[-76.59929502606832,39.27898853878957],[-76.59928243334242,39.27899352028855],[-76.59926989576179,39.27899858754683],[-76.59925739266343,39.27900370536419],[-76.59924484819669,39.27900875998566],[-76.59923215783175,39.27901358531398],[-76.59921931927121,39.27901817773826],[-76.59920662774391,39.27902300305985],[-76.59919403264193,39.27902799264808],[-76.59918156517087,39.27903316192248],[-76.59916935421374,39.2790386743611],[-76.5991574561273,39.27904460672124],[-76.59914563045328,39.2790506456174],[-76.59913389901861,39.2790568253531],[-76.59912144836922,39.27906188748764],[-76.59910807504804,39.27906553407437],[-76.59909442772664,39.27906844470122],[-76.59908041022246,39.27906979664269],[-76.59906624495811,39.27907001852054],[-76.59905219251354,39.27906914455244],[-76.59903830229914,39.27906704519721],[-76.59902446757513,39.279064765877],[-76.59901068349195,39.27906234440745],[-76.59899694543421,39.27905977716965],[-76.59898323930085,39.27905709834454],[-76.59896950240405,39.2790545311075],[-76.59895569462601,39.27905220142841],[-76.59894184666504,39.27905000942739],[-76.59892797970318,39.27904789842852],[-76.59891408078298,39.2790459053189],[-76.59890022681579,39.27904375112448],[-76.59888646272854,39.2790412792658],[-76.59887274358441,39.27903864812382],[-76.5988590315733,39.27903598547784],[-76.59884529589496,39.27903340922275],[-76.59883154017396,39.27903089324879],[-76.59881780330809,39.27902832239099],[-76.598804125451,39.27902556437428],[-76.59879048300064,39.2790226938815],[-76.59877679095283,39.27901998625594],[-76.59876300914873,39.27901757467338],[-76.59874917777239,39.27901532145425],[-76.59873532864052,39.27901313392857],[-76.59872147355678,39.27901097430461],[-76.59870759474941,39.27900891097963],[-76.59869375150663,39.27900670725545],[-76.59867996163081,39.27900428933022],[-76.59866614319682,39.27900200281722],[-76.59865219633437,39.27900029235256],[-76.59863815792902,39.27899898871856],[-76.59862414813939,39.27899754376079],[-76.59861013838091,39.27899609339685],[-76.59859616672399,39.27899446390952],[-76.59858226049775,39.27899253649133],[-76.59856839477288,39.27899041554574],[-76.59855454092386,39.27898824419632],[-76.5985406680888,39.2789861511468],[-76.59852679168596,39.27898407429724],[-76.59851291052568,39.27898201904804],[-76.59849901271255,39.27898003940444],[-76.5984850839872,39.27897819747037],[-76.59847111836604,39.27897652655364],[-76.59845713966041,39.27897491504087],[-76.59844316809792,39.27897327022264],[-76.59842919176759,39.27897164880626],[-76.59841522018598,39.2789700075877],[-76.59840126527921,39.27896828715723],[-76.59838732723087,39.27896645508807],[-76.59837346498358,39.27896433593285],[-76.59835974577641,39.27896172184502],[-76.59834608571175,39.27895889717921],[-76.5983323536,39.27895631096777],[-76.59831855652729,39.27895393981506],[-76.59830474291387,39.27895162445149],[-76.59829094230489,39.27894926409262],[-76.59827714523499,39.27894689293507],[-76.598263348166,39.27894452177588],[-76.59824954990323,39.27894215691633],[-76.59823574692902,39.27893980555051],[-76.59822196169219,39.27893739209102],[-76.59820822258938,39.27893481394796],[-76.59819447990864,39.27893225380635],[-76.59818066029948,39.27892997533895],[-76.59816670595212,39.27892815850078],[-76.598152648206,39.27892720423883],[-76.59813851286312,39.2789268541221],[-76.59812437670489,39.27892685259647],[-76.59811022818724,39.27892719151552],[-76.59809618290184,39.2789283342673],[-76.59808217719694,39.2789302644203],[-76.59806894317808,39.27893386632743],[-76.59805652594711,39.27893915725778],[-76.59804450540861,39.27894500531555],[-76.59803299523283,39.27895139467614],[-76.59802204512246,39.27895834892962],[-76.59801137041546,39.2789655842621],[-76.59800147017211,39.2789733870231],[-76.59799232433791,39.27898181929675],[-76.59798429233005,39.27899085799282],[-76.5979776418596,39.27900050582937],[-76.59797183633562,39.27901055469508],[-76.59796638369755,39.2790207101577],[-76.59796234053525,39.27903124876518],[-76.59795055713413,39.27903451423472],[-76.59793646571923,39.27903377151117],[-76.5979223653392,39.27903297470946],[-76.59790826393321,39.27903215448264],[-76.59789417063011,39.27903133608343],[-76.59788007964528,39.27903051769046],[-76.59786598867609,39.27902969659352],[-76.59785189771743,39.27902887369343],[-76.59783780793337,39.2790280480934],[-76.59782371700091,39.27902722068615],[-76.59780962723792,39.27902639147978],[-76.59779553747528,39.27902556227166],[-76.59778144772318,39.27902473126034],[-76.59776735796629,39.2790239011481],[-76.59775326820973,39.2790230710342],[-76.59773917845358,39.27902224091856],[-76.59772508869257,39.27902141170197],[-76.59771099776273,39.27902058428127],[-76.59770505027011,39.27902030268967],[-76.59770151623002,39.27902014826481],[-76.59769798217467,39.27901999654205],[-76.59769445047299,39.27901983852195],[-76.59769092231461,39.2790196688039],[-76.59768740005838,39.27901948018997],[-76.59768388489893,39.2790192663788],[-76.5976803815131,39.27901902018039],[-76.59767721223841,39.27901789958403],[-76.59767604007041,39.27901531848411],[-76.59767472184728,39.27901274138772],[-76.59767333280467,39.27901018566708],[-76.59767191125491,39.27900763974346],[-76.59767035947202,39.27900516903792],[-76.5976685832171,39.27900283718183],[-76.59766638992814,39.27900067414152],[-76.59766366773657,39.27899878672471],[-76.5976606098878,39.27899743321174],[-76.59765731093167,39.27899669949898],[-76.59765379310879,39.2789963424564],[-76.59765018738781,39.27899615715845],[-76.59764662239921,39.27899594227475],[-76.5976431014105,39.27899573474775],[-76.59763956949054,39.27899561545807],[-76.59763603856092,39.2789955258969],[-76.59763250750876,39.27899545795348],[-76.59762897522097,39.2789954035172],[-76.59762544292298,39.27899535088225],[-76.59762191184019,39.27899528834306],[-76.59761838083908,39.27899521139177],[-76.59761484867393,39.27899513533715],[-76.59761131649861,39.27899506108391],[-76.59760778550775,39.27899498233082],[-76.59760425456292,39.27899489547089],[-76.59760072369468,39.27899479509968],[-76.59759719524148,39.27899467762207],[-76.59759366808522,39.27899453582823],[-76.59759014345634,39.27899435711165],[-76.59758662133441,39.27899414507525],[-76.5975831004737,39.27899391502786],[-76.5975795807975,39.27899368048055],[-76.59757605874721,39.27899345583338],[-76.59757253655901,39.27899325550629],[-76.59756901068438,39.27899309209777],[-76.59756548229774,39.27899296290955],[-76.5975619514808,39.27899285352973],[-76.59755842179726,39.27899274865747],[-76.59755489216995,39.2789926338769],[-76.59755136383956,39.27899249478003],[-76.59754783672432,39.27899234577886],[-76.5975443096347,39.27899219227385],[-76.5975407825706,39.27899203426495],[-76.59753725551673,39.2789918744545],[-76.59753372962699,39.27899171374712],[-76.59753020257824,39.27899155303573],[-76.59752667668343,39.27899139322893],[-76.59752314961945,39.27899123521951],[-76.597519622535,39.27899108081301],[-76.59751609543524,39.27899092910859],[-76.59751256834575,39.27899077560263],[-76.59750904126646,39.27899062029508],[-76.59750551419235,39.27899046408663],[-76.59750198710798,39.27899030967956],[-76.59749846001344,39.27899015707393],[-76.59749493290866,39.27899000626962],[-76.59749140461939,39.27898985996504],[-76.59748787746354,39.27898971816802],[-76.59748434911813,39.27898958177139],[-76.59748082073182,39.27898945258061],[-76.59747729114567,39.27898933059176],[-76.59747376269294,39.27898921311051],[-76.59747023307099,39.27898909742662],[-76.59746670342867,39.27898898534566],[-76.59746317260696,39.27898887686358],[-76.59745964291356,39.27898877378983],[-76.59745611203562,39.27898867521579],[-76.59745258112196,39.27898858294682],[-76.59744905017247,39.27898849698297],[-76.59744551918217,39.27898841822498],[-76.59744198814583,39.27898834757364],[-76.59743845589944,39.27898828592564],[-76.59743492476093,39.27898823328901],[-76.59743139236122,39.27898819866316],[-76.59742785987463,39.27898817934995],[-76.59742432731653,39.27898817264707],[-76.59742079354834,39.27898817494754],[-76.59741725974429,39.27898818355315],[-76.59741372708909,39.27898819396412],[-76.59741019328,39.27898820347028],[-76.59740665949644,39.27898820847259],[-76.59740312691274,39.27898820627278],[-76.59739959439548,39.27898819236316],[-76.59739606311896,39.27898816404549],[-76.59739253078578,39.27898811770883],[-76.597389000888,39.27898805066279],[-76.59738547111807,39.27898796109807],[-76.59738194259401,39.27898785622447],[-76.59737841298767,39.27898773783559],[-76.59737488576063,39.27898760864561],[-76.59737135743595,39.27898746864265],[-76.59736783032133,39.27898731963603],[-76.59736430324259,39.27898716432408],[-76.59736077619446,39.2789870036076],[-76.59735725033093,39.27898683839123],[-76.59735372331862,39.27898667136927],[-76.5973501963115,39.2789865034465],[-76.59734667045818,39.27898633642828],[-76.59734314343575,39.27898617120752],[-76.59733961639283,39.27898600958962],[-76.59733608931421,39.27898585427688],[-76.59733256104082,39.27898570526524],[-76.5973290327163,39.278985565261],[-76.59732550434069,39.27898543426406],[-76.5973219759293,39.27898530957222],[-76.5973184463283,39.27898519028086],[-76.59731491670175,39.27898507549308],[-76.5973113870547,39.27898496430818],[-76.59730785739751,39.27898485492464],[-76.59730432773009,39.27898474734251],[-76.59730079806269,39.27898463976029],[-76.59729726724652,39.27898453037248],[-76.59729373759959,39.27898441918704],[-76.59729020796799,39.27898430529927],[-76.59728667952605,39.27898418601091],[-76.59728314995073,39.27898406221473],[-76.59727962157528,39.27898393121639],[-76.5972760944202,39.27898378941304],[-76.5972725673162,39.27898363860209],[-76.59726904025311,39.27898348058504],[-76.59726551437973,39.27898331716742],[-76.59726198735254,39.27898315284495],[-76.59725846148936,39.27898298762561],[-76.59725493445197,39.27898282510443],[-76.5972514085377,39.27898266889233],[-76.59724788026975,39.27898251897742],[-76.59724435309946,39.27898237987532],[-76.59724082353964,39.27898225337561],[-76.59723729392358,39.27898213678403],[-76.59723376310764,39.27898202739433],[-76.59723023226107,39.27898192340896],[-76.59722670140935,39.27898182032428],[-76.5972231705628,39.2789817163387],[-76.59721963973668,39.27898160875009],[-76.59721611011045,39.27898149395931],[-76.59721258169947,39.27898136926423],[-76.59720905336006,39.27898123195858],[-76.59720552742557,39.27898107934809],[-76.59720200275743,39.27898090782581],[-76.59719847936587,39.27898071559023],[-76.59719495839457,39.27898050534758],[-76.59719143866405,39.27898028069687],[-76.59718792016416,39.27898004343956],[-76.59718440172561,39.27897979537318],[-76.5971808856613,39.27897953740646],[-76.59717736963796,39.27897927223367],[-76.59717385365552,39.27897899985477],[-76.59717033885762,39.27897872297603],[-76.59716682407516,39.27897844339495],[-76.597163309308,39.27897816111152],[-76.59715979453577,39.27897787972876],[-76.5971562797636,39.27897759834588],[-76.59715276496584,39.27897732146661],[-76.5971492489887,39.27897704818623],[-76.59714573298091,39.27897678031027],[-76.59714221692204,39.27897652144163],[-76.5971386985043,39.27897626977091],[-76.59713518004568,39.27897602530606],[-76.59713166039231,39.27897578714232],[-76.59712814071338,39.27897555348227],[-76.59712462100379,39.27897532522654],[-76.5971211001148,39.27897510056972],[-76.59711757921049,39.27897487861505],[-76.59711405710122,39.278974664763],[-76.59711053380229,39.27897445631139],[-76.59710701047268,39.27897425326409],[-76.59710348712781,39.27897405291892],[-76.59709996261373,39.27897385437121],[-76.59709643925859,39.27897365582734],[-76.59709291475477,39.27897345547793],[-76.59708939143039,39.27897325152939],[-76.59708586929059,39.27897304308093],[-76.59708234719174,39.27897282742649],[-76.59707882745172,39.27897260457385],[-76.59707530776801,39.27897237181293],[-76.59707179046879,39.27897212735017],[-76.59706827440525,39.27897186938007],[-76.59706476196699,39.27897158530013],[-76.59706125684066,39.27897123819175],[-76.59705775892903,39.27897084516905],[-76.59705426348377,39.27897042603254],[-76.59705076922816,39.27897000149544],[-76.59704727372154,39.27896959316768],[-76.59704377337449,39.27896922085377],[-76.59704026806932,39.27896890527086],[-76.59703675306787,39.27896866441798],[-76.59703323193899,39.2789684820936],[-76.59702970709795,39.27896834119155],[-76.59702617743689,39.27896823270028],[-76.59702264646853,39.27896815032662],[-76.59701911308503,39.27896808505903],[-76.59701557848112,39.27896803059637],[-76.5970120427081,39.27896797793112],[-76.59700850812466,39.27896791986525],[-76.59700497593083,39.27896784919674],[-76.59700144382914,39.27896776231471],[-76.59699791044055,39.27896769794727],[-76.59699437346251,39.27896765338421],[-76.59699083645377,39.27896761422551],[-76.59698729949621,39.27896756605924],[-76.59698376613832,39.2789674962869],[-76.5969802376261,39.27896738959974],[-76.5969767151901,39.27896723339133],[-76.59697320007636,39.27896701235299],[-76.59696969586406,39.27896670848165],[-76.59696620254812,39.27896632267808],[-76.59696271767756,39.27896587835373],[-76.59695923533472,39.27896539710667],[-76.59695575656096,39.27896489965803],[-76.59695227543351,39.27896440850651],[-76.59694878950651,39.27896394616286],[-76.59694529750328,39.2789635333403],[-76.59694179593158,39.27896317272906],[-76.59693828837574,39.27896284542545],[-76.59693477837411,39.27896254063243],[-76.59693126481879,39.27896224933857],[-76.5969277512482,39.27896196074684],[-76.59692423771347,39.27896166584981],[-76.59692072771189,39.2789613610564],[-76.59691721654633,39.27896105715964],[-76.5969137053654,39.27896075596496],[-76.59691019417937,39.27896045567099],[-76.59690668182419,39.2789601571744],[-76.59690317063318,39.27895985778096],[-76.59689965947284,39.27895955298289],[-76.59689614948176,39.27895924638724],[-76.59689263830613,39.27895894429125],[-76.59688912591527,39.27895865209933],[-76.5968856111195,39.27895837521207],[-76.59688209507269,39.27895811453416],[-76.59687857784647,39.27895785745517],[-76.59687505943573,39.27895760487581],[-76.59687153982509,39.27895735949831],[-76.59686802015817,39.27895712402897],[-76.59686449925556,39.27895690206668],[-76.596860977107,39.27895669541302],[-76.59685745253303,39.27895650766698],[-76.59685392786183,39.27895633703498],[-76.59685040079592,39.27895617990615],[-76.59684687366355,39.27895603448686],[-76.59684334531076,39.27895589987251],[-76.5968398157427,39.27895577516222],[-76.59683628612349,39.27895565945932],[-76.59683275530442,39.27895555095832],[-76.59682922444435,39.27895544966315],[-76.59682569471769,39.27895535287559],[-76.59682216381164,39.27895525968693],[-76.59681863290552,39.27895516649817],[-76.59681510080465,39.27895507961053],[-76.59681156866289,39.27895499992876],[-76.59680803645963,39.27895493105588],[-76.59680450416938,39.27895487749554],[-76.59680097178189,39.27895484104928],[-76.59679744043565,39.27895482532401],[-76.59679390896139,39.27895483211737],[-76.59679036593847,39.27895483166483],[-76.59678681137194,39.27895482306568],[-76.59678325441071,39.27895482796967],[-76.59677970187033,39.27895487072078],[-76.59677616405351,39.27895497387351],[-76.59677264895014,39.27895515907363],[-76.59676916453476,39.27895545066909],[-76.59676570936671,39.278955898197],[-76.59676226987841,39.27895664573292],[-76.59675892612533,39.27895767823882],[-76.59675576758332,39.27895895458663],[-76.59675287433355,39.27896045523459],[-76.59675021817178,39.27896224854386],[-76.59674774738988,39.27896425597054],[-76.5967454162386,39.27896637016664],[-76.59674321468647,39.27896852083824],[-76.59674142194375,39.27897093053172],[-76.59673972278529,39.27897339189],[-76.59673763818077,39.27897556187899],[-76.59673495110485,39.27897728842527],[-76.59673201704945,39.27897883126851],[-76.59672893065559,39.27898026009239],[-76.59672577385651,39.27898163733093],[-76.59672263091883,39.27898302272388],[-76.59671958493477,39.27898447870916],[-76.59671671900685,39.27898606592331],[-76.59671411507344,39.27898784589966],[-76.59671182853452,39.2789898593627],[-76.59670965847755,39.27899197411124],[-76.59670754951279,39.27899414761913],[-76.59670549936332,39.27899637267245],[-76.59670350688043,39.27899864746573],[-76.59670157211018,39.27900096389226],[-76.59669969275002,39.27900331924185],[-76.59669786884083,39.27900570630857],[-76.59669609692116,39.27900812237818],[-76.59669437818582,39.27901056114951],[-76.59669271150656,39.27901301721403],[-76.59669109458589,39.27901548696084],[-76.59668952630074,39.27901796408074],[-76.59668800667671,39.27902044406996],[-76.59668653458043,39.27902292242088],[-76.59668516661692,39.27902543175524],[-76.59668391893489,39.27902798564011],[-76.59668277997544,39.27903057863106],[-76.59668173355399,39.27903320346653],[-76.59668076578855,39.27903585559494],[-76.59667986397665,39.27903852686586],[-76.59667901192856,39.27904121091834],[-76.59667819576225,39.27904390320089],[-76.59667740277007,39.27904659646378],[-76.59667661676238,39.27904928434608],[-76.59667582502638,39.27905196049872],[-76.59667504604408,39.27905463579445],[-76.59667429021029,39.27905731657421],[-76.59667355637635,39.27906000103255],[-76.59667284221918,39.27906269006229],[-76.59667214774909,39.27906538186192],[-76.59667147064287,39.27906807732422],[-76.5966708109007,39.27907077644917],[-76.59667016737374,39.27907347743133],[-76.59666953658004,39.2790761811595],[-76.59666891968367,39.27907888673691],[-76.59666831437174,39.27908159325489],[-76.59666771948537,39.27908430070936],[-76.59666713386051,39.27908700999723],[-76.59666655635341,39.27908971841218],[-76.596665984636,39.27909242774776],[-76.59666542566214,39.27909513802787],[-76.59666487943167,39.27909784925249],[-76.59666434593447,39.27910056322314],[-76.59666382402179,39.27910327813429],[-76.59666331137061,39.27910599487882],[-76.59666280915003,39.27910871165911],[-76.59666231387303,39.27911143026479],[-76.59666182438565,39.27911414979111],[-76.59666134185207,39.2791168693413],[-76.59666086279024,39.27911958980417],[-76.59666038604121,39.27912231117578],[-76.59665991276904,39.27912503255926],[-76.59665943833784,39.27912775393879],[-76.59665896507067,39.27913047442156],[-76.59665848832149,39.27913319579309],[-76.59665801041838,39.27913591625993],[-76.59665752672555,39.27913863580613],[-76.59665703955577,39.27914135534038],[-76.59665654543731,39.27914407394998],[-76.59665605015975,39.27914679255562],[-76.5966555548822,39.27914951116122],[-76.59665505960974,39.27915222886608],[-76.59665456549108,39.27915494747565],[-76.59665407137243,39.2791576660853],[-76.59665357841264,39.27916038469883],[-76.59665308776565,39.27916310422109],[-76.5966525982827,39.27916582284658],[-76.59665211111255,39.27916854238079],[-76.5966516262603,39.27917126192294],[-76.59665114372595,39.27917398147301],[-76.5966506704582,39.27917670195571],[-76.59665021687235,39.27917942610907],[-76.596649778348,39.27918215121488],[-76.59664934561332,39.27918487724133],[-76.59664891171964,39.2791876032638],[-76.59664846856438,39.27919032745291],[-76.59664800919379,39.27919304978482],[-76.5966475255053,39.27919576843019],[-76.5966470105451,39.27919848336509],[-76.59664646195426,39.27920120178752],[-76.59664616985734,39.27920426518252],[-76.5966460593566,39.27920759672793],[-76.59664582186089,39.27921084136393],[-76.596645146466,39.27921364312198],[-76.59664372340633,39.27921564964041],[-76.59664130512168,39.27921657542783],[-76.59663842932757,39.27921704205615],[-76.59663532063014,39.27921729530429],[-76.5966320136654,39.27921735871112],[-76.59662854073594,39.2792172585097],[-76.59662493532393,39.27921701733406],[-76.59662123090121,39.27921665961976],[-76.59661746093455,39.27921621070313],[-76.59661365890595,39.27921569321821],[-76.59660985711817,39.27921513339808],[-76.59660609021219,39.27921455388087],[-76.59660239049573,39.27921397999887],[-76.59659879144579,39.27921343528688],[-76.59659530921624,39.27921293241117],[-76.59659185029413,39.2792124070963],[-76.59658839850007,39.27921185117984],[-76.59658495266474,39.27921126645929],[-76.59658151276267,39.27921065743845],[-76.59657807762453,39.27921002591471],[-76.59657464724015,39.27920937368967],[-76.59657121926594,39.27920870525908],[-76.59656779484554,39.27920802332912],[-76.59656437280975,39.2792073296973],[-76.5965609531432,39.27920662706591],[-76.59655753350739,39.27920591902992],[-76.59655411504605,39.27920520829559],[-76.59655069774882,39.27920449666438],[-76.59654727811323,39.27920378862813],[-76.59654385845209,39.27920308509545],[-76.59654043642189,39.27920239056223],[-76.59653701201746,39.27920170592913],[-76.59653358404915,39.27920103659665],[-76.59653015251686,39.27920038256485],[-76.59652671627707,39.27919974112744],[-76.596523276499,39.27919911048696],[-76.59651983320303,39.27919848704042],[-76.59651638756361,39.27919786808952],[-76.59651294191401,39.27919725093999],[-76.59650949743367,39.27919663199287],[-76.59650605412772,39.27919601034739],[-76.59650261318075,39.27919538150381],[-76.59649917576201,39.2791947436646],[-76.59649574420985,39.27919409323477],[-76.59649231852946,39.27919342931354],[-76.59648890106951,39.27919274650439],[-76.5964854918351,39.27919204390661],[-76.5964820920006,39.27919131882197],[-76.5964787814773,39.27919037786076],[-76.59647556847028,39.27918920483742],[-76.59647236129921,39.27918802462793],[-76.59646905895556,39.27918707198457],[-76.59646503499393,39.27918685819052],[-76.59646136598933,39.27918659066922],[-76.59645981733155,39.27918500360762],[-76.59645992367068,39.27918240526967],[-76.59646072427593,39.2791793940649],[-76.59646139580015,39.27917645898155],[-76.59646254637505,39.27917386333043],[-76.59646321897375,39.27917236947269],[-76.59646371897546,39.27917126685415],[-76.59646439157412,39.2791697729964],[-76.59646487536043,39.27916866852067],[-76.59646551323097,39.2791671673375],[-76.59646595534053,39.27916605461169],[-76.59646652143179,39.27916453967045],[-76.59646731969131,39.27916214457994],[-76.59646772747629,39.27916074979714],[-76.5964681708552,39.27915921011369],[-76.59646849141127,39.27915807264964],[-76.59646956679214,39.27915382203717],[-76.59647024969142,39.27915112839753],[-76.59647093374959,39.27914843476184],[-76.59647161896665,39.27914574113016],[-76.59647230418366,39.27914304749841],[-76.59647298939551,39.27914035476743],[-76.59647367345859,39.27913766023102],[-76.59647435519858,39.27913496658731],[-76.59647503346669,39.27913227203095],[-76.59647570825791,39.27912957746262],[-76.59647600564462,39.27912843811743],[-76.59647639577206,39.27912688744181],[-76.59647667117933,39.27912574081499],[-76.59647705088628,39.27912418830206],[-76.59647732745253,39.27912304167923],[-76.59647770252359,39.27912148915036],[-76.59647798024878,39.27912034253151],[-76.59647835416079,39.27911878999866],[-76.59647862956292,39.27911764427256],[-76.59647900000314,39.27911609082705],[-76.5964792672976,39.27911494417233],[-76.59647963078915,39.27911338980214],[-76.59647989113996,39.27911224132205],[-76.59648024768279,39.27911068602721],[-76.59648050223878,39.27910953752727],[-76.59648085067393,39.27910798130382],[-76.59648110059916,39.27910683188713],[-76.59648144324973,39.2791052738423],[-76.59648168853903,39.2791041244097],[-76.59648202539469,39.27910256634495],[-76.59648226837632,39.27910141510291],[-76.59648259943715,39.27909985701824],[-76.5964828412598,39.27909870577218],[-76.59648316884878,39.27909714677483],[-76.59648340950734,39.27909599642557],[-76.59648373477832,39.27909443742021],[-76.59648396501639,39.27909328523363],[-76.59648426596961,39.27909172254169],[-76.59648447420263,39.27909056757722],[-76.59648474967899,39.27908900119469],[-76.59648494980436,39.27908784530157],[-76.59648522180382,39.27908627890712],[-76.59648543234964,39.27908512485136],[-76.5964857298207,39.27908356304822],[-76.59648613364918,39.27908184487759],[-76.59648678071495,39.27907974561871],[-76.59648695093404,39.27907793837067],[-76.59648703107734,39.27907709282887],[-76.59648518119948,39.27907670815305],[-76.59648365546363,39.27907638944576],[-76.59648167916114,39.27907602145008],[-76.59648022038414,39.27907574891167],[-76.59647824408677,39.27907538001521],[-76.59647678530976,39.27907510747679],[-76.59647480901761,39.2790747376795],[-76.59647335139958,39.27907446514502],[-76.59647137510741,39.27907409534765],[-76.59646991633565,39.27907382190844],[-76.59646794004351,39.27907345211102],[-76.59646648243067,39.27907317867572],[-76.59646450613862,39.27907280887824],[-76.59646304736685,39.27907253543895],[-76.59646107223884,39.27907216474461],[-76.59645961346716,39.27907189130525],[-76.5964576383392,39.27907152061091],[-76.59645617956754,39.27907124717151],[-76.59645420327554,39.27907087737385],[-76.59645274566793,39.27907060303763],[-76.59645076937602,39.27907023323993],[-76.59644931176332,39.27906995980442],[-76.59644733547651,39.27906958910591],[-76.59644587786389,39.27906931567038],[-76.5964439015771,39.27906894497176],[-76.59644244396452,39.27906867153619],[-76.59644046767778,39.27906830083757],[-76.5964390089062,39.27906802739798],[-76.59643703377338,39.279067657604],[-76.59643557500183,39.27906738416435],[-76.59643359871518,39.27906701346558],[-76.59643214109752,39.27906674093059],[-76.59643016480578,39.27906637113257],[-76.59642870603429,39.2790660976928],[-76.59642673090157,39.27906572789868],[-76.59642527212497,39.27906545535961],[-76.59642329582817,39.27906508646221],[-76.59642183705166,39.27906481392314],[-76.59641986075489,39.27906444502563],[-76.59641840197834,39.2790641724865],[-76.59641642568162,39.27906380358898],[-76.59641496690003,39.27906353195054],[-76.59641299059821,39.27906316395371],[-76.5964115318166,39.27906289231523],[-76.59640955551481,39.27906252431833],[-76.59640809672815,39.27906225358054],[-76.59640611926746,39.27906188557959],[-76.59640466048077,39.27906161484182],[-76.59640268416881,39.27906124864626],[-76.5964012242232,39.27906097790444],[-76.59639924791128,39.27906061170885],[-76.59639778796057,39.27906034186771],[-76.59639581048461,39.27905997656885],[-76.59639435169288,39.27905970673162],[-76.59639237421182,39.27905934233343],[-76.5963909142458,39.27905907519445],[-76.59638893204693,39.27905872519223],[-76.5963874649939,39.27905848144867],[-76.59638547335938,39.27905816023842],[-76.59638400275772,39.27905792909336],[-76.59638200992836,39.27905761418423],[-76.59638054287024,39.27905737134139],[-76.59637856183043,39.27905702134296],[-76.59637518106962,39.2790562044428],[-76.59637233052723,39.27905569652495],[-76.59637075953202,39.27905559204243],[-76.59636867112521,39.27905557585823],[-76.59636673913275,39.27905556831838],[-76.59636470165896,39.27905556311826],[-76.59636320204822,39.2790555417512],[-76.59636117051274,39.27905551135007],[-76.59635967091738,39.27905548728073],[-76.59635763823319,39.27905545507407],[-76.596356138643,39.27905543010394],[-76.59635410596394,39.27905539699645],[-76.5963526063686,39.27905537292703],[-76.59635057368442,39.27905534072022],[-76.59634907408906,39.27905531665076],[-76.59634704141,39.27905528354314],[-76.59634554181466,39.27905525947363],[-76.59634350913561,39.27905522636597],[-76.59634200954025,39.27905520229643],[-76.59633997802021,39.27905516919267],[-76.59633847727105,39.27905514421835],[-76.59633644575607,39.27905511021381],[-76.59633494616585,39.27905508524339],[-76.59633291349706,39.27905505033407],[-76.59633141391197,39.27905502446286],[-76.59632938240732,39.27905498865669],[-76.59632788282734,39.27905496188472],[-76.59632585017394,39.27905492427302],[-76.5963243505991,39.27905489660026],[-76.59632231910982,39.27905485809173],[-76.59632081954011,39.27905482951815],[-76.59631878806104,39.27905478920808],[-76.5963172885016,39.279054758833],[-76.59631525703281,39.27905471672138],[-76.59631375864257,39.2790546845487],[-76.59631172847114,39.27905461812084],[-76.59630991662618,39.27905447497767],[-76.59630811169268,39.27905393191909],[-76.59630769010015,39.27905225324803],[-76.59630801571444,39.27905104193913],[-76.59630845233193,39.27904946890472],[-76.59630875681319,39.2790483052637],[-76.59630916863479,39.27904640516681],[-76.59630917538021,39.27904542335752],[-76.59630918499633,39.279044140703],[-76.59630578980725,39.27904361920173],[-76.59630425093478,39.279043368905],[-76.59630145780872,39.27904295486222],[-76.59629876248752,39.27904266546093],[-76.59629727519454,39.27904251622691],[-76.59629525966915,39.27904232013915],[-76.59629377116592,39.27904217990855],[-76.59629175327645,39.27904199191948],[-76.59629026359383,39.27904185528784],[-76.59628824450949,39.27904167359995],[-76.59628675480121,39.279041541472],[-76.59628473453751,39.27904136338305],[-76.59628324365491,39.2790412339533],[-76.59628122336554,39.27904106036802],[-76.59627973130863,39.27904093363647],[-76.59627771100389,39.27904076275338],[-76.59627621893675,39.27904063782329],[-76.5962741974577,39.27904046963835],[-76.59627270538545,39.279040345609],[-76.59627068389611,39.27904017922552],[-76.59626919181873,39.27904005609683],[-76.59626717032434,39.27903989061405],[-76.59626567824185,39.27903976838607],[-76.59626365674748,39.2790396029032],[-76.59626216466501,39.27903948067519],[-76.59626014315015,39.27903931879523],[-76.59625864984204,39.27903920827289],[-76.5962566259016,39.27903906530061],[-76.59625513136798,39.27903896648392],[-76.59625310502246,39.27903883881628],[-76.59625160928371,39.27903874810229],[-76.59624958291775,39.27903862403758],[-76.59624777561692,39.27903849712279],[-76.59624606678727,39.27903837775256],[-76.59624498694174,39.27903770837626],[-76.5962435790928,39.2790368370021],[-76.59624217384379,39.27903591609488],[-76.59624062897501,39.27903488661601],[-76.59623949753993,39.27903411797831],[-76.5962379724813,39.2790330696515],[-76.59623685850768,39.27903228756232],[-76.59623535323358,39.27903122489128],[-76.59623424623946,39.27903043832223],[-76.59623274794487,39.27902937117132],[-76.59623164327897,39.27902858280876],[-76.59623014731261,39.27902751386426],[-76.59622904381597,39.27902672370415],[-76.5962275490138,39.27902565386288],[-76.59622644668134,39.279024862806],[-76.59622495304848,39.27902379116716],[-76.59622385187504,39.27902300011423],[-76.59622235940118,39.27902192847937],[-76.59622125823293,39.27902113652563],[-76.59621976692841,39.27902006309323],[-76.59621866576022,39.27901927113948],[-76.59621717561474,39.27901819771104],[-76.59621607561067,39.27901740486051],[-76.59621458431144,39.27901633052728],[-76.59621348546644,39.27901553768075],[-76.59621199532617,39.27901446335146],[-76.59621089648634,39.27901366960413],[-76.59620940751032,39.27901259437807],[-76.59620830750646,39.27901180152747],[-76.59620681853563,39.27901072540064],[-76.59620572085487,39.27900993165724],[-76.59620423187897,39.2790088564311],[-76.59620313303932,39.27900806268369],[-76.59620164406353,39.27900698745756],[-76.596200545229,39.27900619280932],[-76.59619905741228,39.27900511758713],[-76.59619795857274,39.27900432383966],[-76.59619646959709,39.27900324861342],[-76.59619537075761,39.27900245486594],[-76.59619388178717,39.27900137873896],[-76.59619278294257,39.27900058589218],[-76.59619129396712,39.27899951066589],[-76.59619019396875,39.27899871691437],[-76.59618870498822,39.27899764258878],[-76.59618760498478,39.27899684973801],[-76.59618611484537,39.2789957754084],[-76.59618352470272,39.27899390822792],[-76.59616312621726,39.27899273736338],[-76.59612755241372,39.27899596228815],[-76.5960911298952,39.27901736439866],[-76.59605868160597,39.27903061023808],[-76.596015794198,39.27904081881988],[-76.59596626562995,39.27907323539127],[-76.59593202686595,39.27910007837085],[-76.59585270732164,39.27915877667669],[-76.59579849325398,39.27920067380683],[-76.59576421026448,39.27922589971385],[-76.59573317915711,39.27924445313639],[-76.59572835562018,39.27924380960309],[-76.59572588848178,39.27924578099023],[-76.5957233775283,39.27924771259291],[-76.59572086772845,39.27924964510027],[-76.59571835793365,39.27925157670678],[-76.59571584813357,39.27925350921402],[-76.59571333833843,39.27925544082047],[-76.59571082853809,39.27925737332761],[-76.59570831758373,39.27925930492995],[-76.59570580778825,39.27926123653624],[-76.59570329683362,39.27926316813848],[-76.59570078588403,39.27926509883989],[-76.59569827378044,39.27926702863653],[-76.59569576051257,39.27926895932988],[-76.59569324725489,39.2792708882217],[-76.59569073283811,39.27927281710943],[-76.59568821843141,39.27927474419565],[-76.59568570170666,39.27927667127381],[-76.5956831838279,39.2792785974472],[-76.59568066480037,39.27928052181504],[-76.5956781446137,39.27928244617886],[-76.59567562212432,39.27928436783235],[-76.59567309616816,39.27928628767236],[-76.59567056790935,39.27928820480211],[-76.5956680373427,39.27929012012231],[-76.59566550446316,39.27929203453375],[-76.5956629715886,39.27929394804438],[-76.59566043640109,39.27929586064626],[-76.59565790121856,39.27929777234729],[-76.5956553660359,39.27929968404829],[-76.5956528308531,39.27930159574922],[-76.59565029566504,39.27930350835085],[-76.59564776278965,39.27930542186112],[-76.59564523106792,39.27930733627609],[-76.59564270049484,39.2793092524965],[-76.59564017223438,39.27931116962559],[-76.59563786560292,39.27931324425045],[-76.59563979550173,39.27931545055927],[-76.59564235886234,39.2793173392777],[-76.59564492221793,39.2793192288968],[-76.59564748557879,39.2793211176151],[-76.59565004894493,39.27932300543259],[-76.59565261346502,39.27932489415476],[-76.5956551768263,39.27932678287285],[-76.5956577413518,39.27932867069418],[-76.59566030587744,39.27933055851543],[-76.59566287040322,39.2793324463366],[-76.59566543608814,39.27933433416175],[-76.59566800061418,39.27933622198282],[-76.59567056630446,39.2793381089071],[-76.59567313198978,39.27933999673207],[-76.59567569768033,39.27934188365622],[-76.59567826337107,39.27934377058032],[-76.59568082906191,39.27934565750436],[-76.59568339591186,39.27934754443232],[-76.59568596160295,39.27934943135623],[-76.59568852845831,39.27935131738337],[-76.59569109530869,39.27935320431115],[-76.59569366216434,39.27935509033816],[-76.59569622901493,39.27935697726585],[-76.59569879587085,39.27935886329273],[-76.5957013627269,39.27936074931954],[-76.5957039295831,39.2793626353463],[-76.59570649759837,39.27936452137701],[-76.59570906445991,39.2793664065029],[-76.59571163247547,39.27936829253348],[-76.59571420049116,39.27937017856403],[-76.59571676851216,39.27937206369376],[-76.59571933536913,39.27937394972017],[-76.59572190339037,39.2793758348498],[-76.5957244714066,39.27937772088007],[-76.5957270394281,39.27937960600959],[-76.59572960860875,39.27938149114302],[-76.59573217663053,39.27938337627241],[-76.59573474465246,39.27938526140172],[-76.5957373126745,39.27938714653099],[-76.59573988185565,39.27938903166418],[-76.59574244987796,39.27939091679336],[-76.59574501790044,39.27939280192243],[-76.59574758708204,39.27939468705549],[-76.59575015510478,39.27939657218444],[-76.59575272428661,39.27939845731737],[-76.59575529231473,39.27940034154548],[-76.59575786149691,39.27940222667828],[-76.59576042952017,39.27940411180705],[-76.59576299870255,39.27940599693972],[-76.5957655667261,39.27940788206838],[-76.59576813591389,39.27940976630019],[-76.5957707039377,39.27941165142869],[-76.59577327312068,39.27941353656117],[-76.5957758411499,39.27941542078882],[-76.59577847650232,39.27941728723284],[-76.59578118036255,39.27941913139348],[-76.59578387959731,39.27942097373658],[-76.59578650339637,39.27942283383532],[-76.59578897631353,39.27942473124685],[-76.59579089406154,39.27942683392343],[-76.59578889298822,39.2794291852364],[-76.59578633374311,39.2794310482161],[-76.59578366468278,39.27943286037505],[-76.59578096207372,39.27943466160938],[-76.59577830216172,39.279436495418],[-76.5957757611979,39.27943840439938],[-76.59577365532439,39.27944063825216],[-76.59577167882973,39.27944294731348],[-76.59576907838922,39.27944471737242],[-76.59576604863246,39.27944616618264],[-76.59576284600467,39.27944744325276],[-76.59575964286455,39.27944860682483],[-76.59575674779855,39.2794479780366],[-76.59575419487635,39.27944608665442],[-76.59575168971853,39.27944415219991],[-76.59574918922752,39.27944221235686],[-76.59574669455206,39.27944026893069],[-76.59574420221007,39.27943832281019],[-76.59574171103233,39.2794363757929],[-76.59573921985475,39.27943442877551],[-76.59573672635419,39.27943248265092],[-76.59573423051532,39.27943054012121],[-76.59573171722526,39.27942860924133],[-76.59572896845242,39.2794269180548],[-76.59572600605462,39.27942834277525],[-76.59572326314709,39.27943009702981],[-76.59572059762884,39.27943189748961],[-76.5957179413258,39.27943370788948],[-76.59571529309946,39.27943552462244],[-76.59571265063713,39.27943734677973],[-76.59571001048226,39.27943917074644],[-76.59570737032217,39.27944099561384],[-76.59570472901326,39.2794428186757],[-76.5957020830888,39.27944463811858],[-76.59569943024117,39.27944645213297],[-76.59569676817296,39.2794482571079],[-76.59569409572521,39.27945005303943],[-76.59569142097986,39.27945184535995],[-76.59568874507545,39.2794536376764],[-76.5956860680119,39.2794554299888],[-76.59568339095335,39.27945722140037],[-76.5956807138998,39.27945901191116],[-76.59567803568716,39.2794608024179],[-76.59567535747952,39.27946259202385],[-76.59567267811278,39.27946438162574],[-76.59566999874585,39.2794661712275],[-76.59566731822503,39.27946795992455],[-76.59566463886296,39.27946974862549],[-76.59566195834694,39.27947153642162],[-76.5956592778257,39.27947332511849],[-76.59565659615558,39.27947511200973],[-76.5956539144802,39.27947689980174],[-76.59565123280981,39.27947868669287],[-76.59564855113415,39.27948047448471],[-76.5956458694635,39.27948226137575],[-76.59564318663882,39.279484047362],[-76.5956405049679,39.27948583425294],[-76.59563782213787,39.27948762113976],[-76.59563514047181,39.27948940712982],[-76.59563245764147,39.27949119401656],[-76.59562977481617,39.27949298000247],[-76.59562709198562,39.2794947668891],[-76.59562440916,39.27949655287487],[-76.59562172749325,39.27949833886463],[-76.5956190446623,39.27950012575106],[-76.59561636183119,39.27950191263743],[-76.59561368016405,39.27950369862695],[-76.59561099733263,39.27950548551321],[-76.59560831566007,39.27950727240336],[-76.59560563398226,39.27950906019421],[-76.59560295230945,39.27951084708426],[-76.59560027063135,39.27951263487498],[-76.59559759011215,39.27951442266964],[-76.59559490959275,39.27951621046422],[-76.59559222906807,39.27951799915947],[-76.5955895485484,39.27951978695394],[-76.59558686917734,39.27952157655386],[-76.59558418981122,39.27952336525291],[-76.59558151043476,39.27952515575342],[-76.59557883222226,39.27952694535712],[-76.59557615516343,39.27952873586549],[-76.59557347694039,39.27953052727054],[-76.59557079987616,39.27953231867955],[-76.59556812397081,39.27953411009245],[-76.595565448055,39.27953590330682],[-76.59556277329807,39.2795376965251],[-76.595560105464,39.27953949517167],[-76.59555744222979,39.27954130013946],[-76.59555478592364,39.27954310963486],[-76.59555213191986,39.27954492184038],[-76.5955494825313,39.27954673766477],[-76.59554683313752,39.2795485543899],[-76.59554418490251,39.27955037111887],[-76.59554153550846,39.27955218784387],[-76.59553888497065,39.27955400186256],[-76.59553623096606,39.27955581406771],[-76.59553357234599,39.27955762265388],[-76.59553090912068,39.27955942581952],[-76.59552823897735,39.27956122265593],[-76.5955255584493,39.2795630113497],[-76.59552286985451,39.2795647919087],[-76.59552017433654,39.27956656703922],[-76.59551747536723,39.27956833765401],[-76.59551477408495,39.27957010735999],[-76.59551207280253,39.27957187706589],[-76.59550937498146,39.27957364948595],[-76.59550668177563,39.2795754255249],[-76.59550399548247,39.27957720879371],[-76.59550131379939,39.27957899658214],[-76.59549863442899,39.27958078527922],[-76.595495957361,39.27958257668649],[-76.59549328144152,39.27958436989913],[-76.59549060898864,39.27958616492523],[-76.5954879376894,39.27958796085602],[-76.59548526753363,39.27958975949291],[-76.59548259969056,39.27959155903849],[-76.59547993415499,39.27959336039353],[-76.59547726861929,39.27959516174848],[-76.59547460423221,39.27959696490883],[-76.59547193985007,39.27959876716839],[-76.59546927546265,39.27960057032862],[-76.59546661222898,39.27960237439353],[-76.59546394899516,39.27960417845839],[-76.59546128692018,39.27960598252717],[-76.59545862484507,39.27960778659592],[-76.59545596276467,39.27960959156533],[-76.59545330068416,39.27961139653464],[-76.59545063860348,39.27961320150395],[-76.59544797651756,39.27961500737392],[-76.59544531559563,39.27961681234707],[-76.59544265466839,39.27961861822092],[-76.59543999258719,39.27962042318998],[-76.59543733165972,39.27962222906369],[-76.59543467073208,39.27962403493734],[-76.59543200980943,39.27962583991021],[-76.59542934772254,39.27962764577973],[-76.59542668679968,39.27962945075247],[-76.59542402471253,39.27963125662189],[-76.59542136378934,39.27963306159451],[-76.59541870170705,39.27963486656307],[-76.59541609198918,39.2796366347806],[-76.59541115522313,39.27964039647934],[-76.59540859348327,39.27964228736582],[-76.59540602944075,39.27964417554202],[-76.59540346308526,39.27964606280946],[-76.59540089904242,39.27964795098558],[-76.59539833614818,39.27964984096711],[-76.5953957755615,39.27965173275804],[-76.59539321613366,39.27965362455296],[-76.59539065785435,39.27965551815326],[-76.59538809957492,39.2796574117535],[-76.59538554244916,39.27965930625847],[-76.59538298417459,39.27966119895785],[-76.59538042473578,39.27966309255395],[-76.59537786530706,39.27966498434847],[-76.59537530357061,39.27966687433348],[-76.59537273952112,39.27966876340971],[-76.59537017201004,39.27967064977167],[-76.5953676033552,39.27967253342736],[-76.59536503007462,39.27967441526548],[-76.5953624533427,39.27967629258785],[-76.59535987314906,39.27967816719599],[-76.59535728141176,39.27968003365738],[-76.59535466891549,39.27968188203194],[-76.59535204026537,39.2796837177401],[-76.59534940238949,39.27968554530954],[-76.59534675989816,39.27968736925996],[-76.59534412087332,39.27968919502383],[-76.59534148876621,39.2796910271168],[-76.59533887166405,39.27969287007055],[-76.5953362741719,39.27969472930556],[-76.5953337043769,39.2796966093535],[-76.5953312614887,39.27969859162486],[-76.59532893169207,39.27970065985835],[-76.59532658343896,39.27970271271525],[-76.59532398855737,39.2797035045541],[-76.59532159282384,39.27970148669655],[-76.59531904226834,39.27969958720632],[-76.59531649637452,39.27969768322829],[-76.59531396212203,39.27969577028266],[-76.59531142903379,39.27969385644025],[-76.59530890176627,39.27969193811398],[-76.5953063838066,39.27969001351443],[-76.59530390660659,39.2796880548262],[-76.59530146306179,39.27968669796398],[-76.59529623403286,39.27969293034622],[-76.5952923068041,39.27969749449562],[-76.59528838766198,39.27970206317656],[-76.59528450434487,39.27970664999606],[-76.59528066378101,39.2797112594818],[-76.59527683362172,39.27971587350711],[-76.59527297803635,39.279720474834],[-76.59526909009161,39.27972505983552],[-76.59526518596695,39.27972963667429],[-76.59526127491358,39.2797342089852],[-76.59525736038792,39.27973878038326],[-76.59525342505157,39.27974334270182],[-76.59525198578096,39.27974818204896],[-76.59525431477482,39.27975336586201],[-76.59525665421528,39.27975854700866],[-76.59525899481501,39.27976372815931],[-76.59526133309205,39.27976891020262],[-76.59526366556936,39.27977409312673],[-76.59526598527765,39.27977927960974],[-76.59526828989392,39.27978447054456],[-76.59527058290533,39.27978966414163],[-76.59527287475292,39.27979485863539],[-76.59527517472915,39.27980005045483],[-76.59527749095712,39.27980523782636],[-76.59527982227777,39.27981042074607],[-76.59528216055787,39.27981560278892],[-76.59528450232546,39.27982078304218],[-76.5952868487345,39.27982596241063],[-76.59528919630284,39.27983114178301],[-76.59529154619459,39.2798363202626],[-76.59529389608673,39.27984149874213],[-76.5952962448202,39.27984667721761],[-76.59529859238991,39.27985185658978],[-76.5953009399651,39.27985703506115],[-76.59530328985856,39.27986221354045],[-76.59530563627034,39.27986739290846],[-76.59530798035935,39.27987257316916],[-76.59531031516654,39.27987775519938],[-76.59530977814786,39.27987924771595],[-76.59530861345081,39.27988248104734],[-76.59530413747963,39.27988673074134],[-76.59529977123081,39.2798910474697],[-76.59529540150963,39.27989536328514],[-76.59529096250087,39.27989963472428],[-76.5952846726756,39.27989982293027],[-76.59527767090343,39.27989905117111],[-76.59527067500336,39.2798982659203],[-76.59526368141115,39.27989748247861],[-76.5952566889832,39.27989669813973],[-76.59524969656569,39.27989591199892],[-76.59524270415346,39.27989512495695],[-76.59523571174654,39.27989433701384],[-76.59522872050391,39.27989354817352],[-76.59522172810757,39.27989275842808],[-76.59521473687036,39.27989196868624],[-76.59520774447947,39.27989117803922],[-76.59520075441699,39.27989038559826],[-76.59519376321107,39.27988959045066],[-76.59518677201051,39.2798887944019],[-76.5951797819742,39.27988799745599],[-76.59517279076874,39.27988720230714],[-76.59516580072761,39.27988640626111],[-76.595158810702,39.27988560751248],[-76.59515182067146,39.27988480966414],[-76.59514482948212,39.27988401181142],[-76.59513783943127,39.2798832175652],[-76.59513084703697,39.27988242781436],[-76.59512385221693,39.27988165697077],[-76.59511684786303,39.27988093203283],[-76.59511073804789,39.27988166581194],[-76.59510618013709,39.27988585216249],[-76.59510163949228,39.27989005928999],[-76.59509712425192,39.27989428271859],[-76.59509263672372,39.27989852425783],[-76.59508816305657,39.27990277395153],[-76.59508369516314,39.27990702726803],[-76.59507922957174,39.27991128329462],[-76.59507476745159,39.27991554023368],[-76.59507030648481,39.27991979807739],[-76.59506584667125,39.27992405682561],[-76.59506138570339,39.27992831466892],[-76.59505692242215,39.27993257160333],[-76.59505245567365,39.27993682672412],[-76.59504798662731,39.27994107823373],[-76.59504351063676,39.27994532791766],[-76.59503901964067,39.27994956674056],[-76.59503450093126,39.27995378745247],[-76.59502997182651,39.27995800182303],[-76.59502545195707,39.27996222253058],[-76.59502095633827,39.27996645863455],[-76.59501647804201,39.27997070560724],[-76.59501201014007,39.27997495892095],[-76.59500754800675,39.27997921675814],[-76.59500309049854,39.27998347641268],[-76.59499863298463,39.27998773696777],[-76.59499418471125,39.27999200295911],[-76.59498974105782,39.27999627166853],[-76.59498529855252,39.28000054218325],[-76.59498085259031,39.28000480908283],[-76.59497639738659,39.28000907054581],[-76.59497193062849,39.2800133256634],[-76.59496746156732,39.28001757807058],[-76.59496299018767,39.28002183046961],[-76.59496032507793,39.28002436413492],[-76.59495851881775,39.28002608106699],[-76.59495404512933,39.28003033165621],[-76.59494957144551,39.28003458134444],[-76.59494509660733,39.28003883012777],[-76.59494061945064,39.280043078903],[-76.5949361434575,39.28004732678121],[-76.59493166515105,39.28005157375057],[-76.59492718683892,39.28005582162049],[-76.59492270853653,39.28006006768872],[-76.59491822906949,39.28006431465355],[-76.59491374960702,39.28006856071744],[-76.59490927014406,39.28007280678118],[-76.59490478836771,39.28007705193598],[-76.59490029966264,39.28008129256286],[-76.5948958074955,39.28008553047539],[-76.59489131302018,39.28008976657825],[-76.59488681853918,39.28009400358165],[-76.59488232752425,39.28009824239837],[-76.59487784574469,39.28010248755211],[-76.59487336165688,39.28010673089619],[-76.59486885215838,39.28011095883948],[-76.59486429647485,39.28011515599733],[-76.59485978698555,39.28011938213876],[-76.59485551193103,39.2801237559131],[-76.59485090431281,39.28012791415845],[-76.59484610649054,39.28012742651007],[-76.59484102283636,39.28012361405816],[-76.59483593336726,39.28011980518904],[-76.59483084389871,39.28011599631969],[-76.59482575326659,39.28011218834691],[-76.59482066262981,39.28010838127459],[-76.59481557199878,39.2801045733013],[-76.59481048020415,39.28010076622456],[-76.59480538841009,39.2800969591476],[-76.59480029777038,39.28009315297513],[-76.59479520597736,39.28008934589769],[-76.59479011418495,39.28008553882003],[-76.59478502239304,39.28008173174217],[-76.59477993059653,39.28007792556483],[-76.59477483880576,39.2800741184865],[-76.59476975167199,39.28007030782094],[-76.59476467036458,39.28006649177072],[-76.5947595937142,39.28006267213323],[-76.59475452055163,39.28005885070604],[-76.59474944623064,39.28005502927465],[-76.5947443719102,39.28005120784303],[-76.59473929409791,39.28004738910143],[-76.59473421162451,39.28004357484735],[-76.59472912332585,39.28003976597751],[-76.59472402571987,39.28003596338066],[-76.59471891762701,39.28003217065584],[-76.59471379789339,39.28002838689819],[-76.59470866418047,39.28002461570284],[-76.59470351067797,39.28002085975192],[-76.59469832340081,39.28001713250864],[-76.59469310701077,39.28001342948534],[-76.59468786732837,39.28000974619817],[-76.59468261018463,39.28000607636196],[-76.59467734255398,39.28000241639775],[-76.59467206910318,39.27999876091705],[-76.59466679797609,39.27999510454334],[-76.59466153151122,39.27999144368164],[-76.59465625572349,39.27998779179519],[-76.59465096828994,39.2799841497767],[-76.59464567387219,39.27998051313844],[-76.5946403747881,39.2799768818884],[-76.59463507454564,39.27997325063416],[-76.59462977663193,39.27996961758615],[-76.59462448221632,39.2799659809469],[-76.59461919011923,39.27996234431543],[-76.59461389570468,39.27995870767572],[-76.59460860244971,39.27995507103974],[-76.59460330803627,39.27995143439956],[-76.59459801477718,39.27994779866386],[-76.59459272036482,39.27994416202318],[-76.59458742594789,39.27994052628299],[-76.59458213153147,39.27993689054257],[-76.59457683712074,39.27993325390117],[-76.5945715427054,39.27992961816026],[-76.59456624945472,39.27992598152233],[-76.59456095504045,39.27992234578093],[-76.59455566063194,39.27991870913858],[-76.59455036737774,39.27991507340069],[-76.59454507297025,39.27991143675784],[-76.59453977855817,39.27990780101546],[-76.59453448415178,39.27990416437213],[-76.59452919089981,39.27990052863327],[-76.59452389649448,39.27989689198941],[-76.59451860208972,39.27989325534533],[-76.59451330884451,39.27988961870502],[-76.59450801443569,39.2798859829612],[-76.59450272002739,39.27988234721714],[-76.59449742561966,39.27987871147283],[-76.59449410997671,39.27987643460578],[-76.59449213121246,39.27987507572828],[-76.5944868368058,39.27987143998349],[-76.59448154240484,39.27986780333774],[-76.59447625032753,39.27986416579893],[-76.59447095825593,39.27986052735919],[-76.59446566851308,39.27985688712572],[-76.59446038226318,39.27985324420174],[-76.59445509951136,39.27984959768658],[-76.59444982025248,39.2798459484809],[-76.59444454215831,39.27984229837828],[-76.59443926406462,39.27983864827541],[-76.59443398829974,39.27983499637879],[-76.59442871603297,39.27983134089098],[-76.59442344143844,39.27982768719639],[-76.59441816101869,39.27982403888601],[-76.5944128724454,39.2798203977534],[-76.59440757920591,39.27981676200897],[-76.59440228247965,39.27981312805377],[-76.59439698459502,39.27980949409436],[-76.59439168902884,39.27980586014268],[-76.59438639463254,39.27980222439334],[-76.59438110024188,39.27979858774293],[-76.59437580584662,39.27979495199305],[-76.59437051029295,39.27979131623892],[-76.59436521356534,39.2797876831828],[-76.5943599133511,39.27978405191593],[-76.59435460963985,39.27978042423975],[-76.59434923952742,39.27977685578444],[-76.59434420230598,39.27977425589867],[-76.59433939622714,39.27977825760692],[-76.59433455192725,39.27978225467913],[-76.59432971108829,39.27978625446536],[-76.59432486908977,39.27979025424739],[-76.59432002594718,39.27979425132302],[-76.59431517702465,39.27979824567615],[-76.59431032348621,39.27980223641008],[-76.59430547226006,39.27980622805256],[-76.59430061987439,39.27981021969084],[-76.59429576864198,39.27981421223369],[-76.59429091625523,39.27981820387156],[-76.59428606271921,39.2798221937037],[-76.59428120687501,39.27982618172617],[-76.59427634640467,39.27983016793091],[-76.5942714836364,39.27983415052446],[-76.59426661508819,39.2798381303956],[-76.59426174077539,39.27984210484198],[-76.59425674756623,39.27984599510647],[-76.59425528757019,39.27984998765209],[-76.59426038648341,39.279847880364],[-76.594266213338,39.27984920299577],[-76.59426991172394,39.27985386281041],[-76.59427342861404,39.27985864360107],[-76.59427717217025,39.27986330897606],[-76.59428132498068,39.27986774967285],[-76.59428557075734,39.27987214745397],[-76.59428909683864,39.27987572665722],[-76.59428987695084,39.27987651932144],[-76.59429422962258,39.27988087063174],[-76.5942986125107,39.279885207634],[-76.59430301051246,39.27988953658143],[-76.59430741084822,39.27989386283448],[-76.59431179725094,39.27989819354302],[-76.59431615462303,39.27990253405954],[-76.59432046901556,39.27990689154194],[-76.59432472533592,39.27991127044198],[-76.59432890731725,39.2799156779095],[-76.59433300333882,39.279920119309],[-76.59433699481572,39.27992460178245],[-76.59434086780412,39.27992913158698],[-76.59434394431082,39.27993410992323],[-76.59434583013277,39.27993956155197],[-76.59434675958957,39.27994504590839],[-76.59434569252842,39.27995024953753],[-76.59434251078461,39.27995536569541],[-76.59434447719714,39.27995787120481],[-76.59434644606152,39.27996015063094],[-76.59434841609014,39.27996242916031],[-76.59435038727784,39.27996470769369],[-76.5943523584657,39.279966986227],[-76.59435432733058,39.27996926565299],[-76.59435629503142,39.27997154597571],[-76.59435825925034,39.27997382718713],[-76.59436022345903,39.27997611019999],[-76.59436218651403,39.27997839230812],[-76.59436414840505,39.27998067531291],[-76.59436611029103,39.27998295921842],[-76.59436807102334,39.27998524221918],[-76.59437003291468,39.27998752522386],[-76.59437199480621,39.27998980822854],[-76.59437395785682,39.27999209123716],[-76.59437592090761,39.27999437424577],[-76.59437788512774,39.27999665545686],[-76.59437985050701,39.27999893667192],[-76.59438181820434,39.28000121789493],[-76.59438378590696,39.28000349821718],[-76.5943857536149,39.28000577763863],[-76.59438772248188,39.28000805706402],[-76.594389692508,39.28001033649345],[-76.59439166253425,39.28001261592278],[-76.59439363140682,39.28001489444737],[-76.59439560143332,39.28001717387669],[-76.59439757145995,39.28001945330592],[-76.59439954032774,39.28002173273113],[-76.59440150803664,39.28002401215232],[-76.59440347574052,39.2800262924742],[-76.59440544344457,39.28002857279606],[-76.59440740882557,39.28003085401063],[-76.59440937304262,39.28003313612189],[-76.59441133493667,39.28003541912588],[-76.59441329566667,39.28003770302659],[-76.59441525290961,39.28003998871672],[-76.59441720899365,39.28004227440282],[-76.59441916507271,39.28004456098965],[-76.59442111999289,39.28004684757241],[-76.59442307607215,39.28004913415917],[-76.59442503215669,39.28005141984516],[-76.5944269905645,39.28005370463835],[-76.59442895129041,39.2800559894395],[-76.59443091086258,39.28005827333589],[-76.59443287159391,39.28006055723625],[-76.59443483348947,39.28006284023983],[-76.59443679538511,39.28006512324334],[-76.59443875728091,39.28006740624686],[-76.59444072033583,39.2800696892543],[-76.59444268339091,39.28007197226176],[-76.59444464761019,39.28007425437239],[-76.5944466118348,39.28007653558227],[-76.59444857721329,39.28007881769685],[-76.59445054259712,39.28008109891068],[-76.59445250798106,39.28008338012445],[-76.59445447336513,39.28008566133819],[-76.5944564387493,39.28008794255192],[-76.59445840413362,39.28009022376556],[-76.59446036951807,39.28009250497919],[-76.59446233490266,39.28009478619281],[-76.59446430144634,39.28009706741037],[-76.59446626683112,39.28009934862391],[-76.59446823337505,39.28010162984141],[-76.59447019876015,39.28010391105489],[-76.59447216414536,39.28010619226831],[-76.59447413068968,39.28010847348571],[-76.59447609723925,39.28011075380235],[-76.59447806262484,39.28011303501566],[-76.59448002916953,39.28011531623295],[-76.59448199455538,39.28011759744622],[-76.59448396110548,39.2801198777627],[-76.59448592765054,39.28012215897991],[-76.59448789303673,39.28012444019306],[-76.5944898595821,39.28012672141018],[-76.5944918261327,39.28012900172651],[-76.59449379151924,39.28013128293955],[-76.59449575806494,39.28013356415657],[-76.59449772461592,39.28013584447282],[-76.59449969000289,39.28013812568576],[-76.59450165654897,39.28014040690268],[-76.59450362309518,39.28014268811958],[-76.59450558848771,39.28014496843169],[-76.59450755503416,39.28014724964849],[-76.59450952158075,39.28014953086527],[-76.59451148696849,39.28015181207802],[-76.59451345352048,39.28015409239395],[-76.59451541890847,39.28015637360662],[-76.59451738545556,39.28015865482326],[-76.59451935084381,39.28016093603586],[-76.59452131739116,39.28016321725244],[-76.59452328278475,39.28016549756425],[-76.59452524933235,39.28016777878075],[-76.5945272147211,39.28017005999322],[-76.59452918010999,39.28017234120566],[-76.59453114665796,39.28017462242203],[-76.5945331120471,39.2801769036344],[-76.59453507743629,39.28017918484674],[-76.59453704282569,39.28018146605903],[-76.59453900821005,39.28018374817202],[-76.59454097359969,39.28018602938424],[-76.59454293898941,39.28018831059645],[-76.59454490437929,39.28019059180861],[-76.59454686976416,39.28019287392146],[-76.59454883515431,39.28019515513355],[-76.59455079938556,39.28019743634159],[-76.59455276477081,39.28019971845441],[-76.59455472899717,39.28020200056311],[-76.59455669322885,39.28020428177106],[-76.59455865745545,39.28020656387971],[-76.59456062051807,39.2802088468851],[-76.59456258474498,39.28021112899368],[-76.59456454781299,39.28021341109823],[-76.59456651088114,39.28021569320278],[-76.59456847394426,39.28021797620799],[-76.59457043701271,39.28022025831244],[-76.59457240007609,39.28022254131761],[-76.59457436313959,39.28022482432276],[-76.59457632620835,39.2802271064271],[-76.59457828927211,39.28022938943217],[-76.59458025117702,39.28023167243319],[-76.59458221424617,39.28023395453742],[-76.59458417731031,39.2802362375424],[-76.59458614037456,39.28023852054734],[-76.59458810344414,39.28024080265148],[-76.59459006650866,39.28024308565632],[-76.59459202957845,39.28024536776041],[-76.59459399264321,39.28024765076518],[-76.59459595571325,39.28024993286922],[-76.59459791878341,39.28025221497317],[-76.59459988300756,39.28025449798189],[-76.59460184607799,39.28025678008579],[-76.5946038103075,39.28025906219364],[-76.59460577454234,39.28026134340073],[-76.59460773993112,39.28026362551253],[-76.59460970416102,39.28026590762033],[-76.59461166955521,39.28026818883131],[-76.59461363494952,39.28027047004226],[-76.59461560034391,39.28027275125316],[-76.59461756806162,39.28027503157129],[-76.5946195357794,39.2802773118894],[-76.59462150466148,39.28027959131071],[-76.59462347470266,39.28028187073603],[-76.5946254447491,39.28028414926053],[-76.59462741711877,39.28028642689226],[-76.59462938948862,39.28028870452393],[-76.59463136418167,39.28029098126284],[-76.59463333887486,39.28029325800172],[-76.59463531706058,39.28029553205033],[-76.59463733011896,39.280297788204],[-76.59463938943402,39.28030006253249],[-76.59463790317946,39.28030195891505],[-76.59463523413423,39.28030375753629],[-76.59463258700157,39.2803055751491],[-76.594629950243,39.28030740270604],[-76.59462732963297,39.28030924383014],[-76.5946247182484,39.28031109309286],[-76.594622111479,39.28031294597453],[-76.59461950586334,39.28031479976084],[-76.59461690140135,39.28031665445187],[-76.5946142946264,39.2803185082341],[-76.59461168440014,39.28032035750056],[-76.59460906840449,39.28032220224321],[-76.59460644317799,39.28032403974779],[-76.59460380641806,39.28032586730419],[-76.59460116159148,39.28032768672574],[-76.59459851099552,39.28032950162357],[-76.59459585808658,39.28033131561256],[-76.59459320980319,39.28033313141895],[-76.59459056611959,39.28033495354655],[-76.59458792821017,39.28033677929707],[-76.59458529029553,39.28033860594827],[-76.59458265468834,39.28034043440887],[-76.59458002370161,39.28034226558768],[-76.59457739847359,39.28034410309164],[-76.59457478132236,39.28034594692875],[-76.59457217916577,39.28034780342828],[-76.59456959776786,39.28034967801465],[-76.5945670244467,39.28035155893419],[-76.59456444881769,39.28035343804419],[-76.59456186626555,39.28035531172566],[-76.59455927333899,39.28035717546282],[-76.59455665964319,39.28035902291452],[-76.59455404594723,39.28036087036617],[-76.59455143225111,39.28036271781775],[-76.59454881856004,39.28036456436849],[-76.59454620371496,39.28036641001448],[-76.59454358655695,39.28036825475164],[-76.59454096825007,39.28037009768327],[-76.59453834763541,39.28037193880535],[-76.59453572355909,39.28037377721307],[-76.59453309718012,39.28037561291053],[-76.59453046503174,39.28037744408423],[-76.59452779021177,39.28037923817922],[-76.59452509578668,39.280381015092],[-76.59452243251,39.28038281733359],[-76.594519953827,39.2803847679376],[-76.59451772334926,39.28038263173372],[-76.59451573237483,39.28038036484514],[-76.59451374838017,39.2803780934768],[-76.59451177136022,39.28037581852946],[-76.59450979899172,39.28037354089589],[-76.59450782895165,39.28037126146873],[-76.59450586007584,39.28036898114479],[-76.59450389119505,39.28036670172161],[-76.59450191883221,39.28036442318712],[-76.59449994414126,39.28036214644612],[-76.5944979624759,39.28035987328398],[-76.59449597732342,39.28035760191135],[-76.59449399217105,39.28035533053865],[-76.59449200701371,39.28035306006667],[-76.59449002069742,39.28035078959068],[-76.59448803438133,39.28034851911465],[-76.59448604806019,39.28034624953933],[-76.59448406058537,39.28034397905918],[-76.59448207310548,39.28034170947981],[-76.5944800844668,39.28033943989639],[-76.59447809698716,39.28033717031688],[-76.59447610834353,39.28033490163412],[-76.59447411970521,39.28033263205059],[-76.59447213106183,39.28033036336774],[-76.59447014126476,39.28032809378013],[-76.59446815262163,39.28032582509721],[-76.59446616281966,39.28032355641031],[-76.59446417417678,39.28032128772733],[-76.59446218437508,39.2803190190403],[-76.59446019457349,39.28031675035325],[-76.59445820477202,39.28031448166617],[-76.59445621612966,39.28031221298308],[-76.59445422632845,39.28030994429592],[-76.59445223652737,39.28030767560873],[-76.5944502455623,39.28030540781828],[-76.59444825460251,39.28030313912699],[-76.59444626363249,39.2803008722372],[-76.59444427150883,39.2802986044426],[-76.59444227938523,39.28029633664799],[-76.59444028725663,39.28029406975406],[-76.5944382951282,39.28029180286012],[-76.594436303005,39.2802895350654],[-76.5944343097178,39.2802872681674],[-76.59443231758971,39.28028500127331],[-76.59443032546692,39.28028273347851],[-76.59442833450321,39.28028046568762],[-76.59442634238069,39.28027819789273],[-76.59442435257624,39.28027593010579],[-76.5944223616129,39.28027366231483],[-76.59442037181385,39.28027139362707],[-76.5944183831739,39.28026912494327],[-76.59441639453929,39.28026685535871],[-76.59441440706372,39.28026458577812],[-76.59441242075245,39.28026231530075],[-76.59441043560543,39.28026004392659],[-76.59440845161755,39.28025777255639],[-76.59440646879388,39.28025550028942],[-76.59440448597037,39.2802532280224],[-76.59440250431112,39.28025095485864],[-76.59440052265199,39.28024868169485],[-76.59439854215202,39.28024640853496],[-76.59439656165212,39.2802441353751],[-76.59439458115234,39.28024186221519],[-76.59439260065275,39.28023958905523],[-76.59439061899425,39.28023731589122],[-76.5943886373359,39.2802350427272],[-76.59438665567765,39.28023276956316],[-76.59438467285543,39.2802304972958],[-76.59438268886915,39.28022822592514],[-76.59438070488305,39.28022595455445],[-76.59437871857389,39.2802236840765],[-76.59437673226491,39.2802214135985],[-76.59437474362777,39.28021914491394],[-76.5943727526728,39.28021687622133],[-76.59437075938452,39.28021461022293],[-76.59436876377843,39.28021234421648],[-76.59436676700315,39.28021008000751],[-76.59436476790999,39.2802078157905],[-76.594362769976,39.28020555157742],[-76.59436076971899,39.28020328825706],[-76.59435877062113,39.28020102494066],[-76.59435677152339,39.28019876162424],[-76.59435477243089,39.28019649740706],[-76.59435277565649,39.28019423319784],[-76.5943507800464,39.28019196809181],[-76.59434878560566,39.28018970118827],[-76.59434679348308,39.28018743429271],[-76.5943448025247,39.28018516650036],[-76.59434281273063,39.28018289781125],[-76.59434082293667,39.28018062912207],[-76.59433883314284,39.28017836043288],[-76.59433684451332,39.28017609084691],[-76.59433485704284,39.2801738212649],[-76.59433286957254,39.28017155168289],[-76.59433088210231,39.28016928210081],[-76.5943288946374,39.28016701161793],[-76.59432690832645,39.28016474203979],[-76.59432492085661,39.28016247245761],[-76.59432293339208,39.28016020197467],[-76.59432094708151,39.28015793239643],[-76.5943189596172,39.28015566191335],[-76.59431697214792,39.28015339233104],[-76.59431498351972,39.28015112274468],[-76.59431299605065,39.2801488531623],[-76.59431100742277,39.28014658357588],[-76.59430901995394,39.2801443139934],[-76.59430703248529,39.28014204441091],[-76.59430504385774,39.28013977482434],[-76.59430305638935,39.28013750524179],[-76.59430106892103,39.28013523565917],[-76.59429908145289,39.28013296607654],[-76.59429709282585,39.28013069648988],[-76.5942951053579,39.28012842690717],[-76.59429311789015,39.28012615732443],[-76.59429113042252,39.28012388774166],[-76.59428914179598,39.28012161815484],[-76.59428715432855,39.28011934857199],[-76.59428516686131,39.28011707898911],[-76.59428317823517,39.28011480940216],[-76.59428119076816,39.2801125398192],[-76.59427920214227,39.28011027023222],[-76.59427721467554,39.2801080006492],[-76.59427522604474,39.28010573196287],[-76.59427323741923,39.28010346237578],[-76.59427124646561,39.28010119458214],[-76.59426925551207,39.28009892678845],[-76.59426726339458,39.28009665989148],[-76.59426527012336,39.28009439208973],[-76.59426327800608,39.28009212519267],[-76.59426128705309,39.28008985739886],[-76.59425929726436,39.28008758870826],[-76.59425730980398,39.28008531822412],[-76.59425532582075,39.28008304775196],[-76.594253343012,39.28008077458156],[-76.59425137182419,39.28007849604666],[-76.59424946109934,39.28007618349159],[-76.59424754454884,39.28007387632095],[-76.59424546764667,39.28007164065742],[-76.59424241305169,39.28007032940292],[-76.59423911333947,39.28006931995818],[-76.59423583699245,39.28006827816655],[-76.59423258867749,39.28006719863964],[-76.59422934269607,39.28006611641837],[-76.59422609673014,39.28006503149476],[-76.59422285192335,39.28006394657508],[-76.59421960478323,39.28006286434955],[-76.59421634943243,39.28006179921006],[-76.59421310495048,39.28006065754314],[-76.59421020201111,39.28006180859855],[-76.59420725182083,39.28006331799457],[-76.59420428321037,39.28006480570856],[-76.59420131804578,39.28006629883892],[-76.59419836554743,39.2800678064252],[-76.59419541419769,39.28006931581691],[-76.59419246400675,39.28007082521257],[-76.59418951265675,39.28007233460409],[-76.59418656246044,39.28007384490036],[-76.59418361226399,39.28007535519651],[-76.59418066322644,39.2800768654966],[-76.59417771302461,39.28007837669334],[-76.59417476398158,39.280079887894],[-76.5941718137795,39.28008139909064],[-76.59416886474143,39.28008290939043],[-76.59416591569806,39.28008442059088],[-76.59416296665461,39.28008593179125],[-76.59416001645201,39.28008744298759],[-76.59415706740825,39.28008895418781],[-76.59415411721054,39.28009046448319],[-76.59415116700757,39.2800919756793],[-76.59414479128364,39.28009522252054],[-76.59413888053355,39.28009822956342],[-76.59413296747007,39.28010123569729],[-76.59412705555999,39.28010424273555],[-76.5941211448032,39.28010725067829],[-76.59411523634843,39.280110261331],[-76.5941093313495,39.28011327559837],[-76.59410342979611,39.28011629528196],[-76.59409753515489,39.28011932219523],[-76.59409165317437,39.28012236446492],[-76.59408578040852,39.28012541667459],[-76.59407990993954,39.28012847249494],[-76.59407403832139,39.2801315265095],[-76.5940681597952,39.28013457239299],[-76.59406227436099,39.28013761014548],[-76.59405638546991,39.28014064428268],[-76.59405049542968,39.28014367661405],[-76.59404460423512,39.2801467080404],[-76.59403871189136,39.28014973766096],[-76.59403282070095,39.28015276818592],[-76.59402692950488,39.28015579961138],[-76.59402103946213,39.28015883194129],[-76.59401514825986,39.28016186426686],[-76.59400925706228,39.28016489569143],[-76.59400336471548,39.28016792531017],[-76.59399747121438,39.28017095402384],[-76.59399157656411,39.28017398093179],[-76.59398568191334,39.28017700783938],[-76.59397978610818,39.28018003384194],[-76.59397389030769,39.28018305894343],[-76.59396799335293,39.28018608313991],[-76.59396209524377,39.28018910643132],[-76.59395619713928,39.28019212882166],[-76.59395029672663,39.28019514940225],[-76.59394439285718,39.28019816636748],[-76.59393848899234,39.2802011824317],[-76.59393258397833,39.28020419669014],[-76.59392668011253,39.28020721275375],[-76.59392077738968,39.28021023152331],[-76.59391487928168,39.28021325391158],[-76.5939089834705,39.28021627991058],[-76.5939030899665,39.28021930771872],[-76.59389719645169,39.28022233732808],[-76.59389130524406,39.28022536874666],[-76.59388541634871,39.28022840107371],[-76.59387952743744,39.28023143610268],[-76.59387364083838,39.28023447204013],[-76.59386775538239,39.28023751068352],[-76.59386187684372,39.28024055565589],[-76.59385600059676,39.28024360513967],[-76.59385012550311,39.28024665552792],[-76.59384425041409,39.28024970501516],[-76.59383837070924,39.28025275088307],[-76.59383248641439,39.28025578862792],[-76.59382658368865,39.28025880649199],[-76.59382063951742,39.28026177557118],[-76.59381462515805,39.28026465523174],[-76.59381325940998,39.28026837516607],[-76.59381690073465,39.28027308073602],[-76.59382048395577,39.28027781312783],[-76.59382406601318,39.28028254641625],[-76.5938276469121,39.28028727970055],[-76.59383122664738,39.28029201388149],[-76.59383480638313,39.28029674806228],[-76.59383838380141,39.28030148223498],[-76.59384196005084,39.28030621820503],[-76.59384553514175,39.28031095417096],[-76.593849109069,39.28031569103349],[-76.59385268067361,39.28032042878867],[-76.59385624995554,39.28032516743644],[-76.5938598157507,39.28032990787359],[-76.59386337341277,39.28033465188554],[-76.59386692642907,39.28033939768284],[-76.59387047711753,39.2803441452735],[-76.59387402780652,39.28034889286403],[-76.59387758082424,39.28035363866103],[-76.5938811384887,39.28035838267236],[-76.59388470196406,39.28036312400144],[-76.59388828054283,39.28036785907727],[-76.59389187539431,39.28037258610237],[-76.59389547605666,39.28037731044518],[-76.59389907207323,39.28038203657326],[-76.59390265297702,39.2803867707559],[-76.59390622458878,39.28039150850935],[-76.59390979271889,39.28039624715141],[-76.59391335852122,39.28040098758678],[-76.59391692315984,39.28040572891882],[-76.59392048663992,39.28041047024674],[-76.59392405127949,39.28041521157854],[-76.59392761708374,39.2804199520135],[-76.59393118405258,39.28042469155159],[-76.59393475450914,39.28042942930011],[-76.59393832728415,39.28043416705655],[-76.59394190006479,39.28043890391206],[-76.59394547400495,39.2804436407715],[-76.59394904910972,39.28044837673411],[-76.59395262421492,39.28045311269657],[-76.59395620047961,39.28045784866292],[-76.59395977674484,39.28046258462918],[-76.59396335301048,39.28046732059529],[-76.59396692812274,39.28047205565655],[-76.59397050438935,39.28047679162245],[-76.59397407949746,39.28048152758424],[-76.59397765460089,39.28048626444665],[-76.59398122855092,39.2804910004042],[-76.59398480249632,39.28049573726233],[-76.59398837527803,39.28050047501716],[-76.59399194574226,39.28050521276381],[-76.59399551620177,39.28050995141112],[-76.59399908434381,39.2805146900503],[-76.59400265131703,39.2805194304868],[-76.59400621597273,39.28052417091523],[-76.59400976551562,39.28052891939814],[-76.59401330112021,39.28053367323741],[-76.59401683091484,39.28053842975872],[-76.59402036070993,39.28054318627992],[-76.59402389631073,39.28054794101954],[-76.59402744353807,39.28055268949386],[-76.59403101865378,39.28055742545384],[-76.59403465303316,39.28056213459558],[-76.59403829555173,39.28056683926148],[-76.59403683518839,39.28057089125278],[-76.59403151434952,39.28057450293957],[-76.59402623847886,39.28057815531587],[-76.59402095568463,39.28058180226346],[-76.59401567174633,39.28058544650455],[-76.59401038664846,39.28058909074139],[-76.59400510155005,39.28059273497799],[-76.59399981529728,39.28059637830962],[-76.5939945278953,39.2806000198355],[-76.59398923817993,39.28060366045238],[-76.59398394615637,39.28060729925949],[-76.59397864952719,39.28061093264586],[-76.59397334827696,39.28061456331376],[-76.59396804472887,39.2806181903704],[-76.5939627319495,39.28062181018878],[-76.59395741455424,39.28062542638793],[-76.59395213521957,39.28062907514585],[-76.59394683281282,39.28063270490775],[-76.5939410441668,39.28063583396557],[-76.59393507119498,39.280638767821],[-76.59392908096669,39.28064167909737],[-76.59392308613283,39.28064458495292],[-76.59391708899599,39.2806474880979],[-76.59391109071001,39.28065038943707],[-76.59390509242353,39.28065329077596],[-76.59389909413656,39.28065619211451],[-76.59389309583874,39.28065909525431],[-76.59388709985332,39.28066199930249],[-76.59388110616989,39.28066490606061],[-76.59387511478332,39.28066781642946],[-76.59386912684749,39.28067073131372],[-76.5938631458187,39.28067365432847],[-76.59385716939443,39.28067658276336],[-76.59385119526706,39.28067951480899],[-76.59384522344688,39.28068244866378],[-76.59383924932366,39.28068537980804],[-76.59383327173845,39.28068830823769],[-76.59382728955802,39.28069122944508],[-76.59382130161826,39.28069414432689],[-76.59381531023192,39.28069705379194],[-76.59380931538362,39.28069996054238],[-76.59380332053993,39.28070286639177],[-76.59379732684963,39.28070577314558],[-76.5937913354562,39.28070868351013],[-76.59378534751345,39.28071159839009],[-76.5937793653291,39.28071451959501],[-76.59377338659029,39.28071744621612],[-76.59376741131764,39.28072037465046],[-76.59376143487518,39.28072330488196],[-76.59375545959641,39.28072623421641],[-76.59374948086079,39.28072915993552],[-76.5937434986683,39.28073208203937],[-76.59373751302414,39.28073499962714],[-76.59373152738465,39.2807379163138],[-76.59372553943696,39.28074083119071],[-76.59371955149399,39.28074374516657],[-76.59371356239666,39.28074665823733],[-76.59370757329884,39.28074957130782],[-76.59370158420052,39.28075248437796],[-76.59369559625044,39.28075539925333],[-76.5936896082998,39.28075831412838],[-76.59368362035389,39.28076122810238],[-76.59367763240742,39.28076414207606],[-76.59367164330148,39.28076705604546],[-76.59366565420022,39.28076996911375],[-76.59365966625235,39.28077288308653],[-76.59365367830391,39.28077579705895],[-76.59364769034988,39.28077871193188],[-76.5936417023953,39.28078162680446],[-76.59363571558896,39.28078454348221],[-76.59362972994109,39.28078746016372],[-76.59362374544139,39.28079037865039],[-76.59361776093611,39.2807932980375],[-76.59361178104044,39.28079622194407],[-76.59360580344165,39.28079914946134],[-76.59359982815006,39.28080207878781],[-76.59359385284766,39.28080500991544],[-76.59358787870373,39.28080794104682],[-76.5935819022568,39.2808108694676],[-76.59357592350688,39.28081379517786],[-76.59356994015145,39.28081671546726],[-76.59356395219049,39.28081963033586],[-76.59355796077789,39.28082254068836],[-76.59355196706227,39.28082544833033],[-76.59354597104361,39.28082835326174],[-76.59353997387582,39.28083125638731],[-76.59353397671785,39.28083415771107],[-76.59352797724142,39.28083705902655],[-76.59352197892343,39.28083996034566],[-76.59351598060502,39.28084286166452],[-76.59350998343477,39.28084576478857],[-76.59350398741269,39.2808486697178],[-76.5934979936978,39.28085157645622],[-76.59349200112597,39.28085448590058],[-76.59348601316375,39.28085739986442],[-76.59348002749844,39.28086031743898],[-76.5934740452838,39.28086323952893],[-76.59346806537637,39.28086616342818],[-76.59346208661705,39.28086908913254],[-76.59345610785213,39.28087201573737],[-76.59345012909188,39.28087494144115],[-76.59344414918247,39.28087786533912],[-76.59343816696487,39.28088078742726],[-76.59343218244943,39.28088370590407],[-76.59342619678483,39.2808866225751],[-76.5934202088069,39.28088953833705],[-76.59341422083884,39.28089245229721],[-76.59340823402411,39.2808953671618],[-76.5934022471985,39.2808982838276],[-76.59339626152629,39.28090120139782],[-76.59339027931509,39.28090412168203],[-76.59338429709307,39.28090704376739],[-76.59337831487055,39.28090996585246],[-76.59337233379625,39.28091288974277],[-76.59336635388556,39.28091581273596],[-76.59336037165639,39.28091873572086],[-76.5933543905909,39.2809216578087],[-76.59334840721726,39.28092457808673],[-76.59334242268926,39.28092749745972],[-76.59333643701729,39.28093041412611],[-76.59333044904233,39.28093332808195],[-76.59332445991302,39.28093624113276],[-76.59331846962939,39.28093915327847],[-76.59331248050427,39.28094206542789],[-76.59330649137348,39.28094497847772],[-76.59330050454473,39.28094789423755],[-76.59329452116145,39.28095081541355],[-76.59328853893155,39.28095373749399],[-76.59328255325514,39.28095665415765],[-76.59327655951689,39.28095956178546],[-76.59327055081962,39.2809624504451],[-76.59326452716338,39.28096532013661],[-76.59325849889639,39.28096818530801],[-76.59325247754164,39.28097105770917],[-76.59324647460129,39.28097395269289],[-76.59324049927497,39.28097688290166],[-76.5932345538755,39.28097984924432],[-76.59322862343923,39.28098283365376],[-76.59322268954101,39.28098581534858],[-76.59321673033537,39.2809887636273],[-76.59321072737657,39.28099166131138],[-76.59320427620912,39.28099389448108],[-76.59319780665228,39.2809961005638],[-76.59319133364387,39.28099830213046],[-76.59318486064539,39.28100050189522],[-76.59317838648229,39.28100270255638],[-76.59317434289578,39.2810040757271],[-76.59317191233436,39.28100490051493],[-76.59316543703216,39.28100709756838],[-76.59315896862161,39.28100930545447],[-76.59315504771079,39.28100788037767],[-76.59315400211733,39.28100245055759],[-76.59315300639705,39.28099701460493],[-76.59315201531813,39.28099157776755],[-76.59315102656248,39.28098614003741],[-76.5931500354838,39.2809807032],[-76.5931490386052,39.28097526724325],[-76.59314803940867,39.28096983127844],[-76.59314703904818,39.28096439621033],[-76.593146037534,39.28095896023745],[-76.59314503601482,39.28095352516531],[-76.59314403450095,39.28094808919239],[-76.59314303298207,39.28094265412021],[-76.59314203146852,39.28093721814725],[-76.59314103111409,39.28093178217833],[-76.59314002843664,39.28092634710207],[-76.59313902576456,39.28092091112506],[-76.59313802424644,39.28091547605278],[-76.59313702156945,39.28091004097652],[-76.59313602121584,39.28090460500745],[-76.59313502086235,39.28089916903839],[-76.593134022827,39.28089373307736],[-76.59313302826877,39.28088829712837],[-76.59313203951085,39.28088286029868],[-76.59313106351242,39.28087742171162],[-76.59313009099107,39.2808719831366],[-76.5931291138339,39.2808665445455],[-76.59312812507663,39.28086110771573],[-76.59312713400148,39.28085567087791],[-76.59312614060849,39.28085023403207],[-76.59312514489254,39.2808447980789],[-76.59312414569968,39.28083936211368],[-76.59312314070687,39.2808339270291],[-76.59312213107307,39.28082849282918],[-76.5931210785359,39.28082306208371],[-76.59311994597657,39.28081764006865],[-76.59311910679304,39.28081219294769],[-76.59311864101274,39.28080671108962],[-76.59311809637948,39.28080123616451],[-76.59311753435104,39.28079576298065],[-76.5931169700047,39.28079028978875],[-76.59311640450466,39.28078481569209],[-76.59311583784049,39.28077934249215],[-76.59311527001742,39.28077386928819],[-76.59311470335345,39.28076839608821],[-76.59311413668961,39.28076292288823],[-76.59311357002578,39.28075744968822],[-76.59311300452626,39.2807519755915],[-76.59311244133961,39.28074650240355],[-76.59311187931202,39.28074102921956],[-76.59311132076674,39.2807355551469],[-76.59311076338045,39.28073008107823],[-76.59311020831232,39.28072460701754],[-76.59310965440321,39.2807191329609],[-76.59310909933524,39.28071365890023],[-76.59310854426731,39.2807081848395],[-76.59310798688151,39.28070271077078],[-76.59310742833161,39.28069723759876],[-76.59310686515097,39.28069176350994],[-76.59310629964733,39.28068629031382],[-76.59310572603077,39.28068081708957],[-76.59310514893218,39.28067534475401],[-76.59310456719768,39.28066987240241],[-76.59310398430431,39.28066440004674],[-76.59310340141106,39.28065892769106],[-76.59310281967683,39.28065345533944],[-76.59310224258387,39.28064798210306],[-76.59310167012174,39.2806425097835],[-76.59310110461887,39.28063703658726],[-76.59310054955216,39.28063156252643],[-76.5931000002857,39.28062608758487],[-76.59309944754231,39.28062061263129],[-76.59309890522998,39.2806151377138],[-76.59309839538498,39.28060966020652],[-76.593097937705,39.28060418107838],[-76.59309755074428,39.28059869859214],[-76.59309722754364,39.28059321362454],[-76.59309692288691,39.28058772872114],[-76.59309663330747,39.28058224206838],[-76.593096357636,39.28057675546385],[-76.59309609123646,39.28057126889144],[-76.59309583527303,39.28056578145439],[-76.59309558510979,39.28056029313663],[-76.59309533957742,39.28055480573569],[-76.59309509636822,39.28054931744202],[-76.59309485431801,39.28054382915236],[-76.59309460994989,39.28053834085468],[-76.59309436325866,39.28053285344969],[-76.59309410961349,39.28052736602059],[-76.59309384785544,39.28052187856339],[-76.59309357682552,39.28051639107406],[-76.59309329651853,39.28051090445334],[-76.59309300809866,39.28050541780451],[-76.59309271619675,39.28049993204436],[-76.59309242314102,39.28049444537944],[-76.59309213123913,39.28048895961931],[-76.59309184513745,39.28048347297845],[-76.59309156598974,39.28047798636169],[-76.59309129611916,39.28047249887629],[-76.59309104479244,39.28046701145515],[-76.59309080969679,39.28046152318944],[-76.59309058387306,39.2804560349558],[-76.59309036152634,39.28045054673426],[-76.59309013454377,39.28044505849661],[-76.59308989596612,39.28043957111957],[-76.59308964000363,39.28043408368228],[-76.59308935737933,39.28042859705342],[-76.59308905620607,39.28042311126099],[-76.59308874576095,39.28041762543648],[-76.59308843763384,39.28041213961998],[-76.59308813414273,39.28040665381953],[-76.59308782369777,39.28040116799496],[-76.59308781422776,39.28040100042013],[-76.59308751441182,39.28039568217442],[-76.59308721207981,39.28039019637793],[-76.59308692134296,39.2803847097209],[-76.593086641037,39.28037922309994],[-76.59308637000821,39.28037373561037],[-76.59308611172828,39.28036824816493],[-76.59308587662817,39.2803627607998],[-76.59308570296994,39.28035727094522],[-76.59308550612683,39.28035178191105],[-76.59308521886207,39.28034629616668],[-76.59308489218655,39.28034081118658],[-76.59308454928528,39.28033532615023],[-76.59308420870207,39.2803298411219],[-76.59308390057569,39.28032435530527],[-76.59308308570168,39.2803193190156],[-76.59307593898707,39.2803197680586],[-76.59306888160053,39.28032000032661],[-76.59306182193208,39.28032022628101],[-76.59305476229461,39.28032044683045],[-76.59304770152396,39.28032066287174],[-76.59304064076875,39.28032087621037],[-76.59303358117764,39.28032108865185],[-76.59302652043269,39.28032130018816],[-76.59301945969287,39.28032151082326],[-76.59301240012746,39.28032171875973],[-76.59300533942888,39.28032192218803],[-76.59299827874061,39.28032212381446],[-76.59299121807295,39.28032232183743],[-76.59298415742077,39.28032251715776],[-76.59297709678921,39.28032270887468],[-76.59297003510717,39.28032288167147],[-76.59296297231774,39.2803230454564],[-76.59295591060462,39.28032322365683],[-76.59294886876613,39.28032357397156],[-76.59294977969989,39.2803403493456],[-76.59295037506512,39.28035132180805],[-76.59295097043574,39.28036229336967],[-76.59295156580134,39.28037326583202],[-76.5929521611671,39.28038423829429],[-76.59295275653312,39.28039521075655],[-76.59295335189928,39.28040618321874],[-76.59295394727077,39.28041715478018],[-76.59295454263729,39.28042812724235],[-76.59295513800403,39.28043909970445],[-76.59295573337091,39.2804500721665],[-76.59295632873798,39.28046104462852],[-76.59295692411045,39.28047201618976],[-76.59295751947788,39.28048298865175],[-76.5929581148455,39.28049396111365],[-76.59295871021331,39.28050493357551],[-76.59295930558652,39.2805159051366],[-76.5929599009547,39.28052687759836],[-76.59296049632304,39.28053785006012],[-76.59296109169165,39.28054882252185],[-76.59296168706037,39.28055979498354],[-76.59296228243443,39.28057076654444],[-76.59296287780353,39.28058173900602],[-76.59296347317286,39.28059271146758],[-76.59296406854232,39.28060368392909],[-76.59296466391196,39.2806146563906],[-76.59296525928701,39.28062562795131],[-76.59296585465702,39.28063660041271],[-76.59296645002722,39.28064757287407],[-76.5929670453976,39.28065854533541],[-76.5929676407734,39.28066951689595],[-76.59296823614415,39.28068048935718],[-76.59296883151508,39.28069146181844],[-76.59296942688624,39.2807024342796],[-76.59297002225755,39.28071340674074],[-76.59297061763419,39.28072437830109],[-76.59297121300587,39.28073535076213],[-76.59297180837777,39.2807463232232],[-76.59297240374981,39.28075729568417],[-76.59297299912204,39.28076826814508],[-76.59297359449961,39.28077923970525],[-76.59297418987225,39.28079021216611],[-76.59297478524502,39.28080118462692],[-76.59297538061799,39.28081215708775],[-76.59297597599635,39.28082312864777],[-76.59297657136968,39.28083410110847],[-76.5929771667432,39.28084507356913],[-76.59297776211689,39.28085604602975],[-76.59297835749082,39.2808670184904],[-76.59297895287006,39.28087799005018],[-76.5929795482443,39.28088896251072],[-76.59298014361879,39.28089993497119],[-76.59298073899339,39.28091090743163],[-76.59298133436819,39.28092187989202],[-76.59298192974835,39.28093285145165],[-76.59298252512357,39.28094382391201],[-76.59298312049893,39.28095479637228],[-76.59298371587447,39.28096576883252],[-76.59298431125025,39.28097674129271],[-76.59298490663132,39.28098771285214],[-76.59298550200739,39.28099868531226],[-76.59298609738367,39.28100965777239],[-76.59298669276019,39.28102063023244],[-76.592987288142,39.28103160179172],[-76.59298788351882,39.2810425742517],[-76.59298847889589,39.28105354671163],[-76.59298907427309,39.28106451917157],[-76.59298966965046,39.28107549163142],[-76.59299026503319,39.2810864631905],[-76.59299086041099,39.28109743565028],[-76.59299145578892,39.28110840811003],[-76.59299205116704,39.28111938056972],[-76.5929926465454,39.28113035302942],[-76.59299324192905,39.2811413245883],[-76.59299383730772,39.2811522970479],[-76.59299443268655,39.28116326950743],[-76.59299502806566,39.28117424196694],[-76.59299562345004,39.28118521352567],[-76.59299621882944,39.28119618598511],[-76.59299681420909,39.28120715844452],[-76.59299740958886,39.28121813090389],[-76.59299800496881,39.2812291033632],[-76.59299860035412,39.28124007492175],[-76.59299919573451,39.28125104738098],[-76.59299979111502,39.28126201984018],[-76.5930003864957,39.28127299229938],[-76.59300098187664,39.2812839647585],[-76.59300157726287,39.28129493631685],[-76.59300217264411,39.28130590877591],[-76.59300276802554,39.28131688123491],[-76.59300336340721,39.28132785369392],[-76.59300395879418,39.28133882525207],[-76.59300455417615,39.28134979771099],[-76.59300514955838,39.28136077016985],[-76.59300574494073,39.28137174262867],[-76.59300634032327,39.28138271508744],[-76.59300693571114,39.28139368664542],[-76.5930075310941,39.28140465910418],[-76.5930081264772,39.28141563156282],[-76.59300872301951,39.28142660402546],[-76.59300931840814,39.28143757558332],[-76.59300991379178,39.28144854804186],[-76.5930105091756,39.28145952050036],[-76.59301110455966,39.28147049295885],[-76.59301169994386,39.28148146541729],[-76.59301229533339,39.28149243697494],[-76.59301289071801,39.28150340943329],[-76.59301348610276,39.2815143818916],[-76.59301408148769,39.2815253543499],[-76.59301467571382,39.28153632680412],[-76.59301526994528,39.28154729835757],[-76.5930158618538,39.28155827080369],[-76.59301645492143,39.28156924325378],[-76.5930170468303,39.2815802156998],[-76.59301763989829,39.28159118814985],[-76.59301823296651,39.28160216059982],[-76.59301882719393,39.28161313305378],[-76.59301942142153,39.28162410550767],[-76.59302001796733,39.28163507796963],[-76.59302061567745,39.28164604953471],[-76.59302121454166,39.28165702200462],[-76.59302181572917,39.28166799358173],[-76.59302242038879,39.2816789660716],[-76.59302246604628,39.28168959523534],[-76.59300834023168,39.28168991650575],[-76.59299421856214,39.28169032336126],[-76.59298009693377,39.28169072300916],[-76.59296597540343,39.28169110554115],[-76.59295185267771,39.28169149437268],[-76.59293773110056,39.28169188500801],[-76.59292360952325,39.28169227564167],[-76.59290948794579,39.28169266627359],[-76.59289536521435,39.28169305599906],[-76.59288124363657,39.28169344662759],[-76.59286712206375,39.28169383635367],[-76.59285300048566,39.28169422697885],[-76.59283887774842,39.28169461759828],[-76.59282475617003,39.28169500822],[-76.59281063458631,39.28169539974082],[-76.59279651300238,39.28169579125989],[-76.592782390249,39.2816961845748],[-76.59276826865447,39.28169657789199],[-76.59275414705461,39.28169697210821],[-76.59274002544426,39.28169736812423],[-76.59272590382851,39.28169776503933],[-76.5927117822075,39.28169816285342],[-76.59269766173503,39.2816985624714],[-76.59268354009295,39.28169896388511],[-76.59266941844561,39.28169936619787],[-76.59265529678777,39.28169977031042],[-76.59264117628356,39.28170017532606],[-76.59262705461504,39.28170058123668],[-76.59261293409502,39.28170098895114],[-76.592598812421,39.28170139575915],[-76.59258469189548,39.28170180437096],[-76.59257057021078,39.28170221297704],[-76.59255644968493,39.28170262158547],[-76.59254232799992,39.28170303018815],[-76.59252820742718,39.2817034468999],[-76.5925140879409,39.28170387622438],[-76.59249996730574,39.28170430374166],[-76.5924858467894,39.28170471054007],[-76.5924717231219,39.2817050605778],[-76.59245759837277,39.28170539709865],[-76.59244347675909,39.28170579307903],[-76.59242935724076,39.28170622779781],[-76.59241523773258,39.28170666071338],[-76.59240111716355,39.28170707650909],[-76.59238699553369,39.28170747518492],[-76.59237287189102,39.28170782070702],[-76.59235875135772,39.28170823019243],[-76.59235377360807,39.28170091673551],[-76.59235321657627,39.28168994350646],[-76.59235265259061,39.2816789702532],[-76.59235209092307,39.28166799700799],[-76.59235152577875,39.28165702375064],[-76.59235095947555,39.28164605048925],[-76.59235039201354,39.28163507722378],[-76.59234982571071,39.28162410396233],[-76.59234925940804,39.28161313070078],[-76.59234869194655,39.28160215743523],[-76.59234812564424,39.28159118417363],[-76.59234755818309,39.28158021090795],[-76.59234699188113,39.2815692376463],[-76.59234642441517,39.28155826528133],[-76.5923458581136,39.28154729201957],[-76.59234529065317,39.28153631875379],[-76.5923447243519,39.28152534549196],[-76.59234415689183,39.28151437222608],[-76.5923435905909,39.28150339896418],[-76.59234302313118,39.28149242569824],[-76.59234245683061,39.28148145243625],[-76.59234188937123,39.28147047917019],[-76.59234132307101,39.28145950590816],[-76.59234075560681,39.2814485335428],[-76.59234018930695,39.28143756028066],[-76.59233962184825,39.28142658701449],[-76.59233905554875,39.28141561375227],[-76.59233848924947,39.28140464049004],[-76.59233792179127,39.28139366722371],[-76.59233735549232,39.28138269396142],[-76.59233678803452,39.28137172069502],[-76.59233622173588,39.2813607474326],[-76.59233565543742,39.28134977417019],[-76.59233508913914,39.2813388009077],[-76.59233452283584,39.28132782854595],[-76.59233395537892,39.28131685527939],[-76.59233338908122,39.28130588201679],[-76.59233282278363,39.2812949087542],[-76.59233225764521,39.28128393549552],[-76.592331697143,39.28127296225292],[-76.59233113664615,39.28126198810957],[-76.59233057382627,39.28125101485885],[-76.59233000404738,39.28124004248472],[-76.59232943427384,39.28122906920978],[-76.59232886334148,39.2812180959308],[-76.59232829125031,39.28120712264775],[-76.59232771915414,39.28119615026542],[-76.59232714706333,39.28118517698231],[-76.59232657497263,39.28117420369914],[-76.592326002877,39.2811632313167],[-76.59232542962768,39.28115225802942],[-76.59232485753756,39.28114128474616],[-76.59232428428342,39.28113031235954],[-76.59232371103469,39.28111933907219],[-76.59232313894512,39.28110836578877],[-76.5923225656915,39.28109739340207],[-76.59232199360228,39.28108642011863],[-76.59232141803625,39.28107544682303],[-76.59232083898814,39.28106447441613],[-76.59232025994545,39.28105350110838],[-76.59231968437476,39.28104252871344],[-76.59231911460439,39.28103155543785],[-76.59231855526521,39.28102058219839],[-76.59231801679337,39.28100960813056],[-76.59231749107585,39.2809986332062],[-76.59231696187626,39.28098765917047],[-76.59231641296874,39.2809766859671],[-76.59231582813248,39.28096571263892],[-76.59231522358306,39.28095474104389],[-76.59231463062896,39.28094376858824],[-76.5923140620192,39.28093279531633],[-76.59231349920458,39.28092182206444],[-76.59231295378022,39.28091084797215],[-76.59231243849003,39.28089987398437],[-76.59231202173537,39.28088889673552],[-76.592311666418,39.28087791789839],[-76.5923111604053,39.28086694304197],[-76.59231060222767,39.28085596980595],[-76.59231004289637,39.28084499566513],[-76.59230948124204,39.28083402241703],[-76.59230891842891,39.28082304916479],[-76.59230835445697,39.28081207590856],[-76.59230778932618,39.2808011026482],[-76.59230722303664,39.28079012938385],[-76.59230665558306,39.2807791570161],[-76.5923060869758,39.28076818374362],[-76.59230551720979,39.28075721046703],[-76.59230494744391,39.28074623719045],[-76.59230437651922,39.28073526390975],[-76.59230380443056,39.28072429152579],[-76.59230323234721,39.28071331824099],[-76.59230265910509,39.2807023449522],[-76.59230208585792,39.28069137256408],[-76.59230151261617,39.28068039927513],[-76.59230093937454,39.28066942598622],[-76.59230036496892,39.28065845359392],[-76.59229979172764,39.28064748030493],[-76.5922992184866,39.28063650701584],[-76.59229864408152,39.2806255346235],[-76.59229807084078,39.28061456133437],[-76.59229749875924,39.2806035880492],[-76.59229692551374,39.28059261566074],[-76.59229635459153,39.2805816423795],[-76.59229578251046,39.28057066909427],[-76.59229521158861,39.28055969581296],[-76.59229464182079,39.28054872343643],[-76.59229385966826,39.28052690963364],[-76.59229170020865,39.28048721539768],[-76.59228930781224,39.28043622297628],[-76.59228702353752,39.28038678654803],[-76.59228620074134,39.28036720559593],[-76.59228600720157,39.28036276596125],[-76.59174943974743,39.28039033110981],[-76.59175412536992,39.28049330196929],[-76.59175944679484,39.28059011741569],[-76.59176512366692,39.28068961836961],[-76.59177278738397,39.28082875351296],[-76.59177656094033,39.28090593773534],[-76.59178107527883,39.28099135300421],[-76.59178626986103,39.28109370858973],[-76.59178984604532,39.28116471198207],[-76.59179257364821,39.28122668227109],[-76.59179682982619,39.28131386483238],[-76.59180117614295,39.28139605927726],[-76.59180269502168,39.28142678418755],[-76.5918050832679,39.28147219816355],[-76.59180653840231,39.28151098107994],[-76.59180809854499,39.28153997396476],[-76.59180939748641,39.28157024862851],[-76.59181169644673,39.28161224659783],[-76.59181418188845,39.2816641373966],[-76.59181695916962,39.28172473238295],[-76.5917757267954,39.28172569883297],[-76.59167209408149,39.28172873180088],[-76.59163551325948,39.28172983777606],[-76.59159040439791,39.2817309212948],[-76.59150576665375,39.28173342205206],[-76.59144955335636,39.28173526407422],[-76.59141457335929,39.2817363341134],[-76.59138565555959,39.28173672173474],[-76.5913371860341,39.28173791236624],[-76.59130196210741,39.28173907430191],[-76.5912699127709,39.28173963295301],[-76.59123870661379,39.28174049628526],[-76.59120815827919,39.28174124660088],[-76.59118368052187,39.28174187211316],[-76.59115458084891,39.28174244370108],[-76.59115371105885,39.28172000716476],[-76.59115038308254,39.28165370480929],[-76.59114702867937,39.28158676011618],[-76.59114459522215,39.28154121896193],[-76.59114240424786,39.2814910099947],[-76.59113965757186,39.28144290417636],[-76.59113715664721,39.28138775344173],[-76.59113406527572,39.28132766266616],[-76.59113226271201,39.28129171142945],[-76.59113004126918,39.28124860216922],[-76.59112829544983,39.28121507328193],[-76.59112635367057,39.28117371607814],[-76.59112411892848,39.28113191017464],[-76.59111882029438,39.2811286192568],[-76.59107850028794,39.28112900314075],[-76.59106892676999,39.28112920130796],[-76.59105363395005,39.28112951737939],[-76.59101831761828,39.28113007269365],[-76.59101478896123,39.28108513843449],[-76.59101149398023,39.28104329820991],[-76.59100799639121,39.28100041509588],[-76.59100617890053,39.28097450461195],[-76.5909865651288,39.28095434118387],[-76.59097277339757,39.28094016198121],[-76.59095662558903,39.28092413791541],[-76.59095762793783,39.28092377119221],[-76.59095075899754,39.28090919814004],[-76.59093572655252,39.28088004302214],[-76.59091104998012,39.28083178244849],[-76.59090996004846,39.28082965014835],[-76.59090333845876,39.28082424322313],[-76.59085405061715,39.28078635838443],[-76.59079480040377,39.28074035086253],[-76.5907567196649,39.28071122801826],[-76.590755059318,39.28071254365351],[-76.59070017338964,39.28066143314947],[-76.59064784130388,39.28061285545851],[-76.59057964786928,39.28055007146187],[-76.59091403850427,39.2803134889924],[-76.59096044216092,39.28028065832655],[-76.5909144548442,39.28024128342651],[-76.59080566277846,39.28014813122383],[-76.59047121296953,39.28038479695954],[-76.59042721269803,39.28034757891999],[-76.5903546751446,39.28028650460102],[-76.59028454639426,39.28022759326473],[-76.59023804747061,39.28018817217589],[-76.59019505759146,39.28015224566326],[-76.59016405661856,39.2801261342527],[-76.59012377486511,39.28009230873555],[-76.5901219275013,39.28009108896038],[-76.59007970099356,39.28011683765891],[-76.59007178704231,39.28011026148751],[-76.59006467996592,39.28010465284954],[-76.58976661985338,39.2798600186881],[-76.58936852744216,39.27953328074636],[-76.58936117395118,39.27953802638502],[-76.58900566701185,39.27979662814739],[-76.58902082735494,39.27983474026771],[-76.58898738232497,39.27985729456712],[-76.58868514623404,39.28006110992452],[-76.5886566079449,39.28003633536369],[-76.58865299925604,39.28003845573466],[-76.58862923106176,39.28001494813206],[-76.58859642677378,39.27998193374091],[-76.58856010856643,39.2799530901789],[-76.58853761786908,39.27993514114168],[-76.58850946995629,39.27991022018603],[-76.58844763287242,39.27985540463713],[-76.58843657028075,39.27984559889283],[-76.58836134888911,39.27978064153818],[-76.58830279415774,39.27973024845412],[-76.58822586284731,39.27966400322914],[-76.58817879822391,39.27962565934603],[-76.58810825807326,39.27956856028733],[-76.58800576508295,39.27948461263558],[-76.58800277619936,39.27948657932879],[-76.58799917913321,39.27948370588523],[-76.58783705565634,39.27935234797042],[-76.587731240919,39.27925795036148],[-76.58750663569799,39.27924606708877],[-76.58740404634075,39.27929986520716],[-76.58728423264589,39.27936010082725],[-76.58721485613917,39.27939340779577],[-76.58713224266866,39.2794273131429],[-76.58713727015254,39.2795086148603],[-76.58716170372213,39.27953258720125],[-76.58719701337542,39.27956213205494],[-76.58723393907934,39.27959440108248],[-76.58723131933331,39.2795966627023],[-76.58725917492694,39.27962073171944],[-76.58731372142036,39.2796658733031],[-76.5873625665896,39.2797078727839],[-76.58737754438731,39.27972022263009],[-76.58743067154454,39.27976949998346],[-76.58747951659979,39.27981453318633],[-76.58750382018027,39.2798377771794],[-76.58751939243517,39.27985214860718],[-76.58754507952634,39.27987585413711],[-76.58758092483802,39.27990881104432],[-76.58763152339361,39.27995668143917],[-76.5876665170762,39.27998961100872],[-76.58769615846656,39.28001776034223],[-76.58774237252038,39.28006286166167],[-76.58776991074539,39.28008994970038],[-76.58778645107111,39.28010568464219],[-76.58778928737694,39.28010445064105],[-76.58781133903568,39.28012752452743],[-76.58782803828512,39.28014443551762],[-76.5878203736949,39.2801462434778],[-76.5878145583396,39.28014934151525],[-76.58780873940742,39.28015245665441],[-76.58780229705184,39.28015475261268],[-76.58779567974439,39.28015683897943],[-76.58778897741243,39.28015859807017],[-76.5877821841441,39.28015945157374],[-76.58777525864974,39.28015792839788],[-76.58776856634996,39.28015616553612],[-76.58776189180156,39.2801543396828],[-76.58775514415616,39.28015272705361],[-76.58774825622615,39.28015152107684],[-76.58774131290816,39.28015047253898],[-76.58773442761593,39.28014921162412],[-76.58772758635257,39.28014775359608],[-76.58772068624742,39.28014664846058],[-76.5877136680479,39.28014612029973],[-76.58770658455492,39.28014585853537],[-76.5876994971737,39.28014586698608],[-76.58769245795371,39.28014616384986],[-76.58768547857581,39.28014693292351],[-76.58767852647625,39.28014799394002],[-76.58767156991856,39.28014902431448],[-76.5876646063701,39.28015006096933],[-76.58765764375534,39.28015113635988],[-76.58765066111948,39.28015186758799],[-76.58764364418438,39.2801519195193],[-76.58763660148389,39.28015141919152],[-76.58762954693525,39.28015076389033],[-76.58762249211637,39.28015035449631],[-76.58761544707781,39.2801504558693],[-76.58760840626869,39.28015082658509],[-76.58760136462702,39.28015134051901],[-76.58759432161159,39.28015189137896],[-76.58758727436327,39.28015237286487],[-76.58758021783592,39.28015265614967],[-76.58757312601176,39.2801526312489],[-76.5875660423215,39.28015260277323],[-76.58755901683527,39.28015292940243],[-76.58755209501869,39.28015396439567],[-76.58754524787427,39.28015551218527],[-76.58753840691203,39.28015699333968],[-76.58753150483248,39.28015782302679],[-76.58752450807792,39.28015739401396],[-76.58751745859863,39.28015646489165],[-76.58751040422136,39.2801561788971],[-76.5875033477493,39.28015625320029],[-76.5874962861124,39.28015641846211],[-76.58748922289223,39.28015665667975],[-76.58748215935259,39.28015694984247],[-76.58747509907506,39.28015727994755],[-76.58746804680038,39.28015762899635],[-76.58746098877786,39.28015796991762],[-76.58745392375421,39.2801583189208],[-76.58744686534921,39.28015872559565],[-76.58743982603924,39.28015923682579],[-76.58743282177248,39.28015990040768],[-76.5874258615484,39.28016076321263],[-76.58741892566941,39.28016182427072],[-76.58741202463439,39.28016307190897],[-76.5874051805112,39.2801644980979],[-76.58739841536763,39.28016609480827],[-76.58739173504561,39.28016785395367],[-76.58738510011881,39.2801697789987],[-76.58737854408763,39.28017188897712],[-76.58737211436569,39.28017420207076],[-76.58736585951493,39.28017673826701],[-76.58735977026885,39.2801794966326],[-76.58735379000986,39.28018244724347],[-76.58734794775459,39.28018558299546],[-76.58734227948381,39.28018889500733],[-76.58733681885535,39.28019237529048],[-76.58733156126986,39.28019601752347],[-76.58732644766104,39.28019981429266],[-76.58732148392856,39.28020374760352],[-76.58731667712587,39.28020780036641],[-76.58731203314225,39.28021195638816],[-76.58730756020067,39.28021619678177],[-76.5873031713981,39.28022051763877],[-76.5872988655285,39.28022492706188],[-76.58729472598634,39.28022943435172],[-76.58729083386397,39.28023404609854],[-76.58728727255603,39.28023877160312],[-76.5872841370312,39.2802436229091],[-76.58728170471787,39.28024872619739],[-76.58727988076787,39.28025404870729],[-76.58727840735106,39.28025948234209],[-76.58727702664767,39.28026491720335],[-76.58727555937121,39.28027029140926],[-76.5872741290825,39.2802756828596],[-76.58727282269506,39.28028109366127],[-76.58727172250222,39.28028652320274],[-76.58727090964868,39.28029196906687],[-76.5872704467252,39.28029743057276],[-76.58727028155634,39.28030291114014],[-76.58727031682933,39.28030840322104],[-76.58727045520496,39.28031390377107],[-76.58727059936504,39.28031940614292],[-76.58727065198617,39.28032490459006],[-76.58727053427813,39.28033039523259],[-76.58727030183033,39.28033588547196],[-76.58727000447402,39.28034137638399],[-76.58726967814293,39.2803468671942],[-76.58726935993515,39.2803523562314],[-76.58726908576891,39.28035784542335],[-76.58726889158847,39.28036333219409],[-76.58726881447622,39.28036881757458],[-76.58726889152504,39.28037430079452],[-76.58726914585712,39.28037979184351],[-76.5872695844631,39.2803852844407],[-76.58727020972908,39.28039076688463],[-76.58727102868767,39.28039622568851],[-76.58727204487349,39.28040165095634],[-76.58727328950592,39.2804070554086],[-76.58727479155451,39.2804124400477],[-76.58727655234065,39.28041777695466],[-76.58727857780616,39.28042304092902],[-76.58728094352114,39.2804281917018],[-76.58728394195946,39.28043316004123],[-76.58728722131889,39.28043805280261],[-76.58729032420331,39.28044299808893],[-76.5872928930153,39.28044810273536],[-76.58729518539621,39.28045330819678],[-76.58729722123212,39.2804585830163],[-76.58729895077032,39.280463912607],[-76.58730032309387,39.28046928327843],[-76.58730136131946,39.28047470592107],[-76.5873021872406,39.28048016384827],[-76.58730292963598,39.28048563499345],[-76.58730371842256,39.28049110089707],[-76.58730465336768,39.28049654569584],[-76.5873056103442,39.28050198877045],[-76.5873066009526,39.28050742836017],[-76.58730768435889,39.28051285476448],[-76.58730892204728,39.28051825829097],[-76.58731032793617,39.28052363718702],[-76.58731185794201,39.28052899850379],[-76.58731349351051,39.28053434397776],[-76.58731521378512,39.28053967263472],[-76.5873170037042,39.2805449835211],[-76.58731898160536,39.280550256335],[-76.58732110455877,39.28055549903259],[-76.58732322287655,39.28056074171378],[-76.58732518338847,39.28056601536725],[-76.58732686658746,39.28057134209222],[-76.58732841283718,39.28057670076353],[-76.5873298558059,39.28058208159104],[-76.58733118276577,39.28058748092696],[-76.58733238330137,39.28059289603245],[-76.5873334446849,39.28059832325977],[-76.58733438778333,39.2806037617814],[-76.58733526476176,39.28060920997917],[-76.58733607446119,39.2806146678489],[-76.58733681341505,39.28062013357697],[-76.5873374769979,39.28062560534562],[-76.58733806174848,39.28063108044029],[-76.58733856419495,39.28063655794813],[-76.58733898086561,39.28064203695612],[-76.58733933029384,39.28064751933093],[-76.58733962406428,39.280653006014],[-76.58733986334639,39.28065849520797],[-76.58734005045297,39.2806639878216],[-76.58734018423534,39.28066948204947],[-76.5873402647042,39.28067497608999],[-76.58734029534153,39.28068046905472],[-76.58734027382943,39.28068596093543],[-76.58734020249636,39.28069144993881],[-76.58734005120849,39.28069693595902],[-76.58733975853916,39.28070241878025],[-76.58733935577067,39.28070790031384],[-76.58733887767279,39.28071338068207],[-76.58733836017427,39.28071886001108],[-76.58733783919342,39.28072434022862],[-76.58733734719263,39.28072981964718],[-76.58733692123866,39.28073530200005],[-76.5873365624801,39.28074078909282],[-76.58733623615234,39.28074627990259],[-76.5873359109835,39.2807517707164],[-76.58733555106052,39.2807572587058],[-76.58733512280401,39.28076273834826],[-76.5873345926083,39.28076820862491],[-76.5873339072016,39.28077366214254],[-76.58733259515076,39.2807790495044],[-76.58733093443631,39.280784402313],[-76.58732953778897,39.28078978757605],[-76.58732843992627,39.28079521442319],[-76.58732755751066,39.2808006636455],[-76.58732692765625,39.28080613086969],[-76.58732645419272,39.28081161125397],[-76.58732594944674,39.28081708972678],[-76.58732525354505,39.2808225540166],[-76.58732439309212,39.28082801322446],[-76.58732322692632,39.28083342632003],[-76.58732144017802,39.28083872734209],[-76.58731927364043,39.28084396487713],[-76.58731744629527,39.28084927116107],[-76.5873158342611,39.28085462323963],[-76.58731460207333,39.28086002889704],[-76.58731373806883,39.28086550070294],[-76.58731370392093,39.28087097272218],[-76.58731421101896,39.28087644754378],[-76.58731502644666,39.28088191714328],[-76.58731608777551,39.28088735427851],[-76.58731737421181,39.28089274716638],[-76.58731886710679,39.28089811375665],[-76.58732046671354,39.28090346630965],[-76.58732207212078,39.28090881798219],[-76.58732360213052,39.28091418019899],[-76.58732513562805,39.28091954062646],[-76.58732665983806,39.28092490372361],[-76.58732812489238,39.28093027471973],[-76.58732948901454,39.28093566247576],[-76.58733070347967,39.28094107492736],[-76.58733166049038,39.28094651349734],[-76.58733236349757,39.28095198270162],[-76.58733279173336,39.2809574662536],[-76.58733277140581,39.28096295363422],[-76.58733210674899,39.28096842614048],[-76.58733121896729,39.28097400054987],[-76.58732847535327,39.28097881900389],[-76.58732280142871,39.28098229493337],[-76.58731693060804,39.28098534861346],[-76.5873110250693,39.28098839316363],[-76.58730625802227,39.28099237670617],[-76.58730559948823,39.28099779248561],[-76.58730548179746,39.28100328042486],[-76.58730537220396,39.28100877109486],[-76.58730527535424,39.28101426271037],[-76.58730520167917,39.28101975530803],[-76.58730515465582,39.28102524890008],[-76.5873051424129,39.28103074081282],[-76.58730517189917,39.28103623197142],[-76.58730525123289,39.28104172150361],[-76.58730539082927,39.28104721214824],[-76.58730559417589,39.28105270211613],[-76.58730586475494,39.28105819051866],[-76.58730620488967,39.28106367646332],[-76.58730661690863,39.2810691581567],[-76.58730708110356,39.28107463643028],[-76.58730756616582,39.28108011387645],[-76.58730807209535,39.28108559049515],[-76.58730859425624,39.28109106627013],[-76.58730912917137,39.28109654118907],[-76.58730967683563,39.28110201615288],[-76.58731023145921,39.28110749024029],[-76.58731079187787,39.28111296434813],[-76.58731135577361,39.28111843846812],[-76.58731191851044,39.28112391258404],[-76.58731247892935,39.28112938669177],[-76.58731303355336,39.28113486077921],[-76.58731357890018,39.28114033573473],[-76.5873141138109,39.28114581155438],[-76.58731463943393,39.28115129004365],[-76.58731515923587,39.28115677301628],[-76.5873156720681,39.28116225866671],[-76.58731618140251,39.28116774790792],[-76.58731668609578,39.28117323803351],[-76.58731718729636,39.28117873084918],[-76.58731768733281,39.28118422456149],[-76.58731818736931,39.28118971827376],[-76.58731868624693,39.28119521198195],[-76.58731918744783,39.28120070479755],[-76.58731968981829,39.28120619581571],[-76.58732019567631,39.28121168504457],[-76.58732070618089,39.28121717248825],[-76.58732122134253,39.28122265634522],[-76.58732174231498,39.28122813752028],[-76.58732227027296,39.28123361331531],[-76.58732280637017,39.28123908463513],[-76.58732335292474,39.28124455148779],[-76.58732390763433,39.28125001116305],[-76.58732447512445,39.28125546547859],[-76.5873250530928,39.28126091172405],[-76.587325645006,39.28126635171314],[-76.58732625204391,39.28127178184697],[-76.58732887567155,39.28127603636305],[-76.58733578469661,39.28127721991863],[-76.58734251241913,39.28127928558511],[-76.58734506515849,39.28128417038627],[-76.58734638701982,39.28128965167245],[-76.58734757829647,39.28129506674411],[-76.58734855037511,39.28130050626705],[-76.58734915481938,39.28130598413207],[-76.58734973144247,39.28131146280006],[-76.5873507893768,39.28131688731164],[-76.58735215084435,39.28132233450781],[-76.58735411832303,39.2813276099855],[-76.58735718930188,39.28133246868323],[-76.58736128119315,39.28133696165426],[-76.58736556816424,39.28134139225698],[-76.58736954845699,39.28134594248451],[-76.58737326845231,39.28135060889679],[-76.5873764828775,39.28135551493757],[-76.58737936503175,39.28136055672708],[-76.58738142784516,39.28136578209642],[-76.58738305184816,39.28137112752734],[-76.58738446571543,39.281376533472],[-76.5873856394595,39.28138197460367],[-76.58738653845163,39.2813874264801],[-76.58738705154779,39.28139286799335],[-76.58738646921709,39.28139833448304],[-76.58738551357686,39.2814038185774],[-76.58738523250344,39.28140930053755],[-76.58738543105879,39.28141481841149],[-76.58738610268729,39.28142030371824],[-76.5873874750726,39.28142566808194],[-76.58738920795055,39.28143102650579],[-76.58739120872131,39.28143635794697],[-76.5873935462745,39.28144157527342],[-76.5873962860277,39.28144659044005],[-76.58739997635693,39.28145117747989],[-76.58740515429429,39.28145506805024],[-76.58741073616061,39.28145845921465],[-76.587416784364,39.28146138181827],[-76.58742316278088,39.28146372548974],[-76.5874300145697,39.28146518807527],[-76.58743705560491,39.28146559833261],[-76.58744410905494,39.281465468175],[-76.58745118266235,39.28146506065263],[-76.58745822937003,39.28146449540174],[-76.58746523396438,39.28146379759028],[-76.58747222082108,39.28146296099855],[-76.58747920101162,39.28146207484102],[-76.58748618562332,39.28146122562986],[-76.58749318689718,39.28146050078215],[-76.58750021140494,39.28145996607677],[-76.58750725378636,39.28145954673142],[-76.58751430726547,39.28145921209644],[-76.5875213696133,39.2814589468509],[-76.58752843512913,39.28145873476115],[-76.58753549925549,39.28145856229969],[-76.58754256088058,39.28145842135574],[-76.58754962425283,39.28145837860068],[-76.58755668948224,39.28145841511894],[-76.58756375680976,39.28145848947623],[-76.58757082417401,39.28145855752784],[-76.58757788942441,39.28145859044185],[-76.58758495796337,39.28145865579443],[-76.5875920287156,39.28145873916969],[-76.58759909727027,39.28145880181918],[-76.58760616154495,39.28145880320131],[-76.58761322061628,39.28145870277854],[-76.58762027358695,39.28145845550942],[-76.58762732291632,39.28145803708205],[-76.58763436149844,39.28145747359359],[-76.58764137640097,39.28145679652538],[-76.58764834022138,39.28145593462093],[-76.58765518773187,39.28145454446039],[-76.58766206603268,39.28145324088079],[-76.58766898328923,39.28145201490324],[-76.58767571946429,39.28145043699185],[-76.58768200294114,39.2814479783458],[-76.58768808241273,39.2814451235482],[-76.58821105311156,39.28136793682756],[-76.58822279238096,39.28136483161488],[-76.58823965874589,39.28136879194756],[-76.58826412151416,39.28137332837127],[-76.58829040334075,39.28137297821858],[-76.58836002103968,39.28137145941766],[-76.58842156359667,39.2813703734719],[-76.58850371529775,39.2813690056944],[-76.58850898632377,39.28136884580875],[-76.58852728775774,39.28139056157224],[-76.58854136453297,39.28140588422809],[-76.58855012799218,39.28141347052929],[-76.58855754059039,39.28141816154812],[-76.58856692324672,39.28142310267318],[-76.5885766087472,39.28142698646114],[-76.58858337924491,39.28142788031289],[-76.58858791876474,39.28142794845701],[-76.58859231005961,39.28142719458555],[-76.58859693413787,39.28142607221618],[-76.58860026366835,39.28146970695046],[-76.58860094274495,39.28147992038319],[-76.58860883961579,39.28157039639852],[-76.58859692914341,39.28157064292776],[-76.5885971745965,39.28159167481152],[-76.58859838401406,39.28166453459239],[-76.58859901193705,39.28171175210574],[-76.58860633703705,39.28178030873848],[-76.58846804322351,39.28178473076251],[-76.58846769079078,39.28178574468807],[-76.58808779209669,39.28180424970033],[-76.58809488678902,39.28186010479356],[-76.58834951022784,39.28184660320594],[-76.58836571421429,39.281858273534],[-76.58837029448222,39.28194261544517],[-76.58847477067987,39.28193971445084],[-76.58849234032708,39.28193954811091],[-76.58850460764455,39.28193933617042],[-76.58855825200133,39.28193622639075],[-76.58862757335214,39.28193234008636],[-76.58869532074199,39.28193064969525],[-76.58869647867017,39.28196062935117],[-76.58869821730833,39.28200539797037],[-76.5886989495142,39.28202424360143],[-76.58870064460061,39.28206333005254],[-76.58863837386821,39.2820949485705],[-76.58860839444964,39.28209429771457],[-76.5886078102554,39.28209950117944],[-76.58856857854362,39.28209959436647],[-76.58851689596575,39.28209976732909],[-76.58847703195248,39.28209996816361],[-76.5884431765498,39.28210014319757],[-76.58840831069602,39.28210087765815],[-76.58829760577798,39.28210314514455],[-76.58816197728163,39.28210593946498],[-76.58807581567167,39.28210849276082],[-76.58800304313382,39.28211127130709],[-76.58792954962499,39.28211445622561],[-76.58787191269499,39.28211688424479],[-76.58782849988469,39.2821184478735],[-76.58778155223168,39.28212057016525],[-76.58773798254391,39.28212240253821],[-76.58770088681676,39.28212391082521],[-76.5877033642432,39.28215771976305],[-76.58770690314769,39.28219674964723],[-76.58771152337548,39.28225274379787],[-76.58771224994716,39.28227071927756],[-76.58771738498258,39.28233665425531],[-76.58772046449646,39.28237994583694],[-76.58772432543903,39.28242918159479],[-76.58783344511895,39.28242455358886],[-76.58791452617768,39.28242015139455],[-76.58811049150364,39.28241179775669],[-76.58818945969637,39.28240817613163],[-76.58825750447855,39.28240525118716],[-76.58826455429066,39.28247546336661],[-76.58826915587223,39.28254932856496],[-76.58827386953793,39.28262405348239],[-76.58827451852292,39.28263345431981],[-76.58827782736003,39.28267743486862],[-76.58828318504861,39.28274724027051],[-76.58822594156868,39.2827492906225],[-76.58818189628265,39.28275072605889],[-76.58811304292749,39.28275311757572],[-76.58806136052648,39.28275517383583],[-76.58798455578733,39.28275781482717],[-76.5879856023767,39.28277398629539],[-76.58798900046617,39.28282651810834],[-76.58798924966345,39.28283011032489],[-76.58798944005231,39.28283285201485],[-76.58798963044647,39.28283559280403],[-76.58798981967634,39.28283833448985],[-76.58799001006524,39.28284107617976],[-76.58799020045416,39.28284381786968],[-76.58799039084315,39.28284655955957],[-76.58799058123732,39.28284930034874],[-76.58799077046727,39.28285204203455],[-76.58799096085625,39.28285478372445],[-76.58799115124529,39.28285752541436],[-76.58799134163431,39.28286026710424],[-76.5879915308643,39.28286300879006],[-76.58799172125863,39.28286574957919],[-76.58799191164768,39.28286849126912],[-76.58799210203674,39.28287123295899],[-76.58799229242587,39.28287397464885],[-76.58799248165595,39.28287671633467],[-76.58799267205029,39.28287945712378],[-76.58799286243941,39.2828821988137],[-76.58799305282861,39.28288494050354],[-76.58799324321775,39.2828876821934],[-76.58799343244792,39.28289042387919],[-76.58799362283715,39.28289316556907],[-76.58799381323158,39.28289590635818],[-76.58799400362079,39.28289864804803],[-76.587994192851,39.28290138973382],[-76.5879943832403,39.2829041314237],[-76.58799457362954,39.28290687311353],[-76.58799476286504,39.28290961389857],[-76.58799495325437,39.28291235558841],[-76.58799514364367,39.28291509727823],[-76.58799533287397,39.28291783896402],[-76.5879955232633,39.28292058065386],[-76.5879957136527,39.28292332234368],[-76.58799590288828,39.28292606312871],[-76.58799609327764,39.28292880481857],[-76.58799628366708,39.28293154650836],[-76.58799647289749,39.28293428819413],[-76.5879966632869,39.28293702988394],[-76.58799685251732,39.28293977156972],[-76.58799704291198,39.28294251235878],[-76.58799723214243,39.28294525404452],[-76.58799742253197,39.28294799573433],[-76.58799761176245,39.28295073742008],[-76.58799780215195,39.28295347910989],[-76.58799799138245,39.28295622079562],[-76.58799818177727,39.28295896158468],[-76.58799837100781,39.2829617032704],[-76.58799856023836,39.28296444495615],[-76.58799875062793,39.28296718664593],[-76.58799893985851,39.28296992833165],[-76.58799913024818,39.28297267002142],[-76.58799931948403,39.2829754108064],[-76.58799950871463,39.28297815249214],[-76.58799969910429,39.28298089418191],[-76.58799988833495,39.28298363586762],[-76.58800007756562,39.28298637755334],[-76.58800026795537,39.2829891192431],[-76.5880004571913,39.28299186002809],[-76.58800064642199,39.28299460171375],[-76.58800083681174,39.28299734340353],[-76.58800102604248,39.28300008508924],[-76.5880012164323,39.283002826779],[-76.58800140566306,39.28300556846468],[-76.58800159489385,39.28300831015039],[-76.5880017852889,39.28301105093941],[-76.58800197451971,39.28301379262507],[-76.58800216490955,39.28301653431482],[-76.5880023541404,39.28301927600049],[-76.5880025433713,39.2830220176862],[-76.58800273376119,39.28302475937591],[-76.58800292299732,39.28302750016086],[-76.58800311338723,39.28303024185058],[-76.58800330261815,39.28303298353623],[-76.58800349300815,39.28303572522599],[-76.5880036833981,39.28303846691569],[-76.58800387262906,39.28304120860136],[-76.58800406302434,39.28304394939032],[-76.58800425225533,39.28304669107602],[-76.58800444264534,39.28304943276573],[-76.58800463303538,39.28305217445543],[-76.58800482342549,39.28305491614514],[-76.58800501266177,39.28305765693003],[-76.58800520305184,39.28306039861977],[-76.58800539344199,39.28306314030944],[-76.5880055838321,39.28306588199914],[-76.58800577422222,39.28306862368887],[-76.58800596461241,39.28307136537855],[-76.58800615500779,39.2830741061675],[-76.58800634539796,39.2830768478572],[-76.5880065357882,39.28307958954687],[-76.58800672617838,39.28308233123658],[-76.5880069165686,39.28308507292626],[-76.58800710696411,39.28308781371518],[-76.58800729735435,39.28309055540487],[-76.58800748774466,39.28309329709457],[-76.58800767813493,39.28309603878424],[-76.58800786852521,39.28309878047388],[-76.58800805892079,39.28310152126281],[-76.58800824931112,39.28310426295246],[-76.58800843970143,39.28310700464216],[-76.58800863125084,39.28310974633587],[-76.5880088216412,39.28311248802553],[-76.58800901203686,39.28311522881443],[-76.58800920242724,39.28311797050407],[-76.58800939281765,39.28312071219375],[-76.58800958320812,39.2831234538834],[-76.5880097747628,39.28312619467638],[-76.5880099651533,39.283128936366],[-76.58801015554376,39.28313167805565],[-76.58801034593428,39.28313441974529],[-76.5880105374838,39.28313716143897],[-76.58801072787959,39.28313990222787],[-76.5880109182701,39.2831426439175],[-76.58801110866064,39.28314538560715],[-76.58801130021025,39.28314812730083],[-76.58801149060082,39.28315086899043],[-76.58801168099667,39.2831536097793],[-76.58801187138728,39.28315635146897],[-76.58801206293695,39.28315909316262],[-76.58801225332758,39.28316183485224],[-76.58801244371821,39.28316457654184],[-76.58801263527317,39.28316731733477],[-76.5880128256639,39.2831700590244],[-76.58801301605457,39.28317280071399],[-76.58801320760433,39.28317554240765],[-76.58801339800029,39.28317828319651],[-76.58801358839101,39.28318102488609],[-76.58801377994081,39.28318376657977],[-76.58801397033157,39.28318650826935],[-76.58801416072239,39.28318924995892],[-76.58801435227743,39.28319199075184],[-76.58801454266829,39.28319473244144],[-76.5880147330591,39.28319747413101],[-76.588014924609,39.28320021582464],[-76.58801511499983,39.28320295751421],[-76.58801530539593,39.28320569830305],[-76.58801549694589,39.28320843999671],[-76.58801568733676,39.28321118168625],[-76.58801587888674,39.28321392337988],[-76.58801606928289,39.28321666416869],[-76.58801625967388,39.2832194058583],[-76.58801645122388,39.2832221475519],[-76.58801664161486,39.28322488924143],[-76.58801683200583,39.28322763093099],[-76.58801702356112,39.28323037172385],[-76.58801721395213,39.28323311341344],[-76.5880174043432,39.28323585510295],[-76.58801759589325,39.28323859679654],[-76.58801778628958,39.28324133758535],[-76.58801797668066,39.28324407927492],[-76.5880181682308,39.28324682096851],[-76.58801835862191,39.28324956265804],[-76.58801854901301,39.28325230434753],[-76.58801874056843,39.2832550451404],[-76.58801893095958,39.28325778682994],[-76.58801912135078,39.28326052851946],[-76.58801931290097,39.28326327021304],[-76.5880195032922,39.28326601190253],[-76.58801969368864,39.28326875269128],[-76.58801988523892,39.28327149438491],[-76.58802007563014,39.2832742360744],[-76.58802026602143,39.2832769777639],[-76.58802045757695,39.28327971855673],[-76.58802064796826,39.28328246024628],[-76.58802083835955,39.28328520193577],[-76.58800988188374,39.28328418527948],[-76.58800284464925,39.28328368769671],[-76.5879957988203,39.28328327295352],[-76.58798874670985,39.28328294195887],[-76.58798168973311,39.28328265058026],[-76.58797463267273,39.28328237361316],[-76.58796757683949,39.28328208494005],[-76.5879605246926,39.28328176024893],[-76.58795347884846,39.28328134820544],[-76.58794644402167,39.28328083531471],[-76.58793940678272,39.28328033862886],[-76.5879323584481,39.28327995630058],[-76.58792530630164,39.28327963160729],[-76.58791825051068,39.28327933572526],[-76.58791119466225,39.28327904975096],[-76.58790413886094,39.28327875566957],[-76.58789707962448,39.28327845436957],[-76.5878900192447,39.28327815036286],[-76.58788298736732,39.28327772845573],[-76.58788106665931,39.28327396283311],[-76.58787402652787,39.28327356521712],[-76.58786699661064,39.28327300549921],[-76.58785996665686,39.28327245208607],[-76.58785292938272,39.28327196170025],[-76.58784588231313,39.28327156135595],[-76.58783883513895,39.28327117902609],[-76.58783178558919,39.28327080659587],[-76.58782473598718,39.28327044317273],[-76.58781768518436,39.28327008695096],[-76.5878106331859,39.28326973702997],[-76.58780358115611,39.28326939251305],[-76.58779652910026,39.2832690524994],[-76.58778947702874,39.28326871518756],[-76.58778242378779,39.28326837967268],[-76.58777537169551,39.283268045963],[-76.5877683196085,39.28326771135208],[-76.5877612605412,39.28326738122013],[-76.58775420162804,39.28326722403475],[-76.5877521341164,39.2832637902763],[-76.58775247546485,39.28325830402611],[-76.58775290023236,39.28325282347321],[-76.58774976788688,39.28324973006909],[-76.58774272731362,39.28324940900856],[-76.58773568088772,39.28324909783537],[-76.5877286297891,39.28324879295076],[-76.58772157516633,39.28324849616023],[-76.5877145181941,39.28324820476558],[-76.58770745771866,39.28324791786206],[-76.5877003960581,39.28324763545771],[-76.5876933343871,39.28324735485448],[-76.58768627154143,39.28324707694897],[-76.58767920985485,39.28324679904708],[-76.58767215049164,39.28324652025221],[-76.58766509345178,39.28324624056426],[-76.58765803641195,39.2832459608759],[-76.58765098051555,39.28324568389343],[-76.58764392344968,39.28324540870796],[-76.58763686637337,39.28324513532355],[-76.58762980928141,39.28324486464092],[-76.58762275217386,39.28324459666013],[-76.58761569505059,39.28324433138116],[-76.58760863790644,39.28324406970471],[-76.58760157958761,39.28324381072603],[-76.58759452241215,39.28324355445322],[-76.58758746405152,39.28324330267965],[-76.58758040565955,39.2832430563101],[-76.58757334723619,39.2832428153446],[-76.58756628762245,39.28324257977909],[-76.587559227993,39.28324234691541],[-76.58755216951218,39.28324211585682],[-76.58754510986194,39.28324188659524],[-76.58753805021171,39.28324165733322],[-76.58753099057196,39.2832414262693],[-76.58752393210182,39.28324119340754],[-76.58751687249362,39.28324095693833],[-76.58750981407594,39.28324071506825],[-76.58750275568448,39.28324046869408],[-76.58749569733497,39.28324021511345],[-76.58748864019692,39.28323995252908],[-76.58748158311128,39.28323968093682],[-76.58747452722668,39.28323940214229],[-76.58746747138396,39.28323911614135],[-76.58746041556755,39.28323882563624],[-76.58745335976687,39.28323853242848],[-76.58744630397678,39.28323823741883],[-76.58743924935098,39.28323794151207],[-76.58743219355571,39.28323764740228],[-76.58742513774483,39.2832373559943],[-76.58741808192349,39.28323706638743],[-76.58741102613367,39.28323677137566],[-76.58740397153962,39.28323647006231],[-76.58739691695604,39.28323616694708],[-76.58738986120831,39.28323586472803],[-76.58738280659871,39.28323556611565],[-76.5873757507882,39.28323527470472],[-76.58736869492016,39.28323499320157],[-76.58736163780928,39.28323472610585],[-76.58735457944513,39.283234475219],[-76.58734751970719,39.28323426125822],[-76.58734045741022,39.28323408872311],[-76.58733339381797,39.28323393960287],[-76.58732633019437,39.28323379588665],[-76.58731926663893,39.28323364046036],[-76.58731220557968,39.28323345441644],[-76.58730514712151,39.28323321974003],[-76.58729809248634,39.28323292562627],[-76.58729104044173,39.28323258468154],[-76.58728399090393,39.2832322113177],[-76.58727694260911,39.28323182354559],[-76.58726989314482,39.2832314375705],[-76.5872628435758,39.28323106960988],[-76.58725579148962,39.28323073586896],[-76.58724873564871,39.28323044985486],[-76.58724167852301,39.28323018545414],[-76.58723462015975,39.28322993456011],[-76.58722756173363,39.2832296944746],[-76.58722050210658,39.28322946159052],[-76.58721344243767,39.28322923591199],[-76.58720638274262,39.28322901473675],[-76.58719932303708,39.28322879536257],[-76.58719226217787,39.28322857508315],[-76.58718520248813,39.28322835300589],[-76.5871781428247,39.28322812642451],[-76.58717108319802,39.28322789353748],[-76.58716402478279,39.28322765164665],[-76.58715696643577,39.28322739804572],[-76.58714991049071,39.28322713004058],[-76.58714285349151,39.28322684401606],[-76.58713579888386,39.28322654538885],[-76.58712874432344,39.2832262386545],[-76.58712168979977,39.28322592561452],[-76.58711463643517,39.28322561257819],[-76.58710758189068,39.28322530314033],[-76.58710052614521,39.28322500090394],[-76.58709347151694,39.28322470587715],[-76.58708641570348,39.28322441534961],[-76.58707935986909,39.28322412842457],[-76.58707230401382,39.28322384510212],[-76.58706524698381,39.28322356447742],[-76.58705819111287,39.28322328385637],[-76.58705113408301,39.28322300323079],[-76.58704407821745,39.28322272170814],[-76.58703702235196,39.28322244018507],[-76.58702996533272,39.28322215775673],[-76.58702290946735,39.28322187623283],[-76.58701585360724,39.28322159380772],[-76.58700879658292,39.28322131227888],[-76.58700174071772,39.28322103075367],[-76.58699468485253,39.28322074922806],[-76.58698762782319,39.28322046859869],[-76.58698057195286,39.28322018797292],[-76.58697351491833,39.28321990824348],[-76.58696645903768,39.28321962941836],[-76.58695940199279,39.28321935148954],[-76.58695234610177,39.28321907446512],[-76.58694528905171,39.28321879743615],[-76.58693823314502,39.28321852311309],[-76.5869311760794,39.28321824878554],[-76.58692411899806,39.2832179771598],[-76.58691706191678,39.28321770553359],[-76.58691000481981,39.28321743660924],[-76.58690294771245,39.28321716948599],[-76.58689589057363,39.2832169077667],[-76.58688883224437,39.28321665144743],[-76.58688177388893,39.28321639963142],[-76.58687471551258,39.28321615141801],[-76.58686765711528,39.28321590680712],[-76.58686535336972,39.28321582754437],[-76.58686059870755,39.28321566399731],[-76.58685354028405,39.28321542388929],[-76.58684648069641,39.28321518467754],[-76.5868394222626,39.28321494637019],[-76.58683236383406,39.28321470716168],[-76.58682530425706,39.28321446614713],[-76.5868181788351,39.28321438613714],[-76.5868114658339,39.28321513718024],[-76.58680755003174,39.28321960200004],[-76.58680084664137,39.28322128986986],[-76.58679374953883,39.28322132255347],[-76.58678687010639,39.28322020122405],[-76.5867802994144,39.28321820994244],[-76.5867737773922,39.28321602156463],[-76.58676715064237,39.28321410304691],[-76.58676049329635,39.28321226368833],[-76.58675383009769,39.28321043421713],[-76.58674716103084,39.28320861733568],[-76.58674048492088,39.28320681574197],[-76.5867338017574,39.28320503123759],[-76.58672711035503,39.28320326832214],[-76.58672040954956,39.28320152789229],[-76.58671369814,39.28319981714997],[-76.58670679089995,39.2831984957486],[-76.58669986814671,39.28319725085714],[-76.58669334466487,39.28319531378255],[-76.58668732110222,39.28319251823788],[-76.58668153638115,39.28318931188461],[-76.58667574706122,39.28318609920954],[-76.58666984926947,39.28318300325164],[-76.58666383459351,39.28318007532489],[-76.5866572733639,39.28317825161159],[-76.58665034761316,39.28317712380583],[-76.58664329001461,39.28317634503174],[-76.58663626860783,39.28317572041512],[-76.58662921180476,39.28317540193294],[-76.58662213895292,39.28317525183652],[-76.58661507509512,39.28317514951179],[-76.58660800962699,39.28317512464659],[-76.58660094280559,39.28317513310444],[-76.58659387018906,39.28317514154152],[-76.58658668396524,39.28317535224996],[-76.586579783422,39.28317507034527],[-76.58657490995296,39.28317102948422],[-76.58656970890642,39.28316731174472],[-76.58656443563821,39.28316365590341],[-76.58655914837814,39.28316001442484],[-76.58655385180433,39.28315638011934],[-76.58654855057397,39.2831527494003],[-76.58654325050837,39.28314911778429],[-76.58653795742907,39.2831454807881],[-76.58653271812776,39.28314176471377],[-76.58652664439707,39.28313982290763],[-76.58651957293139,39.28314003221439],[-76.58651251195474,39.28314023164928],[-76.58650545095703,39.28314043468669],[-76.58649839108681,39.28314064313222],[-76.58649133118503,39.28314085698184],[-76.58648427008745,39.2831410771321],[-76.58647721127642,39.28314130269463],[-76.58647015238128,39.28314154266861],[-76.58646309340213,39.28314179705409],[-76.58645603437043,39.28314206044659],[-76.58644897648189,39.283142326545],[-76.58644191859861,39.28314259174218],[-76.58643485959826,39.28314284972895],[-76.58642780181988,39.28314309691044],[-76.58642074182838,39.28314332606844],[-76.58641368312189,39.28314353361225],[-76.58640662225486,39.28314371412509],[-76.5863995605596,39.28314383788652],[-76.58639249622217,39.28314381841692],[-76.58638543004454,39.28314371697098],[-76.58637836390371,39.28314360921939],[-76.58637129735325,39.28314357172546],[-76.58636423366546,39.28314363963046],[-76.58635716980436,39.28314373725961],[-76.58635010583293,39.28314385380396],[-76.58634304177747,39.28314398475981],[-76.58633597883377,39.28314412382601],[-76.58632891470471,39.28314426739142],[-76.5863218517399,39.28314441005974],[-76.58631478764754,39.28314454731912],[-76.58630772361821,39.28314467376909],[-76.58630065968337,39.28314478400528],[-76.58629359481012,39.28314485640571],[-76.5862865289301,39.28314490267995],[-76.58627946304487,39.28314494985457],[-76.58627239814527,39.28314502675741],[-76.58626533525911,39.28314515591117],[-76.58625827335329,39.28314531569392],[-76.58625121132665,39.28314549619335],[-76.58624415037497,39.28314569110837],[-76.5862370893602,39.28314589683188],[-76.58623002831912,39.28314610705871],[-76.58622296613993,39.28314631367805],[-76.58621584071307,39.28314643450167],[-76.58620868306959,39.28314651467702],[-76.58620156328544,39.28314666164178],[-76.58619455375442,39.28314698284182],[-76.58618789579292,39.28314783582937],[-76.58618308346465,39.28315199571458],[-76.58617851451704,39.28315615915928],[-76.58617446855658,39.2831606766447],[-76.58617078905813,39.28316535845908],[-76.58616795484757,39.28317038013674],[-76.58616553932926,39.28317555371685],[-76.58616320948973,39.28318074291168],[-76.58616107177623,39.28318597962308],[-76.58615933811855,39.2831912943228],[-76.58615803862547,39.28319669162076],[-76.58615682479555,39.28320210723579],[-76.5861554048098,39.28320749600233],[-76.5861540227619,39.28321293804755],[-76.58615248451748,39.28321833270275],[-76.58615048605952,39.28322354017929],[-76.58614657702765,39.28322802932165],[-76.58614051348511,39.28323030220192],[-76.58613345086042,39.28323018634113],[-76.58612638715553,39.2832300569647],[-76.58611932237044,39.28322991407254],[-76.58611225883378,39.28322975587143],[-76.58610519772034,39.28322957966317],[-76.58609813930855,39.28322933770826],[-76.58609108100195,39.28322907773807],[-76.58607553880159,39.28322258882056],[-76.58606172368172,39.28322025760411],[-76.58604759561665,39.28321931696221],[-76.58603347780755,39.28321900238505],[-76.58601932557978,39.28321902457031],[-76.58600518226427,39.28321930710581],[-76.58599104162678,39.28321972656503],[-76.58597684390736,39.28322019536334],[-76.58596267627782,39.28322087054072],[-76.58594863626243,39.28322192268521],[-76.58593487998854,39.28322380813331],[-76.58592260951573,39.28322948562545],[-76.58591190559908,39.28323663688256],[-76.58590188185136,39.28324441746766],[-76.58589240995911,39.28325257021095],[-76.5858832151237,39.28326091399128],[-76.58587422812896,39.28326939271727],[-76.58586483753848,39.28327771418767],[-76.58585309024055,39.28328351241777],[-76.58583899786127,39.28328519309719],[-76.58582473526285,39.28328605167876],[-76.58581106197246,39.28328463971135],[-76.58579832988171,39.28327964692487],[-76.5857853808522,39.28327508483753],[-76.58577210617503,39.28327130886733],[-76.58575808729559,39.28326933449962],[-76.58574643704601,39.28326347358392],[-76.58573553596,39.28325635153855],[-76.58572457977031,39.28324933738936],[-76.58571349376751,39.28324252184995],[-76.58570253244636,39.28323559325305],[-76.58569136256773,39.28322845404171],[-76.58568118676573,39.28322098595398],[-76.58568585102049,39.28321162275932],[-76.58569402026964,39.28320265565198],[-76.58570224961295,39.28319371848117],[-76.58571045002044,39.28318477400158],[-76.58571866659447,39.28317583948686],[-76.58572687277193,39.28316689862952],[-76.58573504312777,39.28315793872922],[-76.58574315224733,39.28314894528416],[-76.58575121168425,39.28313992464039],[-76.58575926072469,39.28313089765409],[-76.58576426263357,39.28312226256274],[-76.58577142209286,39.28311333512544],[-76.58577919611419,39.28310416394655],[-76.58578703830601,39.28309502903801],[-76.58578992889649,39.28308650900418],[-76.58577913819902,39.28307934321425],[-76.58576841465394,39.28307219027078],[-76.58575769228057,39.28306503552892],[-76.58574699905868,39.28305785116369],[-76.58573630816758,39.28305066500416],[-76.58572559047363,39.28304350397045],[-76.5857148179918,39.28303639678834],[-76.58570396391707,39.28302936858459],[-76.58569299443759,39.28302245346891],[-76.58568182096211,39.28301573760208],[-76.58567048429327,39.28300918059363],[-76.58565907885446,39.28300268999794],[-76.58564769558139,39.28299617515871],[-76.58563642888683,39.28298954543194],[-76.58562523098225,39.28298284658798],[-76.58561402377076,39.28297615401538],[-76.58560281773616,39.2829694587436],[-76.58559162569624,39.28296274910787],[-76.58558045929911,39.28295601524093],[-76.58556933019834,39.28294924637474],[-76.58555825005247,39.28294243084049],[-76.58554723050459,39.28293555967169],[-76.58553628321857,39.28292862029876],[-76.58552544197468,39.28292158401658],[-76.5855147254437,39.28291442927267],[-76.58550410331199,39.28290718658609],[-76.58549354527638,39.28289988467431],[-76.58548301987466,39.28289255225081],[-76.58547249564469,39.28288521802895],[-76.58546194111901,39.28287791162284],[-76.58545544949848,39.28287013584445],[-76.58546444130776,39.28286162654052],[-76.58547335233553,39.28285305659969],[-76.58548214875945,39.28284446193312],[-76.58549093132557,39.28283585820933],[-76.58549969887481,39.28282724542424],[-76.58550845371468,39.28281862538756],[-76.58551719123547,39.28280999357918],[-76.58552591026755,39.28280135179646],[-76.58553462005688,39.28279270457593],[-76.58554332869562,39.28278405554912],[-76.58555204310623,39.28277541014506],[-76.58556077137048,39.28276677379692],[-76.58556952158044,39.28275815013615],[-76.5855782925771,39.28274953915879],[-76.58558707396074,39.28274093542346],[-76.58559586458293,39.28273233712468],[-76.58560466097704,39.28272374244861],[-76.58561346083563,39.28271514958563],[-76.58562226299954,39.28270655853163],[-76.58563106285386,39.28269796566732],[-76.58563985924472,39.28268937008779],[-76.5856486475413,39.28268077087601],[-76.58565742891315,39.28267216623449],[-76.58566619872951,39.28266355524625],[-76.58567496623093,39.28265494334842],[-76.58568373142793,39.28264632873946],[-76.58569249546377,39.28263771412578],[-76.58570125718997,39.28262909770174],[-76.58571001775501,39.28262048127293],[-76.58571877716417,39.28261186393861],[-76.58572753657641,39.28260324570289],[-76.58573629367378,39.28259462655756],[-76.58574505076902,39.28258600741156],[-76.5857538078621,39.28257738826488],[-76.58576256379409,39.28256876911342],[-76.5857713208882,39.28256014906466],[-76.58578007681591,39.28255152991188],[-76.58578883390051,39.2825429107625],[-76.58579759213677,39.28253429251725],[-76.58580635037085,39.28252567427136],[-76.58581510975662,39.28251705692963],[-76.58582387145826,39.2825084395954],[-76.58583263314726,39.28249982406198],[-76.58584139714695,39.28249120943676],[-76.58585016345724,39.28248259571983],[-76.58585893091396,39.28247398380781],[-76.58586775958641,39.28246540814143],[-76.58587664599223,39.28245686960924],[-76.58588561534363,39.28244821877337],[-76.58588731263949,39.28243999988747],[-76.58587631646012,39.2824331045101],[-76.58586743923671,39.28242756144198],[-76.58586530048494,39.28242622527564],[-76.58585427868516,39.28241935142416],[-76.58584326387852,39.28241247129095],[-76.58583225373111,39.28240558757007],[-76.58582124125726,39.28239870564143],[-76.58581022762129,39.28239182460843],[-76.58579921514645,39.28238494357847],[-76.58578820384329,39.28237806075006],[-76.58577719720466,39.28237117343324],[-76.58576619523581,39.28236428072719],[-76.58575520141905,39.28235738174355],[-76.5857442309163,39.28235046032199],[-76.58573333734753,39.28234346440738],[-76.58572255643982,39.28233781823252],[-76.58571309941546,39.28234602235916],[-76.58570430193808,39.28235461433798],[-76.58569553563635,39.28236322624284],[-76.58568679357727,39.28237185444633],[-76.58567806883822,39.28238049351941],[-76.58566935564521,39.28238913983863],[-76.58566064706505,39.28239778977654],[-76.58565193617004,39.28240643880483],[-76.58564321719658,39.28241508149866],[-76.58563448320632,39.28242371513114],[-76.5856257422861,39.28243234423478],[-76.58561700252277,39.2824409733418],[-76.58560826159834,39.28244960244407],[-76.58559951951796,39.28245823064081],[-76.5855907774355,39.28246685883691],[-76.58558203304335,39.28247548522263],[-76.58557328633634,39.28248411069877],[-76.5855645373144,39.28249273526534],[-76.58555578482904,39.28250135711672],[-76.58554702888027,39.28250997625291],[-76.58553826830381,39.28251859357056],[-76.58552949502335,39.28252720273591],[-76.58552070903889,39.28253580374885],[-76.58551191611915,39.28254440113361],[-76.58550312088978,39.28255299670801],[-76.58549432565829,39.28256159228172],[-76.58548553851151,39.28257019238714],[-76.58547676059797,39.28257879882975],[-76.58546799885073,39.28258741523722],[-76.58545925673636,39.28259604342313],[-76.58545052616793,39.28260467885534],[-76.58544179906399,39.28261331610057],[-76.5854330742654,39.28262195515478],[-76.58542767078499,39.28262731003777],[-76.58542435408505,39.28263059692699],[-76.58541563736907,39.28263924051225],[-76.58540692526604,39.28264788771617],[-76.58539821778646,39.2826565367373],[-76.5853895149198,39.28266518937708],[-76.58538081783031,39.28267384473892],[-76.58537212535906,39.28268250281868],[-76.58536343865973,39.28269116452118],[-76.58535475772709,39.2826998307472],[-76.58534608373067,39.28270849969937],[-76.58533741550096,39.28271717317505],[-76.58532876921691,39.28272585933821],[-76.58532018761512,39.28273458356116],[-76.5853116498962,39.28274333496124],[-76.58530313181022,39.28275209813995],[-76.58529460794809,39.28276085769456],[-76.58528550562555,39.28276844331332],[-76.58527841280905,39.28276358657743],[-76.58527486062711,39.28276115458585],[-76.58526381320232,39.28275430310826],[-76.58525279377004,39.28274742200328],[-76.58524194213496,39.28274038835993],[-76.5852312478131,39.28273321114889],[-76.58522059777334,39.28272599355896],[-76.58520998036758,39.28271874545725],[-76.58519938627086,39.2827114758186],[-76.58518880499408,39.28270419451428],[-76.58517822488379,39.28269691231233],[-76.58516763544553,39.28268963998492],[-76.58515702620066,39.28268238560182],[-76.58514638665473,39.2826751599351],[-76.5851357016509,39.28266797824428],[-76.58512432896349,39.28266145438313],[-76.58511256424883,39.28265537321242],[-76.5851006968573,39.28264940877713],[-76.5850887675916,39.28264352068697],[-76.58507675076363,39.28263774127855],[-76.58506468490039,39.28263202294763],[-76.58505267857602,39.28262623186395],[-76.58504078199746,39.28262030515144],[-76.58502889131614,39.28261436134406],[-76.58501705315643,39.28260835556833],[-76.58500532815111,39.28260222588585],[-76.58499377576888,39.28259591125479],[-76.58498238439302,39.28258941613802],[-76.58497111203015,39.28258278632617],[-76.58495994812776,39.28257604249944],[-76.58494888446209,39.28256920354494],[-76.58493791280405,39.28256228925039],[-76.58492762509947,39.28255476124951],[-76.5849172931328,39.28254727092335],[-76.58490637976446,39.28254030008362],[-76.58489532425432,39.28253345574825],[-76.58488416617259,39.28252671013323],[-76.58487293926788,39.28252003993804],[-76.58486155961617,39.28251352593475],[-76.58485007736651,39.28250711515548],[-76.5848386160972,39.28250068463246],[-76.58482730171025,39.28249411050528],[-76.58481624845913,39.28248727878099],[-76.58480542251633,39.28248022627125],[-76.58479473063804,39.28247304182222],[-76.58478408540223,39.28246580979655],[-76.58477340169414,39.28245861636672],[-76.58476259209169,39.28245154589548],[-76.5847512824927,39.28244494835793],[-76.58473982945577,39.28243850073969],[-76.58472935280022,39.28243118193088],[-76.58471963811159,39.28242318844096],[-76.58470980930858,39.28241528552388],[-76.58469975805907,39.28240756557514],[-76.58468970332419,39.28239984741475],[-76.58467977897655,39.28239203153127],[-76.58467000019945,39.28238409816169],[-76.58466029013367,39.28237610918682],[-76.58465057888995,39.28236812381007],[-76.58464079426628,39.28236020032564],[-76.58463086288585,39.28235239972605],[-76.58462032125421,39.2823450968912],[-76.5846090213637,39.28233843001524],[-76.58459923269156,39.28233060559689],[-76.58459048955201,39.28232197689054],[-76.58458208514483,39.28231310077071],[-76.58457352239063,39.28230434749484],[-76.58456498525827,39.28229557359138],[-76.58455728733428,39.28228639370881],[-76.58455119010711,39.28227641240307],[-76.58454484969739,39.28226659237431],[-76.58453644207194,39.28225787207171],[-76.58452703235751,39.28224966346076],[-76.58451704801199,39.2822418077173],[-76.58450679553302,39.28223421765041],[-76.58449623641458,39.28222693726133],[-76.58448529762263,39.28221996899391],[-76.58447414557723,39.28221319723821],[-76.58446290475227,39.28220654406818],[-76.58445145402418,39.28220010903996],[-76.58443990068736,39.28219377903692],[-76.58442839866063,39.28218739606923],[-76.58441704720448,39.28218083348045],[-76.58440625516008,39.28217374682392],[-76.58439708977832,39.28216538323463],[-76.58438807446592,39.28215692559544],[-76.58437666567247,39.28215045737991],[-76.5843634986807,39.28214655011781],[-76.58434940359273,39.28214575801316],[-76.5843354117179,39.28214732987536],[-76.58432147641984,39.28214874069943],[-76.58430798533865,39.28214535202471],[-76.58399498858773,39.28199298142766],[-76.58396160106386,39.28197247259434],[-76.5839364923104,39.28195714544319],[-76.5838942161015,39.28193111405108],[-76.5838583565486,39.28190919844577],[-76.58379956046655,39.28187312262724],[-76.58376224364753,39.28185029025582],[-76.58373869891605,39.2818356856115],[-76.58377045163203,39.28180431194164],[-76.58380088363464,39.28177401900351],[-76.5838301635896,39.28174509924314],[-76.58385832325095,39.2817172771402],[-76.58387529257151,39.28170029841337],[-76.58386021553899,39.28169165982236],[-76.58383516467454,39.2816771543493],[-76.58381521914858,39.28166564848733],[-76.58380057666031,39.2816572258099],[-76.58383981775219,39.2816181501013],[-76.5838771974268,39.28158084769397],[-76.58390672309238,39.28155151443242],[-76.58395190294753,39.28150631020939],[-76.58398050076961,39.28147786269617],[-76.58396199752636,39.28146569269912],[-76.58395129241372,39.28145863152806],[-76.58396770669425,39.28144220839368],[-76.58399413488604,39.28141512685672],[-76.58403469794986,39.28137352191484],[-76.58407051541796,39.28133674536245],[-76.58410024559164,39.28130630393483],[-76.58413784717087,39.28126787086866],[-76.58418335585328,39.28122148141237],[-76.58418778137488,39.28121667348914],[-76.58415312463941,39.28119524233325],[-76.58410201623391,39.28116341665362],[-76.58406041607587,39.28113779305114],[-76.58402684628355,39.28117136724025],[-76.5839757122817,39.28122219008902],[-76.58393084545386,39.28126701711238],[-76.58389875114764,39.28129878415391],[-76.5838679486793,39.28132963968636],[-76.58381654039459,39.28138094700419],[-76.58377704764752,39.28142006775455],[-76.58373332698814,39.28146408086873],[-76.58367867849329,39.28151824287197],[-76.58363473452756,39.28156236685179],[-76.58357893158032,39.28161769750965],[-76.58354484554792,39.28165226146844],[-76.58351074038326,39.28163124373037],[-76.58348175899184,39.28161304552605],[-76.58344948733463,39.28159323228703],[-76.58343252757005,39.28158271157403],[-76.58339965940854,39.28161218058737],[-76.58338929228916,39.28162158292012],[-76.58334978137933,39.28159702667836],[-76.583316270315,39.28157650010521],[-76.58328914149379,39.28155981810445],[-76.58324841026656,39.2815350521245],[-76.58320628291969,39.2815090201072],[-76.58317284268546,39.28148848563674],[-76.58311607858606,39.28145367684819],[-76.58307246187834,39.28142687384685],[-76.58302815773972,39.28139990084663],[-76.58298962759903,39.28137613613105],[-76.58295618061554,39.28135558806229],[-76.58292080851933,39.28133385494916],[-76.58287315084378,39.28130461627076],[-76.58282552414572,39.28127543803382],[-76.58280071588582,39.28126014232816],[-76.58278185646569,39.28122974752685],[-76.58276855912203,39.28120823869698],[-76.58275387076483,39.28118459461796],[-76.5827346291432,39.28115317428212],[-76.58271468897276,39.28112110741509],[-76.58268115983002,39.28106707398013],[-76.58266512570677,39.28104109933538],[-76.58263835411545,39.28099980778035],[-76.58260619584171,39.28094997404983],[-76.5825898157364,39.28092450349278],[-76.5825678669562,39.28088970555041],[-76.58255898735693,39.28087558154311],[-76.58254844856638,39.2808584142626],[-76.58253801409934,39.28084144281758],[-76.58252599973649,39.28082213457935],[-76.58250410076312,39.28080882092036],[-76.5824814989812,39.28079499312518],[-76.58245103959656,39.28077654529925],[-76.58242241299814,39.28075921732513],[-76.58240346506498,39.2807476517116],[-76.58238063152784,39.28073342853808],[-76.58235702679667,39.28071888915212],[-76.58231510504029,39.2806931160562],[-76.5823035422802,39.28068590125503],[-76.58227855814532,39.28068596373564],[-76.58224046857589,39.2806860994025],[-76.58216937183657,39.28068635184722],[-76.58212664182741,39.28068663941297],[-76.58208705466319,39.28068719306137],[-76.58204722102029,39.28068768006362],[-76.58200045952621,39.28068823607834],[-76.58198527449748,39.28068836309286],[-76.58198227465606,39.28068664456868],[-76.58193586685286,39.28065825486608],[-76.58190256461199,39.28063783851731],[-76.58186927990255,39.28061740060298],[-76.58184577726522,39.28060306504937],[-76.58181215785621,39.28058239262914],[-76.58178973894519,39.28056864281598],[-76.58175636486344,39.28054843424559],[-76.58172884991582,39.28053151720391],[-76.58171054509039,39.28052039874474],[-76.58170623205692,39.28051436267887],[-76.58168738431566,39.28050136418963],[-76.58167549326183,39.28049303571312],[-76.58165886932672,39.28048147285],[-76.58163250586628,39.28046328530526],[-76.58161105546345,39.2804484408755],[-76.58159445758788,39.28043658985136],[-76.58158894350989,39.28038029767873],[-76.58158074108771,39.2803754007312],[-76.58157278764793,39.28037073526566],[-76.58155398544388,39.28035965554389],[-76.58152584912601,39.28034317581253],[-76.58143822398472,39.28029177406166],[-76.5814150610681,39.28027803863847],[-76.58137844684755,39.28025661589136],[-76.58133561740577,39.28023137245751],[-76.5813212189319,39.28022294402975],[-76.58131939885129,39.28022183951067],[-76.5813076858319,39.28022342273794],[-76.58128361289184,39.28022661840959],[-76.58124570721822,39.28023157349654],[-76.58123318946313,39.28022399217576],[-76.58120203554471,39.28020529653684],[-76.58117503293076,39.28018900451825],[-76.58113416613836,39.28016448952034],[-76.58110592795281,39.28014742923144],[-76.58108094575917,39.28013247302325],[-76.58104275614041,39.2801093655269],[-76.58099993251173,39.28008376168393],[-76.58092059007924,39.28003632632633],[-76.58088055956215,39.2800127149863],[-76.58084436977377,39.27999130259207],[-76.58080888174169,39.27997019174456],[-76.58077134517086,39.27994800526836],[-76.58072572381022,39.27992104379469],[-76.58061962892214,39.27985823667292],[-76.58059634820688,39.27984448084804],[-76.5805900650107,39.27985079528919],[-76.58057787157382,39.27986326876929],[-76.58056314384108,39.27987821480378],[-76.58054379165253,39.27989786973126],[-76.58052672965346,39.27991517103048],[-76.58051453220817,39.2799275345963],[-76.58048251489309,39.27996004052264],[-76.58044625654286,39.27999689279172],[-76.58042047608146,39.28002307599503],[-76.58041999452423,39.28002356429056],[-76.58040282276394,39.28004099308782],[-76.5803778101445,39.28006628906944],[-76.58035393447098,39.28009060907618],[-76.5803197019397,39.28012530490732],[-76.58030170075371,39.28014363329164],[-76.58027793836079,39.2801677996566],[-76.58025315982832,39.28019289017258],[-76.58022036370164,39.28022613186919],[-76.58019745809621,39.2802494581643],[-76.5801753944763,39.28027190651694],[-76.58014835159389,39.28029947052217],[-76.58013631067871,39.28029202049873],[-76.57995576202038,39.28018283830725],[-76.57991145574789,39.28015596859561],[-76.57992328703369,39.28013911257302],[-76.5799501122459,39.28010074857789],[-76.58002704283815,39.2799908538989],[-76.58004264574188,39.27996846984745],[-76.58006225453708,39.27994053879733],[-76.58009483591054,39.27989402811727],[-76.58010480434847,39.27987975871614],[-76.58010393995291,39.27987541304169],[-76.58011947123832,39.27983927135099],[-76.58011909471882,39.27982592788494],[-76.58011905734419,39.27982460542941],[-76.58011132561026,39.27979856371868],[-76.58007905863607,39.27976631180042],[-76.58000105333382,39.2797187085481],[-76.57994748539902,39.27969894698735],[-76.57983839504946,39.27966420436277],[-76.57971132987419,39.27965215783328],[-76.57960242606772,39.27963232150411],[-76.5795795054968,39.27962961554012],[-76.57958058034761,39.27962386620557],[-76.57958142047752,39.27961841418379],[-76.57958224902288,39.2796129612198],[-76.57958306946058,39.27960750732603],[-76.57958388642662,39.27960205251906],[-76.57958470222823,39.27959659860861],[-76.57958552150664,39.27959114471066],[-76.57958634773875,39.27958569083756],[-76.57958718439083,39.27958023880326],[-76.57958803726308,39.27957478772777],[-76.57958890287327,39.2795693384994],[-76.57958977891406,39.27956388930836],[-76.57959065726733,39.27955844102631],[-76.57959153446147,39.27955299274012],[-76.57959240470701,39.27954754352826],[-76.57959326337335,39.27954209247343],[-76.57959410813187,39.27953664136882],[-76.57959494594174,39.27953118933852],[-76.57959578259789,39.27952573640331],[-76.57959662619702,39.27952028529451],[-76.57959748022682,39.27951483422302],[-76.57959835278935,39.27950938501937],[-76.57959923808981,39.27950393766283],[-76.57960013034393,39.27949849033114],[-76.57960102375159,39.27949304390433],[-76.57960191368753,39.27948759656433],[-76.57960279435686,39.27948214829039],[-76.57960365070369,39.27947669722708],[-76.57960449777853,39.27947124613053],[-76.57960535411978,39.27946579596796],[-76.57960621394309,39.27946034491706],[-76.57960707376094,39.27945489476687],[-76.57960793357866,39.27944944461668],[-76.57960879339623,39.27944399446645],[-76.57960965321369,39.27943854431624],[-76.57961051303101,39.27943309416599],[-76.57961137284819,39.27942764401573],[-76.57961223382421,39.2794221938696],[-76.57961309364114,39.27941674371932],[-76.57961395345792,39.27941129356901],[-76.5796148144336,39.27940584342283],[-76.57961567425012,39.27940039327249],[-76.57961653522547,39.27939494312628],[-76.57961739504172,39.27938949297592],[-76.57961825601687,39.27938404282969],[-76.57961911583287,39.2793785926793],[-76.57961997680769,39.27937314253306],[-76.57962083662342,39.27936769238261],[-76.57962169643902,39.27936224223222],[-76.57962255741344,39.27935679208591],[-76.57962341722879,39.27935134193543],[-76.579624278203,39.2793458917891],[-76.57962513801806,39.27934044163861],[-76.57962599783301,39.27933499148808],[-76.57962685880678,39.27932954134171],[-76.57962771862145,39.27932409119117],[-76.57962857727703,39.27931864103646],[-76.57962943361453,39.27931319087343],[-76.57963028879828,39.27930773980548],[-76.57963114282295,39.27930228873341],[-76.57963199800109,39.2792968385662],[-76.57963285665598,39.27929138841141],[-76.57963371878769,39.27928593826906],[-76.57963458902671,39.27928048905649],[-76.57963548011637,39.27927504172006],[-76.57963637699541,39.27926959530505],[-76.57963725881832,39.27926414703462],[-76.57963810820607,39.27925869594583],[-76.57963892631747,39.27925324204279],[-76.5796397258959,39.27924778627187],[-76.57964051968474,39.27924232957947],[-76.57964132389885,39.27923687382512],[-76.57964214895824,39.27923142084764],[-76.57964301108852,39.27922597070512],[-76.57964391723276,39.27922052522396],[-76.57964486044246,39.27921508347846],[-76.57964582334387,39.27920964360492],[-76.57964679203994,39.2792042037521],[-76.57964775146412,39.27919876386614],[-76.57964868540685,39.27919332118663],[-76.579649577648,39.27918787475482],[-76.57965040734206,39.2791824217938],[-76.57965119418085,39.2791769641756],[-76.57965196827089,39.27917150651177],[-76.57965276205793,39.27916604981916],[-76.5796535766903,39.27916059590343],[-76.57965439943524,39.27915514201668],[-76.57965615297427,39.27915064537056],[-76.57966209305948,39.27914923351178],[-76.57966397069428,39.27914394013307],[-76.57966583211923,39.279138643994],[-76.57966768544715,39.27913334512363],[-76.5796695341496,39.27912804443514],[-76.57967138631803,39.27912274556053],[-76.57967324195772,39.27911744759905],[-76.57967509876146,39.27911214874096],[-76.5796769544006,39.27910685077948],[-76.57967881003948,39.27910155281788],[-76.57968066568341,39.27909625395559],[-76.57968251669121,39.2790909550766],[-76.57968435728404,39.27908565345803],[-76.57968620134815,39.27908035275263],[-76.57968806624667,39.27907505662552],[-76.57969002142691,39.27906978063828],[-76.57969221022168,39.27906458925808],[-76.57969795226114,39.27906139137363],[-76.57970369545376,39.27905819439378],[-76.57970944094774,39.27905500012418],[-76.5797151876002,39.27905180585845],[-76.57972093540043,39.27904861339807],[-76.5797266843591,39.27904542094154],[-76.5797324333119,39.27904222938547],[-76.5797381834232,39.27903903783329],[-76.57974393237498,39.27903584627668],[-76.57974968132623,39.27903265471975],[-76.57975543028232,39.27902946226183],[-76.5797611780896,39.27902626799798],[-76.57976692473741,39.27902307372968],[-76.57977267023637,39.27901987765543],[-76.57977841342759,39.27901667977118],[-76.57978415547529,39.27901347918022],[-76.5797898952099,39.27901027767992],[-76.57979563033479,39.27900707165911],[-76.57980134934039,39.27900384756499],[-76.57980705338024,39.27900060630254],[-76.57981274934953,39.27899735780483],[-76.57981844647188,39.27899411021169],[-76.57982415280148,39.27899087346044],[-76.57982986153377,39.27898762230529],[-76.57983598846937,39.27898499057022],[-76.57984284586874,39.27898543936011],[-76.57984974944056,39.2789867026058],[-76.57985663583084,39.27898793156061],[-76.57986351750019,39.27898917491032],[-76.57987040745324,39.27899038946482],[-76.57987731516965,39.27899154012818],[-76.57988423471065,39.27899265119979],[-76.57989115661243,39.27899375507332],[-76.57989807023634,39.27899488684052],[-76.57990496495435,39.27899607979167],[-76.57991182770327,39.27899738702517],[-76.57991867392823,39.27899874464201],[-76.57992553549195,39.27900005637427],[-76.57993242427746,39.2790012727225],[-76.5799393225269,39.27900245667664],[-76.57994622668342,39.27900362173538],[-76.57995313437038,39.27900477779877],[-76.57996004089324,39.2790059347583],[-76.57996694386478,39.27900710431544],[-76.57997384091908,39.27900829456861],[-76.57998073442205,39.27900949741942],[-76.57998762792528,39.27901070026977],[-76.57999452497494,39.27901189142245],[-76.58000142911729,39.2790130591802],[-76.58000833447213,39.27901421793429],[-76.58001524216641,39.27901537309324],[-76.58002214987164,39.27901652645031],[-76.58002905759311,39.2790176771047],[-76.58003596648433,39.27901882596141],[-76.58004287538118,39.27901997391689],[-76.58004978544791,39.27902112007469],[-76.58005669551481,39.27902226623203],[-76.58006360442832,39.27902341148408],[-76.58007051450633,39.27902455583914],[-76.58007742457924,39.27902570109452],[-76.58008433464704,39.27902684725026],[-76.58009124355078,39.27902799430214],[-76.58009815244941,39.27902914225441],[-76.58010506134293,39.27903029110698],[-76.58011196906169,39.27903144265727],[-76.58011887677006,39.27903259600866],[-76.58012578329833,39.27903375295846],[-76.58013268981621,39.27903491170935],[-76.58013959515399,39.27903607405866],[-76.58014649815274,39.27903724000228],[-76.58015340112505,39.27903841044918],[-76.58016030291738,39.27903958449457],[-76.58016720352423,39.27904076303912],[-76.58017410178148,39.27904194697943],[-76.58018099883726,39.27904313812115],[-76.58018789353279,39.27904433646013],[-76.58019478703226,39.27904554109983],[-76.58020167818201,39.27904675113531],[-76.58020856814107,39.27904796657069],[-76.58021545575582,39.27904918650112],[-76.58022234334412,39.27905041093486],[-76.58022922975772,39.2790516380663],[-76.5802361161556,39.2790528678996],[-76.58024300138403,39.27905409952977],[-76.58024988544314,39.27905533295697],[-76.58025677065611,39.27905656728858],[-76.58026365471035,39.27905780161571],[-76.58027053877012,39.27905903504165],[-76.58027742399447,39.27906026757059],[-76.5802843092297,39.27906149829765],[-76.58029119563479,39.27906272722691],[-76.58029808322041,39.27906395255697],[-76.58030497082756,39.27906517428365],[-76.58031186896156,39.27906637983377],[-76.5803184987553,39.27906494608558],[-76.58032442954763,39.27906196683004],[-76.58033027866557,39.27905888369447],[-76.58033610246692,39.27905576984209],[-76.58034189287085,39.27905261983959],[-76.58034764063224,39.27904942915004],[-76.58035325509864,39.27904604431961],[-76.58035669849565,39.27904153118136],[-76.58035701488245,39.27903604755692],[-76.58035736024331,39.27903056403604],[-76.58035788288319,39.27902508835462],[-76.58035816799369,39.27901960191618],[-76.58035845194522,39.27901411547352],[-76.58035873474306,39.27900862812603],[-76.58035901753554,39.27900314167923],[-76.58035929916896,39.27899765522831],[-76.5803595796434,39.27899216877321],[-76.5803598601178,39.27898668231816],[-76.58036013827957,39.27898119495399],[-76.58036041643592,39.27897570849063],[-76.58036069343335,39.2789702220231],[-76.58036097043599,39.27896473465479],[-76.5803612451154,39.27895924817896],[-76.58036151980001,39.27895376080239],[-76.58036179332035,39.27894827432238],[-76.58036206568698,39.27894278693748],[-76.58036233805358,39.27893729955256],[-76.5803626092558,39.27893181306426],[-76.58036287930442,39.27892632567105],[-76.58036314818865,39.27892083917445],[-76.58036341591924,39.27891535177294],[-76.58036368364976,39.27890986437146],[-76.58036395021594,39.2789043778665],[-76.58036421562851,39.27889889045672],[-76.58036447988204,39.27889340304273],[-76.58036474413016,39.27888791652952],[-76.58036501883022,39.27888242645055],[-76.58036562904063,39.27887684118844],[-76.58036552682195,39.27887139299958],[-76.58036300080244,39.27886639734266],[-76.58035860099432,39.27886193995376],[-76.58035358637757,39.27885796678095],[-76.58034813359639,39.27885420101981],[-76.58034293624578,39.27885035870526],[-76.58033868212036,39.27884615675243],[-76.58033565524013,39.27884119173293],[-76.58033316118653,39.27883529902812],[-76.58033170063177,39.278829264092],[-76.58033187594333,39.27882392228406],[-76.58033438448075,39.27882011650917],[-76.58034011680641,39.2788181607128],[-76.58034780564954,39.27881715951074],[-76.58035575343638,39.27881607546222],[-76.58036244413449,39.27881394203512],[-76.58036876096615,39.27881094253801],[-76.58037438267777,39.27880730912131],[-76.580378319351,39.27880306617219],[-76.5803805016875,39.27879778107636],[-76.58038114502048,39.2787918860694],[-76.58037999966618,39.27878644586369],[-76.58037665158625,39.2787820958206],[-76.58037142486577,39.27877832095962],[-76.5803655806302,39.27877470422838],[-76.58036034511866,39.27877084826667],[-76.58035553487429,39.27876681006816],[-76.58035084567391,39.27876268582852],[-76.58034637388171,39.2787584470676],[-76.58034231238319,39.27875381433677],[-76.58034141771182,39.27874851284325],[-76.58034174664459,39.2787430634923],[-76.58034243519076,39.278737558678],[-76.5803432327377,39.27873204434474],[-76.58034391652524,39.27872656023101],[-76.58034474394387,39.27872109014189],[-76.58034566986331,39.27871562220623],[-76.58034648334748,39.27871015657112],[-76.58034696998884,39.27870469247056],[-76.58034694899494,39.27869922835782],[-76.58034664183918,39.27869374610816],[-76.58034613307242,39.27868825503126],[-76.58034541681464,39.27868276951838],[-76.58034448950379,39.27867730396901],[-76.58034334523855,39.27867187637737],[-76.5803419793085,39.27866649933731],[-76.58034043006597,39.27866115497052],[-76.58033873004707,39.27865582898111],[-76.5803368966416,39.27865052053033],[-76.58033494142312,39.27864523236192],[-76.58033288060646,39.27863996633522],[-76.58033072809381,39.27863472340079],[-76.58032849778739,39.27862950450898],[-76.58032620357875,39.27862431241168],[-76.58032389200203,39.27861911755002],[-76.58032157591235,39.2786139019546],[-76.58031922389527,39.27860868623075],[-76.58031680339346,39.27860348827745],[-76.58031427952098,39.2785983277868],[-76.58031162202755,39.27859322446765],[-76.58030879720235,39.2785881953139],[-76.58030577130766,39.27858326182348],[-76.58030251295042,39.27857844099866],[-76.58029895602205,39.27857374071012],[-76.58029506463765,39.27856915362342],[-76.58029087815906,39.27856468708536],[-76.58028643942521,39.27856034845513],[-76.58028178896234,39.27855614418277],[-76.58027696960922,39.27855208162755],[-76.5802720207278,39.27854816813614],[-76.5802669248378,39.27854441985986],[-76.58026158218888,39.27854084995374],[-76.58025602648682,39.27853744232435],[-76.58025030305882,39.2785341755154],[-76.5802444537285,39.27853103256172],[-76.5802385226695,39.27852799110202],[-76.58023255286447,39.27852503417545],[-76.5802265641649,39.27852213663152],[-76.58022053232862,39.2785192821698],[-76.58021446084312,39.27851646900125],[-76.58020835201569,39.2785136989356],[-76.58020220816415,39.27851097198118],[-76.58019603044221,39.27850828904284],[-76.5801898223267,39.27850565013298],[-76.58018358497125,39.27850305615652],[-76.58017732300632,39.27850050803075],[-76.58017103759619,39.27849800485905],[-76.58016473105349,39.27849554755053],[-76.58015832732106,39.27849325833722],[-76.58015178546766,39.27849119922558],[-76.58014515583469,39.27848928482293],[-76.58013848992796,39.2784874288399],[-76.58013183692998,39.2784855458797],[-76.58012525065922,39.27848355056211],[-76.58011870895693,39.27848146622775],[-76.58011216501171,39.27847936927431],[-76.58010566087121,39.27847720490544],[-76.58009923857239,39.27847492012636],[-76.58009293900396,39.27847246013652],[-76.58008665643968,39.27846986869555],[-76.58008044200159,39.27846712436779],[-76.58007448635034,39.27846412785007],[-76.58006897898758,39.27846077983501],[-76.58006378074052,39.27845690057296],[-76.58005907029111,39.27845245647374],[-76.5800557760343,39.2784476346127],[-76.58005459392126,39.27844253566153],[-76.58005497277367,39.27843707568014],[-76.58005631326927,39.27843147231223],[-76.58005804955701,39.27842596674123],[-76.58005998716354,39.27842071500482],[-76.58006250815288,39.27841558875882],[-76.58006527805603,39.27841050754022],[-76.58006792876233,39.27840539617011],[-76.58007027737017,39.27840021796406],[-76.58007257159201,39.27839502515129],[-76.58007483342145,39.27838982231429],[-76.58007707210345,39.27838461398984],[-76.58007929689903,39.27837940201268],[-76.58008151591014,39.27837418821325],[-76.58008374070499,39.27836897623594],[-76.58008595277242,39.27836376061007],[-76.58008812781155,39.27835853494334],[-76.58009027161729,39.27835329925649],[-76.58009239459351,39.27834805809054],[-76.58009450137602,39.27834281146206],[-76.58009660236877,39.27833756391209],[-76.58009870336126,39.27833231636206],[-76.58010081360905,39.27832707154739],[-76.58010293890158,39.27832183038949],[-76.58010508732492,39.27831659742112],[-76.58010726815067,39.27831137267542],[-76.58010948831119,39.27830615978026],[-76.58011175474962,39.27830096056194],[-76.58011407556786,39.27829577685096],[-76.58011645885735,39.27829061227931],[-76.58011891157166,39.27828546687182],[-76.58012144179695,39.27828034516128],[-76.5801240333451,39.27827524078439],[-76.58012664687563,39.27827014279138],[-76.58012927891707,39.27826505026906],[-76.58013192831041,39.2782599632133],[-76.58013459621471,39.2782548816282],[-76.58013728031723,39.27824980460479],[-76.5801399783055,39.27824473123398],[-76.5801426924921,39.27823966242487],[-76.58014541824114,39.27823459816081],[-76.58014815788127,39.27822953664869],[-76.58015090793026,39.27822447877669],[-76.58015366838806,39.27821942454488],[-76.58015643810647,39.27821437214771],[-76.58015921707475,39.27820932338653],[-76.58016200299103,39.2782042755509],[-76.5801647958446,39.27819923044226],[-76.58016759448192,39.27819418715575],[-76.58017039774928,39.27818914478654],[-76.58017320448778,39.27818410333035],[-76.58017601469746,39.2781790627873],[-76.58017882606028,39.27817402314908],[-76.58018163742275,39.27816898351077],[-76.58018444994373,39.27816394387651],[-76.58018726131073,39.27815890333734],[-76.58019007035942,39.27815386278977],[-76.58019287593618,39.27814882132893],[-76.58019567804101,39.27814377895488],[-76.58019847552031,39.27813873476268],[-76.58020126605615,39.27813368874408],[-76.58020405080755,39.27812864090315],[-76.58020682746182,39.27812359033096],[-76.58020959485476,39.27811853792407],[-76.58021235299707,39.27811348188098],[-76.58021510072439,39.2781084230983],[-76.5802178357242,39.27810336066701],[-76.58022055915538,39.27809829459126],[-76.58022326870017,39.27809322486271],[-76.58022596320481,39.27808815057654],[-76.58022850730671,39.2780830316153],[-76.58023084778483,39.27807785247585],[-76.58023305868937,39.27807263414033],[-76.58023521290096,39.27806739938846],[-76.58023738215194,39.27806216919404],[-76.58023963701564,39.27805696452699],[-76.58024193816237,39.27805177263601],[-76.58024424624655,39.27804658347204],[-76.58024655780717,39.27804139432043],[-76.58024887052107,39.27803620607366],[-76.5802511809221,39.27803101691786],[-76.58025348437968,39.27802582593561],[-76.58025578320652,39.27802063403598],[-76.5802580774079,39.27801544031829],[-76.58026037044998,39.27801024659639],[-76.58026266117916,39.27800505196539],[-76.58026495190796,39.27799985733437],[-76.58026724263115,39.27799466360398],[-76.58026953451827,39.27798946897702],[-76.58027182755865,39.27798427525482],[-76.58027412407021,39.27797908244576],[-76.58027642289403,39.27797389054573],[-76.58027872634797,39.27796869956286],[-76.58028103327304,39.27796350949318],[-76.58028334366934,39.27795832033657],[-76.58028565637784,39.277953132089],[-76.58028797140393,39.2779479438496],[-76.58029028990119,39.27794275652335],[-76.58029267551581,39.27793758655137],[-76.58029503682417,39.27793241108793],[-76.58029708913017,39.27792716065755],[-76.5802988717741,39.27792184621004],[-76.58030068567737,39.27791653727877],[-76.5803025470226,39.27791124112768],[-76.58030440953185,39.27790594407998],[-76.58030627204081,39.27790064703224],[-76.58030813339055,39.27789534998032],[-76.58030999589896,39.27789005293245],[-76.58031185956071,39.27788475678946],[-76.58031372206857,39.27787945974156],[-76.58031558572972,39.2778741635985],[-76.58031744939595,39.27786886655466],[-76.58031931421556,39.27786357041566],[-76.58032117903485,39.27785827427664],[-76.58032304501285,39.27785297814171],[-76.5803249109905,39.27784768200676],[-76.58032677812687,39.27784238587592],[-76.58032864641656,39.27783709064989],[-76.58033051586494,39.27783179542796],[-76.58033238647192,39.27782650021018],[-76.58033425707337,39.27782120589304],[-76.58033612999776,39.27781591068347],[-76.58033773524272,39.27781060821206],[-76.58033774924726,39.27780510549007],[-76.58033795209596,39.27779961425193],[-76.58033772022299,39.2777941412774],[-76.58032671863208,39.2777924877983],[-76.58031978731344,39.27779142715271],[-76.58031285601625,39.27779036290379],[-76.58030592589425,39.2777892959563],[-76.58029899695802,39.2777882245088],[-76.58029206804331,39.27778714945797],[-76.58028514029307,39.27778607351008],[-76.58027821135747,39.27778500206141],[-76.58027128124715,39.27778393331038],[-76.58026435113706,39.27778286455898],[-76.58025742222874,39.27778178860531],[-76.580250498015,39.27778070275964],[-76.58024357740088,39.2777795962088],[-76.58023666626103,39.27777845546233],[-76.5802297586729,39.27777730211744],[-76.58022284870314,39.27777615957285],[-76.58021592807391,39.27777505572261],[-76.58020899086794,39.27777401126323],[-76.58020205007341,39.27777298570666],[-76.58019507107413,39.27777175734102],[-76.5801931699081,39.27777653540856],[-76.58019149377093,39.27778186915144],[-76.58018976668785,39.27778719460531],[-76.58018802919003,39.27779251731965],[-76.5801862916919,39.27779784003398],[-76.58018454840952,39.27780316092605],[-76.58018280049106,39.27780848180151],[-76.58018104447571,39.27781379994569],[-76.58017928035277,39.27781911716011],[-76.58017750899876,39.27782448118841],[-76.58017189513377,39.27782523307802],[-76.58016501712339,39.27782397714791],[-76.58015814384495,39.27782270502055],[-76.5801512693652,39.2778214400946],[-76.58014439488566,39.27782017516824],[-76.58013751925809,39.27781890843587],[-76.58013064477373,39.27781764440944],[-76.58012376795573,39.27781638307661],[-76.58011688993638,39.27781512894514],[-76.58011000954077,39.2778138847132],[-76.5801031244403,39.27781265217401],[-76.5800962369795,39.2778114268321],[-76.58008935066725,39.27781020329539],[-76.58008246321765,39.27780897615117],[-76.58007557927705,39.27780774361448],[-76.58006869535269,39.27780650837516],[-76.58006181143395,39.27780527223467],[-76.58005492751541,39.2778040360938],[-76.58004804359715,39.27780279995252],[-76.58004116084334,39.27780156291421],[-76.58003427693087,39.2778003258714],[-76.58002739417755,39.27779908883229],[-76.58002051026558,39.27779785178868],[-76.5800136275128,39.27779661474874],[-76.58000674359592,39.27779537860507],[-76.57999985849902,39.2777941460598],[-76.57999297457731,39.27779291081602],[-76.57999107552547,39.27779008553217],[-76.57999489155117,39.27778546474291],[-76.57999217522409,39.27778149887064],[-76.57998640026776,39.27777833455075],[-76.579980580984,39.27777521871329],[-76.57997493197324,39.27777192333154],[-76.57996934011395,39.27776856690191],[-76.57996376574592,39.27776519251923],[-76.57995817271808,39.27776183788637],[-76.57995255637849,39.27775850568896],[-76.57994693419671,39.27775518157732],[-76.57994130969224,39.27775185835782],[-76.5799364331574,39.27774807031616],[-76.57993351565557,39.27774304442356],[-76.57993028322693,39.27773816152698],[-76.5799270542809,39.27773327774195],[-76.57992390200697,39.27772836360504],[-76.57992075089778,39.27772344857147],[-76.57991760210689,39.27771853354609],[-76.57991445448071,39.277713617624],[-76.57991130686028,39.27770870080107],[-76.57990816155286,39.27770378488712],[-76.57990501625123,39.27769886807229],[-76.57990187095537,39.27769395035665],[-76.57989872681351,39.27768903354578],[-76.57989558267745,39.27768411583409],[-76.57989243970074,39.27767919812646],[-76.57988929672452,39.27767428041872],[-76.57988615374867,39.27766936271093],[-76.57988301077333,39.27766444500302],[-76.57987986779835,39.277659527295],[-76.57987672482388,39.27765460958691],[-76.57987358069086,39.27764969187459],[-76.57987043771186,39.27764477506709],[-76.57986729242077,39.27763985735044],[-76.57986414828373,39.27763494053857],[-76.57986275419798,39.27763276200637],[-76.57986100182926,39.27763002371833],[-76.57985785536985,39.27762510779875],[-76.57985470775199,39.27762019187492],[-76.57985156013453,39.27761527595102],[-76.5798484101943,39.27761036091948],[-76.57984525909553,39.27760544588369],[-76.57984210683294,39.27760053174441],[-76.57983895340654,39.27759561850165],[-76.57983579882159,39.27759070525464],[-76.57983264307815,39.2775857920034],[-76.57982948617088,39.27758087964862],[-76.57982632926405,39.27757596729382],[-76.5798231711934,39.27757105583549],[-76.5798200119642,39.27756614437293],[-76.57981685157652,39.27756123290613],[-76.57981369118394,39.27755632234001],[-76.57981053079713,39.27755141087304],[-76.57980737040543,39.27754650030669],[-76.57980420885518,39.27754158973612],[-76.57980104730544,39.27753667916546],[-76.57979784396488,39.27753178015514],[-76.57979466032144,39.27752688211597],[-76.57978884798216,39.27752846918702],[-76.57978252636583,39.27753092187235],[-76.57977621623718,39.27753339171296],[-76.57976990841527,39.27753586336302],[-76.57976359828035,39.2775383341037],[-76.57975728815039,39.27754080394325],[-76.57975097917355,39.2775432746874],[-76.57974466903732,39.27754574542705],[-76.57973836121322,39.2775482170754],[-76.57973205337265,39.27755069142563],[-76.57972574783889,39.27755316758535],[-76.57971944344762,39.27755564645104],[-76.57971314250604,39.2775581298326],[-76.57970684500883,39.27756061863076],[-76.5797005498077,39.27756311103983],[-76.57969425575978,39.27756560435345],[-76.57968796055241,39.27756809766262],[-76.5796816642017,39.27757058826501],[-76.57967536440579,39.27757307345019],[-76.57966906001096,39.27757555231318],[-76.57966275102794,39.27757802305257],[-76.57965643744078,39.27758048837052],[-76.57965012271021,39.27758295098176],[-76.57964380913285,39.27758541449757],[-76.57963749784621,39.27758788252505],[-76.57963119115753,39.27759035687399],[-76.57962488675965,39.2775928357346],[-76.57961858235598,39.27759531549565],[-76.57961227681429,39.27759779164922],[-76.5796059689756,39.27760026419115],[-76.57959965883462,39.27760273402224],[-76.57959334869318,39.27760520385294],[-76.57958703970492,39.27760767458824],[-76.57958073185914,39.27761014802958],[-76.57957442746307,39.27761262598673],[-76.57956812765427,39.27761511206685],[-76.57956183359707,39.27761760537334],[-76.57955554066633,39.27762010408816],[-76.57954924889941,39.27762260190596],[-76.57954295598378,39.27762509791786],[-76.57953665732109,39.2776275858019],[-76.57953035292192,39.27763006375667],[-76.57952403934149,39.27763252636529],[-76.5795176316135,39.2776348391095],[-76.57951129971337,39.27763726381966],[-76.57950433761313,39.27763690381072],[-76.57949734080773,39.27763614193596],[-76.57949034879839,39.27763535305498],[-76.57948335798551,39.27763455787253],[-76.57947636835311,39.27763375909085],[-76.57946937872089,39.27763296030873],[-76.57946238790313,39.27763216602578],[-76.57945539709092,39.27763137084168],[-76.57944840743777,39.27763057566126],[-76.57944141662585,39.27762978047634],[-76.5794344258034,39.27762898709248],[-76.57942743379547,39.27762819820777],[-76.57942044059673,39.27762741472299],[-76.57941344735011,39.27762663934447],[-76.57940645174833,39.27762587026245],[-76.57939945496108,39.27762510567963],[-76.57939245815795,39.27762434379861],[-76.57938546134966,39.27762358281792],[-76.57937846571112,39.27762282003946],[-76.57937146892448,39.27762205545497],[-76.57936447211662,39.27762129447304],[-76.57935747530892,39.27762053349066],[-76.57935047850671,39.27761977160716],[-76.57934348289028,39.27761900522368],[-76.57933648847036,39.27761823253866],[-76.57932949645389,39.27761744544961],[-76.57932251399215,39.27761661065385],[-76.57931553035564,39.27761577855573],[-76.57930854073234,39.27761497886329],[-76.57930154875389,39.27761418546736],[-76.57929455675423,39.27761339567401],[-76.57928756474945,39.27761260678097],[-76.5792805739197,39.2776118151894],[-76.5792735842865,39.27761101729639],[-76.57926659586579,39.27761021039966],[-76.57926056979841,39.27761109318164],[-76.57925670047098,39.27761570564959],[-76.57925252971675,39.2776201386862],[-76.57924789419069,39.27762262170332],[-76.57924141014044,39.27762021415114],[-76.57923496104029,39.27761797156376],[-76.57922851779402,39.27761571908858],[-76.5792237470766,39.27761852409425],[-76.5792191779274,39.27762271249598],[-76.57921471499967,39.27762696883538],[-76.57921030749235,39.27763126050299],[-76.5792059092239,39.27763555760814],[-76.5792015028691,39.27763985018033],[-76.57919709767269,39.27764414275645],[-76.5791926924704,39.27764843623321],[-76.57918828842655,39.27765272971393],[-76.57918388784827,39.27765702500844],[-76.57917949073027,39.27766132301742],[-76.57917509823146,39.27766562374513],[-76.57917071034659,39.27766992809225],[-76.57916632823982,39.27767423516221],[-76.57916195074692,39.27767854585159],[-76.5791575790322,39.27768285926375],[-76.57915321309027,39.27768717629952],[-76.57914838522055,39.27768711035971],[-76.57914286568892,39.27768368208842],[-76.57913739277737,39.27768020984644],[-76.57913191986636,39.2776767376042],[-76.57912643647201,39.27767327433173],[-76.57912092859073,39.27766983619276],[-76.57911538807252,39.27766642946326],[-76.57910984289238,39.27766302722068],[-76.57910432685736,39.27765959625776],[-76.57909883064245,39.27765614554876],[-76.57909334025487,39.27765268945588],[-76.57908785685352,39.27764922798308],[-76.57908237812586,39.27764576022149],[-76.57907690406127,39.27764228797245],[-76.57907143697761,39.2776388112444],[-76.5790659734033,39.27763532912405],[-76.57906051565101,39.2776318425205],[-76.57905506256175,39.27762835142957],[-76.57904961064261,39.27762485854105],[-76.57904416105262,39.27762136385905],[-76.57903871262209,39.27761786918101],[-76.57903326303853,39.27761437359779],[-76.5790278134448,39.27761087981582],[-76.57902236036408,39.27760738782258],[-76.57901691193574,39.27760389314346],[-76.57901146584719,39.27760039486945],[-76.57900602092343,39.27759689569857],[-76.57900057600021,39.27759339652744],[-76.57899512990791,39.27758989915343],[-76.57898967916431,39.27758640446472],[-76.57898422491239,39.27758291516777],[-76.57897876367528,39.27757943125014],[-76.57897329427801,39.27757595540989],[-76.57896781555093,39.27757248944435],[-76.57896232167799,39.2775690369357],[-76.57895681498239,39.27756559699155],[-76.5789513001266,39.27756216512475],[-76.57894577944461,39.27755873864145],[-76.57894025643456,39.27755531395098],[-76.5789347345893,39.27755188836372],[-76.57892921857673,39.27754845649173],[-76.57892371187901,39.27754501744674],[-76.57891821801032,39.27754156493604],[-76.57891273347251,39.27753810255007],[-76.57890725242811,39.27753463747409],[-76.57890176905029,39.27753117509178],[-76.57889627518378,39.27752772258003],[-76.57889058396637,39.27752432520789],[-76.57889092862187,39.27752054052859],[-76.57889532112353,39.27751624071205],[-76.57889971478896,39.27751193999882],[-76.57890410729495,39.27750763928121],[-76.57890849980039,39.27750333856343],[-76.57891289230525,39.27749903784554],[-76.57891728480963,39.2774947371274],[-76.57892167731349,39.27749043640917],[-76.57892606866318,39.27748613478582],[-76.57893046116595,39.2774818340672],[-76.57893485366816,39.2774775333484],[-76.57893924501626,39.27747323172455],[-76.57894363751745,39.27746893100547],[-76.57894802886446,39.27746462938126],[-76.57895242020567,39.27746032865765],[-76.57895681271056,39.27745602703727],[-76.57896120405069,39.27745172631334],[-76.57896559539557,39.27744742468848],[-76.57896998673995,39.27744312306345],[-76.57897437807848,39.27743882233896],[-76.57897877058069,39.27743452071774],[-76.57898316192352,39.27743021909218],[-76.57898755326575,39.27742591746647],[-76.57899194460211,39.27742161674136],[-76.57899633594333,39.27741731511529],[-76.57900072728395,39.27741301348908],[-76.57900511862407,39.27740871186268],[-76.57900950995834,39.27740441113686],[-76.57901390129739,39.27740010951012],[-76.57901829263589,39.27739580788325],[-76.57902268513284,39.27739150626034],[-76.57902707646493,39.27738720553381],[-76.5790314678019,39.27738290390639],[-76.57903585913292,39.27737860317956],[-76.57904025046876,39.27737430155184],[-76.57904464296304,39.27736999992808],[-76.57904903429248,39.27736569920071],[-76.57905342678571,39.2773613975766],[-76.57905781811408,39.27735709684892],[-76.57906221060088,39.27735279612524],[-76.57906660193353,39.27734849449645],[-76.57907099441928,39.27734419377242],[-76.57907538690449,39.27733989304823],[-76.57907977707663,39.2773355914148],[-76.57908416725357,39.27733128888042],[-76.57908855858355,39.27732698725085],[-76.57909295106663,39.27732268652594],[-76.57909734816884,39.27731838851972],[-76.57910174989033,39.27731409323219],[-76.57910615737917,39.277309802469],[-76.57911057180509,39.2773055144328],[-76.57911498968598,39.27730123001181],[-76.57911940987876,39.27729694649976],[-76.57912383237827,39.27729266479731],[-76.57912825603619,39.27728838309888],[-76.57913267853992,39.27728410049532],[-76.57913709873064,39.27727981698256],[-76.5791415166136,39.27727553165987],[-76.57914592871741,39.27727124361393],[-76.57915033735989,39.27726695285318],[-76.57915474138208,39.27726265937341],[-76.57915914309659,39.27725836408366],[-76.57916354134443,39.27725406697976],[-76.57916793728458,39.27724976806594],[-76.57917232975808,39.27724546733801],[-76.57917671876486,39.27724116479592],[-76.57918110546933,39.27723685954313],[-76.57918548292844,39.27723254975327],[-76.57918984422072,39.27722822999685],[-76.57919419742659,39.27722390570747],[-76.57919855410344,39.27721958233114],[-76.57920292347458,39.27721526800778],[-76.57920731479024,39.27721096637358],[-76.57921174536487,39.27720668920051],[-76.57921620826635,39.27720243286069],[-76.5792206838728,39.27719818377232],[-76.57922515370545,39.27719393106003],[-76.57923835012723,39.27718094786832],[-76.57924710734363,39.27717232919299],[-76.57925587148482,39.27716371504566],[-76.57925609822111,39.27715577291203],[-76.57924515013498,39.27714883113122],[-76.57923414843559,39.2771419405009],[-76.5792231444151,39.27713505076196],[-76.57921214039139,39.27712816192273],[-76.57920113521087,39.27712127307827],[-76.57919013002183,39.27711438603429],[-76.57917912367596,39.27710749898512],[-76.5791681184912,39.27710061193904],[-76.57915711214962,39.27709372488778],[-76.57914610581555,39.27708683693473],[-76.5791351006425,39.27707994898475],[-76.57912409547163,39.27707306103376],[-76.57911309262607,39.27706617218927],[-76.57910208863443,39.2770592815381],[-76.5790910869628,39.2770523908942],[-76.57908008879144,39.2770454966587],[-76.57906909296149,39.27703859882753],[-76.57905810062115,39.27703169920626],[-76.57904710828831,39.27702479868317],[-76.57903611595759,39.27701789815906],[-76.57902512362368,39.27701099853466],[-76.57901412780441,39.27700410069823],[-76.57900312731415,39.27699720914938],[-76.57899208953708,39.27699035169491],[-76.57898091973316,39.2769826974898],[-76.57897145238242,39.27698677104203],[-76.57896271233238,39.27699620585196],[-76.57895398859458,39.27700484444343],[-76.57894529256751,39.2770135002481],[-76.57893660693129,39.27702216239472],[-76.57892791436069,39.27703082091278],[-76.57891919869489,39.27703946493511],[-76.57891047494118,39.27704810442399],[-76.57890174772984,39.27705674029671],[-76.57889301589144,39.27706537435066],[-76.57888428057943,39.27707400749075],[-76.57887554527593,39.27708263882865],[-76.57886680419173,39.27709126744292],[-76.57885804347302,39.27709988427613],[-76.57884928853085,39.27710850383168],[-76.57884058786389,39.27711715600874],[-76.57883197148162,39.2771258616325],[-76.57882323270466,39.27713449025167],[-76.57881445696265,39.27714309802008],[-76.57880568122384,39.27715170488703],[-76.57879690548292,39.27716031175329],[-76.57878812858094,39.27716891861473],[-76.57877935168219,39.27717752457472],[-76.57877057362232,39.27718613052992],[-76.57876179440674,39.27719473557953],[-76.57875301518911,39.27720334062845],[-76.57874423481037,39.27721194567255],[-76.57873545443481,39.27722054981522],[-76.57872667290357,39.27722915305231],[-76.57871789021124,39.27723775628453],[-76.57870910636322,39.2772463586112],[-76.57870032251842,39.27725496003644],[-76.57869153635362,39.27726356145273],[-76.578682750192,39.27727216196757],[-76.57867396287469,39.27728076157678],[-76.5786651732374,39.27728936117704],[-76.57865638360333,39.27729795987585],[-76.57864759281351,39.27730655766911],[-76.578638799709,39.27731515455261],[-76.57863000660777,39.27732375053465],[-76.57862121119186,39.27733234560703],[-76.57861241577916,39.27734093977789],[-76.57860361458037,39.27734953212587],[-76.57859475565185,39.27735808733466],[-76.5785858424491,39.27736660901974],[-76.57857690615101,39.27737511620902],[-76.57856796870254,39.27738362159192],[-76.57855901854109,39.2773921206232],[-76.57855005684159,39.2774006106047],[-76.57854108012725,39.27740909152399],[-76.57853208839806,39.27741756338107],[-76.57852308743269,39.27742602889892],[-76.57851408184543,39.27743449169718],[-76.57850507279528,39.27744295178006],[-76.57849606027682,39.27745141004824],[-76.5784870442955,39.27745986560099],[-76.57847802599949,39.27746832024393],[-76.57846900654773,39.27747677398128],[-76.57845998478665,39.27748522590814],[-76.57845096186983,39.2774936769293],[-76.57844194547103,39.2775022009352],[-76.57843293545639,39.27751082044431],[-76.57842392304674,39.27751945255488],[-76.5784148994469,39.27752801706718],[-76.57840585470812,39.27753643287669],[-76.57839678119959,39.2775446188872],[-76.57838681420334,39.27754635581585],[-76.5783758218614,39.27753945433025],[-76.57836360105264,39.27753391219182],[-76.57835120878948,39.27752855319266],[-76.57833901477399,39.27752298862873],[-76.57832737007972,39.27751684414142],[-76.57832482208914,39.27751518749484],[-76.57831656506025,39.27750982171944],[-76.57830631748017,39.27750221850287],[-76.57829613876166,39.27749453446371],[-76.57828554262304,39.27748727318527],[-76.57827422704646,39.27748074524765],[-76.57826251268378,39.27747462482434],[-76.57825057679665,39.27746872699413],[-76.57823857914505,39.27746288658982],[-76.57822667948884,39.2774569384444],[-76.57821503177205,39.27745072097296],[-76.5782035648656,39.27744430688217],[-76.57819217846887,39.27743780210207],[-76.57818084807283,39.2774312353692],[-76.57816954917909,39.2774246336185],[-76.57815825611968,39.27741802558231],[-76.57814694439615,39.27741143819556],[-76.57813559065836,39.27740490019889],[-76.57812416924894,39.27739843852305],[-76.57811265681775,39.27739208190864],[-76.57810096586059,39.27738592822472],[-76.57808903453042,39.27738004840948],[-76.57807696083155,39.27737433292157],[-76.57806484511828,39.27736866682359],[-76.5780527877502,39.27736293427729],[-76.57804083549739,39.27735706609192],[-76.5780289253326,39.27735113680445],[-76.5780169824517,39.27734525243643],[-76.57800493436831,39.27733951901781],[-76.5779927051193,39.27733404256574],[-76.57798025158816,39.27732886255902],[-76.57796760301605,39.27732393406436],[-76.57795479183712,39.27731925990057],[-76.57794185164967,39.27731484198977],[-76.57792875640507,39.27731077301716],[-76.57791530237438,39.27730740084669],[-76.57790167334836,39.27730441717626],[-76.57788804735016,39.27730150917939],[-76.57787438476683,39.27729871184354],[-76.57786069272885,39.27729599546908],[-76.57784698655961,39.27729331687438],[-76.57783328390568,39.27729063198533],[-76.57781959183868,39.27728792101057],[-76.57780589979951,39.27728520553047],[-76.57779220657032,39.27728249544906],[-76.57777850862597,39.2772797988606],[-76.577764804754,39.27727712476832],[-76.57775109027035,39.27727448126235],[-76.57773736279822,39.27727187824247],[-76.57772361052302,39.27726935349839],[-76.57770983698585,39.27726689623363],[-76.57769605166729,39.27726447135237],[-76.5776822686836,39.27726204377565],[-76.57766849867434,39.27725957841183],[-76.57765475227906,39.27725704016927],[-76.57764104361419,39.27725439396903],[-76.57762738926409,39.27725157951942],[-76.57761380921509,39.27724854915178],[-76.57760027283612,39.27724538652718],[-76.57758675061235,39.27724218251673],[-76.5775732118536,39.27723903068961],[-76.57755962356264,39.27723602280516],[-76.57754595977623,39.27723323713657],[-76.57753225822918,39.27723056482698],[-76.57751853663794,39.27722795009269],[-76.57750479853303,39.27722538393864],[-76.57749104628043,39.27722285826653],[-76.57747728456967,39.27722036408555],[-76.57746351461317,39.27721789239244],[-76.5774497399307,39.2772154359937],[-76.57743596405807,39.27721298499367],[-76.57742218935604,39.27721053219467],[-76.57740841936044,39.27720806770102],[-76.57739463754038,39.27720564279689],[-76.5773808333098,39.27720328356638],[-76.57736701842441,39.27720096212802],[-76.5773532000041,39.27719865058372],[-76.5773393874867,39.27719632104372],[-76.57732559146889,39.27719394562246],[-76.57731182022974,39.27719149642599],[-76.57729808204809,39.27718894556047],[-76.57728438870659,39.27718626064069],[-76.57727075793282,39.27718338408152],[-76.57725718263902,39.27718033837659],[-76.57724364981412,39.27717716761661],[-76.57723014528791,39.27717391588808],[-76.57721665603302,39.27717062998386],[-76.57720317257406,39.27716734409897],[-76.57718979520793,39.27716375863965],[-76.57717648377415,39.27716000046927],[-76.57716310376011,39.27715647084477],[-76.57714952062597,39.27715357552692],[-76.57713566457711,39.27715155206631],[-76.57712164548762,39.27715004956004],[-76.57710760407299,39.27714859831531],[-76.5770936186122,39.27714650952871],[-76.57707959513608,39.27714360451036],[-76.57706593368961,39.2771429599128],[-76.57705296092932,39.27714713148234],[-76.57704024479578,39.2771525803587],[-76.5770270679206,39.27715113672144],[-76.57701386168257,39.27714723118591],[-76.57700066835001,39.27714329957316],[-76.57698744802511,39.27713942460991],[-76.57697417726594,39.27713565034924],[-76.5769608830503,39.27713192284232],[-76.57694760288825,39.2771281710639],[-76.57693432665552,39.27712434363382],[-76.57692514059838,39.27711698282145],[-76.57691457231262,39.27711013677084],[-76.57690247111307,39.27710419767244],[-76.5768897473467,39.27709926518703],[-76.57687564304763,39.2770963121125],[-76.5768594441237,39.27709536740258],[-76.57684446184703,39.27709407757682],[-76.5768341899917,39.27708999793584],[-76.5768307861871,39.2770816328774],[-76.57683219987604,39.27707040272716],[-76.57683578829429,39.27705811300527],[-76.57683892268317,39.27704655306879],[-76.57684150773653,39.27703576851341],[-76.57684451552014,39.27702503232067],[-76.57684784289948,39.27701434231751],[-76.57685138672417,39.27700369903299],[-76.57685507283324,39.27699310039851],[-76.57685894992315,39.27698254298627],[-76.57686296938864,39.27697201491128],[-76.57686707335282,39.27696150425511],[-76.57687120278544,39.27695099819435],[-76.57687529865616,39.27694048390558],[-76.57687930075973,39.27692995126358],[-76.57688319175519,39.27691939299969],[-76.57688703646204,39.27690882285901],[-76.57689091124624,39.27689826183413],[-76.57689489133615,39.27688772731064],[-76.57689979173225,39.27687737085061],[-76.57689869090626,39.2768682061032],[-76.57688509849007,39.2768639631761],[-76.57687164184608,39.27686066293695],[-76.57685795330575,39.27685796357193],[-76.57684424592811,39.2768553136796],[-76.57683052440798,39.2768527033683],[-76.57681678996332,39.27685012273412],[-76.57680304844787,39.27684756188967],[-76.57678930107431,39.27684501183169],[-76.57677555369638,39.27684246267285],[-76.57676180869642,39.27683990361253],[-76.57674806959952,39.27683732655655],[-76.57673434111133,39.27683471981196],[-76.57672062444446,39.27683207437546],[-76.5767069254474,39.27682938126047],[-76.57669324650253,39.27682662966642],[-76.57667958407389,39.27682382948893],[-76.57666592283751,39.27682102390961],[-76.5766522639308,39.27681821653553],[-76.57663860504671,39.2768154055569],[-76.5766249473387,39.2768125918786],[-76.57661128964796,39.27680977549648],[-76.5765976331387,39.27680695551396],[-76.57658397895916,39.2768041337367],[-76.57657032364325,39.2768013083507],[-76.57655667065706,39.27679848116995],[-76.57654301769345,39.27679565038463],[-76.5765293659006,39.27679281780045],[-76.57651571528389,39.27678998251661],[-76.57650206584334,39.27678714453314],[-76.57648841642003,39.27678430384581],[-76.57647476817286,39.27678146045885],[-76.57646111994292,39.27677861436804],[-76.57644747404269,39.2767757664825],[-76.57643382815969,39.27677291589317],[-76.57642018229386,39.27677006260002],[-76.57640653875784,39.27676720751212],[-76.57639289524437,39.27676434881966],[-76.57637925289627,39.27676148922903],[-76.57636561056546,39.2767586269346],[-76.57635196941081,39.27675576194053],[-76.57633832942692,39.27675289514755],[-76.57632469061924,39.27675002565491],[-76.57631105182337,39.27674715435923],[-76.57629741420371,39.27674428036388],[-76.5762837765959,39.27674140456546],[-76.57627014015887,39.27673852696816],[-76.57625650489261,39.27673564757193],[-76.57624286964366,39.2767327654719],[-76.57622923556544,39.27672988157296],[-76.57621560266342,39.27672699497437],[-76.57620196976791,39.2767241074735],[-76.5761883380486,39.27672121727294],[-76.57617470749463,39.27671832617423],[-76.57616107695799,39.27671543237172],[-76.57614744643315,39.27671253676615],[-76.57613381823808,39.27670963936584],[-76.57612019005492,39.27670674016248],[-76.57610656187822,39.27670384005677],[-76.5760929360474,39.27670093545408],[-76.57607932672791,39.2766979831689],[-76.57606573978971,39.27669497061163],[-76.57605217052725,39.27669190947522],[-76.57603861424562,39.27668880965123],[-76.57602506854619,39.27668568464241],[-76.57601152758592,39.27668254253462],[-76.57599798897165,39.27667939592988],[-76.57598444800307,39.27667625562043],[-76.57597090113875,39.27667313240264],[-76.57595734483191,39.27667003797372],[-76.57594377205365,39.27666698491894],[-76.57593009080335,39.2766642413342],[-76.57591946773631,39.27666174028656],[-76.57591624806611,39.27666098192707],[-76.57590882145126,39.27666952229058],[-76.57590449852943,39.27667999789497],[-76.57590078677138,39.27669060091235],[-76.57589718965441,39.27670121965647],[-76.57589365040739,39.27671185122018],[-76.57589014819656,39.27672249102432],[-76.57588665755236,39.27673313447321],[-76.57588315764649,39.27674377608697],[-76.57587962533806,39.27675440947668],[-76.57587603746458,39.27676503185646],[-76.57587236394249,39.27677563501074],[-76.57586848322948,39.27678619417996],[-76.57586444278779,39.27679671854316],[-76.57586035257557,39.2768072319173],[-76.57585629477448,39.27681775171363],[-76.57585221266696,39.27682826601743],[-76.57584810624765,39.27683877572947],[-76.57584398247012,39.27684928087483],[-76.57583985058422,39.27685978508995],[-76.57583571869714,39.2768702893049],[-76.5758315983873,39.27688079536298],[-76.57582749659761,39.27689130509086],[-76.57582342258337,39.27690182122423],[-76.5758193856106,39.27691234469732],[-76.57581539377566,39.27692287824171],[-76.5758114575036,39.27693342279575],[-76.57580758489085,39.27694398109103],[-76.57580393220455,39.27695458521872],[-76.57580059319989,39.27696525533423],[-76.57579744749883,39.27697596578142],[-76.57579437472874,39.27698669000339],[-76.57579125565969,39.27699740414962],[-76.57578836693709,39.27700816596748],[-76.57578537989831,39.27701889500261],[-76.57577936626926,39.27702409501864],[-76.5757781512016,39.27702514452533],[-76.57576471668735,39.27702027870942],[-76.57575113889688,39.27701727875997],[-76.5757374976796,39.27701441999995],[-76.57572381535675,39.27701165206715],[-76.57571011773729,39.27700892281039],[-76.57569643061386,39.2770061827808],[-76.57568265581281,39.27700376310522],[-76.57567909909683,39.27701440090394],[-76.57567521601878,39.27702496095839],[-76.57567130516291,39.27703551460701],[-76.5756673769434,39.27704606458965],[-76.57566344524592,39.27705661455959],[-76.57565952049551,39.27706716545525],[-76.5756556154189,39.27707772092564],[-76.57565174391239,39.2770882828225],[-76.57564791639041,39.27709885388574],[-76.5756441467493,39.27710943596716],[-76.57564044539797,39.27712003270739],[-76.57563690494344,39.27713066245636],[-76.57563355432136,39.27714133162395],[-76.57563034144451,39.27715202921286],[-76.57562721192916,39.27716274061425],[-76.57562411020574,39.27717345571904],[-76.57562161736463,39.27718429282546],[-76.57561843443972,39.27719540757637],[-76.57560879016521,39.27719957119616],[-76.57559490599175,39.27719547389066],[-76.575581184105,39.27719214642337],[-76.57556753944881,39.27718927682225],[-76.575553894756,39.2771864135248],[-76.57554031591306,39.277183391929],[-76.57552663650763,39.27718013216625],[-76.57551550092299,39.27717378926851],[-76.57550597049472,39.27716570378572],[-76.57549302624075,39.27716180172803],[-76.57547944342151,39.27715867111824],[-76.57546556956032,39.27715595200532],[-76.57545174756115,39.27715328171957],[-76.57543807210089,39.27715052638921],[-76.575424382508,39.27714780883825],[-76.57541067995231,39.27714512726946],[-76.5753969655981,39.27714248078623],[-76.57538324063118,39.27713986488906],[-76.57536950621598,39.27713727868139],[-76.57535576468636,39.27713471946932],[-76.57534201489426,39.27713218544719],[-76.57532826033803,39.2771296730246],[-76.57531449752464,39.2771271848912],[-76.57530072876662,39.27712472195611],[-76.57528695176217,39.2771222815087],[-76.57527316884003,39.27711986175586],[-76.57525938001091,39.27711746089614],[-76.57524558643912,39.27711507803291],[-76.57523178814625,39.27711270956325],[-76.57521798630199,39.27711035368983],[-76.57520418207072,39.27710800951611],[-76.57519037547387,39.27710567343907],[-76.5751765582157,39.27710337605474],[-76.57516271016269,39.27710118935153],[-76.5751488455349,39.27709906113647],[-76.57513498090799,39.27709693291973],[-76.57512113402183,39.2770947453151],[-76.57510732261662,39.27709243893612],[-76.57509355856759,39.27708996608526],[-76.57507983590753,39.27708735556546],[-76.5750661392899,39.27708465416097],[-76.57505245685562,39.2770819068672],[-76.57503877442778,39.27707915867104],[-76.57502507782409,39.27707645546028],[-76.57501135757339,39.27707383052893],[-76.57499762905469,39.27707123168825],[-76.57498389698465,39.27706864544378],[-76.57497016139018,39.2770660672919],[-76.57495642343038,39.27706349723668],[-76.57494268428023,39.27706093258015],[-76.57492894511488,39.27705837062426],[-76.57491520362184,39.27705581045981],[-76.57490146445846,39.27705324850071],[-76.57488772415337,39.27705068383354],[-76.57487398735846,39.27704811377288],[-76.57486946740794,39.27704734257156],[-76.57486601724274,39.27704675359375],[-76.57486256591321,39.27704616551242],[-76.57485911574271,39.27704557743513],[-76.57485566557223,39.27704498935779],[-76.57485221540186,39.2770444012803],[-76.57484876407257,39.2770438131985],[-76.57484531390232,39.27704322512086],[-76.57484186372665,39.27704263794384],[-76.57483841239758,39.27704204986176],[-76.57483496222746,39.27704146178377],[-76.57483151205201,39.27704087460643],[-76.57482806072306,39.2770402865241],[-76.57482461054775,39.27703969934651],[-76.57482115921353,39.27703911216469],[-76.57481770904371,39.27703852408621],[-76.57481425886853,39.27703793690837],[-76.57481080753452,39.27703734972624],[-76.57480735736483,39.27703676164744],[-76.57480390603089,39.27703617446511],[-76.57480045585598,39.27703558728687],[-76.57479700452754,39.27703499920355],[-76.57479355435274,39.27703441202512],[-76.57479010418339,39.2770338239458],[-76.57478665284974,39.27703323676298],[-76.57478320268049,39.2770326486835],[-76.57477975250588,39.27703206150461],[-76.57477630117778,39.27703147342073],[-76.57477285100873,39.27703088534093],[-76.57476940083973,39.27703029726103],[-76.5747659495118,39.27702970917681],[-76.57476249934291,39.27702912109669],[-76.57475904917403,39.27702853301649],[-76.57475559901066,39.27702794403544],[-76.57475214884188,39.27702735595502],[-76.57474869751971,39.27702676696959],[-76.57474524735646,39.2770261779882],[-76.57474179718791,39.27702558990748],[-76.57473834703016,39.27702500002519],[-76.57473489686713,39.27702441104351],[-76.57473144670415,39.27702382206173],[-76.57472799654659,39.27702323217912],[-76.57472454754804,39.27702264230062],[-76.57472109739062,39.27702205241781],[-76.57471764723863,39.27702146163411],[-76.57471419708135,39.27702087175111],[-76.57471074808842,39.27702028097146],[-76.57470729793658,39.27701969018746],[-76.57470384778487,39.27701909940341],[-76.57470039879753,39.27701850772267],[-76.57469694865134,39.27701791603765],[-76.57469349966409,39.27701732435673],[-76.57469005067686,39.27701673267573],[-76.57468660053624,39.27701614008962],[-76.57468315155458,39.27701554750765],[-76.57467970256759,39.27701495582635],[-76.57467625358603,39.27701436324418],[-76.57467280344558,39.27701377065767],[-76.57466935445876,39.27701317897608],[-76.57466590547739,39.27701258639358],[-76.57466245533176,39.27701199470754],[-76.5746590063505,39.27701140212486],[-76.57465555736391,39.27701081044282],[-76.57465210838272,39.27701021785993],[-76.57464865824811,39.27700962437203],[-76.5746452092671,39.27700903178893],[-76.57464176028613,39.27700843920572],[-76.57463831131061,39.27700784572167],[-76.57463486233517,39.27700725223757],[-76.57463141336517,39.27700665785255],[-76.57462796439519,39.27700606346747],[-76.57462451658428,39.2770054690865],[-76.57462106761986,39.27700487380047],[-76.5746176198144,39.27700427851853],[-76.57461417085551,39.27700368233155],[-76.57461072306097,39.27700308524791],[-76.57460727526652,39.27700248816414],[-76.5746038274721,39.27700189108032],[-76.5746003796886,39.2770012921949],[-76.57459693190509,39.27700069330936],[-76.57459348528059,39.27700009442792],[-76.57459003866697,39.27699949374492],[-76.57458659089446,39.27699889305759],[-76.57458314429171,39.27699829057285],[-76.574579698848,39.27699768809224],[-76.57457625224542,39.27699708560731],[-76.57457280681263,39.276996481325],[-76.57456936138523,39.2769958761418],[-76.57456591596336,39.27699527005782],[-76.57456247054695,39.27699466307295],[-76.57455902629489,39.27699405519145],[-76.57455558088941,39.27699344640488],[-76.57455213664828,39.27699283672172],[-76.57454869358233,39.27699222434037],[-76.57454525170783,39.27699160655862],[-76.5745418110247,39.27699098337654],[-76.57453837269195,39.27699035479824],[-76.57453493438079,39.27698972261691],[-76.57453149725026,39.27698908683664],[-76.57452806130034,39.27698844745755],[-76.57452462652563,39.27698780538027],[-76.57452119176715,39.27698716060068],[-76.5745177581785,39.27698651402367],[-76.57451432459531,39.27698586654579],[-76.574510891023,39.27698521726636],[-76.57450745860965,39.27698456799101],[-76.57450402503746,39.27698391871138],[-76.57450059262423,39.27698326943587],[-76.57449715904676,39.27698262105677],[-76.5744937254585,39.27698197447906],[-76.57449029185955,39.27698132970273],[-76.57448685592657,39.27698068762017],[-76.57448342114181,39.27698004734322],[-76.57447998401223,39.27697941156141],[-76.57447654686109,39.27697877938257],[-76.57447310852943,39.27697815080236],[-76.57446966784759,39.27697752761818],[-76.5744662271388,39.27697690893758],[-76.57446278407444,39.2769762965537],[-76.57445933981874,39.27697568957001],[-76.574455893202,39.2769750897838],[-76.57445244422426,39.27697449719506],[-76.57444899403905,39.27697391270872],[-76.57444554149278,39.27697333541985],[-76.57444208657465,39.27697276712993],[-76.57443862928474,39.27697220783895],[-76.57443516844785,39.27697166024501],[-76.57443170523909,39.27697112164995],[-76.57442823848879,39.2769705938512],[-76.57442477053097,39.27697007415485],[-76.57442129904776,39.27696956255249],[-76.57441782636246,39.2769690581518],[-76.57441435131612,39.27696856094862],[-76.57441087507308,39.27696807004632],[-76.57440739647984,39.27696758454002],[-76.57440391785958,39.27696710353731],[-76.57440043689994,39.27696662612907],[-76.57439695591331,39.27696615322451],[-76.57439347375694,39.27696568211707],[-76.57438999158448,39.27696521371179],[-76.5743865082477,39.27696474620299],[-76.57438302490556,39.27696427959479],[-76.57437954156345,39.27696381298652],[-76.57437605938577,39.2769633454816],[-76.57437257721888,39.27696287617505],[-76.57436909505749,39.27696240596765],[-76.57436561407668,39.27696193216141],[-76.57436213427106,39.27696145565696],[-76.57435865449249,39.27696097464873],[-76.57435517705886,39.27696048914508],[-76.57435170198096,39.2769599973445],[-76.57434822693553,39.27695950013928],[-76.57434475540474,39.27695899664141],[-76.57434128508163,39.27695848504091],[-76.57433781712503,39.27695796534198],[-76.57433435269932,39.27695743664808],[-76.57433088948662,39.27695689895084],[-76.57432742981021,39.27695635135789],[-76.57432397368096,39.27695579206775],[-76.57432052109336,39.27695522198119],[-76.57431707089931,39.27695463929245],[-76.57431362541674,39.27695404400996],[-76.574310181158,39.27695343792264],[-76.57430673925502,39.27695282553842],[-76.57430329854886,39.27695220685304],[-76.57429986020922,39.27695158006929],[-76.57429642190212,39.27695094788091],[-76.57429298595615,39.27695030849493],[-76.57428955120703,39.27694966280778],[-76.57428611764934,39.27694901172026],[-76.57428268645276,39.27694835343509],[-76.57427925644765,39.27694768974957],[-76.57427582763935,39.2769470197629],[-76.57427240118137,39.27694634438005],[-76.57426897591486,39.27694566359686],[-76.57426555183976,39.27694497741323],[-76.57426213011503,39.27694428583348],[-76.57425870958171,39.27694358885338],[-76.57425529139338,39.27694288737781],[-76.57425187439645,39.27694218050188],[-76.5742484597391,39.27694147003128],[-76.57424504627852,39.27694075325952],[-76.57424163399862,39.27694003288895],[-76.57423822406362,39.27693930802287],[-76.57423481646825,39.27693857956216],[-76.57423141005883,39.2769378466018],[-76.57422800599443,39.27693710914606],[-76.57422460310519,39.27693636899217],[-76.57422120256099,39.27693562434283],[-76.57421780435625,39.27693487609884],[-76.57421440733218,39.27693412425595],[-76.57421101264228,39.27693336971914],[-76.57420761912758,39.27693261248417],[-76.57420422911137,39.27693185165874],[-76.57420083911146,39.27693108813099],[-76.57419745261004,39.27693032101275],[-76.57419406727843,39.2769295520971],[-76.57419070306707,39.27692874002122],[-76.57418744453811,39.27692769863322],[-76.57418426586527,39.27692648278616],[-76.57418112595074,39.27692518150683],[-76.57417798485045,39.27692388472693],[-76.57417480030757,39.27692268146903],[-76.57417153237792,39.27692166166488],[-76.57416817403757,39.2769208369989],[-76.57416480161717,39.27692004110629],[-76.57416141981726,39.27691926319487],[-76.57415802981299,39.27691850056659],[-76.5741546327579,39.27691775412647],[-76.57415122982169,39.27691702207714],[-76.57414781868661,39.27691630441021],[-76.57414440284555,39.27691559843613],[-76.57414098229854,39.27691490415481],[-76.57413755705103,39.27691422066549],[-76.57413412710839,39.27691354706749],[-76.57413069478848,39.27691288336919],[-76.57412725894856,39.27691222686417],[-76.57412382191197,39.27691157666006],[-76.57412038367326,39.27691093365761],[-76.5741169442486,39.27691029515458],[-76.57411350363266,39.27690966205171],[-76.57411006416488,39.27690903075444],[-76.5741066258345,39.27690840306425],[-76.57410318749872,39.27690777627473],[-76.57409974799874,39.27690715038164],[-76.57409630848794,39.27690652628992],[-76.57409286781289,39.27690590309466],[-76.57408942712708,39.27690528170077],[-76.57408598643595,39.27690466120757],[-76.57408254573943,39.27690404161499],[-76.57407910387867,39.27690342291883],[-76.57407566200709,39.2769028060241],[-76.57407222013565,39.27690218912925],[-76.57406877825343,39.27690157403577],[-76.57406533520691,39.27690095983878],[-76.57406189216049,39.27690034564164],[-76.57405844910326,39.27689973324591],[-76.57405500488179,39.27689912174664],[-76.57405156181927,39.27689851025143],[-76.57404811758714,39.27689790055343],[-76.57404467335503,39.27689729085535],[-76.57404122911755,39.27689668205788],[-76.57403778372122,39.27689607325612],[-76.57403433947307,39.27689546625996],[-76.57403089406604,39.27689485925949],[-76.57402744865902,39.2768942522589],[-76.57402400324131,39.27689364705976],[-76.57402055782904,39.2768930409597],[-76.57401711240604,39.27689243666106],[-76.57401366698849,39.2768918314616],[-76.57401022040663,39.27689122715853],[-76.57400677497839,39.27689062376034],[-76.57400332839123,39.27689002035785],[-76.5739998818042,39.27688941695524],[-76.57399643521715,39.27688881355254],[-76.57399298978375,39.27688821105468],[-76.57398954319147,39.27688760855256],[-76.57398609659921,39.27688700605026],[-76.57398265000704,39.27688640354791],[-76.57397920341489,39.27688580104548],[-76.57397575682285,39.27688519854289],[-76.57397231023083,39.27688459604023],[-76.57396886363891,39.27688399353747],[-76.57396541704698,39.27688339103459],[-76.57396197045519,39.27688278853163],[-76.57395852502771,39.276882185132],[-76.57395507843601,39.27688158262885],[-76.57395163184974,39.27688097922481],[-76.57394818526359,39.27688037582067],[-76.57394473983639,39.27687977242068],[-76.5739412932557,39.27687916811562],[-76.57393784783405,39.27687856381466],[-76.57393440125894,39.27687795860866],[-76.57393095584274,39.27687735340672],[-76.57392751043207,39.27687674730399],[-76.57392406502147,39.27687614120109],[-76.57392061961633,39.27687553419738],[-76.57391717537556,39.27687492629705],[-76.57391372997596,39.27687431839238],[-76.57391028574072,39.27687370959107],[-76.57390684150555,39.27687310078969],[-76.57390339728126,39.2768724901867],[-76.57389995305702,39.2768718795836],[-76.57389650883826,39.27687126807969],[-76.57389306578392,39.2768706556791],[-76.57388962274041,39.27687004147693],[-76.57388617969697,39.27686942727463],[-76.57388273665906,39.27686881217151],[-76.57387929478551,39.27686819617175],[-76.57387585291738,39.27686757927114],[-76.57387241106019,39.27686696056892],[-76.57386896920306,39.27686634186663],[-76.57386552851032,39.27686572226768],[-76.57386208666408,39.27686510176369],[-76.57385864598227,39.27686448036305],[-76.57385520530593,39.27686385806155],[-76.57385176578863,39.27686323576416],[-76.57384832511781,39.27686261256175],[-76.57384488561139,39.27686198846265],[-76.57384144495153,39.27686136345856],[-76.57383800545064,39.27686073845854],[-76.57383456595528,39.27686011255762],[-76.57383112645992,39.27685948665666],[-76.57382768812894,39.27685885985905],[-76.57382424864457,39.2768582321564],[-76.57382081031915,39.27685760445782],[-76.5738173708403,39.27685697585421],[-76.57381393252041,39.27685634725471],[-76.57381049420601,39.27685571775437],[-76.57380705589163,39.2768550882539],[-76.57380361757737,39.27685445875336],[-76.57380017926859,39.27685382835193],[-76.57379674095981,39.27685319795046],[-76.57379330381546,39.27685256665234],[-76.57378986550685,39.2768519362506],[-76.57378642720367,39.27685130494806],[-76.57378299006491,39.27685067274886],[-76.5737795517619,39.27685004144612],[-76.57377611462327,39.27684940924675],[-76.5737726774793,39.276848777948],[-76.57376923918183,39.2768481457442],[-76.57376580204338,39.27684751354448],[-76.57376236374608,39.27684688134049],[-76.57375892661317,39.27684624823983],[-76.57375548947491,39.27684561603985],[-76.57375205117775,39.27684498383555],[-76.57374861403962,39.27684435163536],[-76.57374517690154,39.27684371943503],[-76.5737417386046,39.27684308723044],[-76.57373830146665,39.27684245502994],[-76.5737348643233,39.27684182373007],[-76.57373142602655,39.27684119152519],[-76.57372798888338,39.27684056022512],[-76.57372455058133,39.27683992892077],[-76.57372111227932,39.27683929761631],[-76.57371767513631,39.27683866631595],[-76.57371423682906,39.27683803591201],[-76.5737107985218,39.27683740550798],[-76.57370736021466,39.27683677510388],[-76.57370392190212,39.27683614560037],[-76.57370048358969,39.27683551609682],[-76.5736970452719,39.27683488749388],[-76.57335006027589,39.27678166513618],[-76.57334664345505,39.27677881171055],[-76.57334428351115,39.27677674398836],[-76.57334194104882,39.27677466011581],[-76.57333959043082,39.27677258341973],[-76.57333720833768,39.27677053723528],[-76.57333476912139,39.27676854669072],[-76.57333224946795,39.27676663422051],[-76.57332962488825,39.27676482495711],[-76.57332687207904,39.27676313953341],[-76.57332405412623,39.27676149440747],[-76.57332122469266,39.27675983122446],[-76.57331837908838,39.27675815897496],[-76.57331551493057,39.27675648845951],[-76.57331262983634,39.27675483047867],[-76.57330972027475,39.27675319402724],[-76.57330678270941,39.27675158900077],[-76.57330381359318,39.27675002709638],[-76.57330081170747,39.27674851821798],[-76.57329777351596,39.27674707226117],[-76.57329469548219,39.27674569912158],[-76.57329157406988,39.2767444086947],[-76.57328840689068,39.27674321268185],[-76.57328519157254,39.27674212008203],[-76.57328192341478,39.2767411416874],[-76.57327860120431,39.27674028650112],[-76.57327524959815,39.27673950146763],[-76.57327188980909,39.27673872811429],[-76.57326852415505,39.27673796644947],[-76.57326515263064,39.27673721737396],[-76.57326177524662,39.27673647908624],[-76.57325839200305,39.27673575158632],[-76.57325500289988,39.27673503487421],[-76.57325160909606,39.2767343289541],[-76.57324820943811,39.27673363292102],[-76.57324480509028,39.2767329458785],[-76.57324139604724,39.2767322687272],[-76.57323798231438,39.27673160056641],[-76.57323456389712,39.27673094049543],[-76.57323114078999,39.27673028941493],[-76.57322771299847,39.27672964642419],[-76.57322428168692,39.2767290106267],[-76.57322084685526,39.27672838202248],[-76.57321740850357,39.27672776061142],[-76.57321396663183,39.27672714639364],[-76.57321052125077,39.2767265375676],[-76.5732070723497,39.27672593593473],[-76.57320362110377,39.27672533879715],[-76.57320016750747,39.27672474705548],[-76.57319671040199,39.27672416070552],[-76.57319325095158,39.27672357885081],[-76.57318978915632,39.2767230014913],[-76.57318632618046,39.27672242773044],[-76.57318286086517,39.27672185756401],[-76.5731793932104,39.27672129099209],[-76.57317592438051,39.2767207271181],[-76.57317245437545,39.27672016594198],[-76.57316898320076,39.27671960656307],[-76.5731655108509,39.27671904988209],[-76.5731620373367,39.27671849409752],[-76.57315856381177,39.27671794011435],[-76.57315508912252,39.2767173870276],[-76.57315161443333,39.27671683394076],[-76.57314813973881,39.27671628175457],[-76.57314466504431,39.27671572956825],[-76.57314119035526,39.2767151764811],[-76.57313771567175,39.2767146224931],[-76.57313424214716,39.27671406850922],[-76.57313076979784,39.27671351182718],[-76.57312729745398,39.2767129542443],[-76.57312382628537,39.27671239396332],[-76.57312035628659,39.27671183188493],[-76.5731168886274,39.27671126621188],[-76.5731134209845,39.27671069783652],[-76.57310995684013,39.2767101258707],[-76.57310649387638,39.276709550306],[-76.57310303209336,39.2767089711424],[-76.57309957381962,39.2767083865869],[-76.57309611788553,39.27670779843672],[-76.57309266430727,39.27670720398963],[-76.57308921307943,39.27670660414645],[-76.573085765361,39.27670599891129],[-76.57308232115187,39.27670538828418],[-76.57307887929316,39.27670477226091],[-76.57307543627566,39.27670415623336],[-76.57307199442795,39.27670353840839],[-76.57306855258567,39.27670291968264],[-76.57306511191325,39.27670229915943],[-76.573061670082,39.27670167863198],[-76.57305822941512,39.27670105720784],[-76.57305478875374,39.27670043488289],[-76.57305134925674,39.27669981166128],[-76.57304790860088,39.27669918843539],[-76.57304446795052,39.27669856430862],[-76.57304102845917,39.27669794018598],[-76.57303758897326,39.27669731516249],[-76.57303414832849,39.27669669013469],[-76.57303070884269,39.276696065111],[-76.57302726935701,39.27669544008718],[-76.57302382871242,39.27669481505907],[-76.57302038922681,39.27669419003507],[-76.57301694973583,39.27669356591176],[-76.57301350909144,39.27669294088331],[-76.57301006960058,39.27669231675975],[-76.57300662894545,39.27669169353264],[-76.5730031882904,39.27669107030542],[-76.57299974878893,39.27669044798306],[-76.57299630812315,39.27668982655712],[-76.57299286629846,39.2766892051269],[-76.57298942562196,39.27668858550226],[-76.57298598378117,39.27668796677404],[-76.57298254194046,39.27668734804571],[-76.57297910008353,39.27668673201953],[-76.57297565706772,39.27668611598903],[-76.57297221520007,39.27668550176416],[-76.57296877100376,39.27668488933222],[-76.57296532796101,39.27668427780517],[-76.57296188374856,39.27668366807526],[-76.57295843953075,39.27668305924604],[-76.57295499413783,39.27668245311471],[-76.57295154873412,39.27668184878476],[-76.57294810216067,39.27668124625202],[-76.57294465557648,39.27668064552067],[-76.57294120898145,39.2766800465907],[-76.57293776128726,39.27667943774821],[-76.57293431365814,39.27667881809663],[-76.57293086607245,39.27667819123905],[-76.57292741736588,39.27667755807189],[-76.57292396865935,39.27667692490466],[-76.57292051762958,39.27667629262962],[-76.57291706541386,39.27667566485401],[-76.572913613144,39.27667504608574],[-76.57291015733234,39.27667443811369],[-76.57290670027507,39.27667384454927],[-76.5729032407861,39.27667326989191],[-76.5728997788601,39.27667271504249],[-76.57289631330555,39.2766721854012],[-76.57289284527594,39.27667168187301],[-76.5728893735798,39.27667120985815],[-76.57288589935983,39.27667077206308],[-76.57288242028186,39.27667037118166],[-76.57287893748311,39.27667001082103],[-76.57287544168143,39.276669692749],[-76.57287190966562,39.27666942228571],[-76.5728683495048,39.27666920666667],[-76.57286476926814,39.27666905312736],[-76.57286118164954,39.2766689707215],[-76.57285759588243,39.27666896578813],[-76.57285402233209,39.27666904917408],[-76.57285047139634,39.27666922632181],[-76.57284695229225,39.27666950627239],[-76.57284347771929,39.27666989717899],[-76.57284005574644,39.27667040627708],[-76.57283667477915,39.27667103442523],[-76.57283327005837,39.27667175796802],[-76.57282985320052,39.27667257244386],[-76.57282644274846,39.27667347792025],[-76.57282305377356,39.27667447355115],[-76.57281970483498,39.27667555670185],[-76.57281641215222,39.27667672833204],[-76.57281319544329,39.27667798581117],[-76.57281006977419,39.27667932919407],[-76.57280705369865,39.27668075674669],[-76.57280416344707,39.27668226762727],[-76.57280141757306,39.27668386010177],[-76.57279890007091,39.27668563536149],[-76.57279664419686,39.27668765207709],[-76.5727945992403,39.27668986322442],[-76.57279271334228,39.27669221997341],[-76.57279093696185,39.27669467350263],[-76.57278921939916,39.27669717498639],[-76.57278750762551,39.2766996773919],[-76.57278575326977,39.27670213010037],[-76.57278390907619,39.27670448970325],[-76.57278204072409,39.27670681949292],[-76.57278018738903,39.27670915744413],[-76.57277834792305,39.27671150175107],[-76.57277651885471,39.27671385150041],[-76.5727746967127,39.27671620577873],[-76.57277288151334,39.27671856188385],[-76.5727710686208,39.27672091979883],[-76.57276925572275,39.27672327861451],[-76.57276744283544,39.27672563562866],[-76.57276562531767,39.27672799172522],[-76.5727638008734,39.27673034329272],[-76.57276196718466,39.27673269032268],[-76.57276012193913,39.27673503190604],[-76.57275826399403,39.27673736533629],[-76.57275638870829,39.27673969149726],[-76.57275449493928,39.27674200768257],[-76.57275258037991,39.27674431208225],[-76.57275064270702,39.27674660558868],[-76.57274866690867,39.27674887913952],[-76.5727466506725,39.27675113182563],[-76.57274459977143,39.27675336727108],[-76.57274252114817,39.27675558730262],[-76.57274042057024,39.27675779644508],[-76.572738303816,39.27675999742174],[-76.57273617666382,39.27676219295601],[-76.57273404720448,39.27676438668024],[-76.57273192005746,39.27676658131367],[-76.57272980099573,39.27676878048027],[-76.5727276981154,39.27677098691183],[-76.57272561603601,39.27677320332742],[-76.57272356168396,39.27677543425609],[-76.5727217605222,39.27677796065609],[-76.57272056361185,39.27678099188132],[-76.57271764591147,39.27678109386282],[-76.57271434141143,39.27678057020665],[-76.57271101855305,39.2767800158576],[-76.57270767848978,39.27677943172063],[-76.57270432236977,39.27677881960137],[-76.57270095133019,39.27677818310708],[-76.57269756652457,39.27677752314274],[-76.57269417025992,39.27677684151823],[-76.57269076252003,39.2767761409358],[-76.57268734445827,39.27677542230042],[-76.57268391721203,39.27677468921926],[-76.57268048309362,39.27677394260152],[-76.57267704325118,39.2767731842529],[-76.57267359650407,39.27677241777216],[-76.57267014748803,39.27677164317622],[-76.57266669386885,39.2767708631588],[-76.5726632402661,39.27677008043905],[-76.57265978550987,39.27676929681423],[-76.57265633074827,39.27676851409009],[-76.57265287945272,39.27676773317994],[-76.57264943043712,39.27676695858338],[-76.5726459848658,39.27676618940382],[-76.5726425461885,39.27676543015764],[-76.57263911439969,39.27676468174565],[-76.57263568948858,39.2767639459693],[-76.57263227375671,39.27676322553924],[-76.57262886378702,39.27676251053462],[-76.57262545382818,39.27676179372846],[-76.5726220438749,39.27676107602143],[-76.57261863509144,39.27676035651704],[-76.5726152263135,39.27675963611178],[-76.57261181754109,39.27675891480568],[-76.57260840993304,39.27675819260298],[-76.57260500116615,39.27675747039596],[-76.57260159355823,39.276756748193],[-76.57259818595587,39.27675602508926],[-76.5725947771892,39.27675530288194],[-76.57259136957606,39.27675458157945],[-76.57258788673039,39.27675384378932],[-76.5725877983336,39.27675004854294],[-76.57258778130699,39.27674729574188],[-76.57258778167513,39.27674454120255],[-76.57258777856643,39.27674178665058],[-76.57258775110404,39.27673903471233],[-76.5725876807342,39.27673628712169],[-76.57258754657992,39.27673354650508],[-76.57258732777512,39.27673081368734],[-76.57258700460176,39.27672809129896],[-76.57258657362104,39.27672537302212],[-76.57258606042707,39.27672264273613],[-76.57258545799576,39.27671991212543],[-76.57258476046732,39.27671719197778],[-76.57258395734092,39.27671449396506],[-76.57258304043357,39.27671182976736],[-76.57258200272113,39.27670921106908],[-76.5725808348562,39.27670665044688],[-76.57257946852185,39.27670413774373],[-76.57257778781998,39.27670167343871],[-76.5725758085957,39.27669932064295],[-76.57257355477954,39.27669714700104],[-76.5725710503075,39.27669521925659],[-76.5725683579731,39.27669350250831],[-76.5725655761085,39.27669183407549],[-76.57256271514402,39.27669021399606],[-76.57255978200595,39.27668864679909],[-76.57255678593332,39.27668713792276],[-76.57255373501683,39.27668569099959],[-76.57255063734179,39.27668431056279],[-76.57254750213626,39.27668300385209],[-76.57254433750187,39.27668177269848],[-76.57254115150762,39.27668062433752],[-76.57253792446804,39.27667955599515],[-76.57253463902099,39.27667856400524],[-76.57253130096105,39.27667764838878],[-76.5725279195596,39.27667680917958],[-76.57252449945781,39.27667604549369],[-76.572521051086,39.27667535736914],[-76.57251758023335,39.27667474572774],[-76.57251409386426,39.27667420879322],[-76.57251060124473,39.27667374750022],[-76.57250710708102,39.27667335015581],[-76.57250361286302,39.27667296181876],[-76.57250011863968,39.27667257438235],[-76.57249662324656,39.27667218874312],[-76.57249312784263,39.27667180490524],[-76.57248963242787,39.27667142286882],[-76.5724861370078,39.27667104173296],[-76.5724826404233,39.27667066149359],[-76.57247914382803,39.27667028305557],[-76.57247564722196,39.27666990641895],[-76.57247214945158,39.27666953067874],[-76.57246865167582,39.27666915583915],[-76.57246515388918,39.27666878280102],[-76.57246165609178,39.2766684115642],[-76.57245815713544,39.27666804032311],[-76.5724546581683,39.27666767088337],[-76.57245115919581,39.27666730234429],[-76.57244765905354,39.2766669356024],[-76.57244416006478,39.27666656976531],[-76.57244065991715,39.27666620392396],[-76.57243715975328,39.2766658407847],[-76.57243365958944,39.27666547764537],[-76.57243015826128,39.27666511540241],[-76.5724266569277,39.27666475406014],[-76.57242315558335,39.27666439451927],[-76.57241965423903,39.27666403497825],[-76.57241615288932,39.27666367633789],[-76.57241265036981,39.27666331949472],[-76.57240914900932,39.27666296265562],[-76.57240564648447,39.27666260671297],[-76.57240214395426,39.27666225167096],[-76.57239864141863,39.27666189752961],[-76.5723951377241,39.27666154338391],[-76.57239163517772,39.2766611910438],[-76.57238813147244,39.2766608386994],[-76.57238462776172,39.27666048725561],[-76.57238112405106,39.27666013581172],[-76.572377620335,39.27665978526852],[-76.57237411661355,39.27665943562591],[-76.57237061289213,39.27665908598323],[-76.5723671080064,39.27665873723694],[-76.57236360427963,39.27665838849476],[-76.57236009938855,39.27665804064905],[-76.57235659565097,39.27665769370814],[-76.57235309075996,39.27665734586219],[-76.57234958586356,39.27665699891691],[-76.57234608096169,39.27665665287223],[-76.57234257605992,39.27665630682744],[-76.5723390711582,39.27665596078258],[-76.57233556625648,39.27665561473757],[-76.57233206019043,39.27665526958901],[-76.57232855528336,39.27665492444459],[-76.57232505037634,39.27665457930001],[-76.57232154431043,39.27665423415113],[-76.57231803940341,39.2766538890064],[-76.57231453333758,39.2766535438573],[-76.57231102842526,39.27665319961309],[-76.57230752235944,39.27665285446378],[-76.57230401744719,39.27665251021936],[-76.57230051138148,39.27665216506984],[-76.57229700647468,39.27665181992447],[-76.57229350040362,39.27665147567549],[-76.57228999549693,39.27665113052992],[-76.57228648943131,39.27665078537996],[-76.57228298453012,39.27665043933342],[-76.57227947846462,39.2766500941833],[-76.57227597356345,39.27664974813655],[-76.57227246750345,39.27664940208548],[-76.57226896260239,39.27664905603848],[-76.57226545770675,39.27664870909063],[-76.5722619528112,39.27664836214273],[-76.57225844675678,39.27664801519047],[-76.57225494186672,39.27664766734159],[-76.57225143697664,39.27664731949262],[-76.57224793209208,39.27664697074278],[-76.57224442720756,39.27664662199282],[-76.5722409223285,39.27664627234204],[-76.57223741861382,39.27664592179464],[-76.57223391374028,39.27664557124286],[-76.57223040886674,39.27664522069104],[-76.57222690516302,39.2766448683418],[-76.57222340145934,39.27664451599247],[-76.57221989660223,39.2766441627381],[-76.57221639290404,39.2766438094878],[-76.57221288921676,39.27664345443591],[-76.5722093855295,39.27664309938392],[-76.57220588300663,39.2766427434353],[-76.57220237933038,39.27664238658164],[-76.57219887681843,39.27664202883133],[-76.57219537315305,39.27664167017594],[-76.57219187065203,39.27664131062391],[-76.57218836815655,39.27664095017106],[-76.57218486682545,39.27664058882156],[-76.57218136434084,39.27664022656699],[-76.57217786302066,39.27663986341582],[-76.57217436170589,39.27663949936375],[-76.57217086040208,39.2766391335101],[-76.5721673590983,39.27663876765638],[-76.57216385780544,39.27663840000105],[-76.57216035767692,39.27663803144905],[-76.57215685755934,39.2766376610955],[-76.57215335744721,39.27663728984108],[-76.57214985734053,39.27663691768581],[-76.57214635723935,39.27663654462969],[-76.5721428583134,39.27663616887546],[-76.57213935939292,39.27663579222037],[-76.57213586048339,39.27663541376371],[-76.57213236274362,39.27663503350964],[-76.5721288650148,39.276634651454],[-76.57212536729141,39.27663426849748],[-76.57212186957896,39.2766338837394],[-76.57211837187742,39.27663349717972],[-76.57211487534025,39.27663310972338],[-76.57211137881394,39.2766327204655],[-76.57210788229314,39.27663233030671],[-76.57210438578326,39.27663193834636],[-76.57210088927884,39.27663154548515],[-76.5720973939388,39.27663115172733],[-76.57209389860429,39.27663075706865],[-76.57209040328064,39.27663036060837],[-76.57208690796246,39.27662996324721],[-76.57208341264973,39.27662956498527],[-76.57207991734792,39.27662916492168],[-76.5720764232051,39.27662876486221],[-76.57207292906772,39.27662836390188],[-76.57206943377695,39.27662796203652],[-76.5720659396505,39.2766275592745],[-76.57206244552958,39.27662715561164],[-76.57205895141408,39.27662675104796],[-76.57205545845758,39.27662634648834],[-76.57205196434765,39.27662594102371],[-76.57204847024312,39.2766255346582],[-76.57204497730305,39.27662512739603],[-76.57204148320405,39.27662472012959],[-76.57203799026405,39.27662431286726],[-76.57203449732953,39.27662390470406],[-76.57203100323612,39.27662349653652],[-76.57202751030707,39.27662308747235],[-76.57202401737808,39.27662267840815],[-76.57202052444916,39.2766222693438],[-76.57201703152569,39.27662185937855],[-76.57201353859685,39.27662145031398],[-76.57201004567341,39.27662104034859],[-76.57200655275007,39.27662063038306],[-76.57200305866787,39.27662022041324],[-76.5719995657446,39.27661981044752],[-76.57199607281591,39.27661940138243],[-76.57199257989272,39.2766189914165],[-76.57198908696958,39.27661858145044],[-76.57198559404107,39.27661817238504],[-76.57198210111257,39.27661776331954],[-76.57197860818407,39.27661735425398],[-76.57197511409132,39.27661694608476],[-76.57197162115752,39.2766165379197],[-76.57196812821832,39.27661613065528],[-76.57196463412021,39.27661572338653],[-76.57196114118109,39.27661531612187],[-76.57195764707762,39.27661490975368],[-76.57195415296881,39.27661450428612],[-76.57195066001351,39.2766140997234],[-76.57194716589929,39.27661369515639],[-76.57194367177972,39.27661329149],[-76.57194017765471,39.27661288872424],[-76.57193668352437,39.27661248685911],[-76.57193318823508,39.27661208498969],[-76.57141661089022,39.27655594714761],[-76.57126670787358,39.27654286951201],[-76.57120993431897,39.2765369378962],[-76.57119628366831,39.27653300035657],[-76.57117348394814,39.27652029558943],[-76.57115502063215,39.27650976488519],[-76.57103239850488,39.27642073761999],[-76.57098562291745,39.27637251183169],[-76.57097602723935,39.2763417786902],[-76.57096716528649,39.27633575262527],[-76.57096423688257,39.27630791998106],[-76.57091099562915,39.27580188070363],[-76.57090212166085,39.27568804823989],[-76.57092084226801,39.27568416317106],[-76.57090529339018,39.27550700049683],[-76.57090160267467,39.27546495277569],[-76.57088097680219,39.27546424508161],[-76.57086089763523,39.27523576001393],[-76.57084994406921,39.27511111073718],[-76.57082156981089,39.27488238815263],[-76.57077031515685,39.27441631293571],[-76.57075804800787,39.27440214228948],[-76.57075562625776,39.27436989591977],[-76.5707636183075,39.27432638029144],[-76.57078666972487,39.2742833628736],[-76.57085316518979,39.27420356738084],[-76.57088069001331,39.27416608978681],[-76.57090473888391,39.2741426595463],[-76.57093339343878,39.27412341397149],[-76.57096382034273,39.27410832019],[-76.57096983919598,39.27410591551226],[-76.57097297282789,39.27410458391666],[-76.5709761041964,39.27410324330504],[-76.57097924123943,39.27410192253095],[-76.57098239653033,39.2741006504648],[-76.5709855779962,39.27409945776156],[-76.57098879822136,39.27409837149023],[-76.57099206744526,39.27409742321503],[-76.57099539476454,39.2740966417937],[-76.57099879153402,39.27409606600063],[-76.57100225208454,39.27409567509746],[-76.57100576160651,39.2740954266942],[-76.57100930760285,39.27409527930983],[-76.57101287525855,39.27409519145505],[-76.57101645206548,39.27409512345044],[-76.57102002437847,39.27409503200936],[-76.57102357853596,39.2740948765475],[-76.57102710202435,39.27409461828614],[-76.57103061301008,39.27409431944454],[-76.57103412400666,39.27409401880131],[-76.57103763500866,39.2740937172573],[-76.57104114601603,39.27409341481239],[-76.57104465587,39.27409311146242],[-76.57104816688825,39.27409280721579],[-76.57105167791191,39.27409250206833],[-76.57105518778206,39.27409219601581],[-76.57105869765769,39.27409188906243],[-76.57106220754412,39.27409158030746],[-76.57106571859489,39.27409127065581],[-76.5710692273333,39.27409096009492],[-76.57107273723597,39.27409064863739],[-76.57107624714955,39.27409033537824],[-76.57107975590964,39.274090021214],[-76.57108326583949,39.27408970525243],[-76.57108677461585,39.27408938838575],[-76.57109028339762,39.27408907061824],[-76.57109379103137,39.2740887510449],[-76.57109729982942,39.27408843057494],[-76.57110080747945,39.27408810829912],[-76.57110431514035,39.27408778422174],[-76.57110782280664,39.27408745924349],[-76.57111133047835,39.27408713336438],[-76.57111483816637,39.27408680478293],[-76.57111834470086,39.27408647529639],[-76.57112185124629,39.27408614400832],[-76.57112535663819,39.27408581181508],[-76.57112886319986,39.27408547782453],[-76.57113236861349,39.27408514202813],[-76.57113587403796,39.27408480443012],[-76.57113937947329,39.27408446503053],[-76.57114288605661,39.27408412743655],[-76.57114639378788,39.2740837916482],[-76.57114990267256,39.2740834567647],[-76.57115341273787,39.27408311828237],[-76.57115692167692,39.27408277439124],[-76.57116042950604,39.274082422389],[-76.57116393391293,39.27408206136655],[-76.5711674360782,39.27408168772504],[-76.57117093485938,39.27408129875811],[-76.57117442911381,39.27408089175917],[-76.57117791768813,39.2740804658233],[-76.57118139944521,39.27408001734327],[-76.57118487440133,39.2740795436169],[-76.57118834140309,39.27407904373914],[-76.57119179487378,39.27407848165902],[-76.57119521568401,39.27407776272621],[-76.57119861172271,39.27407692390098],[-76.57120199079179,39.27407601655547],[-76.57120536301635,39.27407509116956],[-76.57120873619282,39.27407420001611],[-76.57121211929839,39.27407339176933],[-76.57121552012956,39.27407271870209],[-76.57121894881139,39.27407223129421],[-76.57122241089887,39.27407196919981],[-76.57122589508626,39.27407188553767],[-76.57122939697754,39.27407194065804],[-76.57123291325394,39.27407210842663],[-76.57123644060209,39.27407236180827],[-76.57123997570865,39.27407267376793],[-76.57124351641919,39.27407301727479],[-76.57124705710794,39.27407336438451],[-76.57125059793283,39.27407368897547],[-76.57125413442157,39.27407396400833],[-76.57125766326075,39.27407416244809],[-76.57126118880294,39.27407433115039],[-76.57126471548771,39.27407450255907],[-76.57126824100816,39.27407467486415],[-76.57127176769299,39.2740748462726],[-76.5712752943941,39.27407501497866],[-76.57127882227591,39.27407518008594],[-76.57128234904242,39.27407533798287],[-76.57128587700591,39.27407548957874],[-76.57128940502929,39.27407563126622],[-76.57129293312337,39.27407576124395],[-76.57129646244719,39.27407587951609],[-76.5712999918635,39.27407598247542],[-76.57130352137776,39.27407606922127],[-76.57130705099544,39.27407613885276],[-76.57131058073828,39.27407618776702],[-76.57131411175436,39.27407621776975],[-76.57131764287377,39.27407623065816],[-76.57132117408575,39.27407622823373],[-76.57132470653822,39.27407621230232],[-76.57132823905596,39.2740761855618],[-76.57133177162271,39.27407615071446],[-76.57133530422755,39.27407610956179],[-76.57133883686504,39.27407606300454],[-76.57134236951342,39.27407601464571],[-76.57134590332065,39.27407596629094],[-76.57134943595807,39.27407591973337],[-76.57135296856833,39.27407587767944],[-76.5713565011405,39.27407584193062],[-76.57136003365825,39.27407581518916],[-76.57136469734395,39.27407673567804],[-76.57136440416208,39.27403471926999],[-76.57106801826835,39.27404922137991],[-76.57105819462207,39.27386875932527],[-76.57118497513177,39.27386804948141],[-76.57125033849307,39.27388417672559],[-76.57125102552526,39.27388152467552],[-76.57125467213707,39.27388141007865],[-76.57125820732757,39.2738813229987],[-76.57126174471611,39.27388125574351],[-76.57126528548876,39.27388120381359],[-76.57126882850844,39.27388116360177],[-76.57127237262706,39.27388113330223],[-76.57127591787199,39.27388110841135],[-76.5712794642594,39.27388108622677],[-76.57128300949883,39.2738810622364],[-76.57128655360661,39.27388103373794],[-76.57129009775791,39.27388099803342],[-76.57129363850871,39.27388094970561],[-76.57129717818776,39.27388088696156],[-76.57130071334554,39.27388080528484],[-76.57130424631619,39.27388070198159],[-76.57130777364478,39.2738805734362],[-76.57131129650659,39.27388041695066],[-76.5713148149287,39.27388022802118],[-76.57131832661528,39.2738800030364],[-76.57132183158249,39.27387973929404],[-76.57132532984672,39.27387943409185],[-76.57132882028176,39.27387908202115],[-76.57133230173957,39.2738786812762],[-76.57133577990571,39.2738782498931],[-76.57133925696738,39.27387780949818],[-76.57134273408334,39.27387736009569],[-76.57134621010032,39.27387690078067],[-76.57134968616617,39.27387643335882],[-76.57135316112758,39.27387595692516],[-76.57135663613786,39.27387547238473],[-76.57136011004366,39.27387497883245],[-76.57136358283401,39.27387447806992],[-76.57136705567878,39.27387396829978],[-76.57137052741356,39.2738734504186],[-76.57137399687407,39.27387292532288],[-76.57137746637808,39.2738723930211],[-76.57138093477209,39.27387185260827],[-76.57138440205071,39.27387130498513],[-76.57138786821393,39.27387075015168],[-76.57139133210286,39.27387018810371],[-76.57139479602982,39.27386961975045],[-76.5713982576825,39.2738690441826],[-76.57140171705547,39.27386846230098],[-76.57140517646643,39.27386787411404],[-76.57140863359766,39.27386727961333],[-76.57141208844918,39.27386667879882],[-76.57141554217436,39.27386607257549],[-76.57141899477877,39.27386546004264],[-76.57142244393906,39.27386484209249],[-76.57142589197306,39.27386421873353],[-76.57142933888079,39.27386358996579],[-76.57143278234439,39.27386295578077],[-76.57143622467633,39.27386231708768],[-76.57143966356421,39.27386167297732],[-76.57144310131486,39.2738610252597],[-76.57144653678036,39.27386037212897],[-76.57144996879632,39.27385971448175],[-76.57145339967514,39.27385905322723],[-76.5714568271044,39.27385838745617],[-76.57146025224307,39.27385771717285],[-76.57146367508028,39.27385704417872],[-76.57146709562684,39.27385636667228],[-76.57147051271299,39.27385568645082],[-76.57147392634421,39.27385500261362],[-76.5714773376739,39.27385431606561],[-76.57148074670755,39.27385362590605],[-76.5714841522808,39.27385293303147],[-76.57148752012229,39.27385215534707],[-76.57149082741884,39.27385123241837],[-76.57149408214663,39.27385018679355],[-76.57149729342983,39.27384904282664],[-76.57150047272121,39.27384782307855],[-76.57150362799148,39.27384655099829],[-76.5715067706826,39.27384525094824],[-76.57150990877616,39.27384394457606],[-76.57151305256065,39.27384265533907],[-76.5715162123191,39.27384140759549],[-76.57151943304667,39.27384023483789],[-76.57152282927115,39.27383917081242],[-76.57152632598084,39.27383816300091],[-76.57152982504626,39.27383714889257],[-76.57153322832707,39.27383606777795],[-76.57153643653484,39.27383485714202],[-76.57153935501677,39.27383345448661],[-76.57154188330918,39.27383179999473],[-76.57154394524699,39.27382984024329],[-76.57154561481904,39.27382760522749],[-76.57154696356582,39.27382514655205],[-76.57154805491029,39.27382251669276],[-76.5715489511383,39.27381976451828],[-76.5715497156836,39.27381694070287],[-76.5715504108157,39.27381409681735],[-76.5715510999739,39.27381128263534],[-76.57155184659739,39.27380854793038],[-76.57155264615943,39.27380587467064],[-76.57155345035692,39.27380320142778],[-76.57155425802551,39.27380052909837],[-76.57155506801186,39.27379785677739],[-76.57155588031588,39.27379518446485],[-76.57155669609649,39.27379251216502],[-76.57155751418932,39.27378984077436],[-76.5715583346053,39.27378716849138],[-76.57155915733357,39.27378449711762],[-76.57155998122063,39.27378182574807],[-76.5715608062665,39.27377915438274],[-76.57156163363008,39.27377648302588],[-76.5715624609936,39.27377381166897],[-76.57156329066935,39.27377114122127],[-76.57156412035053,39.27376846987285],[-76.5715649500316,39.27376579852438],[-76.57156578087151,39.27376312718014],[-76.57156661171136,39.27376045583591],[-76.5715674425511,39.27375778449161],[-76.5715682722374,39.2737551122424],[-76.57156910191814,39.27375244089391],[-76.57156993160432,39.27374976864466],[-76.57157075897265,39.27374709638693],[-76.57157158634088,39.27374442412923],[-76.57157241139137,39.27374175186301],[-76.57157323644718,39.27373907869611],[-76.57157405802629,39.27373640551646],[-76.57157487844647,39.27373373233259],[-76.57157569655431,39.27373105823951],[-76.57157651234431,39.27372838413798],[-76.57157732581646,39.27372571002797],[-76.57157813697627,39.27372303500879],[-76.57157894465932,39.2737203599769],[-76.57157974887117,39.27371768403156],[-76.57158054961175,39.2737150071728],[-76.57158134687565,39.27371233030131],[-76.57158213950397,39.27370965341295],[-76.57158292866104,39.27370697561114],[-76.57158371434683,39.27370429689591],[-76.57158449539709,39.27370161816374],[-76.57158527065829,39.27369893850969],[-76.57158604244829,39.2736962579422],[-76.57158680844383,39.27369357735357],[-76.5715875686503,39.27369089584306],[-76.57158832422674,39.27368821341489],[-76.57158907401407,39.27368553006481],[-76.57158981685357,39.27368284578863],[-76.57159055505753,39.27368016149554],[-76.57159128631358,39.27367747627632],[-76.57159201062174,39.27367479013097],[-76.57159272798751,39.27367210215878],[-76.5715934395588,39.27366941416544],[-76.57159414302328,39.27366672524173],[-76.57159483953993,39.27366403539195],[-76.57159552910871,39.27366134461606],[-76.57159620941185,39.27365865290557],[-76.57159688276712,39.27365596026896],[-76.57159754801565,39.27365326670206],[-76.57159820399856,39.27365057220053],[-76.57159885188011,39.27364787586792],[-76.57159949164948,39.27364517950576],[-76.57160012099983,39.27364248130402],[-76.57160074224338,39.27363978217195],[-76.5716013530679,39.27363708120031],[-76.57160195462139,39.2736343801949],[-76.57160254691466,39.27363167735412],[-76.57160312878885,39.27362897267381],[-76.57160369791538,39.27362626794703],[-76.57160425662828,39.27362356047997],[-76.57160480259894,39.27362085206564],[-76.57160533815058,39.27361814181177],[-76.57160586211882,39.27361543061486],[-76.57160637566251,39.27361271847919],[-76.57160687879266,39.27361000360319],[-76.57160737265178,39.27360728869341],[-76.57160785609183,39.27360457194406],[-76.57160833026626,39.27360185426016],[-76.57160879517508,39.2735991356417],[-76.57160925082374,39.27359641518792],[-76.57160969836022,39.27359369470454],[-76.57161013779545,39.27359097239007],[-76.57161056912391,39.27358824914531],[-76.57161099234564,39.27358552497015],[-76.571611408625,39.27358279896817],[-76.57161181795102,39.27358007294082],[-76.57161222032923,39.27357734598733],[-76.57161261575959,39.27357461810774],[-76.57161300539555,39.27357189020704],[-76.57161338924796,39.27356916048367],[-76.57161376846486,39.27356643074339],[-76.57161414073389,39.27356370007706],[-76.57161450837279,39.27356096849299],[-76.57161487254051,39.27355823599551],[-76.57161523091385,39.27355550347691],[-76.57161558581593,39.27355277004488],[-76.57161593608255,39.27355003659594],[-76.57161628403675,39.27354730223779],[-76.57161662851433,39.27354456786697],[-76.57161696951528,39.27354183348343],[-76.5716173082039,39.27353909819074],[-76.57161764458012,39.27353636198882],[-76.5716179786332,39.2735336266792],[-76.57161831153272,39.27353089046458],[-76.57161864211456,39.27352815424153],[-76.57161897270177,39.27352541711768],[-76.57161930096574,39.27352268088617],[-76.57161963038858,39.27351994465887],[-76.571619958658,39.27351720752662],[-76.57162028692737,39.27351447039429],[-76.57162061519124,39.27351173416276],[-76.57162094461943,39.27350899703473],[-76.57162127520107,39.27350626081164],[-76.57162160694149,39.27350352459278],[-76.5716219398408,39.27350078837814],[-76.57162227505779,39.27349805217195],[-76.57162261143368,39.27349531596992],[-76.57162295128072,39.27349258068143],[-76.57162329344546,39.27348984540133],[-76.57162363908137,39.27348711103463],[-76.57162398704044,39.2734843757757],[-76.57162433962411,39.27348164233509],[-76.57162469568438,39.27347890890721],[-76.57162505522119,39.27347617549201],[-76.57162542054699,39.27347344299867],[-76.5716257893439,39.27347071141877],[-76.57162616509403,39.27346797986421],[-76.57162654431532,39.27346524922309],[-76.57162693048436,39.27346251950804],[-76.57162732244775,39.27345978981415],[-76.57162772019464,39.27345706194285],[-76.57162812489469,39.27345433409694],[-76.57162853538367,39.27345160717291],[-76.57162894124801,39.27344887843046],[-76.57162934133423,39.27344614696466],[-76.57162973448355,39.27344341277121],[-76.57163012416159,39.27344067766433],[-76.57163050922048,39.27343793983837],[-76.57163088964924,39.27343520109468],[-76.5716312677711,39.27343246054107],[-76.57163164242176,39.27342971907402],[-76.57163201476554,39.27342697579706],[-76.57163238595041,39.2734242325158],[-76.57163275714063,39.27342148833382],[-76.57163312717203,39.27341874414766],[-76.57163349720879,39.27341599906069],[-76.57163386840442,39.27341325397796],[-76.57163424191775,39.27341050890365],[-76.5716346165845,39.27340776473438],[-76.57163499356352,39.27340502147423],[-76.57163537401912,39.27340227822684],[-76.57163575910479,39.27339953589701],[-76.57163614766156,39.27339679448069],[-76.57163654200184,39.27339405488691],[-76.57163694097211,39.27339131621083],[-76.57163734687923,39.27338858026234],[-76.57163775973419,39.27338584523991],[-76.57163817952599,39.27338311294519],[-76.57163860741905,39.27338038248143],[-76.5716390434078,39.27337765474954],[-76.57163948981007,39.27337492975791],[-76.57163994430815,39.27337220749814],[-76.57164041037312,39.27336948888356],[-76.5716408868516,39.2733667730093],[-76.57164137489703,39.27336406078029],[-76.57164187566823,39.27336135220074],[-76.57164238916529,39.27335864727067],[-76.57164291538813,39.27335594599005],[-76.57164345548473,39.27335325016465],[-76.5716440094661,39.27335055799291],[-76.57164457964436,39.27334787038412],[-76.5716451648553,39.27334518823476],[-76.57164576742213,39.27334251065249],[-76.57164638502155,39.27333983852966],[-76.57164702113032,39.27333717187894],[-76.57164777407297,39.27333454078418],[-76.57164927892285,39.27333213762333],[-76.57165141306784,39.27332992411702],[-76.57165389194742,39.27332781275375],[-76.57165642638199,39.27332571330302],[-76.57165873297002,39.2733235382577],[-76.5716605225265,39.27332119828793],[-76.57166171873453,39.27331866519168],[-76.57166279823355,39.27331607582228],[-76.57166379683984,39.27331344832567],[-76.57166471684947,39.2733107863133],[-76.57166555706,39.27330809698687],[-76.57166631743888,39.2733053857509],[-76.57166699795344,39.27330265800988],[-76.57166759972992,39.27329991917247],[-76.57166812157145,39.27329717553973],[-76.57166856344539,39.27329443251611],[-76.57166892531366,39.27329169640682],[-76.57166920830254,39.2732889726206],[-76.57166938694952,39.27328625565993],[-76.57166942310971,39.27328352917201],[-76.57166933184303,39.27328079411244],[-76.5716691305217,39.27327805234611],[-76.57166883650703,39.27327530753946],[-76.57166846602316,39.27327255975162],[-76.57166803874384,39.27326981355819],[-76.57166757088771,39.27326706991904],[-76.57166707982162,39.27326433159985],[-76.57166658407654,39.27326160046973],[-76.5716660987016,39.27325887928586],[-76.57166550660176,39.27325617572807],[-76.5716647138869,39.27325349305705],[-76.5716638052035,39.27325082347451],[-76.57166286752663,39.27324815738934],[-76.5716619843439,39.27324548699905],[-76.57166124030734,39.27324280360475],[-76.57166072122753,39.27324009851169],[-76.57166048739843,39.27323736653523],[-76.5716603266163,39.27323462851977],[-76.57166017048048,39.27323188871975],[-76.57166001898014,39.27322914893663],[-76.57165986979763,39.27322640916193],[-76.57165972640939,39.27322366940841],[-76.57165958534436,39.27322092876256],[-76.57165944775603,39.2732181881294],[-76.57165931480856,39.27321544661235],[-76.57165918417884,39.2732127051038],[-76.57165905818462,39.27320996361216],[-76.57165893450816,39.27320722212897],[-76.57165881315485,39.27320447975347],[-76.57165869643708,39.27320173739484],[-76.57165858088356,39.27319899413975],[-76.57165846996556,39.27319625090153],[-76.57165836020648,39.27319350766754],[-76.57165825392397,39.27319076444622],[-76.57165814880032,39.27318802122912],[-76.57165804715879,39.27318527712396],[-76.57165794783496,39.27318253302727],[-76.57165784967,39.27317978893474],[-76.57165775382825,39.27317704394999],[-76.57165766029883,39.27317429987441],[-76.57165756909255,39.27317155490652],[-76.57165747904513,39.27316880994288],[-76.57165739015663,39.27316606498342],[-76.57165730243243,39.2731633191275],[-76.57165721702056,39.27316057418073],[-76.57165713277293,39.27315782833742],[-76.57165704852535,39.27315508249419],[-76.57165696659013,39.27315233756008],[-76.57165688466027,39.27314959172524],[-76.57165680389475,39.27314684499388],[-76.57165672428268,39.2731440991675],[-76.57165664467061,39.27314135334113],[-76.57165656621744,39.27313860751899],[-76.57165648776967,39.27313586079607],[-76.57165640931652,39.27313311497389],[-76.57165633202762,39.2731303682552],[-76.57165625357447,39.27312762243302],[-76.57165617512673,39.2731248757101],[-76.57165609783789,39.27312212899141],[-76.57165601938473,39.27311938316922],[-76.57165594093705,39.2731166364463],[-76.57165586132504,39.27311389061988],[-76.57165578171846,39.27311114389271],[-76.57165570094762,39.27310839806209],[-76.5716556201822,39.27310565133069],[-76.5716555370936,39.27310290549164],[-76.57165545401045,39.27310015875176],[-76.57165536976301,39.27309741290845],[-76.57165528435674,39.27309466706088],[-76.57165519779156,39.27309192120909],[-76.57165510890867,39.27308917534882],[-76.57165501886691,39.27308642948438],[-76.57165492766627,39.27308368361571],[-76.57165483414796,39.27308093773853],[-76.5716547394653,39.27307819275791],[-76.57165464247039,39.27307544686806],[-76.57165454315229,39.2730727018705],[-76.57165444151644,39.27306995686452],[-76.5716543375629,39.27306721185003],[-76.57165423129162,39.27306446682713],[-76.57165412269718,39.27306172269653],[-76.57165401178503,39.27305897855742],[-76.57165389739625,39.27305623440567],[-76.57165378068974,39.27305349024545],[-76.57165366166554,39.2730507460768],[-76.57165354264133,39.27304800190812],[-76.57165342361714,39.27304525773945],[-76.5716533034341,39.27304251356653],[-76.57165318325103,39.27303976939362],[-76.5716530619146,39.27303702431576],[-76.57165293941384,39.27303428013437],[-76.57165281691309,39.27303153595301],[-76.57165269210003,39.27302879086245],[-76.57165256728159,39.27302604667263],[-76.5716524401508,39.27302330157359],[-76.57165231185579,39.2730205573711],[-76.57165218124301,39.27301781316014],[-76.57165204947135,39.27301506894494],[-76.57165191654634,39.27301232382475],[-76.57165178013925,39.27300957959267],[-76.57165164257331,39.27300683535633],[-76.57165150268425,39.27300409201229],[-76.57165135932405,39.27300134775484],[-76.57165121480493,39.27299860349314],[-76.57165106680378,39.27299586011949],[-76.57165091648496,39.2729931167374],[-76.57165076384838,39.27299037334685],[-76.57165060657094,39.27298763084013],[-76.57165044698122,39.27298488742421],[-76.57165028506834,39.27298214490062],[-76.57165011851997,39.27297940236006],[-76.57164994848962,39.27297666070763],[-76.5716497749881,39.27297391814172],[-76.57164959799914,39.27297117736463],[-76.57164941638017,39.2729684356699],[-76.57164923127912,39.27296569486323],[-76.57164904154268,39.27296295403964],[-76.57164884832423,39.27296021410412],[-76.57164865047027,39.27295747415175],[-76.57164844798093,39.27295473418237],[-76.57164823969177,39.27295199509268],[-76.57164802792606,39.27294925599024],[-76.57164780697649,39.27294650244208],[-76.57164755598342,39.27294373437208],[-76.5716472563343,39.27294096342229],[-76.57164688362231,39.27293820121373],[-76.57164641692808,39.2729354575785],[-76.57164583531045,39.27293274595166],[-76.57164511437892,39.27293007525198],[-76.5716442343566,39.27292745801805],[-76.57164310355181,39.27292491733539],[-76.57164152241688,39.27292248940758],[-76.57163959767064,39.27292015750928],[-76.57163745922571,39.27291790229744],[-76.57163523933413,39.2729157008345],[-76.57163305165156,39.2729135391227],[-76.57163077661929,39.2729114491536],[-76.57162839342114,39.27290942364512],[-76.57162594625173,39.27290743663623],[-76.57162347815216,39.27290546126089],[-76.57162103331164,39.27290347245885],[-76.57161864547314,39.27290144783401],[-76.57161629489244,39.2728993945205],[-76.57161396760884,39.27289732147504],[-76.57161165080953,39.27289523946006],[-76.57160933516924,39.27289315744932],[-76.57160700788606,39.27289108440372],[-76.57160465847038,39.27288903019343],[-76.57160227528459,39.2728870028829],[-76.57159984551055,39.2728850141354],[-76.57159735983373,39.27288307112298],[-76.57159480544149,39.27288118460815],[-76.57159219282875,39.27287934381999],[-76.57158956976465,39.27287750659668],[-76.57158693973113,39.27287567205024],[-76.57158430156397,39.27287384107711],[-76.57158165525775,39.27287201457805],[-76.57157899964807,39.2728701934496],[-76.5715763347295,39.27286837859249],[-76.57157365933787,39.27286657090328],[-76.57157097461557,39.27286477308839],[-76.57156827941471,39.27286298334207],[-76.57156557255462,39.27286120526315],[-76.57156285519417,39.27285943885582],[-76.57156012617459,39.27285768411589],[-76.57155738547941,39.27285594374553],[-76.571554630791,39.27285421773637],[-76.57155186442158,39.2728525069975],[-76.57154908520153,39.27285081332627],[-76.57154629197184,39.27284913671843],[-76.5715434847217,39.27284747897546],[-76.57154066344565,39.27284584099816],[-76.57153782813829,39.27284422368719],[-76.57153497647643,39.27284262793487],[-76.57153208863429,39.27284107438658],[-76.57152909816496,39.27283962765495],[-76.571526014372,39.27283828236945],[-76.57152285239681,39.27283702597447],[-76.57151962968757,39.27283584772456],[-76.57151636370344,39.27283473507261],[-76.57151307074457,39.27283367546737],[-76.57150976710587,39.27283265725838],[-76.57150647024636,39.27283166789852],[-76.57150319413225,39.27283069753037],[-76.57149971410756,39.27283010203777],[-76.57149610155435,39.27283015101041],[-76.57149270009438,39.27283074661757],[-76.57148939524471,39.27283165604388],[-76.5714861264124,39.27283274215173],[-76.57148287114366,39.2728338850573],[-76.57147960233291,39.27283496756198],[-76.57136995378056,39.27275232475898],[-76.57071106351283,39.27277682775118],[-76.57070588285288,39.27277460013525],[-76.57070265045861,39.27277349298801],[-76.57069941581761,39.27277237412244],[-76.57069617534968,39.27277126064016],[-76.57069292081196,39.27277017412929],[-76.57068964861351,39.27276913349291],[-76.570686349358,39.27276815941423],[-76.57068301944895,39.27276727169698],[-76.57067964729775,39.27276647029886],[-76.57067622842149,39.27276572998192],[-76.57067277195486,39.27276507329877],[-76.57066928818587,39.27276452370696],[-76.57066578856143,39.27276410466823],[-76.57066228219982,39.27276384143737],[-76.57065877367656,39.27276374393957],[-76.57065525046205,39.27276377609833],[-76.570651717388,39.27276390550373],[-76.57064817695203,39.27276410243961],[-76.57064463165163,39.27276433718977],[-76.57064108746104,39.27276458005077],[-76.57063754572985,39.27276479950078],[-76.57063401126796,39.27276496673276],[-76.57063048658384,39.27276505022911],[-76.57062697533401,39.27276502027784],[-76.57062346719771,39.27276485882599],[-76.57061985740859,39.27276464295635],[-76.57061619130397,39.27276434941484],[-76.57061254568498,39.27276392623767],[-76.57060900084566,39.27276331877173],[-76.57060563591028,39.27276247416106],[-76.57060253231539,39.27276134045891],[-76.57059973779791,39.27275988090848],[-76.57059705929439,39.27275820920119],[-76.57059445711459,39.27275637293263],[-76.57059194503951,39.2727543928708],[-76.57058953452693,39.27275229067598],[-76.57058724052217,39.27275008621972],[-76.57058507564186,39.27274780116652],[-76.57058305136019,39.27274545447443],[-76.57058118376487,39.27274306872152],[-76.5705794831712,39.2727406628615],[-76.57057795996536,39.27273824413857],[-76.57057659708047,39.27273576024584],[-76.57057537711735,39.27273321382199],[-76.57057428263842,39.27273061381096],[-76.57057329852411,39.2727279691651],[-76.5705724073368,39.27272528882836],[-76.57057159163372,39.27272258264534],[-76.57057083630049,39.27271985866774],[-76.57057012504774,39.27271712764517],[-76.57056943928994,39.27271439671581],[-76.57056876389655,39.27271167663358],[-76.57056808259991,39.27270897454504],[-76.57056743035659,39.27270625905123],[-76.57056683631264,39.2727035014342],[-76.57056629696962,39.2727007052842],[-76.57056580649504,39.27269787688528],[-76.57056535792492,39.27269501801356],[-76.57056494658558,39.27269213495718],[-76.57056456666088,39.27268923129814],[-76.57056421349907,39.27268630972156],[-76.57056388010879,39.27268337650728],[-76.5705635618328,39.27268043524138],[-76.57056325401386,39.27267748950988],[-76.57056294851269,39.27267454378687],[-76.57056264298969,39.27267160166681],[-76.57056233045901,39.27266866852879],[-76.57056200394575,39.27266574795042],[-76.57056165994605,39.27266284442265],[-76.57056129264916,39.27265996062656],[-76.57056089622273,39.27265710284616],[-76.57056046369176,39.27265427465905],[-76.57055999271671,39.27265147965971],[-76.5705594751583,39.27264872232227],[-76.57055890519497,39.27264600712923],[-76.57055827932835,39.27264333767092],[-76.5705575917369,39.27264071842978],[-76.57055683544016,39.27263815388416],[-76.57055600462205,39.2726356476159],[-76.57055509577876,39.272633204116],[-76.57055410308874,39.27263082786697],[-76.57055301957153,39.27262852334717],[-76.57055184057535,39.27262629324188],[-76.57055055911441,39.27262414293013],[-76.57054917284906,39.2726220760064],[-76.57054760607183,39.27262015524759],[-76.57054551164337,39.27261867663728],[-76.57054290237657,39.27261762941312],[-76.57053985166658,39.27261694988901],[-76.57053642941577,39.2726165770684],[-76.57053270786049,39.27261644726096],[-76.57052875922078,39.27261649947864],[-76.57052465572757,39.27261667093188],[-76.5705204684529,39.27261689882691],[-76.57051627077571,39.27261712217994],[-76.57051213261475,39.27261727729216],[-76.57050812619556,39.27261730227487],[-76.57050432490793,39.27261713434276],[-76.57050079981316,39.27261671250361],[-76.5704976231532,39.27261597216648],[-76.57049511271154,39.27261448933159],[-76.57049332465326,39.27261217502856],[-76.57049201590169,39.27260936435442],[-76.57049093989821,39.27260639329421],[-76.57048985356613,39.27260359694493],[-76.57048867670976,39.27260101374628],[-76.57048752079471,39.27259841711271],[-76.57048639625076,39.27259580708235],[-76.57048531118443,39.27259318458559],[-76.57048427486663,39.2725905496564],[-76.57048329772708,39.27258790233287],[-76.57048238902571,39.27258524445041],[-76.57048155803894,39.27258257514221],[-76.57048081519643,39.27257989444635],[-76.57048016395838,39.27257720507786],[-76.57047957072329,39.27257450601309],[-76.57047902273834,39.27257179810608],[-76.57047851766943,39.27256908405066],[-76.57047805204532,39.27256636293338],[-76.57047762122521,39.272563635638],[-76.57047722172162,39.27256090395328],[-76.57047685005244,39.27255816876732],[-76.57047650389457,39.27255543097238],[-76.57047645427595,39.27255501283521],[-76.57047617860712,39.27255269145219],[-76.5704758718723,39.27254995019833],[-76.57047557904384,39.27254720899532],[-76.5704752966397,39.27254446873123],[-76.57047502117777,39.27254173029404],[-76.57047475613471,39.27253899369646],[-76.57047453050383,39.27253625544149],[-76.57047434081386,39.27253351461566],[-76.57047418358289,39.272530772107],[-76.57047405070436,39.27252802698513],[-76.57047393752639,39.27252528193527],[-76.57047383594794,39.27252253512631],[-76.57047374132263,39.27251978834279],[-76.57047364669732,39.27251704155924],[-76.57047354511342,39.27251429565104],[-76.57047343078213,39.27251154969622],[-76.5704732978927,39.2725088063758],[-76.5704731383441,39.27250606385863],[-76.57047294865431,39.27250332303278],[-76.57047272070587,39.27250058476932],[-76.57047244869898,39.27249784994778],[-76.57047215352587,39.27249511324001],[-76.57047184677515,39.27249237468831],[-76.57047152497015,39.27248963428003],[-76.57047118462349,39.27248689380392],[-76.57047082224763,39.27248415504882],[-76.570470434366,39.27248141800197],[-76.57047001980347,39.27247868536136],[-76.57046957160674,39.27247595710151],[-76.57046908977055,39.27247323412331],[-76.57046856964297,39.27247051911195],[-76.57046800890632,39.2724678120589],[-76.57046740290885,39.27246511564961],[-76.57046674933829,39.27246242897468],[-76.57046601578482,39.27245974561035],[-76.5704651408617,39.2724570599274],[-76.57046411633148,39.27245439261345],[-76.5704629374225,39.27245176617009],[-76.57046159935213,39.2724492049006],[-76.57046009388293,39.27244672949245],[-76.57045841274474,39.27244436603767],[-76.57045636077525,39.27244219218908],[-76.57045395548815,39.27244018639237],[-76.57045135145857,39.27243827535002],[-76.57044870559035,39.27243638397147],[-76.57044617245307,39.27243443985991],[-76.57043857016302,39.27221755787936],[-76.57053621001006,39.27221455419777],[-76.57080765997287,39.27220249978687],[-76.57079405617488,39.27208405419589],[-76.57043473050489,39.27209911462889],[-76.57042308779432,39.27197307369021],[-76.57052658993913,39.27196855745395],[-76.57052927506092,39.27195840842511],[-76.57053043119701,39.27195349987081],[-76.57053001097181,39.27195074559083],[-76.57052954095434,39.27194798482345],[-76.57052929562819,39.27194524559533],[-76.57052955295903,39.27194255504516],[-76.5705304507354,39.27193993259294],[-76.57053172376074,39.27193734754356],[-76.57053304316716,39.27193475815994],[-76.57053408239376,39.27193212451496],[-76.57053478935228,39.2719294365097],[-76.57053549406939,39.27192673588554],[-76.5705361860991,39.27192402530653],[-76.57053684457119,39.27192130649788],[-76.57053744976891,39.27191858208979],[-76.57053798197005,39.2719158556133],[-76.57053842030983,39.27191312789282],[-76.57053874507154,39.27191040155853],[-76.57053893537407,39.27190768013713],[-76.57053899012404,39.27190495281548],[-76.57053899082241,39.27190215683792],[-76.57053890952066,39.27189931462138],[-76.57053869498404,39.27189646651304],[-76.57053829367116,39.27189365105012],[-76.57053765550619,39.27189090858395],[-76.57053672694781,39.27188827765173],[-76.57053545675586,39.2718857995014],[-76.57053381931576,39.27188349385611],[-76.57053192399005,39.27188128995516],[-76.57052981843316,39.27187916455296],[-76.57052753748687,39.27187710516604],[-76.57052511483963,39.27187509840616],[-76.57052258416893,39.27187313268647],[-76.57051998148614,39.27187119372642],[-76.57051733815118,39.27186926993068],[-76.57051469017551,39.27186734701866],[-76.57051207239004,39.27186541430854],[-76.57050951617083,39.27186345750281],[-76.57050705751853,39.27186146412237],[-76.57040543068072,39.27186634750727],[-76.57034779302353,39.27186901461494],[-76.57030801978794,39.27186778998675],[-76.5702870967347,39.2718667658281],[-76.57027617132715,39.27186688258686],[-76.57027062306454,39.27186642991798],[-76.57026707480114,39.27186620435398],[-76.57026351827309,39.27186600398112],[-76.57025995823032,39.2718658099006],[-76.5702564040527,39.27186560413152],[-76.57025286166544,39.27186536507708],[-76.57024933811982,39.27186507654933],[-76.57024584049442,39.27186471785647],[-76.57024237585145,39.2718642710091],[-76.57023895126943,39.27186371531537],[-76.570235574964,39.27186303369089],[-76.57023225870918,39.27186219555259],[-76.57022900605244,39.27186118920355],[-76.57022580637323,39.27186004613175],[-76.57022264673321,39.27185879781662],[-76.57021951652281,39.2718574739447],[-76.57021640164488,39.27185610599125],[-76.57021329032547,39.27185472453923],[-76.57021017194397,39.27185336107661],[-76.57020703240327,39.27185204707862],[-76.57020386109367,39.27185081223178],[-76.57020064507685,39.2718496880156],[-76.57019737257886,39.27184870501302],[-76.57019403184208,39.27184789110474],[-76.57019063583196,39.27184721030757],[-76.57018719401036,39.27184663112937],[-76.57018371574615,39.2718461373905],[-76.5701802069155,39.27184571560103],[-76.57017667341076,39.27184534956866],[-76.57017312227237,39.27184502490692],[-76.57016956054068,39.27184472722936],[-76.57016599642037,39.27184444125288],[-76.57016243464513,39.27184415078106],[-76.5701588834086,39.27184384233232],[-76.57015534743907,39.27184350061104],[-76.57015183610001,39.27184311033834],[-76.57014835527301,39.27184265712358],[-76.57014491200934,39.27184212477869],[-76.5701415121906,39.27184149891291],[-76.57013816285172,39.27184076604065],[-76.57013486989064,39.27183990906872],[-76.57013158330228,39.27183895663878],[-76.57012827978427,39.27183792938317],[-76.57012497556586,39.27183682646042],[-76.57012168571218,39.2718356479258],[-76.57011842412928,39.27183439383012],[-76.57011520588225,39.27183306422855],[-76.57011204603613,39.27183165917625],[-76.5701089596559,39.27183017872837],[-76.57010596064777,39.27182862293581],[-76.57010306523553,39.27182699185797],[-76.57010028732545,39.27182528554572],[-76.57009764314677,39.27182350315775],[-76.57009514544139,39.27182164564148],[-76.5700928104386,39.27181971215555],[-76.57009065339437,39.27181767122895],[-76.57008866162701,39.27181551200609],[-76.57008681883609,39.27181324703801],[-76.570085105234,39.27181089066464],[-76.57008350219731,39.27180845632925],[-76.57008198994914,39.27180595657018],[-76.57008054986065,39.27180340573148],[-76.57007916215508,39.27180081635161],[-76.57007781052118,39.27179820278305],[-76.57007647401795,39.27179557846063],[-76.57007513402728,39.27179295592696],[-76.57007377076157,39.27179034952187],[-76.57007236792053,39.27178777179648],[-76.57007090339874,39.27178523708201],[-76.57006932372016,39.27178277310661],[-76.57007754170861,39.2716809498778],[-76.57054440798825,39.27166539927745],[-76.57053736423953,39.27152545740199],[-76.57010890010632,39.27153702213045],[-76.57010835400253,39.27153381610357],[-76.57010778894087,39.27153106129157],[-76.57010722156707,39.27152830557034],[-76.57010673292362,39.27152556184721],[-76.57010640639267,39.27152283943512],[-76.57010632302207,39.27152015034075],[-76.57010668338432,39.27151747998511],[-76.57010798347467,39.2715148283823],[-76.57011002806377,39.27151247585693],[-76.57011254473286,39.27151062768743],[-76.57011535313725,39.27150902018969],[-76.57011835080036,39.27150754399583],[-76.57012143504899,39.27150612216486],[-76.57012450435265,39.27150468046222],[-76.57012745720797,39.27150314014966],[-76.57013020712193,39.2715014315516],[-76.57013300527407,39.27149960332806],[-76.57013575660115,39.2714976614364],[-76.57013817742697,39.27149556520462],[-76.57013997828669,39.27149327303877],[-76.57014097735686,39.27149076535729],[-76.57014165020655,39.27148816190127],[-76.57014213105955,39.27148549649039],[-76.57014245461562,39.27148278006082],[-76.57014265441033,39.27148002444529],[-76.57014276746651,39.27147723968775],[-76.57014282731419,39.27147443852168],[-76.57014287097081,39.27147163189173],[-76.57014293081848,39.27146883072565],[-76.57014304271574,39.27146604596387],[-76.57014324251038,39.27146329034829],[-76.57042934458804,39.27145202006753],[-76.57044979774405,39.27144469327419],[-76.5704495155383,39.27144096396774],[-76.57044931082552,39.27143821678067],[-76.57044929380676,39.27143547658546],[-76.5704495432832,39.27143274367033],[-76.57044987849207,39.27143001467179],[-76.57045026815545,39.27142728767397],[-76.57045069605516,39.27142456171674],[-76.570451148285,39.27142183674925],[-76.57045160631446,39.27141911090226],[-76.570452056232,39.27141638502555],[-76.57045248066589,39.27141365725412],[-76.57045286571559,39.2714109266363],[-76.57045323457965,39.27140818965394],[-76.57045368583036,39.27140543495753],[-76.5704542090164,39.27140266611197],[-76.57045478209798,39.27139988663973],[-76.57045538419416,39.27139710006741],[-76.5704559932542,39.27139431171908],[-76.57045658840262,39.27139152422054],[-76.57045714759431,39.27138874199515],[-76.57045764878393,39.27138596946606],[-76.57045807224401,39.27138321106492],[-76.57045839594025,39.27138046941353],[-76.57045859898076,39.27137774983995],[-76.57045865817246,39.27137505496175],[-76.57045855378236,39.27137239011136],[-76.57045826377072,39.27136975881124],[-76.57045776725113,39.27136716548875],[-76.57045696910616,39.27136462510916],[-76.57045582408649,39.27136214651456],[-76.57045438091799,39.27135972087554],[-76.57045268949069,39.27135733846604],[-76.5704507996839,39.27135499136165],[-76.57044876138218,39.27135267073712],[-76.57044662447015,39.27135036776721],[-76.57044443767369,39.27134807362247],[-76.57044225088282,39.27134577857696],[-76.57044011281239,39.27134347560271],[-76.57043807567017,39.27134115498224],[-76.57043618586431,39.2713388078776],[-76.57043070566661,39.27127964617717],[-76.57044950710345,39.27127619564796],[-76.57044336397996,39.27117779951715],[-76.57054813181968,39.271170374814],[-76.57053556056154,39.27099057268079],[-76.57046882580821,39.27096560797835],[-76.56964363438517,39.27099722157854],[-76.56962983443445,39.27079798167846],[-76.57057226237622,39.27076028436453],[-76.57057938850376,39.27075716674353],[-76.57058428232867,39.27075487236805],[-76.5705875817832,39.27075349995299],[-76.57059093094198,39.27075214843718],[-76.57059424426409,39.27075078237797],[-76.57059743853732,39.27074936453966],[-76.570600430544,39.27074785858733],[-76.57060313358444,39.27074622907411],[-76.57060546676418,39.27074443877276],[-76.57060734107675,39.27074245042643],[-76.570608609836,39.27074018333058],[-76.57060929038077,39.27073764475477],[-76.5706095109487,39.27073490002306],[-76.57060939743809,39.27073201805411],[-76.57060907576334,39.27072906506425],[-76.57060867415117,39.27072610817902],[-76.5706083173464,39.27072321541212],[-76.57060811741746,39.27072044302076],[-76.57060795904832,39.27071769690362],[-76.57060777175207,39.27071494347456],[-76.57060753927242,39.2707121880788],[-76.57060724418874,39.27070943695792],[-76.57060686560401,39.27070669634102],[-76.57060667294633,39.2707055948992],[-76.57060638842617,39.27070397067661],[-76.57060579407042,39.270701267103],[-76.57060506280939,39.27069859005184],[-76.57060419926749,39.27069594134154],[-76.57060327075496,39.27069330500448],[-76.57060228888189,39.27069067747998],[-76.57060125828899,39.27068805788421],[-76.57060018825786,39.27068544444965],[-76.57059908110071,39.27068283808544],[-76.57059794378134,39.27068023701551],[-76.57059678326372,39.27067763946386],[-76.57059560302433,39.27067504544314],[-76.57059441118032,39.27067245408229],[-76.57059321238347,39.27066986269601],[-76.57059201242247,39.27066727220618],[-76.57059081710223,39.27066468083257],[-76.57058963222249,39.27066208769562],[-76.5705884647416,39.27065949191992],[-76.57058731814151,39.27065689261752],[-76.57058619590414,39.2706542889003],[-76.57058507714332,39.27065168519582],[-76.57058395722376,39.27064908148709],[-76.57058283614548,39.2706464777741],[-76.57058171506726,39.27064387406112],[-76.57058059398913,39.27064127034807],[-76.57057947174684,39.27063866753153],[-76.57057834951001,39.27063606381425],[-76.57057722726788,39.27063346099772],[-76.57057610503122,39.27063085728043],[-76.57057498278924,39.27062825446383],[-76.57057386171159,39.27062565075077],[-76.5705727394752,39.27062304703343],[-76.57056725712437,39.27061784667554],[-76.57014684727258,39.27063104073812],[-76.56953130831555,39.27065397975641],[-76.56908438406681,39.27067127130605],[-76.56904549262134,39.27008764309446],[-76.56903000042404,39.269784205989],[-76.56902012659253,39.26965874779768],[-76.56901634104544,39.26961270468842],[-76.56916415753594,39.26960680295689],[-76.56988203822041,39.26958272565845],[-76.56987615401724,39.26946795984626],[-76.56987135220915,39.26937957156556],[-76.56970889417913,39.26938398111521],[-76.56963995085307,39.26938622722385],[-76.56964090574847,39.26937667087759],[-76.56963751454312,39.26937502716066],[-76.56963474255608,39.26937331725443],[-76.56963289194836,39.26937216289502],[-76.56963198232114,39.26937158036814],[-76.56963015158804,39.26937039725701],[-76.56962924897928,39.26936980394661],[-76.56962743111332,39.26936860106568],[-76.56962653434783,39.2693679996698],[-76.5696247258398,39.26936678241082],[-76.56962383257812,39.26936617652392],[-76.56962202874915,39.2693649520759],[-76.56962113665722,39.26936434439173],[-76.56961933515687,39.26936311815068],[-76.56961844074193,39.26936251135871],[-76.56961663573794,39.26936128960865],[-76.56961573898356,39.26936068641117],[-76.56961392812009,39.26935947544876],[-76.56961302668131,39.26935888034102],[-76.56961120413699,39.26935768464884],[-76.56961029567991,39.26935710032453],[-76.56960845908792,39.26935592800077],[-76.56960754128396,39.26935535625296],[-76.56960568482299,39.26935421178015],[-76.56960475648599,39.26935365710828],[-76.56960287779469,39.26935254768386],[-76.56960193659614,39.26935201188097],[-76.56960003100653,39.26935094289248],[-76.56959907460694,39.26935042955304],[-76.56959713860431,39.26934940729294],[-76.5695961658285,39.26934891911495],[-76.56959419358061,39.26934794986722],[-76.56959320324789,39.26934749044946],[-76.56959119124555,39.26934657960591],[-76.56959017986314,39.26934615163782],[-76.56958812575041,39.26934530549514],[-76.56958709332373,39.26934490807596],[-76.56958500062632,39.2693441185402],[-76.56958395417922,39.26934373998573],[-76.56958183578595,39.26934298368411],[-76.56958077882771,39.26934261860259],[-76.56957863940664,39.26934189014766],[-76.56957757193722,39.26934153853912],[-76.56957541150466,39.26934083522857],[-76.56957433584712,39.26934049620078],[-76.56957215788503,39.26933981714667],[-76.56957107288602,39.26933948979455],[-76.56956887739982,39.26933883409608],[-76.56956778422368,39.26933851752317],[-76.56956557353645,39.26933788428815],[-76.56956447218859,39.26933757759372],[-76.56956224631126,39.26933696502057],[-76.56956113910381,39.26933666911383],[-76.56955889920067,39.26933607630617],[-76.56955778498029,39.26933579028213],[-76.56955553337436,39.2693352163476],[-76.56955441331083,39.269334938409],[-76.56955215116098,39.2693343833519],[-76.56955102525423,39.26933411349876],[-76.56954875257685,39.26933357461677],[-76.56954762313907,39.26933331375836],[-76.56954534109838,39.26933279015509],[-76.56954420698716,39.26933253558483],[-76.56954191674198,39.26933202726446],[-76.56954077911064,39.26933177988747],[-76.5695384829895,39.26933128505695],[-76.56953734300234,39.26933104397667],[-76.5695350410162,39.26933056083459],[-76.5695338986732,39.26933032605098],[-76.56953159198079,39.26932985460155],[-76.56953044729291,39.2693296243132],[-76.56952813822286,39.26932916276343],[-76.56952699234337,39.26932893787526],[-76.56952468205442,39.26932848622938],[-76.5695235349943,39.26932826493992],[-76.56952122349747,39.26932782139649],[-76.56952007641553,39.26932760370997],[-76.56951776488044,39.26932716647172],[-76.56951662009422,39.26932695239665],[-76.56951430967978,39.26932652146778],[-76.56951316488265,39.26932630919418],[-76.56951085675308,39.26932588367822],[-76.56950971425722,39.26932567411534],[-76.569507410741,39.26932525221928],[-76.56950626939853,39.26932504356135],[-76.56950397165997,39.26932462438871],[-76.56950283378302,39.26932441754499],[-76.56950053832388,39.26932400468601],[-76.56949939924985,39.26932380414324],[-76.56949710023241,39.26932340478268],[-76.56949595878612,39.26932321323883],[-76.56949365388175,39.26932282916967],[-76.56949251007418,39.26932264482326],[-76.56949019928294,39.26932227604551],[-76.56948905311403,39.2693220988966],[-76.5694867387535,39.26932174541872],[-76.56948558906447,39.269321575463],[-76.56948326998673,39.2693212354793],[-76.56948211910067,39.26932107182452],[-76.56947979530582,39.26932074533495],[-76.56947864206388,39.26932058797689],[-76.56947631471614,39.26932027408495],[-76.56947516027718,39.26932012302782],[-76.56947282938195,39.26931982083284],[-76.56947167259808,39.26931967427089],[-76.56946933816087,39.26931938287205],[-76.56946818133879,39.26931924261534],[-76.56946584336509,39.2693189611119],[-76.56946468419801,39.26931882535036],[-76.56946234501092,39.26931855285007],[-76.56946118465773,39.26931842158801],[-76.56945884309837,39.26931815808663],[-76.56945768157006,39.26931802952256],[-76.56945533880271,39.2693177741236],[-76.56945417608823,39.26931765005894],[-76.56945183212385,39.26931740096089],[-76.56945066938754,39.26931728049918],[-76.56944832306735,39.26931703769779],[-76.56944715916131,39.26931691903332],[-76.56944481280283,39.2693166825371],[-76.56944364888041,39.26931656657482],[-76.56944130250014,39.26931633368149],[-76.56944013856129,39.26931622042144],[-76.56943779099493,39.26931599202756],[-76.56943662705062,39.26931587966821],[-76.56943428062668,39.26931565398075],[-76.56943311667149,39.26931554342285],[-76.56943077023112,39.26931532043758],[-76.56942960743474,39.26931520988389],[-76.56942726214231,39.26931498870427],[-76.56942609934049,39.26931487905131],[-76.56942375520686,39.26931465787587],[-76.56942259356389,39.2693145482271],[-76.5694202505836,39.26931432795661],[-76.56941908890232,39.26931422461305],[-76.56941674346783,39.26931402685267],[-76.56941557934874,39.26931394331701],[-76.56941322902763,39.26931378697394],[-76.56941206247612,39.26931372234546],[-76.56940970613687,39.26931360291171],[-76.56940853716395,39.26931355538892],[-76.56940617716791,39.26931346566704],[-76.56940500696507,39.26931342984963],[-76.56940264335596,39.26931336263362],[-76.56940147195063,39.26931333401795],[-76.56939910710626,39.26931327940806],[-76.56939793451474,39.26931325529186],[-76.56939556964301,39.26931320518563],[-76.56939439705702,39.26931318016862],[-76.56939203220715,39.26931312645935],[-76.56939086081275,39.26931309604208],[-76.56938849835704,39.26931302973076],[-76.56938732702272,39.26931298940522],[-76.56938496816916,39.26931290238939],[-76.56938379923453,39.26931284856113],[-76.5693814440432,39.26931273093254],[-76.56938027868885,39.26931266000277],[-76.56937792836781,39.26931250365901],[-76.56937676546224,39.26931241111976],[-76.5693744211594,39.2693122178665],[-76.56937325948374,39.26931211362174],[-76.56937091530664,39.26931189965125],[-76.56936975367466,39.26931178820046],[-76.56936740958504,39.26931155981793],[-76.56936624799687,39.26931144116111],[-76.56936390515354,39.2693111983708],[-76.56936274476789,39.26931107251223],[-76.56936040432969,39.26931081531836],[-76.56935924398778,39.26931068225384],[-76.56935690480131,39.26931040975145],[-76.5693557468262,39.2693102685886],[-76.56935341120916,39.26930998078618],[-76.56935225443661,39.26930983242159],[-76.56934992239438,39.26930952841842],[-76.56934876682988,39.2693093719513],[-76.56934643836794,39.26930905084659],[-76.56934528632908,39.26930888628548],[-76.56934296260629,39.26930854808348],[-76.56934181293968,39.26930837452336],[-76.56933949511483,39.26930801922833],[-76.56933834782055,39.26930783666919],[-76.56933603589908,39.26930746338044],[-76.56933489213591,39.2693072718265],[-76.56933258728212,39.26930687964747],[-76.56933144705552,39.26930667819807],[-76.56932914928038,39.26930626532723],[-76.56932801376554,39.26930605128432],[-76.56932572308543,39.2693056150195],[-76.56932458995379,39.26930539017611],[-76.56932230636869,39.26930493051726],[-76.56932117561486,39.26930469577412],[-76.56931889793863,39.26930421722075],[-76.56931777071044,39.2693039743836],[-76.56931549661455,39.26930347872871],[-76.56931437058891,39.2693032286898],[-76.56931210121027,39.26930271954065],[-76.56931097754058,39.26930246320493],[-76.56930871053977,39.26930194415602],[-76.56930758805075,39.26930168422152],[-76.56930532341131,39.26930115797505],[-76.56930420093325,39.26930089623907],[-76.56930193748003,39.26930036549304],[-76.56930081501294,39.2693001019555],[-76.56929855272404,39.26929957031288],[-76.5692974302515,39.26929930767606],[-76.56929516563406,39.26929877782643],[-76.56929404315066,39.26929851699104],[-76.56929177734169,39.26929799254155],[-76.56929065367756,39.26929773530491],[-76.56928838549638,39.26929721985432],[-76.56928725948735,39.26929696711291],[-76.56928498776421,39.26929646245848],[-76.56928386055266,39.26929621691871],[-76.56928158410682,39.26929572665918],[-76.56928045452845,39.26929548921762],[-76.56927817333809,39.26929501695599],[-76.56927704022323,39.26929478940985],[-76.56927475311862,39.26929433694337],[-76.56927361646171,39.26929412019344],[-76.56927132226761,39.26929369022003],[-76.56927018324392,39.26929348156828],[-76.56926788548596,39.26929306599403],[-76.56926674410639,39.269292863639],[-76.56926444280641,39.26929245886088],[-76.56926330024075,39.26929226100533],[-76.56926099540425,39.26929186612261],[-76.569259851647,39.26929167366722],[-76.56925754444376,39.26929128688267],[-76.56925639950033,39.26929109892674],[-76.5692540887715,39.26929072023612],[-76.56925294381169,39.26929053498242],[-76.56925063072151,39.2692901634892],[-76.56924948458112,39.26928998183419],[-76.56924717029386,39.26928961664186],[-76.56924602181944,39.26928943768055],[-76.56924370634063,39.26928907788842],[-76.56924255785529,39.2692889007286],[-76.56924024003158,39.26928854543161],[-76.56923909153528,39.26928837007323],[-76.56923677368972,39.26928801837919],[-76.56923562402372,39.26928784481802],[-76.56923330500301,39.26928749582186],[-76.56923215417277,39.26928732315717],[-76.5692298351411,39.2692869759625],[-76.56922868430539,39.26928680419848],[-76.56922636411502,39.26928645699947],[-76.56922521443266,39.26928628614045],[-76.5692228942368,39.26928593984209],[-76.5692217445654,39.26928576718153],[-76.56921942437511,39.26928541998235],[-76.5692182747037,39.26928524732177],[-76.56921595567765,39.26928489922604],[-76.56921480601179,39.26928472566468],[-76.56921248700765,39.26928437396592],[-76.56921133735273,39.26928419860302],[-76.56920902068265,39.26928384421042],[-76.56920787219745,39.26928366705021],[-76.56920555555473,39.2692833081538],[-76.569204407086,39.26928312829136],[-76.56920209278832,39.26928276489967],[-76.5692009454948,39.26928258233917],[-76.56919863237781,39.26928221534867],[-76.56919748390905,39.26928203548616],[-76.56919516844171,39.26928167389153],[-76.56919401995656,39.26928149673124],[-76.56919170098001,39.2692811405283],[-76.56919055131969,39.26928096606593],[-76.56918823114606,39.26928061616393],[-76.56918708147487,39.26928044350305],[-76.56918476012055,39.26928009719968],[-76.56918360811534,39.26927992723248],[-76.5691812855859,39.26927958362704],[-76.56918013473951,39.26927941366407],[-76.5691778110458,39.26927907095509],[-76.56917666019395,39.26927890189283],[-76.56917433650027,39.26927855918377],[-76.5691731856539,39.26927838922074],[-76.56917086312458,39.26927804561507],[-76.56916971228917,39.26927787385053],[-76.56916739094052,39.26927752664608],[-76.5691662401106,39.26927735398073],[-76.56916391994814,39.26927700227675],[-76.56916277145774,39.26927682601685],[-76.56916045248691,39.26927646891254],[-76.56915930517172,39.26927628995466],[-76.56915698972112,39.26927592565708],[-76.56915584243329,39.2692757421954],[-76.56915352935505,39.2692753688988],[-76.56915238441221,39.26927518094181],[-76.56915007602389,39.26927479865466],[-76.56914893227815,39.26927460439672],[-76.56914662743741,39.26927421041248],[-76.56914548604207,39.26927401075853],[-76.56914318475982,39.26927360327582],[-76.56914204688474,39.26927339642857],[-76.56913975031978,39.26927297545159],[-76.56913861481152,39.2692727605061],[-76.56913632413909,39.26927232333682],[-76.56913519099221,39.2692721011938],[-76.5691329073766,39.26927164693581],[-76.56913177660751,39.26927141489303],[-76.56912950008147,39.26927093814177],[-76.56912837520491,39.26927068990679],[-76.56912610815718,39.26927017896107],[-76.56912498918403,39.26926991273234],[-76.56912273162014,39.2692693666914],[-76.56912161621641,39.26926908516271],[-76.56911936810353,39.26926850943106],[-76.56911825741712,39.26926821440813],[-76.56911601642116,39.26926761167954],[-76.56911490927682,39.26926730586032],[-76.56911267535963,39.26926668243993],[-76.5691115694288,39.2692663676175],[-76.56910934024529,39.26926572800063],[-76.56910823782924,39.26926540688569],[-76.56910601218783,39.26926475647252],[-76.56910490979365,39.26926443175456],[-76.56910268766703,39.26926377504885],[-76.56910158644266,39.26926344853363],[-76.56909936432703,39.26926279002633],[-76.5690982630917,39.26926246531255],[-76.56909604210762,39.26926181131321],[-76.56909493969712,39.26926148929742],[-76.56909271749957,39.26926084430124],[-76.56909161389203,39.26926052858635],[-76.56908938814152,39.26925989618781],[-76.56908828332051,39.26925958947616],[-76.56908605397879,39.2692589759805],[-76.56908494561576,39.26925868006499],[-76.56908271033787,39.26925808996744],[-76.56908160073395,39.26925780755892],[-76.56907935833371,39.26925724535894],[-76.5690782439962,39.2692569791468],[-76.56907599444077,39.26925645024895],[-76.56907487535864,39.26925620203468],[-76.56907261629762,39.26925571183487],[-76.56907149245447,39.26925548432081],[-76.5690692226962,39.2692550382193],[-76.56906809292228,39.2692548332026],[-76.56906581012727,39.26925443479384],[-76.56906467438979,39.26925425767906],[-76.56906237848142,39.26925391957354],[-76.56906123442445,39.26925377665737],[-76.56905892187164,39.2692535078498],[-76.56905777065944,39.2692533982357],[-76.56905544264291,39.26925319512739],[-76.5690542854616,39.26925311431596],[-76.56905194434808,39.26925296880861],[-76.56905078121414,39.26925291409754],[-76.56904842821177,39.26925281808872],[-76.5690472591525,39.26925278497427],[-76.569044896628,39.26925273036579],[-76.5690437239829,39.26925271525349],[-76.5690413531225,39.2692526975458],[-76.56904017696274,39.26925268872593],[-76.56903780131935,39.26925269532136],[-76.56903662275444,39.26925270090494],[-76.56903424237737,39.2692527236967],[-76.5690330626099,39.26925273648197],[-76.5690306798715,39.26925276647115],[-76.56902949892876,39.26925278195439],[-76.56902711734914,39.26925281194772],[-76.56902593641739,39.26925282562941],[-76.56902355604034,39.269252848421],[-76.56902237629474,39.26925285760313],[-76.5690199994871,39.26925286509469],[-76.56901882213019,39.26925286257559],[-76.56901645011646,39.26925284396241],[-76.56901527633994,39.26925282434186],[-76.56901291146501,39.26925277512871],[-76.56901174124697,39.26925274200964],[-76.56900938114956,39.26925266939399],[-76.56900821212861,39.26925262997392],[-76.56900585325565,39.26925254655346],[-76.56900468426205,39.26925250262962],[-76.56900232542739,39.26925241290388],[-76.56900115644476,39.26925236717848],[-76.56899879763745,39.26925227294893],[-76.56899762867123,39.26925222452128],[-76.56899527103367,39.26925212849441],[-76.56899410206751,39.26925208006671],[-76.56899174328211,39.26925198223402],[-76.56899057431042,39.26925193470707],[-76.56898821550863,39.26925183957653],[-76.56898468888848,39.26925169782391],[-76.56898300117557,39.26922372820157],[-76.56898263570962,39.26921807634528],[-76.56897821918574,39.26915095925668],[-76.56897176654822,39.26905142057117],[-76.56896190141407,39.26890129035323],[-76.56895326072491,39.2687672622414],[-76.56894295839854,39.26861128352111],[-76.56906469327312,39.26860581043353],[-76.56927109070557,39.26859646459766],[-76.56985617956283,39.26856998894948],[-76.57025210659843,39.268552947473],[-76.57086683022362,39.2685291730448],[-76.57096154409889,39.26852551068128],[-76.57119012050005,39.26851660100329],[-76.57142942279519,39.26850731927285],[-76.57143051103067,39.2685293668299],[-76.57143116566421,39.2685426222131],[-76.57155429182805,39.26853832172021],[-76.5717953296592,39.2685294896542],[-76.57213344920979,39.26851710149835],[-76.57213257864467,39.26848236472737],[-76.57277172084811,39.2684599186585],[-76.57277342858261,39.26845997891704],[-76.57277513775253,39.26845999324161],[-76.57277684604557,39.26845996072304],[-76.57277855345103,39.26845988316288],[-76.57278025534451,39.26845975874269],[-76.5727819505618,39.26845958835902],[-76.5727836367799,39.26845937290427],[-76.57278531284547,39.26845911147334],[-76.57278697643542,39.26845880495868],[-76.57278862522678,39.26845845425257],[-76.57279025806614,39.26845805844999],[-76.57279187030758,39.26845761933562],[-76.57279346311523,39.26845713601293],[-76.57279503415528,39.26845661117574],[-76.57279657996214,39.26845604300988],[-76.57279809820201,39.26845543420915],[-76.57279959003365,39.26845478477782],[-76.57280105082187,39.26845409469902],[-76.57280248055046,39.26845336667498],[-76.57280387690723,39.2684525997965],[-76.57280523756917,39.26845179495592],[-76.57280656251996,39.2684509548555],[-76.57280784712451,39.26845007947836],[-76.57280909370037,39.26844916883299],[-76.57281029759069,39.26844822650538],[-76.57281145880089,39.26844725159496],[-76.57281257616677,39.2684462449981],[-76.57281364850782,39.26844521031375],[-76.57281467235305,39.26844414662832],[-76.57281564885048,39.26844305574769],[-76.57281657567708,39.2684419385641],[-76.5728174516578,39.26844079777558],[-76.57281827678716,39.26843963428293],[-76.57281904990107,39.26843844898264],[-76.57281976867641,39.268437242767],[-76.57282043309154,39.26843601923907],[-76.57282104199304,39.26843477749384],[-76.57282159536472,39.26843352023361],[-76.57282209204237,39.26843224835483],[-76.57282253200968,39.26843096455981],[-76.57282291410787,39.26842966884435],[-76.57282323831521,39.26842836481134],[-76.57282350347846,39.26842705155592],[-76.5728237095758,39.26842573268105],[-76.57282385660189,39.26842440908747],[-76.5728239445513,39.26842308167591],[-76.57282232577461,39.26840112227961],[-76.57281123688536,39.26822887318803],[-76.57280199176597,39.26808067678717],[-76.57279504659755,39.26797757487268],[-76.5727897986397,39.26788648366037],[-76.57278624200993,39.26787074151584],[-76.57278270439485,39.26786685444468],[-76.57277950490224,39.26786223898158],[-76.57277357154744,39.26785727758664],[-76.5727662293292,39.26785304519174],[-76.57275822138875,39.2678496769131],[-76.57275193929524,39.2678477849656],[-76.57274705934653,39.2678474348287],[-76.57256886621921,39.2678541330725],[-76.57236985544799,39.26786192263959],[-76.57233416991566,39.26786327535608],[-76.57231348172425,39.26786404313467],[-76.5722852571953,39.26786510413562],[-76.57225364583942,39.26786629601613],[-76.5722018887836,39.26786822699704],[-76.5721526582024,39.26787011221261],[-76.57169810339998,39.26788674360944],[-76.57025920214937,39.26793890203368],[-76.56891343916229,39.26799354840171],[-76.56888253747287,39.26749453562064],[-76.56886364043251,39.2672632589031],[-76.56888708325938,39.2672504243463],[-76.56900311922738,39.26724837314379],[-76.56900583902113,39.26723214047518],[-76.56920771562945,39.26722620469196],[-76.56956786156809,39.26721288056224],[-76.56957225454421,39.26723332608309],[-76.56960044925229,39.26723179812679],[-76.56959184102307,39.26708002588844],[-76.56966405539568,39.26701152589418],[-76.57024456722995,39.26698684932513],[-76.57066827181133,39.26697022879102],[-76.57120930514368,39.26694862426825],[-76.57168408546217,39.26692987517821],[-76.57214128185214,39.2669128805595],[-76.57241048565072,39.26689921275121],[-76.57272598035669,39.26688946175297],[-76.57271401876262,39.26667459045928],[-76.572426362025,39.26668712797027],[-76.57243203870381,39.26676832405495],[-76.57223969806496,39.26677467122713],[-76.57193741684362,39.26678721732556],[-76.57167107290259,39.26679825793126],[-76.57142739647652,39.2668076818092],[-76.57118746098166,39.26681856997897],[-76.57086945635818,39.26683101267896],[-76.57086432356712,39.26673183916918],[-76.57088439360375,39.26672765637756],[-76.57090126265413,39.26672411584426],[-76.57091565300084,39.26672096709385],[-76.57095602776371,39.26671383910175],[-76.57097453351645,39.26671002439857],[-76.57099452221655,39.26670645111101],[-76.57101224018578,39.26670260379873],[-76.57102828344793,39.26669841528069],[-76.57104709599642,39.26669292085339],[-76.57106284057717,39.26668964281699],[-76.57107850772076,39.26668633116726],[-76.57109576756474,39.26668523311505],[-76.57111433950976,39.26668522707928],[-76.5711304625175,39.26668586515423],[-76.57114689254882,39.26668651245501],[-76.57116624665117,39.26668727762253],[-76.57118264192025,39.26668792479141],[-76.57119560913293,39.26668843963876],[-76.571209292139,39.26669131170619],[-76.57122200599815,39.26669329117534],[-76.57123587938683,39.26669380572374],[-76.57125020693248,39.26669529385743],[-76.57126468193809,39.26669807603076],[-76.57127888406833,39.26670152647683],[-76.57129163710503,39.26670411860378],[-76.57130787722276,39.2667058965535],[-76.57132013709384,39.26670994431991],[-76.5713328808183,39.26671388665979],[-76.57134361724509,39.26671710736234],[-76.57135382512452,39.26671996762896],[-76.57136308331445,39.26672159127688],[-76.57137309018121,39.26672204755879],[-76.57138198369874,39.26672323029936],[-76.57138999628864,39.26672637259782],[-76.57139816450248,39.26672715545129],[-76.57140692611797,39.26672734596286],[-76.57141504032715,39.26672766922626],[-76.57142390319048,39.26672817177185],[-76.57143288630967,39.26672852522812],[-76.57144529398911,39.26672671222268],[-76.57145716309832,39.26672466305093],[-76.57147140703532,39.26672138488838],[-76.57148361731296,39.26671772008012],[-76.57149665059401,39.26671362770641],[-76.57150914892233,39.26670985135051],[-76.57152186402917,39.26670510115311],[-76.57153420369011,39.26670073421254],[-76.57154562736623,39.2666964567079],[-76.57156000712446,39.26669044970277],[-76.57157505361013,39.26668456402957],[-76.57159042554348,39.26667909029193],[-76.5716027106038,39.26667493662701],[-76.57161722115283,39.26666933723916],[-76.5716286299098,39.2666640742317],[-76.57164110834999,39.26665879080411],[-76.57165517815858,39.26665268086998],[-76.57167102780781,39.26664658012808],[-76.57168529414645,39.26664112216245],[-76.57170078692117,39.26663559120196],[-76.57171233162757,39.26662892078161],[-76.57172244543193,39.26662164072636],[-76.57174437380368,39.26660598337449],[-76.57176270865956,39.26658784751226],[-76.57177461109377,39.26657566208613],[-76.57177958901744,39.26656897852279],[-76.57178272389757,39.26656277375282],[-76.57178623537793,39.26655618572797],[-76.57178964658799,39.26654931539699],[-76.57179258398611,39.26654184702971],[-76.57179525861262,39.26653356521135],[-76.57179707889455,39.26652629634423],[-76.5717989850011,39.26651709474154],[-76.57179997638937,39.26650911755055],[-76.5718010444228,39.26650188107042],[-76.57180297070752,39.26649298400079],[-76.57180467456935,39.26648503643057],[-76.57180669727144,39.26647648380587],[-76.57180914235421,39.2664668743186],[-76.57181112652837,39.26645644885628],[-76.57181348338533,39.26644763352471],[-76.57181634359318,39.26643951361979],[-76.57181915855244,39.26642429729814],[-76.57181990479988,39.26641584901201],[-76.57182053894533,39.26640619869232],[-76.57182130252269,39.26639449419229],[-76.57182201858417,39.26638355877505],[-76.57182269138876,39.26637326274542],[-76.57182335282408,39.26636312250724],[-76.57182402964806,39.26635273641539],[-76.57182462552412,39.26634366695148],[-76.57182511963381,39.26633609959786],[-76.57182578106841,39.26632595935956],[-76.57182636864792,39.26631692049142],[-76.57182701049425,39.26630714589351],[-76.57182771154017,39.26629639417791],[-76.57182840722253,39.26628576314565],[-76.57182901885588,39.26627638657702],[-76.571829586814,39.2662677187537],[-76.5718304892638,39.26625393128264],[-76.57183093741776,39.26624706636044],[-76.57183128484208,39.2662374987663],[-76.57183118867256,39.26622751069759],[-76.57183027635516,39.26621604689716],[-76.57182610331377,39.26619650302695],[-76.57182471652982,39.26618627875506],[-76.57182269833896,39.26617603326487],[-76.57182240147353,39.26616723527984],[-76.57182233677001,39.26615798595562],[-76.57182079149018,39.26614714317864],[-76.57181526195438,39.26612714397763],[-76.57181371236399,39.26611759198568],[-76.57180781230598,39.26609908220466],[-76.57180549908108,39.26609029848578],[-76.57180172743887,39.26607970611103],[-76.57179948771713,39.26606987957035],[-76.57179754173332,39.26606034324728],[-76.57179348278696,39.2660505073707],[-76.57178937440531,39.26604137481372],[-76.57178598188433,39.26603343838482],[-76.57178180221098,39.26602421458997],[-76.57177716622053,39.26601533502608],[-76.57177267217709,39.26600674422536],[-76.57176757684684,39.26599947806356],[-76.57176149350448,39.2659921416418],[-76.57175314445925,39.2659844699786],[-76.57174687015936,39.26597709412666],[-76.57174254717027,39.26597069011315],[-76.57173624876609,39.26596423655944],[-76.57172908203678,39.26595842568957],[-76.57172012358087,39.26595284969086],[-76.57171201163851,39.26594813340935],[-76.57170354098304,39.26594294922105],[-76.57169342273622,39.26593754193797],[-76.571685414716,39.2659330791495],[-76.57167047102332,39.26592714623145],[-76.57166195851153,39.26592198620818],[-76.57165380726767,39.26591610328425],[-76.57164326972507,39.26591105117163],[-76.57163119288815,39.26590722389269],[-76.57161782014805,39.26590442146348],[-76.57160460176107,39.26590119623472],[-76.57159138790247,39.26589837276364],[-76.57157848403403,39.26589506670938],[-76.57156344767704,39.26589296891106],[-76.57155180360881,39.26589097176247],[-76.57154217447855,39.26588650845432],[-76.57153150140959,39.26588298534175],[-76.57151971443012,39.26588009230482],[-76.57150794326053,39.26587707591916],[-76.57149516335052,39.26587607897719],[-76.57148038553314,39.26587549540238],[-76.57147124102977,39.26587329298373],[-76.5714626734638,39.26586957757738],[-76.57145238734365,39.26586913919963],[-76.57144237676137,39.26586874236105],[-76.57142846433081,39.26586819526614],[-76.57141352414374,39.26586763541109],[-76.57139792735813,39.2658704582452],[-76.57138138124526,39.26587275336517],[-76.57136350452929,39.26587241698564],[-76.57134777675638,39.26587179389607],[-76.5713345733395,39.26587127279804],[-76.57131857099235,39.26587064059539],[-76.57130067860169,39.26587174808076],[-76.57127934233705,39.26587170351896],[-76.57125851682667,39.26587112756314],[-76.57124022992605,39.26587040413847],[-76.57122168624871,39.26587056162565],[-76.57120537172571,39.26587173250677],[-76.57118674240844,39.26587378939616],[-76.57116809749225,39.2658761263646],[-76.57114932015322,39.26587928344649],[-76.57113113270576,39.26588185267634],[-76.57111121506668,39.26588367785526],[-76.57109080901476,39.26588578859205],[-76.57107254449353,39.26588826385144],[-76.57105354212428,39.26589184075495],[-76.57103805063672,39.26589430181704],[-76.57101945144598,39.26589654885207],[-76.57100176451949,39.26589931986086],[-76.57098333641443,39.26590316818054],[-76.57096682076258,39.26590617135739],[-76.57094733372102,39.26590807194464],[-76.57093383936549,39.26590775601454],[-76.57091663804191,39.26590974691781],[-76.57090013331681,39.26591324194472],[-76.57088252788508,39.26591537368779],[-76.57086547694234,39.26591568249781],[-76.57085069562929,39.26591510153327],[-76.57083297800808,39.26591470710447],[-76.57081539230212,39.26591530129804],[-76.5707973023277,39.26591458753178],[-76.57077862266947,39.26591385179064],[-76.57075643394604,39.26591297260898],[-76.57073707888965,39.26591220917103],[-76.57071855564217,39.2659114775951],[-76.57070184544743,39.26591081749935],[-76.5706861964505,39.26591019731149],[-76.57066880760256,39.26590966444078],[-76.57065268825153,39.26590902631501],[-76.57063936550881,39.26590850019871],[-76.57062833078621,39.26590806711867],[-76.57061294823453,39.26590822525834],[-76.57059313489091,39.26591272691358],[-76.57057304338319,39.26591417394357],[-76.57055680699821,39.26591353537676],[-76.57053729787354,39.2659127641363],[-76.5705175016766,39.26591213416409],[-76.57049367453789,39.26591334592957],[-76.57047354504763,39.26591417577733],[-76.57045387531106,39.26591524330455],[-76.57043592952219,39.26591597934637],[-76.57041543782408,39.26591691955451],[-76.57039492780612,39.26591878027732],[-76.57037800876947,39.26592007764201],[-76.57035815325085,39.26592101566371],[-76.57033933407347,39.26592054867194],[-76.57031974721878,39.2659209409037],[-76.57030277375939,39.26592070044678],[-76.57028683223912,39.26592093036146],[-76.57026719408194,39.2659257757956],[-76.57025099968918,39.26593044917123],[-76.57023298342716,39.26593287116257],[-76.57021784880035,39.26593227171081],[-76.57020728674331,39.26593185743566],[-76.5701800121907,39.26593078027889],[-76.57016310158161,39.26593011126608],[-76.5701463114611,39.26592944629493],[-76.57013523851589,39.26592901032636],[-76.57012015803939,39.2659288452306],[-76.57009394175033,39.26593269192455],[-76.57008418604653,39.26593325972545],[-76.57005155074674,39.26593623979141],[-76.57003818849064,39.26593687995734],[-76.57002677737314,39.26593679494082],[-76.5700079316827,39.26593611341602],[-76.56999292888915,39.26593708806038],[-76.56997882539743,39.26593766515388],[-76.56996373008104,39.26593765401508],[-76.56994867703939,39.26594003637076],[-76.56993347123814,39.26594238573743],[-76.56991683229637,39.26594182307397],[-76.56989921267888,39.26594112710582],[-76.56988190933527,39.26594044310263],[-76.56986811740191,39.2659398980658],[-76.5698516829365,39.26593924786669],[-76.5698353272501,39.26593860065621],[-76.56981704287668,39.26594147378739],[-76.56979925494642,39.26594273725971],[-76.56978078525648,39.26594234622256],[-76.56976291575108,39.26594311216635],[-76.56974853065223,39.26594254602624],[-76.56973210027057,39.26594542683748],[-76.56971213575535,39.2659467561849],[-76.56969463891713,39.26594606874287],[-76.56967607629589,39.26594533325518],[-76.56965826205889,39.2659446284308],[-76.56964378373561,39.26594242884305],[-76.56963091164654,39.26593924609629],[-76.56961430723199,39.26593757647209],[-76.56959684633468,39.26593688644488],[-76.56957848062257,39.26593616517491],[-76.56956074400875,39.26593546332253],[-76.56954477990172,39.26593483101836],[-76.56953111517203,39.26593413868219],[-76.56951750189522,39.26593203232658],[-76.56950237502957,39.26593072750937],[-76.56948670550339,39.26592986297816],[-76.56947074913712,39.26592852809289],[-76.56945877676726,39.26592430823811],[-76.56944710688285,39.26592141812451],[-76.56943279942728,39.26592085223034],[-76.56941975820216,39.26592033781702],[-76.56941029559279,39.26591996263129],[-76.56939945781431,39.2659195382648],[-76.56938689970113,39.2659199948461],[-76.56937466555073,39.26592282433725],[-76.56936058783739,39.2659266000797],[-76.56934559238043,39.26593113810812],[-76.56932899127067,39.26593484424164],[-76.56931544273239,39.26593658257963],[-76.56929966704101,39.26593850911544],[-76.56928615084058,39.26593797402916],[-76.5692762750906,39.26593789096786],[-76.56926640421737,39.26593719540111],[-76.56925879867966,39.26593689367145],[-76.56925248834671,39.26593664263122],[-76.56924244278224,39.26593800017369],[-76.56923086785923,39.26593855672687],[-76.56921729321816,39.26593829525194],[-76.56920775530509,39.26593791707137],[-76.56920006866048,39.26593761413956],[-76.5691917564217,39.26593728729391],[-76.56917989109779,39.26593681499998],[-76.56917046224201,39.26593717854887],[-76.56915747302125,39.26593878650765],[-76.56914666669452,39.26593909816098],[-76.56913725998561,39.26594096697253],[-76.56912774918737,39.26594375688745],[-76.56911803179409,39.26594736484213],[-76.56910918811762,39.26595020944784],[-76.56909743160259,39.26595300012814],[-76.56908508923181,39.26595380246309],[-76.56907673490238,39.26595525447244],[-76.56906567588761,39.26595576876485],[-76.56905468056479,39.26595533568152],[-76.56904420070852,39.26595550620213],[-76.5690327235519,39.26595637295891],[-76.56901955561143,39.26595649758177],[-76.56900788836624,39.26595603680663],[-76.56899688459352,39.26595756736204],[-76.56898266419466,39.26595869337568],[-76.56897101361824,39.26595854072086],[-76.56895876017626,39.26595805617088],[-76.56894614734283,39.26595817201375],[-76.56893214575459,39.26595780444954],[-76.56892094770008,39.26595736250263],[-76.56890983191707,39.26595692085667],[-76.56889844501922,39.26595647280975],[-76.56888358611027,39.26595588590818],[-76.56886115989145,39.26595499919115],[-76.56883554151044,39.26595273338344],[-76.56883179694123,39.2658057862845],[-76.5688211208702,39.26549993707575],[-76.56888396573235,39.26549628819284],[-76.56886506767563,39.26521357834773],[-76.56885372409536,39.26501224643383],[-76.56920599724255,39.26499882878572],[-76.5695822112498,39.26498562934385],[-76.57022753994198,39.26496083104675],[-76.57058269063711,39.26494745853457],[-76.57110181156067,39.26492795067893],[-76.57153008025824,39.26491217605055],[-76.57201333062126,39.26489392316998],[-76.57202066656603,39.2648926050581],[-76.57202535337018,39.26489036211042],[-76.57202855979008,39.26488803449984],[-76.57203378765783,39.26488273000973],[-76.57203558322151,39.26487954873336],[-76.57203881407378,39.2648743225383],[-76.57203939337782,39.26487087650734],[-76.5720402838421,39.26486675243086],[-76.5720296048531,39.26472935170766],[-76.57202712044931,39.26472147894361],[-76.57201966776121,39.26471621921804],[-76.57201115169143,39.26471166902521],[-76.57200433714873,39.26471011468413],[-76.57199688543083,39.264710074014],[-76.57198850697712,39.26471190986978],[-76.57198385494789,39.26471376831461],[-76.57198054781045,39.26471454443344],[-76.57152142214225,39.26473271765868],[-76.57101161696228,39.26475048417922],[-76.57047323191944,39.2647707390713],[-76.57009976012075,39.2647838685317],[-76.56956196513964,39.26480361067192],[-76.56907439848452,39.26482489033206],[-76.56878343352302,39.26483472787559],[-76.56876395566624,39.26462998097125],[-76.5697490722773,39.26459316606015],[-76.56989522637642,39.26458373804423],[-76.56988004111582,39.26444414253551],[-76.57046902015425,39.26442092634887],[-76.57097150121957,39.26440177617264],[-76.57129514158608,39.26438817379454],[-76.57138699484472,39.2643848789835],[-76.57138898668504,39.26438066705266],[-76.57144540135734,39.26437668526971],[-76.57152040495353,39.26435193650619],[-76.57156559989858,39.26433424726412],[-76.57157698783607,39.2643294922171],[-76.57162886354126,39.26430325831054],[-76.57174733807814,39.26425901769716],[-76.57173812302908,39.26424511315351],[-76.57162279792644,39.26429281969451],[-76.57156954455371,39.26431731279094],[-76.57151147643783,39.26433971112257],[-76.57144609895805,39.26435998666244],[-76.57138639533437,39.26436768472335],[-76.5713827943037,39.26430373861776],[-76.57096689743406,39.26432378070282],[-76.57097748151531,39.26431917140375],[-76.57098919935612,39.26431984565137],[-76.57099770508299,39.26432033791821],[-76.57100550943446,39.26431877657175],[-76.57101662768338,39.26431531950225],[-76.57102176097115,39.2643120567535],[-76.57102447413195,39.26431024440931],[-76.57102782470292,39.26430688236892],[-76.57103110372235,39.26430328046257],[-76.57103492463003,39.26429917070046],[-76.57104036541908,39.26429372741214],[-76.57104630992623,39.26428718972797],[-76.57105335633025,39.26427951389361],[-76.5710599278123,39.26427104364755],[-76.57106836737908,39.26426024272948],[-76.57107590635184,39.26425101576747],[-76.57108188411308,39.26424204252412],[-76.57108651252382,39.26423469654508],[-76.57109274814491,39.26422562065455],[-76.57109804127454,39.26421699891192],[-76.5711035331084,39.26421001008784],[-76.57111256660281,39.26420024992203],[-76.57112372959017,39.264191111857],[-76.57113278734185,39.26418270563369],[-76.57114180991353,39.26417360118539],[-76.57115134082181,39.26416378788622],[-76.57116170569087,39.26415422173997],[-76.57116904468354,39.26414606145254],[-76.57117759795189,39.26413561494368],[-76.57118611825933,39.2641260204411],[-76.57119180731543,39.2641174559875],[-76.57119746707357,39.26410606931795],[-76.57120200765483,39.26409388678567],[-76.57120892495148,39.26408129947862],[-76.57121545272337,39.26407123560389],[-76.57122071790938,39.26406033030446],[-76.5712268180835,39.26404796790724],[-76.57123257564444,39.26403554300645],[-76.57124009779018,39.2640239154231],[-76.57125203529692,39.26401238953294],[-76.57126175831446,39.26400011692616],[-76.5712682406018,39.26399105814023],[-76.5712780383447,39.26398060896097],[-76.57128687461142,39.26397183890702],[-76.57129460657677,39.26396115338945],[-76.57129861464416,39.26395195135463],[-76.57130060763632,39.26394773942903],[-76.57130590023692,39.26393497774094],[-76.57130939469592,39.26392543874476],[-76.57131333350951,39.26391542396305],[-76.57131517317649,39.26390551861826],[-76.57131601823194,39.26389664012216],[-76.57131711375521,39.26388773191424],[-76.57131790201048,39.26387943240513],[-76.57131866016553,39.26387151200979],[-76.57131960650874,39.26386159529685],[-76.57131972877424,39.26385248086299],[-76.57131812157388,39.26384481215514],[-76.57131435524437,39.26383682480012],[-76.57130843302323,39.26382855844336],[-76.57130308904172,39.26381990416424],[-76.57129765981168,39.26381116760373],[-76.57129132185835,39.26380094145681],[-76.5712843556521,39.26378902497496],[-76.57127851395602,39.26377778817471],[-76.57127161680869,39.26376614127403],[-76.57126563030975,39.26375489853982],[-76.57125999940133,39.26374406335022],[-76.57125537776123,39.26373150146814],[-76.57125458181703,39.26371479740578],[-76.57125588232894,39.26370111316881],[-76.57125743247565,39.26368485184255],[-76.57125886508292,39.26366982504123],[-76.57126005760711,39.263657328524],[-76.57126114256926,39.26364594946821],[-76.57126240227252,39.26363269024486],[-76.57128551811105,39.26363228101606],[-76.57149390423616,39.26350222923101],[-76.57182303751593,39.26349437524449],[-76.57190822204984,39.26349206907865],[-76.571932124631,39.26344882111909],[-76.57186661789301,39.26322793354516],[-76.57184014805655,39.26319850889929],[-76.57183713463417,39.26317039662094],[-76.57184747832183,39.26316891113402],[-76.57176990877947,39.26291266034852],[-76.57172287421854,39.26274669055294],[-76.57170702591375,39.26274906572926],[-76.57169284632781,39.26270572214639],[-76.5716878141402,39.26270742516205],[-76.57167689948886,39.26266663815792],[-76.57167984305825,39.26265889056967],[-76.5716570206243,39.26259615342288],[-76.57166280351834,39.26259543318372],[-76.57166265278217,39.26259161067023],[-76.57167463940283,39.26258821435452],[-76.57166004977205,39.26254485575825],[-76.57147705945573,39.26257543762063],[-76.57144901577684,39.26256167151276],[-76.57146122765462,39.2625443834774],[-76.57146626105087,39.26253710651596],[-76.57146972154308,39.2625320261951],[-76.57147075475899,39.26252767294488],[-76.57147196539094,39.26252310595901],[-76.5714731217487,39.26251812442123],[-76.57147415550719,39.26251252991293],[-76.57147731578101,39.26250036754948],[-76.57147834852606,39.2624935975336],[-76.57147899531054,39.26248588570623],[-76.57148018385308,39.26247864425577],[-76.57148098125187,39.26247170313567],[-76.57148148500643,39.26246541850555],[-76.57148247182772,39.26245934551735],[-76.57148630431331,39.26245176241493],[-76.57148729569626,39.2624437825149],[-76.5714880195027,39.26243617185457],[-76.57148858942489,39.26242775624575],[-76.57148908948912,39.26242035554898],[-76.57148949283365,39.26241438852382],[-76.57149012876201,39.26240502014195],[-76.57149073703849,39.26239485808144],[-76.57148836668712,39.26238692626554],[-76.57148375247118,39.26238005097072],[-76.57147711834415,39.26237283592074],[-76.57147001970331,39.26236694240534],[-76.57146264647986,39.26235970033662],[-76.57145468574653,39.26235265699492],[-76.57144660518577,39.26234684456693],[-76.57143855897387,39.26234167631376],[-76.5714313789157,39.26233756151806],[-76.57142602243322,39.26233387133423],[-76.57142401707941,39.26232958626219],[-76.57142348195914,39.26232475528516],[-76.57142410110262,39.26231624887831],[-76.57143019690429,39.2623139813702],[-76.57144547196692,39.26231460820471],[-76.57145433395287,39.26231497292977],[-76.57146568888362,39.26231543953087],[-76.57147471808582,39.26231574451306],[-76.57148204316009,39.26231349770196],[-76.57148693795857,39.2623076785789],[-76.5714887273695,39.26230128784528],[-76.57149249470737,39.26229221102913],[-76.57149770573274,39.26228544905332],[-76.57150198372948,39.26227546792635],[-76.57150646119483,39.26226622615786],[-76.57150936421282,39.26225905401655],[-76.57151268619201,39.26225177170851],[-76.57151467715312,39.26224654280145],[-76.5715197634385,39.26223318853985],[-76.57181191604116,39.26224053255532],[-76.57168691346429,39.2618677445863],[-76.57160264921907,39.26160493252407]]]],"type":"MultiPolygon"} +},{ + "id": 1108832035, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":61543.521694, + "geom:bbox":"-122.427396398,37.78019303,-122.423730984,37.7824798377", + "geom:latitude":37.781336, + "geom:longitude":-122.42556, + "iso:country":"US", + "lbl:latitude":37.781336, + "lbl:longitude":-122.425557, + "lbl:max_zoom":18.0, + "mps:latitude":37.781336, + "mps:longitude":-122.425557, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":37.781336, + "reversegeo:longitude":-122.425557, + "src:geom":"mz", + "wof:belongsto":[ + 85882165, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"23f20d9bba31b1e0adb3cca48882425d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832035, + "neighbourhood_id":85882165, + "region_id":85688637 + } + ], + "wof:id":1108832035, + "wof:lastmodified":1566624114, + "wof:name":"Malcolm X Square", + "wof:parent_id":85882165, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420558999 + ], + "wof:tags":[] +}, + "bbox": [ + -122.42739639799993, + 37.78019303000008, + -122.42373098399992, + 37.78247983772838 +], + "geometry": {"coordinates":[[[-122.42409920687078,37.78247983772838],[-122.42373098399992,37.78061162100005],[-122.42701675699993,37.78019303000008],[-122.42720275599993,37.78111712600008],[-122.42739639799993,37.78205693900009],[-122.42409920687078,37.78247983772838]]],"type":"Polygon"} +},{ + "id": 1108832037, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":76625.382164, + "geom:bbox":"-122.424099207,37.780611621,-122.420439518,37.7838290009", + "geom:latitude":37.782054, + "geom:longitude":-122.422167, + "iso:country":"US", + "lbl:latitude":37.782149, + "lbl:longitude":-122.420577, + "lbl:max_zoom":18.0, + "mps:latitude":37.78187, + "mps:longitude":-122.421836, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Van Ness" + ], + "reversegeo:latitude":37.78187, + "reversegeo:longitude":-122.421836, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882165, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8e4333b5c8b4ecae4053e8056495d761", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832037, + "neighbourhood_id":85882165, + "region_id":85688637 + } + ], + "wof:id":1108832037, + "wof:lastmodified":1566624113, + "wof:name":"Van Ness", + "wof:parent_id":85882165, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869755 + ], + "wof:tags":[] +}, + "bbox": [ + -122.42409920687078, + 37.78061162100005, + -122.42043951799991, + 37.78382900088511 +], + "geometry": {"coordinates":[[[-122.42373098399992,37.78061162100005],[-122.42409920687078,37.78247983772838],[-122.42245898625742,37.7826785650943],[-122.42265214929417,37.78362086771461],[-122.4210093467094,37.78382900088511],[-122.42063824899992,37.78196076500006],[-122.42043951799991,37.78103084100007],[-122.4220867919999,37.78082104700007],[-122.42373098399992,37.78061162100005]]],"type":"Polygon"} +},{ + "id": 1108832039, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":167999.450124, + "geom:bbox":"-122.423355862,37.77303605,-122.417506101,37.7789580962", + "geom:latitude":37.776278, + "geom:longitude":-122.421052, + "iso:country":"US", + "lbl:latitude":37.775768, + "lbl:longitude":-122.420354, + "lbl:max_zoom":18.0, + "mps:latitude":37.776287, + "mps:longitude":-122.4211, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "name:bul_x_preferred":[ + "\u0410\u043d\u0442\u0440\u0430\u043a\u0442" + ], + "name:cat_x_preferred":[ + "Intermedi" + ], + "name:fin_x_preferred":[ + "V\u00e4liaika" + ], + "name:heb_x_preferred":[ + "\u05d4\u05e4\u05e1\u05e7\u05d4" + ], + "name:lat_x_preferred":[ + "Intermissio" + ], + "name:por_x_preferred":[ + "Intervalo" + ], + "name:spa_x_preferred":[ + "Intermedio" + ], + "reversegeo:latitude":37.776287, + "reversegeo:longitude":-122.4211, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866841, + 102191575, + 1108830801, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0359bc32848b80dc41c6bc93b082918c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830801, + "microhood_id":1108832039, + "neighbourhood_id":85866841, + "region_id":85688637 + } + ], + "wof:id":1108832039, + "wof:lastmodified":1566624113, + "wof:name":"Intermission", + "wof:parent_id":85866841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887425 + ], + "wof:tags":[] +}, + "bbox": [ + -122.42335586247138, + 37.77303605000009, + -122.41750610104906, + 37.77895809618193 +], + "geometry": {"coordinates":[[[-122.42335586247138,37.77874805479004],[-122.42335402499992,37.77874737100007],[-122.42171027134052,37.77895809618193],[-122.42152043870095,37.7780209987432],[-122.41980694934945,37.77824737730258],[-122.41971036783109,37.77777356092018],[-122.4181417507571,37.77797098478192],[-122.41804516923874,37.77751559294627],[-122.41969038544798,37.77729974150085],[-122.41950388320565,37.77637052015515],[-122.4179918828838,37.77656005066961],[-122.41789197096826,37.77655478593965],[-122.41774876388931,37.776491609151],[-122.41750897529202,37.77653899174755],[-122.41750610104906,37.77653678483668],[-122.42194124699989,37.77303605000009],[-122.4221068569999,37.77316732000008],[-122.42222936799993,37.77315174300008],[-122.42335586247138,37.77874805479004]]],"type":"Polygon"} +},{ + "id": 1108832043, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":77498.725995, + "geom:bbox":"-122.407148801,37.7877660011,-122.40253884,37.7909245374", + "geom:latitude":37.78958, + "geom:longitude":-122.404819, + "iso:country":"US", + "lbl:latitude":37.789763, + "lbl:longitude":-122.403576, + "lbl:max_zoom":18.0, + "mps:latitude":37.789666, + "mps:longitude":-122.404659, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "French Quarter" + ], + "name:eus_x_preferred":[ + "Frantziar Auzoa" + ], + "name:fas_x_preferred":[ + "\u0641\u0631\u0646\u0686 \u06a9\u0648\u0627\u0631\u062a\u0631" + ], + "name:fin_x_preferred":[ + "Ranskalaiskorttelit" + ], + "name:heb_x_preferred":[ + "\u05d4\u05e8\u05d5\u05d1\u05e2 \u05d4\u05e6\u05e8\u05e4\u05ea\u05d9" + ], + "name:ind_x_preferred":[ + "French Quarter" + ], + "name:ita_x_preferred":[ + "Quartiere francese" + ], + "name:jpn_x_preferred":[ + "\u30d5\u30ec\u30f3\u30c1\u30fb\u30af\u30aa\u30fc\u30bf\u30fc" + ], + "name:nor_x_preferred":[ + "French Quarter" + ], + "name:pol_x_preferred":[ + "French Quarter" + ], + "name:por_x_preferred":[ + "Bairro Franc\u00eas" + ], + "name:rus_x_preferred":[ + "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u0441\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:ukr_x_preferred":[ + "\u0424\u0440\u0430\u043d\u0446\u0443\u0437\u044c\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:zho_x_preferred":[ + "\u6cd5\u56fd\u533a" + ], + "reversegeo:latitude":37.789666, + "reversegeo:longitude":-122.404659, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866851, + 102191575, + 1108830801, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3f0b10744a96900e3aecb7216bb5202b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830801, + "microhood_id":1108832043, + "neighbourhood_id":85866851, + "region_id":85688637 + } + ], + "wof:id":1108832043, + "wof:lastmodified":1566624113, + "wof:name":"French Quarter", + "wof:parent_id":85866851, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85882187 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40714880056757, + 37.78776600113053, + -122.4025388399474, + 37.79092453742741 +], + "geometry": {"coordinates":[[[-122.40272931474462,37.79092453742741],[-122.4025388399474,37.78999787443935],[-122.4038443556438,37.78983469730701],[-122.40349799433659,37.78796076634441],[-122.40503996823305,37.78776600113053],[-122.40531306080221,37.78916092984817],[-122.40685836509591,37.78896090395116],[-122.40714880056757,37.79036629439128],[-122.40272931474462,37.79092453742741]]],"type":"Polygon"} +},{ + "id": 1108832047, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":12363.800415, + "geom:bbox":"-122.400272467,37.7597803221,-122.399181174,37.7611332348", + "geom:latitude":37.760457, + "geom:longitude":-122.399725, + "iso:country":"US", + "lbl:latitude":37.758562, + "lbl:longitude":-122.403532, + "lbl:max_zoom":18.0, + "mps:latitude":37.760456, + "mps:longitude":-122.399727, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":19.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.760456, + "reversegeo:longitude":-122.399727, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85842947, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"df6a12ee2ff0bfba66a5ef85bbbb26b6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832047, + "neighbourhood_id":85842947, + "region_id":85688637 + } + ], + "wof:id":1108832047, + "wof:lastmodified":1566624113, + "wof:name":"Victoria Mews", + "wof:parent_id":85842947, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85853735 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40027246721925, + 37.7597803221394, + -122.39918117429204, + 37.76113323482623 +], + "geometry": {"coordinates":[[[-122.40027246721925,37.76107517732665],[-122.39929757687474,37.76113323482623],[-122.39918117429204,37.75983774791148],[-122.40014860359146,37.7597803221394],[-122.40027246721925,37.76107517732665]]],"type":"Polygon"} +},{ + "id": 1108832051, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000039, + "geom:area_square_m":381639.254726, + "geom:bbox":"-122.44679278,37.782488031,-122.437847943,37.788278398", + "geom:latitude":37.785397, + "geom:longitude":-122.442324, + "iso:country":"US", + "lbl:latitude":37.787486, + "lbl:longitude":-122.441203, + "lbl:max_zoom":18.0, + "mps:latitude":37.785387, + "mps:longitude":-122.442326, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.785387, + "reversegeo:longitude":-122.442326, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865927, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8033cbe5a74cd0deb42f0fe3ee283df9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832051, + "neighbourhood_id":85865927, + "region_id":85688637 + } + ], + "wof:id":1108832051, + "wof:lastmodified":1566624115, + "wof:name":"Zion District", + "wof:parent_id":85865927, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887475 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4467927799999, + 37.78248803100007, + -122.4378479429999, + 37.78827839800005 +], + "geometry": {"coordinates":[[[-122.43784794299989,37.78371763700005],[-122.4394803809999,37.78330848700006],[-122.4427930999999,37.78288533600005],[-122.44582051099991,37.78248803100007],[-122.4460330259999,37.78350919800005],[-122.44624722299994,37.78443831200008],[-122.44642170899994,37.78537026400005],[-122.44661046499994,37.78630229700008],[-122.4467927799999,37.78726185300008],[-122.44540219699991,37.78743816400004],[-122.44375326599993,37.78764721000005],[-122.44210952499992,37.78785557200007],[-122.4404401139999,37.78806716500009],[-122.43877333799992,37.78827839800005],[-122.43784794299989,37.78371763700005]]],"type":"Polygon"} +},{ + "id": 1108832055, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":166268.279174, + "geom:bbox":"-122.443866,37.765885,-122.438338,37.770847", + "geom:latitude":37.768565, + "geom:longitude":-122.441388, + "iso:country":"US", + "lbl:latitude":37.768566, + "lbl:longitude":-122.44133, + "lbl:max_zoom":18.0, + "mps:latitude":37.768566, + "mps:longitude":-122.44133, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Buena Vista Park" + ], + "name:eng_x_variant":[ + "Buena Vista" + ], + "name:fra_x_preferred":[ + "Buena Vista Park" + ], + "name:nld_x_preferred":[ + "Buena Vista Park" + ], + "name:por_x_preferred":[ + "Buena Vista Park" + ], + "reversegeo:latitude":37.768566, + "reversegeo:longitude":-122.44133, + "src:geom":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 102087579, + 85922583, + 1108831841, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bf9907f38a531cad7f27e68f51aaad17", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832055, + "neighbourhood_id":1108831841, + "region_id":85688637 + } + ], + "wof:id":1108832055, + "wof:lastmodified":1587164336, + "wof:name":"Buena Vista Park", + "wof:parent_id":1108831841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420558707 + ], + "wof:tags":[] +}, + "bbox": [ + -122.443866, + 37.765885, + -122.438338, + 37.770847 +], + "geometry": {"coordinates":[[[-122.439301,37.768166],[-122.44013699999999,37.767757],[-122.44060399999999,37.766955],[-122.44193799999999,37.765953],[-122.442009,37.765907],[-122.442167,37.765888],[-122.44236100000001,37.765885],[-122.44257500000001,37.765928],[-122.44281100000001,37.766011],[-122.443004,37.766145],[-122.44304200000001,37.766215],[-122.443105,37.766414],[-122.443533,37.766691],[-122.44369500000001,37.766954],[-122.443764,37.767067],[-122.443866,37.767536],[-122.44335599999999,37.768944],[-122.443167,37.769037],[-122.44241100000001,37.769493],[-122.442384,37.7696],[-122.44250599999999,37.769686],[-122.44264699999999,37.76969],[-122.44276499999999,37.769661],[-122.44301900000001,37.769825],[-122.443155,37.769972],[-122.443265,37.77018],[-122.44331200000001,37.77047],[-122.441998,37.770638],[-122.440358,37.770847],[-122.440263,37.770725],[-122.439673,37.770543],[-122.43946099999999,37.770406],[-122.43925400000001,37.770025],[-122.43915,37.769938],[-122.438823,37.769684],[-122.438351,37.769185],[-122.438338,37.769007],[-122.43882000000001,37.768401],[-122.439301,37.768166]]],"type":"Polygon"} +},{ + "id": 1108832057, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":413154.099916, + "geom:bbox":"-122.471711494,37.708200417,-122.461170404,37.7142869986", + "geom:latitude":37.711784, + "geom:longitude":-122.467374, + "iso:country":"US", + "lbl:latitude":37.714291, + "lbl:longitude":-122.467324, + "lbl:max_zoom":18.0, + "mps:latitude":37.711846, + "mps:longitude":-122.467474, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Ingleside Hts" + ], + "reversegeo:latitude":37.711846, + "reversegeo:longitude":-122.467474, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 1108831825, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b6cfabb57e61d54db46cf7b8b7d95723", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832057, + "neighbourhood_id":1108831825, + "region_id":85688637 + } + ], + "wof:id":1108832057, + "wof:lastmodified":1566624115, + "wof:name":"Ingleside Heights", + "wof:parent_id":1108831825, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865987 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4717114939999, + 37.70820041700005, + -122.46117040399992, + 37.71428699859847 +], + "geometry": {"coordinates":[[[-122.47159806099991,37.71384935400004],[-122.4717114939999,37.71422893500006],[-122.46259717501712,37.71428699859847],[-122.46258872399994,37.71402953800004],[-122.46255498499995,37.71390392600006],[-122.46256899899996,37.71315016400007],[-122.46258129899994,37.71227351900008],[-122.46257005099996,37.71137030100007],[-122.4620632569999,37.7113727280001],[-122.46254570966337,37.71117103101306],[-122.46249740599991,37.71104927100006],[-122.46139397399992,37.71068528100005],[-122.46117040399992,37.71058935500007],[-122.46220495926612,37.71057270700004],[-122.46356259399994,37.71055519100008],[-122.46423380099993,37.71054183400009],[-122.46476669799986,37.71048150200007],[-122.46543943199991,37.71030182000003],[-122.46599365399993,37.71015378800006],[-122.46679157999986,37.70982584300008],[-122.46707274799991,37.70968023000007],[-122.46713197199995,37.70964955900006],[-122.46717656399994,37.70962474200011],[-122.46733537199992,37.70952432800003],[-122.4675942629999,37.70936063000004],[-122.46771822399991,37.70928224800007],[-122.46782939499991,37.70919440100003],[-122.4680740629999,37.70900106600003],[-122.46832335199993,37.70880407700007],[-122.46838119599995,37.70875836900007],[-122.4684736329999,37.70868532400002],[-122.46850697199994,37.70865288000005],[-122.46863646599991,37.70852686000006],[-122.4687654939999,37.70840129400005],[-122.46897190599989,37.70820041700005],[-122.46950512199992,37.70820282300008],[-122.47133250999771,37.70820776099796],[-122.47121509099993,37.70893946300004],[-122.47124257499991,37.71090661400007],[-122.47125214499994,37.71159154200006],[-122.4712554969999,37.71183144700007],[-122.47125300573371,37.71209467500007],[-122.47131086699994,37.71247481900008],[-122.4713367449999,37.71268562600005],[-122.47138937799993,37.71298713700008],[-122.4714719909999,37.71342747800006],[-122.47159806099991,37.71384935400004]]],"type":"Polygon"} +},{ + "id": 1108797025, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":267429.282904, + "geom:bbox":"-76.5987541016,39.2430018001,-76.5912989395,39.249548221", + "geom:latitude":39.246589, + "geom:longitude":-76.595029, + "iso:country":"US", + "lbl:latitude":39.247141, + "lbl:longitude":-76.594775, + "lbl:max_zoom":18.0, + "mps:latitude":39.247141, + "mps:longitude":-76.594775, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "reversegeo:latitude":39.247141, + "reversegeo:longitude":-76.594775, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108797011, + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"9f039d306afe67af9d9362ea8e6a111f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797025, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797025, + "wof:lastmodified":1566624075, + "wof:name":"Masonville Cove", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.59875410163157, + 39.24300180011954, + -76.59129893946017, + 39.24954822099649 +], + "geometry": {"coordinates":[[[[-76.59853979590186,39.24820552664212],[-76.59288308177334,39.24954822099649],[-76.59289097361527,39.24954400829252],[-76.59289906090609,39.24953597262726],[-76.59290452981932,39.24952553903625],[-76.59290762890031,39.24951158872259],[-76.59290740019894,39.24950096603067],[-76.59290714019275,39.24949034773402],[-76.5929069111891,39.24948098972436],[-76.59290664212057,39.24947013359254],[-76.59290905365071,39.24945971372095],[-76.59291390138749,39.24944931670868],[-76.59292435351351,39.24944001014531],[-76.59293411195966,39.24942924282666],[-76.59294288674809,39.24941929810437],[-76.59294534845158,39.24940942067038],[-76.59294340880273,39.2493967481955],[-76.59293574112273,39.24938717253089],[-76.59292634284201,39.24937816735932],[-76.5929178784253,39.24936772959485],[-76.59291200254995,39.24935559924743],[-76.59291027162912,39.24933097605707],[-76.59290995320467,39.24931822182773],[-76.59290894607602,39.24930415008374],[-76.59290530553878,39.24929313093165],[-76.59290160774657,39.24928138916201],[-76.59289176535603,39.24925589472253],[-76.59288700875004,39.2492435376569],[-76.59287681206959,39.24921497846284],[-76.59287095960538,39.24917655286638],[-76.59287017801275,39.24916981868908],[-76.59286490322087,39.24912924585369],[-76.59285901757605,39.24908772058505],[-76.59285286696579,39.2490685569559],[-76.59285278274406,39.24905920575245],[-76.59285274538506,39.24905481255914],[-76.59285256076444,39.24903327536735],[-76.59285356167315,39.24900601608061],[-76.59285857154799,39.24898633357564],[-76.59286372169464,39.24896219093495],[-76.59286774176906,39.248945816234],[-76.59287232885328,39.24893581645925],[-76.59287556985197,39.24893226424479],[-76.59287915850193,39.2489297040847],[-76.59289142453098,39.24892306379207],[-76.5928982964501,39.24891685247807],[-76.59290357083515,39.24890780720098],[-76.59290380313431,39.24889012945959],[-76.59290199296795,39.24886761019391],[-76.59289590058289,39.24884576967393],[-76.5928880667976,39.24881406416777],[-76.59288486385145,39.24878755325578],[-76.59287405094463,39.24875070842308],[-76.59286942059882,39.2487213947631],[-76.592857026556,39.2487028958697],[-76.59285070817528,39.24867481491604],[-76.59284675151058,39.24865428611617],[-76.59284662038297,39.2486488711219],[-76.59284218414628,39.24863237431497],[-76.59283561091179,39.24861863186321],[-76.59282263549181,39.24860172081161],[-76.59280026131461,39.2485791410317],[-76.59278151734122,39.248563316116],[-76.59275485561358,39.24853649593494],[-76.5927507312535,39.24853106708902],[-76.59271254073967,39.24848700036272],[-76.5927067030084,39.24848035493395],[-76.59267037807562,39.24842633392921],[-76.59266552162651,39.2484198846679],[-76.59262619686218,39.24837221989654],[-76.59262091956319,39.2483664330419],[-76.59259035892725,39.24833005201114],[-76.59257978833504,39.24830209320111],[-76.59256945226187,39.2482807081366],[-76.59256088159219,39.24827226338219],[-76.59254166594272,39.2482609316415],[-76.59250730333714,39.24823240383446],[-76.59248943525419,39.24820973244],[-76.59248594594912,39.24819458916108],[-76.59248604948294,39.24818200393441],[-76.59248596386226,39.24817169430187],[-76.59248598269166,39.24816901997522],[-76.5924880034147,39.24816210275492],[-76.59249102415983,39.24815756344049],[-76.59250652310322,39.24814694308751],[-76.59254734929611,39.24811666661144],[-76.59254770934602,39.24810883745004],[-76.59254100396122,39.2480951278493],[-76.59253286433773,39.24808727729616],[-76.59251774901806,39.24807849905763],[-76.59250301034126,39.24806929425766],[-76.59249272512086,39.24805924017242],[-76.59247940003578,39.24804616065086],[-76.59246602735529,39.24803209011326],[-76.59245062292959,39.24800970740322],[-76.59244739601034,39.24800536348812],[-76.59243448887386,39.24799132428829],[-76.59242013064869,39.24797679723553],[-76.59240400647101,39.24796416107606],[-76.59238810605059,39.2479531101492],[-76.5923727838569,39.24794526257157],[-76.59236335617753,39.24794081695632],[-76.59235678843095,39.24793784592569],[-76.59233878537601,39.24792941794578],[-76.59231795908018,39.24792341494649],[-76.59229633243224,39.24791335118601],[-76.59227682156558,39.24790261468628],[-76.59225631665636,39.24788967234328],[-76.59224388791871,39.24788210592984],[-76.59223470810555,39.24787706665539],[-76.59221399822887,39.24786491897473],[-76.59219821315386,39.24785214974914],[-76.59219131920901,39.24784627258614],[-76.59217250173437,39.24783160300406],[-76.59214371224677,39.24781387938919],[-76.59211492853909,39.24779212843518],[-76.59209238926633,39.2477743715745],[-76.59206118137482,39.24776221261357],[-76.59205862815259,39.24776159662164],[-76.59204576791061,39.24775796325996],[-76.59204014239836,39.24775634033814],[-76.59202023901432,39.24774921002339],[-76.59199812769238,39.24774185764856],[-76.5919439154973,39.24772231795204],[-76.59190363173251,39.2477066026828],[-76.59187909263309,39.2476939480086],[-76.59183761370659,39.24766809757763],[-76.59179880428204,39.24764097911831],[-76.59179730036743,39.24763920297132],[-76.59175707434193,39.24761044106795],[-76.59175583761025,39.24760994764829],[-76.59172417815779,39.24758467718848],[-76.59171507190199,39.24757250221139],[-76.59171502255538,39.24756698300869],[-76.59171493355649,39.24755667606402],[-76.5917148775475,39.24755030110454],[-76.5917160583811,39.24753916355996],[-76.59171698055918,39.24753291450722],[-76.59172329324056,39.24751576864286],[-76.59172629840137,39.24750951152046],[-76.59173916129124,39.24748387163225],[-76.59175206014773,39.247457012222],[-76.59177555710539,39.24742283215372],[-76.59181354214377,39.24737833546549],[-76.59183752471367,39.24735075703067],[-76.59183988207297,39.24734856373883],[-76.59184458515529,39.24734176844962],[-76.59184594498313,39.24733697116034],[-76.59184704928133,39.24732725296477],[-76.59184691140936,39.24731073502509],[-76.59184720864332,39.24730135181329],[-76.59184687694948,39.24728711215344],[-76.59184883626389,39.24727798693602],[-76.59184974328728,39.24727497520458],[-76.59185253052476,39.24726752830163],[-76.59185485448626,39.24726127060897],[-76.5918602797484,39.2472449260407],[-76.5918688111381,39.24723437702936],[-76.59188271563667,39.24722541764221],[-76.59189762473329,39.24722025039348],[-76.59191302310992,39.24721722868158],[-76.59193381712188,39.24720925886339],[-76.59194476010504,39.24720259515234],[-76.5919509739128,39.24719840203581],[-76.59199344503399,39.24717191830894],[-76.5920061345695,39.24716048837033],[-76.59200992854268,39.24715706420788],[-76.59201633536875,39.24714629612109],[-76.59201626555107,39.24714312516006],[-76.59201227284633,39.24713799309718],[-76.59201093604943,39.2471311272693],[-76.5920108547833,39.24712128154595],[-76.59201074936328,39.24710939008486],[-76.59201068079874,39.24710116399415],[-76.59201062103321,39.24709422874069],[-76.59201212870784,39.24708688457897],[-76.59201879292846,39.24707627952535],[-76.59202367689392,39.2470712638824],[-76.59203674299499,39.24705881107071],[-76.59205010960115,39.24704688174965],[-76.59206854861496,39.24703201822098],[-76.59212115382483,39.24698840364093],[-76.59214045905382,39.24697036428473],[-76.59220168047597,39.24693588640862],[-76.59224603411013,39.24690734095483],[-76.59226392379898,39.24689855119658],[-76.59227787670905,39.24689082418683],[-76.59229125858789,39.24688287900701],[-76.59230544691077,39.24687430158163],[-76.5923294450518,39.2468554461769],[-76.59233787019622,39.24684320511134],[-76.59234618333656,39.24682767223417],[-76.59235291420633,39.24681089530041],[-76.59235878733679,39.24679722665567],[-76.59236225480289,39.24678488910637],[-76.59236544884899,39.24676973119016],[-76.59236775102667,39.24674950423343],[-76.59237324855339,39.24671812780141],[-76.59237877938575,39.24666945215112],[-76.59238457211738,39.24661914611047],[-76.59238384670704,39.24660667600129],[-76.59236716073113,39.24658662182109],[-76.59234961536086,39.24657258902013],[-76.59234862066802,39.24655335227399],[-76.59235013675359,39.24653525651673],[-76.59235634246761,39.24651450535167],[-76.59236666426112,39.24649858130469],[-76.59236861670432,39.2464837784844],[-76.59236859897852,39.24648202371818],[-76.59236856681026,39.24647895107179],[-76.59236208698556,39.24645504549307],[-76.59234713750404,39.24643096998477],[-76.59233048674807,39.24641830675831],[-76.59232785922597,39.24641732299871],[-76.59232267324981,39.24641462519266],[-76.59231666881253,39.24641061842421],[-76.59231053615795,39.24640614370933],[-76.59230395806182,39.24640116751851],[-76.59229821672511,39.24639512141319],[-76.59229719580163,39.24639396758143],[-76.59229393912862,39.24639038110613],[-76.59229018036686,39.24638526427625],[-76.59228703166373,39.24638083054882],[-76.59228008587461,39.24637109519964],[-76.5922742304917,39.24636191310807],[-76.59227213830073,39.24635788299231],[-76.59227077546446,39.24635494354263],[-76.5922654177824,39.24634704768062],[-76.5922585323034,39.24633972120504],[-76.59224737829288,39.24633232946078],[-76.59224502661711,39.24633112146419],[-76.59223225919287,39.24632367547311],[-76.59221667487451,39.24631292196852],[-76.59220093225713,39.24630270297079],[-76.59218318836889,39.24629299586416],[-76.5921639979212,39.24628060753464],[-76.59214888548303,39.24626837839318],[-76.59213334771776,39.24625436604416],[-76.59212512886994,39.24624623504227],[-76.59211759936819,39.24623910088755],[-76.59211003473717,39.24623203236674],[-76.59210502650919,39.24622723456694],[-76.59209355214855,39.24621592423508],[-76.59208007681578,39.2462026549756],[-76.59206510162431,39.24618791674764],[-76.59205203904529,39.24617539565941],[-76.59204357374607,39.2461670142812],[-76.59204096783252,39.24616449026911],[-76.59203006343697,39.24615358545744],[-76.59201594803088,39.24614486016498],[-76.59200926523428,39.24614158064874],[-76.59200420695704,39.24613944625489],[-76.59200113124257,39.24613824114178],[-76.59198559446936,39.2461321276502],[-76.59196810494608,39.24612433283364],[-76.59194154268873,39.2461118584941],[-76.59193910990142,39.24611105916008],[-76.59193668487626,39.24611032020476],[-76.59192249720395,39.24610610842083],[-76.5919172002251,39.24610438844965],[-76.59190333086566,39.24610002103544],[-76.591898720627,39.2460985412545],[-76.59188752313591,39.24609509831096],[-76.59188113669055,39.24609306648671],[-76.59184656721955,39.24608643912872],[-76.59183961052565,39.24608425669224],[-76.59182970255323,39.2460805849262],[-76.59181218108645,39.24607814867102],[-76.59180561066904,39.24607809339875],[-76.59180214678267,39.24607811378296],[-76.59178658476397,39.2460782083015],[-76.59178316375501,39.24607822613191],[-76.59176788789907,39.2460783162383],[-76.59174494977513,39.24607845356148],[-76.59171190267428,39.24607864850433],[-76.59168278562221,39.24607753387148],[-76.59166070212103,39.24606967078638],[-76.59164848701887,39.24606128174152],[-76.59163592890062,39.24605069812106],[-76.59162042768459,39.24603599673883],[-76.59160797871461,39.24602033674072],[-76.59159812841081,39.24600604144385],[-76.59159053173275,39.245991670214],[-76.5915896645262,39.24598957470251],[-76.59158267124761,39.24597140521158],[-76.59157594348085,39.2459552102366],[-76.59156738295756,39.24593701817766],[-76.59155913393882,39.24592186730925],[-76.59155015493425,39.24590634278219],[-76.5915433554695,39.24589516125584],[-76.59153492132475,39.24588198603657],[-76.59152801358793,39.24586808019617],[-76.59152537320638,39.2458618881063],[-76.59152222803301,39.24585363239152],[-76.59152030337512,39.24584646815578],[-76.59151931923554,39.24584073761926],[-76.5915190733682,39.2458277007824],[-76.59151592061897,39.24581029409184],[-76.59151012842422,39.24579518959999],[-76.59150479110299,39.24578095953916],[-76.59149873340728,39.24576770521055],[-76.59149257576676,39.24575611696325],[-76.59148449966719,39.24574635331083],[-76.59147282114226,39.24573492060141],[-76.59146154247372,39.24572345505287],[-76.59145242664212,39.24571037653971],[-76.59144420671051,39.24569823164165],[-76.59143493755241,39.24568603084679],[-76.59142536207358,39.24567552604081],[-76.5914210197657,39.24566856146767],[-76.5914170345828,39.2456609369701],[-76.59141271851988,39.24565202952134],[-76.59141032956023,39.24564683996267],[-76.5914092968802,39.24564471414823],[-76.5913961777773,39.24562172400746],[-76.59139007167528,39.24561145106165],[-76.59138214734503,39.24559686068908],[-76.59137571000331,39.2455857704895],[-76.59136894423443,39.24557377657215],[-76.59136364844755,39.24555998622549],[-76.59135600162956,39.24554025520618],[-76.59135536010639,39.24553276575044],[-76.59135488109996,39.24551656548749],[-76.5913501458766,39.24550239516353],[-76.59134422368716,39.24549036274526],[-76.59134322750553,39.24548733087979],[-76.59134268902946,39.24546918654202],[-76.5913416918825,39.24545364564226],[-76.59134139724033,39.2454527087138],[-76.59133482412362,39.24544005339658],[-76.5913306052973,39.24542894929794],[-76.59132713801931,39.24541668671912],[-76.59132563418879,39.2454110831817],[-76.5913230337086,39.24539655817662],[-76.59132277431979,39.24536998087452],[-76.59132241465522,39.2453662531256],[-76.59132187166013,39.24536418666425],[-76.59131276351195,39.24534797527774],[-76.59130955634663,39.24534144071684],[-76.59130656327903,39.24533635174065],[-76.59130582023133,39.24533422333025],[-76.59129961628997,39.24532686583964],[-76.59129905650506,39.2453190640995],[-76.59129893946017,39.24530699964238],[-76.59130169392354,39.2452915600775],[-76.59130640213051,39.24527420236242],[-76.59131183031224,39.24525674266379],[-76.59131597629967,39.24523944964824],[-76.59132336578223,39.2452205690515],[-76.59132724942121,39.24520095473142],[-76.59132973108042,39.2451827956835],[-76.59132920651875,39.24516223551984],[-76.59133100550821,39.24513991162421],[-76.59133705924312,39.2451162117457],[-76.59134438145301,39.24509432413323],[-76.5913512784909,39.24507767213344],[-76.59136084741424,39.24505488976569],[-76.59137100397768,39.24503003946648],[-76.59137802184408,39.24500567726985],[-76.59138254921974,39.2449780699276],[-76.59138484075713,39.24495288779055],[-76.59139508916502,39.24492073163956],[-76.59140200409992,39.24490639918849],[-76.59140654320369,39.24489687670232],[-76.59141762934721,39.24487615607386],[-76.59142770827022,39.24485995652116],[-76.59144164245154,39.24483812073653],[-76.59145723795517,39.24481746804161],[-76.59147260057317,39.24479722348505],[-76.59148986072492,39.2447773755638],[-76.59149601983005,39.24476937020783],[-76.59150434750906,39.24475854757341],[-76.59152017218395,39.24473651388153],[-76.59153552626654,39.24471533068132],[-76.5915518734096,39.24469288805036],[-76.59156492038444,39.24467504048843],[-76.59157925834288,39.24465307908238],[-76.59159242435756,39.24463547874316],[-76.59160639481341,39.2446171876056],[-76.59161838430946,39.24460272957048],[-76.5916321447507,39.24458791828585],[-76.59164733523623,39.24457482344229],[-76.59166504758066,39.24455992140993],[-76.5916806218639,39.24454535243086],[-76.59169433238438,39.24452934744097],[-76.59170759786348,39.24450914780359],[-76.59171989563285,39.24448519398055],[-76.59172924627688,39.24446407454819],[-76.59173979542345,39.24444222965673],[-76.59175135344812,39.24441677707368],[-76.59176806547283,39.24439028580469],[-76.59178552336711,39.24436200638994],[-76.591797095388,39.24434197109937],[-76.59180407188106,39.24432980249353],[-76.59181446968424,39.24430908753853],[-76.59181799123363,39.24428975748386],[-76.59181786025779,39.24427264684515],[-76.59181776049623,39.2442623966022],[-76.59181771039808,39.24425700710306],[-76.59182144073354,39.24424125564432],[-76.59184364034616,39.24420001977299],[-76.59186253386721,39.24416199627021],[-76.59187528668879,39.24412899214258],[-76.59187976422724,39.24410255470608],[-76.59188036796067,39.2440821705091],[-76.59188023641579,39.24406455183151],[-76.59187276016013,39.24403711982062],[-76.59186016399218,39.24401165261115],[-76.59184752340761,39.24396872826324],[-76.59184495448864,39.24396280755821],[-76.59183978535354,39.24396225182522],[-76.59183155424246,39.243962349316],[-76.59183013855611,39.24396236691332],[-76.59181571066451,39.24396253563756],[-76.5917991706448,39.24396094951625],[-76.59177924258802,39.24395406857754],[-76.59176010287449,39.24394708048242],[-76.59173993739508,39.24393878179529],[-76.59172073699251,39.24392442155558],[-76.59170258621836,39.24390400276013],[-76.59169166935452,39.24387942503012],[-76.59168933469896,39.24386842657739],[-76.59168888677414,39.24385607542001],[-76.59168852471652,39.24383745608107],[-76.59168545284689,39.24381828144868],[-76.59167680602317,39.24378633427985],[-76.59166224117267,39.24374708557658],[-76.59166203439032,39.24373651428437],[-76.59166777302976,39.24372344871292],[-76.59167523483723,39.24370725624546],[-76.59168192590192,39.24368327841663],[-76.59168559338107,39.24367301695351],[-76.59169577383764,39.24365986864488],[-76.5917131042908,39.24364203866203],[-76.59172701362827,39.2436301049503],[-76.59173993957084,39.24362339049997],[-76.59176090633885,39.24361279735639],[-76.59178448305411,39.24359977759364],[-76.59181326309293,39.24358498788317],[-76.59187515172653,39.24355728899033],[-76.59189472902445,39.24355020761088],[-76.59191380980761,39.24354345148294],[-76.5919365669227,39.24353959600936],[-76.59195614653414,39.24353936500789],[-76.59197481556048,39.24353914705225],[-76.59199332731261,39.24353928525321],[-76.59201161896496,39.24354123774435],[-76.59202660856259,39.24354853295339],[-76.59203864918044,39.24355818964859],[-76.59204545511366,39.24357023591889],[-76.59205578676595,39.24358418065931],[-76.59206458976877,39.2435964347404],[-76.59207284414616,39.24360820590159],[-76.59208626399759,39.24362056159664],[-76.59209853378842,39.2436334807813],[-76.59210947958084,39.24364457490196],[-76.5921205704813,39.24365440664168],[-76.59213160574248,39.24366827725387],[-76.59214299955117,39.24368305258606],[-76.59215610863606,39.24370091091706],[-76.59216759674078,39.24371419579472],[-76.59219296656721,39.24373990281359],[-76.59220459952309,39.2437523747925],[-76.5922169697525,39.24376616806293],[-76.59223022872835,39.24378072647305],[-76.59224389199336,39.24379689866969],[-76.59225272753629,39.24381095979961],[-76.59226003873233,39.24382338613597],[-76.5922686121508,39.24383871464273],[-76.59227900094457,39.24385563301258],[-76.59228725399154,39.24387147925044],[-76.59229677050482,39.24389041502327],[-76.59231689255832,39.24392665544488],[-76.59232651440007,39.2439468193344],[-76.59233242022752,39.2439594884981],[-76.59233926136295,39.24397147181779],[-76.59234221526393,39.24398217335056],[-76.59234614262009,39.243996035473],[-76.59235450103425,39.24400886988616],[-76.59238280340784,39.24403793341585],[-76.59240446197464,39.24405938305762],[-76.5924248016421,39.24408356556561],[-76.59246347047186,39.24413548074384],[-76.59250798768534,39.24419334149309],[-76.59253418661159,39.24423772343485],[-76.59254824858978,39.24427124136099],[-76.59255407472453,39.24428771510056],[-76.5925574574717,39.24430363178911],[-76.59256005081326,39.24432004296445],[-76.59256330752162,39.24433329653032],[-76.59256706722802,39.24434872810922],[-76.59257297357318,39.244362531334],[-76.59258304050275,39.24438327954428],[-76.59258888081737,39.24439567102777],[-76.59259376011845,39.24440919054675],[-76.59259716451572,39.24442133757392],[-76.59260012014342,39.24443679428492],[-76.59260096026065,39.24444603372595],[-76.59260173781442,39.24445810047606],[-76.59259903309676,39.24446916609331],[-76.59259601398676,39.24447788951061],[-76.5925933092623,39.24448895602838],[-76.59259091052461,39.24450221428771],[-76.59259028179005,39.24451023709173],[-76.592589630264,39.24451779051393],[-76.59258855506449,39.24452064763745],[-76.59258559222124,39.24452622755216],[-76.59257836115,39.24453554257212],[-76.59257215135436,39.24454513857388],[-76.59256567133141,39.24455317439961],[-76.59255830471308,39.24456390316131],[-76.59255453314499,39.24456950729161],[-76.59255037163419,39.24457543704906],[-76.59254759133735,39.2445806969211],[-76.59254637800215,39.24458481374606],[-76.59254485170879,39.2445909805447],[-76.59254343097666,39.24460358012893],[-76.59254159145989,39.24461587920307],[-76.59254171748462,39.24462702130032],[-76.5925417751356,39.24464099338866],[-76.59254433967497,39.24465677302101],[-76.59254860091369,39.2446784748181],[-76.59255529693279,39.2447046583031],[-76.59256212506426,39.24472518269007],[-76.59256586312728,39.24474015029406],[-76.59257003183427,39.24475133434481],[-76.59257355275933,39.24476174958966],[-76.59257845114357,39.24477134270516],[-76.59257924828546,39.2447731344064],[-76.59258251918338,39.24478048885786],[-76.5925857436264,39.24478463459508],[-76.59258889596143,39.24478721543958],[-76.59259093128051,39.24479186508594],[-76.59259090964464,39.24479563474523],[-76.59258802005395,39.24480701859321],[-76.59258394015094,39.24481467271386],[-76.59258325256144,39.24482568317639],[-76.59258492907837,39.24483552633456],[-76.5925920427665,39.24484929231067],[-76.59259566434265,39.24485751181965],[-76.59259900877785,39.2448641648236],[-76.59260103199061,39.2448727408964],[-76.59260045112504,39.24487746883877],[-76.59259911085519,39.24488755464491],[-76.5926001716292,39.24489710201399],[-76.59260273965995,39.24490440538378],[-76.59260499562976,39.24490936385973],[-76.59260889581314,39.24491506036951],[-76.59261408090481,39.24491789507883],[-76.59262271368723,39.24492109935819],[-76.59263273861374,39.24492395086075],[-76.59264232775494,39.24492603249109],[-76.59265693902906,39.24492765323573],[-76.59267032859489,39.24492899590478],[-76.59268248087996,39.24492974607495],[-76.59272264352536,39.2449293782765],[-76.59274657182785,39.24493003237461],[-76.59276874376421,39.24492930489544],[-76.59278215115164,39.24492794529515],[-76.59279369069742,39.24492787542672],[-76.59282144503896,39.24492938320128],[-76.59283717055681,39.24493083213729],[-76.59283837811641,39.24493095162419],[-76.59285290857086,39.24493252612473],[-76.59286730310167,39.24493457215699],[-76.59288377580765,39.24493804140899],[-76.59288596623324,39.24493847507035],[-76.59288933485557,39.24493909837658],[-76.59290598735602,39.24494272858647],[-76.59291962926125,39.24494733920498],[-76.59293551176766,39.24495151260903],[-76.59294945697017,39.2449549487672],[-76.5929641246602,39.24495845048271],[-76.59297094211794,39.24496045672009],[-76.59297769330252,39.24496230329052],[-76.59298977362111,39.24496530240897],[-76.59300150222461,39.24496842551428],[-76.59301194446047,39.24497143516553],[-76.59301783185337,39.24497361652893],[-76.59302232830113,39.24497513370454],[-76.59303441826911,39.24497948130868],[-76.59304519159535,39.24498556103748],[-76.59305259153639,39.24499002929961],[-76.59306710168438,39.24499838201828],[-76.5930836066925,39.24501339745936],[-76.59309571239829,39.24502369111266],[-76.59310557511094,39.24503140438377],[-76.59312369218563,39.24505115356242],[-76.59313376356941,39.24506328764618],[-76.59315007063051,39.24508778212387],[-76.59317420795021,39.24512837982446],[-76.59319314680697,39.24515311131105],[-76.59319925118214,39.24516251130888],[-76.59321256184801,39.24517500340713],[-76.5932215656107,39.24518180751451],[-76.59323615050107,39.24519127832948],[-76.59324718699231,39.24519834259478],[-76.59325427680172,39.24520316377305],[-76.59326995966923,39.24521024863779],[-76.59328466105528,39.2452179903666],[-76.59330026112873,39.24522335176227],[-76.5933181581176,39.24522613139094],[-76.59333788855504,39.24522917588954],[-76.5933592738606,39.2452288770439],[-76.59337769857362,39.24522568186452],[-76.5933958305384,39.24522060755726],[-76.59342876325726,39.2452083558039],[-76.59345941233232,39.24519899752223],[-76.59350445286397,39.24518232074264],[-76.59351846046357,39.24517548013304],[-76.5935300367388,39.24516839600219],[-76.59353932211836,39.2451598095569],[-76.59354545282635,39.24515288492391],[-76.59355017119569,39.24514599593579],[-76.59355647807075,39.24513420053329],[-76.59356038396963,39.24512717992144],[-76.59356466190478,39.24511952104876],[-76.5935708271943,39.24510898353478],[-76.593579495932,39.24510025443081],[-76.59358932607158,39.24509039977774],[-76.59360245507776,39.24507777405642],[-76.59361512926257,39.24506830757073],[-76.5936299705955,39.24505767577889],[-76.59365182951269,39.24504181857131],[-76.59369743852319,39.24501586122208],[-76.59373188659173,39.24499728850081],[-76.59379858077638,39.24496900081466],[-76.59387333636509,39.24494032121785],[-76.59390503877167,39.24492763720749],[-76.59392842052354,39.24491833023056],[-76.59395288818074,39.24491056282233],[-76.59398235397995,39.24490186778411],[-76.59401490005467,39.24489418324828],[-76.59405873832728,39.24488632877041],[-76.59410380149633,39.24487859921468],[-76.5941572984011,39.24486999532169],[-76.59421680010328,39.24486451802395],[-76.59428213492254,39.24485856092586],[-76.59434041024738,39.24485280729398],[-76.59436280923299,39.2448524784399],[-76.59439984711172,39.24485015720519],[-76.59442226426614,39.24485029770519],[-76.59444581051427,39.24484867928903],[-76.5944750281022,39.24484752544011],[-76.59450816227888,39.2448437467482],[-76.59453729561743,39.2448407117793],[-76.59455755389689,39.24483793530138],[-76.59456655377704,39.24483610448496],[-76.59457571801337,39.2448334869601],[-76.59458302482905,39.24483013789823],[-76.59458832866014,39.24482700170764],[-76.59459434884671,39.24482196195542],[-76.59460066544595,39.24481471633318],[-76.5946067671759,39.24480716280512],[-76.59461517141507,39.24479279117146],[-76.59462047383644,39.2447811787029],[-76.59462061727334,39.24478020095894],[-76.59462276283423,39.24476556990939],[-76.59462359155482,39.24474906160617],[-76.59462131576412,39.24473091668826],[-76.59462030949044,39.24470975045806],[-76.59461829879734,39.24469285492631],[-76.59462325988324,39.24466555161832],[-76.59462881052096,39.24465063687227],[-76.59463900504518,39.24463150542918],[-76.59465605615048,39.24460793613124],[-76.59466902152366,39.24459186426891],[-76.59468042563347,39.24457269646336],[-76.59469016642346,39.24455248162081],[-76.59469494068043,39.24453821274728],[-76.5946969234526,39.24451617768162],[-76.59469741232706,39.24449669745473],[-76.59469968223735,39.24448077512371],[-76.5947036572943,39.24446668814888],[-76.5947166056379,39.24444182467906],[-76.59472192707798,39.24443052573948],[-76.59473932307364,39.24438873768654],[-76.59474910286775,39.24435234959612],[-76.59475739483226,39.24431867039753],[-76.59476647063741,39.24429297565209],[-76.59477319460763,39.24427300350506],[-76.5947752724324,39.24425724264774],[-76.59477593790142,39.24424152375555],[-76.59477213316057,39.24422091084747],[-76.59476796979746,39.24420548875625],[-76.5947656185039,39.24419001436939],[-76.5947672991791,39.24417442328789],[-76.59476993141739,39.24416178822438],[-76.59477817478466,39.24414412459728],[-76.59478680819005,39.24413037707488],[-76.59479586980029,39.24411284508115],[-76.59480152483123,39.24410012496801],[-76.59480637926946,39.24407910597272],[-76.59480945036725,39.24405452727283],[-76.59481340579312,39.2440314919466],[-76.59481437745113,39.24402220112491],[-76.59481921976878,39.24400086861784],[-76.5948223554195,39.24399095652511],[-76.59482846300054,39.24397931709821],[-76.59483456190728,39.24396737047736],[-76.59484340601725,39.24395323364271],[-76.59485164381918,39.24394019095568],[-76.59485869546579,39.24392287451068],[-76.59486280132607,39.2439073728655],[-76.59486615362087,39.24389299008202],[-76.59486735674851,39.24388008165329],[-76.59486706327444,39.24386533408608],[-76.59486556397282,39.243850775123],[-76.59486451434832,39.24382866923398],[-76.5948641634303,39.24381282342605],[-76.59486505647466,39.24380127049114],[-76.59487460362089,39.24377273902478],[-76.59488223723177,39.2437549354662],[-76.59488636602806,39.24374414043763],[-76.59489013955566,39.24373429630004],[-76.59489126227496,39.24372390615444],[-76.59489118857537,39.24370962054079],[-76.59489007352568,39.24369897766293],[-76.59488668783787,39.24368714333382],[-76.59488511085453,39.24367949753516],[-76.59488123091704,39.24367003053332],[-76.59487676060152,39.24366089748239],[-76.59487146497619,39.24365571237369],[-76.59486846976556,39.24365218451883],[-76.59486814925204,39.24364968466834],[-76.59487027910039,39.24364773734077],[-76.59487802361505,39.24364500499831],[-76.5948951447639,39.24363996029942],[-76.59490278611067,39.24363926965182],[-76.59491285268051,39.24363866483858],[-76.59492268312644,39.2436416803173],[-76.59492906943365,39.24364432180082],[-76.59493405769514,39.24364307883081],[-76.59493640470878,39.24364144211724],[-76.59493759366021,39.24363669914561],[-76.59493528359739,39.24363064248417],[-76.59492279154324,39.24362268158648],[-76.59491088380923,39.24361423088153],[-76.59490161961021,39.24360617933203],[-76.59489393241068,39.24359744863605],[-76.59488823795756,39.2435837975874],[-76.59488839083762,39.24356573761521],[-76.59488983612127,39.24354936834987],[-76.59489294220447,39.24352981427717],[-76.59489974040656,39.24350716797985],[-76.59490423909293,39.24347438455398],[-76.59491168508023,39.24344418480626],[-76.59491871779871,39.24340520559802],[-76.59492145158431,39.2433778108109],[-76.59492723198358,39.24335488085872],[-76.59493333532696,39.2433303702628],[-76.59493640445362,39.24331850686121],[-76.59494192707855,39.24329872692297],[-76.59495292238701,39.24327015090056],[-76.59495852682723,39.24325633256016],[-76.59496852233227,39.24324584061112],[-76.5949752611541,39.24324313451791],[-76.59498747189818,39.24324090129182],[-76.59501852727801,39.24324440434133],[-76.59503714967416,39.24324544051507],[-76.59505861940328,39.24324262309135],[-76.59507828918963,39.24324017327627],[-76.59509703134978,39.24323524133086],[-76.59511947512502,39.24322737571976],[-76.59513555196123,39.24321733620005],[-76.59514618686343,39.24320745536358],[-76.59515552968031,39.24320435829678],[-76.59516586269348,39.24320516228922],[-76.59517709347314,39.24321205950372],[-76.59518141111323,39.24321790329518],[-76.59518561980481,39.24322578876345],[-76.59518289777378,39.24324078175368],[-76.59517373522664,39.24325187740887],[-76.59516390280893,39.24325734002051],[-76.59514579586796,39.24326727706109],[-76.59512780017933,39.24327517423144],[-76.59510507659725,39.24328132020395],[-76.59508856870649,39.2432865048671],[-76.59507579643108,39.24328970089485],[-76.59505944223022,39.24329393576834],[-76.59504917526404,39.24329454800979],[-76.59503612308708,39.24329177904893],[-76.59502417494835,39.24329102712308],[-76.59501474570807,39.2432964776014],[-76.59500540562613,39.24330396503461],[-76.5949970866523,39.24331582203705],[-76.59499269294649,39.24332960582272],[-76.5949912449644,39.24334158020898],[-76.59499440769648,39.24336142794537],[-76.59499710836654,39.24338003282222],[-76.59499658451696,39.24339449202635],[-76.59499219196461,39.24340827581565],[-76.59499272169208,39.24342364753442],[-76.59499015864381,39.24345888594301],[-76.59497959346494,39.24350424755595],[-76.59497542110002,39.24353121041384],[-76.59497122448207,39.24355755075351],[-76.59497126989295,39.24357984234091],[-76.59497046392924,39.24359258189583],[-76.59497320374109,39.24359925166423],[-76.59497672092762,39.24360103471838],[-76.5949811632523,39.24360106625829],[-76.59498731896444,39.24359884727254],[-76.59500031912316,39.24358780000199],[-76.59501740491929,39.24356925257529],[-76.59502686033527,39.24356003245206],[-76.59504739936071,39.24353762270813],[-76.59507029535125,39.24351812338101],[-76.59509358123829,39.24349830111581],[-76.5951143003287,39.24347965360931],[-76.59512987388155,39.24345895350738],[-76.59513639534109,39.24344338091352],[-76.59513647283318,39.24343223141162],[-76.59513400620281,39.24341848701629],[-76.59513253455135,39.24340455598912],[-76.59512944752974,39.24339051850437],[-76.59513262919354,39.24337252662593],[-76.59513601994311,39.24336316757697],[-76.59514575727205,39.24335142895365],[-76.5951582987696,39.24333913881797],[-76.59516764634,39.24333196126452],[-76.59518176741372,39.24332747456604],[-76.5951959136106,39.24332345725534],[-76.59521523058115,39.2433178760142],[-76.59523443482493,39.24331418600473],[-76.59525190266244,39.24331211319874],[-76.59526604669249,39.24331233491034],[-76.59528364397237,39.24330868889526],[-76.59529652428421,39.24330360970077],[-76.59531094404602,39.24329691712235],[-76.59532458480841,39.2432823959401],[-76.59533416006713,39.24327144401808],[-76.59533823824982,39.24325955345794],[-76.5953391686825,39.24324508484415],[-76.59533923055375,39.24323362181867],[-76.59533356259334,39.24322059691912],[-76.59532269644826,39.24320866295243],[-76.59530395796347,39.24318816522023],[-76.59529071323279,39.2431728460524],[-76.59527594838158,39.24315961143617],[-76.59525692595797,39.2431501120581],[-76.59521909023053,39.24313141577261],[-76.5951833257427,39.24311800154457],[-76.59515933821056,39.24311036854604],[-76.59513477332733,39.24310322447288],[-76.59512099431461,39.24309852085613],[-76.59510676502681,39.24309233571448],[-76.59509121537174,39.24308367699781],[-76.59508014178407,39.24307583090199],[-76.59506825575657,39.24306785229149],[-76.5950475328674,39.24304819710152],[-76.59503951508714,39.24303934727189],[-76.59502271504853,39.24301960652405],[-76.59501961985016,39.24300964860837],[-76.59502064926731,39.24300180011954],[-76.59502534705082,39.24300273331233],[-76.59503255410841,39.24300566586957],[-76.5950431837708,39.24301274207923],[-76.5950541596151,39.24302167777713],[-76.59506719596877,39.24304386374857],[-76.59508053890993,39.24305698089069],[-76.59509348688422,39.24306602877738],[-76.59511135249871,39.24307666276989],[-76.59512270316297,39.24308183091889],[-76.59513726146396,39.24308658946782],[-76.59515687548576,39.24308720657994],[-76.59515924480834,39.24308713818483],[-76.59518027087735,39.24309202892645],[-76.59520677135309,39.24310162796569],[-76.59524750502906,39.24312180881238],[-76.59527568237506,39.24314125096083],[-76.59530277240962,39.24315899499987],[-76.59532497954542,39.24317170129147],[-76.59535219180492,39.24318771985883],[-76.59536751960107,39.24320015201522],[-76.59537373936709,39.24320782281811],[-76.59538106140664,39.24323021875491],[-76.59537967644046,39.24325208205051],[-76.59537697841712,39.2432675444305],[-76.59537143740327,39.24327837874785],[-76.59535773660221,39.24329164765395],[-76.5953487182135,39.24330164037237],[-76.5953416100439,39.24331346013689],[-76.59533466896458,39.24332888807319],[-76.59532502892203,39.24334266819934],[-76.59530787355206,39.24335556217977],[-76.59528442672274,39.24337193577367],[-76.59526405907241,39.2433852366323],[-76.59524116909449,39.24340065101244],[-76.59522577869782,39.24341239807639],[-76.59521357444463,39.24342750609924],[-76.59520233734152,39.24344588455957],[-76.59519349586488,39.24346811487795],[-76.59517844558522,39.24349131283478],[-76.59516154603347,39.2435137756871],[-76.59514342965893,39.24353611994236],[-76.59512295906713,39.24355994145037],[-76.5950879322307,39.24360035363144],[-76.59504783845105,39.24365315467091],[-76.59502506393612,39.24368363753759],[-76.59500558245072,39.2437155973175],[-76.59499139142504,39.2437441046671],[-76.59498157532099,39.24376699637616],[-76.59497898514941,39.24378465249944],[-76.59497809431832,39.24380414485602],[-76.59497873314668,39.24381338899084],[-76.59498573059611,39.24382464847319],[-76.59499491314145,39.24383097835654],[-76.59500505330867,39.24384042191183],[-76.59501282366817,39.24385103009761],[-76.59501854430175,39.24386091239518],[-76.59501953915931,39.24386480896786],[-76.59502309111842,39.24389704817531],[-76.59502446330623,39.24393876680384],[-76.59502483817194,39.24398067565774],[-76.5950253930064,39.24402210592071],[-76.59502451604133,39.24405886524042],[-76.59502226045531,39.24413036351599],[-76.59502121029155,39.24418895246816],[-76.59502006041231,39.24424126268838],[-76.5950194164528,39.24431271337409],[-76.59501727671874,39.24439943600588],[-76.59501909068678,39.24442057439408],[-76.59502538423396,39.24444253352564],[-76.59503217800683,39.2444580331388],[-76.59504117606323,39.2444731620304],[-76.59505068294517,39.24448215120728],[-76.59506514325344,39.24449743585534],[-76.59508056854411,39.24451190682894],[-76.5950941123449,39.24452925828805],[-76.59510395406905,39.24454514493182],[-76.59511001474701,39.24456224088327],[-76.59511139405308,39.24457428987326],[-76.59511276746122,39.24459041934355],[-76.59510841828363,39.24460938452736],[-76.59510277536971,39.24462241996562],[-76.59509353094694,39.24463179215012],[-76.59508186516489,39.24464547158491],[-76.59507199228086,39.24466286658466],[-76.59506029431039,39.24468015620342],[-76.59505436552868,39.24469131524426],[-76.59504200849555,39.24470737033065],[-76.59503206472095,39.24471911633632],[-76.59502318032806,39.24473177577606],[-76.59502132420171,39.24473528418854],[-76.59502030942564,39.24474787168946],[-76.59502098347772,39.24476637588688],[-76.59502317067385,39.24478159027719],[-76.59502520853871,39.24479577096595],[-76.59502829702423,39.24481829012877],[-76.59502671972882,39.24483607314771],[-76.5950208415635,39.24485257034019],[-76.595011345546,39.24486948562141],[-76.59499809838378,39.24489231324418],[-76.59499079830775,39.2449086956354],[-76.59498253932725,39.24492604394941],[-76.59497311068847,39.24494860730454],[-76.5949634300917,39.24497431618849],[-76.59495698316442,39.24499161580499],[-76.59494968988621,39.24500375827964],[-76.59493315948259,39.2450213419781],[-76.59492222683708,39.24503767039553],[-76.59489384449799,39.24506925623988],[-76.59488614438192,39.2450771726827],[-76.59488200584285,39.2450835719032],[-76.59487751230644,39.24509939828596],[-76.59487149509738,39.2451173119055],[-76.59486828418073,39.24512619595519],[-76.59485909751896,39.24514105942965],[-76.5948471194818,39.24515239215002],[-76.59482851296221,39.24516878235087],[-76.5948094710272,39.24519711709277],[-76.59479608459527,39.24521712659361],[-76.59479062372658,39.24522544619784],[-76.5947886895066,39.24523146929385],[-76.59478935100591,39.24523694286999],[-76.5947916947238,39.24523954608533],[-76.59479670951018,39.2452430115514],[-76.59480118313188,39.24524366654041],[-76.59480682678745,39.24524350766588],[-76.59481831058201,39.24523454227614],[-76.594830911221,39.24521926542273],[-76.59484177910807,39.24520576701867],[-76.59485398981749,39.24519081309518],[-76.59486955659189,39.2451699589808],[-76.59489503557735,39.2451496011643],[-76.59491512657314,39.24513474018234],[-76.59493318626492,39.24512809714341],[-76.5949726439173,39.24510451503267],[-76.59497595944417,39.2451020637586],[-76.59499483360712,39.24508707786136],[-76.59500491437652,39.24507407125071],[-76.59501349735868,39.24505922459839],[-76.59502286985197,39.24503980204139],[-76.59504017981179,39.24501308988678],[-76.59505278481363,39.24498525535198],[-76.59505710516488,39.24496566403565],[-76.59506090197651,39.24493509409724],[-76.59506207404505,39.24492579946335],[-76.59507077676662,39.24490498469941],[-76.59508093313494,39.24489354298461],[-76.595097029407,39.2448838188111],[-76.59510827491889,39.24488025810764],[-76.59512882173274,39.24487523059457],[-76.59514019685501,39.2448716928543],[-76.5951548355506,39.24486384175742],[-76.5951659820839,39.24485468240469],[-76.59517581352313,39.24484516451243],[-76.59518395307549,39.24483635689975],[-76.59519271464376,39.24482430955025],[-76.59520030421399,39.24481220321183],[-76.59520798949049,39.24480078359166],[-76.59521514343324,39.24478949905645],[-76.59521943958609,39.24478226715252],[-76.59522200933348,39.24477793969275],[-76.59522735117898,39.24476630301216],[-76.59523394615061,39.24475654606056],[-76.59524350067679,39.24474662636391],[-76.59525213970062,39.24473757906122],[-76.59526033486493,39.24472835998161],[-76.59526976300674,39.24471825608935],[-76.59528050576243,39.24470859360308],[-76.59528906094809,39.24470124576681],[-76.59529958067874,39.24469168880108],[-76.59530796166372,39.24468340085689],[-76.59531462785438,39.24467354325956],[-76.59532380567538,39.24466081274743],[-76.59532517876544,39.24464855886395],[-76.59532560451662,39.24463524420776],[-76.59532500086793,39.24462225838835],[-76.59532635718909,39.24460969458113],[-76.59532694203524,39.24459448254493],[-76.59532785600091,39.24458026429475],[-76.59533039014201,39.24456754961429],[-76.5953338147776,39.24455326795623],[-76.59533615309306,39.24454076518296],[-76.59533848136049,39.24452636714903],[-76.5953421546258,39.2445123637856],[-76.59534641669002,39.24449749140415],[-76.59535079474247,39.24448401562016],[-76.59535489575545,39.24447057040811],[-76.59535865786346,39.24445601877955],[-76.59536178123079,39.24444337458763],[-76.59536408975426,39.24443223548078],[-76.59536828023502,39.24441935175793],[-76.59537534239307,39.24440566453453],[-76.59537979278117,39.24439555158338],[-76.5953857734744,39.24438462059987],[-76.5953911031522,39.24437612486361],[-76.59539395676977,39.24437178306487],[-76.59539926847215,39.24436034354063],[-76.59540020570842,39.24435077876168],[-76.59540048239455,39.24434125764561],[-76.59539833989662,39.24433058691292],[-76.59539397013683,39.24432350709161],[-76.59538771929923,39.24431395357023],[-76.5953872152874,39.24430441895414],[-76.59538971338884,39.24428542305819],[-76.59539746215428,39.2442758565328],[-76.59540736880699,39.24426491115424],[-76.59541928816323,39.2442557021949],[-76.59543124594592,39.24424849038017],[-76.59544546243725,39.24424029910064],[-76.59545976874452,39.24423362503035],[-76.59547450468465,39.24422900800245],[-76.59549165798703,39.24422281033856],[-76.59552418173308,39.24421021879778],[-76.59553754120807,39.24420666263386],[-76.59555167549796,39.24420354240952],[-76.59556756932054,39.24419901763464],[-76.59558174577687,39.24419581558158],[-76.59559711461027,39.24419295632475],[-76.5956135654382,39.24418988821052],[-76.59562826832396,39.24418781663358],[-76.59564433262393,39.24418305373068],[-76.59566333112794,39.24418074382745],[-76.5956898354884,39.24417998117616],[-76.59570219206317,39.24417962558871],[-76.595717973486,39.24417917189976],[-76.5957316160969,39.24417878290543],[-76.59574819456016,39.24417791399846],[-76.59576445894606,39.24417646030683],[-76.59578026576787,39.24417541128611],[-76.59579918476015,39.2441734334723],[-76.59581466350819,39.24417100243258],[-76.59583137826701,39.24416796492206],[-76.59584687092186,39.24416451515186],[-76.59586233755383,39.24416054914725],[-76.59587776328578,39.24415684872773],[-76.59589678214154,39.24415157171098],[-76.5959122458964,39.24414811012264],[-76.59592747837462,39.24414498372454],[-76.59594392105522,39.24414069679037],[-76.59596058921584,39.24413668536562],[-76.59597571082747,39.24413309107855],[-76.59599171018338,39.24413036995679],[-76.59600371708451,39.24412672621414],[-76.59600833092753,39.24412532607636],[-76.59602377753161,39.24412100868014],[-76.5960405263241,39.24411890806072],[-76.59605757343307,39.24411832987076],[-76.5960757627,39.24411735206181],[-76.59609102670797,39.2441154003588],[-76.59611100162526,39.24411290458021],[-76.59613031027025,39.24411247648217],[-76.59614757029748,39.24411295651896],[-76.59616432912956,39.24411397709439],[-76.59617665142808,39.24411536793774],[-76.59619147573092,39.24411740152988],[-76.59620501650939,39.24411862000987],[-76.59621817133784,39.24412007676645],[-76.59623002691414,39.24412226138134],[-76.59624431749683,39.24412444446103],[-76.59625760897745,39.244126112464],[-76.59626656101156,39.24412900410488],[-76.59627458074121,39.24413511550423],[-76.59627956268322,39.24414252167632],[-76.59627989377449,39.24414948488824],[-76.59628067573585,39.24416597802577],[-76.59628130232684,39.24417312691227],[-76.59628207401836,39.24418144550087],[-76.59628395825796,39.2441878492692],[-76.59628714748489,39.24419455387933],[-76.59629215790378,39.2442014349981],[-76.59629688045239,39.24420536329416],[-76.59630631154671,39.24420977528229],[-76.59631919564421,39.24421341637138],[-76.59633170322034,39.24421502672318],[-76.59634282221057,39.24421514782564],[-76.59635601502853,39.24421481666324],[-76.5963810067508,39.24421726891794],[-76.59639863333489,39.24422092630289],[-76.59641082120338,39.24422722046661],[-76.5964200356153,39.24423368185958],[-76.59642907066153,39.24424112898141],[-76.596438988958,39.24424664878259],[-76.59645158531352,39.24425200213787],[-76.59646217195532,39.24425610731879],[-76.59648101007025,39.24426530050153],[-76.59649202065232,39.24427002506703],[-76.59650596893219,39.24427924377525],[-76.59651978787313,39.24429307939864],[-76.59653696052227,39.24431444349498],[-76.59655016939092,39.24433615697832],[-76.59656668829268,39.24436065171109],[-76.59657950824617,39.24437701326405],[-76.59658827908314,39.24438998570625],[-76.59659789622232,39.24440019388187],[-76.59660727908883,39.24441289639222],[-76.5966127072915,39.24441781885074],[-76.59661801693956,39.24442158791248],[-76.59662441404515,39.24442602187768],[-76.59662997333743,39.24443009625782],[-76.59663616497943,39.24443419713122],[-76.5966437447387,39.24443803704556],[-76.59665105695933,39.24444125540782],[-76.59665867946342,39.24444450456114],[-76.59666692431479,39.24444811345886],[-76.59667543046938,39.24445181062863],[-76.59668302036657,39.24445570191931],[-76.59669328297126,39.24446098147423],[-76.59670248888639,39.24446650150769],[-76.59671869530123,39.24448076506832],[-76.59672727111129,39.24449402057311],[-76.59673223603477,39.24450892109572],[-76.59673345319946,39.24452774061751],[-76.59673558507951,39.24453521894954],[-76.59689745994567,39.24457174633184],[-76.59691721341726,39.24457582889956],[-76.59692086163838,39.24457434163885],[-76.59693777718492,39.24454594790843],[-76.59695565082895,39.24452406644839],[-76.59696917412947,39.24451613743281],[-76.59698086981126,39.24451263034036],[-76.59698833228968,39.24450999507536],[-76.59699890830919,39.2445086378851],[-76.59700454004349,39.24450791498048],[-76.59700874819542,39.24450737454967],[-76.59702046728559,39.24450484487205],[-76.59703030017208,39.24450379409316],[-76.59704011615641,39.24450368005905],[-76.59705274405758,39.24450410442905],[-76.59707168867621,39.24450700868629],[-76.59708659124941,39.24450914962537],[-76.59710240345896,39.2445114468157],[-76.59711687283435,39.24451337458269],[-76.5971326758829,39.24451544924657],[-76.59714531469096,39.24451701402227],[-76.5971624641907,39.24451882126912],[-76.59717735552826,39.24452028928091],[-76.59719268317679,39.24452223889967],[-76.59720806613258,39.24452485347647],[-76.59722295897768,39.24452748528596],[-76.59723921059545,39.24452829048416],[-76.59725314668017,39.24452702586782],[-76.59726615261405,39.24452187032403],[-76.59727885162191,39.24451588771732],[-76.59729408621823,39.2445105533555],[-76.59731027559623,39.24450926043079],[-76.59732423440722,39.24450909392588],[-76.59734002537026,39.24451064517147],[-76.59735449326764,39.24451467260527],[-76.59737037324908,39.24451952368252],[-76.59738667156198,39.24452394201978],[-76.59740204678424,39.2445273086898],[-76.59741921336264,39.24452998700487],[-76.59743498918215,39.24453053292341],[-76.5974548019085,39.2445302982003],[-76.59747100454096,39.24452993669785],[-76.59748539009355,39.2445284673181],[-76.59749955354255,39.24452510375093],[-76.59751413224227,39.24451898974505],[-76.59752869988843,39.2445123730683],[-76.59754036517738,39.24450564014899],[-76.59755335383387,39.24449903246856],[-76.59756734945903,39.244492984916],[-76.59758460450246,39.24448618828216],[-76.59759891079162,39.24448071648369],[-76.59761411658526,39.2444753486531],[-76.59762755260866,39.24447156191641],[-76.59764507460119,39.24446937364094],[-76.59765948173576,39.2444692032281],[-76.59767434379556,39.24446909202198],[-76.59769014398285,39.24447105940912],[-76.59770370707005,39.2444738766638],[-76.5977190720201,39.2444766037085],[-76.59773441337988,39.24447920095909],[-76.59775026278345,39.24448250074957],[-76.59776883883542,39.24448809964414],[-76.59778198148371,39.24449233686854],[-76.59779739367325,39.24449735923364],[-76.59781144689542,39.24450220129044],[-76.59782913094119,39.24450821417727],[-76.59784363685823,39.24451310101807],[-76.59786176860419,39.24451922262552],[-76.59787718921012,39.24452460171488],[-76.59789395550004,39.24452984849386],[-76.59790979667132,39.24453399135771],[-76.59792426455853,39.24453679997565],[-76.59793870679214,39.24453841137709],[-76.59795267343617,39.24453870331758],[-76.59796708057902,39.24453853376776],[-76.59798103937888,39.24453836988708],[-76.59799589834984,39.24453819287321],[-76.59801302838058,39.24453914689733],[-76.59802612483819,39.24454090771206],[-76.59804012983821,39.24454322290891],[-76.5980555005833,39.24454615890851],[-76.59806907616765,39.24454943375614],[-76.59808264809377,39.24455253654208],[-76.59809711295497,39.24455526766186],[-76.59810888522983,39.24455847958276],[-76.59812291425108,39.2445620775522],[-76.59813642779132,39.24456239854606],[-76.59815219154137,39.2445622138002],[-76.59816525380405,39.2445624449704],[-76.59818059472904,39.24456389727892],[-76.59819504264459,39.24456573476218],[-76.59820903692555,39.24456748962154],[-76.59822350487221,39.24457029099656],[-76.59823707776863,39.24457342889799],[-76.59825155564714,39.24457693200544],[-76.59826694442873,39.24458098229479],[-76.59828098208347,39.24458489914834],[-76.59829592426989,39.24458885152304],[-76.59831400135563,39.24459215525643],[-76.59832843628779,39.24459321801433],[-76.59834419925423,39.24459317285977],[-76.59836040674053,39.24459297879484],[-76.59837436555019,39.24459281486734],[-76.59839102136934,39.24459261692729],[-76.59840768182714,39.24459241809996],[-76.59842167213213,39.24459405852222],[-76.59843571856244,39.24459826903914],[-76.59845151065254,39.2446053625929],[-76.59846530104488,39.24461265017057],[-76.59848060562705,39.24462155440755],[-76.59849312688542,39.2446301878995],[-76.59850529705015,39.24463904268021],[-76.59851953110359,39.24464961238254],[-76.59853010698363,39.24465749517951],[-76.59854356673462,39.24466753527901],[-76.5985543959461,39.24467568827099],[-76.59856749496097,39.2446858118068],[-76.59858027608136,39.24469643148062],[-76.59859202637784,39.2447066107537],[-76.59860429829804,39.24471734668496],[-76.59861454332427,39.24472638133183],[-76.5986254107704,39.24473597027931],[-76.59863545614239,39.24474589690729],[-76.59864455406711,39.24475620762754],[-76.59865330617855,39.24476621540605],[-76.59866268274163,39.24477723778699],[-76.59867152795346,39.24478717111819],[-76.59867756683752,39.24479413942068],[-76.59868167332999,39.24479887710977],[-76.59868959814459,39.24480973779129],[-76.59869591709823,39.24481941837561],[-76.59870336067117,39.2448305719638],[-76.59871040959121,39.24484043069307],[-76.59871694510672,39.24484971387492],[-76.59872536429293,39.24485939623161],[-76.59873098090127,39.24486770343739],[-76.59873535715307,39.24488066700066],[-76.59873717511715,39.24489186981711],[-76.59873806394332,39.24490206149332],[-76.59873981128626,39.24491530611971],[-76.59874140642989,39.24492617038471],[-76.5987428710658,39.24493737469561],[-76.59874422100432,39.24494858131675],[-76.59874600732543,39.24496046410797],[-76.59874868376698,39.2449716536442],[-76.59875228201153,39.24498351290253],[-76.59875397141546,39.24499573675508],[-76.59875410163157,39.24500692479482],[-76.59875184631522,39.24501878386385],[-76.59874948824833,39.2450303759529],[-76.59874733796408,39.24504230293866],[-76.5987440521632,39.24505447916043],[-76.59873945078967,39.24506596810004],[-76.59873448127892,39.24507741344487],[-76.59873030358078,39.24508936682918],[-76.59872549158025,39.24510245752248],[-76.59872014128565,39.24511322688646],[-76.59871525093256,39.24512501299292],[-76.59870916050535,39.24513617256332],[-76.59870215989783,39.24514542568991],[-76.59869385051246,39.2451556579859],[-76.59868697357602,39.24516537002755],[-76.59867855689515,39.24517757284585],[-76.59866962163046,39.2451880660261],[-76.5986596922771,39.24519735597837],[-76.59865037073531,39.2452060958342],[-76.59863682608851,39.24521862971759],[-76.5986287575146,39.24522622086642],[-76.59861883868433,39.24523323820225],[-76.59860807210499,39.24523960047952],[-76.59859793751771,39.2452454388655],[-76.59858831296964,39.24525142401889],[-76.59857718165937,39.24525795889529],[-76.59856793017036,39.24526311661189],[-76.59855589775512,39.24526736945077],[-76.59854640112452,39.24527265243561],[-76.59853991086378,39.24528137764324],[-76.59853503074928,39.24528970751284],[-76.59852954049029,39.24529961344907],[-76.59852281032805,39.245310199732],[-76.5985161189023,39.24532028621827],[-76.59850863048811,39.24533077892924],[-76.59850090861562,39.24534383714203],[-76.59849594568152,39.24535533834644],[-76.59849155091668,39.2453663352596],[-76.59848649597728,39.24537812709836],[-76.59848049525499,39.24539021115561],[-76.5984743216612,39.24540172713466],[-76.59846373749293,39.24542007029565],[-76.59846142305531,39.24542352945284],[-76.59845318322169,39.2454345609542],[-76.59844491226957,39.24544413039496],[-76.5984363131669,39.24545375456056],[-76.59842785072134,39.24546297564687],[-76.59841793879771,39.24547367714822],[-76.59840912298353,39.24548351945818],[-76.59839957728502,39.24549316830695],[-76.59839211342882,39.24550115694686],[-76.59838040517265,39.24551096503917],[-76.59836906211724,39.24551949258055],[-76.59835818249675,39.24552780462014],[-76.59834651526326,39.2455379362267],[-76.59833761305752,39.24554666488094],[-76.59832909923253,39.24555554439146],[-76.59831966656147,39.24556712037246],[-76.59831025797965,39.24557873787064],[-76.59830099379464,39.24559042702311],[-76.59829185719212,39.24560065555858],[-76.59828262016262,39.24561020636882],[-76.59827047160077,39.2456198210789],[-76.59825881633678,39.24562721887334],[-76.59824421986106,39.24563583075127],[-76.59823139090913,39.24564366950811],[-76.59821940033224,39.24565095355457],[-76.59820619111382,39.24566027638089],[-76.59819513049304,39.24566944982489],[-76.59818497498826,39.24567937580825],[-76.59817476280789,39.24568887643216],[-76.59816304711273,39.24569896461728],[-76.59815156647701,39.2457078429677],[-76.59813992334651,39.24571636675723],[-76.5981300263244,39.24572380838964],[-76.59811671910613,39.24573488557484],[-76.59810596546106,39.24574446630947],[-76.59809543488886,39.24575413608249],[-76.59808620597974,39.24576265371891],[-76.59807387261739,39.245773184762],[-76.59806332392841,39.24578216537918],[-76.59805254944952,39.24579051288019],[-76.59804178053689,39.24579930898382],[-76.59803029030094,39.24580803595963],[-76.59801832751619,39.24581429049773],[-76.59800626854619,39.245821368912],[-76.59799554168694,39.24582928329924],[-76.59798453339398,39.24583963961644],[-76.59797545871854,39.2458503745729],[-76.59796647759241,39.24586136386678],[-76.59795449695693,39.24587076743733],[-76.59794288328045,39.24587755912274],[-76.59793920604167,39.24589029696187],[-76.59792831602624,39.24590349291305],[-76.59791712317893,39.24591227314091],[-76.59790416180532,39.24592077347575],[-76.59789167076006,39.24592988704453],[-76.59787701869676,39.24594154419724],[-76.59786453900408,39.24595049296064],[-76.59785321511673,39.24595847645076],[-76.5978484146177,39.24596765779317],[-76.59784742134035,39.24598082998737],[-76.59784395909288,39.24598751446898],[-76.597833864916,39.24599600480042],[-76.59782238050849,39.24600001262943],[-76.59780968913805,39.24600031504915],[-76.59779764650196,39.24600061698767],[-76.59778588990268,39.24600400324852],[-76.59777410195927,39.24601128524102],[-76.59776240170045,39.24601965206261],[-76.59774922291443,39.2460268527217],[-76.59773374180143,39.24603270784375],[-76.59772166031445,39.24603557143782],[-76.59770948756002,39.24603879953064],[-76.59769627391458,39.24604397332665],[-76.59768267642184,39.24605023934337],[-76.59767182809081,39.24605852079962],[-76.59766231415438,39.24606866602184],[-76.59765353990358,39.24608115848855],[-76.59764803333967,39.24609452149014],[-76.59764203591875,39.24611048333875],[-76.59763792170068,39.24612550042564],[-76.59763447017522,39.24614009822207],[-76.59763334217629,39.24615843227812],[-76.5976336975306,39.24616441012002],[-76.59763397986805,39.24617877300074],[-76.59763429385548,39.24619490961047],[-76.59763185569973,39.24622202170551],[-76.59762713132498,39.24624576338197],[-76.59762440614986,39.24625668131012],[-76.59761655849812,39.24626572338843],[-76.59761315981851,39.24627181447178],[-76.59753336484725,39.24628582359892],[-76.59752295700132,39.24629241309924],[-76.59751765469743,39.24629957407659],[-76.59751519677596,39.24630912014143],[-76.59751529692905,39.24631944693773],[-76.59751797700062,39.24632813236384],[-76.59752478087276,39.2463380966112],[-76.597525692988,39.24634476635334],[-76.59751925221484,39.24635228373675],[-76.59751048869205,39.24635837894436],[-76.59749942220816,39.24636855125796],[-76.59749500656652,39.24637379392687],[-76.59749314435925,39.24638349606548],[-76.59749622971371,39.24639221260685],[-76.59750653275687,39.24639920549403],[-76.5975190200549,39.24640446467567],[-76.59752857866557,39.24640749611492],[-76.59754476771556,39.24641001432318],[-76.59755782474886,39.24641143185866],[-76.59757191552121,39.246413596974],[-76.59758447176682,39.24641732146912],[-76.59760199873604,39.24642557947205],[-76.59761801390168,39.24643384129851],[-76.59762976775023,39.24643953753135],[-76.59764407090779,39.24644654051255],[-76.59765590480552,39.2464538521016],[-76.59766716167034,39.24646200303319],[-76.59768031635316,39.24647092522277],[-76.59769428770667,39.24647924218817],[-76.59770731297203,39.24648606333047],[-76.59772383152713,39.24649401610078],[-76.59773777396262,39.24650069175487],[-76.59775152159675,39.24650596874147],[-76.5977642474685,39.24651022435314],[-76.5977779487356,39.24651325825506],[-76.59779058108668,39.24651336999147],[-76.59780448116973,39.24651300595794],[-76.59781883612557,39.24651087256289],[-76.59783260395317,39.2465076796484],[-76.59784730840256,39.24650315589693],[-76.59786238295746,39.24649873790097],[-76.59787781222668,39.24649509758358],[-76.59789249054352,39.24649314093768],[-76.59790675949415,39.24649248720605],[-76.59792363297959,39.24649218558679],[-76.59794046528388,39.24648954181643],[-76.59795467310579,39.24648474972225],[-76.59797015495218,39.24647877927519],[-76.59798477530343,39.24647294279352],[-76.59800154339837,39.24646608948614],[-76.59801444301127,39.24646094160414],[-76.59803594496522,39.24645258399699],[-76.59805185882692,39.24644642225306],[-76.59806820320962,39.24644013046812],[-76.59808367785968,39.24643358618955],[-76.59809839891426,39.24642612414469],[-76.59811166382786,39.24641681323268],[-76.59812575564555,39.24640754298217],[-76.59813921136028,39.24640033782472],[-76.59815379393835,39.24639339234211],[-76.59816710894628,39.24638730365739],[-76.59818142160425,39.24638260827718],[-76.59819750849866,39.24637964124393],[-76.59821473810956,39.24637617999209],[-76.59823148400361,39.24637262700517],[-76.598249170342,39.24636952221557],[-76.59826558267477,39.24636759307537],[-76.59828244022589,39.24636621222503],[-76.59829877933743,39.24636534844318],[-76.59831950980991,39.24636167936602],[-76.59833450842716,39.24636125327198],[-76.59834782713568,39.24636126280718],[-76.59836196619275,39.24636472420404],[-76.59837495412955,39.24637282694345],[-76.59838688989846,39.2463820052072],[-76.59839949434358,39.24639339264886],[-76.59841135897922,39.24640634039831],[-76.59842257475728,39.24641787711936],[-76.59843361835529,39.24642872415967],[-76.59844614744483,39.24643991947391],[-76.59845981141204,39.24645180235439],[-76.59847004198581,39.24646466163774],[-76.59848123478243,39.24647678287545],[-76.5984889428254,39.2464848288113],[-76.59849731034409,39.24649486770834],[-76.598504997362,39.24650806508709],[-76.59850914112208,39.246524662473],[-76.59851502716157,39.24653962911389],[-76.59852112703516,39.24655304265367],[-76.59852930388367,39.24656627683569],[-76.598541920527,39.24658678281929],[-76.59854659508375,39.24659555971344],[-76.59855068549399,39.24660336267683],[-76.59855685064255,39.24661343006929],[-76.59856366387801,39.24662381764994],[-76.59857108868987,39.24663381188234],[-76.59857694865616,39.2466435602576],[-76.59858080556799,39.24665332250156],[-76.5985844717876,39.24666505318115],[-76.59858665832927,39.24667417827238],[-76.5985882377836,39.24668331299792],[-76.59859024637933,39.2466927671632],[-76.59859178455599,39.24670059742949],[-76.59859312888094,39.24671136445075],[-76.59859403777777,39.24671985102986],[-76.598594690449,39.24673062739629],[-76.59859558034505,39.24674185946364],[-76.59859705833229,39.24675131992144],[-76.59859901827154,39.24676077482079],[-76.59860104414057,39.24677024796095],[-76.59860409054099,39.24678034882522],[-76.59860567348036,39.24678948266136],[-76.59860583842013,39.24680026276462],[-76.59860283279379,39.24681040238818],[-76.59859875808115,39.24681928177942],[-76.59859425742025,39.24683075934231],[-76.59859186730247,39.24683960485898],[-76.59859137186778,39.24685039351348],[-76.59859163233021,39.24686476712291],[-76.59859133740066,39.24687390084388],[-76.59858961320799,39.24688339449077],[-76.5985874496475,39.24689519621489],[-76.59858569049804,39.24690534009954],[-76.59858418733158,39.24691385175971],[-76.59858242144834,39.24692334256149],[-76.59858035183136,39.24693512478959],[-76.59857851970969,39.24694690512732],[-76.59857686321315,39.24695835728365],[-76.59857541038929,39.24697046229535],[-76.5985742555754,39.24698354115966],[-76.59857101112314,39.24700415774544],[-76.59856751430416,39.24702248911027],[-76.59856534872222,39.24703198394949],[-76.59856175488513,39.24704247916661],[-76.59855909624676,39.24705230380387],[-76.59855680740611,39.24706310884471],[-76.59855408899062,39.24707489966266],[-76.59855173482835,39.24708537389666],[-76.59855059682897,39.24709486414222],[-76.59854961665793,39.24710532956271],[-76.59854883877753,39.24711546329004],[-76.59854828146912,39.24712592475175],[-76.59854741834184,39.24713802187041],[-76.59854676461731,39.24714750566483],[-76.59854623415978,39.24715567745587],[-76.59854550541669,39.24716777413319],[-76.59854466821567,39.2471785643202],[-76.59854374179872,39.24718935690444],[-76.59854277671641,39.2472014554758],[-76.59854216796208,39.24721159068189],[-76.59854211692898,39.24722204756907],[-76.59854229043682,39.24723315468065],[-76.59854149309444,39.24724427108315],[-76.59853848090212,39.24725802457851],[-76.59853490098665,39.2472685135364],[-76.59853078606541,39.24727998971224],[-76.59852685627594,39.24729048107653],[-76.59852134396367,39.24730425844962],[-76.59851687359759,39.24731508305209],[-76.59851218472528,39.24732623839116],[-76.5985096029182,39.24733312677284],[-76.59850426809619,39.24734624538693],[-76.59849969877401,39.24735674537231],[-76.59849527238205,39.24736593882622],[-76.59848989463224,39.24737579109375],[-76.59848338963215,39.24738729152161],[-76.59847761540534,39.24739678302459],[-76.59845975480098,39.2474269635556],[-76.59845523485258,39.24743876802562],[-76.5984518406818,39.24744631749626],[-76.59844694463165,39.2474568217665],[-76.59844169570435,39.24746765451203],[-76.5984378261155,39.24747814878104],[-76.59843454531774,39.24748961609587],[-76.59842913317854,39.24750062933771],[-76.59842136103299,39.24751372429773],[-76.59841393751493,39.2475245793292],[-76.59840675751957,39.24753477672903],[-76.59839632650029,39.24754810580074],[-76.59838891134252,39.24755604866369],[-76.59837918692877,39.24756549782415],[-76.59837035787531,39.24757374301238],[-76.5983597534416,39.2475833215742],[-76.59834971648311,39.24759354522753],[-76.59834060865232,39.24760376305095],[-76.59833342699802,39.24761363616251],[-76.59832647871436,39.24762546474699],[-76.59832053996371,39.2476359762534],[-76.59831517743916,39.24764517730638],[-76.59830933507797,39.24765667008251],[-76.59830514987785,39.24766683898901],[-76.59830169038653,39.24767732835074],[-76.5982999284346,39.2476904132396],[-76.59829942738803,39.24770218461332],[-76.59829950217001,39.24771394444564],[-76.59829788352739,39.24772606599877],[-76.59829408922833,39.24773819361936],[-76.59829033087068,39.24775031595807],[-76.59828563897058,39.24776506535623],[-76.59827804821795,39.24778314940098],[-76.59826782773813,39.24779836359559],[-76.59825501047196,39.24781327975568],[-76.59824834434374,39.24782314651869],[-76.59824318193452,39.247834443448],[-76.59824175001734,39.24784222752188],[-76.59823486988365,39.24784876339833],[-76.59822573360347,39.24785703995167],[-76.59821584311517,39.24786450412939],[-76.59820515365196,39.24787210609232],[-76.59818990445126,39.24788195158472],[-76.5981798625557,39.24788628235682],[-76.59816777371168,39.24788650490817],[-76.59815583945385,39.24788459135667],[-76.59814348207568,39.24788190799732],[-76.59812988495243,39.24787864119681],[-76.59811817228923,39.2478754429986],[-76.59810460546021,39.24787173672222],[-76.59809256097637,39.24786739880997],[-76.59807945069386,39.24786183309894],[-76.59806664620166,39.2478550487883],[-76.59805529500019,39.24785041689168],[-76.59804245831101,39.24784768233825],[-76.59803122854802,39.24784779161715],[-76.59801871397423,39.24784791090832],[-76.59800690184008,39.24784857306639],[-76.59799568062348,39.24785044608239],[-76.59798660439138,39.24785322901545],[-76.59797680700544,39.24785856857122],[-76.59796753012937,39.24786486832973],[-76.59795826003534,39.247872015737],[-76.59794765318229,39.24787995845124],[-76.59794073109569,39.24788387382159],[-76.59793137971789,39.24788410031852],[-76.59792396669964,39.24788367408799],[-76.59791524187843,39.24788311455405],[-76.59790671096515,39.24788431759324],[-76.59790421600998,39.24788526746963],[-76.59789637595705,39.24788864823808],[-76.59788839384244,39.24789338418108],[-76.59787999636659,39.247899661723],[-76.5978697216713,39.2479052059117],[-76.59786107374066,39.24791009090193],[-76.59785471347321,39.24791462612103],[-76.5978531797715,39.24791992010825],[-76.59785549967411,39.24792369508226],[-76.59786344599566,39.24792589135878],[-76.59787183819145,39.24792790810685],[-76.59788392307993,39.24793145260011],[-76.59789567952431,39.24793612463426],[-76.59790744177289,39.24794099936078],[-76.59792048176833,39.24794670266825],[-76.59793612789971,39.24795596213855],[-76.59794571595599,39.24796447033508],[-76.59795313734334,39.24797282878922],[-76.59795927540137,39.24798257183842],[-76.59796574551746,39.24799361763956],[-76.59797144912598,39.24800336460493],[-76.59797727809131,39.24801409203897],[-76.59798304335837,39.24802481655227],[-76.59798813477336,39.24803424615033],[-76.59799390467758,39.2480449706789],[-76.59799855990246,39.24805471135076],[-76.59800318029667,39.24806610211697],[-76.59800743549071,39.24807488299753],[-76.59801389843365,39.24808658453293],[-76.59802157945938,39.24809696790554],[-76.59803016236829,39.2481076579255],[-76.59804006350552,39.24811775704792],[-76.59805285245911,39.24812708869016],[-76.59806857049064,39.2481357313596],[-76.59808426551155,39.24814332364831],[-76.5980982183019,39.24814987048034],[-76.59811392766699,39.24815677192222],[-76.59812871083231,39.24816254692927],[-76.5981430660693,39.24816737826254],[-76.59815699860351,39.24817136592564],[-76.59817392299031,39.24817564937155],[-76.59818957639474,39.24817934116202],[-76.59820301885429,39.24818251734861],[-76.59821737566443,39.24818584438932],[-76.5982321382948,39.24818910976298],[-76.59824646158641,39.24819201422348],[-76.59826251930606,39.24819468321027],[-76.59828203665371,39.24819769281409],[-76.5983006941494,39.2482009525896],[-76.59831588045263,39.24820345915094],[-76.59832891818824,39.24820711945431],[-76.59834369395921,39.24821113520172],[-76.59835757856122,39.24821356524262],[-76.59837272584714,39.24821375487827],[-76.5983874395249,39.24821379890525],[-76.59841054473027,39.24821352934085],[-76.59842308833957,39.24821340830547],[-76.59843736861785,39.24821326978866],[-76.59845336791273,39.24821254804471],[-76.59846547027961,39.24821178774931],[-76.59848189762766,39.24821096477751],[-76.59849659636292,39.2482099638445],[-76.59851215846047,39.24820911629094],[-76.59852642541108,39.24820826160419],[-76.59853979590186,39.24820552664212]]]],"type":"MultiPolygon"} +},{ + "id": 1108832059, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000091, + "geom:area_square_m":887569.679955, + "geom:bbox":"-122.391468186,37.708384596,-122.374371909,37.72036816", + "geom:latitude":37.713573, + "geom:longitude":-122.382873, + "iso:country":"US", + "lbl:latitude":37.712228, + "lbl:longitude":-122.382876, + "lbl:max_zoom":18.0, + "mps:latitude":37.712228, + "mps:longitude":-122.382876, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Candlestick", + "Candlestick Point", + "Candlestick Pt." + ], + "reversegeo:latitude":37.712228, + "reversegeo:longitude":-122.382876, + "src:geom":"mz", + "wof:belongsto":[ + 85869105, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b7caf777069f3456a64ab549610d4857", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832059, + "neighbourhood_id":85869105, + "region_id":85688637 + } + ], + "wof:id":1108832059, + "wof:lastmodified":1566624115, + "wof:name":"Candlestick Point", + "wof:parent_id":85869105, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.39146818599994, + 37.70838459600009, + -122.37437190899993, + 37.72036816000008 +], + "geometry": {"coordinates":[[[-122.38813050899989,37.71629821500005],[-122.38791176699993,37.71632787400006],[-122.38684966599993,37.71750900100005],[-122.38626501399995,37.71717894700004],[-122.38240221751171,37.71505532614253],[-122.38135334843361,37.71621587624163],[-122.38515706099992,37.71838264473556],[-122.38415639499993,37.71952096300004],[-122.38408586999992,37.71966724900005],[-122.38399947399989,37.71969539900005],[-122.38345282599994,37.72030305500004],[-122.38332965899991,37.72036816000008],[-122.38327802099991,37.72033884700005],[-122.38324029599994,37.72025338700007],[-122.3832300169999,37.72012066900004],[-122.38284980999993,37.71992313100009],[-122.38277495199992,37.71990303900009],[-122.38222466299993,37.71959997000005],[-122.38173001799993,37.71933326800007],[-122.38138597199992,37.71885633600004],[-122.38123849999994,37.71876804300007],[-122.3807927069999,37.71877962500008],[-122.38055683099992,37.71875077100009],[-122.38033188899993,37.71867573200007],[-122.38019649199993,37.71851788500004],[-122.37999645899993,37.71847060300007],[-122.37971346099994,37.71835597200004],[-122.37943930799992,37.71811243700006],[-122.37905743899989,37.71777997100008],[-122.37859493199994,37.71754046900008],[-122.37788235199992,37.71718889400006],[-122.37719259399989,37.71685068700009],[-122.37651296699994,37.71636569700007],[-122.37623237299994,37.71620878500005],[-122.37614388999992,37.71612813000007],[-122.37612095899993,37.71600552700005],[-122.3766775119999,37.71523582100008],[-122.37714303999991,37.71469871200009],[-122.37732111999991,37.71436933900009],[-122.37770177899989,37.71407882800008],[-122.37839903699989,37.71355163300007],[-122.37844683099991,37.71345884900006],[-122.37866097699992,37.71324426400008],[-122.37882804099991,37.71315060800003],[-122.3789338279999,37.71302668200008],[-122.37933787799994,37.71242996400008],[-122.37942888899994,37.71221308300005],[-122.37985017199992,37.71164481700004],[-122.3800451969999,37.71151084600007],[-122.3801190339999,37.71108080500005],[-122.38011245599989,37.71082510500008],[-122.38002709299991,37.71058988600004],[-122.37987421899993,37.71049240700006],[-122.37972359799994,37.71049273600005],[-122.37939090399993,37.71030383600004],[-122.37921548999992,37.71014856600004],[-122.3789438849999,37.70993623600009],[-122.37889859399991,37.70978587700006],[-122.37881814699995,37.70974939100006],[-122.37867133499992,37.70948116100004],[-122.37858807599991,37.70940179800004],[-122.37846072999992,37.70928811500005],[-122.37837105599993,37.70888643400008],[-122.37828550599994,37.70878478900005],[-122.3781087669999,37.70870039300007],[-122.37796492199993,37.70861787500007],[-122.37778062699994,37.70857651900008],[-122.37753744999991,37.70866795400008],[-122.37699087899995,37.70886242700004],[-122.37680649899994,37.70897140200009],[-122.37672609399993,37.70906077500007],[-122.37667795199991,37.70911428700003],[-122.37638651399993,37.70954310000008],[-122.37643095199991,37.70956833300005],[-122.37636826999994,37.70966777000007],[-122.37602301499993,37.70969046500005],[-122.37581988499994,37.70966019500008],[-122.3755571019999,37.70958556400007],[-122.37531600599993,37.70938124800006],[-122.37493324699994,37.70919015000004],[-122.3745708109999,37.70902879800008],[-122.37443941499993,37.70893870000009],[-122.37437190899993,37.70873073500007],[-122.37438717299995,37.70867782900007],[-122.3745967189999,37.70852675900005],[-122.37561363399993,37.70840640300008],[-122.37609886899992,37.70838459600009],[-122.37943190099992,37.70843673300004],[-122.37976420399991,37.70851755200005],[-122.38017304499994,37.70870488500009],[-122.38057140699993,37.70880256400005],[-122.38134242899991,37.70887025500008],[-122.38158601999993,37.70886361700008],[-122.38184216799993,37.70887497600006],[-122.38221854699992,37.70906021700006],[-122.3828428679999,37.70913745300004],[-122.38337315199993,37.70918769000008],[-122.3837866529999,37.70920030600007],[-122.38407519599991,37.70926196000005],[-122.38444588699991,37.70929070900007],[-122.38502119799995,37.70948031200004],[-122.38556569699995,37.70975006600008],[-122.38585241999994,37.70994428400007],[-122.38608539799992,37.70999617900009],[-122.38679700899991,37.70977712900009],[-122.38681347799991,37.70961770300005],[-122.38720238299993,37.70950093800008],[-122.38809867799989,37.70867183600006],[-122.38865901599991,37.70888432400005],[-122.38969577299991,37.70961211200006],[-122.3899709079999,37.70955413200005],[-122.39038927699994,37.70925105400005],[-122.39055967099989,37.70921276400009],[-122.39146818599994,37.70969525600009],[-122.39136819981323,37.71002519336739],[-122.39094927311322,37.71031334240656],[-122.39046337890154,37.71040923591055],[-122.38881894442882,37.71048969423401],[-122.38654167161991,37.71116925533345],[-122.38774145157184,37.71228464217606],[-122.38795353246482,37.71303294715943],[-122.38806062210723,37.71366590336956],[-122.38875919999992,37.71466371900004],[-122.38859737199994,37.71472912100006],[-122.38827189699992,37.71510377600003],[-122.3883959069999,37.71518100100008],[-122.38858666599992,37.71548070300008],[-122.38851735399993,37.71556048700006],[-122.3885365399999,37.71567482300009],[-122.38852575599992,37.71575400500006],[-122.38846533399993,37.71588602500009],[-122.38840190499991,37.71602461200007],[-122.38832155999989,37.71611709700005],[-122.38848736499995,37.71638558600006],[-122.38857176399989,37.71643349300007],[-122.38851287499995,37.71651920000005],[-122.38813050899989,37.71629821500005]]],"type":"Polygon"} +},{ + "id": 1108832061, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":59601.411482, + "geom:bbox":"-122.391161633,37.716298215,-122.386849666,37.7193139375", + "geom:latitude":37.717775, + "geom:longitude":-122.389008, + "iso:country":"US", + "lbl:latitude":37.717775, + "lbl:longitude":-122.389017, + "lbl:max_zoom":18.0, + "mps:latitude":37.717775, + "mps:longitude":-122.389017, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0628\u0631\u064a\u062a \u0647\u0627\u0631\u062a" + ], + "name:azb_x_preferred":[ + "\u0628\u0631\u06cc\u062a \u0647\u0627\u0631\u062a" + ], + "name:bel_x_preferred":[ + "\u0424\u0440\u044d\u043d\u0441\u0456\u0441 \u0411\u0440\u044d\u0442 \u0413\u0430\u0440\u0442" + ], + "name:bul_x_preferred":[ + "\u0424\u0440\u0430\u043d\u0441\u0438\u0441 \u0411\u0440\u0435\u0442 \u0425\u0430\u0440\u0442" + ], + "name:ces_x_preferred":[ + "Francis Bret Harte" + ], + "name:deu_x_preferred":[ + "Bret Harte" + ], + "name:fra_x_preferred":[ + "Bret Harte" + ], + "name:hye_x_preferred":[ + "\u0556\u0580\u0565\u0576\u057d\u056b\u057d \u0532\u0580\u0565\u0569 \u0540\u0561\u0580\u0569" + ], + "name:ita_x_preferred":[ + "Bret Harte" + ], + "name:kat_x_preferred":[ + "\u10e4\u10e0\u10d4\u10dc\u10e1\u10d8\u10e1 \u10d1\u10e0\u10d4\u10e2 \u10f0\u10d0\u10e0\u10e2\u10d8" + ], + "name:kur_x_preferred":[ + "Bret Harte" + ], + "name:nld_x_preferred":[ + "Francis Bret Harte" + ], + "name:nor_x_preferred":[ + "Bret Harte" + ], + "name:pol_x_preferred":[ + "Bret Harte" + ], + "name:por_x_preferred":[ + "Bret Harte" + ], + "name:ron_x_preferred":[ + "Bret Harte" + ], + "name:rus_x_preferred":[ + "\u0413\u0430\u0440\u0442" + ], + "name:slv_x_preferred":[ + "Bret Harte" + ], + "name:spa_x_preferred":[ + "Bret Harte" + ], + "name:swe_x_preferred":[ + "Bret Harte" + ], + "name:tur_x_preferred":[ + "Bret Harte" + ], + "reversegeo:latitude":37.717775, + "reversegeo:longitude":-122.389017, + "src:geom":"mz", + "wof:belongsto":[ + 85869105, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"895f945b69fed8a26f460cd7a35bb6b4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832061, + "neighbourhood_id":85869105, + "region_id":85688637 + } + ], + "wof:id":1108832061, + "wof:lastmodified":1566624119, + "wof:name":"Bret Harte", + "wof:parent_id":85869105, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.39116163270094, + 37.71629821500005, + -122.38684966599993, + 37.71931393750656 +], + "geometry": {"coordinates":[[[-122.38684966599993,37.71750900100005],[-122.38791176699993,37.71632787400006],[-122.38813050899989,37.71629821500005],[-122.38851808399994,37.71652221100004],[-122.39116163270094,37.71805857612529],[-122.39003568304463,37.71931393750656],[-122.38684966599993,37.71750900100005]]],"type":"Polygon"} +},{ + "id": 1108832063, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00025, + "geom:area_square_m":2442398.092416, + "geom:bbox":"-122.485980329,37.7869660987,-122.466514127,37.811003225", + "geom:latitude":37.798455, + "geom:longitude":-122.475998, + "iso:country":"US", + "lbl:latitude":37.81012, + "lbl:longitude":-122.476703, + "lbl:max_zoom":18.0, + "mps:latitude":37.799728, + "mps:longitude":-122.475039, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fort Winfield Scott" + ], + "name:und_x_variant":[ + "Fort Scott" + ], + "reversegeo:latitude":37.799728, + "reversegeo:longitude":-122.475039, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865991, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3855a73fd3f9bd9111a0ca1bc9842897", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832063, + "neighbourhood_id":85865991, + "region_id":85688637 + } + ], + "wof:id":1108832063, + "wof:lastmodified":1566624120, + "wof:name":"Fort Winfield Scott", + "wof:parent_id":85865991, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85820267 + ], + "wof:tags":[] +}, + "bbox": [ + -122.48598032899991, + 37.78696609865469, + -122.46651412673268, + 37.81100322500004 +], + "geometry": {"coordinates":[[[-122.47758017099994,37.81099311300005],[-122.47712332299994,37.81100322500004],[-122.4764664569999,37.81083647600008],[-122.47596765399993,37.80957458300009],[-122.47494932299992,37.80925997300005],[-122.4730093899999,37.80907264800004],[-122.4706010839999,37.80859892400008],[-122.4693044679999,37.80772703100007],[-122.46879005799991,37.80700281300005],[-122.46830302099994,37.80681790100004],[-122.46720353699993,37.80601222900009],[-122.46881085551384,37.80468027918604],[-122.4689305336568,37.80440303337693],[-122.46899805532371,37.80424661300896],[-122.46901061611509,37.80410234660535],[-122.46896893183386,37.80397236098417],[-122.46876113647774,37.80374234525186],[-122.46866980389436,37.80356685532709],[-122.46864726897952,37.80338863309013],[-122.46888833793879,37.80125991150005],[-122.4688515516832,37.80110291700603],[-122.46869354947992,37.80098024818844],[-122.46821013247605,37.80081317731955],[-122.46803337444841,37.80067645472496],[-122.46794334738502,37.8005064188141],[-122.46783800350188,37.80018319535756],[-122.46770707538791,37.79999794382649],[-122.46756500408893,37.79989119708382],[-122.46728886763225,37.79977842776385],[-122.46700567470637,37.79973524997726],[-122.46683332027001,37.79976513231817],[-122.46669417379906,37.79975240301928],[-122.46659034983419,37.799694963626],[-122.46652516517553,37.79957864194299],[-122.46651412673268,37.79946713126772],[-122.46656999533521,37.79934176554628],[-122.46675852723482,37.79912877714527],[-122.46681910726039,37.7990124464016],[-122.46686857032613,37.79887953073273],[-122.46689228899791,37.79851809680236],[-122.466836024594,37.79714301405635],[-122.46686028663294,37.79656594250091],[-122.46691578581859,37.79634349964823],[-122.4669963809129,37.79621046146197],[-122.46715101388699,37.79605263359672],[-122.46739153271427,37.7959241325444],[-122.46814558618698,37.79564800426267],[-122.46851232969583,37.79548121965681],[-122.46883488614692,37.79522919739587],[-122.46907228849977,37.79509159194896],[-122.46937165552697,37.7949793001758],[-122.46981293949139,37.7949011931776],[-122.47024593791039,37.79487264233323],[-122.47121165893864,37.79464890293891],[-122.47197549665738,37.7943957237516],[-122.47279077581877,37.7942554165795],[-122.47356793433855,37.79417350321015],[-122.47478713434921,37.79380734681249],[-122.47520772384793,37.79363711384747],[-122.47537515484477,37.79347059267415],[-122.47551654054625,37.79317843006062],[-122.47549114339553,37.79245195143615],[-122.47550138166184,37.79206423456379],[-122.47557602858316,37.79161614932268],[-122.4757711497851,37.79101477350153],[-122.47589302792869,37.78998617484493],[-122.47594882107651,37.78945624024905],[-122.47594181927791,37.78878882782356],[-122.47576604495357,37.78696609865469],[-122.47884645799991,37.78700686800005],[-122.4821746479999,37.78724520800006],[-122.48237050799992,37.78709062900003],[-122.4841736059999,37.78731086500005],[-122.48431022499994,37.78735203400004],[-122.48464285299991,37.78737878500004],[-122.48463982999994,37.78753212700008],[-122.4841506649999,37.78755465300009],[-122.48414271299993,37.78777522900009],[-122.4839504329999,37.78802775100007],[-122.4839269609999,37.78831520100005],[-122.48370738599994,37.78877695000006],[-122.48382300199989,37.78928250300004],[-122.4842660519999,37.78941170900003],[-122.4850531269999,37.79036813300007],[-122.48598032899991,37.79080370600008],[-122.4832938639999,37.79467123700005],[-122.48351786399991,37.79473001800005],[-122.48195780099991,37.79853524300006],[-122.47992731799991,37.80274953300005],[-122.47840512999994,37.80809330700004],[-122.47789620299994,37.80844904200006],[-122.4779827939999,37.81054499200008],[-122.47758017099994,37.81099311300005]]],"type":"Polygon"} +},{ + "id": 1108832065, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000035, + "geom:area_square_m":344733.350467, + "geom:bbox":"-122.472633271,37.714228935,-122.462597175,37.717936035", + "geom:latitude":37.716109, + "geom:longitude":-122.467453, + "iso:country":"US", + "lbl:latitude":37.71608, + "lbl:longitude":-122.467453, + "lbl:max_zoom":18.0, + "mps:latitude":37.71608, + "mps:longitude":-122.467453, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":37.71608, + "reversegeo:longitude":-122.467453, + "src:geom":"mz", + "wof:belongsto":[ + 1108831825, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4a8d913f8224d414862ce4c53a2c3280", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832065, + "neighbourhood_id":1108831825, + "region_id":85688637 + } + ], + "wof:id":1108832065, + "wof:lastmodified":1566624120, + "wof:name":"Merced Heights", + "wof:parent_id":1108831825, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865983 + ], + "wof:tags":[] +}, + "bbox": [ + -122.47263327099989, + 37.71422893500005, + -122.4625971750171, + 37.71793603500004 +], + "geometry": {"coordinates":[[[-122.47253191999994,37.71787177500005],[-122.46263962499989,37.71793603500004],[-122.46262048199992,37.71614379300007],[-122.46261521299994,37.71561930300004],[-122.46259717501709,37.71428699859846],[-122.47171149399992,37.71422893500005],[-122.47218809599991,37.71561080200007],[-122.47237507199992,37.71612321800006],[-122.47263327099989,37.71690825300004],[-122.47257245399993,37.71717386800009],[-122.47253191999994,37.71787177500005]]],"type":"Polygon"} +},{ + "id": 1108832081, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":184954.805173, + "geom:bbox":"-122.438926755,37.777794188,-122.43176322,37.7814296807", + "geom:latitude":37.779611, + "geom:longitude":-122.435346, + "iso:country":"US", + "lbl:latitude":37.778805, + "lbl:longitude":-122.43439, + "lbl:max_zoom":18.0, + "mps:latitude":37.779611, + "mps:longitude":-122.435346, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "mz:tier_metro":1, + "reversegeo:latitude":37.779611, + "reversegeo:longitude":-122.435346, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85856855, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7e804af0f934a56cd1fb476f0e3cbf3f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832081, + "neighbourhood_id":85856855, + "region_id":85688637 + } + ], + "wof:id":1108832081, + "wof:lastmodified":1566624120, + "wof:name":"Martin Luther King Square", + "wof:parent_id":85856855, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85832725 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4389267549999, + 37.77779418800009, + -122.43176321999994, + 37.78142968069945 +], + "geometry": {"coordinates":[[[-122.4389267549999,37.78058848600006],[-122.43233071984264,37.78142968069945],[-122.43176321999994,37.77863203700008],[-122.43836550099991,37.77779418800009],[-122.43874018299994,37.77965962900004],[-122.4389267549999,37.78058848600006]]],"type":"Polygon"} +},{ + "id": 1108832169, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":7054.775425, + "geom:bbox":"-73.9828529715,40.7795827093,-73.9815996594,40.7806499329", + "geom:latitude":40.780127, + "geom:longitude":-73.982173, + "iso:country":"US", + "lbl:latitude":40.778115, + "lbl:longitude":-73.982182, + "lbl:max_zoom":18.0, + "mps:latitude":40.78014, + "mps:longitude":-73.98218, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Ansonia" + ], + "name:ceb_x_preferred":[ + "Ansonia" + ], + "name:deu_x_preferred":[ + "Ansonia" + ], + "name:fra_x_preferred":[ + "Ansonia" + ], + "name:ita_x_preferred":[ + "Ansonia" + ], + "name:nld_x_preferred":[ + "Ansonia" + ], + "name:pol_x_preferred":[ + "Ansonia" + ], + "name:por_x_preferred":[ + "Ansonia" + ], + "name:srp_x_preferred":[ + "\u0410\u043d\u0441\u043e\u043d\u0438\u0458\u0430" + ], + "name:ukr_x_preferred":[ + "\u0410\u043d\u0441\u043e\u043d\u0456\u044f" + ], + "name:vol_x_preferred":[ + "Ansonia" + ], + "reversegeo:latitude":40.78014, + "reversegeo:longitude":-73.98218, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85853285, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"470cbc58cabbf4e523b501110bab8a80", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":1108832169, + "neighbourhood_id":85853285, + "region_id":85688543 + } + ], + "wof:id":1108832169, + "wof:lastmodified":1566624112, + "wof:name":"Ansonia", + "wof:parent_id":85853285, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869077 + ], + "wof:tags":[] +}, + "bbox": [ + -73.98285297152182, + 40.77958270925085, + -73.9815996593584, + 40.78064993291162 +], + "geometry": {"coordinates":[[[[-73.98285297152182,40.78001665680811],[-73.98238472664292,40.78064993291162],[-73.98159965935839,40.78031830160994],[-73.98182329870355,40.77958270925085],[-73.98285297152182,40.78001665680811]]]],"type":"MultiPolygon"} +},{ + "id": 1108832185, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":148186.743793, + "geom:bbox":"-122.452233044,37.761478202,-122.445838172,37.767220256", + "geom:latitude":37.763706, + "geom:longitude":-122.44833, + "iso:country":"US", + "lbl:latitude":37.764768, + "lbl:longitude":-122.445482, + "lbl:max_zoom":18.0, + "mps:latitude":37.764279, + "mps:longitude":-122.447312, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Ashbury Heights" + ], + "name:fin_x_preferred":[ + "Ashbury Heights" + ], + "name:ita_x_preferred":[ + "Ashbury Heights" + ], + "name:nld_x_preferred":[ + "Ashbury Heights" + ], + "name:swe_x_preferred":[ + "Ashbury Heights" + ], + "reversegeo:latitude":37.764279, + "reversegeo:longitude":-122.447312, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882171, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3d6182fa749d77845bf30fd0f296b09b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108832185, + "neighbourhood_id":85882171, + "region_id":85688637 + } + ], + "wof:id":1108832185, + "wof:lastmodified":1566624113, + "wof:name":"Ashbury Heights", + "wof:parent_id":85882171, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869089 + ], + "wof:tags":[] +}, + "bbox": [ + -122.4522330439999, + 37.76147820200001, + -122.44583817199991, + 37.76722025600008 +], + "geometry": {"coordinates":[[[-122.4522330439999,37.76284256000012],[-122.44812203023758,37.76335952319719],[-122.44844442308778,37.76504329933966],[-122.44765172671912,37.76514366700076],[-122.44801315999995,37.76700668000006],[-122.44636925899994,37.76722025600008],[-122.44596264999991,37.76521618500005],[-122.44583817199991,37.76457714700006],[-122.44607364799994,37.76418782200005],[-122.44610110999992,37.76414241500002],[-122.44641626399995,37.76380349400005],[-122.44650470599991,37.76370838100006],[-122.44659362399995,37.76360674900006],[-122.44674759799994,37.76334299600006],[-122.44699434299991,37.76272223400009],[-122.44683254699991,37.76184923600006],[-122.44678340399993,37.76178141300005],[-122.4519577689999,37.76147820200001],[-122.4522330439999,37.76284256000012]]],"type":"Polygon"} +},{ + "id": 1108832255, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":71616.022977, + "geom:bbox":"-122.428354064,37.758088756,-122.425782133,37.7614328628", + "geom:latitude":37.759761, + "geom:longitude":-122.427065, + "iso:country":"US", + "lbl:latitude":37.759759, + "lbl:longitude":-122.427066, + "lbl:max_zoom":18.0, + "mps:latitude":37.759759, + "mps:longitude":-122.427066, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Mission Dolores Park" + ], + "name:eng_x_variant":[ + "Mission-Dolores", + "Mission Dolores", + "Mission-Dolores Park" + ], + "name:fra_x_preferred":[ + "Dolores Park" + ], + "name:ita_x_preferred":[ + "Mission Dolores Park" + ], + "reversegeo:latitude":37.759759, + "reversegeo:longitude":-122.427066, + "src:geom":"mz", + "wof:belongsto":[ + 85865951, + 102191575, + 1108830809, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"29e95144d525d9c9990e60e76c0dacec", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830809, + "microhood_id":1108832255, + "neighbourhood_id":85865951, + "region_id":85688637 + } + ], + "wof:id":1108832255, + "wof:lastmodified":1566624119, + "wof:name":"Mission Dolores Park", + "wof:parent_id":85865951, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.4283540639999, + 37.75808875600004, + -122.42578213269523, + 37.76143286276525 +], + "geometry": {"coordinates":[[[-122.4283540639999,37.76128957200009],[-122.42607514240494,37.76143286276525],[-122.42578213269523,37.7582258578863],[-122.42805018599988,37.75808875600004],[-122.4283540639999,37.76128957200009]]],"type":"Polygon"} +},{ + "id": 1108833223, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":47745.23139, + "geom:bbox":"-122.426848658,37.8060369563,-122.420559965,37.810797668", + "geom:latitude":37.807343, + "geom:longitude":-122.423676, + "iso:country":"US", + "lbl:latitude":37.806913, + "lbl:longitude":-122.422333, + "lbl:max_zoom":18.0, + "mps:latitude":37.806913, + "mps:longitude":-122.422333, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_variant":[ + "Fort Mason" + ], + "reversegeo:latitude":37.806913, + "reversegeo:longitude":-122.422333, + "src:geom":"sfgov", + "wof:belongsto":[ + 1108831839, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"54a477150a3a2c252bda3e49cfe791e5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108833223, + "neighbourhood_id":1108831839, + "region_id":85688637 + } + ], + "wof:id":1108833223, + "wof:lastmodified":1566624116, + "wof:name":"Aquatic Park - Ft. Mason", + "wof:parent_id":1108831839, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.42684865799993, + 37.80603695631461, + -122.42055996499994, + 37.81079766800008 +], + "geometry": {"coordinates":[[[-122.42668243095036,37.80809020201065],[-122.42671753399992,37.80816884700005],[-122.42681590099994,37.80862391300008],[-122.42681099299995,37.80870159300008],[-122.42682666099989,37.80877599500008],[-122.42682627699992,37.80882358100007],[-122.42683007199992,37.80896979100004],[-122.42684865799993,37.80901893200007],[-122.4268239139999,37.80906603300008],[-122.42681714999991,37.80913893600007],[-122.42679496699992,37.80930577500004],[-122.42669468199995,37.80960900500008],[-122.42656271599992,37.80986076800008],[-122.42637427699992,37.81011943300007],[-122.42612348499989,37.81035966800005],[-122.4259034879999,37.81050900400004],[-122.42568023299992,37.81062237700007],[-122.42536057399991,37.81073266000004],[-122.42497818599992,37.81079766800008],[-122.42466508699994,37.81079265900007],[-122.42444428699991,37.81074347500004],[-122.4243116319999,37.81065445900003],[-122.4242867019999,37.81049350700005],[-122.42436568399989,37.81042118100004],[-122.42455534499993,37.81041190000008],[-122.42462592699991,37.81045462900005],[-122.42467258999994,37.81054863200006],[-122.42468788399992,37.81059404200005],[-122.42474861999995,37.81063060900004],[-122.4249031139999,37.81063492000004],[-122.42509045399993,37.81061863500008],[-122.42528291799994,37.81057935800004],[-122.42546086199991,37.81052554500008],[-122.42563116299993,37.81045471500005],[-122.42580586499992,37.81036110700006],[-122.42600027999993,37.81022423700006],[-122.42617988199993,37.81005282700005],[-122.42636515599992,37.80980580000005],[-122.42649969899992,37.80955209600006],[-122.4265768379999,37.80933098200006],[-122.42661855499995,37.80912382800005],[-122.42663209999989,37.80889465200005],[-122.42662977799989,37.80882909300004],[-122.42656919299992,37.80845626100006],[-122.42652144899989,37.80815076200008],[-122.42648716199994,37.80816368300009],[-122.42642142099993,37.80783169500006],[-122.42635615499989,37.80765146500005],[-122.42628937099994,37.80754611300006],[-122.42611698999991,37.80764095000006],[-122.42604390199995,37.80769296100004],[-122.42578890899989,37.80740595300006],[-122.4259339539999,37.80745852300004],[-122.42612151599991,37.80734833100007],[-122.42586528899994,37.80714718400009],[-122.42557513299994,37.80697268600005],[-122.4252597709999,37.80682744200004],[-122.42492444699991,37.80671342500005],[-122.4246021969999,37.80663627700005],[-122.4244284859999,37.80661301600009],[-122.42413577299993,37.80660680500006],[-122.42393201899989,37.80662661000008],[-122.42370644599993,37.80667286700009],[-122.4233998439999,37.80679873100007],[-122.42315539099991,37.80691808800009],[-122.42286717499991,37.80708554100005],[-122.42266961699994,37.80721099900006],[-122.42241092199993,37.80738209000009],[-122.42074326699992,37.80759010600008],[-122.42055996499994,37.80665773200008],[-122.42548118002593,37.80603695631461],[-122.42552319890591,37.80619238008077],[-122.42558392926513,37.80633492470069],[-122.42564445725307,37.8064837148673],[-122.42573335602891,37.80661475091685],[-122.42586632009584,37.80677846994232],[-122.42600297282678,37.80691443610017],[-122.42616042487337,37.80706042944253],[-122.42627623575424,37.80720180696639],[-122.42639681489676,37.80739008387452],[-122.42648031340968,37.80758849558094],[-122.42657697614401,37.80787843493859],[-122.426643999432,37.80801877008545],[-122.42668243095036,37.80809020201065]]],"type":"Polygon"} +},{ + "id": 1108797027, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000411, + "geom:area_square_m":3933593.763563, + "geom:bbox":"-76.5891173106,39.2065833462,-76.5499205961,39.2333850732", + "geom:latitude":39.219877, + "geom:longitude":-76.568204, + "iso:country":"US", + "lbl:latitude":39.220096, + "lbl:longitude":-76.56628, + "lbl:max_zoom":18.0, + "mps:latitude":39.220096, + "mps:longitude":-76.56628, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":16.0, + "mz:min_zoom":18.0, + "name:eng_x_preferred":[ + "Curtis Bay" + ], + "name:fra_x_preferred":[ + "Curtis Bay" + ], + "name:heb_x_preferred":[ + "\u05e7\u05e8\u05d8\u05d9\u05e1 \u05d1\u05d9\u05d9" + ], + "name:jpn_x_preferred":[ + "\u30ab\u30fc\u30c1\u30b9\u30fb\u30d9\u30a4" + ], + "reversegeo:latitude":39.220096, + "reversegeo:longitude":-76.56628, + "src:geom":"mz", + "src:geom_alt":[], + "wof:belongsto":[ + 1108797011, + 102191575, + 85633793, + 85949461, + 102081589, + 85688501 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5195683" + }, + "wof:country":"US", + "wof:geomhash":"250a51fe2ad64854dfd78b2f6c11f8fa", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102081589, + "locality_id":85949461, + "microhood_id":1108797027, + "neighbourhood_id":1108797011, + "region_id":85688501 + } + ], + "wof:id":1108797027, + "wof:lastmodified":1566624072, + "wof:name":"Curtis Bay", + "wof:parent_id":1108797011, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -76.58911731063931, + 39.20658334617436, + -76.54992059609643, + 39.23338507322001 +], + "geometry": {"coordinates":[[[[-76.5585811106795,39.23338507322001],[-76.54992059609643,39.2171388021647],[-76.5499235731062,39.21714063547613],[-76.5499360074933,39.21714776420995],[-76.54994852567614,39.21715519232335],[-76.5499602354584,39.21716209308025],[-76.54997102510113,39.21716819131394],[-76.54998417273954,39.21717551464426],[-76.54999580793675,39.21718194310188],[-76.55000371609013,39.21718609990767],[-76.55001499551422,39.21719238917952],[-76.55002635626889,39.21719918410067],[-76.55003679357746,39.2172073428667],[-76.55004565997159,39.21721396608116],[-76.55005556752597,39.21722129949976],[-76.55006626126533,39.21722864674115],[-76.55007682075042,39.21723488640601],[-76.55008807179452,39.21724072246864],[-76.55009756111339,39.21724589600704],[-76.55010793260359,39.21725238266333],[-76.55011609132478,39.21725811679013],[-76.5501250829236,39.21726453690172],[-76.55013223741815,39.21727122560942],[-76.55014144220797,39.21727579903361],[-76.55015066678699,39.21728035631887],[-76.55015957804007,39.21728501959539],[-76.55016945493115,39.21729043332069],[-76.55017844315823,39.21729574185051],[-76.5501864017475,39.21730071494539],[-76.55019498109513,39.21730476171304],[-76.55020515633569,39.21730877856558],[-76.55021387491918,39.21731314744458],[-76.55022226914342,39.21731863294991],[-76.55022962492679,39.21732462431716],[-76.55023894445135,39.21733101324853],[-76.55024740553304,39.21733654765044],[-76.55025707360643,39.21734202362272],[-76.55026622473135,39.21734611401227],[-76.55027559930342,39.21734948012817],[-76.5502890307469,39.21735423818419],[-76.55029844983682,39.21735770625713],[-76.55030848096796,39.21736217293924],[-76.550317151318,39.21736629751378],[-76.55032696370043,39.21737129571807],[-76.55033537799575,39.2173752598717],[-76.5503439998113,39.21737863751024],[-76.55035390208356,39.21738224164653],[-76.55036238302944,39.21738573854789],[-76.55037263525877,39.21739040154123],[-76.55038122051421,39.21739406728705],[-76.55039121347069,39.21739779787706],[-76.5504050025573,39.21740240325622],[-76.5504148219531,39.21740574674397],[-76.55042228374762,39.21740908119897],[-76.55042968974377,39.21741226681076],[-76.55043867399142,39.21741528281566],[-76.55044877421486,39.21741834993554],[-76.55045660622812,39.2174217380519],[-76.55046309094743,39.21742429949384],[-76.55047216429109,39.21742677807076],[-76.55048058492284,39.21742901183651],[-76.55048761337949,39.21743055747655],[-76.55049481797158,39.21743208397361],[-76.55050207093494,39.2174332863741],[-76.55050902827084,39.21743435973085],[-76.55051657433492,39.21743554163429],[-76.55052293222862,39.21743582090709],[-76.55053841355668,39.21743798352651],[-76.55055875944169,39.21743888836659],[-76.55059862454955,39.21743902932516],[-76.55066291487111,39.21745127932181],[-76.55087098974847,39.21748922137208],[-76.55089693207326,39.21749197796004],[-76.55090853988484,39.21749268715849],[-76.55093143423356,39.21749070747487],[-76.55096018223385,39.21748231410022],[-76.55120953738898,39.21739931331018],[-76.55148203143924,39.21730502805971],[-76.55150622956447,39.21729663697917],[-76.55154018056369,39.21728489172111],[-76.55162564054777,39.21725542581738],[-76.5516609763184,39.21724333541109],[-76.55185744665663,39.21717600026206],[-76.55193477106003,39.21715707373858],[-76.55200241953288,39.21713664645628],[-76.55205068999052,39.21712196061537],[-76.55209855341498,39.21710699666108],[-76.55215007039924,39.21709421210954],[-76.55219101421072,39.21708559293933],[-76.55227374606481,39.21706833976142],[-76.55228985679946,39.2170647053188],[-76.55230892109047,39.21706040745605],[-76.55233040233553,39.21705478385176],[-76.55235139516633,39.21704875212795],[-76.55237349630697,39.21704270030678],[-76.55239341238068,39.21703792736423],[-76.55241382435088,39.21703274195008],[-76.55243256425682,39.21702901662806],[-76.55245396071231,39.21702508434584],[-76.55247342935201,39.21702074926483],[-76.55249243092048,39.21701647815662],[-76.55251243479022,39.21701210367419],[-76.55253137496564,39.21700820254684],[-76.55255108596573,39.21700436290626],[-76.55257006119243,39.2169993089057],[-76.55259004312423,39.21699400381897],[-76.55260793145555,39.21698942938826],[-76.5526258754347,39.21698502811706],[-76.55264359879871,39.21698035396606],[-76.55266098096165,39.21697543169755],[-76.55267721557583,39.2169705077546],[-76.55269180382234,39.21696645849859],[-76.55271390233661,39.21696026337905],[-76.55273129417208,39.21695490696026],[-76.55274876659823,39.21694852125249],[-76.55276233547409,39.21694379071488],[-76.55277910091657,39.21693934079045],[-76.5527942271822,39.21693499181023],[-76.55280845702418,39.21692974673735],[-76.55282065641659,39.21692605407953],[-76.55283489676077,39.21692189898938],[-76.55284661316573,39.21691932686253],[-76.55285949124574,39.21691837426234],[-76.5528712378871,39.21691817220492],[-76.55288435538817,39.21691799969043],[-76.55289591181941,39.21691784554807],[-76.55290643060256,39.21691770726851],[-76.55291597808782,39.21691771391656],[-76.55293326227336,39.216920439772],[-76.55296238219067,39.21692922973531],[-76.55298224608268,39.2169360459516],[-76.55300106578753,39.21694152593105],[-76.5530182638433,39.21694634666409],[-76.55303874988994,39.21695182577806],[-76.55305667720175,39.21695558636058],[-76.55307560956334,39.21696119917195],[-76.55309210392397,39.21696670090746],[-76.55311237842662,39.21697322771281],[-76.55313169056798,39.21697847984708],[-76.55315049352785,39.21698331207664],[-76.55316947000726,39.2169881728881],[-76.55318796775794,39.21699384708114],[-76.55320822641536,39.21700013420151],[-76.55322331996874,39.21700558374459],[-76.55323844115657,39.21701105861279],[-76.55325301531184,39.21701660796297],[-76.55327054030845,39.21702247661171],[-76.55328606434502,39.217026316287],[-76.55330240738391,39.21703010683235],[-76.55332917398941,39.21703582869171],[-76.55334256422047,39.2170405339959],[-76.55335582858343,39.21704481545211],[-76.55336962749749,39.21704732530222],[-76.55338216948589,39.21705046992208],[-76.55339401587347,39.21705300746886],[-76.55340471621196,39.21705548930856],[-76.55341687472347,39.21705737497416],[-76.55342740375526,39.21705726731341],[-76.55343808469402,39.21705712600003],[-76.55344734699385,39.21705700270779],[-76.55345681254292,39.21705604696522],[-76.55346664095386,39.21705447286481],[-76.55347479532536,39.21705265098441],[-76.55350061803489,39.21704698063065],[-76.55351355878095,39.21704343034283],[-76.5535310280697,39.21703974595119],[-76.55355034412889,39.21703591004513],[-76.5535706999536,39.21703135296213],[-76.55359084017569,39.21702719860554],[-76.55360763034747,39.21702433583437],[-76.55362611211264,39.21702095433945],[-76.55364452151741,39.21701876790357],[-76.55366209508944,39.21701654495691],[-76.55367890525544,39.21701381646806],[-76.55369582631576,39.21701205223491],[-76.55371597441733,39.2170090373757],[-76.55373328234015,39.21700633599389],[-76.55375074525735,39.21700366222235],[-76.553766512705,39.21700064961279],[-76.55378447800445,39.2169972670298],[-76.55379933993797,39.21699461849172],[-76.55381647550163,39.21699133453739],[-76.55383709325497,39.21698710538779],[-76.55385125403194,39.21698436409922],[-76.55386671015549,39.21698150702863],[-76.55388232292314,39.21698062686646],[-76.5538967993098,39.21698036392172],[-76.55391081340512,39.21697885163533],[-76.55392550017595,39.21697606639738],[-76.5539395184969,39.21697277507987],[-76.55395680690604,39.21696875304503],[-76.55397162913432,39.21696560259883],[-76.55398902665165,39.21696282945735],[-76.55400576059536,39.21695932686059],[-76.55403120026592,39.21695397291043],[-76.55404811626794,39.21695061332304],[-76.55406422241641,39.21694769023721],[-76.55407966334965,39.21694503665758],[-76.55409600301388,39.21694254502837],[-76.55411257133571,39.21694070553081],[-76.55412773158206,39.21693830850191],[-76.55414315021999,39.21693588542931],[-76.55415846541619,39.21693407629473],[-76.55417747385955,39.21693201005363],[-76.55419460245599,39.21692927729599],[-76.55421051299301,39.21692762985466],[-76.55422782307873,39.21692513108404],[-76.55424248204086,39.2169223448001],[-76.55425946470019,39.21691906290268],[-76.55427424490756,39.21691596180165],[-76.55429071720758,39.21691263021987],[-76.55431217398852,39.21690736647311],[-76.55432753154084,39.21690397300252],[-76.5543430603683,39.21690022707386],[-76.55435697797638,39.21689674075525],[-76.55436936361558,39.21689324861754],[-76.55438545288612,39.21688950481156],[-76.55441499870602,39.21688396369433],[-76.55448804458069,39.21687167422001],[-76.55450082022337,39.2168702481406],[-76.55451663860792,39.21686815081789],[-76.55453234704159,39.21686659804863],[-76.5545473468718,39.21686503267888],[-76.55456548665926,39.21686317386057],[-76.55458188159199,39.21686091117209],[-76.55460157573629,39.21685807279277],[-76.55461603286976,39.21685589012065],[-76.55463325727493,39.21685356931993],[-76.55464983393438,39.21684984083913],[-76.55466664950843,39.2168451296091],[-76.55468285205625,39.21684196809716],[-76.55469906005342,39.21683904531082],[-76.55471645129279,39.21683781777912],[-76.55473374544439,39.21683619173095],[-76.55475316618018,39.21683207858356],[-76.55477165754483,39.21682862668384],[-76.55478792637061,39.21682615901074],[-76.55480757217762,39.21682216200828],[-76.5548239269755,39.21681891007556],[-76.55484246519215,39.21681481788669],[-76.55485926140224,39.21681152979061],[-76.55487436396284,39.21680872078934],[-76.55489248823666,39.21680600792071],[-76.55490876925863,39.21680325563019],[-76.55492520525814,39.2168005336509],[-76.55494379754859,39.21679797388072],[-76.55496220206311,39.21679378027834],[-76.55497756934048,39.21678974990701],[-76.55498974373569,39.21678577408385],[-76.55500174990854,39.21678258760711],[-76.55501687288836,39.21677984442203],[-76.55503686189581,39.21677799074131],[-76.55506044813066,39.21677475448459],[-76.55507169924076,39.21677324059172],[-76.55508549933509,39.21677223629545],[-76.55509889380204,39.21677110074723],[-76.55511493712274,39.21676913571089],[-76.55512967046397,39.21676611089106],[-76.55514295916157,39.21676337424786],[-76.55515759857929,39.21676073910691],[-76.55517888086337,39.21675632487831],[-76.5551936971287,39.21675300130531],[-76.55521149511435,39.21674987279115],[-76.55522736809039,39.21674792601024],[-76.55524543421926,39.2167454326575],[-76.5552618961424,39.21674208018228],[-76.55528062798322,39.21673849669892],[-76.55529898254005,39.21673487845391],[-76.55531457663605,39.21673086601288],[-76.55532937392289,39.21672890703499],[-76.55534793703954,39.21672637771687],[-76.55536849913807,39.21672379741891],[-76.55538683065532,39.2167205285762],[-76.55540181116071,39.21671815772536],[-76.55542074103099,39.21671567932818],[-76.55543703693894,39.21671220729628],[-76.55545068175222,39.21670825861447],[-76.55546520254326,39.21670440693064],[-76.55547571386609,39.21669694503787],[-76.55548422054289,39.21668784873921],[-76.55549256551227,39.21667979673412],[-76.55550378883586,39.21667087826947],[-76.55551436240309,39.21666253564457],[-76.55552389109168,39.21665351437568],[-76.55553202058258,39.21664436620109],[-76.55553747614165,39.21663506017047],[-76.55554260834718,39.21662598351504],[-76.55554731184426,39.21661768801493],[-76.55554916948753,39.21660969160538],[-76.55554888169046,39.21659517441892],[-76.55554828814968,39.21658806410284],[-76.55554482649654,39.21657888914203],[-76.55554074497449,39.21657236103228],[-76.55553599283519,39.21656641228745],[-76.55553329135782,39.21656270074385],[-76.55552885753777,39.21655547679665],[-76.55552869816984,39.21654819247243],[-76.55552856657398,39.21654220627976],[-76.55552840431862,39.21653482826321],[-76.5555282744523,39.21652893575838],[-76.5555272009629,39.21652394856827],[-76.55552418793583,39.21651710112416],[-76.55552410225569,39.21651099440056],[-76.55552612442821,39.21650538748737],[-76.55552732815903,39.21649918656149],[-76.55552939996467,39.21649360505805],[-76.55553622949608,39.2164873434685],[-76.55554849855373,39.21647378002558],[-76.55555321105972,39.21646866882234],[-76.55555817333897,39.21646472327564],[-76.55556219740554,39.21646063365349],[-76.55556203431711,39.21645745868116],[-76.5555584544353,39.21645533369099],[-76.55555681325401,39.2164540925037],[-76.55555557159461,39.21645173766176],[-76.5555555337166,39.2164476137397],[-76.55555555126658,39.2164420343643],[-76.55555776604761,39.21643729022799],[-76.55556264793708,39.21643212742049],[-76.55556777985763,39.21642475864458],[-76.5555753901415,39.21641567515803],[-76.55558204799101,39.21640705466899],[-76.55558979743098,39.21639645839524],[-76.55559592272157,39.21638485970583],[-76.5556017759512,39.21637288075669],[-76.55560947164494,39.21635791908977],[-76.55561909572137,39.21633272103487],[-76.55563828846944,39.21629117579377],[-76.55571163063357,39.21615754867677],[-76.55577922133246,39.21606198839586],[-76.55583044411605,39.21599715034155],[-76.55590396751546,39.21588924470631],[-76.55596445479297,39.21580405245404],[-76.55601289083684,39.21574186107871],[-76.55606226789841,39.21568138743041],[-76.55611556182663,39.21562283282938],[-76.55615263609174,39.21557929955001],[-76.55618035619408,39.21553875570707],[-76.55622270861589,39.21548405915938],[-76.5562554851699,39.21543688484739],[-76.5563026812021,39.21538311277176],[-76.55635484382523,39.21533431195216],[-76.55638951117319,39.21530604225406],[-76.55644407057154,39.21528024021151],[-76.55650197834714,39.21525987530693],[-76.556556506234,39.21524671016298],[-76.55661839849483,39.21523709577686],[-76.5566797011917,39.21520765832484],[-76.5567395031828,39.21517784224846],[-76.55680551557853,39.21515668629397],[-76.55686745668504,39.21514200956654],[-76.55693777474994,39.21513061175353],[-76.5570122690722,39.2151150149048],[-76.55708638868832,39.21510230810468],[-76.55715865877202,39.21509409998961],[-76.55723541966256,39.21508862913566],[-76.55730348711776,39.21507974300001],[-76.55737523089677,39.21506939340914],[-76.55753304771278,39.21505765866029],[-76.55760938856274,39.215057333947],[-76.55768288194298,39.21505720743276],[-76.55776003452735,39.21505688027636],[-76.5578347321773,39.21505675280068],[-76.55790350768565,39.21505706146487],[-76.55797587356066,39.21506301980526],[-76.55805937542131,39.21506879304275],[-76.55813473727044,39.21507376630307],[-76.55819837183792,39.21507848908527],[-76.55824122606249,39.21508132213552],[-76.55828600031315,39.21508413177064],[-76.55830035527288,39.21508917703555],[-76.55830516048046,39.21510132234886],[-76.55832377275317,39.21516639192319],[-76.55835574728739,39.21521553191229],[-76.55838816613773,39.21525505051126],[-76.55841059047158,39.21527580603848],[-76.55842712752917,39.21528971418434],[-76.55843095370054,39.21529823196232],[-76.55842549706193,39.21530276127886],[-76.55841228449088,39.21530989349442],[-76.55839719981999,39.21532125864373],[-76.55838670446735,39.21534653111771],[-76.55838670770427,39.21537152061958],[-76.55841313648668,39.21549130875517],[-76.55844856508459,39.21563659584476],[-76.55846329480772,39.21568232720742],[-76.55848716529223,39.21571225631477],[-76.55851731325519,39.21573973728844],[-76.55853259238938,39.21576248185743],[-76.55854561554068,39.21580110592558],[-76.55855852237963,39.21584093299867],[-76.55856852571583,39.21588568543166],[-76.55856918527071,39.21592432334021],[-76.5585657105315,39.21595240294786],[-76.55857004932399,39.21597942830658],[-76.55858711935991,39.21600132746389],[-76.55860898680972,39.21601969288098],[-76.55862914645535,39.21602498783427],[-76.55864323038294,39.2160151736423],[-76.55866830844832,39.21596727791394],[-76.55867853056081,39.21594162516244],[-76.55867944937856,39.21591414576876],[-76.55866385602843,39.21583294921489],[-76.55864206005866,39.21573098702819],[-76.5586259555765,39.21567074613064],[-76.55861220316613,39.21561680153335],[-76.55861176682626,39.21561509110916],[-76.55859919128267,39.21556742217865],[-76.55859097066548,39.21553058351235],[-76.55858232373531,39.21549712928029],[-76.55858380224215,39.21548337630062],[-76.55860202553008,39.21546521482455],[-76.55863833967393,39.21543286831733],[-76.55867555543163,39.21541344240058],[-76.55872718857202,39.21539722702611],[-76.55877283136307,39.21538198176746],[-76.55882107341709,39.21536529690513],[-76.55885915844001,39.2153483378364],[-76.55889432752276,39.21532712331069],[-76.55892180346876,39.21529709633528],[-76.55894199603181,39.21526518096376],[-76.5589674180238,39.2152367847797],[-76.5589963930836,39.21521147811259],[-76.5590271545574,39.21518901381238],[-76.55907028638332,39.21517326267145],[-76.55911322160541,39.21516716715747],[-76.55916453131049,39.21515991946029],[-76.55921393578427,39.21514975055505],[-76.5592576786609,39.21514822408515],[-76.55930710893901,39.21514807463408],[-76.55935090684605,39.21514794274642],[-76.55939332261462,39.21515091064791],[-76.55943255307568,39.21516616404917],[-76.55947186134512,39.21518698366013],[-76.55951205371662,39.21521275276929],[-76.55956355232364,39.21523777791688],[-76.55961556300363,39.21525249731705],[-76.55966947549791,39.2152596761795],[-76.55971693204145,39.2152678513811],[-76.55975939037283,39.21527984424238],[-76.55979297860711,39.21530177096516],[-76.55982479945513,39.21533421938615],[-76.55985094623324,39.21536781032635],[-76.55988031950119,39.21541198493593],[-76.55991747831243,39.21547512406762],[-76.55994430284396,39.21551596161367],[-76.55997077842477,39.21555574843386],[-76.55999670985499,39.21560001099306],[-76.56000645917095,39.21563749754642],[-76.56000777744521,39.21567535243473],[-76.56000790495824,39.21570093421169],[-76.56000519784905,39.21572482450176],[-76.55999653547734,39.21574215458935],[-76.55998550652627,39.21574878532589],[-76.55992993164942,39.21575342854118],[-76.55987839426572,39.21576484633835],[-76.55981193193934,39.2157799995198],[-76.55977424907938,39.21578886958355],[-76.55973754635181,39.21580307413817],[-76.55970526821675,39.21581689803755],[-76.55966977599664,39.21583681626689],[-76.55964585062483,39.21585430614523],[-76.55962565984454,39.21587176679573],[-76.55962499751762,39.21588184585846],[-76.55968172865121,39.21590196150605],[-76.55974337714299,39.21591189061905],[-76.55978970300217,39.21591050695545],[-76.55985821554098,39.21590274698487],[-76.55992481745325,39.21589124606952],[-76.55997482814806,39.21588459396779],[-76.5600322101412,39.21587667685955],[-76.56008378963664,39.21586931176933],[-76.5601337660015,39.21586034536325],[-76.5601867917955,39.21585204072907],[-76.56023482115253,39.21584277332808],[-76.56027615377315,39.21583092709849],[-76.56031350996332,39.21581496379614],[-76.56033738456975,39.21579143024798],[-76.5603778813804,39.21576008523414],[-76.56038752370611,39.21573726402183],[-76.56038739661601,39.21571626812703],[-76.56036968617414,39.21569448663652],[-76.56033888020968,39.21568788649713],[-76.56029296749016,39.21568802704476],[-76.5602667358833,39.21568753060784],[-76.56024526879322,39.21567570487286],[-76.56021673068513,39.21564078091373],[-76.56019554128876,39.21560132202948],[-76.5601869778322,39.21555987559601],[-76.56018500904868,39.21551523268217],[-76.56018469006922,39.21547605739062],[-76.56018925404385,39.215440269323],[-76.5602097778457,39.21539573052195],[-76.56022812638766,39.21535428045272],[-76.56023526257589,39.21531150384811],[-76.56024130138147,39.21527521326288],[-76.56025544617945,39.21523830539076],[-76.56027448123008,39.21520621971031],[-76.56030333576614,39.21518141220435],[-76.56033434113573,39.21516848685512],[-76.56036780723284,39.21516620714785],[-76.56040671914033,39.21516673665163],[-76.56044280502068,39.21517747042248],[-76.56047575455749,39.21519429252955],[-76.5605104947353,39.21521590898846],[-76.56054482620559,39.21524425725003],[-76.56056315386314,39.21525236445888],[-76.56059014521709,39.21525786661692],[-76.56060134399793,39.21525838866619],[-76.56061574714664,39.21525680047051],[-76.56063396680291,39.2152481157912],[-76.56064786080616,39.21523917080226],[-76.56066371321911,39.21522530766892],[-76.56067767603209,39.21521104111536],[-76.56069427326241,39.21519694746375],[-76.56071355519808,39.21518144873154],[-76.56073382091735,39.21516733547785],[-76.56076236149691,39.21515038690598],[-76.56078457330626,39.21514008312752],[-76.5608007046317,39.21512941969551],[-76.560816979065,39.21511789655024],[-76.56083354131357,39.21510795355027],[-76.56085420778551,39.2151026171916],[-76.56087987664191,39.21510157916245],[-76.56090775845202,39.21510220774724],[-76.56093297793608,39.21510249487658],[-76.56096110551475,39.21509596045079],[-76.56098604253663,39.21508705673629],[-76.56103467187641,39.21507784890294],[-76.56108394464943,39.21505989596415],[-76.56111169616329,39.2150450693002],[-76.56113789847521,39.21503190598467],[-76.56116261854909,39.2150153790058],[-76.56117571974802,39.21499773304047],[-76.5611890626258,39.21498313802452],[-76.56121136937381,39.21496700826358],[-76.56123994378996,39.21495036146374],[-76.56126841492053,39.21493618601605],[-76.56130063243904,39.21492418734409],[-76.56133058294878,39.21492301929638],[-76.56135968107748,39.21491474899355],[-76.56138516500555,39.21490539414519],[-76.56141117915226,39.21489587012449],[-76.56144023441026,39.21488478830142],[-76.56147041610127,39.21487261983386],[-76.56150174050748,39.21486160322448],[-76.56154549003833,39.21485089696073],[-76.56158031829328,39.21484289212454],[-76.56161451010895,39.21482768855451],[-76.56164438018691,39.21480408885764],[-76.56167694175683,39.21477741402858],[-76.56170974428386,39.21475559620519],[-76.56174794697985,39.21473216272042],[-76.56179379275632,39.21470711563897],[-76.56183106989997,39.21468898607733],[-76.5618725671315,39.21467038853996],[-76.56191089629115,39.2146544067415],[-76.56195145574327,39.21464234805384],[-76.56198642283134,39.21463828093287],[-76.56201909503667,39.2146341881215],[-76.56205334415492,39.21462505770855],[-76.5620904962319,39.21461442300351],[-76.56213634051818,39.21460629967189],[-76.5621767331215,39.21460138438467],[-76.56221312768419,39.21459923308037],[-76.56224715382081,39.21459132954473],[-76.56227870727014,39.21458669742337],[-76.56230944946948,39.21458537083942],[-76.56233801368965,39.21458402711667],[-76.56236951758878,39.21458405182822],[-76.56240140006454,39.21458502736714],[-76.56243089357531,39.21458583725341],[-76.56246169255181,39.21458675919273],[-76.5624920178762,39.21458769016748],[-76.56252400159666,39.21458651678507],[-76.56256128533212,39.21457987108398],[-76.56259886696792,39.21457166993046],[-76.56264005358189,39.21455645970559],[-76.56267497765609,39.21453868051826],[-76.56270826191304,39.21452055111123],[-76.56273752550423,39.21450547747836],[-76.5627713026643,39.21448872088001],[-76.56280102518765,39.21447470826067],[-76.56283023060895,39.21445816791503],[-76.56285694028196,39.2144416894269],[-76.56288622131663,39.21442772198195],[-76.56292131768639,39.21441729824679],[-76.56295743450326,39.21441265591641],[-76.56299395143047,39.21441186320503],[-76.56302950595321,39.21441655356085],[-76.56306101993584,39.21442565440246],[-76.56309290348111,39.21443566820273],[-76.56312033458097,39.21444232441846],[-76.56314535612591,39.21444726918],[-76.56317553453387,39.21445720454739],[-76.56320341733374,39.21446874105936],[-76.56323027285464,39.21448294546003],[-76.56325542541096,39.21450048181384],[-76.5632784085205,39.21451360346381],[-76.56330469478903,39.21452642122696],[-76.56333296609239,39.21453843386553],[-76.56336224145828,39.21455005028609],[-76.56339244438513,39.2145605297606],[-76.56342325939701,39.21456920273455],[-76.56345631723015,39.21458222671284],[-76.56348946588128,39.21459988103787],[-76.56352348793598,39.21461861683781],[-76.56356293739545,39.21464241989335],[-76.5635910898246,39.21466003579026],[-76.56361824203745,39.21468006385745],[-76.56364557582815,39.21470144917075],[-76.56367697877378,39.21472771292794],[-76.56370337666903,39.21474858400425],[-76.56372989990146,39.21477110847493],[-76.56375673361363,39.21478965263837],[-76.56378696233439,39.21480689247272],[-76.56381810707799,39.21482110367272],[-76.56385215544405,39.21483200447403],[-76.56388374822161,39.21484340598188],[-76.5639146968059,39.21486580723497],[-76.56393663499,39.21488620859142],[-76.563950628296,39.21490815679014],[-76.5639550966,39.2149293111364],[-76.56395455537735,39.21494918757534],[-76.5639492731837,39.2149677997158],[-76.56393648063619,39.21498545524231],[-76.56392475638029,39.21499904140247],[-76.56391157748155,39.21500946401527],[-76.56389471472384,39.21501844789978],[-76.56386311481501,39.2150272373901],[-76.56383297076866,39.21502956286925],[-76.56380523546031,39.21503128836569],[-76.5637754178956,39.21503663896764],[-76.56374665726258,39.21504184486224],[-76.56372236470418,39.21504278684669],[-76.56369557118249,39.2150397380726],[-76.56366915891267,39.21502891606342],[-76.56364896637092,39.21502104561697],[-76.56362803443818,39.21502081464923],[-76.56360479973496,39.21502956581618],[-76.5635900990918,39.21504698450984],[-76.56359024889596,39.2150638729216],[-76.56359251851369,39.21507422954173],[-76.56358429377308,39.21508117550871],[-76.56356393779748,39.21508557759006],[-76.5635410413593,39.21509034404355],[-76.56352009080267,39.21509540057571],[-76.5635003226873,39.21510231170793],[-76.56347446637614,39.21511143502895],[-76.5634466068352,39.21512149581205],[-76.56341792988202,39.21513530620384],[-76.56339152750628,39.21515056179812],[-76.56337088003605,39.21516564332948],[-76.56335679671331,39.21517775328194],[-76.56335428174577,39.21518677696235],[-76.56336056015739,39.21519543791861],[-76.56337978399209,39.21520191220162],[-76.56340225856125,39.21520776172316],[-76.56342954828908,39.21521241580116],[-76.56345366666925,39.21521382336854],[-76.56348549965197,39.21521479842747],[-76.56351341312653,39.21521556072717],[-76.56441226642191,39.21504211770218],[-76.56442008527986,39.21504242957003],[-76.56444030263043,39.21504173894691],[-76.564480073803,39.21503752947576],[-76.56452893709277,39.21502861111603],[-76.5645717000213,39.21502049521659],[-76.56461533271809,39.21501197537522],[-76.56466605477175,39.21500168655965],[-76.56471310697883,39.21499333610338],[-76.5647607803303,39.21498452673185],[-76.56481195285272,39.21497479350475],[-76.56485857943615,39.21496616667338],[-76.56490838036594,39.21495746962184],[-76.56495224879802,39.2149486379582],[-76.56499151550828,39.21493962347607],[-76.56503510014629,39.21492929182885],[-76.56507208730808,39.21492020131181],[-76.56510933810526,39.21491192696757],[-76.56513470257072,39.21490006398882],[-76.56514685190911,39.21489190198896],[-76.56516111147258,39.21488366583613],[-76.56517819805694,39.21487440515867],[-76.56519534956001,39.21486721201309],[-76.56521353366389,39.2148636582455],[-76.56523663999387,39.21486145947139],[-76.56525681010189,39.21486204494034],[-76.56527567673064,39.21486635391224],[-76.56528550945562,39.21486927824336],[-76.56531350662537,39.21487223833262],[-76.56534174170368,39.21487246362257],[-76.56536998848136,39.21487153414704],[-76.56539799148688,39.21486900037058],[-76.56542586051752,39.21486546352135],[-76.56545371007537,39.2148617022988],[-76.56548164558211,39.21485846564281],[-76.56550971283541,39.21485527090391],[-76.56553785983789,39.2148517215456],[-76.56556603332081,39.21484819659969],[-76.56559417537348,39.2148450768824],[-76.5656222304126,39.21484274141707],[-76.56565014285546,39.21484156922711],[-76.56567782677823,39.21484216712135],[-76.56570494861342,39.21484719927835],[-76.56573173789421,39.2148551090964],[-76.56575859311067,39.2148630308625],[-76.56578613312908,39.2148674700322],[-76.56581431968323,39.21486976052115],[-76.56584278153881,39.21487588664912],[-76.56587053572466,39.21488071482824],[-76.56589453096393,39.214876115027],[-76.5659134852485,39.21485794521561],[-76.56593654470224,39.2148452250012],[-76.56596097059186,39.21483400873688],[-76.56598644287266,39.21482456006791],[-76.56601344234089,39.21481854361458],[-76.56604105001634,39.21481380581174],[-76.5660689152822,39.21480973913643],[-76.56609672437048,39.21480576953125],[-76.56612457899411,39.21480173793387],[-76.56615252301209,39.21479823632],[-76.56618051645768,39.21479593112014],[-76.56620865907627,39.2147959333668],[-76.56623686782214,39.21479837967157],[-76.56626473589395,39.21480200293275],[-76.56629236210918,39.21480692872436],[-76.56631945970761,39.21481271100074],[-76.56634532632467,39.21482116314243],[-76.56637301843874,39.21482610807494],[-76.56640058655657,39.21482443179805],[-76.56642814882227,39.21482029996248],[-76.56645571400355,39.21481493135809],[-76.56648326000656,39.21480909967464],[-76.56651076241214,39.21480358039489],[-76.56653815587916,39.21479826518372],[-76.56656546758842,39.21479268483441],[-76.56659282825366,39.21478724067758],[-76.56662028637012,39.21478195541182],[-76.56664833930937,39.2147801439485],[-76.56667641402619,39.21478254371279],[-76.56670438521623,39.21478577991421],[-76.56673252060943,39.21478696563553],[-76.56676074769736,39.21478697706944],[-76.5667890070836,39.21478662920392],[-76.56681726042581,39.2147865128102],[-76.56684549064946,39.21478695931281],[-76.5668737229737,39.21478763101178],[-76.56690194237893,39.21478852244697],[-76.56693013022881,39.21478965156525],[-76.5669580652258,39.21479274885219],[-76.56698615315652,39.21479507292543],[-76.56701424000801,39.21479738437702],[-76.56704215118334,39.21480059145137],[-76.56706992714554,39.2148045150424],[-76.56709762669237,39.21480881757393],[-76.56712527291192,39.21481332077649],[-76.56715281870811,39.21481815238738],[-76.56718023067134,39.21482347442413],[-76.56720780652104,39.21482812597658],[-76.56723604977715,39.21483061720733],[-76.56726425077963,39.21483301189188],[-76.56729117382478,39.21483875997093],[-76.56731718749634,39.21484704309318],[-76.5673427433684,39.21485653517214],[-76.56736796976772,39.21486669981538],[-76.5673929973198,39.21487700334126],[-76.56741764621287,39.21488769009962],[-76.56744179623276,39.21489910554764],[-76.5674656650953,39.21491086585446],[-76.56748864854434,39.21492370022769],[-76.56751196985488,39.21493600798357],[-76.56753728428507,39.21494560632288],[-76.56756324912422,39.21495431347825],[-76.56758919392313,39.21496308000549],[-76.56761451584264,39.2149727828463],[-76.56763941569091,39.21498315250631],[-76.56766459728667,39.21499308271686],[-76.5676901155673,39.21500248900671],[-76.56771545379685,39.21501218017541],[-76.56774061541638,39.21502216164046],[-76.56776547557475,39.21503258967806],[-76.56779035613457,39.21504328171446],[-76.56781197295024,39.21505712617084],[-76.56783167138626,39.21507281916802],[-76.5678506151897,39.21508921739706],[-76.56786935452251,39.21510572746767],[-76.56788770950676,39.21512241447463],[-76.56790539364917,39.21513954759769],[-76.56792227813536,39.2151571732034],[-76.56793950219003,39.21517456225051],[-76.56795918134901,39.21519038847026],[-76.56797945816614,39.21520580973368],[-76.56799701809584,39.215222810871],[-76.56801194112707,39.21524137686455],[-76.56802560917006,39.21526066786932],[-76.56803876390575,39.2152802055986],[-76.56805138528011,39.21529986026618],[-76.56806298532616,39.21531989940977],[-76.56807714854796,39.21533888416341],[-76.56809209069571,39.21535755110393],[-76.56810773917115,39.21537584231372],[-76.56812453808264,39.21539346667311],[-76.56814259999595,39.21541038406061],[-76.56816085974036,39.21542714183416],[-76.56817945081721,39.21544368463646],[-76.56819795937767,39.21546027847666],[-76.56821591116899,39.21547722066911],[-76.56823333522691,39.21549449690848],[-76.5682505977224,39.21551187433901],[-76.56826773119801,39.21552933326337],[-76.56828476936492,39.21554685218681],[-76.56830174246082,39.21556440960185],[-76.56831868534401,39.21558198581962],[-76.56833562709403,39.21559955932828],[-76.56835252587759,39.21561715429516],[-76.56836921666101,39.21563487009985],[-76.56838580750934,39.21565264498609],[-76.56840254006057,39.21567035013006],[-76.56841948392739,39.21568796326822],[-76.56843363256043,39.21570689928046],[-76.56844627505026,39.2157265395677],[-76.56845865502797,39.21574631490613],[-76.56847176412614,39.21576577494843],[-76.56848543053344,39.21578499112518],[-76.56849926062711,39.21580414034348],[-76.56851321959276,39.21582323508626],[-76.56852727260475,39.21584228963782],[-76.5685413860065,39.2158613164854],[-76.56855552265661,39.21588032990493],[-76.56856969988024,39.21589933716633],[-76.56858417207516,39.21591820588918],[-76.56859924481796,39.21593676604832],[-76.56861481467313,39.21595527038277],[-76.56863256842486,39.21597225411711],[-76.56865352454196,39.21598685264078],[-76.56867617681682,39.21600016026997],[-76.56869959586027,39.2160124834566],[-76.56872462608639,39.21602263537163],[-76.56874970964488,39.21603277756866],[-76.56877370180973,39.2160443533965],[-76.56879739626912,39.2160563298739],[-76.56882076311371,39.21606867446299],[-76.56884339590474,39.21608176760186],[-76.56886505667872,39.21609589576592],[-76.56888806466669,39.21610860744244],[-76.56891178584854,39.21612057588755],[-76.56893536145409,39.21613268251328],[-76.56895792927807,39.21614580241448],[-76.56897872389713,39.2161607002459],[-76.56899969562495,39.21617541856778],[-76.56902283666824,39.21618796586318],[-76.56904641228776,39.21620007697024],[-76.56906714542831,39.21621499798012],[-76.56908759343933,39.21623015574554],[-76.56910724925632,39.21624591141951],[-76.56912640601374,39.21626204628811],[-76.56914530338955,39.21627837296835],[-76.5691639891435,39.21629484479507],[-76.56918255748408,39.21631139365478],[-76.56920109788972,39.21632796763077],[-76.569219522029,39.21634462044569],[-76.56923773344846,39.21636140849471],[-76.56925563453674,39.21637838816885],[-76.56927303928531,39.21639568039099],[-76.56928983488737,39.21641336491687],[-76.56930635733227,39.21643122138762],[-76.56932296004409,39.21644901869897],[-76.56933999646355,39.21646652304408],[-76.56935781886804,39.21648350151244],[-76.5693764335663,39.2165000595182],[-76.5693956125964,39.21651636196827],[-76.56941540583747,39.2165322036673],[-76.56943586895824,39.21654737944117],[-76.56945705300076,39.2165616831979],[-76.56948048075407,39.21657357748585],[-76.56950679282716,39.21658225665304],[-76.56953363428703,39.2165893767027],[-76.56956162072559,39.21659405622623],[-76.56958648799058,39.21660325523138],[-76.56960742598035,39.21661823274309],[-76.56962769261204,39.21663374105118],[-76.5696475216313,39.21664942520478],[-76.56966739382545,39.21666505636717],[-76.569688182409,39.21667985316006],[-76.56971027709538,39.21669351975413],[-76.56973331164623,39.21670629981836],[-76.56975694247917,39.21671832901118],[-76.56978152865926,39.21672920960275],[-76.56980648225803,39.21673965285562],[-76.569830756415,39.21675081423731],[-76.5698535391911,39.21676368253197],[-76.56987517488413,39.21677800408139],[-76.56989567834209,39.21679323937281],[-76.56991204154843,39.21681046912916],[-76.56992714343535,39.21682870313532],[-76.56994617617342,39.21684510494372],[-76.56996696797074,39.21685996295094],[-76.56998923298389,39.21687343915004],[-76.57001240948053,39.21688612599733],[-76.57003623573627,39.21689802703732],[-76.57006083180123,39.21690863106586],[-76.57008778909875,39.2169157739314],[-76.57011239530276,39.2169262356628],[-76.57013579719701,39.21693842247694],[-76.57015898879784,39.21695091748389],[-76.57018200637812,39.21696365866276],[-76.5702048873632,39.21697658489772],[-76.57022766686791,39.21698963416339],[-76.57025038115407,39.21700274624041],[-76.57027306534188,39.21701585820274],[-76.57029565654203,39.21702902927166],[-76.57031795177191,39.21704250641879],[-76.57034007687542,39.2170561603925],[-76.57036218450369,39.2170698332144],[-76.57038442265963,39.2170833695912],[-76.5704069381663,39.21709661782836],[-76.57042969140794,39.21710961831581],[-76.57045258448967,39.2171224742849],[-76.57047556731973,39.21713523509526],[-76.57049859326933,39.2171479519205],[-76.57052161455725,39.21716067502959],[-76.57054457992291,39.21717345557943],[-76.5705674823587,39.21718630345296],[-76.57059039296838,39.21719914144328],[-76.57061331173564,39.21721197225261],[-76.57063622585753,39.21722480664358],[-76.57065912948987,39.21723765360251],[-76.57068201215655,39.21725052209896],[-76.57070486452866,39.21726342290816],[-76.57072767728802,39.2172763650038],[-76.5707504422691,39.21728935826471],[-76.57077315597627,39.21730240628122],[-76.57079583938889,39.21731548661057],[-76.57081849950917,39.21732859027053],[-76.57084113982732,39.21734171457164],[-76.57086376383356,39.21735485682421],[-76.57088637502355,39.21736801343802],[-76.57090897457152,39.21738118171496],[-76.57093156713118,39.21739435806894],[-76.57095415504565,39.21740753800464],[-76.5709767417996,39.21742071973321],[-76.57099933088332,39.21743390056512],[-76.57102192348736,39.21744707509997],[-76.57104452541252,39.21746024155744],[-76.57106713783833,39.21747339633873],[-76.57108976426062,39.2174865358535],[-76.57111240701147,39.21749965740783],[-76.57113507074456,39.2175127574157],[-76.57115775779214,39.21752583318322],[-76.57118047165523,39.21753888021926],[-76.57120321466066,39.21755189673078],[-76.57122599497937,39.21756487193824],[-76.57124883007323,39.21757779059214],[-76.57127171179845,39.21759065896817],[-76.57129463431625,39.2176034851519],[-76.57131758948275,39.21761627541921],[-76.57134056913243,39.21762903964875],[-76.57136356626857,39.21764178592193],[-76.57138657390529,39.21765452051874],[-76.57140958504047,39.21766725242144],[-76.57143259036691,39.21767998880217],[-76.57145558404044,39.21769273864751],[-76.57147855790639,39.2177055100347],[-76.57150150382091,39.21771830923942],[-76.5715244159345,39.21773114614896],[-76.57154728494538,39.21774402703481],[-76.57157010616737,39.21775696088777],[-76.57159287263092,39.21776995128548],[-76.5716156018034,39.21778298207769],[-76.5716382971913,39.21779604787256],[-76.57166096344827,39.21780914508396],[-76.57168360523872,39.21782226832422],[-76.5717062248949,39.21783541489956],[-76.57172882707054,39.21784858122387],[-76.57175141411945,39.21786176100023],[-76.57177399300579,39.21787495155171],[-76.57179656490925,39.21788814927957],[-76.57181913449433,39.21790134879612],[-76.57184170641459,39.2179145465152],[-76.57186428300773,39.21792773884222],[-76.57188686892728,39.21794092219105],[-76.5719094688431,39.21795409027322],[-76.5719320850821,39.21796724129568],[-76.5719547223086,39.21798036987075],[-76.57197738401833,39.21799347240801],[-76.5720000655467,39.21800655429519],[-76.57202275989711,39.2180196236137],[-76.57204546591701,39.21803267945861],[-76.57206818475348,39.2180457236356],[-76.57209091409602,39.21805875523555],[-76.5721136550972,39.21807177516337],[-76.57213640659893,39.2180847834148],[-76.57215916859046,39.21809778179146],[-76.57218193992466,39.21811076848751],[-76.57220472174858,39.21812374530872],[-76.57222751174636,39.21813671224664],[-76.57225031107043,39.21814967020624],[-76.57227312205853,39.21816261559293],[-76.57229595635546,39.21817553763975],[-76.57231881746766,39.2181884309548],[-76.57234170422625,39.21820129733539],[-76.57236461547328,39.21821413677723],[-76.57238755005082,39.21822694927612],[-76.57241050795341,39.21823973573283],[-76.57243348802298,39.21825249614309],[-76.57245697139089,39.21826571417728],[-76.57248203770745,39.21825758947659],[-76.57250970490875,39.21825099926622],[-76.57253679161026,39.21825427588545],[-76.57256308501891,39.21826314255487],[-76.5725869016154,39.21827525651902],[-76.57260866431285,39.21828903844989],[-76.57262986493416,39.2183034731971],[-76.57265067723205,39.21831835961891],[-76.57267127495902,39.21833349657328],[-76.57269183072046,39.21834868111255],[-76.57272099455834,39.21836972323732],[-76.57274461566602,39.21838181213606],[-76.57276834540018,39.21839374739194],[-76.57279302945071,39.21840431602999],[-76.5728184330044,39.21841385949137],[-76.57284417412419,39.21842292135765],[-76.57287001806269,39.21843183226133],[-76.57289573818944,39.21844092106318],[-76.57292130034914,39.2184502831217],[-76.57294682263513,39.21845972970287],[-76.5729724035147,39.21846906209253],[-76.57299813797546,39.2184780824646],[-76.57302412682715,39.21848658760941],[-76.57305078269229,39.21849374490528],[-76.57307792738548,39.21849991491649],[-76.57310496768041,39.21850630793516],[-76.5731317763174,39.21851328921532],[-76.57315859088493,39.2185202479914],[-76.57318560967518,39.21852656074372],[-76.57321302135769,39.21853185613603],[-76.57324081312818,39.21853633769794],[-76.57326879057668,39.21853940480248],[-76.57329697155903,39.21854059091023],[-76.57332564497743,39.21853999525652],[-76.57335352508038,39.21853671508857],[-76.57337974013045,39.21852916817012],[-76.57340371936523,39.2185167534085],[-76.57342418236138,39.21850172891109],[-76.57344358006932,39.21848553402744],[-76.57346154351636,39.21846828992322],[-76.57347730000265,39.2184500487383],[-76.57349032843454,39.21843080948047],[-76.57350130223622,39.21841066107297],[-76.57351108887903,39.21838996788177],[-76.57352054534145,39.21836910594466],[-76.57353052977018,39.21834844950165],[-76.57354207278961,39.21832838332792],[-76.57355540617743,39.21830887763878],[-76.573568263084,39.21828926842851],[-76.57357823323532,39.2182688641477],[-76.57358620607637,39.21824784097878],[-76.57359358157136,39.21822659404682],[-76.57360033740567,39.21820517551604],[-76.57360644894327,39.21818363844314],[-76.57361189272238,39.21816203318665],[-76.57361664757556,39.2181404137166],[-76.57362013018367,39.2181187283708],[-76.57362047314641,39.21809671003903],[-76.57361865331819,39.21807463430628],[-76.57361591527022,39.21805273989719],[-76.57361211490031,39.21803072632823],[-76.5736055083857,39.21800934572048],[-76.5735948643929,39.2179892412606],[-76.57358162277055,39.21796975790732],[-76.57356638024758,39.21795102844121],[-76.57354957195631,39.21793329134796],[-76.57353212042861,39.21791603293147],[-76.57351454292898,39.21789873442012],[-76.57349679034684,39.21788147490405],[-76.57347881240823,39.21786433436996],[-76.57346056000789,39.21784739100713],[-76.57344198171383,39.21783072479798],[-76.57342302957323,39.21781441483677],[-76.57340365216479,39.21779853930421],[-76.57338380037233,39.21778317819113],[-76.57336305125128,39.21776876323502],[-76.57333919082943,39.21775739691508],[-76.57331325466819,39.21774806241023],[-76.57328693400387,39.21773912284494],[-76.57326160316445,39.21772926357294],[-76.57323633229176,39.2177194468502],[-76.57321110579684,39.2177095690303],[-76.57318624254876,39.21769917457722],[-76.57316170167819,39.21768832009168],[-76.57313722387579,39.2176773775539],[-76.57311279630655,39.21766636313122],[-76.57308840844591,39.2176552939002],[-76.57306404630101,39.21764418602409],[-76.57303969935261,39.21763305567859],[-76.5730153570708,39.21762192084106],[-76.57299100546248,39.21761079767467],[-76.57296663400852,39.21759970235512],[-76.57294223103176,39.21758865105396],[-76.57291778484962,39.21757766084355],[-76.57289307007379,39.21756704707748],[-76.57286805285219,39.21755685467145],[-76.57284320156921,39.21754641334783],[-76.57281826285036,39.21753607078648],[-76.5727934478419,39.21752556923194],[-76.57276899922597,39.21751460600473],[-76.5727450757159,39.2175029772057],[-76.57272148375732,39.21749090372246],[-76.57269817649012,39.21747847546265],[-76.5726751280382,39.21746575899003],[-76.57265231254172,39.2174528181659],[-76.57262974642904,39.2174396170191],[-76.57260749971456,39.2174260666274],[-76.57258562107074,39.21741216086286],[-76.57256415916439,39.21739789449818],[-76.57254306865087,39.21738329799497],[-76.57252228443519,39.21736841255225],[-76.57250182612133,39.21735325175331],[-76.57248171448744,39.21733782648337],[-76.57246197152935,39.21732213772346],[-76.57244261260961,39.21730613418532],[-76.57242366315447,39.21728982406879],[-76.57240515432022,39.21727322550315],[-76.57238719634051,39.21725630105749],[-76.57237040071412,39.217238652113],[-76.57235405265052,39.21722071564629],[-76.57233712810628,39.21720313288472],[-76.57231933885072,39.21718607842994],[-76.57230126137283,39.21716919857413],[-76.57228293871782,39.21715246014518],[-76.57226520399864,39.21713539146813],[-76.57224956666107,39.21711712428777],[-76.57223470781419,39.21709841946113],[-76.5722195690021,39.21707986404234],[-76.57220431643624,39.21706135504738],[-76.57218966062922,39.21704258880094],[-76.57217614497326,39.21702332317268],[-76.57216357804747,39.21700361691655],[-76.57215212280227,39.21698352377314],[-76.57214191570165,39.21696307306521],[-76.57213266348433,39.2169423132668],[-76.57212410030579,39.21692135510568],[-76.57211597534797,39.21690031386824],[-76.5721083617839,39.21687915288933],[-76.57210157492297,39.21685781566877],[-76.57209582772964,39.21683631919731],[-76.57209079680936,39.21681471634272],[-76.57208617390275,39.21679304651618],[-76.57208180019681,39.21677133796373],[-76.57207752035794,39.21674961804307],[-76.57207316863659,39.21672791317323],[-76.5720686895057,39.21670621414402],[-76.57206444096646,39.21668448983269],[-76.572060848159,39.21666271296461],[-76.5720581034321,39.21664086262264],[-76.57205586623482,39.21661895648123],[-76.57205413758346,39.21659701796443],[-76.57205294051164,39.2165750678743],[-76.57205229230662,39.21655311978557],[-76.57205215022162,39.21653115732834],[-76.57205242969367,39.21650918559886],[-76.57205304033755,39.21648721507694],[-76.57205389755258,39.2164652571642],[-76.57205505341875,39.21644331655445],[-76.57205661103619,39.21642138641744],[-76.57205840830882,39.2163994634597],[-76.57206028315167,39.21637754258623],[-76.57206208156913,39.21635562143388],[-76.57206427934511,39.21633372335645],[-76.57206703852584,39.21631185975416],[-76.57206971672501,39.21628998324544],[-76.57207246205054,39.21626811238602],[-76.5720754191417,39.21624626481812],[-76.57207873842204,39.21622445910587],[-76.57208257378309,39.21620271472685],[-76.57208722727832,39.21618106070657],[-76.57209256697251,39.21615948485375],[-76.57209830237444,39.21613796088715],[-76.57210414297705,39.216116465228],[-76.57211048093029,39.21609506416234],[-76.57211726887235,39.21607373860097],[-76.57212358137581,39.21605233203687],[-76.57212907140737,39.21603078555484],[-76.57213466554677,39.21600925656685],[-76.57214103823019,39.21598785382403],[-76.57214748261495,39.21596646575463],[-76.57215300031997,39.21594493648677],[-76.57215730325898,39.21592322533582],[-76.5721616999284,39.21590152443489],[-76.57216688103964,39.21587993178493],[-76.57217225192402,39.21585836054448],[-76.57217796405374,39.21583684729693],[-76.57218418279575,39.21581542867635],[-76.57219103076038,39.21579412674839],[-76.57219833677384,39.21577290756004],[-76.57220583594049,39.21575172510648],[-76.5722132772604,39.21573053343366],[-76.57222098924962,39.21570938958757],[-76.57222883309737,39.2156882696418],[-76.57223623734451,39.21566707873282],[-76.57224242817696,39.21564567441906],[-76.57224582574057,39.21562373927163],[-76.57225005551939,39.21560205487227],[-76.57226035931008,39.21558181854897],[-76.57227374123237,39.21556230235878],[-76.57228152989853,39.21554130291234],[-76.57228705734671,39.21551968179172],[-76.57229376886056,39.21549833882379],[-76.57230071512591,39.21547704715464],[-76.57230775159694,39.21545577382937],[-76.57231488174192,39.21543451976141],[-76.57232211132326,39.21541328947556],[-76.57233128251198,39.21539229686512],[-76.57232142983543,39.2153716681994],[-76.57229554293347,39.21536335782753],[-76.5722903262773,39.21534260823619],[-76.57229353250437,39.21532071382425],[-76.57229937081429,39.21529900105434],[-76.57231435084559,39.21528579615119],[-76.57234349452092,39.21528515471416],[-76.57236652842815,39.21527246917961],[-76.57236989129491,39.2152512869532],[-76.57235985269203,39.21523038377483],[-76.57236171155991,39.21520936451373],[-76.57237069287915,39.21518816763069],[-76.57237818371333,39.21516700404919],[-76.57238307312566,39.21514537429156],[-76.57238789087401,39.21512372265373],[-76.5723935960023,39.21510219765613],[-76.57239962510637,39.21508071347296],[-76.57240654689602,39.21505943611876],[-76.57241511214502,39.21503848723192],[-76.5724257802345,39.21501811259768],[-76.57244045027667,39.21499945231772],[-76.57245697860991,39.21498159509682],[-76.57247319155485,39.2149636151191],[-76.57248737371491,39.21494463057588],[-76.57250272463365,39.2149261565277],[-76.57251835620291,39.21490780240293],[-76.57253338476222,39.21488920827321],[-76.57254692896227,39.2148700151197],[-76.57255871856685,39.21485010305557],[-76.57256935417603,39.21482972648761],[-76.57257948024912,39.21480916340254],[-76.57258966729565,39.21478866539486],[-76.5725995953371,39.21476810428895],[-76.57260922631973,39.21474745382363],[-76.57261871394832,39.21472676410175],[-76.5726282467626,39.21470606913883],[-76.57263721414782,39.21468523970106],[-76.57264303220181,39.21466378806367],[-76.57264986599566,39.21464249055538],[-76.57265911279772,39.21462159997922],[-76.57266713648748,39.21460057073181],[-76.5726712298854,39.21457900471839],[-76.57267203748626,39.21455698175343],[-76.57267143149781,39.2145349167087],[-76.57266800653187,39.21451313685471],[-76.57266592536351,39.21449125920493],[-76.57266541377881,39.21446928548245],[-76.57266295869401,39.21444739205825],[-76.57266006345291,39.21442552225277],[-76.57265911954177,39.21440361811726],[-76.57266246095269,39.21438174670194],[-76.57267291920554,39.21436177032422],[-76.57269289341615,39.21434601813114],[-76.57271748203955,39.21433603062268],[-76.57274474069951,39.2143303027172],[-76.57277199141777,39.21432454685224],[-76.57279924783442,39.21431880541422],[-76.57282652128477,39.21431311897956],[-76.57285382542,39.21430752813307],[-76.57288117273339,39.21430207345538],[-76.57290858708066,39.21429683159976],[-76.57293607986244,39.21429183233334],[-76.5729636192317,39.21428698005739],[-76.57299117337379,39.21428217376859],[-76.57302181358446,39.21427675986535],[-76.57303580038388,39.2142740435557],[-76.5730501665906,39.21427158534752],[-76.57306426525012,39.2142689451071],[-76.57307745287602,39.21426568361454],[-76.5730882600333,39.21426084069605],[-76.57308888815096,39.21424900491171],[-76.57309813724719,39.21424080091328],[-76.57310828192895,39.21423251279629],[-76.57311735178503,39.21422388297546],[-76.573118088359,39.21421403741158],[-76.57311239114523,39.21420328117339],[-76.57310750612234,39.2141928305521],[-76.57310282247919,39.21418239687721],[-76.57309741560432,39.21417226953908],[-76.57309045549405,39.21416279502128],[-76.57308150907457,39.21415416721759],[-76.57307129603231,39.21414666978966],[-76.57305924462403,39.21414083482041],[-76.57304708330227,39.21413517780476],[-76.57303579565421,39.21412865201022],[-76.57302518148572,39.21412142875785],[-76.57301468849442,39.21411408073676],[-76.57300428171025,39.21410664655344],[-76.57299392847895,39.21409916482254],[-76.57298359732042,39.21409167146093],[-76.57297331500196,39.2140841440464],[-76.57296312465301,39.21407653499448],[-76.57295298203495,39.21406888377864],[-76.5729428417295,39.21406123347113],[-76.57293265834001,39.21405362354106],[-76.57292238761687,39.21404609526336],[-76.57291198414727,39.21403869080945],[-76.5729009774508,39.21403185525455],[-76.57288924760786,39.21402569715659],[-76.57287810508869,39.21401891965596],[-76.57286716756555,39.21401194292691],[-76.57285505807802,39.21400633742423],[-76.57284207271631,39.21400177453938],[-76.57282866536215,39.21400018359657],[-76.57281560601093,39.21400387880417],[-76.57280249453325,39.21399987754343],[-76.57278989619026,39.21399488548811],[-76.57277745889151,39.21398968593721],[-76.5727650403161,39.21398445402496],[-76.5727525539393,39.2139793290576],[-76.57274005937765,39.21397421757077],[-76.57272758352305,39.21396907642492],[-76.57271476857237,39.21396448351978],[-76.57270954167026,39.21395505582465],[-76.57271212057968,39.2139442450275],[-76.57271467742309,39.2139334449593],[-76.57271724815517,39.21392264584233],[-76.57271983045464,39.21391184856901],[-76.57272251573613,39.21390106338071],[-76.57272453281725,39.21389009830538],[-76.57272857269311,39.21388184474129],[-76.57273821905973,39.21387785697368],[-76.57274272314568,39.21386712074382],[-76.57274628560911,39.21385622975409],[-76.57274902060918,39.21384545555539],[-76.57275133342441,39.21383460505468],[-76.5727536994536,39.21382376285466],[-76.57275603318546,39.21381289981898],[-76.57275819785234,39.21380203796924],[-76.57276004277003,39.21379120287956],[-76.57274993446208,39.21378382560788],[-76.57274911022057,39.21377359153001],[-76.57275204794348,39.2137626099886],[-76.57275435139476,39.21375177566753],[-76.57275633665063,39.21374090235507],[-76.57275824785454,39.21373001976514],[-76.57276000861225,39.21371912311567],[-76.57276154716126,39.21370820764149],[-76.57276287276474,39.21369727337637],[-76.57276404675358,39.213686326849],[-76.57276505287929,39.21367537430579],[-76.57276570595413,39.21366440246148],[-76.57276654308579,39.21365343939429],[-76.57276678070372,39.21365051181848],[-76.57276743231716,39.21364247741754],[-76.57276844192626,39.21363152308527],[-76.57276974320601,39.21362058963206],[-76.57277139288239,39.21360967906593],[-76.5727727890601,39.21359875406518],[-76.57277343633268,39.21358778400106],[-76.57277389839584,39.2135768042548],[-76.57277429100124,39.21356582155328],[-76.57277485837307,39.21355485209896],[-76.57277645930714,39.21354395937075],[-76.57277684268675,39.21353297033011],[-76.57277724458177,39.21352198315836],[-76.57277829689971,39.21351105059991],[-76.57278052747274,39.21350020250057],[-76.57278335160102,39.21348943042619],[-76.57279285553233,39.21348312532498],[-76.57280682922099,39.2134846814021],[-76.57282050512475,39.2134876181925],[-76.57283429973951,39.21349006989215],[-76.57284815435767,39.21349217140455],[-76.57286201490147,39.21349425041731],[-76.57287588019155,39.2134963105293],[-76.57288975137475,39.21349835354624],[-76.57290362495581,39.21350038305853],[-76.57291750206555,39.21350240357424],[-76.57293138037193,39.21350441778719],[-76.57294525985316,39.21350642930037],[-76.57295913933524,39.21350844081195],[-76.57297301763307,39.21351045682148],[-76.5729868935672,39.2135124809278],[-76.57300076712673,39.21351451493243],[-76.57301463712676,39.21351656333496],[-76.57302850239849,39.21351862793271],[-76.57304236528481,39.21352070423032],[-76.57305622697614,39.2135227868274],[-76.5730700863092,39.21352487662052],[-76.57308394328938,39.21352697270889],[-76.5730978002487,39.21352907239869],[-76.5731116560293,39.21353117568567],[-76.57312551179443,39.21353328167329],[-76.57313936639713,39.21353538855584],[-76.5731532209952,39.21353749633749],[-76.57316707675744,39.21353960322102],[-76.57318093253126,39.21354170830131],[-76.5731947883168,39.21354381157852],[-76.57320864528268,39.2135459112552],[-76.57322250224398,39.213548011831],[-76.57323635804821,39.21355011240095],[-76.57325021500573,39.21355221387427],[-76.57326407080072,39.21355431624249],[-76.57327792659117,39.21355641950981],[-76.57329178238244,39.21355852277552],[-76.5733056381745,39.21356062603962],[-76.57331949396199,39.21356273020277],[-76.57333334975573,39.21356483346356],[-76.57334720554482,39.21356693762348],[-76.57336106133479,39.21356904178176],[-76.57337491712559,39.21357114593841],[-76.57338877292254,39.21357324919265],[-76.57340262871499,39.21357535334603],[-76.57341648567153,39.21357745660119],[-76.57343034147641,39.21357955894977],[-76.57344419728207,39.21358166129672],[-76.5734580542465,39.21358376364621],[-76.57347191006467,39.21358586418832],[-76.57348576704153,39.21358796473307],[-76.57349962401923,39.21359006527612],[-76.57351348100856,39.21359216401605],[-76.57352733800414,39.21359426185352],[-76.57354119500592,39.21359635878862],[-76.57355505317183,39.21359845482556],[-76.57356891134935,39.21360054905929],[-76.57358276953317,39.21360264239064],[-76.57359662888103,39.21360473482383],[-76.57361048708266,39.21360682544962],[-76.57362434761173,39.21360891428065],[-76.57363820937522,39.21361099050361],[-76.57365207704257,39.21361304782998],[-76.57366594826554,39.21361509165583],[-76.5736798207121,39.21361712467516],[-76.57369369550224,39.21361915319744],[-76.57370757030947,39.2136211790158],[-76.57372144510119,39.21362320753481],[-76.5737353175455,39.2136252414483],[-76.57374919114309,39.21362727626517],[-76.5737630635836,39.21362931107613],[-76.57377693601948,39.21363134678627],[-76.57379080961945,39.21363338159817],[-76.57380468206233,39.21363541640427],[-76.57381855450602,39.21363745120868],[-76.57383242810837,39.21363948601569],[-76.57384630055364,39.21364152081681],[-76.57386017300512,39.21364355471554],[-76.57387404660986,39.21364558951766],[-76.57388791905751,39.21364762431386],[-76.57390179266926,39.21364965821188],[-76.57391566512391,39.21365169210405],[-76.57392953873723,39.21365372599882],[-76.57394341119347,39.21365575988772],[-76.57395728480837,39.21365779377916],[-76.5739711584295,39.21365982676825],[-76.57398503089352,39.21366185975145],[-76.57399890451623,39.2136638927372],[-76.57401277813973,39.21366592572134],[-76.57402665061153,39.21366795779888],[-76.57404052423661,39.21366999077974],[-76.5740543978679,39.21367202285818],[-76.57406827150544,39.21367405403424],[-76.57408214514371,39.21367608520863],[-76.57409601878278,39.21367811638137],[-76.57410989242263,39.21368014755249],[-76.57412376722662,39.21368217782542],[-76.57413764087347,39.21368420809249],[-76.5741515299465,39.21368617625998],[-76.57416535508339,39.21368780009526],[-76.57417316803746,39.21368019522445],[-76.57417683859808,39.21366958382607],[-76.57418007077867,39.21365889336958],[-76.57418268173416,39.21364810607667],[-76.57418513420808,39.21363729298677],[-76.57418748719932,39.21362646332165],[-76.57418979508043,39.21361562538581],[-76.57419210989737,39.21360478927656],[-76.57419448602816,39.21359396239759],[-76.57419728672839,39.2135832001138],[-76.57419966861477,39.2135723786602],[-76.57419474354479,39.21356298725654],[-76.57418073652708,39.21356176811629],[-76.57416676881486,39.21356017349107],[-76.57415286904788,39.21355825482939],[-76.57413897047195,39.21355633076574],[-76.5741250730817,39.21355440220078],[-76.57411117571924,39.21355246913041],[-76.57409727953701,39.2135505324595],[-76.57408338453509,39.21354859218814],[-76.57406948955007,39.21354664921282],[-76.57405559573996,39.21354470353781],[-76.57404170194141,39.21354275605956],[-76.57402780931231,39.21354080678241],[-76.57401391553145,39.21353885659865],[-76.57400002292009,39.21353690461588],[-76.57398613030409,39.21353495353222],[-76.57397223769426,39.21353300154623],[-76.57395834507984,39.21353105045928],[-76.57394445246072,39.21352910027147],[-76.57393055866822,39.21352715278008],[-76.57391666250129,39.21352521518703],[-76.57390276513938,39.21352328389346],[-76.57388886658794,39.21352135799862],[-76.57387496686309,39.21351943480023],[-76.57386106712819,39.21351751340168],[-76.57384716740489,39.2135155902],[-76.5738332688618,39.21351366339777],[-76.57381937034656,39.21351173209013],[-76.57380547535436,39.21350979268662],[-76.57379158157491,39.213507844278],[-76.57377769134015,39.21350588417047],[-76.5737638035031,39.21350391055824],[-76.57374992039567,39.21350192074753],[-76.57373604202337,39.21349991383751],[-76.57372216724985,39.21349788622094],[-76.5737082983964,39.21349583700546],[-76.57369443545763,39.21349376709184],[-76.57368057611227,39.21349167737247],[-76.57366672149668,39.21348957145456],[-76.57365287044746,39.21348745023464],[-76.57363902179061,39.21348531641089],[-76.5736251766786,39.2134831708882],[-76.57361133393732,39.21348101636465],[-76.57359749239801,39.2134788546376],[-76.57358365320782,39.21347668751275],[-76.57356981404546,39.21347451588246],[-76.57355597605269,39.21347234245322],[-76.57354213689743,39.21347016991891],[-76.57352829773767,39.21346799828374],[-76.57351445855166,39.21346583115071],[-76.57350061701825,39.21346366941224],[-76.57348677312667,39.21346151486977],[-76.57347292801848,39.21345937022986],[-76.57345907936711,39.2134572372856],[-76.57344522832501,39.21345511694195],[-76.57343137256565,39.21345301099202],[-76.5734175132414,39.21345092034079],[-76.57340365388552,39.21344883509249],[-76.57338979101887,39.21344675613526],[-76.57337592812058,39.21344468258093],[-76.57336206403814,39.21344261352461],[-76.57334819876615,39.21344054986694],[-76.57333433232081,39.21343848890574],[-76.57332046469679,39.21343643154176],[-76.57330659589398,39.21343437777499],[-76.57329272707575,39.21343232670883],[-76.57327885824208,39.21343027834334],[-76.57326498824051,39.21342823177347],[-76.5732511170764,39.21342618609854],[-76.57323724706018,39.21342414222774],[-76.57322337588684,39.21342209835109],[-76.57320950586681,39.2134200553777],[-76.57319563468965,39.21341801239853],[-76.57318176351875,39.21341596851695],[-76.57316789351735,39.21341392283639],[-76.57315402351671,39.2134118771542],[-76.57314015353316,39.21340982876807],[-76.57312628471911,39.21340777858298],[-76.57311241592213,39.213405725694],[-76.57309854830004,39.21340367010528],[-76.57308468186378,39.21340161001535],[-76.57307081660242,39.21339954722567],[-76.57305695136898,39.21339747993057],[-76.5730430873267,39.21339540723343],[-76.5730292256281,39.21339333003933],[-76.57301536514238,39.21339124384014],[-76.57300150939193,39.2133891405417],[-76.57298765605019,39.21338702193712],[-76.57297380625879,39.21338489073283],[-76.57295995999607,39.21338275053197],[-76.5729461137775,39.21338060312335],[-76.57293226873935,39.21337845211429],[-76.57291842487072,39.21337629930625],[-76.57290458099753,39.21337414739737],[-76.57289073594021,39.21337199998644],[-76.5728768896825,39.21336985977574],[-76.57286304105564,39.21336772856263],[-76.57284919004343,39.21336560904932],[-76.57283533546619,39.21336350483468],[-76.57282147731321,39.21336141772028],[-76.57280752969105,39.21335976715761],[-76.57279587718631,39.21335636392059],[-76.57279661241506,39.21334540048132],[-76.57279735574892,39.21333443707152],[-76.57279810372485,39.21332347187701],[-76.57279885749007,39.21331250670353],[-76.57279961704452,39.21330154155113],[-76.57280038123572,39.21329057551475],[-76.57280115005825,39.21327960949523],[-76.5728019211963,39.21326864348406],[-76.57280269581325,39.21325767658475],[-76.57280347274572,39.21324670969383],[-76.57280425199369,39.21323574281134],[-76.57280503355729,39.21322477593721],[-76.57280581512057,39.21321380906308],[-76.57280659668363,39.21320284218888],[-76.57280737824651,39.21319187531463],[-76.57280815980366,39.2131809093411],[-76.57280894020271,39.21316994336331],[-76.5728097182857,39.21315897737709],[-76.57281049984212,39.21314801140344],[-76.57281142377545,39.21313705315436],[-76.57281251207993,39.21312610361061],[-76.57281363742578,39.21311515600323],[-76.5728147801287,39.21310421026058],[-76.57281592515253,39.21309326362555],[-76.57281705164974,39.21308231692304],[-76.57281815616301,39.21307136743808],[-76.5728193301438,39.21306041910679],[-76.57282055390803,39.21304947185744],[-76.57282177651942,39.21303852370307],[-76.57282294470966,39.21302757535055],[-76.57282400754804,39.21301662391215],[-76.57282491177718,39.21300566829314],[-76.57282560644471,39.21299470920892],[-76.57282577201723,39.21298373828998],[-76.57282529388038,39.21297275241682],[-76.57282462818769,39.21296176225771],[-76.57282423339196,39.21295078119176],[-76.5728245309311,39.21293981615779],[-76.57282531714145,39.21292884569645],[-76.57282644606964,39.21291787918498],[-76.57282792220606,39.21290694006013],[-76.57282974655135,39.21289605444811],[-76.57283237024731,39.21288529605376],[-76.57283627006051,39.21287471345317],[-76.57283977192307,39.21286406905146],[-76.57284173046632,39.21285320284407],[-76.57284331189076,39.21284227671303],[-76.57284529131813,39.21283140337529],[-76.5728479677373,39.21281784644331],[-76.57284716309648,39.2128068557781],[-76.57283811815768,39.21279846990357],[-76.57283003455666,39.21278946148447],[-76.57282350475917,39.21277950929718],[-76.5728143354421,39.21277158957291],[-76.57280286016072,39.21276530447908],[-76.57279078351921,39.21275947208965],[-76.57277841431643,39.21275396021289],[-76.57276596218338,39.21274876060419],[-76.57275260335186,39.21274491787345],[-76.5727398868563,39.21274035595373],[-76.57272904958219,39.21273330300716],[-76.57271979612312,39.21272493708202],[-76.57271119553714,39.21271621772453],[-76.57270302042379,39.21270721977263],[-76.57269542473811,39.2126979509931],[-76.57268861715892,39.2126883689085],[-76.57268260021846,39.21267843749693],[-76.57267688749032,39.21266836667088],[-76.57267097628363,39.2126583752913],[-76.5726645531628,39.21264859643323],[-76.57265788631406,39.21263891217007],[-76.57265126009054,39.21262921184039],[-76.57264495185464,39.21261939196358],[-76.5726388653286,39.21260948101409],[-76.57263286818338,39.21259953345776],[-76.57262699288833,39.21258954130571],[-76.57262127189659,39.21257949927157],[-76.57261573998251,39.21256940117651],[-76.5726105340957,39.21255919437317],[-76.57260579110975,39.21254883882497],[-76.57260145748026,39.21253838117764],[-76.57259767220675,39.21252781292961],[-76.57259451886767,39.21251709925487],[-76.57259122871558,39.21250641570833],[-76.57258702954569,39.21249593512972],[-76.57258263560401,39.21248549527742],[-76.57257926794776,39.21247479973796],[-76.57257460003353,39.2124644777906],[-76.57256877006151,39.2124544614792],[-76.57256231924919,39.21244467170463],[-76.57255545678153,39.21243478945118],[-76.57254798327376,39.2124250445927],[-76.57253844988438,39.21241856567144],[-76.57252351886511,39.21242065784357],[-76.57251031970965,39.21241992426464],[-76.57250181533098,39.21241139080244],[-76.5724945273346,39.21240141421454],[-76.57248760388215,39.21239185511551],[-76.57248104851985,39.21238212440696],[-76.57247457096486,39.21237235614862],[-76.5724679749774,39.21236264240616],[-76.57246143356919,39.2123529027394],[-76.57245463671953,39.21234328014403],[-76.57244736382998,39.21233387380295],[-76.5724398958877,39.21232455502731],[-76.572432296744,39.21231529612552],[-76.57242461282785,39.21230607835031],[-76.57241688939949,39.21229688475168],[-76.57240885003306,39.21228785574515],[-76.57240071308706,39.21227887952859],[-76.5723931197048,39.21226962695058],[-76.57238587939787,39.21226019640309],[-76.57237878539198,39.21225069882961],[-76.57237190266902,39.21224111104662],[-76.57236513140766,39.21223147322565],[-76.57235847742434,39.21222178088391],[-76.57235146580855,39.21221225478387],[-76.57234390032643,39.21220298609004],[-76.57233613744897,39.21219380945688],[-76.57232841754504,39.212184611361],[-76.57232095311853,39.21217529078856],[-76.5723135619329,39.21216592184035],[-76.57230627410925,39.21215650192376],[-76.57229924745457,39.21214697576557],[-76.57229263978142,39.21213728719177],[-76.57228669017023,39.21212734429326],[-76.5722812164279,39.21211721396475],[-76.57227583555022,39.21210704524078],[-76.57227018079764,39.21209697820741],[-76.57226427190294,39.21208700482946],[-76.57225828642761,39.2120770581955],[-76.5722523485352,39.21206709371902],[-76.57224640957341,39.21205711482578],[-76.57224031415409,39.21204715968297],[-76.57223494700301,39.21203702073278],[-76.57223089960546,39.21202653889146],[-76.57222755748622,39.21201584523492],[-76.57222485992565,39.21200502421537],[-76.57222280646768,39.21199415149686],[-76.57222143287584,39.21198324882857],[-76.57222062584121,39.21197228877399],[-76.57222012699566,39.21196129741476],[-76.57221968028705,39.21195030084083],[-76.57221903199519,39.21193932244844],[-76.57221824236201,39.21192835705244],[-76.57221741102953,39.21191739420675],[-76.57221651484033,39.21190643382697],[-76.57221568703078,39.21189546288697],[-76.57221491949036,39.21188448225811],[-76.57221408822402,39.21187350860313],[-76.57221307272656,39.21186255589522],[-76.57221174901387,39.21185163899576],[-76.57221002039496,39.21184066297006],[-76.57220708102288,39.21182981224295],[-76.57220151810139,39.21181988335981],[-76.57219416246636,39.21181058028965],[-76.57218590528163,39.21180158740431],[-76.57217731019362,39.21179275362558],[-76.57216885158957,39.21178394466497],[-76.57216037660385,39.21177516446898],[-76.57215184585806,39.21176641469563],[-76.57214327095811,39.21175769088334],[-76.57213466120481,39.2117489867605],[-76.57212602705704,39.2117402960598],[-76.57211738012596,39.21173161341883],[-76.57210873087587,39.21172293166959],[-76.5721000897601,39.21171424544534],[-76.57209146606873,39.21170555027622],[-76.57208282611508,39.2116968640549],[-76.57207415364014,39.21168819482919],[-76.57206545792857,39.21167953902983],[-76.57205674827588,39.21167089128599],[-76.57204803398299,39.21166224532612],[-76.5720393231767,39.2116535975767],[-76.57203062630492,39.21164494357195],[-76.57202195151071,39.21163627703616],[-76.57201330808404,39.21162759349919],[-76.57200470531508,39.21161888849106],[-76.5719961525047,39.21161015574027],[-76.5719876589375,39.21160139167757],[-76.571979233909,39.21159259093213],[-76.57197151403521,39.21158340632266],[-76.57196451555865,39.21157383250394],[-76.57195721033291,39.2115644359206],[-76.57194877121188,39.21155566935121],[-76.57193950372378,39.21154736636445],[-76.5719300293074,39.21153920044176],[-76.57192049428791,39.21153110005432],[-76.57191082323597,39.21152309285113],[-76.57190122542475,39.21151503727205],[-76.57189190663232,39.21150679534745],[-76.57188290173559,39.21149834378432],[-76.57187408285928,39.21148976678962],[-76.57186535349895,39.21148113066918],[-76.57185661599767,39.21147250082385],[-76.57184783547838,39.21146390054675],[-76.57183909447517,39.21145527609196],[-76.57183037207047,39.21144663999421],[-76.57182164037786,39.21143800836582],[-76.57181287496817,39.21142940003405],[-76.57180404679714,39.211420831107],[-76.57179513028314,39.21141231950693],[-76.57178587568224,39.21140399763819],[-76.57177634223001,39.21139583509031],[-76.57176684472797,39.21138766366503],[-76.5717577002933,39.21137931517263],[-76.57174923185414,39.21137061784142],[-76.57174298176405,39.21136079542177],[-76.57173764923181,39.2113505043406],[-76.57173028661774,39.21134122463467],[-76.57172167665593,39.21133257182396],[-76.57171260330315,39.21132415062393],[-76.57170332208719,39.21131582955204],[-76.57169408854662,39.2113074753245],[-76.57168515704589,39.21129895735553],[-76.57167651020076,39.2112902782841],[-76.5716679865526,39.21128152309522],[-76.57165951752697,39.2112727347761],[-76.57165103107033,39.21126395720214],[-76.57164245745579,39.21125523245551],[-76.57163371998764,39.2112466061961],[-76.57162479312785,39.21123808914005],[-76.5716157651833,39.21122963026512],[-76.57160673257685,39.21122117677718],[-76.57159778942651,39.21121267407204],[-76.57158903216046,39.21120406845486],[-76.57158055605453,39.21119530532588],[-76.57157235425389,39.21118636934678],[-76.57156435129119,39.2111772944718],[-76.57155662714018,39.21116806748127],[-76.57154926292681,39.21115867606049],[-76.5715423397717,39.21114910879555],[-76.57153590749512,39.21113936046379],[-76.57152981181945,39.21112947734257],[-76.57152396570955,39.21111949154231],[-76.5715183076415,39.21110942896112],[-76.57151277146511,39.21109931457935],[-76.57150729565649,39.211089174295],[-76.57150181752827,39.21107903490274],[-76.57149627324617,39.21106892139124],[-76.57149060012853,39.21105885965438],[-76.57148450363971,39.21104892157985],[-76.57147799544541,39.2110390927977],[-76.57147162405921,39.21102923478895],[-76.57146594262576,39.21101920905167],[-76.57146146954304,39.21100887875868],[-76.57145750767874,39.21099825847904],[-76.57145377272239,39.21098745256595],[-76.57145053744375,39.21097654218524],[-76.57144807348179,39.21096560399484],[-76.57144665477463,39.21095471736321],[-76.57144655178116,39.21094396254703],[-76.5714481975599,39.21093333752477],[-76.57145154969335,39.21092277188038],[-76.57145608598898,39.21091226370677],[-76.57146128426547,39.21090180929504],[-76.57146662118377,39.21089140493245],[-76.5714715850002,39.2108810442461],[-76.57147663502894,39.21087059559775],[-76.57148216256982,39.2108602612907],[-76.57148806460141,39.21085042017814],[-76.57149848431267,39.21084850623307],[-76.57151262711952,39.21085322302942],[-76.57152425210927,39.21085362398989],[-76.57152851287923,39.21084214556546],[-76.57153155095196,39.21083143104348],[-76.57153419589221,39.21082062590853],[-76.57153727641753,39.21080978363033],[-76.57153256314218,39.21080049827069],[-76.57151876685462,39.2107976500638],[-76.57150397209045,39.21079755280159],[-76.57149200456757,39.21079405009534],[-76.57148715927548,39.21078323382252],[-76.57148670277273,39.21077234529994],[-76.57148682865798,39.21076126883902],[-76.57148770843443,39.21075017351234],[-76.57148951826358,39.21073922390563],[-76.57149242747946,39.21072856476236],[-76.57149642392676,39.21071809965434],[-76.57150121392424,39.21070775904961],[-76.57150648509668,39.21069750127214],[-76.57151192507455,39.21068728374525],[-76.57151721916173,39.21067706568537],[-76.57152167590426,39.21066630499899],[-76.5715260502965,39.2106553755654],[-76.57153228598311,39.21064569150385],[-76.57154199578382,39.21063842071221],[-76.5715541087631,39.21063277920195],[-76.5715675421354,39.21062802798044],[-76.57158141366806,39.21062358011923],[-76.57159483650209,39.21061884777257],[-76.57160692609408,39.21061324310354],[-76.57161679788963,39.21060618007707],[-76.57162431816518,39.21059756092107],[-76.5716309620278,39.21058834945345],[-76.5716369128148,39.21057867245317],[-76.57164227890763,39.21056860598176],[-76.57164716867138,39.21055822880287],[-76.5716516928087,39.21054761608561],[-76.57165595620567,39.21053684748183],[-76.57166007071723,39.2105259990655],[-76.57166414356128,39.21051514779453],[-76.57166828310285,39.21050437243261],[-76.57167259888644,39.2104937481445],[-76.57167711497138,39.21048331735479],[-76.57168115574525,39.2104727911485],[-76.57168480116478,39.21046215900822],[-76.57168836101125,39.21045150853981],[-76.57169214738701,39.2104409264568],[-76.57169647238867,39.21043050037346],[-76.57170160316858,39.21042028260938],[-76.57170751768943,39.21041027938955],[-76.57171407798809,39.21040051993615],[-76.57172114847164,39.2103910244721],[-76.571728591867,39.21038170782282],[-76.5717362904705,39.21037250380157],[-76.57174412881808,39.2103633588406],[-76.57175198911379,39.21035422206625],[-76.57175975704612,39.21034504081593],[-76.57176731597701,39.21033576422021],[-76.57177460125189,39.21032636141651],[-76.5717817387337,39.21031688961356],[-76.57178877230636,39.21030736788794],[-76.57179573313395,39.21029781256743],[-76.57180265470166,39.21028823908759],[-76.57180956703733,39.21027866016897],[-76.57181650362068,39.21026909214775],[-76.5718234944633,39.21025955044681],[-76.57183057883398,39.2102500514235],[-76.57183797149953,39.21024069404672],[-76.57184550850242,39.21023140205244],[-76.57185282147925,39.21022201015415],[-76.57185974532585,39.21021244028227],[-76.57186667618822,39.21020285872535],[-76.57187360362944,39.21019326814772],[-76.57188047563909,39.21018365304631],[-76.57188724251679,39.2101739988272],[-76.57189385570926,39.21016429270244],[-76.57190026436389,39.21015451917314],[-76.57190641762264,39.21014466364132],[-76.57191193182634,39.21013460130007],[-76.57191625461881,39.21012414907715],[-76.5719201371742,39.21011354571811],[-76.5719244034635,39.2101030545551],[-76.57192937243684,39.21009277854002],[-76.57193444313037,39.21008253081999],[-76.57193958664691,39.21007230318264],[-76.57194479373993,39.2100620928918],[-76.57195005746246,39.21005189992215],[-76.57195536856804,39.21004172153762],[-76.57196072010952,39.21003155771288],[-76.5719661016882,39.2100214048068],[-76.57197145907011,39.21001123199498],[-76.57197683511707,39.21000103583064],[-76.5719826893567,39.20999103237621],[-76.57198948936684,39.20998144673115],[-76.57199699954552,39.20997217894998],[-76.57200486423939,39.20996306829671],[-76.57201294489313,39.20995405031043],[-76.57202110524022,39.20994506504238],[-76.57202920440984,39.20993604802325],[-76.57203710614628,39.20992693750293],[-76.57204468344044,39.20991767446726],[-76.57205196288996,39.20990826441805],[-76.57205906457347,39.20989876364182],[-76.57206610391103,39.20988923291198],[-76.57207319633346,39.2098797312003],[-76.57208046075057,39.20987031659055],[-76.57208801374561,39.20986104895945],[-76.57209589918592,39.20985195008573],[-76.57210399469909,39.20984296007141],[-76.57211224604592,39.2098340489929],[-76.57212060011781,39.2098251914345],[-76.57212900729068,39.20981636019187],[-76.57213741561385,39.20980752985356],[-76.57214577430544,39.20979867321097],[-76.57215403026235,39.20978976394783],[-76.57216213500746,39.2097807766654],[-76.57217010950129,39.20977169162303],[-76.57217782093463,39.20976245158712],[-76.57218494448793,39.20975296709687],[-76.57219117963442,39.20974315238304],[-76.5721966361516,39.20973304387736],[-76.5722016444532,39.20972276348938],[-76.57220652109123,39.20971242767343],[-76.57221157912797,39.20970215557335],[-76.57221713278858,39.20969206543644],[-76.57222311167847,39.20968211827233],[-76.57222927436371,39.20967222132096],[-76.57223565655804,39.20966240443832],[-76.57224229513302,39.20965269748462],[-76.57224922695474,39.20964313122087],[-76.57225647511467,39.20963371654051],[-76.57226385460143,39.20962422036722],[-76.57227136173528,39.20961467691721],[-76.57227908012102,39.20960523872756],[-76.57228709683716,39.20959605834786],[-76.57229549664089,39.20958728922002],[-76.57230436429506,39.20957908388519],[-76.57231489667808,39.20957284562108],[-76.57232947186698,39.20957110078207],[-76.57234322290034,39.20956797023621],[-76.57235612594582,39.20956337372734],[-76.57236774953303,39.20955724302533],[-76.5723788131812,39.20955045811502],[-76.57238963776106,39.20954337957809],[-76.57241061691525,39.20952954073827],[-76.57242392375032,39.20952576180242],[-76.57243705387235,39.20952171739104],[-76.57244947420979,39.2095165218941],[-76.57246195242328,39.20951113654164],[-76.57247435063324,39.20950557704529],[-76.57248640110144,39.20949969650285],[-76.57249783260524,39.20949334980106],[-76.5725083324516,39.20948635654515],[-76.57251611612728,39.20947741310727],[-76.57252232658527,39.20946726409507],[-76.57252963196684,39.2094577595278],[-76.57253817976382,39.20944901794504],[-76.57254688476864,39.20944031927115],[-76.57255580785291,39.20943174569896],[-76.57256501337797,39.20942337673185],[-76.57257456337857,39.2094152936661],[-76.57258451990047,39.20940757599649],[-76.57259528392196,39.20940054856454],[-76.57260684635938,39.20939418161092],[-76.57261872678885,39.20938807614063],[-76.57263044708033,39.20938183677],[-76.57264153026701,39.20937506721926],[-76.57265160652885,39.20936745987553],[-76.57266128760473,39.20935952680995],[-76.57267078087395,39.20935143992656],[-76.5726801174514,39.20934322365984],[-76.5726893307516,39.20933490515499],[-76.57269845073168,39.2093265088423],[-76.57270750965912,39.20931806006113],[-76.57271653748562,39.20930958414253],[-76.57272556648407,39.20930110552514],[-76.57273462891641,39.20929265044914],[-76.57274375473447,39.2092842442455],[-76.57275297620559,39.2092759122536],[-76.57276232444487,39.20926767890784],[-76.57277179487515,39.20925953518369],[-76.57278135410361,39.20925145033294],[-76.5727909802075,39.20924341166479],[-76.57280065590069,39.20923540560458],[-76.57281036156509,39.20922742127146],[-76.57282007645202,39.20921944327657],[-76.57282978210127,39.20921146074329],[-76.57283946007432,39.20920345919208],[-76.57284908843741,39.20919542773359],[-76.57285864875213,39.20918735188823],[-76.57286812256365,39.20917921987874],[-76.57287749026484,39.20917101902268],[-76.57288667457938,39.20916269949583],[-76.57289527987395,39.20915401034129],[-76.57290346302229,39.20914505031559],[-76.5729115112285,39.20913600242224],[-76.57291971286543,39.20912704786736],[-76.57292833551898,39.2091183587736],[-76.57293728694238,39.20910987175024],[-76.57294641139262,39.20910149254915],[-76.572955625826,39.2090931677217],[-76.57296484487226,39.20908484561267],[-76.57297398548768,39.20907647277362],[-76.57298303270177,39.20906803563842],[-76.57299223587323,39.20905965672011],[-76.57300129480751,39.20905119530499],[-76.57300981929767,39.20904246080875],[-76.57301742720398,39.20903326898205],[-76.57302408046459,39.2090235953655],[-76.57303022235689,39.20901366226394],[-76.57303632961569,39.20900371192108],[-76.57304288245457,39.20899398569259],[-76.5730504546051,39.20898476941246],[-76.57305948596253,39.20897627005949],[-76.57306885896091,39.20896795030387],[-76.57307727361302,39.2089591865779],[-76.57308378434368,39.2089495295541],[-76.57308903188151,39.20893929143313],[-76.57309398154464,39.20892891170609],[-76.57309959286721,39.20891882894198],[-76.57310658876584,39.20890935834244],[-76.57311447296377,39.20890023417234],[-76.57312301986452,39.20889142588496],[-76.57313208463745,39.2088829500682],[-76.5731415110743,39.20887478993954],[-76.57315111737094,39.20886675657402],[-76.57316086785694,39.20885881290971],[-76.57317074751313,39.20885095348721],[-76.57318074014623,39.20884317554528],[-76.57319083188949,39.20883547452954],[-76.57320100771292,39.20882784678214],[-76.57321125027084,39.20882028863684],[-76.57322158948263,39.20881283082905],[-76.573232574797,39.20880594646657],[-76.57324394481802,39.2087993967918],[-76.57325513285966,39.20879268701558],[-76.57326553423314,39.20878528798084],[-76.57327536549356,39.2087773860367],[-76.57328566217774,39.20876987402162],[-76.57329606385866,39.20876242273987],[-76.57330646216134,39.20875495523089],[-76.57331695027376,39.20874757091951],[-76.57332761674179,39.20874037101545],[-76.57333855591136,39.20873345494776],[-76.57334984828316,39.20872691398817],[-76.57336140989393,39.20872065505064],[-76.57337316135752,39.2087145940737],[-76.57338506241013,39.20870868767331],[-76.57339707047772,39.20870289155621],[-76.57340914181745,39.20869716322668],[-76.5734212338499,39.20869145929225],[-76.57343330515872,39.20868573546399],[-76.57344531200114,39.20867994924617],[-76.57345746627392,39.20867429147416],[-76.57346990035791,39.20866889054036],[-76.57348235627624,39.20866351670806],[-76.57349457720983,39.208657940245],[-76.57350630519784,39.20865192871241],[-76.57351727995852,39.20864525056403],[-76.57352706145055,39.20863753037585],[-76.57353582705279,39.20862892282674],[-76.57354411932724,39.20861989108958],[-76.5735524785311,39.20861089652715],[-76.57356140694088,39.20860236253121],[-76.57357076536942,39.20859413726428],[-76.57358026912348,39.20858600530534],[-76.57358970365523,39.20857783165803],[-76.57359885673249,39.20856948133454],[-76.5736073052975,39.2085606429283],[-76.57361510358382,39.20855134726312],[-76.57362305616621,39.20854219358095],[-76.57363197452847,39.20853378745421],[-76.57364229092043,39.20852645203265],[-76.57365312018001,39.20851951121498],[-76.57366428479871,39.20851283194103],[-76.57367569835152,39.20850634543717],[-76.5736872732446,39.2084999847272],[-76.57369892304743,39.20849368193832],[-76.57371056016639,39.20848737009439],[-76.57372209817619,39.20848098042196],[-76.57373365459547,39.20847460973169],[-76.57374331962487,39.20846660895875],[-76.57375272034989,39.20845827483608],[-76.57376131284691,39.20844956395178],[-76.57376807227131,39.2084401167742],[-76.57377226541786,39.2084295964498],[-76.57377603816272,39.20841890074703],[-76.57377930019558,39.20840783657043],[-76.57378249990016,39.2083967397391],[-76.57378876102499,39.20838736281283],[-76.573798424367,39.20837983313854],[-76.57380887301917,39.20837263960546],[-76.57381995080098,39.20836576092812],[-76.57383151767677,39.20835918668916],[-76.57384343131132,39.20835290376053],[-76.57385555283213,39.20834690082832],[-76.57386774221445,39.20834116567384],[-76.57387995271887,39.20833576928915],[-76.5738926840633,39.20833117559052],[-76.57390585515132,39.20832719962285],[-76.5739192478797,39.20832352712151],[-76.57393264530822,39.20831984292558],[-76.57394583048556,39.20831583367558],[-76.57395881076924,39.20831143093886],[-76.57397172990194,39.20830679917985],[-76.57398403057211,39.20830142473049],[-76.5739952602724,39.20829488708403],[-76.57400581952704,39.2082875867418],[-76.57401601657071,39.20827986802116],[-76.57402609283085,39.20827201734686],[-76.57403628744098,39.20826431753202],[-76.57404684182335,39.20825705590201],[-76.574057998585,39.20825051528244],[-76.57407007607868,39.20824509047083],[-76.57408303977041,39.20824074801256],[-76.57409646669804,39.20823696752123],[-76.57410992698468,39.20823322318077],[-76.5741229965313,39.20822899099782],[-76.57413524088335,39.20822373613228],[-76.57414639917829,39.20821713065348],[-76.57415689437867,39.20820969494768],[-76.57416726320081,39.20820209483981],[-76.57417797226408,39.20819490762351],[-76.57418877786827,39.20818783965989],[-76.57419957886067,39.20818076807545],[-76.57421038560756,39.20817370191555],[-76.57422120847519,39.20816665022569],[-76.57423205436189,39.20815962113789],[-76.57424293593866,39.2081526255076],[-76.57425386010924,39.20814567056605],[-76.5742648165235,39.20813874456551],[-76.57427574882145,39.20813178514747],[-76.57428666620073,39.2081248031547],[-76.57429758130547,39.20811781394644],[-76.57430850561647,39.20811083377836],[-76.5743194540882,39.20810387891883],[-76.5743304393646,39.208096964727],[-76.57434147293206,39.20809010655787],[-76.57435256858716,39.20808332067559],[-76.57436374012633,39.2080766233442],[-76.57437499903595,39.2080700299187],[-76.5743863602704,39.20806355666743],[-76.57439795774116,39.20805726983318],[-76.57440995955433,39.20805132586104],[-76.57442232443641,39.20804584981003],[-76.57443501113029,39.20804096403693],[-76.57444797604722,39.2080367935923],[-76.57446130967729,39.20803350184599],[-76.5744750357222,39.20803099790471],[-76.57448900065535,39.2080290109767],[-76.57450305558118,39.20802727028708],[-76.57451704697264,39.20802550504429],[-76.57453102889352,39.20802396766354],[-76.57454511582409,39.20802287564866],[-76.57455917089149,39.20802169073592],[-76.57457305723847,39.20801987195935],[-76.57458680050358,39.20801739148779],[-76.57460057782438,39.20801483096844],[-76.5746143454522,39.2080121488066],[-76.57462805044096,39.20800929256497],[-76.57464164679648,39.20800620893066],[-76.57465508273576,39.20800284456979],[-76.57466830878582,39.20799914705771],[-76.57468124121966,39.20799498367588],[-76.57469362394127,39.20798981032403],[-76.57470555061194,39.20798384082741],[-76.57471718920114,39.20797744781827],[-76.5747287053575,39.20797100482118],[-76.57473985259436,39.2079642965565],[-76.57475051548354,39.20795707038681],[-76.5747613440859,39.20795001326309],[-76.57477254956798,39.20794324485394],[-76.57478381557199,39.20793642351683],[-76.5747955428966,39.20793029114771],[-76.57480812088144,39.2079255697836],[-76.57482123653108,39.20792174304225],[-76.57483461823931,39.20791834333377],[-76.57484818455721,39.20791524425345],[-76.57486185983552,39.20791231761581],[-76.57487556378815,39.2079094361196],[-76.574889219608,39.20790647157544],[-76.57490275274928,39.20790330480987],[-76.57491622066009,39.20790000989523],[-76.57492967146138,39.20789667167949],[-76.57494311654244,39.20789332173131],[-76.57495656962443,39.20788998892544],[-76.57497003978115,39.20788670482218],[-76.57498353841274,39.20788349918863],[-76.574997078088,39.20788039999454],[-76.57501064188196,39.20787733331446],[-76.57502422406482,39.20787428921899],[-76.57503783590207,39.20787131999431],[-76.57505148285398,39.20786848060798],[-76.57506517733852,39.2078658242511],[-76.57507892482143,39.20786340499046],[-76.57509276265344,39.2078613661858],[-76.57510673842262,39.20785988186047],[-76.57512079667387,39.20785873832811],[-76.57513487977131,39.20785769937482],[-76.57514892771465,39.20785653688528],[-76.57516295857063,39.20785532749153],[-76.5751769993884,39.20785419469868],[-76.5751910502272,39.20785312859838],[-76.57520510498625,39.20785198774558],[-76.57521916018656,39.20785077302853],[-76.57523321558578,39.20784952498156],[-76.57524727324082,39.20784828684968],[-76.5752613305883,39.20784710005961],[-76.57527538854904,39.20784600424916],[-76.57528944570136,39.20784504355154],[-76.57530350296078,39.20784425850525],[-76.5753175589272,39.20784368964055],[-76.57533161404756,39.20784345586231],[-76.57534565701823,39.20784409219471],[-76.57535969730154,39.20784537167468],[-76.57537374075713,39.20784689527662],[-76.57538780017484,39.20784826670236],[-76.57540188140837,39.20784908782697],[-76.57541598420956,39.20784940008561],[-76.57543009696791,39.20784959617755],[-76.57544421608615,39.20784969680789],[-76.57545834258205,39.20784972540054],[-76.57547247170587,39.20784970175558],[-76.57548660216507,39.20784964838798],[-76.57550073382518,39.20784958781674],[-76.57551486193653,39.20784953984188],[-76.5755289875222,39.20784952698671],[-76.57554310582195,39.20784957085286],[-76.5755572155487,39.20784969305438],[-76.57557131657343,39.20784991520964],[-76.57558540413567,39.20785025892016],[-76.57559947543555,39.20785080524634],[-76.57561349178766,39.2078520215546],[-76.57562744800626,39.20785380693842],[-76.57564134786581,39.20785591729943],[-76.57565519398828,39.20785810763407],[-76.57566899107013,39.20786056081836],[-76.57568246812318,39.20786386768667],[-76.57569533994678,39.20786828483174],[-76.57570786616766,39.20787337901514],[-76.57572037236866,39.20787852987419],[-76.57573317828404,39.20788312693326],[-76.57574637634865,39.2078870083857],[-76.57575971366228,39.20789064442636],[-76.57577291862808,39.20789453400779],[-76.57578599349725,39.20789868794754],[-76.57579918687179,39.20790258018641],[-76.57581254093945,39.20790631987167],[-76.57582602094324,39.20790971681233],[-76.57583973963732,39.20791192107701],[-76.57585389200422,39.20791266043319],[-76.57586809312619,39.20791221543447],[-76.57588183318796,39.20791006628788],[-76.57589448352508,39.20790504330684],[-76.57590565421037,39.20789807198791],[-76.57591932361905,39.20789495694233],[-76.57593339479979,39.20789533117848],[-76.57594584563422,39.20790180776564],[-76.57594909964051,39.20791161283666],[-76.57594705341997,39.20792252833459],[-76.57594284692983,39.20793359726541],[-76.57593772702113,39.20794387200764],[-76.57593141032467,39.20795369023131],[-76.57592423729002,39.20796323782722],[-76.57591674356145,39.20797258699214],[-76.57590881635299,39.2079818174881],[-76.57589944591118,39.20798998074417],[-76.57588781989737,39.2079962243857],[-76.57587472912029,39.20800054676647],[-76.57586086619665,39.20800213337962],[-76.57584668531858,39.20800306307193],[-76.57583250725347,39.20800526647955],[-76.57582030277867,39.20801026944687],[-76.57581020707448,39.2080177319673],[-76.57580071135828,39.20802593079392],[-76.57579134296741,39.20803432915305],[-76.57578163040232,39.20804238937433],[-76.57577076662474,39.20804934107295],[-76.57575896200686,39.20805543722835],[-76.57574545988577,39.20806155336766],[-76.57573585310541,39.20806779708868],[-76.57574704164902,39.2080748996804],[-76.57575907744577,39.20808088656207],[-76.5757722072638,39.20808456959227],[-76.57578624401468,39.2080866434986],[-76.57580040578057,39.20808736578021],[-76.57581404650817,39.20808557029009],[-76.57582745693706,39.20808162379726],[-76.57584134442706,39.2080790284001],[-76.57585561374374,39.20807628214919],[-76.57586992029874,39.20807369817204],[-76.57588392407182,39.20807179409058],[-76.5758972862226,39.20807108392793],[-76.57590734558573,39.20807649345527],[-76.57591586810643,39.20808526635495],[-76.5759291367922,39.20808566651611],[-76.575943155356,39.2080847758617],[-76.57595758102056,39.20808318586781],[-76.57597207449344,39.20808148622162],[-76.57598630000982,39.2080802576156],[-76.57600036849733,39.2080793437144],[-76.57601444028586,39.20807845864852],[-76.57602851319955,39.20807757898968],[-76.57604258161608,39.20807667679334],[-76.57605664567529,39.20807572863968],[-76.57607069858616,39.20807470838137],[-76.57608472816122,39.20807352409464],[-76.57609871229253,39.20807200004695],[-76.576112688609,39.2080704273271],[-76.57612670371162,39.20806914569849],[-76.57614076099871,39.20806816778445],[-76.57615483605778,39.2080673160425],[-76.57616892319118,39.20806657513874],[-76.57618301902237,39.20806592884692],[-76.57619711553269,39.20806536272555],[-76.57621121726751,39.20806489120353],[-76.57622532435579,39.20806449266253],[-76.57623943465397,39.20806413826983],[-76.57625354604536,39.20806379468873],[-76.57626765523918,39.20806343128081],[-76.57628176127118,39.20806301561439],[-76.57629586200831,39.2080625170551],[-76.57630999925775,39.20806210870425],[-76.5763241673057,39.20806177793022],[-76.5763383096965,39.20806128402014],[-76.5763523688273,39.20806038445551],[-76.57636628594265,39.20805883581286],[-76.5763800644295,39.20805665251697],[-76.57639375950505,39.208054088788],[-76.57640739717007,39.20805125011142],[-76.57642099765245,39.20804823924956],[-76.57643458696391,39.20804515988623],[-76.57644818648491,39.20804211568878],[-76.5764618210749,39.20803920943607],[-76.57647550221529,39.20803645738367],[-76.57648918782182,39.20803353870097],[-76.5765028952106,39.2080306561266],[-76.57651664929264,39.20802809800096],[-76.5765304761367,39.20802615266861],[-76.5765444074935,39.2080251265103],[-76.57655846933793,39.20802512951514],[-76.57657261290207,39.20802579669014],[-76.57658677692896,39.20802672156114],[-76.57660090477096,39.20802750127385],[-76.57661502013724,39.20802804313314],[-76.57662913499362,39.20802867056329],[-76.57664318875632,39.20802964096954],[-76.57665715129386,39.20803115331621],[-76.57667108598172,39.20803306460756],[-76.57668490093995,39.20803544387231],[-76.57669848085352,39.20803840689554],[-76.57671177288589,39.20804207689394],[-76.57672487892076,39.2080462605669],[-76.57673792031684,39.20805060524526],[-76.57675101959047,39.20805475826425],[-76.57676429809456,39.20805836785542],[-76.57677788318546,39.20806104624073],[-76.57679181150613,39.20806266744266],[-76.57680592856538,39.20806370381482],[-76.57682722202594,39.20806529662787],[-76.57684133380953,39.20806663563972],[-76.57685555700212,39.20806773724505],[-76.57686956087318,39.20806931006792],[-76.57688301468175,39.20807206453414],[-76.57689559491335,39.20807666425507],[-76.57690753838658,39.20808261645597],[-76.57691935836561,39.2080888915913],[-76.57693153412461,39.20809452935327],[-76.57694384180711,39.2080999847307],[-76.57695620188784,39.20810539075266],[-76.5769687434159,39.2081104641379],[-76.57698159427687,39.2081149225015],[-76.57699479402366,39.20811873445867],[-76.57700815909261,39.20812239387723],[-76.57702165493187,39.20812587000595],[-76.57703525644501,39.20812909969958],[-76.57704893738862,39.20813201800713],[-76.5770626726609,39.208134562684],[-76.57707643717058,39.20813666968429],[-76.57709026454908,39.20813794098313],[-76.57710431046014,39.20813751239012],[-76.57711848646123,39.20813623662769],[-76.57713268121677,39.2081351167666],[-76.57714680399155,39.20813500191792],[-76.57716094352153,39.2081351843862],[-76.57717510329151,39.20813546781343],[-76.57718925152051,39.2081359394609],[-76.57720335642773,39.20813668659007],[-76.57721738391676,39.20813779645412],[-76.57723130103297,39.20813935901248],[-76.57724508611034,39.20814151290776],[-76.5772587663471,39.20814416275493],[-76.57727238570305,39.20814712044891],[-76.57728598349047,39.20815020057004],[-76.5772996025056,39.20815321590972],[-76.57731328439218,39.20815597835433],[-76.57732704691387,39.20815842130996],[-76.57734083752409,39.20816081392128],[-76.57735465044453,39.20816315436595],[-76.57736848586279,39.20816541111719],[-76.57738234279788,39.20816755444572],[-76.57739622258971,39.20816955372968],[-76.57741012425194,39.20817138014046],[-76.57742406001647,39.20817292382664],[-76.57743813924714,39.20817351229736],[-76.57745230070329,39.20817351375218],[-76.57746644104016,39.20817356196989],[-76.57748055955555,39.20817358038151],[-76.57749467964673,39.20817352853607],[-76.57750879175147,39.20817365141202],[-76.577522896224,39.20817408412802],[-76.57753699096853,39.20817478974448],[-76.57755104202298,39.20817583299545],[-76.57756509253129,39.20817696812263],[-76.5775791593512,39.208178086192],[-76.57759321884437,39.20817926818882],[-76.5776072450729,39.2081805923879],[-76.57762121439852,39.20818213977459],[-76.57763510318848,39.2081839904335],[-76.57764889127274,39.20818622626324],[-76.57766258565189,39.20818883828129],[-76.57767620892976,39.20819172478054],[-76.57768978716223,39.20819478766954],[-76.5777033429583,39.2081979243403],[-76.57771690123717,39.20820103309423],[-76.57773047040348,39.20820406351764],[-76.57774401251829,39.20820716500399],[-76.57775753346159,39.20821032226111],[-76.57777104735754,39.20821349660613],[-76.57778457064572,39.20821664936463],[-76.57779811512908,39.20821974274616],[-76.57781170199617,39.2082227182761],[-76.57782535597336,39.20822550668311],[-76.57783903582497,39.2082282276229],[-76.5778526862773,39.20823102502189],[-76.57786625432946,39.20823405002081],[-76.57787971396901,39.20823739350526],[-76.57789312769503,39.2082408647341],[-76.57790657215175,39.20824423068038],[-76.5779201216677,39.20824725830878],[-76.57793384820202,39.20824972358312],[-76.57794773531491,39.20825166517794],[-76.57796170502222,39.20825334674192],[-76.57797567237172,39.20825503550211],[-76.57798958652316,39.20825690872972],[-76.57800350894063,39.20825875496187],[-76.57801742541452,39.20826062729377],[-76.57803130526918,39.20826262199871],[-76.57804511426457,39.20826485065071],[-76.57805867175057,39.20826790261282],[-76.57807221963805,39.20827101128814],[-76.57808588795852,39.20827392222277],[-76.57809964674051,39.20827641822024],[-76.57811359839813,39.20827763129424],[-76.57812770885319,39.20827784056488],[-76.57814187616522,39.20827763928133],[-76.5781560048521,39.20827750811822],[-76.57817011902239,39.20827728682301],[-76.57818423237184,39.20827700877381],[-76.57819834643495,39.20827680549047],[-76.57821246406471,39.20827678147398],[-76.57822661080546,39.20827672963619],[-76.57824077143465,39.20827667874738],[-76.57825491622597,39.20827676021497],[-76.57826901662177,39.20827710364905],[-76.57828304406459,39.20827783865971],[-76.57829718147245,39.20827935864559],[-76.57831105626845,39.20828220724122],[-76.57832335810272,39.20828691570332],[-76.57833056736885,39.20829656827511],[-76.57833107714815,39.20830762811484],[-76.57833441766419,39.20831832700464],[-76.57833977221715,39.20832873677436],[-76.57835194037817,39.20833197467574],[-76.5783657163461,39.20832962899696],[-76.57837836404737,39.20832464267171],[-76.57838805441951,39.2083167668177],[-76.57839757403488,39.20830859399182],[-76.57840773916153,39.20830090540323],[-76.57841615287798,39.20829217462108],[-76.57842266102702,39.20828223444709],[-76.57842939100625,39.20827256890763],[-76.57843953742342,39.20826530001373],[-76.5784531192982,39.20826405078066],[-76.57845943276662,39.20826915747939],[-76.57846864989784,39.20826083583271],[-76.57847789583847,39.20825253680831],[-76.57848714984425,39.20824424411766],[-76.5784963957859,39.20823594419104],[-76.57850561404489,39.20822762614858],[-76.57851478847068,39.20821928002366],[-76.57852392022103,39.20821090582047],[-76.57853302659902,39.20820251441056],[-76.57854212144485,39.20819411485146],[-76.57855122205089,39.20818571981623],[-76.57856034457295,39.20817733837072],[-76.57856950053569,39.20816897956421],[-76.57857868301897,39.20816063886787],[-76.57858787934035,39.20815230722832],[-76.57859707912236,39.208143977402],[-76.57860626967705,39.20813564123637],[-76.57861543831685,39.20812729057879],[-76.57862458388912,39.20811892452429],[-76.57863374794141,39.2081105657417],[-76.57864277240985,39.20810211998207],[-76.57865147500743,39.20809347759602],[-76.57866000455697,39.20808472919637],[-76.57866845680384,39.2080759345786],[-76.5786768536769,39.20806710553165],[-76.57868521939935,39.20805825745578],[-76.57869357473685,39.20804940303653],[-76.57870194275468,39.20804055767001],[-76.57871033038369,39.20803172408351],[-76.57871869608176,39.20802287870745],[-76.57872704678499,39.20801402336834],[-76.57873539171322,39.20800516530555],[-76.57874373778641,39.20799630904781],[-76.57875208617317,39.20798745279779],[-76.57876043109509,39.20797859473316],[-76.57876877024731,39.20796973304405],[-76.57877709785143,39.20796086590819],[-76.57878327213155,39.20795215318269],[-76.57877165677762,39.20794922537777],[-76.57876767137286,39.20793870974566],[-76.57876510011549,39.20792792535211],[-76.57876259995369,39.20791725741472],[-76.57876452862675,39.20790637117306],[-76.57876862724089,39.20789584672885],[-76.57877346228533,39.20788550868784],[-76.57877855508596,39.20787524453532],[-76.57878256058595,39.20786831568098],[-76.5787843434087,39.20786523149538],[-76.57879093106563,39.20785553569767],[-76.57879785144701,39.20784596269962],[-76.57880499360131,39.20783647877392],[-76.57881225815497,39.20782705023485],[-76.57881955150756,39.20781764611983],[-76.57882688529057,39.2078082574628],[-76.57883432183294,39.20779891691559],[-76.57884192228997,39.20778965982825],[-76.57884974434334,39.20778052153828],[-76.57885058243868,39.2077795742206],[-76.57885774992448,39.20777147848873],[-76.57886582594791,39.20776246631801],[-76.57887399316864,39.20775349951319],[-76.5788822723202,39.2077445961643],[-76.57889068645184,39.20773577436966],[-76.57889925747098,39.20772704952121],[-76.57890800149599,39.20771843699004],[-76.57891687244447,39.2077098978771],[-76.57892585186097,39.20770142040597],[-76.57893493510896,39.20769300546075],[-76.57894411754656,39.20768465482634],[-76.57895339569498,39.20767636939095],[-76.57896276607009,39.20766815094368],[-76.57897222404078,39.20765999946792],[-76.57898179034058,39.20765193305365],[-76.57899154916859,39.20764400604995],[-76.57900146479855,39.20763619040429],[-76.5790114841851,39.20762844989502],[-76.57902155544625,39.20762074740387],[-76.57903162786833,39.20761304401527],[-76.57904164840083,39.20760530440829],[-76.57905160782401,39.20759752134365],[-76.5790615868422,39.20758975276096],[-76.57907157277296,39.2075819896069],[-76.57908154601911,39.2075742173987],[-76.57909148814663,39.20756642075686],[-76.57910137840058,39.2075585851944],[-76.57911120756124,39.20755070347209],[-76.57912100445618,39.20754279551047],[-76.57913076100745,39.20753485677671],[-76.57914046453266,39.20752687821748],[-76.57915010002851,39.20751885167196],[-76.57915965364937,39.20751076898348],[-76.57916914273567,39.20750263471808],[-76.57917857193983,39.20749444528941],[-76.57918250972426,39.20749092293865],[-76.57918784313195,39.20748615260408],[-76.57919253286666,39.20748176009121],[-76.57919685935052,39.2074777067713],[-76.57920551788793,39.20746905067344],[-76.57921372888953,39.20746010742191],[-76.57922152792703,39.20745093119125],[-76.57922896319029,39.20744159601855],[-76.57923604414988,39.20743206680731],[-76.57924219184912,39.20742215592028],[-76.57924695260269,39.20741183290573],[-76.57925153540108,39.20740145070194],[-76.57925609975342,39.20739105492005],[-76.57926063987607,39.20738064463855],[-76.57926514418041,39.20737022161747],[-76.57926960456726,39.20735978492696],[-76.5792740117796,39.2073493336331],[-76.57927835886528,39.20733886861166],[-76.5792826354042,39.20732838982541],[-76.57928683213407,39.20731789724104],[-76.57929094095564,39.20730738992876],[-76.57929495260123,39.20729686875615],[-76.57929885897177,39.20728633279343],[-76.57930265079946,39.2072757829081],[-76.57930569891667,39.20726510334578],[-76.57930740766268,39.2072541901824],[-76.57930841075147,39.20724317360125],[-76.57930935693729,39.20723218564112],[-76.57931048593679,39.20722121815364],[-76.57931151780942,39.20721022869904],[-76.57931221043225,39.20719924073045],[-76.57931232167741,39.20718827860171],[-76.5793115260506,39.20717736726846],[-76.57930952943563,39.2071665119817],[-76.57930691786268,39.20715568331505],[-76.57930436423349,39.20714484584826],[-76.57930232254665,39.20713397688792],[-76.57930044653136,39.20712309050585],[-76.57929861570258,39.20711219888104],[-76.57929673505194,39.20710131338301],[-76.57929471536019,39.20709044540204],[-76.57929246624499,39.20707960722506],[-76.57928997960725,39.20706879792215],[-76.57928734234001,39.2070580078963],[-76.57928464829384,39.20704722577383],[-76.57928199132984,39.20703643837953],[-76.5792792603267,39.20702564081103],[-76.57927672627677,39.2070148223299],[-76.57927633853032,39.20700385660982],[-76.57927740645128,39.20699284116142],[-76.57927970018103,39.20698539720868],[-76.57928066582198,39.20698226594649],[-76.57928639097368,39.20697214275781],[-76.57929135832681,39.2069615322305],[-76.57929464965333,39.20695083912713],[-76.57929218586057,39.20694047399177],[-76.57928685937965,39.20693020578527],[-76.57928020226488,39.20692018502663],[-76.57927340879415,39.20691051058005],[-76.57926980500223,39.2069055433518],[-76.57926644352439,39.20690091118278],[-76.57925911965151,39.20689145372371],[-76.57925131366565,39.20688227017496],[-76.5792429020516,39.20687349340937],[-76.5792337965668,39.20686516544721],[-76.57922406381883,39.20685718293713],[-76.57921381728177,39.20684954448435],[-76.57920317040792,39.20684225229715],[-76.57919223548141,39.2068353103813],[-76.57918084717306,39.20682887397914],[-76.57916898025152,39.2068229024649],[-76.57915689557153,39.2068171418524],[-76.57914485514557,39.20681133815981],[-76.57913311982321,39.20680523830192],[-76.57912191442384,39.20679861248484],[-76.57911096478638,39.2067916155607],[-76.57910031698221,39.20678428823012],[-76.57909017744969,39.20677657178202],[-76.57908075610577,39.20676840661711],[-76.57907219789789,39.20675975542265],[-76.57906425207672,39.20675072989712],[-76.57905672927724,39.2067414383561],[-76.5790494668167,39.20673198020292],[-76.57904230315961,39.20672245664656],[-76.57903507794957,39.20671296529709],[-76.57902762848812,39.20670360826001],[-76.57901979441893,39.20669448314537],[-76.57901143166424,39.2066856759112],[-76.57900257755625,39.20667713894999],[-76.57899332032684,39.20666883204287],[-76.57898373888166,39.20666072574706],[-76.57897391442587,39.20665279333034],[-76.578963925865,39.20664500535],[-76.5789538358689,39.20663733680897],[-76.5789436190624,39.20662977140201],[-76.57893329058747,39.20662229387017],[-76.578922871391,39.2066148862729],[-76.57891238125156,39.20660753246704],[-76.57890184458392,39.20660021542535],[-76.5788912811613,39.2065929199055],[-76.5788807142461,39.20658562797523],[-76.57887741876119,39.20658334617436],[-76.58240116922475,39.20771285222587],[-76.58166235464098,39.20777968974691],[-76.58236249596727,39.20785710012412],[-76.58287753947194,39.20790799690264],[-76.58300636846791,39.20791495575222],[-76.58300890735974,39.20791755812778],[-76.58301315626804,39.20792195193121],[-76.58301738186215,39.20792637267517],[-76.5830215528284,39.20793082925607],[-76.58302564132654,39.20793533058288],[-76.58302961488516,39.20793988554804],[-76.58303344565874,39.20794450396127],[-76.58303710349671,39.20794919382244],[-76.58304055708544,39.20795396402805],[-76.58304381338222,39.20795881280139],[-76.58304695940241,39.20796370982503],[-76.5830500113974,39.20796864795044],[-76.58305298097184,39.20797362271497],[-76.58305587625671,39.20797862964363],[-76.58305871002487,39.20798366247632],[-76.58306148923913,39.2079887185354],[-76.58306422783005,39.20799379156492],[-76.58306693277621,39.20799887618507],[-76.58306961567155,39.20800396973456],[-76.58307228813118,39.20800906594926],[-76.58307495828615,39.20801416035412],[-76.58307763658843,39.20801924758161],[-76.58308033463727,39.2080243240698],[-76.5830830408229,39.20802939518215],[-76.58308574004094,39.2080344698728],[-76.58308843113879,39.20803954723683],[-76.58309111294815,39.20804462907174],[-76.5830937854743,39.20804971447675],[-76.58309644524378,39.20805480343943],[-76.58309909109883,39.20805989595581],[-76.58310172418666,39.20806499383143],[-76.58310434103909,39.2080700961532],[-76.58310694166144,39.20807520202035],[-76.58310952372757,39.20808031322623],[-76.58311208723734,39.20808542977078],[-76.58311463103837,39.20809055074919],[-76.58311715280433,39.20809567795473],[-76.58311965138813,39.20810080958174],[-76.58312212562126,39.20810594742764],[-76.58312450592429,39.20811111016168],[-76.58312653601432,39.20811636623361],[-76.58312831331124,39.20812168806529],[-76.58312997235325,39.20812703650029],[-76.58313163608493,39.20813237504331],[-76.5831330587442,39.20813775506663],[-76.58313442693374,39.20814314390423],[-76.58313620314279,39.2081484540217],[-76.58313835723668,39.20815369071667],[-76.58314001754907,39.20815902023957],[-76.58314139040255,39.2081644036889],[-76.58314266356827,39.2081698066013],[-76.58314390427857,39.20817521570387],[-76.58314518440217,39.20818061683935],[-76.58314689371899,39.20818607985196],[-76.58314890364376,39.20819102418103],[-76.58314915473503,39.20819164300983],[-76.58315150134472,39.20819722088417],[-76.58315346397964,39.2082027262326],[-76.58315457653393,39.20820807362652],[-76.58315436828104,39.20821317581927],[-76.58315247495463,39.20821795585114],[-76.58314921247263,39.20822244276857],[-76.58314495084237,39.2082267216588],[-76.58314003344697,39.20823087661346],[-76.58313480134341,39.20823499351783],[-76.583129599062,39.20823915826936],[-76.58312476767055,39.2082434549518],[-76.58312064938389,39.20824796945455],[-76.58311739665774,39.2082527662749],[-76.58311457095169,39.20825779791496],[-76.58311213205437,39.20826301108572],[-76.5831100814197,39.20826835534855],[-76.58310841935447,39.20827377845917],[-76.58310715079138,39.20827922909055],[-76.58310714839646,39.20827924259376],[-76.58310627602667,39.20828465679988],[-76.58310567334743,39.20829008547593],[-76.58310524760702,39.20829554991113],[-76.58310498727495,39.20830104195745],[-76.58310488197857,39.20830655347104],[-76.58310492133982,39.20831207720877],[-76.58310509498608,39.20831760502668],[-76.58310538907126,39.20832312876862],[-76.58310579553299,39.20832864119966],[-76.58310630168815,39.20833413326686],[-76.58310689831139,39.20833959863199],[-76.58310760737996,39.20834504097635],[-76.58310865667093,39.2083505142552],[-76.58311009044031,39.20835597448759],[-76.5831119102109,39.20836135952482],[-76.58311411518976,39.20836660721012],[-76.58311670458923,39.20837165448587],[-76.58311997410627,39.20837642493534],[-76.58312440484669,39.20838081577697],[-76.58312959323621,39.20838474000248],[-76.58313512182251,39.20838810785212],[-76.58314121608836,39.20839077239842],[-76.58314779502899,39.20839292341875],[-76.58315450142463,39.20839486140603],[-76.58316110828039,39.20839679363468],[-76.58316775379376,39.20839864943372],[-76.58317443914362,39.20840042520427],[-76.58318115735663,39.20840212542545],[-76.58318789914914,39.20840375366745],[-76.58319469281085,39.20840522445638],[-76.58320167006258,39.20840618965732],[-76.58320853813132,39.20840741119298],[-76.58321525014972,39.20840918075047],[-76.58322198235362,39.20841106207625],[-76.58322851019624,39.20841323993405],[-76.58323460794642,39.20841590358705],[-76.58324009514432,39.20841922264241],[-76.58324510679402,39.2084230786763],[-76.58324991090517,39.2084271807873],[-76.58325477549805,39.20843123627218],[-76.58325997205041,39.20843495514249],[-76.58326554009707,39.20843830871346],[-76.58327132116577,39.20844146847174],[-76.58327725482297,39.20844447293628],[-76.58328327832471,39.20844735971712],[-76.5832893334632,39.20845018265441],[-76.58329539775362,39.20845302454035],[-76.58330148761686,39.20845584940191],[-76.58330762533681,39.20845860867599],[-76.5833138297449,39.20846125018402],[-76.58332012081999,39.20846372355322],[-76.58332652085106,39.20846597931963],[-76.58333305317417,39.20846798693959],[-76.58333972454049,39.20846977976588],[-76.58334650238854,39.20847138200399],[-76.58335335648829,39.20847281516541],[-76.58336025428879,39.20847410165407],[-76.5833671643916,39.20847526477882],[-76.58337408490914,39.20847623156953],[-76.5833812472431,39.20847624078603],[-76.58338844231233,39.20847599880002],[-76.58339533365631,39.20847660967691],[-76.58340184142448,39.20847846137044],[-76.58340823889556,39.20848075946006],[-76.58341451398358,39.20848339310668],[-76.58342064755523,39.208486268561],[-76.58342662165093,39.20848928937554],[-76.583432383233,39.20849241752923],[-76.58343771026162,39.20849600263817],[-76.58344271576325,39.20849992259724],[-76.58344759104078,39.20850393577516],[-76.58345236660936,39.20850797201928],[-76.58345694565196,39.20851215349225],[-76.58346334502544,39.20851807633382],[-76.58348095932398,39.20852753672324],[-76.58348832995351,39.20853210733367],[-76.58346980721934,39.20862502664239],[-76.58347164974647,39.20866167790904],[-76.58349358074793,39.20866221425561],[-76.58349347709115,39.20866606923602],[-76.58348979102681,39.20867585486203],[-76.58350033002515,39.20869554283743],[-76.58351580383916,39.2087096877983],[-76.58351513180732,39.20872971160537],[-76.58348982308154,39.20874323979844],[-76.58347694777326,39.20875490426515],[-76.58348917678224,39.20878236838828],[-76.58349745915376,39.20880778273318],[-76.58349107869446,39.20881442407258],[-76.58349391667032,39.20883829586903],[-76.58347686860951,39.20883947392984],[-76.58341916206238,39.20924346897872],[-76.58314847654937,39.209606183159],[-76.58299992838401,39.20980846643652],[-76.58288456602041,39.20996482131309],[-76.5827191037681,39.20989411074439],[-76.582715774251,39.20989323865726],[-76.58271227723181,39.2098934829441],[-76.58270898454795,39.2098944215597],[-76.58270570762383,39.20989543679772],[-76.58270244886513,39.20989651335344],[-76.58269921067216,39.20989763682287],[-76.58269599660318,39.20989879280614],[-76.5826928067428,39.20989996689109],[-76.5826896260656,39.20990115452032],[-76.58268645341903,39.20990235478899],[-76.58268328649808,39.20990356588732],[-76.5826801241607,39.20990478510891],[-76.58267696641752,39.20990601065217],[-76.58267381095816,39.20990724160824],[-76.58267065664592,39.20990847436983],[-76.58266750233358,39.20990970713133],[-76.58266434802647,39.20991093899197],[-76.58266119026685,39.20991216723716],[-76.58265803021789,39.20991339097019],[-76.58265486558518,39.20991460657979],[-76.58265169752114,39.20991581497085],[-76.58264853173038,39.20991703057619],[-76.58264537052848,39.20991825340396],[-76.58264221276292,39.20991948254939],[-76.58263905728647,39.20992071620676],[-76.58263590525696,39.20992195438024],[-76.58263275321148,39.20992319525591],[-76.58262960231311,39.20992443793715],[-76.58262645256715,39.2099256815232],[-76.58262330166856,39.20992692420425],[-76.58262014962264,39.2099281650796],[-76.5826169964399,39.20992940234765],[-76.58261384095728,39.20993063690513],[-76.58261068319591,39.20993186514897],[-76.58260752084016,39.20993308707084],[-76.58260435389531,39.20993430177008],[-76.58260118352975,39.20993550744924],[-76.58259800627,39.20993670409597],[-76.58259482444763,39.20993788901622],[-76.58259163459441,39.20993906129685],[-76.58258843786815,39.20994022094202],[-76.58258523427948,39.20994136615017],[-76.58258202036548,39.20994249510741],[-76.5825787984418,39.20994360782205],[-76.58257556620332,39.2099447024842],[-76.58257232365541,39.20994577819321],[-76.58256907194,39.20994683765539],[-76.58256581220967,39.20994788177568],[-76.58256254445372,39.20994891235564],[-76.58255926867224,39.20994992939521],[-76.58255598717562,39.20995093380341],[-76.58255269879541,39.20995192737761],[-76.58254940584729,39.20995291012612],[-76.5825461060103,39.20995388294143],[-76.58254280159481,39.20995484673254],[-76.58253949375337,39.20995580240431],[-76.58253618016504,39.20995675084927],[-76.58253286429267,39.20995769388135],[-76.58252954498377,39.20995863059564],[-76.58252622338556,39.20995956279774],[-76.58252290065063,39.20996049139262],[-76.58251957445798,39.20996141727273],[-76.58251624827581,39.20996234135121],[-76.58251292210421,39.20996326362809],[-76.58250959477459,39.20996418590076],[-76.58250626743965,39.20996510907407],[-76.58250294125713,39.20996603315223],[-76.58249961737437,39.20996695994075],[-76.58249629462814,39.20996789033641],[-76.58249297301852,39.20996882433912],[-76.58248965600833,39.20996976376277],[-76.58248634128728,39.20997070769841],[-76.58248083442258,39.20997229509939],[-76.58231274858798,39.2098909958366],[-76.58202994573679,39.21017820125514],[-76.5820589080511,39.21019305111759],[-76.58205537983098,39.21019780729086],[-76.58205186200441,39.21020256800501],[-76.58204835341365,39.21020733325582],[-76.58204485174822,39.21021210213429],[-76.58204135470844,39.21021687192994],[-76.5820378588154,39.21022164353113],[-76.58203436407979,39.21022641513633],[-76.58203086588071,39.21023118492752],[-76.58202736305516,39.21023595380132],[-76.58202385446636,39.21024071815059],[-76.58202033547778,39.2102454788596],[-76.58201680494206,39.21025023412262],[-76.58201326171198,39.2102549821341],[-76.58200970230878,39.21025972378236],[-76.58200612443262,39.21026445635688],[-76.58200252576779,39.21026917984946],[-76.58199890516711,39.21027389245437],[-76.5819952591623,39.21027859325847],[-76.58199158891122,39.21028328226595],[-76.5819878955611,39.21028796128241],[-76.58198418258549,39.21029263032023],[-76.58198045113157,39.21029729118509],[-76.58197670350974,39.21030194478596],[-76.58197294318832,39.21030659203595],[-76.5819691724776,39.21031123384419],[-76.58196539137229,39.21031587111131],[-76.5819616033353,39.21032050565128],[-76.58195781183491,39.21032513837719],[-76.58195401802895,39.21032976929324],[-76.58195022306461,39.21033440020499],[-76.5819464304049,39.21033903292643],[-76.58194264352333,39.21034366746989],[-76.58193886125673,39.21034830473199],[-76.58193508938899,39.21035294563416],[-76.58193132790426,39.21035759287864],[-76.58192758028137,39.21036224557711],[-76.58192384766227,39.2103669064359],[-76.5819201323679,39.21037157456259],[-76.58191643785597,39.21037625267185],[-76.58191276527893,39.21038094166848],[-76.58190911464744,39.21038563975098],[-76.58190547670935,39.21039034508485],[-76.58190185262782,39.21039505677345],[-76.58189824125026,39.21039977391194],[-76.58189464141358,39.21040449739687],[-76.58189105197582,39.2104092245219],[-76.5818874717685,39.21041395708436],[-76.58188390195482,39.21041869418767],[-76.58188033906656,39.21042343491865],[-76.58187678541934,39.21042817928559],[-76.58187323869751,39.21043292728019],[-76.58186969774852,39.21043767799766],[-76.58186616141457,39.21044243143376],[-76.58186263085874,39.21044718669193],[-76.58185910376537,39.21045194376386],[-76.58185558013977,39.21045670174885],[-76.58185205881875,39.21046146154348],[-76.58184853980768,39.21046622224705],[-76.581845021954,39.21047098295458],[-76.58184150294198,39.21047574365792],[-76.58183798393479,39.21048050346036],[-76.58183446492714,39.21048526326271],[-76.58183094707159,39.2104900239698],[-76.58182744191998,39.2104947901268],[-76.58182394716209,39.21049956082461],[-76.58182046279779,39.21050433606325],[-76.58181698536421,39.21050911402883],[-76.58181351369815,39.21051389561801],[-76.58181004781028,39.21051867902924],[-76.58180658654273,39.21052346425837],[-76.58180312642192,39.21052825129304],[-76.58179966862167,39.21053303743509],[-76.58179620965781,39.21053782447367],[-76.58179274954095,39.2105426106073],[-76.58178928596064,39.21054739492686],[-76.5817858177538,39.21055217832907],[-76.58178234377849,39.21055695810746],[-76.58177886287152,39.21056173515873],[-76.58177537272782,39.21056650767304],[-76.58177187334208,39.21057127655116],[-76.58176835663591,39.21057603726038],[-76.58176481451491,39.21058078797037],[-76.58176125276839,39.21058552870167],[-76.58175767600119,39.21059026397461],[-76.58175409000256,39.21059499380984],[-76.58175049937732,39.21059972272773],[-76.58174691106203,39.21060445255448],[-76.58174332852491,39.21060918420326],[-76.58173975868651,39.21061392220269],[-76.58173620733608,39.21061866657337],[-76.58173267792061,39.21062342183151],[-76.58172917622414,39.21062818889854],[-76.58172570917773,39.21063297050148],[-76.58172228255482,39.21063776936322],[-76.58171891020719,39.21064259273945],[-76.5817155898402,39.21064743701886],[-76.5817123087336,39.21065229945377],[-76.5817090588142,39.2106571746107],[-76.58170582737222,39.21066205794045],[-76.58170260517136,39.21066694490613],[-76.5816993818122,39.21067183186767],[-76.58169614574805,39.21067671337905],[-76.58169288889529,39.21068158580849],[-76.58168959970709,39.21068644370996],[-76.58168626662631,39.21069128343928],[-76.58168288041652,39.21069610045955],[-76.58167942837866,39.21070088842001],[-76.58167591165983,39.21070564912631],[-76.58167234528032,39.21071038803672],[-76.58166874193935,39.21071511150193],[-76.58166511549921,39.2107198249761],[-76.58166147982233,39.2107245339133],[-76.58165784876043,39.21072924556918],[-76.58165423733377,39.21073396540197],[-76.58165065825214,39.21073869796095],[-76.58164712420951,39.21074345049757],[-76.58164365138401,39.2107482284742],[-76.58164024438038,39.21075303641123],[-76.58163680031443,39.21075784601757],[-76.58163331571794,39.21076265638008],[-76.58162983453616,39.21076747666324],[-76.58162639956183,39.21077231512673],[-76.58162305126145,39.21077718182336],[-76.58161983358552,39.21078208501687],[-76.58161678931636,39.21078703476847],[-76.58161395893089,39.21079203932949],[-76.58161138637462,39.21079710786448],[-76.58160909935106,39.21080225488474],[-76.58160705259789,39.21080749824451],[-76.5816052346109,39.21081282529187],[-76.58160364202811,39.21081821709839],[-76.58160226916107,39.21082365652899],[-76.58160111264243,39.21082912555595],[-76.58160016794696,39.21083460614763],[-76.58159943054937,39.21084008027211],[-76.58159889591393,39.21084553169928],[-76.58159860908543,39.21085097950611],[-76.58159865080586,39.21085647622584],[-76.58159900732437,39.21086199748835],[-76.58159966141118,39.21086751981191],[-76.58160059468929,39.21087301790898],[-76.58160178993953,39.2108784664964],[-76.58160323109011,39.21088384209648],[-76.58160491357854,39.21088913298274],[-76.58160689036893,39.2108943897878],[-76.58160914642527,39.21089960975571],[-76.58161165867013,39.2109047792925],[-76.581614401705,39.21090988569657],[-76.58161735244713,39.2109149162747],[-76.58162048666134,39.21091985742871],[-76.58162378009627,39.21092469826275],[-76.58162719657197,39.21092948729002],[-76.58163072900862,39.21093424700486],[-76.58163437399114,39.21093896748641],[-76.58163813387235,39.21094364243763],[-76.5816420087053,39.21094826285083],[-76.58164599621682,39.21095282151174],[-76.58165009992814,39.21095731032576],[-76.58165431641355,39.21096172117368],[-76.58165864803647,39.21096604595682],[-76.58166309830227,39.21097027928306],[-76.58166768568901,39.21097442932523],[-76.58167239972279,39.21097850505383],[-76.58167722647234,39.21098251272462],[-76.58168214852735,39.21098645948183],[-76.58168715195107,39.21099035248199],[-76.58169222164901,39.21099419887751],[-76.58169734136337,39.21099800671747],[-76.58170249600495,39.21100178225362],[-76.58170767048451,39.2110055317375],[-76.58171284969679,39.21100926412321],[-76.58171805340498,39.21101296596943],[-76.58172331528237,39.21101662118212],[-76.58172862719213,39.21102023513691],[-76.58173398447634,39.21102381232112],[-76.58173937900874,39.21102735630895],[-76.58174480612081,39.21103087338923],[-76.58175025768094,39.21103436803678],[-76.5817557290313,39.21103784473903],[-76.58176121319822,39.21104130797496],[-76.58176670320793,39.21104476222362],[-76.58177219324475,39.21104821196821],[-76.58177774615642,39.21105160248501],[-76.58178337707464,39.21105492031627],[-76.5817890568886,39.21105819328243],[-76.58179475650327,39.21106144650167],[-76.58180044332906,39.21106470868286],[-76.58180609058667,39.21106800495244],[-76.58181166684959,39.21107136312272],[-76.58181714301224,39.21107481011337],[-76.58182243521577,39.21107842939829],[-76.58182742588011,39.21108232865232],[-76.5818321780706,39.21108641622047],[-76.58183676302635,39.21109058876671],[-76.58184087782179,39.21109516498915],[-76.58184241600392,39.21110038689795],[-76.5818411644489,39.21110587360383],[-76.58183939636578,39.21111118281653],[-76.58183761664023,39.21111650279711],[-76.58183579061598,39.21112181991029],[-76.58183388709989,39.21112712233479],[-76.58183187259365,39.21113239643951],[-76.58182971475142,39.2111376294982],[-76.58182738122215,39.21114280968539],[-76.58182484312827,39.21114792518804],[-76.58182221141199,39.21115301243274],[-76.58181954155502,39.21115808783124],[-76.5818168335414,39.21116315408596],[-76.58181409316566,39.21116821031663],[-76.58181132041722,39.21117325832483],[-76.58180851876973,39.21117829812295],[-76.58180569169134,39.21118333062408],[-76.58180284149786,39.21118835583653],[-76.58179996933649,39.21119337556591],[-76.58179707984398,39.21119838892799],[-76.58179417532006,39.21120339863327],[-76.58179125693329,39.2112084028844],[-76.58178832929916,39.21121340440012],[-76.58178539241763,39.21121840318047],[-76.58178245207803,39.21122339924607],[-76.58177950826978,39.21122839439845],[-76.58177656562957,39.21123338775334],[-76.58177362529933,39.21123838201719],[-76.58177069076331,39.21124337540086],[-76.58176775391112,39.21124836877612],[-76.58176481243771,39.21125336033333],[-76.58176186286948,39.21125835006],[-76.58175890752744,39.21126333706366],[-76.58175594293803,39.21126832133199],[-76.58175297026442,39.21127330196825],[-76.58174998834346,39.21127827986913],[-76.58174699717506,39.21128325503462],[-76.58174399561202,39.21128822565909],[-76.58174098249654,39.2112931917384],[-76.58173795666536,39.21129815416916],[-76.58173492044483,39.21130311115808],[-76.58173187035611,39.21130806359363],[-76.58172880640446,39.21131301057496],[-76.58172572858989,39.21131795210209],[-76.58172263575455,39.21132288817095],[-76.58171952675113,39.2113278169758],[-76.58171640272698,39.21133274032233],[-76.58171326021905,39.21133765639663],[-76.58171008074399,39.21134255792656],[-76.58170686430182,39.21134744491215],[-76.58170361435553,39.21135231916723],[-76.58170033667852,39.21135718341473],[-76.58169703589689,39.21136203857201],[-76.58169371778931,39.21136688646119],[-76.58169038697133,39.21137172980099],[-76.58168704806911,39.21137656950877],[-76.58168370569815,39.21138140830333],[-76.58168036678971,39.21138624891167],[-76.5816770336648,39.2113910904413],[-76.5816737132441,39.21139593742081],[-76.58167041015372,39.21140079076749],[-76.58166712900922,39.21140565320015],[-76.58166387559987,39.21141052473939],[-76.58166065337808,39.21141540900065],[-76.58165746812254,39.21142030780611],[-76.58165432562258,39.21142522117645],[-76.58165123163563,39.21143015453683],[-76.58164819195109,39.21143510790792],[-76.58164520310062,39.2114400803766],[-76.58164225700038,39.21144506831087],[-76.58163934786651,39.2114500707894],[-76.58163646876766,39.21145508508507],[-76.58163361509362,39.21146010757836],[-76.5816307775868,39.21146513733543],[-76.58162795278953,39.21147017164169],[-76.58162513146014,39.211475206861],[-76.5816223089725,39.21148024207613],[-76.58161947839535,39.21148527456],[-76.58161663395525,39.21149030158965],[-76.58161376755784,39.2114953213347],[-76.58161087575068,39.21150033017972],[-76.58160796198615,39.21150533174009],[-76.58160505168419,39.21151033511426],[-76.58160214600267,39.21151534030648],[-76.58159924032071,39.21152034549856],[-76.58159633232796,39.21152534978153],[-76.58159342086653,39.21153035315132],[-76.58159050362593,39.21153535469882],[-76.58158757830111,39.21154035261427],[-76.58158464142383,39.21154534598461],[-76.58158169183613,39.21155033480562],[-76.58157872723292,39.21155531726748],[-76.58157574414061,39.21156029335792],[-76.58157274256449,39.21156526217608],[-76.58156971788378,39.211570221904],[-76.58156663543674,39.21157515980708],[-76.58156340743271,39.21158004044172],[-76.58156007313819,39.21158488106291],[-76.58155668569817,39.21158970167725],[-76.58155051642463,39.21159855147661],[-76.58151974450345,39.21158712972312],[-76.58148458660327,39.21164347794242],[-76.58142063132912,39.21174785669887],[-76.58135242457999,39.21185922202591],[-76.58127495457897,39.2119841164246],[-76.58110217065702,39.21192097739426],[-76.5809542410432,39.21186611136873],[-76.58093899144113,39.21188811254891],[-76.58091504458997,39.21192468343549],[-76.58123422929633,39.21204298760411],[-76.58122126669586,39.21206398900672],[-76.58118409125643,39.21212347996325],[-76.58115160535205,39.2121764740946],[-76.58113956897344,39.21220612179265],[-76.58110149512073,39.21230306220927],[-76.58107494615204,39.21237147547017],[-76.58103344226082,39.21248257290849],[-76.58103656098933,39.2124838631532],[-76.58103962469765,39.21248505861934],[-76.58104157352946,39.21248740040288],[-76.58104195594053,39.21249009690642],[-76.58104202880988,39.21249285806187],[-76.58104185742508,39.21249560843668],[-76.58104136322034,39.21249831892528],[-76.58104077292747,39.21250102636846],[-76.58104011202516,39.21250372995645],[-76.58103937590846,39.21250642516884],[-76.58103855884109,39.21250910297734],[-76.58103765506016,39.21251175885751],[-76.58103665882415,39.21251438468175],[-76.5810355226599,39.21251698028062],[-76.58103424540965,39.21251954565],[-76.58103285603092,39.21252207909163],[-76.58103137767597,39.21252458158897],[-76.58102983814459,39.21252705143975],[-76.58102825223411,39.21252953193429],[-76.58102656336257,39.21253199674794],[-76.58102469222601,39.21253434561076],[-76.58102256069442,39.21253647555466],[-76.58101989317699,39.2125381919277],[-76.58101667480727,39.21253946314938],[-76.58101337325139,39.21254050707697],[-76.58101001604341,39.21254136704634],[-76.58100656855851,39.21254202401747],[-76.5810030955637,39.21254249083248],[-76.58099957624898,39.21254276201245],[-76.58099603377201,39.21254283764002],[-76.58099251560061,39.21254271878546],[-76.58098901604103,39.21254238921438],[-76.58098552291931,39.21254194977087],[-76.58098203091298,39.21254151753745],[-76.5809785494605,39.21254106282211],[-76.58097506681828,39.21254061350712],[-76.58096838912181,39.21254023115077],[-76.58096457177237,39.21255313832881],[-76.58094844001278,39.21261413659096],[-76.58093242497037,39.21267261848346],[-76.58090899454101,39.21275859006022],[-76.58088637013034,39.21284845678573],[-76.58086981415386,39.21291421234564],[-76.58084325929592,39.2130196440346],[-76.58084347932179,39.21302513328141],[-76.58084390551565,39.21303061245527],[-76.58084481582388,39.21303607354113],[-76.58084511356674,39.21304153964521],[-76.58084474660177,39.21304701688667],[-76.58084433447381,39.21305249486762],[-76.58084387949323,39.21305797449701],[-76.58084338513909,39.21306345488657],[-76.58084285489559,39.21306893424713],[-76.58084229108385,39.21307441168623],[-76.58084169717759,39.21307988721623],[-76.58084107433993,39.21308535994055],[-76.58084042606046,39.2130908271693],[-76.58083972337612,39.21309629150134],[-76.58083896860788,39.21310175204419],[-76.58083817216611,39.21310721063664],[-76.58083734794553,39.21311266732827],[-76.58083650751963,39.21311812306124],[-76.58083566246742,39.21312357787685],[-76.58083482783073,39.21312903363045],[-76.58083401403597,39.2131344894585],[-76.58083323380393,39.21313994810873],[-76.58083249872416,39.21314540782104],[-76.58083182383334,39.21315087135148],[-76.58083121955245,39.21315633873724],[-76.58083069861827,39.21316181002384],[-76.5808302424887,39.21316728784736],[-76.58082982917446,39.21317277032772],[-76.58082946214383,39.2131782583781],[-76.58082914372864,39.2131837493045],[-76.58082888087087,39.21318924403243],[-76.58082867474974,39.21319473896304],[-76.58082853346518,39.21320023502604],[-76.58082845702782,39.21320573041985],[-76.58082845355351,39.21321122337196],[-76.58082852420024,39.21321671388646],[-76.58082867592066,39.21322220108745],[-76.58082890873067,39.21322768227263],[-76.58082921333539,39.21323316281347],[-76.58082958163476,39.21323864178026],[-76.58083000552372,39.21324411914402],[-76.58083048035991,39.21324959668981],[-76.58083100036463,39.21325507259535],[-76.58083155974305,39.21326054774068],[-76.58083215038995,39.21326602209702],[-76.58083276883174,39.21327149565178],[-76.58083340812097,39.21327696838021],[-76.58083406130498,39.21328244115828],[-76.58083472376289,39.2132879121679],[-76.58083538853671,39.21329338318579],[-76.58083605100009,39.21329885329463],[-76.58083670420051,39.21330432337037],[-76.58083734235368,39.21330979249154],[-76.58083796661226,39.21331526156312],[-76.58083858622342,39.21332073332038],[-76.58083920583468,39.21332620507763],[-76.58083982776179,39.21333167684318],[-76.5808404589575,39.21333714774102],[-76.58084110404803,39.21334261868849],[-76.58084176535975,39.2133480878923],[-76.58084244868752,39.21335355447243],[-76.58084315982084,39.21335901844949],[-76.5808439010754,39.2133644798318],[-76.58084467825142,39.21336993683854],[-76.58084549713827,39.21337538949026],[-76.58084635889924,39.21338083689049],[-76.58084727163428,39.21338627996886],[-76.58084822956454,39.21339171690317],[-76.58084922108452,39.21339715215589],[-76.58085024619955,39.21340258482624],[-76.58085130143597,39.21340801490182],[-76.58085238795158,39.21341344238675],[-76.58085350344133,39.21341886547123],[-76.58085464904717,39.21342428686173],[-76.58085582246923,39.21342970384769],[-76.58085702370226,39.21343511732979],[-76.5808582504304,39.21344052729981],[-76.58085950381684,39.21344593286114],[-76.58086078154057,39.21345133490623],[-76.5808620836016,39.21345673343511],[-76.58086340885259,39.21346212664213],[-76.5808647561304,39.21346751542389],[-76.58086613818247,39.21347289802432],[-76.58086757007213,39.21347827269577],[-76.58086904832037,39.21348364032645],[-76.58087056596916,39.21348900269317],[-76.58087211607653,39.21349435887033],[-76.58087369399483,39.21349971154368],[-76.58087529161891,39.21350506068423],[-76.58087690314866,39.21351040807288],[-76.58087852278916,39.21351575458965],[-76.58088014358783,39.21352110111057],[-76.5808817597552,39.21352644761487],[-76.58088336549108,39.21353179588348],[-76.58088495267958,39.21353714768895],[-76.58088651668913,39.21354250301469],[-76.580888050567,39.21354786273672],[-76.58088954271301,39.21355323041671],[-76.58089098616908,39.21355860783135],[-76.58089239137223,39.21356399231557],[-76.58089376874887,39.2135693830059],[-76.58089512989916,39.21357477634056],[-76.58089648525488,39.21358017055531],[-76.58089784524776,39.21358556388578],[-76.58089921915683,39.21359095366283],[-76.58090061972963,39.21359633813042],[-76.58090205739795,39.21360171552418],[-76.58090354144613,39.21360708227417],[-76.5809050834586,39.21361243752102],[-76.58090669387761,39.21361777769885],[-76.5809083842822,39.21362310284903],[-76.58091016396214,39.21362840850082],[-76.58091204449644,39.21363369469559],[-76.58091401777978,39.2136389614044],[-76.58091607336995,39.21364421219301],[-76.58091819967721,39.21364944882161],[-76.58092038859641,39.2136546712613],[-76.58092262736403,39.21365988397034],[-76.58092490555896,39.21366508691158],[-76.58092721390217,39.21367028275412],[-76.58092954079865,39.213675474159],[-76.58093187582737,39.21368066108898],[-76.58093420854594,39.21368584710986],[-76.5809365285226,39.21369103398597],[-76.58093885198932,39.2136962181721],[-76.58094119168814,39.21370139881308],[-76.58094354530876,39.21370657499977],[-76.58094591399831,39.21371174853789],[-76.58094737966776,39.2137149326287],[-76.58094829429378,39.21371691761345],[-76.58095068734248,39.21372208403223],[-76.58095309199172,39.21372724688919],[-76.58095550707837,39.21373240708105],[-76.58095793144456,39.21373756460366],[-76.58096036393228,39.21374271945282],[-76.58096280453633,39.21374787252935],[-76.58096525209878,39.21375302382914],[-76.5809677066249,39.21375817245139],[-76.58097016463037,39.2137633201852],[-76.58097262843637,39.21376846613814],[-76.58097509456387,39.21377361119846],[-76.58097758505009,39.21377874913948],[-76.58098012077457,39.21378387373029],[-76.58098269128955,39.21378898943743],[-76.58098528732657,39.21379409712859],[-76.58098789728,39.21379920126628],[-76.58099051303397,39.21380430362303],[-76.58099312415139,39.21380940686394],[-76.5809957201899,39.21381451455487],[-76.58099829187569,39.21381962846423],[-76.58100082992422,39.21382475216201],[-76.58100332274054,39.21382988830917],[-76.58100576220876,39.21383503867828],[-76.58100813672318,39.21384020773179],[-76.58101044976824,39.21384539368066],[-76.58101271526522,39.21385059207062],[-76.58101494133015,39.2138558011291],[-76.58101713259454,39.21386102087266],[-76.58101929371132,39.2138662477148],[-76.58102143163313,39.21387148077952],[-76.58102355215485,39.21387671918676],[-76.58102566107662,39.21388196115564],[-76.58102776188275,39.21388720489711],[-76.58102986268388,39.21389244953927],[-76.58103196696966,39.21389769239223],[-76.58103408169278,39.21390293258011],[-76.58103621265346,39.213908168322],[-76.58103836448858,39.21391339873367],[-76.58104054415622,39.21391862203841],[-76.58104275629854,39.21392383645126],[-76.58104500439467,39.21392904108379],[-76.58104726524404,39.21393424305948],[-76.58104952956741,39.21393944504749],[-76.58105179968059,39.21394464705617],[-76.58105408138914,39.21394984640381],[-76.58105637701941,39.21395504129721],[-76.58105869004515,39.21396023174879],[-76.5810610251033,39.21396541687423],[-76.58106338568878,39.21397059308297],[-76.58106577527001,39.2139757612881],[-76.58106819733136,39.21398091970057],[-76.58107065536252,39.21398606563042],[-76.58107315398968,39.21399119999502],[-76.58107569554471,39.21399632010029],[-76.5810782846645,39.21400142506202],[-76.58108089812727,39.21400652560671],[-76.58108352896426,39.21401162531255],[-76.58108618413884,39.21401672150208],[-76.58108886715134,39.21402180968387],[-76.58109158495986,39.21402688808125],[-76.58109434338041,39.21403195221102],[-76.58109714705527,39.21403700028821],[-76.58110000295315,39.21404202873455],[-76.58110291687957,39.21404703486844],[-76.58110589349261,39.21405201420259],[-76.58110893859252,39.21405696495611],[-76.58111205915324,39.21406188265004],[-76.5811152598171,39.21406676549933],[-76.58111857772208,39.21407159922407],[-76.58112207668044,39.21407636243327],[-76.58112572535447,39.21408106762602],[-76.58112949125901,39.21408572549566],[-76.58113334305094,39.2140903494421],[-76.58113724708198,39.21409495105534],[-76.58114116968785,39.21409954462769],[-76.5811450795466,39.21410413995596],[-76.58114894183609,39.2141087513284],[-76.5811527252238,39.21411339034325],[-76.58115639721389,39.21411806949554],[-76.58115992298963,39.21412280217271],[-76.5811632723815,39.21412759907647],[-76.58116603576677,39.21413260827442],[-76.58116792188926,39.21413793411858],[-76.58116943324319,39.21414338833752],[-76.58117107811788,39.21414878177989],[-76.58117336481334,39.21415392349271],[-76.58117675408644,39.21415863406337],[-76.58118108585931,39.21416296156266],[-76.58118582385106,39.21416712927174],[-76.58119042597512,39.21417136315355],[-76.5811945414812,39.21417584211249],[-76.58119846399957,39.21418045189654],[-76.58120252495749,39.21418495227923],[-76.58120705114527,39.21418910391827],[-76.58121230881251,39.21419272310364],[-76.58121806430628,39.21419596393579],[-76.58122392827212,39.21419907183911],[-76.5812297352992,39.21420221376866],[-76.58123560634633,39.21420529917715],[-76.58124161402171,39.21420818960343],[-76.58124783092836,39.21421074748698],[-76.58125421704928,39.21421308258037],[-76.58126071403757,39.21421527124173],[-76.58126731047885,39.21421728550605],[-76.58127399034286,39.2142190946896],[-76.58128074107326,39.21422066812097],[-76.58128754839254,39.21422207060549],[-76.58129440268169,39.21422336246113],[-76.58130129458178,39.21422455986855],[-76.58130821590775,39.21422567631025],[-76.58131515845865,39.21422672797105],[-76.58132211172833,39.21422772922595],[-76.58132906983163,39.21422869626799],[-76.58133602226768,39.21422964257142],[-76.58134297831046,39.21423056636782],[-76.58134994261272,39.21423146407057],[-76.58135691285871,39.21423233567149],[-76.58136389021163,39.21423318027392],[-76.58137087351354,39.21423399787372],[-76.58137786161714,39.21423478666524],[-76.58138485451185,39.21423554845],[-76.58139185105036,39.21423628142234],[-76.58139885123791,39.21423698468148],[-76.58140585506929,39.21423765912829],[-76.58141286367041,39.21423831017131],[-76.58141987698296,39.21423894771904],[-76.58142689735462,39.21423956637508],[-76.58143392135403,39.21424015892104],[-76.58144095016041,39.21424072175792],[-76.581447981511,39.21424124586987],[-76.58145501774283,39.21424172766213],[-76.58146205542998,39.21424215901539],[-76.58146909459894,39.21424253542588],[-76.58147613529222,39.21424284968754],[-76.58148317644205,39.21424308648317],[-76.58149022538872,39.21424317918125],[-76.58149727973677,39.21424314128491],[-76.5815043381053,39.21424301062202],[-76.58151139914527,39.21424281961591],[-76.5815184626496,39.21424260339626],[-76.5815255249323,39.21424239798129],[-76.58153258463911,39.21424223669494],[-76.58153964764438,39.21424210514566],[-76.58154672522924,39.21424185744726],[-76.58155381006405,39.21424155842971],[-76.58156089004427,39.21424129722723],[-76.58156795537586,39.21424116388305],[-76.58157499281236,39.21424124482481],[-76.58158199371779,39.21424163009989],[-76.58158895455486,39.21424233050507],[-76.58159588860185,39.214243254208],[-76.58160279964046,39.21424434897689],[-76.5816096972259,39.21424556530285],[-76.58161658513963,39.21424685095408],[-76.58162347293687,39.21424815642162],[-76.58163036324655,39.21424942856882],[-76.58163726562906,39.21425061698606],[-76.58164417243648,39.2142518405491],[-76.5816510749851,39.21425319741213],[-76.58165798635035,39.21425443360153],[-76.58166492079744,39.21425528974324],[-76.58167189140163,39.21425551186358],[-76.58167889357885,39.21425509183915],[-76.58168591868895,39.21425431698836],[-76.58169295566971,39.21425349263654],[-76.58169999693837,39.21425292322055],[-76.58170704021626,39.2142526024269],[-76.58171409009668,39.2142523402071],[-76.58172114433812,39.2142521239423],[-76.5817282018463,39.21425194281914],[-76.58173525921652,39.21425178511537],[-76.58174231652305,39.21425163822035],[-76.58174937508299,39.21425147511529],[-76.58175644100409,39.21425124177513],[-76.58176351046784,39.21425099673701],[-76.58177057726029,39.21425081204129],[-76.58177763632547,39.21425075973243],[-76.58178467913892,39.21425091094167],[-76.58179170310913,39.21425131250054],[-76.58179871705762,39.21425184283492],[-76.58180572354951,39.21425245961727],[-76.58181272499618,39.21425314664216],[-76.58181972266691,39.2142538849977],[-76.58182671782039,39.21425465757354],[-76.58183371287855,39.21425544636265],[-76.58184070794221,39.21425623425061],[-76.58184770543845,39.21425700232959],[-76.58185470778403,39.21425773349345],[-76.5818617139269,39.21425840972279],[-76.58186872859967,39.21425901391961],[-76.58187575194002,39.21425952266409],[-76.58188278871751,39.21425991255293],[-76.58188983530994,39.21426020879511],[-76.5818968892317,39.21426044020674],[-76.58190394800788,39.21426063380245],[-76.5819110079897,39.21426081929498],[-76.58191806553378,39.21426102549642],[-76.58192511816526,39.21426127942128],[-76.58193216712679,39.21426156666151],[-76.58193921487748,39.21426186290484],[-76.58194626375965,39.2142621636557],[-76.58195331146801,39.21426246710431],[-76.58196035917116,39.21426277145324],[-76.58196740804291,39.21426307400431],[-76.58197445578328,39.21426337204709],[-76.58198150472401,39.21426366288741],[-76.58198855371789,39.21426394471974],[-76.58199560394389,39.21426421394505],[-76.58200265541277,39.21426446876188],[-76.58200970700358,39.21426470286079],[-76.58201675984778,39.21426492074963],[-76.58202381391888,39.2142651269323],[-76.58203086804298,39.21426532410696],[-76.58203792218308,39.21426551857885],[-76.58204497631792,39.21426571395111],[-76.58205203042094,39.21426591472748],[-76.58205908446574,39.21426612541185],[-76.5820661372784,39.21426634870232],[-76.58207319006998,39.21426657559541],[-76.58208024284563,39.21426680519038],[-76.58208729445285,39.21426703658235],[-76.5820943472074,39.21426726977948],[-76.58210139995144,39.21426750477777],[-76.58210845152699,39.21426774157298],[-76.58211550425517,39.21426797927269],[-76.5821225558096,39.21426821967015],[-76.58212960735879,39.21426846096794],[-76.58213665889743,39.2142687040668],[-76.58214371158876,39.21426894807014],[-76.58215076310627,39.21426919477124],[-76.58215781460265,39.21426944507495],[-76.58216486492,39.21426969897717],[-76.58217191637938,39.21426995558534],[-76.58217896667031,39.2142702139905],[-76.5821860181086,39.2142704742009],[-76.58219306838367,39.21427073530752],[-76.58220011982206,39.21427099551703],[-76.58220717010262,39.21427125572207],[-76.582214221557,39.21427151322848],[-76.58222127302734,39.21427176803221],[-76.58222832335574,39.21427202012905],[-76.58223537487386,39.21427226682507],[-76.58224242641323,39.21427250991756],[-76.58224947915298,39.21427274580774],[-76.58225653192983,39.2142729753921],[-76.5822635847597,39.21427319596843],[-76.58227063763735,39.21427340843744],[-76.58227769172058,39.21427361280334],[-76.58228474584629,39.21427380996267],[-76.58229180000912,39.21427400081628],[-76.58229885536697,39.21427418536823],[-76.58230591075665,39.21427436451518],[-76.58231296501491,39.21427453915379],[-76.58232002046293,39.21427470839154],[-76.58232707961783,39.21427483800768],[-76.58233414132168,39.21427492799811],[-76.58234120545788,39.21427499817959],[-76.5823482696153,39.21427506475755],[-76.58235533135624,39.2142751484414],[-76.58236238941691,39.21427526724214],[-76.58236944253869,39.21427543827021],[-76.58237648828933,39.21427568133404],[-76.58238352539428,39.21427601624637],[-76.58239054773574,39.21427649883386],[-76.58239755761889,39.21427713090619],[-76.58240455529807,39.21427786922683],[-76.58241154680645,39.21427867238133],[-76.58241853355094,39.21427949803802],[-76.58242551924364,39.21428030567489],[-76.58243249898808,39.21428114031363],[-76.58243946659215,39.2142820703915],[-76.58244642932112,39.21428304188758],[-76.58245339099302,39.21428399626462],[-76.58246036118886,39.2142848795099],[-76.58246734372129,39.21428563398697],[-76.582474347024,39.21428620387739],[-76.5824813785263,39.21428650723659],[-76.58248843466438,39.21428655936515],[-76.58249550789755,39.21428646112363],[-76.58250258489568,39.21428631335213],[-76.58250965811291,39.21428621781208],[-76.58251671537715,39.2142862753476],[-76.58252374682669,39.21428658771189],[-76.58253075244573,39.21428715760719],[-76.58253773962136,39.21428791029503],[-76.58254471450856,39.21428878364338],[-76.58255168325684,39.21428971642104],[-76.58255865318971,39.21429064469854],[-76.58256563045677,39.21429150724474],[-76.58257261506326,39.21429230315885],[-76.58257959968573,39.21429309637025],[-76.5825865843137,39.21429388868045],[-76.58259356894709,39.21429468008949],[-76.58260055474915,39.21429546970074],[-76.58260754056198,39.21429625751001],[-76.58261452638553,39.21429704351733],[-76.58262151338832,39.21429782592531],[-76.58262850040182,39.21429860653138],[-76.58263548743673,39.21429938353396],[-76.58264247680872,39.21430015694131],[-76.58264946862377,39.2143009087382],[-76.58265646402383,39.21430164163103],[-76.58266346177692,39.2143023682263],[-76.58267045600348,39.21430310381648],[-76.58267744778202,39.21430386191702],[-76.58268443240686,39.21430465512218],[-76.58269141342575,39.21430547083362],[-76.58269838963325,39.21430631715408],[-76.58270535398124,39.21430721117333],[-76.58271230405873,39.21430816909691],[-76.58271923280711,39.21430920981605],[-76.58272614491092,39.21431032433965],[-76.58273304398156,39.21431148926023],[-76.58273993593561,39.21431268298009],[-76.58274682082605,39.21431389649157],[-76.5827536843186,39.21431520450863],[-76.58276053714677,39.21431655392325],[-76.58276739596057,39.21431787002987],[-76.58277427740465,39.2143190790236],[-76.58278119698167,39.2143201043932],[-76.58278818331222,39.2143208048178],[-76.58279522447847,39.21432123790495],[-76.5828022834738,39.21432159268717],[-76.5828093233182,39.21432205369301],[-76.58281633673624,39.21432267674504],[-76.58282333812552,39.21432337632031],[-76.58283240414521,39.21432446426514],[-76.5828779633478,39.2143597008255],[-76.5829025284676,39.21434282373344],[-76.58290824197313,39.21434948279665],[-76.5829412403495,39.21433279691028],[-76.58295656786787,39.21433536906632],[-76.58296665954418,39.21433689842537],[-76.58297512167844,39.21433789233345],[-76.58300230235179,39.21434056966041],[-76.583044130543,39.2143476452948],[-76.58310243023092,39.21436006791757],[-76.58313536538742,39.21436321875],[-76.58314494942542,39.21436601188758],[-76.5831648368948,39.21438653746511],[-76.58321840106069,39.21436634124475],[-76.58330078724433,39.21433510919287],[-76.5833142409161,39.21433161869799],[-76.5833273135536,39.21432754854723],[-76.5833393210568,39.21432187122306],[-76.58335087979501,39.21431551401626],[-76.58336256274509,39.21430930047351],[-76.58337459270774,39.21430354395674],[-76.58338665384213,39.21429780286269],[-76.58339879886249,39.21429217105968],[-76.58341108503032,39.21428675684467],[-76.58342357077022,39.21428166761802],[-76.58343629635023,39.21427694766082],[-76.58344923324537,39.21427252480929],[-76.58346234100311,39.2142683863088],[-76.58347557917058,39.21426451940479],[-76.58348890961099,39.21426091135092],[-76.58350233929829,39.21425755766803],[-76.58351588912255,39.21425445032318],[-76.58352953372605,39.21425156940916],[-76.58354324427751,39.21424889500646],[-76.58355699772443,39.21424640901757],[-76.58357079529354,39.21424409973675],[-76.58358468530015,39.21424202138217],[-76.58359864645313,39.2142402504448],[-76.58361265514019,39.21423886430784],[-76.583626693597,39.21423793046686],[-76.58364077949332,39.21423739764005],[-76.58365490068395,39.21423716489685],[-76.58366904152864,39.21423713489735],[-76.58368317942379,39.21423721297948],[-76.58369729864465,39.21423731621544],[-76.58371140870119,39.21423858773012],[-76.5837256150633,39.21423824538525],[-76.58373905463885,39.21423497998693],[-76.58374791281419,39.2142264864177],[-76.58375261025418,39.2142160657314],[-76.58375108214798,39.21420513834207],[-76.58374222715777,39.21419610002329],[-76.58373393867269,39.2141878050561],[-76.58374406454604,39.21418073381318],[-76.58375806013815,39.21417999887704],[-76.58377253984582,39.21417983945388],[-76.58378644745945,39.21417811244251],[-76.58379953452081,39.21417433774648],[-76.58381230269855,39.21416965212929],[-76.58382493321719,39.21416454806013],[-76.58383760382793,39.21415951799582],[-76.5838504810779,39.21415499039797],[-76.58386352550151,39.21415078406951],[-76.58387658365488,39.21414660571252],[-76.58388951918793,39.21414220893027],[-76.5839024402683,39.2141377094063],[-76.58391504439307,39.21413276016819],[-76.58392700955962,39.21412698264706],[-76.58393872432718,39.21412085833704],[-76.58395026443138,39.21411450460822],[-76.58396164690829,39.21410797827023],[-76.58397289227308,39.21410133524432],[-76.58398363790654,39.21409421213104],[-76.58399399786092,39.21408670842068],[-76.5840048365892,39.21407970363777],[-76.58401648902638,39.21407354306775],[-76.58402850626993,39.21406776752239],[-76.58404060756371,39.21406207334406],[-76.5840525109885,39.21405615777176],[-76.58406400946131,39.21404979127321],[-76.58407524798642,39.21404312659445],[-76.58408646348326,39.21403643931349],[-76.5840978928817,39.21403000320665],[-76.58410973051205,39.21402405046336],[-76.58412189816967,39.21401848982737],[-76.58413422682429,39.21401311892472],[-76.58414654974554,39.21400773809181],[-76.58415874388687,39.21400220186695],[-76.58417092537906,39.21399665028274],[-76.58418309998511,39.2139910878635],[-76.58419524815268,39.21398549202038],[-76.58420734919234,39.21397983655747],[-76.58421939046201,39.21397410521597],[-76.58423147787191,39.21396840376246],[-76.58424357686945,39.21396270054717],[-76.58425558038657,39.21395688979946],[-76.584267380192,39.2139508666453],[-76.58427886920705,39.21394452711554],[-76.58428993233736,39.21393775189952],[-76.58430061333536,39.21393058348906],[-76.58431107335831,39.21392318459567],[-76.58432147008456,39.21391571881935],[-76.5843319623452,39.21390835066484],[-76.58434256279797,39.21390109368869],[-76.58435310684879,39.21389377886182],[-76.58436364975012,39.2138864622283],[-76.58437424906485,39.21387920074132],[-76.58438496580344,39.21387205586998],[-76.58439585752355,39.21386508546818],[-76.5844069542833,39.21385829774925],[-76.58441823890384,39.21385166022418],[-76.5844297375796,39.21384524775056],[-76.58444147881524,39.21383913609487],[-76.58445349109996,39.21383340372583],[-76.58446580320215,39.21382808137183],[-76.58447836008551,39.21382307605738],[-76.58449107555589,39.21381827668121],[-76.58450385880316,39.21381356942332],[-76.58451662480674,39.21380884048421],[-76.5845293206614,39.21380402842353],[-76.58454210834549,39.2137993536053],[-76.58455487418058,39.21379465258564],[-76.58456744362536,39.21378967523039],[-76.58457956399126,39.21378407024116],[-76.58459138689851,39.21377804713608],[-76.5846033707559,39.21377222187059],[-76.58461532078586,39.21376624064907],[-76.5846273557292,39.21376039124089],[-76.58463975939986,39.21375524664657],[-76.58465279521756,39.21375130322795],[-76.58466641767819,39.21374842210349],[-76.58468033639897,39.21374616356486],[-76.58469425750741,39.21374409059393],[-76.58470829942843,39.21374155504744],[-76.58472243618375,39.21373943509496],[-76.58473623025847,39.21373948210804],[-76.58474951301758,39.21374261428663],[-76.58476254554819,39.21374754894188],[-76.58477549511576,39.21375281028563],[-76.58478852781626,39.21375692432708],[-76.58480182672413,39.2137582856214],[-76.58481549547371,39.21375580459021],[-76.58482920669634,39.21375160411669],[-76.58484260624095,39.2137478331123],[-76.58485573293093,39.2137437927083],[-76.58486879910902,39.21373960526147],[-76.58488201519079,39.21373572280748],[-76.58489542042382,39.21373216620302],[-76.58490873840807,39.21372848047674],[-76.58492167782717,39.21372418718428],[-76.58493385443302,39.21371866072538],[-76.58494557790446,39.21371240753379],[-76.58495758907974,39.21370665619285],[-76.58497050496017,39.2137024267672],[-76.58498410303544,39.21369935545486],[-76.58499782571511,39.21369655931981],[-76.58501182533655,39.21369432354751],[-76.58502520007076,39.21369122802028],[-76.58503560117758,39.21368358834537],[-76.58504746100316,39.21367817335209],[-76.58506087370135,39.21367511939097],[-76.58507463987884,39.21367260624601],[-76.58508858052977,39.2136703549428],[-76.58510251433241,39.21366808649888],[-76.58511628519122,39.21366556435778],[-76.58513004891225,39.21366307461793],[-76.58514381381126,39.21366058127752],[-76.58515750338248,39.21365790030674],[-76.58517104228829,39.21365484587839],[-76.58518433810686,39.2136511834628],[-76.58519746502263,39.21364709798236],[-76.58521058052096,39.21364298453589],[-76.58522384094547,39.21363923551574],[-76.5852373277916,39.21363597371611],[-76.58525091719491,39.21363279695085],[-76.58526459662966,39.2136298673162],[-76.58527836381222,39.21362737757121],[-76.58529221414889,39.21362551956594],[-76.58530617677741,39.21362445914713],[-76.58532027300862,39.21362411622042],[-76.58533444382614,39.21362428610001],[-76.58534862789766,39.21362476409178],[-76.58536276273814,39.21362534459698],[-76.58537684262114,39.21362601678594],[-76.58539091079494,39.21362690962319],[-76.58540496874352,39.21362796726552],[-76.58541901562991,39.21362913476239],[-76.58543305409073,39.21363035717548],[-76.58544708445196,39.21363157865747],[-76.58546112418205,39.21363278215525],[-76.58547516379168,39.21363400636889],[-76.58548919376003,39.21363529540298],[-76.58550319994006,39.21363669244518],[-76.58551717164779,39.21363824249663],[-76.58553109474155,39.21363998784425],[-76.58554496415344,39.21364200323488],[-76.58555877753631,39.21364429406498],[-76.58557253284259,39.21364681438751],[-76.58558622918258,39.21364951825952],[-76.58559986449819,39.21365236153544],[-76.58561343045817,39.21365538291952],[-76.58562694106243,39.21365856444558],[-76.58564041985809,39.21366183953895],[-76.58565388922891,39.21366514252171],[-76.58566737271116,39.21366840862073],[-76.58568089386235,39.21367156945983],[-76.58569446917141,39.21367457735579],[-76.58570807379698,39.213677522299],[-76.58572170073381,39.2136804141733],[-76.58573535360266,39.21368322776964],[-76.58574903717171,39.2136859396845],[-76.58576275505645,39.21368852560958],[-76.58577651201459,39.21369096394285],[-76.58579032263629,39.21369333400462],[-76.58580419192619,39.21369557185697],[-76.58581811500883,39.21369752074686],[-76.58583208932438,39.21369902392937],[-76.58584610989742,39.2136999417658],[-76.58586018169751,39.21370041479557],[-76.58587429124165,39.21370057088196],[-76.58588842764109,39.21370049015599],[-76.585902573086,39.21370024822046],[-76.58591671668773,39.21369992520642],[-76.58593084178915,39.21369959762149],[-76.58594495184828,39.21369926818024],[-76.58595906484801,39.21369883155474],[-76.58597317166694,39.21369826339167],[-76.58598726317823,39.21369754023861],[-76.58600133139736,39.21369664134941],[-76.586015386572,39.21369559648594],[-76.58602947314598,39.21369452831129],[-76.58604355460217,39.21369334481694],[-76.58605758293874,39.2136919377398],[-76.58607151364323,39.21369019612687],[-76.58608530218746,39.21368801172743],[-76.5860988973949,39.21368522492271],[-76.58611232563439,39.21368188084494],[-76.58612565278298,39.21367819951697],[-76.58613894820196,39.21367439917246],[-76.58615227893169,39.21367069893772],[-76.58616570865456,39.21366729810986],[-76.58617924579617,39.21366414177089],[-76.58619283210689,39.2136610918959],[-76.58620640694241,39.21365802396325],[-76.58621991195847,39.21365481616182],[-76.58623328535789,39.21365134306512],[-76.58624646306973,39.21364747203252],[-76.58625936154331,39.21364303522428],[-76.58627206201308,39.21363820047208],[-76.58628468579398,39.21363321231538],[-76.58629735534859,39.21362831709909],[-76.58631019082371,39.21362376116006],[-76.58632329980793,39.21361976016409],[-76.58633661038755,39.21361613640376],[-76.5863500595237,39.21361277886072],[-76.58636361617883,39.21360964869196],[-76.58637724699443,39.21360670794702],[-76.58639092093813,39.21360391688214],[-76.58640460921474,39.21360124927318],[-76.58641838258573,39.21359888192259],[-76.58643224120875,39.21359678780753],[-76.58644614420739,39.21359482806351],[-76.58646004837364,39.21359286652046],[-76.58647390935202,39.21359076520248],[-76.58648770922446,39.21358841955589],[-76.58650166862367,39.21358611950892],[-76.58651563443554,39.21358371228989],[-76.58652931792099,39.21358087169959],[-76.58654243496706,39.21357727245587],[-76.58655360523387,39.21357094238999],[-76.58656307135782,39.21356236967991],[-76.58657689817004,39.21355957192574],[-76.58658143794572,39.21356998923758],[-76.58658995254198,39.21357548967734],[-76.58660412628151,39.21357455956034],[-76.58661912173467,39.21357250636007],[-76.58663317280066,39.21357116685289],[-76.58664716926745,39.21356965870564],[-76.58666115901174,39.21356811179944],[-76.5866751607426,39.21356669374548],[-76.58668919084299,39.2135655739483],[-76.58670326239526,39.21356489207494],[-76.58671736880882,39.21356458684916],[-76.58673149480109,39.21356449877883],[-76.58674562739476,39.21356447018159],[-76.58675975246494,39.21356434156952],[-76.58677385703936,39.21356395435939],[-76.58678792712377,39.21356312654422],[-76.58680197248923,39.21356196985528],[-76.58681601577423,39.21356077262217],[-76.58683007848599,39.21355981866667],[-76.5868441790668,39.21355932153876],[-76.58685831138709,39.21355914069501],[-76.58687244896237,39.21355905174772],[-76.58688656761309,39.2135588321189],[-76.58690063969124,39.21355825831746],[-76.58691458127286,39.21355662924048],[-76.58692840851029,39.21355415392603],[-76.58694234003613,39.21355266082823],[-76.58695641937452,39.21355243114401],[-76.58697055688565,39.21355275113924],[-76.58698469776596,39.21355328823287],[-76.58699882764921,39.21355392437195],[-76.58701302872555,39.21355506159411],[-76.58702722134619,39.21355625913714],[-76.58704131131186,39.2135569897126],[-76.58705520209161,39.21355672872641],[-76.58706855837904,39.21355399771792],[-76.5870814482797,39.21354903203087],[-76.58709465022599,39.21354496461818],[-76.58710842571132,39.2135426260191],[-76.58712245617609,39.21354104317003],[-76.58713654209008,39.21354008025164],[-76.58715062352061,39.21353968931168],[-76.58716474541055,39.21353970836773],[-76.5871788838888,39.21353986169681],[-76.58719301394166,39.21353987086957],[-76.58720712742642,39.21353954309027],[-76.58722125455368,39.21353905952217],[-76.58723534871869,39.21353827047168],[-76.58724934860936,39.21353696674199],[-76.58726333982705,39.21353536211925],[-76.58727735494543,39.21353362966804],[-76.58729129865462,39.2135316321344],[-76.58730507911318,39.21352923317743],[-76.58731860216376,39.21352629644819],[-76.58733153733522,39.21352210466373],[-76.58734392957028,39.21351669491428],[-76.58735636785238,39.21351133126527],[-76.58736941488996,39.21350721643638],[-76.58738278294976,39.21350365131038],[-76.58739008917971,39.213501700687],[-76.58739620669711,39.21350006746233],[-76.58740968006518,39.21349651261215],[-76.58741065765281,39.21349626112831],[-76.58742319931865,39.2134930317858],[-76.58743675956431,39.2134896700051],[-76.58745035590896,39.21348647229189],[-76.58746398228598,39.21348348636619],[-76.58747763612843,39.21348075545649],[-76.58749130906438,39.21347832547314],[-76.58750499966408,39.21347624325176],[-76.58751878733753,39.21347479191668],[-76.58753292057919,39.21347484790039],[-76.58754718192337,39.21347617353304],[-76.58756130945272,39.21347840938312],[-76.58757503893369,39.21348119601132],[-76.58758831048209,39.2134846764314],[-76.5876012560708,39.21348925465715],[-76.58761377324196,39.21349462856707],[-76.58762576303727,39.21350049154797],[-76.58763661125265,39.21350732966501],[-76.58764626393653,39.21351546070451],[-76.5876562713659,39.21352332005307],[-76.58766845796281,39.21352998992],[-76.58767607588528,39.21353837233139],[-76.58767727867641,39.21354919133351],[-76.5876766153589,39.21356072890732],[-76.58767778395436,39.2135716540814],[-76.58768431546379,39.21358088391277],[-76.58769511678307,39.21358862264028],[-76.5877067706685,39.2135949077995],[-76.5877197180987,39.21359957249343],[-76.58772902759389,39.21360758431776],[-76.58773786425718,39.21361626376046],[-76.58774716890542,39.21362431339909],[-76.58775173963161,39.21363461547359],[-76.58775706737421,39.21364995016791],[-76.58775748765164,39.21365554369219],[-76.58775764220557,39.2136612335673],[-76.58775827251252,39.21366675036228],[-76.58776012004415,39.21367182554676],[-76.58776355636608,39.21367648114396],[-76.58776814171961,39.21368087324559],[-76.58777349168531,39.21368480052778],[-76.58777922301159,39.21368805986913],[-76.58778541703147,39.21369040384063],[-76.58779250515246,39.21369171865762],[-76.58779977784577,39.2136921558611],[-76.58780674994088,39.21369171554845],[-76.58781372403665,39.21368953403299],[-76.58781835149436,39.21368567512757],[-76.5878205884129,39.21368052060942],[-76.58782203183853,39.21367482193472],[-76.58782401906075,39.21366939630516],[-76.58782779623994,39.21366500115052],[-76.58783257453058,39.21366108962827],[-76.58783772954817,39.21365730824064],[-76.58784319515654,39.21365368017564],[-76.58784890636167,39.21365023132763],[-76.58785479818542,39.21364698488857],[-76.58786080448108,39.21364396584811],[-76.58786686141801,39.2136411992038],[-76.58787306460262,39.21363897083901],[-76.58787999923666,39.21363820070464],[-76.58788729497572,39.21363805788078],[-76.58789444844459,39.21363748938827],[-76.58790115983868,39.21363587984165],[-76.58790779828732,39.21363407006514],[-76.58791440490505,39.21363215838824],[-76.58792098423994,39.21363015923941],[-76.58792753620821,39.21362808703086],[-76.58793406303687,39.21362595708366],[-76.58794056927381,39.21362378382634],[-76.58794705599334,39.21362158167514],[-76.58795352542764,39.21361936505039],[-76.58795998558786,39.21361715019427],[-76.58796646879067,39.21361495523589],[-76.58797296587741,39.21361276212743],[-76.58797945728922,39.21361054918152],[-76.58798592230941,39.21360829470669],[-76.58799234023161,39.21360597520992],[-76.58799869266009,39.21360356810708],[-76.58800495887813,39.21360105170677],[-76.58801111817937,39.21359840251594],[-76.58801715099969,39.21359559974797],[-76.58802310347217,39.21359267509217],[-76.58802901475102,39.21358966561811],[-76.58803487441517,39.21358657128908],[-76.58804067434879,39.21358339387826],[-76.58804640296779,39.2135801342457],[-76.58805205216154,39.21357679326379],[-76.58805761150384,39.21357337179668],[-76.58806307172617,39.21356987071261],[-76.5880684235497,39.21356629268142],[-76.58807365655866,39.21356263676573],[-76.58807872347769,39.21355886856995],[-76.5880834434313,39.21355482982253],[-76.58808788099526,39.21355056669],[-76.58809213530468,39.21354615608677],[-76.58809630664207,39.21354167673282],[-76.58810049182661,39.21353720553432],[-76.58810479114615,39.21353282031043],[-76.58810930257779,39.21352859797152],[-76.58811412296167,39.21352461182063],[-76.58811924653442,39.21352085733368],[-76.58812458916138,39.21351726665665],[-76.58813006551877,39.21351377733625],[-76.58813559145098,39.21351032512158],[-76.58814108396031,39.21350684576596],[-76.58814645773343,39.21350327501444],[-76.5881516286148,39.21349954861629],[-76.58815655972401,39.21349563671628],[-76.58816141481375,39.21349165518917],[-76.5881662146269,39.21348762122255],[-76.58817095335833,39.21348353749845],[-76.58817562521851,39.21347940399647],[-76.58818022672858,39.21347522160528],[-76.58818475208341,39.21347099300679],[-76.5881891978092,39.21346671818891],[-76.58819355810097,39.2134623998335],[-76.58819782717435,39.21345803701956],[-76.5882020420768,39.21345363077791],[-76.58820627811859,39.21344917326573],[-76.58821046935712,39.21344465434309],[-76.58821453710244,39.21344006562679],[-76.58821840381741,39.21343539963857],[-76.58822199082266,39.21343064619373],[-76.58822522174405,39.21342579691724],[-76.58822801789185,39.213420843426],[-76.58823027288608,39.21341576012492],[-76.58823191749855,39.21341050443437],[-76.58823307542039,39.21340511191887],[-76.58823388652731,39.2133996227036],[-76.58823448607883,39.21339407419519],[-76.58823501162426,39.21338850831227],[-76.58823560188631,39.21338296427516],[-76.58823639096143,39.21337748038724],[-76.58823717418953,39.21337200638738],[-76.58823777469475,39.21336649301274],[-76.58823829192556,39.21336096313183],[-76.58823882996703,39.21335543872863],[-76.58823949173069,39.21334994448529],[-76.58824037782796,39.21334450237364],[-76.58824159117557,39.21333913617511],[-76.58824323470066,39.2133338678695],[-76.58824552692636,39.21332875317131],[-76.58824849444241,39.21332379938002],[-76.58825190021476,39.21331894801389],[-76.58825550488838,39.21331414148381],[-76.58825907143458,39.21330932040733],[-76.58826235818798,39.21330442628653],[-76.58826512927257,39.21329940064386],[-76.5882673582136,39.21329421636302],[-76.58826938740806,39.2132889331962],[-76.5882712062992,39.21328357452657],[-76.58827278465127,39.21327816276769],[-76.58827409570738,39.21327271944435],[-76.58827511386352,39.21326726698633],[-76.58827581004699,39.21326182691033],[-76.58827608459042,39.21325641417991],[-76.58827558221408,39.21325099421968],[-76.58827449631761,39.21324556230349],[-76.58827311057944,39.21324012032742],[-76.58827171214647,39.21323467110056],[-76.5882705823864,39.21322921561011],[-76.58826998994064,39.2132237529971],[-76.588269915224,39.21321826607794],[-76.58827009648505,39.21321276564443],[-76.58827026615666,39.21320726697178],[-76.58827016151244,39.21320174932107],[-76.5882698070039,39.21319618935772],[-76.58826940044773,39.21319061930316],[-76.58826914080807,39.21318507318433],[-76.5882692270541,39.21317958412755],[-76.58826985699193,39.21317418615573],[-76.58827123305912,39.21316891330797],[-76.58827347786146,39.21316378853405],[-76.58827638318198,39.2131587759729],[-76.58827968411958,39.21315383055671],[-76.5882831169413,39.21314890542031],[-76.58828641791449,39.21314395369857],[-76.58828932214334,39.21313892942305],[-76.5882915658847,39.21313378753018],[-76.58829284844239,39.2131284657119],[-76.58829319877948,39.21312296136753],[-76.58829299971926,39.21311735150575],[-76.58829263754278,39.21311171584986],[-76.58829250084155,39.21310613503187],[-76.58829297590171,39.21310068787423],[-76.58829445132497,39.21309545320752],[-76.58829684265311,39.21309041902526],[-76.58829974971034,39.2130855055554],[-76.58830305919582,39.21308068267468],[-76.58830665662978,39.21307592385875],[-76.58831042523249,39.21307119987294],[-76.58831425053469,39.21306648239131],[-76.58831801806724,39.21306174308823],[-76.58832161336103,39.21305695363773],[-76.58832492079421,39.21305208480935],[-76.588328080273,39.21304717132352],[-76.58833124328243,39.21304224794142],[-76.58833438090664,39.21303730915684],[-76.58833746422454,39.21303235036453],[-76.58834046432541,39.21302736515756],[-76.58834335229868,39.21302234712901],[-76.5883460980705,39.21301729076875],[-76.58834867388296,39.21301219057471],[-76.58835104850964,39.21300704013191],[-76.58835313294983,39.21300181210464],[-76.58835491797178,39.212996501056],[-76.58835648681827,39.2129911288966],[-76.58835791808463,39.21298572022334],[-76.58835929270305,39.21298029603803],[-76.5883606904268,39.21297488094158],[-76.58836219218267,39.21296949683661],[-76.58836387657657,39.21296416651836],[-76.58836582453002,39.21295891279019],[-76.58836811695934,39.2129537593563],[-76.58837085675454,39.21294873450171],[-76.58837401155226,39.2129438282044],[-76.58837746690419,39.21293900853543],[-76.58838111067286,39.21293424447492],[-76.58838482609941,39.21292950318522],[-76.58838849989381,39.21292475274146],[-76.58839201876579,39.21291996121909],[-76.58839526826731,39.21291509668929],[-76.58839813511345,39.21291012632655],[-76.58840050946688,39.21290502182147],[-76.58840240980689,39.21289979134595],[-76.58840393555526,39.21289446227215],[-76.58840517457556,39.21288905832856],[-76.58840622053148,39.21288360146247],[-76.5884071624445,39.21287811540643],[-76.58840809282033,39.21287262210365],[-76.58840910183307,39.21286714619155],[-76.5884102808356,39.21286170870845],[-76.58841172115999,39.21285633429579],[-76.5884133630607,39.21285094257453],[-76.58841517421087,39.21284551721718],[-76.58841732398959,39.21284020204199],[-76.58841997714435,39.21283514085106],[-76.58842332156999,39.21283047932906],[-76.58842794913276,39.21282638709705],[-76.58843360626086,39.21282286236483],[-76.58843967030955,39.21281985160394],[-76.58844585435298,39.21281731417366],[-76.58845236260717,39.21281517692611],[-76.58845906379881,39.21281331419229],[-76.5884658185703,39.21281159667172],[-76.58847254750263,39.21280994211487],[-76.58847931527555,39.21280837867272],[-76.58848611391437,39.21280688379775],[-76.58849293313911,39.21280543313286],[-76.58849975920646,39.21280400050724],[-76.58850658184686,39.21280255976212],[-76.58851338731182,39.21280108562752],[-76.58852016648439,39.21279955284954],[-76.58852690561605,39.21279793615811],[-76.58853359212667,39.21279620848571],[-76.58854022378387,39.21279435541202],[-76.58854684193756,39.21279243473204],[-76.58855344770899,39.21279045275516],[-76.58856002724015,39.21278840312733],[-76.5885665678516,39.2127862758955],[-76.5885730556957,39.21278406290409],[-76.58857947925107,39.21278175420411],[-76.58858582235418,39.21277934163189],[-76.58859207463101,39.21277681704407],[-76.5885982222391,39.21277417138426],[-76.58860426880351,39.21277137854256],[-76.58861022481288,39.21276842684565],[-76.58861218188549,39.21276739150299],[-76.58911731063931,39.21324259015762],[-76.58911192676203,39.21324571773399],[-76.58909997613087,39.21325208404404],[-76.58908832053685,39.21325869009291],[-76.58907778609142,39.21326604681405],[-76.58906835660503,39.21327415054796],[-76.5890592948529,39.21328253751327],[-76.58905052476845,39.21329114619066],[-76.58904197028528,39.21329991506063],[-76.58903355881064,39.21330878261592],[-76.58902521312004,39.21331768733303],[-76.58901686061557,39.21332656860533],[-76.589008500181,39.21333541922274],[-76.58900032322386,39.21334437857584],[-76.58899228588501,39.21335342218998],[-76.58898431893587,39.21336250748604],[-76.58897635776378,39.21337159460334],[-76.58896833313483,39.21338064186344],[-76.58896017929402,39.21338960669938],[-76.58895182931812,39.2133984483414],[-76.58894321512072,39.21340712691678],[-76.58893423863522,39.21341558082874],[-76.58892482714876,39.21342376928734],[-76.58891509143345,39.2134317593383],[-76.58890515610923,39.213439626183],[-76.58889514464845,39.2134474432172],[-76.58888517820264,39.21345528472927],[-76.58887538139687,39.21346322501996],[-76.58886587653538,39.21347133928261],[-76.58885678593796,39.2134797000083],[-76.58884823538776,39.2134883815019],[-76.58884010250758,39.21349732118085],[-76.58883202031208,39.21350630607586],[-76.58882398188511,39.21351533075803],[-76.58881598954775,39.21352439433469],[-76.58880804677882,39.21353349591726],[-76.58880015474671,39.21354263370836],[-76.58879231577244,39.21355180681525],[-76.58878453218225,39.21356101344457],[-76.58877680630238,39.21357025180296],[-76.58876913928543,39.21357952279516],[-76.58876153462607,39.21358882283037],[-76.58875399348226,39.21359815191268],[-76.58874651818014,39.21360750824869],[-76.58873911220385,39.21361689004897],[-76.5887317755483,39.21362629821441],[-76.58872451170794,39.21363572915406],[-76.58871732300391,39.2136451819753],[-76.58871021175199,39.21365465668634],[-76.58870317912577,39.21366415058889],[-76.58869622744103,39.21367366369107],[-76.58868936018717,39.21368319330288],[-76.5886825785222,39.21369273942827],[-76.58867695135379,39.21370267693573],[-76.58867302529949,39.2137131924015],[-76.58867018099856,39.21372406386426],[-76.58866780256363,39.21373506937462],[-76.58866527295949,39.21374598517773],[-76.58866233560701,39.21375672840315],[-76.58865943413811,39.21376747355581],[-76.58865657893213,39.21377822787831],[-76.58865376536285,39.21378899045374],[-76.58865098881421,39.21379975856349],[-76.58864824349682,39.21381053218735],[-76.5886455259421,39.21382131041229],[-76.58864283036587,39.21383209231734],[-76.58864015214684,39.21384287608469],[-76.58863748549042,39.21385366259482],[-76.58863482694372,39.21386444823253],[-76.58863217070676,39.21387523477901],[-76.58863007980165,39.21388617553914],[-76.58862866638344,39.21389729883039],[-76.58862714784608,39.21390837851556],[-76.5886247380884,39.21391919204849],[-76.58862065449307,39.21392951509339],[-76.58861486567079,39.21393936915879],[-76.58860863368284,39.21394916762341],[-76.58860203036608,39.21395890263202],[-76.58859507668787,39.21396855263929],[-76.58858779479959,39.2139780916002],[-76.58858020683708,39.213987496172],[-76.58857233493083,39.21399674391272],[-76.58856420006397,39.21400581057473],[-76.58855582553552,39.21401467191865],[-76.58854723232341,39.21402330459764],[-76.58853819309799,39.21403157359829],[-76.58852819165342,39.21403923930425],[-76.58851742312247,39.21404639788233],[-76.58850611611274,39.21405316363234],[-76.58849450154763,39.21405965086226],[-76.58848280804538,39.21406597207053],[-76.58847121102308,39.21407222875979],[-76.58845954497852,39.21407840683791],[-76.58844777180521,39.21408448815559],[-76.58843589502912,39.21409046371738],[-76.58842391817622,39.21409632452787],[-76.58841184478804,39.21410205888917],[-76.58839967722759,39.21410765870259],[-76.58838741903111,39.21411311317117],[-76.58837507372469,39.21411841329936],[-76.58836259430929,39.21412347695128],[-76.58834974307733,39.2141279618971],[-76.58833661294216,39.21413201979381],[-76.58832335308475,39.21413588356606],[-76.58831011038038,39.21413978432904],[-76.58829703286223,39.21414395320195],[-76.5882842570259,39.21414861405736],[-76.58827171450771,39.21415377476253],[-76.58825932161589,39.21415929089893],[-76.58824702474334,39.21416502175682],[-76.58823477258842,39.2141708284359],[-76.58822250920767,39.2141765738212],[-76.58821018446785,39.21418211721503],[-76.58819774358878,39.21418732060564],[-76.5881851341164,39.21419204418793],[-76.58817230358653,39.21419614995824],[-76.58815919838739,39.2141994981074],[-76.58814574579762,39.2142018496731],[-76.58813196647208,39.21420323715587],[-76.58811792980543,39.21420387428424],[-76.58810370636076,39.21420397298917],[-76.58808936437448,39.21420374699525],[-76.58807497671992,39.2142034091424],[-76.58806061164884,39.21420317045297],[-76.58804633970271,39.2142032464612],[-76.5880321811885,39.21420392909134],[-76.58801777819083,39.21420583682409],[-76.58800328092704,39.21420822524102],[-76.58798898022604,39.2142100639692],[-76.5879751680649,39.21421032444159],[-76.58796212698583,39.21420800778368],[-76.58794966753328,39.21420383575672],[-76.58793752742066,39.21419870912138],[-76.58792562660403,39.21419285279188],[-76.58791388157596,39.21418648986865],[-76.58790221229211,39.21417984526581],[-76.58789053525012,39.21417314118307],[-76.58787876924754,39.21416660253036],[-76.58786683308702,39.21416045331693],[-76.5878546455712,39.21415491755196],[-76.58784198499572,39.21415048718374],[-76.58782824006822,39.21414834279023],[-76.587813923417,39.21414734488244],[-76.58779971404407,39.21414601856476],[-76.58778613127362,39.21414306853712],[-76.58777279610918,39.21413935371403],[-76.58775907499823,39.21413669775258],[-76.58774493434898,39.21413450421778],[-76.58773092660878,39.21413375059588],[-76.58771746258246,39.21413587777797],[-76.58770443978253,39.21414058814644],[-76.58769189866608,39.2141458992251],[-76.58767954156086,39.21415122716306],[-76.58766724742738,39.21415667782712],[-76.58765499909047,39.21416221782818],[-76.58764278168572,39.21416781468577],[-76.58763057920099,39.21417343411407],[-76.587618377935,39.21417904273601],[-76.5876061618759,39.21418460626565],[-76.58759391616429,39.21419009132188],[-76.58758162477797,39.21419546542027],[-76.58756927170504,39.21420069427489],[-76.58755684324419,39.21420574450862],[-76.58754429827057,39.21421051959338],[-76.58753042672963,39.21421203188996],[-76.58751601200269,39.21421216858494],[-76.58750194913958,39.21421312802706],[-76.58748788403879,39.21421407394789],[-76.58748700019915,39.21421413209403],[-76.58747381783729,39.21421500995461],[-76.58745975049318,39.21421594325328],[-76.58745350566774,39.21421635907878],[-76.5874456842909,39.21421687925661],[-76.58743161920954,39.21421782156764],[-76.58741755520721,39.21421877739252],[-76.58740349457356,39.21421975124318],[-76.58738943820487,39.21422078816182],[-76.58737541745471,39.21422207201792],[-76.5873614505262,39.21422385779651],[-76.58734935869774,39.21422955865498],[-76.58734004528532,39.21423775723911],[-76.58733258592983,39.21424711534188],[-76.5873269333436,39.21425720222416],[-76.58732260350446,39.21426781981378],[-76.58731800027083,39.21427825898798],[-76.58731058812386,39.21428726324845],[-76.58730029316087,39.21429479720437],[-76.58728923524124,39.21430191141458],[-76.58727851397796,39.21430907725154],[-76.58726809822366,39.21431647386112],[-76.58725859047104,39.21432463572391],[-76.58724918650402,39.21433287091423],[-76.58723911564937,39.2143404939295],[-76.58722757856358,39.21434677142472],[-76.58721543102423,39.21435248918817],[-76.58720388187433,39.21435904858298],[-76.5871948226396,39.21436733902836],[-76.58719066402872,39.2143791723685],[-76.58719223816463,39.21438944410411],[-76.58720307407351,39.21439383389387],[-76.58721838290499,39.21439566498509],[-76.58723322695261,39.21439717556311],[-76.58724762177928,39.21439768018865],[-76.5872595960805,39.21439268243719],[-76.58727048830318,39.21438519202155],[-76.58728258581795,39.21437951461164],[-76.58729700616485,39.21437841683197],[-76.58730827905795,39.21438512225451],[-76.58731668053771,39.2143945721655],[-76.58731229423567,39.21440354653174],[-76.58730150598683,39.21441127782538],[-76.58729096455822,39.21441877848541],[-76.58727907739961,39.21442113455661],[-76.58726514705818,39.21441841114413],[-76.58725108762449,39.2144181752323],[-76.58723691339793,39.21441856405685],[-76.58722270658211,39.21441898159001],[-76.58720882757531,39.21441798514807],[-76.58719570488786,39.21441376927231],[-76.58718195498938,39.2144104825959],[-76.58716832665401,39.21441098412858],[-76.5871602940863,39.21442034110435],[-76.58715914274886,39.21443135630464],[-76.58716345269163,39.21444169531525],[-76.58716954440411,39.21445168658705],[-76.58717628362612,39.21446144052878],[-76.58718590556747,39.21447069026524],[-76.58718890815652,39.21448004192393],[-76.58718279278384,39.2144896569632],[-76.58717443710577,39.2144994190552],[-76.5871678357373,39.21450937377986],[-76.58716282821155,39.21451963677365],[-76.58716355232963,39.21453032258035],[-76.58716669969934,39.21454126102363],[-76.58716683626449,39.2145522285092],[-76.58716518607464,39.21456320592295],[-76.58716115735959,39.21457360657634],[-76.58715510582392,39.2145835920594],[-76.58715012600257,39.21459386866162],[-76.58714386455584,39.21460371018144],[-76.58713706011302,39.21461333900785],[-76.58712994491198,39.21462284243275],[-76.58712229979727,39.21463207375854],[-76.5871139212642,39.21464118179874],[-76.58710418412464,39.21464895460499],[-76.58709054064164,39.21465125673603],[-76.58707637280304,39.21465233105792],[-76.58706235670891,39.21465359507598],[-76.58704834096133,39.2146555959322],[-76.58703485836375,39.21465870572247],[-76.58702297232917,39.21466444420319],[-76.58701201052553,39.21467154251106],[-76.58700136762336,39.21467875904177],[-76.58699086289882,39.21468610847253],[-76.58698000353527,39.21469311255598],[-76.58696834153963,39.21469935085217],[-76.58695691120383,39.21470577552337],[-76.58694687471947,39.2147134472762],[-76.58693753984116,39.21472173402866],[-76.58692817521639,39.21472995852178],[-76.58691873221787,39.21473811968364],[-76.58690739931943,39.21474530945579],[-76.58689968937728,39.21475373434003],[-76.58689842215,39.21476455906423],[-76.58689843606575,39.21477590174333],[-76.58689766644345,39.21478717770874],[-76.58689645859374,39.2147983449385],[-76.58689020420991,39.21480676413662],[-76.58687644119149,39.21481169339919],[-76.58686912123703,39.21481975934198],[-76.58687474145438,39.21483456273997],[-76.58687491192812,39.21483730531644],[-76.58687510092852,39.21484004795812],[-76.58687530266602,39.21484279064459],[-76.58687550903525,39.21484553334742],[-76.58687571540446,39.2148482760502],[-76.58687591482621,39.21485101872855],[-76.58687610151082,39.21485376136208],[-76.58687626734771,39.21485650482292],[-76.58687640771568,39.21485924729338],[-76.586876514504,39.21486198964562],[-76.58687658423366,39.21486473276813],[-76.58687661226777,39.21486747754544],[-76.58687666795049,39.21487024674114],[-76.58687675129225,39.21487303855378],[-76.5868768322448,39.21487584296889],[-76.58687688309145,39.21487864727801],[-76.58687687493666,39.21488144237161],[-76.58687677774266,39.21488421643384],[-76.5868765626348,39.21488695675203],[-76.58687620071224,39.21488965511749],[-76.58687566426353,39.21489229792088],[-76.58687491513496,39.21489487511931],[-76.58687357612786,39.21489733674275],[-76.58687159069801,39.21489964926321],[-76.58686916270722,39.21490180168818],[-76.58686649833851,39.21490378213266],[-76.58686379682739,39.21490557868702],[-76.58686104388569,39.21490725885953],[-76.58685817907119,39.21490886207178],[-76.58685521744725,39.21491038657521],[-76.58685217639309,39.21491183062945],[-76.58684907212496,39.2149131933908],[-76.58684592086935,39.21491447221406],[-76.58684273883719,39.21491566715623],[-76.58683952953368,39.21491677282507],[-76.58683626977943,39.21491779274199],[-76.58683296528552,39.21491874043884],[-76.58682962637887,39.21491963216607],[-76.58682626340212,39.21492048147179],[-76.58682288320855,39.21492130459414],[-76.58681949614068,39.21492211508122],[-76.5868161125308,39.21492292828275],[-76.58681273923729,39.21492375953611],[-76.58680938429225,39.21492462148052],[-76.58680600645073,39.21492543830518],[-76.58680259766507,39.21492620007319],[-76.58679918659492,39.21492695642834],[-76.58679580074214,39.21492775701048],[-76.58679246877682,39.21492864966186],[-76.58678921819565,39.21492968492306],[-76.58678605933072,39.21493087814375],[-76.58678294287893,39.21493214537767],[-76.58677986083963,39.21493346858112],[-76.5867768040124,39.21493483691228],[-76.58677376666529,39.21493624044243],[-76.58677074424516,39.21493766564377],[-76.58676772637801,39.21493910437278],[-76.58676470966338,39.21494054400657],[-76.58676168605355,39.21494197460821],[-76.58675864866913,39.21494338444325],[-76.58675559178342,39.21494476268228],[-76.58675250965396,39.21494610119796],[-76.58674942519805,39.21494744150692],[-76.58674634527414,39.21494879894657],[-76.58674326761874,39.21495016450118],[-76.58674018649478,39.21495152914272],[-76.58673710079137,39.21495288476024],[-76.58673400476616,39.2149542232265],[-76.58673089499783,39.21495553552161],[-76.58672776690186,39.21495681352246],[-76.58672461821486,39.21495804821325],[-76.58672144319955,39.21495923056594],[-76.58671823958221,39.21496035336626],[-76.58671500393613,39.21496140849518],[-76.58671172134993,39.21496237157911],[-76.58670838954974,39.21496323540368],[-76.58670501308336,39.2149640143975],[-76.58670160343561,39.21496472481505],[-76.58669816630704,39.21496538198966],[-76.58669471203504,39.21496600037015],[-76.58669124746751,39.2149665970956],[-76.58668778177866,39.21496718751156],[-76.58668432299541,39.21496778515795],[-76.5866808779603,39.2149684080745],[-76.58667743986739,39.21496903191623],[-76.58667397781464,39.21496959442035],[-76.58667049979208,39.2149701154322],[-76.58666701608476,39.21497061840834],[-76.58666353351433,39.21497112499151],[-76.58666006468162,39.21497165864635],[-76.58665661640828,39.21497224101568],[-76.58665319781089,39.21497289735346],[-76.58664981803746,39.21497364750904],[-76.58664648624125,39.21497451043112],[-76.58664318868965,39.21497545814714],[-76.58663991969283,39.21497647352214],[-76.58663667468707,39.21497754483001],[-76.5866334479458,39.2149786612411],[-76.58663023606866,39.2149798101326],[-76.5866270321763,39.21498097977009],[-76.58662383285252,39.21498216023297],[-76.58662063238646,39.21498333798939],[-76.58661742620414,39.21498450311462],[-76.58661420859457,39.2149856420769],[-76.58661097957867,39.21498675127314],[-76.58660775398404,39.21498786948917],[-76.5866045352634,39.21498900034023],[-76.58660131997448,39.21499013840957],[-76.58659810583291,39.2149912782844],[-76.58659488939111,39.2149924154487],[-76.58659166837521,39.21499354268819],[-76.58658844164825,39.21499465639577],[-76.58658520461005,39.21499575115054],[-76.58658195613931,39.21499682064311],[-76.58657869279386,39.21499785945667],[-76.58657541228399,39.2149988630792],[-76.58657210317737,39.21499980624855],[-76.58656874596763,39.21500065826954],[-76.58656535672931,39.21500144261903],[-76.58656194573167,39.21500218545584],[-76.5865585290388,39.21500291205846],[-76.58655511691984,39.21500364858566],[-76.58655172543882,39.21500442031594],[-76.58654836718085,39.21500525341624],[-76.58654505473612,39.21500617315281],[-76.58654180299513,39.21500720750227],[-76.58653863490119,39.21500839347757],[-76.58653553440597,39.21500970309783],[-76.58653247743959,39.21501109394168],[-76.58652944109021,39.21501252359164],[-76.58652640245634,39.21501394782881],[-76.58652333746282,39.2150153251324],[-76.58652022204521,39.21501661218019],[-76.5865170332967,39.21501776565396],[-76.58651377693877,39.21501879728404],[-76.58651047473076,39.21501974858304],[-76.58650713815209,39.21502063670616],[-76.5865037752192,39.21502147699498],[-76.5865003939378,39.21502228659247],[-76.58649700579269,39.21502308175324],[-76.58649361879495,39.21502387871947],[-76.58649024095561,39.21502469373348],[-76.58648688260149,39.21502554304575],[-76.58648354478049,39.21502644557632],[-76.58648021949715,39.21502738238066],[-76.5864768953507,39.21502832279204],[-76.58647356209813,39.21502923614779],[-76.58647020835434,39.21503008907894],[-76.58646682503429,39.21503085092691],[-76.58646340531115,39.21503150094971],[-76.58645996281243,39.2150320851352],[-76.58645650553339,39.21503262242789],[-76.58645303689021,39.21503312274839],[-76.58644955913569,39.21503359691409],[-76.58644607569647,39.21503405304401],[-76.58644258882015,39.21503450285628],[-76.58643910308595,39.2150349553748],[-76.58643561959413,39.21503542051204],[-76.58643214407131,39.21503590909756],[-76.58642867877568,39.21503643104789],[-76.58642522253872,39.21503698816053],[-76.58642177311808,39.21503756781654],[-76.58641832706627,39.21503816549998],[-76.58641488441472,39.21503877580626],[-76.58641144402122,39.21503939602891],[-76.58640800474886,39.21504002256093],[-76.58640456662913,39.21504064999766],[-76.58640112851984,39.2150412756328],[-76.58639768813134,39.21504189495432],[-76.5863942454847,39.21504250435922],[-76.5863908006113,39.21504309844288],[-76.58638735120586,39.21504367539561],[-76.58638389613665,39.21504423070952],[-76.58638043543519,39.21504475898009],[-76.58637696795927,39.21504525750095],[-76.58637349034007,39.21504570824455],[-76.58636999914059,39.2150461048934],[-76.58636649891902,39.21504646007436],[-76.58636299193878,39.21504678280331],[-76.58635947928958,39.21504708479424],[-76.58635596438219,39.21504737686849],[-76.58635245062747,39.21504766984749],[-76.58634893912034,39.21504797454444],[-76.5863454332769,39.21504830088004],[-76.58634193534472,39.21504866057229],[-76.58633844642401,39.21504906353363],[-76.58633497107824,39.21504952149039],[-76.58633150473345,39.21505002451775],[-76.58632804285767,39.21505055548499],[-76.58632458661926,39.21505111259462],[-76.58632113486554,39.21505169494183],[-76.58631768991239,39.2150523025348],[-76.58631425060713,39.21505293446861],[-76.58631081927602,39.21505358894998],[-76.58630739476125,39.21505426597476],[-76.58630397822063,39.21505496554708],[-76.58630057198582,39.2150556849728],[-76.58629717373573,39.21505642514456],[-76.58629378463868,39.21505718426484],[-76.58629040008407,39.21505795871433],[-76.58628702122981,39.21505874849709],[-76.58628364577048,39.21505955180342],[-76.58628027601149,39.21506037044302],[-76.58627691081064,39.21506120170952],[-76.58627355016792,39.21506204560293],[-76.58627019407808,39.21506290302399],[-76.58626684370957,39.21506377217533],[-76.58626349906757,39.21506465215604],[-76.58626015898901,39.21506554386296],[-76.58625682347906,39.21506644639523],[-76.58625349370088,39.21506735885624],[-76.58625016965976,39.21506828034518],[-76.58624685135568,39.21506921086199],[-76.58624354448376,39.21507016664093],[-76.5862402559181,39.21507116031712],[-76.58623698222689,39.21507218467217],[-76.58623371882044,39.21507323248371],[-76.58623046342487,39.21507429653747],[-76.58622721260839,39.21507536961506],[-76.58622396293399,39.21507644539894],[-76.58622071096991,39.21507751667075],[-76.58621745328958,39.21507857531138],[-76.58621418529806,39.21507961499918],[-76.58621090587948,39.21508062852396],[-76.58620761160202,39.21508160866735],[-76.58620430357105,39.2150825644411],[-76.58620098750806,39.21508350757549],[-76.5861976657289,39.21508443807873],[-76.58619433708077,39.21508535504594],[-76.58619100041641,39.21508625667149],[-76.58618765805153,39.21508714296358],[-76.58618430883877,39.2150880121166],[-76.58618095162545,39.21508886322567],[-76.58617758873272,39.21508969539827],[-76.58617421784461,39.21509050862619],[-76.58617084129283,39.21509130021526],[-76.58616745667752,39.21509208456957],[-76.58616406396717,39.2150928670937],[-76.58616066206683,39.21509363697437],[-76.5861572510448,39.21509438250169],[-76.58615382981139,39.21509509196167],[-76.58615039728213,39.21509575273958],[-76.58614695352001,39.21509635402625],[-76.58614349743543,39.21509688410771],[-76.58614002793873,39.21509733126994],[-76.58613654506652,39.21509768920758],[-76.58613304642442,39.21509797142396],[-76.58612953658104,39.21509818874451],[-76.58612601546284,39.21509835377991],[-76.58612248764912,39.21509847555414],[-76.58611895306632,39.21509856667785],[-76.58611541513051,39.2150986370717],[-76.58611187493136,39.2150986984496],[-76.58610833588482,39.21509876073226],[-76.58610479907543,39.21509883653443],[-76.58610126792438,39.21509893487595],[-76.58609774123174,39.21509906295882],[-76.58609421561825,39.21509920455717],[-76.58609068996279,39.21509935336145],[-76.58608716429677,39.2150995039672],[-76.58608363748857,39.21509965186642],[-76.58608011188556,39.21509979166281],[-76.58607658520859,39.21509991704278],[-76.58607305864187,39.21510002350663],[-76.58606953221165,39.21510010655057],[-76.58606600479679,39.21510015986519],[-76.58606247757618,39.21510017985151],[-76.58605894931837,39.2151001791161],[-76.58605541995516,39.21510016936883],[-76.58605188833391,39.21510014970497],[-76.58604835678615,39.2151001174303],[-76.58604482530136,39.21510007434641],[-76.58604129389538,39.21510001775096],[-76.58603776257344,39.2150999467432],[-76.5860342324881,39.215099862228],[-76.58603070365531,39.21509976150308],[-76.58602717607489,39.21509964456838],[-76.58602365206285,39.21509951143215],[-76.58602012931892,39.21509935938386],[-76.58601661015386,39.21509918933251],[-76.58601309015118,39.21509896433045],[-76.58600955961434,39.21509856003581],[-76.58600602287561,39.2150980278083],[-76.58600248993103,39.21509744064644],[-76.58599896962393,39.21509687064396],[-76.58599546847115,39.21509639168776],[-76.58599199763709,39.21509607497888],[-76.58598856363336,39.21509599530521],[-76.58598518099824,39.21509624099441],[-76.58598189392968,39.21509697704538],[-76.58597868106779,39.21509809348752],[-76.58597550514109,39.21509942894951],[-76.58597232890443,39.21510081755643],[-76.5859691150864,39.21510209793698],[-76.58596582980013,39.21510312404513],[-76.58596249313722,39.21510402476343],[-76.58595912324638,39.21510486501208],[-76.58595572824878,39.21510564211741],[-76.58595231509196,39.21510635610397],[-76.58594889420256,39.21510700610767],[-76.58594542384029,39.21510740281737],[-76.58594052647658,39.21510747291324],[-76.58593775346772,39.21505281276799],[-76.58565556403848,39.21505745292304],[-76.58550560238385,39.21506036071402],[-76.58550955430275,39.21512049817774],[-76.58541961162602,39.21512313411723],[-76.58542118523572,39.21514317393876],[-76.5854176613436,39.21514302006679],[-76.58541413869347,39.2151428517866],[-76.58541061156326,39.21514245919612],[-76.58540714150978,39.21514240550068],[-76.58540376194125,39.21514311688762],[-76.58540040443199,39.2151440166155],[-76.58539703429595,39.2151448973823],[-76.58539363597954,39.2151456465355],[-76.58539023417356,39.21514639837858],[-76.58538682211442,39.21514712136038],[-76.58538339195447,39.21514777131485],[-76.58537993586167,39.21514830137379],[-76.58537644814642,39.21514869440224],[-76.58537293782487,39.21514899276878],[-76.58536941280788,39.21514922983019],[-76.5853658810064,39.21514943894328],[-76.58536235151026,39.21514964986603],[-76.58535883106181,39.2151498977526],[-76.58535532758245,39.2151502141584],[-76.58535185015147,39.21515063064278],[-76.58534840440601,39.21515117334825],[-76.58534498470365,39.21515181703316],[-76.58534158420724,39.2151525427568],[-76.5853382007115,39.2151533315951],[-76.58533482969506,39.21515416461563],[-76.58533146547356,39.21515502378272],[-76.585328106989,39.2151558919778],[-76.58532474740431,39.21515675026028],[-76.58532138790366,39.21515759413049],[-76.58531804552986,39.21515847949705],[-76.58531471569322,39.21515939913746],[-76.58531139269884,39.21516033681759],[-76.58530806970968,39.21516127359681],[-76.58530473988857,39.21516219053466],[-76.58530139755116,39.21516306959541],[-76.58529803469713,39.21516389273516],[-76.58529464447902,39.21516464281485],[-76.5852912337601,39.2151653342713],[-76.58528781501455,39.21516601218752],[-76.58528438941082,39.21516667476617],[-76.58528095810682,39.21516732201125],[-76.58527752109737,39.21516795482366],[-76.58527407838233,39.21516857320326],[-76.5852706311303,39.21516917535268],[-76.58526717932537,39.2151697639742],[-76.58526372414131,39.21517033636965],[-76.58526026556758,39.21517089434048],[-76.58525680360952,39.21517143698603],[-76.58525333942497,39.21517196431031],[-76.58524987301392,39.21517247631333],[-76.58524640437645,39.21517297299516],[-76.5852429324335,39.21517344084015],[-76.58523944249508,39.21517381764265],[-76.58523593565596,39.21517411421585],[-76.58523241755856,39.21517435580146],[-76.58522889271346,39.2151745631335],[-76.58522536560517,39.21517476144963],[-76.58522184189168,39.21517497328934],[-76.58521832492046,39.21517522028326],[-76.58521481245997,39.21517548801093],[-76.58521129999944,39.21517575573851],[-76.58520778641254,39.21517601805731],[-76.58520427174663,39.21517626686047],[-76.58520075373315,39.215176494033],[-76.58519723468801,39.21517669958306],[-76.58519371456913,39.21517689071665],[-76.58519019219749,39.21517707103287],[-76.58518666985746,39.21517724594438],[-76.58518314752263,39.21517741995503],[-76.58517962516672,39.21517759756862],[-76.5851761039214,39.21517778329305],[-76.58517258376558,39.21517798073137],[-76.58516906580978,39.21517819799458],[-76.58516555212265,39.2151784774266],[-76.58516204279353,39.21517880371449],[-76.58515853460125,39.21517913360946],[-76.58515502434044,39.21517942116031],[-76.58515150878983,39.21517962311821],[-76.58514798578101,39.2151797142536],[-76.58514446072992,39.21517975854108],[-76.58514093354719,39.21517977129356],[-76.58513740420126,39.2151797579157],[-76.58513387381308,39.21517972471685],[-76.58513034235125,39.21517967710159],[-76.58512681093679,39.21517962137941],[-76.58512327953279,39.21517956385557],[-76.58511974926573,39.21517950993875],[-76.58511621893553,39.215179466831],[-76.58511269100538,39.21517940931913],[-76.58510642167514,39.21517924573138],[-76.58510576563474,39.21516766207515],[-76.58508344910852,39.21516894785499],[-76.58508564154715,39.21518135755471],[-76.58508211286433,39.21518142885091],[-76.58507858739209,39.21518154519737],[-76.58507506724106,39.21518174173202],[-76.58507154817426,39.21518195088129],[-76.58506803021801,39.21518216814149],[-76.58506451107746,39.21518238990124],[-76.58506099307381,39.21518261526803],[-76.58505747508059,39.21518283883317],[-76.58505395711374,39.21518305789441],[-76.58505043802575,39.21518327064613],[-76.58504691900089,39.21518347258862],[-76.58504339773388,39.21518366191211],[-76.58503987541415,39.21518383321617],[-76.58503635198389,39.21518399640919],[-76.58503282854835,39.21518416050282],[-76.58502930280748,39.21518432278667],[-76.58502577708235,39.21518448236813],[-76.585022251373,39.21518463924719],[-76.58501872570052,39.21518478982078],[-76.58501519890693,39.21518493408491],[-76.58501167216069,39.215185070242],[-76.58500814547233,39.21518519649063],[-76.58500461884714,39.21518531193003],[-76.58500109229037,39.21518541565934],[-76.58499756697049,39.21518550588132],[-76.58499404174532,39.21518557988939],[-76.58499051660968,39.21518563858445],[-76.58498699183721,39.2151856351268],[-76.58498346674382,39.21518548844377],[-76.58497994458226,39.21518523637972],[-76.58497643088414,39.21518492309235],[-76.58497293126011,39.21518457922816],[-76.58496946860042,39.21518405263611],[-76.58496542565807,39.2151833537441],[-76.58496636993191,39.215164239816],[-76.58491632499268,39.21516496629344],[-76.58482748296453,39.2151726356317],[-76.58470418709328,39.21533063316178],[-76.5846255457833,39.21542748870434],[-76.58462452645419,39.21543011897881],[-76.58462353717309,39.2154327592682],[-76.58462251553323,39.21543538863366],[-76.58462140025917,39.21543799064426],[-76.58462014857085,39.21544055433922],[-76.5846187997377,39.21544309697236],[-76.58461734456999,39.21544560590021],[-76.58461576695686,39.2154480639509],[-76.58461405192428,39.21545045755967],[-76.58461223177837,39.21545280665816],[-76.58461033424604,39.21545512215379],[-76.5846083743383,39.21545741130595],[-76.58460637402941,39.21545967869634],[-76.58460434949346,39.21546193068767],[-76.58460228689853,39.21546415642158],[-76.58460014697519,39.21546633864428],[-76.58459796665073,39.21546849910521],[-76.5845957874735,39.21547066137169],[-76.58459364985512,39.21547284540397],[-76.58459155492714,39.21547505571],[-76.58458946692555,39.21547726964362],[-76.58458739161885,39.21547949082838],[-76.58458533016504,39.21548171926837],[-76.58458328601677,39.21548395857896],[-76.58458126381107,39.21548620787578],[-76.58457925775828,39.21548846713836],[-76.58457723552597,39.2154907209389],[-76.58457520983023,39.21549297292562],[-76.58457318989774,39.21549522943658],[-76.5845711895919,39.21549749592558],[-76.584569220471,39.21549977603663],[-76.58456729638797,39.21550207702506],[-76.58456542773789,39.21550440343159],[-76.58456362838952,39.21550675980913],[-76.58456190988528,39.21550915250411],[-76.58456026414071,39.21551157788472],[-76.58455867382909,39.21551402868337],[-76.58455712394479,39.21551649673999],[-76.58455559599777,39.21551897568362],[-76.58455407382445,39.21552145735001],[-76.58455254009812,39.21552393447155],[-76.58455097980782,39.21552639978892],[-76.58454937331618,39.21552884512547],[-76.58454770676489,39.21553126412678],[-76.58454598362249,39.21553365770587],[-76.58454423967943,39.21553604400503],[-76.58454247725159,39.21553842303246],[-76.58454069518092,39.21554079478411],[-76.58453889463597,39.21554315746248],[-76.58453707560622,39.21554551286916],[-76.58453523926006,39.21554785920668],[-76.58453338443434,39.21555019737177],[-76.58453151345024,39.21555252647177],[-76.58452962399706,39.21555484559777],[-76.58452771838017,39.21555715655948],[-76.58452579545747,39.21555945665052],[-76.5845238367442,39.21556173859923],[-76.58452183646656,39.21556399968279],[-76.58451980501951,39.21556624444188],[-76.58451774933489,39.21556847560343],[-76.58451567632335,39.21557069949736],[-76.58451359638519,39.21557291976358],[-76.58451151645215,39.21557513912905],[-76.58450944459288,39.21557736392769],[-76.58450739005498,39.21557959689469],[-76.58450535975446,39.21558184345916],[-76.58450336062832,39.21558410544725],[-76.58450137188649,39.21558637377755],[-76.58449939122376,39.21558864664027],[-76.58449741748736,39.21559092313063],[-76.58449545183529,39.21559320325274],[-76.5844934954149,39.21559548881216],[-76.58449154707355,39.21559777890403],[-76.58448961027976,39.21560007444144],[-76.58448768272289,39.21560237451546],[-76.5844857667084,39.21560468093575],[-76.58448386224664,39.21560699190081],[-76.58448197164307,39.21560930922041],[-76.58448009950831,39.21561163651395],[-76.58447824584761,39.21561397288064],[-76.58447640720296,39.21561631560594],[-76.58447457894268,39.21561866467349],[-76.58447275991939,39.21562101827762],[-76.58447094667508,39.2156233737037],[-76.58446913458329,39.21562573003463],[-76.58446732133352,39.21562808636141],[-76.58446550577823,39.21563044087847],[-76.58446368560165,39.21563279357756],[-76.5844619069787,39.21563516894331],[-76.58446016068287,39.2156375606375],[-76.58445841785013,39.21563995414552],[-76.58445665077451,39.21564233495673],[-76.58445483176057,39.21564468675903],[-76.58445292962844,39.2156469950295],[-76.58445092246183,39.21564924527803],[-76.58444885524601,39.21565146738972],[-76.58444675569235,39.21565367497433],[-76.58444462150078,39.21565586532147],[-76.5844424526765,39.21565803753025],[-76.58444024808279,39.2156601879936],[-76.58443800772481,39.21566231581078],[-76.58443573161315,39.21566441918023],[-76.58443341976364,39.21566649539965],[-76.58443106987615,39.21566854175859],[-76.58442868655612,39.21567056277718],[-76.58442628593028,39.21567257292511],[-76.58442386798801,39.21567457400385],[-76.58442143389783,39.215676564216],[-76.58441898250176,39.21567854355742],[-76.58441651380514,39.21568051112736],[-76.5844140289711,39.21568246602921],[-76.58441152684709,39.21568440735807],[-76.58440900627504,39.21568633510984],[-76.58440646842352,39.21568824748704],[-76.58440391329775,39.21569014358898],[-76.58440134089778,39.21569202341566],[-76.58439874891299,39.21569388605808],[-76.58439614082241,39.2156957306278],[-76.58439350624164,39.21569755078254],[-76.58439082443327,39.21569932843327],[-76.58438809768684,39.21570106809207],[-76.58438533523942,39.21570277429543],[-76.58438254167537,39.21570445516665],[-76.58437972738429,39.21570611614731],[-76.5843768981191,39.21570776356306],[-76.58437406078517,39.21570940464476],[-76.5843712223037,39.21571104392074],[-76.58436839189602,39.21571268862991],[-76.58436557415691,39.21571434509406],[-76.58436277939705,39.21571603226607],[-76.58435990639322,39.21571763448747],[-76.58435681049552,39.21571893776105],[-76.58435366747041,39.21572018141605],[-76.58435051179232,39.2157214106137],[-76.58434734231906,39.21572262264753],[-76.58434415906653,39.21572381481535],[-76.58434096204525,39.21572498531555],[-76.58433775126043,39.21572613324739],[-76.58433452904387,39.21572725591684],[-76.58433129193749,39.21572835060924],[-76.58432804569411,39.21572942365042],[-76.58432479023462,39.21573048855186],[-76.58432152789072,39.21573154261947],[-76.58431825520439,39.21573258313865],[-76.58431497336527,39.2157336047089],[-76.58431168239441,39.21573460372722],[-76.58430837882855,39.21573557837973],[-76.58430506386254,39.21573652236523],[-76.58430173519112,39.21573743387405],[-76.58429839399848,39.21573830840637],[-76.58429503800048,39.21573914054946],[-76.58429165915489,39.21573991946547],[-76.58428825860902,39.21574064696002],[-76.58428483979455,39.21574133025147],[-76.58428140613783,39.21574197745909],[-76.58427796223371,39.2157425949045],[-76.58427451150314,39.2157431916077],[-76.58427105623045,39.21574377298145],[-76.58426760099994,39.21574434714898],[-76.58426414923784,39.21574492222945],[-76.5842606974915,39.21574549460759],[-76.5842572411556,39.21574605976308],[-76.58425378141965,39.21574661229552],[-76.58425031598894,39.21574714859363],[-76.58424684721615,39.21574766236028],[-76.58424337164868,39.21574814998012],[-76.5842398916235,39.21574860785827],[-76.58423640601953,39.2157490296854],[-76.58423291369999,39.21574941185423],[-76.58422941579641,39.21574975887278],[-76.58422591227188,39.21575007704629],[-76.58422240425797,39.21575037088275],[-76.58421889289687,39.21575064308851],[-76.58421537700417,39.21575089816326],[-76.5842118600432,39.21575113792087],[-76.58420834083485,39.21575136596024],[-76.58420481935808,39.21575158588444],[-76.5842012990709,39.21575180040811],[-76.58419777879425,39.21575201313008],[-76.58419425850703,39.21575222765351],[-76.58419074051984,39.21575244488731],[-76.58418722033279,39.21575264229606],[-76.58418369795113,39.21575281897897],[-76.58418017449068,39.21575298214628],[-76.58417664991447,39.21575313810322],[-76.58417312650671,39.21575329226265],[-76.58416960190934,39.21575345182249],[-76.58416607955401,39.21575362400104],[-76.58416255825635,39.21575381329807],[-76.58415904028482,39.21575402782867],[-76.58415552450776,39.21575426308486],[-76.58415200981477,39.21575451095573],[-76.58414849622172,39.21575476873898],[-76.58414498373378,39.21575503553385],[-76.58414147120891,39.21575530863394],[-76.58413795981555,39.2157555862418],[-76.58413444841166,39.21575586565112],[-76.58413093700243,39.21575614596112],[-76.58412742560371,39.21575642446946],[-76.58412391422611,39.21575669937463],[-76.58412040172745,39.21575696797029],[-76.58411688811826,39.21575722845489],[-76.58411337340394,39.21575747992761],[-76.58410985756855,39.21575772509082],[-76.58410634177535,39.21575796304786],[-76.58410282371371,39.21575819288969],[-76.58409930569957,39.21575841462457],[-76.58409578658546,39.21575862644689],[-76.58409226753467,39.21575882745992],[-76.58408874624186,39.215759015854],[-76.5840852250018,39.21575919524035],[-76.58408170263012,39.21575937011865],[-76.58407817912689,39.21575954048895],[-76.58407465681321,39.21575970545869],[-76.58407113221533,39.21575986501553],[-76.58406760880702,39.21576001917181],[-76.58406408427243,39.2157601679193],[-76.5840605597747,39.21576031036135],[-76.58405703415602,39.21576044649385],[-76.5840535085742,39.21576057632094],[-76.5840499830452,39.21576069714028],[-76.58404645417423,39.21576079542816],[-76.5840429242825,39.21576087029202],[-76.58403939100671,39.21576092983051],[-76.58403585779419,39.21576097855973],[-76.5840323245922,39.21576102548737],[-76.58402879253235,39.21576107512129],[-76.58402526156183,39.21576113646905],[-76.58402173281743,39.21576121313792],[-76.5840182062465,39.21576131413546],[-76.58401468412782,39.2157614457752],[-76.5840111664298,39.21576161346173],[-76.58400765426289,39.21576182530598],[-76.58400415317402,39.21576212276361],[-76.58400066535766,39.21576252656021],[-76.58399718751411,39.21576300695847],[-76.58399371519639,39.21576353241523],[-76.58399024512589,39.21576406959001],[-76.58398677169228,39.21576458783632],[-76.58398329160659,39.21576505561528],[-76.58397980041644,39.21576544228453],[-76.58397629482214,39.2157657181066],[-76.58397277476048,39.21576589389063],[-76.58396924354165,39.21576599757253],[-76.58396570679173,39.21576605709649],[-76.58396216781559,39.21576610129918],[-76.58395863223414,39.21576615902552],[-76.58395510219957,39.21576625820732],[-76.58395158449068,39.21576642769356],[-76.58394808241756,39.21576669542025],[-76.58394460044836,39.21576708932739],[-76.58394113750958,39.21576759499865],[-76.58393768799627,39.21576818088689],[-76.58393424516132,39.21576881273855],[-76.5839308057157,39.21576945901457],[-76.58392736174908,39.21577008635809],[-76.58392390766188,39.2157706623211],[-76.58392045024324,39.21577121395117],[-76.58391699396671,39.21577176828752],[-76.58391353652164,39.21577232442117],[-76.58391008023443,39.21577288055883],[-76.5839066239419,39.21577343759714],[-76.58390316765986,39.21577399283384],[-76.5838997102304,39.21577454626482],[-76.58389625165876,39.21577509698928],[-76.58389279310822,39.21577564411059],[-76.58388933227337,39.21577618581901],[-76.58388587147546,39.21577672122204],[-76.58388240839857,39.21577725031138],[-76.58387894304799,39.21577777218634],[-76.5838754765922,39.21577828504947],[-76.58387200672064,39.21577878799177],[-76.58386853685957,39.21577928913247],[-76.5838650646298,39.21577979927247],[-76.58386159352625,39.21578031482101],[-76.58385812010152,39.21578083126202],[-76.58385464668198,39.21578134680217],[-76.58385117097822,39.21578185692945],[-76.58384769416928,39.21578235804489],[-76.58384421627622,39.21578284654547],[-76.58384073500433,39.21578331881987],[-76.58383725152741,39.21578377217],[-76.58383376587707,39.21578420119123],[-76.58383027805867,39.21578460498278],[-76.58382678694592,39.21578497813606],[-76.58382329255987,39.2157853170479],[-76.58381979491647,39.21578561901615],[-76.58381629063693,39.21578586781468],[-76.5838127775848,39.2157860328094],[-76.58380925453889,39.21578612480535],[-76.58380572605702,39.21578615642962],[-76.58380219090729,39.21578614028874],[-76.58379865365822,39.21578608720836],[-76.58379511538841,39.21578601070392],[-76.5837915760241,39.21578592338616],[-76.58378804013354,39.21578583608056],[-76.58378450764295,39.21578576139785],[-76.58378097988432,39.21578566961701],[-76.58377745665548,39.215785397696],[-76.58377393704296,39.21578510146666],[-76.58377042218538,39.21578498180703],[-76.58376690474431,39.21578510534896],[-76.58376338112288,39.21578529552654],[-76.58375985713715,39.2157855478566],[-76.58375633972413,39.21578586416534],[-76.58375283814726,39.21578624448548],[-76.58374935933833,39.21578669154407],[-76.58374591807588,39.21578725223413],[-76.5837425243642,39.21578799775273],[-76.58373915669878,39.21578884335025],[-76.58373389073471,39.21579015332234],[-76.58372829757634,39.21578999386121],[-76.58372365003902,39.21578872258792],[-76.58372047979357,39.2157219139595],[-76.58371819494801,39.21569745326498],[-76.58369286430299,39.21569316847098],[-76.58334301128707,39.21571779815002],[-76.58290984205773,39.21574870458952],[-76.58282819284264,39.21575214269331],[-76.58233069035502,39.21577205214997],[-76.58195425163234,39.21578652585011],[-76.58156543610336,39.2158008695389],[-76.58157173466623,39.21590220189464],[-76.58165281899905,39.21589955623831],[-76.58227970616717,39.21587725480379],[-76.58227968427326,39.21586778752179],[-76.58248721222802,39.21585956418395],[-76.58277813655623,39.21584676648995],[-76.58289811960834,39.21584400334405],[-76.58290073719408,39.21588490808567],[-76.58288666393393,39.21588579577708],[-76.5828725850796,39.21588665011799],[-76.58285850285688,39.21588748642963],[-76.58284441949708,39.21588831913238],[-76.58283033840523,39.21588915994857],[-76.58281626064391,39.21589002509597],[-76.58280219076559,39.21589092810255],[-76.58278812984344,39.21589188338448],[-76.58277408011391,39.21589290446155],[-76.58276004611874,39.21589400666311],[-76.58274603547427,39.21589566742996],[-76.58273230085632,39.21589823986581],[-76.58271991383863,39.21590381308802],[-76.58270728612946,39.21589989933291],[-76.58269492247955,39.2158942047714],[-76.58268269018517,39.21588862147173],[-76.58266947574236,39.21588523978885],[-76.58265523881799,39.21588481443316],[-76.58264116858537,39.21588558050046],[-76.58262710827327,39.21588682581664],[-76.58261306687409,39.21588800544146],[-76.58259903758173,39.21588929230054],[-76.58258507826471,39.21589088837452],[-76.58257126230379,39.21589311460249],[-76.58255751965389,39.21589567347761],[-76.58254368437689,39.21589783657891],[-76.58252973944289,39.21589954619586],[-76.58251576061218,39.21590111246649],[-76.58250178864373,39.21590269317235],[-76.58248781222829,39.21590424233342],[-76.58247381690923,39.21590585538092],[-76.58246017681178,39.2159084992829],[-76.58244792579491,39.21591398018001],[-76.58243692932135,39.21592115270182],[-76.58243425977571,39.21593166612165],[-76.58243328901057,39.21594276118485],[-76.58243283624505,39.21595378963191],[-76.58243311668086,39.21596478195428],[-76.58243416392486,39.21597573376768],[-76.58243588311146,39.21598663032201],[-76.58243787335644,39.21599751072593],[-76.58243996193661,39.21600840679294],[-76.58243994284405,39.21601933409391],[-76.58243733640242,39.21603014319407],[-76.58243177207122,39.21604024186275],[-76.58242572096709,39.21605021629284],[-76.58241942382963,39.21606008625741],[-76.5824115822213,39.21606912561073],[-76.58240255718864,39.21607757164176],[-76.58239283861141,39.2160856107536],[-76.58238270185629,39.21609328175879],[-76.5823724761602,39.21610091461381],[-76.58236214172163,39.21610852906528],[-76.58235151947022,39.21611585784491],[-76.58234043149366,39.21612263368831],[-76.58232870214255,39.21612859834701],[-76.58231652312412,39.21613403624904],[-76.58230409204639,39.21613921292702],[-76.58229144817332,39.21614414653629],[-76.58227862845314,39.21614885522395],[-76.58226567330254,39.21615335805011],[-76.58225261968028,39.21615767136041],[-76.58223950684508,39.21616181421091],[-76.58222636830841,39.21616579843113],[-76.58221306533225,39.2161693902249],[-76.58219956328452,39.21617257145328],[-76.58218593423592,39.21617549190235],[-76.5821722479411,39.21617830135003],[-76.58215857762843,39.21618114958657],[-76.58214499305768,39.21618418548919],[-76.58213156513062,39.21618756064148],[-76.58211828232062,39.21619126599467],[-76.58210500378581,39.21619503171387],[-76.58209173991582,39.21619886324079],[-76.58207850798971,39.2162027759502],[-76.58206532643359,39.21620678702258],[-76.58205221367382,39.21621091363842],[-76.58203918467349,39.21621517116431],[-76.58202626017463,39.21621957678889],[-76.58201345629297,39.21622414678377],[-76.58200079259151,39.21622890193658],[-76.58198846510551,39.21623417803602],[-76.58197653239669,39.21624005906331],[-76.5819649040268,39.21624636814354],[-76.58195349186828,39.21625292931055],[-76.58194220779369,39.2162595665983],[-76.58193108983475,39.21626631076887],[-76.58192021357242,39.21627330531566],[-76.58190949268601,39.21628046075392],[-76.58189884201819,39.21628768670225],[-76.58188817293255,39.21629489366759],[-76.58187742097677,39.21630201476255],[-76.58186668860843,39.21630915214034],[-76.58185598732729,39.21631631935369],[-76.58184529409657,39.21632349560254],[-76.58183458820585,39.21633065829361],[-76.58182384661835,39.2163377866268],[-76.58181304861307,39.21634485981036],[-76.58180217231646,39.21635185614755],[-76.58179119239695,39.21635875122707],[-76.58178005473903,39.21636549261071],[-76.58176878121095,39.21637210289587],[-76.58175742018643,39.21637862639321],[-76.58174601771262,39.21638510920656],[-76.58173461984725,39.21639159563835],[-76.58172327723211,39.21639813811436],[-76.58171213574818,39.21640493712783],[-76.5817010045828,39.21641175329188],[-76.5816895539371,39.21641815575853],[-76.58167748848545,39.21642375884181],[-76.58166493926262,39.21642872785135],[-76.58165211195417,39.21643333285368],[-76.58163916509351,39.21643778879968],[-76.58162626298771,39.21644231336305],[-76.5816135400601,39.21644708627844],[-76.58160081238755,39.21645187809196],[-76.58158810531218,39.21645671141344],[-76.58157553382685,39.21646172267076],[-76.58156321406135,39.21646705189898],[-76.58155133572812,39.21647292857295],[-76.58154000339316,39.21647948998422],[-76.58152884344732,39.21648627270037],[-76.58151745355063,39.2164927762543],[-76.58150553361884,39.21649863656118],[-76.58149347447085,39.21650434413851],[-76.5814813600316,39.21651000197449],[-76.58146918692805,39.21651559294222],[-76.58145694946074,39.2165211017081],[-76.58144464425145,39.21652651204601],[-76.58143226676405,39.21653180772572],[-76.5814198101358,39.21653697431026],[-76.58140727099379,39.2165419946727],[-76.58139460461896,39.21654679388872],[-76.58138169279967,39.21655119228129],[-76.58136859514919,39.21655529185119],[-76.58135539080655,39.21655922169232],[-76.58134216006341,39.21656311180339],[-76.58132897974268,39.21656709127015],[-76.58131592785705,39.21657128377785],[-76.58130297339154,39.21657564687916],[-76.58129006589567,39.21658009572081],[-76.5812771835968,39.21658459149153],[-76.58126430703828,39.21658909538832],[-76.58125141212621,39.21659356949247],[-76.58123854084421,39.21659815988019],[-76.581225746702,39.2166030216767],[-76.58121276032853,39.21660729547695],[-76.58119927934136,39.21661002537442],[-76.58118519211652,39.2166108965983],[-76.5811709394756,39.21661114929468],[-76.58115682649431,39.21661167542429],[-76.58114270577941,39.21661194209982],[-76.58112860330559,39.21661166837045],[-76.58111451104163,39.21661103796679],[-76.58110042565161,39.21661022382676],[-76.58108634635455,39.21660935836232],[-76.58107226930461,39.21660850461431],[-76.58105819969161,39.21660756801938],[-76.58104415541618,39.2166064585634],[-76.58103015564332,39.21660506822107],[-76.58101618845365,39.21660345459983],[-76.58100222366018,39.2166018274738],[-76.58098816524762,39.21660056302637],[-76.58097431251196,39.21659858859584],[-76.5809606571467,39.21659574201217],[-76.5809470811616,39.21659259124657],[-76.58093373476652,39.21658899541291],[-76.58092079067185,39.21658472903211],[-76.58090843435862,39.21657936489608],[-76.58089654145184,39.21657337547042],[-76.5808853053979,39.21656674973614],[-76.58087439464589,39.21655974683473],[-76.58086237422772,39.21655378127124],[-76.58084955611548,39.21654857581842],[-76.58084042993214,39.21654096225315],[-76.58083576463102,39.21653034160148],[-76.58083362099798,39.21651939486631],[-76.58083405104793,39.21650833391704],[-76.58083325289465,39.21649740099546],[-76.58083021268303,39.21648670327619],[-76.58082628832257,39.21647611049236],[-76.5808219325062,39.21646563507026],[-76.58081729466724,39.21645526763501],[-76.5808122926982,39.21644498987768],[-76.58080699724442,39.21643480024901],[-76.58080146504521,39.21642469895171],[-76.58079568570577,39.21641468144459],[-76.58078975090049,39.21640471472631],[-76.5807837731732,39.21639476136603],[-76.58077786622032,39.216384784838],[-76.58077214491227,39.21637474591815],[-76.58076666378915,39.21636462498427],[-76.58076133699308,39.21635445055461],[-76.58075605776985,39.21634426008053],[-76.58075071820218,39.21633409191013],[-76.58074521269404,39.21632398349892],[-76.58073949958619,39.21631393019413],[-76.58073371490558,39.21630383970128],[-76.58072746582147,39.21629395562923],[-76.58072028629765,39.2162845645626],[-76.58071203028481,39.21627569120126],[-76.58070297541394,39.21626718700733],[-76.58069321947734,39.21625915952302],[-76.58068286378341,39.21625170909675],[-76.58067209694498,39.21624466255163],[-76.5806610485095,39.21623784830147],[-76.58064979759442,39.21623120267347],[-76.58063842100148,39.21622466198657],[-76.58062699667975,39.21621816436544],[-76.58061560144166,39.21621164432759],[-76.58060431558398,39.21620503460147],[-76.58059316637247,39.21619822809168],[-76.58058203710873,39.21619137751383],[-76.58057078055707,39.21618470843764],[-76.58055925527653,39.21617844555271],[-76.58054707596534,39.21617312614853],[-76.58054197279905,39.21617195310731],[-76.58031519078511,39.21608564018861],[-76.58031024267976,39.21608135189159],[-76.58029687967755,39.21607843241139],[-76.58028355310491,39.21607503114233],[-76.58027166226255,39.21606910741639],[-76.58025986655684,39.21606295703282],[-76.58024769651708,39.21605705572615],[-76.58023421003207,39.21605485011612],[-76.5802199483736,39.21605586292329],[-76.58020616130518,39.2160582763388],[-76.58019270024855,39.21606175924475],[-76.58018008265975,39.21606653328298],[-76.58015816771153,39.2160773921597],[-76.58014623746726,39.21608342253999],[-76.58013429920591,39.21608943757712],[-76.58012165123337,39.21609406106998],[-76.58010819405602,39.21609708187967],[-76.58009437525662,39.2160993762655],[-76.58008039274075,39.21610135388979],[-76.58006643977647,39.21610342529937],[-76.58005271311092,39.21610600015277],[-76.58003942196162,39.2161095331921],[-76.58002657067229,39.21611407307533],[-76.58001388154979,39.21611899546848],[-76.58000106544995,39.2161236543779],[-76.57998813037726,39.21612806694694],[-76.57997514487046,39.21613239195837],[-76.57996203009732,39.21613644897381],[-76.57994875405141,39.21614016761776],[-76.57993540477513,39.2161437373693],[-76.57992199714066,39.21614718890815],[-76.5799085483839,39.21615054481551],[-76.57989507111971,39.21615382585449],[-76.57988157795754,39.21615705368894],[-76.57986806078647,39.21616022919061],[-76.57985451737595,39.21616333793902],[-76.57984094317428,39.21616636640614],[-76.5798273371087,39.21616930017566],[-76.57981369810666,39.2161721248312],[-76.57980001783345,39.21617487907648],[-76.57978628833816,39.21617753676041],[-76.57977250115144,39.21617996363629],[-76.579758652436,39.21618202547405],[-76.57974469690322,39.21618354826082],[-76.57973056854976,39.2161843362908],[-76.5797164164464,39.2161844414423],[-76.57970238615172,39.21618372641721],[-76.57968844117086,39.21618190103347],[-76.57967448463798,39.21618007110281],[-76.57966014303472,39.21617932523181],[-76.57964601099042,39.21617819367489],[-76.5796331087471,39.21617451190761],[-76.57962102614731,39.21616890720603],[-76.57960950893444,39.21616227403552],[-76.5795984956284,39.21615521750058],[-76.57958801534905,39.21614790435014],[-76.57957808469614,39.21614007341741],[-76.57956854499007,39.21613192680963],[-76.57955924918396,39.21612365766794],[-76.57955018002063,39.21611524701411],[-76.57954130154536,39.21610670462807],[-76.57953255444193,39.21609807443551],[-76.57952388053606,39.21608940306861],[-76.57951524029255,39.21608071830996],[-76.57950666164049,39.21607199683937],[-76.57949813180001,39.21606324581721],[-76.57948963565909,39.216054475098],[-76.57948115579549,39.21604569362714],[-76.57947267709717,39.21603691125899],[-76.57946418328912,39.21602813874465],[-76.57945567554525,39.21601937338598],[-76.57944722707701,39.21601057130709],[-76.57943880999248,39.21600174952286],[-76.57943038129332,39.21599293400183],[-76.57942190028642,39.21598415252233],[-76.57941332397338,39.21597543105298],[-76.57940461167176,39.21596679557049],[-76.57939571224036,39.2159582783197],[-76.57938659548212,39.21594989450558],[-76.57937730670061,39.21594161996938],[-76.57936789469458,39.21593342696175],[-76.57935840826802,39.21592528683267],[-76.57934890553658,39.21591716285843],[-76.57933945762505,39.21590897242211],[-76.579329955106,39.21590081331657],[-76.57932024894203,39.2158928237278],[-76.57931018777981,39.21588514183332],[-76.57929965401151,39.21587787800751],[-76.57928875830271,39.21587092095016],[-76.57927759840003,39.21586418994138],[-76.57926625456923,39.21585762311494],[-76.57925480359148,39.21585116039376],[-76.57924332573786,39.21584473901105],[-76.57923187569808,39.21583831412376],[-76.57922038026076,39.21583192960771],[-76.57920881025333,39.21582562319106],[-76.57919714347764,39.21581942812305],[-76.5791853623778,39.21581337586804],[-76.57917344707135,39.21580749968358],[-76.57916131707367,39.21580189836694],[-76.57914898990846,39.21579654585815],[-76.57913656592135,39.21579131370545],[-76.57912414777374,39.21578607346533],[-76.57911183465873,39.21578069578115],[-76.57909973041733,39.2157750486106],[-76.5790878455937,39.21576911127359],[-76.57907605647002,39.21576304816931],[-76.57906423114811,39.21575703627849],[-76.57905224004557,39.21575125259015],[-76.57903996527133,39.21574585521867],[-76.5790274546636,39.21574078308254],[-76.57901479811464,39.21573591309718],[-76.57900207386263,39.2157311347472],[-76.57898936247244,39.21572633572402],[-76.57897674334028,39.21572140551645],[-76.57896429120942,39.21571623719979],[-76.57895200491133,39.21571083257144],[-76.57893980389187,39.21570530213845],[-76.57892761104387,39.21569976092412],[-76.57891534814507,39.21569431674151],[-76.57890309821508,39.21568883387054],[-76.57889084717176,39.21568334378804],[-76.57887848622178,39.21567803256519],[-76.57886590888229,39.21567308718228],[-76.5788529690067,39.21566874402009],[-76.5788397308953,39.2156648997195],[-76.57882640383167,39.21566121543706],[-76.57881316846644,39.21565729908085],[-76.57879997055319,39.21565312073031],[-76.57878665743176,39.21564942928715],[-76.57877307010131,39.21564706641072],[-76.57875899336,39.21564697804903],[-76.5787447455309,39.21564781687575],[-76.57873057870273,39.21564807949178],[-76.57871639459097,39.21564832763159],[-76.57870244418029,39.21564958638394],[-76.57868861470192,39.21565193100973],[-76.57867487409474,39.21565491010264],[-76.57866160207253,39.21565873490799],[-76.578649157287,39.21566365352762],[-76.57863753177465,39.21566983708157],[-76.57862642172987,39.2156767710341],[-76.57861551920733,39.21568385796268],[-76.57860459612304,39.21569089707506],[-76.57859425373175,39.21569842739568],[-76.57858538350322,39.21570686558437],[-76.57857776384695,39.21571608743874],[-76.57857071179588,39.21572566443706],[-76.57856360678271,39.21573518990024],[-76.57855632526154,39.21574460393299],[-76.57854911764294,39.21575405246044],[-76.57854213526869,39.21576359457676],[-76.57853544967941,39.21577327287565],[-76.57852906427418,39.21578309998032],[-76.57852345327105,39.2157931676721],[-76.57851858411983,39.2158034974529],[-76.57851409723813,39.21581399795327],[-76.57851060525859,39.2158246569611],[-76.57850862470562,39.21583546191926],[-76.57850742981199,39.21584636698354],[-76.57850668727461,39.21585734033029],[-76.57850632778879,39.21586835288558],[-76.57850628317557,39.21587938098433],[-76.57850648296136,39.2158903973499],[-76.5785068601359,39.21590137651979],[-76.57850746899911,39.21591233940691],[-76.57850833956665,39.21592330143248],[-76.57850943944308,39.21593425797611],[-76.57851073622241,39.21594520621911],[-76.57851219750924,39.21595614154123],[-76.57851379206605,39.21596705932633],[-76.5785155083404,39.215977955029],[-76.5785174540363,39.21598882633376],[-76.57851959668898,39.21599968033025],[-76.57852187374323,39.21601052129765],[-76.57852422610675,39.2160213553292],[-76.57852659006112,39.21603218760072],[-76.57852890651401,39.21604302420549],[-76.57853108390289,39.21605387922712],[-76.57853307465594,39.21606476870883],[-76.57853504221876,39.21607566351186],[-76.57853715815865,39.21608653182432],[-76.57853959752214,39.21609734094588],[-76.57854253187131,39.21610805996546],[-76.57854602959966,39.2161186765177],[-76.57854995506818,39.2161292171388],[-76.57855417961756,39.21613970298546],[-76.57855857341441,39.21615015791237],[-76.5785630066413,39.21616060307211],[-76.57856735178588,39.21617106142707],[-76.57857151721053,39.21618155967153],[-76.57857557472889,39.21619209446033],[-76.57857963223776,39.21620263105045],[-76.57858379414949,39.216213136488],[-76.57858816719782,39.21622357692659],[-76.57859285926372,39.21623392032547],[-76.57859798637119,39.21624412836766],[-76.57860365292751,39.21625416899994],[-76.5786097174021,39.21626408585225],[-76.57861599880891,39.21627393682538],[-76.57862231268795,39.21628377980777],[-76.57862847804761,39.21629367360092],[-76.57863431159623,39.21630367429606],[-76.57863976227218,39.21631380062616],[-76.57864498785466,39.21632400271418],[-76.57865006723856,39.21633425472071],[-76.57865507700849,39.21634452989727],[-76.57866009374359,39.21635480239632],[-76.57866519402297,39.21636504637011],[-76.57867045674718,39.2163752350784],[-76.57867595850081,39.21638534177281],[-76.57868173872885,39.216395353984],[-76.57868773362155,39.21640529220072],[-76.57869388864349,39.21641517514359],[-76.57870014809582,39.2164250224298],[-76.57870645860095,39.21643485278408],[-76.57871276330202,39.21644468581948],[-76.57871900882682,39.21645453936005],[-76.57872514063438,39.21646443302716],[-76.57873110303106,39.21647438553728],[-76.57873690645438,39.21648439422557],[-76.57874260891903,39.21649443948314],[-76.57874823015821,39.2165045132738],[-76.57875379222089,39.21651460756969],[-76.57875931598744,39.21652471614028],[-76.5787648235123,39.21653483005702],[-76.57877033683913,39.21654494219271],[-76.57877587569574,39.21655504541192],[-76.57878146328919,39.21656513169092],[-76.57878720632151,39.21657517258776],[-76.57879305953659,39.216585184154],[-76.57879885592315,39.2165952108292],[-76.57880442848047,39.21660529525149],[-76.57880959975395,39.21661548542608],[-76.57881331773878,39.21662607213261],[-76.57881612781271,39.21663686456156],[-76.57881866107405,39.21664766680624],[-76.57882093007302,39.21665851043908],[-76.57882287329404,39.21666941956044],[-76.57882484090744,39.2166803161583],[-76.57882846887179,39.2166908529981],[-76.57883396471166,39.21670098848784],[-76.57883990021155,39.21671099133882],[-76.57884568613467,39.21672102788238],[-76.57885162059206,39.21673101181253],[-76.57885793359476,39.21674081964714],[-76.5788661481967,39.21674981189286],[-76.57887342735823,39.21675896562394],[-76.57887551886105,39.21676986626834],[-76.57887788597778,39.21678076429865],[-76.5788833801835,39.21679078718231],[-76.57888988230492,39.21680053444053],[-76.57889674508475,39.21681019291448],[-76.57890336416277,39.21681994059163],[-76.57890922102713,39.21682992874405],[-76.57891466831416,39.21684005414669],[-76.57891989744866,39.21685025623345],[-76.57892496645638,39.21686051359373],[-76.57892993222093,39.21687080211068],[-76.5789348539314,39.2168810994771],[-76.57893970722269,39.2168914137126],[-76.57894438418633,39.21690178136209],[-76.57894896254388,39.21691217928405],[-76.57895352814926,39.21692257986241],[-76.57895816569857,39.21693295547684],[-76.57896295988249,39.21694327940774],[-76.57896799655515,39.21695352403895],[-76.57897388022207,39.21696348706202],[-76.57898054127295,39.21697319074661],[-76.57898702362708,39.21698295684433],[-76.5789933029194,39.21699279337485],[-76.5789995532005,39.21700264061029],[-76.57900575473187,39.21701250748766],[-76.57901189359124,39.21702239846086],[-76.57901806494982,39.21703227693938],[-76.57902436399473,39.21704210363033],[-76.57903079649441,39.21705188215752],[-76.5790372417227,39.21706166253154],[-76.57904379374082,39.21707140005078],[-76.57905055129004,39.21708104192336],[-76.57905761889054,39.21709053717961],[-76.57906523574323,39.21709977498082],[-76.57907328688499,39.21710880986203],[-76.57908140305052,39.21711781525016],[-76.57908921150569,39.21712696365886],[-76.57909641266522,39.21713639453553],[-76.57910323062826,39.21714600509421],[-76.57910982565171,39.21715571844264],[-76.57911631268817,39.21716548184705],[-76.57912280552151,39.21717524437113],[-76.57912941564115,39.21718495146703],[-76.57913626263161,39.21719455041756],[-76.57914399660878,39.21720376341146],[-76.57915205806586,39.21721281994272],[-76.57915901337127,39.21722231478975],[-76.57916430772421,39.21723246485287],[-76.57916890333382,39.21724289165198],[-76.5791738899717,39.21725318563681],[-76.57917965369676,39.21726327072459],[-76.57918497110282,39.21727343978575],[-76.57918843459287,39.21728399764136],[-76.57919003025995,39.2172949460433],[-76.57919135483191,39.21730591599258],[-76.57919257293086,39.21731687565143],[-76.57919226258396,39.217327819921],[-76.57918952024153,39.2173386077418],[-76.57918627472543,39.21734930277937],[-76.57918350094485,39.21736051025089],[-76.57918923031598,39.21736994575204],[-76.57919852920826,39.21737869144366],[-76.57920910484336,39.21738596082955],[-76.57922293855304,39.21738803718762],[-76.57923709856038,39.2173874204799],[-76.57925116628888,39.21738615667928],[-76.57926532007801,39.21738678482436],[-76.57927705233114,39.21739291796286],[-76.57928509950962,39.21740185012544],[-76.57929146994812,39.2174117563254],[-76.57929682567932,39.2174219111059],[-76.57930126600459,39.21743236256431],[-76.57930477778042,39.21744298364368],[-76.57930751970045,39.2174537659051],[-76.57931035087493,39.21746453317314],[-76.57931395765453,39.21747514648565],[-76.57931801078382,39.21748567132003],[-76.57932245565732,39.217496138107],[-76.57932713930157,39.21750656701617],[-76.57933104077362,39.21751708590167],[-76.5793325165789,39.21752794289244],[-76.57933133848573,39.21753915608672],[-76.57933317886801,39.21754965407212],[-76.57934146649521,39.21755866005545],[-76.57934976550142,39.21756770030866],[-76.57935766895088,39.21757685624483],[-76.57936410893019,39.21758656091476],[-76.5793682705536,39.21759714828977],[-76.57936946029599,39.21760801326221],[-76.57936890636532,39.21761903052215],[-76.57936859449146,39.21763004144344],[-76.57937026793772,39.21764096309712],[-76.57937441629923,39.2176514441321],[-76.57937960849939,39.21766164696403],[-76.57938520889654,39.2176717512721],[-76.57939091376821,39.21768181271687],[-76.57939658622379,39.21769187314435],[-76.57940235033087,39.21770190507505],[-76.57940830826783,39.21771186203457],[-76.57941458075649,39.21772169491262],[-76.57942159717223,39.21773124851215],[-76.57942892232877,39.21774068161243],[-76.5794357427588,39.21775028405163],[-76.57944135524139,39.21776030552829],[-76.57944603944868,39.21777064525652],[-76.57945022471313,39.21778115524562],[-76.57945752826869,39.21779971226967],[-76.57945858273798,39.21780233191419],[-76.57945964879768,39.2178049497987],[-76.57946072413183,39.2178075659149],[-76.57946180526127,39.21781018115104],[-76.57946288871207,39.21781279549473],[-76.5794639721629,39.21781540983837],[-76.57946505097661,39.21781802506618],[-76.57946612399526,39.21782064117404],[-76.57946718541832,39.21782325994263],[-76.5794682352458,39.21782588137197],[-76.5794692676825,39.21782850634216],[-76.57947028040716,39.21783113574559],[-76.57947127110393,39.21783376957394],[-76.57947223513544,39.21783640871141],[-76.57947316090085,39.21783905671962],[-76.57947400782858,39.21784172065926],[-76.57947479097744,39.21784439968368],[-76.57947553007037,39.21784708755803],[-76.57947624134009,39.2178497807373],[-76.57947694449342,39.21785247568908],[-76.57947765924256,39.21785516798006],[-76.57947840182021,39.21785785406527],[-76.5794791931019,39.2178605286149],[-76.57948005163108,39.21786318899296],[-76.57948099480929,39.21786582985719],[-76.57948200406639,39.21786845834726],[-76.57948303301964,39.21787108510635],[-76.57948408514837,39.21787370924615],[-76.57948516045781,39.21787632986584],[-76.57948626127995,39.21787894427148],[-76.57948738993072,39.21788155247139],[-76.57948854642085,39.21788415266402],[-76.57948973307151,39.2178867439569],[-76.57949095220934,39.21788932455678],[-76.57949220384506,39.21789189266223],[-76.57949349145257,39.21789444828561],[-76.57949481504778,39.21789698872465],[-76.57949617811005,39.21789951309103],[-76.57949764678216,39.21790199820149],[-76.57949930343987,39.21790441732782],[-76.57950109470461,39.21790678919505],[-76.57950296139744,39.21790913430911],[-76.57950484897646,39.21791147229174],[-76.57950670058393,39.21791382275639],[-76.5795084593514,39.21791620711802],[-76.57951006843174,39.21791864318846],[-76.57951149763248,39.21792114527214],[-76.57951287576006,39.21792366789075],[-76.57951423298027,39.21792620124381],[-76.57951556697722,39.21792874532298],[-76.57951687659293,39.21793130012416],[-76.57951815952214,39.21793386383749],[-76.57951941460686,39.21793643645882],[-76.57952063952584,39.21793901888064],[-76.57952183196845,39.21794161019389],[-76.57952299194,39.21794420949782],[-76.57952411597196,39.21794681587921],[-76.57952520173777,39.21794943113126],[-76.57952625040592,39.21795205345665],[-76.57952725734998,39.21795468193795],[-76.57952822140656,39.21795731747186],[-76.57952914488638,39.21795996096739],[-76.57953003125253,39.21796261423851],[-76.57953088167373,39.21796527548788],[-76.57953170078719,39.21796794383128],[-76.57953249091418,39.21797061837628],[-76.57953325436524,39.21797330003198],[-76.57953399579362,39.21797598521183],[-76.57953471634664,39.2179786757216],[-76.57953542066676,39.21798136977631],[-76.5795361099174,39.21798406647939],[-76.57953678873567,39.21798676494661],[-76.5795374594375,39.21798946518633],[-76.57953812434427,39.21799216630603],[-76.57953878809845,39.21799486652083],[-76.57953945069998,39.21799756583069],[-76.57954011910209,39.21800026335981],[-76.5795407921522,39.21800295820326],[-76.57954146172305,39.21800565393495],[-76.57954211158719,39.21800835319916],[-76.57954274174452,39.21801105599589],[-76.57954335220042,39.2180137614244],[-76.57954394179694,39.2180164694805],[-76.57954451052868,39.21801918106491],[-76.57954505609045,39.21802189436792],[-76.57954557731887,39.21802461028606],[-76.57954607653522,39.21802732792691],[-76.57954654910769,39.21803004727381],[-76.57954696026506,39.21803277360696],[-76.57954721729519,39.21803551920509],[-76.57954737930244,39.21803827617286],[-76.57954750887058,39.21804103572677],[-76.57954767438376,39.21804378730246],[-76.57954794073103,39.21804652392616],[-76.57954837282804,39.21804923412022],[-76.57954902396814,39.21805191357178],[-76.57954980360029,39.21805460068992],[-76.57955068860244,39.21805728908637],[-76.57955169530891,39.21805995810164],[-76.57955283542199,39.21806258705979],[-76.57955412526536,39.21806515710287],[-76.57955557886795,39.21806764576159],[-76.5795572195226,39.21807003059997],[-76.57955923524707,39.21807224022913],[-76.57956157490413,39.21807430599321],[-76.57956408638891,39.21807629670727],[-76.57956661411741,39.21807828207479],[-76.57956900597424,39.21808033271247],[-76.57957110870187,39.21808251653047],[-76.57957287927937,39.21808486310051],[-76.57957450340338,39.21808730192623],[-76.57957599161294,39.2180898132282],[-76.57957734748865,39.21809237900364],[-76.57957857113178,39.2180949821381],[-76.57957966727551,39.21809760553374],[-76.5795806371739,39.21810023298098],[-76.57958122111067,39.21810291939779],[-76.57958134013582,39.21810569963183],[-76.5795813177445,39.21810850368024],[-76.57958148319517,39.21811126606495],[-76.57958216229369,39.21811391769227],[-76.5795833457444,39.21811646393353],[-76.57958467990737,39.21811898098894],[-76.57958614043865,39.21812147327522],[-76.57958770185219,39.21812394250259],[-76.57958934211452,39.21812639399674],[-76.57959103690301,39.21812882857146],[-76.5795927653474,39.21813125065577],[-76.57959450195636,39.21813366286073],[-76.57959622471246,39.21813606780976],[-76.57959798349911,39.21813845036835],[-76.57959986760278,39.21814079013836],[-76.57960183758848,39.21814309778795],[-76.57960385515244,39.21814538849311],[-76.579605880849,39.21814767472345],[-76.57960787407445,39.2181499689445],[-76.57960979653046,39.21815228543144],[-76.57961160761337,39.21815463664986],[-76.57961326902472,39.21815703687496],[-76.57961474016079,39.21815949857233],[-76.57961599085577,39.21816203154241],[-76.57961712320837,39.21816460282209],[-76.57961818130153,39.2181671990576],[-76.57961917210444,39.21816981667078],[-76.57962010373349,39.21817245388912],[-76.57962097967865,39.21817510802286],[-76.57962181037229,39.21817777730771],[-76.57962260046233,39.21818045905805],[-76.57962335690719,39.21818315149724],[-76.5796240878288,39.21818585195199],[-76.57962479787494,39.21818855773668],[-76.57962549632008,39.21819126708286],[-76.57962618780677,39.2181939782057],[-76.57962688162013,39.21819668753533],[-76.57962758240267,39.21819939328673],[-76.57962829710762,39.21820209458418],[-76.57962903386743,39.21820478695278],[-76.57962979731934,39.21820746950841],[-76.57963052598947,39.21821015914567],[-76.57963119319645,39.21821286387602],[-76.57963181749982,39.21821557836131],[-76.57963241861708,39.2182182972674],[-76.57963301509722,39.21822101705769],[-76.57963362665767,39.21822373239806],[-76.57963427302138,39.21822643705372],[-76.57963497157924,39.21822912748389],[-76.57963574437005,39.21823179746196],[-76.57963660878478,39.21823444344719],[-76.5796375833883,39.21823705920061],[-76.57963879808166,39.21823961005699],[-76.57964032711899,39.21824207196138],[-76.5796420591324,39.21824447874438],[-76.57964388161183,39.21824686153031],[-76.57964568088921,39.2182492514394],[-76.57964734560188,39.2182516814015],[-76.5796487666977,39.2182541852558],[-76.57964992084651,39.21825679174358],[-76.57965079896577,39.21825947020587],[-76.57965138393655,39.21826217824464],[-76.57965173607998,39.21826489806038],[-76.57965195727643,39.21826763362111],[-76.57965208692369,39.21827038056406],[-76.57965216442477,39.2182731336257],[-76.57965222918818,39.21827588664176],[-76.57965232061167,39.21827863524934],[-76.57965250348312,39.21828138958922],[-76.5796527407207,39.21828415403235],[-76.5796528703253,39.21828690818139],[-76.57965273264061,39.2182896271434],[-76.57965197243504,39.21829226460699],[-76.57965055730132,39.21829481775371],[-76.57964937933356,39.21829740868191],[-76.5796492268892,39.21830027351743],[-76.57967489210309,39.21841346379011],[-76.57969935586323,39.21851718345284],[-76.57973035601732,39.21864546376322],[-76.57975926721006,39.21875750812774],[-76.57978778137188,39.2188650390529],[-76.57964683418533,39.21887447078845],[-76.57951184517367,39.21888268513071],[-76.57937425397971,39.21888915779126],[-76.57922959335686,39.21889793526176],[-76.57909095003664,39.21890685303878],[-76.57890451557589,39.21891812766797],[-76.57878594689633,39.21892498586919],[-76.57868960676664,39.21893018344656],[-76.57869112561087,39.21900677141252],[-76.57869295835471,39.21909466709384],[-76.57869737834766,39.21925278695569],[-76.57870163703053,39.21938149576809],[-76.57870261186915,39.21953201778222],[-76.57870387780859,39.21967368346717],[-76.57870482648923,39.21979114045175],[-76.57870604782946,39.22000161292772],[-76.57870769119812,39.22017979575624],[-76.57871009589897,39.22033798580235],[-76.5787123495805,39.2206559213533],[-76.57879321283048,39.22065751232833],[-76.57878255416583,39.22074537664633],[-76.57895773449536,39.22075000562193],[-76.57903661916804,39.22075191991649],[-76.57903703557086,39.2207537608019],[-76.5790365491298,39.2207592412013],[-76.57903618542746,39.22076472384248],[-76.57903637291324,39.22077021296461],[-76.57903643996556,39.22077570165478],[-76.57903617236232,39.22078118734298],[-76.57903583875755,39.22078667189365],[-76.57903547851303,39.22079215724953],[-76.57903512521656,39.22079764263032],[-76.57903481707731,39.22080312907384],[-76.57903458536163,39.22080861669232],[-76.57903438259096,39.22081410531536],[-76.57903419602712,39.22081959489728],[-76.57903402104876,39.22082508361999],[-76.57903385532917,39.22083057327672],[-76.57903369539963,39.22083606295417],[-76.57903354009676,39.22084155354896],[-76.57903338595725,39.22084704324721],[-76.57903323065969,39.22085253294122],[-76.57903307073003,39.22085802261864],[-76.57903290385225,39.22086351227111],[-76.57903272655233,39.22086900188624],[-76.57903254577828,39.22087449148884],[-76.57903239626,39.22087998300515],[-76.57903226988603,39.22088547730679],[-76.57903215625016,39.22089097165408],[-76.57903204377232,39.22089646600555],[-76.57903191971427,39.22090196031549],[-76.57903177481727,39.22090745364986],[-76.57903159751181,39.22091294416566],[-76.57903137505967,39.22091843181717],[-76.57903109703868,39.22092391656696],[-76.57903075187939,39.22092939657209],[-76.57903032800691,39.22093487089013],[-76.57902975943027,39.22094033658215],[-76.57902895702486,39.22094578612209],[-76.57902798560745,39.22095122514725],[-76.57902690769509,39.22095665658414],[-76.57902579042063,39.22096208607823],[-76.57902469860632,39.22096751836599],[-76.57902369939592,39.22097295729137],[-76.57902296978459,39.22097843411577],[-76.57902246230429,39.22098394686734],[-76.57902167493064,39.22098940006426],[-76.57902013678286,39.22099471905424],[-76.57901787749387,39.22099998411296],[-76.57901500091762,39.22100506229754],[-76.5790115011151,39.22100978333936],[-76.57900631620565,39.22101394435686],[-76.57899960277328,39.22101496427759],[-76.57899267577764,39.22101528442697],[-76.57898570068984,39.22101551252388],[-76.57897868439404,39.22101565940245],[-76.57897163377426,39.22101573589664],[-76.57896455456184,39.22101575193556],[-76.5789574547935,39.22101571925827],[-76.57895034019525,39.22101564869457],[-76.57894321996184,39.22101555198764],[-76.57893609751389,39.22101543815752],[-76.57892898320414,39.22101531895149],[-76.57892188160054,39.22101520519527],[-76.57891479958717,39.22101510772297],[-76.57890774067003,39.22101502114247],[-76.57890068319945,39.22101488592462],[-76.57889362599056,39.22101470656911],[-76.57888657014279,39.22101449298847],[-76.57887951326524,39.22101425778495],[-76.57887245760452,39.22101401267683],[-76.5788654031019,39.22101376757237],[-76.57885834851913,39.22101353597897],[-76.57885129496093,39.22101332690828],[-76.57884424118899,39.22101315386755],[-76.57883718945534,39.22101302767431],[-76.57883007025748,39.22101295168214],[-76.5788229405172,39.22101328640716],[-76.57881636950903,39.22101489413679],[-76.57881052076166,39.22101812405963],[-76.57880444886101,39.2210209045931],[-76.5787976615014,39.22102228274723],[-76.57879057816332,39.22102299416267],[-76.57878349322803,39.22102319392914],[-76.57877645125843,39.22102317856316],[-76.57876939828574,39.22102306587307],[-76.57876234000388,39.22102287209335],[-76.57875527862745,39.22102261434671],[-76.57874821752355,39.22102231066093],[-76.57874116122282,39.22102197816697],[-76.57873411078171,39.2210216339835],[-76.57872704529873,39.22102109247491],[-76.57871993833361,39.22102012564908],[-76.57871286345114,39.22101921658788],[-76.57870589752976,39.22101887540848],[-76.5786991198225,39.22101960232799],[-76.57869257278561,39.22102146325577],[-76.57868614826326,39.22102394976394],[-76.57867971633809,39.22102651281147],[-76.57867315056156,39.22102860427045],[-76.57866634309187,39.22102985803719],[-76.57865934331433,39.22103073368655],[-76.57865223774373,39.22103128827816],[-76.57864510521622,39.22103150678183],[-76.57863803036348,39.2210313732874],[-76.57863108535697,39.22103082499932],[-76.5786242484476,39.22102962403387],[-76.57861746734103,39.22102799629889],[-76.57861069389918,39.22102624788659],[-76.57860387881513,39.22102468668654],[-76.57859697751553,39.22102360349039],[-76.57858999053477,39.22102290822215],[-76.57858295004809,39.22102244786478],[-76.57857588083881,39.22102214413949],[-76.57856880771187,39.22102191516439],[-76.57856175306512,39.22102169436229],[-76.57855469809763,39.22102152760532],[-76.57854764046132,39.22102142028985],[-76.57854057908366,39.22102135799948],[-76.57853351751353,39.221021328136],[-76.57852645699448,39.22102131629152],[-76.5785193918915,39.2210212963231],[-76.57851228911392,39.22102118524025],[-76.5785051747241,39.22102107951991],[-76.57849809426212,39.22102111083951],[-76.57849109209933,39.22102141267374],[-76.57848420681994,39.22102231304492],[-76.57847769832699,39.22102470285674],[-76.57847222857538,39.22102807194328],[-76.578467783642,39.22103242475861],[-76.57846358378032,39.22103685051634],[-76.57845947861894,39.2210413198515],[-76.57845546925712,39.22104584267662],[-76.57845153955748,39.22105040632282],[-76.57844801127577,39.22105523623993],[-76.57844467002045,39.22106016321209],[-76.5784402589839,39.22106426753297],[-76.57843464270448,39.22106754421191],[-76.57842839953702,39.22107030069051],[-76.57842192853298,39.22107261676994],[-76.57841538747476,39.22107463894328],[-76.57840870176786,39.22107644801268],[-76.57840190852778,39.22107803420286],[-76.57839504487001,39.22107938773858],[-76.57838814661837,39.22108052135946],[-76.57838122449733,39.22108157922866],[-76.57837428066257,39.22108258837735],[-76.57836731861485,39.22108354431426],[-76.57836034069166,39.22108444344455],[-76.57835334924116,39.22108528037207],[-76.57834635006941,39.22108605241529],[-76.57833934321393,39.22108675326898],[-76.57833233447559,39.22108738115225],[-76.57832532389708,39.22108792885918],[-76.57831827801903,39.22108837555153],[-76.57831119127596,39.22108868337661],[-76.57830409279491,39.22108882271331],[-76.578297005929,39.22108876121749],[-76.57828995865256,39.22108846836316],[-76.57828297546594,39.22108791361191],[-76.57827604743144,39.22108704198403],[-76.57826915582827,39.22108588584031],[-76.5782622990758,39.22108451633675],[-76.57825547211401,39.22108300551741],[-76.57824867104628,39.22108142452995],[-76.57824189428123,39.22107984633176],[-76.5782351572101,39.22107821422905],[-76.57822846606715,39.22107645347957],[-76.57822180084507,39.22107461805814],[-76.57821514618458,39.22107275925402],[-76.57820848091502,39.22107093193868],[-76.57820178851905,39.22106918739717],[-76.5781950501528,39.22106757870778],[-76.57818824579262,39.22106616254763],[-76.57818136713441,39.22106497221565],[-76.5781744319016,39.22106394832414],[-76.5781674648299,39.2210630207012],[-76.57816048717568,39.2210621200632],[-76.57815352368009,39.22106117533746],[-76.5781465920773,39.22106012533473],[-76.57813967107886,39.22105904474323],[-76.57813275012339,39.22105795694523],[-76.57812583272785,39.22105685474717],[-76.57811892241978,39.22105572915386],[-76.57811202155268,39.22105457386839],[-76.57810513249082,39.22105338079221],[-76.57809822490086,39.22105218764901],[-76.57809119948412,39.22105114000811],[-76.57808417545581,39.22105005363827],[-76.57807730583838,39.22104870659707],[-76.57807074020704,39.22104687242584],[-76.57806460006107,39.22104437230638],[-76.57805880707463,39.22104133026464],[-76.57805323622654,39.22103793321342],[-76.57804776947032,39.2210343635865],[-76.57804228530156,39.22103080110291],[-76.57803666336841,39.2210274263867],[-76.57803078577965,39.22102439574952],[-76.57802459145458,39.22102165942889],[-76.57801814930156,39.22101931405591],[-76.57801154185195,39.22101750225047],[-76.57800449419503,39.22101630049111],[-76.57799730576117,39.22101598819521],[-76.57799049946921,39.22101704195401],[-76.57798397782554,39.22102008295479],[-76.57798080122659,39.22102457903264],[-76.57797962014259,39.22103001459302],[-76.57797961354427,39.22103580117685],[-76.57798066704544,39.22104131052951],[-76.57798341237522,39.22104624766543],[-76.57798747813439,39.22105094633895],[-76.57799119378691,39.22105570860948],[-76.57799295707669,39.22106084398848],[-76.57799266354594,39.22106639173472],[-76.57799163352026,39.22107193593187],[-76.57799045726108,39.22107733908151],[-76.57798903563541,39.22108271882936],[-76.5779875260429,39.22108809105465],[-76.5779860858724,39.2210934734381],[-76.57798484126783,39.22109887994505],[-76.57798373896036,39.22110431038395],[-76.57798269218415,39.22110975003029],[-76.57798161417868,39.22111518325882],[-76.57798042397359,39.22112059446524],[-76.57797903480835,39.22112596802416],[-76.57797744767494,39.22113133186341],[-76.57797578838002,39.22113675669611],[-76.57797385847746,39.22114211840193],[-76.5779714376097,39.22114727746835],[-76.57796830077642,39.22115209616776],[-76.57796441893066,39.22115659060974],[-76.57795998714604,39.2211608677876],[-76.57795516156264,39.22116496069092],[-76.57795010064723,39.22116890051599],[-76.57794496053991,39.22117272025235],[-76.57793975741006,39.22117642716442],[-76.5779342359348,39.22117991944668],[-76.57792841871617,39.22118309629305],[-76.57792234341058,39.22118585695155],[-76.57791600726293,39.22118827527619],[-76.5779094248136,39.22119043779411],[-76.57790266633639,39.22119221144256],[-76.57789580208906,39.22119346586128],[-76.57788887869248,39.22119415077418],[-76.57788187755558,39.22119447149216],[-76.57787481656428,39.22119453617309],[-76.57786772061142,39.22119444309143],[-76.57786060995772,39.22119429050498],[-76.57785350834865,39.22119417488261],[-76.57784643492971,39.22119418727194],[-76.57783935729643,39.22119412938483],[-76.57783227628006,39.22119405617188],[-76.57782522526109,39.2211941965512],[-76.57781822964749,39.22119475689258],[-76.57781127396053,39.22119561373365],[-76.57780434156891,39.221196642707],[-76.57779742359935,39.22119777802379],[-76.57779051232065,39.22119895660163],[-76.5777836000015,39.22120011535819],[-76.57777667084744,39.22120118397585],[-76.57776970290963,39.22120215336781],[-76.57776274065459,39.22120314079541],[-76.57775583542734,39.22120427525482],[-76.57774903856217,39.22120568754377],[-76.5777423934156,39.22120748681261],[-76.57773586350409,39.22120957654667],[-76.57772937690061,39.22121178353756],[-76.57772286515237,39.22121393458923],[-76.57771626655118,39.2212158907597],[-76.57770960498696,39.22121772419722],[-76.57770295146433,39.22121956847266],[-76.57769637930369,39.22122155716522],[-76.57768990866917,39.22122380474646],[-76.57768365028072,39.22122638728025],[-76.57767824380811,39.22122981690974],[-76.57767475467691,39.22123467396781],[-76.57767161196075,39.22123969891664],[-76.57766991571629,39.22124490652413],[-76.57767162909245,39.22125044797969],[-76.57767779462077,39.2212525752882],[-76.57768490291117,39.22125293145335],[-76.57769196771018,39.22125300641834],[-76.57769904695722,39.22125298865465],[-76.57770610851794,39.22125302397285],[-76.57771316896877,39.22125305117964],[-76.57772022833664,39.22125306577116],[-76.57772728774738,39.2212530731562],[-76.57773434831607,39.22125308054498],[-76.57774140768932,39.22125309423446],[-76.57774846698756,39.22125312053419],[-76.57775552616258,39.221253167551],[-76.57776258402961,39.22125323978447],[-76.57776964170925,39.22125334354412],[-76.5777766992871,39.22125346441781],[-76.57778375680604,39.22125359519943],[-76.57779081312417,39.22125373318256],[-76.57779787055748,39.22125387837551],[-76.57780492678997,39.22125403076991],[-76.57781198415377,39.22125418767187],[-76.57781904033811,39.22125434817231],[-76.57782609650106,39.22125451227532],[-76.577833152648,39.22125467908022],[-76.57784020995295,39.22125484588884],[-76.57784726609459,39.22125501359366],[-76.57785432224696,39.22125517949651],[-76.57786137841009,39.22125534359741],[-76.57786843575268,39.22125550409903],[-76.57787549195871,39.22125566099302],[-76.57788254819688,39.22125581248202],[-76.57788960563059,39.22125595766943],[-76.57789666310715,39.22125609565033],[-76.57790371947929,39.22125622461908],[-76.57791077705771,39.2212563454847],[-76.57791783470569,39.22125645463997],[-76.57792489360277,39.22125654848612],[-76.57793195144356,39.22125662521321],[-76.57793901052801,39.22125668753191],[-76.57794606968748,39.22125673723951],[-76.57795313005853,39.22125677794325],[-76.57796018931435,39.22125681143629],[-76.57796724859699,39.22125684042516],[-76.57797430904834,39.2212568676162],[-76.57798136834701,39.22125689390197],[-76.57798842762432,39.22125692379027],[-76.57799548803287,39.22125695818615],[-76.57800254723519,39.22125700068428],[-76.57800960638404,39.22125705218956],[-76.57801666429455,39.22125711720171],[-76.57802372327748,39.22125719662974],[-76.57803078100066,39.22125729316759],[-76.57803783743205,39.22125741221987],[-76.57804489485551,39.22125755919949],[-76.57805194981313,39.22125773139162],[-76.57805900465839,39.22125792249929],[-76.57806605941799,39.2212581280187],[-76.5780731141295,39.22125834164456],[-76.57808016880897,39.2212585606745],[-76.5780872234991,39.22125877790255],[-76.57809427822146,39.22125898972557],[-76.57810133300806,39.22125919073903],[-76.57810838788566,39.22125937643921],[-76.57811544404979,39.22125954052484],[-76.57812250151645,39.22125968029369],[-76.57812955793752,39.221259801142],[-76.5781366167603,39.22125990758603],[-76.57814367451066,39.2212599996133],[-76.57815073348867,39.22126007993445],[-76.5781577925362,39.22126014854528],[-76.57816485280068,39.2212602072515],[-76.57817191196067,39.22126025694553],[-76.57817897116342,39.22126029943304],[-76.57818603040904,39.22126033471405],[-76.57819308967608,39.22126036639159],[-76.57820018654782,39.22126050089271],[-76.57820731878863,39.22126072469769],[-76.57821444209165,39.22126089352258],[-76.57822151330281,39.22126086398835],[-76.5782284881205,39.22126049091027],[-76.57823534448633,39.22125958864861],[-76.57824212716781,39.22125783398431],[-76.57824860838967,39.22125536121593],[-76.57825451591198,39.22125238194904],[-76.57825948543145,39.22124862013685],[-76.57826372627719,39.22124412247148],[-76.57826780541657,39.2212395539641],[-76.57827141480799,39.22123471984018],[-76.57827505617414,39.22122996149647],[-76.57827993185909,39.22122620475088],[-76.57828582824685,39.22122314977695],[-76.57829223128022,39.22122058214329],[-76.57829878555371,39.22121848255731],[-76.57830565471173,39.2212175704289],[-76.57831282448386,39.22121790876133],[-76.57831991315437,39.22121844857651],[-76.57832681641032,39.22121959485043],[-76.57833337372003,39.22122166408068],[-76.57833954545153,39.22122450479401],[-76.57834455867493,39.22122820339061],[-76.57834825615325,39.22123291153743],[-76.57835191153143,39.22123768889288],[-76.57835594101805,39.2212422613138],[-76.57836106675892,39.22124592878664],[-76.57836736387289,39.2212485222346],[-76.57837394259774,39.22125049605688],[-76.57838071217185,39.22125211835962],[-76.57838758472978,39.2212533645062],[-76.57839449640656,39.22125445856113],[-76.57840143519941,39.22125547164294],[-76.57840839405853,39.22125642084106],[-76.57841536360745,39.22125732503822],[-76.57842233679636,39.22125820132386],[-76.57842930888626,39.22125906769659],[-76.57843629028332,39.2212599268961],[-76.57844328111584,39.22126075730412],[-76.57845027805951,39.22126153368691],[-76.57845727894257,39.22126223171563],[-76.57846427927201,39.22126282795386],[-76.57847143489356,39.22126301489483],[-76.57847803064664,39.22126134061569],[-76.57848405653786,39.22125851309337],[-76.57848999012592,39.22125543302098],[-76.57849613935241,39.22125270232441],[-76.57850289110995,39.22125069351425],[-76.57850962634463,39.22124873688958],[-76.57851540769836,39.22124594091544],[-76.57851928455052,39.22124150228591],[-76.57852232393118,39.22123631750556],[-76.57852640464777,39.2212318706001],[-76.57853166928341,39.22122794229133],[-76.57853764469999,39.22122483804566],[-76.57854417588528,39.22122331035803],[-76.57855105967576,39.22122266399776],[-76.57855816295148,39.22122249944149],[-76.57856536768189,39.22122260638371],[-76.5785725546999,39.22122277091175],[-76.57857963824438,39.22122280895869],[-76.57858673821501,39.22122281103299],[-76.5785938315242,39.22122295991002],[-76.5786008580865,39.22122342832365],[-76.57860776136008,39.22122437731036],[-76.57861455665062,39.22122576458857],[-76.57862128659855,39.22122742997261],[-76.57862798914257,39.22122922497008],[-76.57863470220535,39.22123100379093],[-76.57864146256745,39.2212326179386],[-76.5786483209058,39.22123391896633],[-76.57865528161717,39.22123494652431],[-76.5786622612205,39.22123591289667],[-76.5786691727555,39.22123703125597],[-76.57867593387796,39.2212385174937],[-76.57868252931982,39.22124040758618],[-76.57868902726732,39.22124252972939],[-76.57869545943072,39.2212448092725],[-76.57870185519344,39.22124717335782],[-76.57870824627115,39.22124954643376],[-76.57871466204175,39.22125185654345],[-76.57872109196558,39.22125412346617],[-76.57872750551186,39.22125641825392],[-76.57873407390223,39.22125876944544],[-76.57873748583054,39.2212594960106],[-76.57874088812073,39.22126028559568],[-76.5787442880255,39.22126108688222],[-76.57874769393419,39.221261852159],[-76.57875111309419,39.22126253100843],[-76.57875455505288,39.22126307572347],[-76.57875802818896,39.22126344039448],[-76.57876153090615,39.22126369887953],[-76.57876505947387,39.22126389440269],[-76.57876860348604,39.2212640242243],[-76.57877215601047,39.22126408561715],[-76.57877570894101,39.22126407855208],[-76.57877925535088,39.22126399940115],[-76.57878278714458,39.22126384633374],[-76.578786296232,39.22126361661849],[-76.57878977575581,39.22126329491751],[-76.57879322387552,39.22126280105488],[-76.57879664738427,39.22126216117753],[-76.57880005526839,39.22126142215829],[-76.57880345536685,39.22126062906424],[-76.57880685551868,39.22125982696248],[-76.57881026471559,39.22125906182502],[-76.57881368964379,39.22125837781407],[-76.57881712581562,39.22125775059247],[-76.5788205643034,39.22125712337915],[-76.5788240062171,39.22125650428497],[-76.57882745266137,39.22125590232179],[-76.5788309035987,39.22125532379487],[-76.57883436361317,39.22125477682771],[-76.57883783034602,39.2212542686181],[-76.57884130722316,39.2212538072853],[-76.57884479215303,39.22125335498906],[-76.57884828175763,39.22125289550331],[-76.57885177599431,39.22125243603404],[-76.57885527365161,39.22125198558476],[-76.57885877467606,39.22125155316304],[-76.57886227901959,39.22125114687574],[-76.57886578431813,39.22125077482138],[-76.57886929052354,39.22125044510678],[-76.57887279757713,39.22125016764031],[-76.57887630428343,39.22124994872318],[-76.57887980942573,39.22124979825957],[-76.57888331522916,39.22124973157069],[-76.57888682844968,39.2212497811089],[-76.57889034682459,39.22124993785823],[-76.57889386812873,39.22125018649746],[-76.57889738899486,39.22125050899889],[-76.57890090486563,39.22125089273536],[-76.57890441353196,39.22125131968328],[-76.57890791160523,39.22125177541796],[-76.57891139687082,39.22125224281678],[-76.57891487051883,39.22125271647923],[-76.57891834177606,39.22125320274395],[-76.57892181064253,39.22125370161088],[-76.57892527828153,39.22125421218344],[-76.5789287435405,39.22125473355669],[-76.57893220757741,39.22125526573482],[-76.57893566923954,39.22125580781289],[-76.57893912853226,39.22125635889019],[-76.57894258546094,39.22125691806588],[-76.57894604117826,39.22125748624491],[-76.57894949570017,39.22125806072505],[-76.57895294670536,39.22125864239866],[-76.57895639651521,39.22125923037338],[-76.57895984397699,39.22125982374421],[-76.57896329025418,39.22126042161459],[-76.5789667341886,39.22126102398038],[-76.5789701757857,39.22126162994081],[-76.57897361969887,39.22126223590941],[-76.57897710313978,39.22126281589714],[-76.57898060975189,39.2212633941663],[-76.57898410339079,39.22126401202316],[-76.57898755024959,39.2212647071791],[-76.57899091649453,39.2212655218494],[-76.57899416716073,39.22126649374141],[-76.57899725675956,39.22126767763945],[-76.57900006265723,39.22126924875565],[-76.57900265251037,39.22127112446098],[-76.57900514190324,39.22127314663293],[-76.57900764989401,39.2212751571614],[-76.57901029204552,39.22127700152689],[-76.5790130170149,39.22127874530211],[-76.5790157606196,39.22128047112851],[-76.57901851935348,39.22128218439821],[-76.57902128741043,39.22128388779274],[-76.57902406244769,39.2212855858075],[-76.5790268386484,39.22128728292564],[-76.57902961252793,39.22128898093616],[-76.57903310863313,39.22129113643079],[-76.57905488855678,39.22129436908201],[-76.57909283634619,39.22129441510823],[-76.57921860164062,39.22129907723599],[-76.57933404841482,39.22130027657972],[-76.57944458443782,39.22130412451944],[-76.57944172035954,39.22138178665918],[-76.57943661687965,39.22150574173062],[-76.57943127341404,39.22164323014658],[-76.5792413436873,39.22162793963015],[-76.57896000947385,39.22160513630579],[-76.57862349047595,39.22157886975722],[-76.57830396964269,39.22155279213251],[-76.57809129775936,39.22153627404452],[-76.57781173800306,39.22151314736055],[-76.57743860301439,39.22148267055799],[-76.57715806513704,39.22146031886825],[-76.57701423636723,39.22144885970764],[-76.57625705365277,39.22138961335341],[-76.57624010259457,39.22153895273085],[-76.57625353203582,39.22154019835632],[-76.57625457823558,39.22152944502541],[-76.57701167380509,39.22158801819163],[-76.57721980912892,39.22160518396661],[-76.57756345871309,39.22163248007286],[-76.57792016486421,39.2216610706097],[-76.5782553207779,39.2216887349874],[-76.57858315099466,39.22171583073377],[-76.57885460996296,39.2217391652126],[-76.57909203116873,39.22175904681239],[-76.57942640034376,39.22178732475626],[-76.57940997814285,39.22224166216992],[-76.57940527046802,39.22236603118615],[-76.57964062182204,39.22236972985734],[-76.5796428093545,39.22237189055451],[-76.57964515040966,39.22237394010495],[-76.57964759132307,39.22237594497398],[-76.57965001350534,39.2223779840055],[-76.57965246128731,39.22238000241071],[-76.57965497783641,39.22238194629754],[-76.57965760516737,39.2223837608689],[-76.57966038876368,39.22238539224094],[-76.57966333777237,39.22238686026354],[-76.57966641122481,39.22238823865383],[-76.57966958954624,39.22238950842537],[-76.579672855494,39.22239064789769],[-76.57967619066207,39.22239163628693],[-76.57967957548634,39.22239245280514],[-76.57968299152886,39.22239308207295],[-76.57968642663323,39.22239362133108],[-76.5796898793802,39.22239411471252],[-76.57969334511095,39.22239456670452],[-76.57969682495153,39.22239498271576],[-76.57970031424307,39.22239536723352],[-76.57970381411161,39.22239572566644],[-76.57970732221447,39.22239606251005],[-76.57971083620352,39.22239638316064],[-76.57971435488878,39.22239669301855],[-76.57971787593276,39.22239699567857],[-76.57972139929818,39.22239729744602],[-76.57972492033157,39.22239760190739],[-76.57972844015364,39.22239791537206],[-76.57973195642165,39.2223982423356],[-76.57973546679284,39.2223985872935],[-76.5797389700772,39.22239895564617],[-76.57974246393202,39.22239935188913],[-76.57974595423282,39.22239976163095],[-76.57974944569698,39.22240017047605],[-76.57975293832992,39.22240057752369],[-76.5797564298048,39.22240098456705],[-76.57975992242716,39.22240139341597],[-76.5797634150389,39.22240180406629],[-76.57976690647125,39.22240221831544],[-76.57977039671904,39.22240263706413],[-76.5797738869295,39.22240306211805],[-76.57977737362854,39.2224034934647],[-76.579780860285,39.22240393201736],[-76.57978434340878,39.22240438046584],[-76.57978782416319,39.22240483791352],[-76.57979130137423,39.22240530705853],[-76.57979477503655,39.22240578880162],[-76.57979824630819,39.22240628314701],[-76.5798017128571,39.22240679278858],[-76.57980517468863,39.22240731682564],[-76.57980863178676,39.22240785796045],[-76.57981208413015,39.22240841979605],[-76.57981553287161,39.22240900323736],[-76.57981897685835,39.22240960737947],[-76.57982241492699,39.22241023311897],[-76.57982584940432,39.22241087866267],[-76.57982927798486,39.22241154220075],[-76.57983270066336,39.22241222463395],[-76.57983611860317,39.22241292506565],[-76.57983952950417,39.22241364078528],[-76.57984293451912,39.22241437269781],[-76.57984633365331,39.22241511990239],[-76.57984972575403,39.22241588149421],[-76.579853110832,39.22241665567163],[-76.57985648888717,39.22241744243475],[-76.57985984464115,39.22241827956159],[-76.57986316394692,39.22241920933804],[-76.57986645506546,39.22242020567121],[-76.5798697308844,39.2224212433853],[-76.57987299850647,39.22242229638324],[-76.57987627198284,39.22242333859269],[-76.57987955841092,39.22242434481723],[-76.57988287068909,39.22242528807968],[-76.57988621823088,39.22242614319195],[-76.5798896209468,39.2224268723925],[-76.57989306946594,39.22242749366346],[-76.57989654616185,39.22242805017907],[-76.57990003109731,39.22242858420457],[-76.57990350434051,39.22242913710451],[-76.57990694594892,39.22242975204487],[-76.57991033598535,39.22243047129088],[-76.57991365567611,39.22243133621121],[-76.57991695025939,39.22243233435688],[-76.57992023610761,39.22243343876313],[-76.57992346450851,39.22243466186652],[-76.57992658789703,39.22243601790923],[-76.57992955755562,39.22243752022858],[-76.57993232592462,39.22243918216611],[-76.57993485932481,39.22244101981526],[-76.5799371994831,39.22244302701991],[-76.57993939411359,39.22244516431663],[-76.57994149326262,39.22244738954791],[-76.57994354232821,39.22244966324196],[-76.57994559135663,39.22245194324132],[-76.57994768691469,39.22245418827674],[-76.5799498767272,39.22245635708327],[-76.57995222011012,39.22245840663582],[-76.57995475882217,39.2224603253736],[-76.57995739868898,39.22246217601421],[-76.57996003858263,39.22246402215092],[-76.5799625750376,39.22246593097196],[-76.57996490460459,39.22246796696309],[-76.57996693779464,39.22247018385082],[-76.57996871996318,39.22247254936941],[-76.57997036846676,39.22247499728133],[-76.57997199837247,39.22247745683676],[-76.57997372587892,39.22247986179395],[-76.57997566836399,39.22248214231222],[-76.5799778339446,39.22248429661901],[-76.57998014708157,39.22248636948294],[-76.57998255667185,39.22248838594295],[-76.57998501624463,39.22249037105454],[-76.57998747469685,39.22249234985659],[-76.57998993901396,39.22249431606864],[-76.57999246730058,39.22249623566909],[-76.57999502350297,39.22249813465147],[-76.57999756808238,39.22250004079841],[-76.58000006265834,39.22250198189678],[-76.58000246885557,39.22250398483251],[-76.58000476923414,39.22250606125343],[-76.58000699401504,39.22250819235126],[-76.58000916182291,39.22251036197869],[-76.58001129242969,39.22251255579395],[-76.58001340561262,39.22251475855467],[-76.58001551301084,39.22251696039382],[-76.58001884107843,39.22252091321169],[-76.58001925858362,39.22252374855659],[-76.58000731276401,39.22259722919429],[-76.58000628686409,39.22267649858032],[-76.58000305555807,39.22277933616061],[-76.5799989132676,39.22290207138722],[-76.57998516742695,39.22290159612641],[-76.57998367432532,39.2229474665538],[-76.57991487820728,39.22302138145714],[-76.57972823495032,39.22301858560518],[-76.5794991517387,39.22301519782568],[-76.5792295494538,39.22301186791293],[-76.57904674970021,39.22300969098099],[-76.57887072412956,39.2230074146653],[-76.57866616903564,39.22300461050027],[-76.5784532532554,39.22300111928101],[-76.57813891637367,39.22299573724197],[-76.57783832502822,39.22299069475673],[-76.57760423294516,39.22298872920933],[-76.57737864012387,39.22298596238186],[-76.57706276466932,39.222981683481],[-76.57683176839019,39.22297831963115],[-76.57681215276035,39.22299389003058],[-76.57680598178266,39.22326935123073],[-76.57682318763959,39.22328329787852],[-76.5768225826157,39.22329426448287],[-76.57697930435747,39.22329642204637],[-76.57712801436581,39.22329801997499],[-76.57727203176778,39.22329982420634],[-76.57742579901382,39.22330202457853],[-76.57759589860088,39.22330384845596],[-76.57788029783795,39.22330791362489],[-76.57804153886815,39.22331000315241],[-76.57821583091834,39.22331257623996],[-76.57836664902203,39.22331509266407],[-76.57843796095044,39.22331593343875],[-76.57856911261801,39.22331765653584],[-76.57868390820482,39.22331907575997],[-76.57887959414241,39.22332173907264],[-76.57907265805946,39.22332403504587],[-76.57925286918767,39.2233267926644],[-76.57943988174499,39.22333052650178],[-76.57967072355693,39.22333456564906],[-76.57991443735857,39.22333881796106],[-76.57997615090086,39.2234095923412],[-76.57997352662389,39.22345169435916],[-76.58005707235502,39.22344789208027],[-76.58006009453301,39.2234528580782],[-76.5800632920257,39.22345774903791],[-76.58006707351916,39.22346238896827],[-76.58007121284582,39.22346683561061],[-76.58007544976948,39.22347122855527],[-76.58007966112585,39.22347563672152],[-76.5800823483506,39.22348064836084],[-76.58007828898535,39.22348500441549],[-76.58007357422012,39.22348915184663],[-76.58006903711888,39.22349341431215],[-76.58006526342176,39.22349802991197],[-76.58006203123975,39.22350292038519],[-76.58005883250243,39.22350783439825],[-76.58005518224748,39.22351252970797],[-76.58005102957333,39.2235169971243],[-76.58004682034564,39.22352143191011],[-76.58004302702253,39.22352603662961],[-76.58003983645852,39.22353093896128],[-76.58003706501782,39.22353605447561],[-76.58003492856297,39.22354130557728],[-76.580033670585,39.22354664269405],[-76.58003334982554,39.22355212008284],[-76.5800335463353,39.22355766417866],[-76.5800338113624,39.2235631760916],[-76.58003426420302,39.22356865354623],[-76.58003492437919,39.22357412453654],[-76.58003554864489,39.22357959719984],[-76.58003605472992,39.22358507934887],[-76.58003664308528,39.22359055368528],[-76.58003754085064,39.22359599399839],[-76.58003884420383,39.22360139072393],[-76.58004035035631,39.22360676475483],[-76.58004181710834,39.2236121431486],[-76.5800429999652,39.22361754935143],[-76.58004392535975,39.22362301768751],[-76.5800448145242,39.22362854174217],[-76.58004542690686,39.22363406570727],[-76.58004551269141,39.22363953374133],[-76.58004479773676,39.22364489081667],[-76.58004288140678,39.22365012649201],[-76.58004012376243,39.2236552582696],[-76.58003706784395,39.22366030340589],[-76.5800340737391,39.22366527489936],[-76.58003092364714,39.22367018638325],[-76.58002765220868,39.22367505509617],[-76.58002431374067,39.22367990014892],[-76.58002096950851,39.22368474067704],[-76.58001765417957,39.22368958941545],[-76.58001432036907,39.22369442998067],[-76.5800109680771,39.22369926237267],[-76.58000760538876,39.22370409022339],[-76.58000423923109,39.22370891716089],[-76.5800008800053,39.22371374682537],[-76.57999753348582,39.22371858193997],[-76.57999420891581,39.22372342614075],[-76.57999090629527,39.22372827942777],[-76.5799875770814,39.22373312541332],[-76.57998422243767,39.22373796320072],[-76.5799808573869,39.22374279824845],[-76.57997749579926,39.22374763511006],[-76.57997415038668,39.22375247833487],[-76.57997083618274,39.22375733157985],[-76.57996756705229,39.22376220029926],[-76.57996435686532,39.2237670890467],[-76.57996121949738,39.2237720014749],[-76.57995816881328,39.22377694303815],[-76.57995521404024,39.22378192007496],[-76.57995232948768,39.22378696852454],[-76.57994959156119,39.22379209316421],[-76.5799471033818,39.22379728535532],[-76.57994496921786,39.22380253826476],[-76.57994329450135,39.22380784416298],[-76.5799421649557,39.2238131988529],[-76.57994149476167,39.22381862274525],[-76.57994118903274,39.22382410288954],[-76.57994116682173,39.22382961917892],[-76.5799413494815,39.22383515421714],[-76.57994165606493,39.22384068789729],[-76.57994200561934,39.22384620101337],[-76.57994236230871,39.22385168262772],[-76.57994287888035,39.22385715310415],[-76.57994353792604,39.22386261868579],[-76.57994429774477,39.22386808102501],[-76.57994511432483,39.223873540865],[-76.57994594249099,39.22387899984571],[-76.57994673938416,39.22388445961523],[-76.57994746213467,39.22388992362329],[-76.57994811535333,39.22389539548947],[-76.57994874423144,39.22390087087165],[-76.57994939860311,39.22390634364274],[-76.57995012830771,39.22391180677482],[-76.57995098202146,39.22391725413672],[-76.57995200843099,39.22392267779567],[-76.57995338600111,39.22392805767246],[-76.57995508460081,39.22393339726237],[-76.57995689331305,39.22393872103232],[-76.57995859540883,39.22394405703156],[-76.57995997997619,39.22394942882627],[-76.57996088935823,39.22395486287557],[-76.57996139195002,39.22396034771418],[-76.57996160373924,39.22396585313071],[-76.57996163840822,39.223971347104],[-76.57996154919604,39.22397683522921],[-76.57996134300849,39.22398232473738],[-76.57996103606368,39.22398781478566],[-76.57996064227983,39.22399330182085],[-76.57996017442221,39.22399878138466],[-76.57995959080581,39.22400425242719],[-76.57995884394442,39.22400971567922],[-76.57995801836094,39.22401517414557],[-76.57995719972578,39.22402063263684],[-76.5799564737199,39.22402609416194],[-76.57995592832984,39.22403156353965],[-76.5799556087043,39.22403704363392],[-76.57995545463443,39.22404253242768],[-76.57995542792543,39.22404802618116],[-76.57995549500926,39.22405352207189],[-76.57995561884906,39.22405901636419],[-76.57995576239738,39.22406450712387],[-76.57995584218801,39.22407000846473],[-76.57995588255105,39.22407551867224],[-76.57995595301318,39.22408103078902],[-76.57995612196984,39.22408653334973],[-76.57995645547878,39.22409201848382],[-76.57995702539903,39.22409747653984],[-76.57995789779379,39.22410289874644],[-76.57995911667511,39.22410828436039],[-76.57996062758181,39.22411363859142],[-76.57996235519158,39.22411896927697],[-76.57996422650872,39.22412428246124],[-76.57996616390007,39.22412958507255],[-76.57996809552264,39.22413488406009],[-76.57996995417646,39.22414018458799],[-76.57997181748421,39.22414548152941],[-76.57997372716822,39.22415076962898],[-76.57997569019841,39.22415604530848],[-76.57997771004887,39.22416130858041],[-76.57997979369468,39.22416655496583],[-76.5799819434574,39.22417178357227],[-76.57998414075986,39.22417700244016],[-76.57998638792365,39.22418221067714],[-76.57998869656141,39.22418740292002],[-76.57999107249012,39.22419257468577],[-76.57999352846451,39.22419772331764],[-76.57999607494463,39.22420284254768],[-76.57999878849103,39.22420791103114],[-76.58000164125131,39.22421293857683],[-76.58000455781777,39.2242179474345],[-76.58000746626753,39.22422295806457],[-76.58001029004001,39.22422799181179],[-76.58001295720156,39.2242330709382],[-76.58001539930876,39.22423821501609],[-76.58001767785126,39.22424340534904],[-76.58001984734888,39.22424862681903],[-76.58002193332185,39.22425387231109],[-76.58002395665807,39.22425913469373],[-76.58002594402511,39.22426440865778],[-76.58002791515811,39.2242696861668],[-76.58002989556665,39.22427496190739],[-76.58003190961816,39.22428022785982],[-76.58003397934797,39.22428547869814],[-76.58003612560145,39.22429071449702],[-76.58003831938946,39.22429594145817],[-76.58004052013149,39.22430116754337],[-76.58004268957401,39.22430639892117],[-76.58004478829982,39.22431164265681],[-76.5800467780553,39.22431690491882],[-76.58004862058134,39.22432219277658],[-76.58005028778051,39.2243275574739],[-76.58005160929368,39.22433301911912],[-76.58005228218506,39.22433849555831],[-76.58005201852599,39.2243439127981],[-76.58005086570132,39.22434928722208],[-76.58004919413973,39.22435464627826],[-76.58004738358775,39.22436000844018],[-76.58004581265014,39.22436538947503],[-76.58004452533366,39.22437078954022],[-76.58004321138129,39.22437618951015],[-76.58004188701138,39.22438158854199],[-76.58004056725761,39.22438699029263],[-76.58003926949635,39.2243923939235],[-76.58003801108279,39.22439780219908],[-76.58003680938799,39.22440321518147],[-76.58003568060904,39.22440863563094],[-76.58003464212243,39.22441406270894],[-76.58003371128321,39.22441949917995],[-76.58003290083033,39.22442494508946],[-76.58003217252593,39.22443040390383],[-76.58003151826897,39.22443587469328],[-76.58003093923881,39.22444135385891],[-76.5800304365988,39.22444684050406],[-76.58003001499732,39.22445233194315],[-76.58002967445037,39.22445782547374],[-76.58002941843746,39.22446332020764],[-76.5800292481327,39.22446881344667],[-76.58002916586825,39.22447430249681],[-76.5800291751237,39.22447978646976],[-76.58002927471432,39.22448526986519],[-76.58002946343943,39.22449075988499],[-76.5800297424785,39.22449625293032],[-76.58003011416363,39.22450174630712],[-76.58003058082697,39.22450723732144],[-76.58003114480601,39.22451272237851],[-76.58003180611681,39.22451819877609],[-76.58003256940761,39.22452366382846],[-76.58003343470507,39.22452911303181],[-76.58003440433613,39.22453454459287],[-76.58003549798794,39.22453995858218],[-76.58003672142971,39.2245453586234],[-76.58003805033648,39.22455074553027],[-76.58003946731054,39.22455612374448],[-76.58004095034312,39.22456149408806],[-76.58004247972568,39.22456686009352],[-76.58004403344397,39.22457222348372],[-76.58004559179486,39.22457758689045],[-76.58004713507493,39.22458295294562],[-76.58004864127018,39.22458832337188],[-76.58005008951392,39.22459370169778],[-76.58005146126614,39.22459908965855],[-76.58005276116454,39.22460448636998],[-76.58005406104711,39.22460988578363],[-76.58005536556222,39.22461528521385],[-76.58005666775608,39.22462068553651],[-76.58005796298563,39.22462608853658],[-76.58005924546595,39.22463149329254],[-76.58006051056455,39.22463689978786],[-76.58006175248055,39.22464230980334],[-76.58006296659221,39.22464772152087],[-76.58006414709315,39.22465313762198],[-76.58006528936173,39.22465855628864],[-76.58006638643877,39.22466397929747],[-76.58006743601349,39.22466940573944],[-76.58006843112673,39.22467483739116],[-76.58006936599341,39.22468027333123],[-76.58007021048219,39.22468571705492],[-76.5800709066465,39.22469117556114],[-76.58007147303154,39.22469664621387],[-76.58007193165673,39.22470212638963],[-76.58007230453623,39.22470761436558],[-76.58007261485287,39.22471310662157],[-76.58007288346276,39.22471860143066],[-76.58007313353815,39.22472409707422],[-76.58007338710908,39.22472958912716],[-76.58007366386828,39.22473507675915],[-76.58007390473233,39.22474056336195],[-76.58007408072805,39.22474605243492],[-76.58007420807384,39.22475154313544],[-76.58007430183527,39.22475703371576],[-76.58007437821493,39.22476252603543],[-76.58007445228372,39.22476801744603],[-76.58007454024948,39.22477350890641],[-76.58007461895598,39.22477899943281],[-76.58007463047788,39.22478449242116],[-76.58007469065511,39.22478998288132],[-76.58007489096535,39.22479547294198],[-76.58007504136097,39.22480098264121],[-76.58007531223963,39.2248064855653],[-76.58007597366837,39.22481194304626],[-76.58007719371825,39.22481733046354],[-76.58007867799715,39.22482268729898],[-76.58008033611618,39.22482802313768],[-76.58008211243964,39.22483334588761],[-76.58008395367449,39.22483865896117],[-76.58008580419023,39.22484396936556],[-76.58008761067788,39.22484928321548],[-76.58008938009652,39.22485459873431],[-76.58009116227034,39.22485991159644],[-76.58009295835204,39.2248652227067],[-76.58009476951037,39.22487053026773],[-76.58009659574533,39.22487583427962],[-76.58009843820967,39.22488113564713],[-76.58010029807215,39.22488643257295],[-76.58010217880701,39.22489172506958],[-76.58010417317267,39.22489699455241],[-76.58010626145516,39.22490224545486],[-76.58010836017662,39.22490749369226],[-76.58011038585938,39.22491275518002],[-76.58011225617828,39.22491804673839],[-76.5801138957728,39.22492338251018],[-76.58011542522186,39.22492873950658],[-76.58011691524842,39.22493410446893],[-76.58011837049546,39.22493947561225],[-76.58011979675334,39.2249448529573],[-76.580121197507,39.22495023471495],[-76.58012257855216,39.22495562000523],[-76.58012394336305,39.22496100884048],[-76.58012529774076,39.22496639943994],[-76.58012664516485,39.2249717909153],[-76.58012799142575,39.22497718328724],[-76.58012934231918,39.22498257567572],[-76.58013070017731,39.22498796538677],[-76.58013206962711,39.22499335333772],[-76.58013345762241,39.22499873865264],[-76.58013486765348,39.22500411864171],[-76.58013628579673,39.22500949775895],[-76.58013770741438,39.22501487688864],[-76.58013913135377,39.22502025512581],[-76.58014055877291,39.22502563247463],[-76.58014198735043,39.22503100982754],[-76.58014341940232,39.22503638719288],[-76.58014485377599,39.22504176366574],[-76.58014629046603,39.22504714014681],[-76.58014773063587,39.22505251573958],[-76.58014917196405,39.2250578913364],[-76.58015061677197,39.22506326604492],[-76.58015206389631,39.22506864076167],[-76.58015351334232,39.22507401458595],[-76.58015496162517,39.22507938930679],[-76.58015638671989,39.22508476844857],[-76.58015779093739,39.22509015292029],[-76.58015918007868,39.2250955409412],[-76.58016055878673,39.22510093072628],[-76.58016193516821,39.22510632230459],[-76.58016331503475,39.2251117120938],[-76.58016470301347,39.22511710101121],[-76.5801661060741,39.22512248547862],[-76.58016753231801,39.22512786642586],[-76.58016898523535,39.22513324116308],[-76.58017047178534,39.22513860791349],[-76.58017199891647,39.22514396670207],[-76.58017357243524,39.22514931484719],[-76.58017519813731,39.22515465146886],[-76.58017688297657,39.22515997569108],[-76.58017868029962,39.2251652750939],[-76.58018073156869,39.2251705204575],[-76.58018298925433,39.22517571971896],[-76.58018539188755,39.22518088797158],[-76.58018787685177,39.22518603850307],[-76.58019038268323,39.22519118550601],[-76.58019475502331,39.22520050798746],[-76.58000812760953,39.2253395357079],[-76.58029801348076,39.22557725489087],[-76.58062103141513,39.22584089812167],[-76.58087133405277,39.22604825419067],[-76.58107595285045,39.22621822200458],[-76.58139006891437,39.22647428365855],[-76.58159773053067,39.22664342276204],[-76.58159953895915,39.22664489657603],[-76.58159353650387,39.22682607206079],[-76.58156304331717,39.22682636690128],[-76.58156282566934,39.22683185546583],[-76.58156260917953,39.22683734403449],[-76.58156239153159,39.22684283259902],[-76.58156217388361,39.22684832116356],[-76.5815619562409,39.22685380882731],[-76.58156173859287,39.22685929739182],[-76.58156151978669,39.22686478595219],[-76.58156130213858,39.22687027451666],[-76.58156108564853,39.22687576308528],[-76.58156102442406,39.22687730860184],[-76.58156086800035,39.22688125164974],[-76.58156065151024,39.22688674021833],[-76.58156043502014,39.22689222878693],[-76.58156021968806,39.22689771735962],[-76.58156000551411,39.22690320593644],[-76.5815597913401,39.22690869451325],[-76.58155957832422,39.22691418309418],[-76.58155936530825,39.22691967167511],[-76.58155915229226,39.22692516025602],[-76.58155893927623,39.22693064883688],[-76.58155872741831,39.22693613742191],[-76.58155851671847,39.22694162601107],[-76.58155830833479,39.22694711460845],[-76.58155810226734,39.22695260321409],[-76.58155789966889,39.2269580927329],[-76.58155770055008,39.22696358136329],[-76.58155750606367,39.22696907001021],[-76.5815573162044,39.22697455957437],[-76.58155713098284,39.22698004825428],[-76.58155694923038,39.22698553784733],[-76.58155677095216,39.22699102745275],[-76.58155659499548,39.22699651616568],[-76.58155642134967,39.22700200578765],[-76.58155625002009,39.22700749541782],[-76.58155607984864,39.2270129850521],[-76.58155590967711,39.22701847468637],[-76.58155573950555,39.22702396432069],[-76.58155556933401,39.22702945395496],[-76.58155539916771,39.22703494268846],[-76.58155522667987,39.22704043231445],[-76.5815494461509,39.22704263572616],[-76.58154284587036,39.22704460651664],[-76.58153629339692,39.22704671889928],[-76.58153005579975,39.22704924766282],[-76.58152424237258,39.2270523166035],[-76.5815186553579,39.22705568090558],[-76.58151315108469,39.22705915449644],[-76.58150758358175,39.22706254859317],[-76.58150184801256,39.22706576914106],[-76.58149624379919,39.22706910365501],[-76.58149104044395,39.22707280711543],[-76.58148613316861,39.22707677555928],[-76.58148163434785,39.22708100308182],[-76.58147749670593,39.22708545438427],[-76.58147352865367,39.22709001708693],[-76.58146955023625,39.22709456984394],[-76.58146538264097,39.22709899401575],[-76.58146081824027,39.22710314743988],[-76.58145568519664,39.22710690699763],[-76.58145032489,39.22711051531487],[-76.58144514675831,39.22711426119969],[-76.58144020041485,39.22711817635637],[-76.58143530478911,39.22712213222874],[-76.5814304425996,39.2271261134419],[-76.58142559192694,39.22713010550522],[-76.58142073548974,39.22713409304392],[-76.58141585369547,39.22713805977411],[-76.5814109788123,39.22714203283417],[-76.58140612005718,39.22714602036397],[-76.58140124977345,39.22714999884472],[-76.58139634145185,39.22715394656313],[-76.58139136974118,39.22715784181013],[-76.58138629774629,39.22716165652999],[-76.58138107129575,39.22716534639147],[-76.58137575148852,39.22716895935361],[-76.58137041554141,39.227172559647],[-76.58136514298229,39.22717621241138],[-76.58135998797717,39.22717996287881],[-76.58135489059065,39.22718376219355],[-76.58135305364571,39.22718515905322],[-76.5813498404475,39.22718760221158],[-76.58134483987982,39.2271914802389],[-76.5813398877508,39.22719539266834],[-76.58133503246778,39.22719937930676],[-76.58133029939243,39.22720346006182],[-76.58132558016085,39.22720754987389],[-76.58132076526162,39.22721156187757],[-76.5813156540955,39.22721534042351],[-76.58131010142989,39.22721876789255],[-76.58130489124329,39.22722244790004],[-76.581300284012,39.22722659485957],[-76.58129595351787,39.22723094818348],[-76.58129181808677,39.2272354138996],[-76.58128774019463,39.22723994197442],[-76.58128385031068,39.22724460043193],[-76.58128066599241,39.22724941183622],[-76.58128092316669,39.22725489939128],[-76.58128456340158,39.22725958110912],[-76.5812891897816,39.22726377452017],[-76.5812943596179,39.22726752668705],[-76.58129944917791,39.22727134072103],[-76.58130440262224,39.22727525875943],[-76.58130939564498,39.22727914270925],[-76.58131455628228,39.22728288403307],[-76.58131980975564,39.2272865941606],[-76.58132520646988,39.22729017058299],[-76.58133089252851,39.22729338682534],[-76.58133699267911,39.22729610281124],[-76.58134342870061,39.22729842455345],[-76.58135002156791,39.22730046581204],[-76.58135673350367,39.22730215168777],[-76.58136376666263,39.22730278479884],[-76.58137081833928,39.22730243792929],[-76.58137776738819,39.22730142591929],[-76.58138462208657,39.22730011271258],[-76.58139145651212,39.22729870214915],[-76.58139831355281,39.22729738444608],[-76.58140523278175,39.22729632278535],[-76.58141219958947,39.22729544144941],[-76.58141919695468,39.22729468092628],[-76.58142620998116,39.22729401413943],[-76.58143322839457,39.22729341583052],[-76.58144026008407,39.22729292295955],[-76.58144730397642,39.2272925211102],[-76.58145435115726,39.22729215079939],[-76.5814613950442,39.22729174984996],[-76.5814684232536,39.22729125786568],[-76.58147542476715,39.22729057932475],[-76.5814823827385,39.22728962499014],[-76.58148933063171,39.22728861206864],[-76.58149630289377,39.22728778749617],[-76.58150341465185,39.22728726788355],[-76.58151040218586,39.22728758555094],[-76.58151699181235,39.22728998079426],[-76.58151723287023,39.22729525841002],[-76.58151153759773,39.22729812329467],[-76.58150474607577,39.22730031138925],[-76.58149796367817,39.22730193382753],[-76.58149110806252,39.22730320650262],[-76.58148417585593,39.22730430865716],[-76.58147723900075,39.22730541349707],[-76.58147036713879,39.2273066915176],[-76.58146358045251,39.22730825538809],[-76.58145683566589,39.22730998064681],[-76.58145009214331,39.22731168789408],[-76.58144331387093,39.22731319954823],[-76.58143646021844,39.22731433530891],[-76.58142948976386,39.22731485271904],[-76.58142242165916,39.22731484282552],[-76.58141531410882,39.22731464813147],[-76.58140822531729,39.22731461113998],[-76.58140116840129,39.2273148643122],[-76.58139412093644,39.22731528236002],[-76.58138712404688,39.22731596181335],[-76.58138022687355,39.22731721091349],[-76.58137332684701,39.22731835461207],[-76.58136627845724,39.22731873302074],[-76.58135919303848,39.22731851678353],[-76.58135227998747,39.22731754811051],[-76.58134553236098,39.22731582607612],[-76.58133897331695,39.22731374440293],[-76.58133290137931,39.2273109573563],[-76.58132759975653,39.22730735965485],[-76.581322545276,39.22730348809753],[-76.58131745111186,39.2272996686435],[-76.58131241168796,39.22729579713945],[-76.58130706931534,39.22729223622355],[-76.58130128692135,39.22728905566749],[-76.58129521667659,39.2272861785472],[-76.58128890267476,39.22728378697699],[-76.58128213069014,39.22728226842779],[-76.58127508585174,39.22728145601537],[-76.5812680702269,39.22728079593823],[-76.58126103040384,39.22728011505643],[-76.58125397630626,39.22727949807848],[-76.58124692132694,39.22727903062606],[-76.58123987654234,39.22727879831261],[-76.58123285419228,39.22727888585494],[-76.5812258531611,39.22727928604276],[-76.58121886014632,39.22727989794156],[-76.58121187427132,39.22728067380701],[-76.58120489465951,39.22728156589469],[-76.58119791811272,39.2272825273528],[-76.58119094260171,39.2272835095321],[-76.58118396724457,39.22728446558894],[-76.5811769900067,39.2272853477749],[-76.58117002057261,39.22728628133262],[-76.58116306327196,39.22728731762189],[-76.58115610061621,39.22728828002786],[-76.58114911628039,39.22728899103905],[-76.58114209602199,39.22728931278562],[-76.58113505073692,39.22728936150678],[-76.58112798800589,39.22728922640658],[-76.58112091784831,39.22728897597988],[-76.58111385029396,39.22728867692008],[-76.58110679304581,39.2272883977137],[-76.5810997454826,39.22728804738006],[-76.58109270313646,39.22728759797904],[-76.58108566319171,39.22728713417374],[-76.58107862053218,39.22728673791661],[-76.58107157464772,39.22728649568061],[-76.5810645151098,39.22728640832925],[-76.5810574389118,39.22728639658327],[-76.58105036320217,39.22728649833663],[-76.58104330397673,39.22728675057832],[-76.58103627720465,39.22728719480108],[-76.58102929303249,39.22728787788159],[-76.58102233983652,39.22728880698463],[-76.58101541453561,39.22728991544162],[-76.58100851059025,39.22729113386933],[-76.58100162839918,39.22729239471086],[-76.58099475892055,39.22729366010122],[-76.58098790083157,39.22729495795987],[-76.58098105065248,39.22729628917511],[-76.58097420956267,39.22729765014809],[-76.58096737642526,39.22729903727164],[-76.58096055240374,39.22730044964908],[-76.58095373636652,39.22730188277252],[-76.58094692831891,39.22730333574122],[-76.58094014305598,39.22730485274609],[-76.58093338056703,39.22730643558869],[-76.58092663061517,39.22730805270518],[-76.58091988064699,39.22730967252357],[-76.5809131227418,39.22731126348837],[-76.58090634435169,39.22731279312672],[-76.5808995340762,39.22731423077146],[-76.58089266229868,39.22731549254459],[-76.58088572213428,39.22731656761209],[-76.58087875465864,39.22731756061082],[-76.5808717974783,39.2273185752646],[-76.58086489398498,39.22731971621859],[-76.58085808177992,39.22732108809733],[-76.5808513928278,39.22732276938255],[-76.58084479971647,39.22732469512047],[-76.58083827967171,39.22732679947296],[-76.58083180871316,39.22732902470464],[-76.58082536518222,39.22733131218755],[-76.58081892743083,39.2273336014923],[-76.58081247262093,39.22733583758992],[-76.58080603275988,39.22733809175611],[-76.58079962039017,39.22734039736449],[-76.58079322174734,39.22734273184645],[-76.58078682771001,39.22734507084834],[-76.5807804245083,39.22734739270238],[-76.58077400185746,39.22734967395163],[-76.58076754830921,39.22735189203572],[-76.58076105010439,39.22735402348527],[-76.58075449353171,39.22735603672407],[-76.5807478510888,39.22735788211111],[-76.58074113881391,39.2273595894293],[-76.58073437963016,39.22736119929557],[-76.58073119854512,39.22736192566919],[-76.58072759532376,39.22736274871959],[-76.58072080880726,39.22736428011976],[-76.58071403152881,39.22736581605646],[-76.5807072370644,39.22736732040408],[-76.58070042093586,39.2273687670242],[-76.5806935798124,39.22737013158383],[-76.58068671035274,39.22737139155161],[-76.58067980802541,39.22737252979655],[-76.58067287963027,39.22737357156473],[-76.58066593195117,39.22737454480449],[-76.58065897294601,39.22737547476607],[-76.58065200708768,39.22737638848871],[-76.58064504465035,39.22737731123092],[-76.58063809127036,39.2273782691355],[-76.58063115488957,39.22737929015479],[-76.58062424115494,39.22738039863005],[-76.58061733870338,39.22738155758876],[-76.58061043855183,39.22738271925765],[-76.58060339583579,39.22738370386422],[-76.58059623120991,39.22738454391031],[-76.5805904302114,39.22738686970744],[-76.58058748185898,39.2273921143095],[-76.58058488501325,39.22739725928042],[-76.58058242910158,39.22740246510706],[-76.58057969724426,39.22740752672385],[-76.58057626332301,39.22741223452839],[-76.58057160200417,39.22741631370773],[-76.58056632869405,39.2274200835346],[-76.58056143866175,39.22742406100905],[-76.58055761047835,39.22742865570766],[-76.58055461822676,39.22743368486605],[-76.5805522954106,39.22743890558009],[-76.58055161329122,39.2274443897799],[-76.5805532929067,39.22744963200359],[-76.58055574762632,39.22745482295056],[-76.58055824051122,39.22746002304167],[-76.58056051086106,39.22746525206308],[-76.58056297697681,39.22747047457786],[-76.58056525187473,39.22747571802787],[-76.58056692308705,39.22748101066488],[-76.58056765337616,39.22748638911636],[-76.58056769972291,39.22749187501865],[-76.58056721882514,39.22749740948029],[-76.58056631069115,39.22750292349883],[-76.58056507299709,39.22750835076577],[-76.58056345601803,39.22751367849251],[-76.58056114803205,39.22751893709226],[-76.58055815692441,39.22752396805629],[-76.580554485969,39.22752860925624],[-76.58054994319373,39.22753281316557],[-76.58054491764143,39.22753679195649],[-76.58053995452096,39.22754078898585],[-76.58053560136788,39.22754504581738],[-76.58053232799605,39.22754982535576],[-76.58053012747816,39.22755512397315],[-76.58052881761476,39.22756061223459],[-76.58052830605078,39.22756604389775],[-76.5805285655269,39.22757152425616],[-76.58052914212719,39.22757703997751],[-76.58052955775877,39.22758255332202],[-76.58052935397943,39.22758803292557],[-76.58052877389429,39.2275934967718],[-76.58052803978363,39.22759895916676],[-76.58052717019876,39.22760441657363],[-76.58052618485434,39.227609864559],[-76.58052509998541,39.22761529957782],[-76.58052393645957,39.22762071810146],[-76.58052269196578,39.22762611922092],[-76.58052131205615,39.22763150544399],[-76.58051979674664,39.22763687406831],[-76.58051814953814,39.22764222060255],[-76.58051637625333,39.22764753966282],[-76.58051448039301,39.22765282675778],[-76.58051243070908,39.22765807817255],[-76.58051024685246,39.22766330028289],[-76.58050797740582,39.22766850317092],[-76.58050566863051,39.22767369781135],[-76.58050337141478,39.22767889609616],[-76.58050113319406,39.22768410630185],[-76.58049900369322,39.22768934121711],[-76.58049703150057,39.22769461002333],[-76.58049519926007,39.22769990995616],[-76.58049339014993,39.2277052153763],[-76.58049160069038,39.22771052717209],[-76.58048983089749,39.22771584264124],[-76.58048808191874,39.22772116358943],[-76.58048635144313,39.2277264891076],[-76.58048464063414,39.22773181829913],[-76.58048294948649,39.22773715206485],[-76.58048127800544,39.22774248950389],[-76.58047962503296,39.22774783061219],[-76.58047799057427,39.22775317448894],[-76.58047637694035,39.22775852204322],[-76.58047478066216,39.22776387236183],[-76.58047320405595,39.22776922545306],[-76.58047164481083,39.22777458040787],[-76.58047010523762,39.22777993813533],[-76.58046858418368,39.22778529773051],[-76.58046713486959,39.22779066839139],[-76.58046581861238,39.22779606114652],[-76.58046460996523,39.2278014705003],[-76.58046348115427,39.22780689275028],[-76.58046240441104,39.22781232329339],[-76.58046135428337,39.2278177575347],[-76.58046030184993,39.2278231899662],[-76.58045922048966,39.22782861779041],[-76.58045803143385,39.22783404342808],[-76.5804567473899,39.22783947232929],[-76.58045546680412,39.22784490394518],[-76.58045428696488,39.22785033772274],[-76.58045330515509,39.22785577400973],[-76.58045262098986,39.22786121045981],[-76.58045235606767,39.22786664840849],[-76.58045279294588,39.22787209336967],[-76.58045377412945,39.2278775429788],[-76.5804550263264,39.22788299175508],[-76.58045627624455,39.22788843421777],[-76.58045732701225,39.22789386786157],[-76.58045836157694,39.2278992996459],[-76.58045941351912,39.22790473059152],[-76.5804604874872,39.22791015801275],[-76.58046158811375,39.22791558192614],[-76.58046272118946,39.22792100235241],[-76.58046389019933,39.22792641750245],[-76.58046507542853,39.22793183180958],[-76.58046622004878,39.2279372585825],[-76.58046736117888,39.22794268804525],[-76.58046854288098,39.22794811134752],[-76.58046980806459,39.22795351873423],[-76.58047120311878,39.22795889956173],[-76.58047276979495,39.2279642440708],[-76.58047454635934,39.22796954429115],[-76.58047650028851,39.22797481632052],[-76.58047860840924,39.22798006187765],[-76.58048085568171,39.22798527820649],[-76.58048323053539,39.22799046346404],[-76.58048571794116,39.22799561309272],[-76.58048830516485,39.22800072614617],[-76.58049097831427,39.22800580167406],[-76.58049375002774,39.22801085683626],[-76.58049663540363,39.22801588448054],[-76.58049965190968,39.22802086845532],[-76.58050281470278,39.22802579169998],[-76.58050614008735,39.22803063895957],[-76.58050964322018,39.22803539317343],[-76.58051337636628,39.22804002930658],[-76.58051738243522,39.22804453760386],[-76.5805215882624,39.22804895203324],[-76.58052592184659,39.22805330566622],[-76.58053030539602,39.22805763155342],[-76.58053466689891,39.22806196456793],[-76.58053896804633,39.22806631988603],[-76.58054330871981,39.22807065012343],[-76.58054768890877,39.22807495708165],[-76.58055208769751,39.22807925239604],[-76.58056069748525,39.22808767570945],[-76.58056575910452,39.22809151759853],[-76.58057088582459,39.22809531828425],[-76.58057588001236,39.22809920407004],[-76.58058054404022,39.22810330035854],[-76.58058494392698,39.22810760648494],[-76.58058916809539,39.22811205430611],[-76.5805930728408,39.22811665952261],[-76.58059651793863,39.22812143694655],[-76.58059941992857,39.22812639889071],[-76.58060191215564,39.22813151880828],[-76.58060414899751,39.22813673870026],[-76.58060628251567,39.22814200055959],[-76.58060846476087,39.22814724818053],[-76.58061084663133,39.2281524244525],[-76.58061342344124,39.22815753836652],[-76.58061609537286,39.2281626264978],[-76.58061879514804,39.22816770662151],[-76.58062145433563,39.22817279560791],[-76.58062400333053,39.22817791302539],[-76.5806263760125,39.22818307665329],[-76.58062850967731,39.22818831419166],[-76.58063037769314,39.22819362464457],[-76.58063195935706,39.22819898361706],[-76.58063322002081,39.22820437477139],[-76.58063406341533,39.22820982208457],[-76.58063460430236,39.22821530795108],[-76.58063501428285,39.22822079965535],[-76.58063535482317,39.22822628300445],[-76.58063554012536,39.2282317739059],[-76.58063561539402,39.22823726621576],[-76.5806356501226,39.22824275928157],[-76.58063574272074,39.22824825885953],[-76.58063582256344,39.22825376109425],[-76.58063579357325,39.22825925753543],[-76.58063555619822,39.22826473972042],[-76.58063502130435,39.22827020012448],[-76.58063420849477,39.22827565323011],[-76.58063316065774,39.22828109288509],[-76.58063190911076,39.22828651109429],[-76.58063047939669,39.22829189713973],[-76.58062888895671,39.22829723937351],[-76.5806270474507,39.22830253837361],[-76.58062497339824,39.22830779600788],[-76.58062272355332,39.22831301157814],[-76.58062035581743,39.22831818619215],[-76.58061776383344,39.22832328704188],[-76.58061491401533,39.22832831400731],[-76.5806119786489,39.22833331454438],[-76.58060911958611,39.22833833787351],[-76.58060634139576,39.22834339482027],[-76.58060353893198,39.22834844357325],[-76.58060060476461,39.22835343690809],[-76.58059743375848,39.22835833121185],[-76.58059411749507,39.22836330786797],[-76.58059059184758,39.22836824324083],[-76.58058659044244,39.22837274454028],[-76.58058171042134,39.2283763887628],[-76.58057483147272,39.22837845398527],[-76.58056773856886,39.22837850700647],[-76.58056095597237,39.22837739733157],[-76.58055416029651,39.22837575705154],[-76.58054743161058,39.22837375579872],[-76.58054085343711,39.2283715668209],[-76.58053440179381,39.22836932875214],[-76.58052793085642,39.22836702395651],[-76.5805215138856,39.22836460225233],[-76.58051523342324,39.22836201078872],[-76.58050917083712,39.22835919941297],[-76.58050340749489,39.22835611797236],[-76.58049789397991,39.22835270143434],[-76.58049253312029,39.22834893053535],[-76.58048752619273,39.2283448465297],[-76.58048308142249,39.22834049069679],[-76.58047940701887,39.22833590701817],[-76.58047683698852,39.22833101832007],[-76.58047547987366,39.22832568356847],[-76.58047482728145,39.22832009191112],[-76.58047434757115,39.22831444682495],[-76.58047354855881,39.22830893841652],[-76.58047277477013,39.22830347333554],[-76.58047205544067,39.22829800394534],[-76.58047110427624,39.22829256885675],[-76.58046990682266,39.22828706623031],[-76.58046860120692,39.22828144431455],[-76.58046634530268,39.22827631533055],[-76.58046225133955,39.2282721760365],[-76.5804563141976,39.22826891291594],[-76.58044961500185,39.22826662711715],[-76.58044290511356,39.22826517089585],[-76.58043602883789,39.22826404106166],[-76.58042902952091,39.22826315399718],[-76.58042196316293,39.2282624405427],[-76.58041488462759,39.2282618279314],[-76.58040784762028,39.22826124339214],[-76.58040078263144,39.22826069027971],[-76.58039366944578,39.2282602576987],[-76.58038657243452,39.22826002785009],[-76.58037955481055,39.22826008293057],[-76.58037262120163,39.22826081569573],[-76.58036655663426,39.22826382873329],[-76.58036193526048,39.22826799632257],[-76.58035765201467,39.2282725650658],[-76.58035432357393,39.22827744438779],[-76.58035257095015,39.22828259417243],[-76.5803523808398,39.22828810985465],[-76.58035281292879,39.22829377638975],[-76.58035286805607,39.22829934159073],[-76.58035153879884,39.22830457936364],[-76.58034814360765,39.22830958275409],[-76.58034322814808,39.2283137348787],[-76.58033732772144,39.22831640890843],[-76.58033055384763,39.22831813579988],[-76.58032353471174,39.22831962130643],[-76.58031692640053,39.22832155326564],[-76.58031156461834,39.22832499398024],[-76.58030783127634,39.22832979528699],[-76.58030464149722,39.22833472734843],[-76.58030168949006,39.22833979627747],[-76.58029930195102,39.22834498612745],[-76.58029779978561,39.2283502809312],[-76.58029710648239,39.22835569302603],[-76.58029695235506,39.22836119442425],[-76.58029711879769,39.22836673660302],[-76.58029738486697,39.22837227463413],[-76.5802976106623,39.2283777683831],[-76.58029811335928,39.22838324510672],[-76.58029874693668,39.2283887204967],[-76.58029925541922,39.22839419814173],[-76.58029946272713,39.22839968461832],[-76.580299569261,39.22840517343694],[-76.5802996201936,39.22841066385824],[-76.58029963058065,39.22841615593615],[-76.58029961201426,39.22842164791049],[-76.58029957722853,39.2284271407276],[-76.58029954128999,39.22843263263981],[-76.58029951578006,39.22843812368856],[-76.58029947058174,39.22844361466683],[-76.58029939295015,39.22844910642992],[-76.58029930026805,39.22845459723843],[-76.58029920758598,39.22846008804689],[-76.58029912879624,39.22846557980582],[-76.5802990789706,39.22847106986674],[-76.58029907546529,39.2284765609941],[-76.58029911829087,39.22848205138631],[-76.58029915414635,39.22848754535673],[-76.58029919231276,39.22849304023614],[-76.58029925248387,39.22849853519426],[-76.58029935899125,39.2285040285165],[-76.58029953268684,39.22850951937667],[-76.58029979559117,39.2285150051511],[-76.58030016971436,39.2285204850178],[-76.58030066895948,39.22852595812567],[-76.58030126668389,39.22853142528026],[-76.58030194202517,39.22853688910927],[-76.58030268340721,39.22854234867052],[-76.58030347228384,39.22854780660003],[-76.58030429707364,39.22855326285638],[-76.58030514156259,39.22855871738159],[-76.58030598952612,39.2285641719192],[-76.58030682937741,39.22856962732858],[-76.58030764258628,39.22857508354348],[-76.58030841408618,39.22858054231153],[-76.58030910558925,39.228586015206],[-76.58030973679975,39.22859149959493],[-76.58031033902493,39.22859698928488],[-76.58031094356645,39.22860247898311],[-76.58031158057329,39.22860796249196],[-76.5803122790257,39.2286134354112],[-76.58031307255771,39.22861888975405],[-76.58031398898073,39.22862432291764],[-76.5803150619342,39.22862972601449],[-76.58031632500966,39.22863509826394],[-76.58031797953221,39.22864047281382],[-76.58032009643625,39.22864580127574],[-76.58032266002438,39.22865099621816],[-76.58032565343024,39.22865597200686],[-76.58032912003773,39.2286606387192],[-76.58033383216585,39.22866483067119],[-76.58033953286919,39.22866832355112],[-76.58034565368281,39.22867088833053],[-76.58035238859684,39.22867242751805],[-76.58035948957166,39.22867336539387],[-76.58036652864052,39.2286741958554],[-76.58037350367624,39.22867508283654],[-76.58038049029356,39.22867596985865],[-76.58038748637848,39.22867682268469],[-76.58039449212268,39.22867760888729],[-76.58040150426459,39.2286782924237],[-76.58040852300114,39.22867883996589],[-76.58041554389672,39.22867921816923],[-76.58042258784043,39.22867941990214],[-76.58042969155746,39.22867950204484],[-76.58043682387901,39.22867944737124],[-76.5804439502045,39.22867923143657],[-76.58045103591191,39.2286788333993],[-76.58045804640069,39.22867822881463],[-76.58046494704884,39.22867739684101],[-76.58047168979124,39.2286760436532],[-76.58047813666606,39.22867360487139],[-76.58048410942118,39.22867045458202],[-76.58048947507338,39.22866694991842],[-76.58049440192595,39.2286630284278],[-76.58049899244165,39.22865879406588],[-76.58050332333256,39.22865439663592],[-76.58050743335819,39.22864994076668],[-76.58051124552436,39.22864532439511],[-76.58051488454875,39.22864060921988],[-76.58051850050559,39.2286358777481],[-76.58052224459004,39.22863121879629],[-76.58052626111227,39.22862671034709],[-76.58053056046887,39.22862235694149],[-76.58053502143808,39.22861809329032],[-76.58053951931834,39.22861385499262],[-76.58054396536363,39.22860956876827],[-76.58054860052428,39.22860542193938],[-76.58055378366808,39.22860163828031],[-76.58055967025896,39.2285985642452],[-76.58056655035179,39.22859689717144],[-76.58057362653139,39.22859693416821],[-76.58057983278749,39.22859915154065],[-76.58058577878273,39.22860229398195],[-76.58059140271018,39.22860584512592],[-76.58059664729778,39.22860950120584],[-76.58060153209911,39.2286134811806],[-76.58060615277884,39.22861766739023],[-76.58061060391807,39.22862192955996],[-76.58061493529028,39.22862627237154],[-76.58061911903087,39.22863070743554],[-76.58062312387526,39.2286352337395],[-76.58062686855135,39.22863988522258],[-76.58063009261348,39.22864483390348],[-76.58063316686589,39.2286498514089],[-76.58063658302808,39.22865463052907],[-76.58064083610766,39.22865889559304],[-76.58064617986047,39.22866262678953],[-76.58065227635508,39.22866558510574],[-76.58065875140629,39.22866759085077],[-76.5806654747028,39.22866913718503],[-76.58067237576101,39.2286703923021],[-76.58067937409444,39.22867145319836],[-76.58068639038011,39.22867241597358],[-76.58069337119439,39.2286733056587],[-76.58070058510499,39.22867335935381],[-76.58070764462992,39.22867366831777],[-76.58071410200422,39.22867552987218],[-76.58072037630272,39.22867799429319],[-76.58072341873027,39.22867938064854],[-76.58072652005831,39.22868079513829],[-76.58073250132713,39.22868385032267],[-76.58073828933405,39.22868707596407],[-76.58074383216996,39.22869043674688],[-76.58074900924822,39.22869415203007],[-76.58075390908789,39.22869813745668],[-76.5807586541556,39.22870224753837],[-76.58076336454342,39.22870634668668],[-76.58076808541885,39.2287104350629],[-76.58077279230142,39.22871453960295],[-76.58077745499416,39.22871867461138],[-76.5807820479382,39.22872285350864],[-76.58078654210547,39.22872708880186],[-76.58079091076824,39.22873139570886],[-76.58079513534294,39.22873578317102],[-76.58079929467911,39.22874023525602],[-76.58080337605855,39.2287447483153],[-76.58080733775068,39.22874932850529],[-76.58081113570884,39.22875398197409],[-76.5808147247388,39.22875871306429],[-76.58081806195717,39.22876352702733],[-76.5808210962354,39.22876845250554],[-76.58082377739032,39.22877355417567],[-76.58082612768717,39.22877878797924],[-76.58082817177667,39.22878409815605],[-76.58082993430959,39.22878942894596],[-76.58083138778275,39.22879473070801],[-76.58083036203239,39.22880015783196],[-76.58082926533181,39.22880563604675],[-76.58082870604265,39.22881111077616],[-76.58082820810317,39.22881659112934],[-76.58082770090914,39.22882206964786],[-76.5808271150089,39.22882753977829],[-76.5808267237546,39.22883338983114],[-76.58082221232488,39.22883678496355],[-76.58081597587451,39.22883908849825],[-76.58080944614277,39.22884124055536],[-76.58080271357144,39.22884322344228],[-76.58079586628064,39.22884502035895],[-76.58078899702852,39.22884661362106],[-76.58078217893799,39.2288479764665],[-76.58077520000035,39.22884892347867],[-76.58076808027135,39.22884939257548],[-76.58076095867544,39.22884939326097],[-76.58075396370312,39.22884893680335],[-76.58074698014495,39.22884811647203],[-76.58074000546134,39.22884697009052],[-76.58073312767146,39.22884549797332],[-76.5807264324729,39.22884370132731],[-76.58072245630649,39.22884235667555],[-76.58072002321202,39.22884153458203],[-76.58071397884123,39.22883876832133],[-76.58070814517664,39.22883562358576],[-76.58070233739605,39.22883241048323],[-76.58069636721338,39.22882943730785],[-76.58069016847597,39.22882672724342],[-76.58068392332962,39.22882383505583],[-76.58067764268021,39.22882087518275],[-76.58067132453451,39.22881798903916],[-76.58066497037341,39.22881531805233],[-76.58065857935635,39.22881300454215],[-76.58065215180611,39.22881118993175],[-76.58064568573981,39.22881001383461],[-76.58063910148482,39.22881002363873],[-76.58063236562326,39.22881138676924],[-76.5806255668741,39.22881359280242],[-76.58061879513619,39.22881612771541],[-76.58061214144533,39.22881848109285],[-76.58060534183645,39.22882044030872],[-76.58059862399091,39.22882267455346],[-76.58059316381843,39.22882590594861],[-76.58058902249329,39.22883016984323],[-76.58058516638184,39.22883477434995],[-76.5805816260801,39.2288396376074],[-76.58057843795355,39.22884468137796],[-76.58057564067342,39.22884982923365],[-76.58057327060526,39.2288550029369],[-76.58057119394496,39.22886030649978],[-76.5805692762234,39.22886595652904],[-76.58056788940976,39.22887172375505],[-76.58056742063033,39.22887736184731],[-76.58056825932795,39.22888262448379],[-76.58057067983643,39.22888734149701],[-76.58057409180078,39.22889185217197],[-76.58057822259897,39.22889623300122],[-76.58058292404682,39.22890047354663],[-76.58058804678056,39.22890456696895],[-76.58059344493235,39.22890850283839],[-76.58059896799078,39.22891227251007],[-76.58060446892442,39.22891586645083],[-76.58061008575672,39.22891905455481],[-76.58061699603437,39.22892090962565],[-76.5806242808231,39.22892230123311],[-76.58063067906015,39.22892437426328],[-76.58063523688645,39.22892802878809],[-76.58063869894286,39.22893268736753],[-76.58064141400529,39.22893792968411],[-76.58064360639068,39.22894342595389],[-76.58064550156865,39.22894884729803],[-76.58064699998096,39.22895418615462],[-76.58064799389149,39.22895964301206],[-76.58064873962859,39.228965154831],[-76.58064949118315,39.22897066216682],[-76.58065050835816,39.22897610199256],[-76.58065204630806,39.22898141396698],[-76.58065427306028,39.2289865824763],[-76.58065707951498,39.22899164676499],[-76.58066035581825,39.2289965776156],[-76.58066398982135,39.2290013421995],[-76.58066787513954,39.22900591221245],[-76.58067207990142,39.22901032212734],[-76.58067665511885,39.22901456311862],[-76.58068155711196,39.22901857918201],[-76.58068674682822,39.22902231523052],[-76.58069220006354,39.22902575136055],[-76.58069794638709,39.22902897955702],[-76.58070394308572,39.22903197624704],[-76.58071013596575,39.22903470070199],[-76.58071647081752,39.2290371148956],[-76.58072129759094,39.22903857158005],[-76.58072298319928,39.22903908113589],[-76.5807297966513,39.22904046835068],[-76.58073676347013,39.22904157687188],[-76.58074372307969,39.22904272950505],[-76.58075051496243,39.22904423914724],[-76.58075715782979,39.229046075239],[-76.58076373840599,39.22904806514084],[-76.58077028609699,39.22905013239167],[-76.58077683494118,39.22905220054704],[-76.58078341781888,39.22905419315832],[-76.580790037057,39.22905610843218],[-76.58079666091736,39.2290580255238],[-76.58080329416566,39.22905992193066],[-76.58080994622125,39.22906177156386],[-76.58081662186031,39.22906355011957],[-76.58082332934408,39.22906523150459],[-76.58083022933863,39.22906647760054],[-76.58083725989511,39.22906699183031],[-76.58084442800261,39.22906715975161],[-76.58085148704527,39.22906677240414],[-76.58085790487917,39.2290649406219],[-76.58086376371674,39.22906166740095],[-76.58087027058696,39.22905927114859],[-76.58087702124047,39.22905717122133],[-76.58088382967061,39.22905666317365],[-76.58089067015608,39.22905739561038],[-76.5808975592395,39.22905852816547],[-76.58090445577521,39.2290599679118],[-76.58091131862294,39.22906162102171],[-76.58091810664229,39.2290633936674],[-76.5809247763233,39.2290652010205],[-76.5809307774917,39.22906822744049],[-76.58093671702969,39.22907109960715],[-76.58094635195188,39.22907069532817],[-76.58095139926014,39.22906677334813],[-76.58095625370976,39.22906275699847],[-76.58095985169098,39.22905812633654],[-76.58096277757441,39.22905316359054],[-76.58096538587002,39.22904804657848],[-76.58096784980594,39.22904285969113],[-76.58097033912507,39.22903768910832],[-76.5809729855163,39.2290325929499],[-76.58097571053894,39.22902751779009],[-76.580978439041,39.22902244174181],[-76.58098110624577,39.22901735106224],[-76.58098364505518,39.22901223290091],[-76.58098598955034,39.22900707080848],[-76.58098720319899,39.22900159571233],[-76.58098829841856,39.22899617063694],[-76.58099200652548,39.22899132598209],[-76.58099833674962,39.22898942271802],[-76.58100537766863,39.2289887686665],[-76.58101264274609,39.22898859642986],[-76.58101980474638,39.22898901293325],[-76.58102660827105,39.22899011995359],[-76.58103334980633,39.22899191854927],[-76.58103987097839,39.2289943586123],[-76.58104587440353,39.22899739494303],[-76.58105115439918,39.22900094753905],[-76.5810561306037,39.22900475577207],[-76.58106093318688,39.22900874263983],[-76.58106559944332,39.22901286864132],[-76.58107016667304,39.22901709337465],[-76.58107467101243,39.22902137733465],[-76.58107915090902,39.22902568192513],[-76.58108364250459,39.22902996674007],[-76.58108818193024,39.22903419317501],[-76.5810928967791,39.22903832835657],[-76.58109770901405,39.22904244677073],[-76.58110227274123,39.22904667689493],[-76.58110623859231,39.22905114719432],[-76.58110935090806,39.22905600358322],[-76.5811117081045,39.22906125091684],[-76.58111337856059,39.22906668496275],[-76.58111441795801,39.22907209423707],[-76.58111278193826,39.22907770564596],[-76.58111123284371,39.2290831101862],[-76.58111404631097,39.22908777724592],[-76.58111778808905,39.22909253679549],[-76.58112210707291,39.22909722273952],[-76.5811269281958,39.22910160240953],[-76.58113217639611,39.2291054422363],[-76.58113777777039,39.22910850865462],[-76.58114387355999,39.22911061480685],[-76.58115058341002,39.22911189713722],[-76.58115770192343,39.22911261974122],[-76.58116502717789,39.22911304672677],[-76.58117235377124,39.2291134430902],[-76.58117947980254,39.22911406933655],[-76.58118647190274,39.22911482121339],[-76.58119347594058,39.22911551278029],[-76.58120048712938,39.22911617014277],[-76.58120749836611,39.22911681939802],[-76.58121450717509,39.2291174875605],[-76.58122150761682,39.22911819983081],[-76.58122848161244,39.22911907594779],[-76.58123543267895,39.22912010871786],[-76.58124240104887,39.22912095688986],[-76.58124942419731,39.22912135396746],[-76.58125647797307,39.22912146740898],[-76.58126354760169,39.22912144579007],[-76.5812706183938,39.22912142327415],[-76.58127776093806,39.22912141002151],[-76.58128509432746,39.2291212434163],[-76.58129135404864,39.22912324385395],[-76.5812951561654,39.22912818286768],[-76.58129218777961,39.22913269688306],[-76.58128637066564,39.2291365566802],[-76.58128005882328,39.22913887708521],[-76.58127324632964,39.22914066244369],[-76.58126678219489,39.22914288321917],[-76.58126083997701,39.22914596069401],[-76.58125489240884,39.22914935612383],[-76.58124947790311,39.22915309304819],[-76.58124515562913,39.22915721039397],[-76.58124279136368,39.22916199589587],[-76.58124266074714,39.22916764690677],[-76.58124343866861,39.22917340474848],[-76.58124445836243,39.22917881845504],[-76.58124622779495,39.22918416457579],[-76.58124835100593,39.22918942007942],[-76.58125104744406,39.22919449116712],[-76.5812538842155,39.2291995294267],[-76.58125623712418,39.22920472089364],[-76.58125814236485,39.22921001615438],[-76.58125907057158,39.22921542863357],[-76.5812592419099,39.22922093929964],[-76.58125930325562,39.2292264441686],[-76.58125905983191,39.22923197767592],[-76.58125895667217,39.229237490065],[-76.58125955817927,39.2292429184934],[-76.58126108109798,39.22924823490946],[-76.58126311632425,39.22925348469415],[-76.58126541347937,39.22925870388605],[-76.58126771986817,39.22926392851546],[-76.58126978976031,39.22926919193532],[-76.58127143419078,39.22927452499871],[-76.58127283511715,39.22927990673612],[-76.58127405632281,39.22928532296271],[-76.58127512799928,39.22929076027447],[-76.58127608034363,39.22929620436673],[-76.58127682881587,39.22930165403711],[-76.58127701068014,39.22930714762577],[-76.58127717515084,39.22931264475548],[-76.58127741899762,39.22931823314688],[-76.58127782037471,39.22932381849709],[-76.5812798152442,39.22932884204232],[-76.58128460376747,39.22933286217904],[-76.58128974823239,39.22933681782862],[-76.58129339326038,39.22934149055237],[-76.58129428480906,39.22934703171148],[-76.58129384777401,39.22935259875754],[-76.58129139871582,39.22935762176288],[-76.58128833663741,39.22936250656391],[-76.58128491826129,39.22936731983319],[-76.58128126277633,39.22937207911064],[-76.58127748822936,39.22937679922987],[-76.58127371497814,39.2293814959333],[-76.58127002864121,39.22938618393895],[-76.58126634462542,39.22939087105197],[-76.58126263749382,39.22939554997542],[-76.58125889801839,39.22940021437091],[-76.58125511697111,39.2294048579001],[-76.58125128397099,39.22940947331973],[-76.58124738979001,39.22941405429138],[-76.58124342520539,39.22941859357595],[-76.58123938098382,39.22942308573588],[-76.58123519821868,39.22942750353764],[-76.58123084341381,39.22943183154849],[-76.58122635355572,39.22943608251125],[-76.58122176217255,39.22944026645408],[-76.58121710507679,39.229444398818],[-76.58121239267587,39.22944848234242],[-76.58120699734505,39.22945210583508],[-76.5812006121683,39.22945428725438],[-76.58119356518564,39.22945498002947],[-76.58118649576859,39.2294545674704],[-76.58117942493361,39.22945360993558],[-76.58117353942583,39.22945079922729],[-76.58116808744688,39.22944733700216],[-76.58116277580213,39.22944364557937],[-76.58115742221462,39.22943999634316],[-76.5811518982137,39.22943657079212],[-76.5811463031141,39.22943322155317],[-76.58114068006526,39.22942989833678],[-76.58113506516116,39.22942656884369],[-76.58112949219567,39.22942319806425],[-76.58112399610481,39.22941975369516],[-76.58111858854969,39.22941622226639],[-76.58111324156469,39.22941263250301],[-76.58110792369885,39.22940901491917],[-76.58110260117436,39.22940540182237],[-76.58109724252968,39.22940182552827],[-76.58109181515582,39.22939831654694],[-76.58108628642768,39.22939490809066],[-76.58108070182702,39.22939154717588],[-76.58107510217081,39.2293881862071],[-76.58106948040925,39.22938484227394],[-76.58106382486504,39.22938153154868],[-76.58105812617731,39.22937827021187],[-76.58105237498509,39.22937507444411],[-76.58104656076938,39.2293719604219],[-76.58104067301109,39.22936894432156],[-76.58103470350736,39.22936604232786],[-76.58102861374145,39.22936330474682],[-76.58102237923271,39.22936075851433],[-76.5810160338492,39.22935835601009],[-76.58100961608642,39.22935605053109],[-76.5810031598232,39.22935379265552],[-76.58099670124413,39.22935153477128],[-76.58099027538083,39.22934922836153],[-76.58098391957071,39.22934682671909],[-76.58097765020869,39.22934429927611],[-76.58097143116349,39.22934168463702],[-76.58096524723011,39.22933900796935],[-76.58095908551482,39.22933629534954],[-76.58095293197619,39.22933357104853],[-76.58094677373624,39.22933085844048],[-76.58094059558493,39.22932818359369],[-76.58093438580238,39.22932556988645],[-76.58092812918368,39.22932304248629],[-76.58092181400382,39.22932062567236],[-76.58091542621597,39.22931834461617],[-76.5809089260441,39.229316266734],[-76.58090228656889,39.22931443967098],[-76.5808955405269,39.22931281129882],[-76.58088871833323,39.22931133038182],[-76.58088185272979,39.22930994389107],[-76.5808749752952,39.22930859969418],[-76.58086811876613,39.22930724566296],[-76.58086127841429,39.2293058979946],[-76.58085440503343,39.22930465199569],[-76.58084750456329,39.22930348246573],[-76.58084058872903,39.22930236512558],[-76.5808336658024,39.22930127208067],[-76.58082674519231,39.22930017904361],[-76.58081982577249,39.22929908060576],[-76.58081289570617,39.2292980199621],[-76.58080594898446,39.22929703402304],[-76.58079898191485,39.22929615970735],[-76.58079195690051,39.22929529148968],[-76.58078490650675,39.22929460243565],[-76.58077791528673,39.22929448378459],[-76.58077081579474,39.22929524480581],[-76.58076411629364,39.22929711160827],[-76.58075827987982,39.22930011377024],[-76.58075282857874,39.22930379919595],[-76.58074816535471,39.22930798556621],[-76.58074467147979,39.22931263370803],[-76.58074224436639,39.22931785675303],[-76.58074054915136,39.22932328778956],[-76.58073941121566,39.22932868568633],[-76.58073901267545,39.22933419882137],[-76.58073917931982,39.22933971307447],[-76.58073970057752,39.2293451916624],[-76.58074056232739,39.22935067236732],[-76.58074190751194,39.22935607282832],[-76.5807438419222,39.22936132586499],[-76.58074621120988,39.22936648407178],[-76.58074884953024,39.22937158558972],[-76.5807516072899,39.22937666231247],[-76.58075433375319,39.22938174342724],[-76.58075686414819,39.22938688149139],[-76.58075933298585,39.22939204906125],[-76.58076227203094,39.22939702284184],[-76.58076581592202,39.2294017537713],[-76.580769600089,39.22940639458036],[-76.58077358399103,39.22941094602496],[-76.58077772709807,39.22941540705956],[-76.5807819748758,39.22941979460408],[-76.5807862028271,39.22942420549786],[-76.58079040977256,39.22942864333977],[-76.58079461318553,39.22943309107749],[-76.58079883401932,39.22943753077021],[-76.5808030920635,39.22944194537393],[-76.58080740594431,39.22944631874118],[-76.58081179429871,39.22945063292289],[-76.58081627923258,39.22945487088333],[-76.58082087822474,39.22945901466927],[-76.58082561221234,39.22946304904232],[-76.58083049983765,39.22946695515273],[-76.58083558292711,39.22947071063033],[-76.58084087305707,39.22947431641732],[-76.58084634118852,39.22947778682235],[-76.58085195942992,39.22948113795976],[-76.58085770106395,39.22948438324587],[-76.58086353704098,39.22948753879082],[-76.5808694394801,39.22949061890753],[-76.58087538164271,39.22949364061527],[-76.58088133565859,39.22949661642537],[-76.58088728873479,39.22949955529995],[-76.58089328614579,39.22950243938514],[-76.58089932555937,39.22950527137488],[-76.58090540230026,39.22950805845878],[-76.58091151052987,39.22951080872286],[-76.58091764557838,39.229513528456],[-76.58092379929609,39.22951622483522],[-76.58092996817126,39.22951890415346],[-76.58093614404908,39.22952157448861],[-76.58094232342312,39.22952424123284],[-76.58094850044937,39.22952691337301],[-76.58095466698884,39.22952959628471],[-76.58096081952462,39.22953229716168],[-76.58096695221802,39.22953502408997],[-76.58097305808816,39.22953778244941],[-76.58097913944613,39.22954057314902],[-76.58098521378646,39.22954337553332],[-76.58099128344688,39.22954618600761],[-76.58099734842193,39.22954900547262],[-76.58100340755887,39.22955183302348],[-76.58100945969949,39.22955466865604],[-76.58101550600725,39.22955751147371],[-76.58102154531875,39.22956036237303],[-76.58102757764456,39.22956321955257],[-76.58103360181588,39.22956608480971],[-76.58103961784875,39.2295689554421],[-76.58104562457957,39.22957183234643],[-76.58105162200846,39.22957471552272],[-76.58105761129883,39.22957760407427],[-76.58106062429898,39.22958221870089],[-76.58105869959584,39.22958748498097],[-76.58105651098107,39.22959272509728],[-76.58105393043593,39.22959784761435],[-76.5810510032082,39.22960283918204],[-76.5810480424519,39.22960782072138],[-76.58104505742702,39.22961279316627],[-76.58104204927044,39.2296177601238],[-76.58103902146726,39.22962271980492],[-76.58103597747598,39.22962767492434],[-76.58103291961828,39.22963262458948],[-76.58102984904168,39.22963757060604],[-76.58102676921528,39.22964251388714],[-76.58102368360834,39.22964745534598],[-76.58102059337895,39.22965239498669],[-76.58101750199626,39.22965733372239],[-76.58101441061319,39.22966227245805],[-76.58101132385164,39.22966721301164],[-76.5810082440333,39.22967215449069],[-76.58100517802211,39.22967711133218],[-76.5810009361627,39.22968113617556],[-76.58099404328824,39.22967985048133],[-76.58098748488598,39.229677821038],[-76.58098092649469,39.22967578979272],[-76.58097437044667,39.22967375405161],[-76.58096781557845,39.22967171471121],[-76.58096126189533,39.22966967087077],[-76.5809547105555,39.22966762253444],[-76.58094816155366,39.229665570603],[-76.5809416149057,39.22966351237416],[-76.58093507176451,39.22966144875281],[-76.58092853097195,39.22965937973481],[-76.58092199252795,39.22965730532015],[-76.58091545875953,39.22965522371561],[-76.58090892850316,39.22965313581781],[-76.58090240291708,39.22965104163089],[-76.58089587735265,39.22964894384053],[-76.58088935528428,39.22964684245923],[-76.58088283439047,39.22964473837937],[-76.58087631467644,39.22964263070033],[-76.58086979613165,39.22964052122347],[-76.5808632787666,39.22963840814738],[-76.58085676372896,39.2296362932777],[-76.58085024986576,39.22963417570949],[-76.58084373717709,39.22963205544279],[-76.58083722449946,39.2296299333742],[-76.58083071414917,39.22962780951201],[-76.58082420380987,39.22962568384793],[-76.58081769579799,39.22962355639028],[-76.58081118779707,39.2296214271307],[-76.58080468096001,39.22961929697419],[-76.58079817413935,39.22961716411501],[-76.58079166847716,39.22961503125962],[-76.58078516282075,39.22961289750309],[-76.5807786583335,39.22961076194883],[-76.58077215384665,39.22960862639421],[-76.58076566118643,39.2296064494457],[-76.58075918980433,39.22960419960989],[-76.58075273265028,39.22960189397634],[-76.58074628729632,39.22959955145271],[-76.58073984668179,39.22959719093013],[-76.58073340838402,39.2295948304155],[-76.58072696534762,39.22959248789908],[-76.58072051282838,39.2295901822803],[-76.5807180451817,39.22958932313173],[-76.58071404723995,39.22958793246269],[-76.58070756269584,39.22958575463917],[-76.58070105444102,39.2295836695106],[-76.58069451773649,39.22958169507569],[-76.58068794669032,39.22957984842809],[-76.58068133771631,39.22957814847131],[-76.58067464691985,39.22957677160088],[-76.58066772724716,39.22957630009427],[-76.5806606379998,39.22957649815971],[-76.58065345875855,39.22957703009151],[-76.58064627141547,39.22957756109322],[-76.58063915902072,39.22957775637229],[-76.58063209546184,39.22957772302802],[-76.58062502967171,39.22957767526293],[-76.58061796535907,39.22957757345602],[-76.58061090969622,39.22957737980035],[-76.58060386754471,39.22957705557985],[-76.58059684631101,39.22957652335408],[-76.58058984128289,39.22957579661792],[-76.58058284480897,39.22957499424667],[-76.58057584577942,39.22957423240075],[-76.58056883423191,39.22957362904656],[-76.58056180141537,39.22957329314677],[-76.58055474854112,39.22957321569793],[-76.58054768311149,39.22957330304606],[-76.58054061381353,39.22957345703742],[-76.58053354932377,39.22957358131992],[-76.58052646714968,39.22957356231519],[-76.5805193814532,39.22957355140446],[-76.58051235181259,39.22957385416411],[-76.58050537348126,39.22957468586297],[-76.58049845356773,39.22957601950313],[-76.58049186033873,39.2295779281056],[-76.58048571994608,39.2295806229032],[-76.58048005963944,39.22958400040402],[-76.58047499914754,39.22958779080288],[-76.58047047459608,39.2295920235972],[-76.58046614728542,39.22959639311367],[-76.58046171847676,39.22960069110583],[-76.58045723300302,39.22960497448283],[-76.58045284567942,39.22960930775325],[-76.580448713659,39.22961375183089],[-76.58044499523696,39.229618370336],[-76.58044209477352,39.22962333315937],[-76.58043985282089,39.22962857577598],[-76.5804376512704,39.2296338410564],[-76.58043487664601,39.22963887188767],[-76.58043129076596,39.22964359986016],[-76.58042716654587,39.22964809530921],[-76.58042276318456,39.2296523978947],[-76.58041800850872,39.22965656951225],[-76.58041261975877,39.22966004976831],[-76.5804062980999,39.2296626466298],[-76.58039940498692,39.22966414700375],[-76.58039247048399,39.22966422400128],[-76.58038539367291,39.22966368796112],[-76.58037833710384,39.22966266647395],[-76.58037148330288,39.22966123856001],[-76.58036494398596,39.22965931454093],[-76.58035861036593,39.22965688051625],[-76.58035235670974,39.22965424230065],[-76.580346053799,39.22965170749801],[-76.58033967339072,39.22964935167264],[-76.58033330708315,39.22964696166776],[-76.58032694783138,39.22964455367222],[-76.58032058624779,39.22964214837035],[-76.58031421411866,39.22963976374828],[-76.5803078232146,39.22963742049451],[-76.58030140415826,39.22963513749174],[-76.58029494757278,39.22963293362288],[-76.58028844522835,39.22963082957627],[-76.58028186427066,39.22962889729666],[-76.58027511792547,39.22962731752992],[-76.58026826012839,39.2296259787726],[-76.58026135424531,39.22962474163067],[-76.580251896707,39.22962294678994],[-76.58023744266168,39.22962469575292],[-76.58022666539117,39.22963102750667],[-76.58022826461665,39.22964144801266],[-76.58023496186624,39.22965133187189],[-76.58024257053086,39.22966083706062],[-76.58025025362605,39.22967009480125],[-76.58025846649491,39.22967907519491],[-76.58026744472073,39.22968750254536],[-76.5802773712396,39.22969538651434],[-76.58028827063117,39.22970248758281],[-76.58030012836637,39.22970832468342],[-76.58031276233955,39.22971313947392],[-76.58032580108724,39.22971746658823],[-76.58033886187347,39.22972178837525],[-76.5803515689276,39.22972658450649],[-76.58036410346332,39.22973196012008],[-76.58037584925724,39.2297381228941],[-76.58038517489362,39.22974616954782],[-76.58038905923704,39.22975678738368],[-76.58038919847725,39.22976771791209],[-76.58038840903468,39.22977881356583],[-76.58038703336803,39.22979013592118],[-76.58038823999074,39.22980075319181],[-76.58039580826978,39.22980965110188],[-76.58040430313596,39.22981834694662],[-76.58041347784246,39.22982684975234],[-76.5804230868164,39.22983516584723],[-76.58043288332136,39.22984330245626],[-76.58044271364109,39.22985120498321],[-76.58045442462931,39.22985757840651],[-76.58046584548811,39.22986405077791],[-76.58047422977656,39.2298726462359],[-76.5804810928453,39.22988230998254],[-76.58048719847827,39.22989236285963],[-76.58049176088892,39.22990269937024],[-76.58049619889302,39.22991311740673],[-76.58050160847755,39.22992336326391],[-76.5805076544832,39.22993331594043],[-76.58051515659832,39.22994243970098],[-76.58052606904484,39.22994969392538],[-76.58053473260333,39.22995807148798],[-76.58053889830821,39.22996870833915],[-76.58054172325146,39.22997947011067],[-76.58054411689523,39.22999030870832],[-76.58054780223631,39.2300008979028],[-76.5805521287889,39.23001136327975],[-76.58055679641812,39.23002173259137],[-76.58056198256821,39.23003196503611],[-76.58056827139848,39.2300417915673],[-76.58057506843836,39.23005146227813],[-76.58058255556456,39.23006077424285],[-76.58059105605631,39.23006950702521],[-76.58060048842189,39.23007773149529],[-76.58061057011128,39.23008543943702],[-76.58062111503043,39.23009276350039],[-76.58063212899134,39.23009970010293],[-76.58064362353484,39.23010606012252],[-76.58065603536377,39.2301112443009],[-76.58066903398193,39.23011571445647],[-76.5806812312061,39.23012115278542],[-76.58069271736304,39.2301275614121],[-76.58070380924215,39.23013444604105],[-76.58071435061858,39.23014178449565],[-76.58071478058299,39.2301421301284],[-76.58072410596409,39.23014964709611],[-76.5807328887644,39.23015823765281],[-76.58074128062461,39.23016713127502],[-76.58074999111213,39.23017580804664],[-76.58075866827552,39.23018444056051],[-76.58076468983703,39.23019442376197],[-76.58076850557342,39.23020510169067],[-76.58076827042943,39.23021589486251],[-76.58076263248523,39.23022607062098],[-76.58075504451682,39.23023559445755],[-76.58074982897917,39.23024543393272],[-76.58074928656882,39.23025667729623],[-76.58075205313632,39.2302675253277],[-76.58075807164036,39.23027724278911],[-76.58076559761233,39.2302866530648],[-76.58077416967168,39.23029563110019],[-76.58078333923046,39.23030404287863],[-76.58079373854169,39.23031132046619],[-76.58080534754815,39.23031772231391],[-76.58081667125735,39.23032438526772],[-76.58082693476477,39.23033191008094],[-76.58083690474547,39.23033971668903],[-76.58084654547709,39.23034777433804],[-76.58085578749058,39.23035607917689],[-76.58086463658744,39.23036462942487],[-76.58087316916962,39.23037343166024],[-76.58088121488491,39.23038250238958],[-76.58088858833011,39.23039185716502],[-76.58089513987224,39.23040153418572],[-76.58090097142482,39.23041153471654],[-76.58090629561367,39.23042174421732],[-76.58091132392789,39.23043204454063],[-76.58091615524789,39.23044236217588],[-76.58092038217251,39.23045284519749],[-76.58092437357992,39.23046339673785],[-76.58092864344449,39.2304738655],[-76.58093360361416,39.23048413495246],[-76.58093894656194,39.2304943075866],[-76.58094457724332,39.23050439567394],[-76.58095048765747,39.23051438117029],[-76.5809566709618,39.23052424603569],[-76.58096380634152,39.23053371255309],[-76.58097164296134,39.23054289332485],[-76.58097846612624,39.23055247222462],[-76.58098390552242,39.23056259295575],[-76.58098886894687,39.23057290205136],[-76.58099418174356,39.23058308358288],[-76.58100017211721,39.23059306395721],[-76.58100678934761,39.23060280245838],[-76.58101458593889,39.23061189931186],[-76.58102372290421,39.23062035058837],[-76.58103393970279,39.23062795088117],[-76.5810449872094,39.23063491548731],[-76.58105685969745,39.23064103720732],[-76.58106963536699,39.23064542905492],[-76.58108309512457,39.23064851631524],[-76.58109693761405,39.23065092575411],[-76.58111089844603,39.23065310411398],[-76.5811247343709,39.23065544867021],[-76.58113863775283,39.23065754935495],[-76.58115258939129,39.2306595195976],[-76.58116641774295,39.23066177404417],[-76.58117995242813,39.23066472644418],[-76.58119310538848,39.23066857915828],[-76.58120599652776,39.23067303265575],[-76.58121875606675,39.23067780545806],[-76.58123150728771,39.2306826142604],[-76.58124437693125,39.23068717847249],[-76.58125746469611,39.23069128586661],[-76.58127068714558,39.23069514062144],[-76.58128400449249,39.23069881195481],[-76.58129739342445,39.23070232500528],[-76.58131083410368,39.23070570492379],[-76.58132431015626,39.23070897867525],[-76.58133784360879,39.23071214273511],[-76.58135144287648,39.23071514488834],[-76.58136510829915,39.23071792748632],[-76.58137884599159,39.23072043560352],[-76.58139266883161,39.2307226458656],[-76.58140657661731,39.23072459250134],[-76.58142054489936,39.2307262970422],[-76.58143454458506,39.23072778280459],[-76.58144855948639,39.23072904522684],[-76.58146263597222,39.23072988089882],[-76.58147675611741,39.23073038343728],[-76.58149088066652,39.23073072835379],[-76.58150499747484,39.23073101108742],[-76.58151912329313,39.23073114071936],[-76.58153324563082,39.23073107486861],[-76.58154735440935,39.23073075494874],[-76.5815614478377,39.23073009177647],[-76.58157553634548,39.23072928085752],[-76.58158962890178,39.23072856903678],[-76.58160380146225,39.23072784218635],[-76.58161795207747,39.23072749808615],[-76.58163168600998,39.23072927022557],[-76.58164502916013,39.2307330875357],[-76.58165855056679,39.23073633348626],[-76.5816722043177,39.23073913402236],[-76.58168590516625,39.23074180411207],[-76.58169965545538,39.23074433925986],[-76.58171365002684,39.23074630148163],[-76.58172719682619,39.23074917008925],[-76.58173995869703,39.23075375187821],[-76.58175231022474,39.23075917803317],[-76.58176437708964,39.23076495447545],[-76.58177596620648,39.23077122103839],[-76.58178730329131,39.23077780377562],[-76.58179905224461,39.23078387363565],[-76.58181116821194,39.23078957368193],[-76.58182345671099,39.23079508427779],[-76.58183599216066,39.23080015887528],[-76.58184885719815,39.2308045320396],[-76.58186237059307,39.23080756895778],[-76.58187625304855,39.2308098883691],[-76.58188996634546,39.23081261162503],[-76.58190351120726,39.23081581259196],[-76.58191696312609,39.23081925913831],[-76.58193006284891,39.23082331335385],[-76.5819427855981,39.23082805261718],[-76.58195543607188,39.23083306816024],[-76.58196783652264,39.23083845212998],[-76.58197979170296,39.23084431822979],[-76.58199110982937,39.23085078197708],[-76.58200178955811,39.23085787489437],[-76.58201201248271,39.23086544179414],[-76.58202194877387,39.23087330042472],[-76.58203176974992,39.23088127034017],[-76.58204164442336,39.23088916928462],[-76.58205156472934,39.2308969900231],[-76.58206130582937,39.23090495424692],[-76.58207101784986,39.23091293998502],[-76.58208086257318,39.23092081269689],[-76.58209100295571,39.23092843514386],[-76.5821016799497,39.23093560280653],[-76.58211278297651,39.230942408972],[-76.58212392325282,39.23094918374174],[-76.58213471314815,39.23095625812254],[-76.58214541823581,39.23096357360858],[-76.58215602151959,39.23097106618427],[-76.5821655593767,39.23097912876114],[-76.582173072785,39.23098815967207],[-76.58217842925551,39.23099823591259],[-76.58218278551165,39.23100882203525],[-76.58218740281055,39.23101933252091],[-76.58219349550487,39.23102927986788],[-76.58220096746864,39.23103886010321],[-76.58220844665387,39.23104839442407],[-76.5822145193915,39.23105819126914],[-76.5822179285522,39.23106852810715],[-76.58221927930512,39.2310793053046],[-76.58221930583397,39.23109034622018],[-76.58221854293519,39.23110150412921],[-76.58221751959331,39.23111263588945],[-76.58221663496016,39.23112361771366],[-76.58221531516769,39.23113454394232],[-76.58221363410622,39.23114545447262],[-76.58221185692561,39.23115636285913],[-76.58221024993917,39.23116728175998],[-76.58220907830771,39.23117822292826],[-76.58220851560003,39.23118921400504],[-76.5822083406879,39.23120023979086],[-76.58220825725121,39.23121126950533],[-76.58220796666357,39.23122227055837],[-76.58220716913529,39.23123321125648],[-76.58220556834553,39.23124406081926],[-76.58220288077162,39.23125477860336],[-76.58219928352014,39.23126538145307],[-76.58219516427559,39.23127592299334],[-76.58219091421837,39.23128645325851],[-76.58218692218102,39.2312970276792],[-76.58218358050257,39.231307696294],[-76.58218092041199,39.23131846642033],[-76.58217862249381,39.23132929548541],[-76.5821765652552,39.23134016323986],[-76.58217463182004,39.23135105215275],[-76.58217270300642,39.23136194288362],[-76.5821706596271,39.23137281699263],[-76.58216838943849,39.23138365696544],[-76.58216591440362,39.23139447008645],[-76.5821632634613,39.231405259161],[-76.58216044126533,39.23141602060252],[-76.58215751029417,39.23142676544272],[-76.58215461281954,39.2314375257153],[-76.58215165053839,39.2314482767493],[-76.58214850895976,39.2314589893123],[-76.58214507243427,39.23146963416771],[-76.58214122992936,39.23148018479771],[-76.58213695132129,39.23149064289665],[-76.58213232106763,39.23150102407822],[-76.58212742943817,39.23151134037392],[-76.58212236785023,39.23152160562088],[-76.58211724040308,39.23153184360977],[-76.58211230765473,39.23154225794308],[-76.58210711241985,39.23155259927948],[-76.58210095417382,39.23156244085911],[-76.58209318538766,39.23157140385165],[-76.58208392329509,39.23157964180631],[-76.58207366716866,39.23158733755653],[-76.58206288185877,39.23159461886586],[-76.58205198806158,39.23160163766189],[-76.58204075320556,39.23160855165311],[-76.5820289982864,39.23161487918735],[-76.58201665503348,39.23162001920322],[-76.582003406928,39.23162363368296],[-76.58198917206994,39.23162586285574],[-76.58197488109055,39.23162641097763],[-76.58196132063773,39.23162484757675],[-76.58194816955016,39.23162083642045],[-76.58193541095048,39.23161547369412],[-76.58192314942178,39.23160988123721],[-76.58191140649403,39.23160374655711],[-76.58189991938177,39.23159724436939],[-76.581888386508,39.23159084290448],[-76.5818765074432,39.2315850121984],[-76.58186367815057,39.23158064186824],[-76.58184978757377,39.231578102638],[-76.58183584531717,39.23157647210568],[-76.58182170238919,39.23157587584924],[-76.58180733263396,39.2315742654091],[-76.58179433491843,39.23157784292476],[-76.58178151452039,39.23158336764919],[-76.58177068619399,39.23159047492862],[-76.58176304002906,39.23159925908178],[-76.58175720605813,39.23160929276349],[-76.58175253121131,39.23161995841652],[-76.58174841104672,39.23163064135908],[-76.58174432683261,39.2316413163225],[-76.58174101013383,39.23165225254363],[-76.58173980070583,39.23166310799752],[-76.58174179913877,39.23167363799172],[-76.58174634322525,39.23168398969523],[-76.58175207146361,39.2316942645481],[-76.58175839014396,39.23170615479553],[-76.58177024407485,39.23171212504413],[-76.58178206765584,39.23171813571837],[-76.58179389358178,39.23172414189584],[-76.58180575568966,39.2317301013606],[-76.58181768899048,39.23173596919859],[-76.58182972499949,39.2317417040863],[-76.58184186594818,39.23174732044409],[-76.58185411776012,39.23175279577365],[-76.58186649922628,39.23175808600377],[-76.5818790279847,39.23176314615841],[-76.5818917472493,39.23176791513868],[-76.58190463825008,39.23177243341262],[-76.58191761803374,39.23177682319027],[-76.58193059786144,39.23178120576046],[-76.58194349246371,39.23178570332502],[-76.58195621541805,39.23179043718113],[-76.58196868029174,39.23179553042733],[-76.58198089388539,39.23180100830973],[-76.58199292968531,39.23180678281391],[-76.58200476929821,39.23181283045435],[-76.58201639316232,39.23181912954272],[-76.58202778056258,39.23182565748598],[-76.58203891426412,39.23183239080252],[-76.58204979287014,39.23183937002249],[-76.58206039857815,39.23184666804542],[-76.58207066541887,39.23185427652952],[-76.58208052859167,39.23186218533565],[-76.5820899198373,39.23187038160991],[-76.58209880556791,39.23187886523294],[-76.58210728086691,39.23188761762705],[-76.58211545849808,39.23189656803236],[-76.58212344543429,39.23190564566849],[-76.58213135213362,39.23191477796576],[-76.5821392855636,39.23192389504441],[-76.58214735618768,39.231932923434],[-76.58215593471648,39.23194165277172],[-76.58216458204218,39.23195030398608],[-76.5821701550079,39.23196040801799],[-76.58217091886135,39.23197113268058],[-76.58215810250108,39.23197576749281],[-76.58214476060195,39.2319793681428],[-76.58213135550957,39.23198288209181],[-76.5821179585743,39.23198579705186],[-76.58210780874758,39.23197876908895],[-76.58210016379971,39.23196944045211],[-76.58209264276503,39.23196011495826],[-76.58208535983083,39.23195067681378],[-76.58207762363224,39.23194150368484],[-76.58206908581437,39.23193274656226],[-76.58206031726826,39.23192403095403],[-76.58205109858804,39.23191563892263],[-76.58204116152201,39.23190788658621],[-76.5820303544494,39.23190095265917],[-76.58201898047376,39.23189450313175],[-76.58200720483846,39.23188840617804],[-76.58199517179074,39.23188255511927],[-76.5819830232563,39.23187684416911],[-76.58197090348246,39.23187116664884],[-76.58195879744449,39.2318655171003],[-76.58194660980438,39.23185995733752],[-76.58193433814489,39.23185450446658],[-76.58192198005416,39.23184917469294],[-76.58190953196737,39.23184398331701],[-76.58189699147263,39.2318389465442],[-76.58188433052378,39.23183410661099],[-76.581871523492,39.23182948864786],[-76.58185860658891,39.23182504053871],[-76.58184561834251,39.2318207101757],[-76.58183259498055,39.2318164427405],[-76.58181957619981,39.23181218432793],[-76.5818065433579,39.23180795378793],[-76.58179346486506,39.23180380505445],[-76.58178033949942,39.23179974893247],[-76.58176716255927,39.2317957971154],[-76.58175392458254,39.23179198289814],[-76.58174041010007,39.23178870635848],[-76.58173054619544,39.23178643458109],[-76.58172683219546,39.23178557912026],[-76.58171357496998,39.23178188733544],[-76.58170084355974,39.23177721557643],[-76.58168844946861,39.2317719072683],[-76.58167635326102,39.23176616854846],[-76.5816645168028,39.23176018123802],[-76.58165289752748,39.23175389654332],[-76.58164166055676,39.23174720335666],[-76.5816310079048,39.23174001952681],[-76.5816209662684,39.23173233524049],[-76.58161130183161,39.2317243226135],[-76.58160178176672,39.23171618259004],[-76.58159217326732,39.23170811251115],[-76.58158227733749,39.23170027200564],[-76.58157215810773,39.23169258833919],[-76.58156200049534,39.23168493245907],[-76.58155199054357,39.23167718072138],[-76.58154231082666,39.23166920856902],[-76.58153312301289,39.23166090127907],[-76.58152439344558,39.23165227044173],[-76.58151603246084,39.23164339770813],[-76.58150795271624,39.23163436383681],[-76.5815000761511,39.23162524691707],[-76.58149250039848,39.23161598874657],[-76.58148519650355,39.23160658922222],[-76.58147801460292,39.23159712527644],[-76.58147080482803,39.2315876747424],[-76.5814634231277,39.2315783109702],[-76.58145594855633,39.23156898379823],[-76.58144831832742,39.23155973443821],[-76.58144031854796,39.23155069544244],[-76.58143174008005,39.23154197866209],[-76.58142271303404,39.23153351790359],[-76.58141349407099,39.23152519517957],[-76.58140199140821,39.23151878656808],[-76.58139025195629,39.23151246538708],[-76.58137830663625,39.23150648756742],[-76.58136583401428,39.23150154556061],[-76.58135262409705,39.23149809260903],[-76.58133889260401,39.23149568629977],[-76.58132488231284,39.23149381315501],[-76.5813108336216,39.23149197049799],[-76.58129698461751,39.23148965474306],[-76.5812832508593,39.23148704394284],[-76.58126947515228,39.23148447622864],[-76.5812557101675,39.23148185810758],[-76.5812420074125,39.2314790969834],[-76.58122841841087,39.23147609755762],[-76.58121499582323,39.23147276813896],[-76.58120178883554,39.2314690170237],[-76.58118869627123,39.2314649141115],[-76.58117568995664,39.23146052325704],[-76.58116282204223,39.23145583924176],[-76.58115014816376,39.23145085505802],[-76.58113772279867,39.23144556369408],[-76.58112560040861,39.23143996084045],[-76.58111384372708,39.23143401429318],[-76.58110258054326,39.23142746238241],[-76.58109178162627,39.23142035184428],[-76.58108136966948,39.23141282922968],[-76.58107127083005,39.23140504290328],[-76.581061410107,39.23139714122568],[-76.58105182934925,39.23138909822379],[-76.58104257437451,39.23138080416636],[-76.58103353580282,39.23137234513774],[-76.58102460078507,39.23136380630885],[-76.581015657625,39.23135527375564],[-76.58100659577909,39.23134683445884],[-76.58099730355644,39.23133857359354],[-76.58098766926082,39.23133057723548],[-76.58097766620605,39.2313228533963],[-76.58096741196442,39.2313153016087],[-76.58095693205857,39.23130791475745],[-76.5809462531534,39.23130068843385],[-76.5809354030666,39.23129361913401],[-76.58092440614662,39.23128670244096],[-76.58091329022713,39.23127993214862],[-76.58090204714766,39.23127331723553],[-76.58089055381075,39.23126691311035],[-76.58087881117252,39.23126075400591],[-76.58086683991539,39.23125486792005],[-76.58085465608907,39.23124928283413],[-76.58084227804888,39.23124402853924],[-76.58082972495853,39.23123899791132],[-76.58081701131714,39.23123408921435],[-76.58080414710155,39.23122937814912],[-76.58079113997222,39.23122494040821],[-76.58077799990066,39.2312208525932],[-76.5807647356947,39.23121719220237],[-76.5807513385181,39.23121408261049],[-76.58073753753588,39.2312122768003],[-76.58072340159231,39.23121149217372],[-76.58070914086002,39.23121104939487],[-76.5807084681621,39.23121101186157],[-76.58069496898133,39.23121027004113],[-76.58068095698508,39.23120889404186],[-76.58066696787805,39.23120736859369],[-76.58065298848928,39.23120576661252],[-76.58063901150263,39.23120415022589],[-76.58062502958064,39.23120258516421],[-76.58061103539633,39.23120113535648],[-76.58059701930638,39.23119986472338],[-76.58058297385607,39.23119885881209],[-76.58056888673971,39.23119824008431],[-76.58055476909377,39.23119788787565],[-76.58054063920621,39.23119764731792],[-76.5805265107271,39.23119736442694],[-76.58051240078106,39.23119688523117],[-76.58049828802595,39.23119629342657],[-76.5804841518998,39.23119573666706],[-76.58047002678836,39.23119507995894],[-76.58045594707212,39.2311941892094],[-76.58044194597353,39.23119293032149],[-76.58042806385586,39.23119113679578],[-76.58041431870433,39.2311887051072],[-76.58040065580019,39.23118587917074],[-76.58038701329963,39.2311829326016],[-76.58037333283862,39.2311801381264],[-76.58035955039497,39.23117774593225],[-76.58034566396621,39.23117570286616],[-76.5803317502984,39.23117376148876],[-76.58031788498478,39.23117167345602],[-76.58030414938314,39.23116919494826],[-76.58029047369921,39.23116637706028],[-76.58027685395267,39.23116330535164],[-76.58026341594113,39.2311598595681],[-76.58025028430941,39.23115591855063],[-76.58023763497947,39.23115111180834],[-76.58022560464674,39.23114523895704],[-76.58021420707101,39.23113871530424],[-76.58020314608713,39.2311318757807],[-76.58019233818887,39.23112473990489],[-76.58018195509086,39.2311172569468],[-76.58017216619169,39.23110937616808],[-76.58016303666363,39.23110104465624],[-76.58015441316313,39.23109234023053],[-76.58014612690678,39.23108340551078],[-76.58013801259614,39.23107438132779],[-76.5801299805559,39.23106535113304],[-76.58012224012698,39.2310561688488],[-76.5801146716704,39.23104689259765],[-76.58010710670628,39.23103761365614],[-76.58009938140901,39.23102841971432],[-76.58009144120544,39.2310193339972],[-76.580083401102,39.23101029836558],[-76.5800753819065,39.23100125289965],[-76.58006750673236,39.23099213948935],[-76.58005989638212,39.23098289911562],[-76.58005274017727,39.23097344147743],[-76.58004595913232,39.23096380502566],[-76.58003930933127,39.23095410688939],[-76.58003257589799,39.23094444988924],[-76.5800258981923,39.23093477056862],[-76.58001924835409,39.23092507963725],[-76.58001249051388,39.23091543786175],[-76.58000550159031,39.2309058979475],[-76.57999843960199,39.23089637488614],[-76.57999129752537,39.23088688126337],[-76.57998395446749,39.23087749141113],[-76.57997629069897,39.2308682787645],[-76.57996811910823,39.23085935164801],[-76.57995920847169,39.23085083534277],[-76.57994997132327,39.23084249802378],[-76.5799408957234,39.23083406670058],[-76.57993243022653,39.23082528986018],[-76.5799243482417,39.23081629280055],[-76.57991645919337,39.23080718203216],[-76.57990872004238,39.23079798892828],[-76.57990108662335,39.23078873945327],[-76.57989351590247,39.23077946407965],[-76.57988597187494,39.23077017979324],[-76.57987848597682,39.2307608587825],[-76.57987112436807,39.23075147696335],[-76.57986395202387,39.23074201475118],[-76.57985703509887,39.23073244896272],[-76.57985062435611,39.23072267960853],[-76.5798447697571,39.23071267984424],[-76.57983899180191,39.23070264612443],[-76.57983282842223,39.23069276505752],[-76.57982643868286,39.23068297055529],[-76.57981996073728,39.23067320726413],[-76.57981336668274,39.23066349309966],[-76.57980662631599,39.23065384326694],[-76.57979970014189,39.23064427744169],[-76.57979246158348,39.2306348519196],[-76.57978501864967,39.23062551664388],[-76.57977754205075,39.23061619475873],[-76.57977020132286,39.23060681210672],[-76.57976285720761,39.23059741502971],[-76.57975545393685,39.23058803305355],[-76.57974833391836,39.23057854129546],[-76.57974183491666,39.23056881665769],[-76.57973606602383,39.23055882169819],[-76.57973073358713,39.23054866255814],[-76.57972568205921,39.23053839813196],[-76.57972075937795,39.23052808552495],[-76.57971581116497,39.23051778183399],[-76.57971066796975,39.23050754680448],[-76.57970509796043,39.23049741293497],[-76.57969944214658,39.23048729587263],[-76.57969417481814,39.23047709642889],[-76.57968976796978,39.23046671180374],[-76.57968645120728,39.23045609417755],[-76.57968381516747,39.23044533126141],[-76.57968163488201,39.23043446999099],[-76.57967969348459,39.23042355823167],[-76.57967777297219,39.23041264024156],[-76.57967565880041,39.23040176299369],[-76.57967333473898,39.23039092913222],[-76.57967102806147,39.23038009353129],[-76.57966871327218,39.23036925880207],[-76.57966635907376,39.23035842933626],[-76.57966393416361,39.23034761042646],[-76.57966140839743,39.23033680736945],[-76.57965888738202,39.23032598451223],[-76.57965629575094,39.23031515599737],[-76.57965315905554,39.23030444803612],[-76.57964903880385,39.23029397796061],[-76.57964421450974,39.23028368011436],[-76.57963899355245,39.2302734772304],[-76.57963356499634,39.23026332224467],[-76.57962811674226,39.23025316898966],[-76.57962283901794,39.23024296950471],[-76.57961790232473,39.23023268206396],[-76.57961323479211,39.23022231721935],[-76.57960876101097,39.2302118963195],[-76.57960445773793,39.23020143279285],[-76.57960029943446,39.23019093645649],[-76.57959649722321,39.23018035131764],[-76.57959321238262,39.23016962841131],[-76.57958986020395,39.2301589331877],[-76.5795858362473,39.23014843823265],[-76.57958071597288,39.23013825192029],[-76.57957486610334,39.23012825035598],[-76.57956847088359,39.23011841798555],[-76.57956166698806,39.23010875349704],[-76.57955458759,39.23009926006965],[-76.57954695539176,39.23009002048231],[-76.57953868555376,39.23008108397371],[-76.57952991819306,39.23007245464886],[-76.57952076579041,39.23006410949027],[-76.57951131227261,39.23005595782013],[-76.57950168555014,39.23004791362192],[-76.57949201581768,39.23003989629218],[-76.57948243214375,39.2300318198186],[-76.57947306588656,39.23002360270112],[-76.57946397751607,39.2300152037208],[-76.57945506471899,39.23000668916851],[-76.57944626820471,39.2299980966645],[-76.57943753563706,39.22998946295324],[-76.57942881005253,39.22998082386169],[-76.57942003796218,39.22997221522917],[-76.57941121822905,39.22996363344858],[-76.5794024869455,39.22995497992208],[-76.57939381386042,39.22994627796152],[-76.57938515590293,39.22993756434435],[-76.5793764676966,39.22992887403834],[-76.57936770501767,39.22992024291607],[-76.57935882364787,39.22991170594935],[-76.57934977820001,39.22990329990739],[-76.57934052445039,39.22989506066273],[-76.57933088218458,39.22988710557128],[-76.57932011176877,39.22987994542504],[-76.57930853921781,39.22987348500899],[-76.57929669040688,39.22986751902912],[-76.57928342036587,39.22986353056448],[-76.57926944260068,39.22986365881579],[-76.57925533922402,39.22986543954138],[-76.57924063650829,39.22986457793873],[-76.57923773534814,39.2298549850705],[-76.57923799250005,39.22984344883745],[-76.57923586290826,39.22983245172094],[-76.57923326581476,39.22982138627096],[-76.57922892156725,39.22981100995761],[-76.57922157161711,39.22980203708923],[-76.57921171787653,39.2297942019337],[-76.5792009341711,39.2297867480752],[-76.57919080358094,39.22977892093311],[-76.57918228756243,39.22977010692226],[-76.5791745705987,39.22976052741261],[-76.57916856908241,39.22975052798529],[-76.57916622295853,39.22974030656088],[-76.57917030628781,39.22972943710935],[-76.5791721215965,39.22971842170715],[-76.57917206666851,39.22970717170281],[-76.57916890548422,39.22969670414616],[-76.57916125177437,39.22968759236559],[-76.57915202744611,39.22967889201293],[-76.57914508675648,39.22966946121029],[-76.57914114368194,39.22965881880079],[-76.57913954733922,39.22964774342474],[-76.57914048925933,39.22963694377999],[-76.57914356995693,39.22962620945376],[-76.57914882259192,39.22961053224297],[-76.57915234548476,39.22959983643381],[-76.57915606867913,39.22958915125125],[-76.57915898601328,39.22957842624729],[-76.57916019799389,39.22956759153942],[-76.57915999605082,39.22955652476605],[-76.5791585165906,39.22954546512224],[-76.57915571262502,39.22953471960456],[-76.57915100143019,39.22952451041702],[-76.57914433036713,39.22951473017829],[-76.57913702778947,39.22950519719005],[-76.57912831420886,39.22949630770155],[-76.57912068890836,39.22948729240281],[-76.57911889430846,39.22947644871557],[-76.57912073660333,39.22946537485959],[-76.5791242390623,39.22945480418567],[-76.57912849153006,39.22944431637008],[-76.57913299749916,39.22943385198273],[-76.57913726511651,39.22942334800714],[-76.57914113118903,39.22941278584258],[-76.57914492323455,39.22940220719848],[-76.57914866901154,39.22939161847972],[-76.57915239165628,39.22938102427327],[-76.57915611776906,39.22937043097981],[-76.57915986816997,39.229359843178],[-76.57916365442981,39.22934926271083],[-76.57916741408835,39.22933867584269],[-76.57917116334372,39.22932808533402],[-76.57917493341273,39.22931750030447],[-76.57917875552278,39.22930692807221],[-76.57918266321757,39.22929637596379],[-76.57918668656637,39.22928585129316],[-76.57919105919045,39.22927540984533],[-76.57919574407678,39.22926504338056],[-76.57920040351972,39.22925467051894],[-76.57920469746557,39.22924421527679],[-76.5792086283268,39.22923366144884],[-76.57921241816989,39.22922306027473],[-76.57921595002152,39.22921241133518],[-76.57921910576627,39.22920171150439],[-76.57922170017483,39.22919094750745],[-76.57922313736522,39.22918002172585],[-76.5792238499847,39.22916902038371],[-76.57922434474875,39.22915803897842],[-76.57922403347692,39.22914704837804],[-76.57922276173504,39.22913611558729],[-76.57922102429416,39.22912520184487],[-76.57921880001425,39.22911435661769],[-76.57921516606284,39.22910373603499],[-76.57921170005501,39.22909311425268],[-76.57921053015311,39.22908219533841],[-76.57921001396595,39.22907119139224],[-76.57920909682956,39.22906022474204],[-76.57920782282332,39.22904928383571],[-76.57920656155704,39.22903834297502],[-76.57920561422969,39.22902738972813],[-76.57920501445409,39.22901641971166],[-76.57920458381646,39.22900544219453],[-76.57920428176546,39.22899445973367],[-76.57920406542287,39.2289834766793],[-76.57920392898193,39.22897249571287],[-76.57920401839588,39.22896151285383],[-76.57920419583438,39.22895052940952],[-76.57920426323815,39.22893954737228],[-76.57920412102784,39.22892856278194],[-76.57920399631794,39.22891755663566],[-76.57920364801092,39.22890656229864],[-76.5792027678049,39.22889561829967],[-76.57920094432318,39.22888476279827],[-76.5791980547598,39.2288740025602],[-76.5791947514241,39.22886329398449],[-76.57919146065814,39.22885261427854],[-76.57918792176692,39.22884198142413],[-76.57918431678242,39.2288313618442],[-76.57918052868379,39.22882076322637],[-76.57917657946521,39.22881018745083],[-76.57917333727184,39.22879952052927],[-76.57917141525861,39.22878868088778],[-76.5791703706718,39.22877772458875],[-76.57916972129038,39.22876672286625],[-76.57916905326678,39.22875573999314],[-76.57916885564755,39.2287447254779],[-76.57916840761828,39.22873375240128],[-76.57916618314503,39.22872294320226],[-76.57916135928403,39.2287126020952],[-76.57915433487993,39.22870304668277],[-76.57914592202708,39.22869424024227],[-76.57913695493714,39.22868573627664],[-76.57912781332685,39.22867736680107],[-76.57911853337643,39.22866908510495],[-76.57910927319139,39.22866079086801],[-76.57910018970298,39.22865238646838],[-76.57909122615163,39.22864387350401],[-76.57908220712903,39.22863534052284],[-76.57907352613209,39.22862663940708],[-76.57906559292485,39.22861761308938],[-76.57905897185422,39.22860801227699],[-76.57905383370083,39.22859774750478],[-76.57904934781321,39.2285872508695],[-76.57904507018418,39.22857679011126],[-76.57904135393535,39.22856618994413],[-76.57903760987094,39.2285555932802],[-76.57903368028602,39.22854503288261],[-76.57902969505817,39.22853448129308],[-76.57902521787713,39.22852408017032],[-76.57901965003694,39.22851401382782],[-76.57901314931215,39.22850423779252],[-76.57900662408127,39.22849449319613],[-76.57899997693772,39.22848480040717],[-76.5789932856798,39.22847512547511],[-76.57898668612508,39.22846541574123],[-76.57898031523843,39.22845562035255],[-76.57897413717095,39.22844573017273],[-76.57896814840537,39.22843575239538],[-76.57896263066333,39.22842563848842],[-76.57895786221843,39.22841533540344],[-76.57895392812213,39.22840475787174],[-76.57895090201947,39.22839398632678],[-76.57894890597839,39.2283831383077],[-76.57894797131618,39.22837220581988],[-76.57894771690874,39.2283612037101],[-76.57894767915867,39.22835018796501],[-76.57894751151024,39.22833920328121],[-76.57894743533872,39.22832822162781],[-76.57894744140562,39.2283172384678],[-76.5789474729516,39.22830625539922],[-76.57894748364572,39.22829527315656],[-76.5789475835271,39.22828428943225],[-76.57894769035718,39.22827330573283],[-76.5789476315524,39.22826232504233],[-76.57894732722272,39.22825134347097],[-76.57894698708171,39.22824034645794],[-76.57894646042213,39.22822935868428],[-76.57894554674229,39.22821840375175],[-76.57894396670736,39.22820751849095],[-76.57894113746566,39.22819675305605],[-76.57893796290809,39.22818601881023],[-76.57893563776679,39.22817520293841],[-76.57893434287595,39.22816427816531],[-76.57893357874246,39.228153299448],[-76.57893315056448,39.22814230572184],[-76.57893289486844,39.22813132612611],[-76.57893285113784,39.2281203427869],[-76.57893300662769,39.22810935655921],[-76.5789333334999,39.22809837454947],[-76.57893381089741,39.22808739848431],[-76.57893469020985,39.22807641665477],[-76.57893651625017,39.22806554361252],[-76.57893983629675,39.22805486869624],[-76.5789432420175,39.22804419859109],[-76.5789455774632,39.22803335620094],[-76.57894704366333,39.22802242421774],[-76.57894729512618,39.2280114635558],[-76.57894675573415,39.22800047483503],[-76.57894580275551,39.22798950714994],[-76.57894471196484,39.22797853806963],[-76.57894316462483,39.22796760878725],[-76.57894069223619,39.22795682121151],[-76.57893738413038,39.22794614954026],[-76.57893353581827,39.22793556330638],[-76.57892936737697,39.2279250578946],[-76.57892498426064,39.22791462287395],[-76.57892038889786,39.22790423933676],[-76.57891566595504,39.22789388686885],[-76.57891090009871,39.22788354505612],[-76.57890617831141,39.22787319349268],[-76.57890162012646,39.22786279117168],[-76.57889707471423,39.22785238349157],[-76.57889225546121,39.22784206310504],[-76.57888690127534,39.22783191554984],[-76.57888107021296,39.22782191581253],[-76.57887491191867,39.2278120229941],[-76.57886855048332,39.22780220871487],[-76.57886213797453,39.22779241406914],[-76.57885571754225,39.22778258876812],[-76.57884900908375,39.22777289935151],[-76.57884171500677,39.22776353211307],[-76.57883308581816,39.22775490592734],[-76.57882314134521,39.22774699744496],[-76.5788139497941,39.22773867820657],[-76.57880624698488,39.22772949145622],[-76.57879904526509,39.22771998042197],[-76.57879246122081,39.22771021037834],[-76.5787866207243,39.22770024303004],[-76.57878183537727,39.2276898732173],[-76.57877849785909,39.22767908973865],[-76.57877689898979,39.22766826205601],[-76.57877815661195,39.22765735184468],[-76.57878055056422,39.22764641058096],[-76.57878242771895,39.22763551340218],[-76.57878453286361,39.22762464406487],[-76.57878740738123,39.22761390900217],[-76.57879100387923,39.22760329273062],[-76.57879504694247,39.22759275733],[-76.5787993640634,39.22758229317337],[-76.57880395286698,39.22757191016074],[-76.57880887470695,39.22756161301614],[-76.57881400811905,39.22755137788345],[-76.57881924669465,39.22754118096054],[-76.57882456041858,39.22753100592568],[-76.57882995044358,39.22752085368379],[-76.57883541328468,39.22751072602397],[-76.578840951258,39.22750062295446],[-76.57884654008033,39.22749053808268],[-76.57885214972063,39.22748045778916],[-76.57885779865538,39.22747039114805],[-76.57886350191343,39.22746034271712],[-76.57886927681864,39.22745032066551],[-76.57887513955257,39.22744033045596],[-76.5788810970426,39.22743037571635],[-76.57888707542521,39.22742041294444],[-76.57889314629043,39.22741047842812],[-76.57889942856677,39.22740063294616],[-76.57890604119898,39.22739093457516],[-76.57891308809735,39.22738143773442],[-76.57892043419426,39.22737206897634],[-76.5789279928602,39.22736278925658],[-76.57893573979584,39.22735359488488],[-76.57894365070736,39.22734448127011],[-76.57895170244294,39.2273354465277],[-76.57895987187219,39.22732648516985],[-76.57896825824635,39.2273176561033],[-76.57897717914061,39.22730911359929],[-76.57898637593165,39.22730072251417],[-76.57899553803027,39.22729232229613],[-76.57900435601626,39.22728375059601],[-76.57901251929515,39.22727484776298],[-76.57901988125585,39.2272655340028],[-76.57902668783571,39.22725593540591],[-76.57903308449345,39.22724613086177],[-76.57903921552951,39.22723619925571],[-76.57904522409687,39.22722621766722],[-76.57905125449589,39.22721626498165],[-76.57905728706,39.2272063375253],[-76.57906308274198,39.22719631914119],[-76.57906867038808,39.22718622794851],[-76.57907359389372,39.22717700632675],[-76.57907408577191,39.22717608569419],[-76.57907957657612,39.22716591938906],[-76.57908487791182,39.22715567403652],[-76.57908898528531,39.22714521902452],[-76.57909131091765,39.22713446036611],[-76.57909244378439,39.22712348574732],[-76.57909297596673,39.22711244501913],[-76.57909338968982,39.2271014597143],[-76.5790934316624,39.2270904721755],[-76.57909310882803,39.22707948332843],[-76.57909246504042,39.2270685194529],[-76.57909058857335,39.22705762592131],[-76.57908807808828,39.22704681929292],[-76.57908603131524,39.22703593595975],[-76.57908406563763,39.22702504841348],[-76.57908037929761,39.22701449519042],[-76.57907562042499,39.22700415340676],[-76.57907064476711,39.22699384777728],[-76.57906611790497,39.22698344196921],[-76.57906183228459,39.22697297757475],[-76.5790576209024,39.22696249362925],[-76.57905339560268,39.22695201323678],[-76.57904907054609,39.22694155950969],[-76.57904451465745,39.22693116710811],[-76.57903960266283,39.22692086891166],[-76.5790346651537,39.22691057692886],[-76.5790300756304,39.22690019341383],[-76.57902590607213,39.22688968889907],[-76.57902195694668,39.22687911941797],[-76.57901804725167,39.22686854107037],[-76.57901399483207,39.22685800905109],[-76.57900961983327,39.22684758126566],[-76.5790047401004,39.2268373129088],[-76.57899918165496,39.22682724749463],[-76.57899299438149,39.22681737078945],[-76.57898634757836,39.22680764736938],[-76.57897941052784,39.22679804451276],[-76.57897235368611,39.22678852679989],[-76.57896494836567,39.22677918438897],[-76.57895705182496,39.22677006631069],[-76.57894883811743,39.22676111644031],[-76.57894049884979,39.2267522480897],[-76.57893218301352,39.22674333478359],[-76.57892379286794,39.22673445363829],[-76.57891521317767,39.22672570242516],[-76.5789063286967,39.22671718071701],[-76.57889702188423,39.22670898447539],[-76.57888698344328,39.22670132157086],[-76.57887617615397,39.22669421889309],[-76.57886492307716,39.22668749114003],[-76.57885354263036,39.22668095479454],[-76.57884214461626,39.22667445171366],[-76.57883061859235,39.22666805266257],[-76.57881888845313,39.22666189698869],[-76.578806876919,39.22665612673764],[-76.57879452422085,39.22665086059748],[-76.57878197880655,39.2266458685017],[-76.57876931782728,39.2266410300228],[-76.57875656226794,39.22663632181597],[-76.57874372963906,39.22663172052369],[-76.57873084093085,39.22662720190026],[-76.57871791365396,39.22662274258833],[-76.57870496879323,39.22661831924303],[-76.57869202502279,39.22661390761026],[-76.57867909517796,39.22660949152221],[-76.57866613605063,39.22660513117577],[-76.57865313716425,39.22660083554121],[-76.57864011019622,39.22659658844639],[-76.57862706333871,39.2265923755083],[-76.5786140047787,39.22658818324464],[-76.57860094270848,39.22658399727231],[-76.57858788764192,39.2265798023159],[-76.57857484661859,39.22657558308748],[-76.57856183013629,39.22657132701379],[-76.57854884639269,39.22656701881104],[-76.57853590358552,39.22656264319556],[-76.57852301222329,39.22655818579253],[-76.57851017942049,39.22655361870344],[-76.57849744892549,39.2265487907547],[-76.57848492777107,39.22654362035991],[-76.5784727262985,39.22653805386878],[-76.57846095834483,39.22653203404045],[-76.57844969498788,39.22652548816727],[-76.57843884205205,39.22651847806485],[-76.57842825842761,39.2265111680688],[-76.57841780529427,39.22650372702691],[-76.57840734269507,39.22649632017966],[-76.57839683101354,39.22648898791969],[-76.57838636825289,39.22648160899406],[-76.5783759764973,39.22647416997038],[-76.57836567435145,39.22646665830464],[-76.57835548275214,39.22645905875886],[-76.57834543077513,39.22645135071965],[-76.57833553123983,39.22644352072138],[-76.57832572712083,39.22643561539964],[-76.57831595676031,39.22642768137352],[-76.57830616078986,39.22641976977395],[-76.57829627755166,39.22641192721991],[-76.57828626519346,39.22640418058432],[-76.57827619722686,39.2263964373512],[-76.57826596864136,39.22638882865675],[-76.57825543242402,39.22638153773143],[-76.57824425631563,39.22637493360105],[-76.57822413273091,39.22636633992538],[-76.57821462755766,39.22635821858088],[-76.57820511540584,39.22635010261518],[-76.57819565326876,39.22634195079733],[-76.57818630975287,39.22633371653338],[-76.57817710233148,39.22632538277145],[-76.57816792630415,39.22631702840365],[-76.57815866768426,39.22630873589198],[-76.57814921247991,39.22630058859906],[-76.57813935593886,39.22629274162348],[-76.57812904805381,39.22628522991577],[-76.57811865292246,39.22627778365034],[-76.57810846843769,39.2262701651918],[-76.57809838529897,39.22626244801101],[-76.5780881681937,39.22625486276212],[-76.57807756664681,39.2262476580603],[-76.57806573959374,39.2262416577962],[-76.57805367824893,39.22623591160885],[-76.57804160394208,39.22623020320632],[-76.57802953312225,39.22622449301352],[-76.57801762786313,39.22621859695361],[-76.57800605024397,39.22621233004909],[-76.57799481656401,39.22620567794619],[-76.5779837204792,39.22619886870078],[-76.57797254512084,39.22619214744554],[-76.57796108063835,39.22618574762816],[-76.57794935386079,39.226179636917],[-76.57793748951356,39.22617367974303],[-76.57792556921527,39.22616778361956],[-76.57791367456859,39.22616185876224],[-76.57790189067182,39.2261558117961],[-76.57789033193478,39.22614948909967],[-76.57787932311737,39.22614261440125],[-76.57786881265267,39.22613529020428],[-76.577858473379,39.22612780718432],[-76.57784817371859,39.22612028467166],[-76.57783778090881,39.22611284649619],[-76.57782716570416,39.22610560929413],[-76.57781630715701,39.2260985901049],[-76.57780530074585,39.22609170279717],[-76.57779424194905,39.22608486123959],[-76.57778322854536,39.2260779820116],[-76.57777235600246,39.22607098078343],[-76.57776173143877,39.22606376155723],[-76.57775162267988,39.22605607938414],[-76.57774182827636,39.22604811819907],[-76.57773197326273,39.22604022255193],[-76.57772168266285,39.22603273879398],[-76.57771071545899,39.22602588314545],[-76.57769936872363,39.22601936121982],[-76.57768774946814,39.22601309503434],[-76.57767592978387,39.2260070362062],[-76.57766398175161,39.22600113815435],[-76.57765197395632,39.22599535788821],[-76.57763967435559,39.22598996030223],[-76.57762708427343,39.22598491747706],[-76.57761444745647,39.22597994384224],[-76.57760200072434,39.22597475019945],[-76.57758998898201,39.22596905098272],[-76.57757842296874,39.22596279308484],[-76.5775670869679,39.22595622254283],[-76.5775559993431,39.22594936734696],[-76.5775451819375,39.22594225459931],[-76.57753465659418,39.22593491140189],[-76.57752445568102,39.22592734777985],[-76.57751467363632,39.22591945778133],[-76.57750521163052,39.22591130680759],[-76.5774959253681,39.22590301053962],[-76.57748666939521,39.22589468465424],[-76.57747730172179,39.22588644664224],[-76.57746767574147,39.22587841127547],[-76.57745772864355,39.22587062426739],[-76.57744766647801,39.22586290710488],[-76.57743749268171,39.22585526610576],[-76.57742718505774,39.22584773361805],[-76.57741672257808,39.22584034019251],[-76.57740608653096,39.22583311638814],[-76.57739525357205,39.22582609274739],[-76.57738418291063,39.22581931236056],[-76.57737285365801,39.22581278235874],[-76.57736132754174,39.22580644441344],[-76.57734966864858,39.2258002329986],[-76.57733794219644,39.22579408709611],[-76.57732621226664,39.2257879420807],[-76.57731454639342,39.2257817369426],[-76.57730300520538,39.22577540344111],[-76.57729159473428,39.22576890106289],[-76.57728024847538,39.22576231244011],[-76.57726889637443,39.22575573280296],[-76.57725746836122,39.22574926008388],[-76.57724589207058,39.22574298860395],[-76.57723409743761,39.22573701539478],[-76.57722194782789,39.22573153092915],[-76.57720919333863,39.22572688200718],[-76.57719607921305,39.22572272631563],[-76.57718290328086,39.2257186424622],[-76.57716996337203,39.22571420905479],[-76.57715724782523,39.22570943956312],[-76.57714460012016,39.22570455771721],[-76.57713198401268,39.22569962103627],[-76.57711936555852,39.22569468975018],[-76.57710670850817,39.22568982227892],[-76.57709398832682,39.22568505456524],[-76.57708122256845,39.22568035604582],[-76.57706843577827,39.22567568897648],[-76.57705565248017,39.22567101921598],[-76.57704289605596,39.22566630991666],[-76.57703018987155,39.22566152693323],[-76.57701755616139,39.2256566316122],[-76.57700497177441,39.22565162206875],[-76.57699250673301,39.22564640847742],[-76.57698034968944,39.22564081676711],[-76.57696867766157,39.22563468183273],[-76.57695743236921,39.22562806651889],[-76.57694642848951,39.22562116922968],[-76.57693550041932,39.22561418303562],[-76.57692447561767,39.22560729918058],[-76.57691318733941,39.22560070802848],[-76.57690159012357,39.22559445895816],[-76.57688981804719,39.2255884020229],[-76.57687793406048,39.22558246808959],[-76.57686599996646,39.2255765862196],[-76.57685407870467,39.22557068908137],[-76.57684223322548,39.22556470754201],[-76.57683054869779,39.22555853651747],[-76.57681906368227,39.22555211849708],[-76.57680761479513,39.22554566277309],[-76.57679602350616,39.2255393938964],[-76.57678411360649,39.22553353552545],[-76.57677190990987,39.22552800487794],[-76.57675954315341,39.22552262947579],[-76.5767470012085,39.22551750115466],[-76.57673427194635,39.22551271175011],[-76.57672134092746,39.22550835218859],[-76.57670818604581,39.22550443950521],[-76.57669479996245,39.22550084486205],[-76.57668122997643,39.2254975990561],[-76.5766675267858,39.22549474550745],[-76.57665374226281,39.22549232493833],[-76.57663991208246,39.22549037531001],[-76.57662585107876,39.22548887433588],[-76.5766116127633,39.225487976242],[-76.57659738115723,39.22548789517663],[-76.57658334489798,39.22548884800719],[-76.57656950844218,39.22549066990733],[-76.57655559463848,39.22549264465913],[-76.57654164049187,39.22549478140383],[-76.57652769789078,39.22549711816134],[-76.57651381757626,39.22549969114591],[-76.57650005374738,39.22550253928661],[-76.57648645481829,39.22550570059081],[-76.576473073846,39.2255092112812],[-76.57645996271354,39.22551311027863],[-76.57644717440277,39.2255174464163],[-76.57643479104408,39.2255224298722],[-76.57642276537574,39.2255280235439],[-76.57641101944267,39.22553409383499],[-76.57639947299505,39.22554050353762],[-76.57638804344005,39.2255471199392],[-76.57637665283892,39.22555380674104],[-76.57636521976244,39.22556043033395],[-76.57635366511913,39.22556685351409],[-76.57634192811059,39.22557297877795],[-76.57633013595766,39.22557902907695],[-76.57631827825374,39.22558500167119],[-76.57630629644125,39.22559081167609],[-76.57629413425219,39.2255963787192],[-76.57628181925499,39.22560174073264],[-76.57626940544479,39.22560697087444],[-76.57625693187951,39.22561212243141],[-76.57624443877005,39.22561724959547],[-76.57623196749054,39.22562240566199],[-76.57621954215664,39.22562762494753],[-76.57620703860275,39.22563275477225],[-76.5761944787037,39.22563781683381],[-76.57618193489253,39.22564289966997],[-76.5761694807603,39.22564809182287],[-76.57615718989265,39.2256534827353],[-76.5761451335805,39.2256591582387],[-76.57613338997199,39.22566521950256],[-76.57612195437534,39.2256716764186],[-76.57611073142702,39.22567840163273],[-76.57609962000502,39.22568526236535],[-76.57608852130377,39.22569212584516],[-76.57607733535427,39.22569886019747],[-76.57606596451983,39.22570533085363],[-76.57605430650982,39.22571140683117],[-76.57604195030311,39.22571648762773],[-76.57602860085137,39.22572013980356],[-76.57601497110907,39.22572340813451],[-76.57600170854569,39.22572724888386],[-76.57598851131992,39.22573120246506],[-76.5759753151593,39.22573517136188],[-76.57596222221983,39.22573930907569],[-76.57594933581012,39.22574377001288],[-76.57593674888575,39.22574869683243],[-76.57592441895747,39.22575402902869],[-76.5759122622642,39.2257596356863],[-76.57590020652916,39.22576540214519],[-76.575888181781,39.22577121555535],[-76.57587611573754,39.22577696215739],[-76.57586393844369,39.22578252639892],[-76.57585157644864,39.22578779631795],[-76.57583896551792,39.22579266809279],[-76.57582616284077,39.2257972617335],[-76.57581321546344,39.22580165037315],[-76.57580014301972,39.22580584309042],[-76.57578696396939,39.22580985166215],[-76.57577369678815,39.22581368516283],[-76.57576035994114,39.22581735446851],[-76.57574697074608,39.22582086864958],[-76.57573354308397,39.22582423045854],[-76.5757200172776,39.22582734870096],[-76.5757063943613,39.22583024409853],[-76.5756927006054,39.2258329779991],[-76.57567896346521,39.22583560725088],[-76.57566520805824,39.22583819229689],[-76.57565146067078,39.22584079178277],[-76.57563774873654,39.22584346615982],[-76.57562409739434,39.22584627226799],[-76.57561053291973,39.22584927055447],[-76.57559708275146,39.22585252056992],[-76.5755838212236,39.22585618021936],[-76.57557083297434,39.22586042726228],[-76.57555803224461,39.22586507762986],[-76.57554532409132,39.22586993370833],[-76.57553261358788,39.22587479518156],[-76.57551980578594,39.22587946533653],[-76.57550683892393,39.2258838142377],[-76.57549384109329,39.22588811258182],[-76.57548082946086,39.22589239466058],[-76.57546779490181,39.22589663702067],[-76.5754547294442,39.2259008171139],[-76.57544162280526,39.22590491148276],[-76.57542846701828,39.22590889667816],[-76.57541525180592,39.22591274834192],[-76.57540196690688,39.22591643941351],[-76.57538858484486,39.22591991664763],[-76.57537512048651,39.22592321162526],[-76.57536159782893,39.22592637847985],[-76.57534804086352,39.22592947224572],[-76.57533447475606,39.22593254525902],[-76.57532092350338,39.22593565165333],[-76.57530740993877,39.22593884645875],[-76.57529395807506,39.22594218110651],[-76.57528053458613,39.2259456122387],[-76.5752671566762,39.2259491678417],[-76.5752538920858,39.22595294634559],[-76.57524080507021,39.22595704796925],[-76.57522791057136,39.22596149168324],[-76.57521513405635,39.2259661529104],[-76.57520243887009,39.22597096395975],[-76.57518978949412,39.22597586074748],[-76.57517715157881,39.22598077739249],[-76.57516448845308,39.22598564890594],[-76.57515178868144,39.22599045092542],[-76.57513911869522,39.22599530709806],[-76.57512647391601,39.2260002083995],[-76.57511384175012,39.22600513046316],[-76.57510120613517,39.22601004800904],[-76.57508855448293,39.22601493576985],[-76.57507587187837,39.22601977027131],[-76.57506314459133,39.22602452353955],[-76.57505036001751,39.22602917300949],[-76.5750375020946,39.22603369340115],[-76.57502455593442,39.22603805673646],[-76.57501150891656,39.22604224315258],[-76.57499837248196,39.22604627611111],[-76.57498516611881,39.22605018901147],[-76.57497190932089,39.22605401435214],[-76.57495862388708,39.22605778644174],[-76.57494532700034,39.22606153686965],[-76.57493203930686,39.22606529903947],[-76.57491878028949,39.22606910725134],[-76.57490556828903,39.22607299309897],[-76.57489242510442,39.22607699089086],[-76.57487936907644,39.22608113222074],[-76.57486642084059,39.22608545229371],[-76.57485362741507,39.22609002874714],[-76.57484114481272,39.22609511076096],[-76.57482891340555,39.22610059903373],[-76.57481683567718,39.22610633917909],[-76.57480481413818,39.22611217230696],[-76.57479275244123,39.2261179422336],[-76.57478055307564,39.22612349367187],[-76.57476811969958,39.22612866953725],[-76.57475541329377,39.22613341023688],[-76.57474254053679,39.22613788730508],[-76.57472954043746,39.22614216213617],[-76.5747164462678,39.22614628709568],[-76.57470329244181,39.22615031725591],[-76.57469011339506,39.22615430408585],[-76.57467694238883,39.22615830175283],[-76.57466381384779,39.22616236352744],[-76.57465073120305,39.22616649662845],[-76.5746376485783,39.22617062612493],[-76.5746245613521,39.22617475019859],[-76.57461147184588,39.22617886795715],[-76.57459837774356,39.22618297939209],[-76.57458528137205,39.22618708271032],[-76.5745721804044,39.22619117970505],[-76.57455907485682,39.22619526767387],[-76.5745459658766,39.22619934842258],[-76.57453285232178,39.2262034192447],[-76.57451973418171,39.22620748194169],[-76.57450659772633,39.22621150853969],[-76.57449338686733,39.22621538894042],[-76.57448015196201,39.22621922331275],[-76.5744669617192,39.22622314161794],[-76.5744538825585,39.22622726930497],[-76.57444089038631,39.22623156845381],[-76.57442796005373,39.22623598402585],[-76.57441508241453,39.22624049617089],[-76.57440225296054,39.22624508415456],[-76.57438946021325,39.22624973082055],[-76.57437669955101,39.22625443435054],[-76.57436397558462,39.22625919836435],[-76.57435129061406,39.22626402557273],[-76.57433865041358,39.22626891869885],[-76.57432603886696,39.22627386147043],[-76.57431343293092,39.22627883398663],[-76.5743009165529,39.22628393563764],[-76.57428858289671,39.22628927395402],[-76.57427654002467,39.22629498264291],[-76.57426487521809,39.22630118452695],[-76.5742533850749,39.22630761494035],[-76.57424183522666,39.22631395866131],[-76.57422998782549,39.22631990135611],[-76.57421763491828,39.22632516483054],[-76.57420484892023,39.22632984032582],[-76.57419186416735,39.22633424846821],[-76.57417892191701,39.22633871441318],[-76.57416625997907,39.22634355879986],[-76.57415407476337,39.2263490534753],[-76.57414212506637,39.22635486427643],[-76.57413029713797,39.2263608403606],[-76.57411856455228,39.22636694650166],[-76.57410690204171,39.22637314747752],[-76.5740952831805,39.22637940806195],[-76.5740836815429,39.22638569302881],[-76.57407207070325,39.22639196715175],[-76.57406042538862,39.22639819610954],[-76.57404871801506,39.22640434467163],[-76.57403695433548,39.2264104191644],[-76.57402518144846,39.22641648371402],[-76.57401339015399,39.22642252747769],[-76.57400157011021,39.22642853690633],[-76.5739897121334,39.22643449845477],[-76.57397780357077,39.22644039766472],[-76.57396583178594,39.22644621737548],[-76.57395378067896,39.22645193861223],[-76.57394167209705,39.22645758757685],[-76.57392953131867,39.22646319768985],[-76.5739173859492,39.22646880057873],[-76.57390526126154,39.22647443056474],[-76.57389318369758,39.22648012017198],[-76.57388118429917,39.22648590734581],[-76.57386926766621,39.22649179750766],[-76.57385738895697,39.226497736448],[-76.57384550335648,39.22650366545356],[-76.57383356601225,39.22650953211627],[-76.57382167337811,39.22651547460558],[-76.57380980595538,39.2265214613233],[-76.57379786389707,39.22652734057623],[-76.57378574505076,39.22653295886097],[-76.57377335415337,39.22653817260785],[-76.57376068524684,39.22654300971923],[-76.57374780277441,39.22654753888823],[-76.57373475861314,39.22655179993736],[-76.57372160927255,39.2265558327062],[-76.57370838021487,39.22655963998942],[-76.57369500476749,39.22656313867324],[-76.57368153208564,39.22656643612881],[-76.57366801933928,39.2265696550696],[-76.57365452830905,39.22657292182891],[-76.57364111615405,39.22657636092192],[-76.57362779645229,39.22658002554383],[-76.57361452008649,39.22658380201817],[-76.57360123578566,39.22658754963724],[-76.57358789110981,39.22659112949074],[-76.57357443478269,39.22659440177162],[-76.57356073797217,39.22659702731916],[-76.57354682921488,39.22659907559693],[-76.57353291939062,39.2266011085559],[-76.57351922167888,39.22660369085798],[-76.57350583291719,39.22660708948554],[-76.57349260946661,39.22661092378817],[-76.57347949094277,39.22661502780338],[-76.57346642270328,39.22661924369634],[-76.57345334549494,39.22662341001243],[-76.57344400319501,39.22663028773199],[-76.57344392131567,39.22663061531776],[-76.57331134446828,39.22670046258501],[-76.57331055685611,39.22670009040262],[-76.57330665815365,39.22670227953276],[-76.5733030948704,39.22670434917792],[-76.57330026377352,39.22670599271435],[-76.57329743499272,39.22670763625921],[-76.5732953314227,39.22670885817391],[-76.57329163252649,39.22671075347547],[-76.57328868641913,39.22671226327832],[-76.57328573914819,39.22671377397768],[-76.57328354002297,39.22671490096307],[-76.57327973187968,39.22671666705577],[-76.5732766925658,39.22671807653306],[-76.57327365208825,39.22671948690682],[-76.57327138276722,39.22672053887216],[-76.57326753662763,39.22672226789442],[-76.57326446854451,39.2267236466403],[-76.57326140161939,39.22672502539037],[-76.57325911390903,39.22672605386838],[-76.57325529192131,39.22672781090214],[-76.57325224571193,39.22672921134595],[-76.57324920182946,39.22673060999657],[-76.57324693371996,39.22673165295807],[-76.57324320035403,39.22673350219308],[-76.57324022667201,39.22673497496256],[-76.573237255317,39.22673644593885],[-76.57323504247702,39.226737542247],[-76.5732314668351,39.22673954788979],[-76.57322861862878,39.22674114722415],[-76.57322577043314,39.22674274475692],[-76.5732236485152,39.2267439359772],[-76.5732203757396,39.22674622826761],[-76.57321775776359,39.22674805993894],[-76.57321513628608,39.22674989610132],[-76.57321317773668,39.2267512680711],[-76.57321009831578,39.22675376193791],[-76.57320763803678,39.22675575452092],[-76.57320517542513,39.22675774979777],[-76.57320333778402,39.22675923750669],[-76.57320025249064,39.22676174486352],[-76.57319779566375,39.22676374106203],[-76.57319534232728,39.22676573457085],[-76.57319351629398,39.2267672178179],[-76.57319023990125,39.22676953351456],[-76.57318763343974,39.22677137603642],[-76.57318503280113,39.22677321317467],[-76.57318309976149,39.22677457983203],[-76.57317948399923,39.22677651596739],[-76.57317659905016,39.22677806202098],[-76.57317370946306,39.22677960895841],[-76.57317155417448,39.22678076402522],[-76.5731676714894,39.22678240643657],[-76.57316456673206,39.22678372019045],[-76.57316145385155,39.22678503661705],[-76.57315913050707,39.22678601992461],[-76.57315516825285,39.22678760529713],[-76.57315200820891,39.22678886840606],[-76.57314884931752,39.22679013241983],[-76.57314649611628,39.22679107328197],[-76.57314266951154,39.22679282669216],[-76.57313962448232,39.22679422263346],[-76.57313658410166,39.22679561588921],[-76.57313432181694,39.22679665256428],[-76.57313070466662,39.22679862652576],[-76.57312781954231,39.22680020140242],[-76.57312493325971,39.22680177627475],[-76.57312278132484,39.22680295117],[-76.57311925158396,39.22680502633622],[-76.57311643661657,39.2268066825378],[-76.57311361932737,39.2268083396316],[-76.57311151798081,39.22680957596355],[-76.57310802158619,39.22681169088499],[-76.57310523190718,39.22681337870551],[-76.57310244222266,39.2268150674267],[-76.5731003592647,39.22681632724559],[-76.57309683983173,39.22681842136495],[-76.57309403288885,39.22682009110684],[-76.5730912271039,39.22682176085288],[-76.57308913380918,39.22682300622149],[-76.57308557296516,39.22682505334944],[-76.57307775420978,39.22682951078546],[-76.57306636652854,39.22683601081501],[-76.57305493971852,39.22684246926536],[-76.57304342779648,39.22684882922007],[-76.57303178592637,39.22685503556867],[-76.57301994741441,39.22686100879992],[-76.573007915697,39.22686675523176],[-76.57299579542588,39.2268723977507],[-76.57298368893646,39.22687805923487],[-76.57297167903323,39.22688383636879],[-76.57295965182678,39.22688960172845],[-76.57294761999673,39.22689536526844],[-76.57293564222769,39.2269011902569],[-76.57292377952037,39.22690713997014],[-76.5729120893796,39.22691328127516],[-76.57290088587897,39.22691996301526],[-76.57289004593461,39.2269270460228],[-76.57287904382645,39.22693394017655],[-76.57286741827168,39.22694012494946],[-76.57285546131831,39.22694595270775],[-76.57284333636743,39.226951598797],[-76.57283107000697,39.22695707142093],[-76.5728186876505,39.22696238148126],[-76.57280621588055,39.22696753808254],[-76.57279357900399,39.2269724175426],[-76.57278058630773,39.22697676424701],[-76.57276746391352,39.22698091590976],[-76.57275447363871,39.22698524460448],[-76.57274187148813,39.22699012598697],[-76.57272977576625,39.22699572352882],[-76.57271800852074,39.22700177805908],[-76.57270641926334,39.22700808545401],[-76.57269486098562,39.22701444070183],[-76.57268318434701,39.22702064148451],[-76.57267122043794,39.22702646559558],[-76.57265891745236,39.22703186150198],[-76.57264657538178,39.22703720862272],[-76.57263450342268,39.22704289631911],[-76.57262268088067,39.22704889929405],[-76.57261094453386,39.22705501247663],[-76.57259915645481,39.22706106151441],[-76.57258720169393,39.22706690276497],[-76.57257519629393,39.22707269068402],[-76.57256316672331,39.22707845329204],[-76.57255109002581,39.22708415627577],[-76.57253894903042,39.22708976624396],[-76.57252672077006,39.22709525068488],[-76.57251438687746,39.22710058250829],[-76.57250193085716,39.22710580849451],[-76.57248930255464,39.22711079514565],[-76.57247644290315,39.22711535038074],[-76.57246329858864,39.22711928844515],[-76.57244994277102,39.22712276904312],[-76.5724364599631,39.22712598975279],[-76.57242288445852,39.22712902546371],[-76.57240925633027,39.22713195288796],[-76.57239560987173,39.22713484691504],[-76.57238198168159,39.22713778424447],[-76.57236841068546,39.22714083978259],[-76.57235492631089,39.22714412713483],[-76.57234149990316,39.22714759665391],[-76.57232806790422,39.22715103282229],[-76.57232143969368,39.22715259674231],[-76.57231456559822,39.22715422011814],[-76.57230092710577,39.22715694391616],[-76.57228700047794,39.2271590505303],[-76.57227290739664,39.22716033502638],[-76.57225886480254,39.22716054417563],[-76.57224482747867,39.2271594940544],[-76.57223083358829,39.22715757844188],[-76.57221702411199,39.22715523382861],[-76.5722045357749,39.22715217070416],[-76.57220352158151,39.22715192199591],[-76.57219002342971,39.22714865251416],[-76.57217613587072,39.22714658144803],[-76.57216192062941,39.22714545950686],[-76.57214802135546,39.22714610153881],[-76.57213482963736,39.22715002227893],[-76.57212862808073,39.22715189400802],[-76.57212156212991,39.22715402741443],[-76.57210812359925,39.22715739237237],[-76.5720946644872,39.22716071311559],[-76.57208119397187,39.22716400409006],[-76.57206771542994,39.22716728152201],[-76.57205423689759,39.22717055715092],[-76.57204076522576,39.22717384721573],[-76.57202730380212,39.22717716614128],[-76.57201386181002,39.22718052747272],[-76.57200044494228,39.22718394744482],[-76.57198705548257,39.22718743147057],[-76.57197368656905,39.22719096511257],[-76.57196033020344,39.22719453032604],[-76.57194697955107,39.22719810816971],[-76.57193362891365,39.22720168330958],[-76.57192027027121,39.22720524130393],[-76.57190691620018,39.22720880922203],[-76.5718935655424,39.22721238705961],[-76.57188021719413,39.22721596580486],[-76.57186686540271,39.22721953913136],[-76.57185350790084,39.22722309892387],[-76.57184014239944,39.2272266406701],[-76.57182678599868,39.22723020947137],[-76.57181343303834,39.22723378368832],[-76.57180006408029,39.22723732181427],[-76.57178666316618,39.22724078145443],[-76.5717732143323,39.22724412111469],[-76.5717597141532,39.22724733267555],[-76.57174617975635,39.22725045673452],[-76.57173261680192,39.22725351493092],[-76.57171903560979,39.22725652441719],[-76.57170544416185,39.22725950594034],[-76.57169184814551,39.22726247663589],[-76.57167825558609,39.22726545004487],[-76.57166464936724,39.22726838376813],[-76.57165102833073,39.22727127780153],[-76.5716373993222,39.22727414928476],[-76.57162376689249,39.22727701174619],[-76.57161014128003,39.22727989584955],[-76.57159655307458,39.22728291430384],[-76.57158298073925,39.22728598956352],[-76.57156938797515,39.22728899538714],[-76.57155574078867,39.22729180734323],[-76.57154200403384,39.22729430009524],[-76.57152817206153,39.2272964502023],[-76.57151430156031,39.2272984596457],[-76.57150040044135,39.22730036088229],[-76.5714864755067,39.22730217825787],[-76.57147253472735,39.22730393432109],[-76.57145858258905,39.22730565340924],[-76.57144462590449,39.22730735806667],[-76.57143067031762,39.22730907263505],[-76.57141672379933,39.22731081966286],[-76.57140279084065,39.22731262258681],[-76.57138887824897,39.22731450485198],[-76.57137499054788,39.2273164844904],[-76.57136112320822,39.22731854437086],[-76.5713472693954,39.22732066555199],[-76.57133342574384,39.22732283000594],[-76.57131958773525,39.22732501879985],[-76.57130575200392,39.22732721390593],[-76.57129191286808,39.22732939728783],[-76.57127806580942,39.22733155001269],[-76.57126420857712,39.22733366126299],[-76.57125035908091,39.22733583379281],[-76.57123651848984,39.22733806580487],[-76.57122267787067,39.22734030231913],[-76.57120882713218,39.22734248835116],[-76.57119495850488,39.22734456802441],[-76.57118106305016,39.22734648725949],[-76.5711671318296,39.22734819197698],[-76.57115315367565,39.227349613677],[-76.57113912081344,39.22735069738363],[-76.57112504435112,39.22735152150508],[-76.57111094108922,39.22735218068454],[-76.57109682319589,39.22735276954814],[-76.57108270863527,39.22735338184243],[-76.57106860956975,39.22735411309438],[-76.57105454165256,39.22735505614137],[-76.57104050239313,39.22735623979919],[-76.57102647841627,39.22735757754432],[-76.57101246223557,39.22735896666057],[-76.57099844172117,39.22736030621654],[-76.57098440705415,39.22736149618989],[-76.57097034727389,39.22736243385187],[-76.57095626233694,39.22736312640855],[-76.57094216719979,39.2273637819943],[-76.57092806528243,39.22736440962945],[-76.57091395893916,39.2273650030172],[-76.57089984704459,39.22736555674868],[-76.5708857319313,39.22736606813013],[-76.57087161480096,39.22736652995972],[-76.57085749683361,39.22736693863859],[-76.57084337806177,39.22736728876226],[-76.57082926082909,39.22736757583536],[-76.57081514632635,39.22736779445761],[-76.57080103573351,39.22736794103023],[-76.57078693024675,39.2273680092521],[-76.5707728069162,39.22736796390895],[-76.57075865451463,39.22736774640915],[-76.57074449868954,39.22736732892233],[-76.57073036163611,39.22736668000244],[-76.57071626669654,39.22736577000924],[-76.57070223953484,39.22736456841007],[-76.57068830349336,39.22736304556465],[-76.57067450168623,39.22736096652765],[-76.57066082618664,39.2273583015444],[-76.57064722583397,39.22735527562234],[-76.57063365063641,39.22735211197168],[-76.57062004944932,39.22734903289747],[-76.57060637111707,39.22734626250644],[-76.57059259791899,39.22734385838349],[-76.5705787656445,39.2273416477101],[-76.57056490618383,39.22733952791418],[-76.57055105025829,39.227337398221],[-76.570537227442,39.22733515605009],[-76.5705234684728,39.22733269792433],[-76.57050979109852,39.22732996175508],[-76.57049616103093,39.22732706361724],[-76.57048253804395,39.22732414388505],[-76.57046888305321,39.22732134563925],[-76.57045515582145,39.22731881105547],[-76.57044132552362,39.22731665802285],[-76.57042740756371,39.22731482894795],[-76.57041343984083,39.22731318524959],[-76.57039945909581,39.2273115883424],[-76.57038549976446,39.22730989783094],[-76.57037159029575,39.22730800572599],[-76.57035770815675,39.22730599932067],[-76.57034383912855,39.22730393170869],[-76.57032997369539,39.22730184429111],[-76.57031610584328,39.22729977397784],[-76.57030222490377,39.22729776126484],[-76.57028832369363,39.22729584485923],[-76.57027439625331,39.22729405266338],[-76.57026044504612,39.22729236036522],[-76.57024647829333,39.22729074907848],[-76.57023249727304,39.22728919899085],[-76.57021850905375,39.22728769031094],[-76.5702045172135,39.22728620593711],[-76.57019052533023,39.22728472876766],[-76.57017653221305,39.22728326420296],[-76.57016253551852,39.22728181673826],[-76.57014853525199,39.22728038547282],[-76.57013453257169,39.22727897041085],[-76.57012052630847,39.22727757334967],[-76.57010651878407,39.227276193397],[-76.57009250768218,39.22727483054431],[-76.57007849415011,39.2272734865974],[-76.57006447582791,39.2272721687538],[-76.57005045143744,39.22727089682607],[-76.57003642103867,39.22726966090575],[-76.57002238819321,39.22726844659345],[-76.57000835298292,39.22726724037783],[-76.56999431896401,39.22726602876018],[-76.5699802873763,39.22726479823346],[-76.56996626177613,39.22726353529899],[-76.56995224226712,39.22726222284231],[-76.56993822876198,39.22726087527563],[-76.56992421765548,39.22725951420437],[-76.56991020416231,39.22725816483283],[-76.56989618582442,39.22725685057215],[-76.56988216145092,39.22725557682279],[-76.56986812744186,39.22725436428929],[-76.56985408009916,39.22725324989012],[-76.56984001937913,39.22725224083133],[-76.56982595143788,39.22725127678326],[-76.56981188710236,39.22725029112804],[-76.56979783603593,39.22724921814429],[-76.56978380555852,39.22724799660589],[-76.56976978479955,39.22724670033681],[-76.56975576770654,39.22724537255231],[-76.56974175430125,39.22724400964923],[-76.56972774807994,39.22724260803741],[-76.56971374906993,39.22724116321292],[-76.56969975960391,39.22723967248211],[-76.56968577970905,39.2272381313411],[-76.56967180938555,39.22723653978991],[-76.56965782038532,39.22723497248965],[-76.56964381392658,39.22723341953612],[-76.56962981589743,39.22723181346593],[-76.5696158521805,39.22723008771633],[-76.56960194634242,39.22722817571622],[-76.56958812542949,39.22722601000638],[-76.56957441301923,39.22722352221417],[-76.5695608130722,39.22722063218487],[-76.5695473184761,39.2272173669158],[-76.5695339323177,39.22721379037358],[-76.56952065419853,39.22720996831357],[-76.56950748488904,39.22720596469394],[-76.56949443466492,39.22720180387338],[-76.56948153670183,39.22719736256704],[-76.56946875242147,39.22719270008474],[-76.56945603844382,39.22718790364303],[-76.56944334790877,39.22718306134615],[-76.56943063395089,39.2271782621994],[-76.56941786142244,39.2271735727313],[-76.56940511465284,39.22716883741661],[-76.56939236206701,39.22716410658306],[-76.56937953566926,39.22715951599875],[-76.56936656283116,39.2271552014147],[-76.5693533920218,39.22715125722349],[-76.56934008999679,39.22714756116417],[-76.56932675283078,39.2271439307312],[-76.56931855794791,39.22714161628696],[-76.56931347660947,39.22714018161764],[-76.56930035504783,39.22713613851551],[-76.56928735770167,39.22713185626075],[-76.56927442947836,39.22712744364532],[-76.56926154227702,39.22712295100972],[-76.56924867147687,39.22711842780641],[-76.56923578897143,39.22711392527661],[-76.56922286782348,39.22710949286432],[-76.56920985299485,39.22710523035384],[-76.56919676908468,39.22710109189573],[-76.56918374603211,39.22709684916927],[-76.56917091607085,39.22709227746526],[-76.56915828621531,39.22708736600013],[-76.56914571253596,39.22708235835657],[-76.56913303824911,39.2270775169863],[-76.56912020601666,39.2270729389629],[-76.56910731761675,39.22706845621439],[-76.56909439529966,39.22706402828742],[-76.56908146129369,39.22705961833164],[-76.56906853898529,39.22705518950107],[-76.56905564944469,39.22705070494109],[-76.56904281373133,39.2270461295987],[-76.56903002016011,39.22704148054579],[-76.56901725468606,39.22703678205188],[-76.56900450912582,39.22703204669777],[-76.56899177760687,39.22702728797358],[-76.56897905195127,39.22702251755938],[-76.56896632628644,39.22701774894534],[-76.56895359242361,39.22701299561301],[-76.56894084450096,39.22700826925102],[-76.56892807432976,39.22700358334096],[-76.5689152737211,39.2269989513644],[-76.56890243912956,39.22699438501843],[-76.56888956004448,39.22698989867693],[-76.56887662827154,39.22698550672218],[-76.56886359810827,39.22698129726259],[-76.56885046604731,39.22697727568992],[-76.56883725785707,39.22697339435758],[-76.56882399696778,39.22696960921338],[-76.56881070914245,39.22696587351159],[-76.56879741898585,39.22696214050203],[-76.56878415108645,39.22695836613694],[-76.56877093120733,39.22695450367044],[-76.5687577347819,39.2269505935474],[-76.56874452431279,39.22694670769226],[-76.56873131385062,39.22694282093489],[-76.56871811629333,39.22693890720006],[-76.56870494683858,39.22693494312345],[-76.56869181953711,39.22693090353485],[-76.5686787461232,39.22692676325561],[-76.56866573134977,39.22692250248607],[-76.56865276720868,39.22691810498289],[-76.56863989089078,39.22691354926395],[-76.56862714423616,39.22690881116218],[-76.56861456445226,39.22690386649327],[-76.56860229568586,39.22689824558073],[-76.56859238722468,39.22689052552092],[-76.56858441043219,39.2268814893169],[-76.56857728471387,39.22687190766657],[-76.56857102012913,39.22686203102344],[-76.56856523698949,39.22685202013214],[-76.56855972330544,39.22684188322125],[-76.56855456009552,39.22683162869569],[-76.56854982723644,39.22682126225366],[-76.56854560457766,39.22681079409747],[-76.56854190951249,39.22680022068786],[-76.56853861688258,39.22678955507656],[-76.56853560144746,39.2267788238265],[-76.5685327425882,39.22676805531927],[-76.56852991621712,39.22675727702276],[-76.56852699825214,39.22674651550423],[-76.56852386574734,39.22673580093816],[-76.56852044219089,39.22672514565416],[-76.56851701297086,39.2267144696313],[-76.56851360356558,39.22670377296323],[-76.56851015477469,39.2266930779518],[-76.56850660623948,39.22668240689452],[-76.56850290105949,39.2266717848041],[-76.56849897888702,39.2266612321764],[-76.56849478050529,39.22665077401566],[-76.56849024787221,39.22664043262782],[-76.56848519919194,39.22663020284055],[-76.56847902175382,39.22662009411128],[-76.56847174497682,39.22661041101112],[-76.56846349073689,39.22660148997836],[-76.56845392935716,39.22659402880482],[-76.5684404442201,39.22659018784457],[-76.56842741454655,39.2265857234172],[-76.56842027864028,39.22657744514549],[-76.56843078135587,39.22656874711343],[-76.56843440425934,39.22655936801681],[-76.56842988010629,39.22654915817114],[-76.56842298312559,39.22653872701648],[-76.56841756822644,39.22652854091831],[-76.56842525404831,39.22652046487503],[-76.56843409761022,39.22651397755782],[-76.56843299934073,39.22650279485733],[-76.56842930132683,39.22649214036226],[-76.56842528642265,39.22648160450537],[-76.56841697717672,39.22647468659827],[-76.56840273210186,39.22647697984356],[-76.5683889725111,39.22647942620328],[-76.56837521741491,39.22648189509738],[-76.56836146683524,39.2264843829228],[-76.56834771963032,39.22648688697306],[-76.56833397465851,39.2264894045416],[-76.56832023309981,39.22649193202965],[-76.56830649265443,39.22649446672639],[-76.56829275218614,39.2264970050246],[-76.56827901286401,39.22649954512694],[-76.56826527239924,39.22650208252116],[-76.56825153080825,39.22650461450495],[-76.56823778810751,39.22650713837606],[-76.56822357551307,39.22650942090979],[-76.56821414534838,39.22651409728979],[-76.56821763032295,39.22652530858989],[-76.56822290122309,39.22653574458408],[-76.56822930036148,39.22654557400069],[-76.56823500096212,39.22655562424028],[-76.56824033023567,39.22656579381791],[-76.56825031689171,39.22658520990503],[-76.56824724074728,39.22658656597108],[-76.56824418401123,39.22658796804811],[-76.5682411455747,39.22658940802511],[-76.56823811855487,39.22659087506737],[-76.56823509953213,39.22659236015456],[-76.56823208278711,39.2265938515555],[-76.56822906605842,39.2265953402541],[-76.56822604246307,39.22659681541563],[-76.5682230085816,39.22659826801981],[-76.5682199610054,39.22659968724472],[-76.56821689284054,39.22660106405722],[-76.56821380068391,39.22660238673467],[-76.56821068111604,39.22660364625668],[-76.56820752724846,39.22660483268938],[-76.56820433682527,39.22660593611586],[-76.5682011041217,39.22660694570574],[-76.5681978257236,39.22660785153791],[-76.56819450502316,39.22660866713645],[-76.56819115571507,39.22660942588065],[-76.56818778125174,39.22661013138623],[-76.56818438276383,39.22661078816131],[-76.56818096139861,39.22661139801162],[-76.5681775206029,39.22661196545376],[-76.56817406151295,39.22661249409499],[-76.56817058642856,39.22661298664612],[-76.56816709649145,39.22661344581373],[-76.56816359398491,39.22661387701084],[-76.56816008006156,39.22661428114249],[-76.56815655816291,39.22661466362601],[-76.56815302943608,39.22661502626716],[-76.56814949616992,39.22661537357823],[-76.56814595950063,39.22661570916663],[-76.56814242173341,39.22661603484224],[-76.56813888515718,39.22661635511749],[-76.56813534975004,39.22661667359537],[-76.56813182012789,39.22661699299524],[-76.56812829742692,39.22661731692434],[-76.56812478278344,39.22661764898999],[-76.56812127733902,39.22661799189871],[-76.56811777525384,39.22661835373606],[-76.56811424756418,39.22661873619702],[-76.56811070135575,39.22661911678814],[-76.56810714369767,39.22661947571834],[-76.56810358168106,39.22661978959344],[-76.5681000223861,39.22662003682087],[-76.56809647289299,39.22662019580793],[-76.56809294144539,39.22662024406558],[-76.56808943280738,39.22662015999257],[-76.5680859563808,39.22661992110409],[-76.56808251808219,39.22661950670397],[-76.56807909895996,39.22661898608248],[-76.56807568478807,39.22661841323395],[-76.5680722732228,39.22661779265361],[-76.56806886772766,39.22661712615587],[-76.56806546711704,39.22661641824014],[-76.56806207138554,39.22661566980722],[-76.56805868166381,39.22661488536523],[-76.56805529794099,39.22661406671561],[-76.56805192134772,39.22661321836642],[-76.56804855071495,39.22661234211495],[-76.56804518833695,39.22661144157274],[-76.56804183188116,39.22661051943354],[-76.56803848480537,39.22660957841242],[-76.56803514592958,39.22660862210816],[-76.56803181523189,39.22660765412371],[-76.56802849270686,39.22660667535999],[-76.56802518064322,39.22660569032919],[-76.56802187786646,39.22660470172936],[-76.56801858435469,39.22660371316354],[-76.5680153024789,39.22660271563267],[-76.56801203234322,39.22660169202231],[-76.56800877394765,39.22660064233254],[-76.56800552728123,39.22659956836483],[-76.56800229118036,39.22659847101563],[-76.56799906563965,39.22659735118579],[-76.56799585063708,39.22659621247824],[-76.56799264501454,39.22659505488883],[-76.56798944760848,39.226593879314],[-76.56798626071323,39.2265926893653],[-76.56798308085989,39.22659148412916],[-76.56797991034283,39.22659026721724],[-76.56797674684573,39.22658903862093],[-76.56797359035221,39.22658780104252],[-76.5679704420149,39.22658655538707],[-76.56796729951209,39.22658530254672],[-76.56796416282734,39.22658404522388],[-76.56796103430425,39.22658277892315],[-76.56795794082049,39.22658146410929],[-76.56795487890177,39.22658010076952],[-76.5679518450135,39.22657869879934],[-76.56794883099401,39.22657726717659],[-76.56794583099254,39.22657581578817],[-76.56794283684208,39.22657435451269],[-76.56793984385531,39.22657289234063],[-76.56793684270708,39.22657143914621],[-76.56793382985725,39.22657000572575],[-76.56793079599176,39.22656860015201],[-76.56792773641776,39.22656723231628],[-76.56792464412629,39.22656591210123],[-76.56792153549536,39.22656461254389],[-76.56791841985563,39.22656332286923],[-76.56791529720701,39.22656204307725],[-76.56791216755508,39.22656077226718],[-76.56790903089431,39.22655951133979],[-76.56790588723022,39.2265582593943],[-76.56790273772079,39.22655701643501],[-76.56789958236621,39.2265557824619],[-76.5678964211663,39.22655455747498],[-76.5678932541212,39.22655334147422],[-76.56789008239443,39.22655213356317],[-76.5678869059805,39.22655093464255],[-76.56788372488488,39.2265497438116],[-76.56788053910218,39.22654856197112],[-76.56787734980132,39.22654738732381],[-76.56787415347524,39.22654622526144],[-76.56787091968958,39.22654512881792],[-76.56786764730271,39.22654409528667],[-76.56786435033253,39.22654310490218],[-76.56786104166622,39.22654213339092],[-76.56785773416912,39.22654116008228],[-76.56785444187551,39.22654016250853],[-76.56785117881974,39.22653911820186],[-76.56784795670907,39.22653800648744],[-76.56784478490152,39.22653681208652],[-76.56784163533382,39.22653557903389],[-76.56783850214424,39.22653431901819],[-76.56783538298917,39.22653303653457],[-76.56783227554688,39.22653173247534],[-76.56782917979537,39.22653041044345],[-76.56782609456016,39.22652907313699],[-76.567823016345,39.22652772414621],[-76.56781994514441,39.22652636437179],[-76.56781687977289,39.22652499831332],[-76.56781381790864,39.22652362686304],[-76.56781075836625,39.22652225452043],[-76.56780770114015,39.22652088218625],[-76.56780465092314,39.22651949996923],[-76.56780161822046,39.22651809439638],[-76.56779859836671,39.22651667085523],[-76.5677955890183,39.226515233841],[-76.56779258435181,39.22651378873688],[-76.56778958317615,39.22651234094325],[-76.56778658083161,39.22651089494675],[-76.56778357381084,39.22650945613923],[-76.56778055861771,39.22650802811088],[-76.56777753289201,39.22650661805919],[-76.56777449198496,39.22650522866945],[-76.56777139147165,39.22650392823719],[-76.56776565233723,39.22650212175864],[-76.56772050270293,39.2263725478181],[-76.56772495006325,39.2263673892247],[-76.56769857008358,39.2262833259803],[-76.56769850223989,39.2262824853039],[-76.56769844595532,39.22628164827321],[-76.56769830734667,39.22628082715329],[-76.5676962251878,39.22628118159714],[-76.56769513978142,39.22628122083662],[-76.5676940681023,39.22628128805081],[-76.56769299754835,39.22628136067382],[-76.56769194167681,39.22628149460379],[-76.56768994816542,39.22628193584881],[-76.56765540114444,39.22614537755545],[-76.56765568668359,39.22614241954921],[-76.56765391589632,39.226140899718],[-76.56765013087079,39.22614113348932],[-76.56764641586342,39.2261412801429],[-76.56764266836335,39.226141437486],[-76.56763903623458,39.22614166731628],[-76.56763567196259,39.22614203325001],[-76.56763288394855,39.22614266973852],[-76.56763433520335,39.22614550262909],[-76.56763468573456,39.22614822787521],[-76.56763491918785,39.22615097070556],[-76.56763511555447,39.2261537179032],[-76.56763532006077,39.22615645972618],[-76.56763546896715,39.2261592031459],[-76.5676357927203,39.22616214177788],[-76.56763446585509,39.22616379612428],[-76.56763065176457,39.22616366767485],[-76.56762715436467,39.22616402411013],[-76.56762365806242,39.22616439045795],[-76.56762016171082,39.2261647649124],[-76.56761666647338,39.22616514657715],[-76.56761317120295,39.22616553364632],[-76.56760967589962,39.22616592611993],[-76.5676061817269,39.22616632310149],[-76.56760268870131,39.22616672188873],[-76.5675991945011,39.22616712337391],[-76.56759570260604,39.22616752666903],[-76.56759220955838,39.22616792905899],[-76.56758867611974,39.2261683078798],[-76.56758504565835,39.22616864400647],[-76.56758153152883,39.22616908505194],[-76.56757853265154,39.22616992523905],[-76.5675784385086,39.22617283260587],[-76.5675783140624,39.22617558132396],[-76.56757826953073,39.22617832943568],[-76.56757838834628,39.22618106914148],[-76.56757867163425,39.22618380585013],[-76.56757907307616,39.22618653849014],[-76.56757957302803,39.22618925978303],[-76.56758016686302,39.22619196881086],[-76.56758111644942,39.22619464401905],[-76.56758311418307,39.22619693215093],[-76.56758643667061,39.22619753260031],[-76.56758999423892,39.22619718539572],[-76.56759322110361,39.22619618210651],[-76.56759673410984,39.22619592571617],[-76.56760119555794,39.22619568002615],[-76.56761485127458,39.22624413818131],[-76.56760814894891,39.2262458880238],[-76.56760147385783,39.22624772984565],[-76.56759478741029,39.22624953469336],[-76.56758805216785,39.22625117451841],[-76.56758122953403,39.22625252126803],[-76.56757432379024,39.22625363260784],[-76.56756739139887,39.22625474565061],[-76.56756043713503,39.22625583699365],[-76.56755346346846,39.22625688142433],[-76.56754647288001,39.22625785192841],[-76.56753947132482,39.22625872150445],[-76.56753246127823,39.22625946403899],[-76.56752544522101,39.22626005251777],[-76.5675184279503,39.22626045993518],[-76.5675114119415,39.22626066017774],[-76.56750438761695,39.22626070455448],[-76.56749734292397,39.226260670488],[-76.56749028248939,39.22626055889616],[-76.56748321211472,39.22626036799873],[-76.5674761352689,39.22626009870926],[-76.5674690565898,39.22625975014412],[-76.56746198302605,39.22625932232883],[-76.56745491805746,39.22625881437553],[-76.56744786515297,39.22625822719771],[-76.56744083126659,39.22625755992026],[-76.56743381987275,39.22625681255598],[-76.56742683677287,39.22625598332473],[-76.56741988543038,39.22625507404078],[-76.56741297051059,39.22625407931668],[-76.56740608406055,39.22625297390135],[-76.56739922257846,39.22625176228573],[-76.56739238134415,39.2262504588649],[-76.56738556029177,39.22624907444802],[-76.56737875355405,39.22624762162432],[-76.56737195989599,39.22624611300014],[-76.56736517693555,39.22624455937605],[-76.56735839995257,39.22624297514715],[-76.56735162772857,39.22624137021751],[-76.56734485554325,39.22623975898214],[-76.56733808333085,39.22623815225015],[-76.56733130522386,39.22623656261084],[-76.56732451998752,39.22623500267061],[-76.56731772407599,39.22623348412642],[-76.56731091510176,39.22623201867956],[-76.5673040907047,39.22623061352768],[-76.56729724983646,39.22622925065129],[-76.56729039719535,39.22622791925831],[-76.56728353630504,39.22622661125476],[-76.56727667070024,39.22622531674514],[-76.56726980392108,39.2262240249331],[-76.56726293949133,39.22622272772465],[-76.5672560821038,39.2262214152285],[-76.56724923297145,39.22622007844141],[-76.56724239910881,39.22621870657983],[-76.56723558172889,39.22621729064047],[-76.56722878436089,39.22621582162854],[-76.56722201170315,39.22621428875205],[-76.56721526377217,39.22621268930873],[-76.56720853590258,39.22621102868607],[-76.56720182690881,39.22620931138355],[-76.5671951390797,39.22620754191351],[-76.5671884700661,39.22620572567199],[-76.5671818186879,39.22620386625772],[-76.56717518722847,39.22620196908386],[-76.56716857219142,39.22620003774055],[-76.56716197586013,39.22619807764094],[-76.56715539705442,39.22619609238382],[-76.56714881725578,39.22619408009925],[-76.56714219173199,39.22619196946086],[-76.56713565061882,39.22618969068775],[-76.56712935064449,39.22618718130349],[-76.56712344509044,39.22618437431505],[-76.56711899450181,39.22618017918788],[-76.56711710099006,39.22617485580814],[-76.56711788292505,39.22616931439908],[-76.56711629648638,39.22616396332696],[-76.567114777432,39.22615857737295],[-76.56711332574545,39.22615315923937],[-76.56711193214544,39.22614771159428],[-76.56711058964483,39.22614224071741],[-76.56710928897343,39.22613674747531],[-76.56710802198597,39.22613123814342],[-76.56710678056481,39.22612571449334],[-76.56710555657033,39.22612018189977],[-76.56710434188474,39.2261146421342],[-76.56710312605222,39.2261091005629],[-76.56710190441838,39.22610356077168],[-76.56710066538034,39.22609802632093],[-76.56709940312548,39.22609250079231],[-76.56709810720908,39.22608698775044],[-76.56709677065497,39.22608149167344],[-76.56709538534007,39.2260760152337],[-76.56709394197209,39.22607056290083],[-76.56709243242234,39.22606513824794],[-76.56709084972034,39.22605974485249],[-76.56708918457382,39.22605438718407],[-76.56708742770148,39.22604906791074],[-76.5670855732854,39.22604379151498],[-76.56708361087526,39.22603856246214],[-76.5670815323534,39.2260333825238],[-76.56707933074375,39.22602825617806],[-76.56707699559047,39.22602318879112],[-76.5670745210922,39.22601818214313],[-76.56707189795659,39.22601324070364],[-76.56706911689696,39.22600836804149],[-76.56706617094279,39.22600356773412],[-76.56706305080183,39.22599884425114],[-76.56705972860834,39.22599420919985],[-76.56705618347257,39.22598966970936],[-76.56705242816666,39.22598522042217],[-76.56704847545716,39.22598085688143],[-76.56704433812709,39.22597657192801],[-76.56704002777394,39.2259723629024],[-76.56703555602822,39.22596822174043],[-76.56703093680353,39.22596414579107],[-76.5670261805667,39.22596012788676],[-76.56702130124796,39.22595616267407],[-76.5670163092976,39.22595224568777],[-76.56701121864579,39.22594837157448],[-76.56700604090641,39.22594453497238],[-76.56700078885163,39.22594073052392],[-76.56699547293721,39.22593695286297],[-76.56699010825137,39.22593319664057],[-76.56698470409191,39.22592945648631],[-76.56697927554707,39.22592572705112],[-76.56697383307261,39.22592200296896],[-76.56696838943517,39.22591827978307],[-76.56696295741224,39.22591455123511],[-76.56695754861776,39.2259108119632],[-76.56695217581824,39.22590705751064],[-76.56694685062769,39.22590328251556],[-76.56694158466546,39.22589948071539],[-76.5669363930143,39.22589564766194],[-76.56693128497194,39.22589177798482],[-76.56692627447406,39.22588786543002],[-76.56692136848565,39.22588390732092],[-76.56691649850869,39.22587993132893],[-76.56691163784652,39.22587594726405],[-76.56690678532998,39.22587195692356],[-76.56690193979554,39.225867961204],[-76.56689710007963,39.22586396100178],[-76.56689226502411,39.22585995631264],[-76.56688743345991,39.22585594893388],[-76.56688260422347,39.22585193976195],[-76.56687777615664,39.22584792879256],[-76.56687294924843,39.22584391782723],[-76.56686812233529,39.22583990776245],[-76.56686329310102,39.22583589858972],[-76.56685846154005,39.22583189120972],[-76.56685362648346,39.22582788741974],[-76.56684878676745,39.22582388811624],[-76.56684394123411,39.225819893295],[-76.56683908756163,39.22581590384814],[-76.56683422690264,39.22581192068075],[-76.56682935808814,39.22580794559006],[-76.56682447763819,39.22580397946403],[-76.56681958671652,39.22580002140616],[-76.56681468414844,39.2257960741144],[-76.5668097676179,39.22579213758026],[-76.56680483711924,39.22578821270449],[-76.56679989148347,39.22578430128429],[-76.56679492955796,39.22578040241468],[-76.56678994667736,39.22577652148306],[-76.56678476590439,39.22577280646488],[-76.56677935232577,39.2257692851554],[-76.56677379324387,39.2257658849137],[-76.56676817479183,39.22576253489621],[-76.5667625831304,39.2257591597555],[-76.56675710554545,39.22575568955308],[-76.56675182819212,39.22575204984233],[-76.56674672079514,39.22574826753491],[-76.56674166229696,39.22574444307111],[-76.56673664570513,39.22574058363144],[-76.56673166403813,39.22573669459478],[-76.56672671147236,39.22573278134425],[-76.56672177869923,39.22572885105181],[-76.56671685989525,39.22572490910061],[-76.56671194808433,39.22572095996879],[-76.56670703511038,39.22571701173323],[-76.56670211631348,39.22571306888062],[-76.5666971823905,39.22570913768207],[-76.5666922275179,39.22570522352081],[-76.56668724355059,39.22570133267215],[-76.56668222815033,39.22569746873057],[-76.56667719879303,39.22569361464584],[-76.56667216244928,39.2256897668405],[-76.56666711796092,39.22568592531034],[-76.56666206764959,39.22568208916312],[-76.5666570103628,39.22567825749383],[-76.5666519495803,39.22567442941454],[-76.56664688298585,39.22567060491668],[-76.5666418140593,39.2256667831123],[-76.56663674164251,39.22566296399714],[-76.56663166690456,39.225659145774],[-76.5666265910036,39.22565532844707],[-76.56662151509767,39.2256515120207],[-76.5666164403559,39.22564769469763],[-76.56661136561465,39.22564387737432],[-76.56660629320663,39.22564005735709],[-76.56660122312081,39.22563623644739],[-76.56659614372684,39.22563242270935],[-76.56659104572148,39.22562862241406],[-76.56658593375352,39.22562483287631],[-76.56658081247743,39.22562105051016],[-76.56657568771105,39.22561727083328],[-76.56657056410886,39.22561349025966],[-76.56656544631964,39.22560970610413],[-76.5665603390088,39.22560591297933],[-76.5665552468197,39.22560210910081],[-76.56655017557577,39.22559828908533],[-76.56654512876229,39.22559445114432],[-76.56654011220276,39.22559058989457],[-76.566535130546,39.22558670265092],[-76.56653018961549,39.22558278403022],[-76.56652531499924,39.22557881611132],[-76.56652050785529,39.22557479889861],[-76.56651575307902,39.22557074044327],[-76.56651103901797,39.22556665241243],[-76.56650635172007,39.2255625437623],[-76.56650167954389,39.22555842435848],[-76.56649700737375,39.22555430405376],[-76.56649232241018,39.22555019270933],[-76.56648761301169,39.22554610019083],[-76.56648286522629,39.2255420354545],[-76.56647808138105,39.22553799670732],[-76.56647330451793,39.22553395258108],[-76.56646853115713,39.22552990396373],[-76.56646375779687,39.22552585534613],[-76.56645898095186,39.22552180851704],[-76.56645419596229,39.22551776796308],[-76.56644939817372,39.22551373727026],[-76.56644458525905,39.22550971823144],[-76.56643975256387,39.22550571443259],[-76.5664348954283,39.22550173036041],[-76.56643001152521,39.22549776780784],[-76.56642509388396,39.22549383035221],[-76.56642014131909,39.22548992249308],[-76.56641512708441,39.22548606214718],[-76.56641001741929,39.22548227801472],[-76.56640483095224,39.2254785539505],[-76.5663995921131,39.22547487202915],[-76.56639432069943,39.22547121430826],[-76.56638903997212,39.22546756465974],[-76.56638377205033,39.2254639042489],[-76.56637853788972,39.22546021513767],[-76.56637336074563,39.22545648209869],[-76.56636824645251,39.22545269794723],[-76.56636317173307,39.22544888151373],[-76.56635812611495,39.22544504086652],[-76.56635310028386,39.2254411840782],[-76.56634808493122,39.22543731832057],[-76.56634307074268,39.22543345166621],[-76.56633804724044,39.22542959308425],[-76.56633300628489,39.22542574794922],[-76.56632794554885,39.22542191805418],[-76.56632287201387,39.22541809802017],[-76.56631778918168,39.22541428335624],[-76.56631270633902,39.22541047049364],[-76.56630762699871,39.22540665313979],[-76.56630255928384,39.22540282862253],[-76.56629750785983,39.2253989915543],[-76.56629247854457,39.22539513745271],[-76.56628747947217,39.22539126184402],[-76.56628251645523,39.22538736114649],[-76.56627759416446,39.22538342907202],[-76.56627277541185,39.22537942081374],[-76.56626813231257,39.22537528529375],[-76.56626359392047,39.22537107179275],[-76.56625908926762,39.22536683319448],[-76.56625454622224,39.22536262327908],[-76.56624989381636,39.22535849493015],[-76.56624505877674,39.2253544992214],[-76.56624010041349,39.22535059583689],[-76.56623511297207,39.22534671306263],[-76.56623009877407,39.22534285000642],[-76.56622506247388,39.22533900308231],[-76.56622000755682,39.2253351705016],[-76.56621493635549,39.22533134957065],[-76.5662098535133,39.22532753850502],[-76.56620476021031,39.22532373370593],[-76.56619966225358,39.22531993249253],[-76.56619456080655,39.22531613396833],[-76.5661894605292,39.22531233364666],[-76.56618436489575,39.22530853154039],[-76.56617927625535,39.22530472225354],[-76.56617419808239,39.22530090579889],[-76.5661691350311,39.22529707859054],[-76.5661640882762,39.22529323793055],[-76.56615906362451,39.22528938113801],[-76.56615406224519,39.22528550641567],[-76.56614910390829,39.22528160032498],[-76.56614421655102,39.22527763954895],[-76.56613938504667,39.22527363574175],[-76.56613459309393,39.22526960325565],[-76.56612982092827,39.22526555462849],[-76.56612505109038,39.22526150420813],[-76.5661202672954,39.22525746364461],[-76.56611544975689,39.22525344907866],[-76.56611058335906,39.22524947036307],[-76.56610571349853,39.2252454898329],[-76.56610087276133,39.22524148148607],[-76.56609605533507,39.22523744890417],[-76.56609125422715,39.22523339926759],[-76.56608646709935,39.22522933617081],[-76.56608168697016,39.2252252649927],[-76.56607690916876,39.22522119202142],[-76.56607212671896,39.22521712173508],[-76.56606733611365,39.22521305952541],[-76.56606253269283,39.22520900987907],[-76.56605770831692,39.22520497817062],[-76.56605286063115,39.22520097069681],[-76.56604798266507,39.225196991035],[-76.56604306858971,39.22519304546907],[-76.56603811490326,39.22518913848997],[-76.56603311461861,39.22518527637726],[-76.56602806423406,39.225181463622],[-76.56602295677347,39.22517770470216],[-76.566017786408,39.22517400590169],[-76.56601255079386,39.22517037171583],[-76.56600723830066,39.22516681020851],[-76.56600177434845,39.22516339676949],[-76.5659961403143,39.225160146643],[-76.56599035833388,39.22515703829225],[-76.56598445170104,39.22515405018466],[-76.56597844370962,39.2251511607876],[-76.56597235534838,39.22514834675849],[-76.56596620990554,39.22514558746546],[-76.56596003067497,39.22514286137602],[-76.56595383864538,39.22514014514744],[-76.56594765709956,39.22513741904876],[-76.56594150818988,39.22513465884086],[-76.56593541636275,39.22513184389616],[-76.56592940143771,39.22512895266937],[-76.56592346693316,39.2251259779673],[-76.56591757328694,39.22512295027],[-76.56591170531189,39.22511989114012],[-76.56590584549897,39.22511682303233],[-76.56589997751387,39.22511376570338],[-76.56589408501127,39.22511074071153],[-76.56588815164575,39.22510776961489],[-76.5658821599084,39.2251048748683],[-76.56587606894134,39.22510210946655],[-76.56586985070271,39.22509951384097],[-76.56586355891586,39.22509701432634],[-76.5658572519587,39.22509453367161],[-76.56585098821463,39.22509199372497],[-76.56584482490339,39.22508931723111],[-76.5658387480014,39.22508652485604],[-76.56583270734188,39.22508367676646],[-76.56582669704648,39.22508078735301],[-76.56582070544059,39.2250778718858],[-76.56581472202446,39.22507494293692],[-76.56580873975581,39.22507201579351],[-76.5658027469713,39.22506910392415],[-76.5657967343236,39.22506622080591],[-76.56579069360697,39.22506338262247],[-76.56578461316896,39.22506060104086],[-76.56577848364569,39.22505789224044],[-76.56577229685345,39.22505526880177],[-76.56576601889938,39.22505278104316],[-76.56575964626504,39.22505043615777],[-76.56575320000533,39.22504819999392],[-76.56574670348019,39.22504604020991],[-76.56574017773889,39.22504392355489],[-76.56573364382534,39.22504181767857],[-76.56572712394683,39.22503968933437],[-76.56572063914732,39.22503750617204],[-76.56571420344503,39.22503524842639],[-76.56570778178333,39.22503296731205],[-76.56570136831678,39.22503067181525],[-76.56569495953806,39.22502836732764],[-76.56568855543621,39.22502605565079],[-76.56568215250388,39.2250237421763],[-76.56567574840282,39.22502143049869],[-76.565669341964,39.22501912241523],[-76.56566293200176,39.22501682242535],[-76.5656565138562,39.22501453501578],[-76.56565008751082,39.22501226288874],[-76.56564364946378,39.22501001053517],[-76.56563719737687,39.22500778154954],[-76.5656307277208,39.22500558492659],[-76.56562424286119,39.22500341256802],[-76.56561774862719,39.22500125819001],[-76.5656112462098,39.22499911639224],[-76.56560474144911,39.22499697908934],[-76.5655982378524,39.22499484088958],[-76.56559173894351,39.22499269369902],[-76.56558524938788,39.22499053213028],[-76.56557877154022,39.22498834988659],[-76.56557231124053,39.22498613888257],[-76.56556587084359,39.22498389282143],[-76.56555945385117,39.22498160721231],[-76.56555305794168,39.22497928294741],[-76.56554668191838,39.22497692632766],[-76.56554032228505,39.22497454094336],[-76.56553397552337,39.22497213398765],[-76.56552764045864,39.2249697081585],[-76.5655213124145,39.22496727064492],[-76.56551499021629,39.22496482414478],[-76.56550867150385,39.22496237585568],[-76.56550236330825,39.22495991229192],[-76.56549616386202,39.2249572779824],[-76.56548998543809,39.22495461492543],[-76.56548368655814,39.22495214328816],[-76.56547727423663,39.22494985228712],[-76.56547083618422,39.2249476026263],[-76.56546437825737,39.22494538351808],[-76.5654579086233,39.22494318508402],[-76.56545143198053,39.22494099653223],[-76.56544495417458,39.22493880887657],[-76.56543848222006,39.22493661133363],[-76.56543202312615,39.22493439402082],[-76.56542558159123,39.22493214614619],[-76.56541916111729,39.22492986321877],[-76.56541273607203,39.22492757036553],[-76.56540631225693,39.22492526580633],[-76.56539990481531,39.22492293518483],[-76.56539352423599,39.22492056773051],[-76.56538718680387,39.2249181517935],[-76.56538090418243,39.22491567390543],[-76.56537004862568,39.22490934176351],[-76.56535052583105,39.22490111200946],[-76.56532363046553,39.22489024448949],[-76.56530036272427,39.22488082083652],[-76.56526278653649,39.22486818875043],[-76.56524602674,39.22486170501464],[-76.56522777653622,39.22485483112267],[-76.56520823544214,39.2248467580125],[-76.56517651046715,39.22483311077782],[-76.5651557461555,39.22482470344179],[-76.56513463766234,39.2248161443967],[-76.56511466454309,39.22480808318168],[-76.56509000397453,39.22479841832152],[-76.56507027141846,39.22479097862717],[-76.56504986332703,39.22478322025252],[-76.56502876115914,39.22477401084906],[-76.56500802796187,39.22476450014749],[-76.56498678198007,39.22475589372537],[-76.56495808229744,39.22474579860712],[-76.56493734171643,39.22473862989143],[-76.56491580577919,39.2247310411628],[-76.56489353663503,39.22472233995205],[-76.56486825562615,39.22471301323923],[-76.56484324306608,39.22470372534899],[-76.56481183662412,39.224691791577],[-76.56478456272771,39.22468111169229],[-76.56476415324015,39.22467302447792],[-76.56474294698506,39.22466474784377],[-76.56472214044419,39.22465625560039],[-76.56470033110531,39.2246473668943],[-76.56467974583192,39.2246390538183],[-76.56465998839097,39.2246305870737],[-76.56463811619703,39.22462269708694],[-76.5646148020852,39.22461557641719],[-76.56459263583073,39.22460672780268],[-76.56457316600249,39.2245978207285],[-76.56454892154377,39.2245877447404],[-76.56452556276589,39.22457922407612],[-76.56450059003531,39.22457100998883],[-76.56447452175999,39.22456184961565],[-76.56445413009563,39.22455313366902],[-76.56443000132187,39.22454308330726],[-76.56440915382491,39.22453504935253],[-76.56440598322878,39.22453387017518],[-76.56434278822579,39.22451023246833],[-76.56432881016632,39.2245130279447],[-76.56431231308534,39.22452207628573],[-76.56429395494672,39.22453225449892],[-76.56427570938486,39.22454239259213],[-76.56427005454063,39.22454519644194],[-76.564257637811,39.22455135310913],[-76.56423167859975,39.22456235703066],[-76.56421307638787,39.22457040938667],[-76.56417680630713,39.22458768406854],[-76.56416356177043,39.22459342239256],[-76.56414453473097,39.22460464750623],[-76.5641333952359,39.22461705130371],[-76.56413096490054,39.22462488986686],[-76.56411821703382,39.224631406502],[-76.5641001686256,39.22464054813741],[-76.56406420335675,39.22466399965898],[-76.56406396660923,39.22467087082448],[-76.5640674756618,39.22468577283829],[-76.56407978551215,39.22472249738983],[-76.56409818591857,39.22477732049696],[-76.56411485539626,39.2248339630512],[-76.56412353147188,39.22486233558798],[-76.56412476490041,39.22487930724554],[-76.56412548934463,39.22489410883727],[-76.5641266278304,39.22491730272464],[-76.56412868230167,39.22494032075853],[-76.56413652807611,39.22498302430873],[-76.56413710412546,39.22499502212411],[-76.56413499250797,39.22500093330202],[-76.56412074126207,39.22501840593541],[-76.56410026086085,39.22504771058648],[-76.56407119842919,39.22508500569728],[-76.56404118657316,39.22512301339341],[-76.56401148502709,39.2251617806903],[-76.56397867978738,39.22520392968406],[-76.56393855493984,39.22525348109948],[-76.56390676270314,39.22529397550174],[-76.56387726780613,39.22533339119138],[-76.56384565720961,39.22537409252978],[-76.56380623552725,39.22542169722548],[-76.56376546572642,39.22546873931456],[-76.56372931833434,39.22551364030473],[-76.56370399778395,39.2255480451186],[-76.56366882755373,39.22559203813349],[-76.56363579889029,39.22563090285768],[-76.5635954961499,39.22568727328824],[-76.56354547528234,39.22575122365241],[-76.56351033814363,39.22579771370046],[-76.56347930696239,39.22583621738909],[-76.56344766253888,39.22587669599805],[-76.56341202865306,39.22592239778781],[-76.56336351955358,39.22598321357957],[-76.56331041747416,39.22605114733156],[-76.5632471947895,39.22613220017495],[-76.56318518964862,39.22620921932256],[-76.56309342373166,39.22631713336493],[-76.56308760946257,39.22632925241878],[-76.56306081677324,39.22636189058546],[-76.56299801937952,39.22643867067735],[-76.56294044414376,39.22651390192496],[-76.56288581915231,39.22658809562419],[-76.56281449036391,39.22668126774086],[-76.56274347563807,39.22677155488726],[-76.56267378533506,39.22685249053502],[-76.56259354363394,39.22693915990928],[-76.56254513947465,39.22700057385885],[-76.56247619070567,39.227087022213],[-76.56245248656684,39.22711622086609],[-76.56241403614833,39.22716358458793],[-76.56237004342607,39.2272226836943],[-76.56233048976513,39.2272821650528],[-76.56230055900922,39.22732512597173],[-76.56228335400276,39.22735023046579],[-76.56226834523652,39.22737076088706],[-76.5622534002261,39.22738996559792],[-76.56224331497772,39.22740369368265],[-76.56223237423309,39.22741585752627],[-76.56221821044741,39.22743157552987],[-76.56220699824063,39.22744324833496],[-76.56219791952776,39.22745507862636],[-76.56219269809883,39.22746605225228],[-76.56219147093381,39.22747668136654],[-76.56219410647891,39.22750548368537],[-76.562203352186,39.22754677383314],[-76.56221477269715,39.2275781437098],[-76.56222384306277,39.22760861755245],[-76.56223294022173,39.22764075793445],[-76.5622386790423,39.22766383386584],[-76.56224200988336,39.22768693954927],[-76.56224363030385,39.22770982987249],[-76.56224270748467,39.22773064342332],[-76.56223939432206,39.22775275779073],[-76.56223894321595,39.22777220031408],[-76.56224028446442,39.22779209450694],[-76.56224122146934,39.22780730044115],[-76.56223772656945,39.22782507868316],[-76.56223741012353,39.22784033759209],[-76.56224249790696,39.22785799381168],[-76.56225278022143,39.22787017015163],[-76.5622649291815,39.22788126891498],[-76.56227759163689,39.22789680682705],[-76.56228641252532,39.22791403018036],[-76.56229352838029,39.2279388056069],[-76.56229658693006,39.22796024563279],[-76.56230678193907,39.22797794611653],[-76.56231867372891,39.22799413151181],[-76.56232903622181,39.22801059134523],[-76.56233921817173,39.2280275945746],[-76.56235024535943,39.22804538553279],[-76.56235862108488,39.22806212079953],[-76.5623666474029,39.22808293258695],[-76.56237238123249,39.22810739478809],[-76.56237846897305,39.22812667522915],[-76.56238532900888,39.22814598827488],[-76.56239306373429,39.2281671358639],[-76.5623989728637,39.22818476811378],[-76.56240540042936,39.22820491186489],[-76.56241157859988,39.22822267663064],[-76.56241925092878,39.22824192424306],[-76.56242680650183,39.22826057330274],[-76.56243305467517,39.22827731684529],[-76.56243963558086,39.22829550917879],[-76.56244319708237,39.22831333805127],[-76.56244492390243,39.22833325889771],[-76.56244970737649,39.22835144633117],[-76.56245449369611,39.22836597751543],[-76.56245853255338,39.22838415226394],[-76.56246481194177,39.2284020354052],[-76.56246992649839,39.22841649034523],[-76.56247886502656,39.22844095367549],[-76.56248304718167,39.22845542225392],[-76.56248502325542,39.22848601825162],[-76.56248963152835,39.22849599083166],[-76.56249770525862,39.22850348387524],[-76.56250363991082,39.22851717080399],[-76.56250606625461,39.22853690869536],[-76.56251119775746,39.22855143575845],[-76.56251357552974,39.22856439601218],[-76.56251313413102,39.22857757545636],[-76.56251642941311,39.22858936901879],[-76.56252431388437,39.2286016408847],[-76.56252939772693,39.22861694964463],[-76.56253040691639,39.22863135414913],[-76.56253151222671,39.22864688768706],[-76.56253253184033,39.22866129223026],[-76.56253378582284,39.22867600481235],[-76.56253988821959,39.22868878618073],[-76.56254201409584,39.22870014931537],[-76.56254951960798,39.22871152259154],[-76.56255507318834,39.22872916701714],[-76.56256153640774,39.22873714767987],[-76.5625653490164,39.22874919268396],[-76.56257294342088,39.22876850935267],[-76.56257859022934,39.22878418232061],[-76.56258411884914,39.22879854871924],[-76.56258805943676,39.2288150125167],[-76.56258988530014,39.22882807700292],[-76.5625927625771,39.22884681490573],[-76.56260001704536,39.22886002663178],[-76.56260621005036,39.22887652854779],[-76.56260968327994,39.228897229665],[-76.56261524769516,39.22891424808621],[-76.56262105719694,39.22892927129575],[-76.56262732071151,39.22894560953144],[-76.56263286196604,39.228961312729],[-76.56263891285944,39.22898020567946],[-76.56264453593006,39.2289940968154],[-76.5626502993277,39.22901209422103],[-76.56265520564129,39.22902821751632],[-76.56265785498854,39.22904616998928],[-76.56266210944065,39.22906508326765],[-76.56266374110116,39.22907639861765],[-76.56266628721434,39.22909174475413],[-76.56267103527661,39.22910479310276],[-76.56267625714942,39.22912026721065],[-76.56267801574846,39.22913617069653],[-76.5626836138353,39.22915167683208],[-76.56269730198488,39.22918351088859],[-76.56270243851378,39.22919610759151],[-76.5627064576437,39.22921581087389],[-76.56271099101635,39.22923175171999],[-76.5627171475499,39.22924835528028],[-76.56272294787352,39.22926506470571],[-76.56272762004197,39.22927953239496],[-76.56273291464881,39.22929580035599],[-76.56273875804578,39.22931115877364],[-76.56274554963424,39.22932657567068],[-76.5627506534049,39.22934167370974],[-76.56275509627224,39.22935914914226],[-76.56275922592484,39.22937576676775],[-76.56276419032513,39.22939337385459],[-76.56276790581074,39.22940747226195],[-76.56277241780992,39.22942406698998],[-76.56277677105993,39.2294399224884],[-76.56278140782275,39.22945468910115],[-76.56278658408591,39.22946986667651],[-76.56279161290402,39.22948340969089],[-76.56279877788604,39.22950703226172],[-76.56280346687139,39.22952234764169],[-76.56280834843133,39.22953911669372],[-76.56281341060695,39.22955457938918],[-76.56281879797177,39.22957008473136],[-76.56282411531222,39.2295875580125],[-76.56282881456129,39.22960365350308],[-76.56283360868649,39.22962296242209],[-76.56283859540484,39.22964052454868],[-76.5628436466436,39.22965720145046],[-76.5628513593246,39.2296842355016],[-76.56285668560679,39.22970101161174],[-76.56286153348499,39.22971629515217],[-76.56286706527648,39.22973298915552],[-76.56287256168066,39.22975016404213],[-76.56287706564373,39.2297650616687],[-76.56288153051584,39.22977953668454],[-76.56288604268109,39.22979385514084],[-76.56289013709471,39.2298071757808],[-76.56289429433899,39.22982044981399],[-76.56289826309714,39.22983518060391],[-76.56289998042713,39.22984425332982],[-76.56292629377805,39.2299245106494],[-76.56294592150186,39.22999564791182],[-76.56296404362834,39.23005737544176],[-76.56297048002796,39.23008291123975],[-76.56297594381672,39.23009861953176],[-76.56297717233042,39.23010544659795],[-76.56297474096048,39.23011453089835],[-76.56296986690035,39.23012230808272],[-76.56296246838504,39.23013190084334],[-76.56294586488684,39.23015517367233],[-76.56291377351334,39.23020637149121],[-76.56285921460649,39.23029363204235],[-76.56281538686817,39.23035897517569],[-76.56278247553925,39.23040298800053],[-76.56275130044277,39.23044660283431],[-76.56273333803,39.23046389120604],[-76.5627275197253,39.23046625749271],[-76.56271425451405,39.23046951392833],[-76.56270020682541,39.23047137844772],[-76.56268821264362,39.23047587187989],[-76.56267968487954,39.23048188072354],[-76.56267271641741,39.23048651358316],[-76.56265580264134,39.23049338024725],[-76.56261484678909,39.23050648078222],[-76.56254634919019,39.23052029386331],[-76.56248572420587,39.23052784611799],[-76.56243803400214,39.2305350186918],[-76.56237797943875,39.23054792093542],[-76.56228667673176,39.23056925950873],[-76.56220484703552,39.23059038653135],[-76.56209594911243,39.23061186830797],[-76.56199394495708,39.23063350181793],[-76.56190914150726,39.23064851386691],[-76.56181635790452,39.23066485713903],[-76.56169825873729,39.23068206513648],[-76.56161379925945,39.23069274551536],[-76.56154209361732,39.23070534349094],[-76.56143960944509,39.23072926180155],[-76.56130850819474,39.23076519754013],[-76.56121739595828,39.23079047599677],[-76.56101814213484,39.23083467617642],[-76.56090951074266,39.230858636791],[-76.56076405122487,39.23088774976398],[-76.56063805569181,39.23091098667911],[-76.56049611191099,39.23093735069562],[-76.56038964121103,39.23096115407774],[-76.56031788127773,39.2309755193299],[-76.56026517434441,39.23098306767108],[-76.56024486485714,39.23098760896984],[-76.56022164388122,39.23099211053163],[-76.56016870238651,39.23101022227318],[-76.56013671278744,39.23102310782829],[-76.560100257697,39.23103926627986],[-76.56008119235422,39.23105329920512],[-76.5600710904335,39.2310656407331],[-76.56006614690442,39.23107952030566],[-76.56006435548083,39.23109572939355],[-76.56005945670442,39.23111154490496],[-76.56005351493648,39.23112970033066],[-76.56004882611272,39.23114639848991],[-76.56004905001089,39.23116260071871],[-76.56004913737966,39.2311838269742],[-76.56005059830954,39.23120394411584],[-76.56005260931313,39.23122687734889],[-76.56005891829231,39.23124964743629],[-76.56006390444091,39.23126141496937],[-76.5600780230162,39.23130328829529],[-76.5600870088625,39.23132826541033],[-76.56009696558517,39.23135413072684],[-76.56011106748549,39.23138636386171],[-76.56012411733005,39.23141623301427],[-76.56013720300929,39.23144424579649],[-76.56014983565362,39.23147135339926],[-76.56016121377905,39.2314975555218],[-76.56017224558479,39.23152263938091],[-76.56018262390626,39.2315477649283],[-76.56019196700643,39.23157304243014],[-76.56020189690332,39.23160007143996],[-76.5602163238522,39.23163612597563],[-76.56022548427617,39.23165836356583],[-76.5602365480791,39.23168128116721],[-76.56024638030475,39.23170220613702],[-76.56025595493531,39.23172432997666],[-76.56026504496306,39.23174783919742],[-76.56027204195841,39.23176950028753],[-76.56027670210959,39.23179389549071],[-76.56028103790734,39.23181886057143],[-76.56028756783746,39.2318488007591],[-76.56029501871838,39.23187516200351],[-76.56030989142988,39.23190882662986],[-76.5589431297836,39.23216026196598],[-76.55890580158291,39.23228344445429],[-76.55885984721095,39.23244308860906],[-76.55879315944266,39.23266921325692],[-76.55869818688281,39.23299077247439],[-76.55863426726124,39.23321170992283],[-76.5585811106795,39.23338507322001]]]],"type":"MultiPolygon"} +},{ + "id": 1108954443, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000138, + "geom:area_square_m":1346052.133106, + "geom:bbox":"-122.418578978,37.769053453,-122.39497452,37.7824449618", + "geom:latitude":37.774907, + "geom:longitude":-122.407374, + "iso:country":"US", + "lbl:latitude":37.777177, + "lbl:longitude":-122.401477, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "West Soma" + ], + "name:eng_x_variant":[ + "W Soma", + "W SoMa", + "West South Of Market" + ], + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865939, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"e03e0f52cf99416c1647823e2a5fb873", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":1108954443, + "neighbourhood_id":85865939, + "region_id":85688637 + } + ], + "wof:id":1108954443, + "wof:lang":[ + "eng" + ], + "wof:lastmodified":1566623953, + "wof:name":"West Soma", + "wof:parent_id":85865939, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41857897799072, + 37.76905345300008, + -122.3949745201391, + 37.78244496180918 +], + "geometry": {"coordinates":[[[[-122.41857897799072,37.77289161646141],[-122.41793737239027,37.77098408054646],[-122.41766044301804,37.77045054212438],[-122.41775319299988,37.76981507800006],[-122.41557701499994,37.76959116000007],[-122.41338523799993,37.76950200400007],[-122.41093108799993,37.76941119100006],[-122.41087336999995,37.76932059800005],[-122.41083123799991,37.76923173300007],[-122.41081379399994,37.76905345300008],[-122.40845217799995,37.76916314500004],[-122.40814313899993,37.76924605200011],[-122.40843631999988,37.76931803300005],[-122.40973588899996,37.77034851600006],[-122.40474849299991,37.77428104000009],[-122.4032050809999,37.77305110100008],[-122.4016566799999,37.77181712500006],[-122.3949745201391,37.77709463943072],[-122.40170325776246,37.78244496180918],[-122.40395110838752,37.78067358546855],[-122.40186526125963,37.77904865078447],[-122.40630190861735,37.77552778238551],[-122.4109658389481,37.77922081790359],[-122.41802597515044,37.77358421849926],[-122.41849497374116,37.77315330136606],[-122.41857897799072,37.77289161646141]]]],"type":"MultiPolygon"} +},{ + "id": 1360667265, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000139, + "geom:area_square_m":1304957.893427, + "geom:bbox":"-73.9962406519,40.7674110048,-73.9759732772,40.781409", + "geom:latitude":40.774385, + "geom:longitude":-73.985251, + "iso:country":"US", + "lbl:latitude":40.774397, + "lbl:longitude":-73.985248, + "lbl:max_zoom":18.0, + "mps:latitude":40.774397, + "mps:longitude":-73.985248, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Lincoln Square" + ], + "name:eng_x_preferred":[ + "Lincoln Square" + ], + "name:eng_x_variant":[ + "Lincoln Sq", + "San Juan Hill" + ], + "name:fra_x_preferred":[ + "Lincoln Square" + ], + "name:hun_x_preferred":[ + "Lincoln Square" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30f3\u30ab\u30fc\u30f3\u30fb\u30b9\u30af\u30a8\u30a2" + ], + "name:nld_x_preferred":[ + "Lincoln Square" + ], + "name:por_x_preferred":[ + "Lincoln Square" + ], + "name:zho_x_preferred":[ + "\u6797\u80af\u5ee3\u5834" + ], + "name:zho_x_variant":[ + "Charlottesville" + ], + "src:geom":"whosonfirst", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wd:wordcount":26, + "wof:belongsto":[ + 85853285, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "gp:id":23511890, + "qs_pg:id":890620, + "wd:id":"Q1139313" + }, + "wof:country":"US", + "wof:geomhash":"99e0e72d992a802090273f8d8d89efe8", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":1360667265, + "neighbourhood_id":85853285, + "region_id":85688543 + } + ], + "wof:id":1360667265, + "wof:lang":[ + "eng" + ], + "wof:lastmodified":1566625476, + "wof:name":"Lincoln Square", + "wof:parent_id":85853285, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865685 + ], + "wof:tags":[], + "zs:blockids":[ + 340170158012007, + 340170158012006, + 340170152012032, + 340170152012033, + 340170152012034 + ], + "zs:housing10":0, + "zs:pop10":0 +}, + "bbox": [ + -73.99624065189892, + 40.76741100483427, + -73.97597327721863, + 40.78140900000022 +], + "geometry": {"coordinates":[[[-73.98814000000014,40.78140900000022],[-73.97597327721863,40.77623954591348],[-73.98143901556422,40.76876258414195],[-73.9815487527886,40.7685590292784],[-73.98156533590191,40.7683070847208],[-73.98175441806094,40.76839972773867],[-73.98203857354812,40.76838782301206],[-73.98226824820435,40.76829862188325],[-73.98238479751805,40.76809721308691],[-73.9823209197466,40.76789446179218],[-73.98215553284577,40.76775620447476],[-73.98238873834039,40.76741100483427],[-73.99365035365902,40.77214557163436],[-73.99415893763998,40.77249300913782],[-73.99383108203094,40.77293178785091],[-73.99389125243705,40.77295519487672],[-73.99396258551459,40.7729446539089],[-73.99401262480508,40.77288284663189],[-73.9941220580824,40.77292405902601],[-73.99413665258859,40.77290187017439],[-73.99430134239115,40.77297002866391],[-73.99428153513445,40.77299380206933],[-73.99437655275108,40.77303955110149],[-73.994294029824,40.77315624399205],[-73.9950232758608,40.77348119657636],[-73.99508939189289,40.77338847503913],[-73.99501396371676,40.77335803542691],[-73.99505028469926,40.77329715318996],[-73.99624065189892,40.77378979139769],[-73.99619583747099,40.77385235618404],[-73.99609880736975,40.77395180529908],[-73.99617945997389,40.77398695435157],[-73.99609524522644,40.77408618643776],[-73.99557226516117,40.7738707313943],[-73.99401742413596,40.77321375261053],[-73.99393587681134,40.77317951258621],[-73.99386194292889,40.77326953169884],[-73.99382239352721,40.77338175862288],[-73.9937670193185,40.77348398122484],[-73.99369846374429,40.77356214105259],[-73.99335832646875,40.77392688832796],[-73.99262266386557,40.77497405603711],[-73.99257784276612,40.77495601635942],[-73.99252774395156,40.77500211043983],[-73.99246974581534,40.77502415955176],[-73.99240383719189,40.77501814039066],[-73.99226708903538,40.77511603385879],[-73.99217809026365,40.77527929389717],[-73.99205908493734,40.77549759819252],[-73.99212537239494,40.77550907505339],[-73.992226867797,40.77548221102612],[-73.99232934660881,40.77546890095852],[-73.99236175680113,40.77550189976664],[-73.99238604296028,40.77555718042463],[-73.99208768471273,40.77598397082137],[-73.99092717414975,40.77756687876324],[-73.99039616003671,40.7775850656792],[-73.98946126750647,40.77887512458442],[-73.98917577843805,40.77928752401578],[-73.98886861740007,40.77969292291161],[-73.98887187449979,40.77971373825301],[-73.98921902288058,40.7796978952094],[-73.98927785904425,40.77972343927104],[-73.98940905418014,40.77973770647196],[-73.98949861492704,40.77972504438976],[-73.98959649338823,40.77969814668339],[-73.98967981290251,40.77967756865804],[-73.98975270293793,40.77967124421156],[-73.98984224780651,40.77968075267066],[-73.99004010212049,40.77970767769822],[-73.99013797752484,40.77969976970478],[-73.99033584033225,40.77966179439498],[-73.99043059869705,40.7796649730555],[-73.99062219939673,40.7796760649143],[-73.99074506950548,40.77967132818405],[-73.9908721142822,40.77964600764388],[-73.99096167222436,40.77963968375175],[-73.99105747282954,40.77965235262577],[-73.99115742949704,40.77966977560646],[-73.99124281740447,40.7796713670845],[-73.99125531828975,40.77965078251649],[-73.99129488712012,40.77963020920889],[-73.9913219676499,40.77963179604137],[-73.99135945556942,40.77958588333738],[-73.99155105922748,40.77957482143741],[-73.99141982585985,40.77975528028723],[-73.98888614411703,40.779878898533],[-73.98893965670626,40.77995617844039],[-73.98892610353084,40.78005929201363],[-73.98891168026469,40.78009603714661],[-73.98891926146857,40.78022609434394],[-73.98838105020263,40.78098107404578],[-73.98823241384699,40.78123314421556],[-73.98821042083166,40.78122548254206],[-73.98814000000014,40.78140900000022]]],"type":"Polygon"} +},{ + "id": 1007729419, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000089, + "geom:area_square_m":814800.32757, + "geom:bbox":"-87.6737224705,41.9396964988,-87.6589843786,41.9471518892", + "geom:latitude":41.943648, + "geom:longitude":-87.665224, + "iso:country":"US", + "lbl:latitude":41.933211, + "lbl:longitude":-87.677286, + "lbl:max_zoom":18.0, + "mps:latitude":41.943403, + "mps:longitude":-87.665224, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.943403, + "reversegeo:longitude":-87.665224, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85829473, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e77307e21e97567a018ffa37f9b11fca", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1007729419, + "neighbourhood_id":85829473, + "region_id":85688697 + } + ], + "wof:id":1007729419, + "wof:lastmodified":1566625491, + "wof:name":"West Lakeview", + "wof:parent_id":85829473, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865749 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6737224705246, + 41.9396964988298, + -87.6589843785878, + 41.9471518891998 +], + "geometry": {"coordinates":[[[[-87.65912157564441,41.9453157210476],[-87.6589843785878,41.9398429217264],[-87.6686616744218,41.9396964988298],[-87.66884442614339,41.9399467982458],[-87.66889218783631,41.9400095596547],[-87.6689426814345,41.9400825030782],[-87.6689774455923,41.9401327239067],[-87.6690402375084,41.9402233950137],[-87.66929934876541,41.9405982613278],[-87.6693773837768,41.9407111481197],[-87.66950869145511,41.9409010997143],[-87.6695948077934,41.9410241397525],[-87.6697207628351,41.9412040989211],[-87.66993088589869,41.9415034484579],[-87.6700772656533,41.941711960257],[-87.6702886380568,41.9420130490327],[-87.6704327530821,41.9422199185925],[-87.6704702811419,41.9422737877048],[-87.67057532621649,41.9424245299054],[-87.6707091970752,41.9426166367371],[-87.6709539756614,41.9429555838728],[-87.67095572992881,41.9429580124708],[-87.67095573246191,41.9429580163273],[-87.67119332415071,41.9433087729179],[-87.6711983951061,41.9433159906353],[-87.6714316926232,41.9436488236276],[-87.67149073693049,41.9437330689405],[-87.6715505307631,41.9438183915305],[-87.6715529703756,41.9438218729085],[-87.67155297399719,41.9438218781434],[-87.6716703268107,41.9439896901148],[-87.6717719891228,41.9441356359312],[-87.67182390089771,41.9442101600237],[-87.67187689010829,41.9442862539531],[-87.6720128151227,41.9444814442947],[-87.67225851071071,41.9448300043567],[-87.6723858337981,41.9450116950412],[-87.6724565888843,41.9451126618962],[-87.67247068798309,41.9451327953038],[-87.67279335636501,41.9455932631024],[-87.67292518221259,41.9457829191846],[-87.6729251909039,41.9457829318579],[-87.67315006394,41.9461064573714],[-87.6732968819841,41.9463176899843],[-87.67347197225,41.9465508539239],[-87.673593447983,41.9467331059357],[-87.67372247052459,41.9469266793429],[-87.65916831859788,41.9471518891998],[-87.65916841268221,41.9471485105193],[-87.65917077582159,41.9470636365536],[-87.6591710810693,41.9470526675307],[-87.65917072439289,41.9470389317473],[-87.6591697995112,41.9470033464953],[-87.6591641894294,41.9467926408542],[-87.6591641141834,41.9467896997134],[-87.6591612450656,41.9466783056769],[-87.6591593114461,41.9466032335021],[-87.65915818559699,41.9465424145742],[-87.6591565237587,41.9464526421445],[-87.65915450738621,41.9463427909659],[-87.6591539080879,41.9463101472229],[-87.65915218972189,41.9462447899997],[-87.6591516586312,41.9462245823347],[-87.6591505594872,41.9461827559871],[-87.6591479252061,41.9460825347368],[-87.6591443377426,41.9459813400033],[-87.6591388574101,41.945826747945],[-87.6591375887549,41.9457907891002],[-87.6591369891951,41.9457738010918],[-87.65913319776359,41.9456661507641],[-87.6591290736867,41.945548207679],[-87.6591282129428,41.94552342402],[-87.6591254073284,41.9454426436839],[-87.6591233385646,41.9453741241563],[-87.65912157564441,41.9453157210476]]]],"type":"MultiPolygon"} +},{ + "id": 420780693, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":261153.09517, + "geom:bbox":"-122.422837615,37.7392972915,-122.415676117,37.7462011546", + "geom:latitude":37.74282, + "geom:longitude":-122.419164, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845410, + "wof:geomhash":"3263f405c8800b16a9187dc16a572c41", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780693, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780693, + "wof:lastmodified":1566630755, + "wof:name":"Sutro Vista", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.42283761501311, + 37.739297291502, + -122.41567611694337, + 37.74620115460644 +], + "geometry": {"coordinates":[[[-122.41949558258055,37.74620115460644],[-122.41841733455658,37.74574303801685],[-122.418165,37.746082],[-122.41568148136139,37.74509615559598],[-122.41567611694337,37.74494132716161],[-122.41570025682448,37.74479286123539],[-122.4164217710495,37.74368996217433],[-122.41672699999999,37.743723],[-122.41757243871689,37.74240463984],[-122.417435,37.742315],[-122.41741399999999,37.742179],[-122.41693407297134,37.74185953765459],[-122.41859972476959,37.739297291502],[-122.42283761501311,37.7410259689624],[-122.41949558258055,37.74620115460644]]],"type":"Polygon"} +},{ + "id": 420780695, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":268060.379757, + "geom:bbox":"-122.417776287,37.7396451513,-122.406036258,37.744601976", + "geom:latitude":37.741782, + "geom:longitude":-122.411127, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845410, + "wof:geomhash":"116396c3472c43b691c00359457b5821", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780695, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780695, + "wof:lastmodified":1566630755, + "wof:name":"Hill People of Powhattan", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41777628660202, + 37.73964515131508, + -122.40603625774382, + 37.74460197603551 +], + "geometry": {"coordinates":[[[-122.41777628660202,37.74056569927519],[-122.41693139076233,37.74185741662659],[-122.416341,37.74201],[-122.41585046052933,37.74212466567811],[-122.41519063711168,37.74216708607374],[-122.41508066654205,37.74219041728097],[-122.41463541984558,37.74240676085235],[-122.41439670324326,37.74246190715176],[-122.41416603326797,37.74246190715176],[-122.41394877433777,37.74242797097238],[-122.41352766752242,37.74236434059408],[-122.41272300481795,37.74224980577529],[-122.41255939006804,37.74224768475846],[-122.411647439003,37.74238767173915],[-122.41052627563477,37.742444939064],[-122.41029292345047,37.74252553744619],[-122.40999251604079,37.74275460605318],[-122.40998178720473,37.74292640704323],[-122.40937560796736,37.74291368105763],[-122.40937829017638,37.74319577322483],[-122.40941584110259,37.74323819300662],[-122.40948289632797,37.74326364486399],[-122.40981549024582,37.74331454855253],[-122.41020977497101,37.74360724408223],[-122.41033583879471,37.74374934946549],[-122.41038680076598,37.74432837305714],[-122.40869432687758,37.74442381607145],[-122.40869164466856,37.74452562181772],[-122.40859508514404,37.74460197603551],[-122.40779042243958,37.7444089693884],[-122.40707159042358,37.74435382453964],[-122.40698307752609,37.74433261497152],[-122.40698844194412,37.74430292156588],[-122.40686237812042,37.74427534910712],[-122.40603625774382,37.74407597871514],[-122.406835,37.74296],[-122.40767200000001,37.741806],[-122.40803699999999,37.74072],[-122.40817397832869,37.73964515131508],[-122.41137653589249,37.7398360492983],[-122.41134166717529,37.74018178550367],[-122.41777628660202,37.74056569927519]]],"type":"Polygon"} +},{ + "id": 420780697, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000013, + "geom:area_square_m":129209.098265, + "geom:bbox":"-122.417577803,37.7418552956,-122.409375608,37.7450940347", + "geom:latitude":37.743206, + "geom:longitude":-122.413912, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"e668cd8da3d64b6db28df0561c74b6ee", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780697, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780697, + "wof:lastmodified":1566630756, + "wof:name":"Sutrito Canine Republic", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41757780313492, + 37.74185529559851, + -122.40937560796736, + 37.74509403466072 +], + "geometry": {"coordinates":[[[-122.41567611694337,37.74494132716161],[-122.41568684577942,37.74509403466072],[-122.41545617580414,37.74501131813782],[-122.41529524326324,37.74498586688141],[-122.41515040397645,37.74499010875808],[-122.41493850946425,37.74504949500604],[-122.41485267877579,37.74478649840334],[-122.41486608982085,37.74475044234462],[-122.41493046283722,37.74473135383587],[-122.414946,37.744504],[-122.41443099999999,37.744232],[-122.41330772638321,37.74424565567853],[-122.41324335336684,37.74387872875626],[-122.41190224885941,37.74393387395899],[-122.41111904382704,37.74373238167289],[-122.41034388542174,37.74375147043929],[-122.41019904613495,37.74360300212631],[-122.40981012582779,37.74331454855253],[-122.40948289632797,37.74325728190047],[-122.40941315889359,37.74324031399507],[-122.40937829017638,37.74319577322483],[-122.40937560796736,37.74290731806403],[-122.40999251604079,37.74291792305308],[-122.40999251604079,37.74275460605318],[-122.41028487682343,37.74252977946387],[-122.41052091121674,37.7424385760301],[-122.41163939237593,37.74238767173915],[-122.41255939006804,37.74224556374158],[-122.41272300481795,37.74224980577529],[-122.4135249853134,37.742368582621],[-122.41395145654678,37.74243009198404],[-122.41417676210402,37.74246827018367],[-122.41439402103424,37.74246402816245],[-122.41463541984558,37.74240888186461],[-122.415075,37.742196],[-122.41519600152969,37.74216496505453],[-122.41585850715637,37.74212466567811],[-122.41634666919707,37.74200800946477],[-122.41693139076233,37.74185529559851],[-122.41741955280304,37.7421798121877],[-122.4174302816391,37.74231343625206],[-122.41757780313492,37.74240463984],[-122.41672217845918,37.74372177680053],[-122.4164217710495,37.74369632510068],[-122.41570562124251,37.74478013557072],[-122.41567611694337,37.74494132716161]]],"type":"Polygon"} +},{ + "id": 420780701, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":209600.292727, + "geom:bbox":"-122.410617471,37.7440738578,-122.404453,37.748884049", + "geom:latitude":37.746446, + "geom:longitude":-122.407507, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"094fad2dd724e5ed63ed82bc22a361b9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780701, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780701, + "wof:lastmodified":1566630754, + "wof:name":"Santana Rancho", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41061747074127, + 37.74407385775066, + -122.404453, + 37.74888404899492 +], + "geometry": {"coordinates":[[[-122.40802109241487,37.74823507318356],[-122.410569190979,37.74713434629496],[-122.41061747074127,37.74698376388687],[-122.41038680076598,37.74432413114256],[-122.40868896245956,37.74442169511691],[-122.40868896245956,37.74453198467222],[-122.40858972072601,37.74459349223741],[-122.40779042243958,37.74440260652335],[-122.40707695484161,37.74435594549615],[-122.40698307752609,37.74433261497152],[-122.40699380636215,37.74429867964982],[-122.40686237812042,37.74427959102453],[-122.40603625774382,37.74407385775066],[-122.40586191415787,37.74430716348171],[-122.40553736686707,37.74502404376274],[-122.404582,37.747304],[-122.404453,37.74805],[-122.404582,37.748322],[-122.405033,37.748678],[-122.40549981594086,37.74881830333848],[-122.40621328353882,37.74888404899492],[-122.40778505802155,37.74848957418004],[-122.40802109241487,37.74823507318356]]],"type":"Polygon"} +},{ + "id": 420780703, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":200849.05685, + "geom:bbox":"-122.41910398,37.736961922,-122.411347032,37.7405678203", + "geom:latitude":37.738858, + "geom:longitude":-122.414713, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"4abccb4f6510b7f28e82f0d7f9054e59", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780703, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780703, + "wof:lastmodified":1566630756, + "wof:name":"Cortlandia", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41910398006439, + 37.73696192201913, + -122.41134703159332, + 37.74056782034024 +], + "geometry": {"coordinates":[[[-122.41910398006439,37.73852944881128],[-122.41776823997496,37.74056782034024],[-122.41134703159332,37.74018178550367],[-122.41137385368347,37.73983817038426],[-122.41136044263838,37.73974696363408],[-122.41162061691284,37.73696192201913],[-122.41660952568054,37.73725888498814],[-122.41652101278306,37.73830248825895],[-122.41910398006439,37.73852944881128]]],"type":"Polygon"} +},{ + "id": 420780705, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":150813.346364, + "geom:bbox":"-122.411805689,37.7346964796,-122.407436,37.7398381704", + "geom:latitude":37.737439, + "geom:longitude":-122.409905, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"c95922bb3091d4a05579a6419faa9d0b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780705, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780705, + "wof:lastmodified":1566630756, + "wof:name":"Alemanistan", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41180568933486, + 37.7346964795946, + -122.407436, + 37.73983817038426 +], + "geometry": {"coordinates":[[[-122.41137117147446,37.73983817038426],[-122.40817934274672,37.73964515131508],[-122.408294,37.738344],[-122.407865,37.736936],[-122.407436,37.73602],[-122.408294,37.735952],[-122.40883100000001,37.735867],[-122.409431,37.735646],[-122.41076499223709,37.73477284395134],[-122.41114854812621,37.73511648258192],[-122.41180568933486,37.7346964795946],[-122.41137117147446,37.73974272145691],[-122.41137117147446,37.73983817038426]]],"type":"Polygon"} +},{ + "id": 420780707, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":208786.531526, + "geom:bbox":"-122.420225143,37.73464557,-122.411623299,37.7385252066", + "geom:latitude":37.736215, + "geom:longitude":-122.41597, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"0ba60592120cdded3b1697633822ca81", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780707, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780707, + "wof:lastmodified":1566630755, + "wof:name":"Baja Cortlandia", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.4202251434326, + 37.73464556997969, + -122.41162329912186, + 37.73852520656434 +], + "geometry": {"coordinates":[[[-122.41910934448242,37.73852520656434],[-122.41652101278306,37.73830460938883],[-122.41660684347153,37.73725252150842],[-122.41162329912186,37.73695980085077],[-122.41180300712584,37.73470284329401],[-122.41196393966673,37.73464556997969],[-122.4202251434326,37.73506557325582],[-122.42014467716216,37.73614738890403],[-122.41970479488374,37.73623223652165],[-122.41939902305603,37.73639556791179],[-122.41918712854385,37.73656102012147],[-122.41892963647841,37.73689192343152],[-122.41880089044571,37.73723343106604],[-122.41879820823669,37.73756433137068],[-122.41894036531448,37.7379037147621],[-122.41909593343733,37.73806280019127],[-122.4193212389946,37.73818582602208],[-122.41910934448242,37.73852520656434]]],"type":"Polygon"} +},{ + "id": 420780709, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000025, + "geom:area_square_m":241853.171575, + "geom:bbox":"-122.424717844,37.7350676945,-122.418597043,37.74102809", + "geom:latitude":37.737784, + "geom:longitude":-122.421716, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Holly Park" + ], + "name:deu_x_preferred":[ + "Holly Park" + ], + "src:geom":"burritojustice", + "wd:wordcount":123, + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"cb69e897a10a9040c46abba3fddd9ea5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780709, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780709, + "wof:lastmodified":1566630754, + "wof:name":"Holly Park", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.42471784353256, + 37.73506769447845, + -122.41859704256058, + 37.74102809001421 +], + "geometry": {"coordinates":[[[-122.42269814014435,37.73520981625555],[-122.42283225059508,37.73523739209114],[-122.42471784353256,37.73538587718321],[-122.4240580201149,37.73728646006055],[-122.42391854524611,37.73931638141218],[-122.42367446422577,37.73976605342829],[-122.42284029722212,37.74102809001421],[-122.41859704256058,37.739297291502],[-122.41932392120361,37.73819218942154],[-122.41909861564638,37.73806067905446],[-122.41893500089644,37.73790159362073],[-122.41879820823669,37.73756433137068],[-122.41880625486372,37.73723767338699],[-122.41892695426939,37.73690252928237],[-122.41918712854385,37.73655889894162],[-122.41939634084702,37.73639132554259],[-122.41970747709274,37.73623011533238],[-122.4201473593712,37.73615163128719],[-122.42023050785065,37.73506769447845],[-122.42269814014435,37.73520981625555]]],"type":"Polygon"} +},{ + "id": 420780711, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":187084.873612, + "geom:bbox":"-122.432300448,37.732083,-122.423674464,37.7398593812", + "geom:latitude":37.734751, + "geom:longitude":-122.427429, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 420552245, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"90bb73b53450ca8aeaac740fadde49ff", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780711, + "neighbourhood_id":420552245, + "region_id":85688637 + } + ], + "wof:id":420780711, + "wof:lastmodified":1566630757, + "wof:name":"Lost Tribe of College Hill", + "wof:parent_id":420552245, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.43230044842, + 37.732083, + -122.42367446423, + 37.73985938124 +], + "geometry": {"coordinates":[[[-122.4242028594,37.73985938124],[-122.42392122746,37.739808475176],[-122.42367446423,37.739761811252],[-122.42391854525,37.739310018109],[-122.4240526557,37.73728858122],[-122.42471247911,37.735387998397],[-122.427971,37.732083],[-122.429258,37.732371],[-122.430353,37.732473],[-122.431211,37.732473],[-122.43189543486,37.732405512268],[-122.43188738823,37.732579458571],[-122.43198126554,37.732997352285],[-122.43230044841999,37.733118265255],[-122.42909789085,37.734683752194],[-122.42789089679999,37.735402846889],[-122.42663294077001,37.73630435692],[-122.42518186569001,37.737585542878],[-122.42467492819,37.738296124869],[-122.42436915636,37.739040637787],[-122.4242028594,37.73985938124]]],"type":"Polygon"} +},{ + "id": 420780713, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":211162.735355, + "geom:bbox":"-122.427974045,37.731777,-122.41951704,37.7353922408", + "geom:latitude":37.733433, + "geom:longitude":-122.423346, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:bar_x_preferred":[ + "Saint Marys" + ], + "name:bre_x_preferred":[ + "St. Mary's" + ], + "name:ceb_x_preferred":[ + "St. Mary's" + ], + "name:ita_x_preferred":[ + "St. Mary's" + ], + "name:nor_x_preferred":[ + "St. Marys" + ], + "name:pol_x_preferred":[ + "St Mary\u2019s" + ], + "name:por_x_preferred":[ + "St. Marys" + ], + "name:rus_x_preferred":[ + "\u0421\u0435\u043d\u0442-\u041c\u044d\u0440\u0438\u0441" + ], + "name:spa_x_preferred":[ + "St. Mary's" + ], + "name:srp_x_preferred":[ + "\u0421\u0435\u043d\u0442 \u041c\u0435\u0440\u0438\u0437" + ], + "name:swe_x_preferred":[ + "St. Mary's" + ], + "name:ukr_x_preferred":[ + "\u0421\u0435\u043d\u0442-\u041c\u0435\u0440\u0456\u0441" + ], + "name:vol_x_preferred":[ + "St. Mary's" + ], + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"803293948ab17a369b8e83d3626c70f6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780713, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780713, + "wof:lastmodified":1566630755, + "wof:name":"St. Mary's", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.42797404527664, + 37.731777, + -122.41951704025269, + 37.73539224082335 +], + "geometry": {"coordinates":[[[-122.42471784353256,37.73539224082335],[-122.42283225059508,37.7352352708734],[-122.42270082235336,37.73521193747403],[-122.4201688170433,37.73506345203315],[-122.42024660110474,37.73410041065895],[-122.41951704025269,37.73398162054671],[-122.4196243286133,37.73224853598639],[-122.42084699999999,37.732286],[-122.422006,37.732083],[-122.422714,37.731947],[-122.424323,37.731811],[-122.425568,37.731777],[-122.426233,37.731794],[-122.42797404527664,37.73208307413966],[-122.42471784353256,37.73539224082335]]],"type":"Polygon"} +},{ + "id": 420780715, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":164139.740989, + "geom:bbox":"-122.420246,37.7322230803,-122.410759628,37.7351101189", + "geom:latitude":37.733782, + "geom:longitude":-122.416479, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wd:wordcount":125, + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"67a58382e4de974f358009560a5f6d54", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780715, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780715, + "wof:lastmodified":1566630755, + "wof:name":"The Crescent", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.420246, + 37.73222308034173, + -122.41075962781908, + 37.73511011891809 +], + "geometry": {"coordinates":[[[-122.42016613483429,37.73506769447845],[-122.41196393966673,37.73464556997969],[-122.41180300712584,37.73469860082779],[-122.41114318370819,37.73511011891809],[-122.41075962781908,37.73476435902669],[-122.41389513015746,37.73324554185194],[-122.41487413644791,37.73278310250274],[-122.41595506668089,37.73244369563805],[-122.41750001907349,37.73222308034173],[-122.41867999999999,37.732235],[-122.4196243286133,37.73224853598639],[-122.419517,37.733983],[-122.42024600000001,37.734102],[-122.42016613483429,37.73506769447845]]],"type":"Polygon"} +},{ + "id": 420780719, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":20938.380846, + "geom:bbox":"-122.420697,37.742824,-122.417027,37.744691", + "geom:latitude":37.743757, + "geom:longitude":-122.418862, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"163f3f369e2ce9fb5c85c51467c4103f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780719, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780719, + "wof:lastmodified":1566630757, + "wof:name":"Esmereldia", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.420697, + 37.742824, + -122.417027, + 37.744691 +], + "geometry": {"coordinates":[[[-122.42037500000001,37.744691],[-122.417027,37.743333],[-122.417349,37.742824],[-122.420697,37.744182],[-122.42037500000001,37.744691]]],"type":"Polygon"} +},{ + "id": 420780721, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":25599.120466, + "geom:bbox":"-122.422177,37.7402348124,-122.417660952,37.742434", + "geom:latitude":37.741333, + "geom:longitude":-122.419896, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"1fcec3922833454bcffddcd590db70bb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780721, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780721, + "wof:lastmodified":1566630757, + "wof:name":"Eugeniaia", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.422177, + 37.74023481238621, + -122.41766095161438, + 37.742434 +], + "geometry": {"coordinates":[[[-122.42187699999999,37.742434],[-122.41766095161438,37.74075235276521],[-122.41798549890518,37.74023481238621],[-122.422177,37.741959],[-122.42187699999999,37.742434]]],"type":"Polygon"} +},{ + "id": 420780723, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":1280.403856, + "geom:bbox":"-122.417416871,37.7476348715,-122.417164743,37.7481905354", + "geom:latitude":37.747913, + "geom:longitude":-122.41729, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"cfa2acef04f5ce2e1c7abc10621abfa7", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780723, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780723, + "wof:lastmodified":1566630755, + "wof:name":"Principality of Chicken John", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41741687059402, + 37.74763487153412, + -122.41716474294664, + 37.74819053541917 +], + "geometry": {"coordinates":[[[-122.41741687059402,37.74818629372592],[-122.4171781539917,37.74819053541917],[-122.41716474294664,37.74763911325896],[-122.41740077733992,37.74763487153412],[-122.41741687059402,37.74818629372592]]],"type":"Polygon"} +},{ + "id": 420780725, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":206710.130168, + "geom:bbox":"-122.419133484,37.74671,-122.405030429,37.750442", + "geom:latitude":37.748249, + "geom:longitude":-122.412271, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"e73d307a0101659c7a06e69ec54ea3cc", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780725, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780725, + "wof:lastmodified":1566630755, + "wof:name":"Serpentinia", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41913348436354, + 37.74671, + -122.40503042936324, + 37.750442 +], + "geometry": {"coordinates":[[[-122.41745978593826,37.74849805753151],[-122.41719692945479,37.74866136185791],[-122.417006,37.748814],[-122.416212,37.749289],[-122.41471,37.748881],[-122.413766,37.748831],[-122.412629,37.748797],[-122.411599,37.748966],[-122.41043999999999,37.748627],[-122.40608400000001,37.750442],[-122.40503042936324,37.74867620768788],[-122.40549713373184,37.74881618250986],[-122.40621299999999,37.748881],[-122.40778505802155,37.74848533250395],[-122.40801841020583,37.74823083149286],[-122.41057455539703,37.74713646717174],[-122.4106228351593,37.74697528036182],[-122.41071939468385,37.74695407154488],[-122.41353571414946,37.74677167546847],[-122.41358399391174,37.74717040119229],[-122.41372346878052,37.7472149395706],[-122.41389513015746,37.7472170604451],[-122.416212,37.747524],[-122.41829300000001,37.74671],[-122.41913348436354,37.74678227990384],[-122.41818398237228,37.748239314874],[-122.41745978593826,37.74849805753151]]],"type":"Polygon"} +},{ + "id": 420780727, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":9344.937959, + "geom:bbox":"-122.4213624,37.7436390587,-122.420112491,37.7446231855", + "geom:latitude":37.744134, + "geom:longitude":-122.42074, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"32ecec63e7bc931a051136e3f9fae3fb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780727, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780727, + "wof:lastmodified":1566630757, + "wof:name":"NanoTokyo", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.42136240005493, + 37.74363905874399, + -122.42011249065399, + 37.74462318552649 +], + "geometry": {"coordinates":[[[-122.42112636566162,37.74452137991442],[-122.42102444171904,37.74457652463832],[-122.4208527803421,37.74461894362878],[-122.42071866989136,37.74462318552649],[-122.4206006526947,37.74461894362878],[-122.42044508457184,37.74456379893645],[-122.42030024528502,37.74447896086805],[-122.4202036857605,37.74438988079159],[-122.42014467716216,37.74427959102453],[-122.42011785507202,37.74419475263036],[-122.42011249065399,37.744092946429],[-122.42013931274413,37.74399114008758],[-122.42019832134247,37.74390205942399],[-122.42027878761292,37.74380449476462],[-122.42036998271942,37.74373238167289],[-122.42046654224394,37.7436942041253],[-122.42067843675613,37.74363905874399],[-122.42087423801422,37.74365178460486],[-122.42104053497314,37.74370692997667],[-122.42120683193207,37.74380449476462],[-122.42128729820251,37.74388509166637],[-122.42134630680083,37.74399962395471],[-122.42136240005493,37.74414384954719],[-122.4213409423828,37.7442668652716],[-122.42127656936647,37.74438139696917],[-122.42119610309602,37.74445350942857],[-122.42112636566162,37.74452137991442]]],"type":"Polygon"} +},{ + "id": 420780729, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":89182.299933, + "geom:bbox":"-122.424055338,37.7396769677,-122.417762876,37.7481650853", + "geom:latitude":37.744056, + "geom:longitude":-122.420913, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845411, + "wof:geomhash":"f111ae51c40794837304474a75d9803c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780729, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780729, + "wof:lastmodified":1566630757, + "wof:name":"Liminal Zone of Deliciousness", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.4240553379059, + 37.73967696767981, + -122.41776287555693, + 37.74816508525605 +], + "geometry": {"coordinates":[[[-122.4240553379059,37.73982120169508],[-122.42314875125885,37.73967696767981],[-122.41776287555693,37.74816508525605],[-122.41899132728577,37.74808873471423],[-122.4240553379059,37.73982120169508]]],"type":"Polygon"} +},{ + "id": 772967579, + "type": "Feature", + "properties": { + "src:alt_label":"zetashapes", + "src:geom":"zetashapes", + "wof:geomhash":"2c3506e00e2a553f3efe642de66cd377", + "wof:id":772967579, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us" +}, + "bbox": [ + -122.333159, + 47.614102, + -122.31013, + 47.63305 +], + "geometry": {"coordinates":[[[-122.331001,47.618272],[-122.33186000000001,47.617608],[-122.33315899999999,47.618377],[-122.332975,47.618511],[-122.332982,47.61966],[-122.332988,47.620812],[-122.331705,47.620815],[-122.33171299999999,47.621966],[-122.330431,47.62197],[-122.33043600000001,47.623121],[-122.33044599999999,47.624274],[-122.330454,47.624428],[-122.33049699999999,47.624542],[-122.330569,47.624642],[-122.33073899999999,47.624805],[-122.330822,47.624965],[-122.33038500000001,47.625112],[-122.33063,47.625112],[-122.331514,47.625111],[-122.33233199999999,47.625116],[-122.331903,47.625229],[-122.331211,47.625419],[-122.33082400000001,47.625517],[-122.330625,47.625573],[-122.33033,47.625679],[-122.330039,47.625796],[-122.329499,47.625995],[-122.32934299999999,47.626066],[-122.329297,47.62609],[-122.329255,47.626122],[-122.329252,47.62601],[-122.329238,47.625425],[-122.329227,47.625225],[-122.32915300000001,47.625203],[-122.329035,47.625153],[-122.329042,47.626168],[-122.329043,47.626334],[-122.329052,47.627723],[-122.32904000000001,47.627791],[-122.329008,47.627865],[-122.328941,47.627937],[-122.32889900000001,47.627972],[-122.328857,47.628119],[-122.32872999999999,47.628364],[-122.328596,47.628556],[-122.328187,47.629021],[-122.327741,47.629489],[-122.327315,47.629827],[-122.326823,47.630151],[-122.326778,47.630191],[-122.326643,47.63013],[-122.32655,47.630087],[-122.32670400000001,47.629952],[-122.327243,47.629469],[-122.327456,47.629285],[-122.327662,47.629071],[-122.32794800000001,47.628731],[-122.328028,47.628613],[-122.32815600000001,47.628393],[-122.328249,47.628194],[-122.32826900000001,47.62815],[-122.328053,47.628192],[-122.327872,47.628228],[-122.327634,47.628276],[-122.3274,47.628322],[-122.32731699999999,47.628329],[-122.32718199999999,47.628317],[-122.32649600000001,47.628818],[-122.326058,47.629252],[-122.32436,47.630876],[-122.32408,47.631128],[-122.323961,47.631288],[-122.323897,47.631484],[-122.32391,47.631774],[-122.323874,47.631947],[-122.323768,47.632135],[-122.32364699999999,47.632251],[-122.32347,47.632252],[-122.323458,47.62988],[-122.32391200000001,47.630087],[-122.324414,47.629946],[-122.324611,47.62983],[-122.325052,47.629359],[-122.32448599999999,47.62931],[-122.324381,47.629293],[-122.32402999999999,47.629108],[-122.323779,47.6289],[-122.32351800000001,47.628667],[-122.32236899999999,47.628666],[-122.322339,47.6304],[-122.32230199999999,47.630469],[-122.322276,47.630487],[-122.322253,47.630491],[-122.321265,47.630489],[-122.320211,47.630488],[-122.32020799999999,47.632277],[-122.320194,47.632423],[-122.320103,47.63264],[-122.31995999999999,47.632907],[-122.319935,47.633044],[-122.31977999999999,47.633046],[-122.319109,47.63305],[-122.319153,47.632284],[-122.318612,47.632288],[-122.318654,47.630487],[-122.318625,47.630475],[-122.31862,47.628672],[-122.318488,47.628634],[-122.31813,47.62886],[-122.31777700000001,47.628877],[-122.317925,47.629011],[-122.318023,47.629137],[-122.318093,47.629295],[-122.318127,47.629479],[-122.318123,47.629663],[-122.318091,47.62988],[-122.317922,47.630213],[-122.31785600000001,47.630487],[-122.317745,47.630649],[-122.31771000000001,47.6307],[-122.317379,47.630971],[-122.317306,47.631068],[-122.317037,47.631529],[-122.316973,47.631594],[-122.316742,47.63173],[-122.316509,47.631822],[-122.31589200000001,47.631869],[-122.31588000000001,47.631822],[-122.315842,47.631783],[-122.31578500000001,47.631756],[-122.31571099999999,47.631746],[-122.315566,47.631103],[-122.315444,47.630799],[-122.315237,47.630471],[-122.314931,47.630098],[-122.314582,47.629614],[-122.31455099999999,47.629513],[-122.314562,47.629339],[-122.314375,47.629292],[-122.314213,47.629199],[-122.31413999999999,47.629041],[-122.31415800000001,47.628939],[-122.31425,47.628849],[-122.314398,47.628777],[-122.314562,47.628751],[-122.314571,47.628415],[-122.314583,47.627655],[-122.314403,47.627652],[-122.312577,47.627629],[-122.31256999999999,47.626876],[-122.311288,47.62687],[-122.31130400000001,47.62578],[-122.31130400000001,47.625752],[-122.311311,47.625252],[-122.311314,47.624964],[-122.31132100000001,47.624436],[-122.31260399999999,47.624425],[-122.31260899999999,47.624247],[-122.31262599999999,47.623262],[-122.311342,47.623255],[-122.311359,47.62208],[-122.311385,47.620497],[-122.31139899999999,47.619675],[-122.31013,47.619671],[-122.31013799999999,47.618632],[-122.31014,47.618511],[-122.310141,47.617609],[-122.311446,47.617612],[-122.311458,47.616444],[-122.312763,47.616449],[-122.314263,47.616449],[-122.315569,47.61644],[-122.31555,47.615271],[-122.315532,47.614111],[-122.316838,47.614102],[-122.316856,47.615262],[-122.316875,47.61643],[-122.31818,47.616421],[-122.318161,47.615253],[-122.319467,47.615243],[-122.320018,47.615239],[-122.32080000000001,47.615234],[-122.322132,47.615224],[-122.32214999999999,47.616392],[-122.32344000000001,47.616392],[-122.32343899999999,47.616342],[-122.324489,47.616346],[-122.32554500000001,47.61634],[-122.326187,47.616336],[-122.326255,47.617735],[-122.326795,47.617087],[-122.327877,47.617068],[-122.32787999999999,47.616694],[-122.327882,47.616632],[-122.328255,47.616495],[-122.328543,47.616389],[-122.32884799999999,47.61626],[-122.329036,47.61618],[-122.32924300000001,47.616092],[-122.32937800000001,47.616035],[-122.329354,47.616263],[-122.329301,47.616452],[-122.329247,47.616694],[-122.329229,47.616816],[-122.329223,47.616861],[-122.329218,47.616955],[-122.32922499999999,47.617011],[-122.32926999999999,47.617128],[-122.329328,47.617223],[-122.329391,47.617298],[-122.32946699999999,47.617366],[-122.329572,47.617432],[-122.3297,47.617503],[-122.331001,47.618272]]],"type":"Polygon"} +},{ + "id": 772967579, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000315, + "geom:area_square_m":2627797.129573, + "geom:bbox":"-122.330603,47.612764,-122.312479,47.639717", + "geom:latitude":47.624896, + "geom:longitude":-122.320206, + "gn:elevation":14, + "iso:country":"US", + "lbl:latitude":47.625223, + "lbl:longitude":-122.320352, + "lbl:max_zoom":18.0, + "mps:latitude":47.622861, + "mps:longitude":-122.320748, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "mz:tier_locality":6, + "mz:tier_metro":1, + "name:bre_x_preferred":[ + "Broadway" + ], + "name:cat_x_preferred":[ + "Broadway" + ], + "name:ceb_x_preferred":[ + "Broadway" + ], + "name:ces_x_preferred":[ + "Broadway" + ], + "name:cym_x_preferred":[ + "Broadway" + ], + "name:dan_x_preferred":[ + "Broadway" + ], + "name:deu_x_preferred":[ + "Broadway" + ], + "name:eng_x_preferred":[ + "Broadway" + ], + "name:est_x_preferred":[ + "Broadway" + ], + "name:fas_x_preferred":[ + "\u0628\u0631\u0627\u062f\u0648\u06cc" + ], + "name:fin_x_preferred":[ + "Broadway" + ], + "name:fra_x_preferred":[ + "Broadway" + ], + "name:heb_x_preferred":[ + "\u05d1\u05e8\u05d5\u05d3\u05d5\u05d5\u05d9\u05d9" + ], + "name:hye_x_preferred":[ + "\u0532\u0580\u0578\u0564\u057e\u0565\u0575" + ], + "name:ita_x_preferred":[ + "Broadway" + ], + "name:jpn_x_preferred":[ + "\u30d6\u30ed\u30fc\u30c9\u30a6\u30a7\u30a4" + ], + "name:kat_x_preferred":[ + "\u10d1\u10e0\u10dd\u10d3\u10d5\u10d4\u10d8" + ], + "name:kor_x_preferred":[ + "\ube0c\ub85c\ub4dc\uc6e8\uc774" + ], + "name:krc_x_preferred":[ + "\u0411\u0440\u043e\u0434\u0432\u0435\u0439" + ], + "name:mkd_x_preferred":[ + "\u0411\u0440\u043e\u0434\u0432\u0435\u0458" + ], + "name:new_x_preferred":[ + "\u092c\u094d\u0930\u094b\u0926\u0935\u0947" + ], + "name:nld_x_preferred":[ + "Broadway" + ], + "name:nor_x_preferred":[ + "Broadway" + ], + "name:pnb_x_preferred":[ + "\u0628\u0631\u0627\u0688\u0648\u06d2" + ], + "name:pol_x_preferred":[ + "Broadway" + ], + "name:por_x_preferred":[ + "Broadway" + ], + "name:rus_x_preferred":[ + "\u0411\u0440\u043e\u0434\u0432\u0435\u0439" + ], + "name:spa_x_preferred":[ + "Broadway" + ], + "name:srp_x_preferred":[ + "\u0411\u0440\u043e\u0434\u0432\u0435\u0458" + ], + "name:swe_x_preferred":[ + "Broadway" + ], + "name:tam_x_preferred":[ + "\u0baa\u0bbf\u0bb0\u0bbe\u0b9f\u0bcd\u0bb5\u0bc7" + ], + "name:tha_x_preferred":[ + "\u0e1a\u0e23\u0e2d\u0e14\u0e40\u0e27\u0e22\u0e4c" + ], + "name:tur_x_preferred":[ + "Broadway" + ], + "name:ukr_x_preferred":[ + "\u0411\u0440\u043e\u0434\u0432\u0435\u0439" + ], + "name:vol_x_preferred":[ + "Broadway" + ], + "name:zho_x_preferred":[ + "\u767e\u8001\u6c47" + ], + "name:zho_x_variant":[ + "\u767e\u8001\u532f" + ], + "qs:gn_adm0_cc":"US", + "qs:gn_fcode":"PPL", + "qs:gn_local":5809844, + "qs:gn_namadm1":"WA", + "qs:gn_name":"Broadway", + "qs:local_max":71223, + "qs:local_sum":929008, + "qs:localhoods":138, + "qs:name":"Broadway", + "qs:name_adm0":"United States", + "qs:name_adm1":"Washington", + "qs:name_adm2":"King", + "qs:name_local":"Seattle", + "qs:photo_max":2664, + "qs:photo_sum":21647, + "qs:placetype":"Suburb", + "qs:quad_count":210, + "qs:woe_adm0":23424977, + "qs:woe_adm1":2347606, + "qs:woe_adm2":12590456, + "qs:woe_funk":"Parented by a neighborhood", + "qs:woe_lau":0, + "qs:woe_local":2490383, + "qs:woe_ver":"7.10.0", + "reversegeo:latitude":47.625223, + "reversegeo:longitude":-122.320352, + "src:geom":"mz", + "src:geom_alt":[ + "quattroshapes", + "zetashapes" + ], + "src:lbl_centroid":"mz", + "src:population":"zetashapes", + "wd:wordcount":855, + "wof:belongsto":[ + 102191575, + 85633793, + 102086191, + 101730401, + 85882415, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "gn:id":5788165, + "gp:id":2369586, + "qs_pg:id":915901 + }, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geom_alt":[ + "quattroshapes", + "zetashapes" + ], + "wof:geomhash":"2a13a5edec511415eefffe4d84c1801f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":772967579, + "neighbourhood_id":85882415, + "region_id":85688623 + } + ], + "wof:id":772967579, + "wof:lang":[ + "eng" + ], + "wof:lastmodified":1587587486, + "wof:name":"Broadway", + "wof:parent_id":85882415, + "wof:placetype":"microhood", + "wof:population":19562, + "wof:population_rank":6, + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85807733 + ], + "wof:tags":[], + "zs:blockids":[ + 530330074013004, + 530330075004007, + 530330075003000, + 530330075001003, + 530330075001005, + 530330075001010, + 530330075001009, + 530330075002001, + 530330065002000, + 530330065002005, + 530330065003005, + 530330073001009, + 530330073001006, + 530330074013005, + 530330074011004, + 530330074013009, + 530330065002009, + 530330074023005, + 530330074022002, + 530330074022003, + 530330074012003, + 530330065003009, + 530330074012004, + 530330074021001, + 530330075003003, + 530330065003013, + 530330074021008, + 530330075004002, + 530330065003014, + 530330066001023, + 530330076003011, + 530330073002002, + 530330073002009, + 530330073002011, + 530330065002008, + 530330065001034, + 530330066001016, + 530330074011005, + 530330074023006, + 530330074023007, + 530330074012005, + 530330074012007, + 530330074021000, + 530330075003007, + 530330075005002, + 530330075003008, + 530330074022000, + 530330075005004, + 530330075005005, + 530330074023003, + 530330066001021, + 530330073001010, + 530330073001034, + 530330076001007, + 530330065003007, + 530330075003010, + 530330075005000, + 530330065003017, + 530330075001004, + 530330073002012, + 530330065002001, + 530330065002004, + 530330065001029, + 530330065003004, + 530330073001001, + 530330074013002, + 530330073001023, + 530330074021006, + 530330074023004, + 530330074022004, + 530330074012000, + 530330074021002, + 530330075003004, + 530330075003006, + 530330073001007, + 530330066001014, + 530330074011001, + 530330074013003, + 530330065001031, + 530330065003018, + 530330075001002, + 530330065003019, + 530330076003004, + 530330075004004, + 530330079005004, + 530330073002008, + 530330065002003, + 530330065002002, + 530330065002012, + 530330073001000, + 530330073001013, + 530330074023001, + 530330074014003, + 530330065003008, + 530330065003010, + 530330075003005, + 530330075003014, + 530330074021010, + 530330075004000, + 530330066001018, + 530330074013010, + 530330074013001, + 530330079005006, + 530330073001030, + 530330073001003, + 530330075002005, + 530330073001022, + 530330073002010, + 530330065001028, + 530330066001045, + 530330074011002, + 530330074021004, + 530330074021003, + 530330074023009, + 530330075003002, + 530330065003012, + 530330075003011, + 530330074022005, + 530330075005008, + 530330075005001, + 530330073001031, + 530330064002009, + 530330074013007, + 530330066001015, + 530330075005007, + 530330065003016, + 530330065003020, + 530330075001001, + 530330075001006, + 530330079005005, + 530330073001026, + 530330073001025, + 530330066001010, + 530330066001037, + 530330065001035, + 530330074011003, + 530330074014001, + 530330074021007, + 530330074011000, + 530330075005003, + 530330075003013, + 530330075003012, + 530330073001012, + 530330073001002, + 530330074021005, + 530330066001036, + 530330076003010, + 530330065001033, + 530330075003001, + 530330075003009, + 530330075001008, + 530330075001000, + 530330076003003, + 530330075002006, + 530330075002000, + 530330065002007, + 530330065003003, + 530330073001014, + 530330073001024, + 530330073002013, + 530330074013006, + 530330065002010, + 530330065002011, + 530330074014002, + 530330074014004, + 530330074014000, + 530330074014005, + 530330073002001, + 530330073002000, + 530330074023000, + 530330074012002, + 530330074012006, + 530330074021009, + 530330074022001, + 530330075005010, + 530330074013011, + 530330073001008, + 530330073001032, + 530330074013008, + 530330074013000, + 530330074023002, + 530330065003001, + 530330065003015, + 530330065003021, + 530330075001007, + 530330075002002, + 530330075002003, + 530330075002004, + 530330066001017, + 530330073002003, + 530330065001026, + 530330066001011, + 530330065001030, + 530330065001027, + 530330065002006, + 530330065003006, + 530330074011006, + 530330074012001, + 530330065003011, + 530330065003002, + 530330084001000, + 530330075005006, + 530330075005009, + 530330075004001, + 530330075004003, + 530330073001011, + 530330066001035, + 530330073001033 + ], + "zs:housing10":14120, + "zs:pop10":19562 +}, + "bbox": [ + -122.330603, + 47.612764, + -122.312479, + 47.639717 +], + "geometry": {"coordinates":[[[[-122.322881,47.639717],[-122.322315,47.639533],[-122.321331,47.639541],[-122.321315,47.638465],[-122.321359,47.637277],[-122.321358,47.636135],[-122.321303,47.635998],[-122.32121600000001,47.635904],[-122.31956700000001,47.635913],[-122.317245,47.635924],[-122.31359399999999,47.635943],[-122.313591,47.63567],[-122.31352,47.635359],[-122.31350999999999,47.63533],[-122.3135,47.635301],[-122.313489,47.635272],[-122.313478,47.635243],[-122.313468,47.63522],[-122.313456,47.635191],[-122.313444,47.635163],[-122.31343099999999,47.635134],[-122.313417,47.635106],[-122.31340299999999,47.635077],[-122.313389,47.635049],[-122.31337600000001,47.635026],[-122.313361,47.634998],[-122.313345,47.63497],[-122.313329,47.634943],[-122.313312,47.634915],[-122.313295,47.634887],[-122.313278,47.63486],[-122.31326,47.634833],[-122.313241,47.634805],[-122.313222,47.634778],[-122.313203,47.634751],[-122.313183,47.634725],[-122.313163,47.634698],[-122.313146,47.634677],[-122.313125,47.634651],[-122.31285,47.634376],[-122.312822,47.634354],[-122.31279499999999,47.634331],[-122.31277300000001,47.634312],[-122.312747,47.634288],[-122.31272199999999,47.634263],[-122.312698,47.634238],[-122.312676,47.634212],[-122.31265399999999,47.634186],[-122.312634,47.634159],[-122.31261499999999,47.634132],[-122.312597,47.634105],[-122.31258,47.634077],[-122.312567,47.634055],[-122.31255299999999,47.634027],[-122.31254,47.633998],[-122.312528,47.633969],[-122.312517,47.63394],[-122.31250799999999,47.633911],[-122.3125,47.633882],[-122.312493,47.633852],[-122.312488,47.633822],[-122.312483,47.633793],[-122.31248100000001,47.633763],[-122.312479,47.633733],[-122.312479,47.633703],[-122.31247999999999,47.633673],[-122.312483,47.633643],[-122.312484,47.632981],[-122.31249699999999,47.632333],[-122.31252000000001,47.630636],[-122.312546,47.628692],[-122.312557,47.627643],[-122.312566,47.626892],[-122.312584,47.626071],[-122.312607,47.624381],[-122.31259799999999,47.623713],[-122.312656,47.621443],[-122.312703,47.620567],[-122.31272800000001,47.61967],[-122.312746,47.618519],[-122.31275100000001,47.617629],[-122.31276099999999,47.616539],[-122.31276099999999,47.615355],[-122.32802700000001,47.615298],[-122.32982199999999,47.614561],[-122.329724,47.61478],[-122.329255,47.616067],[-122.329216,47.616175],[-122.32884199999999,47.617595],[-122.32883699999999,47.617622],[-122.32883099999999,47.617648],[-122.328827,47.617674],[-122.328822,47.617701],[-122.328817,47.617727],[-122.328812,47.617753],[-122.328807,47.61778],[-122.328802,47.617806],[-122.32879800000001,47.617832],[-122.328793,47.617859],[-122.328789,47.617885],[-122.328785,47.617912],[-122.32877999999999,47.617938],[-122.328776,47.617964],[-122.328772,47.617991],[-122.328767,47.618017],[-122.328763,47.618044],[-122.32875900000001,47.61807],[-122.328755,47.618096],[-122.328751,47.618123],[-122.32874700000001,47.618149],[-122.328744,47.618176],[-122.32874,47.618202],[-122.32873600000001,47.618228],[-122.328732,47.618255],[-122.328729,47.618281],[-122.32872500000001,47.618308],[-122.328722,47.618334],[-122.32871900000001,47.618361],[-122.328715,47.618387],[-122.328712,47.618414],[-122.328709,47.61844],[-122.328705,47.618465],[-122.3287,47.618513],[-122.32869700000001,47.618539],[-122.328694,47.618566],[-122.32869100000001,47.618592],[-122.328688,47.618619],[-122.328686,47.618645],[-122.328683,47.618672],[-122.328681,47.618698],[-122.328678,47.618725],[-122.328676,47.618751],[-122.32867299999999,47.618778],[-122.32867,47.618804],[-122.32866799999999,47.618831],[-122.328666,47.618857],[-122.328664,47.618884],[-122.328661,47.61891],[-122.32866,47.618937],[-122.32865700000001,47.618963],[-122.328656,47.61899],[-122.328654,47.619016],[-122.32865099999999,47.619043],[-122.32865,47.619069],[-122.328648,47.619096],[-122.328647,47.619122],[-122.32864499999999,47.619149],[-122.328644,47.619176],[-122.328637,47.620731],[-122.328667,47.622282],[-122.32866799999999,47.623853],[-122.328678,47.625458],[-122.328669,47.626945],[-122.328665,47.626973],[-122.32866199999999,47.627],[-122.328658,47.627026],[-122.328654,47.627052],[-122.32865,47.627079],[-122.32864499999999,47.627105],[-122.328641,47.627132],[-122.328636,47.627158],[-122.328631,47.627184],[-122.328626,47.627211],[-122.328621,47.627237],[-122.328615,47.627263],[-122.328609,47.627289],[-122.328603,47.627316],[-122.328598,47.627342],[-122.328591,47.627368],[-122.328585,47.627394],[-122.32857799999999,47.62742],[-122.328571,47.627447],[-122.328564,47.627473],[-122.328557,47.627499],[-122.32855000000001,47.627525],[-122.328542,47.627551],[-122.328534,47.627577],[-122.328526,47.627603],[-122.328518,47.627629],[-122.32850999999999,47.627655],[-122.328501,47.627681],[-122.328492,47.627707],[-122.328484,47.627733],[-122.328475,47.627758],[-122.32846499999999,47.627784],[-122.328453,47.62782],[-122.32844299999999,47.627845],[-122.328433,47.627871],[-122.328423,47.627897],[-122.328412,47.627922],[-122.328402,47.627948],[-122.32839199999999,47.627974],[-122.32838099999999,47.627999],[-122.32837000000001,47.628025],[-122.32835799999999,47.62805],[-122.32834699999999,47.628075],[-122.328335,47.628101],[-122.32832399999999,47.628126],[-122.328312,47.628151],[-122.3283,47.628177],[-122.328288,47.628202],[-122.328275,47.628227],[-122.32826300000001,47.628252],[-122.32825,47.628277],[-122.328237,47.628301],[-122.32822299999999,47.628326],[-122.328209,47.628351],[-122.32819499999999,47.628376],[-122.328181,47.628401],[-122.328166,47.628425],[-122.328152,47.62845],[-122.328136,47.628474],[-122.328121,47.628499],[-122.32810600000001,47.628523],[-122.32809,47.628547],[-122.328074,47.628572],[-122.328058,47.628596],[-122.328041,47.62862],[-122.328024,47.628644],[-122.328007,47.628668],[-122.32799,47.628692],[-122.327973,47.628716],[-122.327955,47.628739],[-122.32793700000001,47.628763],[-122.32791899999999,47.628787],[-122.3279,47.62881],[-122.327882,47.628833],[-122.32786299999999,47.628857],[-122.327844,47.62888],[-122.327825,47.628903],[-122.327805,47.628926],[-122.327786,47.628949],[-122.327766,47.628972],[-122.327746,47.628995],[-122.327725,47.629017],[-122.32770499999999,47.62904],[-122.327684,47.629063],[-122.327662,47.629085],[-122.327641,47.629107],[-122.32762,47.62913],[-122.32759799999999,47.629152],[-122.32757599999999,47.629174],[-122.32755400000001,47.629196],[-122.32753200000001,47.629218],[-122.32750900000001,47.629239],[-122.32748599999999,47.629261],[-122.32746400000001,47.629282],[-122.32743499999999,47.629309],[-122.327411,47.629331],[-122.327388,47.629352],[-122.327364,47.629373],[-122.32734000000001,47.629394],[-122.327315,47.629415],[-122.327291,47.629436],[-122.32726599999999,47.629456],[-122.327242,47.629477],[-122.32602199999999,47.630564],[-122.325085,47.631397],[-122.325063,47.631419],[-122.325042,47.631442],[-122.32502100000001,47.631464],[-122.325,47.631487],[-122.32498,47.631509],[-122.32496,47.631532],[-122.324939,47.631555],[-122.32491899999999,47.631578],[-122.324899,47.631601],[-122.324879,47.631623],[-122.324859,47.631646],[-122.32483999999999,47.63167],[-122.324821,47.631693],[-122.32480200000001,47.631716],[-122.324783,47.631739],[-122.324763,47.631762],[-122.32474499999999,47.631786],[-122.324726,47.631809],[-122.324708,47.631832],[-122.32469,47.631856],[-122.324671,47.631879],[-122.324653,47.631903],[-122.324635,47.631927],[-122.324618,47.63195],[-122.3246,47.631974],[-122.324583,47.631998],[-122.324566,47.632022],[-122.32454799999999,47.632046],[-122.32453099999999,47.63207],[-122.32451500000001,47.632094],[-122.32449800000001,47.632118],[-122.324482,47.632142],[-122.324465,47.632166],[-122.324449,47.63219],[-122.324433,47.632214],[-122.32441799999999,47.632239],[-122.32440200000001,47.632263],[-122.324387,47.632288],[-122.324371,47.632312],[-122.32435599999999,47.632336],[-122.324341,47.632361],[-122.324326,47.632386],[-122.32431099999999,47.63241],[-122.324297,47.632435],[-122.324282,47.63246],[-122.324268,47.632484],[-122.324254,47.632509],[-122.32424,47.632534],[-122.324226,47.632559],[-122.324213,47.632584],[-122.323796,47.633606],[-122.323696,47.633836],[-122.32360300000001,47.634065],[-122.323516,47.634296],[-122.323435,47.634528],[-122.32335999999999,47.634761],[-122.32332700000001,47.63487],[-122.323291,47.634994],[-122.323224,47.635241],[-122.323217,47.635268],[-122.323204,47.635317],[-122.32319699999999,47.635343],[-122.32319099999999,47.635369],[-122.323184,47.635395],[-122.323178,47.635421],[-122.323171,47.635447],[-122.323165,47.635474],[-122.323159,47.6355],[-122.32315199999999,47.635526],[-122.32314599999999,47.635552],[-122.32314,47.635579],[-122.323134,47.635605],[-122.323128,47.635631],[-122.323123,47.635657],[-122.323117,47.635684],[-122.323111,47.63571],[-122.323106,47.635736],[-122.3231,47.635762],[-122.323095,47.635789],[-122.32308999999999,47.635815],[-122.32308500000001,47.635841],[-122.32307900000001,47.635868],[-122.323075,47.635894],[-122.323069,47.63592],[-122.323064,47.635947],[-122.32306,47.635973],[-122.323055,47.635999],[-122.32304999999999,47.636026],[-122.32304600000001,47.636052],[-122.323041,47.636079],[-122.323037,47.636105],[-122.323033,47.636131],[-122.32302799999999,47.636158],[-122.323024,47.636184],[-122.32302,47.636211],[-122.323016,47.636237],[-122.32301200000001,47.636263],[-122.323008,47.63629],[-122.32300499999999,47.636316],[-122.323001,47.636343],[-122.322997,47.636369],[-122.32299399999999,47.636396],[-122.322991,47.636422],[-122.322988,47.636448],[-122.32298400000001,47.636475],[-122.322981,47.636501],[-122.32297800000001,47.636528],[-122.322975,47.636554],[-122.32297199999999,47.636581],[-122.322969,47.636607],[-122.32296599999999,47.636634],[-122.322964,47.63666],[-122.32296100000001,47.636687],[-122.322959,47.636713],[-122.322956,47.63674],[-122.322954,47.636766],[-122.322951,47.636793],[-122.32294899999999,47.636819],[-122.322947,47.636846],[-122.322945,47.636872],[-122.32290999999999,47.638448],[-122.322881,47.639717]]],[[[-122.31336899999999,47.614251],[-122.314419,47.613811],[-122.315113,47.613523],[-122.316141,47.613103],[-122.316659,47.612919],[-122.31675199999999,47.612896],[-122.319063,47.612934],[-122.319442,47.612941],[-122.31945,47.614089],[-122.313697,47.614114],[-122.31336899999999,47.614251]]],[[[-122.328757,47.613531],[-122.330603,47.612764],[-122.330343,47.613395],[-122.329881,47.614429],[-122.329465,47.613981],[-122.32896700000001,47.613444],[-122.328757,47.613531]]]],"type":"MultiPolygon"} +},{ + "id": 102147409, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":191264.816806, + "geom:bbox":"-122.420303,37.777382,-122.413727,37.782318", + "geom:latitude":37.779731, + "geom:longitude":-122.41752, + "iso:country":"US", + "lbl:latitude":37.779297, + "lbl:longitude":-122.418443, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:bar_x_preferred":[ + "Civic Centre" + ], + "name:cat_x_preferred":[ + "centre c\u00edvic" + ], + "name:deu_x_preferred":[ + "Civic Center" + ], + "name:eng_x_preferred":[ + "Civic Center" + ], + "name:eng_x_variant":[ + "civic center" + ], + "name:fra_x_preferred":[ + "zone administrative" + ], + "name:jpn_x_preferred":[ + "\u30aa\u30d5\u30a3\u30b9\u8857" + ], + "name:por_x_preferred":[ + "Downtown" + ], + "name:ron_x_preferred":[ + "Centru civic" + ], + "name:vie_x_preferred":[ + "trung t\u00e2m h\u00e0nh ch\u00ednh" + ], + "name:zho_x_preferred":[ + "The Yo" + ], + "name:zho_x_variant":[ + "\u5e02\u6c11\u4e2d\u5fc3" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wd:wordcount":449, + "wof:belongsto":[ + 85866841, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6583066" + }, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"80bdb7b60ba577c001f841086b1a2f67", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147409, + "neighbourhood_id":85866841, + "region_id":85688637 + } + ], + "wof:id":102147409, + "wof:lastmodified":1566610060, + "wof:name":"Civic Center", + "wof:parent_id":85866841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.420303, + 37.777382, + -122.413727, + 37.782318 +], + "geometry": {"coordinates":[[[-122.414856,37.778732],[-122.416191,37.77763],[-122.416512,37.777802],[-122.41967,37.777382],[-122.420303,37.780548],[-122.419449,37.780659],[-122.41954800000001,37.78117],[-122.419281,37.7812],[-122.419449,37.782051],[-122.41731299999999,37.782318],[-122.417152,37.781528],[-122.416206,37.781639],[-122.41600800000001,37.780701],[-122.413849,37.78096],[-122.41372699999999,37.780201],[-122.41516900000001,37.78001],[-122.415192,37.780094],[-122.416939,37.779873],[-122.41682400000001,37.779247],[-122.415077,37.779469],[-122.4151,37.779617],[-122.41428399999999,37.779716],[-122.413979,37.779449],[-122.414856,37.778732]]],"type":"Polygon"} +},{ + "id": 102147411, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":4940.984659, + "geom:bbox":"-122.413849,37.779903,-122.41259,37.780994", + "geom:latitude":37.780421, + "geom:longitude":-122.413355, + "iso:country":"US", + "lbl:latitude":37.780183, + "lbl:longitude":-122.413422, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Fecal Fountain" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"f6722062e3cba972f61f38d845e11f9e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147411, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147411, + "wof:lastmodified":1566610061, + "wof:name":"Fecal Fountain", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.413849, + 37.779903, + -122.41259, + 37.780994 +], + "geometry": {"coordinates":[[[-122.41258999999999,37.78056],[-122.41278800000001,37.780708],[-122.413223,37.780418],[-122.413483,37.780373],[-122.413605,37.780994],[-122.413849,37.780964],[-122.413719,37.780205],[-122.41345200000001,37.779903],[-122.41258999999999,37.78056]]],"type":"Polygon"} +},{ + "id": 102147413, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":2086.848562, + "geom:bbox":"-122.415848,37.782501,-122.415283,37.78299", + "geom:latitude":37.782745, + "geom:longitude":-122.415565, + "iso:country":"US", + "lbl:latitude":37.782741, + "lbl:longitude":-122.415601, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Le march\u00e9" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"5da726edb61c885f8c25f5b54d52b92f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147413, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147413, + "wof:lastmodified":1566610059, + "wof:name":"Le march\u00e9", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.415848, + 37.782501, + -122.415283, + 37.78299 +], + "geometry": {"coordinates":[[[-122.41577100000001,37.782501],[-122.415848,37.782928],[-122.415359,37.78299],[-122.415283,37.782562],[-122.41577100000001,37.782501]]],"type":"Polygon"} +},{ + "id": 102147415, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":56310.236538, + "geom:bbox":"-122.419357,37.782742,-122.415863,37.785851", + "geom:latitude":37.784286, + "geom:longitude":-122.417314, + "iso:country":"US", + "lbl:latitude":37.784237, + "lbl:longitude":-122.417314, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Little Saigon" + ], + "name:epo_x_preferred":[ + "vjetnama kvartalo" + ], + "name:fra_x_preferred":[ + "Little Saigon" + ], + "name:ind_x_preferred":[ + "Little Saigon" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30c8\u30eb\u30b5\u30a4\u30b4\u30f3" + ], + "name:nld_x_preferred":[ + "Little Saigon" + ], + "name:vie_x_preferred":[ + "Little S\u00e0i G\u00f2n" + ], + "name:zho_x_preferred":[ + "\u5c0f\u897f\u8ca2" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wd:wordcount":5534, + "wof:belongsto":[ + 85882193, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3113369" + }, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"6cadd073a2a6d90d3eea6d6c6d9b1946", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147415, + "neighbourhood_id":85882193, + "region_id":85688637 + } + ], + "wof:id":102147415, + "wof:lastmodified":1566610060, + "wof:name":"Little Saigon", + "wof:parent_id":85882193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.419357, + 37.782742, + -122.415863, + 37.785851 +], + "geometry": {"coordinates":[[[-122.416893,37.782791],[-122.417389,37.782742],[-122.417511,37.783321],[-122.41831999999999,37.783218],[-122.418404,37.783649],[-122.419273,37.783539],[-122.41935700000001,37.784069],[-122.418533,37.784168],[-122.41860200000001,37.784599],[-122.41748,37.785236],[-122.41757200000001,37.78569],[-122.416344,37.785851],[-122.415863,37.783482],[-122.417,37.783352],[-122.416893,37.782791]]],"type":"Polygon"} +},{ + "id": 102147419, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":11911.741262, + "geom:bbox":"-122.414497,37.781239,-122.413399,37.783348", + "geom:latitude":37.782416, + "geom:longitude":-122.413961, + "iso:country":"US", + "lbl:latitude":37.782376, + "lbl:longitude":-122.413975, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Pill Hill" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wd:wordcount":81, + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"17b839051238d7d72ad6a4f4b85b5055", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147419, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147419, + "wof:lastmodified":1566610061, + "wof:name":"Pill Hill", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.414497, + 37.781239, + -122.413399, + 37.783348 +], + "geometry": {"coordinates":[[[-122.413399,37.781239],[-122.41422300000001,37.78186],[-122.414497,37.783264],[-122.413826,37.783348],[-122.413399,37.781239]]],"type":"Polygon"} +},{ + "id": 102147421, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":10570.973736, + "geom:bbox":"-122.419533,37.7845,-122.41748,37.78569", + "geom:latitude":37.785044, + "geom:longitude":-122.418461, + "iso:country":"US", + "lbl:latitude":37.785015, + "lbl:longitude":-122.418406, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Naked Hood" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85882193, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"2253fc1d34f20bc2662950d81b3545e3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147421, + "neighbourhood_id":85882193, + "region_id":85688637 + } + ], + "wof:id":102147421, + "wof:lastmodified":1566610061, + "wof:name":"The Naked Hood", + "wof:parent_id":85882193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.419533, + 37.7845, + -122.41748, + 37.78569 +], + "geometry": {"coordinates":[[[-122.419533,37.784981],[-122.419434,37.7845],[-122.41861,37.784607],[-122.41748,37.785236],[-122.41757200000001,37.78569],[-122.41796100000001,37.785641],[-122.41870900000001,37.785084],[-122.419533,37.784981]]],"type":"Polygon"} +},{ + "id": 102147423, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":14028.218955, + "geom:bbox":"-122.416199,37.780701,-122.413605,37.78167", + "geom:latitude":37.781157, + "geom:longitude":-122.415169, + "iso:country":"US", + "lbl:latitude":37.781152, + "lbl:longitude":-122.415266, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Bar" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"d2363bd756f05ac4599f6b71d9538b56", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147423, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147423, + "wof:lastmodified":1566610060, + "wof:name":"The Bar", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.416199, + 37.780701, + -122.413605, + 37.78167 +], + "geometry": {"coordinates":[[[-122.413605,37.780998],[-122.41600800000001,37.780701],[-122.41619900000001,37.781639],[-122.415977,37.78167],[-122.41364299999999,37.781151],[-122.413605,37.780998]]],"type":"Polygon"} +},{ + "id": 102147427, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":26789.787397, + "geom:bbox":"-122.41967,37.775314,-122.417587,37.777599", + "geom:latitude":37.776644, + "geom:longitude":-122.418751, + "iso:country":"US", + "lbl:latitude":37.776699, + "lbl:longitude":-122.418741, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Nipple" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85866841, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"f7821f7ff45e43ed3edb0820db986202", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147427, + "neighbourhood_id":85866841, + "region_id":85688637 + } + ], + "wof:id":102147427, + "wof:lastmodified":1566610062, + "wof:name":"The Nipple", + "wof:parent_id":85866841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41967, + 37.775314, + -122.417587, + 37.777599 +], + "geometry": {"coordinates":[[[-122.41925000000001,37.775314],[-122.41967,37.777382],[-122.41806800000001,37.777599],[-122.417908,37.776794],[-122.417587,37.776581],[-122.41925000000001,37.775314]]],"type":"Polygon"} +},{ + "id": 102147429, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":164881.845588, + "geom:bbox":"-122.410233,37.7845,-122.404633,37.789539", + "geom:latitude":37.787265, + "geom:longitude":-122.407277, + "iso:country":"US", + "lbl:latitude":37.787291, + "lbl:longitude":-122.406663, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Tenderloin East" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85866851, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"4dec4d230c6f605e5c26e5df3e9c353e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147429, + "neighbourhood_id":85866851, + "region_id":85688637 + } + ], + "wof:id":102147429, + "wof:lastmodified":1566610062, + "wof:name":"Tenderloin East", + "wof:parent_id":85866851, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.410233, + 37.7845, + -122.404633, + 37.789539 +], + "geometry": {"coordinates":[[[-122.407532,37.784519],[-122.407669,37.784618],[-122.408539,37.7845],[-122.40870700000001,37.785412],[-122.40889,37.785839],[-122.408981,37.78632],[-122.409302,37.786282],[-122.409401,37.786831],[-122.40979799999999,37.786781],[-122.40986599999999,37.787151],[-122.40821800000001,37.787361],[-122.408401,37.788288],[-122.410049,37.788078],[-122.41023300000001,37.788952],[-122.40540300000001,37.789539],[-122.404877,37.786861],[-122.404633,37.786781],[-122.407532,37.784519]]],"type":"Polygon"} +},{ + "id": 102147431, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":97347.016267, + "geom:bbox":"-122.41288,37.784389,-122.408234,37.788952", + "geom:latitude":37.786789, + "geom:longitude":-122.410422, + "iso:country":"US", + "lbl:latitude":37.78733, + "lbl:longitude":-122.410576, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Panhandle" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865905, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"3ac62f690ee4294d5926dce890479e8a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147431, + "neighbourhood_id":85865905, + "region_id":85688637 + } + ], + "wof:id":102147431, + "wof:lastmodified":1566610061, + "wof:name":"The Panhandle", + "wof:parent_id":85865905, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41288, + 37.784389, + -122.408234, + 37.788952 +], + "geometry": {"coordinates":[[[-122.408546,37.7845],[-122.40934799999999,37.784389],[-122.409531,37.785301],[-122.41120100000001,37.78508],[-122.411362,37.785969],[-122.412178,37.78587],[-122.412392,37.7869],[-122.412819,37.78685],[-122.41288,37.787201],[-122.412201,37.787281],[-122.412239,37.787498],[-122.41197200000001,37.787529],[-122.41203299999999,37.78783],[-122.412712,37.78775],[-122.412758,37.78801],[-122.411728,37.788139],[-122.41168999999999,37.787899],[-122.410843,37.787998],[-122.41100299999999,37.78886],[-122.41023300000001,37.788952],[-122.410049,37.788078],[-122.408401,37.78828],[-122.40823399999999,37.787361],[-122.409882,37.787159],[-122.409813,37.786839],[-122.41007999999999,37.786812],[-122.410049,37.786659],[-122.410858,37.78656],[-122.410759,37.786079],[-122.409683,37.786221],[-122.40979,37.78677],[-122.409401,37.786819],[-122.409302,37.78627],[-122.408981,37.786308],[-122.40888200000001,37.785809],[-122.40870700000001,37.785412],[-122.408546,37.7845]]],"type":"Polygon"} +},{ + "id": 102147433, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":69278.862302, + "geom:bbox":"-122.420822,37.785419,-122.412323,37.787201", + "geom:latitude":37.786325, + "geom:longitude":-122.41626, + "iso:country":"US", + "lbl:latitude":37.786329, + "lbl:longitude":-122.416256, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Gimlet" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865905, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"baf568dc1168afbde58d6975b2474bfb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147433, + "neighbourhood_id":85865905, + "region_id":85688637 + } + ], + "wof:id":102147433, + "wof:lastmodified":1566610063, + "wof:name":"The Gimlet", + "wof:parent_id":85865905, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.420822, + 37.785419, + -122.412323, + 37.787201 +], + "geometry": {"coordinates":[[[-122.41902899999999,37.78598],[-122.420723,37.78577],[-122.420822,37.786259],[-122.412903,37.787201],[-122.41282699999999,37.786842],[-122.41239899999999,37.786888],[-122.412323,37.78651],[-122.413139,37.786411],[-122.412949,37.78545],[-122.41327699999999,37.785419],[-122.413437,37.786209],[-122.418938,37.785519],[-122.41902899999999,37.78598]]],"type":"Polygon"} +},{ + "id": 102147437, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":7938.209636, + "geom:bbox":"-122.41597,37.781044,-122.413132,37.781849", + "geom:latitude":37.781517, + "geom:longitude":-122.414436, + "iso:country":"US", + "lbl:latitude":37.781568, + "lbl:longitude":-122.414311, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Castle Triangle" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"21d8d4f0ddd7d1165061b572bbab5d15", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147437, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147437, + "wof:lastmodified":1566610060, + "wof:name":"The Castle Triangle", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41597, + 37.781044, + -122.413132, + 37.781849 +], + "geometry": {"coordinates":[[[-122.414207,37.781849],[-122.413132,37.781044],[-122.41597,37.781658],[-122.414207,37.781849]]],"type":"Polygon"} +},{ + "id": 102147439, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":14675.391488, + "geom:bbox":"-122.412704,37.783909,-122.410492,37.785156", + "geom:latitude":37.784515, + "geom:longitude":-122.411589, + "iso:country":"US", + "lbl:latitude":37.784552, + "lbl:longitude":-122.411477, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Pattinappalai" + ], + "name:eng_x_preferred":[ + "Tender Wasteland" + ], + "name:tam_x_preferred":[ + "\u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0ba9\u0baa\u0bcd \u0baa\u0bbe\u0bb2\u0bc8" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"a7b5c876afaf5e1988440346aa1208a8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147439, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147439, + "wof:lastmodified":1566610060, + "wof:name":"Tender Wasteland", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.412704, + 37.783909, + -122.410492, + 37.785156 +], + "geometry": {"coordinates":[[[-122.412598,37.783909],[-122.41270400000001,37.784424],[-122.411919,37.784531],[-122.412018,37.784969],[-122.411644,37.785015],[-122.410583,37.785156],[-122.410538,37.784962],[-122.410492,37.784767],[-122.411034,37.784695],[-122.410912,37.784142],[-122.411743,37.784031],[-122.412598,37.783909]]],"type":"Polygon"} +},{ + "id": 102147441, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":54376.82223, + "geom:bbox":"-122.418373,37.786579,-122.411987,37.788139", + "geom:latitude":37.78738, + "geom:longitude":-122.415427, + "iso:country":"US", + "lbl:latitude":37.787403, + "lbl:longitude":-122.415431, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Post Up" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85887435, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"ebe382562d9919cb76f7db5d5df88686", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147441, + "neighbourhood_id":85887435, + "region_id":85688637 + } + ], + "wof:id":102147441, + "wof:lastmodified":1566610059, + "wof:name":"The Post Up", + "wof:parent_id":85887435, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.418373, + 37.786579, + -122.411987, + 37.788139 +], + "geometry": {"coordinates":[[[-122.413239,37.78717],[-122.418182,37.786579],[-122.418373,37.78754],[-122.41345200000001,37.788139],[-122.41336099999999,37.78767],[-122.41301,37.787708],[-122.41306299999999,37.787979],[-122.412773,37.78801],[-122.412712,37.787739],[-122.412041,37.787823],[-122.411987,37.78754],[-122.41224699999999,37.78751],[-122.412209,37.787289],[-122.413239,37.78717]]],"type":"Polygon"} +},{ + "id": 102147443, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":9161.616245, + "geom:bbox":"-122.412361,37.781929,-122.410309,37.783569", + "geom:latitude":37.782557, + "geom:longitude":-122.411058, + "iso:country":"US", + "lbl:latitude":37.782927, + "lbl:longitude":-122.410693, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Tender Turnpike" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"b407ddae67072ca47813aab0625ec48b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147443, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147443, + "wof:lastmodified":1566610061, + "wof:name":"Tender Turnpike", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.412361, + 37.781929, + -122.410309, + 37.783569 +], + "geometry": {"coordinates":[[[-122.410622,37.783569],[-122.41100299999999,37.78352],[-122.410782,37.782391],[-122.412361,37.782181],[-122.412308,37.781929],[-122.41074399999999,37.782139],[-122.41065999999999,37.782089],[-122.410309,37.782372],[-122.410408,37.78244],[-122.410622,37.783569]]],"type":"Polygon"} +},{ + "id": 102147445, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":61454.683943, + "geom:bbox":"-122.42186,37.786182,-122.418205,37.788452", + "geom:latitude":37.787313, + "geom:longitude":-122.420032, + "iso:country":"US", + "lbl:latitude":37.787314, + "lbl:longitude":-122.420033, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Whoa-Man" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85882193, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"621d21d2d618ab1da2c202be362b568e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147445, + "neighbourhood_id":85882193, + "region_id":85688637 + } + ], + "wof:id":102147445, + "wof:lastmodified":1566610062, + "wof:name":"The Whoa-Man", + "wof:parent_id":85882193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.42186, + 37.786182, + -122.418205, + 37.788452 +], + "geometry": {"coordinates":[[[-122.418571,37.788452],[-122.42186,37.78804],[-122.42150100000001,37.786182],[-122.418205,37.786579],[-122.418571,37.788452]]],"type":"Polygon"} +},{ + "id": 102147447, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":7885.571495, + "geom:bbox":"-122.412834,37.787895,-122.410851,37.78854", + "geom:latitude":37.788231, + "geom:longitude":-122.411759, + "iso:country":"US", + "lbl:latitude":37.788316, + "lbl:longitude":-122.411808, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "BoHo Slope" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865905, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"09f38b422599bd246215cf76c3dea98d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147447, + "neighbourhood_id":85865905, + "region_id":85688637 + } + ], + "wof:id":102147447, + "wof:lastmodified":1566610059, + "wof:name":"BoHo Slope", + "wof:parent_id":85865905, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.412834, + 37.787895, + -122.410851, + 37.78854 +], + "geometry": {"coordinates":[[[-122.411812,37.78849],[-122.412834,37.788361],[-122.412766,37.788025],[-122.411728,37.788151],[-122.41168999999999,37.787895],[-122.41085099999999,37.787998],[-122.410927,37.788471],[-122.411423,37.788399],[-122.41145299999999,37.78854],[-122.411812,37.78849]]],"type":"Polygon"} +},{ + "id": 102147449, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":13420.969318, + "geom:bbox":"-122.411034,37.783352,-122.409149,37.785221", + "geom:latitude":37.784147, + "geom:longitude":-122.410261, + "iso:country":"US", + "lbl:latitude":37.783954, + "lbl:longitude":-122.410391, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "The Park" + ], + "name:eng_x_preferred":[ + "The Park" + ], + "name:swe_x_preferred":[ + "The Park" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wd:wordcount":152, + "wof:belongsto":[ + 85887445, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"29ba9c5f9afc6790e421766e588ef571", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147449, + "neighbourhood_id":85887445, + "region_id":85688637 + } + ], + "wof:id":102147449, + "wof:lastmodified":1566610059, + "wof:name":"The Park", + "wof:parent_id":85887445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.411034, + 37.783352, + -122.409149, + 37.785221 +], + "geometry": {"coordinates":[[[-122.410118,37.785221],[-122.410568,37.78516],[-122.410477,37.78476],[-122.411034,37.784698],[-122.410782,37.78355],[-122.409775,37.78368],[-122.40971399999999,37.783352],[-122.409149,37.783421],[-122.409256,37.783909],[-122.410004,37.783817],[-122.41011,37.78434],[-122.4104,37.784306],[-122.410477,37.784653],[-122.410011,37.78471],[-122.410118,37.785221]]],"type":"Polygon"} +},{ + "id": 102147451, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":8100.29789, + "geom:bbox":"-122.409348,37.783329,-122.408127,37.7845", + "geom:latitude":37.783994, + "geom:longitude":-122.408826, + "iso:country":"US", + "lbl:latitude":37.784024, + "lbl:longitude":-122.408839, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Forgotten Island" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85887445, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"d652292620b8354e556693808976c97a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147451, + "neighbourhood_id":85887445, + "region_id":85688637 + } + ], + "wof:id":102147451, + "wof:lastmodified":1566610063, + "wof:name":"Forgotten Island", + "wof:parent_id":85887445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.409348, + 37.783329, + -122.408127, + 37.7845 +], + "geometry": {"coordinates":[[[-122.40934799999999,37.784389],[-122.409149,37.783409],[-122.40902699999999,37.783329],[-122.40812699999999,37.784042],[-122.408531,37.784382],[-122.408546,37.7845],[-122.40934799999999,37.784389]]],"type":"Polygon"} +},{ + "id": 102147455, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":37529.582601, + "geom:bbox":"-122.413719,37.780369,-122.41066,37.78302", + "geom:latitude":37.781722, + "geom:longitude":-122.41265, + "iso:country":"US", + "lbl:latitude":37.781569, + "lbl:longitude":-122.412793, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Yo" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"65bdd7b67854401f27e98f55c63ba105", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147455, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147455, + "wof:lastmodified":1566610060, + "wof:name":"The Yo", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.413719, + 37.780369, + -122.41066, + 37.78302 +], + "geometry": {"coordinates":[[[-122.41258999999999,37.78056],[-122.41065999999999,37.782089],[-122.41072800000001,37.782131],[-122.412308,37.781929],[-122.412537,37.78302],[-122.413719,37.782879],[-122.413399,37.78125],[-122.41310900000001,37.781029],[-122.413635,37.781151],[-122.413483,37.780369],[-122.413231,37.780418],[-122.41278800000001,37.780708],[-122.41258999999999,37.78056]]],"type":"Polygon"} +},{ + "id": 102147457, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":10396.578342, + "geom:bbox":"-122.410461,37.783821,-122.409264,37.785294", + "geom:latitude":37.784519, + "geom:longitude":-122.40979, + "iso:country":"US", + "lbl:latitude":37.784458, + "lbl:longitude":-122.409737, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Rambles" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85887445, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"fa0dcbe5244066075fa9d745d95c0684", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147457, + "neighbourhood_id":85887445, + "region_id":85688637 + } + ], + "wof:id":102147457, + "wof:lastmodified":1566610063, + "wof:name":"The Rambles", + "wof:parent_id":85887445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.410461, + 37.783821, + -122.409264, + 37.785294 +], + "geometry": {"coordinates":[[[-122.409538,37.785294],[-122.410118,37.785221],[-122.410011,37.78471],[-122.410461,37.784653],[-122.4104,37.784309],[-122.41011,37.784348],[-122.410004,37.783821],[-122.40926399999999,37.783909],[-122.409538,37.785294]]],"type":"Polygon"} +},{ + "id": 102147459, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":93180.929463, + "geom:bbox":"-122.415863,37.782181,-122.410782,37.7855", + "geom:latitude":37.783887, + "geom:longitude":-122.413085, + "iso:country":"US", + "lbl:latitude":37.784278, + "lbl:longitude":-122.413686, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Sit/Lie" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"8ffac3705cc4c5d1358f1ed190e72297", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147459, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147459, + "wof:lastmodified":1566610063, + "wof:name":"The Sit/Lie", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.415863, + 37.782181, + -122.410782, + 37.7855 +], + "geometry": {"coordinates":[[[-122.41098,37.783421],[-122.41078899999999,37.782391],[-122.41235399999999,37.782181],[-122.412537,37.78302],[-122.413719,37.782879],[-122.41381800000001,37.783352],[-122.414497,37.78326],[-122.41445899999999,37.783112],[-122.415756,37.782944],[-122.415863,37.783482],[-122.415291,37.78355],[-122.41538199999999,37.783981],[-122.415009,37.784031],[-122.415199,37.78503],[-122.411278,37.7855],[-122.41120100000001,37.785069],[-122.412018,37.784962],[-122.411919,37.784519],[-122.412712,37.78442],[-122.412598,37.783901],[-122.410912,37.78413],[-122.410782,37.783539],[-122.41100299999999,37.78352],[-122.41098,37.783421]]],"type":"Polygon"} +},{ + "id": 102147461, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":31177.226563, + "geom:bbox":"-122.415382,37.78503,-122.411278,37.786499", + "geom:latitude":37.785703, + "geom:longitude":-122.413512, + "iso:country":"US", + "lbl:latitude":37.785674, + "lbl:longitude":-122.413849, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Delicious Fields" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"62c3cc603542a495d9c4cfdcb13c1ea8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147461, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147461, + "wof:lastmodified":1566610063, + "wof:name":"Delicious Fields", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.415382, + 37.78503, + -122.411278, + 37.786499 +], + "geometry": {"coordinates":[[[-122.411362,37.785961],[-122.411278,37.785511],[-122.415199,37.78503],[-122.41538199999999,37.785969],[-122.41345200000001,37.786201],[-122.413292,37.785412],[-122.412941,37.78545],[-122.413132,37.786404],[-122.412323,37.786499],[-122.412193,37.785858],[-122.411362,37.785961]]],"type":"Polygon"} +},{ + "id": 102147463, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":137690.589689, + "geom:bbox":"-122.422043,37.78754,-122.410469,37.790489", + "geom:latitude":37.788988, + "geom:longitude":-122.416575, + "iso:country":"US", + "lbl:latitude":37.788692, + "lbl:longitude":-122.416971, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Tenderloin Heights" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85887435, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"0a1551e4bb056c5f336c381d1b3904df", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147463, + "neighbourhood_id":85887435, + "region_id":85688637 + } + ], + "wof:id":102147463, + "wof:lastmodified":1566610060, + "wof:name":"Tenderloin Heights", + "wof:parent_id":85887435, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.422043, + 37.78754, + -122.410469, + 37.790489 +], + "geometry": {"coordinates":[[[-122.414001,37.788078],[-122.418381,37.78754],[-122.418571,37.78846],[-122.421852,37.78804],[-122.422043,37.789021],[-122.410568,37.790489],[-122.41046900000001,37.789928],[-122.412086,37.789719],[-122.412018,37.78933],[-122.41570299999999,37.788872],[-122.415604,37.78833],[-122.41409299999999,37.788509],[-122.414001,37.788078]]],"type":"Polygon"} +},{ + "id": 102147465, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":70666.648803, + "geom:bbox":"-122.415688,37.787678,-122.408058,37.790211", + "geom:latitude":37.789095, + "geom:longitude":-122.411597, + "iso:country":"US", + "lbl:latitude":37.789364, + "lbl:longitude":-122.410958, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Academy Downs" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865905, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"cbedc5e12b4b3afac391931e2809632f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147465, + "neighbourhood_id":85865905, + "region_id":85688637 + } + ], + "wof:id":102147465, + "wof:lastmodified":1566610061, + "wof:name":"Academy Downs", + "wof:parent_id":85865905, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.415688, + 37.787678, + -122.408058, + 37.790211 +], + "geometry": {"coordinates":[[[-122.415688,37.788872],[-122.415588,37.788342],[-122.414078,37.788521],[-122.414001,37.788078],[-122.41345200000001,37.788151],[-122.413353,37.787678],[-122.413033,37.78772],[-122.413078,37.787987],[-122.412773,37.788025],[-122.412842,37.788361],[-122.41145299999999,37.78854],[-122.411423,37.78841],[-122.410927,37.788471],[-122.41100299999999,37.78886],[-122.408058,37.789211],[-122.40825700000001,37.790211],[-122.41207900000001,37.789719],[-122.412003,37.789322],[-122.415688,37.788872]]],"type":"Polygon"} +},{ + "id": 102147467, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":53657.388593, + "geom:bbox":"-122.410568,37.789215,-122.405403,37.7911", + "geom:latitude":37.7902, + "geom:longitude":-122.407458, + "iso:country":"US", + "lbl:latitude":37.790107, + "lbl:longitude":-122.407276, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The French Swell" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85866851, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"99965fc84425020864a15f7397cf9425", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147467, + "neighbourhood_id":85866851, + "region_id":85688637 + } + ], + "wof:id":102147467, + "wof:lastmodified":1566610062, + "wof:name":"The French Swell", + "wof:parent_id":85866851, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.410568, + 37.789215, + -122.405403, + 37.7911 +], + "geometry": {"coordinates":[[[-122.410568,37.790489],[-122.410461,37.789928],[-122.40825700000001,37.790218],[-122.40806600000001,37.789215],[-122.40540300000001,37.789543],[-122.405693,37.7911],[-122.410568,37.790489]]],"type":"Polygon"} +},{ + "id": 102147469, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":111502.955849, + "geom:bbox":"-122.421494,37.78056,-122.417313,37.786251", + "geom:latitude":37.783592, + "geom:longitude":-122.419718, + "iso:country":"US", + "lbl:latitude":37.782866, + "lbl:longitude":-122.41986, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u062d\u0646\u0629" + ], + "name:arg_x_preferred":[ + "Santa Ana" + ], + "name:arz_x_preferred":[ + "\u062d\u0646\u0647" + ], + "name:bel_x_preferred":[ + "\u0421\u0432\u044f\u0442\u0430\u044f \u0413\u0430\u043d\u043d\u0430" + ], + "name:bos_x_preferred":[ + "Hana bint Fakud" + ], + "name:bre_x_preferred":[ + "Santez Anna" + ], + "name:bul_x_preferred":[ + "\u0410\u043d\u043d\u0430" + ], + "name:cat_x_preferred":[ + "Santa Anna" + ], + "name:ces_x_preferred":[ + "Svat\u00e1 Anna" + ], + "name:che_x_preferred":[ + "\u0425\u044c\u0430\u043d\u043d\u0430\u0442" + ], + "name:cym_x_preferred":[ + "Ann" + ], + "name:dan_x_preferred":[ + "Sankt Anna" + ], + "name:deu_x_preferred":[ + "Anna" + ], + "name:ell_x_preferred":[ + "\u0391\u03b3\u03af\u03b1 \u0386\u03bd\u03bd\u03b1" + ], + "name:eng_x_preferred":[ + "Saint Anne's" + ], + "name:eng_x_variant":[ + "Saint Anne" + ], + "name:epo_x_preferred":[ + "Sankta Anna" + ], + "name:est_x_preferred":[ + "Anna" + ], + "name:eus_x_preferred":[ + "Ana" + ], + "name:fas_x_preferred":[ + "\u062d\u0646\u0627" + ], + "name:fin_x_preferred":[ + "Pyh\u00e4 Anna" + ], + "name:fra_x_preferred":[ + "Anne" + ], + "name:fry_x_preferred":[ + "Anna" + ], + "name:gle_x_preferred":[ + "Naomh \u00c1ine" + ], + "name:gsw_x_preferred":[ + "St. Anna" + ], + "name:heb_x_preferred":[ + "\u05d0\u05e0\u05d4 \u05d4\u05e7\u05d3\u05d5\u05e9\u05d4" + ], + "name:hun_x_preferred":[ + "Szent Anna" + ], + "name:hye_x_preferred":[ + "\u0531\u0576\u0576\u0561" + ], + "name:ind_x_preferred":[ + "Anna" + ], + "name:ita_x_preferred":[ + "Anna" + ], + "name:jav_x_preferred":[ + "Anna" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30f3\u30ca" + ], + "name:kat_x_preferred":[ + "\u10ec\u10db\u10d8\u10dc\u10d3\u10d0 \u10d0\u10dc\u10d0" + ], + "name:kor_x_preferred":[ + "\uc548\ub098" + ], + "name:lat_x_preferred":[ + "Anna" + ], + "name:lav_x_preferred":[ + "Sv\u0113t\u0101 Anna" + ], + "name:lim_x_preferred":[ + "Anna" + ], + "name:lin_x_preferred":[ + "Santu Anna" + ], + "name:mal_x_preferred":[ + "\u0d35\u0d3f\u0d36\u0d41\u0d26\u0d4d\u0d27 \u0d05\u0d28\u0d4d\u0d28" + ], + "name:msa_x_preferred":[ + "Hana" + ], + "name:nld_x_preferred":[ + "Anna" + ], + "name:nob_x_preferred":[ + "Anna av Jerusalem" + ], + "name:nrm_x_preferred":[ + "\u00c2one" + ], + "name:pol_x_preferred":[ + "\u015awi\u0119ta Anna" + ], + "name:por_x_preferred":[ + "Santa Ana" + ], + "name:ron_x_preferred":[ + "Sf\u00e2nta Ana" + ], + "name:rus_x_preferred":[ + "\u0421\u0432\u044f\u0442\u0430\u044f \u0410\u043d\u043d\u0430" + ], + "name:scn_x_preferred":[ + "Sant'Anna" + ], + "name:sco_x_preferred":[ + "Saunt Anne" + ], + "name:slk_x_preferred":[ + "Anna" + ], + "name:slv_x_preferred":[ + "sveta Ana" + ], + "name:spa_x_preferred":[ + "Ana" + ], + "name:srp_x_preferred":[ + "\u0421\u0432\u0435\u0442\u0430 \u0410\u043d\u0430" + ], + "name:swa_x_preferred":[ + "Ana" + ], + "name:swe_x_preferred":[ + "Anna" + ], + "name:tgl_x_preferred":[ + "Santa Ana" + ], + "name:tha_x_preferred":[ + "\u0e19\u0e31\u0e01\u0e1a\u0e38\u0e0d\u0e2d\u0e31\u0e19\u0e19\u0e32" + ], + "name:tur_x_preferred":[ + "Hanne" + ], + "name:ukr_x_preferred":[ + "\u0421\u0432\u044f\u0442\u0430 \u0410\u043d\u043d\u0430" + ], + "name:urd_x_preferred":[ + "\u062d\u0646\u0627" + ], + "name:vec_x_preferred":[ + "Santi Ana e Joachin" + ], + "name:vie_x_preferred":[ + "Sveta Ana" + ], + "name:zho_x_preferred":[ + "\u8056\u5b89\u59ae" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wd:wordcount":2310, + "wof:belongsto":[ + 85882193, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q164294" + }, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"be792148a3db41571ada80358eb97723", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147469, + "neighbourhood_id":85882193, + "region_id":85688637 + } + ], + "wof:id":102147469, + "wof:lastmodified":1566610062, + "wof:name":"Saint Anne's", + "wof:parent_id":85882193, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.421494, + 37.78056, + -122.417313, + 37.786251 +], + "geometry": {"coordinates":[[[-122.417976,37.785629],[-122.418953,37.785511],[-122.419037,37.785973],[-122.420738,37.78577],[-122.42083,37.786251],[-122.421494,37.786171],[-122.420303,37.78056],[-122.419449,37.78067],[-122.419563,37.781181],[-122.41928900000001,37.781212],[-122.419456,37.782051],[-122.41731299999999,37.78233],[-122.417511,37.78331],[-122.41832700000001,37.783211],[-122.41841100000001,37.783642],[-122.419273,37.783531],[-122.41937299999999,37.784081],[-122.418533,37.784168],[-122.41861,37.784599],[-122.41944100000001,37.7845],[-122.419533,37.784981],[-122.41870900000001,37.78508],[-122.417976,37.785629]]],"type":"Polygon"} +},{ + "id": 102147473, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":40201.764077, + "geom:bbox":"-122.417381,37.781521,-122.414223,37.78347", + "geom:latitude":37.782405, + "geom:longitude":-122.415894, + "iso:country":"US", + "lbl:latitude":37.782326, + "lbl:longitude":-122.416393, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Deli Hills" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"d64c0a7c996853be4a178dd43bcf2652", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147473, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147473, + "wof:lastmodified":1566610062, + "wof:name":"Deli Hills", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.417381, + 37.781521, + -122.414223, + 37.78347 +], + "geometry": {"coordinates":[[[-122.41445899999999,37.783112],[-122.41422300000001,37.781841],[-122.417152,37.781521],[-122.41738100000001,37.78273],[-122.416901,37.782787],[-122.417,37.78334],[-122.415863,37.78347],[-122.415756,37.78294],[-122.415863,37.782928],[-122.41577100000001,37.782501],[-122.41527600000001,37.782562],[-122.415359,37.78299],[-122.41445899999999,37.783112]]],"type":"Polygon"} +},{ + "id": 102147475, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":20534.067037, + "geom:bbox":"-122.416344,37.783489,-122.415016,37.785969", + "geom:latitude":37.784806, + "geom:longitude":-122.41567, + "iso:country":"US", + "lbl:latitude":37.784839, + "lbl:longitude":-122.415658, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Hydeaway" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"8c95609114c678be8eca3ff977306928", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147475, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147475, + "wof:lastmodified":1566610061, + "wof:name":"The Hydeaway", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.416344, + 37.783489, + -122.415016, + 37.785969 +], + "geometry": {"coordinates":[[[-122.416344,37.785851],[-122.41585499999999,37.783489],[-122.415306,37.783558],[-122.41539,37.783981],[-122.41501599999999,37.784031],[-122.415398,37.785969],[-122.416344,37.785851]]],"type":"Polygon"} +},{ + "id": 102147477, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":10315.892304, + "geom:bbox":"-122.410614,37.782372,-122.409042,37.78368", + "geom:latitude":37.783124, + "geom:longitude":-122.41001, + "iso:country":"US", + "lbl:latitude":37.783099, + "lbl:longitude":-122.410067, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Off Market" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85887445, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"dddb8e9d276bf345cb37f0055e2d5851", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147477, + "neighbourhood_id":85887445, + "region_id":85688637 + } + ], + "wof:id":102147477, + "wof:lastmodified":1566610059, + "wof:name":"Off Market", + "wof:parent_id":85887445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.410614, + 37.782372, + -122.409042, + 37.78368 +], + "geometry": {"coordinates":[[[-122.409775,37.78368],[-122.410614,37.783569],[-122.410408,37.782444],[-122.410309,37.782372],[-122.409042,37.783333],[-122.409164,37.783417],[-122.40971399999999,37.783348],[-122.409775,37.78368]]],"type":"Polygon"} +},{ + "id": 102147479, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":7233.103882, + "geom:bbox":"-122.415169,37.779453,-122.413452,37.780201", + "geom:latitude":37.779874, + "geom:longitude":-122.414288, + "iso:country":"US", + "lbl:latitude":37.779859, + "lbl:longitude":-122.413964, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Ghost Market" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865903, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"90fbb7d50f868b62af6398ada8c4c782", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147479, + "neighbourhood_id":85865903, + "region_id":85688637 + } + ], + "wof:id":102147479, + "wof:lastmodified":1566610059, + "wof:name":"Ghost Market", + "wof:parent_id":85865903, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.415169, + 37.779453, + -122.413452, + 37.780201 +], + "geometry": {"coordinates":[[[-122.41345200000001,37.7799],[-122.41372699999999,37.780201],[-122.41516900000001,37.780006],[-122.415131,37.779781],[-122.4151,37.779617],[-122.414276,37.779724],[-122.41398599999999,37.779453],[-122.41345200000001,37.7799]]],"type":"Polygon"} +},{ + "id": 102147481, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":10892.102201, + "geom:bbox":"-122.416939,37.779251,-122.415077,37.780094", + "geom:latitude":37.779672, + "geom:longitude":-122.416007, + "iso:country":"US", + "lbl:latitude":37.779674, + "lbl:longitude":-122.415988, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:bel_x_variant":[ + "\u0413\u0440\u043e\u0448\u0430\u0432\u044b\u0431\u0456\u0432\u0430\u043b\u044c\u043d\u044b \u043a\u0430\u0434\u0430\u0440" + ], + "name:deu_x_preferred":[ + "Money shot" + ], + "name:eng_x_preferred":[ + "The Money Shot" + ], + "name:eng_x_variant":[ + "money shot" + ], + "name:fas_x_preferred":[ + "\u0645\u0627\u0646\u06cc\u200c\u0634\u0627\u062a" + ], + "name:fra_x_preferred":[ + "Money shot" + ], + "name:jpn_x_preferred":[ + "\u30de\u30cd\u30fc\u30b7\u30e7\u30c3\u30c8" + ], + "name:nld_x_preferred":[ + "Money shot" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wd:wordcount":830, + "wof:belongsto":[ + 85866841, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6899287" + }, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"5e24262f9910e875086bb8ed5c9fe02f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147481, + "neighbourhood_id":85866841, + "region_id":85688637 + } + ], + "wof:id":102147481, + "wof:lastmodified":1566610061, + "wof:name":"The Money Shot", + "wof:parent_id":85866841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.416939, + 37.779251, + -122.415077, + 37.780094 +], + "geometry": {"coordinates":[[[-122.415192,37.780094],[-122.416939,37.779873],[-122.41682400000001,37.779251],[-122.415077,37.779469],[-122.415192,37.780094]]],"type":"Polygon"} +},{ + "id": 102147483, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0, + "geom:area_square_m":2964.915789, + "geom:bbox":"-122.408546,37.784046,-122.407539,37.784622", + "geom:latitude":37.784386, + "geom:longitude":-122.408065, + "iso:country":"US", + "lbl:latitude":37.784335, + "lbl:longitude":-122.408101, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "The Loin Pit" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85887445, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"e8df48114e51e7bd371a2b123df5bb10", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147483, + "neighbourhood_id":85887445, + "region_id":85688637 + } + ], + "wof:id":102147483, + "wof:lastmodified":1566610059, + "wof:name":"The Loin Pit", + "wof:parent_id":85887445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.408546, + 37.784046, + -122.407539, + 37.784622 +], + "geometry": {"coordinates":[[[-122.408546,37.7845],[-122.408524,37.784386],[-122.408119,37.784046],[-122.407539,37.784527],[-122.40767700000001,37.784622],[-122.408546,37.7845]]],"type":"Polygon"} +},{ + "id": 102147485, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":5406.4848, + "geom:bbox":"-122.410851,37.786091,-122.409683,37.786831", + "geom:latitude":37.786415, + "geom:longitude":-122.410239, + "iso:country":"US", + "lbl:latitude":37.786386, + "lbl:longitude":-122.410285, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Rental Row" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85865905, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"f45e1efbfc5f0512937e51a66c223f57", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147485, + "neighbourhood_id":85865905, + "region_id":85688637 + } + ], + "wof:id":102147485, + "wof:lastmodified":1566610059, + "wof:name":"Rental Row", + "wof:parent_id":85865905, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.410851, + 37.786091, + -122.409683, + 37.786831 +], + "geometry": {"coordinates":[[[-122.40992,37.786819],[-122.410072,37.7868],[-122.410042,37.786655],[-122.41085099999999,37.786556],[-122.410751,37.786091],[-122.409683,37.786221],[-122.40979799999999,37.786831],[-122.40992,37.786819]]],"type":"Polygon"} +},{ + "id": 1024608979, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000293, + "geom:area_square_m":2703796.100948, + "geom:bbox":"-87.6010319719,41.6858748829,-87.5766430946,41.703404207", + "geom:latitude":41.693965, + "geom:longitude":-87.587434, + "iso:country":"US", + "lbl:latitude":41.695154, + "lbl:longitude":-87.587434, + "lbl:max_zoom":18.0, + "mps:latitude":41.695154, + "mps:longitude":-87.587434, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":41.695154, + "reversegeo:longitude":-87.587434, + "src:geom":"mz", + "wof:belongsto":[ + 1024497067, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"57582e928579d52b9b225e5f4e77def3", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024608979, + "neighbourhood_id":1024497067, + "region_id":85688697 + } + ], + "wof:id":1024608979, + "wof:lastmodified":1566610043, + "wof:name":"Harborside International Golf Course", + "wof:parent_id":1024497067, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -87.6010319718918, + 41.68587488289115, + -87.576643094557, + 41.70340420698537 +], + "geometry": {"coordinates":[[[[-87.59009319019044,41.70340420698537],[-87.58893285956145,41.70266784853315],[-87.58299698666816,41.70251180026356],[-87.58140851364034,41.70286143449836],[-87.576643094557,41.69536438365804],[-87.57664309455701,41.68687984219404],[-87.58717717884655,41.6876854878085],[-87.59440891131513,41.68749818621448],[-87.59545395935973,41.68587488289115],[-87.6010319718918,41.68731183347267],[-87.6010319232733,41.687311928013],[-87.60095054690206,41.68746819738385],[-87.60094266680007,41.68748332976885],[-87.60081801902163,41.6877226904416],[-87.60069388790558,41.68796105834353],[-87.60069286418828,41.68796288891302],[-87.600596989538,41.6881342665337],[-87.6005950377515,41.6881378181527],[-87.60047261420129,41.6883606217792],[-87.6003424325979,41.6886017043492],[-87.60034243231719,41.68860170480586],[-87.60029586616865,41.68867745824208],[-87.60029274784824,41.68868349782748],[-87.60029274784431,41.6886834978351],[-87.60029032856424,41.68868818280566],[-87.60008315197558,41.68908938324265],[-87.59999048570829,41.68926882885424],[-87.59995898331034,41.68932738287497],[-87.59973683362425,41.68974029130352],[-87.59973682619359,41.68974030511477],[-87.59962628841566,41.68993528433575],[-87.5995296172679,41.6901058040027],[-87.5995296115302,41.69010581412344],[-87.59945011435119,41.69024603849698],[-87.59939448256556,41.69034440255196],[-87.59917489277456,41.69073266164831],[-87.5990944989797,41.69087809868283],[-87.59908541939041,41.6908945241861],[-87.59908541693895,41.69089452862087],[-87.5988560968612,41.69130937639702],[-87.5987088201172,41.69160065128009],[-87.59845192669201,41.69207789434675],[-87.59834845966277,41.69227019662321],[-87.59830571541785,41.69233951971009],[-87.59829040585664,41.69236816095626],[-87.59823889163643,41.69246453613378],[-87.59804070866984,41.69283530052856],[-87.59792008172703,41.69306096874407],[-87.5975238841126,41.69379297972234],[-87.59724716531636,41.69430873309063],[-87.59700628142531,41.6947805053214],[-87.5969701358763,41.69485129583429],[-87.59679781770579,41.69517602562135],[-87.59675096157881,41.69525943581388],[-87.59660417404119,41.69552073433975],[-87.59640624313234,41.69587285234356],[-87.59616655623996,41.69631768324381],[-87.59570737985079,41.6969571256844],[-87.59482326148893,41.69828718640284],[-87.59477668648182,41.69836000307259],[-87.59475034726721,41.6983969063478],[-87.59436552781351,41.69897584429195],[-87.59415872516519,41.69920130400625],[-87.59368755777196,41.69979031154411],[-87.59332544341943,41.70020218133065],[-87.59313265409435,41.70041929716177],[-87.59307047261393,41.70048932451635],[-87.59287837273587,41.70070310477924],[-87.59271744916829,41.70088053123123],[-87.59256981477343,41.70103581408319],[-87.59241143269742,41.70119901343069],[-87.59222487133673,41.70138933685779],[-87.59205441784161,41.70156082804019],[-87.59186438275054,41.7017473687345],[-87.5916342286548,41.70196370464499],[-87.5913930912042,41.70219036192805],[-87.59122606684352,41.70234694486694],[-87.59099055568632,41.70256732978996],[-87.59079729441378,41.70274726145885],[-87.59038988401865,41.70312718698207],[-87.59009319019044,41.70340420698537]]]],"type":"MultiPolygon"} +},{ + "id": 1024496943, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":152280.59142, + "geom:bbox":"-87.6856402639,41.844838418,-87.6830187392,41.852062208", + "geom:latitude":41.848661, + "geom:longitude":-87.684349, + "iso:country":"US", + "lbl:latitude":41.848647, + "lbl:longitude":-87.684334, + "lbl:max_zoom":18.0, + "mps:latitude":41.848647, + "mps:longitude":-87.684334, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":41.848647, + "reversegeo:longitude":-87.684334, + "src:geom":"zolk", + "wof:belongsto":[ + 420783545, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b099086eb1e1c5c6d0d85457d68ed64f", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024496943, + "neighbourhood_id":420783545, + "region_id":85688697 + } + ], + "wof:id":1024496943, + "wof:lastmodified":1566608617, + "wof:name":"Heart of Italy", + "wof:parent_id":420783545, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -87.6856402639289, + 41.8448384179935, + -87.6830187392088, + 41.852062207952 +], + "geometry": {"coordinates":[[[[-87.6856402639289,41.8520319062106],[-87.6856248261815,41.8515057143541],[-87.6856152263689,41.8511186921065],[-87.6856035350639,41.8506473543594],[-87.6855882390784,41.8502144479996],[-87.68557258527581,41.8497714039348],[-87.6855601061727,41.8493044527236],[-87.68554612710339,41.8487813723227],[-87.6855363214251,41.8483995790146],[-87.6855129868069,41.8474909927921],[-87.6855001878338,41.846992623001],[-87.6854897140561,41.846584872492],[-87.68547097499631,41.8458551261338],[-87.6854607167064,41.8453084355535],[-87.68545526986961,41.8450181471556],[-87.6854470542783,41.8448384179935],[-87.68539362366749,41.8448497132925],[-87.68514188229319,41.8449380577015],[-87.6848430083944,41.8450541181498],[-87.6845765395184,41.8451563826821],[-87.6842248862678,41.8452918134325],[-87.683722447869,41.8454853124375],[-87.6835314504491,41.8455583271065],[-87.6830187392088,41.8457537122268],[-87.68302638617889,41.8461012743747],[-87.68302948585639,41.8462421560078],[-87.6830311041747,41.8463157108507],[-87.6830476432508,41.8466473001126],[-87.683051432537,41.8469787847852],[-87.68305295418951,41.8470284370988],[-87.6830561899543,41.8471462116967],[-87.68305922933671,41.8472568500996],[-87.6830676804563,41.8475311594663],[-87.6830721014985,41.8476746544956],[-87.6830841826968,41.8480487654659],[-87.68308467512649,41.8480639991792],[-87.68309414269611,41.8484353694516],[-87.68310329919279,41.8487945171951],[-87.68310618401961,41.8488878106863],[-87.68311068125961,41.849033254812],[-87.68311932672449,41.8493431000764],[-87.6831297474008,41.8497165736476],[-87.68314184016209,41.8502519740629],[-87.6831503065679,41.8506268240087],[-87.6831520378977,41.8507034815462],[-87.68315316310149,41.8507532959637],[-87.6831647931524,41.8511550394212],[-87.68317739146541,41.8515902128663],[-87.6831778527429,41.8516112087902],[-87.68317957496571,41.8516895674293],[-87.68318776380229,41.852062207952],[-87.6836630249139,41.8520550119092],[-87.684352458297,41.8520434748509],[-87.6843604987572,41.8520433402603],[-87.6850338715545,41.8520338883994],[-87.6856402639289,41.8520319062106]]]],"type":"MultiPolygon"} +},{ + "id": 1024497021, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000071, + "geom:area_square_m":657734.944675, + "geom:bbox":"-87.7142758551,41.8152693848,-87.7041670167,41.8226200554", + "geom:latitude":41.81892, + "geom:longitude":-87.7092, + "iso:country":"US", + "lbl:latitude":41.816447, + "lbl:longitude":-87.715494, + "lbl:max_zoom":18.0, + "mps:latitude":41.818921, + "mps:longitude":-87.7092, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Corwith Intermodal Facility" + ], + "name:eng_x_variant":[ + "Corwith" + ], + "name:fra_x_preferred":[ + "Corwith" + ], + "name:ita_x_preferred":[ + "Corwith" + ], + "name:pol_x_preferred":[ + "Corwith" + ], + "reversegeo:latitude":41.818921, + "reversegeo:longitude":-87.7092, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420518915, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"da8f9b7387f987e43cffd17a7c337b82", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024497021, + "neighbourhood_id":420518915, + "region_id":85688697 + } + ], + "wof:id":1024497021, + "wof:lastmodified":1566608619, + "wof:name":"Corwith", + "wof:parent_id":420518915, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867563 + ], + "wof:tags":[] +}, + "bbox": [ + -87.71427585513828, + 41.8152693848321, + -87.70416701665008, + 41.82262005539101 +], + "geometry": {"coordinates":[[[[-87.71427585513828,41.82245475072546],[-87.70439089533737,41.82262005539101],[-87.70416701665008,41.81533851881966],[-87.71404028322331,41.8152693848321],[-87.7140471549429,41.8155069996733],[-87.7140561694606,41.815865999915],[-87.7140660799778,41.8162842813764],[-87.7140819338576,41.8166949108689],[-87.7140909800116,41.8170506180717],[-87.71410052727521,41.817430477598],[-87.71410643924,41.8177307334506],[-87.7141341572851,41.8185854508657],[-87.7141617214148,41.8195323750204],[-87.7141662292711,41.8197080330315],[-87.71419266567059,41.8207378280604],[-87.714216546778,41.821686378566],[-87.7142155963034,41.8217088765043],[-87.714215379544,41.8217313781228],[-87.7142158964926,41.8217538842448],[-87.71421641344411,41.8217763900921],[-87.7142183978242,41.8217989038488],[-87.7142196484911,41.8218214136506],[-87.7142223665881,41.8218439313616],[-87.7142250846868,41.8218664490725],[-87.7142285417893,41.8218884219111],[-87.7142327273227,41.8219109475308],[-87.7142615598047,41.8221932144601],[-87.7142635336385,41.8222168258677],[-87.7142655123934,41.8222398884466],[-87.7142674865967,41.822263499856],[-87.71426872671491,41.8222871073089],[-87.71426997212301,41.8223101656606],[-87.71427121224021,41.8223337733877],[-87.7142724523607,41.8223573808403],[-87.7142736924821,41.8223809882928],[-87.71427420453669,41.8224040429663],[-87.7142747105712,41.8224276464622],[-87.71427585513828,41.82245475072546]]]],"type":"MultiPolygon"} +},{ + "id": 1024497083, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":570686.285556, + "geom:bbox":"-87.5514967925,41.7374262439,-87.5417353589,41.7519943793", + "geom:latitude":41.743036, + "geom:longitude":-87.546293, + "iso:country":"US", + "lbl:latitude":41.74285, + "lbl:longitude":-87.546564, + "lbl:max_zoom":18.0, + "mps:latitude":41.742467, + "mps:longitude":-87.545554, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.742467, + "reversegeo:longitude":-87.545554, + "src:geom":"zolk", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85849559, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"75e30759fb426590946abc909d76f5b2", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024497083, + "neighbourhood_id":85849559, + "region_id":85688697 + } + ], + "wof:id":1024497083, + "wof:lastmodified":1566608613, + "wof:name":"The Bush", + "wof:parent_id":85849559, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867791 + ], + "wof:tags":[] +}, + "bbox": [ + -87.5514967924649, + 41.7374262438559, + -87.5417353589202, + 41.7519943793372 +], + "geometry": {"coordinates":[[[[-87.5467259142867,41.7465364482798],[-87.5467665203611,41.7483583649076],[-87.54679524353141,41.7496468177631],[-87.5468051303868,41.7500769167418],[-87.546807419627,41.7501764700353],[-87.5468229138293,41.7508504643136],[-87.54683821028929,41.7515365018815],[-87.54684842027901,41.7519943793372],[-87.5481495366639,41.7519758333595],[-87.5480630753862,41.751702242466],[-87.54805601841331,41.7516317755537],[-87.54804793946229,41.7515232654135],[-87.5480403984491,41.7514219769996],[-87.54801760389979,41.7501594286907],[-87.5480162636476,41.7500852013507],[-87.5479979155659,41.7490685330887],[-87.5479816918109,41.748342093215],[-87.5479679495116,41.7477267501279],[-87.5479589039536,41.7472903172067],[-87.54794252440151,41.7465223182827],[-87.5479286831772,41.7458733108141],[-87.54791583104149,41.7452862170669],[-87.5479065164468,41.7447055718507],[-87.548506711513,41.7446996144816],[-87.54859114878511,41.7446987759798],[-87.5491197564658,41.744690719658],[-87.54958972354071,41.7446835551278],[-87.550324496108,41.7446741506909],[-87.5507704148268,41.7446684409697],[-87.55093698852561,41.7446660588331],[-87.55141757027179,41.7446591849612],[-87.5514967924649,41.7446577031656],[-87.55149367372481,41.7443612554104],[-87.55148199698419,41.743571914813],[-87.5514834189008,41.7435151174416],[-87.5514831190762,41.7434582809105],[-87.5514811331561,41.7434014877915],[-87.55147742413889,41.7433447378326],[-87.5514719927953,41.7432880584819],[-87.5514669459176,41.7432479847734],[-87.55146487400449,41.7432315048626],[-87.5514643933415,41.7432288396189],[-87.5514639133779,41.7432261469368],[-87.55146339607541,41.7432234814438],[-87.5514628787394,41.7432207885074],[-87.5514623614369,41.7432181230143],[-87.5514618441378,41.7432154572468],[-87.5514613271617,41.7432127648618],[-87.5514608098627,41.7432100990942],[-87.5514602555543,41.7432074333493],[-87.5514597389848,41.7432047678612],[-87.5514591846765,41.7432021021162],[-87.5514586310676,41.743199408933],[-87.5514580404862,41.7431967429413],[-87.55145748654439,41.7431940771988],[-87.5514568959631,41.743191411207],[-87.5514563420214,41.7431887454645],[-87.5514557514402,41.7431860794727],[-87.55145516085901,41.7431834134809],[-87.55145453363821,41.7431807472398],[-87.551453943057,41.743178081248],[-87.5514533158363,41.7431754150068],[-87.5514527249224,41.7431727764558],[-87.5514520977018,41.7431701102146],[-87.55145143384161,41.7431674437241],[-87.5514508069875,41.7431647774854],[-87.5514501794006,41.7431621112418],[-87.55144951520769,41.743159472192],[-87.5514488513477,41.7431568057015],[-87.55144818748769,41.743154139211],[-87.5514475232949,41.7431515001612],[-87.5514468594351,41.7431488336707],[-87.5514461586028,41.7431461943716],[-87.5514454581034,41.7431435276317],[-87.5514447939108,41.7431408885819],[-87.5514440564391,41.7431382490334],[-87.5514433559399,41.7431355822936],[-87.55144265510781,41.7431329429944],[-87.5514419179692,41.7431302760052],[-87.5514412171372,41.743127636706],[-87.5514404800321,41.74312499716],[-87.5514397421943,41.7431223576091],[-87.5514389680833,41.7431197178112],[-87.55143823061211,41.7431170782627],[-87.55143745683409,41.7431144110241],[-87.5514367193629,41.7431117714756],[-87.55143594525219,41.7431091316777],[-87.55143517114151,41.7431064918799],[-87.551434359692,41.7431038792709],[-87.55143358594781,41.7431012394755],[-87.5514327751978,41.7430985994283],[-87.55143200108731,41.7430959596304],[-87.5514311903374,41.7430933195832],[-87.55143034261501,41.7430907067273],[-87.5514295318651,41.7430880666801],[-87.5514287211154,41.7430854266328],[-87.55142787339319,41.743082813777],[-87.55142702600401,41.7430801734804],[-87.5514261782819,41.7430775606245],[-87.5514253308928,41.7430749203279],[-87.5514244831709,41.743072307472],[-87.5514235991424,41.743069666926],[-87.5514227514205,41.7430670540702],[-87.5514218670592,41.7430644409649],[-87.55142098303089,41.7430618004189],[-87.55142009866969,41.7430591873137],[-87.551419177669,41.7430565739591],[-87.551418293308,41.7430539608538],[-87.5514173723075,41.7430513474992],[-87.5514164513104,41.7430487338701],[-87.5514155303067,41.7430461207899],[-87.55141460930631,41.7430435074353],[-87.5514136883061,41.7430408940806],[-87.5514127306664,41.7430382804766],[-87.5514118093333,41.7430356945627],[-87.5514108516938,41.7430330809587],[-87.5514098940542,41.7430304673546],[-87.5514089364148,41.7430278537506],[-87.55140794180301,41.743025267338],[-87.55140698416371,41.7430226537339],[-87.55140598955199,41.7430200673212],[-87.5514049952734,41.7430174534678],[-87.5514040006618,41.7430148670552],[-87.55140300605041,41.7430122806425],[-87.55140197476599,41.7430096665372],[-87.55140098052109,41.743007080127],[-87.55139994927031,41.7430044934649],[-87.5513989180197,41.7430019068028],[-87.5513978867691,41.7429993201408],[-87.55139685551519,41.7429967337531],[-87.5513958242681,41.7429941468166],[-87.5513947563782,41.7429915599051],[-87.5513936884884,41.7429889729936],[-87.5513926572383,41.7429863863315],[-87.55139155270911,41.7429837991707],[-87.5513904844866,41.7429812396999],[-87.5513894165971,41.7429786527884],[-87.5513883120682,41.7429760656275],[-87.55138724384599,41.7429735061567],[-87.5513861393172,41.7429709189959],[-87.551385034822,41.7429683592782],[-87.55138389328761,41.7429657718654],[-87.5513827884261,41.7429632121453],[-87.55138164692529,41.7429606521757],[-87.551380542064,41.7429580924555],[-87.55137940089629,41.7429555050452],[-87.5513782593957,41.7429529450756],[-87.5513771178952,41.742950385106],[-87.5513759397586,41.7429478246127],[-87.551374798255,41.7429452649175],[-87.5513736201152,41.7429427046985],[-87.5513724416427,41.7429401719202],[-87.5513712631367,41.7429376116988],[-87.5513700853637,41.7429350514822],[-87.55136887025181,41.7429325184546],[-87.55136769211251,41.7429299582355],[-87.5513664773339,41.7429273977671],[-87.5513652622223,41.7429248647395],[-87.55136404711089,41.7429223317118],[-87.5513628323325,41.7429197712433],[-87.5513616172212,41.7429172382156],[-87.5513603654706,41.7429147049385],[-87.5513591140864,41.7429121716639],[-87.5513578986091,41.7429096386337],[-87.5513566471917,41.7429070779158],[-87.5513553584689,41.74290457183],[-87.5513541067188,41.7429020385529],[-87.5513528549687,41.7428995052757],[-87.5513515665793,41.7428969717492],[-87.5513502781899,41.7428944382226],[-87.5513489894677,41.7428919321368],[-87.5513477010785,41.7428893986102],[-87.551346375717,41.742886892275],[-87.5513450873281,41.7428843587483],[-87.55134376196681,41.7428818524131],[-87.5513424369386,41.7428793186371],[-87.55134114821691,41.7428768125512],[-87.5513397862165,41.7428743059665],[-87.5513384608556,41.7428717996312],[-87.5513371354948,41.7428692932959],[-87.5513357734947,41.7428667867111],[-87.55133441149459,41.7428642801264],[-87.5513330494947,41.7428617735417],[-87.55133168749489,41.7428592669569],[-87.5513303254951,41.7428567603721],[-87.5513289265231,41.7428542809787],[-87.5513275645236,41.7428517743939],[-87.5513261655518,41.7428492950005],[-87.551324766913,41.7428467881663],[-87.55132336830781,41.7428443087753],[-87.5513219689699,41.7428418293793],[-87.55132053369201,41.7428393222957],[-87.551319134724,41.7428368426277],[-87.55131769911,41.7428343632592],[-87.5513162634995,41.7428318836163],[-87.5513148278891,41.7428294039733],[-87.5513133922788,41.7428269243303],[-87.55131192002921,41.742824444438],[-87.5513104840861,41.7428219922357],[-87.55130901183669,41.7428195123433],[-87.5513075395874,41.7428170324509],[-87.5513060670052,41.7428145799992],[-87.5513045947561,41.7428121001067],[-87.5513031221742,41.742809647655],[-87.5513016129529,41.7428071949539],[-87.5513001403712,41.7428047425021],[-87.5512986314798,41.7428022626346],[-87.5512971222622,41.742799809659],[-87.5512956130414,41.7427973569578],[-87.5512940671812,41.7427949040072],[-87.5512925576277,41.7427924787467],[-87.5512910117678,41.7427900257961],[-87.55128950254741,41.7427875730948],[-87.5512879566878,41.7427851201441],[-87.55128641049519,41.7427826946341],[-87.5512848279964,41.742780241434],[-87.5512832818041,41.742777815924],[-87.5512816989725,41.7427753901646],[-87.5512801531134,41.7427729372138],[-87.55127857028209,41.7427705114544],[-87.55127698744749,41.7427680859693],[-87.5512754046197,41.7427656599354],[-87.55127378514931,41.7427632339265],[-87.5512722019854,41.7427608356077],[-87.5512705825153,41.7427584095988],[-87.5512689630452,41.7427559835898],[-87.5512673435753,41.7427535575808],[-87.5512657237725,41.7427511590126],[-87.5512641043028,41.7427487330035],[-87.55126244786079,41.7427463341858],[-87.5512608280584,41.7427439356175],[-87.55125917161671,41.7427415367998],[-87.5512575151751,41.742739137982],[-87.5512558587336,41.7427367391642],[-87.5512542022923,41.7427343403464],[-87.5512525458511,41.7427319415286],[-87.55125085277059,41.7427295424613],[-87.5512491600566,41.7427271433965],[-87.551247466277,41.7427247717675],[-87.5512458098363,41.7427223729495],[-87.5512440797839,41.7427200010735],[-87.551242386704,41.7427176020062],[-87.55124069329131,41.7427152303795],[-87.5512389632393,41.7427128585034],[-87.55123723318739,41.7427104866273],[-87.5512355031357,41.7427081147512],[-87.5512337730874,41.7427057426006],[-87.5512320430326,41.7427033709989],[-87.5512303129812,41.7427009991227],[-87.5512285462906,41.742698626997],[-87.5512267792671,41.7426962823121],[-87.5512250492162,41.7426939104358],[-87.5512232821963,41.7426915654765],[-87.5512215155028,41.7426891936251],[-87.5512197114741,41.7426868486882],[-87.55121794481769,41.7426845040057],[-87.55121614115561,41.7426821590712],[-87.5512143374937,41.7426798141367],[-87.55121257047119,41.7426774694516],[-87.5512107668095,41.742675124517],[-87.5512089261756,41.7426728067738],[-87.5512071225142,41.7426704618392],[-87.5511621449466,41.7426175473888],[-87.55111480858289,41.7425657969119],[-87.5510651483003,41.7425152655292],[-87.5510132005075,41.7424660632575],[-87.5505172087056,41.7420318296019],[-87.5504295957156,41.7419445126929],[-87.55013688109371,41.7416686364053],[-87.5498648333669,41.7413808253564],[-87.54986280862759,41.7413785883905],[-87.5498607842153,41.7413763245326],[-87.5498587232006,41.7413740875937],[-87.549856698092,41.7413718508996],[-87.5498546736834,41.7413695867673],[-87.5498526489414,41.7413673500756],[-87.54985062419961,41.7413651133839],[-87.5498485994251,41.7413628492489],[-87.5498465750499,41.7413606125596],[-87.5498445506388,41.7413583487015],[-87.5498425625394,41.7413561119851],[-87.5498405381318,41.7413538478525],[-87.5498385133908,41.7413516111605],[-87.5498364889836,41.7413493470278],[-87.54983446457641,41.7413470828951],[-87.54983247610799,41.7413448464504],[-87.5498304520676,41.7413425823201],[-87.5498284273273,41.741340345628],[-87.5498264395593,41.741338081745],[-87.5498244151528,41.7413358176121],[-87.5498224273851,41.741333553729],[-87.54982040264539,41.7413313170368],[-87.549818414878,41.7413290531536],[-87.5498163904721,41.7413267890205],[-87.5498144027016,41.7413245254117],[-87.54981237829941,41.7413222610042],[-87.5498103901989,41.7413200245616],[-87.54980840243211,41.7413177606783],[-87.549806378027,41.7413154965451],[-87.5498043902605,41.7413132326617],[-87.54980240249419,41.7413109687782],[-87.549800414728,41.7413087048947],[-87.549798426962,41.7413064410112],[-87.5497964391961,41.7413041771277],[-87.5497944147918,41.7413019129942],[-87.54979242702611,41.7412996491106],[-87.549790439264,41.7412973849526],[-87.5497884514953,41.7412951213433],[-87.5497864637301,41.7412928574596],[-87.54978451293719,41.7412905663849],[-87.5497825251723,41.7412883025011],[-87.5497805374075,41.7412860386173],[-87.54977854964289,41.7412837747335],[-87.5497765618783,41.7412815108496],[-87.54977457445089,41.7412792192505],[-87.5497726233219,41.7412769558908],[-87.54977063555781,41.7412746920068],[-87.5497686481275,41.7412724006821],[-87.5497666970022,41.7412701370479],[-87.5497647088721,41.7412678731613],[-87.5497627584471,41.7412655820888],[-87.5497607706837,41.7412633182046],[-87.5497588198926,41.7412610271295],[-87.5497568321328,41.7412587629709],[-87.5497548817084,41.7412564718982],[-87.5497528935758,41.7412542082859],[-87.54975094278529,41.7412519172106],[-87.5497489916612,41.7412496535761],[-87.5497470042324,41.741247362251],[-87.54974505310869,41.7412450986164],[-87.5497431023187,41.7412428075411],[-87.54974115119521,41.7412405439065],[-87.5497392004055,41.7412382528311],[-87.54973721297731,41.7412359615057],[-87.54973526218789,41.7412336704303],[-87.5497333110649,41.7412314067955],[-87.5497313602758,41.74122911572],[-87.5497294094867,41.7412268246444],[-87.5497274587012,41.7412245332944],[-87.5497255075754,41.7412222699339],[-87.5497235567868,41.7412199788582],[-87.5497216426369,41.7412176880324],[-87.54971969184849,41.7412153969566],[-87.54971774106031,41.7412131058809],[-87.5497157902722,41.7412108148051],[-87.5497138394843,41.7412085237292],[-87.549711925335,41.7412062329032],[-87.5497099745473,41.7412039418273],[-87.5497080603983,41.7412016510013],[-87.5497061096109,41.7411993599253],[-87.5497041588237,41.7411970688493],[-87.5497022446751,41.7411947780232],[-87.54970029388809,41.7411924869471],[-87.54969837973979,41.7411901961209],[-87.5496964293194,41.7411879050473],[-87.5496945151714,41.741185614221],[-87.54969260102339,41.7411833233947],[-87.5496906502044,41.7411810048752],[-87.54968873605679,41.7411787140488],[-87.54968682190921,41.7411764232224],[-87.5496849077619,41.741174132396],[-87.5496829573098,41.7411718138789],[-87.54968104316271,41.7411695230524],[-87.5496791290157,41.7411672322258],[-87.54967721520249,41.7411649139585],[-87.5496753010558,41.7411626231319],[-87.54967338690921,41.7411603323053],[-87.5496714730964,41.7411580140379],[-87.5496695589501,41.7411557232112],[-87.5496676451376,41.7411534049437],[-87.54966573099161,41.7411511141169],[-87.54966381717929,41.7411487958494],[-87.54966193967201,41.7411465052725],[-87.5496600258634,41.7411441867305],[-87.5496581117179,41.7411418959036],[-87.54965619790291,41.7411395779103],[-87.5496543203961,41.7411372873333],[-87.5496524065847,41.7411349690656],[-87.5496504927734,41.7411326507978],[-87.5496486152671,41.7411303602207],[-87.5496467014561,41.7411280419529],[-87.5496448242836,41.7411257239349],[-87.5496429105056,41.7411234331103],[-87.5496410329671,41.7411211150897],[-87.54963911915659,41.7411187968218],[-87.5496372419847,41.7411164788037],[-87.5496353644793,41.7411141882264],[-87.5496334506693,41.7411118699583],[-87.5496315735011,41.7411095516658],[-87.54962969632651,41.741107233922],[-87.5496278191553,41.7411049159037],[-87.54962590534571,41.7411025976356],[-87.5496240281748,41.7411002796173],[-87.5496221506376,41.7410979615965],[-87.5496202738333,41.7410956435806],[-87.54961839666279,41.7410933255622],[-87.5496165194924,41.7410910075438],[-87.54961464232549,41.741088689251],[-87.54961276515201,41.7410863715069],[-87.549610887982,41.7410840534884],[-87.54960901081211,41.7410817354699],[-87.5496071336424,41.7410794174513],[-87.5496052931112,41.7410770996826],[-87.5496034159418,41.741074781664],[-87.54960153910611,41.7410724362046],[-87.54959966194031,41.7410701179115],[-87.54959782140629,41.7410678004171],[-87.5495959442374,41.7410654823983],[-87.5495940674023,41.7410631369388],[-87.54959222687209,41.7410608191699],[-87.54959034970349,41.7410585011511],[-87.5495885095072,41.7410561559414],[-87.549586632339,41.7410538379225],[-87.54958479180929,41.7410515201535],[-87.54958291497501,41.7410491746938],[-87.5495810744455,41.7410468569247],[-87.54957923391621,41.7410445391556],[-87.5495773570824,41.7410421936958],[-87.5495755165533,41.7410398759267],[-87.54957367635809,41.7410375307167],[-87.5495718358293,41.7410352129475],[-87.5495699956344,41.7410328677375],[-87.54956811843471,41.7410305222751],[-87.54956627827281,41.7410282045083],[-87.54956443807821,41.7410258592982],[-87.54956259755011,41.7410235415288],[-87.5495607577222,41.7410211963212],[-87.5495589171616,41.7410188511085],[-87.5495570766339,41.741016533339],[-87.54955523644,41.7410141881288],[-87.54955343288469,41.7410118431685],[-87.5495515923574,41.741009525399],[-87.5495497521639,41.7410071801886],[-87.54954791197051,41.7410048349783],[-87.5495461084157,41.7410024900178],[-87.5495442682226,41.7410001448074],[-87.5495424280296,41.740997799597],[-87.5495406241415,41.7409954820772],[-87.5495387839521,41.7409931365923],[-87.54953694375619,41.7409907916562],[-87.5495351402022,41.7409884466956],[-87.5495333000099,41.740986101485],[-87.5495314964527,41.7409837567987],[-87.5495296929024,41.7409814115636],[-87.5495278527105,41.740979066353],[-87.54952604915709,41.7409767213922],[-87.54952424560391,41.7409743764314],[-87.5495224054124,41.7409720312207],[-87.5495206018594,41.7409696862598],[-87.54951879830649,41.7409673412989],[-87.5495169947537,41.740964996338],[-87.5495151548965,41.7409626236864],[-87.549513351344,41.7409602787255],[-87.5495115477917,41.7409579337645],[-87.5495097438764,41.7409555885266],[-87.54950794068741,41.7409532438424],[-87.54950613746909,41.7409508714406],[-87.5495043339173,41.7409485264795],[-87.5495025303656,41.7409461815184],[-87.5495007637861,41.7409438093664],[-87.5494989602347,41.7409414644052],[-87.54949715668,41.7409391197184],[-87.5494953534659,41.740936747042],[-87.5494935499149,41.7409344020808],[-87.5494917830023,41.7409320573694],[-87.54948997978531,41.7409296849674],[-87.5494881762346,41.740927340006],[-87.5494864096562,41.7409249678538],[-87.54948460610581,41.7409226228924],[-87.5494828395276,41.7409202507402],[-87.54948103597749,41.7409179057787],[-87.5494792693995,41.7409155336264],[-87.54947746584961,41.7409131886649],[-87.54947569927199,41.7409108165126],[-87.5494739326944,41.7409084443602],[-87.5494721291449,41.7409060993986],[-87.5494703625677,41.7409037272462],[-87.5494685959938,41.7409013548193],[-87.54946682907971,41.740899010382],[-87.54946502549809,41.740896637977],[-87.5494632592911,41.7408942655526],[-87.5494614923774,41.7408919211152],[-87.5494597258009,41.7408895489626],[-87.54945795922779,41.7408871765356],[-87.54945619264819,41.7408848046573],[-87.5494544260721,41.7408824325047],[-87.54945265916569,41.7408800875183],[-87.54945089258651,41.74087771564],[-87.5494491260108,41.7408753434872],[-87.54944735943521,41.7408729713345],[-87.549445629498,41.7408705994316],[-87.5494438629227,41.7408682272788],[-87.54944209634741,41.7408658551259],[-87.54944032977239,41.740863482973],[-87.5494385998324,41.7408611113445],[-87.5494368332609,41.7408587389172],[-87.5494351033245,41.7408563670142],[-87.5494333367499,41.7408539948612],[-87.5494316068137,41.7408516229581],[-87.5494298402394,41.7408492508051],[-87.5494281103035,41.740846878902],[-87.54942634406321,41.7408444793081],[-87.5494246141276,41.740842107405],[-87.5494228475538,41.7408397352518],[-87.54942111761839,41.7408373633486],[-87.5494193876831,41.7408349914454],[-87.54941765808179,41.7408325921013],[-87.5494158915085,41.7408302199481],[-87.54941416157359,41.7408278480448],[-87.5494124320052,41.7408254761439],[-87.549410702038,41.7408230767973],[-87.54940897210351,41.7408207048939],[-87.5494072418027,41.740818332988],[-87.5494055125686,41.7408159336463],[-87.5494037826379,41.7408135614684],[-87.5494020530343,41.7408111623986],[-87.5494003231004,41.7408087904951],[-87.5493985931667,41.7408064185915],[-87.5493968635669,41.7408040192472],[-87.54939517027159,41.7408016475936],[-87.54939344067201,41.7407992482492],[-87.5493917103758,41.7407968760686],[-87.5493899811395,41.7407944770011],[-87.5493882881786,41.7407920779066],[-87.5493865582457,41.7407897060029],[-87.54938482864679,41.7407873066584],[-87.5493831353524,41.7407849350046],[-87.54938140575371,41.74078253566],[-87.5493797127934,41.7407801365654],[-87.5493779828612,41.7407777646616],[-87.5493762899011,41.7407753655669],[-87.54937459694121,41.7407729664723],[-87.5493728670094,41.7407705945683],[-87.5493711740497,41.7407681954736],[-87.5493694810901,41.7407657963788],[-87.5493677881307,41.7407633972841],[-87.5493660585331,41.7407609979393],[-87.54936436524019,41.7407586262852],[-87.54936267227779,41.7407562274648],[-87.5493609793222,41.7407538280955],[-87.54935928636,41.740751429275],[-87.54935759340469,41.7407490299057],[-87.54935590044281,41.7407466310851],[-87.5493542074877,41.7407442317157],[-87.5493525145327,41.7407418323463],[-87.5493508215712,41.7407394335257],[-87.5493491286165,41.7407370341562],[-87.54934743565521,41.7407346353356],[-87.54934577933901,41.7407322362161],[-87.5493440863779,41.7407298373953],[-87.5493423934204,41.7407274383002],[-87.54934070046291,41.740725039205],[-87.54933904414391,41.7407226403598],[-87.54933735118669,41.7407202412646],[-87.54933569520161,41.7407178149786],[-87.54933400224471,41.7407154158833],[-87.5493323462925,41.7407130170405],[-87.5493306529694,41.7407106179427],[-87.5493289966511,41.7407082190974],[-87.5493273040284,41.7407057925612],[-87.5493256477103,41.7407033937158],[-87.5493239913924,41.7407009948704],[-87.54932229843629,41.740698595775],[-87.5493206424557,41.7406961692144],[-87.54931898613479,41.7406937706433],[-87.5493173298173,41.7406913717978],[-87.54931563719551,41.7406889452615],[-87.5493139808783,41.7406865464159],[-87.549312324895,41.7406841201296],[-87.549310668578,41.7406817212839],[-87.54930901226111,41.7406793224383],[-87.54930735627821,41.7406768961519],[-87.5493056999582,41.7406744975806],[-87.54930404397891,41.7406720710198],[-87.54930238729609,41.7406696721715],[-87.5493007683182,41.7406672461375],[-87.5492991123359,41.740664819851],[-87.5492974560199,41.7406624210052],[-87.5492958000378,41.7406599947186],[-87.54929418036021,41.7406575961228],[-87.5492925243784,41.7406551698362],[-87.5492202447555,41.7405516554604],[-87.5491502106351,41.7404473056294],[-87.54908242234281,41.7403420929062],[-87.5490169155064,41.7402360998672],[-87.5489536901169,41.7401293265161],[-87.5488927824656,41.7400218008219],[-87.5488371203655,41.7399198264097],[-87.5487836650492,41.7398171812359],[-87.54873237920511,41.7397139196604],[-87.548683299462,41.7396100419362],[-87.54863646177969,41.7395056031978],[-87.548591829177,41.7394006306383],[-87.5485384300502,41.7392693626402],[-87.54848774998391,41.7391374819979],[-87.5484398619032,41.7390050166564],[-87.5483947284865,41.73887202125],[-87.54835234938361,41.7387385232226],[-87.5483127978524,41.7386045230778],[-87.54829001850339,41.7385194037932],[-87.54826859711839,41.7384341016801],[-87.5482485706633,41.7383485895488],[-87.5482299021939,41.7382629220336],[-87.5482125909365,41.7381770719614],[-87.5481966739633,41.7380910936487],[-87.54816249068671,41.7378894281364],[-87.54812830724801,41.7376877626063],[-87.5481116479702,41.737590582715],[-87.5480955023183,41.7374933514439],[-87.54808522027319,41.7374262438559],[-87.54802185515589,41.7374273141203],[-87.5474962683773,41.7374328866546],[-87.5469453490944,41.7374396555611],[-87.5467057261297,41.7374427629556],[-87.5465181443534,41.7374447843729],[-87.5465440215453,41.7392377244553],[-87.54551115496881,41.739278778084],[-87.5453602288928,41.7392805206506],[-87.54519651568739,41.7392824107692],[-87.5448970716299,41.7392749226624],[-87.54475697475399,41.7392753375043],[-87.5447071206936,41.7392754851937],[-87.5444594582156,41.739279273671],[-87.54415474766979,41.7392829694755],[-87.54390324693691,41.7392860190674],[-87.5435522713496,41.7392917335412],[-87.5431683860245,41.7392979824451],[-87.5429482026625,41.7393018872043],[-87.54280967124519,41.7393043436943],[-87.5426643968744,41.7393069196467],[-87.5423646946068,41.7393115617641],[-87.54225467830111,41.7393132654485],[-87.54205640315131,41.7393173887646],[-87.5419680630505,41.7393173841056],[-87.54184957055411,41.7393231268156],[-87.54173535892021,41.7393353589857],[-87.5417425427688,41.7396663329954],[-87.5417448440177,41.7397862199984],[-87.5417497885097,41.7400340097169],[-87.5417559830023,41.7403262105779],[-87.54176111766679,41.7406092387012],[-87.54176610612549,41.7408833191035],[-87.5417720508536,41.7411440416035],[-87.5417754410997,41.7412927235329],[-87.5417810223625,41.7415513301233],[-87.5417866161236,41.7418089213965],[-87.54179533503221,41.7422118449638],[-87.5417971807192,41.7422972603467],[-87.5418054847264,41.74263253399],[-87.5418076208485,41.7427181709117],[-87.54181268596091,41.7429602803566],[-87.54181699125471,41.7431819126188],[-87.54181844304961,41.7432511887828],[-87.5418219811077,41.7434046742029],[-87.5418257394922,41.7435640893757],[-87.5418313427213,41.7438060106654],[-87.5418370199326,41.7440478775685],[-87.5418409672571,41.7442187649277],[-87.5418471644721,41.7444839345077],[-87.5418508866405,41.7446433216836],[-87.54185213567411,41.7447206372338],[-87.54185899192289,41.7447382205439],[-87.5418670171513,41.7447501312041],[-87.5418777541138,41.7447620331002],[-87.5418966720144,41.7447731680577],[-87.5419227316568,41.7447786715026],[-87.5419515915124,41.7447798856771],[-87.54217097191091,41.7447772800557],[-87.5424550372969,41.7447739024616],[-87.542675260989,41.7447712835694],[-87.5427426191518,41.7447706894186],[-87.5430446135032,41.7447680243055],[-87.54304426655089,41.7448485770201],[-87.5430569798817,41.7452048302073],[-87.5430663128833,41.7456379990473],[-87.5430747809514,41.7456956104796],[-87.54428721967579,41.7456713963883],[-87.5454961617402,41.745658028046],[-87.5467061044145,41.7456473951126],[-87.5467259142867,41.7465364482798]]]],"type":"MultiPolygon"} +},{ + "id": 1024497107, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":385564.690497, + "geom:bbox":"-87.6592694897,41.944466434,-87.6518433006,41.951163667", + "geom:latitude":41.948213, + "geom:longitude":-87.655556, + "iso:country":"US", + "lbl:latitude":41.94935, + "lbl:longitude":-87.657274, + "lbl:max_zoom":18.0, + "mps:latitude":41.948281, + "mps:longitude":-87.655556, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.948281, + "reversegeo:longitude":-87.655556, + "src:geom":"zolk", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85829473, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e36cdda552c279f446208af44eebc36d", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024497107, + "neighbourhood_id":85829473, + "region_id":85688697 + } + ], + "wof:id":1024497107, + "wof:lastmodified":1566608625, + "wof:name":"Wrigleyville", + "wof:parent_id":85829473, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865757 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6592694896921, + 41.9444664340342, + -87.6518433006133, + 41.9511636669575 +], + "geometry": {"coordinates":[[[[-87.6518500809039,41.9456663203492],[-87.6518539170883,41.9457966098274],[-87.65185897259759,41.9459698339928],[-87.6518636544676,41.9461305124114],[-87.6518721751369,41.9464212764095],[-87.65188014303109,41.9466944006045],[-87.6518839643015,41.9468187819546],[-87.6518851421329,41.9468548105802],[-87.6518864050467,41.9468934467127],[-87.6518909216865,41.9470322340883],[-87.651891457048,41.9470486847046],[-87.651891893533,41.9470620282852],[-87.6518951036374,41.9471602015132],[-87.65189978432601,41.9472319506632],[-87.6519032139658,41.9472845210435],[-87.651912937354,41.9474330348891],[-87.6519174737617,41.9475817094911],[-87.65191839933919,41.9476120530762],[-87.651922366931,41.9477410334762],[-87.6519223978371,41.947741790239],[-87.6519272942632,41.9479027432033],[-87.6519310897048,41.948027491274],[-87.6519340605594,41.9481243902992],[-87.65193716607,41.948225663024],[-87.6519408194913,41.9483473191641],[-87.6519453394058,41.9484978281497],[-87.6519533996286,41.9487696429783],[-87.6519571576482,41.9488969805203],[-87.6519589002754,41.9489560243468],[-87.651962330533,41.9490805196802],[-87.65196264711621,41.9490920763369],[-87.65196553152769,41.9491972722291],[-87.6519671649237,41.9492515240106],[-87.65196777785521,41.9492718776241],[-87.65197246266931,41.94943235207],[-87.6519740336341,41.9494863227459],[-87.65197788572721,41.9496186747787],[-87.65197799280671,41.9496839404466],[-87.65197803159489,41.9497074991832],[-87.6519817188839,41.9498282995727],[-87.6519892459695,41.9500748789737],[-87.65199338082989,41.950228423744],[-87.6520035674159,41.9506044411169],[-87.65201400612639,41.9509565502006],[-87.6520201424139,41.9511636669575],[-87.6522620767886,41.9511596930158],[-87.65263771973569,41.9511535215665],[-87.6526543609685,41.9511532481142],[-87.6526564251279,41.9511532142493],[-87.653234840408,41.9511436254375],[-87.65340284610321,41.9511408401014],[-87.6535961368609,41.9511376347995],[-87.65367100484529,41.9511363930878],[-87.653764342871,41.9511349538515],[-87.6537643575776,41.9511349536641],[-87.65381756075131,41.9511341335592],[-87.6538175688413,41.9511341333327],[-87.6538442316466,41.9511337222612],[-87.6544444522753,41.9511244652387],[-87.65505939968421,41.9511149778691],[-87.65505993980101,41.9511149695343],[-87.6552318020933,41.9511121417372],[-87.65565257442771,41.951105217639],[-87.6560652356666,41.9510984252691],[-87.656155884668,41.9510969330995],[-87.65624453201551,41.9510955432129],[-87.65636161955941,41.9510937073516],[-87.6564937068556,41.9510916362573],[-87.6567040545964,41.9510883377493],[-87.6568064526828,41.951086731818],[-87.65698451834859,41.951083939048],[-87.65708195903299,41.951082410691],[-87.65727895453669,41.9510793203495],[-87.657569463873,41.9510740691167],[-87.6582947246247,41.9510609560134],[-87.6583979979024,41.9510595612706],[-87.6588283952993,41.9510537468673],[-87.6591034483354,41.9510498929738],[-87.65926948969209,41.9510475663803],[-87.6592611891182,41.9508074963021],[-87.6592538375006,41.9505948763695],[-87.6592330269555,41.9497503177199],[-87.6592323470565,41.9497207835385],[-87.65923077429279,41.9496524458978],[-87.65923030196279,41.9496371943622],[-87.659229076747,41.9495976614608],[-87.6592290459856,41.9495966733639],[-87.65922315689249,41.9493810534927],[-87.65921882802201,41.9492266935888],[-87.6592150611316,41.9490914981674],[-87.65921434684959,41.9490658564456],[-87.6592133312645,41.94904051619],[-87.6592104036792,41.9489674900578],[-87.6592070113313,41.9488828567453],[-87.6592034544867,41.9487529542135],[-87.65920345450689,41.9487529522927],[-87.6591993979695,41.9486040823952],[-87.6591962215706,41.948487407274],[-87.6591933289949,41.94838116155],[-87.6591895756586,41.9482432568268],[-87.659187604824,41.9481708392053],[-87.6591872241648,41.9481487726775],[-87.6591856779467,41.9480592210378],[-87.6591824686795,41.9478733089506],[-87.65917555061981,41.947622759021],[-87.65917318420679,41.9475370554319],[-87.6591706817903,41.9474464323156],[-87.6591654629955,41.9472544439723],[-87.659166929028,41.947201790309],[-87.65916841268221,41.9471485105193],[-87.65917077582159,41.9470636365536],[-87.6591710810693,41.9470526675307],[-87.65917072439289,41.9470389317473],[-87.6591697995112,41.9470033464953],[-87.6591641894294,41.9467926408542],[-87.6591641141834,41.9467896997134],[-87.6591612450656,41.9466783056769],[-87.6591593114461,41.9466032335021],[-87.65915818559699,41.9465424145742],[-87.6591565237587,41.9464526421445],[-87.65915450738621,41.9463427909659],[-87.6591539080879,41.9463101472229],[-87.65915218972189,41.9462447899997],[-87.6591516586312,41.9462245823347],[-87.6591505594872,41.9461827559871],[-87.6591479252061,41.9460825347368],[-87.6591443377426,41.9459813400033],[-87.6591388574101,41.945826747945],[-87.6591375887549,41.9457907891002],[-87.6591369891951,41.9457738010918],[-87.65913319776359,41.9456661507641],[-87.6591290736867,41.945548207679],[-87.6591282129428,41.94552342402],[-87.6591254073284,41.9454426436839],[-87.6591233385646,41.9453741241563],[-87.65912157564441,41.9453157210476],[-87.6590733031727,41.945315581365],[-87.6589716991981,41.9453153007641],[-87.65877277312831,41.9453182358808],[-87.6585143125514,41.9453220427485],[-87.65844154311731,41.945323099638],[-87.65838307412059,41.9453239485661],[-87.657941117664,41.9453313612973],[-87.6576745578822,41.9453358436513],[-87.65765391442601,41.9453361906024],[-87.6571322980692,41.9453451390554],[-87.65685053478229,41.945347932271],[-87.6566987354184,41.9453513741664],[-87.6565352387255,41.9453550668835],[-87.656535235785,41.9453550668662],[-87.6563942998161,41.9453563317455],[-87.6562546163569,41.9453575816101],[-87.65609628142781,41.9453589979049],[-87.6560931778796,41.9453590366778],[-87.6560899655104,41.9453590770041],[-87.65591358744049,41.9453606267333],[-87.6558250081455,41.9453614426892],[-87.6558249974775,41.9453614434495],[-87.6557739032435,41.945364895467],[-87.6557546599679,41.9453708938152],[-87.65570733346431,41.9453856607525],[-87.6556565957614,41.9454089664638],[-87.6555681479357,41.9454495941285],[-87.6555037436592,41.9454791527393],[-87.6554858822995,41.9454873504554],[-87.65522972252241,41.9456050157191],[-87.65521300571071,41.9455842193033],[-87.6551085598328,41.9454542725162],[-87.6549814246785,41.9452970617325],[-87.6549814148795,41.9452970498745],[-87.6548153144393,41.9450915149583],[-87.6548153122602,41.9450915124756],[-87.6546802905504,41.9449245341883],[-87.65457172068039,41.9447902255686],[-87.6545369201786,41.9447471746887],[-87.6542449698337,41.9444664500496],[-87.654244953095,41.9444664340342],[-87.6542532204035,41.944715957232],[-87.6542559758017,41.944808958748],[-87.6542615813721,41.9450007539992],[-87.654264706896,41.9451065416195],[-87.6542681781803,41.9452240158702],[-87.65427125593079,41.9453780901124],[-87.6542716158343,41.9453960638217],[-87.654271615073,41.945396066287],[-87.6540441662096,41.9454015017616],[-87.6539727315829,41.9454030873115],[-87.6538301437046,41.9454054449118],[-87.65381159883179,41.9454057487079],[-87.6537061935619,41.9454074760572],[-87.6536902541046,41.9454077466837],[-87.6536693473262,41.945408102062],[-87.6536250152802,41.9454088291813],[-87.6535075372672,41.945410781799],[-87.65349487584589,41.9454109900306],[-87.65346589564631,41.9454114663356],[-87.6533072824918,41.9454141070924],[-87.6530593477699,41.9454177022232],[-87.65293577723661,41.9454194968626],[-87.6528686497834,41.9454204719649],[-87.65268688454741,41.9454227122988],[-87.6524959953866,41.9454251021355],[-87.6524679035802,41.9454254443251],[-87.6524494040108,41.9454256694108],[-87.65235947217479,41.9454268031537],[-87.65226409055209,41.9454280049363],[-87.652006608783,41.9454311912726],[-87.6519831739882,41.9454318002747],[-87.65184330061329,41.9454354322077],[-87.6518433482607,41.9454364116259],[-87.65184336459041,41.9454367421261],[-87.6518467287639,41.9455517424418],[-87.6518500809039,41.9456663203492]]]],"type":"MultiPolygon"} +},{ + "id": 1024497109, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000092, + "geom:area_square_m":846966.494421, + "geom:bbox":"-87.7072187612,41.9174017102,-87.6885959649,41.9247788849", + "geom:latitude":41.92056, + "geom:longitude":-87.700346, + "iso:country":"US", + "lbl:latitude":41.92111, + "lbl:longitude":-87.701449, + "lbl:max_zoom":18.0, + "mps:latitude":41.92111, + "mps:longitude":-87.701449, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Palmer Square" + ], + "reversegeo:latitude":41.92111, + "reversegeo:longitude":-87.701449, + "src:geom":"zolk", + "wof:belongsto":[ + 85865755, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a2bd2af48089f141e9b00157da99a79b", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024497109, + "neighbourhood_id":85865755, + "region_id":85688697 + } + ], + "wof:id":1024497109, + "wof:lastmodified":1566608625, + "wof:name":"Palmer Square", + "wof:parent_id":85865755, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783501 + ], + "wof:tags":[] +}, + "bbox": [ + -87.707218761193, + 41.9174017102323, + -87.6885959648927, + 41.9247788849171 +], + "geometry": {"coordinates":[[[[-87.7069319934366,41.9174018835622],[-87.7069111962888,41.9174019855284],[-87.70666187568671,41.9174032735585],[-87.7059555247675,41.9174077108263],[-87.70556081203981,41.9174098026933],[-87.70528386803259,41.9174146619968],[-87.70525353746601,41.9174152016376],[-87.70521005268991,41.9174159752957],[-87.7050744645841,41.9174183473905],[-87.704670782094,41.9174212021559],[-87.7046093641723,41.917421632891],[-87.7044750007335,41.917422574928],[-87.7041031553254,41.9174252524394],[-87.7039512082905,41.9174269226955],[-87.7037934936274,41.9174286483956],[-87.70369161220771,41.9174297785741],[-87.7036126303724,41.917430654174],[-87.7033999383483,41.9174321722161],[-87.70322987372219,41.9174333856471],[-87.7031903979651,41.9174336638012],[-87.7031414036194,41.917434028834],[-87.7031274232403,41.9174341329496],[-87.7025926356943,41.9174352130288],[-87.702438249932,41.9174391670022],[-87.7024175602437,41.9174396973935],[-87.702280239674,41.9174432172038],[-87.7021622012866,41.9174442199072],[-87.70208885891481,41.9174448428022],[-87.7019936810543,41.917445640325],[-87.70186443178621,41.9174467226835],[-87.7017972335055,41.9174469313225],[-87.7016580977714,41.9174473633005],[-87.7015600690214,41.9174476436842],[-87.701522373258,41.9174477515859],[-87.7011948254199,41.9174511584704],[-87.70106092551489,41.9174522546616],[-87.70097248474249,41.9174529742748],[-87.70082839322561,41.9174541463392],[-87.7008255306977,41.9174541766742],[-87.7008048940427,41.917454395048],[-87.7005802268811,41.9174569113255],[-87.7004634803847,41.9174571995901],[-87.7003413169755,41.9174574866889],[-87.69999389538491,41.9174610132988],[-87.6998859469639,41.9174621058129],[-87.6997800643701,41.9174631805351],[-87.69970148552569,41.9174640545703],[-87.699444252349,41.9174669149818],[-87.69934416620551,41.9174682874913],[-87.6993095656524,41.9174687616453],[-87.6990148986808,41.9174728383729],[-87.69890017008311,41.9174741611648],[-87.69877429147419,41.9174756126737],[-87.6987619393218,41.9174756978135],[-87.6987414794157,41.9174758388572],[-87.6985989675959,41.9174769136709],[-87.69842298173199,41.9174782398287],[-87.6983255768462,41.917479146859],[-87.6982327684824,41.9174800111734],[-87.6980812911964,41.917481414185],[-87.6978291175262,41.9174837712533],[-87.6977155558472,41.9174848325807],[-87.6976176239998,41.9174857454237],[-87.69735395082211,41.917488272688],[-87.69732363819411,41.917488513133],[-87.69720056621701,41.9174894894405],[-87.6969554861618,41.9174914201137],[-87.69676908579331,41.9174937628527],[-87.6966580557249,41.9174951843138],[-87.69648219099849,41.9174974003173],[-87.6963821764143,41.9174986603235],[-87.696225865768,41.9175007105281],[-87.6960874726601,41.9175025257116],[-87.69597528370269,41.9175029507861],[-87.69588245688639,41.9175033002017],[-87.69574728143139,41.9175038095704],[-87.6952136307158,41.9175080336454],[-87.6949166009895,41.9175106899108],[-87.6948330055765,41.9175118236102],[-87.6947522176588,41.9175129190754],[-87.6946041999733,41.9175149034227],[-87.6944852607724,41.9175164980505],[-87.6943356499263,41.9175179663286],[-87.6942562705451,41.9175187454642],[-87.6941553863013,41.917518632613],[-87.6940796368667,41.9175185479164],[-87.6939289561743,41.9175183862225],[-87.6938336430714,41.9175182840786],[-87.6937385038503,41.9175190560378],[-87.6932146863837,41.9175233044633],[-87.6929806914515,41.9175253276902],[-87.6926110025326,41.9175285230899],[-87.6925919678273,41.917528664953],[-87.69259089413779,41.9175286726827],[-87.6925738534535,41.9175288133208],[-87.6924099571571,41.917530166166],[-87.69230594275,41.9175314186814],[-87.692031390151,41.9175347168355],[-87.6915901586615,41.9175387472787],[-87.6913177290125,41.9175412350666],[-87.69124600973799,41.9175418927663],[-87.69084650135819,41.9175455551386],[-87.6907308894141,41.9175464531899],[-87.6906265567892,41.9175472636007],[-87.6904691345425,41.9175490069364],[-87.690432793017,41.9175494093927],[-87.6902892631978,41.9175509923396],[-87.69002287288831,41.9175524104405],[-87.6898565486314,41.9175538648629],[-87.6896283401888,41.9175558749909],[-87.6896029497523,41.9175560918694],[-87.689599580185,41.9175561207285],[-87.6895698066603,41.9175564195031],[-87.6895131822277,41.9175570043274],[-87.6895125587445,41.9175570008315],[-87.6889688017274,41.9175625653889],[-87.68866530816361,41.9175629227819],[-87.6885959648927,41.9175630043521],[-87.6886863164393,41.9176178594436],[-87.68885780119641,41.9177219932662],[-87.68898164629471,41.917800506674],[-87.6890403130207,41.9178376990991],[-87.6891284315995,41.9178893544389],[-87.6892134129878,41.9179391710423],[-87.68951363411691,41.9181151607674],[-87.6899077437089,41.9183558433259],[-87.6904387141355,41.9186806309058],[-87.69045121087321,41.918688275493],[-87.6904512137932,41.9186882774303],[-87.6905140742103,41.9187268597533],[-87.6908457564804,41.9189304407885],[-87.6912696634176,41.9191906321855],[-87.6913198174162,41.9192205716915],[-87.6913320470114,41.9192278724834],[-87.6915779332743,41.9193746546098],[-87.6916253259544,41.9194033806931],[-87.6917610220015,41.9194856299196],[-87.6919021002539,41.9195711414777],[-87.6919353624257,41.9195914243626],[-87.6919953189709,41.9196279849915],[-87.6922745378648,41.9197982480922],[-87.692607093123,41.920001475434],[-87.6926071117487,41.9200014867893],[-87.6927122790207,41.9200653417583],[-87.6927892989294,41.9201121058068],[-87.69299729480871,41.9202383936587],[-87.69310378248009,41.9203027117217],[-87.6931466668708,41.9203286140222],[-87.6933532780521,41.9204534058603],[-87.693353289741,41.920453412786],[-87.6935445381734,41.9205715198815],[-87.69371881106041,41.9206784484362],[-87.69387267357629,41.9207728533883],[-87.69395990471681,41.9208263754676],[-87.6940374182312,41.9208739347799],[-87.6944234351034,41.9211078607967],[-87.69468572458889,41.9212675230198],[-87.6947320888746,41.9212957462132],[-87.6948719669889,41.9213817647183],[-87.6953774484534,41.9216926088606],[-87.6954130967034,41.9217145269266],[-87.6954454142524,41.9217343968476],[-87.6955902342759,41.9218211880833],[-87.6956673775926,41.9218674201445],[-87.6957875249594,41.9219394246006],[-87.6958777577464,41.921994636959],[-87.695951506233,41.9220397624444],[-87.69615341134759,41.9221633049357],[-87.69615684119471,41.922165403544],[-87.6961568558073,41.9221654121322],[-87.6964399059723,41.9223372807148],[-87.6967143132309,41.922504169576],[-87.6967174641467,41.9225063862692],[-87.6967192393881,41.9225076351302],[-87.6967250364719,41.9225110942617],[-87.6967436912584,41.9225222248146],[-87.6968209246469,41.9225693599964],[-87.6970593415861,41.9227161506727],[-87.69717452975431,41.9227870704861],[-87.6973615723136,41.9229065839467],[-87.69739674166379,41.9229290558195],[-87.69768115906081,41.9231107861633],[-87.69770042164519,41.9231226147631],[-87.69774474560479,41.9231498317551],[-87.69797410095291,41.9232897666018],[-87.6983423987695,41.923514470778],[-87.69834240789559,41.9235144768658],[-87.69864379044211,41.9236958565383],[-87.69876433293091,41.9237684215185],[-87.69886686654419,41.9238320781698],[-87.6991233581505,41.923991316451],[-87.6991631834448,41.9240160412598],[-87.6992007961061,41.9240390030185],[-87.69938142250901,41.9241492711327],[-87.6996022222188,41.9242845808498],[-87.6996633931826,41.924322067317],[-87.6999060558912,41.9244716493501],[-87.70013855253291,41.9246163449687],[-87.7004046883802,41.9247788849171],[-87.700412796717,41.9247787891077],[-87.700458175139,41.9247782568546],[-87.7006679071788,41.9247757976949],[-87.7007441805229,41.9247749031749],[-87.7007546148086,41.9247747809133],[-87.70079232811111,41.9247743385707],[-87.70105881850159,41.9247738853691],[-87.70142236424751,41.9247714558553],[-87.7014241032106,41.9247714440205],[-87.701428072098,41.9247714175644],[-87.7015381324909,41.9247705138883],[-87.7016467313511,41.9247696223734],[-87.70170825040729,41.9247691172257],[-87.70191109012011,41.9247670009746],[-87.7020544384107,41.9247655051586],[-87.7021343230448,41.924764661128],[-87.7023183354203,41.9247627167273],[-87.7028522152596,41.9247570729444],[-87.70290826180999,41.9247566619665],[-87.7030191668071,41.9247558487743],[-87.7030580875318,41.9247555602293],[-87.70310633594271,41.9247552023972],[-87.7036900451415,41.9247486901768],[-87.7038442250882,41.9247472358804],[-87.7039568496707,41.9247461738012],[-87.7041119665581,41.9247451394824],[-87.7046432587524,41.924741595575],[-87.70481099594529,41.9247404762838],[-87.7049982409392,41.9247392263997],[-87.7053672073785,41.9247360308552],[-87.7057945383976,41.9247316986809],[-87.70584157841409,41.9247314299662],[-87.70588376394809,41.9247311884916],[-87.7062249127268,41.9247280401516],[-87.7062260925199,41.924728016683],[-87.70639195836669,41.9247246988106],[-87.7066054777935,41.9247224341698],[-87.7068707764939,41.9247168495767],[-87.7068707842129,41.9247168493444],[-87.7069150206903,41.9247159180797],[-87.707218761193,41.9247163609812],[-87.7072140397925,41.9245210253357],[-87.7072128510346,41.9244718302372],[-87.70721100537899,41.9244148050217],[-87.7072048298527,41.9242240283787],[-87.707199936724,41.9240747879305],[-87.7071848572032,41.9236121925899],[-87.7071801336117,41.9234696728387],[-87.7071787185937,41.923426973455],[-87.7071686258933,41.9232674892446],[-87.7071676552123,41.9232272629101],[-87.7071595542495,41.9228920045034],[-87.7071541438022,41.9226681398894],[-87.7071514658971,41.9225935698375],[-87.70715095877119,41.9225794436304],[-87.7071428370368,41.9223458735268],[-87.7071425936668,41.9223388579536],[-87.70713065876031,41.9219812559382],[-87.7071185656696,41.9216398052887],[-87.70711544229771,41.9215364312967],[-87.70711288330671,41.921451736774],[-87.7071071031982,41.921261717397],[-87.70710710291129,41.9212617091627],[-87.7070947915324,41.9210462843168],[-87.7070929939661,41.9210148717598],[-87.7070847514635,41.9208974405179],[-87.7070782867079,41.9208053333783],[-87.7070744971554,41.9206628510305],[-87.707067656221,41.9204058120527],[-87.7070406983061,41.9193929375565],[-87.7070344296318,41.9192250339309],[-87.7070299399186,41.9191045317441],[-87.7070022047396,41.9183601632919],[-87.7070018696824,41.9183506153874],[-87.706967427951,41.9174017102323],[-87.7069319934366,41.9174018835622]]]],"type":"MultiPolygon"} +},{ + "id": 1024497111, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":574319.797538, + "geom:bbox":"-87.5804033761,41.7233088303,-87.5704982327,41.7298271766", + "geom:latitude":41.726565, + "geom:longitude":-87.57546, + "iso:country":"US", + "lbl:latitude":41.726307, + "lbl:longitude":-87.576273, + "lbl:max_zoom":18.0, + "mps:latitude":41.726567, + "mps:longitude":-87.57546, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.726567, + "reversegeo:longitude":-87.57546, + "src:geom":"zolk", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85867531, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e025328e18dab1af79c3cff6e6317be3", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":1024497111, + "neighbourhood_id":85867531, + "region_id":85688697 + } + ], + "wof:id":1024497111, + "wof:lastmodified":1566608626, + "wof:name":"Pill Hill", + "wof:parent_id":85867531, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85890763 + ], + "wof:tags":[] +}, + "bbox": [ + -87.5804033760904, + 41.7233088303425, + -87.5704982327011, + 41.7298271766021 +], + "geometry": {"coordinates":[[[[-87.57976020014971,41.7233152131953],[-87.5796733788717,41.7233161918466],[-87.5796370654045,41.7233166010493],[-87.5793146177308,41.7233202730879],[-87.5788710372709,41.7233253229912],[-87.5781385696732,41.7233392586152],[-87.5779263957137,41.7233432944123],[-87.5773932967959,41.7233472646056],[-87.5704982327011,41.7234338000867],[-87.5705206880553,41.7240902753768],[-87.5705267270465,41.7243643380699],[-87.57053998593349,41.7248310933488],[-87.5705399858946,41.7248310966417],[-87.570561945476,41.7256286812582],[-87.5705723181355,41.7259936612233],[-87.5705754780323,41.7260947233562],[-87.57057806025691,41.7261772940501],[-87.5705801211852,41.7262432035867],[-87.5705852886023,41.7264084676593],[-87.5705951886993,41.7267174056037],[-87.5706018873144,41.7269687191918],[-87.5706056609101,41.7270769343109],[-87.5706170144707,41.7274025305024],[-87.5706259284369,41.7277650645455],[-87.5706272053061,41.7278169890665],[-87.57062799871881,41.7278518388449],[-87.5706314669665,41.7280042106212],[-87.57063619741309,41.7282120099257],[-87.57065316219111,41.7287909250181],[-87.5706710412941,41.7292863642119],[-87.5706748718498,41.7294410087221],[-87.570680187185,41.7296555894779],[-87.570682996012,41.7298271766021],[-87.5711085972938,41.7298212896604],[-87.5712844975935,41.7298188561136],[-87.5713663958401,41.7298177293246],[-87.5715628065342,41.7298150260265],[-87.5718953642783,41.7298103618185],[-87.57249678935349,41.7298019181166],[-87.572769304099,41.7297985415393],[-87.5729832150394,41.7297957639368],[-87.5731093180092,41.7297941267979],[-87.57355289067431,41.7297883875722],[-87.5736311975768,41.7297872551805],[-87.57371586724079,41.7297860308769],[-87.573909011472,41.7297831943961],[-87.5740493209756,41.7297811333648],[-87.5742240414901,41.7297789427417],[-87.5743229627324,41.7297777023698],[-87.574450689766,41.7297760882079],[-87.57457099746,41.7297745673408],[-87.57464809830761,41.7297732789225],[-87.57484566282351,41.7297699777237],[-87.5749921785428,41.7297680166085],[-87.5750815755883,41.7297668200279],[-87.5752933019738,41.72976427591],[-87.575330191004,41.7297638326402],[-87.5753497285784,41.7297635754001],[-87.575534860305,41.7297611372387],[-87.57614680838149,41.7297531225418],[-87.5761468208397,41.7297531223495],[-87.5761577193169,41.7297529737988],[-87.5762749655073,41.7297513763612],[-87.5764564994103,41.7297491108746],[-87.5767542461096,41.7297453943248],[-87.5769957903218,41.7297423861365],[-87.5772114448642,41.7297396609864],[-87.57728353795029,41.7297387497668],[-87.57772774129781,41.7297321837851],[-87.57796625793119,41.7297288915653],[-87.578187032614,41.7297258445013],[-87.5784261940927,41.7297225426663],[-87.578477177544,41.7297218608432],[-87.57858089111051,41.7297204737494],[-87.5787385318128,41.7297183364123],[-87.57888601163231,41.7297163365954],[-87.57918510984391,41.72971221701],[-87.57940963579,41.729709237498],[-87.5794967499635,41.7297078833663],[-87.5795623550933,41.7297068633861],[-87.57970259991239,41.7297046981514],[-87.5797950671396,41.729703442022],[-87.5797950839968,41.7297034415837],[-87.5800634827426,41.7296998176316],[-87.5804033760904,41.7296957004977],[-87.58040202127211,41.7296106539454],[-87.5804011794186,41.7295577894409],[-87.5803989495258,41.7294407316305],[-87.5803954466526,41.7292568124221],[-87.58038797982459,41.7289679604647],[-87.5803836823854,41.7287869902851],[-87.5803796182327,41.7286160043341],[-87.5803710547046,41.7283146011859],[-87.5803686793944,41.7281999941648],[-87.580364667949,41.7280064601826],[-87.5803622085454,41.7278743974121],[-87.580359626004,41.7277362217014],[-87.5803509720416,41.7274226232913],[-87.58034203661239,41.7270898723891],[-87.5803411737151,41.7270447436637],[-87.580339745502,41.726970005324],[-87.5803375403878,41.7268560758641],[-87.5803324224383,41.7265790559103],[-87.58033123665039,41.7265242156893],[-87.5803266384456,41.7263091327603],[-87.5803236828595,41.7261834922316],[-87.58032339319649,41.7261711856611],[-87.58032276769219,41.7261537897583],[-87.58031902301001,41.7260497041948],[-87.580312269212,41.7258628384107],[-87.58030656112039,41.725573154205],[-87.5802967393427,41.7251599525282],[-87.5802967394293,41.7251599451191],[-87.58029346466451,41.7248981077234],[-87.5802851620859,41.7245744121138],[-87.5802782441305,41.7242386179254],[-87.5802488926022,41.7233088303425],[-87.57976020014971,41.7233152131953]]]],"type":"MultiPolygon"} +},{ + "id": 890536713, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000098, + "geom:area_square_m":814571.484566, + "geom:bbox":"-122.388342553,47.4963756158,-122.370397006,47.508193", + "geom:latitude":47.503057, + "geom:longitude":-122.377496, + "iso:country":"US", + "lbl:latitude":47.502908, + "lbl:longitude":-122.377628, + "lbl:max_zoom":18.0, + "mps:latitude":47.502908, + "mps:longitude":-122.377628, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.502908, + "reversegeo:longitude":-122.377628, + "src:geom":"seagv", + "wof:belongsto":[ + 85803355, + 102191575, + 890536787, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"822a519ea1286e4db585df8dbbf07bde", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536787, + "microhood_id":890536713, + "neighbourhood_id":85803355, + "region_id":85688623 + } + ], + "wof:id":890536713, + "wof:lastmodified":1566631087, + "wof:name":"Arroyo Heights", + "wof:parent_id":85803355, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420549565 + ], + "wof:tags":[] +}, + "bbox": [ + -122.38834255339306, + 47.49637561575688, + -122.370397005649, + 47.508193 +], + "geometry": {"coordinates":[[[[-122.37563853870212,47.49645122254288],[-122.375652,47.496434],[-122.37565593713586,47.49643115797901],[-122.3757700434923,47.49637561575688],[-122.37581384710548,47.49642026427009],[-122.37588784305839,47.49652812671902],[-122.37593668808141,47.49660642512399],[-122.37600633253369,47.49670393546428],[-122.37622890950868,47.49689349664508],[-122.37626963993677,47.49691972092205],[-122.37634631106764,47.4969811887649],[-122.37640661784901,47.49703658130231],[-122.37647707626479,47.49709320641885],[-122.37650973499085,47.49713719222695],[-122.3765736888469,47.49717908164175],[-122.3766652354324,47.4972304932861],[-122.37673898489615,47.49726158102801],[-122.37680070657342,47.49729638872547],[-122.37687965723966,47.49733233275065],[-122.37692101835918,47.49736274702046],[-122.37696520274436,47.49738601060368],[-122.37706579300618,47.49743537104067],[-122.37713969641986,47.497471640784],[-122.3772101699066,47.49749454681855],[-122.3772789936333,47.49753007161914],[-122.37737945511482,47.49757506311561],[-122.37754664569562,47.4976531227064],[-122.37763088024542,47.49769666365748],[-122.37771223651202,47.49774547086655],[-122.37776909006102,47.49778664228342],[-122.37783534436811,47.49783783969091],[-122.37789443208175,47.49788613576641],[-122.37793399105442,47.49792398622568],[-122.37797715263228,47.49798098179026],[-122.3780100067649,47.49803151981657],[-122.37804996480962,47.49808281793273],[-122.37808782722043,47.49813165959787],[-122.37811120844272,47.49816973009995],[-122.37810285063154,47.49822905475441],[-122.37811848466092,47.4982787558405],[-122.37822385733958,47.49838700389965],[-122.37827899005788,47.49843835273929],[-122.37833236899081,47.4984987653],[-122.37840337176968,47.49853948696619],[-122.37849229886783,47.49857062434268],[-122.37858057289085,47.49861385273041],[-122.3786732809936,47.49867017373961],[-122.37876485637887,47.49872239729043],[-122.37884424138143,47.49877285840903],[-122.37893645498525,47.4988124767583],[-122.379015369326,47.49884704926158],[-122.37910362722771,47.49888972046668],[-122.37917429774609,47.49891917792299],[-122.37923903211995,47.49895312905059],[-122.37930494780707,47.49899280541661],[-122.37936448802449,47.49902215703447],[-122.37944044285213,47.49905925449835],[-122.37952563571079,47.49910085310543],[-122.37959870356217,47.49914291686162],[-122.37966475818791,47.49918726094566],[-122.37975898642215,47.49922655111946],[-122.37984285193819,47.49925749948358],[-122.37991031990812,47.49928125910572],[-122.37997781154321,47.49930583194197],[-122.38003736902226,47.49933574034109],[-122.38008180800234,47.49936748251503],[-122.38018863469362,47.49942223906294],[-122.38036654317679,47.49948618130696],[-122.38045260243575,47.49952284035125],[-122.38059202320733,47.4995851214516],[-122.38070178630532,47.49963653863811],[-122.38080430927921,47.49968257030416],[-122.38089637091932,47.49971696235402],[-122.38100072955046,47.49975667045885],[-122.38109715363034,47.49980171380102],[-122.38118019716114,47.49983897042446],[-122.38128795570675,47.499890971394],[-122.38140072926572,47.49994153260389],[-122.38150024432404,47.49998841894591],[-122.38160472551984,47.50003223799533],[-122.38166414666236,47.50005747725923],[-122.38174823464614,47.50009583290176],[-122.38182102843243,47.50012855902924],[-122.38191104515204,47.50016216388617],[-122.38200964740618,47.50021236112235],[-122.38207923722047,47.50023938907461],[-122.38217167468629,47.50028637138113],[-122.38225859370185,47.50031783301014],[-122.38231984177365,47.50033644890782],[-122.38239191852601,47.50037908145055],[-122.38245591416494,47.50042208111947],[-122.38252388054488,47.50046254162591],[-122.38258273888944,47.50050286909523],[-122.3826426420394,47.50054429629616],[-122.38272065545371,47.50058243473705],[-122.38278849244266,47.50061852677928],[-122.38285011648671,47.50064977613068],[-122.38289710291555,47.50066503019565],[-122.38295945258399,47.50068667268504],[-122.38300146445997,47.50070473682018],[-122.38304462672781,47.5007274550555],[-122.38311632146387,47.50075719588347],[-122.38319209361198,47.50078795256115],[-122.38326277740025,47.50081770709786],[-122.38332962813951,47.50085462621603],[-122.38339104910058,47.50087902337445],[-122.38345231425967,47.50089819510031],[-122.38349727121987,47.50091321970929],[-122.38354744676771,47.50093365714908],[-122.38357844190823,47.50095542728183],[-122.38364134610872,47.50099569933506],[-122.38370305261104,47.50102968933412],[-122.3837808230203,47.50105960406665],[-122.38383708260376,47.50108051496453],[-122.38389667667118,47.50111149174487],[-122.38394735817977,47.50114893139946],[-122.38398168883003,47.50118081014048],[-122.38403825813361,47.50121212824608],[-122.38407919472098,47.50122802146367],[-122.38414852584842,47.50124626873701],[-122.38418048415267,47.50126639770161],[-122.38422066191764,47.50129078447207],[-122.38425893211375,47.50131905317379],[-122.38432279999213,47.50135768349401],[-122.38434569854606,47.5013793070995],[-122.38439406409249,47.50140688085136],[-122.38447820468677,47.50144686236878],[-122.38456223964786,47.50148328876626],[-122.38463200375195,47.50151605453242],[-122.38468315067098,47.5015351069263],[-122.38475493717883,47.50156784498806],[-122.38482868103146,47.50159837069499],[-122.384884101257,47.50162503392377],[-122.38493848568037,47.50165089735234],[-122.38499298409926,47.50168057226879],[-122.3850463817147,47.50170726305986],[-122.38513871152816,47.50175043107315],[-122.3852043905049,47.50178188103869],[-122.38529880733574,47.50182720526688],[-122.38533901920087,47.50185270520651],[-122.38539229530515,47.50187528433946],[-122.38547677160993,47.50189251022952],[-122.38550951374982,47.50190495880451],[-122.38557096831555,47.50193042520262],[-122.38563168262064,47.50196498475873],[-122.38567867104805,47.50198023767305],[-122.38571403869045,47.50197894022673],[-122.38576938581804,47.50200311907999],[-122.38583788722771,47.50202741779546],[-122.38590125904831,47.5020493016527],[-122.38596668636853,47.50207227173819],[-122.38602592395078,47.50209121291307],[-122.38609365039956,47.50212344830832],[-122.38615903707613,47.50214504755323],[-122.38619287996022,47.50216048002679],[-122.38622477457051,47.50217842444074],[-122.38624190919427,47.5022102804252],[-122.38627777494612,47.50222568520974],[-122.3863289474051,47.50224555081],[-122.38637811420222,47.50226600082848],[-122.38641080703934,47.50227677879717],[-122.38644176290722,47.50226320233242],[-122.38648781416966,47.50228095269232],[-122.38656390944392,47.50232241333652],[-122.38664696037644,47.5023596659703],[-122.38671874925217,47.502392402791],[-122.38675654772703,47.50240478184361],[-122.38678960054874,47.50242763699869],[-122.3868105599709,47.50245202888198],[-122.38684208001742,47.50249135729223],[-122.38688046534563,47.50248946119244],[-122.38690754019994,47.50251539724677],[-122.38688315828936,47.50254589320578],[-122.38689230199333,47.50258115766157],[-122.38691346569145,47.50261240176997],[-122.38694596441042,47.50265060309671],[-122.38699142998048,47.50268262835709],[-122.38702975119725,47.50271252366933],[-122.38707852013394,47.50275354430232],[-122.387124630378,47.50280719735325],[-122.38715960984528,47.50286074542923],[-122.38719884640011,47.50292134789975],[-122.38722495356534,47.50298268668485],[-122.38726565964355,47.50305864977759],[-122.38729053499631,47.50311259371048],[-122.38732904612345,47.50318280298132],[-122.38735781944497,47.50323176611386],[-122.38738197866232,47.50329561648211],[-122.38740205957787,47.50335840864297],[-122.3874358153671,47.50340481861283],[-122.38746891238046,47.50346306289087],[-122.38750880985157,47.50351187373888],[-122.38754850313354,47.5035538319791],[-122.38758671237876,47.50361389138106],[-122.38762361741895,47.50366411408805],[-122.38765261214814,47.50372048617098],[-122.38768033404679,47.50376809268457],[-122.38770823653471,47.50382173783061],[-122.38773218271524,47.50387843592154],[-122.38774162089217,47.50392355082484],[-122.38776595833109,47.50395942116681],[-122.38779496787963,47.50398233139715],[-122.38783788928112,47.50399682519764],[-122.38786914979887,47.5040273739136],[-122.38790870406933,47.50406466411832],[-122.38794527518488,47.50410366617857],[-122.38797552413371,47.50413422871586],[-122.38800252811615,47.50415772336267],[-122.38802939240756,47.50417654974258],[-122.38806358835615,47.50420375933388],[-122.38810301315762,47.50423668116395],[-122.38814865195999,47.50427444499056],[-122.38818913657452,47.50430898013801],[-122.38822022634868,47.50433379007944],[-122.38824729515773,47.50435946864965],[-122.38828260086476,47.50438996186715],[-122.38830763970761,47.50441541130161],[-122.38833254702952,47.50443644997937],[-122.38832349734616,47.50447222039245],[-122.38834255339306,47.50451754610902],[-122.38735627927244,47.5041813933785],[-122.38675382264105,47.503756435474],[-122.38604782032112,47.50316622542353],[-122.38577628393608,47.50293133680538],[-122.3851879028576,47.50250253674265],[-122.38515859135046,47.50248639939486],[-122.38512739266949,47.50247482918925],[-122.38509377932061,47.50246710539561],[-122.38505876370728,47.50246325664558],[-122.38502329758799,47.5024612563468],[-122.38498786280753,47.50246032645551],[-122.38494791127575,47.50246057264097],[-122.38491054979222,47.50246288264619],[-122.38487593104604,47.50247235310614],[-122.38484809856674,47.50248892842295],[-122.38482707506752,47.50251333728137],[-122.3848115838081,47.50253668498922],[-122.38480016770507,47.50256100504225],[-122.38479231433463,47.50258604787503],[-122.38478851830064,47.50261146382095],[-122.3847887732306,47.50263703851743],[-122.38479256541686,47.50266247924456],[-122.38480089478081,47.50268742943035],[-122.38501347532532,47.5032699950188],[-122.38519636282479,47.50375549479465],[-122.38513216114657,47.50402869193324],[-122.38510644510892,47.50404840880338],[-122.38507865775163,47.50406652611682],[-122.38504829044132,47.50408292236307],[-122.3850163474491,47.50409736901584],[-122.38498232217314,47.50410983017641],[-122.38494671741971,47.50412021403488],[-122.38491003518791,47.50412838421822],[-122.3848722749851,47.5041343414341],[-122.38483393986817,47.50413794999776],[-122.38479553668461,47.50413928862343],[-122.38475655681619,47.50413823615155],[-122.38471852007041,47.50413489992645],[-122.38468092087307,47.50412924368532],[-122.38464375949835,47.50412131129773],[-122.38460805091854,47.50411121630509],[-122.3845737974671,47.50409900219871],[-122.38454150598865,47.50408474769593],[-122.38451118261442,47.50406862399397],[-122.3844828293748,47.50405071670634],[-122.38445695593808,47.50403114733208],[-122.38443407401049,47.50401012333332],[-122.38441368335425,47.50398782282407],[-122.38439679769,47.50396431759867],[-122.38438241476229,47.50393992143835],[-122.3843715495525,47.50391474858883],[-122.38436420971647,47.5038890565674],[-122.38368647601264,47.50314296343509],[-122.38298777640767,47.50279701983307],[-122.38228815978354,47.50255609662305],[-122.38225931756484,47.50253870966102],[-122.38222652999869,47.50252471820787],[-122.38219081715106,47.50251440878686],[-122.38215320106836,47.50250815213081],[-122.38211469650014,47.50250602108954],[-122.38207631608233,47.50250808713922],[-122.38203907018998,47.50251429332862],[-122.38200346211559,47.50252454750596],[-122.38197049409138,47.50253853591447],[-122.38194167165379,47.50255585264576],[-122.38191698283238,47.50257611213701],[-122.38189792933629,47.50259877937172],[-122.38188398754984,47.50262326236744],[-122.38200601626191,47.50286598301571],[-122.38217311331836,47.50351905327271],[-122.38189663193305,47.5041560225407],[-122.38169759065843,47.50516956645081],[-122.38154722171264,47.5062789055647],[-122.381501,47.506372],[-122.381494,47.507341],[-122.375968,47.50729],[-122.375935,47.508187],[-122.37469299999999,47.508188],[-122.373407,47.508193],[-122.373451,47.506396],[-122.37217800000001,47.506349],[-122.371404,47.506358],[-122.37047284462967,47.50639762363278],[-122.37043300173146,47.50614248570067],[-122.37039955069869,47.50586675361628],[-122.370397005649,47.50578042373847],[-122.37040399999999,47.505686],[-122.37044899999999,47.505503],[-122.37044850110217,47.50550299757424],[-122.3704982386117,47.50531936215803],[-122.37055211316712,47.50481332670196],[-122.37054972340627,47.50390874330179],[-122.37055093640573,47.50388126367762],[-122.37055366769069,47.50385380631959],[-122.37055741267336,47.503826420878],[-122.37056217009027,47.50379906455017],[-122.37056743714506,47.50377183013288],[-122.37057422448403,47.50374470359341],[-122.37058253387426,47.50371772737621],[-122.37059135290831,47.50369087341983],[-122.37060118814439,47.50366417663326],[-122.37061204086369,47.50363768052048],[-122.37062391105438,47.50361138473032],[-122.37063679871508,47.5035852892625],[-122.37065070637875,47.50355948007267],[-122.37066563203787,47.50353387154828],[-122.37068157715892,47.50350854860645],[-122.37069854280723,47.50348351228525],[-122.37071652969485,47.50345880434124],[-122.37073503200831,47.50343443267518],[-122.37075506015083,47.50341034008506],[-122.37077560673875,47.50338666866845],[-122.37079618362969,47.5033640255627],[-122.37213623462632,47.50211756868258],[-122.37243946972841,47.50190352134382],[-122.37324795218477,47.50129398123584],[-122.37378422628289,47.50085316501335],[-122.37381350316466,47.50083404473081],[-122.37384071856823,47.50081362429582],[-122.37386587755229,47.50079207492004],[-122.37388897960003,47.5007693966119],[-122.37390952373528,47.50074572497984],[-122.37392801852511,47.50072118123327],[-122.37394345591368,47.50069586504091],[-122.37395685081327,47.50066989109271],[-122.37396769992951,47.50064335150675],[-122.37397600834518,47.50061641819555],[-122.37398127203107,47.50058914081834],[-122.3739840013375,47.50056168337882],[-122.37398420007284,47.50053417463561],[-122.37398136293376,47.50050662109399],[-122.37405523962695,47.49989144437008],[-122.37414758628616,47.49952481454247],[-122.37425500300441,47.49927455922489],[-122.37495740055641,47.49742254456911],[-122.37563853870212,47.49645122254288]]]],"type":"MultiPolygon"} +},{ + "id": 890536715, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":194958.281514, + "geom:bbox":"-122.300913618,47.6612455881,-122.295650781,47.6662252396", + "geom:latitude":47.663514, + "geom:longitude":-122.298414, + "iso:country":"US", + "lbl:latitude":47.663565, + "lbl:longitude":-122.298556, + "lbl:max_zoom":18.0, + "mps:latitude":47.663565, + "mps:longitude":-122.298556, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "University Village" + ], + "name:fra_x_preferred":[ + "University Village" + ], + "reversegeo:latitude":47.663565, + "reversegeo:longitude":-122.298556, + "src:geom":"mz", + "wof:belongsto":[ + 85843839, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7894977" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"353c3df657a04d225270327a7d15f7f0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536715, + "neighbourhood_id":85843839, + "region_id":85688623 + } + ], + "wof:id":890536715, + "wof:lastmodified":1566631088, + "wof:name":"University Village", + "wof:parent_id":85843839, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420549575 + ], + "wof:tags":[] +}, + "bbox": [ + -122.3009136175138, + 47.6612455880889, + -122.29565078056527, + 47.66622523964977 +], + "geometry": {"coordinates":[[[[-122.30090620979551,47.66410906615871],[-122.30089775246643,47.66454245850674],[-122.3008965070278,47.66455368948725],[-122.30089316919884,47.6645792244294],[-122.30089033826785,47.66460475284062],[-122.30088649179329,47.66463025116592],[-122.30088315222665,47.66465574331119],[-122.30087930575471,47.66468124198705],[-122.30087545807051,47.66470669785956],[-122.30087110174226,47.66473211711521],[-122.30086674714752,47.66475757951809],[-122.30086188391762,47.66478300565495],[-122.30085752636791,47.66480838210676],[-122.30085215449743,47.66483377197726],[-122.30084729003495,47.6648591549593],[-122.30084141004176,47.66488450855663],[-122.30083603572875,47.66490981246896],[-122.30083015451591,47.6649351232624],[-122.30082427155965,47.66496039090813],[-122.30081788169261,47.664985665084],[-122.30059341544963,47.6658771737749],[-122.3005954097455,47.66620539519496],[-122.30035124581799,47.66621163496679],[-122.29994446514377,47.66622523964977],[-122.29940599507499,47.66620709984672],[-122.29906868328085,47.66617328510933],[-122.29879076145387,47.66612996546804],[-122.29844752262866,47.66606723046177],[-122.298169647382,47.66599290701619],[-122.29787852381745,47.66588704301725],[-122.29747536673159,47.66571160505181],[-122.2971112422517,47.66551337333509],[-122.29682830568031,47.66533192955141],[-122.29613440230943,47.66485836743778],[-122.29567616423166,47.66448723909587],[-122.29565078056527,47.66124569274778],[-122.29569212291418,47.6612455880889],[-122.29673128937964,47.66125002144754],[-122.29811744606995,47.66125323979036],[-122.29876384587044,47.66125473617559],[-122.29969796372362,47.66125813754369],[-122.30091234020691,47.66125076590333],[-122.3009136175138,47.66278758859882],[-122.30090405159584,47.66394033062531],[-122.30090620979551,47.66410906615871]]]],"type":"MultiPolygon"} +},{ + "id": 890536717, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":419409.055856, + "geom:bbox":"-122.347307567,47.6649969803,-122.340017468,47.6755373244", + "geom:latitude":47.668794, + "geom:longitude":-122.344157, + "iso:country":"US", + "lbl:latitude":47.668162, + "lbl:longitude":-122.344226, + "lbl:max_zoom":18.0, + "mps:latitude":47.668162, + "mps:longitude":-122.344226, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Woodland Park" + ], + "name:deu_x_preferred":[ + "Woodland Park" + ], + "name:fra_x_preferred":[ + "Woodland Park" + ], + "name:ita_x_preferred":[ + "Woodland Park" + ], + "name:nld_x_preferred":[ + "Woodland Park" + ], + "name:srp_x_preferred":[ + "\u0412\u0443\u0434\u043b\u0430\u043d\u0434 \u041f\u0430\u0440\u043a" + ], + "reversegeo:latitude":47.668162, + "reversegeo:longitude":-122.344226, + "src:geom":"mz", + "wof:belongsto":[ + 85841499, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8cde82246173996a5147efbb738f17ab", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536717, + "neighbourhood_id":85841499, + "region_id":85688623 + } + ], + "wof:id":890536717, + "wof:lastmodified":1566631091, + "wof:name":"Woodland Park", + "wof:parent_id":85841499, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420549625 + ], + "wof:tags":[] +}, + "bbox": [ + -122.34730756666228, + 47.66499698028807, + -122.3400174680942, + 47.67553732436083 +], + "geometry": {"coordinates":[[[[-122.34701944121849,47.67420547450223],[-122.3469761549175,47.67457193378778],[-122.34691967206201,47.67493212392308],[-122.34677906074185,47.67553732436083],[-122.34676768459384,47.67551262590005],[-122.34675479088969,47.67548811922534],[-122.34674139517202,47.67546379014411],[-122.3467310817032,47.67544074856916],[-122.34671970310622,47.67541596449804],[-122.34670781898362,47.67539127313056],[-122.34669593787444,47.67536666700956],[-122.34668354925687,47.67534206762877],[-122.34667116440049,47.67531759700569],[-122.34665827328301,47.67529317592531],[-122.34664487641437,47.67526880402978],[-122.34663148206128,47.67524451808897],[-122.34661758321447,47.67522032448633],[-122.34660368510748,47.6751961736916],[-122.34658928250757,47.67517211523479],[-122.34657437365982,47.67514810667075],[-122.34655946855456,47.67512422616207],[-122.34654456523899,47.67510038879812],[-122.34652864938533,47.67507665016842],[-122.34651324304639,47.67505299075898],[-122.3464968252197,47.67502943042042],[-122.34648091689732,47.67500594895128],[-122.34646399657916,47.67498256691032],[-122.34644707875846,47.67495927012148],[-122.34643016344535,47.67493605893561],[-122.34641274365391,47.67491294043686],[-122.34639481833564,47.67488991428804],[-122.34637689604504,47.67486697373494],[-122.3463589775087,47.67484416158725],[-122.34634004697064,47.67482144851522],[-122.34632162470035,47.67479877186062],[-122.34630270042565,47.67477627279604],[-122.34628326990966,47.6747538236216],[-122.34626333615441,47.67473150958477],[-122.3462439131485,47.67470931722001],[-122.34622347815429,47.67468722428024],[-122.34620304565928,47.67466521659145],[-122.34618261692978,47.67464333765803],[-122.34616168370603,47.67462155070787],[-122.34614075372846,47.67459989251978],[-122.34611931927766,47.67457832701623],[-122.34609738157963,47.67455689629802],[-122.34607595412052,47.67453558760965],[-122.34605351642212,47.6745144204382],[-122.34603108124394,47.67449333921867],[-122.34600864982153,47.67447238640293],[-122.34598571340803,47.67445152627745],[-122.3459622749946,47.67443084373888],[-122.34593934609282,47.67441024042053],[-122.34591540769091,47.67438982177777],[-122.34589147179926,47.67436948873545],[-122.34586753966359,47.67434928409634],[-122.34584310430344,47.67432921494211],[-122.34581867268905,47.67430927384004],[-122.34579373733115,47.6742894682293],[-122.34576880698505,47.67426983417496],[-122.34574337162974,47.6742502921071],[-122.3457179400406,47.67423087879264],[-122.34569200646351,47.67421164341366],[-122.34566607664232,47.674192536437],[-122.3456401505768,47.6741735578627],[-122.34489790585654,47.67369168817437],[-122.34439354458372,47.67318780751118],[-122.34436943800196,47.67316156385798],[-122.34435001514687,47.67313932836622],[-122.34433008159631,47.67311697118694],[-122.34431116005059,47.67309451494367],[-122.34429223478801,47.67307193028892],[-122.34427381277662,47.67304921014802],[-122.34425538829259,47.67302640439858],[-122.34423746883316,47.67300350631],[-122.34421954565646,47.6729804798103],[-122.3442021257399,47.67295731817591],[-122.34418521208079,47.67293410665484],[-122.34416829470391,47.67291076672292],[-122.34415188235984,47.67288733480359],[-122.34413597450812,47.67286381020224],[-122.34412006293806,47.67284015719035],[-122.34410414888379,47.67281641821979],[-122.34408924860017,47.67279262333525],[-122.34407434406792,47.67276869969643],[-122.34405943831538,47.67274473360374],[-122.34404554330312,47.67272062529734],[-122.344031647579,47.67269647417953],[-122.34401774761587,47.6726721946586],[-122.34400435390504,47.67264786525279],[-122.3439914652221,47.67262344386117],[-122.34397908228088,47.67259897294275],[-122.34396669685289,47.6725744160666],[-122.34395430894835,47.6725497735835],[-122.34394293428721,47.67252507519545],[-122.34393155713849,47.67250029084985],[-122.34392017751243,47.67247542089755],[-122.34390981288081,47.67245053748582],[-122.34389944399726,47.67242552532086],[-122.34388907513392,47.67240051350574],[-122.34387971877449,47.67237540262613],[-122.34387036065046,47.67235024859902],[-122.34386100182105,47.67232505211228],[-122.34385265568825,47.67229979902717],[-122.34384380010489,47.6722744670578],[-122.34383595899035,47.67224912163702],[-122.34382811539545,47.67222369061013],[-122.34382077930773,47.67219825320478],[-122.34381394768843,47.67217272276987],[-122.3438071166055,47.67214719267847],[-122.34380079073502,47.67212161306901],[-122.34379446414619,47.67209599064949],[-122.34378915202031,47.67207035477931],[-122.34378383741172,47.67204463330332],[-122.34377852404218,47.67201895427897],[-122.3437737156875,47.67199318327111],[-122.3437694143052,47.67196740554139],[-122.34376561988435,47.67194162073907],[-122.34376182475297,47.67191579347775],[-122.34375853658204,47.67188995914387],[-122.3437557546667,47.6718640756295],[-122.34375297274391,47.67183819176419],[-122.34375173962857,47.67181323009002],[-122.34375149286447,47.67178727014429],[-122.34374972487916,47.67176137283573],[-122.3437469429649,47.67173548897016],[-122.34374314785784,47.67170966170802],[-122.34373884775809,47.67168392677964],[-122.3437330282075,47.67165829728395],[-122.34372568974811,47.67163277391548],[-122.34371784755425,47.67160738603398],[-122.34370899464234,47.67158213965899],[-122.34369913352194,47.67155712109751],[-122.3436882616964,47.67153224439292],[-122.34367638113541,47.67150759515732],[-122.34366349288929,47.67148317372749],[-122.34364959591025,47.671458979766],[-122.34363469320657,47.67143509887119],[-122.34361877908995,47.67141131737269],[-122.34360337640564,47.67138770036906],[-122.34358696354315,47.67136422521328],[-122.34357004694581,47.67134088519112],[-122.34355262786814,47.67131772345586],[-122.3435352118027,47.67129464696577],[-122.34351729450123,47.67127179156511],[-122.34349836475295,47.67124903557264],[-122.34347944174895,47.67122649323316],[-122.34346052250258,47.67120407964969],[-122.34344059328829,47.67118185072827],[-122.34342016211599,47.67115980008538],[-122.34339973644477,47.67113792029219],[-122.34337880777711,47.67111621879097],[-122.34335737714214,47.67109469521676],[-122.34333544527455,47.67107339272982],[-122.34331301019682,47.67105222536662],[-122.34329058259857,47.67103131481565],[-122.34326714431275,47.67101054611425],[-122.34324371299735,47.67099003458244],[-122.34321977847293,47.67096965817329],[-122.34319585195756,47.67094953891981],[-122.34317142367128,47.67092964005705],[-122.3431459864829,47.67090992653955],[-122.34312106247776,47.67089041996071],[-122.34309513100888,47.67087118399498],[-122.34306920505196,47.67085211922756],[-122.34304277962752,47.67083331834018],[-122.3430158524434,47.67081473819262],[-122.34298842505801,47.67079637876386],[-122.34296100463209,47.67077827615208],[-122.3429335904618,47.67076038824933],[-122.34290516932843,47.67074277024827],[-122.34287675444044,47.67072536660487],[-122.34284784007495,47.67070822648864],[-122.34281893267811,47.6706913435395],[-122.34278901708586,47.67067468803833],[-122.34275961768883,47.67065832542483],[-122.34272921010668,47.67064219060939],[-122.34269881124467,47.67062635540535],[-122.3426684186264,47.67061073455798],[-122.34263752725347,47.67059542004547],[-122.34260613641241,47.67058036940861],[-122.3425742455736,47.67056558230303],[-122.34254287093682,47.67055108843584],[-122.34251048881812,47.67053686447174],[-122.34153613223717,47.67023717910374],[-122.34092426832272,47.67004841034423],[-122.340890520367,47.67003955991961],[-122.34085726301949,47.67003010317239],[-122.34082449772518,47.67002012572237],[-122.34079222200192,47.67000954196437],[-122.34075993066256,47.66999840140298],[-122.34072863760552,47.66998669062196],[-122.34069732913655,47.66997446585464],[-122.34066651377346,47.66996172072341],[-122.340636697406,47.66994844783302],[-122.34060686491688,47.66993461849827],[-122.34057803371454,47.66992030454534],[-122.34054918710346,47.66990547660735],[-122.34052134177965,47.66989016405221],[-122.34049398975652,47.66987437360137],[-122.34046713280509,47.66985814840204],[-122.3404407691549,47.66984144530774],[-122.34041540679212,47.66982425759838],[-122.3403905402231,47.66980667795144],[-122.34036617067879,47.66978874881922],[-122.34034029097177,47.66977122538393],[-122.34031591949874,47.66975321062843],[-122.34028892927461,47.66973240268579],[-122.34026450072068,47.66971241793715],[-122.34024107541768,47.66969203418836],[-122.34021763967569,47.66967130766822],[-122.34019521019559,47.66965026809837],[-122.34017378521617,47.66962887268342],[-122.34015285777123,47.66960712742779],[-122.34013242861258,47.66958507619396],[-122.34011300642453,47.66956275437114],[-122.34009408302076,47.66954012586227],[-122.34007616483598,47.66951718432012],[-122.34005874720481,47.66949397923938],[-122.3400174680942,47.66947036112583],[-122.34001809482918,47.66943946227097],[-122.34001884612697,47.66939536607483],[-122.34002177151346,47.66919871656398],[-122.34002640939573,47.6687810557474],[-122.34003226823538,47.66875561452903],[-122.34003761890217,47.66873013756339],[-122.34004246209781,47.66870466695851],[-122.34004730404793,47.66867915355058],[-122.34005163781667,47.66865360404471],[-122.34005597159135,47.66862805488947],[-122.34005979665608,47.66860246929235],[-122.34006311426259,47.66857689040708],[-122.34006643114445,47.668551268712],[-122.34006974750359,47.66852564702369],[-122.3400725556844,47.66849998923759],[-122.34007485692835,47.66847433815659],[-122.34007715640985,47.66844864427951],[-122.34008247183569,47.66791435313604],[-122.34008690066935,47.66708693567628],[-122.34008796920061,47.66640613183271],[-122.34009982450614,47.66572989785856],[-122.34020254554142,47.66503763796116],[-122.34044927938534,47.66504259987762],[-122.34269794646369,47.66502259374965],[-122.34321869111089,47.66501080804646],[-122.34452028762816,47.6649984316009],[-122.34509195943241,47.66501059680446],[-122.34606754932659,47.66504147413908],[-122.34609343510802,47.66502433571787],[-122.34612502648795,47.66501149118999],[-122.346159298506,47.66500358124918],[-122.34623032913245,47.6650034517696],[-122.34644983981697,47.66499698028807],[-122.34730756666228,47.66500529130312],[-122.34709887726677,47.67166898835517],[-122.34701944121849,47.67420547450223]]]],"type":"MultiPolygon"} +},{ + "id": 890536719, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000104, + "geom:area_square_m":866531.077513, + "geom:bbox":"-122.294063372,47.6279945035,-122.285339278,47.6424772927", + "geom:latitude":47.635472, + "geom:longitude":-122.289535, + "iso:country":"US", + "lbl:latitude":47.635415, + "lbl:longitude":-122.289619, + "lbl:max_zoom":18.0, + "mps:latitude":47.635415, + "mps:longitude":-122.289619, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Broadmoor" + ], + "name:fra_x_preferred":[ + "Broadmoor" + ], + "reversegeo:latitude":47.635415, + "reversegeo:longitude":-122.289619, + "src:geom":"mz", + "wof:belongsto":[ + 420549517, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4972252" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2379f6ac33b82b972a481f5c8dc0a005", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536719, + "neighbourhood_id":420549517, + "region_id":85688623 + } + ], + "wof:id":890536719, + "wof:lastmodified":1566631090, + "wof:name":"Broadmoor", + "wof:parent_id":420549517, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85807697 + ], + "wof:tags":[] +}, + "bbox": [ + -122.29406337207612, + 47.6279945035246, + -122.28533927832011, + 47.6424772926843 +], + "geometry": {"coordinates":[[[[-122.2854214883383,47.63078832955444],[-122.28755661948577,47.62933601609871],[-122.28877488814973,47.62849780923597],[-122.28951801396298,47.6279945035246],[-122.289518,47.627996],[-122.289559,47.628218],[-122.289551,47.629005],[-122.289546,47.629495],[-122.28955999999999,47.629513],[-122.289574,47.629529],[-122.289615,47.629543],[-122.289671,47.629546],[-122.29078699999999,47.629547],[-122.290824,47.629526],[-122.290835,47.62952],[-122.29085600000001,47.629484],[-122.290882,47.628605],[-122.29392641112508,47.62858341038011],[-122.29391601952452,47.62896115406951],[-122.2938773368936,47.63064147478469],[-122.29275687917725,47.63201934793673],[-122.2927585155506,47.63255305417296],[-122.29323164095322,47.63313373458674],[-122.29371563178461,47.6336365218582],[-122.29383139800956,47.633868308344],[-122.29394630154609,47.63419407973226],[-122.29406337207612,47.63486084292902],[-122.29398443727042,47.63592936622373],[-122.29302399514488,47.63774018171134],[-122.29299538377705,47.63780695516967],[-122.29298974415227,47.63786974826665],[-122.29302543622582,47.63792844404703],[-122.2936166603473,47.63854709073543],[-122.29369989087195,47.63869167831594],[-122.29372515685056,47.63883295784514],[-122.29373398310307,47.63896946449622],[-122.29373221721339,47.63913729468486],[-122.29372471233766,47.63932390213819],[-122.29372930723382,47.63947418590258],[-122.2937226913393,47.63966449451993],[-122.29372585707722,47.6398927108625],[-122.29372074861089,47.64001334337078],[-122.29370249870475,47.64013929232669],[-122.2936543788781,47.64021662012616],[-122.2935256442823,47.64038250661955],[-122.29340606790066,47.64057277737149],[-122.29325130549773,47.64078792880203],[-122.29317056185457,47.64097331661102],[-122.29302974421429,47.64112915809815],[-122.292987,47.641164],[-122.29293565151913,47.64122576702578],[-122.29291944604294,47.64124156568717],[-122.29289982996538,47.64126542398521],[-122.2928827771253,47.64129027742219],[-122.29286879164486,47.64131599143165],[-122.29285837486921,47.64134238796187],[-122.29285101464018,47.64136925948544],[-122.29284670855962,47.64139652039623],[-122.2928439242241,47.64142380461843],[-122.29284113987585,47.64145108848975],[-122.2928383567358,47.64147841551515],[-122.29283658866761,47.6415057723472],[-122.29283521715908,47.64152694571045],[-122.292827,47.641529],[-122.2923089692393,47.64177711589473],[-122.28965026321741,47.64194422343852],[-122.28962408251981,47.64130239903044],[-122.28790581020611,47.64193420204501],[-122.28764540945622,47.64202161310302],[-122.28731527585688,47.64210474390494],[-122.2869377396601,47.64217917770662],[-122.28663741144076,47.64221187403403],[-122.28636204259048,47.64223996824575],[-122.28611488470509,47.64228494494267],[-122.28546576320184,47.6424772926843],[-122.28533927832011,47.64247241950074],[-122.2854214883383,47.63078832955444]]]],"type":"MultiPolygon"} +},{ + "id": 890536721, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000103, + "geom:area_square_m":853909.023195, + "geom:bbox":"-122.291568,47.70831,-122.276333,47.717648", + "geom:latitude":47.712486, + "geom:longitude":-122.284063, + "iso:country":"US", + "lbl:latitude":47.711949, + "lbl:longitude":-122.284066, + "lbl:max_zoom":18.0, + "mps:latitude":47.711949, + "mps:longitude":-122.284066, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "name:afr_x_preferred":[ + "Chelsea" + ], + "name:ara_x_preferred":[ + "\u062a\u0634\u064a\u0644\u0633\u064a" + ], + "name:bul_x_preferred":[ + "\u0427\u0435\u043b\u0441\u0438" + ], + "name:cat_x_preferred":[ + "Chelsea" + ], + "name:ceb_x_preferred":[ + "Chelsea" + ], + "name:ces_x_preferred":[ + "Chelsea" + ], + "name:dan_x_preferred":[ + "Chelsea" + ], + "name:deu_x_preferred":[ + "Chelsea" + ], + "name:eus_x_preferred":[ + "Chelsea" + ], + "name:fas_x_preferred":[ + "\u0686\u0644\u0633\u06cc" + ], + "name:fin_x_preferred":[ + "Chelsea" + ], + "name:fra_x_preferred":[ + "Chelsea" + ], + "name:heb_x_preferred":[ + "\u05e6'\u05dc\u05e1\u05d9" + ], + "name:hrv_x_preferred":[ + "Chelsea" + ], + "name:hun_x_preferred":[ + "Chelsea" + ], + "name:ilo_x_preferred":[ + "Chelsea" + ], + "name:ind_x_preferred":[ + "Chelsea" + ], + "name:ita_x_preferred":[ + "Chelsea" + ], + "name:jpn_x_preferred":[ + "\u30c1\u30a7\u30eb\u30b7\u30fc" + ], + "name:kat_x_preferred":[ + "\u10e9\u10d4\u10da\u10e1\u10d8" + ], + "name:mlg_x_preferred":[ + "Chelsea" + ], + "name:msa_x_preferred":[ + "Chelsea" + ], + "name:nld_x_preferred":[ + "Chelsea" + ], + "name:nor_x_preferred":[ + "Chelsea" + ], + "name:pol_x_preferred":[ + "Chelsea" + ], + "name:por_x_preferred":[ + "Chelsea" + ], + "name:rus_x_preferred":[ + "\u0427\u0435\u043b\u0441\u0438" + ], + "name:sco_x_preferred":[ + "Chelsea" + ], + "name:slk_x_preferred":[ + "Chelsea" + ], + "name:spa_x_preferred":[ + "Chelsea" + ], + "name:srp_x_preferred":[ + "\u0427\u0435\u043b\u0441\u0438" + ], + "name:swe_x_preferred":[ + "Chelsea" + ], + "name:tha_x_preferred":[ + "\u0e40\u0e0a\u0e25\u0e0b\u0e35" + ], + "name:tur_x_preferred":[ + "Chelsea" + ], + "name:ukr_x_preferred":[ + "\u0427\u0435\u043b\u0441\u0456" + ], + "name:vie_x_preferred":[ + "Chelsea" + ], + "name:vol_x_preferred":[ + "Chelsea" + ], + "name:zho_x_preferred":[ + "\u5207\u5c14\u897f" + ], + "reversegeo:latitude":47.711949, + "reversegeo:longitude":-122.284066, + "src:geom":"mz", + "wof:belongsto":[ + 85869455, + 102191575, + 890536775, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9bcc47d79d83684dd56bb7032c20a490", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536775, + "microhood_id":890536721, + "neighbourhood_id":85869455, + "region_id":85688623 + } + ], + "wof:id":890536721, + "wof:lastmodified":1617131438, + "wof:name":"Chelsea", + "wof:parent_id":85869455, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85810585 + ], + "wof:tags":[] +}, + "bbox": [ + -122.291568, + 47.70831, + -122.276333, + 47.717648 +], + "geometry": {"coordinates":[[[-122.285402,47.70831],[-122.286742,47.708325],[-122.288082,47.70834],[-122.289389,47.708356],[-122.289711,47.708359],[-122.290761,47.70837],[-122.290756,47.708503],[-122.290744,47.709017],[-122.290707,47.710179],[-122.29071,47.710179],[-122.29069200000001,47.710722],[-122.290655,47.71181],[-122.29066,47.712556],[-122.29065799999999,47.712581],[-122.290656,47.712607],[-122.290655,47.712633],[-122.290655,47.712659],[-122.290654,47.712685],[-122.290655,47.712711],[-122.290657,47.712737],[-122.29065900000001,47.712763],[-122.290661,47.712789],[-122.29066400000001,47.712815],[-122.290668,47.712841],[-122.290673,47.712867],[-122.290678,47.712893],[-122.290679,47.712901],[-122.290683,47.712919],[-122.290689,47.712945],[-122.290696,47.712971],[-122.29070299999999,47.712996],[-122.290712,47.713022],[-122.29071999999999,47.713047],[-122.290729,47.713073],[-122.290739,47.713098],[-122.29074900000001,47.713123],[-122.29076000000001,47.713148],[-122.290772,47.713173],[-122.290784,47.713198],[-122.290796,47.713222],[-122.290809,47.713247],[-122.290828,47.713277],[-122.290826,47.713278],[-122.290857,47.713324],[-122.290958,47.71349],[-122.29105,47.713614],[-122.29139600000001,47.714133],[-122.29147,47.714272],[-122.29151,47.71437],[-122.291551,47.714498],[-122.291568,47.714662],[-122.291515,47.715361],[-122.291499,47.715529],[-122.289277,47.715521],[-122.288848,47.715525],[-122.288793,47.715525],[-122.28389799999999,47.715567],[-122.283888,47.717278],[-122.283895,47.717344],[-122.28389799999999,47.717367],[-122.283115,47.717374],[-122.28291,47.717303],[-122.282797,47.717274],[-122.282695,47.717208],[-122.282419,47.717235],[-122.28238399999999,47.717234],[-122.281626,47.71731],[-122.281592,47.717264],[-122.281533,47.717347],[-122.280922,47.717499],[-122.280407,47.717648],[-122.280073,47.717294],[-122.27948600000001,47.717056],[-122.279211,47.716728],[-122.279247,47.716243],[-122.279214,47.715766],[-122.27885499999999,47.715598],[-122.278597,47.715744],[-122.27785,47.716165],[-122.277826,47.71612],[-122.277801,47.716062],[-122.277784,47.716009],[-122.277767,47.71596],[-122.277721,47.715817],[-122.27774700000001,47.715792],[-122.277691,47.715658],[-122.277625,47.715505],[-122.27758900000001,47.715464],[-122.27756599999999,47.715416],[-122.27753800000001,47.715391],[-122.277507,47.71536],[-122.27747599999999,47.715301],[-122.27742499999999,47.715181],[-122.277412,47.715159],[-122.277387,47.71512],[-122.277349,47.715031],[-122.277311,47.714932],[-122.277303,47.714906],[-122.277282,47.714857],[-122.277271,47.714818],[-122.277258,47.714781],[-122.277198,47.714639],[-122.27719,47.714611],[-122.27718299999999,47.714557],[-122.27717800000001,47.714504],[-122.277169,47.71444],[-122.277169,47.714352],[-122.277213,47.714336],[-122.277202,47.714301],[-122.27719,47.714259],[-122.277176,47.714208],[-122.277126,47.714092],[-122.277092,47.714011],[-122.277075,47.713979],[-122.277056,47.713943],[-122.27699699999999,47.713809],[-122.27697000000001,47.713741],[-122.27694200000001,47.713643],[-122.276922,47.713597],[-122.276905,47.713554],[-122.276889,47.713504],[-122.276854,47.713418],[-122.276841,47.71337],[-122.276794,47.713257],[-122.276777,47.713206],[-122.27676200000001,47.713159],[-122.27672,47.713053],[-122.27668,47.712935],[-122.27666499999999,47.712891],[-122.276652,47.712857],[-122.276628,47.712759],[-122.276584,47.712622],[-122.276543,47.712523],[-122.276522,47.712497],[-122.27651299999999,47.712458],[-122.276495,47.712398],[-122.276475,47.712349],[-122.276466,47.712316],[-122.276432,47.712258],[-122.276426,47.712183],[-122.276417,47.712156],[-122.276409,47.712101],[-122.276501,47.712082],[-122.276505,47.712029],[-122.27651400000001,47.712004],[-122.276526,47.711974],[-122.276546,47.711914],[-122.27654099999999,47.711852],[-122.276539,47.711802],[-122.276532,47.711772],[-122.276528,47.71172],[-122.276522,47.711681],[-122.27651,47.711587],[-122.276522,47.711562],[-122.276515,47.71152],[-122.276507,47.711484],[-122.276506,47.711458],[-122.276477,47.711436],[-122.27643500000001,47.711428],[-122.27642299999999,47.711399],[-122.27640700000001,47.711345],[-122.276399,47.7113],[-122.2764,47.71127],[-122.27641199999999,47.711246],[-122.276408,47.711192],[-122.2764,47.711164],[-122.276391,47.711133],[-122.276385,47.711095],[-122.276366,47.711046],[-122.276338,47.710955],[-122.27633299999999,47.710927],[-122.276374,47.710918],[-122.27637199999999,47.710905],[-122.276708,47.710858],[-122.276837,47.710862],[-122.277225,47.710886],[-122.27729100000001,47.711138],[-122.27757800000001,47.711604],[-122.277861,47.712327],[-122.277911,47.7124],[-122.277951,47.712449],[-122.277993,47.712494],[-122.278043,47.71253],[-122.278093,47.712565],[-122.27817,47.71255],[-122.278248,47.712544],[-122.278307,47.712518],[-122.27838199999999,47.712494],[-122.27845499999999,47.712495],[-122.278531,47.712485],[-122.278605,47.712485],[-122.278676,47.712474],[-122.278762,47.712451],[-122.278826,47.712436],[-122.278899,47.712425],[-122.279004,47.712421],[-122.279115,47.712407],[-122.27887200000001,47.711836],[-122.278668,47.711406],[-122.278582,47.711227],[-122.278372,47.710791],[-122.278006,47.710053],[-122.27772899999999,47.709432],[-122.278952,47.709167],[-122.280174,47.708903],[-122.281482,47.70862],[-122.28269299999999,47.708357],[-122.285402,47.70831]]],"type":"Polygon"} +},{ + "id": 890536723, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":460535.424364, + "geom:bbox":"-122.399194108,47.513782843,-122.387421441,47.5225876564", + "geom:latitude":47.517977, + "geom:longitude":-122.393066, + "iso:country":"US", + "lbl:latitude":47.517181, + "lbl:longitude":-122.394449, + "lbl:max_zoom":18.0, + "mps:latitude":47.517181, + "mps:longitude":-122.394449, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.517181, + "reversegeo:longitude":-122.394449, + "src:geom":"mz", + "wof:belongsto":[ + 85819027, + 102191575, + 890536787, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"63f906ddc72808e31b2ea9b27f6d4f87", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536787, + "microhood_id":890536723, + "neighbourhood_id":85819027, + "region_id":85688623 + } + ], + "wof:id":890536723, + "wof:lastmodified":1566631088, + "wof:name":"Endolyne", + "wof:parent_id":85819027, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85818093 + ], + "wof:tags":[] +}, + "bbox": [ + -122.39919410788632, + 47.51378284296515, + -122.38742144142277, + 47.52258765640904 +], + "geometry": {"coordinates":[[[[-122.394841,47.513837],[-122.39487699999999,47.513838],[-122.39530000000001,47.51385],[-122.39571475953619,47.5138552075087],[-122.39574029642013,47.51390124630963],[-122.39575939798527,47.51393088906508],[-122.39578360570411,47.51396208978422],[-122.39580797775788,47.51399877235131],[-122.39584165806085,47.51404218191092],[-122.39586797846692,47.51407635234946],[-122.39588817370083,47.5141087222712],[-122.39590970049058,47.51415174200676],[-122.39592274120913,47.51418172539285],[-122.39594145551253,47.51423219588241],[-122.39596316341031,47.51428125424169],[-122.3959902812587,47.51434202032171],[-122.39602789217247,47.51441528128226],[-122.3960529296412,47.51447414802199],[-122.39607863447431,47.51452152350716],[-122.39609704476466,47.51456184386039],[-122.39614401365871,47.51464345929168],[-122.3961664284916,47.51468235394309],[-122.39618966650629,47.51471493886794],[-122.39621550253743,47.51476668226237],[-122.39623848552776,47.51482450638711],[-122.39627567725505,47.51488376284299],[-122.3963202125165,47.51495170123747],[-122.39636183779895,47.51499007421967],[-122.39640036273265,47.51506002360011],[-122.39643364922502,47.51512400358626],[-122.3964569030654,47.51519086422245],[-122.39648825682445,47.51525786994652],[-122.39653780070621,47.51535783043972],[-122.39656009283478,47.51539261318599],[-122.39661214572374,47.51544125378333],[-122.39667823546831,47.51548558797654],[-122.39676188232694,47.51554176270967],[-122.39682329246936,47.51559875767892],[-122.3968918498598,47.51565788226893],[-122.39694968356962,47.51573056482277],[-122.39701082358995,47.51577852313642],[-122.39710475026928,47.51584004021898],[-122.39720067479311,47.51590067261745],[-122.39730687088348,47.51596639104796],[-122.39738227065092,47.51601745170873],[-122.39750067913764,47.51608548640566],[-122.39760264862069,47.51614522164972],[-122.3976876294802,47.5162120454991],[-122.39781199211441,47.51627614197194],[-122.39790076460193,47.51633443052278],[-122.39801709381197,47.51640056539039],[-122.39816355885084,47.51647618234279],[-122.39819901681976,47.51649441668896],[-122.39829703752727,47.51654053808759],[-122.39838174745623,47.51658144433797],[-122.39845978532151,47.51661918639267],[-122.39853500849338,47.51664745552961],[-122.39860249153311,47.51667069007829],[-122.39870028527022,47.51672606864931],[-122.39872912667066,47.51674298026166],[-122.39876989036009,47.51676941083401],[-122.39881591748846,47.51680262355587],[-122.39886374549609,47.51681156163326],[-122.39887913180131,47.5167847857191],[-122.39893002236848,47.51679462429775],[-122.3989753100585,47.51682004934727],[-122.39904343927155,47.51686478265494],[-122.3991105726173,47.51691004384278],[-122.39915830788425,47.51694957410356],[-122.39918768821464,47.51700126801747],[-122.39919410788632,47.51706339030252],[-122.39916545088805,47.51711999749429],[-122.39913396051044,47.51714965169661],[-122.39909750675125,47.5171656638399],[-122.39911123613246,47.51720163571211],[-122.399111759821,47.51723590414508],[-122.39908651595766,47.51727138454068],[-122.39905659894133,47.51730290251451],[-122.39902844677935,47.51734262180313],[-122.39907035543274,47.51735661132398],[-122.39903769134094,47.51738088319826],[-122.39900330142646,47.51739823815202],[-122.39897720927925,47.51742233377801],[-122.39893881814265,47.51745808135201],[-122.39890011052439,47.51748329323824],[-122.39886939968405,47.51750522445588],[-122.39885771550975,47.51753734781732],[-122.39883010633106,47.51756146431691],[-122.39877983574593,47.5175891492132],[-122.39873929339942,47.51758696609075],[-122.39870119702948,47.51761568282763],[-122.39864907707295,47.51764917736038],[-122.39859565830743,47.51767313529317],[-122.39855287117247,47.51769728925341],[-122.39851217890023,47.51772381400426],[-122.39845666501012,47.51776223950034],[-122.39839706617336,47.51779943560179],[-122.39826733513412,47.51789372478135],[-122.39821718479119,47.51792543529911],[-122.39815909660727,47.51796239670912],[-122.39805799678517,47.51803289778961],[-122.39795686275731,47.51810228557698],[-122.39785793259139,47.51817768369091],[-122.39775289231466,47.51825179492885],[-122.39764514642292,47.51833691191131],[-122.39752689777393,47.51840927688637],[-122.39742356719479,47.51847295304135],[-122.39729569629017,47.51856190261412],[-122.39716678084977,47.5186497952167],[-122.39707311959329,47.5187322324032],[-122.39698744450932,47.51877728478301],[-122.39694686878457,47.51880774888967],[-122.396916292523,47.5188342194297],[-122.39689462206258,47.51885396923305],[-122.39685892240034,47.51887832505994],[-122.39681362577799,47.51892007960139],[-122.39678199680593,47.51894519330161],[-122.39674242330751,47.51897534379703],[-122.3966911722854,47.51902103614667],[-122.39662376931089,47.51906802162191],[-122.39655120177036,47.51911152231977],[-122.39645795040803,47.51917394482646],[-122.3964203095851,47.51920106945567],[-122.39636369634849,47.51923668114201],[-122.3962975097453,47.51929050508404],[-122.39626189939605,47.51931785863891],[-122.39623336212392,47.51934485794095],[-122.39617984902871,47.5193826120976],[-122.39605062537201,47.51946035332308],[-122.39592888455297,47.51955140217765],[-122.39589037934796,47.5195834656182],[-122.39584507311032,47.51962496261599],[-122.39578877097412,47.51967098094157],[-122.39568176726115,47.51974730241287],[-122.39558113632307,47.51983369007638],[-122.39553600162513,47.51988092596936],[-122.3954797566962,47.51992887129843],[-122.39542855292338,47.51997619061198],[-122.39537924828539,47.52001937026128],[-122.39533985412126,47.52005555890315],[-122.39524278339465,47.52012570222537],[-122.39516965344458,47.52018429078514],[-122.39513233973081,47.52022237869628],[-122.39501985599514,47.52031852609183],[-122.39493037468957,47.52040557413888],[-122.3948482121798,47.52050049057384],[-122.394741236391,47.520611643357],[-122.39471685059942,47.52064214100201],[-122.39466183564996,47.52073120001364],[-122.39462995634499,47.52078180948696],[-122.39459630027245,47.52084066936399],[-122.39455175515604,47.5209076476138],[-122.39450123019191,47.52097770753238],[-122.3944221977616,47.52110959845916],[-122.39439122302689,47.52115663891546],[-122.39432029034015,47.52128867572183],[-122.39430126551019,47.52132925389233],[-122.39428534110583,47.52137197432406],[-122.39425778720103,47.52143186425626],[-122.39424665737715,47.52146573579496],[-122.39423360111925,47.52153665199504],[-122.39420332825746,47.52167472742287],[-122.39419353101204,47.52171929194743],[-122.39418492889254,47.5218375756377],[-122.39418182673366,47.52186915199189],[-122.39418489703672,47.52197167970947],[-122.39418344584303,47.52202461281355],[-122.39418575397835,47.52206789697914],[-122.3942053769504,47.52221625536298],[-122.39421843784008,47.5223482515799],[-122.3942222650664,47.52244224281497],[-122.39421866001457,47.5224908354249],[-122.39420909874634,47.52258765640904],[-122.38991806276444,47.52082506621921],[-122.38742144142277,47.52078571698757],[-122.38745400000001,47.518962],[-122.387445,47.518687],[-122.38745400000001,47.518529],[-122.387466,47.51831],[-122.38746973811818,47.51751284671851],[-122.38928114838293,47.5175277222225],[-122.39174516877824,47.51752787462241],[-122.39167119524679,47.51706745304372],[-122.39165080913696,47.51685748850848],[-122.39152645426245,47.51557669072162],[-122.39128685861759,47.51426362017081],[-122.39117200110157,47.51378284296515],[-122.394841,47.513837]]]],"type":"MultiPolygon"} +},{ + "id": 890536727, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000065, + "geom:area_square_m":541524.715508, + "geom:bbox":"-122.355638861,47.726909,-122.34502162,47.7341304476", + "geom:latitude":47.730988, + "geom:longitude":-122.349985, + "iso:country":"US", + "lbl:latitude":47.730949, + "lbl:longitude":-122.34956, + "lbl:max_zoom":18.0, + "mps:latitude":47.730949, + "mps:longitude":-122.34956, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Foy" + ], + "name:deu_x_preferred":[ + "Foy" + ], + "name:fra_x_preferred":[ + "Foy" + ], + "name:nld_x_preferred":[ + "Foy" + ], + "name:pol_x_preferred":[ + "Foy" + ], + "name:rus_x_preferred":[ + "\u0424\u043e\u0439" + ], + "name:swe_x_preferred":[ + "Foy" + ], + "name:ukr_x_preferred":[ + "\u0424\u043e\u0439" + ], + "reversegeo:latitude":47.730949, + "reversegeo:longitude":-122.34956, + "src:geom":"mz", + "wof:belongsto":[ + 85865529, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bbb88e79f2b5a1a743dba5b0b31a9354", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536727, + "neighbourhood_id":85865529, + "region_id":85688623 + } + ], + "wof:id":890536727, + "wof:lastmodified":1566631092, + "wof:name":"Foy", + "wof:parent_id":85865529, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85820503 + ], + "wof:tags":[] +}, + "bbox": [ + -122.35563886145184, + 47.726909, + -122.34502161995354, + 47.73413044755841 +], + "geometry": {"coordinates":[[[[-122.34502161995354,47.72691396361174],[-122.345091,47.726913],[-122.347677,47.726909],[-122.34772599999999,47.727768],[-122.34881799999999,47.727769],[-122.348839,47.727769],[-122.34953899999999,47.727769],[-122.35032,47.727782],[-122.350449,47.727808],[-122.35057399999999,47.727855],[-122.350812,47.72801],[-122.35116600000001,47.72824],[-122.35153,47.728412],[-122.351759,47.728487],[-122.351929,47.728544],[-122.35235400000001,47.728632],[-122.352868,47.728678],[-122.35555248715599,47.72873885236594],[-122.35555248925456,47.72874208845121],[-122.35556086163379,47.72930059471264],[-122.35556200000001,47.729644],[-122.355565,47.730496],[-122.35556500890097,47.73049600002651],[-122.35556104409415,47.73104363738394],[-122.35555567335653,47.73231583135377],[-122.35557453327606,47.73351341076283],[-122.35563886145184,47.73413044755841],[-122.35557128507823,47.73413032109389],[-122.35537364790179,47.73413030240614],[-122.3542584405689,47.73413009751478],[-122.35303857518649,47.73412999129127],[-122.35177247204074,47.73412971578599],[-122.35050586280717,47.7341295189496],[-122.34797315298475,47.73412907633159],[-122.34780142665862,47.73412904334449],[-122.34764392571378,47.73412899216135],[-122.34528802062208,47.73412845607133],[-122.34510257699218,47.73412842922823],[-122.34510122458934,47.73402964933431],[-122.34509379111215,47.73321614361929],[-122.3450857402533,47.73292225578047],[-122.34506666774644,47.73169160529321],[-122.34505362616535,47.73047612718302],[-122.34504109022896,47.72926055665333],[-122.34502837907213,47.72805638458298],[-122.34502161995354,47.72691396361174]]]],"type":"MultiPolygon"} +},{ + "id": 890536729, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00008, + "geom:area_square_m":669192.575229, + "geom:bbox":"-122.27953944,47.6679600867,-122.263549119,47.6757842268", + "geom:latitude":47.672575, + "geom:longitude":-122.273586, + "iso:country":"US", + "lbl:latitude":47.67173, + "lbl:longitude":-122.274385, + "lbl:max_zoom":18.0, + "mps:latitude":47.67173, + "mps:longitude":-122.274385, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Hawthorne Hills" + ], + "name:eng_x_variant":[ + "Hawthorne Hls" + ], + "name:fra_x_preferred":[ + "Hawthorne Hills" + ], + "reversegeo:latitude":47.67173, + "reversegeo:longitude":-122.274385, + "src:geom":"mz", + "wof:belongsto":[ + 85858185, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5685611" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0cde3a952d8cf05253e0920b525bb060", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536729, + "neighbourhood_id":85858185, + "region_id":85688623 + } + ], + "wof:id":890536729, + "wof:lastmodified":1566631092, + "wof:name":"Hawthorne Hills", + "wof:parent_id":85858185, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85824323 + ], + "wof:tags":[] +}, + "bbox": [ + -122.27953944035733, + 47.66796008669547, + -122.26354911908494, + 47.67578422676622 +], + "geometry": {"coordinates":[[[[-122.26354911908494,47.6755309511604],[-122.27340367620315,47.66857424597409],[-122.2740767990026,47.66831260431208],[-122.27407679900263,47.6683126043121],[-122.27447511142039,47.66825752514342],[-122.27452022537796,47.66825588323345],[-122.27455875379252,47.66825462470485],[-122.27459728576595,47.66825349457377],[-122.27463582129852,47.66825249284024],[-122.27467435987104,47.66825161951081],[-122.27471290371943,47.6682509177267],[-122.27475144994084,47.66825030153653],[-122.27478999972251,47.66824981374388],[-122.27482855373242,47.66824949715888],[-122.27486711183236,47.66824930931564],[-122.27490567229663,47.66824920671552],[-122.27494423751921,47.66824927566724],[-122.27498280578412,47.66824947302305],[-122.27502137814025,47.66824979912062],[-122.27505995523627,47.66825029606838],[-122.27509853471739,47.6682508789609],[-122.27513711724197,47.66825159025747],[-122.27517570503655,47.66825247274848],[-122.2751766405167,47.66825249622472],[-122.27521429521701,47.66825344118426],[-122.27525128126281,47.66825455376178],[-122.27525238267941,47.6682545868935],[-122.2752909799877,47.66825581212444],[-122.27532958204782,47.66825720855631],[-122.27536818715321,47.6682587333922],[-122.27540679635275,47.66826038696984],[-122.27544490165799,47.66826217536909],[-122.27548351798829,47.66826408574175],[-122.27552213907209,47.66826616731542],[-122.27556025507477,47.66826834090765],[-122.2755988821132,47.66827063682364],[-122.27563751338664,47.66827310394719],[-122.27567564061849,47.66827566307669],[-122.27571427902625,47.66827838699525],[-122.27575241458078,47.66828124572357],[-122.27579055200556,47.66828419040364],[-122.27582920112664,47.66828729986563],[-122.27586734739532,47.6682905441379],[-122.27590549671325,47.6682939168145],[-122.27594364960991,47.66829741823972],[-122.27598180607582,47.66830104806267],[-122.27601996729936,47.66830484908682],[-122.27605813142415,47.66830873569864],[-122.27609629859961,47.66831275071477],[-122.27613446935523,47.66831689447944],[-122.2761726448697,47.66832120944538],[-122.27621031582636,47.66832561642651],[-122.27625459253693,47.66833036790864],[-122.2762927561883,47.6683342547993],[-122.27633091627062,47.66833801291578],[-122.27636907040691,47.66834155665119],[-122.27640721860647,47.66834488635629],[-122.27644536376499,47.66834808763156],[-122.27648400940741,47.66835106846088],[-122.27652214387879,47.66835388447893],[-122.27652400804836,47.66835401176198],[-122.27656078001202,47.66835652250337],[-122.27659718104148,47.66835884275321],[-122.27659890377511,47.66835895256254],[-122.27663753040733,47.66836124813297],[-122.27667564414915,47.66836333574507],[-122.27671425941116,47.6683652028971],[-122.27675287110995,47.66836694162554],[-122.27679147685798,47.66836846597254],[-122.27682957039289,47.66836982552286],[-122.27686816544639,47.66837096461243],[-122.27690675521714,47.66837193213071],[-122.27694534075341,47.66837272841532],[-122.27698392153538,47.66837335347292],[-122.27702249637376,47.66837376449993],[-122.27706106711682,47.6683740467592],[-122.27709963124589,47.66837407217783],[-122.27713819179827,47.6683739688221],[-122.27717674641509,47.66837365178668],[-122.27721529574602,47.66837316318001],[-122.27725384082959,47.66837250298887],[-122.27729237997627,47.66837162911811],[-122.27733091435525,47.66837058366952],[-122.27736944345655,47.66836936700048],[-122.27740796711964,47.66836793594354],[-122.27744648602355,47.66836633365961],[-122.27748500016799,47.66836456014872],[-122.27752350903313,47.66836261541745],[-122.27756201245832,47.66836045629825],[-122.2776005111228,47.66835812595213],[-122.27763849756597,47.66835563081295],[-122.27767698550876,47.66835291485874],[-122.27771546868962,47.66835002767758],[-122.27775343964809,47.66834697570395],[-122.27779353699417,47.66834740963234],[-122.27783202850121,47.66834482238703],[-122.27787052119403,47.66834227793225],[-122.27790901573316,47.66833981872713],[-122.27794700742623,47.66833749469244],[-122.27798550672676,47.6683352070263],[-122.27802400893248,47.66833300529832],[-122.27806251231492,47.66833084601],[-122.27810100617587,47.6683283442808],[-122.27813948759601,47.66832541380866],[-122.27817745189191,47.6683221048662],[-122.27821591188523,47.6683184039056],[-122.27825385354326,47.66831428096985],[-122.27829178395662,47.66830977244588],[-122.27832970365361,47.66830487867797],[-122.27836761262361,47.66829959931525],[-122.27840500392576,47.66829394078856],[-122.27844238398974,47.66828789702484],[-122.27847975384377,47.66828146766013],[-122.27851711297737,47.66827465305182],[-122.27855395273063,47.66826741648371],[-122.27859128988207,47.66825983069339],[-122.27862760243133,47.6682518725231],[-122.27866441118701,47.66824352232713],[-122.27870070174973,47.66823479297584],[-122.27873698210684,47.66822567837508],[-122.27877274546012,47.66821622742314],[-122.27880849808707,47.66820639122869],[-122.27884373251864,47.66819617588021],[-122.27887895740324,47.66818561774216],[-122.2789141720788,47.66817467435538],[-122.27894886974784,47.66816339461886],[-122.27898355616777,47.6681517296471],[-122.27901772661895,47.66813972831305],[-122.27905137835231,47.66812734783347],[-122.27908552971255,47.66811466127266],[-122.27911865542548,47.66810160235144],[-122.27915177157708,47.6680882002911],[-122.2794430120332,47.66796008669547],[-122.27944432897212,47.66813508463378],[-122.27947380930019,47.67120074565806],[-122.27948320606608,47.67199438354555],[-122.27950204036294,47.67296304469179],[-122.27951306386011,47.67394277282834],[-122.27951337272351,47.67396054514585],[-122.27952656969369,47.67471990666924],[-122.27953944035733,47.67578422676622],[-122.27736177539175,47.67578241481781],[-122.27723380815628,47.67577949544182],[-122.27586158896987,47.67578012593193],[-122.2756476379228,47.67553160214851],[-122.27562726708119,47.67551073820999],[-122.27560839337112,47.67548895577541],[-122.27559254190588,47.67546636399464],[-122.27557819468625,47.6754431101898],[-122.2755668744674,47.67541921860558],[-122.27555757196781,47.6753948729423],[-122.27555130357953,47.67537014597122],[-122.27554705833374,47.67534517929694],[-122.27554534680007,47.6753200949121],[-122.27554668110555,47.67529501478955],[-122.27555004633881,47.67526999459507],[-122.27555689428937,47.67524244543475],[-122.27556585873408,47.67521803980782],[-122.2755717670089,47.6751932015131],[-122.27557411650118,47.67516815135723],[-122.27557411650118,47.67516815135721],[-122.27557411413686,47.67516783725328],[-122.27557392754035,47.67514304769838],[-122.27557018930922,47.67511807460656],[-122.27556341342215,47.67509335406061],[-122.27555360702006,47.67506914323185],[-122.27554077248264,47.67504552772647],[-122.27552542395628,47.67502275829738],[-122.27550705627436,47.67500092627328],[-122.27548567592731,47.67498024671616],[-122.27546230048181,47.67496083484863],[-122.27543642700603,47.67494282514011],[-122.2754080514373,47.67492608988671],[-122.27537377528539,47.67491615568205],[-122.27533901368778,47.67490704186553],[-122.27530376461914,47.67489861930484],[-122.27516700920729,47.67487151671933],[-122.27492124718023,47.67486631497288],[-122.27474766225231,47.67486529811568],[-122.27470772737828,47.6748709015675],[-122.27467240513,47.67487816044446],[-122.27463815612663,47.67488750524453],[-122.27460548379869,47.67489880079344],[-122.27457438643701,47.6749120042957],[-122.2745448621849,47.67492703013891],[-122.274517413298,47.67494370069679],[-122.27449254491708,47.67496192359306],[-122.27446974477934,47.67498153438604],[-122.27444951446635,47.67500231228885],[-122.27443185226369,47.67502421415503],[-122.27441725910711,47.67504697708948],[-122.27438762281255,47.67518607834523],[-122.27437966998185,47.67521038544014],[-122.2743686563805,47.67523413108689],[-122.27435457779622,47.67525714476557],[-122.27433742775227,47.67527921176247],[-122.27431720201781,47.67530016085556],[-122.27429491104832,47.67531985080776],[-122.27427004478301,47.6753381592622],[-122.27424259559083,47.67535482975356],[-122.27421306624423,47.67536968429651],[-122.27418145436137,47.6753826369314],[-122.27418145436137,47.67538263693142],[-122.27390257013924,47.67544584413337],[-122.27233091442568,47.67575781061252],[-122.27153669160377,47.67575738510637],[-122.27041111943285,47.67575830693933],[-122.26932424328831,47.67574544814028],[-122.26861129494554,47.67574779113911],[-122.26758903033392,47.67574074254418],[-122.26697440837427,47.67573853868236],[-122.26562668669665,47.67572562785581],[-122.26523850543256,47.67572716561349],[-122.2638275540654,47.67572166888811],[-122.26355506564944,47.6757227334236],[-122.26354911908494,47.6755309511604]]]],"type":"MultiPolygon"} +},{ + "id": 890536731, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000038, + "geom:area_square_m":312461.09042, + "geom:bbox":"-122.327258147,47.6530502383,-122.322154371,47.6614210323", + "geom:latitude":47.657515, + "geom:longitude":-122.324746, + "iso:country":"US", + "lbl:latitude":47.657522, + "lbl:longitude":-122.324713, + "lbl:max_zoom":18.0, + "mps:latitude":47.657522, + "mps:longitude":-122.324713, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":12.0, + "name:eng_x_preferred":[ + "Latona" + ], + "name:und_x_variant":[ + "Loosna" + ], + "reversegeo:latitude":47.657522, + "reversegeo:longitude":-122.324713, + "src:geom":"mz", + "wof:belongsto":[ + 85854291, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5a4172fc8b9aee143bf1481427f6b6d6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536731, + "neighbourhood_id":85854291, + "region_id":85688623 + } + ], + "wof:id":890536731, + "wof:lastmodified":1566631086, + "wof:name":"Latona", + "wof:parent_id":85854291, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829871 + ], + "wof:tags":[] +}, + "bbox": [ + -122.32725814703363, + 47.65305023829209, + -122.3221543708228, + 47.6614210322597 +], + "geometry": {"coordinates":[[[[-122.32243968747275,47.65636689424472],[-122.32246481894808,47.65465851425748],[-122.32249357469485,47.65369659611737],[-122.32260139849646,47.65368871659226],[-122.32273680275183,47.65366967988718],[-122.32279529431545,47.65365738989647],[-122.32308081132396,47.65360155745321],[-122.32318282629713,47.65358569881311],[-122.32327168017224,47.65357082618353],[-122.32336455901424,47.65355478717452],[-122.32344236712176,47.65354391510606],[-122.3235061810378,47.65354033792952],[-122.32358084367465,47.6535259080165],[-122.32363435891195,47.65351698188449],[-122.32368568825892,47.6535025999815],[-122.32377008521367,47.65347381854432],[-122.32385250737181,47.65344694763162],[-122.32393720251942,47.65342857316895],[-122.32400770604461,47.65341064132127],[-122.32407931869994,47.6533959940858],[-122.32413076621849,47.65338572352103],[-122.32419149042158,47.65338055857676],[-122.32424847999354,47.65338666741095],[-122.32434268713769,47.65341696713229],[-122.32439597359415,47.65343546329344],[-122.32445722406609,47.65344862841636],[-122.32450418964518,47.65345898146293],[-122.32454914353467,47.65346991783134],[-122.32458582637491,47.65347547848739],[-122.32470247084383,47.6534391190756],[-122.32470564638166,47.65340835830172],[-122.32470564638169,47.65340835830171],[-122.32478671192938,47.65339229950042],[-122.32483571066081,47.65339031506496],[-122.3248491784058,47.65338976962489],[-122.32502795353226,47.65339728206573],[-122.32516174454339,47.65339278768422],[-122.32522566824845,47.65339306427752],[-122.3252885304428,47.65339168374404],[-122.32532603865099,47.65339063534719],[-122.32538278500932,47.65338826370705],[-122.325439562093,47.6533869628154],[-122.32549017541184,47.65338300083119],[-122.32553145728289,47.65337204891279],[-122.32563124618346,47.65334936231532],[-122.32567333679584,47.65333124474548],[-122.32571549868037,47.65331561113745],[-122.3257940058231,47.65329376028281],[-122.32585667117053,47.65328552709644],[-122.325894116063,47.65328229416294],[-122.32592837728254,47.65327417629031],[-122.32599886444552,47.65325568641331],[-122.32603607374661,47.65324423068976],[-122.32607854286717,47.65323930401191],[-122.32611716709812,47.65324179646483],[-122.32616416531449,47.65325326239977],[-122.32616565080156,47.65325351546368],[-122.32624776648439,47.65326750448713],[-122.32630165065585,47.65327146817791],[-122.32644235960382,47.65326058332326],[-122.32648981235982,47.65325254923908],[-122.32653929328893,47.6532444885417],[-122.3266079962746,47.65323454759523],[-122.32665143196863,47.65322793703041],[-122.32671914419768,47.6532188232731],[-122.32676943493334,47.65320363967094],[-122.32680946608737,47.65318447750222],[-122.32689893700253,47.65312049514438],[-122.32694140376016,47.65308017922743],[-122.32697026505893,47.65305023829209],[-122.32689021284239,47.65772300663935],[-122.32725814703363,47.65772355104048],[-122.32721031037904,47.6614210322597],[-122.3221543708228,47.66139278900869],[-122.32228164811129,47.65974067701292],[-122.32238941856497,47.65804788303213],[-122.32243968747275,47.65636689424472]]]],"type":"MultiPolygon"} +},{ + "id": 890536733, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000061, + "geom:area_square_m":510984.426662, + "geom:bbox":"-122.280064848,47.6903383975,-122.266796777,47.6993732534", + "geom:latitude":47.695395, + "geom:longitude":-122.275515, + "iso:country":"US", + "lbl:latitude":47.695805, + "lbl:longitude":-122.276717, + "lbl:max_zoom":18.0, + "mps:latitude":47.695805, + "mps:longitude":-122.276717, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":47.695805, + "reversegeo:longitude":-122.276717, + "src:geom":"mz", + "wof:belongsto":[ + 85869455, + 102191575, + 890536775, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1a8005e217bd7d12fae7e7f32de5dea9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536775, + "microhood_id":890536733, + "neighbourhood_id":85869455, + "region_id":85688623 + } + ], + "wof:id":890536733, + "wof:lastmodified":1566631088, + "wof:name":"Lavilla", + "wof:parent_id":85869455, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85829979 + ], + "wof:tags":[] +}, + "bbox": [ + -122.28006484776071, + 47.69033839748447, + -122.26679677673654, + 47.69937325340653 +], + "geometry": {"coordinates":[[[[-122.28003196476993,47.69737816292293],[-122.28006484776071,47.69937325340653],[-122.27252843128683,47.69932738769818],[-122.27252625827406,47.69930429844656],[-122.27252403342204,47.69922399560474],[-122.27252025676836,47.69916097837221],[-122.27252170700885,47.6991033787134],[-122.27252036262098,47.6990548546501],[-122.27251970692134,47.69899453979615],[-122.27249997047038,47.69894187766497],[-122.27250058015937,47.69889058679276],[-122.27251209529281,47.69879310171056],[-122.27250647089676,47.69873670535914],[-122.2725001018789,47.69865341297535],[-122.27250298479916,47.6986108764483],[-122.27249939805137,47.69855471127921],[-122.2724702553194,47.69852903087625],[-122.27245738383139,47.69850425865916],[-122.27246644028587,47.69846464288232],[-122.27248648110641,47.69841833332989],[-122.27251294335763,47.69834726522333],[-122.27253049017379,47.69828423565875],[-122.27254509826061,47.69822509896447],[-122.2725636831986,47.69816291335641],[-122.27259155272581,47.69806933478111],[-122.27261222539303,47.69797254794779],[-122.27262268464681,47.69794692414985],[-122.272638836493,47.69787020255034],[-122.27264114965223,47.69780710806602],[-122.2726364236468,47.69770982839788],[-122.27263482879539,47.69765226718383],[-122.27263409704051,47.69758921150003],[-122.27263918981782,47.6975164849638],[-122.27265644533506,47.69740633171809],[-122.2726601860948,47.69732145514129],[-122.27265891281098,47.69727550033715],[-122.27266504623232,47.69724033455883],[-122.27268431150667,47.69716605815388],[-122.27269413723785,47.69708093345777],[-122.27269196763478,47.69703927427521],[-122.27268700152861,47.69696997388714],[-122.27267457962333,47.69688812918638],[-122.27265444154372,47.69682094827446],[-122.27262844820702,47.6967623242679],[-122.27260416565552,47.69669215416899],[-122.27258381728977,47.6966540236655],[-122.27256961918678,47.69661800029178],[-122.27254852171063,47.69658947619285],[-122.27248265455349,47.69652094478948],[-122.27245879298643,47.69650260951772],[-122.2724491654001,47.69649676664905],[-122.27242781082212,47.69648380680498],[-122.27240075948311,47.69647032762727],[-122.27239074609784,47.69646533814326],[-122.27235793933164,47.69645397060547],[-122.27232151775547,47.69642208390239],[-122.27229295823403,47.69638075789052],[-122.27227873449328,47.69633435135493],[-122.27227286592756,47.69631520449474],[-122.27225587189422,47.69625153986485],[-122.27225101212376,47.69623192072383],[-122.27223643756187,47.69617308243009],[-122.27222771553519,47.6961147972877],[-122.27221800824381,47.69605759574652],[-122.2721997942014,47.69598653470614],[-122.27218289171039,47.69592616803837],[-122.27215716506599,47.69587713751785],[-122.27212737871533,47.6958281582404],[-122.2720991277634,47.69579254204862],[-122.27207266961152,47.69575918603156],[-122.27202990880875,47.69571833930447],[-122.27197486105317,47.69567379153499],[-122.27191073947782,47.69563154376451],[-122.27184530154339,47.69561510367392],[-122.27179037759727,47.69561168419069],[-122.27174315621966,47.69559308625077],[-122.27172796659346,47.69555788954745],[-122.27172891193446,47.69551867626807],[-122.27171044222889,47.69547503799022],[-122.27167685282504,47.69539868699213],[-122.27164430045562,47.69532313679981],[-122.27159785711906,47.6952592867249],[-122.27153306882187,47.69519292633638],[-122.27146838687321,47.69513042033758],[-122.27144526734617,47.69510217847272],[-122.27143029147454,47.69507469092036],[-122.27142250358557,47.69505011136653],[-122.27142240339818,47.69500979730199],[-122.27145613865149,47.69498139504192],[-122.27153664756928,47.6949554444242],[-122.27163491861903,47.69494760677901],[-122.27167874545019,47.69495365124794],[-122.27178034280519,47.69495592508922],[-122.27181783651258,47.69495326708751],[-122.27187531881675,47.69493908886311],[-122.27198462633122,47.69492648406406],[-122.27217912406913,47.69491031919829],[-122.27236079673902,47.69487100899627],[-122.27272329466096,47.69483515616443],[-122.27288748748626,47.6948245994643],[-122.27296897459794,47.69483398106146],[-122.27304997091737,47.69486230544456],[-122.27311264483079,47.69488893334684],[-122.27320126316661,47.69493579825436],[-122.27331426389905,47.69498316894566],[-122.27342785421246,47.69501519428984],[-122.27352096283657,47.6950408804266],[-122.27360263701114,47.69503869155569],[-122.27342389765177,47.69498234074128],[-122.27320633471726,47.69489897452551],[-122.27311361114404,47.69485053367837],[-122.27307944420308,47.69483034284885],[-122.27305270888834,47.69481454370639],[-122.2729676987296,47.69478794064839],[-122.27287187243766,47.69477407014134],[-122.27273197936974,47.69478213514206],[-122.27243919571839,47.69480558293575],[-122.27213293124593,47.69485550613382],[-122.27178516515276,47.69491006497339],[-122.27176206672233,47.69484592033082],[-122.27174087775145,47.69477738164626],[-122.27177719631675,47.69476895448575],[-122.27186000023208,47.6947525716186],[-122.27186223313947,47.69472319594509],[-122.2718686549816,47.69469843742001],[-122.27187383367547,47.69466546852743],[-122.27187165771944,47.69462355250348],[-122.27187037229341,47.69461533655264],[-122.27186548970754,47.69458412892197],[-122.27185723917806,47.69454284655975],[-122.27184105028638,47.69450821947586],[-122.27180758432927,47.69447299619547],[-122.27179364588747,47.69444630949799],[-122.27179958151635,47.69440399136679],[-122.27176960269328,47.69427468349889],[-122.27174538546662,47.69424345650347],[-122.27174720048259,47.69419900523447],[-122.27171527183869,47.69414594022194],[-122.27165864195878,47.69408084784624],[-122.27162293435369,47.69403798408991],[-122.27159195396153,47.69401918114782],[-122.27152445753366,47.6940016532448],[-122.27150018012054,47.69396824216564],[-122.27145141430309,47.69393047006395],[-122.27138177390269,47.69390885610294],[-122.27128601893006,47.69389746826232],[-122.27124364008429,47.69390704289551],[-122.27120313981774,47.69391110989185],[-122.27117768060744,47.69387167239398],[-122.27116160575943,47.69380444033786],[-122.2711347611347,47.6937883272355],[-122.27108577735542,47.69377934822782],[-122.27100578328488,47.69375045284885],[-122.27094600481789,47.69371830337472],[-122.27089442248396,47.69368879227437],[-122.27085740651945,47.69367199350112],[-122.27084978601995,47.69366985006705],[-122.27080419569968,47.693657026779],[-122.27077482104031,47.69363678811939],[-122.27076279380879,47.69362850155141],[-122.2707339272326,47.69361267076911],[-122.27067642231927,47.69358927552997],[-122.2705901262668,47.69355279027797],[-122.27051205716448,47.69352005733719],[-122.27043397222889,47.69348676720207],[-122.27031669036232,47.6934312220003],[-122.27023458403195,47.69339935367795],[-122.27017184468941,47.69337024018388],[-122.27013063287856,47.69334856679778],[-122.27009057931498,47.69333206298619],[-122.27000066080095,47.69329842869116],[-122.26997567613547,47.69328908309681],[-122.26992379160635,47.69324860789076],[-122.26985047214848,47.69320403254776],[-122.26981361554733,47.69319297226481],[-122.26977987941729,47.69318461477577],[-122.26974976351576,47.69316031653227],[-122.26969791718047,47.6931212116376],[-122.26963918643956,47.69309016227335],[-122.26957297927359,47.69304575438618],[-122.26951066481824,47.69299525649905],[-122.26945462261621,47.69295127709243],[-122.26938439413657,47.69290829066369],[-122.26937315883941,47.69290052649701],[-122.26935127182423,47.69288540144341],[-122.2692837318497,47.69282948536001],[-122.26922982986919,47.69278946345285],[-122.26916621060866,47.69274682216022],[-122.26914033520002,47.69272898260116],[-122.26909087222514,47.69270261467835],[-122.26901055847091,47.69266206832668],[-122.26898007216619,47.69264270183211],[-122.26892612260967,47.69260092377702],[-122.26888432376494,47.69257634429096],[-122.26883322370161,47.69254584103579],[-122.26876922449935,47.69250778834341],[-122.26872544811964,47.69248511877178],[-122.26864552673511,47.69244036891661],[-122.26858399018575,47.69239958614398],[-122.26852538240037,47.69235456779494],[-122.26850201644773,47.69233566815033],[-122.26843883097732,47.69229032168688],[-122.26834389446354,47.69223492167],[-122.26825259249598,47.69220085414322],[-122.26814663867405,47.69216928460563],[-122.26806229067196,47.69212964546441],[-122.26801821214593,47.6920960115983],[-122.26797338709409,47.69205770579983],[-122.26795062377829,47.69203825311801],[-122.26789634638877,47.69198456817848],[-122.26783297541023,47.69191407492187],[-122.26777990510345,47.69184893590013],[-122.26773046340446,47.69178649331923],[-122.26773046340446,47.69178649331921],[-122.2677291341539,47.69178518757683],[-122.26768141504724,47.69173831237433],[-122.26765901251338,47.69171751537502],[-122.26765277259403,47.69169377317709],[-122.26766432290495,47.69167083542543],[-122.26768556824628,47.69163132355332],[-122.26768890640615,47.69160514756238],[-122.26768890640615,47.69160514756236],[-122.26767509661487,47.69156462035244],[-122.26766972707881,47.69151721774464],[-122.2676653542339,47.69148753959731],[-122.26765662511281,47.69142878290257],[-122.26765052638277,47.69139175784667],[-122.26763364957887,47.69133207534826],[-122.26760860514013,47.69119717768437],[-122.26748318216387,47.69099353791898],[-122.26735181008108,47.69079502791389],[-122.26731983661794,47.6907584993437],[-122.26728165780499,47.69071785053232],[-122.26726239833228,47.69070071192307],[-122.2672405456393,47.69068126565352],[-122.26721259180906,47.69064858152515],[-122.267180221654,47.69061073372357],[-122.26713913620912,47.69059351362971],[-122.26710398432442,47.69057056368247],[-122.26707450782449,47.69053254710494],[-122.26704415598964,47.69049959691326],[-122.26699799294684,47.69048231184164],[-122.26696003689797,47.69047263116516],[-122.26695044925218,47.69047018583931],[-122.26688617575283,47.69042206729191],[-122.26685344983646,47.69039505936608],[-122.26679677673654,47.69034641698286],[-122.26731094903874,47.6903445328384],[-122.26752409869844,47.69034262172028],[-122.26800267284287,47.69033839748447],[-122.26806707914604,47.69042807148318],[-122.26827884535012,47.69070688417174],[-122.26844380849265,47.69090844055849],[-122.26881625467136,47.69121517645801],[-122.26923103378951,47.69145548517291],[-122.26938395318535,47.69155664650378],[-122.26977294866791,47.6918139792329],[-122.2702430084646,47.69212547837714],[-122.27064833650955,47.69235394824123],[-122.27120538176359,47.69261644773089],[-122.27187126073531,47.69281253527664],[-122.27188876718992,47.69276642905903],[-122.27190227565816,47.69274093844884],[-122.27192910255695,47.69271977776797],[-122.27198462690284,47.69268998665643],[-122.27202081706071,47.69267697663601],[-122.27205964599656,47.69266757531869],[-122.2721001001523,47.69266188043223],[-122.27213558496729,47.69266006156708],[-122.27217674556221,47.69266155544875],[-122.27221189281859,47.6926658673718],[-122.27225071221633,47.69267446004346],[-122.27225677095448,47.69267643127333],[-122.27228810751087,47.69268662672116],[-122.27231791470308,47.6926997459154],[-122.27234887743361,47.69271794871722],[-122.27237272299622,47.6927357703733],[-122.27284156482699,47.69281922047677],[-122.27288264064366,47.69281763049122],[-122.27292366846561,47.69281432730527],[-122.2729646505239,47.69280935406009],[-122.27300456970016,47.69280268043465],[-122.27307720772671,47.69278595369911],[-122.27311496944053,47.69277468008608],[-122.2731516718282,47.69276183485767],[-122.27318229983021,47.69274962299925],[-122.27321638876496,47.69273406898061],[-122.27327640479638,47.69270152081287],[-122.27330581962124,47.69268216970182],[-122.27333020700749,47.69266459589666],[-122.27335651542913,47.69264305605655],[-122.27338076559275,47.6926205142226],[-122.27340295696051,47.69259696970104],[-122.27342722488963,47.6925750702603],[-122.27345456353454,47.69255407436986],[-122.27351095277514,47.69251891610362],[-122.27354399333312,47.69250217526121],[-122.27360975718808,47.6924755527249],[-122.27364196447168,47.69246537712117],[-122.2736802638897,47.69245521085428],[-122.27371963158733,47.69244695860657],[-122.27375450519639,47.69244141964568],[-122.27379498986636,47.6924368377499],[-122.27383603803506,47.69243426223895],[-122.27445882829872,47.6923760482895],[-122.27504087952505,47.69222182040129],[-122.27535583808128,47.69213827577684],[-122.27544114040889,47.69219379230456],[-122.27547494933333,47.69220476088406],[-122.27551232721197,47.69221628410136],[-122.2755450773048,47.69222568072166],[-122.27557832321077,47.69223464252227],[-122.27564426642161,47.69225111650651],[-122.27568359853406,47.69225987314882],[-122.27571780414006,47.69226685205953],[-122.27575760895817,47.69227435990451],[-122.27579739713988,47.69228126813624],[-122.27583206528811,47.69228661335362],[-122.27587232669731,47.69229227313121],[-122.27591307626352,47.69229724126865],[-122.27594820812246,47.69230099524381],[-122.2759889232139,47.69230472135209],[-122.27602784204325,47.69230762759643],[-122.27603012763693,47.69230779827201],[-122.27607131356584,47.69231019031508],[-122.27611247994994,47.69231189714367],[-122.27614804102268,47.69231281784751],[-122.276189171729,47.69231323984295],[-122.27626021961476,47.69231242598056],[-122.27630130035075,47.6923110487869],[-122.27633678767644,47.69230931421412],[-122.27637783273065,47.69230665253831],[-122.27641885925757,47.69230330528415],[-122.27645429965489,47.69229990029405],[-122.27652968864217,47.69229089121424],[-122.27656457783419,47.69228590818274],[-122.27660450446955,47.69227953292054],[-122.27664441257885,47.69227247243166],[-122.27667875002533,47.69226591101437],[-122.27671811710327,47.69225765773099],[-122.27675191880543,47.69225007508115],[-122.27679074365827,47.69224058620083],[-122.27682904466326,47.69223050413187],[-122.27686732728428,47.69221977965397],[-122.27726282456564,47.69203864118071],[-122.27772214713276,47.69179786888401],[-122.27804539509607,47.69162929657085],[-122.27807549863863,47.69161653338141],[-122.27811168295263,47.69160339301618],[-122.27814944100456,47.69159207493782],[-122.27818827039171,47.69158275678833],[-122.2782281700884,47.69157543893066],[-122.27826306697033,47.69157075500318],[-122.27830408922327,47.69156727866004],[-122.27834516813519,47.69156585827707],[-122.27838071563107,47.69156630709574],[-122.27842190294193,47.69156878390302],[-122.27849170243847,47.6915778815136],[-122.27853101612187,47.69158599442699],[-122.27856936909387,47.69159604739694],[-122.27860163311421,47.69160622074087],[-122.27863754589957,47.69161981785914],[-122.2786719855326,47.69163519026191],[-122.27872714512577,47.69166546605876],[-122.27875612438388,47.69168527763586],[-122.27878311156903,47.69170648571757],[-122.27880759763067,47.69172901042267],[-122.27882906961494,47.69175268768664],[-122.27884853997574,47.69177741833053],[-122.27886379726704,47.69180198795641],[-122.27886448363037,47.69180309324344],[-122.2788779089687,47.69182948589493],[-122.2791881955264,47.69225325370786],[-122.27998593826543,47.69293611942047],[-122.28000646233779,47.69489460833962],[-122.28000787634282,47.69560167474384],[-122.28002009181644,47.69671484351924],[-122.28003196476993,47.69737816292293]]]],"type":"MultiPolygon"} +},{ + "id": 890536735, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":73707.576354, + "geom:bbox":"-122.417435406,47.6685170294,-122.412829519,47.6712035004", + "geom:latitude":47.66964, + "geom:longitude":-122.414975, + "iso:country":"US", + "lbl:latitude":47.669594, + "lbl:longitude":-122.414931, + "lbl:max_zoom":18.0, + "mps:latitude":47.669594, + "mps:longitude":-122.414931, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Lawtonwood" + ], + "name:und_x_variant":[ + "Lawton Wood" + ], + "reversegeo:latitude":47.669594, + "reversegeo:longitude":-122.414931, + "src:geom":"mz", + "wof:belongsto":[ + 85688623, + 102191575, + 85633793, + 101730401, + 102086191, + 85831927 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1dd214060e409a94ae8bc28db410315b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536735, + "neighbourhood":85831927, + "region_id":85688623 + } + ], + "wof:id":890536735, + "wof:lastmodified":1566631089, + "wof:name":"Lawtonwood", + "wof:parent_id":85831927, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85830035 + ], + "wof:tags":[] +}, + "bbox": [ + -122.41743540579773, + 47.6685170293626, + -122.41282951874524, + 47.67120350035842 +], + "geometry": {"coordinates":[[[[-122.41743540579773,47.66978426943595],[-122.41587617312634,47.67042552134254],[-122.41311497105774,47.67113783682368],[-122.41311497105771,47.67113783682369],[-122.41286404725709,47.67119671450534],[-122.41282951874524,47.67120350035842],[-122.412861991586,47.66954904304613],[-122.41289749730964,47.66941309842393],[-122.41296666846789,47.66926068068432],[-122.41305636564404,47.66913999836024],[-122.41319842384097,47.6690239369214],[-122.41340075831836,47.66892758519533],[-122.41387238819648,47.66873260086214],[-122.41409022224445,47.66864378681048],[-122.4142736014642,47.66857911011298],[-122.41444753148743,47.66854416198201],[-122.41464650176333,47.6685170293626],[-122.41741782993283,47.66853514621697],[-122.41743540579773,47.66978426943595]]]],"type":"MultiPolygon"} +},{ + "id": 890536737, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000124, + "geom:area_square_m":1034753.473197, + "geom:bbox":"-122.340202546,47.6650024744,-122.321600289,47.6731078288", + "geom:latitude":47.668492, + "geom:longitude":-122.33057, + "iso:country":"US", + "lbl:latitude":47.668681, + "lbl:longitude":-122.330589, + "lbl:max_zoom":18.0, + "mps:latitude":47.668681, + "mps:longitude":-122.330589, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Meridian" + ], + "name:epo_x_preferred":[ + "Meridian" + ], + "reversegeo:latitude":47.668681, + "reversegeo:longitude":-122.330589, + "src:geom":"mz", + "wof:belongsto":[ + 85854291, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q14713815" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"04d9c596da32baa5c7922306141dbe8e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536737, + "neighbourhood_id":85854291, + "region_id":85688623 + } + ], + "wof:id":890536737, + "wof:lastmodified":1566631086, + "wof:name":"Meridian", + "wof:parent_id":85854291, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85833815 + ], + "wof:tags":[] +}, + "bbox": [ + -122.34020254554144, + 47.66500247441277, + -122.3216002887554, + 47.67310782877587 +], + "geometry": {"coordinates":[[[[-122.32199160708142,47.66500247441277],[-122.34020254554144,47.66503763796115],[-122.34009982450611,47.66572989785856],[-122.34008796920062,47.66640613183271],[-122.34008690066935,47.66708693567627],[-122.34008247183569,47.66791435313605],[-122.34007715640986,47.66844864427951],[-122.34007485692835,47.66847433815658],[-122.3400725556844,47.66849998923759],[-122.34006974750359,47.66852564702367],[-122.34006643114445,47.66855126871198],[-122.34006311426259,47.66857689040707],[-122.34005979665608,47.66860246929234],[-122.34005597159135,47.66862805488945],[-122.34005163781666,47.66865360404471],[-122.3400473040479,47.66867915355058],[-122.34004246209781,47.66870466695849],[-122.34003761890214,47.66873013756338],[-122.34003226823539,47.66875561452903],[-122.34002640939573,47.66878105574741],[-122.34002177151346,47.66919871656398],[-122.34001884612698,47.66939536607482],[-122.34001809482918,47.66943946227094],[-122.3400174680942,47.66947036112582],[-122.34001331308818,47.66974714483661],[-122.34001053143642,47.6698962357192],[-122.34000929040607,47.67020352854389],[-122.33904991715849,47.67019260601268],[-122.33821350169184,47.67018712056507],[-122.33797966274497,47.67019020937283],[-122.33797623920354,47.67058026246144],[-122.33718010117647,47.67124795742288],[-122.33700419213496,47.67072784101674],[-122.3366962239636,47.67085233983823],[-122.33665659864781,47.67086832925596],[-122.3366245050338,47.67088156307754],[-122.33659191012619,47.67089501795171],[-122.33655982638315,47.6709085941779],[-122.33652825382514,47.67092229245817],[-122.33649617872436,47.67093616863725],[-122.33646461552684,47.67095020968043],[-122.33643305653521,47.67096437876571],[-122.33640200820906,47.67097866991285],[-122.33637096481714,47.67099313226294],[-122.33633992512132,47.67100772301312],[-122.33630889036944,47.67102248531715],[-122.33627785931314,47.67103737602126],[-122.33624733943138,47.6710523884305],[-122.33621682448279,47.67106757204298],[-122.33618682018947,47.67108287736795],[-122.33615681960158,47.67109831144447],[-122.33612682270876,47.67111387392164],[-122.33609683126782,47.6711296075955],[-122.33606735121043,47.67114550614328],[-122.3360378741194,47.67116148993138],[-122.33600840197055,47.67117764527417],[-122.33597943923949,47.67119387952805],[-122.33595048195974,47.6712102849792],[-122.33592152910229,47.67122686199208],[-122.3358925792207,47.6712435245965],[-122.33586414123201,47.67126035171853],[-122.33583621266158,47.67127725775288],[-122.33580778206039,47.67129434167801],[-122.33577986212505,47.6713115476694],[-122.33356189920572,47.67310782877587],[-122.33355830594958,47.67231530791759],[-122.33337186498161,47.67232581752052],[-122.33203967452742,47.67230423447019],[-122.32921081182498,47.67227624874275],[-122.32460190502653,47.67225192816661],[-122.32297518561542,47.67224060659674],[-122.32160028875541,47.67223359833682],[-122.3216215221541,47.67215992948486],[-122.32182096620521,47.67122136014388],[-122.32193067913323,47.67032145130551],[-122.32195601685544,47.66946985849449],[-122.32196779535356,47.66895982146169],[-122.32197623181985,47.66859888150832],[-122.32196761425182,47.66773106591216],[-122.32198393035914,47.66686570943951],[-122.32198759562328,47.66598385217608],[-122.32199126076306,47.66510199488264],[-122.32199160708142,47.66500247441277]]]],"type":"MultiPolygon"} +},{ + "id": 890536739, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000012, + "geom:area_square_m":98402.050627, + "geom:bbox":"-122.254139963,47.5086022578,-122.247813367,47.5147206635", + "geom:latitude":47.512096, + "geom:longitude":-122.250751, + "iso:country":"US", + "lbl:latitude":47.512135, + "lbl:longitude":-122.2507, + "lbl:max_zoom":18.0, + "mps:latitude":47.512135, + "mps:longitude":-122.2507, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "reversegeo:latitude":47.512135, + "reversegeo:longitude":-122.2507, + "src:geom":"mz", + "wof:belongsto":[ + 85843635, + 102191575, + 890536785, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4ca93dc0020dda9f770e652ab40aeb27", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536785, + "microhood_id":890536739, + "neighbourhood_id":85843635, + "region_id":85688623 + } + ], + "wof:id":890536739, + "wof:lastmodified":1566631085, + "wof:name":"Tamill", + "wof:parent_id":85843635, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85851787 + ], + "wof:tags":[] +}, + "bbox": [ + -122.25413996329297, + 47.50860225776353, + -122.24781336688991, + 47.51472066346493 +], + "geometry": {"coordinates":[[[[-122.25413996329297,47.51373291013724],[-122.25251833813496,47.51472066346493],[-122.25060252817794,47.51320666125219],[-122.24869037430402,47.51172303399957],[-122.24822022091503,47.51130557612909],[-122.24836193877289,47.50993070999478],[-122.24836375157675,47.50977383880713],[-122.24836375157675,47.50977383880711],[-122.24801086054835,47.50916609360937],[-122.24784675485164,47.50889741262571],[-122.24784401245974,47.50887092712398],[-122.2478387443801,47.50884455836595],[-122.24783095708554,47.50881856388295],[-122.24782014750912,47.50879303557679],[-122.24781336688991,47.5087668572811],[-122.24781619094894,47.50874043090381],[-122.24782865801329,47.50871516967455],[-122.24784878561296,47.50869259762705],[-122.24787660680477,47.50867391431246],[-122.24790856033165,47.50865839265126],[-122.24794207237068,47.50864439408178],[-122.24797664036321,47.5086320101486],[-122.24801226496481,47.50862128401183],[-122.24804945441038,47.50861229497622],[-122.2480872061862,47.50860539842686],[-122.24812607151514,47.50860225776353],[-122.24816555317375,47.50860317996116],[-122.24820362454894,47.5086080611107],[-122.24824079039645,47.50861685210667],[-122.24827552654432,47.50862931502966],[-122.24830681408299,47.50864516284835],[-122.24833464266716,47.50866405244567],[-122.24835748335238,47.50868553222345],[-122.24837532281983,47.50870913064665],[-122.24838814647988,47.50873429126054],[-122.24900905798732,47.50948787385813],[-122.24902840246475,47.50951098207243],[-122.24904624601476,47.50953470915294],[-122.24906208089178,47.50955897509112],[-122.24907590710306,47.50958378023868],[-122.24908822771276,47.50960903233738],[-122.24909853449454,47.50963465278846],[-122.24910733386342,47.50966063457749],[-122.24911360932904,47.50968681910305],[-122.24911837272714,47.5097131937517],[-122.24912111646475,47.50973972238402],[-122.24912183871284,47.50976631868423],[-122.24912053600023,47.50979285494239],[-122.24907693020667,47.510087173313],[-122.24908118886152,47.51011359707393],[-122.24908847337365,47.51013968338614],[-122.24909878194059,47.51016534663476],[-122.24911210705534,47.51019032930044],[-122.24912844756886,47.51021458892903],[-122.24914678685867,47.51023792410109],[-122.2491681334065,47.51026023625558],[-122.24919197715774,47.51028136047604],[-122.24921831410852,47.51030116835575],[-122.24924663704482,47.51031958057973],[-122.24927694195154,47.51033646839053],[-122.24930871994188,47.51035171002705],[-122.24934298001347,47.51036520692002],[-122.24937769781569,47.5103769414892],[-122.24941438879864,47.51038680920167],[-122.24945203825426,47.51039473672024],[-122.24949014066235,47.51040068823095],[-122.24952869328338,47.51040462024714],[-122.24956769767608,47.51040653309983],[-122.25025677431654,47.51063284688051],[-122.25413996329297,47.51373291013724]]]],"type":"MultiPolygon"} +},{ + "id": 890536741, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000046, + "geom:area_square_m":387518.376331, + "geom:bbox":"-122.323590425,47.5387857673,-122.314068287,47.5520051166", + "geom:latitude":47.545584, + "geom:longitude":-122.319729, + "iso:country":"US", + "lbl:latitude":47.547752, + "lbl:longitude":-122.318864, + "lbl:max_zoom":18.0, + "mps:latitude":47.547752, + "mps:longitude":-122.318864, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":47.547752, + "reversegeo:longitude":-122.318864, + "src:geom":"mz", + "wof:belongsto":[ + 85821315, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"23d3ea73819ef1e7ad82902f3ce32a91", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536741, + "neighbourhood_id":85821315, + "region_id":85688623 + } + ], + "wof:id":890536741, + "wof:lastmodified":1566631088, + "wof:name":"Van Asselt", + "wof:parent_id":85821315, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85853483 + ], + "wof:tags":[] +}, + "bbox": [ + -122.32359042466285, + 47.53878576729704, + -122.31406828732075, + 47.55200511659389 +], + "geometry": {"coordinates":[[[[-122.32067970096485,47.53878576729704],[-122.32359042466285,47.54053151833026],[-122.32002203245423,47.55144377477467],[-122.31967676664947,47.55200511659389],[-122.31886522572304,47.55124663053871],[-122.31845462182299,47.55076666221078],[-122.31783246820312,47.55011122550763],[-122.31728360650905,47.54961112258916],[-122.31692987650366,47.54927847457665],[-122.3162067036386,47.54862983209186],[-122.31406828732075,47.54751132073058],[-122.31851961564439,47.54529643475194],[-122.32067970096485,47.53878576729704]]]],"type":"MultiPolygon"} +},{ + "id": 890536745, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000098, + "geom:area_square_m":819241.339967, + "geom:bbox":"-122.372565267,47.5629941612,-122.357208484,47.5714870153", + "geom:latitude":47.567801, + "geom:longitude":-122.364119, + "iso:country":"US", + "lbl:latitude":47.568099, + "lbl:longitude":-122.36412, + "lbl:max_zoom":18.0, + "mps:latitude":47.568099, + "mps:longitude":-122.36412, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Youngstown" + ], + "name:und_x_variant":[ + "Humphries" + ], + "reversegeo:latitude":47.568099, + "reversegeo:longitude":-122.36412, + "src:geom":"mz", + "wof:belongsto":[ + 85869543, + 102191575, + 890536773, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"622b78d41de14737c39d8c50c05eca1e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536773, + "microhood_id":890536745, + "neighbourhood_id":85869543, + "region_id":85688623 + } + ], + "wof:id":890536745, + "wof:lastmodified":1566631092, + "wof:name":"Youngstown", + "wof:parent_id":85869543, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85859435 + ], + "wof:tags":[] +}, + "bbox": [ + -122.37256526700872, + 47.56299416115089, + -122.35720848379091, + 47.57148701532461 +], + "geometry": {"coordinates":[[[[-122.357216854542,47.57102908819047],[-122.35720848379091,47.56472637622379],[-122.36029039579644,47.56472132066673],[-122.36048651010043,47.56388953995276],[-122.3605572028796,47.5634624653125],[-122.3606067830794,47.56302663826543],[-122.36324015339341,47.56299416115089],[-122.3632196335351,47.56471559861772],[-122.37256526700872,47.56469929712145],[-122.37233939265676,47.56508961954079],[-122.37123618743003,47.56688258936244],[-122.37081173579575,47.56756672750586],[-122.37076969703666,47.56859586038864],[-122.37071134780695,47.56944998022016],[-122.37070225984752,47.5698626513575],[-122.37066530139232,47.57077235103201],[-122.37064947323432,47.57083666047686],[-122.37064777398517,47.57089919315453],[-122.37064657768127,47.57094445287635],[-122.37064487414088,47.57098967698763],[-122.37064368035965,47.5710350223146],[-122.3706420071511,47.57108127403871],[-122.37064034479376,47.57112791099311],[-122.37063716776733,47.57117469723661],[-122.3706339907352,47.57122148348004],[-122.37063082127906,47.57126852653886],[-122.37062866051349,47.57131542750052],[-122.37062649974399,47.57136232846209],[-122.37062679205597,47.57140653968227],[-122.37062772135549,47.57143801782784],[-122.37043400116457,47.57146402972101],[-122.37038900950849,47.5714669087883],[-122.37018580707762,47.57148053807666],[-122.36932599596383,47.57148701532461],[-122.36863244824922,47.5714810009436],[-122.36753699155395,47.57148297703058],[-122.36643429603154,47.57147989900597],[-122.36533529529646,47.57148190166892],[-122.3642362932187,47.57148385090801],[-122.36314111632586,47.57147806878952],[-122.36203842116944,47.57147494813873],[-122.36094584980627,47.57147163761121],[-122.36090786643075,47.57147171937447],[-122.36086987928826,47.57147167271695],[-122.36083188963474,47.57147154044135],[-122.36079389747032,47.57147132254765],[-122.36075843502329,47.57147102783853],[-122.36072246406822,47.57147065395913],[-122.36068699711869,47.57147018800996],[-122.36065102239849,47.57146968569992],[-122.36061504391282,47.57146905497038],[-122.3605795706885,47.57146837497423],[-122.36054358843857,47.57146761581399],[-122.36050810840062,47.57146672108733],[-122.36047212113181,47.57146579069365],[-122.36043663785932,47.57146476788049],[-122.36040064556194,47.57146366590257],[-122.36036515851647,47.57146251430812],[-122.36032916120153,47.57146124109679],[-122.36029366736518,47.57145987547351],[-122.36025817279406,47.57145846702944],[-122.36022216920924,47.57145697977072],[-122.36018666962187,47.57145540009356],[-122.36015116699785,47.57145373445603],[-122.36011515587916,47.57145198999634],[-122.36007964876873,47.57145015346957],[-122.36004413914064,47.57144823097543],[-122.36000812049997,47.57144622966561],[-122.35997260659421,47.57144417874797],[-122.35993709068968,47.57144204185606],[-122.35990157103394,47.57143977689577],[-122.35986554361089,47.57143747557102],[-122.35983048223703,47.57143357623984],[-122.35979541835904,47.57142959129248],[-122.35975984597989,47.57142552717082],[-122.35972477583942,47.57142132818813],[-122.35968970318501,47.57141704323836],[-122.35965412078589,47.57141263666198],[-122.35961904312491,47.57140818047959],[-122.35958396044144,47.57140355272467],[-122.35954887651997,47.57139888250705],[-122.35951378883105,47.57139408351963],[-122.35947869915815,47.57138919890907],[-122.35944157144637,47.57138391344689],[-122.35940443996866,47.57137849921364],[-122.35936730421712,47.57137295656705],[-122.35933270801513,47.57136763709323],[-122.35929760279663,47.57136223845033],[-122.35926300158148,47.57135674739361],[-122.35922789010628,47.57135113471558],[-122.35919328263476,47.57134542962412],[-122.35915867266246,47.57133963891665],[-122.35912405893534,47.57133371979051],[-122.35908944217911,47.57132771470452],[-122.35905482344107,47.57132162399559],[-122.35902020220298,47.5713154476707],[-122.35898557721096,47.57130914292709],[-122.35895094920086,47.57130275257449],[-122.35891631920968,47.57129627659899],[-122.35888219144059,47.57128966506502],[-122.3588475551867,47.5712829747041],[-122.35862802646309,47.5712407192875],[-122.35835816710453,47.57119198345118],[-122.35811997781573,47.57115241946617],[-122.35788136491821,47.57111564534043],[-122.3576413155965,47.57108171781942],[-122.35740084333631,47.5710506233086],[-122.357216854542,47.57102908819047]]]],"type":"MultiPolygon"} +},{ + "id": 890536747, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000334, + "geom:area_square_m":2787659.631912, + "geom:bbox":"-122.344605,47.571314,-122.325936,47.596482", + "geom:latitude":47.581328, + "geom:longitude":-122.334161, + "iso:country":"US", + "lbl:latitude":47.582402, + "lbl:longitude":-122.333981, + "lbl:max_zoom":18.0, + "mps:latitude":47.582402, + "mps:longitude":-122.333981, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "name:deu_x_preferred":[ + "SoDo" + ], + "name:eng_x_preferred":[ + "SoDo" + ], + "name:fra_x_preferred":[ + "SoDo" + ], + "reversegeo:latitude":47.582402, + "reversegeo:longitude":-122.333981, + "src:geom":"mz", + "wof:belongsto":[ + 85869361, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7548990" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a8ff0d855d6dec3ef25d7974134544e3", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536747, + "neighbourhood_id":85869361, + "region_id":85688623 + } + ], + "wof:id":890536747, + "wof:lastmodified":1617130352, + "wof:name":"SoDo", + "wof:parent_id":85869361, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866043 + ], + "wof:tags":[] +}, + "bbox": [ + -122.344605, + 47.571314, + -122.325936, + 47.596482 +], + "geometry": {"coordinates":[[[-122.32905,47.594217],[-122.329049,47.594217],[-122.329049,47.594324],[-122.32904600000001,47.594724],[-122.329049,47.595074],[-122.329048,47.595958],[-122.329042,47.596482],[-122.328738,47.596328],[-122.32873600000001,47.596327],[-122.328513,47.596214],[-122.32818899999999,47.596051],[-122.32818899999999,47.596041],[-122.327718,47.59581],[-122.32771200000001,47.59581],[-122.327684,47.595796],[-122.32765999999999,47.595799],[-122.32736,47.595835],[-122.32711,47.595835],[-122.32710400000001,47.595835],[-122.32708700000001,47.595835],[-122.326376,47.595835],[-122.326376,47.595782],[-122.32637800000001,47.595312],[-122.326387,47.595272],[-122.32646699999999,47.595177],[-122.325936,47.594906],[-122.325973,47.594786],[-122.325969,47.594431],[-122.32597,47.592606],[-122.32597,47.592553],[-122.32597,47.592409],[-122.32606199999999,47.592391],[-122.326166,47.571331],[-122.344605,47.571314],[-122.344483,47.57175],[-122.344491,47.571788],[-122.344493,47.571881],[-122.344492,47.57192],[-122.34446800000001,47.571959],[-122.34446800000001,47.571962],[-122.34447299999999,47.572013],[-122.344425,47.572044],[-122.34436700000001,47.572061],[-122.34429,47.572121],[-122.344233,47.572192],[-122.344195,47.572255],[-122.344184,47.572273],[-122.34417500000001,47.57229],[-122.344143,47.572347],[-122.344093,47.572395],[-122.34405599999999,47.572421],[-122.344154,47.57242],[-122.34412399999999,47.572516],[-122.344075,47.572627],[-122.344059,47.572666],[-122.344014,47.572811],[-122.343929,47.572995],[-122.343852,47.573205],[-122.343773,47.57342],[-122.343704,47.573588],[-122.343671,47.573637],[-122.343632,47.573657],[-122.343582,47.573666],[-122.34338700000001,47.573665],[-122.34318500000001,47.573665],[-122.343014,47.573668],[-122.343011,47.573841],[-122.34301000000001,47.574014],[-122.34301000000001,47.574199],[-122.34301000000001,47.5742],[-122.343009,47.574344],[-122.34301000000001,47.574499],[-122.343003,47.574636],[-122.343003,47.574773],[-122.34300399999999,47.574886],[-122.34300399999999,47.574887],[-122.34300399999999,47.575003],[-122.343003,47.575156],[-122.343003,47.575274],[-122.34300399999999,47.575406],[-122.34300399999999,47.575582],[-122.343003,47.575731],[-122.343003,47.575861],[-122.343003,47.576033],[-122.343003,47.576034],[-122.343,47.576171],[-122.343,47.57622],[-122.343001,47.576317],[-122.343,47.576439],[-122.343,47.576581],[-122.343,47.576743],[-122.34299900000001,47.576908],[-122.343,47.577042],[-122.34299900000001,47.577147],[-122.343,47.577268],[-122.343,47.577382],[-122.34299900000001,47.577498],[-122.343,47.577614],[-122.343,47.577725],[-122.34299900000001,47.57784],[-122.343,47.57793],[-122.343,47.577931],[-122.343,47.577932],[-122.343,47.577986],[-122.34291399999999,47.577988],[-122.342795,47.577987],[-122.34269,47.577987],[-122.342535,47.577988],[-122.34253,47.578065],[-122.34253,47.578071],[-122.34252600000001,47.578193],[-122.34252600000001,47.5783],[-122.34252600000001,47.578302],[-122.342524,47.578434],[-122.342523,47.578539],[-122.342521,47.578687],[-122.342521,47.578748],[-122.34251500000001,47.578824],[-122.342496,47.578848],[-122.34249199999999,47.578854],[-122.34246400000001,47.578885],[-122.342437,47.578915],[-122.34237299999999,47.578955],[-122.34230599999999,47.578945],[-122.34229999999999,47.578942],[-122.342189,47.578885],[-122.342077,47.578824],[-122.341972,47.578746],[-122.341885,47.578682],[-122.341776,47.578613],[-122.341769,47.578609],[-122.34175999999999,47.578602],[-122.34168200000001,47.578547],[-122.34159200000001,47.578486],[-122.341481,47.578414],[-122.341369,47.578348],[-122.34127599999999,47.578284],[-122.341193,47.578237],[-122.34112,47.578181],[-122.341049,47.578127],[-122.34097800000001,47.578093],[-122.340923,47.578081],[-122.340887,47.578086],[-122.340819,47.578054],[-122.340765,47.578022],[-122.340739,47.578006],[-122.340711,47.577982],[-122.340699,47.577972],[-122.340611,47.577939],[-122.340484,47.57791],[-122.340433,47.577911],[-122.340391,47.577897],[-122.340306,47.577883],[-122.340262,47.577874],[-122.34024700000001,47.577872],[-122.340234,47.577873],[-122.340209,47.577877],[-122.34017900000001,47.577936],[-122.340191,47.578059],[-122.340188,47.578168],[-122.340189,47.578273],[-122.34019000000001,47.578393],[-122.34019000000001,47.578461],[-122.340208,47.578499],[-122.340216,47.578516],[-122.34029200000001,47.578572],[-122.340442,47.578667],[-122.34059000000001,47.578766],[-122.34077000000001,47.57889],[-122.34086499999999,47.578954],[-122.340976,47.579029],[-122.341111,47.57912],[-122.341168,47.579159],[-122.341241,47.579207],[-122.341363,47.579289],[-122.34148500000001,47.579372],[-122.341555,47.57942],[-122.341734,47.579546],[-122.34190599999999,47.579659],[-122.342066,47.579761],[-122.342279,47.579912],[-122.34245300000001,47.580029],[-122.342986,47.580386],[-122.34300500000001,47.580415],[-122.343009,47.580439],[-122.343008,47.580628],[-122.343008,47.580691],[-122.343009,47.581177],[-122.34301000000001,47.58145],[-122.343011,47.581723],[-122.343011,47.582132],[-122.34301000000001,47.582541],[-122.34301000000001,47.582589],[-122.34301000000001,47.582685],[-122.343011,47.583462],[-122.343011,47.584652],[-122.343009,47.585497],[-122.342562,47.5855],[-122.34256600000001,47.585527],[-122.342574,47.585604],[-122.342578,47.58567],[-122.342581,47.585729],[-122.342572,47.585799],[-122.342552,47.585851],[-122.342546,47.585882],[-122.342544,47.585894],[-122.34254300000001,47.585941],[-122.34254300000001,47.585942],[-122.342544,47.585988],[-122.342546,47.58604],[-122.34254300000001,47.58609],[-122.34254900000001,47.586136],[-122.342575,47.586203],[-122.342603,47.586253],[-122.34265000000001,47.586252],[-122.34269500000001,47.586251],[-122.342718,47.586247],[-122.342775,47.586238],[-122.34277899999999,47.586317],[-122.34277899999999,47.58632],[-122.34278,47.586458],[-122.342783,47.586613],[-122.34278399999999,47.586777],[-122.34277899999999,47.58692],[-122.342782,47.587048],[-122.342782,47.587052],[-122.342782,47.587053],[-122.342783,47.587199],[-122.34278500000001,47.587296],[-122.34286899999999,47.587322],[-122.34298800000001,47.587375],[-122.34298,47.587635],[-122.342705,47.587641],[-122.342568,47.587643],[-122.342578,47.587835],[-122.342586,47.588063],[-122.342592,47.58821],[-122.34259,47.588219],[-122.342573,47.588289],[-122.342573,47.588339],[-122.342575,47.588439],[-122.342601,47.588498],[-122.342607,47.588512],[-122.342688,47.588561],[-122.34276800000001,47.588584],[-122.34285,47.588632],[-122.342859,47.58864],[-122.34289,47.588668],[-122.342901,47.588689],[-122.342911,47.588709],[-122.342947,47.588773],[-122.34296500000001,47.588862],[-122.342958,47.588951],[-122.342944,47.589027],[-122.34292600000001,47.589109],[-122.34287999999999,47.589168],[-122.342885,47.589238],[-122.342814,47.589264],[-122.34275100000001,47.589289],[-122.342674,47.589334],[-122.342608,47.589369],[-122.342522,47.589402],[-122.342428,47.589436],[-122.342361,47.589475],[-122.34236300000001,47.589523],[-122.34260399999999,47.589602],[-122.34277400000001,47.589649],[-122.34292499999999,47.589694],[-122.34293,47.589788],[-122.342929,47.589924],[-122.342922,47.590039],[-122.342777,47.590041],[-122.342463,47.590046],[-122.342156,47.590044],[-122.34184,47.590042],[-122.341617,47.590046],[-122.341234,47.590045],[-122.34085899999999,47.590046],[-122.34052,47.590047],[-122.34035,47.590048],[-122.33977400000001,47.590045],[-122.339641,47.590045],[-122.33937400000001,47.590045],[-122.339007,47.59004],[-122.338548,47.590046],[-122.338266,47.590053],[-122.338266,47.590055],[-122.33826500000001,47.590212],[-122.338268,47.590279],[-122.329058,47.590283],[-122.329043,47.592397],[-122.32905,47.592918],[-122.329049,47.593517],[-122.329052,47.593907],[-122.32905,47.594217]]],"type":"Polygon"} +},{ + "id": 890536749, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000075, + "geom:area_square_m":625134.12371, + "geom:bbox":"-122.35735791,47.6023373665,-122.33492826,47.617026679", + "geom:latitude":47.610071, + "geom:longitude":-122.345118, + "iso:country":"US", + "lbl:latitude":47.610773, + "lbl:longitude":-122.34494, + "lbl:max_zoom":18.0, + "mps:latitude":47.610773, + "mps:longitude":-122.34494, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":47.610773, + "reversegeo:longitude":-122.34494, + "src:geom":"mz", + "wof:belongsto":[ + 85867285, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"34d56fd25f9eaf3e3fb00867db5ca1d8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890536749, + "neighbourhood_id":85867285, + "region_id":85688623 + } + ], + "wof:id":890536749, + "wof:lastmodified":1566631088, + "wof:name":"Seattle Waterfront", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85882215 + ], + "wof:tags":[] +}, + "bbox": [ + -122.35735791021176, + 47.60233736648863, + -122.33492826034218, + 47.61702667903253 +], + "geometry": {"coordinates":[[[[-122.35522109853791,47.61496784184354],[-122.3525375973482,47.61702667903253],[-122.34124669338033,47.61033051417719],[-122.33902796812124,47.60784968150822],[-122.33492826034218,47.60326597032015],[-122.33605482276074,47.60280898914938],[-122.33715467674294,47.60234035352926],[-122.33941126218082,47.60233736648863],[-122.339412885323,47.60242847431893],[-122.33941461059538,47.60248809035406],[-122.33965799241959,47.60249253708746],[-122.33984254753362,47.60249557744396],[-122.33984856002697,47.60256323412189],[-122.3396722456574,47.60256475477608],[-122.3394188342903,47.60256399659736],[-122.33942134041131,47.60265059390333],[-122.33932201025783,47.60265053786877],[-122.3393211702243,47.60276160051252],[-122.33931963191952,47.60284855144061],[-122.33949918543263,47.6028538437653],[-122.33986106337026,47.60285509346765],[-122.3398722684564,47.60292705141239],[-122.33954280418394,47.60292511570463],[-122.33940896247192,47.60292333144223],[-122.33940803066339,47.60296117498751],[-122.33921538462977,47.60295879799899],[-122.33921378663032,47.60311374291096],[-122.33921126041368,47.60323661019682],[-122.33943640859012,47.60324129878871],[-122.33964943061615,47.60324726183926],[-122.33965238799489,47.6033144019714],[-122.3394638563209,47.60331415575035],[-122.33922365305969,47.60331459350759],[-122.3392196304104,47.60342077124337],[-122.33921357283091,47.60352667617756],[-122.33900496773801,47.60353329290779],[-122.33901016610997,47.60364290470584],[-122.33903535672582,47.60370782268274],[-122.33901069710033,47.60380137753731],[-122.33901081153029,47.60387541059891],[-122.33930280955532,47.60387840086047],[-122.33955110536931,47.60387729883329],[-122.33957394365099,47.60389593349498],[-122.33984073851119,47.6039036264173],[-122.34010142315365,47.60391032845183],[-122.34012486624187,47.60398486614184],[-122.34021135892108,47.60406653808855],[-122.34031774488079,47.60417013987177],[-122.3404345173916,47.60428238649949],[-122.34049389713904,47.60433781150093],[-122.34046486654067,47.60438536715994],[-122.34029961912671,47.6043842571793],[-122.340026948225,47.60438375533305],[-122.33986882502167,47.60438366403504],[-122.33971875218856,47.6043815383587],[-122.33950381771493,47.60437971380443],[-122.33934766554869,47.60437766776759],[-122.33922502835843,47.60437792011464],[-122.33933921194352,47.60450584027958],[-122.33940321873537,47.60451103405077],[-122.33942517744973,47.60453430768126],[-122.33947291720635,47.60453778882592],[-122.33949750641837,47.604581892557],[-122.33964025142581,47.60461097869914],[-122.33978259295448,47.6046261031896],[-122.34013645692718,47.6046302004801],[-122.34043341334255,47.60462926638492],[-122.34043527666725,47.60476360030033],[-122.34043828357848,47.60493742129209],[-122.34020518843661,47.60493858078355],[-122.3400035029846,47.60493932385903],[-122.33980379670969,47.60493841218449],[-122.33990959948714,47.60505684598762],[-122.34001963763521,47.60518152156019],[-122.34010379590795,47.60514750287046],[-122.340231365503,47.60514251451115],[-122.34037125320982,47.60514284652785],[-122.34042403349083,47.60518036434822],[-122.34043269509412,47.60523444728936],[-122.34057066786714,47.60523866062541],[-122.34070739676608,47.6052349213176],[-122.34091524168275,47.60523683723473],[-122.34111397567327,47.60523913077936],[-122.34131165629684,47.60524006701796],[-122.34149010208742,47.60524181488421],[-122.34163808838164,47.60524178108017],[-122.34177906845679,47.60524483908073],[-122.34188859150636,47.6052466861629],[-122.34192718957341,47.6052494732286],[-122.34196228204453,47.6052712009711],[-122.34200282699589,47.60534114187224],[-122.3420495309832,47.60541374293074],[-122.34208119876091,47.60545719527034],[-122.34211403920922,47.60550611608485],[-122.34213857524041,47.60554829206226],[-122.34215564489843,47.60557767105773],[-122.34215431767466,47.60560180963288],[-122.34212860968296,47.605624086685],[-122.34209061603127,47.60564215661858],[-122.34204806806459,47.60564297774098],[-122.34200954171304,47.60564267468678],[-122.34195685363792,47.60564337331593],[-122.34189911589016,47.60564469587662],[-122.34184740176737,47.60564401062082],[-122.34175207881509,47.60564253223065],[-122.34165067690392,47.60564113469936],[-122.34149049127963,47.60563995894076],[-122.34132934835681,47.60564072391843],[-122.34100585079793,47.60563541394204],[-122.34076760733592,47.60563390092478],[-122.34064180809499,47.60563008354218],[-122.34051103856673,47.60562963070356],[-122.34042294353385,47.60563272556735],[-122.34038235862485,47.60563133522589],[-122.3404553513067,47.60573675015409],[-122.3405285400094,47.60581392801566],[-122.34056533361735,47.6058244086721],[-122.34069532121141,47.60583284077043],[-122.34087593801631,47.60583948754297],[-122.34102517742038,47.6058476641788],[-122.34106778884849,47.60584902743881],[-122.34108177879369,47.60587707647925],[-122.3411629726089,47.60588067025455],[-122.34126129576191,47.60588073810985],[-122.34132721907757,47.60588204957793],[-122.34139105276044,47.60588120351522],[-122.34152795830425,47.60588350193698],[-122.34158476259651,47.6058849337833],[-122.34170444275982,47.60588746033402],[-122.34194165117475,47.60588817121127],[-122.34208358286521,47.60588903140117],[-122.34222652823614,47.60588987761987],[-122.34239886447135,47.60589059110971],[-122.34251643192721,47.60589014571987],[-122.34255416711646,47.60589812832416],[-122.34257524311037,47.60592582593043],[-122.34261676280848,47.60599438242785],[-122.34265377603006,47.60604736085821],[-122.34270678294884,47.60612754727961],[-122.34275549881964,47.60619956437764],[-122.34278445362736,47.6062542778625],[-122.34279831788412,47.60627795799207],[-122.342775649359,47.60630019486552],[-122.34273732127343,47.60630674437636],[-122.34266431209882,47.60630578498257],[-122.34258827953987,47.60630542229825],[-122.34250008785295,47.6063052211946],[-122.34239767093662,47.60630383777474],[-122.34230032040998,47.60630238671969],[-122.34226092372474,47.60630702231831],[-122.34218880492068,47.60633676982435],[-122.34213778124229,47.60635993959317],[-122.34207439192409,47.60630619675408],[-122.34199417951402,47.60630151942115],[-122.34195182169594,47.60630893601718],[-122.34186760740465,47.60634102888383],[-122.34180953106879,47.60636566293164],[-122.34174144850455,47.60639479998581],[-122.34169744584027,47.60641539119711],[-122.34166743822897,47.60642924199562],[-122.34161650164025,47.60645540947981],[-122.34158465754861,47.60647583981898],[-122.34153545718846,47.60652696230908],[-122.34150706640867,47.60656161375876],[-122.34150109322644,47.60660033843171],[-122.341501780535,47.60665902549499],[-122.34151410152425,47.60669943559633],[-122.34155125686098,47.60675733917217],[-122.34159867839728,47.60680221101052],[-122.34165800499994,47.60683818460267],[-122.34174092862391,47.60686643373016],[-122.34182750830507,47.60688092371672],[-122.34189333729549,47.60687893692993],[-122.34196696313141,47.60686617874423],[-122.34202936389482,47.6068508271611],[-122.34206451705514,47.60683965023095],[-122.34209069935216,47.60686865113838],[-122.34211988098635,47.60689624134651],[-122.34216399491511,47.6068794611755],[-122.34219635896285,47.60691193619407],[-122.34221942181584,47.60693823659961],[-122.34226758104991,47.60692114582572],[-122.3423062476479,47.60696120610332],[-122.34238263191034,47.60704356756744],[-122.34240975512368,47.60707007100028],[-122.34244484552178,47.60705670959581],[-122.34249027927508,47.60708545507384],[-122.34251630242763,47.60710897396466],[-122.34255435290595,47.60709283142214],[-122.34258339951515,47.60711575319138],[-122.3426255035765,47.60716947803015],[-122.34267467660158,47.60715237363718],[-122.34278289181736,47.60710899371281],[-122.34283009373766,47.60709384332398],[-122.34285415403089,47.60711957337082],[-122.34293780620105,47.60720783627106],[-122.34298395602676,47.6072612503888],[-122.3430316426013,47.6072628025078],[-122.34312384944596,47.60726157902161],[-122.34329105291386,47.60725991722226],[-122.34345321401479,47.60725913601926],[-122.34363273592716,47.60726279425941],[-122.34374930819757,47.60726287502992],[-122.34382230257287,47.60726327693957],[-122.34388181983257,47.60728827879612],[-122.34398609249278,47.60735351712967],[-122.34412219011088,47.60743259971955],[-122.34420576012836,47.60748303120923],[-122.34423913954252,47.60751549218544],[-122.34422272613885,47.60754368732437],[-122.34417724845422,47.60754840432504],[-122.34393607589161,47.6075510494821],[-122.34368468326092,47.60755083068184],[-122.34357517094946,47.60754954247422],[-122.34356013579635,47.60759031512723],[-122.34355927633214,47.60766547484504],[-122.34354978444581,47.60772262637747],[-122.34349486681333,47.60775133246386],[-122.34352333851385,47.60778934281913],[-122.34355606992669,47.60783440885253],[-122.34355890530708,47.60789718053591],[-122.34356202925348,47.60793497031813],[-122.34354081105954,47.60797226927314],[-122.34350690059868,47.60799135630171],[-122.34347214470039,47.60801623866247],[-122.3434665630792,47.60806841125468],[-122.34346603184815,47.60811995946363],[-122.34347202882981,47.60815197016465],[-122.34355154653542,47.60820245627478],[-122.34361977506086,47.60824816479413],[-122.3436816695997,47.60828517447093],[-122.34377860432167,47.60834202727439],[-122.34381990750472,47.60836808488446],[-122.3438831922217,47.60838313985665],[-122.34399482846771,47.60838769878847],[-122.34405966223089,47.60838628098868],[-122.34423104949961,47.60838893233741],[-122.34441449318996,47.60838786755323],[-122.3445888094201,47.60838666608574],[-122.3447124928869,47.60838720845509],[-122.34483313671103,47.60838779106892],[-122.34492837768114,47.60838626857375],[-122.34510981803638,47.60838604320144],[-122.34525678387624,47.60838546136551],[-122.34533383269735,47.6083858084519],[-122.34544625544694,47.60845230811874],[-122.34555350109952,47.60851506310303],[-122.34563812729816,47.60856685081696],[-122.34572571417227,47.60861585692258],[-122.34586253944055,47.60861515218326],[-122.34592236336003,47.6086157278462],[-122.34595811445529,47.60862510700304],[-122.34605614571358,47.60868468517425],[-122.34617691538577,47.60875929905245],[-122.34627808269423,47.60882213418974],[-122.34636586985516,47.60887799246539],[-122.34641437069641,47.60890750956032],[-122.34624851021864,47.60892068310415],[-122.34605284945228,47.608919985669],[-122.34596063226255,47.60892095436061],[-122.34567687867263,47.60892361217853],[-122.34551872601436,47.60892297228801],[-122.34533726014789,47.60892238470747],[-122.34520447898585,47.60892277815338],[-122.34503413423211,47.60892118523127],[-122.34490132995539,47.60892076471168],[-122.34479964054272,47.60894460871448],[-122.34491922036945,47.60901319867647],[-122.34503110471998,47.60907859191053],[-122.3450842063568,47.6091094621811],[-122.34517604564145,47.60916526752673],[-122.34525339646393,47.60921085424516],[-122.34533796002387,47.60926045783324],[-122.34550523716749,47.60936573045378],[-122.34568873475614,47.60947104451443],[-122.34590412359196,47.60959238647301],[-122.34609091826511,47.609706438963],[-122.34627133119069,47.60981016493577],[-122.34642702638244,47.60990050940058],[-122.34648694447772,47.60993912925502],[-122.34657786314956,47.60999803014964],[-122.34671091568586,47.61007659327678],[-122.34682121343683,47.6101395638029],[-122.34697792433786,47.61022989402914],[-122.34710895155693,47.61030848329709],[-122.34725036768221,47.61039571778752],[-122.34731438981196,47.61043599609567],[-122.34739966787177,47.61044034544881],[-122.34750921876588,47.61044274355071],[-122.34759843822201,47.61044318445565],[-122.34764900065757,47.61047378762278],[-122.3477574409071,47.61054252329586],[-122.34788319635686,47.61061406998072],[-122.3479368231019,47.61064544615688],[-122.34798357946889,47.61064975117279],[-122.34816009678805,47.61065425634452],[-122.34828397821639,47.6106613899661],[-122.34839962413305,47.61066422025309],[-122.34863099707648,47.61067266441094],[-122.34875979274119,47.61067450529856],[-122.34880173809086,47.61068765694426],[-122.34891106684096,47.61075200932335],[-122.34904719703961,47.61083164245353],[-122.34918021551252,47.61090883230094],[-122.3492761645943,47.6109662503459],[-122.34926009595245,47.61100622364413],[-122.34928606797807,47.61102781380641],[-122.3493714756674,47.61107136254412],[-122.34941884772294,47.61109678067685],[-122.34949413865675,47.61114102076974],[-122.3495230313639,47.61115845884349],[-122.34955892827377,47.61113797227826],[-122.34958676779981,47.61115405344646],[-122.34966202651813,47.61119718020482],[-122.34977359935222,47.61126891384927],[-122.34989323975999,47.61133916894235],[-122.35002612470977,47.61141168948946],[-122.35014475199397,47.61148195783066],[-122.35017986083318,47.61150398265542],[-122.35012582755466,47.61152826728936],[-122.3500602726411,47.61153985227612],[-122.35000367776173,47.61158062277639],[-122.34997105273818,47.61160903484512],[-122.34999317199483,47.61163753152329],[-122.34993670604777,47.61168271312628],[-122.34984267523103,47.61176074295386],[-122.34977125592451,47.61181460726573],[-122.34973778460287,47.61184877185325],[-122.34978774328827,47.61189334935145],[-122.34984246515539,47.61192745226459],[-122.34990432105768,47.61196283099528],[-122.35004355999982,47.61204460710659],[-122.35022924637506,47.61215481195462],[-122.35036548642026,47.61223799823461],[-122.35041999300311,47.61226469177826],[-122.35054674236903,47.61226574405843],[-122.35065518728149,47.61226485508081],[-122.35069166828136,47.61226436862778],[-122.35102406456022,47.61226049242917],[-122.35127857606088,47.61226258164185],[-122.35154215198719,47.61226262142048],[-122.35191706892198,47.61225680471855],[-122.35225556907145,47.61225365773398],[-122.35247862656179,47.61225479319323],[-122.35253144123465,47.61225820121311],[-122.35260335972056,47.61229095923105],[-122.35281763549075,47.61240793328803],[-122.35300494836677,47.61250414477016],[-122.35312235244764,47.61256701410085],[-122.3531613881392,47.61258457307602],[-122.35317695264453,47.61263153678367],[-122.35317889793038,47.61269813330419],[-122.3531755047494,47.6127555040414],[-122.35315403554397,47.61278402495102],[-122.35306386952163,47.61278604345259],[-122.35285511703201,47.61278883121314],[-122.35269098424882,47.61279213649257],[-122.3525368729432,47.61279145223722],[-122.35238580955473,47.61279098400227],[-122.35233207733074,47.61279088735885],[-122.35237243879943,47.61281913973261],[-122.35250973733274,47.61290368065848],[-122.35263878503041,47.61298340419102],[-122.35268418134225,47.6130104755789],[-122.35266171419822,47.61303956671865],[-122.35256759078327,47.61304493651073],[-122.35239017117679,47.61304456287948],[-122.35221773860265,47.6130413805579],[-122.35208283338666,47.61303881112577],[-122.35202704179669,47.61303762781313],[-122.35196691941873,47.6130617373087],[-122.35199279734563,47.61308002928515],[-122.3521018312908,47.61313397155946],[-122.35217486028225,47.61317001389011],[-122.3522398466953,47.61320834907378],[-122.35232934668501,47.61325295470289],[-122.35245943256535,47.613333478859],[-122.35261207659246,47.61342274186357],[-122.35272862206006,47.61349085021507],[-122.35283792851598,47.61355408525117],[-122.35292545568065,47.61356581248112],[-122.3529994885435,47.61356675175892],[-122.35305117065961,47.6135660615566],[-122.35319605134472,47.61356301292781],[-122.35341696772225,47.61356006209609],[-122.35363794038555,47.61355903801163],[-122.35384886699752,47.61356114685071],[-122.35403544125155,47.61356250954946],[-122.35431517396221,47.61356014188268],[-122.35454521812056,47.6135573241244],[-122.35478749567324,47.61355682691996],[-122.35485244830394,47.61355925767323],[-122.35498132397669,47.61356357548136],[-122.35502291249094,47.61356439027902],[-122.3551045914963,47.613584120208],[-122.35514167464353,47.6136041895673],[-122.35526312953628,47.61366674566592],[-122.35538452009938,47.61372707483358],[-122.35549975910368,47.6137850440477],[-122.35564700223617,47.61386272139556],[-122.35571743024937,47.6138963545309],[-122.35573587575233,47.61393775215793],[-122.35573824165998,47.61401861035937],[-122.35573923321094,47.61410445681472],[-122.35568365901435,47.6141280792371],[-122.35554620094079,47.61412499066736],[-122.355381911284,47.6141230754393],[-122.35518217752895,47.61412244756409],[-122.35504739660482,47.61412424998726],[-122.35497040310467,47.6141260938203],[-122.35486289580523,47.61412453220873],[-122.35475543661252,47.61412459769424],[-122.3547339394364,47.61418683785377],[-122.35473988549788,47.61425149577435],[-122.35469629132734,47.61426878802409],[-122.3546294075915,47.614269682191],[-122.35449053289345,47.61427016775288],[-122.35432078192225,47.61427217949761],[-122.35419305433307,47.61427251570386],[-122.35407749521349,47.61427294606683],[-122.35415210184409,47.61432816043343],[-122.3542166330521,47.61436817127058],[-122.35428473433457,47.61440890580849],[-122.35435811270527,47.61445676730263],[-122.35442815270324,47.61449447637604],[-122.35446354820502,47.61450882755272],[-122.35451983155549,47.614509446115],[-122.35457252843833,47.61450874166903],[-122.35467400307385,47.6145120120579],[-122.35477443485993,47.61451426828108],[-122.35485247359614,47.61451348215261],[-122.35493557250554,47.61451237104178],[-122.35503395206398,47.6145137973857],[-122.35512465821976,47.61451284167892],[-122.35523473196146,47.61451548238785],[-122.35528894909766,47.61451475727833],[-122.35541872900122,47.61451524949062],[-122.35556073957385,47.61451797724285],[-122.35566616664258,47.61451772374471],[-122.35578823977959,47.61451467652211],[-122.35597426546335,47.61451450122478],[-122.35621002072114,47.61451614506156],[-122.35639196549752,47.61451508096364],[-122.35648132490374,47.61452005444807],[-122.3565852104024,47.61451909245011],[-122.3566724303224,47.61452023856383],[-122.35671069339827,47.61452863771307],[-122.35676441301139,47.61456287962006],[-122.35684532944219,47.61460841061152],[-122.3569401796256,47.61466240979233],[-122.35702784384034,47.61471333436626],[-122.35712533587245,47.61477098260648],[-122.35719287783061,47.61480983746941],[-122.35725521972094,47.61484422060777],[-122.35731354043928,47.61487977157402],[-122.35734652381498,47.61489826694887],[-122.35735791021176,47.61494087288106],[-122.35735455885161,47.6149649107201],[-122.3573174846893,47.61497980265058],[-122.35727390794746,47.6149803862274],[-122.35722275096209,47.61498175675991],[-122.35715985249777,47.61498028537771],[-122.35710556215528,47.61497852741817],[-122.35704832513599,47.61497997963632],[-122.35693670997476,47.61497667549101],[-122.35685813103811,47.61497635626331],[-122.35677851870955,47.61497536570398],[-122.35669129802433,47.61497421967156],[-122.35659443730094,47.61497277441723],[-122.35654268111429,47.61497098226789],[-122.3564667085155,47.6149731128174],[-122.3563278319573,47.61497360062113],[-122.3561919628242,47.6149729340009],[-122.35607232071551,47.61497247862864],[-122.35596937996007,47.61497111384952],[-122.3558958276475,47.6149693561256],[-122.35581927541929,47.61496900941521],[-122.35573875002723,47.61497145765782],[-122.35567944065093,47.61497139400657],[-122.3556165667911,47.61497077853454],[-122.3555374889845,47.61497072233655],[-122.35544221371435,47.6149714825599],[-122.35539705206442,47.61496985895155],[-122.35534330128711,47.61496920659276],[-122.35529818975579,47.61496929610673],[-122.35522109853791,47.61496784184354]]]],"type":"MultiPolygon"} +},{ + "id": 890536751, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":78578.731804, + "geom:bbox":"-122.326305431,47.5967146374,-122.32246004,47.5991837341", + "geom:latitude":47.597947, + "geom:longitude":-122.324385, + "iso:country":"US", + "lbl:latitude":47.597945, + "lbl:longitude":-122.324384, + "lbl:max_zoom":18.0, + "mps:latitude":47.597945, + "mps:longitude":-122.324384, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0627\u0644\u062d\u064a \u0627\u0644\u0635\u064a\u0646\u064a" + ], + "name:ast_x_preferred":[ + "Barriu chinu" + ], + "name:aze_x_preferred":[ + "\u00c7in q\u0259s\u0259b\u0259si" + ], + "name:cat_x_preferred":[ + "Barri xin\u00e8s" + ], + "name:cdo_x_preferred":[ + "D\u00f2ng-\u00ecng-g\u0103\u0324" + ], + "name:dan_x_preferred":[ + "Chinatown" + ], + "name:deu_x_preferred":[ + "Chinatown" + ], + "name:est_x_preferred":[ + "Hiinalinn" + ], + "name:eus_x_preferred":[ + "Chinatown" + ], + "name:fas_x_preferred":[ + "\u0645\u062d\u0644\u0647 \u0686\u06cc\u0646\u06cc\u200c\u0647\u0627" + ], + "name:fin_x_preferred":[ + "Chinatown" + ], + "name:fra_x_preferred":[ + "Quartier chinois" + ], + "name:fry_x_preferred":[ + "Chinatown" + ], + "name:heb_x_preferred":[ + "\u05e6'\u05d9\u05d9\u05e0\u05d8\u05d0\u05d5\u05df" + ], + "name:hun_x_preferred":[ + "K\u00ednai negyed" + ], + "name:ind_x_preferred":[ + "Pecinan" + ], + "name:isl_x_preferred":[ + "K\u00ednahverfi" + ], + "name:ita_x_preferred":[ + "Chinatown" + ], + "name:jpn_x_preferred":[ + "\u4e2d\u83ef\u8857" + ], + "name:kaz_x_preferred":[ + "\u0427\u0430\u0439\u043d\u0430\u0442\u0430\u0443\u043d" + ], + "name:kor_x_preferred":[ + "\ucc28\uc774\ub098\ud0c0\uc6b4" + ], + "name:lit_x_preferred":[ + "Kin\u0173 kvartalas" + ], + "name:msa_x_preferred":[ + "Pekan Cina" + ], + "name:nld_x_preferred":[ + "Chinatown" + ], + "name:nno_x_preferred":[ + "Chinatown" + ], + "name:nor_x_preferred":[ + "Chinatown" + ], + "name:pol_x_preferred":[ + "Chinatown" + ], + "name:por_x_preferred":[ + "Chinatown" + ], + "name:ron_x_preferred":[ + "Chinatown" + ], + "name:rus_x_preferred":[ + "\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:sah_x_preferred":[ + "\u0427\u0430\u0439\u043d\u0430\u0442\u0430\u0443\u043d" + ], + "name:sco_x_preferred":[ + "Chinatown" + ], + "name:spa_x_preferred":[ + "Barrio chino" + ], + "name:swe_x_preferred":[ + "Chinatown" + ], + "name:tam_x_preferred":[ + "\u0b9a\u0bc0\u0ba9 \u0ba8\u0b95\u0bb0\u0bcd" + ], + "name:tgl_x_preferred":[ + "China Town" + ], + "name:tur_x_preferred":[ + "\u00c7in mahallesi" + ], + "name:ukr_x_preferred":[ + "\u041a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:zho_x_preferred":[ + "\u5510\u4eba\u8857" + ], + "reversegeo:latitude":47.597945, + "reversegeo:longitude":-122.324384, + "src:geom":"mz", + "wof:belongsto":[ + 85866041, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4855e1a61fe1a4c9a3e36aaeb0cec55c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890536751, + "neighbourhood_id":85866041, + "region_id":85688623 + } + ], + "wof:id":890536751, + "wof:lastmodified":1566631088, + "wof:name":"Chinatown", + "wof:parent_id":85866041, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85894383 + ], + "wof:tags":[] +}, + "bbox": [ + -122.32630543127316, + 47.59671463737196, + -122.32246003979394, + 47.59918373409383 +], + "geometry": {"coordinates":[[[[-122.32248108830672,47.59671463737196],[-122.32630276395443,47.59671791650037],[-122.32630543127316,47.59916543409195],[-122.32246003979394,47.59918373409383],[-122.32248108830672,47.59671463737196]]]],"type":"MultiPolygon"} +},{ + "id": 890536753, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000033, + "geom:area_square_m":278572.673668, + "geom:bbox":"-122.314481756,47.656850174,-122.311860456,47.6712616735", + "geom:latitude":47.664013, + "geom:longitude":-122.31316, + "iso:country":"US", + "lbl:latitude":47.663988, + "lbl:longitude":-122.313142, + "lbl:max_zoom":18.0, + "mps:latitude":47.663988, + "mps:longitude":-122.313142, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0630\u064a \u0622\u0641" + ], + "name:eng_x_preferred":[ + "The Ave" + ], + "name:fra_x_preferred":[ + "The Ave" + ], + "reversegeo:latitude":47.663988, + "reversegeo:longitude":-122.313142, + "src:geom":"mz", + "wof:belongsto":[ + 85853121, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7715010" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6f0b7e0f137cde31a868a32432e1f4be", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536753, + "neighbourhood_id":85853121, + "region_id":85688623 + } + ], + "wof:id":890536753, + "wof:lastmodified":1566631086, + "wof:name":"The Ave", + "wof:parent_id":85853121, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783241 + ], + "wof:tags":[] +}, + "bbox": [ + -122.314481755881, + 47.6568501740319, + -122.311860455974, + 47.6712616735057 +], + "geometry": {"coordinates":[[[-122.313033921224,47.670984942952],[-122.311860455974,47.6706627702009],[-122.31192684167701,47.6612436713539],[-122.311962658231,47.6582708973507],[-122.31260138678201,47.6582768667764],[-122.31260138678201,47.6568501740319],[-122.314481755881,47.6568919600119],[-122.314204737219,47.6712616735057],[-122.313806268406,47.6711638059513],[-122.313033921224,47.670984942952]]],"type":"Polygon"} +},{ + "id": 890536755, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":89247.505831, + "geom:bbox":"-122.319670424,47.5974814435,-122.312751019,47.5992080065", + "geom:latitude":47.598309, + "geom:longitude":-122.316519, + "iso:country":"US", + "lbl:latitude":47.598337, + "lbl:longitude":-122.316516, + "lbl:max_zoom":18.0, + "mps:latitude":47.598337, + "mps:longitude":-122.316516, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:fra_x_preferred":[ + "Little Saigon" + ], + "name:ind_x_preferred":[ + "Little Saigon" + ], + "name:vie_x_preferred":[ + "Little Saigon" + ], + "name:zho_x_preferred":[ + "\u5c0f\u897f\u8ca2" + ], + "reversegeo:latitude":47.598337, + "reversegeo:longitude":-122.316516, + "src:geom":"mz", + "wof:belongsto":[ + 85866041, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"847122f78b7cae2f6bb05ead1c28f7e0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890536755, + "neighbourhood_id":85866041, + "region_id":85688623 + } + ], + "wof:id":890536755, + "wof:lastmodified":1566631085, + "wof:name":"Little Saigon", + "wof:parent_id":85866041, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783245 + ], + "wof:tags":[] +}, + "bbox": [ + -122.31967042444217, + 47.59748144353966, + -122.31275101911191, + 47.59920800652936 +], + "geometry": {"coordinates":[[[[-122.31275101911191,47.59748144353966],[-122.31967042444217,47.59748644496506],[-122.31966468931975,47.59918172421866],[-122.31886182458084,47.59918663863539],[-122.31763368048729,47.59919362910927],[-122.31722720932827,47.59919139135505],[-122.31718514319839,47.59919116860005],[-122.31665855493887,47.59918826748308],[-122.31533682728077,47.59920099495621],[-122.3145758544982,47.59920640720475],[-122.3141370613602,47.59920800652936],[-122.31411062496355,47.59918718574717],[-122.3140846856268,47.59916601593704],[-122.31405924403886,47.59914453955837],[-122.31403480872669,47.59912279316272],[-122.31401036611857,47.59910078959184],[-122.31398692753017,47.59907847321516],[-122.31396399017208,47.59905593621522],[-122.31394155004251,47.59903309265528],[-122.31391961113269,47.59901002812179],[-122.31389816998944,47.59898665772387],[-122.31387723023543,47.59896310881884],[-122.31385729676248,47.59893929025107],[-122.31383786346984,47.59891525072454],[-122.31381893088569,47.59889099058363],[-122.31380049848094,47.59886650948446],[-122.31378256800126,47.59884185057457],[-122.31376564448773,47.59881696446289],[-122.31374922116156,47.59879185774467],[-122.31373235615011,47.59876902723374],[-122.31287221879541,47.59763886078336],[-122.31283756859563,47.59759642466714],[-122.31275101911191,47.59748144353966]]]],"type":"MultiPolygon"} +},{ + "id": 890536757, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":95124.91392, + "geom:bbox":"-122.327740971,47.5991654341,-122.321726533,47.6017140186", + "geom:latitude":47.600285, + "geom:longitude":-122.325393, + "iso:country":"US", + "lbl:latitude":47.600437, + "lbl:longitude":-122.325395, + "lbl:max_zoom":18.0, + "mps:latitude":47.600437, + "mps:longitude":-122.325395, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Japantown" + ], + "name:ind_x_preferred":[ + "Japantown" + ], + "name:jpn_x_preferred":[ + "\u65e5\u672c\u4eba\u8857" + ], + "name:kor_x_preferred":[ + "\uc800\ud32c\ud0c0\uc6b4" + ], + "name:zho_x_preferred":[ + "\u65e5\u672c\u8857" + ], + "reversegeo:latitude":47.600437, + "reversegeo:longitude":-122.325395, + "src:geom":"mz", + "wof:belongsto":[ + 85866041, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6e358da60fbb9f244b0229c8982002c0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890536757, + "neighbourhood_id":85866041, + "region_id":85688623 + } + ], + "wof:id":890536757, + "wof:lastmodified":1566631089, + "wof:name":"Japantown", + "wof:parent_id":85866041, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783247 + ], + "wof:tags":[] +}, + "bbox": [ + -122.32774097137765, + 47.59916543409194, + -122.32172653320877, + 47.60171401860287 +], + "geometry": {"coordinates":[[[[-122.32774097137765,47.59916672866909],[-122.32773759648377,47.60171198554303],[-122.32720340194339,47.60171401860287],[-122.32631545106284,47.6017107647772],[-122.3254081653117,47.60170480167609],[-122.32496738244964,47.60170848249626],[-122.32389334656379,47.60094083087117],[-122.32325897957698,47.60048398499494],[-122.32257749241644,47.59999159286038],[-122.32228316935563,47.59974707965715],[-122.32172653320877,47.59918985382637],[-122.32246003979394,47.59918373409383],[-122.32630543127316,47.59916543409194],[-122.32774097137765,47.59916672866909]]]],"type":"MultiPolygon"} +},{ + "id": 890536759, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":202452.315977, + "geom:bbox":"-122.279985938,47.6901062104,-122.267298962,47.6929361194", + "geom:latitude":47.691198, + "geom:longitude":-122.274175, + "iso:country":"US", + "lbl:latitude":47.691263, + "lbl:longitude":-122.274177, + "lbl:max_zoom":18.0, + "mps:latitude":47.691263, + "mps:longitude":-122.274177, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:afr_x_preferred":[ + "Inverness" + ], + "name:ara_x_preferred":[ + "\u0625\u0646\u0641\u0631\u0646\u064a\u0633" + ], + "name:ast_x_preferred":[ + "Inverness" + ], + "name:azb_x_preferred":[ + "\u0627\u06cc\u0646\u0648\u0631\u0646\u0633" + ], + "name:aze_x_preferred":[ + "\u0130nverness" + ], + "name:bre_x_preferred":[ + "Inbhir Nis" + ], + "name:bul_x_preferred":[ + "\u0418\u043d\u0432\u044a\u0440\u043d\u0435\u0441" + ], + "name:cat_x_preferred":[ + "Inverness" + ], + "name:ceb_x_preferred":[ + "Inverness" + ], + "name:ces_x_preferred":[ + "Inverness" + ], + "name:cym_x_preferred":[ + "Inverness" + ], + "name:dan_x_preferred":[ + "Inverness" + ], + "name:deu_x_preferred":[ + "Inverness" + ], + "name:ell_x_preferred":[ + "\u0399\u03bd\u03b2\u03b5\u03c1\u03bd\u03ad\u03c2" + ], + "name:epo_x_preferred":[ + "Inverness" + ], + "name:est_x_preferred":[ + "Inverness" + ], + "name:eus_x_preferred":[ + "Inverness" + ], + "name:fas_x_preferred":[ + "\u0627\u06cc\u0646\u0648\u0631\u0646\u0633" + ], + "name:fin_x_preferred":[ + "Inverness" + ], + "name:fra_x_preferred":[ + "Inverness" + ], + "name:gla_x_preferred":[ + "Inbhir Nis" + ], + "name:gle_x_preferred":[ + "Inbhir Nis" + ], + "name:glg_x_preferred":[ + "Inverness" + ], + "name:glv_x_preferred":[ + "Inbhir Nis" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d9\u05e0\u05d5\u05d5\u05e8\u05e0\u05e1" + ], + "name:hun_x_preferred":[ + "Inverness" + ], + "name:hye_x_preferred":[ + "\u053b\u0576\u057e\u0565\u0580\u0576\u0565\u057d" + ], + "name:ind_x_preferred":[ + "Inverness" + ], + "name:isl_x_preferred":[ + "Inverness" + ], + "name:ita_x_preferred":[ + "Inverness" + ], + "name:jpn_x_preferred":[ + "\u30a4\u30f3\u30f4\u30a1\u30cd\u30b9" + ], + "name:kaz_x_preferred":[ + "\u0418\u043d\u0432\u0435\u0440\u043d\u0435\u0441\u0441" + ], + "name:kor_x_preferred":[ + "\uc778\ubc84\ub124\uc2a4" + ], + "name:lav_x_preferred":[ + "Invernesa" + ], + "name:lit_x_preferred":[ + "Invernesas" + ], + "name:lmo_x_preferred":[ + "Inverness" + ], + "name:nld_x_preferred":[ + "Inverness" + ], + "name:nno_x_preferred":[ + "Inverness" + ], + "name:nor_x_preferred":[ + "Inverness" + ], + "name:oci_x_preferred":[ + "Inverness" + ], + "name:oss_x_preferred":[ + "\u0418\u043d\u0432\u0435\u0440\u043d\u0435\u0441\u0441" + ], + "name:pms_x_preferred":[ + "Inverness" + ], + "name:pnb_x_preferred":[ + "\u0627\u0646\u0648\u0631\u0646\u0633" + ], + "name:pol_x_preferred":[ + "Inverness" + ], + "name:por_x_preferred":[ + "Inverness" + ], + "name:que_x_preferred":[ + "Inverness" + ], + "name:ron_x_preferred":[ + "Inverness" + ], + "name:rus_x_preferred":[ + "\u0418\u043d\u0432\u0435\u0440\u043d\u0435\u0441\u0441" + ], + "name:scn_x_preferred":[ + "Inverness" + ], + "name:sco_x_preferred":[ + "Innerness" + ], + "name:slk_x_preferred":[ + "Inverness" + ], + "name:spa_x_preferred":[ + "Inverness" + ], + "name:srp_x_preferred":[ + "\u0418\u043d\u0432\u0435\u0440\u043d\u0435\u0441" + ], + "name:swe_x_preferred":[ + "Inverness" + ], + "name:tat_x_preferred":[ + "\u0418\u043d\u0432\u0435\u0440\u043d\u0435\u0441\u0441" + ], + "name:tgl_x_preferred":[ + "Inverness" + ], + "name:tha_x_preferred":[ + "\u0e2d\u0e34\u0e19\u0e40\u0e27\u0e2d\u0e23\u0e4c\u0e40\u0e19\u0e2a\u0e2a\u0e4c" + ], + "name:tur_x_preferred":[ + "Inverness" + ], + "name:ukr_x_preferred":[ + "\u0406\u043d\u0432\u0435\u0440\u043d\u0435\u0441\u0441" + ], + "name:urd_x_preferred":[ + "\u0627\u06cc\u0646\u0648\u0631\u0646\u0633" + ], + "name:vec_x_preferred":[ + "Inverness" + ], + "name:vie_x_preferred":[ + "Inverness" + ], + "name:vol_x_preferred":[ + "Iverness" + ], + "name:war_x_preferred":[ + "Inverness" + ], + "name:wuu_x_preferred":[ + "\u56e0\u5f17\u5c3c\u65af" + ], + "name:zea_x_preferred":[ + "Inverness" + ], + "name:zho_x_preferred":[ + "\u5370\u5a01\u5167\u65af" + ], + "reversegeo:latitude":47.691263, + "reversegeo:longitude":-122.274177, + "src:geom":"mz", + "wof:belongsto":[ + 85853783, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1cbd62b07ee5ad32788085f1f5c43221", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536759, + "neighbourhood_id":85853783, + "region_id":85688623 + } + ], + "wof:id":890536759, + "wof:lastmodified":1566631089, + "wof:name":"Inverness", + "wof:parent_id":85853783, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783299 + ], + "wof:tags":[] +}, + "bbox": [ + -122.27998593826543, + 47.6901062104303, + -122.26729896229267, + 47.69293611942047 +], + "geometry": {"coordinates":[[[[-122.26729896229267,47.6901062104303],[-122.26946549772232,47.6901109731394],[-122.27995353357532,47.69013760467237],[-122.27995934395311,47.69043141357676],[-122.27998593826543,47.69293611942047],[-122.2791881955264,47.69225325370786],[-122.2788779089687,47.69182948589493],[-122.27886448363037,47.69180309324346],[-122.27884853997574,47.69177741833053],[-122.27882906961494,47.69175268768664],[-122.27880759763067,47.69172901042267],[-122.27878311156903,47.69170648571757],[-122.27875612438388,47.69168527763586],[-122.27872714512577,47.69166546605876],[-122.2786719855326,47.69163519026191],[-122.27863754589957,47.69161981785914],[-122.27860163311421,47.69160622074087],[-122.27856936909387,47.69159604739694],[-122.27853101612187,47.69158599442699],[-122.27849170243847,47.6915778815136],[-122.27842190294193,47.69156878390302],[-122.27838071563107,47.69156630709574],[-122.27834516813519,47.69156585827707],[-122.27830408922327,47.69156727866004],[-122.27826306697033,47.69157075500318],[-122.2782281700884,47.69157543893066],[-122.27818827039171,47.69158275678833],[-122.27814944100456,47.69159207493782],[-122.27811168295263,47.69160339301618],[-122.27807549863863,47.69161653338141],[-122.27804539509607,47.69162929657085],[-122.27772214713276,47.69179786888401],[-122.27726282456564,47.69203864118071],[-122.27686732728428,47.69221977965397],[-122.27682904466326,47.69223050413187],[-122.27679074365827,47.69224058620083],[-122.27675191880543,47.69225007508115],[-122.27671811710327,47.69225765773099],[-122.27667875002533,47.69226591101437],[-122.27664441257885,47.69227247243166],[-122.27660450446955,47.69227953292054],[-122.27656457783419,47.69228590818274],[-122.27652968864217,47.69229089121424],[-122.27645429965489,47.69229990029405],[-122.27641885925757,47.69230330528415],[-122.27637783273065,47.69230665253831],[-122.27633678767644,47.69230931421412],[-122.27630130035075,47.6923110487869],[-122.27626021961476,47.69231242598056],[-122.276189171729,47.69231323984295],[-122.27614804102268,47.69231281784751],[-122.27611247994994,47.69231189714367],[-122.27607131356584,47.69231019031508],[-122.27603012763693,47.69230779827201],[-122.2759889232139,47.69230472135209],[-122.27594820812246,47.69230099524381],[-122.27591307626352,47.69229724126865],[-122.27587232669731,47.69229227313121],[-122.27583206528811,47.69228661335362],[-122.27579739713988,47.69228126813624],[-122.27575760895817,47.69227435990451],[-122.27571780414006,47.69226685205953],[-122.27568359853406,47.69225987314882],[-122.27564426642161,47.69225111650651],[-122.27557832321077,47.69223464252227],[-122.2755450773048,47.69222568072166],[-122.27551232721197,47.69221628410136],[-122.27547494933333,47.69220476088406],[-122.27544114040889,47.69219379230456],[-122.27535583808128,47.69213827577684],[-122.27504087952505,47.69222182040129],[-122.27445882829872,47.6923760482895],[-122.27383603803506,47.69243426223895],[-122.27379498986636,47.6924368377499],[-122.27375450519639,47.69244141964568],[-122.27371963158733,47.69244695860657],[-122.2736802638897,47.69245521085428],[-122.27364196447168,47.69246537712117],[-122.27360975718808,47.6924755527249],[-122.27354399333312,47.69250217526121],[-122.27351095277514,47.69251891610362],[-122.27345456353454,47.69255407436986],[-122.27342722488963,47.6925750702603],[-122.27340295696051,47.69259696970104],[-122.27338076559275,47.6926205142226],[-122.27335651542913,47.69264305605655],[-122.27333020700749,47.69266459589666],[-122.27330581962124,47.69268216970182],[-122.27327640479638,47.69270152081287],[-122.27321638876496,47.69273406898061],[-122.27318229983021,47.69274962299925],[-122.2731516718282,47.69276183485767],[-122.27311496944053,47.69277468008608],[-122.27307720772671,47.69278595369911],[-122.27300456970016,47.69280268043465],[-122.2729646505239,47.69280935406009],[-122.27292366846561,47.69281432730527],[-122.27288264064366,47.69281763049122],[-122.27284156482699,47.69281922047677],[-122.27237272299622,47.6927357703733],[-122.27234887743361,47.69271794871722],[-122.27231791470308,47.6926997459154],[-122.27228810751087,47.69268662672116],[-122.27225071221633,47.69267446004346],[-122.27221189281859,47.6926658673718],[-122.27217674556221,47.69266155544875],[-122.27213558496729,47.69266006156708],[-122.2721001001523,47.69266188043223],[-122.27205964599656,47.69266757531869],[-122.27202081706071,47.69267697663601],[-122.27198462690284,47.69268998665643],[-122.27192910255695,47.69271977776797],[-122.27190227565816,47.69274093844884],[-122.27188876718992,47.69276642905903],[-122.27187126073531,47.69281253527664],[-122.27120538176359,47.69261644773089],[-122.27064833650955,47.69235394824123],[-122.2702430084646,47.69212547837714],[-122.26977294866791,47.6918139792329],[-122.26923103378951,47.69145548517291],[-122.26881625467136,47.69121517645801],[-122.26844380849265,47.69090844055849],[-122.26827884535012,47.69070688417174],[-122.26806707914604,47.69042807148318],[-122.26800267284287,47.69033839748447],[-122.26752409869844,47.69034262172028],[-122.26729896229267,47.6901062104303]]]],"type":"MultiPolygon"} +},{ + "id": 890536763, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":173848.429253, + "geom:bbox":"-122.329880985,47.6134436762,-122.312760546,47.615354504", + "geom:latitude":47.614673, + "geom:longitude":-122.321303, + "iso:country":"US", + "lbl:latitude":47.614696, + "lbl:longitude":-122.321309, + "lbl:max_zoom":18.0, + "mps:latitude":47.614696, + "mps:longitude":-122.321309, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":47.614696, + "reversegeo:longitude":-122.321309, + "src:geom":"mz", + "wof:belongsto":[ + 85882415, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a63240b4e96ed8a04ec05d0cebda03c5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536763, + "neighbourhood_id":85882415, + "region_id":85688623 + } + ], + "wof:id":890536763, + "wof:lastmodified":1566631085, + "wof:name":"Pike/Pine", + "wof:parent_id":85882415, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783301 + ], + "wof:tags":[] +}, + "bbox": [ + -122.32988098462414, + 47.61344367615079, + -122.31276054577522, + 47.61535450398699 +], + "geometry": {"coordinates":[[[[-122.32896675157174,47.61344367615079],[-122.32946546193169,47.613981348214],[-122.32988098462414,47.61442933358047],[-122.32982239310326,47.6145606088912],[-122.32802708434079,47.61529783097547],[-122.31276069729883,47.61535450398699],[-122.31276054577522,47.6150845950237],[-122.312762325012,47.61454105685885],[-122.31276311931408,47.61449768877453],[-122.31336893558462,47.61425108602596],[-122.3136966284827,47.61411383470124],[-122.31944951684386,47.61408932243653],[-122.32083192911786,47.61407610179049],[-122.32259219860522,47.6140530785371],[-122.3232853610579,47.6140440049172],[-122.3235825420994,47.6141021513662],[-122.32432688216186,47.61409240118454],[-122.32634565317507,47.61408662617141],[-122.32690645668649,47.6140930624744],[-122.3274062588716,47.61409339954918],[-122.32875666531443,47.61353094458827],[-122.32896675157174,47.61344367615079]]]],"type":"MultiPolygon"} +},{ + "id": 890536765, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":402149.710927, + "geom:bbox":"-122.347667103,47.6128853468,-122.330606246,47.6185706901", + "geom:latitude":47.616654, + "geom:longitude":-122.338696, + "iso:country":"US", + "lbl:latitude":47.616096, + "lbl:longitude":-122.337856, + "lbl:max_zoom":18.0, + "mps:latitude":47.616096, + "mps:longitude":-122.337856, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":47.616096, + "reversegeo:longitude":-122.337856, + "src:geom":"mz", + "wof:belongsto":[ + 85805569, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"62aa1435443ca07c57664cd2d129b1c8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890536765, + "neighbourhood_id":85805569, + "region_id":85688623 + } + ], + "wof:id":890536765, + "wof:lastmodified":1566631086, + "wof:name":"Denny Triangle", + "wof:parent_id":85805569, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783303 + ], + "wof:tags":[] +}, + "bbox": [ + -122.34766710284609, + 47.6128853467793, + -122.3306062462192, + 47.61857069006798 +], + "geometry": {"coordinates":[[[[-122.33784826557635,47.6128853467793],[-122.34766710284609,47.61857069006798],[-122.34693264638751,47.61857043476453],[-122.34542574154436,47.61856030447601],[-122.34388447615039,47.61855395198598],[-122.34256567090871,47.61854467150086],[-122.34201936647905,47.61855054411171],[-122.34153505751981,47.61854411027589],[-122.34012366597236,47.61854108395138],[-122.33670585302139,47.61852120472014],[-122.33372255597206,47.61853889628769],[-122.33243855099391,47.61852325558071],[-122.3306062462192,47.61848964206088],[-122.33784826557635,47.6128853467793]]]],"type":"MultiPolygon"} +},{ + "id": 890536767, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":144572.714041, + "geom:bbox":"-122.350357286,47.6185528092,-122.343642262,47.6237786953", + "geom:latitude":47.620303, + "geom:longitude":-122.345911, + "iso:country":"US", + "lbl:latitude":47.620336, + "lbl:longitude":-122.345405, + "lbl:max_zoom":18.0, + "mps:latitude":47.620336, + "mps:longitude":-122.345405, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.620336, + "reversegeo:longitude":-122.345405, + "src:geom":"mz", + "wof:belongsto":[ + 85869671, + 102191575, + 890536793, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a8239c0ad0edf0d2b4eceaf489979220", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536793, + "microhood_id":890536767, + "neighbourhood_id":85869671, + "region_id":85688623 + } + ], + "wof:id":890536767, + "wof:lastmodified":1566631088, + "wof:name":"Uptown Triangle", + "wof:parent_id":85869671, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783307 + ], + "wof:tags":[] +}, + "bbox": [ + -122.3503572861107, + 47.61855280917197, + -122.34364226249599, + 47.62377869530984 +], + "geometry": {"coordinates":[[[[-122.34364226249599,47.62377869530984],[-122.34372207631867,47.61855280917197],[-122.34388447615039,47.61855395198598],[-122.34542574154436,47.61856030447601],[-122.34693264638751,47.61857043476453],[-122.34840429365858,47.61857094632191],[-122.34987664340531,47.61857815599873],[-122.35035728611069,47.61858049046027],[-122.34980511092735,47.61901106331322],[-122.34910268613778,47.61955708600251],[-122.3479276405436,47.62046435778007],[-122.34763428383032,47.6206791827023],[-122.34626045345644,47.62177806666197],[-122.34443244644076,47.62314328403111],[-122.34364226249599,47.62377869530984]]]],"type":"MultiPolygon"} +},{ + "id": 890536803, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000427, + "geom:area_square_m":3562280.237635, + "geom:bbox":"-122.313985669,47.5098541629,-122.278485279,47.5488815738", + "geom:latitude":47.527119, + "geom:longitude":-122.289836, + "iso:country":"US", + "lbl:latitude":47.524764, + "lbl:longitude":-122.285406, + "lbl:max_zoom":18.0, + "mps:latitude":47.524764, + "mps:longitude":-122.285406, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "S Beacon Hill", + "S Beacon Hl", + "South Beacon Hl" + ], + "reversegeo:latitude":47.524764, + "reversegeo:longitude":-122.285406, + "src:geom":"seagv", + "wof:belongsto":[ + 85805013, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dab12b61ca0422e483f4050e3f3389d0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536803, + "neighbourhood_id":85805013, + "region_id":85688623 + } + ], + "wof:id":890536803, + "wof:lastmodified":1566631087, + "wof:name":"South Beacon Hill", + "wof:parent_id":85805013, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869663 + ], + "wof:tags":[] +}, + "bbox": [ + -122.3139856689014, + 47.50985416291564, + -122.27848527913814, + 47.54888157377989 +], + "geometry": {"coordinates":[[[[-122.3139856689014,47.54745020987705],[-122.31298375408149,47.54794687866195],[-122.31112198033092,47.54888157377989],[-122.31060690290138,47.54855250386669],[-122.30991584347019,47.54805134444226],[-122.3087155947278,47.54742766140452],[-122.3079009950123,47.54696039765147],[-122.30750666201145,47.5466749478593],[-122.30692077315888,47.54618534537477],[-122.30631641888664,47.54563308458287],[-122.30614702484156,47.54547864360772],[-122.30558836402312,47.5449305430344],[-122.30489959035312,47.54427388804336],[-122.30363807292588,47.54307028692713],[-122.3033911870718,47.54271633613309],[-122.30333262026969,47.54263200652712],[-122.30289704804035,47.54199507128617],[-122.30230761510578,47.54137631859012],[-122.30139783454834,47.5405615797171],[-122.30024125394522,47.53962731589024],[-122.2998029196134,47.53930363506382],[-122.29977009250482,47.53928824940093],[-122.2997367681656,47.53927316987781],[-122.29970345176952,47.53925839032602],[-122.29966963815208,47.53924391726431],[-122.29963532798962,47.53922979315136],[-122.29960102559089,47.53921592584157],[-122.29956622613818,47.53920240783753],[-122.29953143686707,47.53918923259394],[-122.29949614864051,47.53917632069122],[-122.29946087128077,47.53916379435871],[-122.29942509548293,47.53915153135975],[-122.29938933055075,47.53913965393073],[-122.29935306786585,47.53912808264469],[-122.29931681363679,47.5391168113215],[-122.29928006406266,47.53910593174746],[-122.29924332346127,47.53909535212927],[-122.29920608630952,47.5390851214562],[-122.29916885881542,47.53907523354874],[-122.2991316409782,47.53906568840691],[-122.29909392658885,47.53905649220939],[-122.2990562218551,47.53904763877716],[-122.29901706582616,47.53904116014466],[-122.29897699792842,47.53903824968585],[-122.29893743811328,47.53903541794666],[-122.29889788072016,47.53903267215129],[-122.29885781954081,47.53903001847738],[-122.29881826627576,47.5390274007069],[-122.29877820992967,47.53902491856928],[-122.29873815650318,47.53902252166675],[-122.29869861116789,47.53902020383576],[-122.29865856085165,47.53901793567285],[-122.29861902033812,47.53901578902767],[-122.29857897656511,47.5390137348469],[-122.29853893399888,47.53901172345542],[-122.29849889452839,47.53900984046662],[-122.29845936366593,47.53900803654378],[-122.29841932953339,47.53900632473377],[-122.2983792960987,47.53900465607058],[-122.29833926678521,47.5390031154459],[-122.29829974557066,47.5390016542454],[-122.29758201628887,47.53898357083071],[-122.29700422173219,47.53897387736641],[-122.29410461399355,47.53892503137987],[-122.29286060528753,47.53889303181489],[-122.29142766596847,47.53885611688487],[-122.29133729400729,47.53882814283238],[-122.29068682139474,47.53862668267675],[-122.29018642520396,47.53845229967492],[-122.28900583406285,47.53804465067378],[-122.286859359811,47.53730368757673],[-122.28688439107927,47.53725752496542],[-122.28689279931713,47.53723235403314],[-122.2868991790791,47.53720703777385],[-122.2869050490613,47.5371815992281],[-122.28690939675343,47.53715600888061],[-122.28691222402766,47.53713035234512],[-122.28691403826124,47.53710466595003],[-122.28691483893756,47.53707894970197],[-122.28691412091386,47.53705321006303],[-122.2869118853766,47.5370274894858],[-122.28690863987943,47.5370018678169],[-122.28690438373812,47.53697630189526],[-122.28689810869533,47.53695093307507],[-122.28689031923086,47.53692571243481],[-122.28688102011307,47.53690081083728],[-122.28686970620134,47.53687623474399],[-122.28685688332635,47.53685202085351],[-122.28684255372008,47.53682821195559],[-122.28682621306622,47.53680489978731],[-122.28680837047037,47.5367821641751],[-122.28678852809418,47.53676031051577],[-122.28676568197093,47.53673965243454],[-122.28674084683509,47.53672026223681],[-122.28671352008176,47.53670227445524],[-122.2866847176761,47.53668580560262],[-122.28665791983897,47.53666862530167],[-122.28663357968166,47.53664884303059],[-122.28660724573726,47.53663015742601],[-122.28657993154265,47.53661259799159],[-122.28655012045773,47.53659627046296],[-122.2865193310008,47.53658115506673],[-122.28648756793544,47.5365674226653],[-122.28645432442821,47.53655503762263],[-122.28641960234668,47.53654408555106],[-122.28638441469593,47.53653459561186],[-122.28634774727288,47.53652649583812],[-122.28511294254993,47.53620488750647],[-122.28507726403163,47.53619591761623],[-122.28504157427531,47.53618656248974],[-122.28500688374953,47.53617672322888],[-122.28497167514058,47.53616646238888],[-122.28493746762042,47.53615580267824],[-122.28490274134447,47.5361446785783],[-122.28486901498557,47.53613311350679],[-122.28483527789137,47.53612116249189],[-122.28480203454338,47.5361087769725],[-122.28476928546016,47.53609595694244],[-122.28473652564352,47.53608275096953],[-122.28470426009278,47.53606911048651],[-122.28467249067455,47.53605512110747],[-122.28464070933242,47.53604070298263],[-122.28460992910234,47.53602588669374],[-122.28457913867905,47.5360106851582],[-122.28454884385197,47.5359951340329],[-122.28450259838324,47.53597019030072],[-122.28447328851698,47.53595364139426],[-122.28444498214726,47.5359367799336],[-122.28441666505852,47.53591953288335],[-122.28438884461293,47.53590193658293],[-122.28436152149412,47.53588403419371],[-122.28433469451018,47.53586578291253],[-122.2843083646875,47.53584718237569],[-122.28428303664079,47.53582822613976],[-122.28425770197966,47.53580901307043],[-122.28423286344346,47.53578945075964],[-122.28420852223374,47.5357695823621],[-122.28418620996412,47.53574985932757],[-122.28416386909984,47.53572910865313],[-122.28414202674291,47.53570809434596],[-122.28412018015487,47.53568690881385],[-122.28409933772321,47.53566545319327],[-122.2840784910601,47.53564382634814],[-122.28405864975375,47.53562197256962],[-122.28403880420581,47.53559994721608],[-122.28401996572305,47.5355777377268],[-122.28400112078029,47.53555531422332],[-122.28398277777151,47.53553271303377],[-122.28396544010656,47.5355098845617],[-122.28394809940018,47.53548692766976],[-122.28393176642912,47.53546382945383],[-122.28391542802318,47.53544051686043],[-122.28389959170421,47.53541706939885],[-122.28388476244483,47.53539343780399],[-122.28386992962439,47.53536967779657],[-122.28385610556182,47.53534577610246],[-122.28384227742926,47.53532174635354],[-122.28382945805288,47.53529757491842],[-122.28381714074978,47.53527326826553],[-122.28380481989362,47.53524883355156],[-122.28379350847428,47.53522430031303],[-122.28378269964445,47.5351996318506],[-122.28377239408655,47.53517487132539],[-122.28376259231803,47.53515001873096],[-122.28375329382015,47.53512507407402],[-122.2837444991103,47.53510003734808],[-122.283736208178,47.53507490820243],[-122.28372892616743,47.535049680891],[-122.28372164348085,47.53502441041809],[-122.28371486406145,47.53499904788325],[-122.28370909577862,47.53497362962245],[-122.2837038319622,47.5349481624543],[-122.2836990714006,47.53492260287366],[-122.28369481699382,47.53489703648101],[-122.28345850939562,47.53388025101712],[-122.28345021879529,47.53385512185061],[-122.28344192769464,47.53382999304098],[-122.28343414156028,47.53380481496743],[-122.28342686038165,47.53377958727919],[-122.28341957801901,47.53375431678698],[-122.28340777729061,47.53371218108206],[-122.28340099938571,47.53368686133206],[-122.28339422029632,47.53366149877812],[-122.28338794737104,47.53363613011504],[-122.28338217939852,47.53361071183767],[-122.28337590476632,47.53358530002618],[-122.2833706412432,47.53355983249178],[-122.28336537772519,47.53353436495718],[-122.28336011302129,47.53350885461874],[-122.28335535446881,47.53348333782065],[-122.28335059540291,47.53345782102897],[-122.28334583566873,47.53343226142696],[-122.28334208600307,47.53340664611569],[-122.2833378319049,47.53338108006058],[-122.28333408276492,47.53335546474243],[-122.28333083925531,47.53332984297145],[-122.2833275945579,47.53330417839683],[-122.28332435157273,47.53327855661907],[-122.28332161249789,47.53325288524076],[-122.28331887395356,47.5332272142066],[-122.28331664103739,47.53320153671977],[-122.28331491307567,47.53317580997007],[-122.28331268068172,47.53315013247654],[-122.2833114583386,47.53312439892333],[-122.28330973038202,47.53309867217357],[-122.28330850924233,47.53307298177472],[-122.28330779305485,47.53304724211311],[-122.28330707685834,47.53302150210062],[-122.28330686681382,47.53299575597977],[-122.2833066574424,47.53297005266909],[-122.28330644739826,47.53294430654824],[-122.28330674296728,47.53291855362394],[-122.28330754587728,47.53289283739481],[-122.28330834878648,47.53286712116568],[-122.28330914998583,47.53284136213961],[-122.28331047877147,47.53281636746885],[-122.28327487760203,47.53153683184921],[-122.28136891108481,47.53153436219077],[-122.28064831180176,47.53153647497745],[-122.28063107944894,47.52942173074354],[-122.28050885591115,47.52884730097085],[-122.28008525210619,47.52795272802854],[-122.27960506007904,47.52691492045609],[-122.2790454545683,47.52591406732615],[-122.27903247882884,47.52588411336503],[-122.27902000681213,47.52585406770602],[-122.27900753531806,47.52582402168819],[-122.27899506095558,47.52579389041929],[-122.27898359584893,47.52576366031768],[-122.27897213075559,47.52573343021489],[-122.27896066330105,47.52570311450382],[-122.2789497019308,47.52567279235178],[-122.27893924375151,47.52564237815833],[-122.27892878491521,47.52561192115378],[-122.27891882992832,47.52558141456733],[-122.27890938036333,47.52555085908105],[-122.27889993029146,47.52552030360059],[-122.27889098391572,47.52548965572181],[-122.2788820363731,47.52545896538957],[-122.27887359489985,47.5254282682663],[-122.27886515173141,47.52539752834545],[-122.27885771953147,47.52536673309243],[-122.27885028614347,47.52533589468448],[-122.27884285224627,47.52530505628267],[-122.27883592375579,47.52527416863087],[-122.27882949963522,47.52524323174242],[-122.2788230750043,47.52521229486018],[-122.27881715577806,47.52518130872819],[-122.27881174211649,47.52515031651414],[-122.27880632725481,47.52511928079458],[-122.27880141676953,47.52508819618944],[-122.27879650680805,47.52505711157753],[-122.27879210239917,47.52502602053288],[-122.27878820354194,47.52499492305557],[-122.27878430402023,47.52496378276795],[-122.27878091004902,47.52493263604777],[-122.27877802094854,47.52490143973398],[-122.27877513186121,47.52487024377098],[-122.27877224344645,47.52483909061807],[-122.27877036597324,47.52480788178352],[-122.27876848730547,47.52477662979448],[-122.27876711589869,47.52474541452086],[-122.27876574397558,47.52471419925383],[-122.2787648781155,47.5246829775478],[-122.27876401105965,47.52465171268734],[-122.27876415680514,47.52462047810995],[-122.278763797008,47.52458924996492],[-122.2787644482859,47.5245580086043],[-122.27876510009071,47.5245267675879],[-122.27876575189472,47.52449552657152],[-122.27913043376134,47.52321312521167],[-122.27988748797654,47.52082760803428],[-122.27989472613835,47.52079671131526],[-122.27990095158501,47.52076578502453],[-122.27990768251946,47.52073485194515],[-122.27991340073079,47.52070388894342],[-122.27991962377942,47.52067287704457],[-122.27992534130688,47.52064187123207],[-122.27993008719289,47.52061233433074],[-122.27993576259276,47.52057982969766],[-122.27994097289141,47.52054878752504],[-122.27994567597513,47.52051770899283],[-122.27995037905328,47.52048663046043],[-122.27995457544533,47.52045551591284],[-122.27995877182268,47.52042440101421],[-122.27996246097774,47.52039324940537],[-122.27996615133584,47.52036214130167],[-122.27996983929417,47.52033094688902],[-122.27997302242707,47.52029980207504],[-122.27997569886784,47.52026862089517],[-122.27997837530539,47.52023743971525],[-122.27998105173974,47.52020625853527],[-122.27998322096548,47.5201750409961],[-122.27998539070659,47.52014382345027],[-122.27998705441847,47.52011261199799],[-122.27998871762018,47.52008140090316],[-122.27999038014991,47.52005014699812],[-122.27999153784965,47.52001894234107],[-122.27999218886232,47.51998770131832],[-122.27999283986452,47.51995645994472],[-122.27999349087564,47.51992521892196],[-122.27999363587129,47.51989398434367],[-122.27999378086676,47.51986274976538],[-122.27999341865025,47.51983147847712],[-122.2799930581498,47.51980025033672],[-122.27999219163625,47.51976902864077],[-122.27999132511403,47.51973780659396],[-122.27999045741464,47.5197065420944],[-122.27998908489164,47.51967532684288],[-122.2799872068759,47.51964411802918],[-122.27998532885267,47.51961290886461],[-122.2799834496535,47.51958165724728],[-122.27998106682107,47.51955049768148],[-122.27997868332147,47.51951929530545],[-122.2799757932863,47.51948809902952],[-122.27997290378224,47.51945690309776],[-122.27996950945939,47.51942575641386],[-122.2799661151406,47.51939460972986],[-122.27996272133406,47.51936346268833],[-122.27995882101409,47.51933232244845],[-122.27995492121671,47.51930118220186],[-122.27995051660325,47.51927009120295],[-122.27994611199503,47.51923900020387],[-122.27994120190193,47.51920791564229],[-122.27993629248465,47.51917687389064],[-122.27993087758369,47.51914583857638],[-122.27992546268916,47.51911480326186],[-122.27991954298209,47.5190838171948],[-122.27991362379998,47.51905283112085],[-122.27990770529486,47.51902188785674],[-122.27990128012085,47.51899090822619],[-122.27989485733018,47.51896001420246],[-122.27988792854178,47.51892912662235],[-122.27988099976157,47.51889823904182],[-122.27987356669055,47.51886740070175],[-122.27986613363808,47.5188365627121],[-122.27985870125457,47.51880576718123],[-122.27985076339388,47.51877497808714],[-122.27984232125445,47.51874423858411],[-122.27983387859732,47.51871349873617],[-122.27982543766559,47.51868280203548],[-122.27981649191915,47.51865215423054],[-122.27980754619297,47.51862150677575],[-122.27979809565326,47.51859090821658],[-122.27978864684005,47.51856035280446],[-122.27977919751025,47.51852979704728],[-122.2797692439057,47.51849929088062],[-122.27975878601757,47.51846883395349],[-122.2797488331064,47.51843837059523],[-122.27973787042978,47.51840796291311],[-122.27972690895366,47.51837759803351],[-122.27971594867797,47.51834727595644],[-122.27970498908482,47.51831699668845],[-122.27969352454107,47.51828672384941],[-122.27968155468155,47.51825650026241],[-122.27966958772909,47.51822636227471],[-122.27965762027256,47.51819622429237],[-122.27964514787742,47.51816609308931],[-122.27963267734431,47.5181360471478],[-122.27961970202551,47.51810605080212],[-122.27960672841739,47.51807609690112],[-122.27959324883713,47.51804614979216],[-122.27957977112955,47.51801628829533],[-122.27956629394561,47.51798642643948],[-122.27955231368387,47.51795665697595],[-122.27921630338587,47.51673235832067],[-122.2787437862556,47.51312054999165],[-122.27855060045607,47.51067768081303],[-122.27851168400507,47.51018624869298],[-122.27848527913814,47.50985416291564],[-122.27860271604038,47.50985686717216],[-122.27897375188662,47.50986529785381],[-122.28075907820765,47.5099057949841],[-122.28245520324413,47.50994011856936],[-122.28390143243431,47.50999269025844],[-122.28446098591976,47.5100130045643],[-122.2848835329693,47.5100000215653],[-122.28532290841414,47.51001004259064],[-122.28553905386829,47.51001499089028],[-122.28592578488015,47.51002379800963],[-122.28604929694264,47.51002663096677],[-122.28652360148176,47.51003748616975],[-122.28984424707349,47.51011349555001],[-122.29004976246355,47.51011818588522],[-122.29025527789055,47.51012287584857],[-122.2913380349146,47.51014766841531],[-122.29131571336075,47.51220757021397],[-122.29130444954592,47.51330622207072],[-122.29130027817739,47.51369975000866],[-122.29129866916934,47.51384119700313],[-122.29128555456586,47.51501840478659],[-122.29126501871724,47.51688904415554],[-122.2912636782966,47.51698584487384],[-122.29126579323611,47.51830963868382],[-122.29126688795542,47.51914473021381],[-122.29126766172747,47.51966081303807],[-122.29126865181141,47.52018464750537],[-122.29126879958321,47.52064217134946],[-122.29126890235639,47.52091718266502],[-122.29126974612595,47.52139958935042],[-122.2912701394728,47.5218478130974],[-122.29127078369741,47.52228690795258],[-122.29127092217863,47.52232803575639],[-122.2912713447912,47.52275920741282],[-122.29127213423565,47.52327584704199],[-122.29127494806286,47.5242809191766],[-122.29214926882923,47.5242966432882],[-122.29221409961278,47.52444344970561],[-122.29365091648307,47.5277211549335],[-122.29570372201057,47.53240244102682],[-122.29593733539167,47.53322477222518],[-122.29784671148765,47.53302194771209],[-122.29824653503861,47.53385035794256],[-122.30215188210779,47.53737823793603],[-122.30986610940064,47.54383162964239],[-122.31304965064474,47.54655964058528],[-122.3139856689014,47.54745020987705]]]],"type":"MultiPolygon"} +},{ + "id": 890536877, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000125, + "geom:area_square_m":1041582.356184, + "geom:bbox":"-122.392540258,47.7014756141,-122.360770992,47.7111622923", + "geom:latitude":47.705586, + "geom:longitude":-122.375538, + "iso:country":"US", + "lbl:latitude":47.705172, + "lbl:longitude":-122.379268, + "lbl:max_zoom":18.0, + "mps:latitude":47.705172, + "mps:longitude":-122.379268, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Blue Ridge" + ], + "name:eng_x_variant":[ + "Blue Rdg" + ], + "name:fra_x_preferred":[ + "Blue Ridge" + ], + "reversegeo:latitude":47.705172, + "reversegeo:longitude":-122.379268, + "src:geom":"mz", + "wof:belongsto":[ + 85837313, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4929689" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"59c5933e34e6abe23aaca10a7d9c3e19", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890536877, + "neighbourhood_id":85837313, + "region_id":85688623 + } + ], + "wof:id":890536877, + "wof:lastmodified":1566631089, + "wof:name":"Blue Ridge", + "wof:parent_id":85837313, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85806519 + ], + "wof:tags":[] +}, + "bbox": [ + -122.39254025841026, + 47.70147561414143, + -122.36077099220473, + 47.71116229228146 +], + "geometry": {"coordinates":[[[[-122.37677113722633,47.70153723304239],[-122.39254025841026,47.70147561414143],[-122.39246606611373,47.70149955365599],[-122.39239799450233,47.70153227524281],[-122.3923285704935,47.70155379019237],[-122.39228642293233,47.7015705616291],[-122.39221416713013,47.7015992275271],[-122.39217884445316,47.70160656561576],[-122.39211751703677,47.7016271554301],[-122.39207939602737,47.70164275806026],[-122.39198168963719,47.70166932935674],[-122.39192244044055,47.70169151920072],[-122.3918563494472,47.70172258517062],[-122.39182208330644,47.70173127998575],[-122.39177886259274,47.70174613796181],[-122.39172445884735,47.70176059180486],[-122.39168122857265,47.70177515013567],[-122.39163104214187,47.70179477344443],[-122.39160305544816,47.70180968035879],[-122.391543633765,47.70182613100427],[-122.39150039619034,47.70184043209539],[-122.39145098570249,47.70185207568183],[-122.3913668354503,47.70189050085543],[-122.39132560342335,47.70190396053994],[-122.39126943266967,47.70192722162434],[-122.39119510464326,47.70195454389937],[-122.39115292300409,47.70197020170889],[-122.3910998138749,47.7019939775221],[-122.3910584828045,47.70200413958695],[-122.39100211403513,47.7020208051426],[-122.39095467553172,47.70203049362126],[-122.39091046369907,47.70204617908144],[-122.39087343153355,47.70206425136884],[-122.39084136714078,47.70207865680168],[-122.39080029920079,47.70209759813462],[-122.39076323357111,47.7021145568274],[-122.39071392152785,47.70212949761751],[-122.39063763732875,47.70215933119573],[-122.39059431653743,47.70217089120608],[-122.39055905924911,47.70218041310099],[-122.3905219690904,47.70219655812268],[-122.39046350439153,47.70221106682906],[-122.39038349564149,47.70225217654964],[-122.39034618328309,47.70226091252341],[-122.39029798485967,47.70227913679227],[-122.39023167008008,47.70230279317941],[-122.39017227230408,47.70232005669526],[-122.39013433889012,47.70234195410661],[-122.39008817039978,47.7023601509117],[-122.39005096495964,47.70237244111874],[-122.3899956271905,47.7023896490937],[-122.38996152406347,47.70240382519607],[-122.38989431713463,47.70243160636485],[-122.38985090663277,47.70244016817691],[-122.38981165379916,47.70245192925419],[-122.38967028212623,47.70251255626394],[-122.38960192000137,47.70253568322253],[-122.38949469179303,47.70258350474992],[-122.38943939466978,47.70260208282706],[-122.38940534051902,47.70261788594146],[-122.38934943115002,47.70264992579467],[-122.3893184143634,47.70266543015112],[-122.3892631825225,47.70268619245887],[-122.38918261405031,47.70270867149761],[-122.38910025402696,47.70273914431029],[-122.38905817757791,47.70275835568204],[-122.38902602246256,47.70276976269464],[-122.38893585304136,47.70281075277116],[-122.3888458804753,47.70285833818387],[-122.38877773940118,47.70288887364124],[-122.38865556175098,47.70294619549089],[-122.38862140915883,47.70295874365519],[-122.38855140186155,47.70299478851749],[-122.38851833017232,47.70300950676064],[-122.38847726782937,47.70302870442712],[-122.38840806253749,47.70305762597457],[-122.38836697626714,47.70307600965032],[-122.38830291918723,47.70310730302779],[-122.38826172642499,47.70312213197613],[-122.38823165870417,47.70313543822446],[-122.38816086481039,47.7031791628584],[-122.38807758708329,47.70321294595141],[-122.38803325748768,47.70322477599677],[-122.38795598789667,47.70325573518975],[-122.38791097183426,47.70327854235784],[-122.38787817024031,47.70330229694727],[-122.38781638109921,47.70334152814021],[-122.38778235161027,47.70335818751543],[-122.38771636187957,47.70339280577958],[-122.3876300216974,47.70342607364049],[-122.38757592646087,47.70345093275918],[-122.38746112504384,47.70351727857618],[-122.38742518513315,47.70353799104462],[-122.38739345587416,47.70356365880833],[-122.3873556433936,47.70358966676377],[-122.38725716956819,47.703624727951],[-122.38720416330857,47.70365205663771],[-122.38714736708553,47.70368847752978],[-122.38711729927124,47.70370178347675],[-122.38706010013284,47.70372475636169],[-122.38701405284262,47.70374706338384],[-122.38694781615428,47.7037734586125],[-122.38690009807225,47.70380782735882],[-122.38685703819542,47.70382816566192],[-122.38681714644319,47.70385257356837],[-122.38677517456316,47.70387533878714],[-122.38673737050698,47.70390164615274],[-122.38667854354826,47.70393809447614],[-122.3866423340686,47.70394981296478],[-122.38656131351813,47.70399123379763],[-122.38647477561227,47.70405192349084],[-122.38642685206759,47.70407943982096],[-122.38637078305604,47.70410625318016],[-122.38630584800995,47.70414222751428],[-122.38625887405674,47.70416754562715],[-122.38619498722223,47.70420461962958],[-122.38615493098085,47.70422354545923],[-122.38609115026195,47.70426417374373],[-122.38605230489986,47.70428963831289],[-122.38600333382767,47.70431609753344],[-122.3859386683903,47.70436110819429],[-122.3858737416823,47.70439738189755],[-122.38584189592359,47.70441919492119],[-122.38581499547784,47.70443657052157],[-122.38575391513066,47.70446563667328],[-122.38570610602072,47.70449700700715],[-122.38567213141673,47.70451555010294],[-122.38558670523935,47.7045795231754],[-122.38553666866795,47.70460432602815],[-122.385504699772,47.70462202748553],[-122.38546081120241,47.70464867452833],[-122.38541286225774,47.70467537683781],[-122.38537897828456,47.70469696020923],[-122.38535621978167,47.70471702151697],[-122.38532337516301,47.7047394049959],[-122.38524474207108,47.70479283134988],[-122.38520691993625,47.70481858142668],[-122.38513826705187,47.70486613084255],[-122.38509827516518,47.70488724026773],[-122.38505044864748,47.70491805389669],[-122.38499387086173,47.70496188236282],[-122.38492308838644,47.70500616176232],[-122.38488348138834,47.7050401619585],[-122.38484367734191,47.70506756743588],[-122.38473444193905,47.70515050097282],[-122.38466467406796,47.70519476604578],[-122.38458818544434,47.70525201896926],[-122.3845306322178,47.70529723139931],[-122.38449373417545,47.705319927055],[-122.3844328247193,47.70535477431108],[-122.38438804265594,47.70538554587409],[-122.38433653086233,47.70542900533115],[-122.38427077460189,47.70547158772251],[-122.384198927108,47.70551425259269],[-122.38416314180766,47.70554023186651],[-122.38411070536185,47.70558674574583],[-122.38405502608859,47.70562670597736],[-122.3839833086212,47.70567373899812],[-122.38390872548354,47.70572685238184],[-122.38388302676066,47.70575050915911],[-122.38381367542479,47.70580877812003],[-122.38377202026668,47.70584224911256],[-122.38372172715553,47.70589254670645],[-122.38365112256693,47.70594286359136],[-122.38358973615721,47.70599579728323],[-122.38354413478844,47.70603317772694],[-122.38350934781482,47.70605858620326],[-122.38345773695887,47.70609879054223],[-122.38334525501625,47.70617516909633],[-122.3832783259577,47.70621253968157],[-122.38321963273145,47.70625365412642],[-122.38315716573912,47.70630441705963],[-122.38309653153638,47.70634855695576],[-122.38306882566008,47.70637305475036],[-122.38303311383785,47.70640151759653],[-122.38296561841656,47.70645397697578],[-122.38289100935363,47.70650627573973],[-122.38283306920411,47.70653859680134],[-122.38277261460243,47.70658877515393],[-122.38272115775484,47.70663416103343],[-122.38268956354051,47.70666449573883],[-122.38266386327876,47.70668815224722],[-122.38261014732045,47.70672589985153],[-122.38258532339496,47.70674487463501],[-122.38253442350479,47.7067749146548],[-122.38249242311893,47.70679686469933],[-122.38242671214833,47.70684107321241],[-122.38238923073131,47.70687834283089],[-122.38234461730904,47.70691485260276],[-122.38231696112314,47.70694102089916],[-122.38228859068916,47.70697730994063],[-122.38226389806908,47.70700069539384],[-122.38220220629726,47.70704347823096],[-122.38214058901711,47.70708874496327],[-122.38204403530084,47.70715449463486],[-122.38201192445484,47.70716752720583],[-122.38195014340705,47.7072073119851],[-122.3819081010345,47.70722789109536],[-122.38187715388462,47.70724587770329],[-122.38183210691804,47.70726786887926],[-122.38180754420412,47.70729562287311],[-122.38177282907206,47.70732351476089],[-122.38174922398042,47.70734932779823],[-122.38146214478928,47.70759919594827],[-122.3813885719601,47.70765229353457],[-122.38130726154479,47.70771839256295],[-122.38125377149004,47.70776380535327],[-122.38120119055532,47.70780564999065],[-122.3811051415222,47.70788840083983],[-122.38107658263334,47.70791839412561],[-122.38104017971142,47.7079578338365],[-122.38097495609875,47.70801848706324],[-122.38088617572197,47.70810662345915],[-122.38083879291925,47.70815251014383],[-122.38080316797719,47.70818397020373],[-122.38073150711558,47.70826720394194],[-122.38068756249837,47.70832624005117],[-122.38065447419933,47.70837467449071],[-122.38062405364414,47.70841039108934],[-122.38057418114938,47.70847499167522],[-122.38045008589683,47.70867324553601],[-122.38042707787089,47.70871914415308],[-122.38038500465902,47.70877284194888],[-122.38036083337448,47.70881378610432],[-122.38034021273864,47.70887164881196],[-122.38032713781681,47.7089100434313],[-122.380035730266,47.70881048558709],[-122.37749270909688,47.70883227707372],[-122.37285969758091,47.70889493674346],[-122.37082529877597,47.70890962408215],[-122.36827977132198,47.70882953174548],[-122.36616762250053,47.7087562383982],[-122.36611972250665,47.71033363179051],[-122.36612188078104,47.71107780494403],[-122.36592192092546,47.71096172923412],[-122.36549384604808,47.71111778023438],[-122.36509114443537,47.71115275405936],[-122.36498071623592,47.71116229228146],[-122.36488454778326,47.71113873456621],[-122.36476638632344,47.71110990251479],[-122.36502353736871,47.71082342002148],[-122.36508595772445,47.71071864144154],[-122.36515044623134,47.71058067384624],[-122.36536864990447,47.71017912029583],[-122.36538067102701,47.71015625146849],[-122.36538758836697,47.71013250849706],[-122.36538992138543,47.71010831294706],[-122.36538717590879,47.7100841000051],[-122.36537987644867,47.71006046244529],[-122.36536701896972,47.71003775666576],[-122.36535013810312,47.71001638988552],[-122.36496839014802,47.70952178561721],[-122.36482418897002,47.70935029013739],[-122.36479779238472,47.70933342114942],[-122.36476843364433,47.70931942013469],[-122.36473612535721,47.70930871476479],[-122.36470188975018,47.70930154822254],[-122.36466624277898,47.70929817119419],[-122.36463025969293,47.70930062526989],[-122.3645927586239,47.70930327100088],[-122.36455897813957,47.70931152242075],[-122.36452783887351,47.70932325165466],[-122.36449983856492,47.70933810911333],[-122.36390253277133,47.70964466716394],[-122.36387713344695,47.70966163191986],[-122.36384915296254,47.70967717440899],[-122.3638196045014,47.70969119538888],[-122.36378848250995,47.7097035240062],[-122.36375629482275,47.70971415274047],[-122.36372304146295,47.70972308229251],[-122.36368820952441,47.7097301479178],[-122.36365332509321,47.70973541476869],[-122.36361787423493,47.70973871846607],[-122.36309212455527,47.70976813873978],[-122.36279382249582,47.70976108734684],[-122.36297134630492,47.70956410789802],[-122.36341117846639,47.70935915192151],[-122.36357827386044,47.70925648255552],[-122.36359696009312,47.70923575247192],[-122.36361461649874,47.70921452167358],[-122.36363022688248,47.70919280450354],[-122.36364480693211,47.70917058697776],[-122.36365734095304,47.70914788273083],[-122.36366885020738,47.70912484933209],[-122.36367831849221,47.709101500774],[-122.36368625416667,47.70907782988208],[-122.36369265872591,47.70905392262641],[-122.36369753625389,47.70902986459123],[-122.36370088770548,47.70900574105185],[-122.36370220377445,47.70898147390843],[-122.36370199733383,47.70895722685204],[-122.3636997600307,47.70893300705765],[-122.36370419293459,47.70875600158448],[-122.3629371597895,47.70874821532203],[-122.36291824343436,47.7076403927141],[-122.36184791241297,47.70693719599592],[-122.36079157225117,47.70693318873227],[-122.36078562089915,47.70650637041654],[-122.36077099220473,47.70578447254834],[-122.36077229118771,47.70512071459288],[-122.36098715305906,47.70512310535788],[-122.36286474958185,47.70513425998224],[-122.3638610676021,47.70515319192272],[-122.36526828533513,47.70519281456509],[-122.36552712285355,47.70513672303873],[-122.36556039758506,47.70514583014258],[-122.36559563429383,47.70515259721107],[-122.36563181787866,47.70515703788711],[-122.36566894328384,47.70515898096001],[-122.36570549012407,47.70515853250538],[-122.36574247274837,47.70515563606855],[-122.36606730640091,47.70516784953497],[-122.3674712203737,47.70516430249616],[-122.36878709791043,47.70517147836838],[-122.37009830699635,47.70517531749861],[-122.37139499443794,47.70518602083714],[-122.3727598123107,47.70518250762356],[-122.37408066742296,47.70518621351664],[-122.37476980812605,47.70518885035846],[-122.37541629069565,47.7051913321766],[-122.37541758854779,47.70441412006815],[-122.37541992896155,47.70350099227523],[-122.37542256554721,47.7025978430057],[-122.37543033046117,47.70159381162663],[-122.37543048253879,47.70153052857633],[-122.37631424954141,47.70154011976011],[-122.37663000957831,47.70153811552466],[-122.37677113722633,47.70153723304241],[-122.37677113722633,47.70153723304239]]]],"type":"MultiPolygon"} +},{ + "id": 890537369, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":79495.269846, + "geom:bbox":"-122.334316634,47.5902805689,-122.329912105,47.5924540147", + "geom:latitude":47.591365, + "geom:longitude":-122.332116, + "iso:country":"US", + "lbl:latitude":47.591365, + "lbl:longitude":-122.332118, + "lbl:max_zoom":18.0, + "mps:latitude":47.591365, + "mps:longitude":-122.332118, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.591365, + "reversegeo:longitude":-122.332118, + "src:geom":"mz", + "wof:belongsto":[ + 85866047, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"928593566ed8618418ce25f3b9c6df7e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890537369, + "neighbourhood_id":85866047, + "region_id":85688623 + } + ], + "wof:id":890537369, + "wof:lastmodified":1566631081, + "wof:name":"Safeco Field", + "wof:parent_id":85866047, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.33431663446532, + 47.59028056888641, + -122.32991210450093, + 47.59245401468937 +], + "geometry": {"coordinates":[[[[-122.33431663446532,47.59028056888641],[-122.33430878809058,47.59245401468937],[-122.33328671766526,47.59245186050829],[-122.32991210450093,47.59244520370022],[-122.32991991288496,47.59028228132443],[-122.33431663446532,47.59028056888641]]]],"type":"MultiPolygon"} +},{ + "id": 890537371, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":115145.696789, + "geom:bbox":"-122.333286718,47.5924452037,-122.329841918,47.5964982592", + "geom:latitude":47.59448, + "geom:longitude":-122.331581, + "iso:country":"US", + "lbl:latitude":47.594473, + "lbl:longitude":-122.33158, + "lbl:max_zoom":18.0, + "mps:latitude":47.594473, + "mps:longitude":-122.33158, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0645\u0644\u0639\u0628 \u0633\u064a\u0646\u0634\u0631\u064a \u0644\u064a\u0646\u0643 \u0641\u064a\u0644\u062f" + ], + "name:bul_x_preferred":[ + "\u0421\u0435\u043d\u0447\u044a\u0440\u0438\u043b\u0438\u043d\u043a \u0424\u0438\u0439\u043b\u0434" + ], + "name:cat_x_preferred":[ + "CenturyLink Field" + ], + "name:ces_x_preferred":[ + "CenturyLink Field" + ], + "name:dan_x_preferred":[ + "CenturyLink Field" + ], + "name:deu_x_preferred":[ + "CenturyLink Field" + ], + "name:eus_x_preferred":[ + "CenturyLink Field" + ], + "name:fas_x_preferred":[ + "\u0648\u0631\u0632\u0634\u06af\u0627\u0647 \u0633\u0646\u0686\u0648\u0631\u06cc \u0644\u06cc\u0646\u06a9 \u0641\u06cc\u0644\u062f" + ], + "name:fin_x_preferred":[ + "CenturyLink Field" + ], + "name:fra_x_preferred":[ + "CenturyLink Field" + ], + "name:glg_x_preferred":[ + "CenturyLink Field" + ], + "name:hin_x_preferred":[ + "\u0915\u094d\u0935\u0947\u0938\u094d\u091f \u092b\u0940\u0932\u094d\u0921" + ], + "name:hun_x_preferred":[ + "CenturyLink Field" + ], + "name:ind_x_preferred":[ + "CenturyLink Field" + ], + "name:ita_x_preferred":[ + "CenturyLink Field" + ], + "name:jpn_x_preferred":[ + "\u30bb\u30f3\u30c1\u30e5\u30ea\u30fc\u30ea\u30f3\u30af\u30fb\u30d5\u30a3\u30fc\u30eb\u30c9" + ], + "name:kor_x_preferred":[ + "\uc13c\ucd94\ub9ac\ub9c1\ud06c \ud544\ub4dc" + ], + "name:nld_x_preferred":[ + "CenturyLink Field" + ], + "name:nor_x_preferred":[ + "CenturyLink Field" + ], + "name:pol_x_preferred":[ + "CenturyLink Field" + ], + "name:por_x_preferred":[ + "CenturyLink Field" + ], + "name:rus_x_preferred":[ + "\u0421\u0435\u043d\u0447\u0443\u0440\u0438 \u041b\u0438\u043d\u043a-\u0444\u0438\u043b\u0434" + ], + "name:spa_x_preferred":[ + "CenturyLink Field" + ], + "name:swe_x_preferred":[ + "CenturyLink Field" + ], + "name:tur_x_preferred":[ + "CenturyLink Field" + ], + "name:ukr_x_preferred":[ + "\u0421\u0435\u043d\u0447\u0443\u0440\u0456 \u041b\u0456\u043d\u043a \u0424\u0456\u043b\u0434" + ], + "name:vie_x_preferred":[ + "CenturyLink Field" + ], + "reversegeo:latitude":47.594473, + "reversegeo:longitude":-122.33158, + "src:geom":"mz", + "wof:belongsto":[ + 85866047, + 102191575, + 890536791, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9c69039abd8587f97fd9e61425a66c7d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536791, + "microhood_id":890537371, + "neighbourhood_id":85866047, + "region_id":85688623 + } + ], + "wof:id":890537371, + "wof:lastmodified":1566631081, + "wof:name":"CenturyLink Field", + "wof:parent_id":85866047, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.33328671766526, + 47.59244520370022, + -122.32984191803376, + 47.59649825917563 +], + "geometry": {"coordinates":[[[[-122.33328671334827,47.59649825871272],[-122.32984191803376,47.59649825917563],[-122.32991210450093,47.59244520370022],[-122.33328671766526,47.59245186050829],[-122.33328671334827,47.59649825871272]]]],"type":"MultiPolygon"} +},{ + "id": 890537375, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":168510.259493, + "geom:bbox":"-122.335243249,47.6977393389,-122.329589921,47.701476728", + "geom:latitude":47.699591, + "geom:longitude":-122.332519, + "iso:country":"US", + "lbl:latitude":47.699611, + "lbl:longitude":-122.332519, + "lbl:max_zoom":18.0, + "mps:latitude":47.699611, + "mps:longitude":-122.332519, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "NSC" + ], + "name:lat_x_preferred":[ + "Collegium Seattli Septentrionalis" + ], + "reversegeo:latitude":47.699611, + "reversegeo:longitude":-122.332519, + "src:geom":"mz", + "wof:belongsto":[ + 420783233, + 102191575, + 890536781, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7c7887d04da1e5f6a525940248d4683e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536781, + "microhood_id":890537375, + "neighbourhood_id":420783233, + "region_id":85688623 + } + ], + "wof:id":890537375, + "wof:lastmodified":1566631085, + "wof:name":"North Seattle College", + "wof:parent_id":420783233, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.33524324879062, + 47.69773933894475, + -122.32958992116771, + 47.70147672797173 +], + "geometry": {"coordinates":[[[[-122.32958992116771,47.69775218564124],[-122.33522147159402,47.69773933894475],[-122.33524324879062,47.70147672797173],[-122.32994511636413,47.70147672775465],[-122.32992295520268,47.70070757455697],[-122.32982830533427,47.69958995302498],[-122.32958992116771,47.69775218564124]]]],"type":"MultiPolygon"} +},{ + "id": 890537379, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":62624.039974, + "geom:bbox":"-122.410521691,47.6677405497,-122.407823137,47.6715820683", + "geom:latitude":47.669684, + "geom:longitude":-122.4092, + "iso:country":"US", + "lbl:latitude":47.669654, + "lbl:longitude":-122.409219, + "lbl:max_zoom":18.0, + "mps:latitude":47.669654, + "mps:longitude":-122.409219, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ang_x_preferred":[ + "Penwi\u00f0steort" + ], + "name:ara_x_preferred":[ + "\u0644\u0627\u0646\u062f\u0632 \u0625\u0646\u062f" + ], + "name:aze_x_preferred":[ + "Lends End" + ], + "name:bre_x_preferred":[ + "Penn an Wlas" + ], + "name:bul_x_preferred":[ + "\u041b\u0430\u043d\u0434\u0441 \u0415\u043d\u0434" + ], + "name:cat_x_preferred":[ + "Land's End" + ], + "name:ces_x_preferred":[ + "Land's End" + ], + "name:cor_x_preferred":[ + "Pedn an Wlas" + ], + "name:dan_x_preferred":[ + "Land's End" + ], + "name:deu_x_preferred":[ + "Land\u2019s End" + ], + "name:eng_x_variant":[ + "Lands End" + ], + "name:eus_x_preferred":[ + "Land's End" + ], + "name:fas_x_preferred":[ + "\u0644\u0646\u062f\u0632 \u0627\u0646\u062f" + ], + "name:fin_x_preferred":[ + "Land\u2019s End" + ], + "name:fra_x_preferred":[ + "Land's End" + ], + "name:gle_x_preferred":[ + "Land's End" + ], + "name:glg_x_preferred":[ + "Land's End" + ], + "name:heb_x_preferred":[ + "\u05dc\u05e0\u05d3\u05e1 \u05d0\u05e0\u05d3" + ], + "name:isl_x_preferred":[ + "Land\u2019s End" + ], + "name:ita_x_preferred":[ + "Land's End" + ], + "name:jpn_x_preferred":[ + "\u30e9\u30f3\u30ba\u30fb\u30a8\u30f3\u30c9" + ], + "name:lat_x_preferred":[ + "Antivestaeum promunturium" + ], + "name:lit_x_preferred":[ + "\u017dem\u0117s Kra\u0161tas" + ], + "name:nld_x_preferred":[ + "Land's End" + ], + "name:nno_x_preferred":[ + "Land's End" + ], + "name:nor_x_preferred":[ + "Land's End" + ], + "name:pol_x_preferred":[ + "Land\u2019s End" + ], + "name:por_x_preferred":[ + "Land's End" + ], + "name:rus_x_preferred":[ + "\u041b\u0435\u043d\u0434\u0441-\u042d\u043d\u0434" + ], + "name:slv_x_preferred":[ + "Land's End" + ], + "name:spa_x_preferred":[ + "Land's End" + ], + "name:swe_x_preferred":[ + "Land's End" + ], + "name:zho_x_preferred":[ + "\u5170\u5179\u89d2" + ], + "reversegeo:latitude":47.669654, + "reversegeo:longitude":-122.409219, + "src:geom":"mz", + "wof:belongsto":[ + 85688623, + 102191575, + 85633793, + 101730401, + 102086191, + 85831927 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5966fe6b17165b1a0284a9db73aec38a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537379, + "neighbourhood":85831927, + "region_id":85688623 + } + ], + "wof:id":890537379, + "wof:lastmodified":1566631080, + "wof:name":"Land's End", + "wof:parent_id":85831927, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41052169130589, + 47.66774054966434, + -122.40782313742261, + 47.67158206826592 +], + "geometry": {"coordinates":[[[[-122.40823949919006,47.66774394323874],[-122.40936913532654,47.66774101814911],[-122.40960064163031,47.66774054966434],[-122.40946228700633,47.6684736570594],[-122.41015742794382,47.66848503573073],[-122.41052169130589,47.67150659067338],[-122.41036078573946,47.67151519857133],[-122.4093925505518,47.67158206826592],[-122.40921853192869,47.67156665234332],[-122.40897134557115,47.67151467327137],[-122.40877555123487,47.67141703881473],[-122.40867259366537,47.67123474483345],[-122.40865706922088,47.67119134348913],[-122.40860090286864,47.67104597693644],[-122.40858742426401,47.67100310465592],[-122.40856697909655,47.67093127955265],[-122.40854763149015,47.67086218185511],[-122.40852098261074,47.67078658662157],[-122.40848921190877,47.67070943434089],[-122.40822684983301,47.67008950020367],[-122.40818578287222,47.67004045396669],[-122.4081500532231,47.67000007412311],[-122.4080206417571,47.66981540308178],[-122.40789222203529,47.66959644220112],[-122.4078305359298,47.66950325089597],[-122.40782313742261,47.66946003722882],[-122.40782519198102,47.66942736104871],[-122.40783306872937,47.66938586455616],[-122.40783184788241,47.66934556430681],[-122.40784204788112,47.66921324750182],[-122.40784607575112,47.66914519755035],[-122.40786028945766,47.66907837775194],[-122.40787011456599,47.66896718831055],[-122.40790631608567,47.66882217291946],[-122.40791748598188,47.66875539518374],[-122.40793582366827,47.66869070324037],[-122.40796989758431,47.66859271778617],[-122.40798341565599,47.66855319935935],[-122.40799556552341,47.6685187557614],[-122.40803239345405,47.66849493925876],[-122.40805863778579,47.66845674465024],[-122.40808005929492,47.66839338099012],[-122.40813141017324,47.66824597121025],[-122.40820780232021,47.66795369983036],[-122.40823600965048,47.66787983109249],[-122.40823949919006,47.66774394323874]]]],"type":"MultiPolygon"} +},{ + "id": 890537383, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000247, + "geom:area_square_m":2058373.791321, + "geom:bbox":"-122.322493575,47.6474884951,-122.290150959,47.6612581375", + "geom:latitude":47.654926, + "geom:longitude":-122.306102, + "iso:country":"US", + "lbl:latitude":47.654353, + "lbl:longitude":-122.306087, + "lbl:max_zoom":18.0, + "mps:latitude":47.654353, + "mps:longitude":-122.306087, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:afr_x_preferred":[ + "Universiteit van Washington" + ], + "name:ara_x_preferred":[ + "\u062c\u0627\u0645\u0639\u0629 \u0648\u0627\u0634\u0646\u0637\u0646" + ], + "name:arz_x_preferred":[ + "\u062c\u0627\u0645\u0639\u0647 \u0648\u0627\u0634\u0646\u0637\u0648\u0646" + ], + "name:azb_x_preferred":[ + "\u0648\u0627\u0634\u06cc\u0646\u0642\u062a\u0648\u0646 \u0628\u06cc\u0644\u06cc\u0645\u200c\u06cc\u0648\u0631\u062f\u0648" + ], + "name:aze_x_preferred":[ + "Va\u015finqton Universiteti" + ], + "name:bel_x_preferred":[ + "\u0412\u0430\u0448\u044b\u043d\u0433\u0442\u043e\u043d\u0441\u043a\u0456 \u045e\u043d\u0456\u0432\u0435\u0440\u0441\u0456\u0442\u044d\u0442" + ], + "name:ben_x_preferred":[ + "\u0993\u09af\u09bc\u09be\u09b6\u09bf\u0982\u099f\u09a8 \u09ac\u09bf\u09b6\u09cd\u09ac\u09ac\u09bf\u09a6\u09cd\u09af\u09be\u09b2\u09af\u09bc" + ], + "name:ceb_x_preferred":[ + "Unibersidad sa Washington" + ], + "name:ces_x_preferred":[ + "Washingtonsk\u00e1 univerzita" + ], + "name:ckb_x_preferred":[ + "\u0632\u0627\u0646\u06a9\u06c6\u06cc \u0648\u0627\u0634\u06cc\u0646\u06af\u062a\u0646" + ], + "name:cym_x_preferred":[ + "Prifysgol Washington" + ], + "name:dan_x_preferred":[ + "University of Washington" + ], + "name:deu_x_preferred":[ + "University of Washington" + ], + "name:diq_x_preferred":[ + "Univers\u0131tey Washingtoni" + ], + "name:ell_x_preferred":[ + "\u03a0\u03b1\u03bd\u03b5\u03c0\u03b9\u03c3\u03c4\u03ae\u03bc\u03b9\u03bf \u03c4\u03b7\u03c2 \u039f\u03c5\u03ac\u03c3\u03b9\u03bd\u03b3\u03ba\u03c4\u03bf\u03bd" + ], + "name:eng_x_variant":[ + "Washington", + "UW", + "U-Dub" + ], + "name:est_x_preferred":[ + "Washingtoni \u00dclikool" + ], + "name:fas_x_preferred":[ + "\u062f\u0627\u0646\u0634\u06af\u0627\u0647 \u0648\u0627\u0634\u06cc\u0646\u06af\u062a\u0646" + ], + "name:fin_x_preferred":[ + "Washingtonin yliopisto" + ], + "name:gla_x_preferred":[ + "Oilthigh Washington" + ], + "name:hak_x_preferred":[ + "Washington Thai-ho\u030dk" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d5\u05e0\u05d9\u05d1\u05e8\u05e1\u05d9\u05d8\u05ea \u05d5\u05d5\u05e9\u05d9\u05e0\u05d2\u05d8\u05d5\u05df" + ], + "name:hun_x_preferred":[ + "Washingtoni Egyetem" + ], + "name:hye_x_preferred":[ + "\u054e\u0561\u0577\u056b\u0576\u0563\u057f\u0578\u0576\u056b \u0570\u0561\u0574\u0561\u056c\u057d\u0561\u0580\u0561\u0576" + ], + "name:ind_x_preferred":[ + "Universitas Washington" + ], + "name:isl_x_preferred":[ + "Washington-h\u00e1sk\u00f3li" + ], + "name:ita_x_preferred":[ + "Universit\u00e0 del Washington" + ], + "name:jpn_x_preferred":[ + "\u30ef\u30b7\u30f3\u30c8\u30f3\u5927\u5b66" + ], + "name:kat_x_preferred":[ + "\u10d5\u10d0\u10e8\u10d8\u10dc\u10d2\u10e2\u10dd\u10dc\u10d8\u10e1 \u10e3\u10dc\u10d8\u10d5\u10d4\u10e0\u10e1\u10d8\u10e2\u10d4\u10e2\u10d8" + ], + "name:kaz_x_preferred":[ + "\u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0456" + ], + "name:kir_x_preferred":[ + "\u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d \u0423\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0438" + ], + "name:kor_x_preferred":[ + "\uc6cc\uc2f1\ud134 \ub300\ud559\uad50" + ], + "name:lat_x_preferred":[ + "Universitas Vasingtoniensis" + ], + "name:lav_x_preferred":[ + "Va\u0161ingtonas Universit\u0101te" + ], + "name:lit_x_preferred":[ + "Va\u0161ingtono universitetas" + ], + "name:lmo_x_preferred":[ + "\u00dcniversitaa da Washington" + ], + "name:mal_x_preferred":[ + "\u0d35\u0d3e\u0d37\u0d3f\u0d19\u0d4d\u0d1f\u0d7a \u0d38\u0d7c\u0d35\u0d15\u0d32\u0d3e\u0d36\u0d3e\u0d32" + ], + "name:msa_x_preferred":[ + "Universiti Washington" + ], + "name:nld_x_preferred":[ + "Universiteit van Washington" + ], + "name:nno_x_preferred":[ + "University of Washington" + ], + "name:nor_x_preferred":[ + "University of Washington" + ], + "name:pms_x_preferred":[ + "Universit\u00e0 \u00ebd Washington" + ], + "name:pnb_x_preferred":[ + "\u06cc\u0648\u0646\u06cc\u0648\u0631\u0633\u0679\u06cc \u0622\u0641 \u0648\u0627\u0634\u0646\u06af\u0679\u0646" + ], + "name:pol_x_preferred":[ + "University of Washington" + ], + "name:ron_x_preferred":[ + "Universitatea din Washington" + ], + "name:rus_x_preferred":[ + "\u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0441\u043a\u0438\u0439 \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442" + ], + "name:sco_x_preferred":[ + "Varsity o Washington" + ], + "name:slv_x_preferred":[ + "Univerza Washingtona" + ], + "name:srp_x_preferred":[ + "\u0423\u043d\u0438\u0432\u0435\u0440\u0437\u0438\u0442\u0435\u0442 \u0443 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0443" + ], + "name:swe_x_preferred":[ + "University of Washington" + ], + "name:tam_x_preferred":[ + "\u0bb5\u0bbe\u0bb7\u0bbf\u0b99\u0bcd\u0b9f\u0ba9\u0bcd \u0baa\u0bb2\u0bcd\u0b95\u0bb2\u0bc8\u0b95\u0bcd\u0b95\u0bb4\u0b95\u0bae\u0bcd" + ], + "name:tgl_x_preferred":[ + "Unibersidad ng Washington" + ], + "name:tha_x_preferred":[ + "\u0e21\u0e2b\u0e32\u0e27\u0e34\u0e17\u0e22\u0e32\u0e25\u0e31\u0e22\u0e27\u0e2d\u0e0a\u0e34\u0e07\u0e15\u0e31\u0e19" + ], + "name:tur_x_preferred":[ + "Washington \u00dcniversitesi" + ], + "name:uig_x_preferred":[ + "\u06cb\u0627\u0634\u0649\u0646\u06af\u062a\u0648\u0646 \u0626\u06c7\u0646\u0649\u06cb\u06d0\u0631\u0633\u062a\u06d0\u062a\u0649" + ], + "name:ukr_x_preferred":[ + "\u0423\u043d\u0456\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442 \u0412\u0430\u0448\u0438\u043d\u0433\u0442\u043e\u043d\u0443" + ], + "name:urd_x_preferred":[ + "\u06cc\u0648\u0646\u06cc\u0648\u0631\u0633\u0679\u06cc \u0622\u0641 \u0648\u0627\u0634\u0646\u06af\u0679\u0646" + ], + "name:uzb_x_preferred":[ + "Vashington universiteti" + ], + "name:vie_x_preferred":[ + "\u0110\u1ea1i h\u1ecdc Washington" + ], + "name:war_x_preferred":[ + "Unibersidad han Washington" + ], + "name:yid_x_preferred":[ + "\u05d0\u05d5\u05e0\u05d9\u05d5\u05d5\u05e2\u05e8\u05e1\u05d9\u05d8\u05e2\u05d8 \u05e4\u05d5\u05df \u05d5\u05d5\u05d0\u05e9\u05d9\u05e0\u05d2\u05d8\u05d0\u05df" + ], + "name:zho_x_preferred":[ + "\u83ef\u76db\u9813\u5927\u5b78" + ], + "reversegeo:latitude":47.654353, + "reversegeo:longitude":-122.306087, + "src:geom":"mz", + "wof:belongsto":[ + 85853121, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"42080a0503ae0a5fadb66756cd9d08b0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537383, + "neighbourhood_id":85853121, + "region_id":85688623 + } + ], + "wof:id":890537383, + "wof:lastmodified":1566631081, + "wof:name":"University of Washington", + "wof:parent_id":85853121, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.32249357469485, + 47.6474884950659, + -122.29015095905548, + 47.66125813754369 +], + "geometry": {"coordinates":[[[[-122.29019349967218,47.65843864729283],[-122.29038971335299,47.65844345106294],[-122.29056494692729,47.6584835243466],[-122.29072466818673,47.65858524724853],[-122.29086981801589,47.65874551168925],[-122.29211786209578,47.66027158768642],[-122.2932117932485,47.65993153986614],[-122.29349381472164,47.65981641897601],[-122.29368115181731,47.65969594435898],[-122.29380953628061,47.65955450699428],[-122.29413552798536,47.65944482222564],[-122.29466878417099,47.65925901966988],[-122.29568299208044,47.65892334722184],[-122.29669044218885,47.65862402619074],[-122.2967106113789,47.65841826064061],[-122.29668193420488,47.65825024881025],[-122.29668088482541,47.65806716188782],[-122.29673263909535,47.65788246628529],[-122.2968337084058,47.65757639197874],[-122.29689759277223,47.65733755782355],[-122.29691372931769,47.65714060214726],[-122.29688447807366,47.65691342249062],[-122.29687800205404,47.65655987406767],[-122.29693716542228,47.65641179867173],[-122.29699501625358,47.65621044780622],[-122.29705840249993,47.65598175717808],[-122.29709688789603,47.65554277590159],[-122.29717305343816,47.65524301176885],[-122.29726599769774,47.65497830537313],[-122.29728004829411,47.65457393076384],[-122.2974223458648,47.65442098793181],[-122.29749129425632,47.6543332014019],[-122.29750374555357,47.65430699239934],[-122.29753371871486,47.65425450919786],[-122.29755316871035,47.65422465449213],[-122.29757543720119,47.65418679433424],[-122.29759369570962,47.65415065671594],[-122.29760520999584,47.65412720190655],[-122.2976253338618,47.65408525660174],[-122.29763577247992,47.65405963045683],[-122.29763902559016,47.65403105481182],[-122.29763704648535,47.65399680556394],[-122.2976331163468,47.65396532320931],[-122.29763092132892,47.65392340760951],[-122.29764334902315,47.65389638498446],[-122.29767886334081,47.65386053965069],[-122.29770841666118,47.65382918374857],[-122.29774737440611,47.65380756084809],[-122.29780490548663,47.65379696710677],[-122.29783284616617,47.65378041316985],[-122.29787784368055,47.65375708438653],[-122.29792102838533,47.65374144837801],[-122.29797131234682,47.65372572069929],[-122.29805873484932,47.65369580560146],[-122.29812354911738,47.65369167280968],[-122.29817082926196,47.65367735493192],[-122.29827440670617,47.65368069231079],[-122.2983416124153,47.65368942481475],[-122.29838032858125,47.65369522463219],[-122.29844320754033,47.6536944157091],[-122.29851033605568,47.65370040729943],[-122.29855675647673,47.65369158393666],[-122.29859416737141,47.65365108701747],[-122.29861738740379,47.653611029236],[-122.29861057612621,47.65358532520829],[-122.29855683467984,47.65355037070386],[-122.29848850908719,47.65350189406727],[-122.29845026647459,47.65347689448887],[-122.2984029809051,47.65345500995436],[-122.29834074636614,47.65344265747329],[-122.29825222029484,47.65343338531951],[-122.29820333139723,47.65342660232253],[-122.29813824717669,47.65342114160805],[-122.29805002160762,47.65342253328205],[-122.29800250277849,47.65342837149599],[-122.29793589949163,47.65344100991698],[-122.29788448586983,47.65345263904928],[-122.29783119791233,47.65346977622715],[-122.29774193523035,47.6534703670901],[-122.29774225449516,47.65344568496451],[-122.29776696812054,47.65342261740031],[-122.2978028065411,47.65339829278093],[-122.29783935811659,47.65336329077915],[-122.29788313969846,47.65333282302441],[-122.29796131832646,47.6532989138089],[-122.29800849749596,47.65328104122625],[-122.29807443447089,47.65328075016561],[-122.29811461501589,47.65326652326959],[-122.29814888779541,47.65325867057363],[-122.29820359860132,47.65325603893989],[-122.29825211687913,47.65324967395762],[-122.29834545850672,47.65324984412555],[-122.29844394840515,47.65325269014251],[-122.29850579703597,47.65325133743776],[-122.29855020402734,47.65324309697208],[-122.2986220396719,47.65323613174301],[-122.29867099982201,47.65320945284559],[-122.29871535296235,47.65319928545908],[-122.29881265122206,47.65319584826332],[-122.29887237810354,47.65319122385841],[-122.2989187593783,47.65318102994105],[-122.2989602398499,47.65317694003937],[-122.29903347581043,47.65318366662094],[-122.29909847530737,47.65318612883965],[-122.29913904188982,47.65318560670306],[-122.29917949255002,47.65318097298072],[-122.29923299591967,47.65317150152073],[-122.29929774785971,47.65316518404065],[-122.29935814941386,47.65314851158722],[-122.29935831895254,47.65301059630239],[-122.29935731084271,47.65286691212661],[-122.29936029503783,47.6527928399694],[-122.29939781851586,47.65279235691146],[-122.29939699680108,47.65265526829317],[-122.29941255265922,47.65259530137967],[-122.29953417371966,47.65259099377739],[-122.29953745709845,47.65256353166373],[-122.2995296779925,47.65253951078277],[-122.29948206846204,47.65250610593992],[-122.29943134737883,47.65247029905943],[-122.29936746517426,47.65243547584686],[-122.29931586902579,47.65240460715408],[-122.29928698594307,47.65238771315121],[-122.29924812332703,47.65237668848328],[-122.29920728689575,47.65236761710922],[-122.29916212368202,47.65234900473369],[-122.29912309932095,47.65233224087429],[-122.29907024798747,47.65232880841772],[-122.29902334954502,47.65232062891044],[-122.29894895343629,47.65230869056526],[-122.29885495625183,47.6522852222261],[-122.29880393275641,47.65227465398927],[-122.29875877648711,47.65225629828015],[-122.29871563444489,47.65223740245812],[-122.29866540783455,47.65221911195682],[-122.29861103268954,47.6521976188279],[-122.29858115931899,47.65218155130071],[-122.29853989831233,47.65215740415716],[-122.29850491545182,47.65214003144654],[-122.29845975940498,47.65212167561879],[-122.29841036242763,47.65209681919492],[-122.29834302722352,47.6520834183651],[-122.29829793403674,47.65206728964789],[-122.29825686633212,47.6520499951392],[-122.29820180135053,47.65203999245162],[-122.29812852849975,47.65203189492782],[-122.29810535212695,47.65200147440159],[-122.29810344277278,47.65196970915407],[-122.29809645407286,47.65193770915675],[-122.29806711556796,47.65190462572473],[-122.29802569335176,47.65187473959506],[-122.29798361181574,47.65185745803055],[-122.2979171909809,47.6518404894783],[-122.29787202867688,47.65182187624002],[-122.29783406505477,47.65180672682595],[-122.29780008104582,47.6517887837129],[-122.29778221590837,47.65176682067852],[-122.29778310892044,47.65172649353441],[-122.29779066908806,47.65167074274531],[-122.29779328192485,47.65161942520147],[-122.29779669239137,47.65156042897302],[-122.29779984565033,47.65152829853515],[-122.29782232467039,47.65146194494992],[-122.29783845258535,47.6514222357886],[-122.29781153765154,47.65140313095016],[-122.29777530934487,47.65137754791682],[-122.29777553570075,47.65134956818085],[-122.29779921381436,47.6512897539662],[-122.297811602192,47.65126136091299],[-122.29783160225732,47.65121504716817],[-122.29784710205337,47.65118905582167],[-122.2978584992378,47.65116148941807],[-122.29787781691152,47.6511269662804],[-122.29789018952368,47.65109801642468],[-122.29789819756218,47.65105815441662],[-122.29789937638861,47.65102797761747],[-122.29790180399709,47.65097010766309],[-122.29790459403439,47.65092508606011],[-122.29791131000246,47.65087538707726],[-122.29792636208278,47.65083350657275],[-122.29795482898898,47.65079967965716],[-122.29798365228211,47.65077848706932],[-122.29797078822368,47.65075397484974],[-122.29794992653142,47.65073367820176],[-122.29795931837712,47.65070695148552],[-122.29799321963661,47.65068595084777],[-122.29812522472012,47.65069029390555],[-122.29826739378136,47.65069531996762],[-122.29836387365964,47.65069900575756],[-122.29845502813157,47.65069371994778],[-122.29849194839763,47.65067186605718],[-122.29851885019141,47.65065451103285],[-122.2985554300508,47.65062057957537],[-122.29858131050999,47.65060298076406],[-122.29862332435179,47.65058187519848],[-122.29865312939755,47.65055955581219],[-122.29869779907453,47.65052470630098],[-122.29872622720582,47.65048950877846],[-122.29871687104647,47.65044550017332],[-122.29868754868085,47.65041297369311],[-122.29865478815157,47.65040242731636],[-122.29862816413521,47.65042963274426],[-122.29861060496101,47.65045453671317],[-122.2985739171435,47.65048461342939],[-122.2985328720716,47.65050407869586],[-122.29850789976409,47.65048190713842],[-122.29851728404044,47.6504549235562],[-122.29854721534002,47.6504010696739],[-122.29856245988478,47.6503660418221],[-122.29857797475339,47.65034060716908],[-122.29859904213627,47.65029620744112],[-122.2986260694136,47.65024731787402],[-122.298652904044,47.65019157590729],[-122.29865403654411,47.6501597715217],[-122.29865709573518,47.65012434345731],[-122.29866244664098,47.65009822567007],[-122.29866321583033,47.65005353012479],[-122.2986719281718,47.65000269140448],[-122.29867889795651,47.64996202878189],[-122.29869695264046,47.6499187386211],[-122.29871636172386,47.6498875133052],[-122.29873086233948,47.64986209167991],[-122.2987537100129,47.6498088858863],[-122.29880193295968,47.64975616779105],[-122.29880707492775,47.64972264081668],[-122.29882126643206,47.64968625522131],[-122.29883007099222,47.64963871445369],[-122.29884231165904,47.64960509612062],[-122.29885760284283,47.64957173825852],[-122.29887370644842,47.64953121533464],[-122.29890826688928,47.64946166412374],[-122.29891699405717,47.64941138183321],[-122.2989263622337,47.64938384142264],[-122.29893973269711,47.64935432159999],[-122.29895069672027,47.64931142273535],[-122.29896072564547,47.64923533201446],[-122.29897613979013,47.64920634287867],[-122.29899292522319,47.64915402931456],[-122.29903719375675,47.64906901484116],[-122.29904660768798,47.64904310199802],[-122.29906197584734,47.6490124852728],[-122.29907588085447,47.64896594965106],[-122.29909002609283,47.64892793679448],[-122.29909950998629,47.64890450759033],[-122.29912235687171,47.6488513020719],[-122.29914079714976,47.64882171661109],[-122.29916332538517,47.64879319286686],[-122.29918871021495,47.64875803438576],[-122.29920616781364,47.64872957590558],[-122.29921955363739,47.64870061249223],[-122.29924084266419,47.64866413581961],[-122.29925631805742,47.6486373306657],[-122.29927975993868,47.64860523906626],[-122.29930718831535,47.6485706112441],[-122.29933848673259,47.64852933563126],[-122.29936788145794,47.64849249731412],[-122.29938824926553,47.64845933127601],[-122.29941368760014,47.64842609995161],[-122.29942664816888,47.6483820613355],[-122.29938857118711,47.64836280050863],[-122.29941506212886,47.64833092688664],[-122.29945607497268,47.64831039086775],[-122.29950677831197,47.64830973803709],[-122.29953768918605,47.64829070296231],[-122.29963172726644,47.64827989540699],[-122.29965954119936,47.64825897227679],[-122.29967891819048,47.64822663285043],[-122.29968578925052,47.64811056710983],[-122.29968316835016,47.64801763029795],[-122.29966367133765,47.64797375270012],[-122.29963075755639,47.64795772462487],[-122.29954737993565,47.64795082937428],[-122.299546529731,47.64792067831687],[-122.29956486920824,47.64788753835934],[-122.2995761415756,47.64785560338944],[-122.29957689476487,47.6478103510344],[-122.29957051030422,47.64776381933131],[-122.29955643850577,47.64773246796619],[-122.29955826728825,47.64768938657483],[-122.29958380537779,47.64765970998962],[-122.2996316612511,47.64763004574652],[-122.29965727656088,47.64760310995862],[-122.2996954400172,47.64758946576131],[-122.29975083386371,47.64757529957575],[-122.29980648375047,47.6475702129226],[-122.2999025870938,47.64756074908195],[-122.29997704715784,47.64753922508418],[-122.30003261121146,47.64753109753309],[-122.30007047881453,47.64754294861611],[-122.30011291484277,47.64753691802581],[-122.30014932750815,47.64753315017457],[-122.30020294933273,47.64752808945118],[-122.30024833374091,47.64751872167255],[-122.30028400356848,47.64752456038284],[-122.30033084350191,47.64753081182132],[-122.30037148298921,47.647533030059],[-122.30045853656576,47.64752642449999],[-122.30053946751855,47.64751852685939],[-122.30064490613918,47.64751635432633],[-122.30069129771779,47.64750671647865],[-122.30078254667937,47.64750498358248],[-122.30099860188298,47.64750438421189],[-122.30120757435242,47.6475044323791],[-122.30144239273613,47.64750371874791],[-122.30163667369212,47.64750438408282],[-122.30172395201744,47.64750574352517],[-122.30193293175647,47.6475060475318],[-122.30214191997156,47.64750665112863],[-122.30234783423725,47.64750617965542],[-122.30255171326652,47.64750547715663],[-122.30275964877121,47.64750472229709],[-122.30296961949441,47.64750419735284],[-122.30317661795749,47.6475061956371],[-122.30321772915369,47.64748921303789],[-122.30333639648137,47.6474884950659],[-122.30348967344763,47.64749200019844],[-122.30371285796818,47.64749241762383],[-122.30392183039191,47.64749246081046],[-122.30412882087896,47.64749415738369],[-122.30433882305903,47.64749474385178],[-122.30455795163896,47.64749521166631],[-122.30476487983451,47.6474947230726],[-122.30497383650984,47.64749420753596],[-122.3051828089517,47.64749424875957],[-122.30536547020144,47.64749655728976],[-122.30556839701264,47.64749804686657],[-122.30577534149627,47.64749811322291],[-122.30598532741233,47.64749813951791],[-122.30619734235086,47.64749813953198],[-122.30640126739526,47.64749905736556],[-122.30660723620659,47.64750050573895],[-122.30681117705561,47.64750197998199],[-122.3068399979778,47.64751668806313],[-122.30687438646027,47.64754888966917],[-122.30691412878322,47.64755523060875],[-122.30700465858767,47.6475639129937],[-122.30704327040922,47.64756615509609],[-122.3070993536212,47.64757639720604],[-122.30713601517483,47.64758140668382],[-122.30719504014593,47.64758805459665],[-122.30726408951803,47.64759046000186],[-122.30733628890242,47.64759663722758],[-122.30741877684994,47.64760790863593],[-122.30746961174385,47.64761192026537],[-122.30752653110827,47.64761585345173],[-122.30758040000936,47.64761952602019],[-122.30764055564764,47.64763027213761],[-122.30774010404711,47.64763502418455],[-122.30785099320669,47.64764618444695],[-122.30790394967623,47.64765346757333],[-122.30794763936342,47.64765590087828],[-122.30799767049351,47.64766733491771],[-122.30805256926263,47.64767155092357],[-122.30808926932382,47.64767793050527],[-122.30819102492458,47.64768895146497],[-122.30827238258527,47.64769612382555],[-122.30831409849387,47.64770051046113],[-122.30836300640692,47.64770810273095],[-122.3084434205994,47.6477177720929],[-122.30849627516089,47.64772145737045],[-122.30854115875034,47.64773021569274],[-122.30857884131946,47.64773546874628],[-122.30862156397991,47.64773958496243],[-122.30867649447237,47.64774491425221],[-122.30876097984911,47.64775504482156],[-122.3088178216836,47.64775623620407],[-122.30886885129279,47.64776709992945],[-122.30890977086369,47.64777916546732],[-122.30896705636123,47.6477959890614],[-122.30900579242451,47.64780259923035],[-122.30903954431641,47.64781231587811],[-122.3090938177759,47.64783024926835],[-122.3091469696254,47.64784438453002],[-122.30918164195668,47.64785079004335],[-122.30923473062404,47.64786269774415],[-122.30927856105772,47.64787009887237],[-122.30931136833621,47.64788226941667],[-122.30939129783745,47.6479105811633],[-122.3094260869628,47.64792109816376],[-122.30946696058894,47.6479315362787],[-122.30951298254571,47.6479446498046],[-122.30957214806368,47.64795622165803],[-122.30960705399039,47.64797085016458],[-122.3096561958228,47.64798666500162],[-122.30969094614227,47.64799581151767],[-122.30974206180372,47.648009672471],[-122.30978197578035,47.64802205117321],[-122.30982175772324,47.64802976115058],[-122.30985547100032,47.64803810715303],[-122.30992212490119,47.64806329150942],[-122.3099970465405,47.64809385294669],[-122.31003704629438,47.64810922917851],[-122.31007319998572,47.64813206716319],[-122.31010535245869,47.64815688528436],[-122.31013548373875,47.64818198652359],[-122.31018843115645,47.64822461470025],[-122.31022497426032,47.64826115737121],[-122.31023604904496,47.64829391763282],[-122.31023624179586,47.64833641609243],[-122.31021275327392,47.64836662555486],[-122.31018584805648,47.64838368372028],[-122.31014877132469,47.64839980226927],[-122.3101177864164,47.64841609906643],[-122.3100849060669,47.64843709050851],[-122.31005908532261,47.64845661948129],[-122.31007017585777,47.64848993655096],[-122.31013727639456,47.64849510732083],[-122.31030778010036,47.64849782290806],[-122.31036513617761,47.64851708663185],[-122.31041356839398,47.64854362140959],[-122.31045581493716,47.64856663750986],[-122.31048674283845,47.64858405917358],[-122.31052195413837,47.64860939414982],[-122.31054879442863,47.64862575517976],[-122.3105828744465,47.64864699173792],[-122.31061684499309,47.64866437424637],[-122.31064582337986,47.64868456297624],[-122.31068949042532,47.6486861816249],[-122.31072545010372,47.64870216703578],[-122.31075536468553,47.64871960177567],[-122.31078830549616,47.64873644024622],[-122.31081823743497,47.64871878602055],[-122.31086104043932,47.64868999681227],[-122.31090235208346,47.64868012062473],[-122.31094361607104,47.64870426329217],[-122.31098300785713,47.64873391387306],[-122.31102551962155,47.64876626612133],[-122.31109751044393,47.64880072105043],[-122.31113669181067,47.64882296242052],[-122.31118004611942,47.64884926269687],[-122.31123993004583,47.64888605948221],[-122.31124675476936,47.64891201957063],[-122.31121995864405,47.64893293237651],[-122.31116627363205,47.64897146000717],[-122.31119443264265,47.6489985144801],[-122.31122529949035,47.64901375192242],[-122.31126863087668,47.64903923855395],[-122.31129365418511,47.64906303453598],[-122.31133310123411,47.64909461254108],[-122.3113803334962,47.64911456451564],[-122.31140936670543,47.64913668060328],[-122.31143425011481,47.6491555513841],[-122.31150129531255,47.64919443990272],[-122.31153542237311,47.64921730409888],[-122.3115665536571,47.64924183464594],[-122.31161709365503,47.64927108373404],[-122.31165734441277,47.64929523895539],[-122.31168929500208,47.64931290429094],[-122.31171813360973,47.64932816758444],[-122.3117542504403,47.64934963462506],[-122.3117912639034,47.64936697728749],[-122.31182424442711,47.64938518586074],[-122.31188111049345,47.64942283541617],[-122.31192233654455,47.64944560697489],[-122.31196737810477,47.64945984625857],[-122.31199916568795,47.64947177237599],[-122.31203626456994,47.64949211258288],[-122.31207961258758,47.64951815569727],[-122.31212267248317,47.64953404847692],[-122.31216169110091,47.64955055072053],[-122.31219363470393,47.64956795874468],[-122.31222357342753,47.64958620705998],[-122.312271430679,47.64959244041755],[-122.31230239977563,47.64957558624329],[-122.31233642676695,47.64955924934167],[-122.3123684719738,47.64954456599234],[-122.31240838866771,47.64952129767572],[-122.31243633822962,47.64950529659512],[-122.31247629384785,47.64948339865713],[-122.31250426704352,47.64946821151462],[-122.31255118117036,47.64944129617218],[-122.31258316410923,47.64942442874932],[-122.31268273976002,47.64939434434587],[-122.31271063413884,47.64941206174407],[-122.3127487404915,47.64943213171966],[-122.31280540498344,47.64946267128119],[-122.31283741090333,47.64948226348859],[-122.31286129682556,47.64950170427471],[-122.31289526868211,47.64951908575218],[-122.31295178467343,47.64954440045046],[-122.31299301859825,47.64956742844035],[-122.31304368402334,47.64960104492068],[-122.31308381869626,47.6496210884309],[-122.31313219899852,47.64964569485083],[-122.31316728623975,47.64966661783554],[-122.31319530648928,47.64968874664513],[-122.31324164299278,47.64971282223183],[-122.31327247916821,47.64972694553557],[-122.31330874512605,47.64975363723035],[-122.31335019027424,47.64978407424404],[-122.3133892721673,47.64980276042361],[-122.31343989906732,47.64983500632531],[-122.31347085240303,47.6498532407816],[-122.31350187596453,47.6498739595724],[-122.31353118412991,47.64990566862803],[-122.31348637618015,47.6499352988169],[-122.31343533647718,47.64995982643301],[-122.31337949911187,47.64999401309651],[-122.31332969153281,47.6500261931067],[-122.3132676827463,47.65005741801948],[-122.31322450520715,47.65007306020602],[-122.31315330049867,47.65010196247733],[-122.31307980087986,47.65012155437307],[-122.31300035036691,47.65014589397194],[-122.31302376812535,47.65018453459031],[-122.3130416866935,47.65020816560971],[-122.31306548653228,47.65026021131453],[-122.31308365501037,47.65029262188305],[-122.31310347678095,47.65034746144264],[-122.31311673060654,47.65038541985751],[-122.31314095224863,47.65041663811406],[-122.3131638088239,47.65043553522186],[-122.31318779647161,47.6504585303537],[-122.31322103538537,47.65048577524693],[-122.31324825294311,47.65051532637424],[-122.31326943938159,47.65054684096402],[-122.31330073686755,47.65057715331893],[-122.31332849213376,47.65062559148711],[-122.31335341597088,47.65064583260062],[-122.31337738063944,47.65066801408192],[-122.3134055812486,47.65069643840192],[-122.31343257225645,47.65071802354053],[-122.31345749617836,47.65073826463119],[-122.31348259201962,47.65076454411616],[-122.31350769520742,47.65079108076525],[-122.31353997532666,47.65082026629025],[-122.31357526714872,47.65084834148217],[-122.31362847686351,47.65090000478651],[-122.31367410544291,47.65093480047681],[-122.31370335891067,47.65096458194932],[-122.31372023230682,47.65098711281149],[-122.31374950220321,47.65101745105694],[-122.31377667277796,47.65104533168274],[-122.31380487330078,47.65107375626108],[-122.31383106210751,47.65110276363356],[-122.31385321684917,47.65113263735898],[-122.31385595472781,47.65115753679859],[-122.31389444574337,47.65119105429152],[-122.31391639009234,47.65121351884601],[-122.3139363216909,47.65123656691447],[-122.31396967125725,47.65126766597527],[-122.31400931674676,47.65130609541113],[-122.31404895376191,47.65134422521125],[-122.31408401933675,47.65136433395116],[-122.31411892150615,47.65137870425431],[-122.31415755964943,47.65138175790548],[-122.31422219127818,47.65140696612196],[-122.31428050387747,47.6514240310237],[-122.31432545333791,47.65143497143476],[-122.31436024633827,47.65144548691993],[-122.31439414188202,47.65146012679487],[-122.31443019001901,47.65147910900745],[-122.31446197208543,47.6514907776179],[-122.31450058715419,47.65149301754246],[-122.31453654994515,47.65150900174843],[-122.31456226071604,47.65148561737633],[-122.31461407549092,47.65148824221764],[-122.31465785604831,47.65149375653379],[-122.31472291518878,47.65149835139536],[-122.31476896480989,47.65151227640583],[-122.31478411526929,47.65154554024518],[-122.31482374444631,47.65154776651723],[-122.31488686218901,47.65155542844574],[-122.31494434904761,47.65157910138938],[-122.31498854223867,47.65159909145299],[-122.31504768191701,47.65160954687077],[-122.31511374920238,47.65161391429906],[-122.31518255503835,47.6516431810963],[-122.31519047428407,47.65167186890402],[-122.31521743480013,47.6516923400362],[-122.31528389282997,47.65171041208149],[-122.31536551533814,47.65172661574296],[-122.31540104935596,47.65172752455251],[-122.31546511920071,47.65173298860073],[-122.31552135804039,47.65174845169236],[-122.31560475118843,47.65175559206561],[-122.31570823190272,47.6517556159965],[-122.31580251414492,47.65175327467366],[-122.31590076035769,47.65174762566762],[-122.31611367355171,47.65174292567296],[-122.31618858605492,47.65173728015358],[-122.31620781308345,47.65170001311315],[-122.31621310671296,47.65163662119529],[-122.31621677773106,47.65158747438717],[-122.31622808709363,47.65155716534434],[-122.31629355444406,47.65157606361532],[-122.31638882270819,47.65160828390401],[-122.31644553813622,47.65164044922258],[-122.31644624182586,47.65166511819454],[-122.31640311265718,47.65171803454237],[-122.3163602893359,47.65178165830899],[-122.31631322953653,47.65183903897332],[-122.3162877380398,47.65187009005706],[-122.31631180538697,47.65189582533861],[-122.31634979767341,47.65191178255369],[-122.31638666596876,47.65192389857805],[-122.31641858871673,47.65194049181271],[-122.31640123353321,47.6519722508716],[-122.3164371745406,47.65198742050973],[-122.31648035458026,47.65200742320096],[-122.31646299941211,47.65203918226917],[-122.31650302680306,47.6520553698444],[-122.31655115319276,47.65207093809275],[-122.31659621294776,47.65208568918168],[-122.31663104541975,47.65209757438056],[-122.31666384243228,47.65210922916783],[-122.31666864214719,47.65213521569687],[-122.31666852685161,47.6521667502379],[-122.31670563000203,47.65218708891507],[-122.3167500198945,47.65221393064992],[-122.31679142258967,47.6522427391893],[-122.31683277034202,47.65226962052162],[-122.31688039864841,47.65230327492284],[-122.31692954409255,47.65228344088226],[-122.31698034297493,47.65225043212136],[-122.31703503258008,47.65221158856976],[-122.31708370905812,47.65217530824338],[-122.31713456955683,47.65214448378156],[-122.3171678014188,47.65213582461499],[-122.31720279052071,47.65215319194353],[-122.31726677844883,47.65219130309509],[-122.31731846326964,47.65222490445645],[-122.31737272449409,47.65227766636973],[-122.31734302010304,47.65230328825204],[-122.31728912415808,47.65233440962611],[-122.317233231773,47.65236667098448],[-122.31719555519022,47.65239732370146],[-122.31717817658924,47.65242826927537],[-122.31720944569403,47.65245746662119],[-122.31725819851724,47.65249496238487],[-122.31726030783813,47.65253332284531],[-122.31722465931648,47.65256394914351],[-122.31724682397025,47.65259407937666],[-122.31730551976551,47.65258894453147],[-122.31734631794025,47.65256099292152],[-122.31740607119762,47.65252182629236],[-122.31745367809467,47.65248363183877],[-122.31750633261845,47.65244455766751],[-122.31754527427988,47.65242267116968],[-122.31755922441606,47.65244935232028],[-122.31756525754339,47.65248299190852],[-122.31754971219269,47.65250705839409],[-122.3175119569358,47.65253497042121],[-122.31745637744066,47.65257819579519],[-122.31740292014844,47.65262469230348],[-122.31739586318166,47.65266180130542],[-122.31744018343964,47.65268615843058],[-122.31749493982839,47.65268518790995],[-122.31758286529168,47.65267333090468],[-122.31760503928254,47.65270376103373],[-122.31763800392106,47.65275680039876],[-122.31766148917283,47.65279762406328],[-122.31768916409479,47.65284306319461],[-122.31773517930273,47.65289126234736],[-122.31777588937263,47.65293130482139],[-122.31780221410192,47.65296497962884],[-122.31782115774293,47.6529888534868],[-122.31777519487795,47.65301357376814],[-122.31774123825512,47.65303239627523],[-122.31776014224667,47.65305489974958],[-122.31783484421707,47.65311287900732],[-122.317893762799,47.65315105590813],[-122.317928012661,47.65317802938677],[-122.31795485029618,47.65319413149932],[-122.31800043608447,47.65322725508069],[-122.31803563777997,47.6532520312964],[-122.31807690869749,47.65327617102455],[-122.31812229894288,47.65330244220448],[-122.31815569148516,47.65333491078847],[-122.31819214226613,47.65336789648637],[-122.31823710516582,47.65341473825757],[-122.31829793931333,47.6534844230309],[-122.31834586641851,47.65352848393753],[-122.31838518779287,47.65355539115259],[-122.31842066391594,47.65358976040145],[-122.31845618709679,47.65362575720197],[-122.3184926774188,47.65366011320354],[-122.31851462480638,47.65368257722097],[-122.31853568359108,47.65370946528844],[-122.31855057090917,47.65373339228388],[-122.31858678347461,47.65372250901743],[-122.31861054360837,47.65370189098539],[-122.31863526400349,47.65367937568499],[-122.3186688847708,47.65364877539302],[-122.31868847044065,47.65362409870675],[-122.3187252117541,47.65359619951782],[-122.31876109899113,47.65360944158844],[-122.3188135976873,47.65363591986566],[-122.31884231875136,47.65368241591523],[-122.31880639975179,47.65373909564852],[-122.31878486418128,47.65376653925968],[-122.31877158950589,47.65379905937618],[-122.31880726918325,47.65384053802487],[-122.31884046269482,47.6538305079707],[-122.31889648904762,47.65380291416698],[-122.31894663741372,47.65381815497243],[-122.3190131777874,47.65383896599118],[-122.31905324704846,47.65385652341319],[-122.31908413498434,47.65387231516285],[-122.31915603539204,47.65390316707784],[-122.31920375669861,47.65390447271238],[-122.31926438773914,47.65389601245363],[-122.31931783309163,47.65388460401768],[-122.3193684008408,47.6538790171848],[-122.31945058796607,47.65387931597503],[-122.31950051742457,47.65388689022652],[-122.31954859131579,47.65390053001673],[-122.319585438498,47.65391183104485],[-122.3196215453236,47.65393273880315],[-122.31966690631056,47.65395793858859],[-122.31971030840401,47.65398560636347],[-122.3197455738686,47.65401256605887],[-122.31979527306034,47.65404756316631],[-122.31982337686519,47.65407243149206],[-122.31987401243157,47.65410467452197],[-122.31991111034604,47.65412475499108],[-122.319943955911,47.65413803640185],[-122.31997871949453,47.65414743659507],[-122.32003164561515,47.65415334367388],[-122.32006831253213,47.65415834899409],[-122.32010692981332,47.65416058666674],[-122.32015483876503,47.65416844427942],[-122.32016490694988,47.65420121680851],[-122.32016570674412,47.65422918334506],[-122.32019466868132,47.6542485563831],[-122.32023348884495,47.65425790353753],[-122.32028111617133,47.65425591042926],[-122.32032566196341,47.65425258697663],[-122.32036722000728,47.65425123042879],[-122.32042505147155,47.65425128919467],[-122.32050734944535,47.65425544160252],[-122.32054905572062,47.6542592669648],[-122.32059291693997,47.65426747698805],[-122.32064305890445,47.654282460228],[-122.3206759905122,47.65429873904474],[-122.32071734190768,47.65432561896488],[-122.32075927615791,47.65433741017904],[-122.32081109357804,47.65434003255837],[-122.32100593408303,47.65434160059917],[-122.32104920718723,47.65432925305394],[-122.32104850128778,47.6543045844636],[-122.3210553687022,47.65376457811266],[-122.32105670745921,47.65374043945894],[-122.32105589984435,47.65371221610986],[-122.32109434351376,47.653708414716],[-122.32130735865354,47.65370700295242],[-122.32157006746947,47.65370494104496],[-122.3216766103171,47.65370547658604],[-122.3217527120276,47.65370585289145],[-122.32179165029603,47.65371931105624],[-122.32178990308245,47.65390634683339],[-122.32180098687493,47.65393910595694],[-122.32184259121762,47.65393937608804],[-122.32192575331379,47.65393828908747],[-122.32197642261808,47.65393625585411],[-122.32199486081356,47.65390696701543],[-122.32200620654183,47.65387802744946],[-122.32202130263006,47.65383832812532],[-122.32204040169006,47.65379669173029],[-122.3220596252759,47.65375942335388],[-122.32207590831088,47.65372574950251],[-122.32211713598703,47.65371287163252],[-122.3221699282231,47.65371410937978],[-122.32221762366048,47.65371451383523],[-122.32232412115754,47.65371346435651],[-122.32238895682812,47.6537101317158],[-122.32245362075484,47.65370080310479],[-122.32249357469485,47.65369659611738],[-122.32246481894806,47.65465851425748],[-122.32244591023286,47.65594388530027],[-122.32196741572004,47.65595476017556],[-122.32086307196384,47.65593685189843],[-122.32000347466173,47.65590103534418],[-122.31962740084205,47.65587118821563],[-122.31906627482539,47.65579955510712],[-122.31870213985714,47.65575179970145],[-122.31846336282877,47.65569807487007],[-122.31832009661176,47.65563241118726],[-122.31825443292895,47.65557868635588],[-122.31817683039473,47.65566225831581],[-122.31805744188054,47.65585924936421],[-122.31799177819775,47.65602042385836],[-122.31792014508923,47.65621741490676],[-122.31787835910927,47.65645619193512],[-122.31784254255501,47.65672481609203],[-122.31784254255501,47.65693374599185],[-122.31448175588078,47.65689196001189],[-122.31260138678236,47.65685017403192],[-122.31260138678236,47.65827686677641],[-122.31196265823149,47.6582708973507],[-122.31192684167723,47.66124367135386],[-122.30870932122001,47.66121382422531],[-122.30345025717024,47.66120188537388],[-122.30091234020691,47.66125076590333],[-122.30091234020688,47.66125076590333],[-122.29969796372362,47.66125813754369],[-122.29876384587044,47.6612547361756],[-122.29811744606995,47.66125323979037],[-122.29673128937964,47.66125002144755],[-122.29569212291418,47.6612455880889],[-122.29465670664752,47.66124820926364],[-122.29362413384327,47.66124367209537],[-122.29286900953957,47.66123668496128],[-122.29260258461876,47.66123422900085],[-122.2916014310067,47.66121029173564],[-122.29060027831673,47.66118634567152],[-122.2903789567992,47.66118206499458],[-122.29015095905548,47.66117491338475],[-122.29015632236711,47.66082318594513],[-122.29019349967218,47.65843864729283]]]],"type":"MultiPolygon"} +},{ + "id": 890537385, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000046, + "geom:area_square_m":381419.719461, + "geom:bbox":"-122.297276319,47.6527745219,-122.286730593,47.6602715877", + "geom:latitude":47.656627, + "geom:longitude":-122.292703, + "iso:country":"US", + "lbl:latitude":47.656802, + "lbl:longitude":-122.293569, + "lbl:max_zoom":18.0, + "mps:latitude":47.656802, + "mps:longitude":-122.293569, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Union Bay Natural Area" + ], + "name:deu_x_preferred":[ + "Union Bay Natural Area" + ], + "reversegeo:latitude":47.656802, + "reversegeo:longitude":-122.293569, + "src:geom":"mz", + "wof:belongsto":[ + 85853121, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2870a5e0bdc1c796fe232c2f37aa8276", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537385, + "neighbourhood_id":85853121, + "region_id":85688623 + } + ], + "wof:id":890537385, + "wof:lastmodified":1566631081, + "wof:name":"Union Bay Natural Area", + "wof:parent_id":85853121, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.29727631922702, + 47.65277452193083, + -122.28673059302996, + 47.66027158768642 +], + "geometry": {"coordinates":[[[[-122.29727631922702,47.65468125290223],[-122.29726599769774,47.65497830537313],[-122.29717305343816,47.65524301176885],[-122.29709688789603,47.65554277590159],[-122.29705840249993,47.65598175717808],[-122.29699501625358,47.65621044780622],[-122.29693716542228,47.65641179867173],[-122.29687800205404,47.65655987406767],[-122.29688447807366,47.65691342249062],[-122.29691372931769,47.65714060214726],[-122.29689759277223,47.65733755782355],[-122.2968337084058,47.65757639197874],[-122.29673263909535,47.65788246628529],[-122.29668088482541,47.65806716188782],[-122.29668193420488,47.65825024881025],[-122.2967106113789,47.65841826064061],[-122.29669044218885,47.65862402619074],[-122.29568299208044,47.65892334722184],[-122.29466878417099,47.65925901966988],[-122.29413552798536,47.65944482222564],[-122.29380953628061,47.65955450699428],[-122.29368115181731,47.65969594435898],[-122.29349381472164,47.65981641897601],[-122.2932117932485,47.65993153986614],[-122.29211786209578,47.66027158768642],[-122.29086981801589,47.65874551168925],[-122.29072466818673,47.65858524724853],[-122.29056494692729,47.6584835243466],[-122.29038971335299,47.65844345106294],[-122.29019349967218,47.65843864729283],[-122.28859086509991,47.65841971995956],[-122.28673635404509,47.65839186022833],[-122.28673335829677,47.65694190773611],[-122.28673059302996,47.65557275494536],[-122.28678834603565,47.65562441533756],[-122.28681418388385,47.65564135134364],[-122.28682808131875,47.6556666658357],[-122.28685850505605,47.6557024800431],[-122.28690548613505,47.65574986507711],[-122.2869320677104,47.65579339741149],[-122.28695210895459,47.65585702112648],[-122.28695754559484,47.65590630728936],[-122.2869373557256,47.6559825263831],[-122.28689281118197,47.65602229647357],[-122.28687449189354,47.65605654797115],[-122.28685141498003,47.656102084998],[-122.28684921547618,47.65613227497136],[-122.28686309696303,47.65615703231929],[-122.28692497818737,47.65619300236968],[-122.28698985753009,47.65619106029131],[-122.28701457723045,47.65616799506265],[-122.28703769234964,47.6561238284136],[-122.28712173275154,47.65604516610242],[-122.28715704593289,47.65603811738473],[-122.2872696559113,47.65603779381227],[-122.28732300852299,47.65605904848645],[-122.28736446624841,47.65609030891464],[-122.28740013134947,47.65613209736327],[-122.28743387426621,47.65617772296159],[-122.28744577445099,47.65620417687168],[-122.2874705044767,47.65625403058586],[-122.28748235079253,47.65627855728636],[-122.28750975561536,47.65631522413224],[-122.28752207806417,47.65635675324585],[-122.28754010936005,47.6563847566742],[-122.28756699847916,47.65643925284576],[-122.28757378962524,47.65646440108019],[-122.28756950590488,47.65652889229224],[-122.28755609599172,47.6565572971822],[-122.28753081501571,47.65659656463652],[-122.28749924649567,47.65666495993275],[-122.28751442515755,47.65673605749118],[-122.28756362965474,47.65675406623283],[-122.28762415415562,47.65674151158704],[-122.28768707530237,47.65674207901269],[-122.28772864336855,47.65674099119439],[-122.28777866321546,47.65675187731738],[-122.28783850132872,47.65678731563462],[-122.28787379103564,47.65681565594797],[-122.28791821391501,47.65688033901969],[-122.28798645739172,47.65692608081942],[-122.28800130879576,47.65694919783704],[-122.28803154236076,47.65697815967749],[-122.28807589089598,47.65700389898507],[-122.28811798888476,47.65702174100203],[-122.28815275703391,47.65703145088197],[-122.28820077884981,47.65704343316505],[-122.288240602855,47.65705252143959],[-122.28829970702954,47.65702546061967],[-122.28835619903302,47.65697756815037],[-122.28837454935643,47.65694442999889],[-122.28840652916828,47.65692701257581],[-122.28844194347853,47.65692356140091],[-122.28847781144768,47.65690005333422],[-122.28849561690258,47.65684747120263],[-122.28849617195057,47.65679480939408],[-122.28850361094446,47.65677059373044],[-122.28855451130906,47.65666793307624],[-122.28857462120442,47.65662517575266],[-122.28859514648094,47.65656103395043],[-122.28861587124092,47.65650400171085],[-122.28864838281535,47.6564331087945],[-122.28867639284888,47.65634637852713],[-122.28869895286142,47.65631867047584],[-122.28873543640906,47.6562809305725],[-122.28885797728762,47.65616420152752],[-122.28887652553392,47.65613817287365],[-122.28889363084113,47.65609682443637],[-122.28888164549889,47.65606737304346],[-122.2888387952498,47.6560588806708],[-122.28879838698509,47.65606513795061],[-122.28873592704372,47.6560810171137],[-122.28863674065882,47.65608969643986],[-122.28855253750056,47.65608995847751],[-122.28850088847484,47.65609336021622],[-122.28844349972468,47.65610917442204],[-122.28838183135031,47.65611707443455],[-122.28831477707918,47.65611381805339],[-122.28827646706385,47.65612253322887],[-122.28824067625202,47.65614878240439],[-122.28819766282494,47.65617071069964],[-122.28812621242703,47.65619163133004],[-122.28807154205631,47.6562320882294],[-122.28805716507171,47.65626217651792],[-122.28804201837508,47.65630101456352],[-122.28801543817215,47.6563663475858],[-122.28801413793309,47.65639241305215],[-122.28799732353785,47.65644416818952],[-122.28798379166071,47.65646820507828],[-122.2879424383096,47.6564769590082],[-122.28790450584843,47.65646291951951],[-122.28788439155812,47.65643301485517],[-122.28787377531084,47.65637993873798],[-122.28785656628583,47.65634507000692],[-122.28784333776557,47.65630740828611],[-122.28781514808901,47.6562789776437],[-122.28778874165485,47.65624174112448],[-122.2877705047031,47.65617012566097],[-122.28776976903428,47.65614382928649],[-122.28779847053499,47.65608176837775],[-122.28786464395189,47.65601730064704],[-122.28790442320042,47.6559885589324],[-122.28792890392982,47.65595697036593],[-122.28793224810114,47.6559314361401],[-122.28792501228945,47.65589039874335],[-122.28790378511596,47.65585695224085],[-122.28788223512174,47.6558119849603],[-122.28789154078855,47.65578196111237],[-122.2878998790365,47.65575362095232],[-122.28793713286736,47.6556708858658],[-122.28796702263315,47.65565131044541],[-122.28799907128898,47.65563637713647],[-122.28804293005545,47.65560839716751],[-122.28808047993931,47.65557252892777],[-122.28811918345566,47.65554161571526],[-122.28815804751618,47.65551644130247],[-122.28820034470252,47.65550519033818],[-122.2882940685713,47.65548261419629],[-122.28834119961823,47.65546281805682],[-122.28839045841197,47.65544655077059],[-122.2884427368412,47.65542943097518],[-122.28847679126198,47.65541365799464],[-122.28856051021458,47.6553961364217],[-122.2886124109807,47.65540177144113],[-122.28866714010033,47.65539970083262],[-122.2887335085121,47.65541474757201],[-122.28880287436435,47.65542812815337],[-122.28884169867965,47.65543778597393],[-122.28891482139031,47.65544040712902],[-122.28897439104988,47.65543004910315],[-122.28902399497471,47.65542611593595],[-122.28908693013574,47.65542723938324],[-122.28919419049085,47.65541708553472],[-122.28924977303866,47.65540926287059],[-122.28929319198937,47.65540185294557],[-122.28932959587213,47.65539753175334],[-122.28937400615042,47.65538929486605],[-122.28940199766156,47.65537441302542],[-122.28943820187386,47.65536298223308],[-122.28947752579845,47.65535425369326],[-122.28953993065997,47.65533644691826],[-122.28957973125127,47.65530851823301],[-122.2896178106275,47.65529157945096],[-122.28968413397016,47.65526879552915],[-122.28972530969733,47.6552537450101],[-122.28978421068568,47.65521953104326],[-122.28983405391759,47.6551879177749],[-122.28985682758889,47.65516787585927],[-122.28990238994921,47.65512834846484],[-122.28994792275888,47.65508775025932],[-122.28997794942632,47.65507309950626],[-122.28999555218188,47.65504956763971],[-122.29002537961192,47.65502780730305],[-122.29006560931326,47.65501521082843],[-122.29012609277618,47.6550012840918],[-122.29017626562914,47.65498144861926],[-122.29020628444508,47.65496654064145],[-122.29024714414685,47.65497642885691],[-122.29027321324203,47.65500158723883],[-122.29026901869263,47.65503291646559],[-122.29027622502811,47.6550728401252],[-122.29028333363566,47.6551092946124],[-122.29027829897117,47.65514684681127],[-122.29024972455515,47.65517711702418],[-122.29025066910415,47.65521082292858],[-122.29029961989933,47.65525599624056],[-122.29031310318247,47.65530269445237],[-122.29029798969908,47.65537884891488],[-122.29028237689488,47.65543718734731],[-122.29025886519018,47.65550329558832],[-122.29023876432046,47.65554631038204],[-122.29022932921926,47.65557166569643],[-122.29019049603492,47.65570651953019],[-122.29019373768413,47.65574979270713],[-122.29018956531648,47.65578193590262],[-122.29017351420798,47.65582464161428],[-122.2901645854807,47.65586807047308],[-122.29016952591505,47.65589954010364],[-122.29019164630525,47.65592860481048],[-122.29019134624043,47.6559541005276],[-122.29018595207467,47.65597884750169],[-122.29016656679977,47.65601118494649],[-122.29014205619971,47.65604166040439],[-122.29010736454028,47.65607089483358],[-122.29003998780286,47.65609232156317],[-122.28998853139657,47.65610257672031],[-122.28993998664963,47.65610812456671],[-122.28987729662043,47.65611578119525],[-122.2898085978924,47.65612625678472],[-122.28969542707704,47.65614278463582],[-122.28960073577547,47.65616704527586],[-122.2895486484141,47.65619101836025],[-122.28956867068025,47.65621762512295],[-122.28961069227962,47.65623272541142],[-122.28964552136907,47.65624461921183],[-122.28967440294211,47.65626151566395],[-122.28970751086941,47.65628439901213],[-122.2897437158325,47.65630917099223],[-122.28978582102589,47.65632726921351],[-122.28986179529269,47.65635920132785],[-122.28996315723444,47.65635572015589],[-122.29002058419263,47.65634127559432],[-122.29008230538604,47.65633525909571],[-122.29013281797573,47.65632750121225],[-122.29018110126759,47.6563126165344],[-122.29022120950836,47.65629565160523],[-122.29026940873885,47.65627776925029],[-122.29030557498392,47.65626496777298],[-122.29036195637569,47.65624942242393],[-122.2904114925679,47.65624304780775],[-122.29045488135719,47.65623452384408],[-122.29051092503103,47.65624314653926],[-122.29057400647505,47.65624945153043],[-122.29062288142387,47.65625568100685],[-122.29066246754029,47.65625628845566],[-122.29071367818005,47.65627345591653],[-122.29075135844853,47.65627845768955],[-122.29079309537288,47.65628340753639],[-122.29082863155429,47.65628432401891],[-122.29090665037936,47.65628058339097],[-122.29097136877948,47.65627290023586],[-122.29093093010172,47.65624188496126],[-122.29089805941003,47.65622748194735],[-122.29085574618041,47.65620197459343],[-122.29082451243387,47.65617358363273],[-122.29079754359002,47.65615254993587],[-122.29074807681165,47.65612520619359],[-122.29071480764374,47.65609658398773],[-122.29068879901864,47.65607361008313],[-122.29063638954453,47.65604986000961],[-122.29057472920921,47.65602185796352],[-122.2905437574271,47.65600280367415],[-122.29050858977624,47.65597883258046],[-122.29047439071552,47.65595322162125],[-122.29042988876411,47.65592200125056],[-122.29039827850897,47.65588016184403],[-122.29040257415835,47.65578002479325],[-122.29040660091678,47.6556702941727],[-122.29041242561819,47.65558851731857],[-122.29042057040098,47.65555332422384],[-122.29042180755503,47.65548887218532],[-122.29042214603892,47.65535613894106],[-122.2904269021366,47.65530865038895],[-122.29043930321463,47.65528051495529],[-122.2904512901617,47.65523760393597],[-122.29045467077746,47.65517723717456],[-122.29046150124447,47.65513135024388],[-122.29047347253326,47.6550878824273],[-122.2904682090951,47.65504489203531],[-122.29045322681668,47.65501710695656],[-122.29044426815506,47.65498705964843],[-122.29043374990887,47.65493758171319],[-122.2904365850334,47.65489393070924],[-122.29046277029303,47.65485083802674],[-122.29046813300901,47.65482497779995],[-122.29047719934404,47.6547864741106],[-122.29049013065755,47.6547410661117],[-122.29049852853558,47.65471490978503],[-122.29049023112961,47.65467225829539],[-122.29048062671167,47.65461916944216],[-122.29048090417423,47.6545566575743],[-122.29049350480101,47.65449947163632],[-122.29050433095685,47.65445134876751],[-122.29052501436202,47.65439294541579],[-122.29055206696637,47.65434461456663],[-122.29056421446647,47.6543074426946],[-122.2905724201716,47.65427443396289],[-122.29058966104743,47.65423801046966],[-122.29060523499976,47.65421450446147],[-122.29065260982554,47.6541672844405],[-122.29070255064707,47.65413922558263],[-122.29073863177739,47.65412342596985],[-122.29078295551177,47.65411214809001],[-122.29082144903334,47.65411002729194],[-122.2908763683764,47.65407860584367],[-122.29090428138338,47.65406098246982],[-122.29093708109933,47.65403669894973],[-122.29095646514909,47.65400436102069],[-122.29095526681793,47.65396161869769],[-122.29098838893343,47.65394885594215],[-122.29103468052602,47.65397157014991],[-122.2910676795227,47.65399059869623],[-122.29110790157311,47.65401394756071],[-122.29115180305176,47.65402379650814],[-122.29113115830195,47.65404736785613],[-122.29110037233436,47.6540710686618],[-122.291066581366,47.65409617882465],[-122.29104945615197,47.65413671396965],[-122.29107450388294,47.65416162797857],[-122.29109043123883,47.6541869159899],[-122.29112270087231,47.65421610751316],[-122.29114660366312,47.65423636646448],[-122.2911905593773,47.65424814260101],[-122.29123108123736,47.65424599605136],[-122.29128570094834,47.65424006977644],[-122.29132742831752,47.65420855972918],[-122.29134479957119,47.6541768048461],[-122.29135325817674,47.65415283248009],[-122.29136448341818,47.65411897111934],[-122.29141364030869,47.6540991480913],[-122.29158610555804,47.65409886774934],[-122.29174432575944,47.65409709858699],[-122.29183542559231,47.65408963405196],[-122.29190024084568,47.65408550480169],[-122.29200171357449,47.65408613339387],[-122.29207156095424,47.65408056869075],[-122.2921392195757,47.65406929111145],[-122.29220484941175,47.65405803948067],[-122.29226816614921,47.65403666343535],[-122.29232574375422,47.6540277000485],[-122.29236323693762,47.65402610571922],[-122.29249016381442,47.65402996347542],[-122.29252142843717,47.65405946757043],[-122.29253099675739,47.65414734521709],[-122.29256565003776,47.65418914505163],[-122.29261326273043,47.65418660671855],[-122.29264534762456,47.65417304286138],[-122.29267936817051,47.65415615504148],[-122.2927128957968,47.65412170766265],[-122.29272433533291,47.65409551217798],[-122.29273482995653,47.65407181404314],[-122.29273913886621,47.6540445959447],[-122.29273915274511,47.65400894986044],[-122.29275449483657,47.65397722075367],[-122.29278123914987,47.65395412792905],[-122.29282436423084,47.65393630947882],[-122.29286567677747,47.6539261830093],[-122.29290909397443,47.6539187717055],[-122.29298240523545,47.65389204046755],[-122.2930584613092,47.6538908083656],[-122.29312028799451,47.65388864497088],[-122.29316072410391,47.65388345659191],[-122.29320108324495,47.653875527381],[-122.29324145800851,47.65386815495012],[-122.29329696853812,47.65385784631313],[-122.29334042410035,47.65385180525363],[-122.29339099512512,47.65384622994776],[-122.29346598289379,47.65384308372302],[-122.29350242329735,47.6538401312614],[-122.29354906843514,47.65383927627349],[-122.29362700641316,47.65383279296454],[-122.2936795509643,47.65382526432687],[-122.2937390100648,47.6538110490452],[-122.29377840134099,47.65380480267303],[-122.29381787735372,47.65380155461951],[-122.29387756017186,47.65379530524784],[-122.29392333621027,47.65379964513012],[-122.29397037354315,47.65381275157692],[-122.29402547019113,47.65382382708817],[-122.29410673560793,47.65382745443395],[-122.29421536802204,47.65383017402082],[-122.2942924614814,47.65382974204431],[-122.29435019255966,47.65382625961858],[-122.29439901152423,47.65383056027259],[-122.29444152984789,47.65382727262035],[-122.29451452781385,47.6538255221355],[-122.29455052210604,47.65380668052411],[-122.2945927936409,47.65379461322033],[-122.29464950331912,47.65379088648429],[-122.29473444717277,47.65378101336619],[-122.29477886296233,47.65377303153527],[-122.29483865347309,47.65377063642233],[-122.29494698531769,47.65376264815703],[-122.29501087077418,47.65376157094922],[-122.2950868416447,47.65375729704643],[-122.29514978213759,47.65375867396374],[-122.29522459265284,47.6537492309837],[-122.29527115216669,47.6537453341493],[-122.29531066605742,47.65374345599314],[-122.29537266229033,47.65374733015303],[-122.29548221648511,47.65374673754467],[-122.29562781820933,47.65372923008774],[-122.29568443499016,47.65372220522644],[-122.29575106207,47.65371038173611],[-122.29579247334053,47.65370380899223],[-122.29588649909144,47.65369219056669],[-122.29593713060926,47.65368879815877],[-122.29603550553328,47.65368753468387],[-122.2960970776044,47.65367633291061],[-122.29618445773342,47.65368095175521],[-122.29622959866438,47.65369875169012],[-122.29626664859559,47.65371746945208],[-122.2963036990826,47.65373618754611],[-122.29633969639296,47.65375354790406],[-122.2963900851706,47.65377757858248],[-122.29641990505667,47.65379171912435],[-122.29644970207228,47.65380504639546],[-122.29650404736054,47.65382547012807],[-122.29657481291491,47.65385253772614],[-122.29663970464757,47.65385114694494],[-122.29668426674444,47.65384838918833],[-122.29675284535629,47.65383379822831],[-122.29678967521609,47.65380864693865],[-122.29686718837074,47.65378708587654],[-122.29689907056677,47.65376636845825],[-122.29694604713652,47.65377728965491],[-122.29698049512632,47.65381167861351],[-122.29699062580525,47.65384719435594],[-122.29698981750751,47.65396262490913],[-122.29697242634882,47.65399356704633],[-122.29693229918244,47.65400972074043],[-122.29687795816568,47.65402550009087],[-122.2968395348768,47.6540301069311],[-122.29679643786442,47.65401283761069],[-122.29674809981397,47.65398959501388],[-122.296708145278,47.65397584169617],[-122.29666952913291,47.65397359573936],[-122.29663195845895,47.65397245067761],[-122.29658105669562,47.65396624948832],[-122.29653179342463,47.65398222034347],[-122.29652027197784,47.65400541821791],[-122.29649747005449,47.65402434822966],[-122.29644342556733,47.65408673707631],[-122.29640334395661,47.65410451781157],[-122.29636537613433,47.65412531361691],[-122.29632856822056,47.65415127838953],[-122.29630072689116,47.65417138673739],[-122.29628651673139,47.65420721521913],[-122.29630753341701,47.65423299380029],[-122.29633245235684,47.65425323863569],[-122.29636587770277,47.65428734118417],[-122.29638690960951,47.65431367655121],[-122.29641401113481,47.65433937729378],[-122.29644292570673,47.65435738561189],[-122.29648298774437,47.65437495097309],[-122.29659558229763,47.65441026392055],[-122.29665164000939,47.65441939757868],[-122.29675613290853,47.65441916887864],[-122.29679908754788,47.65439531014211],[-122.2968360335218,47.65437427041149],[-122.29687219352927,47.65439736974575],[-122.29690730878177,47.65441941132372],[-122.29694750243664,47.65444164453789],[-122.2969794753003,47.65446017041376],[-122.29701194081508,47.65449621301393],[-122.29701174166573,47.65456120923687],[-122.29701028843617,47.65461769537298],[-122.29701834149823,47.65468751250515],[-122.29704225102033,47.65474397275228],[-122.29725045997567,47.65473388469757],[-122.29727102294777,47.65468949174331],[-122.29727631922702,47.65468125290223]]],[[[-122.29446065456207,47.65342477020025],[-122.29441905077604,47.6534244900671],[-122.29439695985319,47.65339653942296],[-122.2944267917202,47.6533750351033],[-122.29445658503981,47.65335216001656],[-122.29449680514372,47.65333930480526],[-122.29452006671769,47.65330061861796],[-122.29453474549415,47.65324533375394],[-122.29455590846344,47.65320418959261],[-122.29460197217806,47.65314657376479],[-122.2946574015554,47.65309732111881],[-122.29468608060002,47.65307090420296],[-122.29471142427829,47.65303411915249],[-122.2947410246671,47.65300439159859],[-122.29479096216551,47.65297633094699],[-122.2948375523231,47.65297354787807],[-122.29486276462512,47.65293209477475],[-122.29488616419765,47.65289833370198],[-122.29491279143582,47.65287112915115],[-122.29497324545648,47.65282018368948],[-122.29500913894913,47.65279778715104],[-122.29505535033442,47.65278155603558],[-122.29516485674608,47.65277933650427],[-122.29521950577941,47.65277452193083],[-122.2952784110841,47.65277676482007],[-122.29531767418503,47.65280205241946],[-122.29537753577992,47.65283830074579],[-122.29542628765965,47.65287631949263],[-122.29545740580227,47.65290059797713],[-122.29548973128738,47.65293171546652],[-122.29553095295114,47.65295449330637],[-122.29557322727959,47.65297862816745],[-122.29561036973642,47.65300064409763],[-122.29573514998901,47.6530004127122],[-122.29577050743895,47.65299503169877],[-122.29584394724618,47.65297296698692],[-122.29589994631561,47.6529440137369],[-122.29599216928062,47.65290444154761],[-122.29606168381693,47.65288709681186],[-122.29615838761239,47.65286254791886],[-122.29620890262869,47.65285504416649],[-122.29626851417895,47.65284630954599],[-122.29630840203993,47.65282167611672],[-122.29635449735352,47.65280133325079],[-122.29647213267205,47.65279956467498],[-122.29651297619289,47.65280889384944],[-122.29657447387596,47.65283115353824],[-122.29662991718587,47.65285456216099],[-122.29668141213438,47.65288187729013],[-122.29671133163991,47.65289957253609],[-122.29673331631152,47.65292371113205],[-122.29676365967586,47.65295648190753],[-122.29678782688426,47.6529860760602],[-122.29681282980179,47.65300931877732],[-122.29682364277576,47.65303304357636],[-122.29684050228963,47.65305531976646],[-122.29685203312069,47.65310452726089],[-122.2968772446896,47.65313517914648],[-122.29690417584062,47.65315484064757],[-122.29695903785444,47.65319363730842],[-122.29700142931857,47.65322188355688],[-122.29704077747608,47.65325016855432],[-122.29708028053325,47.65328393551235],[-122.29710112723325,47.65330367552405],[-122.2971281514088,47.65332663493174],[-122.29716547150765,47.65335494595571],[-122.29718855508717,47.65338206906299],[-122.29719745586642,47.65340993147027],[-122.29711280609342,47.65343021359318],[-122.29702345062505,47.65342750593339],[-122.29693813712595,47.65342423243118],[-122.29673624735206,47.6534243420235],[-122.29652019092825,47.65342574726554],[-122.29631532098369,47.65342812238234],[-122.29613979999388,47.65342789181874],[-122.29605149002471,47.6534262843091],[-122.29580504637043,47.65342944938978],[-122.29574235372998,47.6534368524205],[-122.29569484907583,47.6534432033115],[-122.29545659577254,47.65344900462127],[-122.2953970453318,47.65345992283205],[-122.29530991924544,47.65346434050519],[-122.29517408213161,47.65346826905434],[-122.29512651597312,47.65347243568609],[-122.29490924481672,47.65346674133342],[-122.29473774161727,47.65346508649134],[-122.29460765085537,47.65345690188116],[-122.29453853289792,47.65345230478011],[-122.29450186893834,47.6534472912413],[-122.29446065456207,47.65342477020025]]]],"type":"MultiPolygon"} +},{ + "id": 890537387, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000292, + "geom:area_square_m":2435094.49526, + "geom:bbox":"-122.419807,47.6312621149,-122.393624543,47.654174071", + "geom:latitude":47.644317, + "geom:longitude":-122.408211, + "iso:country":"US", + "lbl:latitude":47.645871, + "lbl:longitude":-122.41039, + "lbl:max_zoom":18.0, + "mps:latitude":47.645871, + "mps:longitude":-122.41039, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Briarcliff" + ], + "reversegeo:latitude":47.645871, + "reversegeo:longitude":-122.41039, + "src:geom":"seagv", + "wof:belongsto":[ + 85688623, + 102191575, + 85633793, + 101730401, + 102086191, + 85831927 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q28454570" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ef7fa14af735523dc352993822d681d5", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537387, + "neighbourhood":85831927, + "region_id":85688623 + } + ], + "wof:id":890537387, + "wof:lastmodified":1566631085, + "wof:name":"Briarcliff", + "wof:parent_id":85831927, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869139 + ], + "wof:tags":[] +}, + "bbox": [ + -122.41980699978437, + 47.63126211486192, + -122.39362454274608, + 47.65417407104449 +], + "geometry": {"coordinates":[[[[-122.41980699978437,47.65282711583686],[-122.41753679011821,47.65277558429587],[-122.41805319735437,47.65341140581852],[-122.41821639237169,47.65366908817942],[-122.41830871214391,47.65390418777078],[-122.41838656084749,47.65417407104449],[-122.40364202457674,47.65416514441239],[-122.40360628299418,47.65145387500379],[-122.40361424367161,47.65044100349719],[-122.40361571467757,47.64681148418533],[-122.40272719237912,47.64681555082463],[-122.40114328018159,47.64681980423017],[-122.40093635573899,47.6468204679451],[-122.40093779651654,47.64659907005474],[-122.40094386491751,47.64548806832619],[-122.40098743121773,47.64264309943854],[-122.40098907176767,47.6398374820355],[-122.40102792720376,47.63922538259823],[-122.4009870156808,47.63923091586146],[-122.40094858417172,47.63923461547106],[-122.40090960212849,47.63923686606745],[-122.40087057438619,47.63923761787935],[-122.40083150196521,47.63923687019073],[-122.40079238567166,47.63923466686342],[-122.40075373083869,47.63923095741828],[-122.40071553928919,47.6392257850017],[-122.40067781049663,47.63921914927042],[-122.40064054628363,47.63921109337083],[-122.40060425458375,47.63920165313102],[-122.4005684287481,47.63919083517548],[-122.40053408336082,47.63917866870926],[-122.40050020514268,47.63916516768176],[-122.40046781176507,47.6391504465451],[-122.40043690272043,47.63913450565848],[-122.40040697392807,47.63911743689946],[-122.39963078385883,47.63910870944361],[-122.39835454488777,47.63822343873732],[-122.39809038806214,47.63802317247108],[-122.39792288755905,47.63771485111469],[-122.39790146517063,47.63653079210741],[-122.39787507615316,47.63575472497737],[-122.39750408904008,47.63377230470026],[-122.39720912631019,47.63327181924594],[-122.39415349272856,47.63229371293244],[-122.39362454274608,47.63224063917912],[-122.39369525823884,47.63126211486192],[-122.39439099454654,47.63131066608419],[-122.39493407881116,47.63139574331322],[-122.39536695587435,47.63149263630813],[-122.39574435428138,47.63161478705973],[-122.39574415619096,47.63149755925353],[-122.39576428254314,47.63151099564966],[-122.39580028144016,47.63152776813406],[-122.39584013759426,47.63153793200402],[-122.39588712253898,47.63154906920476],[-122.39596846699565,47.63155617891473],[-122.39602038952555,47.6315628781929],[-122.39606931949064,47.6315712467401],[-122.39611936220385,47.63158289887769],[-122.39618237706161,47.63158751784881],[-122.3962252174375,47.63159571301617],[-122.39627821880181,47.63160458223403],[-122.39632520391105,47.63161571960482],[-122.39637731521444,47.6316287141665],[-122.39642437501477,47.63164233543015],[-122.39647520886524,47.63164656449317],[-122.39652651372312,47.63163270653269],[-122.3965751387713,47.63163092476547],[-122.39661990691299,47.63163579407273],[-122.39669574585369,47.63166217307687],[-122.39672710502808,47.63169327609927],[-122.39674697622189,47.6317133114067],[-122.3968035620447,47.63174021203793],[-122.39684541344484,47.63174923448773],[-122.39690082990394,47.63177096641334],[-122.39693696967527,47.63179240643862],[-122.39701655076401,47.6318083226254],[-122.39705813830702,47.6318085656256],[-122.39713764477511,47.63182199779438],[-122.39718276002908,47.63183838699103],[-122.39723698150603,47.63185409440526],[-122.39725591271062,47.63187658503181],[-122.39728519557283,47.63190608822256],[-122.39735974084208,47.63192314456008],[-122.3974037434326,47.63193625006989],[-122.39744977285712,47.63194932806447],[-122.397497747711,47.63195963707896],[-122.39753676398085,47.63197555328428],[-122.39757354634489,47.63198464477401],[-122.39760341470344,47.63196615414788],[-122.39768470207375,47.63197133512755],[-122.39773785273445,47.63198512907316],[-122.39777864135962,47.6319925375802],[-122.39781143483629,47.63200386903435],[-122.3978543577346,47.63201480434201],[-122.3979014672184,47.63203005218147],[-122.39794226363809,47.63203771779412],[-122.39800743072634,47.63204641900218],[-122.39804125470948,47.63205829358772],[-122.39809021895616,47.63206777447508],[-122.39813306723543,47.63207622574496],[-122.39817177841952,47.63208199199085],[-122.39821767672643,47.63209070104087],[-122.39826675572712,47.6321039937065],[-122.39832709433186,47.63212073053438],[-122.3983729179571,47.63212695558929],[-122.39844223448829,47.63213872746351],[-122.39849430560652,47.63215035068309],[-122.3985569887755,47.63216075676288],[-122.39861010634878,47.63217343674168],[-122.39867646526754,47.63218803419441],[-122.39873211293538,47.6322005508656],[-122.39880276169563,47.63222288669395],[-122.39884684688933,47.63223873274939],[-122.39888113702271,47.63224922938792],[-122.39891696849881,47.63224355222417],[-122.398953397311,47.63224086633524],[-122.39899624973842,47.63224944568687],[-122.39903233217387,47.63226895790144],[-122.39907928622841,47.63227902302741],[-122.39911205567624,47.63228954051381],[-122.39913512502694,47.63231471580126],[-122.39914012862407,47.63234618070452],[-122.39913388207742,47.63237450111345],[-122.399157998669,47.63240077601242],[-122.39922968605819,47.63242391157623],[-122.39934039920051,47.63246326230452],[-122.39940621052841,47.63249333329649],[-122.39948319012532,47.63252380795893],[-122.39952125126698,47.63254166458935],[-122.39962630329552,47.63259506030928],[-122.39978219064221,47.63265268351849],[-122.39986746248309,47.63268908494259],[-122.39996709926156,47.63273102964284],[-122.40003577946445,47.63275532011657],[-122.40013934787247,47.63279309738655],[-122.40025704262624,47.6328284952479],[-122.40030633831248,47.63284893886131],[-122.40037005754166,47.63287685358876],[-122.40042639151676,47.63289527231252],[-122.40055925161882,47.63292909015494],[-122.40075186655712,47.6329938753973],[-122.40079387711833,47.63300812142105],[-122.40092303745934,47.63305377159692],[-122.40102559343504,47.63309156237026],[-122.4011823826055,47.63314535820113],[-122.40127353949379,47.63317507905563],[-122.40137101927255,47.63321268217143],[-122.40145710745678,47.63324247305182],[-122.40156779096903,47.63328070804738],[-122.40166518851368,47.63331557016776],[-122.40170498055457,47.63332350521054],[-122.40173814497018,47.63331345099639],[-122.40176295141066,47.63329528593128],[-122.40178559872176,47.63327278016444],[-122.40180926745289,47.63325051759013],[-122.40184247313938,47.63324183406807],[-122.40188644388317,47.63325382464426],[-122.40194271292569,47.63327005830272],[-122.40197270731849,47.63328939658015],[-122.40194257005506,47.63333257076263],[-122.40190462108683,47.63338574960471],[-122.40188823853693,47.63341421019896],[-122.40193060441344,47.63344023272624],[-122.40197049605432,47.63345146554943],[-122.4020105039509,47.6334665523094],[-122.40208152735232,47.63350122050594],[-122.40228888601492,47.63358392340228],[-122.40234940024241,47.63360639710536],[-122.40242611781704,47.63362809007471],[-122.40258643879415,47.6336979875899],[-122.40266950419746,47.63372837625372],[-122.40275860326922,47.63375705346257],[-122.4028181533096,47.63378116807606],[-122.40292478366894,47.63381945766248],[-122.40299046696096,47.6338451586547],[-122.40309138714611,47.63389586599884],[-122.40314478939905,47.63391788034795],[-122.40320828005382,47.63393812698586],[-122.40328007038157,47.63396455752661],[-122.4033466687079,47.63398694680491],[-122.40344610391789,47.63402203625283],[-122.40356319598968,47.63407089192448],[-122.40364620437325,47.63409935272541],[-122.403731157484,47.63412504440515],[-122.4038348722668,47.63416748655437],[-122.40392234237234,47.63420933880421],[-122.40405692540243,47.63426643593449],[-122.40411552113788,47.6342924913565],[-122.40418840166198,47.6343213912582],[-122.4042406663977,47.63433930727439],[-122.40432855445646,47.63436140185126],[-122.40439408130351,47.63438187736354],[-122.4045151553827,47.63442819216039],[-122.40462465606501,47.63446069953478],[-122.40467690479876,47.63447805891554],[-122.40473861724577,47.63450655561669],[-122.40478444116955,47.63454623985266],[-122.40480733128888,47.63456537538458],[-122.40484650962919,47.6345865141035],[-122.40489782291638,47.63457290918471],[-122.40496203836125,47.63458354791294],[-122.40503692182256,47.63461156288026],[-122.4052203922964,47.63467539612258],[-122.40526661690303,47.63469476637231],[-122.40531276724178,47.63471169548489],[-122.40540707833838,47.63474492570995],[-122.40548728794123,47.63478139293156],[-122.40553554016853,47.63480073507276],[-122.40572124703301,47.63487139170218],[-122.40576647459964,47.63489133253642],[-122.40581499247533,47.63491945390942],[-122.40593350058576,47.63498144110728],[-122.40601479121003,47.63502007825856],[-122.40619266976933,47.63510013949361],[-122.40628090836648,47.63513375300286],[-122.40633445390141,47.63516043375063],[-122.40637661670358,47.63517960276538],[-122.40647231561709,47.63522515248876],[-122.40652184790784,47.6352532595518],[-122.40664763635881,47.6353211865522],[-122.40672305299663,47.63536675945699],[-122.4067735578239,47.63539348202998],[-122.40687635407693,47.63543893332834],[-122.40692819672147,47.63547634831637],[-122.4069582849375,47.63549868283117],[-122.40700509147274,47.6355372389534],[-122.40706516906258,47.63557865322593],[-122.40712496423242,47.63561073134136],[-122.40718364595824,47.63563952592251],[-122.40723224823981,47.63567038743008],[-122.40726241188074,47.63569520614164],[-122.40729951983863,47.63574842029948],[-122.40731958667189,47.63577474953719],[-122.40736622780388,47.63580782333084],[-122.40744983859882,47.63585602436122],[-122.40749417891394,47.63588008997782],[-122.40762728201976,47.63595502712626],[-122.40773986028499,47.63602202161864],[-122.40783172351873,47.63607477844037],[-122.40787303930919,47.63609944240547],[-122.40795872053035,47.63614898538208],[-122.40805871928529,47.63620244343071],[-122.40811142686715,47.63623487635578],[-122.40815907488019,47.63626767898852],[-122.40830766077514,47.63635144148146],[-122.40838369538727,47.63638385095071],[-122.40844853689543,47.63641504464488],[-122.40861083589492,47.63648272165896],[-122.40875747141521,47.63653553377733],[-122.40880477111868,47.63655681570793],[-122.40890532857004,47.63659518387215],[-122.40899446843096,47.63662492695263],[-122.4090447849082,47.63664535310002],[-122.40907932784027,47.63666402642748],[-122.40913965806378,47.63669695286439],[-122.40919634837202,47.63672688802784],[-122.4092222166567,47.63674379625527],[-122.40923109154342,47.63676890915513],[-122.40923496385948,47.63679627617899],[-122.40927638860433,47.63682449431342],[-122.40931043369271,47.63684347455648],[-122.40939273569522,47.63688183809671],[-122.409461824234,47.63691927049198],[-122.40951051992089,47.63695312892663],[-122.40954978503704,47.63697700676297],[-122.4095806229133,47.63699054720705],[-122.40961051403291,47.63700632879853],[-122.40963640726146,47.63702405087317],[-122.4096781569237,47.63706297534863],[-122.40977375508227,47.63713842937547],[-122.40981302825459,47.63716256428427],[-122.40991194180427,47.63721355081723],[-122.40997800675645,47.63725158179401],[-122.41002886435442,47.63728982334915],[-122.41014345960289,47.63738969237065],[-122.41021940561593,47.63745252202087],[-122.41029712169636,47.63750684381812],[-122.41034370004955,47.63753773243155],[-122.410444268872,47.63760981781432],[-122.4104732130731,47.63762779718153],[-122.41054928338431,47.63766127630794],[-122.41063287595193,47.63770866140059],[-122.41067514968745,47.63773138315609],[-122.41071193842843,47.63774047075025],[-122.41075517639621,47.63772808912492],[-122.41080916648905,47.63773582432479],[-122.41089841026496,47.63780232519406],[-122.41097433259242,47.63786434075686],[-122.41101606705023,47.63790270831374],[-122.4110445708057,47.63793958817573],[-122.41107306732955,47.63797621121089],[-122.41112320370422,47.63802405925312],[-122.41116351663071,47.63804899323588],[-122.41122948350971,47.63808372597169],[-122.41128424851293,47.63811698571685],[-122.41141012470229,47.63818734856403],[-122.41146492242264,47.63822167897563],[-122.41155071063116,47.63827451675954],[-122.41160867517169,47.63831291638823],[-122.4116801028086,47.6383604690311],[-122.411715346835,47.63838547309926],[-122.41175997464276,47.63841887316593],[-122.41178983344599,47.63843354062917],[-122.41184744085548,47.63846016255118],[-122.41191519499417,47.63848690067364],[-122.41198366346202,47.63850377461736],[-122.41202949487429,47.63850999451796],[-122.41207338140084,47.63851898290844],[-122.41211849027701,47.63853480975615],[-122.41215657705787,47.63855321893675],[-122.41218640276212,47.63856677273348],[-122.41222633434664,47.63857911516588],[-122.41229484465411,47.6385973596409],[-122.41237138131696,47.63857928872171],[-122.41242240659933,47.63858954926201],[-122.41247723921424,47.63862499239038],[-122.41260711682774,47.63872683263647],[-122.41264473169234,47.63876307153927],[-122.41266172720897,47.63878832846798],[-122.41266794458679,47.63882607411725],[-122.41270634834801,47.63885488997034],[-122.41272344407027,47.6388834444022],[-122.41269887361214,47.63894273974596],[-122.41268537010713,47.63896567752588],[-122.41266580023107,47.63898925682133],[-122.41266054204667,47.63901649314259],[-122.4126795821513,47.63904227871894],[-122.41271606592547,47.63907467737872],[-122.41274403097032,47.63909374097773],[-122.41279522332245,47.6391094831713],[-122.41283788077398,47.63911137633152],[-122.41295338961871,47.63917421235784],[-122.41297834670722,47.63919443130897],[-122.4130052728826,47.63921269532746],[-122.41306177003619,47.63926949460271],[-122.41309696591313,47.63929287106293],[-122.41315431052394,47.6393441744048],[-122.41319481669819,47.63937540307699],[-122.41324129045336,47.63940273582823],[-122.41328580249683,47.63943228101365],[-122.41342548913585,47.63952301563514],[-122.41348790334665,47.63957424845687],[-122.41351596133684,47.6395963525654],[-122.41355513789109,47.63961718831914],[-122.41359134802008,47.63964055020397],[-122.41363155536324,47.63966192863703],[-122.41366048489911,47.63967935076629],[-122.41368941496279,47.63969677253017],[-122.41373276402253,47.63972140622082],[-122.41376997172048,47.63974419754197],[-122.41380517603116,47.63976783024435],[-122.41385266426636,47.639795148672],[-122.41388902433987,47.63982343550343],[-122.41393118406997,47.63984230175995],[-122.41399368299666,47.63989627538142],[-122.4140418127014,47.63994470742186],[-122.4140666950908,47.63996244256322],[-122.41410710334925,47.63999041585036],[-122.41413129743404,47.64001887187844],[-122.41417881080186,47.64004700375942],[-122.41423415143618,47.64006568688693],[-122.4142882538393,47.6400770179126],[-122.41432600060504,47.64008416275824],[-122.41436494479359,47.64009733245874],[-122.41441581620759,47.64013582886326],[-122.41445680500603,47.64014952680045],[-122.41451752354349,47.64017828943863],[-122.414564946111,47.64020342326188],[-122.4145988455857,47.64021747688125],[-122.41463489773206,47.64023561377925],[-122.4146657232351,47.64024863886949],[-122.41472130649146,47.64027528749879],[-122.4147658865369,47.64030701606087],[-122.41479977831285,47.64032081245735],[-122.4148712999276,47.6403378995718],[-122.41494255586933,47.64034624976513],[-122.41498052775057,47.64036080371257],[-122.41500898669287,47.64039605539341],[-122.41503500848923,47.64041788733809],[-122.41507230009952,47.64044341897344],[-122.41510375110991,47.64047700084598],[-122.41520590181212,47.64053397875477],[-122.41526521890594,47.64058332606639],[-122.41531097230988,47.64062026498161],[-122.41533733699936,47.64065336045502],[-122.41536229573506,47.64067357923353],[-122.41538349103638,47.64070344762403],[-122.41541286341634,47.64073538726228],[-122.41544616657526,47.64076315908259],[-122.41549211232994,47.64080639367396],[-122.41551940766013,47.64083673393275],[-122.4155527943401,47.64086724680527],[-122.41559556535559,47.64090615536784],[-122.41562149644706,47.64092498963345],[-122.41567156426791,47.64097035174807],[-122.41571757685904,47.64101577055447],[-122.41576288403176,47.64107135313209],[-122.41580257216994,47.64110893352382],[-122.41582356666787,47.64113220611859],[-122.41585270679769,47.64115647986475],[-122.41588296114026,47.64118403702061],[-122.41589989254655,47.64120710915795],[-122.41598549306826,47.64128681034656],[-122.41602374508388,47.64134386184492],[-122.41604789912849,47.64137094674762],[-122.41606584450803,47.64139400476644],[-122.41609918234073,47.64142289030003],[-122.41614116458744,47.64146917890742],[-122.41616446393709,47.64150150253201],[-122.41618969845656,47.64153075761574],[-122.41620657145222,47.64155190256417],[-122.4162400515511,47.64158545593151],[-122.41626118905572,47.64161339666394],[-122.41630356400273,47.64167257598398],[-122.41635183047875,47.64172537530622],[-122.41638151353834,47.64176746472688],[-122.41642336332104,47.64180938461808],[-122.4164506427813,47.64183916822659],[-122.41648995181191,47.64189757617963],[-122.41648473653667,47.64192618304816],[-122.41645713938853,47.64195261651237],[-122.41645909640928,47.6419835661524],[-122.41647114239591,47.64201274728954],[-122.41649540520427,47.64204338676844],[-122.416512354113,47.64206701559101],[-122.4165618441595,47.6421266528989],[-122.41658798483307,47.64215233912397],[-122.4166160280604,47.6421738856971],[-122.41664876097431,47.64221618956331],[-122.41666631897006,47.64225981847706],[-122.41669150458412,47.64228744592017],[-122.41671954792717,47.64230899246773],[-122.41671843824236,47.64233917046936],[-122.41670521991105,47.64237144517396],[-122.41673791129509,47.64241237864842],[-122.41678224134208,47.64246908846439],[-122.41680149340735,47.64250172552849],[-122.41686139851315,47.6425702581791],[-122.41687835559101,47.64259414410967],[-122.4168962352432,47.64261501769126],[-122.41691132373053,47.64264415647028],[-122.41692519701297,47.64266671433934],[-122.41695424282483,47.64272115170423],[-122.41696974872819,47.64276399483428],[-122.41698927622117,47.64280566835114],[-122.41700026709462,47.64283349316788],[-122.41702556142195,47.64286467520772],[-122.41703978618018,47.64289875310861],[-122.41705882987729,47.64292453794953],[-122.41710958082906,47.64295892169928],[-122.41715716502284,47.6429892366402],[-122.41722030874992,47.64303086039665],[-122.41725290181665,47.64306853901638],[-122.41726894580681,47.64309573650083],[-122.41728365476072,47.64314570303375],[-122.41731532537948,47.64318639328331],[-122.41734221340131,47.64320328590838],[-122.41733395685057,47.64323193548101],[-122.41729305330722,47.64325444107236],[-122.41726951970938,47.64328107511799],[-122.41727037155195,47.64330904096056],[-122.41728153748272,47.64334260437486],[-122.41730964531051,47.64339953967895],[-122.41732834337908,47.64344726583159],[-122.41734810992199,47.64353006681344],[-122.4173584877713,47.64357105363135],[-122.41736614600006,47.6436559510228],[-122.41736892521826,47.64368059114563],[-122.41737997106165,47.64374350486231],[-122.41738997826175,47.64380561909467],[-122.41738665722023,47.64382978707378],[-122.4173915357819,47.64389004469866],[-122.41741866736344,47.64391490267915],[-122.41749646207573,47.64393794209688],[-122.41752239535657,47.64395677557695],[-122.41753068693782,47.64399586345002],[-122.41751539914993,47.6440267957444],[-122.41749721972315,47.64406269574328],[-122.41749815519722,47.6440934023144],[-122.41751189200119,47.64414475364637],[-122.41751563158714,47.64420091392484],[-122.41752414890942,47.64424741040205],[-122.41752964153416,47.64429450632679],[-122.41753820846836,47.64434263033107],[-122.41756120536144,47.64439826574765],[-122.41758405146858,47.64444893331451],[-122.41760351869473,47.64452188417787],[-122.41761189393007,47.64456371277512],[-122.41763741519051,47.64460230328104],[-122.41764541467255,47.64463179788554],[-122.41765266775185,47.6446700859173],[-122.41767942482885,47.64474923375576],[-122.41768785836082,47.64479298949642],[-122.41770437939213,47.64483581841533],[-122.41772478957763,47.64487310942882],[-122.41773901482424,47.64490718724743],[-122.41774348466508,47.64495399730481],[-122.41774164168018,47.6450266876706],[-122.41773119804454,47.64505014083849],[-122.41770357507185,47.64507576066271],[-122.41767527349069,47.64517898211554],[-122.41765658091818,47.64523134133254],[-122.4176397073624,47.64527682015308],[-122.4176236141312,47.64531461909701],[-122.41759778125403,47.64536570670696],[-122.41757282054562,47.64541211232363],[-122.4175518071654,47.64545490683629],[-122.41753237978651,47.64548315482894],[-122.41748967974368,47.64551335447671],[-122.41745462089646,47.64556127150456],[-122.41744175316934,47.64560506669302],[-122.41742186180534,47.64565140139487],[-122.41740558937028,47.64571662347602],[-122.41741214553767,47.6457653324758],[-122.41741571813233,47.64581601094213],[-122.41741467532017,47.64584837325209],[-122.41742862534748,47.64587341497639],[-122.41744466344448,47.64596697917179],[-122.41744040039791,47.64609343052545],[-122.41744353579628,47.64616305245245],[-122.41744329132217,47.64625491521603],[-122.41744458560994,47.64629739934966],[-122.41745833989501,47.64634930711035],[-122.41746019669743,47.64637695922856],[-122.41743170951059,47.64640751812037],[-122.41738429495146,47.64648277076677],[-122.41736974087779,47.64653781459373],[-122.41734937006227,47.64660172237767],[-122.4173430312663,47.64662674626498],[-122.41734037016801,47.64667258432759],[-122.41734652535318,47.64670814575787],[-122.41736679567235,47.64677414441848],[-122.41737563293796,47.64683113370582],[-122.41737699371737,47.64687580179346],[-122.41738202723353,47.64690782264961],[-122.41739957046642,47.64695089466704],[-122.41741618832533,47.6470301836254],[-122.41743158709102,47.64706947237448],[-122.41744467405718,47.64709945287928],[-122.41745064539356,47.64712897571452],[-122.41745580015252,47.64719826945452],[-122.41745387726367,47.64723505728841],[-122.4174442263334,47.64728454877303],[-122.41742252805081,47.64737148278087],[-122.41741411673775,47.64742836911104],[-122.41741103763498,47.64746050282621],[-122.4173955606886,47.64751855865396],[-122.41738610645707,47.64760780728971],[-122.41737569141029,47.64766553542364],[-122.41737172945091,47.64780187999152],[-122.41737075812432,47.64786988835917],[-122.41737505754351,47.64794442121405],[-122.41737011332367,47.64801522674112],[-122.41737086984847,47.64807335682645],[-122.41737628705529,47.64811796848316],[-122.41737741433111,47.64815497080283],[-122.4173967523724,47.64819034849094],[-122.41740738169516,47.64823955784092],[-122.41740489208928,47.64832433947674],[-122.4173551633603,47.6483902838709],[-122.41736958613495,47.64846411923802],[-122.41737695285209,47.64853942370723],[-122.41740046582164,47.64864522314402],[-122.41741836846195,47.6487000723687],[-122.41744642567897,47.64878854224151],[-122.41746723728087,47.64883898088123],[-122.41749422469103,47.64889233276399],[-122.41752483541126,47.64893140987704],[-122.41755235280566,47.64896885898035],[-122.41759993094817,47.64903207870773],[-122.41761761731979,47.64907981891163],[-122.4176331917034,47.64912484625429],[-122.41764619579087,47.64915208600355],[-122.41766637351382,47.64918171091333],[-122.41769894465247,47.64921853265653],[-122.41773866519993,47.64925692595209],[-122.41779384731831,47.64930333047445],[-122.41785714931217,47.64934987890393],[-122.4178893121738,47.64937329585371],[-122.41792836094302,47.64942292362721],[-122.41796706730081,47.64946133096051],[-122.41800096217499,47.64950828853977],[-122.4180241070443,47.6495353871272],[-122.41803730331384,47.64956892223079],[-122.41802423407009,47.64960612211525],[-122.41800478790836,47.6496338134153],[-122.4180258630693,47.64965956985938],[-122.41804588195386,47.6496839697024],[-122.41805406649914,47.64971950286073],[-122.41807112696186,47.64974668611469],[-122.41811374007852,47.6497801119094],[-122.41818268132518,47.64984521897512],[-122.41822592173565,47.64989920159812],[-122.41825772201489,47.64994400302947],[-122.41829121666895,47.64997781259648],[-122.41832211192649,47.65002618278513],[-122.41834464911366,47.6500999051058],[-122.41837818570082,47.6501350850119],[-122.41844915973117,47.6501670018914],[-122.41850481428253,47.65019557580656],[-122.41854205585243,47.65021917915617],[-122.41856919128617,47.65024403685737],[-122.41860188856755,47.65028496979344],[-122.418650361156,47.65031090172971],[-122.41867762988331,47.65034012766194],[-122.41869723732894,47.65038428479325],[-122.41872163660013,47.65045249698689],[-122.41873466587892,47.65048055020612],[-122.41875837179765,47.65052602121372],[-122.41878003223647,47.65057096403398],[-122.41879630526688,47.65060557024727],[-122.41880672745759,47.65064792728838],[-122.41881796307305,47.65068367448964],[-122.41883380670842,47.65073748133187],[-122.41884489218465,47.65076830384811],[-122.41886931928479,47.65080416746651],[-122.41888576746109,47.65084451263886],[-122.4188926461858,47.65087046660026],[-122.41889609519203,47.65091703356676],[-122.41890088526327,47.65097429321376],[-122.41890033328617,47.65105600594242],[-122.41890535116551,47.65108746995035],[-122.41892391109855,47.65113052760783],[-122.41894122927077,47.65119939537107],[-122.41893738761965,47.65123976578136],[-122.41890202769365,47.65124462824031],[-122.41889671224695,47.65126993770491],[-122.41891036142223,47.6513182909569],[-122.4189577926459,47.65137658508634],[-122.41898605132576,47.65140498323589],[-122.41902979666907,47.65144220604611],[-122.41906112235313,47.65147137575527],[-122.41911649948423,47.65152407468691],[-122.41919126257079,47.6515803602433],[-122.4192236194386,47.65161007221148],[-122.41925995672817,47.65163724376423],[-122.41931833508234,47.65168853020973],[-122.41936414347013,47.65172683819102],[-122.41944518392317,47.65178933387953],[-122.41947769132764,47.65182397115827],[-122.41949392288826,47.65185720691328],[-122.41947388907515,47.65189887408719],[-122.41942735473914,47.65193653990075],[-122.4194336549065,47.65197676942508],[-122.41945454697428,47.65199648667441],[-122.41947549054565,47.65201787459244],[-122.41949464723623,47.65204721368588],[-122.4196087671278,47.65212981411281],[-122.41965754195658,47.6521655956897],[-122.4197155867592,47.65220591796371],[-122.41980294712636,47.65227599474231],[-122.41980699978437,47.65282711583686]]]],"type":"MultiPolygon"} +},{ + "id": 890537389, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000204, + "geom:area_square_m":1695764.982302, + "geom:bbox":"-122.401027927,47.6311438528,-122.381967646,47.6487160057", + "geom:latitude":47.641839, + "geom:longitude":-122.392527, + "iso:country":"US", + "lbl:latitude":47.642083, + "lbl:longitude":-122.392344, + "lbl:max_zoom":18.0, + "mps:latitude":47.642083, + "mps:longitude":-122.392344, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "SE Magnolia" + ], + "reversegeo:latitude":47.642083, + "reversegeo:longitude":-122.392344, + "src:geom":"seagv", + "wof:belongsto":[ + 85688623, + 102191575, + 85633793, + 101730401, + 102086191, + 85831927 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fec74262d9646f10872990f3b2dde205", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537389, + "neighbourhood":85831927, + "region_id":85688623 + } + ], + "wof:id":890537389, + "wof:lastmodified":1566631085, + "wof:name":"Southeast Magnolia", + "wof:parent_id":85831927, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869679 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40102792720376, + 47.63114385284542, + -122.38196764572116, + 47.64871600574565 +], + "geometry": {"coordinates":[[[[-122.40093635573899,47.6468204679451],[-122.39990325180476,47.64682371787242],[-122.39799445872539,47.64681924364368],[-122.39645644083623,47.64683158419365],[-122.39557643740665,47.6468321791984],[-122.39553888785554,47.64698359268981],[-122.39551085979599,47.64728311796631],[-122.39548708107434,47.64770721991572],[-122.39549247596371,47.64824133162926],[-122.39549310197874,47.6484478766637],[-122.39549686834361,47.64847194662492],[-122.39549556478539,47.64849608578869],[-122.39548968775209,47.64851994513606],[-122.39547871582988,47.64854306044967],[-122.39546365012713,47.64856498944443],[-122.39544448009421,47.64858534653354],[-122.39542119388324,47.64860378931835],[-122.39536527937594,47.64863360472277],[-122.39511444479785,47.64864180112707],[-122.39422367951154,47.64863974781554],[-122.39333891935875,47.64865187235264],[-122.39171011166007,47.64864923961109],[-122.39104667370232,47.6486500480569],[-122.39100587943912,47.64865977481226],[-122.39097211893161,47.64866726329338],[-122.39093783627241,47.64867424436687],[-122.39090303096415,47.64868071874103],[-122.39086518240056,47.64868719191066],[-122.3908298357016,47.64869251683012],[-122.39079498033431,47.64869732082942],[-122.39075960102936,47.64870157497526],[-122.39072420556079,47.64870527232238],[-122.39068879342101,47.6487084132287],[-122.39065285861824,47.64871104673219],[-122.39061741388122,47.64871311686446],[-122.39058144444915,47.64871459433265],[-122.39054241892678,47.64871564186243],[-122.39050641614146,47.64871600574565],[-122.39047039668132,47.64871581283682],[-122.39043486780153,47.6487150561996],[-122.39039881499522,47.64871374970681],[-122.39036325225237,47.64871187949299],[-122.39032767465069,47.64870949563341],[-122.3902920790877,47.64870651182892],[-122.39025646761924,47.64870301404198],[-122.39022134854915,47.64869899567388],[-122.39018619176747,47.64869373498288],[-122.39015198744501,47.64868640520599],[-122.3901192428181,47.6486769987074],[-122.39005407748519,47.64865205415935],[-122.39002180629282,47.64864152714371],[-122.38996637420087,47.64861979153731],[-122.38993654776121,47.64860618911571],[-122.38990821257551,47.6485915810947],[-122.38988035463692,47.6485759806344],[-122.38985449701714,47.64855941078866],[-122.38982962774199,47.64854196997828],[-122.3898062553767,47.6485236951251],[-122.38978437938069,47.64850458553551],[-122.38889684990434,47.64849186355601],[-122.38758971351452,47.64849188948327],[-122.38596531943435,47.64844995467347],[-122.38427893098809,47.64845515595942],[-122.38262934139703,47.64845267648816],[-122.38197469129265,47.64845888227456],[-122.38197423837585,47.64840961731826],[-122.38196764572116,47.64769437710083],[-122.38198029136075,47.64682467786298],[-122.38198244852046,47.64679491443377],[-122.38198467276469,47.6467674209417],[-122.38198791147829,47.64673991365207],[-122.38199115094409,47.64671244917178],[-122.38199489891662,47.64668502059499],[-122.38199966211096,47.64665762102993],[-122.38200442709427,47.64663026425999],[-122.38201020805293,47.64660297931103],[-122.38201599029078,47.64657573751497],[-122.38202278825496,47.64654852437238],[-122.38202958697811,47.64652135438966],[-122.38203740398562,47.64649429901574],[-122.38204522173019,47.64646728609988],[-122.38205405649271,47.64644034534104],[-122.38206289252089,47.64641344738384],[-122.38207274580147,47.64638666439986],[-122.38208260213035,47.64635996666188],[-122.38209296951609,47.64633339078183],[-122.38210435158059,47.64630684356796],[-122.38211573798777,47.64628042510389],[-122.38212814163199,47.64625412126123],[-122.38214054834313,47.64622790336574],[-122.38215346556748,47.6462018066328],[-122.38216740055566,47.64617582486438],[-122.38218133987394,47.64614997149433],[-122.38219578971386,47.64612423963714],[-122.38221075007482,47.64609862929257],[-122.38222672871512,47.6460731339044],[-122.3822427106351,47.64604776657742],[-122.38225920487884,47.64602256390857],[-122.38227621144567,47.64599752589771],[-122.3822932218108,47.64597261594059],[-122.38231124941309,47.64594782095271],[-122.38232979112053,47.64592323306658],[-122.38234833611648,47.64589877359162],[-122.38236790193568,47.64587451467555],[-122.38238747104279,47.64585038417033],[-122.38240755373424,47.64582646077304],[-122.38242865544197,47.64580269478745],[-122.38244976276066,47.64577910035121],[-122.38247087591688,47.64575571993006],[-122.38249300809815,47.64573249727044],[-122.38251565385102,47.64570948136652],[-122.38253830597041,47.64568667982086],[-122.3847529305589,47.64271748360921],[-122.38669507480678,47.64010846742315],[-122.38868587031526,47.63740312164709],[-122.38941508999893,47.636419258048],[-122.39004709183612,47.63561062525675],[-122.3907354768443,47.63497516557034],[-122.39129950751077,47.63447182251446],[-122.39133296496824,47.63445452659214],[-122.39136439189944,47.63443717281032],[-122.39139529554514,47.63441926952341],[-122.39142567664706,47.63440085883958],[-122.39145553574497,47.63438194145382],[-122.3914843644318,47.63436248115447],[-122.39151267185662,47.63434255626196],[-122.39153995145639,47.63432217476343],[-122.39156670979429,47.63430132867276],[-122.39159244029722,47.63428002562645],[-122.3916176500576,47.63425825798185],[-122.39164183275768,47.634236076543],[-122.39166499068722,47.63421352304609],[-122.39168762865974,47.63419054846343],[-122.39170924135436,47.63416720218169],[-122.39172982826355,47.63414348455942],[-122.39174989829078,47.63411943109931],[-122.39176894432515,47.63409504874394],[-122.39178696637822,47.63407033784465],[-122.39180396572318,47.63404534085341],[-122.39182044896319,47.63402005118605],[-122.39183540238675,47.63399448237007],[-122.39184984150903,47.63396866367388],[-122.39186325922076,47.63394260204045],[-122.39187514968594,47.63391634686432],[-122.39188652661673,47.63388988461828],[-122.3918804554297,47.63328114691922],[-122.39187513206663,47.63264660632491],[-122.39184422071052,47.63114385284542],[-122.39206544128089,47.63114837980957],[-122.39369525823884,47.63126211486192],[-122.39362454274608,47.63224063917912],[-122.39415349272856,47.63229371293244],[-122.39720912631019,47.63327181924594],[-122.39750408904008,47.63377230470026],[-122.39787507615316,47.63575472497737],[-122.39790146517063,47.63653079210741],[-122.39792288755905,47.63771485111469],[-122.39809038806214,47.63802317247108],[-122.39835454488777,47.63822343873732],[-122.39963078385883,47.63910870944361],[-122.40040697392807,47.63911743689946],[-122.40043690272043,47.63913450565848],[-122.40046781176507,47.6391504465451],[-122.40050020514268,47.63916516768176],[-122.40053408336082,47.63917866870926],[-122.4005684287481,47.63919083517548],[-122.40060425458375,47.63920165313102],[-122.40064054628363,47.63921109337083],[-122.40067781049663,47.63921914927042],[-122.40071553928919,47.6392257850017],[-122.40075373083869,47.63923095741828],[-122.40079238567166,47.63923466686342],[-122.40083150196521,47.63923687019073],[-122.40087057438619,47.63923761787935],[-122.40090960212849,47.63923686606745],[-122.40094858417172,47.63923461547106],[-122.4009870156808,47.63923091586146],[-122.40102792720376,47.63922538259823],[-122.40098907176767,47.6398374820355],[-122.40098743121773,47.64264309943854],[-122.40094386491751,47.64548806832619],[-122.40093779651654,47.64659907005474],[-122.40093635573899,47.6468204679451]]]],"type":"MultiPolygon"} +},{ + "id": 890537393, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000261, + "geom:area_square_m":2172922.054261, + "geom:bbox":"-122.403649182,47.6468114842,-122.381974691,47.6662840059", + "geom:latitude":47.654719, + "geom:longitude":-122.395431, + "iso:country":"US", + "lbl:latitude":47.654938, + "lbl:longitude":-122.395429, + "lbl:max_zoom":18.0, + "mps:latitude":47.654938, + "mps:longitude":-122.395429, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "Fort Lawton", + "Ft Lawton" + ], + "reversegeo:latitude":47.654938, + "reversegeo:longitude":-122.395429, + "src:geom":"seagv", + "wof:belongsto":[ + 85688623, + 102191575, + 85633793, + 101730401, + 102086191, + 85831927 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d208230a967f5f80d97e0cca215ca277", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537393, + "neighbourhood":85831927, + "region_id":85688623 + } + ], + "wof:id":890537393, + "wof:lastmodified":1566631081, + "wof:name":"Lawton Park", + "wof:parent_id":85831927, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85830029 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40364918163755, + 47.64681148418533, + -122.38197469129265, + 47.66628400590249 +], + "geometry": {"coordinates":[[[[-122.40364202457674,47.65416514441239],[-122.40364823030744,47.66493696288705],[-122.40364918163755,47.66627679837532],[-122.40353548684843,47.66627562380672],[-122.40340849738774,47.66627107621343],[-122.4032825227858,47.66626651414059],[-122.40316984235518,47.66626532522704],[-122.40306430412883,47.66626540871834],[-122.40296485962432,47.66626566506167],[-122.40291421512471,47.66626884787907],[-122.40287103483114,47.66628396724698],[-122.402809132078,47.66628400590249],[-122.40276320281204,47.66627529871347],[-122.40269291984973,47.66626666976781],[-122.40262211134662,47.6662742434305],[-122.40250811016064,47.66626291776766],[-122.4023668248073,47.66622180504062],[-122.40228964802108,47.66622012620738],[-122.40223109521551,47.6662302726979],[-122.40218652814579,47.66623307174569],[-122.40213619721494,47.6662466611073],[-122.40207504438177,47.66623790603756],[-122.40198362510911,47.66623505185202],[-122.4019387020824,47.66622607355647],[-122.40189452615769,47.66617458267051],[-122.40184907331263,47.66614804493793],[-122.40179849978593,47.66611994983833],[-122.40173363426835,47.66608905235451],[-122.40166001930649,47.66607087172829],[-122.4013358536279,47.66598895969511],[-122.40124673368807,47.66596139496138],[-122.40116778212109,47.665934504131],[-122.40111037320817,47.66591528581269],[-122.40105947188442,47.66590994526661],[-122.40102225327506,47.66592086871048],[-122.40098912604171,47.66593284985427],[-122.40094524281567,47.66592467044095],[-122.40088574723407,47.66590355277859],[-122.40081492781806,47.66587710680561],[-122.40073294268706,47.66585055751378],[-122.40067544233816,47.66582829826927],[-122.400669535983,47.66580070208216],[-122.40062851379378,47.66578644206466],[-122.40058942265746,47.66576889974618],[-122.40055824722216,47.66574465002678],[-122.400487698757,47.66569352182037],[-122.4004402602523,47.6656683817989],[-122.40041435590213,47.66565065800123],[-122.40037472007577,47.66564871832616],[-122.40032843441486,47.6655945140058],[-122.40029191521214,47.66556129746417],[-122.40024323099986,47.6655285055249],[-122.40020002431956,47.66550909174189],[-122.40014967563958,47.66548840489307],[-122.40006979365731,47.66546426799493],[-122.39998883161086,47.66543796102873],[-122.39990693794805,47.66541440904746],[-122.39982901899626,47.66538806011773],[-122.39973882074872,47.66535832383937],[-122.39965279522116,47.66533234318943],[-122.3995543995879,47.66529997761148],[-122.39945705967602,47.6652689683736],[-122.39936275428833,47.66523761724407],[-122.39927472582346,47.66521252095089],[-122.39919174369241,47.66518649811962],[-122.39913423700173,47.66516398128363],[-122.3991251725032,47.66513257219369],[-122.39908486886729,47.66510844791509],[-122.39902644733073,47.66508924248865],[-122.39895159725391,47.66506366471704],[-122.3988716919867,47.66503871373711],[-122.39877335543534,47.66500827463457],[-122.39871490059078,47.66498795549006],[-122.39865436766326,47.66496603701592],[-122.39859289450301,47.66494657321735],[-122.39851505945795,47.664922964482],[-122.39847373480157,47.66493231530853],[-122.39844925900353,47.66496200008983],[-122.39841514972483,47.66497506517872],[-122.39833177447164,47.66495281774034],[-122.39829093158679,47.6625513839463],[-122.39604276447579,47.66131906518428],[-122.39431793456123,47.66132532221221],[-122.39351026101698,47.66098857675508],[-122.39249071604682,47.6604721232208],[-122.39140131395628,47.659774013135],[-122.3892528004888,47.65808167906454],[-122.38747278518491,47.65666255308563],[-122.38589099976119,47.65540590677171],[-122.3853894472612,47.65498665500743],[-122.38368873469675,47.65276644394719],[-122.38307289141663,47.65196613815065],[-122.38200160789458,47.65055467868301],[-122.3819896986118,47.65015484545113],[-122.38197469129265,47.64845888227456],[-122.38262934139703,47.64845267648816],[-122.38427893098809,47.64845515595942],[-122.38596531943435,47.64844995467347],[-122.38758971351452,47.64849188948327],[-122.38889684990434,47.64849186355601],[-122.38978437938069,47.64850458553551],[-122.3898062553767,47.6485236951251],[-122.38982962774199,47.64854196997828],[-122.38985449701714,47.64855941078866],[-122.38988035463692,47.6485759806344],[-122.38990821257551,47.6485915810947],[-122.38993654776121,47.64860618911571],[-122.38996637420087,47.64861979153731],[-122.39002180629282,47.64864152714371],[-122.39005407748519,47.64865205415935],[-122.3901192428181,47.6486769987074],[-122.39015198744501,47.64868640520599],[-122.39018619176747,47.64869373498288],[-122.39022134854915,47.64869899567388],[-122.39025646761924,47.64870301404198],[-122.3902920790877,47.64870651182892],[-122.39032767465069,47.64870949563341],[-122.39036325225237,47.64871187949299],[-122.39039881499522,47.64871374970681],[-122.39043486780153,47.6487150561996],[-122.39047039668132,47.64871581283682],[-122.39050641614146,47.64871600574565],[-122.39054241892678,47.64871564186243],[-122.39058144444915,47.64871459433265],[-122.39061741388122,47.64871311686446],[-122.39065285861824,47.64871104673219],[-122.39068879342101,47.6487084132287],[-122.39072420556079,47.64870527232238],[-122.39075960102936,47.64870157497526],[-122.39079498033431,47.64869732082942],[-122.3908298357016,47.64869251683012],[-122.39086518240056,47.64868719191066],[-122.39090303096415,47.64868071874103],[-122.39093783627241,47.64867424436687],[-122.39097211893161,47.64866726329338],[-122.39100587943912,47.64865977481226],[-122.39104667370232,47.6486500480569],[-122.39171011166007,47.64864923961109],[-122.39333891935875,47.64865187235264],[-122.39422367951154,47.64863974781554],[-122.39511444479785,47.64864180112707],[-122.39536527937594,47.64863360472277],[-122.39542119388324,47.64860378931835],[-122.39544448009421,47.64858534653354],[-122.39546365012713,47.64856498944443],[-122.39547871582988,47.64854306044967],[-122.39548968775209,47.64851994513606],[-122.39549556478539,47.64849608578869],[-122.39549686834361,47.64847194662492],[-122.39549310197874,47.6484478766637],[-122.39549247596371,47.64824133162926],[-122.39548708107434,47.64770721991572],[-122.39551085979599,47.64728311796631],[-122.39553888785554,47.64698359268981],[-122.39557643740665,47.6468321791984],[-122.39645644083623,47.64683158419365],[-122.39799445872539,47.64681924364368],[-122.39990325180476,47.64682371787242],[-122.40093635573899,47.6468204679451],[-122.40114328018159,47.64681980423017],[-122.40272719237912,47.64681555082463],[-122.40361571467757,47.64681148418533],[-122.40361424367161,47.65044100349719],[-122.40360628299418,47.65145387500379],[-122.40364202457674,47.65416514441239]]]],"type":"MultiPolygon"} +},{ + "id": 890537397, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":123956.126886, + "geom:bbox":"-122.433202067,47.6607336585,-122.422337713,47.6670995725", + "geom:latitude":47.662848, + "geom:longitude":-122.428291, + "iso:country":"US", + "lbl:latitude":47.662539, + "lbl:longitude":-122.42822, + "lbl:max_zoom":18.0, + "mps:latitude":47.662539, + "mps:longitude":-122.42822, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.662539, + "reversegeo:longitude":-122.42822, + "src:geom":"mz", + "wof:belongsto":[ + 890537395, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"aa994b1038b98539e4f3ecb99323427b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890537397, + "neighbourhood_id":890537395, + "region_id":85688623 + } + ], + "wof:id":890537397, + "wof:lastmodified":1566631079, + "wof:name":"King County West Point Wastewater Treatment Plant", + "wof:parent_id":890537395, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.43320206746938, + 47.66073365854481, + -122.42233771267907, + 47.66709957250084 +], + "geometry": {"coordinates":[[[[-122.42233771267907,47.66679859506512],[-122.42360323092937,47.66541368830065],[-122.42453446133997,47.66443470248437],[-122.42523885357363,47.66374224910213],[-122.4254955388791,47.66347362494524],[-122.4257910254517,47.66320500078832],[-122.42614551204976,47.66294582472555],[-122.42650138711109,47.66269163017735],[-122.42824744413095,47.66156937814407],[-122.42925030765005,47.66096049672175],[-122.42945190682453,47.66085351209923],[-122.42965622859826,47.66076947509906],[-122.42981762148602,47.66074457822598],[-122.42997857758655,47.66073365854481],[-122.43025317116917,47.66073365854481],[-122.43048000934611,47.66075753624764],[-122.43054925468432,47.66079812834246],[-122.43062327556312,47.66082916935615],[-122.43071281694874,47.66083215406901],[-122.43083817488863,47.66081723050473],[-122.43116350858978,47.66076649038621],[-122.43136348435104,47.66080529165332],[-122.43159032252798,47.66088886361324],[-122.43181716070491,47.66098437442459],[-122.43198728933763,47.66107093109736],[-122.43205092341567,47.66113886316192],[-122.43211563199034,47.66121121260152],[-122.4322827759102,47.66127090685861],[-122.43243798097863,47.66129478456145],[-122.43258124719564,47.66128284571003],[-122.43277226881834,47.66128284571003],[-122.43296329044102,47.66129478456145],[-122.43305880125236,47.66134253996712],[-122.43315431206371,47.66140223422421],[-122.43318870886266,47.6614752225537],[-122.43320206746938,47.66155743929264],[-122.43317651680647,47.6616717709048],[-122.43314237321229,47.66176039976675],[-122.43307074010379,47.66193948253802],[-122.43299910699527,47.66210662645787],[-122.43295732101531,47.66216632071496],[-122.43290359618393,47.66221407612063],[-122.4328158946898,47.66225479905217],[-122.43271257456124,47.66228570922914],[-122.43256906833639,47.66228800468871],[-122.43192461036766,47.66235734233764],[-122.43138736205385,47.66244091429757],[-122.43090980799714,47.66248866970324],[-122.43034868198049,47.6625244862575],[-122.43003827184363,47.662596119366],[-122.42970995342962,47.66273938558302],[-122.42897571406742,47.6630617345713],[-122.42846023660032,47.66334177086559],[-122.42766542512432,47.66383775991347],[-122.42719682520615,47.66405265923899],[-122.42688044564358,47.66416010890175],[-122.42671264343255,47.66418852571178],[-122.42652824952674,47.66423174201027],[-122.42625365594414,47.66436306937586],[-122.42585822243366,47.66467169081587],[-122.42581061147914,47.66468527692164],[-122.42575819361028,47.66468541836414],[-122.42548360002768,47.66457796870138],[-122.42514334276225,47.6649241953925],[-122.4247016052598,47.66515103356944],[-122.42453446133995,47.66524057495509],[-122.42267424768218,47.66709957250084],[-122.42233771267907,47.66679859506512]]]],"type":"MultiPolygon"} +},{ + "id": 890537399, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":144631.277969, + "geom:bbox":"-122.369942891,47.5210258574,-122.364524876,47.5246730633", + "geom:latitude":47.522728, + "geom:longitude":-122.36695, + "iso:country":"US", + "lbl:latitude":47.522849, + "lbl:longitude":-122.366806, + "lbl:max_zoom":18.0, + "mps:latitude":47.522849, + "mps:longitude":-122.366806, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.522849, + "reversegeo:longitude":-122.366806, + "src:geom":"mz", + "wof:belongsto":[ + 85869633, + 102191575, + 890536773, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6e051af61cf3713e2797ee0fef1f9477", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536773, + "microhood_id":890537399, + "neighbourhood_id":85869633, + "region_id":85688623 + } + ], + "wof:id":890537399, + "wof:lastmodified":1566631078, + "wof:name":"Westwood Village", + "wof:parent_id":85869633, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.36994289118418, + 47.52102585737955, + -122.36452487587938, + 47.52467306334426 +], + "geometry": {"coordinates":[[[[-122.36865292615792,47.52466537416767],[-122.36453152750788,47.52467306334426],[-122.36452487587938,47.5210300444339],[-122.36569004466647,47.52102585737955],[-122.36722736597098,47.52103017231777],[-122.36994289118418,47.52104872375661],[-122.36993497728832,47.52284517811835],[-122.36863709836619,47.52286100591008],[-122.36865292615792,47.52466537416767]]]],"type":"MultiPolygon"} +},{ + "id": 890537401, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":265745.030972, + "geom:bbox":"-122.354676129,47.544848133,-122.350136142,47.5536875076", + "geom:latitude":47.548599, + "geom:longitude":-122.352554, + "iso:country":"US", + "lbl:latitude":47.548555, + "lbl:longitude":-122.35237, + "lbl:max_zoom":18.0, + "mps:latitude":47.548555, + "mps:longitude":-122.35237, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:urd_x_preferred":[ + "\u0633\u0627\u0648\u062a\u06be \u0633\u06cc\u0626\u0679\u0644 \u06a9\u0627\u0644\u062c" + ], + "reversegeo:latitude":47.548555, + "reversegeo:longitude":-122.35237, + "src:geom":"mz", + "wof:belongsto":[ + 85869629, + 102191575, + 890536773, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"deff0817abc89c9a9a0af8a6cbae4180", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536773, + "microhood_id":890537401, + "neighbourhood_id":85869629, + "region_id":85688623 + } + ], + "wof:id":890537401, + "wof:lastmodified":1566631080, + "wof:name":"South Seattle College", + "wof:parent_id":85869629, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.3546761288224, + 47.54484813301514, + -122.35013614234153, + 47.55368750761502 +], + "geometry": {"coordinates":[[[[-122.35458198163732,47.55182548550995],[-122.3535568233997,47.55184640710664],[-122.35364050978644,47.55368750761502],[-122.35252120436374,47.55367704681667],[-122.35229106680019,47.5534887524465],[-122.35210277243002,47.55326907568129],[-122.35196678205156,47.55305985971444],[-122.35188309566482,47.55286110454592],[-122.35180987007641,47.5526623493774],[-122.3517575660847,47.55244267261219],[-122.35174710528635,47.55228576063705],[-122.35173664448801,47.55210792706522],[-122.35167387969796,47.55194055429173],[-122.35160065410955,47.55175225992155],[-122.35152742852115,47.5515953479464],[-122.35149604612612,47.55154304395469],[-122.35179940927807,47.55155350475303],[-122.3501779855349,47.54944042348774],[-122.35013614234153,47.54931489390763],[-122.35013614234153,47.54910567794077],[-122.35027213271999,47.54501158298925],[-122.35027409411968,47.54499785319143],[-122.35027712412027,47.54499102908319],[-122.35028259351833,47.5449847771935],[-122.35029534261631,47.54498085439411],[-122.3507637902421,47.5449108978052],[-122.35131821255429,47.54484813301514],[-122.3546761288224,47.54486905461183],[-122.35461355393974,47.54886529650238],[-122.35458198163732,47.55182548550995]]]],"type":"MultiPolygon"} +},{ + "id": 890743867, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":51169.3334, + "geom:bbox":"-122.38797707,47.6645807627,-122.383778066,47.667676422", + "geom:latitude":47.666069, + "geom:longitude":-122.385936, + "iso:country":"US", + "lbl:latitude":47.666041, + "lbl:longitude":-122.385947, + "lbl:max_zoom":18.0, + "mps:latitude":47.666041, + "mps:longitude":-122.385947, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.666041, + "reversegeo:longitude":-122.385947, + "src:geom":"mz", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7cf67cfd1f050fa695e731b07af722b4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890743867, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":890743867, + "wof:lastmodified":1566631092, + "wof:name":"Stimson Marina", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.38797706977685, + 47.66458076273375, + -122.38377806577535, + 47.66767642198941 +], + "geometry": {"coordinates":[[[-122.38795639519209,47.66656442144621],[-122.38793761312354,47.66658466956061],[-122.38787979256144,47.66664309769671],[-122.38780192544397,47.66672012330131],[-122.38775709825171,47.66676516474279],[-122.38775691519933,47.66677947197187],[-122.38749180272747,47.66706527795996],[-122.38750493948538,47.66767642198941],[-122.38639121726374,47.6673633230826],[-122.38612700857722,47.66719762720947],[-122.38579274519975,47.66697032017094],[-122.38528763472694,47.66660653764897],[-122.38468233436261,47.66615884990043],[-122.38377806577535,47.66544963842072],[-122.38405660665556,47.66519388198586],[-122.38395298197972,47.66510547939225],[-122.38488642208996,47.66458076273375],[-122.3849223100847,47.66461017925576],[-122.38501220417923,47.66468106208956],[-122.38509101412258,47.66473757119204],[-122.38515958275144,47.66479092089338],[-122.38520190829746,47.66481502281122],[-122.38524468333161,47.66478620532568],[-122.38530349181357,47.66475057161819],[-122.38533594288765,47.66476683899204],[-122.38536499966249,47.66478837942246],[-122.38542065247216,47.66483397874114],[-122.38545123103681,47.6648554984145],[-122.38549479230829,47.66488699506374],[-122.38553365710246,47.66486315818119],[-122.38558191297221,47.66483096700422],[-122.38565362892361,47.66478581724761],[-122.38570142782132,47.66482329716163],[-122.3857771715244,47.6648790340154],[-122.38589393250361,47.66496600190663],[-122.38599465992485,47.6650427770733],[-122.38610764228741,47.66512212731455],[-122.38618564449831,47.66518550206683],[-122.38627194232086,47.66525480441435],[-122.38638390230126,47.66533386859335],[-122.3864996671191,47.66542140647978],[-122.38660555928864,47.66550115266323],[-122.38673576313934,47.66559641964125],[-122.38682513018472,47.66566649400902],[-122.38694906202805,47.66575559109793],[-122.38706018209334,47.66584044992142],[-122.38716663153303,47.66592181620795],[-122.3873066715345,47.66602354648803],[-122.38740161019267,47.6660932446749],[-122.38747517906874,47.66614399669653],[-122.38751663460492,47.66617286545446],[-122.38766178092773,47.66627563966019],[-122.38775734321466,47.66634918493779],[-122.38791621075866,47.66646959479042],[-122.38797706977685,47.66653645838863],[-122.38795639519209,47.66656442144621]]],"type":"Polygon"} +},{ + "id": 890761159, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":44044.265105, + "geom:bbox":"-122.351369104,47.5692367759,-122.346134762,47.5707678963", + "geom:latitude":47.57011, + "geom:longitude":-122.348162, + "iso:country":"US", + "lbl:latitude":47.570021, + "lbl:longitude":-122.348175, + "lbl:max_zoom":18.0, + "mps:latitude":47.570021, + "mps:longitude":-122.348175, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.570021, + "reversegeo:longitude":-122.348175, + "src:geom":"mz", + "wof:belongsto":[ + 85869321, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6543274887719bae2384a19235c34543", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890761159, + "neighbourhood_id":85869321, + "region_id":85688623 + } + ], + "wof:id":890761159, + "wof:lastmodified":1566631092, + "wof:name":"Harbor Island Marina", + "wof:parent_id":85869321, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.35136910391984, + 47.56923677592036, + -122.34613476227807, + 47.57076789634328 +], + "geometry": {"coordinates":[[[-122.34633512249431,47.57067287382951],[-122.34625406130512,47.57067219998621],[-122.34623574897574,47.57065321449325],[-122.34616160492357,47.57057661052104],[-122.34613476227807,47.57052431208973],[-122.34616036601412,47.57042937178096],[-122.34622110082701,47.57025363130539],[-122.34630294021464,47.57003729373509],[-122.34636022898353,47.56988242119218],[-122.34642442172542,47.56972115877569],[-122.34647299534832,47.56958011207846],[-122.34654435405263,47.56945632859703],[-122.34657287492529,47.569357236233],[-122.34661285862551,47.56930404848103],[-122.34670308534537,47.56927187122039],[-122.34681946927381,47.56926839410404],[-122.34696630054437,47.56926699646179],[-122.34711005409235,47.56926426868382],[-122.34733267261234,47.5692566343763],[-122.3474579057942,47.56924399860616],[-122.34761982891814,47.569239100287],[-122.34773320720952,47.56923677592036],[-122.34786896439816,47.56923770980716],[-122.34800311896726,47.5692531887391],[-122.34816583939684,47.56927569924665],[-122.34834152302064,47.56929118147031],[-122.34851508641307,47.56930339282816],[-122.34868153798682,47.56931488443694],[-122.34886698938374,47.56935272885662],[-122.34898063931112,47.56939452926664],[-122.34911984277579,47.56947904734762],[-122.34926162266525,47.5695824679844],[-122.34939709592052,47.56967800356707],[-122.34956178236153,47.56980275450533],[-122.34972717900641,47.5699170846524],[-122.34987840080495,47.57003160398811],[-122.35000569676863,47.5701245057469],[-122.35008640671926,47.57018293970599],[-122.35018553375579,47.57024768279624],[-122.35028089934815,47.57032237324666],[-122.35034515403484,47.57037224331871],[-122.35037079620216,47.57041795842199],[-122.35038644863016,47.57046847728854],[-122.3504057290515,47.57050442317808],[-122.35046176201998,47.57051545754624],[-122.35059730822276,47.57054381127907],[-122.35071271629135,47.57057628946335],[-122.35079348973768,47.57060207471642],[-122.35085482543934,47.57062126437106],[-122.35097177721435,47.57060243697202],[-122.35107100448798,47.57056628024576],[-122.35118038885152,47.57053110184646],[-122.3512466010163,47.57050909564499],[-122.35134753579385,47.57049678000418],[-122.35136910391984,47.57050848926504],[-122.35122338351937,47.57058250923545],[-122.35100304317332,47.57066844746992],[-122.35076971183149,47.57073000987283],[-122.35055153940003,47.57075312393931],[-122.3502960994096,47.57076395082829],[-122.34642688169752,47.57076789634328],[-122.34633512249431,47.57067287382951]]],"type":"Polygon"} +},{ + "id": 907128267, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000047, + "geom:area_square_m":394151.015648, + "geom:bbox":"-122.354303522,47.6649918965,-122.347098877,47.6717241314", + "geom:latitude":47.66837, + "geom:longitude":-122.350748, + "iso:country":"US", + "lbl:latitude":47.668363, + "lbl:longitude":-122.350749, + "lbl:max_zoom":18.0, + "mps:latitude":47.668363, + "mps:longitude":-122.350749, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.668363, + "reversegeo:longitude":-122.350749, + "src:geom":"mz", + "wof:belongsto":[ + 85841499, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6df6e52b08bdad4d3ac9d167ecf0c77e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128267, + "neighbourhood_id":85841499, + "region_id":85688623 + } + ], + "wof:id":907128267, + "wof:lastmodified":1566608547, + "wof:name":"Woodland Park Zoo", + "wof:parent_id":85841499, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.35430352243607, + 47.66499189650538, + -122.34709887726677, + 47.67172413144029 +], + "geometry": {"coordinates":[[[[-122.35427097272704,47.67172413144029],[-122.34709887726677,47.67166898835517],[-122.34730756666228,47.66500529130312],[-122.34886789532122,47.66500909128589],[-122.34979286951295,47.66499189650538],[-122.34998942036374,47.66503323754446],[-122.35030416355565,47.66503881477163],[-122.35142122103778,47.66501416429674],[-122.35249551437819,47.66501937850268],[-122.35345040579939,47.6650188929375],[-122.35430352243607,47.66501889137943],[-122.35427097272704,47.67172413144029]]]],"type":"MultiPolygon"} +},{ + "id": 907128269, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000085, + "geom:area_square_m":703905.463623, + "geom:bbox":"-122.324893565,47.7248851388,-122.312646776,47.7340632267", + "geom:latitude":47.729581, + "geom:longitude":-122.319519, + "iso:country":"US", + "lbl:latitude":47.730159, + "lbl:longitude":-122.319636, + "lbl:max_zoom":18.0, + "mps:latitude":47.730159, + "mps:longitude":-122.319636, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Jackson Park" + ], + "reversegeo:latitude":47.730159, + "reversegeo:longitude":-122.319636, + "src:geom":"mz", + "wof:belongsto":[ + 85841945, + 102191575, + 890536781, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dd16b6797ee1ef9ff8a7384383b18c11", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536781, + "microhood_id":907128269, + "neighbourhood_id":85841945, + "region_id":85688623 + } + ], + "wof:id":907128269, + "wof:lastmodified":1566608547, + "wof:name":"Jackson Park Golf Course", + "wof:parent_id":85841945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.3248935646261, + 47.72488513881687, + -122.31264677647401, + 47.7340632266685 +], + "geometry": {"coordinates":[[[[-122.31264818586422,47.72668446799259],[-122.31749600991152,47.72672238631731],[-122.31769860175365,47.72672238631731],[-122.31785617318641,47.72670724443243],[-122.31796122080826,47.72666686605123],[-122.31800624121765,47.72655077803088],[-122.31811128883949,47.72532426705238],[-122.31812629564257,47.72488513881687],[-122.32432120529387,47.72495293588062],[-122.32430587753134,47.7261080822948],[-122.32429421481088,47.72738240401561],[-122.32429229369582,47.72857142544771],[-122.32427892612179,47.72976873624437],[-122.32427137776557,47.73097411138853],[-122.32427165495838,47.73100144203746],[-122.32427243969838,47.73102876605149],[-122.32427271637202,47.73105609670712],[-122.32427350111338,47.73108342072103],[-122.32427428831416,47.73111083034065],[-122.32427507305717,47.73113815435448],[-122.32427585779092,47.73116547801742],[-122.32427715060406,47.73119279538951],[-122.32427793534983,47.73122011940319],[-122.32427922764538,47.73124743678196],[-122.32428052046232,47.73127475415387],[-122.3242818127606,47.7313020715325],[-122.32428361558866,47.73132946787511],[-122.32428490840996,47.73135678524683],[-122.32428670877285,47.73138409563277],[-122.32428850914771,47.73141140636943],[-122.32429030952447,47.73143871710606],[-122.32429211042316,47.73146602783581],[-122.32429473078356,47.73150421017915],[-122.3242970392386,47.73153151427375],[-122.32429883961392,47.7315588246592],[-122.32430114807356,47.73158612875364],[-122.32430345601556,47.73161343285479],[-122.32430627255287,47.73164073030726],[-122.32430858050002,47.73166803440822],[-122.32431139704302,47.73169533186048],[-122.32431370252652,47.73172255000468],[-122.32431651907514,47.73174984745673],[-122.32431984266087,47.73177713828039],[-122.32432265921567,47.73180443573219],[-122.32432547279473,47.73183164758497],[-122.32432879691041,47.73185893840144],[-122.32433211804077,47.73188614326801],[-122.32433544216345,47.73191343408421],[-122.32433876383087,47.73194063929455],[-122.32434208796052,47.73196793011047],[-122.32434591718113,47.73199512833452],[-122.32434923885927,47.73202233354444],[-122.32435307055647,47.73204961772471],[-122.32435690031897,47.7320768162923],[-122.32436123763274,47.73210400787363],[-122.32436506688349,47.73213120644766],[-122.32436889665827,47.73215840501472],[-122.32437323347519,47.73218559695312],[-122.32437757080659,47.73221278853366],[-122.32438190815263,47.73223998046483],[-122.32438624550321,47.7322671723958],[-122.32439109092748,47.73229435733353],[-122.32439542582856,47.73232146365834],[-122.32440027075275,47.73234864895327],[-122.32440511620206,47.73237583424112],[-122.32440995866745,47.73240293357898],[-122.32441480412689,47.73243011886634],[-122.32442015468321,47.7324572115614],[-122.32442499717413,47.73248431124932],[-122.32443034775144,47.73251140429465],[-122.32443569832427,47.73253849698887],[-122.32444105137168,47.73256567563932],[-122.32444640001678,47.73259268272042],[-122.32445225817879,47.73261976912891],[-122.32445760877424,47.73264686182193],[-122.32446346746825,47.73267394822297],[-122.32446932564835,47.73270103463047],[-122.32447518188552,47.73272803507429],[-122.32448154816156,47.73275511483854],[-122.3244874044112,47.73278211528164],[-122.32449376823115,47.73280910908854],[-122.32450013206778,47.73283610324591],[-122.32450649590096,47.73286309705203],[-122.32451286027089,47.73289009120182],[-122.32451922411731,47.73291708500713],[-122.32452609606599,47.73294407252016],[-122.32453245992589,47.73297106632464],[-122.32453932941942,47.73299796788022],[-122.32454620086921,47.73302495539868],[-122.32455307037698,47.73305185695332],[-122.32456044992794,47.73307883782797],[-122.32456731945022,47.73310573938166],[-122.32457469654702,47.73313263429873],[-122.32458207417147,47.73315952920848],[-122.32458945129359,47.73318642447534],[-122.32459682595407,47.73321323378514],[-122.32460420360147,47.73324012869333],[-122.32461208882515,47.73326701696465],[-122.32461997108778,47.73329381998732],[-122.32462785386855,47.73332062265175],[-122.32463573665743,47.73334742531559],[-122.32464361945446,47.73337422797884],[-122.32465150225963,47.73340103064152],[-122.32465989264315,47.73342782666702],[-122.32466828356549,47.73345462303591],[-122.32467667150701,47.73348133345441],[-122.32468506243657,47.73350812947115],[-122.32469345039534,47.73353483988833],[-122.3247018388828,47.73356155029803],[-122.32471073495071,47.73358825407031],[-122.32489356462609,47.7340632266685],[-122.32468724645267,47.73406164016847],[-122.3241877214074,47.73405805961087],[-122.32348340402616,47.73405295353983],[-122.3207996201503,47.73402774668129],[-122.31811583940384,47.73400247667516],[-122.31543256886006,47.73397713728363],[-122.3153545799197,47.7339763996228],[-122.31535754046674,47.73389409761825],[-122.31540256087614,47.73275355370125],[-122.31540256087609,47.73223374000118],[-122.31536504386828,47.73202177564391],[-122.31533503026203,47.73180476362243],[-122.31530501665581,47.73125465933033],[-122.31526749964803,47.7294932771415],[-122.31268607253534,47.72948149196237],[-122.31267886749283,47.72875256292402],[-122.31266942452028,47.72779718954075],[-122.31264677647401,47.72684190211256],[-122.31264818586422,47.72668446799259]]]],"type":"MultiPolygon"} +},{ + "id": 907128271, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000046, + "geom:area_square_m":381056.479465, + "geom:bbox":"-122.279953534,47.6831327009,-122.268168119,47.6901376047", + "geom:latitude":47.687305, + "geom:longitude":-122.273894, + "iso:country":"US", + "lbl:latitude":47.688279, + "lbl:longitude":-122.271353, + "lbl:max_zoom":18.0, + "mps:latitude":47.688279, + "mps:longitude":-122.271353, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.688279, + "reversegeo:longitude":-122.271353, + "src:geom":"mz", + "wof:belongsto":[ + 85853783, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"83690caf5d6e86ae3b56c77f9a6d60df", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128271, + "neighbourhood_id":85853783, + "region_id":85688623 + } + ], + "wof:id":907128271, + "wof:lastmodified":1566608549, + "wof:name":"Sand Point Country Club", + "wof:parent_id":85853783, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.27995353357649, + 47.68313270091502, + -122.26816811919804, + 47.69013760467237 +], + "geometry": {"coordinates":[[[[-122.27995353357649,47.69013760467237],[-122.27995353357532,47.69013760467237],[-122.26946549772232,47.6901109731394],[-122.26818934420459,47.68808728589877],[-122.26816811919804,47.68801227406167],[-122.26818403795295,47.68789797010247],[-122.26822648796603,47.68775151778866],[-122.26831138799217,47.68744789582809],[-122.26835383800523,47.68733359063204],[-122.26843873803136,47.68711569565819],[-122.26852894430914,47.68695495288092],[-122.26864037559342,47.68678706545132],[-122.26894283193654,47.68644414476706],[-122.26909671323391,47.68624589271818],[-122.26914977575024,47.68611908245364],[-122.26917100075677,47.68594404806119],[-122.26918691951168,47.68582259528043],[-122.26916038825351,47.68556897238523],[-122.26912324449208,47.68531177607721],[-122.26910732573718,47.68503314531242],[-122.26912049500282,47.68496972212921],[-122.26915508200187,47.6848938293719],[-122.2692877382927,47.68480452408612],[-122.26948406960312,47.68472593530817],[-122.26978121969461,47.6846402019608],[-122.27024816983835,47.68449016826386],[-122.27039674488407,47.68441872349436],[-122.27054266680402,47.68431334228004],[-122.27062756683019,47.68422939438281],[-122.27074695749189,47.68409364855895],[-122.27085838877622,47.68397219146997],[-122.27099635131867,47.68389002916079],[-122.2713359514232,47.6837721438828],[-122.2717498390506,47.68364711375138],[-122.27220617669109,47.68354351712976],[-122.27279517062239,47.68340776952105],[-122.27328865202429,47.68328988315322],[-122.27331518328249,47.68342205875965],[-122.27337355205046,47.68361496309772],[-122.27338416455373,47.68379714987311],[-122.27335232704392,47.6840007696338],[-122.27320905824982,47.68424725564912],[-122.27306048320408,47.68445087365287],[-122.27292782691325,47.68467235198256],[-122.27285884564202,47.68488311274568],[-122.27285353939035,47.68510816143397],[-122.27289068315177,47.68544037438974],[-122.27294905191977,47.68597619727935],[-122.27297558317791,47.68669419132195],[-122.2729490519198,47.687044254485],[-122.27293843941649,47.68733716267321],[-122.2729490519198,47.68750504833216],[-122.27299150193285,47.68765150133804],[-122.27307109570735,47.68782653000076],[-122.27325681451451,47.68809085788831],[-122.27343192081842,47.68826588507665],[-122.27367600839354,47.68845877150186],[-122.27397846473666,47.6886123657377],[-122.27436051485427,47.68876238757788],[-122.27470542121043,47.68884097027433],[-122.27520420886397,47.68889454931767],[-122.27552789021362,47.68889454931767],[-122.27587810282142,47.68888026157815],[-122.27612749664817,47.68883025445905],[-122.27642995299128,47.68875881563432],[-122.27672710308275,47.68863736940768],[-122.27696057815463,47.68851235093781],[-122.2771781344716,47.68837304428983],[-122.27737446578203,47.68820516142478],[-122.27756018458922,47.68800155807613],[-122.27763447211206,47.68785510605318],[-122.27772998464147,47.687637213258],[-122.27777774090616,47.68743003565771],[-122.27779365966106,47.68723000133174],[-122.27776182215126,47.68684095776032],[-122.27768222837678,47.68633698159086],[-122.27768753462841,47.68572614728249],[-122.27771406588658,47.68528319863136],[-122.27771406588656,47.68514031116732],[-122.27770875963492,47.68488668495466],[-122.27762916586042,47.68462234082903],[-122.27756549084083,47.68449016826386],[-122.27795815346173,47.68448659602943],[-122.27793692845519,47.68313627324387],[-122.27943329141583,47.68313270091502],[-122.27945451642235,47.68368998125876],[-122.27978942400564,47.68368998125876],[-122.27986685636631,47.68647147361075],[-122.27986789687263,47.68650884636725],[-122.27936431014457,47.68651201466474],[-122.27939614765438,47.6881194337959],[-122.2794173726609,47.68874095591283],[-122.27948104768049,47.68911243686016],[-122.27958186646154,47.68940890533315],[-122.27969860399746,47.68954106543466],[-122.27988432280465,47.68960535941701],[-122.27994356165593,47.68961152586992],[-122.27995312231721,47.69011680883668],[-122.27995353357649,47.69013760467237]]]],"type":"MultiPolygon"} +},{ + "id": 907128273, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":224261.354486, + "geom:bbox":"-122.380362493,47.6406214123,-122.376162515,47.6483941668", + "geom:latitude":47.644114, + "geom:longitude":-122.378433, + "iso:country":"US", + "lbl:latitude":47.644045, + "lbl:longitude":-122.378639, + "lbl:max_zoom":18.0, + "mps:latitude":47.644045, + "mps:longitude":-122.378639, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.644045, + "reversegeo:longitude":-122.378639, + "src:geom":"mz", + "wof:belongsto":[ + 85826973, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0011dcb1e8ac6f84a7a8476f949db2b6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128273, + "neighbourhood_id":85826973, + "region_id":85688623 + } + ], + "wof:id":907128273, + "wof:lastmodified":1566608546, + "wof:name":"Interbay Athletic Complex", + "wof:parent_id":85826973, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.38036249293432, + 47.64062141234919, + -122.3761625152465, + 47.64839416675164 +], + "geometry": {"coordinates":[[[[-122.37616293210702,47.64080051849093],[-122.37659060326499,47.64074090025762],[-122.37690435900602,47.64070873046301],[-122.37712262386933,47.64068115633756],[-122.37745684194134,47.64064209296889],[-122.3779138339989,47.64062600804303],[-122.37850042081908,47.64062141234919],[-122.37893012976876,47.64063060373646],[-122.37933255561052,47.64065358219757],[-122.37949284386957,47.64067196495918],[-122.37965313212854,47.64070413477644],[-122.37981498433972,47.64077709622155],[-122.37993960476165,47.64086038789277],[-122.38006382135589,47.64097392502713],[-122.38015104884798,47.6410855753854],[-122.38020280131882,47.64122278593666],[-122.38022607739475,47.64137050510745],[-122.3802738228336,47.642073631476],[-122.38036249293432,47.64464248987785],[-122.38030792671852,47.64839215298205],[-122.37897342544797,47.64839416675164],[-122.37896278107684,47.64746348750973],[-122.37768192758165,47.64746854780118],[-122.37764782369672,47.6465633067246],[-122.37634951382469,47.64655433165768],[-122.37629148521515,47.64595671727111],[-122.37620738635709,47.64510529727208],[-122.3761720909304,47.64477043295373],[-122.37617214144309,47.64475331264582],[-122.3769262758039,47.64475664047369],[-122.37691475428045,47.64363093485196],[-122.37616799783579,47.64363504429878],[-122.37616941431901,47.64326140547155],[-122.37616942305294,47.64293690245122],[-122.37616879499097,47.64252256326201],[-122.37616251524651,47.64174678013256],[-122.37616536056119,47.640987967859],[-122.37616293210702,47.64080051849093]]]],"type":"MultiPolygon"} +},{ + "id": 907128275, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000057, + "geom:area_square_m":479166.57916, + "geom:bbox":"-122.401521287,47.5260132792,-122.392740371,47.5370124964", + "geom:latitude":47.531204, + "geom:longitude":-122.395815, + "iso:country":"US", + "lbl:latitude":47.530849, + "lbl:longitude":-122.395816, + "lbl:max_zoom":18.0, + "mps:latitude":47.530849, + "mps:longitude":-122.395816, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:epo_x_preferred":[ + "Parko Lincoln" + ], + "name:eus_x_preferred":[ + "Lincoln Park" + ], + "name:fas_x_preferred":[ + "\u067e\u0627\u0631\u06a9 \u0644\u06cc\u0646\u06a9\u0644\u0646" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30f3\u30ab\u30fc\u30f3\u30fb\u30d1\u30fc\u30af" + ], + "name:kor_x_preferred":[ + "\ub9c1\ucee8 \uacf5\uc6d0" + ], + "name:nld_x_preferred":[ + "Lincoln Park" + ], + "name:nor_x_preferred":[ + "Lincoln Park" + ], + "name:por_x_preferred":[ + "Lincoln Park" + ], + "name:spa_x_preferred":[ + "Lincoln Park" + ], + "name:zho_x_preferred":[ + "\u6797\u80af\u516c\u56ed" + ], + "reversegeo:latitude":47.530849, + "reversegeo:longitude":-122.395816, + "src:geom":"mz", + "wof:belongsto":[ + 85819027, + 102191575, + 890536787, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5171dc46181e09fa999dace1c993dc11", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536787, + "microhood_id":907128275, + "neighbourhood_id":85819027, + "region_id":85688623 + } + ], + "wof:id":907128275, + "wof:lastmodified":1566608547, + "wof:name":"Lincoln Park", + "wof:parent_id":85819027, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.40152128656763, + 47.52601327918127, + -122.39274037056674, + 47.53701249642319 +], + "geometry": {"coordinates":[[[[-122.39296396965574,47.53700750357043],[-122.39279315820878,47.53606068181683],[-122.39274037056674,47.53567578663289],[-122.39275092809515,47.53514833308851],[-122.39276148562355,47.53431437544257],[-122.3927931582088,47.53144175314261],[-122.39282483079405,47.52875431885783],[-122.39286178214348,47.52625566556397],[-122.39346620064498,47.52606852912019],[-122.39373805700151,47.52602040820791],[-122.39395448633394,47.52601327918127],[-122.39418675195896,47.5260168436952],[-122.3947357434363,47.52609882744851],[-122.3950985072686,47.52617733949989],[-122.39512611460839,47.5261952201241],[-122.39517352167053,47.52622361714291],[-122.39523251771264,47.52626723559572],[-122.39533831255098,47.52635271287397],[-122.3954190304344,47.52641192824328],[-122.39547825668801,47.5264632130949],[-122.39552290868434,47.5265009878741],[-122.3956708725535,47.5266088922743],[-122.39577545175433,47.52668753047764],[-122.39584471315506,47.52673593489649],[-122.39593688921676,47.52680596054507],[-122.39603804732843,47.52687174974551],[-122.39611222784355,47.52691541615794],[-122.39618852342183,47.52696209539911],[-122.39627137305673,47.52702483702581],[-122.3963315880559,47.52707529356957],[-122.39635451060192,47.52709717192201],[-122.3963813486333,47.5271146259536],[-122.396452421698,47.52715589276493],[-122.39652827296156,47.52718775376757],[-122.39666679074044,47.52725054339296],[-122.39671313092214,47.52727706899307],[-122.3967389408387,47.527293980081],[-122.3968192095292,47.5273381196255],[-122.3968820573764,47.5273750864621],[-122.39693030591373,47.52739772980837],[-122.39696572353466,47.5274312610484],[-122.3969950040923,47.5274626487062],[-122.39708154143641,47.52751329957606],[-122.3971123935594,47.52752958451791],[-122.39715960576822,47.52755142775373],[-122.39725855468086,47.52761094792183],[-122.39728543493149,47.52762977245877],[-122.39734485347358,47.5276536328033],[-122.39739229648997,47.52768314245781],[-122.39746010435896,47.52771674180575],[-122.3974909001552,47.52773114194054],[-122.39756085481059,47.52776882449654],[-122.39760999224548,47.52778734250003],[-122.39765722213723,47.52780974265343],[-122.39774409699868,47.52787161354126],[-122.39781004662663,47.52791072239252],[-122.39786754145788,47.5279379082077],[-122.39789842749731,47.52795530614645],[-122.39797033325448,47.52799051944523],[-122.39804551191361,47.52803361423308],[-122.39811436572353,47.52806831246748],[-122.39817314437873,47.52810452073179],[-122.39821742937789,47.52812996037726],[-122.39830783425231,47.52817451594284],[-122.39835211937667,47.52819995553583],[-122.39839626487195,47.52822072684889],[-122.39846022505795,47.5282609764132],[-122.39852856224023,47.5283121342264],[-122.39857398270776,47.52834167091925],[-122.39863577249088,47.52837702353565],[-122.39874664237742,47.52842896578081],[-122.39883805988076,47.52847350733573],[-122.39887695791903,47.52848805237732],[-122.39892739633979,47.52851614919385],[-122.39899418690734,47.5285495044031],[-122.39903102830353,47.52856296406569],[-122.39913167517068,47.52861149102062],[-122.39926265046729,47.52869250456963],[-122.39933041966644,47.52872473207621],[-122.39938903465952,47.5287554578703],[-122.39942391991303,47.52877117206686],[-122.39945173803434,47.5287874982177],[-122.39950197112034,47.52880874220578],[-122.39955839052456,47.52883375679263],[-122.39962314185946,47.52886658274561],[-122.39965400458254,47.52888316661326],[-122.39977010013935,47.5289405203126],[-122.39980087103733,47.52895406343232],[-122.39987056690676,47.52898300798504],[-122.3999353186237,47.52901583376014],[-122.4000079994218,47.52904306638775],[-122.40005324884413,47.52906686382828],[-122.40010368844854,47.52909495977183],[-122.40026907272741,47.52917575458139],[-122.40030200037558,47.52919368109145],[-122.4003411710746,47.52921726217156],[-122.40040903306709,47.52925253010042],[-122.40045926750943,47.52927377365814],[-122.40052775365324,47.52929613636261],[-122.40062076862606,47.52932638699993],[-122.4006527170185,47.52934539777203],[-122.40072818063314,47.52939782658886],[-122.40076036869229,47.5294248031113],[-122.40083184384024,47.52947921519448],[-122.40092586542288,47.52954291343966],[-122.40097961330818,47.52958000364828],[-122.40101471293681,47.52960282674781],[-122.40103858452048,47.5296225058772],[-122.4010813023736,47.52966304749071],[-122.40112504870336,47.52970413155661],[-122.40114107385784,47.52973214495138],[-122.40118952719611,47.52979510087533],[-122.40121270937263,47.52982550045667],[-122.4012408507345,47.52985253269657],[-122.40127209338468,47.52988170735406],[-122.4013075476925,47.52991630764793],[-122.40132669953519,47.52994732019389],[-122.40134594159181,47.52998133029744],[-122.40137757997546,47.53002365258421],[-122.40141501184249,47.53009031635346],[-122.40143509301218,47.53011857381962],[-122.40145442541103,47.5301555818164],[-122.40148520180695,47.53020288625534],[-122.4015039104948,47.53025279905204],[-122.40151776649468,47.53030963424428],[-122.40152083811816,47.53034442453363],[-122.40152128656763,47.53039296116087],[-122.40151851774282,47.53043550141384],[-122.40150722057034,47.53049735363538],[-122.40149237150089,47.53057570759906],[-122.4014830041387,47.53060077253961],[-122.40145865885394,47.53063264200642],[-122.40143297196049,47.53065356209166],[-122.40139728309028,47.5306784761259],[-122.40134758593369,47.53070876786614],[-122.40127132994382,47.53076466150401],[-122.40124683627386,47.53079160585992],[-122.40121043240818,47.5308263842722],[-122.40113300721249,47.53087706674665],[-122.40108611416828,47.53089965032576],[-122.40102185083653,47.53095045118968],[-122.40097737658319,47.53098615481431],[-122.40094679521364,47.53101262608951],[-122.40090317718763,47.53104313348835],[-122.40086265089359,47.53107548369763],[-122.40083697976151,47.53109696008462],[-122.40079322119837,47.53112279953958],[-122.40073538793011,47.53115183195727],[-122.40068680081419,47.53118540697913],[-122.4006182665953,47.53122885444907],[-122.40052524571435,47.53129950324243],[-122.40047347509966,47.53132819462218],[-122.40042591609679,47.53136231235765],[-122.4003822299951,47.53139059279365],[-122.40034030505561,47.53141010837419],[-122.40029164275549,47.53144119929259],[-122.40020497082057,47.53148738162211],[-122.40014139569917,47.53152746115472],[-122.40009063636423,47.5315561387588],[-122.4000558253252,47.53157662733104],[-122.40000995963136,47.53159975329502],[-122.39996425019574,47.53162806111416],[-122.39992772077311,47.53165872764934],[-122.39987613873024,47.53169371454924],[-122.39981879043087,47.53173893523696],[-122.39977408476088,47.53176697221678],[-122.39971856198953,47.53180556954072],[-122.39965514315382,47.53185087383557],[-122.39962350770378,47.53187598832814],[-122.39959274364018,47.53189642096146],[-122.39955007735786,47.53192498674623],[-122.39944075899001,47.53199230311346],[-122.39937703465894,47.53202745715052],[-122.399342445672,47.53205535450738],[-122.39930579255125,47.53208190936146],[-122.39925001428759,47.53211202669467],[-122.3992003796225,47.53214450147145],[-122.39917045503798,47.53215918137732],[-122.39910850668872,47.5321860844285],[-122.39908581207145,47.53220559178004],[-122.39903559450364,47.53225234199825],[-122.39898020319562,47.53229535005173],[-122.39894655091453,47.53232074941095],[-122.39888897132656,47.5323583034538],[-122.39883957602386,47.53239874385041],[-122.39876313347108,47.53244859717558],[-122.39871561350162,47.53248408492072],[-122.3986399938381,47.53252762842218],[-122.39857860436467,47.53257316140333],[-122.3985159483525,47.53261022817454],[-122.39848921412934,47.53263004797099],[-122.39845171256577,47.53266209834376],[-122.398399273216,47.53270232355348],[-122.39834987720727,47.53274276373726],[-122.39831614252839,47.5327654218023],[-122.39826758579078,47.53280010935084],[-122.39823302012951,47.53282881996429],[-122.39815167460038,47.53288396758978],[-122.3981022203595,47.53292248051053],[-122.3980189572911,47.5329812106108],[-122.39799126109546,47.53300271421417],[-122.39789408753555,47.53307011905508],[-122.39780289413973,47.53313444196017],[-122.39777917916176,47.53315370581743],[-122.39775353840938,47.53317625261051],[-122.39771096958206,47.53320811522823],[-122.39768045082238,47.53323676994464],[-122.39764986646827,47.53326324068346],[-122.39761525131379,47.53329032392021],[-122.39754417018871,47.53335025687772],[-122.39748393116231,47.53340044323723],[-122.39745543565314,47.53342907003636],[-122.39741791616726,47.53346056328735],[-122.39739734334371,47.53348333996973],[-122.39736322149443,47.53352686833269],[-122.39732679641595,47.53356108872016],[-122.39729357104486,47.5336007488164],[-122.3972572031884,47.53363689634455],[-122.39721031473421,47.53369349656995],[-122.39716411663478,47.53373937666269],[-122.39712792080577,47.53378126281483],[-122.39701072283509,47.53388981589042],[-122.39695089338116,47.53395370677949],[-122.39689777649131,47.53400516573765],[-122.39686730693566,47.53403549057792],[-122.39681896134765,47.53407728654864],[-122.39679535994502,47.53410036206128],[-122.39677187415106,47.53412729153038],[-122.39669787898792,47.5341913772016],[-122.39666935820598,47.53421919020902],[-122.39664484384016,47.53424557714311],[-122.39662223733082,47.53426808156723],[-122.3965909445597,47.53430471570114],[-122.39654470425342,47.53434922481586],[-122.39652438507498,47.53438048110821],[-122.39648122105356,47.53442631916372],[-122.39645593366943,47.53446068541529],[-122.39642944437271,47.53448872768154],[-122.39638189524611,47.53455711914214],[-122.3963594457318,47.53458484854576],[-122.39631966223834,47.53464216492015],[-122.3962945056757,47.53468089977785],[-122.39626167315821,47.53473370759918],[-122.39620549419008,47.53481811302135],[-122.39614618930251,47.53489956260747],[-122.39611104523971,47.53494280488768],[-122.39609084064325,47.53497791542254],[-122.39604376763788,47.53506219551316],[-122.39601652880255,47.53509903099116],[-122.39599010469357,47.53516301855733],[-122.39598208341673,47.535199332803],[-122.39596851620273,47.53525324651355],[-122.39596261734407,47.53529283046009],[-122.39594970869302,47.53533495295207],[-122.39593262188812,47.53537276245864],[-122.39590791674371,47.5354265724153],[-122.39589142911156,47.5354843825308],[-122.39586956933361,47.53556557356702],[-122.39587047343174,47.53559572393658],[-122.39587271858743,47.53563682374106],[-122.39586839774329,47.53569528046424],[-122.39586049957683,47.53573570582832],[-122.39585849107283,47.53577000942479],[-122.39586666698636,47.53580635748685],[-122.39587059765353,47.53586992793015],[-122.39587203599559,47.53591789423582],[-122.39586804550567,47.53595359567824],[-122.39586775673818,47.53597772132747],[-122.39586845425006,47.5360347377468],[-122.39587121756468,47.53605937843479],[-122.39588428042865,47.53608991825785],[-122.3958870853651,47.53611592931401],[-122.39590219625488,47.53614725525215],[-122.39590948375275,47.53618772870325],[-122.39592754068968,47.5362160149717],[-122.39594213352238,47.5362638003722],[-122.39596065028631,47.53630741863375],[-122.39598053207028,47.53636280027864],[-122.39604188299094,47.53648453498504],[-122.39607154653548,47.53656227590378],[-122.3961232888892,47.53666739028895],[-122.3961618457086,47.53673789654368],[-122.39622204566464,47.53685497681112],[-122.39624007731553,47.53688240663291],[-122.39626413155726,47.53690812539934],[-122.39632746458173,47.53696089571658],[-122.39638254160026,47.53700842391616],[-122.39624644409615,47.53701029600539],[-122.3953324067573,47.53701249642319],[-122.39404001819925,47.53700604803831],[-122.39296396965574,47.53700750357043]]]],"type":"MultiPolygon"} +},{ + "id": 907128277, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":517709.584309, + "geom:bbox":"-122.311153224,47.5612020772,-122.301597035,47.571863125", + "geom:latitude":47.567087, + "geom:longitude":-122.305261, + "iso:country":"US", + "lbl:latitude":47.567683, + "lbl:longitude":-122.304873, + "lbl:max_zoom":18.0, + "mps:latitude":47.567683, + "mps:longitude":-122.304873, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.567683, + "reversegeo:longitude":-122.304873, + "src:geom":"mz", + "wof:belongsto":[ + 85805013, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b3b65338e4bdd638cac8b778fb763cec", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128277, + "neighbourhood_id":85805013, + "region_id":85688623 + } + ], + "wof:id":907128277, + "wof:lastmodified":1566608548, + "wof:name":"Jefferson Park Golf Course", + "wof:parent_id":85805013, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.31115322393637, + 47.56120207724189, + -122.3015970350827, + 47.5718631249742 +], + "geometry": {"coordinates":[[[[-122.30812195600906,47.5718631249742],[-122.30177473395014,47.5718272602363],[-122.30191294816582,47.56836978419454],[-122.30205116238153,47.5645677317076],[-122.30206711017561,47.564449361493],[-122.30208680778009,47.56389777189702],[-122.30211744000465,47.56388054140488],[-122.30215127582321,47.56385928232054],[-122.30218304892446,47.56383672143671],[-122.30221326938873,47.56381298132339],[-122.30224092484785,47.56378807471139],[-122.30226652708913,47.56376216626558],[-122.30229007507745,47.56373525600067],[-122.3023115736537,47.56370751548219],[-122.3023300115006,47.56367895777907],[-122.30234640476068,47.56364974068734],[-122.3023602487356,47.56361991389945],[-122.30237103993582,47.56358956991128],[-122.30237878076117,47.56355879362868],[-122.30238296669728,47.56352767791149],[-122.30238360482385,47.56349643676339],[-122.30238120658247,47.56346527767027],[-122.30237526899508,47.56343429276944],[-122.30236579707778,47.56340369644118],[-122.30235482260059,47.56337367617424],[-122.30232796818933,47.5633372206573],[-122.30229741622382,47.56329532857882],[-122.30227843621203,47.56326875372992],[-122.30225037529046,47.56324336738761],[-122.30222282755398,47.56321823132163],[-122.3021952846827,47.56319326681312],[-122.30216724074262,47.56316847969697],[-122.30213869523554,47.56314387068118],[-122.30211015459383,47.5631194332224],[-122.30208111409114,47.56309521595843],[-122.30205157081515,47.5630711339906],[-122.30202152717048,47.56304727257434],[-122.30199148839131,47.56302358271433],[-122.30196094976201,47.56300011339869],[-122.3019304159881,47.56297681528816],[-122.30190059103798,47.56296070580496],[-122.30186311410353,47.5629425956284],[-122.30182711008571,47.56292283859248],[-122.30179359200608,47.56290146408144],[-122.30176205689536,47.56287856458301],[-122.30173301496365,47.56285430443346],[-122.30170646847303,47.56282872712629],[-122.30168292711274,47.56280199700485],[-122.30166138319785,47.56277425554283],[-122.30164335738807,47.56274556873881],[-122.3016278421776,47.56271612123361],[-122.30161585352997,47.5626860287143],[-122.30160638218493,47.56265543197176],[-122.3015999399402,47.56262449672514],[-122.30159703508269,47.5625933009951],[-122.30159716724268,47.56256206639188],[-122.30160034002479,47.56253092097459],[-122.30160706398797,47.5624999866056],[-122.30161683770702,47.562469484206],[-122.3016301734755,47.56243957878497],[-122.3016465691515,47.56241044740057],[-122.30166653479536,47.56238221262213],[-122.30168957052989,47.56235509499894],[-122.30171517302951,47.56232922948702],[-122.30174385286487,47.56230473829745],[-122.30178107493592,47.562277908772],[-122.30222927008296,47.5616691374086],[-122.30225794878496,47.5616446457451],[-122.30228765600825,47.56162069813189],[-122.30231839483599,47.56159742228317],[-122.30235016287325,47.56157473329309],[-122.30238245661629,47.56155272260329],[-122.30241628667427,47.56153133503639],[-122.30245114955352,47.56151066238464],[-122.30248653814914,47.56149066838173],[-122.30252296077424,47.56147143209567],[-122.30255991032456,47.56145291726047],[-122.30259789391552,47.5614351604913],[-122.30263640512256,47.56141816798163],[-122.30267595156948,47.56140197598874],[-122.30271602616291,47.56138654859804],[-122.30275713771428,47.5613719641681],[-122.30279827290683,47.56135823684911],[-122.30284044334411,47.56134531004356],[-122.30288314433896,47.56133323309334],[-122.30292637537475,47.56132200600461],[-122.30296963177508,47.56131167847096],[-122.30301392515267,47.56130219424425],[-122.30305824338048,47.5612936095785],[-122.30310258870533,47.56128596726364],[-122.30314797048507,47.56127916790947],[-122.3031933783395,47.56127331126958],[-122.30323881207997,47.56126835382552],[-122.30328427067211,47.5612642955906],[-122.30333026399468,47.56126121596051],[-122.30337628096564,47.56125899273584],[-122.30342283215356,47.56125774812181],[-122.3048373923812,47.56120207724189],[-122.30503074191584,47.56193303441077],[-122.30601323176063,47.56481437101199],[-122.31013320990314,47.56486375546729],[-122.31058414992212,47.56487469826858],[-122.31069706426439,47.56487917008238],[-122.31079700151042,47.56490920632774],[-122.31087101948584,47.56496603016161],[-122.31091431211878,47.5650246089838],[-122.31100358340329,47.56517435831969],[-122.31106229863762,47.56537095110749],[-122.31111707161415,47.5656998126874],[-122.31115135695457,47.56604684996934],[-122.31115322393637,47.56618357288546],[-122.31114803647674,47.56630302767935],[-122.31113488027394,47.56643676521037],[-122.31109322303044,47.56656989295877],[-122.31103562836097,47.56667196083971],[-122.31095449645217,47.56676242836201],[-122.31085237897052,47.5668348989788],[-122.31072323798662,47.56690003644184],[-122.31037751896351,47.56698382929571],[-122.30991849338209,47.56705694145342],[-122.30928916151532,47.56715820618531],[-122.30821072537829,47.56726690768657],[-122.30885328964862,47.56932164818218],[-122.3073970863839,47.56952569702504],[-122.30812195600906,47.5718631249742]]]],"type":"MultiPolygon"} +},{ + "id": 907128281, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":150726.996829, + "geom:bbox":"-122.311364441,47.5611762775,-122.304837392,47.5648637555", + "geom:latitude":47.563035, + "geom:longitude":-122.308011, + "iso:country":"US", + "lbl:latitude":47.563239, + "lbl:longitude":-122.308007, + "lbl:max_zoom":18.0, + "mps:latitude":47.563239, + "mps:longitude":-122.308007, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.563239, + "reversegeo:longitude":-122.308007, + "src:geom":"mz", + "wof:belongsto":[ + 85805013, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"78d42f6ba9badbc9a47009d366a45893", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128281, + "neighbourhood_id":85805013, + "region_id":85688623 + } + ], + "wof:id":907128281, + "wof:lastmodified":1566608547, + "wof:name":"VA Medical Center", + "wof:parent_id":85805013, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.31136444095067, + 47.5611762775275, + -122.3048373923812, + 47.56486375546729 +], + "geometry": {"coordinates":[[[[-122.31136444095067,47.56222575960606],[-122.31013320990314,47.56486375546729],[-122.30601323176063,47.56481437101199],[-122.30503074191584,47.56193303441077],[-122.3048373923812,47.56120207724189],[-122.30512740878959,47.56119066346938],[-122.30654889151155,47.5611762775275],[-122.30678523140877,47.5611762775275],[-122.30693097434542,47.561200199939],[-122.30707277828377,47.56125336081438],[-122.30715155824954,47.56130386359602],[-122.30727366719644,47.56137828865916],[-122.30739971514163,47.56145005558419],[-122.30751394609199,47.56151119029465],[-122.30763211604061,47.56156169282773],[-122.30774240799265,47.5616042212389],[-122.30785663894299,47.561628143455],[-122.30795905289847,47.56163877554754],[-122.31048353940342,47.56167249235872],[-122.31097043812797,47.56194059152893],[-122.31136444095067,47.56222575960606]]]],"type":"MultiPolygon"} +},{ + "id": 907128283, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":235215.944276, + "geom:bbox":"-122.313465024,47.5648791701,-122.307397086,47.5718669316", + "geom:latitude":47.569068, + "geom:longitude":-122.310858, + "iso:country":"US", + "lbl:latitude":47.569199, + "lbl:longitude":-122.311104, + "lbl:max_zoom":18.0, + "mps:latitude":47.569199, + "mps:longitude":-122.311104, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Jefferson Park" + ], + "name:swe_x_preferred":[ + "Jefferson Park" + ], + "reversegeo:latitude":47.569199, + "reversegeo:longitude":-122.311104, + "src:geom":"mz", + "wof:belongsto":[ + 85805013, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6cd79f96121243404a8266bb0ccfe5d2", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128283, + "neighbourhood_id":85805013, + "region_id":85688623 + } + ], + "wof:id":907128283, + "wof:lastmodified":1566608548, + "wof:name":"Jefferson Park", + "wof:parent_id":85805013, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.31346502446237, + 47.56487917008238, + -122.3073970863839, + 47.57186693159216 +], + "geometry": {"coordinates":[[[[-122.3126510921411,47.56490611917952],[-122.31265810466478,47.5672996404932],[-122.31346502446237,47.56731656547753],[-122.31345942128583,47.56777176243884],[-122.31343724427943,47.56909408017586],[-122.31334533198036,47.57155467782742],[-122.3127843300901,47.57156414009007],[-122.31255525431824,47.57157991052402],[-122.31243370390868,47.57160514320846],[-122.31226540334161,47.57165245445902],[-122.31210177779029,47.57169976566684],[-122.31190075211295,47.57175969313539],[-122.31169972643561,47.57181015831887],[-122.31146130063226,47.57185431531452],[-122.31101249912008,47.57186693159216],[-122.31040942208807,47.57186377752303],[-122.30841786537773,47.57186062345372],[-122.30812195600906,47.5718631249742],[-122.3073970863839,47.56952569702504],[-122.30885328964862,47.56932164818218],[-122.30821072537829,47.56726690768657],[-122.30843090916872,47.56724471415303],[-122.30928916151532,47.56715820618531],[-122.30991849338209,47.56705694145342],[-122.31037751896351,47.56698382929571],[-122.31072323798662,47.56690003644184],[-122.31085237897052,47.5668348989788],[-122.31095449645217,47.56676242836201],[-122.31103562836097,47.56667196083971],[-122.31109322303044,47.56656989295877],[-122.31113488027394,47.56643676521037],[-122.31114803647674,47.56630302767935],[-122.31115322393637,47.56618357288546],[-122.31115135695457,47.56604684996934],[-122.31111707161415,47.5656998126874],[-122.31106229863762,47.56537095110749],[-122.31100358340329,47.56517435831969],[-122.31091431211878,47.5650246089838],[-122.31087101948584,47.56496603016161],[-122.31079700151042,47.56490920632774],[-122.31069706426439,47.56487917008238],[-122.3126510921411,47.56490611917952]]]],"type":"MultiPolygon"} +},{ + "id": 907128287, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0002, + "geom:area_square_m":1665387.123374, + "geom:bbox":"-122.376188936,47.6251781806,-122.356781962,47.6429369025", + "geom:latitude":47.63446, + "geom:longitude":-122.367157, + "iso:country":"US", + "lbl:latitude":47.634074, + "lbl:longitude":-122.368624, + "lbl:max_zoom":18.0, + "mps:latitude":47.634074, + "mps:longitude":-122.368624, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "W Queen Anne" + ], + "reversegeo:latitude":47.634074, + "reversegeo:longitude":-122.368624, + "src:geom":"seagv", + "wof:belongsto":[ + 85843445, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"130cfcda89b5525fadc39b511b64c925", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128287, + "neighbourhood_id":85843445, + "region_id":85688623 + } + ], + "wof:id":907128287, + "wof:lastmodified":1566608546, + "wof:name":"West Queen Anne", + "wof:parent_id":85843445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869777 + ], + "wof:tags":[] +}, + "bbox": [ + -122.37618893638533, + 47.6251781805688, + -122.35678196215271, + 47.64293690245122 +], + "geometry": {"coordinates":[[[[-122.35691749971927,47.63959368411729],[-122.35693021170965,47.638383123982],[-122.35693787260372,47.63751945501409],[-122.35694651183476,47.63651610109523],[-122.35697060927158,47.63512300103041],[-122.35697890503653,47.63391755566148],[-122.35699320679809,47.63272672535846],[-122.35699752172489,47.63270091836132],[-122.35700031083454,47.63267496015783],[-122.35700056296288,47.63264895027223],[-122.35699878773333,47.63262296787335],[-122.35699448053487,47.63259710465221],[-122.35698865758252,47.63257143334771],[-122.35698030695865,47.63254600997232],[-122.35696993850115,47.63252095651097],[-122.35695755397532,47.63249631540803],[-122.35692955924745,47.63245808764415],[-122.35691042499334,47.63242805282511],[-122.35689050488763,47.63240582622716],[-122.35686857928378,47.63238435474888],[-122.35684515926967,47.63236380317787],[-122.35682024358175,47.63234412835968],[-122.35678196215271,47.63231824879948],[-122.35789143865658,47.63231847655095],[-122.35865167687936,47.63232324479338],[-122.35989503760811,47.63232405827247],[-122.36180247104792,47.63231838567957],[-122.36310528177953,47.63232333536692],[-122.36310962365293,47.63133310430359],[-122.36311873778445,47.63052236931106],[-122.36311972916482,47.62967682517664],[-122.36316185391337,47.62885069404117],[-122.36321172615204,47.62802942824719],[-122.36322149813952,47.62724113437896],[-122.36321819485097,47.62681852072607],[-122.36321790937338,47.62673986259949],[-122.36380634975329,47.62680178776448],[-122.3643551745572,47.62701638312829],[-122.36434666220062,47.62672717043037],[-122.36440723562554,47.62644242686937],[-122.36453109159173,47.62586172094924],[-122.3645398075279,47.625227722899],[-122.36454088432841,47.6251781805688],[-122.36465730365411,47.62527502772021],[-122.36477162823421,47.62536958893143],[-122.36571906932333,47.62572598336426],[-122.36652894264695,47.62604180727678],[-122.36743163701389,47.62639296388884],[-122.36766612789104,47.62648740236015],[-122.36833280752033,47.62672643902887],[-122.36858481528149,47.62676147149658],[-122.36880764361707,47.62692444437553],[-122.36993738251478,47.62775168898312],[-122.37037351243018,47.62808062856263],[-122.37159362935552,47.62904755181025],[-122.372331401987,47.62961404953967],[-122.37319206308329,47.63030604244932],[-122.3737123493095,47.63071866338036],[-122.37459775778413,47.63140606929957],[-122.37544593700298,47.63208549012901],[-122.37561241008375,47.63221039695304],[-122.37563706752533,47.63223821155401],[-122.37569057255378,47.63229836848169],[-122.37570998847744,47.63232042745049],[-122.37573140635796,47.63234160219526],[-122.37575181565919,47.63236296188084],[-122.37577223006491,47.63238449312347],[-122.37579214246803,47.63240620244352],[-122.37581155466692,47.63242813298752],[-122.37583046358257,47.63245019845611],[-122.37584887102376,47.63247244234667],[-122.37586728355835,47.63249485744414],[-122.37588468700091,47.6325174578425],[-122.375902094786,47.63254018663859],[-122.37591849346727,47.63256310038535],[-122.37593489649042,47.63258614253014],[-122.37595079698814,47.63260936276135],[-122.37596619398843,47.63263267580395],[-122.37598108898123,47.6326561669264],[-122.37599548069653,47.63267979332633],[-122.37600936786414,47.63270351220152],[-122.37602275355206,47.63272740950089],[-122.37603563519976,47.63275139891797],[-122.3760480123084,47.63277548116166],[-122.37605988613653,47.63279969868375],[-122.37607176303395,47.63282400180253],[-122.37608262955928,47.63284844742319],[-122.37609299204122,47.63287298516237],[-122.37610335656356,47.63289760886342],[-122.37611270918919,47.63292228874622],[-122.37612155854085,47.63294710425915],[-122.37613040917059,47.63297196257381],[-122.37613824866186,47.63299692023109],[-122.37614609071038,47.63302196384358],[-122.37615291854981,47.6330470208502],[-122.37615924362049,47.63307221312957],[-122.3761650633928,47.63309745542764],[-122.37617401092709,47.63314266335783],[-122.37617780662535,47.63316806154698],[-122.37618109701152,47.63319350940431],[-122.3761838802961,47.63321896413442],[-122.37618615826713,47.63324446853277],[-122.37618742202979,47.6332699866769],[-122.37618868631272,47.63329550481396],[-122.37618893638533,47.63332103669681],[-122.37618817327377,47.63334658196059],[-122.37618740838313,47.63337208477971],[-122.37618562979772,47.63339760133761],[-122.3761790900932,47.63365578455399],[-122.37612791570477,47.63449481341159],[-122.37613731044563,47.63537565187305],[-122.37613268541359,47.63621122230909],[-122.37614047974118,47.63703809873946],[-122.37614793910457,47.63783657339889],[-122.3761507613535,47.63851291897038],[-122.37614927382116,47.63918075408363],[-122.37615553218477,47.64022932766082],[-122.37616536056119,47.640987967859],[-122.37616251524651,47.64174678013256],[-122.37616879499097,47.64252256326201],[-122.37616942305294,47.64293690245122],[-122.37602235434947,47.64285183545935],[-122.37530933301626,47.64191339173101],[-122.37494750952519,47.64144426165954],[-122.37442138210304,47.64075293610021],[-122.37436496822423,47.64068043596606],[-122.37399540118113,47.6406854375568],[-122.37223349177721,47.64068351642766],[-122.37158398715799,47.64068890912795],[-122.37153226946488,47.64068930777729],[-122.37155190313145,47.63970709416235],[-122.37155402616838,47.63959027179747],[-122.37030369305306,47.63959978881978],[-122.36845513504291,47.63959902260758],[-122.36661121179846,47.63958342526136],[-122.3651383319505,47.63959592528855],[-122.36339825819388,47.63959357451208],[-122.3615279021176,47.63959298879048],[-122.35961912468366,47.63959652919302],[-122.35691749971927,47.63959368411729]]]],"type":"MultiPolygon"} +},{ + "id": 907128289, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000329, + "geom:area_square_m":2742847.551202, + "geom:bbox":"-122.376377846,47.6395834253,-122.349555736,47.6579308926", + "geom:latitude":47.647136, + "geom:longitude":-122.365293, + "iso:country":"US", + "lbl:latitude":47.646255, + "lbl:longitude":-122.365041, + "lbl:max_zoom":18.0, + "mps:latitude":47.646255, + "mps:longitude":-122.365041, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "N Queen Anne" + ], + "reversegeo:latitude":47.646255, + "reversegeo:longitude":-122.365041, + "src:geom":"seagv", + "wof:belongsto":[ + 85843445, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"65478ed7b489a386b0a6c7f418d3ab9a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128289, + "neighbourhood_id":85843445, + "region_id":85688623 + } + ], + "wof:id":907128289, + "wof:lastmodified":1566608547, + "wof:name":"North Queen Anne", + "wof:parent_id":85843445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869545 + ], + "wof:tags":[] +}, + "bbox": [ + -122.3763778463803, + 47.63958342526136, + -122.34955573619413, + 47.6579308926099 +], + "geometry": {"coordinates":[[[[-122.37616942305294,47.64293690245122],[-122.37616941431901,47.64326140547155],[-122.37616751807153,47.643761596142],[-122.37617365064384,47.64424179810337],[-122.3761720909304,47.64477043295373],[-122.37620738635709,47.64510529727208],[-122.37629148521515,47.64595671727111],[-122.37635211114085,47.64658108042023],[-122.37637689518176,47.64741625243387],[-122.37637784638029,47.64830290320235],[-122.37632769722461,47.65001439993808],[-122.37623309869328,47.65164693701939],[-122.37621731557741,47.65251676230488],[-122.37621501491465,47.65290076470885],[-122.37620899173689,47.6533302748171],[-122.37621366791682,47.65372716441206],[-122.37621988924546,47.65393680307443],[-122.37622001770025,47.65469326072137],[-122.37622420318421,47.65544966373568],[-122.37622411775111,47.65595959816768],[-122.37611706548252,47.65595920612276],[-122.3761175763575,47.65609608660605],[-122.3761181762118,47.65623596536475],[-122.3761188396108,47.65637798529745],[-122.37611942294861,47.65651730727217],[-122.37611999738762,47.65665632927824],[-122.37612069384345,47.65679946277398],[-122.37612153773213,47.65694756415903],[-122.37612214395801,47.65708765692569],[-122.37612266248927,47.65722479456895],[-122.37612322042131,47.65736325978889],[-122.37612371256654,47.65751659309195],[-122.37609058612557,47.65764827387187],[-122.37609078279054,47.65779167104982],[-122.37607665089911,47.6579308926099],[-122.37601880639272,47.6579305621331],[-122.37580670123931,47.65792906490309],[-122.37580637352541,47.6578838254734],[-122.37580626607594,47.65774342622779],[-122.37567534866474,47.65774245701824],[-122.37558709374646,47.65774309515527],[-122.3754156806813,47.65774515930845],[-122.37528140320185,47.65773352426521],[-122.37527729568284,47.65769767631114],[-122.37527826912492,47.65755944730391],[-122.37527915364198,47.6574182203702],[-122.37527712274684,47.65738397249997],[-122.37527715013238,47.65728225969145],[-122.37527809891627,47.65714321709177],[-122.3752374728718,47.65714183918389],[-122.37505775240284,47.65713741721085],[-122.37497752337896,47.65713494711262],[-122.37479074396988,47.65713199120135],[-122.37467605567008,47.65713080120664],[-122.3745846297994,47.65712711143625],[-122.37435418196338,47.65712281782628],[-122.3742739123761,47.65711897685196],[-122.37423020276869,47.65711626937652],[-122.37402413694731,47.65711301614331],[-122.37391146941042,47.65711154112493],[-122.37377949886232,47.65710921307423],[-122.37378140961583,47.65724217585318],[-122.37378052864335,47.65738365959093],[-122.37377968066288,47.6575262568938],[-122.37377968492747,47.65766335859817],[-122.37377919320556,47.65774948252881],[-122.37375874687295,47.65777855035947],[-122.3737166199309,47.65779501534428],[-122.37362332652182,47.65779683411639],[-122.37358689552352,47.65780006902479],[-122.37338193837043,47.65780009846561],[-122.37329479570793,47.65780401900108],[-122.37316365873563,47.6577956378669],[-122.37303272423253,47.65779410884406],[-122.37301314629897,47.65781823808254],[-122.37295632498189,47.65781819195735],[-122.37289427756185,47.65781298964926],[-122.3728423247137,47.65780602300809],[-122.37276244312409,47.65778105335883],[-122.37271908193743,47.65775584730595],[-122.37270500390134,47.65772587503444],[-122.37268986404952,47.65769428926584],[-122.37267748975104,47.65765332617653],[-122.37265197896218,47.65761416848432],[-122.37263712270227,47.65759217573376],[-122.37261201776393,47.65756672289552],[-122.37257319332629,47.65755765041155],[-122.37249420491088,47.65756283106262],[-122.37249414059501,47.65769774844395],[-122.37228514418149,47.65769838786164],[-122.37207824022502,47.65770118347783],[-122.37186314177086,47.65770134720718],[-122.37165717084734,47.65770138759562],[-122.37144612906751,47.65770149574365],[-122.37127908104759,47.65771390584864],[-122.37117560052471,47.65768004229263],[-122.3710880006624,47.65765136265114],[-122.37104701836115,47.65763794873013],[-122.37100398494675,47.65762379138376],[-122.37095890243539,47.65760897622182],[-122.37086207978551,47.65757720735069],[-122.37080368094817,47.65755811620528],[-122.37078096713054,47.65751056562196],[-122.37071694231661,47.65747278452056],[-122.37065576557021,47.65742836686297],[-122.37062095770929,47.65741786857362],[-122.37057361413081,47.65739520006515],[-122.37050858304063,47.6573576893503],[-122.37045189252984,47.65732773529923],[-122.37041061054101,47.65730417099113],[-122.37038166924384,47.65728618145388],[-122.37034660144641,47.6572669036622],[-122.37023324670173,47.6572078514135],[-122.37020432905241,47.65719067543663],[-122.37016292575146,47.65716299989283],[-122.37011106388468,47.65712475424574],[-122.37004274793665,47.65707906167587],[-122.36997872418013,47.65704127980811],[-122.36993946208959,47.65701738834443],[-122.36989538115608,47.65700208789261],[-122.36985623305149,47.65698205073127],[-122.36980783555703,47.65695802555533],[-122.36974607510292,47.65692813921145],[-122.36967187679281,47.65688938077558],[-122.36962128916669,47.65685990100243],[-122.36952940343139,47.65680629980231],[-122.3695123660339,47.65677910928885],[-122.36953102902007,47.65675829222248],[-122.36952317645945,47.6567329057534],[-122.36945960655011,47.65671045601605],[-122.36941479532548,47.65670476243418],[-122.36937279118906,47.65669106162034],[-122.36934090505272,47.6566764104076],[-122.36930784283248,47.65665629133436],[-122.36925856965588,47.6566369475327],[-122.36920928006677,47.65661704692612],[-122.36916999461445,47.65659234159811],[-122.36912670953018,47.65656961777535],[-122.36905744502583,47.65652612227761],[-122.36900876494339,47.65649250338345],[-122.36896750831455,47.65646975250122],[-122.36897492621583,47.65644608802774],[-122.36899737009458,47.65641588013772],[-122.36904909716307,47.6563809073246],[-122.36910150630889,47.65633469989268],[-122.36912926421724,47.65631264658691],[-122.36918474020321,47.65626721168048],[-122.36926794932519,47.65619890981558],[-122.36934925194649,47.65613474673622],[-122.36937290447101,47.65611112019032],[-122.36944122394786,47.65605398714293],[-122.36947408514094,47.65603297857555],[-122.36951080089828,47.65600506301239],[-122.36954520435771,47.65596758177725],[-122.36958231024974,47.65591853859097],[-122.36960068182265,47.65588787132025],[-122.3696098939114,47.65582193827515],[-122.36961523381352,47.65579663112001],[-122.36964375589444,47.65573180851362],[-122.36965655374951,47.65568420722057],[-122.36965913636475,47.65563425879062],[-122.36960747668392,47.65563714087267],[-122.36953848768185,47.65563725721109],[-122.36948677990058,47.65563851169021],[-122.36945030966614,47.65564037489357],[-122.36939972914502,47.65564542717659],[-122.3693350636366,47.65565452527252],[-122.36928865349343,47.65566337747773],[-122.36924432851927,47.65567412912527],[-122.36916568349085,47.65569082800559],[-122.36912332980921,47.65569962543835],[-122.36902646040596,47.65571764082173],[-122.36899010395062,47.65572335820985],[-122.36889622877932,47.65573970490995],[-122.36883886490281,47.65575555961393],[-122.36880063266413,47.65576648620755],[-122.368746052345,47.65577352005837],[-122.36872912953774,47.65575018411002],[-122.36876609542026,47.65573074860566],[-122.36880719168174,47.65571374233996],[-122.36884532647456,47.65569951784467],[-122.36889329569421,47.65567474996475],[-122.36897595237231,47.65562209367112],[-122.36902291439637,47.65559759623326],[-122.36904435260342,47.65556770162569],[-122.36906880028417,47.6555366527715],[-122.36910987225896,47.65551883279771],[-122.36913977183302,47.65550060611842],[-122.36917774444345,47.65548089998212],[-122.36921677163589,47.65546255053881],[-122.36929576666684,47.65542335363424],[-122.36926783281032,47.65540509297643],[-122.36923781431956,47.6553849328434],[-122.36920582400735,47.65536672687787],[-122.36916138738677,47.65533934882013],[-122.36910765418081,47.65530635513142],[-122.36904583864465,47.65527454124705],[-122.36897570022215,47.6552357276476],[-122.36894780494504,47.65525311298573],[-122.3688903058969,47.65523002409273],[-122.36884286060491,47.65520380049232],[-122.36880762528166,47.65517878317851],[-122.36877641462323,47.65515259758131],[-122.36874337761867,47.65513329194197],[-122.36864918429477,47.6550701239939],[-122.3685285826442,47.65500594103734],[-122.36841920991213,47.65494409153798],[-122.36817558230717,47.65480230463718],[-122.36792460643468,47.65465213306411],[-122.36749100144196,47.65439859597706],[-122.36719092868888,47.65423481724518],[-122.36637500488872,47.65515671482562],[-122.36631126020592,47.65512822466146],[-122.36646207321286,47.6549095739343],[-122.36685649854223,47.65445401341412],[-122.36632657462216,47.65423685851915],[-122.36583915714056,47.65477318761798],[-122.36580168082857,47.65477531976429],[-122.36577696468186,47.65479733167293],[-122.36570835216938,47.65477576167029],[-122.36598755917305,47.65443829070319],[-122.36615147114148,47.65425099751903],[-122.36635299034684,47.6540316647563],[-122.36653754305233,47.65382189996144],[-122.36666013312971,47.65367847778732],[-122.36643421398692,47.65358636241987],[-122.36607208771245,47.65400172747471],[-122.36570175745339,47.65386356857573],[-122.36577937589304,47.65374324574622],[-122.36557900573838,47.65365738296701],[-122.3656964796568,47.6535124025008],[-122.36580526534443,47.65334804504868],[-122.36579060768689,47.65326379619309],[-122.36571126583689,47.6532223626428],[-122.36558328541497,47.65318295405166],[-122.36550648116631,47.65315875232019],[-122.36550246642966,47.65309136942503],[-122.36548421634187,47.65305733967935],[-122.36514126675975,47.65298736124303],[-122.36499788968288,47.65294186147764],[-122.36494736598968,47.65284545578532],[-122.36477148073077,47.65279846467018],[-122.36463126832624,47.65275703467677],[-122.3645879021925,47.65276584405985],[-122.36452396089963,47.65283388343794],[-122.36447576645975,47.6528509836086],[-122.3643383969975,47.65283719223894],[-122.36427468386243,47.65284408984544],[-122.36419971825521,47.65284783982333],[-122.36400810798595,47.6528180681031],[-122.36393897379143,47.65277868064021],[-122.36382587972562,47.65276237753126],[-122.3637385019499,47.65286145092247],[-122.36366240874186,47.65286135948601],[-122.36356904315555,47.65286042890379],[-122.36339136715146,47.65285596126285],[-122.36324388927159,47.65311924941363],[-122.36280366408596,47.65301878044284],[-122.36303723384523,47.65250918214638],[-122.36242127690565,47.65236664309302],[-122.3623371179896,47.65250624539686],[-122.36204330677845,47.65245097929274],[-122.36195405273048,47.65262436794358],[-122.36169670132988,47.65256694051704],[-122.36166433898521,47.65260494930253],[-122.36128209499719,47.65250943771075],[-122.36125064199119,47.65254387805072],[-122.3609993267263,47.65241563238818],[-122.36070076668794,47.65226771148522],[-122.36041948117787,47.65212067253452],[-122.36015381165547,47.65198713349441],[-122.35988011098533,47.65185644336157],[-122.35962457773441,47.65172251032672],[-122.35936512482058,47.65159325622157],[-122.35911499424245,47.65147047469605],[-122.35880557969635,47.65133259166218],[-122.35852294361473,47.65120831637547],[-122.35830254726758,47.65109610296845],[-122.35818082493029,47.65102755430743],[-122.35788402012986,47.65086974863379],[-122.35756602554714,47.65071578231069],[-122.3571061187973,47.65049653429968],[-122.35704755222164,47.65047126865444],[-122.35701356447125,47.65045390035763],[-122.35697448325431,47.65043578593009],[-122.35693739698578,47.6504165311412],[-122.35682924671069,47.65036095242921],[-122.35679328803323,47.65034553836497],[-122.3567212811312,47.65031166946577],[-122.35664411634859,47.65027487040399],[-122.3566222417622,47.65025541167508],[-122.35656463326148,47.65022820504411],[-122.3565214957539,47.65021014507496],[-122.35645553373867,47.65017482388044],[-122.35638763984787,47.65014282769036],[-122.3563239963712,47.65011737266901],[-122.35628909919021,47.65010357244454],[-122.35622530276871,47.65007289228441],[-122.35618728328684,47.6500563915865],[-122.35615130118131,47.65004016371775],[-122.35605459577491,47.64999428532623],[-122.35599074266915,47.64996167786864],[-122.35584866432156,47.64989065712897],[-122.35581165911299,47.64987414274789],[-122.35575715046679,47.6498488222021],[-122.35563377501852,47.64979288928495],[-122.35555060738652,47.64975891159794],[-122.35549716013436,47.64973520493392],[-122.35543043490392,47.64970841969597],[-122.35537594991452,47.64968391257631],[-122.35530406572212,47.64965415428685],[-122.35522274980569,47.64961411056773],[-122.35512104812888,47.64957078346018],[-122.35499349764314,47.64951079253994],[-122.3548824767073,47.64946099135243],[-122.35479819207714,47.64942347228729],[-122.35475394533867,47.64940212728432],[-122.35465737894198,47.6493609160054],[-122.35453680728429,47.64929671822917],[-122.35448037584177,47.64927497889235],[-122.35443926786655,47.6492568910429],[-122.35435408085955,47.64922319674574],[-122.35431917779782,47.64920913874327],[-122.35427173605419,47.64918260910552],[-122.35423472485739,47.64916583738854],[-122.35414414741771,47.64912124684527],[-122.35404427571331,47.64907103904179],[-122.35395892894564,47.64903186254584],[-122.35392599776793,47.64901585016707],[-122.35381913188395,47.64896929168581],[-122.35377689014855,47.64894710562152],[-122.35371629893039,47.64892186534036],[-122.35365256882649,47.64889336808601],[-122.3535797210203,47.64886529225956],[-122.35352307330754,47.64883614337714],[-122.35348096828994,47.64881862550449],[-122.3534223890877,47.64879280120765],[-122.35335460330477,47.64876435793069],[-122.3532784566803,47.64872754305808],[-122.35320465916016,47.64870166486781],[-122.3531614677443,47.64868167609984],[-122.35311013131289,47.648660682017],[-122.35304432629742,47.64863058393314],[-122.35296528204171,47.64859873456751],[-122.35285939182228,47.64855079126459],[-122.35280389579184,47.64852629678849],[-122.35274944581957,47.64850290198358],[-122.35271764948752,47.64849098724141],[-122.35266829386403,47.64846833869483],[-122.35261490608225,47.6484465578449],[-122.35256452903853,47.6484236656151],[-122.35247920821888,47.64838530161183],[-122.35236188420079,47.64832791358571],[-122.35228470918145,47.64829055478168],[-122.35221695667521,47.64826322405558],[-122.35216657123223,47.64824003203053],[-122.35208030259018,47.64820390839099],[-122.35203090749053,47.64817988917918],[-122.35196416101817,47.64815224515293],[-122.35189830102553,47.64812021923129],[-122.35185112667021,47.64810276802422],[-122.35179461708704,47.64807828658499],[-122.35171662844003,47.64804779321941],[-122.35165912124266,47.6480238816692],[-122.35158403893024,47.64798867969161],[-122.35150491702916,47.64795408817604],[-122.35145364650111,47.64793532084899],[-122.35138159065873,47.64789952103802],[-122.35133537439722,47.64788012892391],[-122.35125935104338,47.64784742421131],[-122.35114841725039,47.64780036051002],[-122.35108983285716,47.64777427819613],[-122.35101676299927,47.6477384920272],[-122.35091089257833,47.64769110369761],[-122.35085642860152,47.64766715119367],[-122.35076487518874,47.64762368504663],[-122.35069297221105,47.64759310989797],[-122.35064248436679,47.64756636246586],[-122.35059423198099,47.64754669745425],[-122.35054998856495,47.64752535081671],[-122.35047304794395,47.64749595666134],[-122.35043504893582,47.64748001082136],[-122.3503797708365,47.64746292425423],[-122.35032581037038,47.64745623118234],[-122.35025065161112,47.64745311933081],[-122.35012162862704,47.64744661182647],[-122.35007963706312,47.64743290424482],[-122.35004444028395,47.64740869471672],[-122.35001514375695,47.64737810898229],[-122.34998581529256,47.64734640930948],[-122.34995993726021,47.6473286736806],[-122.3499106476509,47.64730820828146],[-122.34983955973398,47.64727076679012],[-122.34976533618244,47.64724754829922],[-122.34975222641995,47.64643278634308],[-122.34975283959349,47.6464016302419],[-122.34975248951292,47.64637224396714],[-122.34975163146741,47.64634282163782],[-122.34974975947014,47.64631341281189],[-122.34974738199656,47.646284053186],[-122.34974449678133,47.64625470067291],[-122.34974059938577,47.64622540445892],[-122.34973619475981,47.6461961149998],[-122.34973128591996,47.64616691789417],[-122.34972536261712,47.64613773429836],[-122.34971893635087,47.64610868585859],[-122.34971149562443,47.64607965092838],[-122.34970355245592,47.64605075114704],[-122.34969510280239,47.64602190128053],[-122.34968564222729,47.64599315051477],[-122.34967567764528,47.64596453456736],[-122.3496652081387,47.64593596851356],[-122.3496537291723,47.64590758717924],[-122.34964174601244,47.64587929854786],[-122.34962925936836,47.6458511447272],[-122.34961576379739,47.64582317596918],[-122.34960176350627,47.64579529956955],[-122.34958726151112,47.6457676011267],[-122.3495717500733,47.64574008775253],[-122.34955573619413,47.64571270917411],[-122.34957906345045,47.64486027337093],[-122.34958086834332,47.64297404008436],[-122.35018422401426,47.64281137933051],[-122.3516229216077,47.64238938350904],[-122.35256197183675,47.6421733907647],[-122.35355096041368,47.64201777617362],[-122.35446732832848,47.64185905320803],[-122.3555570925173,47.64185464239103],[-122.35555991867008,47.64143143338312],[-122.35688507776888,47.64142981770716],[-122.35690211242824,47.64086876013798],[-122.35691102485205,47.6400304808306],[-122.35691749971927,47.63959368411729],[-122.35961912468366,47.63959652919302],[-122.3615279021176,47.63959298879048],[-122.36339825819388,47.63959357451208],[-122.3651383319505,47.63959592528855],[-122.36661121179846,47.63958342526136],[-122.36845513504291,47.63959902260758],[-122.37030369305306,47.63959978881978],[-122.37155402616838,47.63959027179747],[-122.37155190313145,47.63970709416235],[-122.37153226946488,47.64068930777729],[-122.37158398715799,47.64068890912795],[-122.37223349177721,47.64068351642766],[-122.37399540118113,47.6406854375568],[-122.37436496822423,47.64068043596606],[-122.37442138210304,47.64075293610021],[-122.37494750952519,47.64144426165954],[-122.37530933301626,47.64191339173101],[-122.37602235434947,47.64285183545935],[-122.37616942305294,47.64293690245122]]]],"type":"MultiPolygon"} +},{ + "id": 907128291, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000215, + "geom:area_square_m":1793218.300948, + "geom:bbox":"-122.357000563,47.6280185303,-122.340259131,47.6472475483", + "geom:latitude":47.636109, + "geom:longitude":-122.349527, + "iso:country":"US", + "lbl:latitude":47.635426, + "lbl:longitude":-122.350523, + "lbl:max_zoom":18.0, + "mps:latitude":47.635426, + "mps:longitude":-122.350523, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "E Queen Anne" + ], + "reversegeo:latitude":47.635426, + "reversegeo:longitude":-122.350523, + "src:geom":"seagv", + "wof:belongsto":[ + 85843445, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e53908d7331e4851b8f186b7797f77c8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128291, + "neighbourhood_id":85843445, + "region_id":85688623 + } + ], + "wof:id":907128291, + "wof:lastmodified":1566608549, + "wof:name":"East Queen Anne", + "wof:parent_id":85843445, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869203 + ], + "wof:tags":[] +}, + "bbox": [ + -122.35700056296288, + 47.62801853034868, + -122.34025913073472, + 47.64724754829922 +], + "geometry": {"coordinates":[[[[-122.35691749971927,47.63959368411729],[-122.35691102485205,47.6400304808306],[-122.35690211242824,47.64086876013798],[-122.35688507776888,47.64142981770716],[-122.35555991867008,47.64143143338312],[-122.3555570925173,47.64185464239103],[-122.35446732832848,47.64185905320803],[-122.35355096041368,47.64201777617362],[-122.35256197183675,47.6421733907647],[-122.3516229216077,47.64238938350904],[-122.35018422401426,47.64281137933051],[-122.34958086834332,47.64297404008436],[-122.34957906345045,47.64486027337093],[-122.34955573619413,47.64571270917411],[-122.3495717500733,47.64574008775253],[-122.34958726151112,47.6457676011267],[-122.34960176350627,47.64579529956955],[-122.34961576379739,47.64582317596918],[-122.34962925936836,47.6458511447272],[-122.34964174601244,47.64587929854786],[-122.3496537291723,47.64590758717924],[-122.3496652081387,47.64593596851356],[-122.34967567764528,47.64596453456736],[-122.34968564222729,47.64599315051477],[-122.34969510280239,47.64602190128053],[-122.34970355245592,47.64605075114704],[-122.34971149562443,47.64607965092838],[-122.34971893635087,47.64610868585859],[-122.34972536261712,47.64613773429836],[-122.34973128591996,47.64616691789417],[-122.34973619475981,47.6461961149998],[-122.34974059938577,47.64622540445892],[-122.34974449678133,47.64625470067291],[-122.34974738199656,47.646284053186],[-122.34974975947014,47.64631341281189],[-122.34975163146741,47.64634282163782],[-122.34975248951292,47.64637224396714],[-122.34975283959349,47.6464016302419],[-122.34975222641995,47.64643278634308],[-122.34976533618244,47.64724754829922],[-122.3497044115099,47.64722813731962],[-122.34966738692999,47.64721080697986],[-122.3496216825897,47.6471741413357],[-122.34957415820806,47.64714461213654],[-122.34953474561735,47.64711497455521],[-122.34951086332983,47.64709609859884],[-122.34947869271122,47.64707129160522],[-122.34939230677364,47.64699622227209],[-122.34935178429059,47.64696330056133],[-122.34931621234112,47.6469262001623],[-122.34928612603474,47.64690329329152],[-122.34923797965777,47.6468872252412],[-122.34921312356985,47.6468697331109],[-122.34917647414174,47.64683046182285],[-122.34913748420028,47.64678051052171],[-122.34907965149021,47.64671054489454],[-122.34901265282728,47.64663932997575],[-122.34897577152144,47.64659209274903],[-122.34894846456376,47.64656010899868],[-122.3489273849364,47.64653296938948],[-122.34888427597662,47.64648088799212],[-122.34885903698604,47.64645024761879],[-122.34883897192418,47.64642309449076],[-122.34877627691554,47.64636030530923],[-122.34873652213831,47.64631889002585],[-122.34874053774449,47.64628263351456],[-122.34879566220066,47.64625970680045],[-122.34878480320542,47.64623517298141],[-122.34874557444756,47.64617699885418],[-122.34872031197526,47.64614554484652],[-122.3486681573585,47.64609632560133],[-122.34862425097199,47.64605166633562],[-122.34856499038958,47.64600228469361],[-122.34856007973103,47.64597300193179],[-122.3485185770749,47.64594120698975],[-122.348489752736,47.64592676662521],[-122.34843236167376,47.6459067077978],[-122.34839948159852,47.64589232137696],[-122.34836653041543,47.64587549378562],[-122.34831097571509,47.64584881277363],[-122.34826573643947,47.64582803553176],[-122.34821237691501,47.64580706621957],[-122.34817753343059,47.64579493351729],[-122.3481282621964,47.6457750241325],[-122.34808874005734,47.64577636382573],[-122.3480511816627,47.64577549254194],[-122.34799814986246,47.64576578693045],[-122.34789190221449,47.64574003695715],[-122.34782855518026,47.64572442743557],[-122.34778643837373,47.64570635031816],[-122.34773565773308,47.64566945173219],[-122.34766771199489,47.64563526598758],[-122.34762744734833,47.64561112349298],[-122.34756873124306,47.64558037105679],[-122.34753576431281,47.64556298643802],[-122.34745977042672,47.64553109279009],[-122.34738974054277,47.64549500667491],[-122.34734458975123,47.64547722700852],[-122.34729329125339,47.64545734387537],[-122.34719375239305,47.64541809388479],[-122.34713978052565,47.6453934908231],[-122.34707769368876,47.64536890963025],[-122.34699336522267,47.64532945760649],[-122.34693268551531,47.64530091579415],[-122.34687822536506,47.64527696174358],[-122.34681059981496,47.6452537393146],[-122.3467411528591,47.64523765327782],[-122.34669206592483,47.64522403878896],[-122.34663557113724,47.64519985440013],[-122.34656879095854,47.64517083682515],[-122.34650715382956,47.64514423578972],[-122.34646416734894,47.6451310971355],[-122.34640997924967,47.64511647878025],[-122.34633202240416,47.64508679567216],[-122.3462929085496,47.64506730719216],[-122.34624743899346,47.64503856326825],[-122.34623157484735,47.64501628091824],[-122.34620365519963,47.6449980145915],[-122.34614854156287,47.64495157574564],[-122.34610328825276,47.64493024085009],[-122.34604568368329,47.64490277207705],[-122.34595824219359,47.64486087538812],[-122.34590284927155,47.64483967511558],[-122.34585471332052,47.64482386245063],[-122.34578025366595,47.64480977034933],[-122.34573149498294,47.64480741889653],[-122.34569644348751,47.64482296564709],[-122.34564840971423,47.64484553977049],[-122.34560757858954,47.64483674220021],[-122.34555637728585,47.64482015585378],[-122.34550639669671,47.64481066584418],[-122.34547742172147,47.644825874559],[-122.34543762075671,47.6448176202496],[-122.34541073764456,47.64483498635667],[-122.34535141429367,47.64485304016159],[-122.34527536623061,47.64481921788364],[-122.34521875247989,47.64479092127375],[-122.34515204635404,47.64476438682654],[-122.34511286148715,47.64474241396825],[-122.34505226267738,47.64471661264471],[-122.34498026374021,47.64468247914865],[-122.34495141047354,47.64466696710929],[-122.34496492914239,47.6446434805878],[-122.34498835594545,47.64461189321497],[-122.34500344052012,47.64457249080466],[-122.34496839070462,47.64455320519249],[-122.34486981322888,47.64451201252997],[-122.34483308723459,47.64450483084624],[-122.34480001857588,47.64448389069693],[-122.34480327753958,47.64445642727568],[-122.34481258120854,47.64442751269264],[-122.34478062984732,47.64441011381621],[-122.3447262985781,47.64439052672716],[-122.34465451565369,47.64436380247138],[-122.34461351827973,47.64434926545983],[-122.3445281632403,47.64430926827958],[-122.34442809475628,47.64425164293964],[-122.34438780032586,47.64422638572375],[-122.34432456983632,47.64417979647808],[-122.34426858098603,47.64413803813179],[-122.34420828045415,47.64408755409945],[-122.34416338186057,47.6440434633525],[-122.34413831357638,47.64401856101607],[-122.34408877788813,47.6439545239189],[-122.3440548414078,47.64390368999683],[-122.34404258926531,47.64386602134449],[-122.3440548622756,47.64383458215443],[-122.34405990356349,47.64379861197239],[-122.34405710309443,47.64377204324327],[-122.34403815874829,47.64374843055311],[-122.34399681987635,47.64372211552808],[-122.3439470396861,47.6437194771436],[-122.34389178888964,47.64373803316926],[-122.34382295071249,47.64374280260357],[-122.34379146414615,47.64370645992607],[-122.34375985126894,47.64366574924037],[-122.34379392048783,47.64365133011754],[-122.34385804182581,47.64362387323413],[-122.34391017066196,47.64360261645134],[-122.34388510271152,47.64357771405882],[-122.34386175332882,47.64354212053517],[-122.34380816977965,47.64347839394255],[-122.34377402106793,47.64349007228597],[-122.34372688216931,47.64350852062312],[-122.34364270451168,47.64354391234352],[-122.34357210120587,47.64355774483106],[-122.34353454718871,47.64352203991771],[-122.34351419997037,47.64348503558658],[-122.34355717085916,47.64346278642757],[-122.34360528387433,47.64344295432],[-122.34368297995177,47.64339393835181],[-122.34366185760344,47.64336517019866],[-122.34365102475576,47.64334144985003],[-122.34368927677319,47.64333134529862],[-122.34366214146598,47.64330509936373],[-122.34363555113794,47.64326269383725],[-122.34360813725968,47.64322685409328],[-122.34358793262454,47.64319477491301],[-122.34355069778944,47.64317003383512],[-122.34349254080784,47.64319329833314],[-122.34343332189248,47.64321490587908],[-122.34336520121886,47.64324434348956],[-122.3432873251172,47.64325223122655],[-122.34324764780509,47.64319577473416],[-122.34319589647204,47.6432125705451],[-122.34312466134521,47.64323956438636],[-122.34307938361025,47.6432522464797],[-122.34305315934351,47.64322243221593],[-122.34304143581495,47.6431680042823],[-122.34302655642936,47.64314463761929],[-122.34300335774896,47.64311422587492],[-122.34297229977361,47.64312753365311],[-122.34293214679502,47.64314203319351],[-122.34288001750164,47.64316328953576],[-122.342786785847,47.64320128558469],[-122.34271050466691,47.64322915997835],[-122.3426633656377,47.64324760822627],[-122.34260907284532,47.64326422300964],[-122.34256849416751,47.64322911453358],[-122.34253190825386,47.64319176828268],[-122.3425358247767,47.64315195724649],[-122.34260598974355,47.64312305004021],[-122.34266017921381,47.64310288051817],[-122.34269113459563,47.64308601807818],[-122.34266702543276,47.64305917479663],[-122.34262061420719,47.64299783751557],[-122.34256097302054,47.64293500457895],[-122.34252738921141,47.64289624761576],[-122.34248834522305,47.64284411003499],[-122.34246607387436,47.64281068678952],[-122.34250205932321,47.64279238680871],[-122.3425307550939,47.64276758540871],[-122.34257094766805,47.64275445640197],[-122.34255190866341,47.64272754589145],[-122.34253290198662,47.64270174860221],[-122.34251683381461,47.6426723562526],[-122.34254785238173,47.64265767819921],[-122.34258897920336,47.64264179496212],[-122.3426762380593,47.64260773408388],[-122.34276565136221,47.64257801460104],[-122.34281783605705,47.64255868549064],[-122.34285390025896,47.64254312654076],[-122.34289803673163,47.64252608928383],[-122.34293503518251,47.64250777537971],[-122.34296257425096,47.64247806217433],[-122.34296375906256,47.64244899848069],[-122.34296660484455,47.64240727334793],[-122.34295776100565,47.64238215564752],[-122.34295354197681,47.64234163819041],[-122.34293930997588,47.64230562387018],[-122.3429339415828,47.64226045189069],[-122.3429460015611,47.64222164651484],[-122.34291753453213,47.6421844496609],[-122.34289222904556,47.64215132434438],[-122.34286582268309,47.64211521416114],[-122.34283916149859,47.64207032412874],[-122.34282102583754,47.64203958866371],[-122.34276627636254,47.64200548205805],[-122.3427202356494,47.64199182552522],[-122.34269804407791,47.64196114345972],[-122.34265551401195,47.64189371407129],[-122.34262612920961,47.64185982815669],[-122.34259921024056,47.64184099106762],[-122.34256445824929,47.64183185459213],[-122.34252611140535,47.64183866084285],[-122.34248448431983,47.64183728469148],[-122.34244551728831,47.64182272037169],[-122.34240199049137,47.64182578221482],[-122.3423537430471,47.64184094549907],[-122.34229835822664,47.64185483278766],[-122.34226618683837,47.64182976693549],[-122.34220899254957,47.64174633656206],[-122.34218581165538,47.64171648178147],[-122.3422054462943,47.64169402819365],[-122.34225592765448,47.64168594722921],[-122.34233284362541,47.64168000081472],[-122.3423514394719,47.64165670423144],[-122.34230718436267,47.64159970864098],[-122.34225127502449,47.64152560113228],[-122.34220699651951,47.64146779154703],[-122.34219816935223,47.64144323022379],[-122.34224534668442,47.64142615291075],[-122.34228044362926,47.64141223478804],[-122.34230614615646,47.64138914411051],[-122.3422898001578,47.64135015862937],[-122.34225574783484,47.64129521263864],[-122.34222908759729,47.64125032246224],[-122.34219857029558,47.64121233869548],[-122.34213208509129,47.64112329047569],[-122.34211799740591,47.64109220117789],[-122.34208576687232,47.64103011878338],[-122.34207184645676,47.64100481102773],[-122.34205280088987,47.64097764326439],[-122.3420337391896,47.64094991871005],[-122.34198376297785,47.64087050569996],[-122.34196366338362,47.64084198097008],[-122.34190520703663,47.64078491614384],[-122.34182568522891,47.640700967169],[-122.34179801183284,47.64065609067452],[-122.34180200770915,47.64061902045272],[-122.34179797979664,47.64058505564503],[-122.34177773807316,47.64055160574134],[-122.34175306656299,47.64050531819493],[-122.34171634723643,47.64046330371973],[-122.34168086467437,47.64042894171372],[-122.34162947419632,47.64037066914161],[-122.34159535986007,47.64031353860318],[-122.34157742428035,47.64028965525321],[-122.34156026406818,47.64025753541146],[-122.34152102429395,47.64019854482903],[-122.34147742746167,47.64012920089551],[-122.3414465300819,47.6400780690837],[-122.34142861823562,47.64005499896429],[-122.34140152551844,47.64003012288088],[-122.34134626246993,47.63997819978138],[-122.34130437160429,47.63993269722292],[-122.34128850420555,47.6399101573568],[-122.34127234942842,47.63987772407241],[-122.34123608842586,47.63981650910941],[-122.34121184793122,47.63978503999549],[-122.34119551070329,47.63974631117243],[-122.3411736034155,47.63969038976527],[-122.34114199187377,47.63961458903579],[-122.3411107052363,47.63955000931774],[-122.34107584018021,47.63950192871338],[-122.34103428830915,47.63943311454431],[-122.34101725535847,47.6394053629669],[-122.34097938079148,47.63935843619244],[-122.34095715961728,47.63932664055324],[-122.34093481130469,47.63929047621853],[-122.34090338532876,47.63925606026935],[-122.34085192907534,47.6392304354905],[-122.34083475352077,47.63919775875041],[-122.34082692506279,47.63917262710714],[-122.34081062059307,47.6391350118041],[-122.34076192207543,47.63913454260131],[-122.34065190691079,47.63911817619779],[-122.34063353523767,47.63907921732093],[-122.34061097251725,47.6390356438177],[-122.34058526537179,47.63898855583296],[-122.34056608602138,47.63895671950083],[-122.3405299461696,47.6388996158348],[-122.34049410747264,47.63885291887276],[-122.34046003510328,47.63879715873561],[-122.34045822696197,47.63876976253716],[-122.34054470623315,47.63876146267081],[-122.34045625251382,47.63873662759765],[-122.34043488685788,47.63869933616061],[-122.34040574095528,47.63863858376876],[-122.34038222862026,47.63859720763143],[-122.3403489879112,47.63853513851144],[-122.34032994362946,47.63850797046475],[-122.3402823207456,47.6384745826666],[-122.34028562142747,47.63844848976287],[-122.34029092665224,47.6384215564086],[-122.34029018825703,47.63839607396937],[-122.34028490146746,47.63835364265309],[-122.34029611501693,47.63832059006453],[-122.34029317405161,47.63828909610231],[-122.34027888170721,47.63825089709568],[-122.34025913073472,47.63819931736387],[-122.34026754062084,47.63817452775237],[-122.34028600211846,47.63814660633868],[-122.34031342125165,47.63811278223919],[-122.34029415552031,47.63807794790574],[-122.34026461765728,47.63802114215133],[-122.34055828891117,47.63800525856534],[-122.3410274500674,47.63800774362823],[-122.34153539302719,47.63800101577162],[-122.34192129252135,47.63800027292673],[-122.3432866247616,47.6376388212402],[-122.34380890599761,47.63746240186711],[-122.34438033880191,47.63742439959434],[-122.34386050849504,47.63667244516021],[-122.34384156506167,47.63664878963625],[-122.34382362970408,47.63662490628662],[-122.34380619528928,47.63660080219132],[-122.34378926254087,47.63657652016031],[-122.34377283270138,47.63655210299665],[-122.34375741093427,47.63652745800871],[-122.34374198420947,47.63650264180731],[-122.34372756701367,47.63647768375246],[-122.34371365250895,47.63645254739847],[-122.34370024090978,47.63642727591294],[-122.34368783811261,47.63640181976508],[-122.34367543408455,47.63637632081301],[-122.34366353596522,47.63635077232871],[-122.34365163485251,47.63632513824438],[-122.34364023839447,47.63629941147433],[-122.34362934785372,47.63627363552324],[-122.3436184560706,47.63624781641746],[-122.34360857556999,47.6362218982562],[-122.34359818669815,47.63619594401899],[-122.3435888091074,47.63616989072665],[-122.3435794320451,47.63614383742661],[-122.34357055912461,47.63611769179939],[-122.34356168497011,47.63609150336861],[-122.34355331619935,47.63606526541361],[-122.34354545509268,47.63603902072361],[-122.34353809759612,47.6360126833628],[-122.34353073939337,47.63598630354264],[-122.34352388656174,47.63595987384775],[-122.34351703374725,47.63593344450331],[-122.34351068557905,47.63590692247454],[-122.34350484455236,47.63588039371806],[-122.3434995101575,47.63585385859167],[-122.34349417327216,47.63582723750853],[-122.34348934300748,47.6358006097047],[-122.34348501988168,47.63577397517342],[-122.34348069552769,47.63574729818997],[-122.34347687705856,47.63572057132544],[-122.34347356520747,47.63569383774044],[-122.34347025335981,47.63566710415533],[-122.3434674486482,47.63564036384295],[-122.34346514931001,47.63561357400732],[-122.34346285049327,47.6355867841648],[-122.34346105777263,47.63555998760881],[-122.34345977270455,47.63553318431876],[-122.34345899300729,47.6355063315056],[-122.34345821455366,47.63547952149523],[-122.34345794271259,47.63545270476462],[-122.34345767139087,47.63542588802706],[-122.34345841381104,47.63539905784215],[-122.34345864909018,47.6353722340335],[-122.34347629346767,47.63419854599283],[-122.34349456701332,47.63306400852461],[-122.34350395076238,47.63205992078453],[-122.34351748119543,47.63130345865996],[-122.34351878711756,47.63068481685864],[-122.34353999108991,47.62877810575626],[-122.34353549795057,47.62827406289586],[-122.34354009231936,47.62811796409474],[-122.34354278262209,47.62801853034868],[-122.34401990594378,47.6280189255065],[-122.34621725175454,47.62803262805185],[-122.34689164848851,47.62803437365854],[-122.3475356203179,47.62803600582774],[-122.34767092669819,47.62806843812788],[-122.34788356348309,47.62807503454065],[-122.34842426930996,47.62809980056651],[-122.34921808428562,47.62811065362755],[-122.34985228784483,47.6281076042142],[-122.35001391686286,47.62810373686429],[-122.3501549466494,47.62814110265067],[-122.35146295672008,47.62813686096191],[-122.35261350964325,47.62814044695595],[-122.35327972860534,47.62813986460019],[-122.35366869623483,47.6281424676533],[-122.35457253265007,47.62813574705766],[-122.35526283631327,47.62812651932159],[-122.35538731153505,47.62806585884652],[-122.35583971881567,47.62807056210313],[-122.35668051316364,47.62807537950631],[-122.35667483288812,47.62895483165617],[-122.35660812738733,47.62989739575093],[-122.35660893842427,47.63060032896264],[-122.35659918067857,47.6306999863749],[-122.35659797600883,47.6314899199017],[-122.35659350223463,47.63208165741356],[-122.35659576752465,47.63210707660545],[-122.35660108439816,47.63213279786959],[-122.35660993809643,47.63215808572846],[-122.35662391339106,47.63218510487327],[-122.35663981821081,47.6322087561718],[-122.35665923855785,47.63223124641584],[-122.35668115774261,47.63225250392104],[-122.35670658293947,47.632272257589],[-122.35673398909429,47.63229039936799],[-122.35678196215271,47.63231824879948],[-122.35682024358175,47.63234412835968],[-122.35684515926967,47.63236380317787],[-122.35686857928378,47.63238435474888],[-122.35689050488763,47.63240582622716],[-122.35691042499334,47.63242805282511],[-122.35692955924745,47.63245808764415],[-122.35695755397532,47.63249631540803],[-122.35696993850115,47.63252095651097],[-122.35698030695865,47.63254600997232],[-122.35698865758252,47.63257143334771],[-122.35699448053487,47.63259710465221],[-122.35699878773333,47.63262296787335],[-122.35700056296288,47.63264895027223],[-122.35700031083454,47.63267496015783],[-122.35699752172489,47.63270091836132],[-122.35699320679809,47.63272672535846],[-122.35697890503653,47.63391755566148],[-122.35697060927158,47.63512300103041],[-122.35694651183476,47.63651610109523],[-122.35693787260372,47.63751945501409],[-122.35693021170965,47.638383123982],[-122.35691749971927,47.63959368411729]]]],"type":"MultiPolygon"} +},{ + "id": 907128293, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":228840.950487, + "geom:bbox":"-122.328431802,47.7032237581,-122.323287354,47.7086216147", + "geom:latitude":47.705914, + "geom:longitude":-122.325856, + "iso:country":"US", + "lbl:latitude":47.705919, + "lbl:longitude":-122.325856, + "lbl:max_zoom":18.0, + "mps:latitude":47.705919, + "mps:longitude":-122.325856, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.705919, + "reversegeo:longitude":-122.325856, + "src:geom":"mz", + "wof:belongsto":[ + 85832315, + 102191575, + 890536781, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"878f3ccaf332d4d094868909e15f8c4b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "macrohood_id":890536781, + "microhood_id":907128293, + "neighbourhood_id":85832315, + "region_id":85688623 + } + ], + "wof:id":907128293, + "wof:lastmodified":1566608547, + "wof:name":"Northgate Mall", + "wof:parent_id":85832315, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.3284318023518, + 47.70322375809541, + -122.32328735382036, + 47.7086216147159 +], + "geometry": {"coordinates":[[[[-122.32330718131799,47.70859416015759],[-122.32328735382036,47.70322375809541],[-122.3284318023518,47.70323763410401],[-122.32839189838026,47.7086216147159],[-122.32795106118121,47.70861789028061],[-122.32683273017967,47.70861335232052],[-122.32372393475376,47.70859645500992],[-122.32330718131799,47.70859416015759]]]],"type":"MultiPolygon"} +},{ + "id": 907128529, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000289, + "geom:area_square_m":2412557.457221, + "geom:bbox":"-122.314730175,47.6144976888,-122.292436077,47.6391669151", + "geom:latitude":47.626855, + "geom:longitude":-122.305442, + "iso:country":"US", + "lbl:latitude":47.626756, + "lbl:longitude":-122.305273, + "lbl:max_zoom":18.0, + "mps:latitude":47.626756, + "mps:longitude":-122.305273, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Stevens" + ], + "name:ceb_x_preferred":[ + "Stevens" + ], + "name:ces_x_preferred":[ + "Stevens" + ], + "name:deu_x_preferred":[ + "Stevens" + ], + "name:fas_x_preferred":[ + "\u0627\u0633\u062a\u06cc\u0648\u0646\u0632" + ], + "name:fra_x_preferred":[ + "Stevens" + ], + "name:heb_x_preferred":[ + "\u05e1\u05d8\u05d9\u05d1\u05e0\u05e1" + ], + "name:ita_x_preferred":[ + "Stevens" + ], + "name:jpn_x_preferred":[ + "\u30b9\u30c6\u30a3\u30fc\u30f4\u30f3\u30b9" + ], + "name:nld_x_preferred":[ + "Stevens" + ], + "name:pol_x_preferred":[ + "Stevens" + ], + "name:rus_x_preferred":[ + "\u0421\u0442\u0435\u0432\u0435\u043d\u0441" + ], + "name:slv_x_preferred":[ + "Stevens" + ], + "name:spa_x_preferred":[ + "Stevens" + ], + "name:swe_x_preferred":[ + "Stevens" + ], + "reversegeo:latitude":47.626756, + "reversegeo:longitude":-122.305273, + "src:geom":"seagv", + "wof:belongsto":[ + 85882415, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2578291161f2968f85a3c40f948c74b4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128529, + "neighbourhood_id":85882415, + "region_id":85688623 + } + ], + "wof:id":907128529, + "wof:lastmodified":1566608548, + "wof:name":"Stevens", + "wof:parent_id":85882415, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869705 + ], + "wof:tags":[] +}, + "bbox": [ + -122.31473017521375, + 47.61449768877453, + -122.29243607691402, + 47.63916691508182 +], + "geometry": {"coordinates":[[[[-122.31359423755785,47.63594274147024],[-122.31359854809222,47.63629019034796],[-122.31359193445014,47.63748317280486],[-122.31398687948335,47.63774692379108],[-122.31470966936907,47.63826839754662],[-122.31471562267092,47.63878004473624],[-122.31472452058617,47.63880756336118],[-122.31472937370141,47.63883551998681],[-122.31473017521375,47.63886365778803],[-122.31472742566935,47.63889175615685],[-122.31472010270009,47.6389195283117],[-122.31470921281144,47.63894670459228],[-122.31469475040113,47.63897307027347],[-122.31467670711085,47.63899836854853],[-122.31465507735965,47.63902238539335],[-122.31462985503823,47.63904490643932],[-122.31460204961701,47.63906574762521],[-122.31457114607176,47.63908465803372],[-122.31453764792529,47.63910150300548],[-122.31450205746309,47.63911610437665],[-122.31446437225989,47.63912837688984],[-122.31442560246417,47.63913817824297],[-122.31438523848222,47.63914542977712],[-122.31434430267417,47.63915041792447],[-122.31430335518826,47.63915497801893],[-122.31426189198224,47.6391592447229],[-122.31422041971841,47.63916321179651],[-122.31417944781532,47.63916691508182],[-122.31392171043453,47.63907382614149],[-122.31378500226458,47.63902800427301],[-122.31340184907287,47.63889378702759],[-122.31317183633936,47.63881254642757],[-122.3128698055293,47.63871321844547],[-122.3126669321291,47.63869460420715],[-122.31253882881536,47.63868380133135],[-122.31244727499462,47.63870992585291],[-122.3123286079062,47.63876343674247],[-122.31220183806865,47.63879952996815],[-122.31206404712698,47.63882257023145],[-122.3120280981436,47.63882457933045],[-122.31192378328601,47.63882996157262],[-122.3117835519174,47.63882068626226],[-122.31164436851923,47.63879473076531],[-122.31151483649084,47.6387515123759],[-122.31131697651465,47.63864161676731],[-122.31129289828921,47.63861519486682],[-122.31115478110758,47.6384661351541],[-122.31110611489298,47.63841321226257],[-122.31106483993781,47.63837056192224],[-122.31102307055839,47.63832834582377],[-122.3109797954109,47.63828666378368],[-122.31093454939054,47.63824702085147],[-122.31089709072633,47.63819588032291],[-122.31086651901633,47.63815510454852],[-122.31082282219363,47.63806287206639],[-122.3108013060731,47.63796598208093],[-122.31080639123894,47.63787722959219],[-122.31080876445014,47.63783581180894],[-122.31083179233447,47.63780740757477],[-122.31096604058052,47.63764191710012],[-122.3110169928338,47.63757900366961],[-122.3110871550185,47.63751395613218],[-122.31116365625689,47.63740431173469],[-122.31116810722197,47.6372932461348],[-122.31116668321272,47.63701113921494],[-122.31116396056193,47.63682608991882],[-122.31114957744182,47.63671252663223],[-122.31110073332293,47.63656406501595],[-122.31108036595619,47.63654329299538],[-122.31105699745429,47.63652397400539],[-122.31103113808332,47.63650622952685],[-122.31100329812791,47.63649018174259],[-122.31097247093496,47.63647605781181],[-122.31094068666489,47.6364639601902],[-122.31090693326934,47.63645394448014],[-122.31087172101911,47.63644613251419],[-122.31083555949697,47.63644060366637],[-122.31079946490058,47.63643743038562],[-122.3107502620483,47.63643695527971],[-122.31071482667122,47.63643912859551],[-122.31067894620558,47.63644349319809],[-122.31064464016599,47.63644972209506],[-122.31060989267704,47.63645827068878],[-122.3105767232542,47.63646881198812],[-122.31054462476952,47.63648135327661],[-122.31051460611853,47.63649570983755],[-122.31048666660315,47.63651183886267],[-122.31046080031162,47.63652956880332],[-122.31043700464475,47.63654877158879],[-122.31041628851304,47.6365692628544],[-122.31039814180215,47.63659096288041],[-122.31036373970983,47.63670096047489],[-122.31032145468491,47.63681907168398],[-122.31027094876188,47.63695129974826],[-122.31021282017518,47.6370293866347],[-122.31013361446722,47.63709742156534],[-122.31003425956466,47.63715235055893],[-122.309924227585,47.63718848108709],[-122.30986744631419,47.63720686911352],[-122.30957118409931,47.63729237105142],[-122.30949072787438,47.63744143904693],[-122.3094188191677,47.6375343566822],[-122.3093634714681,47.63754968396276],[-122.30929376218087,47.63754141920206],[-122.30924538523561,47.63751646871652],[-122.30918513054294,47.63746609453614],[-122.30915844717973,47.63740144654575],[-122.30862253112171,47.63645760702416],[-122.30860539981052,47.63642573903444],[-122.30859187165099,47.63639575260729],[-122.30858086725272,47.63636534775338],[-122.30857188189596,47.63633461665157],[-122.30856542394491,47.6363035958847],[-122.30856200244769,47.63627236449465],[-122.30856010064041,47.63624107024206],[-122.3085612401443,47.63620973693033],[-122.30856491796294,47.63617849918312],[-122.30857062989706,47.6361474491716],[-122.30857888327077,47.63611662349122],[-122.30858968223119,47.63608615019344],[-122.30860252085702,47.6360560790035],[-122.30861790992837,47.63602653175841],[-122.30863585185979,47.63599759371269],[-122.30865584074138,47.63596931494211],[-122.30867787899899,47.63594178105207],[-122.30870196955797,47.63591507693934],[-122.30872811262222,47.63588924647181],[-122.30875548861754,47.63587111128969],[-122.30878112066505,47.6358451158054],[-122.30879753184118,47.6358158553705],[-122.30880375143036,47.63578484158413],[-122.30879931970975,47.63575375174916],[-122.30878428043282,47.63572412748147],[-122.30874478920143,47.63570844425788],[-122.30869947858302,47.63570213376434],[-122.30865374709478,47.63569887060691],[-122.30860708810016,47.63569866099935],[-122.30856102129093,47.63570144313071],[-122.30851554854834,47.63570730191309],[-122.30847117389933,47.63571610306131],[-122.30842840220288,47.63572779651408],[-122.30838723034005,47.63574225420771],[-122.3083481612731,47.63575934081938],[-122.30831220442961,47.63577887234812],[-122.30827884848861,47.63580072626271],[-122.30824910044377,47.63582463260557],[-122.30822244883099,47.63585042708098],[-122.30820040500662,47.63587779002766],[-122.30803968358278,47.63612917902692],[-122.3078760431488,47.63638497557302],[-122.30783605558932,47.6364054586983],[-122.30779488059848,47.63641983057099],[-122.30775103976498,47.63642960970162],[-122.30770553837596,47.63643448333555],[-122.3076588799387,47.63643431614264],[-122.30761360159991,47.6364291616057],[-122.30756970578895,47.63641910498197],[-122.30752872140631,47.6364044262077],[-122.30749167315956,47.63638549773879],[-122.30746009705504,47.63636281386816],[-122.30743350242393,47.6363369807697],[-122.30741393725964,47.63630865738291],[-122.30708510636509,47.6361574352864],[-122.3069659831777,47.63614115446069],[-122.30675010319233,47.63616417077894],[-122.30664610268857,47.63614469481589],[-122.30657910947615,47.63610691665794],[-122.30657648884537,47.63590699955031],[-122.30657625424911,47.63586291664685],[-122.30658308843545,47.63569243908549],[-122.30657500977539,47.63558624881927],[-122.30652015706396,47.63549368816509],[-122.3064302298977,47.63543392823276],[-122.30630903861085,47.63541617378905],[-122.306179522386,47.63542676073305],[-122.30609228807947,47.63546207879757],[-122.30592173492641,47.63565309648096],[-122.30565161713021,47.63582012438845],[-122.3053898728605,47.63588888838297],[-122.30491624128163,47.63594261086217],[-122.30474380910097,47.63592401772512],[-122.30454779528814,47.63586057198688],[-122.30442906033851,47.63582209033355],[-122.30428422942369,47.63577533423058],[-122.30384501329989,47.63562938495774],[-122.3033200683322,47.63535669610886],[-122.30283576156044,47.63510425908766],[-122.30230238045313,47.63481976390804],[-122.30199045164701,47.63465567036657],[-122.30196311465811,47.63463931419904],[-122.30193480696077,47.63462451272909],[-122.30190502316299,47.63461131564553],[-122.30187376860651,47.63459989380272],[-122.30184104520703,47.63459033351445],[-122.30180736006967,47.6345826275361],[-122.30177271510902,47.63457686218182],[-122.30173762089427,47.63457311615173],[-122.3017020746657,47.63457134701311],[-122.30165291648488,47.63457236643494],[-122.30144150246812,47.6345738077849],[-122.30140599303384,47.63457332334744],[-122.30136938592221,47.63456989644631],[-122.30133370966969,47.63456350162423],[-122.30130050102072,47.63455471853009],[-122.3012677124791,47.63454284529608],[-122.30123789435308,47.63452840568336],[-122.30121155879347,47.63451160788684],[-122.30118719149803,47.63449268552853],[-122.30116685722409,47.63447289690417],[-122.30104363343548,47.63432907454696],[-122.30060683920709,47.63381882600134],[-122.30035890530171,47.63353214224588],[-122.30011702256459,47.63324418003444],[-122.30011229498218,47.63322037715812],[-122.30010706149683,47.63319662361891],[-122.30010081551409,47.6331729259441],[-122.30009406604434,47.63314936321282],[-122.30008630407946,47.63312585634561],[-122.30007803915828,47.63310248476586],[-122.30006873223589,47.63307814107555],[-122.30005895253557,47.63305500275494],[-122.30004816397549,47.6330320490584],[-122.30003684054077,47.63300811706773],[-122.3000245396413,47.63298548293736],[-122.3000117050664,47.63296191296491],[-122.29999840014,47.63293963431865],[-122.29998408634869,47.63291753994435],[-122.29971853822441,47.63241947737541],[-122.29965087405613,47.63226761202438],[-122.29932680950468,47.63226578767819],[-122.29850066435243,47.63226078587081],[-122.29773963990363,47.63224547213893],[-122.29772183954336,47.63208148178212],[-122.29767165915874,47.63163188483104],[-122.29759458509926,47.63128961419622],[-122.29753088759584,47.6311327373956],[-122.2974368969587,47.63096556057059],[-122.29725110332062,47.63077781060475],[-122.29724688022169,47.63075387233231],[-122.29724114051653,47.630730082371],[-122.29723287190667,47.63070653902562],[-122.29722309271881,47.6306833580074],[-122.29721129706937,47.63066058864041],[-122.29719748563649,47.63063827338321],[-122.29717662077586,47.63061754819007],[-122.29715528862401,47.63059824307661],[-122.29713395235522,47.63057880955582],[-122.29711312249599,47.63055932634947],[-122.29709228973412,47.63053975789013],[-122.297071455088,47.63052010346276],[-122.29705112461806,47.63050035691117],[-122.29703028518529,47.63048053126292],[-122.29700941512748,47.63045963518321],[-122.29698907867252,47.63043967425295],[-122.29696924692185,47.63041962154316],[-122.29694991934609,47.63039947670993],[-122.29693008279831,47.6303792524291],[-122.29691075042525,47.630358936025],[-122.29689192343085,47.6303385703012],[-122.29687309456143,47.63031811896096],[-122.29685426450249,47.63029762481421],[-122.29683543084539,47.63027700225435],[-122.296817102566,47.63025633037529],[-122.296798773087,47.63023561533909],[-122.29678094830965,47.63021480852486],[-122.29676261456163,47.63019392226277],[-122.29674529155241,47.63017293736627],[-122.2967274607967,47.63015191652692],[-122.29662429872221,47.63003550849967],[-122.29656190685033,47.62996249122819],[-122.29650152196722,47.62988871985615],[-122.29644263991213,47.62981428650442],[-122.29638576775214,47.62973918430705],[-122.29633141032906,47.62966336431064],[-122.29627855761524,47.62958696830704],[-122.29609874200638,47.62928693267887],[-122.29608795597514,47.62926397860468],[-122.29607615872713,47.62924112316163],[-122.29606436338771,47.62921835368157],[-122.29605206510286,47.62919571876878],[-122.29603926268925,47.62917317632145],[-122.29602595682218,47.62915076879858],[-122.29601214750222,47.6291284962],[-122.29599783524893,47.62910635851884],[-122.2959835254249,47.62908430679341],[-122.29596820679718,47.62906243930414],[-122.29595289127407,47.62904070022948],[-122.2959365662641,47.6290191025804],[-122.29592024435934,47.62899763334572],[-122.29590341953377,47.62897629937819],[-122.2958865995361,47.62895513662159],[-122.29586877073842,47.62893415809957],[-122.2958509455656,47.6289133079848],[-122.29583211160391,47.6288926424548],[-122.29581328247104,47.62887214813509],[-122.2957939510942,47.6288518315405],[-122.29577462455603,47.62883168650687],[-122.29575428922115,47.62881172570599],[-122.2957339587154,47.62879193611489],[-122.29571312648585,47.62877232424137],[-122.29569077667708,47.62875286066804],[-122.29566544913553,47.62873566297618],[-122.29564012952474,47.62871876525968],[-122.29561380645252,47.62870222297909],[-122.29558647768782,47.62868599369457],[-122.29555915856614,47.6286701068303],[-122.29553184789357,47.62865451993381],[-122.29550300502194,47.62863852417364],[-122.2954747000217,47.62862363548837],[-122.29544486471089,47.62860842355152],[-122.29541607366545,47.62859426971703],[-122.2953862781107,47.62858047097731],[-122.29535649221609,47.62856701535832],[-122.29532517893756,47.62855332208543],[-122.29496112518328,47.62842668191203],[-122.29434536433817,47.6282198128629],[-122.29429220700638,47.62820459989236],[-122.29424618471147,47.62819070974736],[-122.29420014851503,47.62817630523494],[-122.29415460446619,47.62816138056259],[-122.29411005841004,47.6281458857185],[-122.29406549795635,47.62812987721652],[-122.29402092309665,47.62811335470576],[-122.2939773474441,47.62809630517942],[-122.29393426445277,47.62807873513851],[-122.29389116775107,47.62806069425084],[-122.29384907076755,47.62804212599234],[-122.29380695939257,47.62802304407778],[-122.29376584842944,47.62800347795469],[-122.29372472427832,47.62798344097963],[-122.29368460052996,47.62796291944667],[-122.29364497065903,47.62794192055717],[-122.29360583533879,47.6279204867708],[-122.29356719268544,47.62789853247471],[-122.29352904578519,47.62787618608616],[-122.29349139276404,47.62785336234306],[-122.29345423481404,47.62783010369847],[-122.293418078489,47.62780640400609],[-122.29337985357797,47.62778127359359],[-122.29335552714437,47.62776359155535],[-122.29333169748604,47.62774551742015],[-122.29330887010791,47.62772704470445],[-122.29328654019687,47.62770822305347],[-122.29326521308424,47.62768900281637],[-122.29324387756832,47.62766948260074],[-122.2932230113604,47.6276486286287],[-122.29320317731039,47.62762840369698],[-122.29318381255861,47.62760684465874],[-122.29316598892653,47.62758599447366],[-122.29314866462296,47.62756488026741],[-122.2931318389949,47.62754346028272],[-122.29311652802562,47.62752180642571],[-122.29310171640263,47.62749988925017],[-122.29308740583589,47.62747775120214],[-122.29307410167391,47.62745534333323],[-122.29306129925878,47.62743275775324],[-122.29304950615807,47.62740998760221],[-122.29303818235219,47.62738588334746],[-122.29302840565765,47.62736270196685],[-122.2930191319076,47.62733938567941],[-122.29301086866859,47.62731592762535],[-122.2930031095735,47.62729237746815],[-122.29299837737915,47.6272682746689],[-122.29299618010965,47.62724418183014],[-122.29299398284223,47.62722008899132],[-122.29299127904891,47.62719600299899],[-122.2929885764493,47.62717195945911],[-122.29298587266098,47.62714787346661],[-122.29298266301032,47.62712383642887],[-122.29297995990932,47.62709979324624],[-122.29297675078335,47.62707575620168],[-122.29297354115117,47.62705171951449],[-122.29297033151215,47.62702768247633],[-122.29296661535,47.62700365228452],[-122.29296340571713,47.62697961524615],[-122.29295969144476,47.62695567066749],[-122.29295546994871,47.62693168942336],[-122.29295074209446,47.62690775784208],[-122.29294550891085,47.62688387555949],[-122.29293977107079,47.62686008503466],[-122.29293352671152,47.62683630135582],[-122.29292677770701,47.62681260978545],[-122.29291952337583,47.62678896751339],[-122.2929117644007,47.62676541734967],[-122.29290350131112,47.62674195963828],[-122.29289422651685,47.62671860018606],[-122.29288495466176,47.62669532668402],[-122.29287517696424,47.62667210248641],[-122.29286438997649,47.62664906250507],[-122.29285360471823,47.62662606531942],[-122.29284181069032,47.626603252343],[-122.29282848763268,47.62658015923984],[-122.29281367398742,47.62655815606864],[-122.29279735054072,47.62653655797462],[-122.29278053139443,47.62651535195435],[-122.29276220416871,47.62649459380697],[-122.29274287486686,47.626474276693],[-122.29272254521923,47.62645444375946],[-122.29270121642728,47.62643513780927],[-122.29267838024137,47.62641632253942],[-122.2926550543532,47.62639811300659],[-122.29263072881272,47.62638043081282],[-122.29260540824075,47.62636340365264],[-122.29257807563945,47.62634695962796],[-122.29255176383754,47.62633075942292],[-122.29252890183547,47.62631100174008],[-122.2925150635289,47.62628761512576],[-122.29243607691402,47.62602025640589],[-122.29248534695633,47.62598736365194],[-122.29289542103065,47.62571313446889],[-122.29378111019784,47.62511593211089],[-122.29478773656119,47.62443898020228],[-122.29616948889966,47.62349114043863],[-122.29642523226325,47.62331896380942],[-122.2977571963026,47.62242349899611],[-122.29804270137036,47.62222840030317],[-122.29969850500881,47.62109734584416],[-122.3001011434356,47.62083179699253],[-122.30062720517726,47.62048483830943],[-122.30138907565333,47.61996131908383],[-122.30242642637111,47.61924838342442],[-122.30253980417207,47.61917035822943],[-122.30414752129909,47.61806659167576],[-122.30474743709217,47.61782358260328],[-122.30613217153439,47.61726219918945],[-122.30700740484929,47.61689676634884],[-122.30753845496004,47.61667519864561],[-122.30925845168494,47.61596205096522],[-122.3098434424342,47.61571278125881],[-122.31018564994298,47.61557162672949],[-122.31100686776489,47.61523385477722],[-122.31143869699869,47.61505374415424],[-122.31252660614518,47.61459403402677],[-122.31276311931411,47.61449768877453],[-122.312762325012,47.61454105685887],[-122.31276054577522,47.6150845950237],[-122.31276136253389,47.61653947045016],[-122.31275128416667,47.61762903074474],[-122.3127461638981,47.61851857513032],[-122.31272822102746,47.6196703177804],[-122.31270251900234,47.62056702736857],[-122.31265595623645,47.62144331455673],[-122.31259830586498,47.62371259381199],[-122.3126071816047,47.62438131121736],[-122.31258374301974,47.62607094215991],[-122.31256601480572,47.62689167155667],[-122.31255697069852,47.62764339581941],[-122.31254570938241,47.6286915840633],[-122.31251988923198,47.63063637948966],[-122.31249664107312,47.63233290494593],[-122.31248414700875,47.63298120637217],[-122.3124826890861,47.63364315981983],[-122.312480496877,47.63367305033522],[-122.31247881126409,47.63370293426814],[-122.31247915552783,47.63373287781513],[-122.31248051280143,47.63376276502977],[-122.31248339039435,47.63379263249037],[-122.3124877863937,47.63382239458375],[-122.31249319490013,47.6338521007021],[-122.31249961347079,47.63388166488809],[-122.31250805636685,47.63391107466468],[-122.31251700221154,47.63394034909771],[-122.31252796942293,47.63396938317022],[-122.31253994427205,47.63399818970289],[-122.31255292607214,47.63402672623631],[-122.31256742090768,47.63405498619412],[-122.31258022855224,47.63407739836287],[-122.31259673502922,47.63410507517995],[-122.31261475383869,47.63413243225914],[-122.31263377665303,47.63415943373716],[-122.312654308151,47.63418598706645],[-122.31267584242919,47.63421214163938],[-122.31269837880015,47.63423785499633],[-122.31272191499916,47.63426308399617],[-122.31274695745203,47.63428777923799],[-122.31277300147156,47.63431203291763],[-122.31279483832559,47.63433098608637],[-122.31282237470877,47.63435423517289],[-122.31285038220176,47.6343761925077],[-122.31312542019012,47.63465050169459],[-122.31314645317079,47.63467683432692],[-122.31316328325822,47.63469803733263],[-122.31318330932939,47.63472463996148],[-122.31320333960377,47.63475137134032],[-122.31322236050418,47.63477828676237],[-122.31324138508806,47.63480533094153],[-122.31325990795395,47.63483255291602],[-122.31327792614623,47.63485986708649],[-122.31329544089215,47.63488731660718],[-122.3133124526902,47.63491490076994],[-122.31332946817029,47.63494261369038],[-122.31334547358169,47.63497046819707],[-122.31336148144632,47.63499840830775],[-122.31337647925024,47.63502649035605],[-122.31338878400602,47.63504903743583],[-122.31340277244952,47.63507730387963],[-122.31341727221292,47.6351056921311],[-122.3134307601651,47.63513417917378],[-122.31344374343649,47.6351627584146],[-122.31345622254527,47.635191429847],[-122.31346819750074,47.63522019382193],[-122.31347798234472,47.6352432878349],[-122.31348894792092,47.6352722358566],[-122.31349991473746,47.6353012270312],[-122.31351037738818,47.63533031039803],[-122.31352033535318,47.63535948596398],[-122.31359103133673,47.63566974046411],[-122.31359423755785,47.63594274147024]]]],"type":"MultiPolygon"} +},{ + "id": 907128741, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000584, + "geom:area_square_m":4875267.294492, + "geom:bbox":"-122.3214764,47.5389738774,-122.283801563,47.5734907722", + "geom:latitude":47.554237, + "geom:longitude":-122.30468, + "iso:country":"US", + "lbl:latitude":47.552138, + "lbl:longitude":-122.30126, + "lbl:max_zoom":18.0, + "mps:latitude":47.552138, + "mps:longitude":-122.30126, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "Mid Beacon Hill", + "Mid-Beacon Hl" + ], + "reversegeo:latitude":47.552138, + "reversegeo:longitude":-122.30126, + "src:geom":"seagv", + "wof:belongsto":[ + 85805013, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e22f5172a5f4f5ccad447fe86436f70c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128741, + "neighbourhood_id":85805013, + "region_id":85688623 + } + ], + "wof:id":907128741, + "wof:lastmodified":1566608548, + "wof:name":"Mid-Beacon Hill", + "wof:parent_id":85805013, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869481 + ], + "wof:tags":[] +}, + "bbox": [ + -122.32147640043877, + 47.53897387736641, + -122.28380156333266, + 47.5734907721744 +], + "geometry": {"coordinates":[[[[-122.30464494147721,47.55959901270486],[-122.30366337567308,47.55973368853021],[-122.3036184799371,47.55973971037903],[-122.30357308624953,47.55974603838283],[-122.30352820620901,47.55975261699002],[-122.30348282701699,47.55975945929932],[-122.30343796145105,47.55976655151073],[-122.30339310433942,47.55977394367855],[-122.30334825326526,47.55978155019611],[-122.30330391703346,47.55978944977096],[-122.30325908111838,47.55979761270328],[-122.30321475936464,47.55980602623409],[-122.30317044433566,47.55981469692511],[-122.30312613704757,47.55982362406127],[-122.3030823428827,47.55983280181039],[-122.30303805128533,47.55984228605715],[-122.30299427159235,47.5598519777631],[-122.30295050033719,47.55986196907546],[-122.3029067351136,47.55987217473847],[-122.30286348421838,47.55988267381915],[-122.30282023985227,47.55989338654246],[-122.30277700393138,47.55990439922347],[-122.30273377352158,47.55991562626225],[-122.30269105673899,47.55992710355898],[-122.30264834890831,47.55993888045632],[-122.30260564658711,47.55995087171179],[-122.30256295149077,47.55996311977119],[-122.30252077002979,47.55997561844062],[-122.30247859406695,47.55998833111776],[-122.30243642705304,47.56000134339589],[-122.30239477246597,47.56001456348164],[-122.30235312458292,47.56002804037883],[-122.30231148393148,47.56004177443161],[-122.302270355696,47.56005571594213],[-122.30222923468138,47.56006991425779],[-122.30136055284389,47.56036557438703],[-122.29877653727621,47.5613537264271],[-122.2987411461453,47.56137367647189],[-122.29870472580482,47.56139303995651],[-122.29866778387482,47.56141185315575],[-122.2986303174291,47.561430030469],[-122.29859232887689,47.56144765750253],[-122.29855381460636,47.56146460584566],[-122.29851427286106,47.5614810107724],[-122.2984742053891,47.56149673665653],[-122.29843411981236,47.56151181977421],[-122.29839300263261,47.56152623106988],[-122.29835186856438,47.56154004275261],[-122.2983097016813,47.5615531394576],[-122.29826751618012,47.56156559340132],[-122.29822480549753,47.5615773689943],[-122.29818156841127,47.56158842273094],[-122.29813780682193,47.56159884057492],[-122.29809402474096,47.56160853039376],[-122.29804971627075,47.56161749870566],[-122.29800538798787,47.56162578145122],[-122.29796053332889,47.56163334303984],[-122.29791565937899,47.56164021905499],[-122.29787025732453,47.56164633076481],[-122.29782483651094,47.5616517572449],[-122.29777939349628,47.5616564129018],[-122.29773342529809,47.56166038950153],[-122.29768743543082,47.56166359562179],[-122.2976414250802,47.56166607336424],[-122.29759539373967,47.56166782308637],[-122.297549342438,47.56166884442396],[-122.29750326947519,47.56166909528201],[-122.29745717724006,47.56166866056554],[-122.29741106333792,47.56166745501856],[-122.29736492897391,47.56166552144452],[-122.29731877363166,47.56166285984998],[-122.29727310355516,47.56165942054599],[-122.29722741370735,47.56165529602524],[-122.29718170340536,47.56165044347769],[-122.29713647906934,47.56164485638254],[-122.29709123668879,47.5616386268677],[-122.29704597506249,47.56163171212979],[-122.29700120301597,47.56162419125533],[-122.29695641240166,47.56161602761738],[-122.29691261779772,47.56160725167467],[-122.2968682987393,47.56159783983301],[-122.29682446805383,47.56158777870208],[-122.29678112644669,47.56157711179419],[-122.29673827441772,47.56156583840159],[-122.29669540505215,47.56155396575195],[-122.2966530269981,47.5615415297659],[-122.2966111362866,47.5615284445063],[-122.29656973569611,47.56151475345877],[-122.29652882538362,47.56150049908977],[-122.29648789944189,47.56148568756021],[-122.29644796900425,47.56147026373955],[-122.29641263276093,47.56145615168369],[-122.2957125902828,47.56114117647648],[-122.29567461813456,47.56112332793895],[-122.29563615161673,47.56110591393691],[-122.29559769904658,47.5610890142711],[-122.29555824672931,47.56107255564056],[-122.29551880646332,47.56105652538123],[-122.29547887422854,47.56104101526251],[-122.29543794294828,47.56102598968877],[-122.29539753080259,47.56101142843138],[-122.29535612132,47.5609973941638],[-122.29531472456755,47.5609838310761],[-122.29527283637037,47.56097078847095],[-122.29523045551632,47.56095822319352],[-122.29518758218899,47.56094617876168],[-122.29514472381588,47.56093464794793],[-122.29510187988728,47.5609236311098],[-122.29505803757927,47.56091314127043],[-122.29501421022205,47.56090316504839],[-122.29497039851687,47.5608937459555],[-122.29492609362923,47.56088480419424],[-122.29488180439112,47.56087641956176],[-122.29483702437049,47.56086859786697],[-122.29479225810302,47.56086124733628],[-122.29474700226145,47.56085450289676],[-122.29470176085314,47.56084827243105],[-122.2946565338669,47.56084255558833],[-122.29461081731226,47.56083744518668],[-122.29456511517692,47.56083284840763],[-122.29451942799759,47.56082876594625],[-122.2944737571181,47.56082528272098],[-122.29442759477136,47.56082231997133],[-122.29438195394114,47.56081990749632],[-122.2943358228416,47.56081805829995],[-122.29428970736343,47.56081676588015],[-122.29424360750519,47.56081603023696],[-122.29419752326534,47.56081585137036],[-122.29415094702163,47.56081619263366],[-122.29410489401423,47.56081712732012],[-122.2940588548922,47.56081857563567],[-122.29400170926669,47.5608211949944],[-122.29336391747526,47.56082938816935],[-122.29322177522256,47.56059977328508],[-122.2930009244557,47.5602176174033],[-122.29272511730825,47.5597715158539],[-122.29237830460507,47.55924877842295],[-122.29201927918241,47.55868746605606],[-122.29170776879043,47.55819533529423],[-122.29140804978744,47.55772627364328],[-122.29114477877815,47.55731102651809],[-122.29096444690917,47.55701874703613],[-122.29082055948192,47.55678028303318],[-122.29067645476859,47.5565340240641],[-122.29041182359079,47.55608781693073],[-122.29007301546351,47.5554331836528],[-122.28982987011598,47.55494017204506],[-122.28954324507993,47.55432244254262],[-122.28894636668907,47.55311037688822],[-122.28812631819622,47.5513569678398],[-122.28728251871044,47.54969382808319],[-122.28640593006598,47.54781512866065],[-122.28595726217874,47.54697492014964],[-122.28555417731638,47.54613502783572],[-122.28551494302629,47.54605322695649],[-122.28409456498369,47.54309289253028],[-122.28383280410459,47.54252710193025],[-122.28380156333266,47.54245950838168],[-122.28466774835951,47.54246310177456],[-122.28601078443771,47.54246749158647],[-122.28716671863502,47.54247858684557],[-122.28807029984721,47.5424799192625],[-122.28915262359082,47.54248332477432],[-122.2902664391726,47.54249060092943],[-122.2902947027771,47.54371856105437],[-122.29030991679073,47.54433501231546],[-122.29094836517608,47.54433942137018],[-122.29150877481364,47.54434084358166],[-122.29166099113242,47.54431734022574],[-122.29366398195525,47.5443692088139],[-122.29474075582534,47.54438985629356],[-122.29581714450809,47.54441478253261],[-122.29689200809693,47.54443941885068],[-122.2968968096727,47.54365527699964],[-122.29690489941582,47.54246562152392],[-122.29689194707086,47.54121162862424],[-122.29686689592671,47.54031977709474],[-122.29688536104572,47.53962564494584],[-122.29716617569612,47.53942374796998],[-122.29703520315829,47.5390677342363],[-122.29700422173219,47.53897387736641],[-122.29758201628887,47.53898357083071],[-122.29829974557066,47.5390016542454],[-122.29833926678521,47.5390031154459],[-122.2983792960987,47.53900465607058],[-122.29841932953339,47.53900632473377],[-122.29845936366593,47.53900803654378],[-122.29849889452839,47.53900984046662],[-122.29853893399888,47.53901172345542],[-122.29857897656511,47.5390137348469],[-122.29861902033812,47.53901578902767],[-122.29865856085165,47.53901793567285],[-122.29869861116789,47.53902020383576],[-122.29873815650318,47.53902252166675],[-122.29877820992967,47.53902491856928],[-122.29881826627576,47.5390274007069],[-122.29885781954081,47.53903001847738],[-122.29889788072016,47.53903267215129],[-122.29893743811328,47.53903541794666],[-122.29897699792842,47.53903824968585],[-122.29901706582616,47.53904116014466],[-122.2990562218551,47.53904763877716],[-122.29909392658885,47.53905649220939],[-122.2991316409782,47.53906568840691],[-122.29916885881542,47.53907523354874],[-122.29920608630952,47.5390851214562],[-122.29924332346127,47.53909535212927],[-122.29928006406266,47.53910593174746],[-122.29931681363679,47.5391168113215],[-122.29935306786585,47.53912808264469],[-122.29938933055075,47.53913965393073],[-122.29942509548293,47.53915153135975],[-122.29946087128077,47.53916379435871],[-122.29949614864051,47.53917632069122],[-122.29953143686707,47.53918923259394],[-122.29956622613818,47.53920240783753],[-122.29960102559089,47.53921592584157],[-122.29963532798962,47.53922979315136],[-122.29966963815208,47.53924391726431],[-122.29970345176952,47.53925839032602],[-122.2997367681656,47.53927316987781],[-122.29977009250482,47.53928824940093],[-122.2998029196134,47.53930363506382],[-122.30024125394522,47.53962731589024],[-122.30139783454834,47.5405615797171],[-122.30230761510578,47.54137631859012],[-122.30289704804035,47.54199507128617],[-122.30333262026969,47.54263200652712],[-122.3033911870718,47.54271633613309],[-122.30363807292588,47.54307028692713],[-122.30489959035312,47.54427388804336],[-122.30558836402312,47.5449305430344],[-122.30614702484156,47.54547864360772],[-122.30631641888664,47.54563308458287],[-122.30692077315888,47.54618534537477],[-122.30750666201145,47.5466749478593],[-122.3079009950123,47.54696039765147],[-122.3087155947278,47.54742766140452],[-122.30991584347019,47.54805134444226],[-122.31060690290138,47.54855250386669],[-122.31112198033092,47.54888157377989],[-122.31298375408149,47.54794687866195],[-122.3139856689014,47.54745020987705],[-122.31402780958955,47.54749014838257],[-122.31620670363863,47.54862983209187],[-122.31692987650366,47.54927847457666],[-122.31728360650905,47.54961112258916],[-122.31783246820315,47.55011122550762],[-122.31845462182298,47.5507666622108],[-122.31886522572304,47.55124663053871],[-122.31997626566836,47.55228503294982],[-122.32019075288787,47.55270449586734],[-122.32063399324001,47.55304967326811],[-122.32097825044397,47.55336799625407],[-122.3204417476468,47.55362231135315],[-122.3197492370626,47.55307602809956],[-122.31972794485395,47.55312827632397],[-122.31971551424293,47.55315397346798],[-122.3197015571177,47.55317939118984],[-122.31968657631036,47.55320443657334],[-122.31967006774403,47.55322915902881],[-122.31965202723468,47.55325343015291],[-122.31963193430956,47.55327674292136],[-122.31960774266389,47.55329835264476],[-122.31958200196209,47.55331891143815],[-122.31955420343684,47.55333834066569],[-122.31952434514349,47.55335655401108],[-122.31949293220575,47.55337350240003],[-122.31946046748068,47.55338909361823],[-122.31942644321892,47.5534032483142],[-122.31939086014484,47.5534160099981],[-122.31935472601688,47.55342719316384],[-122.31931753522518,47.55343684794208],[-122.31927928584868,47.55344488871871],[-122.31924451693635,47.55345069845274],[-122.31840678303405,47.55345731980756],[-122.31798915264122,47.55345960524165],[-122.31770304755199,47.5534579435844],[-122.3179909330569,47.55393064932568],[-122.31855319420428,47.55482782202987],[-122.31874816508126,47.55511335563754],[-122.31893684971617,47.55544468576526],[-122.31917504475339,47.55571885738134],[-122.31972668073685,47.55650845428593],[-122.32032127055359,47.55741864882386],[-122.32053707559047,47.55774156719851],[-122.32082793173369,47.55831653857662],[-122.3212139709798,47.55915679471421],[-122.321409503396,47.56001029757743],[-122.32145175086772,47.56067373810655],[-122.32146699575964,47.56090600890856],[-122.32147640043877,47.56137695352626],[-122.32134344493002,47.56228861109634],[-122.32117454375982,47.56320073853592],[-122.32100563596985,47.56411282290831],[-122.32083275052818,47.56502770116865],[-122.32066067195076,47.56595332209193],[-122.32048792721872,47.56687355336348],[-122.32032968504558,47.5677343413654],[-122.32017651974699,47.5686489603723],[-122.32005913988498,47.56955771280054],[-122.31997010701549,47.57046609406081],[-122.31990481985379,47.57139027456385],[-122.31987503669777,47.57183726769591],[-122.31987883347267,47.57186382382115],[-122.31988111297549,47.57189044295306],[-122.31988339370258,47.57191710488807],[-122.31988466140113,47.57194378006729],[-122.31988542187175,47.57197041870787],[-122.31988567757759,47.57199710711778],[-122.31988542676747,47.57202380214984],[-122.31988416170219,47.572050467623],[-122.31988238992383,47.57207709655076],[-122.31988011111824,47.57210373245821],[-122.31987732508955,47.57213033217781],[-122.31987352530952,47.57215690198072],[-122.31986972431369,47.5721834293312],[-122.31986490956442,47.57220992676493],[-122.31985907984829,47.57223635182941],[-122.31985324716399,47.57226269129407],[-122.31984743334084,47.57228967350051],[-122.31984211205133,47.57231617755516],[-122.31983825600233,47.5723407773598],[-122.31983490892301,47.57236545649949],[-122.31983206783188,47.5723901286731],[-122.31982973397155,47.57241483738553],[-122.3198279083596,47.57243958192155],[-122.31982658946143,47.57246436300317],[-122.31982577759121,47.57248913710529],[-122.3198254712143,47.57251390494991],[-122.31982450386657,47.57256871483393],[-122.31972811641066,47.5726165031214],[-122.31958367621854,47.5726842420878],[-122.31944027946221,47.57277081851787],[-122.31921930881887,47.5728900700824],[-122.31866178349506,47.57321375594364],[-122.31825272377132,47.57334454531053],[-122.31821857500975,47.57335480245028],[-122.3181844164602,47.57336471680365],[-122.31815024691281,47.57337424591831],[-122.31811555982868,47.57338339605769],[-122.31808344098872,47.57339379827682],[-122.31804162038583,47.57340145618091],[-122.31800639429166,47.57340945685797],[-122.31797115789509,47.57341711475473],[-122.31793540378136,47.57342435085799],[-122.31789963814624,47.57343120137751],[-122.31786386273932,47.57343770946046],[-122.31782756858038,47.57344379576265],[-122.3177912651695,47.5734495396212],[-122.31772216776797,47.57345978150194],[-122.3176853236194,47.57346433274886],[-122.31764897448538,47.57346849179911],[-122.31761210834252,47.57347227186365],[-122.31757522999362,47.5734756238846],[-122.31753834186971,47.57347863311737],[-122.31750144154145,47.57348121430652],[-122.31746402368907,47.57348341651574],[-122.31740029645766,47.57348660438331],[-122.3173633692593,47.57348824315627],[-122.31732642985999,47.57348945388558],[-122.3172894806803,47.57349032147583],[-122.31725251930139,47.57349076102239],[-122.31721554571413,47.5734907721744],[-122.31717856236895,47.57349044088901],[-122.31714207282948,47.57348967460589],[-122.31710506629162,47.57348852933467],[-122.31706804755886,47.57348695601971],[-122.3170315255922,47.57348503330704],[-122.31699448489158,47.57348268880931],[-122.31695793923055,47.57347995246866],[-122.31692138310606,47.57347683053008],[-122.31688481549202,47.57347332335797],[-122.31684823618667,47.5734693874339],[-122.31681164662288,47.57346510943027],[-122.31677555138161,47.57346039607317],[-122.31673944639186,47.57345534027917],[-122.31670332920564,47.57344985609116],[-122.31666770758358,47.57344398005525],[-122.31663156967485,47.57343776783959],[-122.31659592610248,47.57343112062235],[-122.31656077879717,47.57342412436796],[-122.31652562051848,47.57341674252325],[-122.3164904512772,47.57340897543909],[-122.31645527105415,47.57340082241373],[-122.31610565703002,47.57330714137544],[-122.3157153278969,47.57315315190563],[-122.31535417694026,47.57293875691724],[-122.31506564433992,47.57260636510559],[-122.31457544423245,47.57175437762352],[-122.31421043039224,47.57086935357241],[-122.31369942789068,47.56969429223182],[-122.31343724427943,47.56909408017586],[-122.31345942128583,47.56777176243884],[-122.31346502446237,47.56731656547753],[-122.31347564445566,47.56645380689258],[-122.31349341257814,47.56520806553979],[-122.31350016842052,47.5648934186523],[-122.31350339129075,47.56416936057821],[-122.31349884357167,47.56413407371383],[-122.31349351111088,47.56410680879177],[-122.31348817988217,47.56407958702351],[-122.31348133228182,47.5640524702847],[-122.31347347597789,47.56402549513553],[-122.31346460976539,47.56399861912343],[-122.31345524077267,47.56397187811375],[-122.31344486481511,47.56394532148961],[-122.31343297442922,47.56391895620838],[-122.31342058299148,47.56389276837455],[-122.31340769174888,47.56386680184367],[-122.31339328658073,47.56384102594625],[-122.31337838108153,47.5638154710071],[-122.31336247175604,47.56379022886793],[-122.31334555495627,47.56376517111865],[-122.31332763556887,47.56374046967341],[-122.3133092158339,47.56371598848339],[-122.31328979350303,47.56369186324577],[-122.31326936613469,47.56366800800271],[-122.31324844382436,47.56364454492159],[-122.31322651718595,47.56362139499498],[-122.31320358846345,47.56359860066112],[-122.31318016254747,47.56357615569824],[-122.31315573576479,47.56355410913033],[-122.31313081352388,47.56353245472903],[-122.31310489112505,47.56351124188243],[-122.31307847325846,47.56349042085071],[-122.31305105401854,47.56346999856929],[-122.31302314226176,47.5634500537015],[-122.31299473627342,47.5634305441522],[-122.31296533133451,47.56341151860711],[-122.31186019820034,47.56258457465375],[-122.31097043812797,47.56194059152893],[-122.30987011709882,47.56133472599671],[-122.3078986058875,47.56063008805139],[-122.30474985714702,47.55958463040729],[-122.30464494147721,47.55959901270486]]]],"type":"MultiPolygon"} +},{ + "id": 907128743, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000425, + "geom:area_square_m":3587635.213174, + "geom:bbox":"-122.321011,47.56167196942665,-122.296607,47.595877", + "geom:latitude":47.581476, + "geom:longitude":-122.310467, + "iso:country":"US", + "lbl:latitude":47.581073, + "lbl:longitude":-122.310626, + "lbl:max_zoom":18.0, + "mps:latitude":47.581073, + "mps:longitude":-122.310626, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":47.581073, + "reversegeo:longitude":-122.310626, + "src:geom":"mz", + "wof:belongsto":[ + 102191575, + 85633793, + 102086191, + 101730401, + 85805013, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d70e08efe975b802762104789e517bc9", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128743, + "neighbourhood_id":85805013, + "region_id":85688623 + } + ], + "wof:id":907128743, + "wof:lastmodified":1613773512, + "wof:name":"North Beacon Hill", + "wof:parent_id":85805013, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869539 + ], + "wof:tags":[] +}, + "bbox": [ + -122.321011, + 47.56167196942665, + -122.296607, + 47.595877 +], + "geometry": {"coordinates":[[[[-122.31152899999999,47.595877],[-122.311368,47.595671],[-122.31125299999999,47.595519],[-122.310768,47.594882],[-122.31027899999999,47.594245],[-122.30982400000001,47.593643],[-122.30931099999999,47.592968],[-122.30906899999999,47.592653],[-122.30867000000001,47.59213],[-122.30824,47.591573],[-122.307796,47.59098],[-122.307239,47.590269],[-122.30681199999999,47.589697],[-122.306579,47.589393],[-122.30624299999999,47.588957],[-122.305724,47.588286],[-122.30543400000001,47.587953],[-122.30524800000001,47.587741],[-122.305088,47.587504],[-122.304618,47.586824],[-122.30441,47.586553],[-122.304091,47.586128],[-122.303842,47.585818],[-122.303557,47.585431],[-122.303293,47.58507],[-122.30302399999999,47.584696],[-122.30293899999999,47.584584],[-122.302502,47.584034],[-122.302059,47.583476],[-122.301783,47.583114],[-122.301687,47.582989],[-122.30164600000001,47.582935],[-122.301558,47.582819],[-122.30113900000001,47.582266],[-122.300836,47.58187],[-122.30053100000001,47.581476],[-122.30027800000001,47.58114],[-122.299843,47.580572],[-122.299397,47.579989],[-122.298868,47.579294],[-122.29851600000001,47.578829],[-122.29815499999999,47.578349],[-122.29794800000001,47.578084],[-122.29764900000001,47.577695],[-122.29738399999999,47.577344],[-122.297032,47.576885],[-122.296762,47.576535],[-122.29660699999999,47.576334],[-122.296654,47.576297],[-122.296718,47.576096],[-122.296734,47.575882],[-122.299066,47.575884],[-122.29911199999999,47.575884],[-122.29915699999999,47.575878],[-122.299201,47.575868],[-122.29924200000001,47.575853],[-122.299279,47.575835],[-122.299311,47.575812],[-122.29933800000001,47.575787],[-122.299359,47.575759],[-122.299373,47.575729],[-122.29938,47.5757],[-122.29938,47.575232],[-122.29938300000001,47.573936],[-122.29941599999999,47.573207],[-122.299194,47.572877],[-122.299177,47.572256],[-122.299229,47.570824],[-122.299246,47.569051],[-122.29928099999999,47.568299],[-122.29928,47.568024],[-122.299262,47.567753],[-122.299254,47.567481],[-122.299256,47.567457],[-122.29925900000001,47.567432],[-122.299262,47.567408],[-122.299266,47.567383],[-122.299271,47.567359],[-122.299277,47.567334],[-122.299283,47.56731],[-122.299291,47.567286],[-122.299299,47.567261],[-122.29930899999999,47.567237],[-122.299319,47.567214],[-122.299329,47.56719],[-122.299341,47.567166],[-122.299353,47.567143],[-122.29936600000001,47.56712],[-122.29938,47.567097],[-122.299395,47.567074],[-122.299725,47.566397],[-122.29978,47.565939],[-122.299747,47.56558],[-122.299886,47.565353],[-122.300296,47.564852],[-122.300555,47.564535],[-122.300577,47.564507],[-122.300601,47.56448],[-122.30062599999999,47.564454],[-122.300652,47.564428],[-122.300679,47.564403],[-122.300707,47.564379],[-122.300737,47.564355],[-122.30076800000001,47.564331],[-122.3008,47.564309],[-122.300833,47.564287],[-122.300866,47.564265],[-122.300901,47.564245],[-122.300937,47.564225],[-122.300973,47.564206],[-122.301011,47.564188],[-122.30104900000001,47.56417],[-122.30108799999999,47.564154],[-122.30112800000001,47.564138],[-122.301169,47.564123],[-122.30121,47.564109],[-122.30125099999999,47.564096],[-122.301294,47.564084],[-122.301337,47.564072],[-122.30138100000001,47.564062],[-122.301424,47.564053],[-122.30188200000001,47.563978],[-122.301924,47.563965],[-122.30196599999999,47.563951],[-122.30200600000001,47.563936],[-122.30204500000001,47.563919],[-122.302082,47.5639],[-122.302087,47.563898],[-122.30206699999999,47.564449],[-122.30205100000001,47.564568],[-122.301913,47.56837],[-122.30177500000001,47.571827],[-122.308122,47.571863],[-122.308418,47.571861],[-122.31040900000001,47.571864],[-122.31101200000001,47.571867],[-122.31146099999999,47.571854],[-122.3117,47.57181],[-122.31190100000001,47.57176],[-122.312102,47.5717],[-122.312265,47.571652],[-122.312434,47.571605],[-122.312555,47.57158],[-122.31278399999999,47.571564],[-122.313345,47.571555],[-122.31343699999999,47.569094],[-122.313699,47.569694],[-122.31421,47.570869],[-122.314575,47.571754],[-122.315066,47.572606],[-122.315354,47.572939],[-122.315715,47.573153],[-122.316106,47.573307],[-122.316455,47.573401],[-122.31649,47.573409],[-122.316526,47.573417],[-122.31656099999999,47.573424],[-122.316596,47.573431],[-122.316632,47.573438],[-122.31666800000001,47.573444],[-122.316703,47.57345],[-122.316739,47.573455],[-122.316776,47.57346],[-122.316812,47.573465],[-122.31684799999999,47.573469],[-122.316885,47.573473],[-122.31692099999999,47.573477],[-122.316958,47.57348],[-122.31699399999999,47.573483],[-122.317032,47.573485],[-122.31706800000001,47.573487],[-122.317105,47.573489],[-122.317142,47.57349],[-122.317179,47.57349],[-122.317216,47.573491],[-122.31725299999999,47.573491],[-122.317289,47.57349],[-122.31732599999999,47.573489],[-122.317363,47.573488],[-122.31740000000001,47.573487],[-122.317464,47.573483],[-122.31750099999999,47.573481],[-122.317538,47.573479],[-122.31757500000001,47.573476],[-122.317612,47.573472],[-122.317649,47.573468],[-122.317685,47.573464],[-122.317722,47.57346],[-122.317791,47.57345],[-122.31782800000001,47.573444],[-122.317864,47.573438],[-122.31789999999999,47.573431],[-122.31793500000001,47.573424],[-122.317971,47.573417],[-122.318006,47.573409],[-122.31804200000001,47.573401],[-122.318083,47.573394],[-122.318116,47.573383],[-122.31815,47.573374],[-122.318184,47.573365],[-122.318219,47.573355],[-122.318253,47.573345],[-122.318662,47.573214],[-122.319219,47.57289],[-122.31944,47.572771],[-122.31958400000001,47.572684],[-122.319728,47.572617],[-122.31982499999999,47.572569],[-122.319813,47.573192],[-122.31976299999999,47.5741],[-122.31970200000001,47.575024],[-122.319644,47.575927],[-122.319642,47.575953],[-122.319638,47.575978],[-122.31963500000001,47.576003],[-122.319633,47.576028],[-122.31962900000001,47.576052],[-122.319626,47.576077],[-122.31962300000001,47.576102],[-122.31962,47.576126],[-122.319616,47.576151],[-122.319613,47.576176],[-122.319609,47.5762],[-122.31960599999999,47.576225],[-122.319602,47.57625],[-122.319599,47.576274],[-122.31959500000001,47.576299],[-122.319591,47.576323],[-122.319587,47.576348],[-122.31958299999999,47.576373],[-122.319579,47.576397],[-122.319575,47.576422],[-122.319571,47.576447],[-122.31956700000001,47.576471],[-122.319562,47.576496],[-122.319558,47.57652],[-122.31946000000001,47.576847],[-122.31922400000001,47.577774],[-122.319174,47.577998],[-122.319023,47.578686],[-122.31899799999999,47.578871],[-122.318984,47.579012],[-122.318973,47.579154],[-122.31896500000001,47.579295],[-122.318962,47.579437],[-122.318962,47.579578],[-122.318966,47.57972],[-122.318973,47.579862],[-122.318984,47.580003],[-122.31899900000001,47.580144],[-122.319017,47.580286],[-122.319202,47.581209],[-122.31920700000001,47.581236],[-122.319211,47.581262],[-122.319216,47.581289],[-122.319221,47.581315],[-122.319225,47.58134],[-122.31923,47.581364],[-122.31923399999999,47.581389],[-122.319239,47.581413],[-122.319244,47.581438],[-122.319249,47.581463],[-122.319253,47.581487],[-122.319259,47.581512],[-122.319264,47.581536],[-122.31926900000001,47.581561],[-122.31927399999999,47.581585],[-122.31928000000001,47.58161],[-122.31928499999999,47.581634],[-122.31929100000001,47.581659],[-122.31929700000001,47.581683],[-122.319303,47.581708],[-122.319309,47.581732],[-122.319315,47.581756],[-122.319321,47.581781],[-122.319327,47.581805],[-122.319333,47.58183],[-122.319339,47.581854],[-122.319346,47.581878],[-122.31935199999999,47.581903],[-122.31935900000001,47.581927],[-122.319366,47.581952],[-122.319373,47.581976],[-122.31938,47.582],[-122.31938700000001,47.582025],[-122.319394,47.582049],[-122.319401,47.582073],[-122.319408,47.582097],[-122.31941500000001,47.582122],[-122.31958,47.582732],[-122.31966,47.583026],[-122.319667,47.583053],[-122.31967299999999,47.583079],[-122.31968000000001,47.583106],[-122.319686,47.583132],[-122.319692,47.583158],[-122.319698,47.583183],[-122.319703,47.583207],[-122.319709,47.583232],[-122.319715,47.583256],[-122.31972,47.583281],[-122.319726,47.583305],[-122.319731,47.58333],[-122.31973600000001,47.583354],[-122.31974200000001,47.583379],[-122.31974700000001,47.583403],[-122.31975199999999,47.583428],[-122.319757,47.583452],[-122.31976299999999,47.583477],[-122.319767,47.583501],[-122.319773,47.583526],[-122.319777,47.583551],[-122.319782,47.583575],[-122.31978700000001,47.5836],[-122.31979200000001,47.583624],[-122.31979699999999,47.583649],[-122.319801,47.583673],[-122.319806,47.583698],[-122.319811,47.583722],[-122.31981500000001,47.583747],[-122.31982000000001,47.583772],[-122.319824,47.583796],[-122.319828,47.583821],[-122.319833,47.583845],[-122.31983700000001,47.58387],[-122.319841,47.583895],[-122.319845,47.583919],[-122.319849,47.583944],[-122.319951,47.584855],[-122.320025,47.585769],[-122.320076,47.586275],[-122.320114,47.586659],[-122.32016,47.587143],[-122.320205,47.587576],[-122.32020900000001,47.587604],[-122.320256,47.587959],[-122.320317,47.588342],[-122.32050700000001,47.589125],[-122.320516,47.589151],[-122.320526,47.589177],[-122.32053500000001,47.589203],[-122.320544,47.589229],[-122.320553,47.589255],[-122.320564,47.589287],[-122.320572,47.589311],[-122.32058000000001,47.589335],[-122.320588,47.589359],[-122.32059599999999,47.589383],[-122.32060300000001,47.589408],[-122.320611,47.589432],[-122.320618,47.589456],[-122.320626,47.589481],[-122.320633,47.589505],[-122.32064,47.589529],[-122.320646,47.589553],[-122.320654,47.589578],[-122.32066,47.589602],[-122.320667,47.589626],[-122.320673,47.589651],[-122.320679,47.589675],[-122.32068599999999,47.5897],[-122.32069199999999,47.589724],[-122.32069799999999,47.589749],[-122.32070299999999,47.589773],[-122.32070899999999,47.589797],[-122.32071500000001,47.589822],[-122.32071999999999,47.589846],[-122.320725,47.589871],[-122.32073099999999,47.589895],[-122.320736,47.58992],[-122.320741,47.589945],[-122.320746,47.589969],[-122.320751,47.589994],[-122.32075500000001,47.590018],[-122.32076000000001,47.590043],[-122.32096300000001,47.590875],[-122.32096799999999,47.590899],[-122.320972,47.590923],[-122.320977,47.590948],[-122.320981,47.590972],[-122.32098499999999,47.590997],[-122.320988,47.591022],[-122.320993,47.591056],[-122.32099599999999,47.591081],[-122.320999,47.591105],[-122.321001,47.59113],[-122.321003,47.591155],[-122.321005,47.591179],[-122.32100699999999,47.591204],[-122.32100800000001,47.591229],[-122.321009,47.591254],[-122.32101,47.591278],[-122.321011,47.591303],[-122.321011,47.591328],[-122.321011,47.591353],[-122.321011,47.591378],[-122.32101,47.591402],[-122.321009,47.591427],[-122.32100800000001,47.591452],[-122.321006,47.591477],[-122.321005,47.591501],[-122.321003,47.591526],[-122.321001,47.591551],[-122.320999,47.591576],[-122.32099599999999,47.5916],[-122.320993,47.591625],[-122.32098999999999,47.59165],[-122.320986,47.591674],[-122.320982,47.591699],[-122.320978,47.591724],[-122.32097400000001,47.591748],[-122.320971,47.591772],[-122.32096900000001,47.591797],[-122.320967,47.591822],[-122.320965,47.591847],[-122.32096300000001,47.591871],[-122.320961,47.591896],[-122.320959,47.591921],[-122.320956,47.591946],[-122.320954,47.59197],[-122.32095099999999,47.592003],[-122.320948,47.592027],[-122.32094499999999,47.592052],[-122.320942,47.592077],[-122.320939,47.592101],[-122.32093500000001,47.592126],[-122.320932,47.592151],[-122.32092900000001,47.592175],[-122.320925,47.5922],[-122.320921,47.592225],[-122.32091800000001,47.592249],[-122.320914,47.592274],[-122.32091,47.592299],[-122.320905,47.592323],[-122.320902,47.592348],[-122.320897,47.592372],[-122.320893,47.592397],[-122.320888,47.592422],[-122.32088400000001,47.592446],[-122.32087900000001,47.592471],[-122.320874,47.592495],[-122.320869,47.59252],[-122.320864,47.592544],[-122.320858,47.592569],[-122.320853,47.592593],[-122.320847,47.592618],[-122.320842,47.592642],[-122.320699,47.593347],[-122.32065799999999,47.593568],[-122.320605,47.593684],[-122.320483,47.594268],[-122.320385,47.59474],[-122.32028699999999,47.595311],[-122.320283,47.595335],[-122.320278,47.59536],[-122.320274,47.595384],[-122.32027100000001,47.595408],[-122.320267,47.595433],[-122.32026399999999,47.595457],[-122.32026,47.595482],[-122.320258,47.595506],[-122.320255,47.595531],[-122.320252,47.595555],[-122.32025,47.59558],[-122.32024800000001,47.595604],[-122.320246,47.595629],[-122.320245,47.595653],[-122.320243,47.595678],[-122.320241,47.595702],[-122.320241,47.595727],[-122.32024,47.595751],[-122.320239,47.595776],[-122.320239,47.5958],[-122.320238,47.595827],[-122.32018600000001,47.595827],[-122.319981,47.595824],[-122.31974,47.595824],[-122.319215,47.595823],[-122.318848,47.595823],[-122.318161,47.595821],[-122.317667,47.595821],[-122.31723,47.59582],[-122.316356,47.595818],[-122.315472,47.595819],[-122.31458499999999,47.595815],[-122.314133,47.595816],[-122.31344900000001,47.595814],[-122.313033,47.595815],[-122.31280700000001,47.595813],[-122.31216000000001,47.595814],[-122.31152899999999,47.595877]]],[[[-122.31048166067541,47.56167196942665],[-122.310484,47.561672],[-122.31097,47.561941],[-122.31048166067541,47.56167196942665]]],[[[-122.310697,47.564879],[-122.31058400000001,47.564875],[-122.31013299999999,47.564864],[-122.311364,47.562226],[-122.31186,47.562585],[-122.31296500000001,47.563412],[-122.312995,47.563431],[-122.313023,47.56345],[-122.313051,47.56347],[-122.313078,47.56349],[-122.31310499999999,47.563511],[-122.313131,47.563532],[-122.31315600000001,47.563554],[-122.31318,47.563576],[-122.313204,47.563599],[-122.313227,47.563621],[-122.313248,47.563645],[-122.31326900000001,47.563668],[-122.31328999999999,47.563692],[-122.313309,47.563716],[-122.313328,47.56374],[-122.313346,47.563765],[-122.313362,47.56379],[-122.313378,47.563815],[-122.313393,47.563841],[-122.313408,47.563867],[-122.31342100000001,47.563893],[-122.313433,47.563919],[-122.313445,47.563945],[-122.313455,47.563972],[-122.31346499999999,47.563999],[-122.313473,47.564025],[-122.313481,47.564052],[-122.31348800000001,47.56408],[-122.31349400000001,47.564107],[-122.31349899999999,47.564134],[-122.313503,47.564169],[-122.3135,47.564893],[-122.31349299999999,47.565208],[-122.31347599999999,47.566454],[-122.31346499999999,47.567317],[-122.312658,47.5673],[-122.312651,47.564906],[-122.310697,47.564879]]]],"type":"MultiPolygon"} +},{ + "id": 907128881, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000199, + "geom:area_square_m":1661508.997701, + "geom:bbox":"-122.316784964,47.6016662593,-122.30237516,47.6191703582", + "geom:latitude":47.608831, + "geom:longitude":-122.309213, + "iso:country":"US", + "lbl:latitude":47.608797, + "lbl:longitude":-122.309352, + "lbl:max_zoom":18.0, + "mps:latitude":47.608797, + "mps:longitude":-122.309352, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:ara_x_preferred":[ + "\u0645\u062d\u062a\u0648\u0649 \u0642\u0627\u0635\u0631" + ], + "name:ceb_x_preferred":[ + "Minor" + ], + "name:ces_x_preferred":[ + "Minor" + ], + "name:deu_x_preferred":[ + "Minor" + ], + "name:fas_x_preferred":[ + "\u0645\u06cc\u0646\u0648\u0631" + ], + "name:fra_x_preferred":[ + "Minor" + ], + "name:heb_x_preferred":[ + "\u05de\u05d9\u05e0\u05d5\u05e8" + ], + "name:hun_x_preferred":[ + "Minor" + ], + "name:jpn_x_preferred":[ + "\u30de\u30a4\u30ca\u30fc" + ], + "name:kor_x_preferred":[ + "\ub9c8\uc774\ub108" + ], + "name:lav_x_preferred":[ + "Minors" + ], + "name:nld_x_preferred":[ + "Minor" + ], + "name:por_x_preferred":[ + "Minor" + ], + "name:swe_x_preferred":[ + "Minor" + ], + "name:ukr_x_preferred":[ + "\u041c\u0456\u043d\u043e\u0440" + ], + "reversegeo:latitude":47.608797, + "reversegeo:longitude":-122.309352, + "src:geom":"seagv", + "wof:belongsto":[ + 85866037, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"def3773cf2d90d231519813b78142aa0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128881, + "neighbourhood_id":85866037, + "region_id":85688623 + } + ], + "wof:id":907128881, + "wof:lastmodified":1566608547, + "wof:name":"Minor", + "wof:parent_id":85866037, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869491 + ], + "wof:tags":[] +}, + "bbox": [ + -122.31678496359207, + 47.60166625929313, + -122.30237515985974, + 47.61917035822943 +], + "geometry": {"coordinates":[[[[-122.30253980417207,47.61917035822943],[-122.30257040448133,47.61777673311993],[-122.30261685893664,47.61658559598443],[-122.3026533025495,47.61505796617339],[-122.30269025162505,47.61353037221015],[-122.30273315979045,47.61199850284517],[-122.3027514737432,47.61047526276391],[-122.30276452959608,47.60898122387318],[-122.30276577537003,47.60749976229985],[-122.30279051829788,47.60598890632651],[-122.30281328899711,47.60526973955236],[-122.30281311617951,47.60524566386724],[-122.30281089594781,47.60522088600194],[-122.30280614617567,47.60519626926343],[-122.30279887102131,47.60517194240546],[-122.30278907238666,47.60514799104087],[-122.30277725952287,47.6051244938788],[-122.30276343554939,47.60510157968611],[-122.30274709708307,47.60507934060107],[-122.30271870124234,47.60506085612609],[-122.30268988685678,47.60504550458497],[-122.30266256347339,47.60502910577686],[-122.30263622597039,47.60501170869388],[-122.30261138256695,47.60499339241148],[-122.3025880332728,47.60497415728156],[-122.30256668786204,47.60495408235991],[-122.30254633506303,47.60493326599325],[-122.30252849610035,47.60491173205934],[-122.30251165216417,47.60488954228851],[-122.30249732567594,47.60486676301133],[-122.30248450590271,47.60484349326882],[-122.30247370104965,47.60481981178599],[-122.30246440583328,47.60479572508792],[-122.30245763600462,47.60477134886678],[-122.30246009171481,47.60449930301342],[-122.30246967040563,47.60440775112745],[-122.30243057718056,47.60433345093168],[-122.30243216286348,47.60374334586552],[-122.30243642728865,47.60258390035078],[-122.30244116145117,47.60196170745871],[-122.30243379982544,47.60186249107272],[-122.30243721292388,47.6018218315066],[-122.30243197910814,47.60179799209898],[-122.30242725038802,47.60177410370095],[-122.30240451268961,47.60172259941204],[-122.30237515985974,47.60168810383449],[-122.30401402484509,47.60166971481827],[-122.30836805269938,47.60166625929313],[-122.31230566713282,47.60168570281976],[-122.31677266017032,47.60171593165169],[-122.31678496359207,47.60314315351852],[-122.31678412621027,47.60462495778501],[-122.31678306152365,47.6061165765021],[-122.31678337960915,47.60621661277423],[-122.31678334219659,47.6063753063187],[-122.31677782476068,47.60771073207328],[-122.31678421646777,47.60894831856231],[-122.31677502993267,47.61013726631248],[-122.31678296440671,47.61066448342502],[-122.31677904356471,47.61180700558686],[-122.3167485544698,47.61276436086115],[-122.31675230419424,47.61289588475678],[-122.3166586962447,47.61291942671294],[-122.3161408330172,47.61310303482956],[-122.31511268620366,47.61352322882233],[-122.31441935736657,47.61381112471091],[-122.31336893558462,47.61425108602596],[-122.31276311931411,47.61449768877453],[-122.31252660614518,47.61459403402677],[-122.31143869699869,47.61505374415424],[-122.31100686776489,47.61523385477722],[-122.31018564994298,47.61557162672949],[-122.3098434424342,47.61571278125881],[-122.30925845168494,47.61596205096522],[-122.30753845496004,47.61667519864561],[-122.30700740484929,47.61689676634884],[-122.30613217153439,47.61726219918945],[-122.30474743709217,47.61782358260328],[-122.30414752129909,47.61806659167576],[-122.30253980417207,47.61917035822943]]]],"type":"MultiPolygon"} +},{ + "id": 907128883, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000124, + "geom:area_square_m":1031550.76457, + "geom:bbox":"-122.302813289,47.6016652786,-122.296086993,47.6233189638", + "geom:latitude":47.611746, + "geom:longitude":-122.29937, + "iso:country":"US", + "lbl:latitude":47.611748, + "lbl:longitude":-122.299415, + "lbl:max_zoom":18.0, + "mps:latitude":47.611748, + "mps:longitude":-122.299415, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:cat_x_preferred":[ + "Mann" + ], + "name:ceb_x_preferred":[ + "Mann" + ], + "name:ces_x_preferred":[ + "Mann" + ], + "name:deu_x_preferred":[ + "Mann" + ], + "name:fin_x_preferred":[ + "Mann" + ], + "name:fra_x_preferred":[ + "Mann" + ], + "name:heb_x_preferred":[ + "\u05de\u05d0\u05df" + ], + "name:ita_x_preferred":[ + "Mann" + ], + "name:lit_x_preferred":[ + "Mann" + ], + "name:nld_x_preferred":[ + "Mann" + ], + "name:nor_x_preferred":[ + "Mann" + ], + "name:pol_x_preferred":[ + "Mann" + ], + "name:por_x_preferred":[ + "Mann" + ], + "name:rus_x_preferred":[ + "\u041c\u0430\u043d\u043d" + ], + "name:slv_x_preferred":[ + "Mann" + ], + "name:spa_x_preferred":[ + "Mann" + ], + "name:swe_x_preferred":[ + "Mann" + ], + "name:tur_x_preferred":[ + "Mann" + ], + "name:ukr_x_preferred":[ + "\u041c\u0430\u043d\u043d" + ], + "reversegeo:latitude":47.611748, + "reversegeo:longitude":-122.299415, + "src:geom":"seagv", + "wof:belongsto":[ + 85866037, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"568cf710ba8ad7e173345fc5dbf88383", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128883, + "neighbourhood_id":85866037, + "region_id":85688623 + } + ], + "wof:id":907128883, + "wof:lastmodified":1566608548, + "wof:name":"Mann", + "wof:parent_id":85866037, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869453 + ], + "wof:tags":[] +}, + "bbox": [ + -122.30281328899711, + 47.60166527855052, + -122.29608699294477, + 47.62331896380942 +], + "geometry": {"coordinates":[[[[-122.29642523226325,47.62331896380942],[-122.29612265087177,47.62260072584593],[-122.29609332417981,47.62134137536977],[-122.29608699294477,47.62080968306769],[-122.29611702918629,47.61890301824334],[-122.29612067833285,47.61867221610695],[-122.29616021555022,47.61674297896271],[-122.29616532041888,47.6150314863706],[-122.29621420740096,47.61294819191977],[-122.29622999761072,47.61161684078843],[-122.29623414028103,47.61032192796586],[-122.2962571869852,47.60829324811741],[-122.29627158637763,47.6079941867695],[-122.29627519485135,47.60792421966322],[-122.29627836636375,47.60789281759443],[-122.29628204713717,47.60786149426441],[-122.29628572791603,47.60783017128509],[-122.29629042310978,47.60779887808162],[-122.29629562636835,47.60776762116422],[-122.2963008320274,47.60773644985331],[-122.29630705089434,47.60770526551456],[-122.29631377850798,47.60767416027174],[-122.29632101418281,47.6076430913147],[-122.29632875912137,47.60761210144668],[-122.29633650473527,47.60758115438816],[-122.29634526648657,47.60755028025211],[-122.29635453577671,47.60751944240808],[-122.29636431552062,47.60748872610517],[-122.29637460333035,47.60745804643819],[-122.29638539936096,47.60742744587289],[-122.29639670637145,47.60739696719245],[-122.29640801406323,47.60736653167177],[-122.29642033906801,47.60733621117396],[-122.29643317402248,47.60730601292475],[-122.2964465170278,47.6072758509597],[-122.29646037117482,47.6072458536954],[-122.29647473457455,47.60721593551826],[-122.29648910036481,47.60718610294606],[-122.29650448416594,47.60715642890702],[-122.29652037721743,47.60712683395454],[-122.29653627454626,47.60709741021996],[-122.29655318798468,47.60706805905347],[-122.29657061255951,47.60703887258628],[-122.29658804073544,47.60700981487739],[-122.29660648622146,47.60698087253898],[-122.29662153886279,47.60695745780247],[-122.29678006290966,47.60664720259298],[-122.29677363439528,47.60611225534765],[-122.29677467929406,47.60427515429242],[-122.29667632518117,47.60351688947019],[-122.29674838776594,47.60261933304356],[-122.29681362907633,47.60167752148753],[-122.30025928068304,47.60166527855052],[-122.30237515985974,47.60168810383449],[-122.30240451268961,47.60172259941204],[-122.30242725038802,47.60177410370095],[-122.30243197910814,47.60179799209898],[-122.30243721292388,47.6018218315066],[-122.30243379982544,47.60186249107272],[-122.30244116145117,47.60196170745871],[-122.30243642728865,47.60258390035078],[-122.30243216286348,47.60374334586552],[-122.30243057718056,47.60433345093168],[-122.30246967040563,47.60440775112745],[-122.30246009171481,47.60449930301342],[-122.30245763600462,47.60477134886678],[-122.30246440583328,47.60479572508792],[-122.30247370104965,47.60481981178599],[-122.30248450590271,47.60484349326882],[-122.30249732567594,47.60486676301133],[-122.30251165216417,47.60488954228851],[-122.30252849610035,47.60491173205934],[-122.30254633506303,47.60493326599325],[-122.30256668786204,47.60495408235991],[-122.3025880332728,47.60497415728156],[-122.30261138256695,47.60499339241148],[-122.30263622597039,47.60501170869388],[-122.30266256347339,47.60502910577686],[-122.30268988685678,47.60504550458497],[-122.30271870124234,47.60506085612609],[-122.30274709708307,47.60507934060107],[-122.30276343554939,47.60510157968611],[-122.30277725952287,47.6051244938788],[-122.30278907238666,47.60514799104087],[-122.30279887102131,47.60517194240546],[-122.30280614617567,47.60519626926343],[-122.30281089594781,47.60522088600194],[-122.30281311617951,47.60524566386724],[-122.30281328899711,47.60526973955236],[-122.30279051829788,47.60598890632651],[-122.30276577537003,47.60749976229985],[-122.30276452959608,47.60898122387318],[-122.3027514737432,47.61047526276391],[-122.30273315979045,47.61199850284517],[-122.30269025162505,47.61353037221015],[-122.3026533025495,47.61505796617339],[-122.30261685893664,47.61658559598443],[-122.30257040448133,47.61777673311993],[-122.30253980417207,47.61917035822943],[-122.30242642637111,47.61924838342442],[-122.30138907565333,47.61996131908383],[-122.30062720517726,47.62048483830943],[-122.3001011434356,47.62083179699253],[-122.29969850500881,47.62109734584416],[-122.29804270137036,47.62222840030317],[-122.2977571963026,47.62242349899611],[-122.29642523226325,47.62331896380942]]]],"type":"MultiPolygon"} +},{ + "id": 907128885, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00023, + "geom:area_square_m":1914609.530362, + "geom:bbox":"-122.317227209,47.5763340671,-122.296167327,47.6017159317", + "geom:latitude":47.593588, + "geom:longitude":-122.303871, + "iso:country":"US", + "lbl:latitude":47.595673, + "lbl:longitude":-122.30387, + "lbl:max_zoom":18.0, + "mps:latitude":47.595673, + "mps:longitude":-122.30387, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Atlantic" + ], + "name:fra_x_preferred":[ + "Atlantic" + ], + "reversegeo:latitude":47.595673, + "reversegeo:longitude":-122.30387, + "src:geom":"seagv", + "wof:belongsto":[ + 85866037, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4816245" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8efc9f7ff8e5a160755a512148408185", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128885, + "neighbourhood_id":85866037, + "region_id":85688623 + } + ], + "wof:id":907128885, + "wof:lastmodified":1566608548, + "wof:name":"Atlantic", + "wof:parent_id":85866037, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869093 + ], + "wof:tags":[] +}, + "bbox": [ + -122.31722720932825, + 47.5763340670714, + -122.29616732700329, + 47.60171593165169 +], + "geometry": {"coordinates":[[[[-122.31677266017032,47.60171593165169],[-122.31230566713282,47.60168570281976],[-122.30836805269938,47.60166625929313],[-122.30401402484509,47.60166971481827],[-122.30237515985974,47.60168810383449],[-122.30025928068304,47.60166527855052],[-122.29681362907633,47.60167752148753],[-122.29681227135355,47.60135891158684],[-122.29743154944268,47.59957615004944],[-122.2974458872315,47.59723970736167],[-122.29754039764421,47.59584401952853],[-122.29785730585705,47.59473517636413],[-122.29785511629214,47.59370293181709],[-122.29780738853779,47.59296102497766],[-122.2976786182639,47.59218395845776],[-122.29749718194095,47.59144372960105],[-122.29747124633488,47.59127821614513],[-122.2974409271005,47.59108293998077],[-122.29739883041727,47.59081116822829],[-122.29748939807463,47.59021233494253],[-122.29765540200272,47.5894495537184],[-122.29802850453135,47.58844872273043],[-122.29811788827293,47.58687195702941],[-122.29813224750353,47.58387130941404],[-122.29814425855932,47.58352399328212],[-122.29814509107098,47.58349956175937],[-122.29814592358186,47.58347513023657],[-122.29814624825748,47.58345066243572],[-122.29814606750728,47.58342624396353],[-122.29814588607144,47.58340178268128],[-122.29814519800637,47.58337732792435],[-122.29814451114628,47.58335291597074],[-122.29814331645358,47.58332846773907],[-122.29814161684629,47.5833040684785],[-122.29813991604615,47.5832796267654],[-122.29813770982371,47.58325523438089],[-122.29813550412189,47.58323084198966],[-122.29813279179437,47.58320645612363],[-122.29812957404621,47.58318211958613],[-122.29812635630104,47.58315778304852],[-122.2981226324504,47.58313345302935],[-122.29811890808466,47.58310912301673],[-122.29811467881871,47.58308484232585],[-122.29811045076099,47.58306060443816],[-122.29810520997354,47.58303637959389],[-122.29810047703101,47.58301219137848],[-122.29809473083172,47.58298801586219],[-122.29808898584206,47.58296388314896],[-122.29808324137626,47.58293975042876],[-122.29807699270926,47.58291571019085],[-122.29807023741344,47.58289167612672],[-122.298063483338,47.58286768521639],[-122.29805622435747,47.58284374327642],[-122.29804845876946,47.58281980821168],[-122.29804069558719,47.58279595840231],[-122.29803293242189,47.58277210894326],[-122.29802415894409,47.58274835813325],[-122.29801589209735,47.58272460079783],[-122.29800661442088,47.58270094211794],[-122.29799733847554,47.58267732623395],[-122.29798806322427,47.58265375315925],[-122.29797777645977,47.58263023592962],[-122.29796799753068,47.5826067549779],[-122.29795720830373,47.58258337302519],[-122.29794692638364,47.58256002700621],[-122.29793563348139,47.58253673717591],[-122.29763322007651,47.58214098661444],[-122.29716432374295,47.5814991857719],[-122.29681817483826,47.58102482124384],[-122.29640554796222,47.58041982411517],[-122.29639425810065,47.58039661974463],[-122.29638347244392,47.58037332324874],[-122.29637268386284,47.58034994080086],[-122.29636240240995,47.58032655182789],[-122.29635211925485,47.58030312040815],[-122.29634234029311,47.58027959651256],[-122.29633256013743,47.58025602981274],[-122.29632328486835,47.58023241379818],[-122.29631400892347,47.58020875497277],[-122.2963052390671,47.58018508963616],[-122.2962964668132,47.5801613386921],[-122.29628819944422,47.5801375384336],[-122.29628043746807,47.58011368850323],[-122.29627267550892,47.5800898389232],[-122.29626491114161,47.580065903385],[-122.29625765338848,47.5800419616802],[-122.29625090051778,47.58001797066134],[-122.2962441469593,47.5799939364812],[-122.29623789896648,47.57996989579714],[-122.29623164910247,47.57994576985016],[-122.2962259070331,47.5799216798386],[-122.2962201620452,47.57989750422662],[-122.29621492365818,47.57987332209764],[-122.2962101913627,47.57984913380926],[-122.29620545837763,47.57982490235975],[-122.2962007236758,47.57980062811333],[-122.29619649609151,47.5797763473434],[-122.29619277406852,47.57975206007002],[-122.29618905136491,47.57972772998648],[-122.29618583474014,47.57970339339288],[-122.29618261811838,47.57967905679921],[-122.29617990689044,47.57965467088547],[-122.29617719566505,47.57963028497166],[-122.29617499051665,47.57960589254794],[-122.2961727853703,47.57958150012416],[-122.29617108560605,47.57955705802956],[-122.2961698936481,47.57953265257267],[-122.29616869997015,47.57950820431905],[-122.29616750749592,47.57948379886881],[-122.29616732700329,47.57945933758215],[-122.29619765356551,47.57750986624203],[-122.29619915486421,47.57747317292471],[-122.29620080588913,47.57744179037888],[-122.29620346952692,47.57741039445552],[-122.29620613317137,47.57737899888296],[-122.29620981183139,47.57734767553954],[-122.29621399706754,47.57731634603014],[-122.29621818298278,47.57728505933065],[-122.29622338323573,47.57725380240087],[-122.29622909193891,47.57722262456754],[-122.29623530719492,47.57719143986626],[-122.29624152486838,47.5771603414731],[-122.29624875634643,47.57712927250512],[-122.29625649678967,47.57709828262654],[-122.29626474447608,47.57706732904053],[-122.2962735011358,47.5770364548946],[-122.29628276623957,47.57700565984442],[-122.29629253909253,47.57697490072897],[-122.29630282160038,47.57694426386324],[-122.29631361186554,47.57691366328283],[-122.29632491177401,47.57688318460101],[-122.29633672065066,47.57685278535846],[-122.29634853242756,47.57682247136393],[-122.29636135870012,47.57679223030442],[-122.29637469461272,47.57676211114286],[-122.29638854120155,47.57673211386575],[-122.29640289622608,47.57670219568283],[-122.29641776089817,47.57667239974819],[-122.29643313571576,47.57664272535323],[-122.29644902069784,47.57661317319945],[-122.29646490754895,47.57658370665686],[-122.29648181231977,47.57655439828986],[-122.29649922673434,47.57652521217003],[-122.29651664593085,47.57649619691021],[-122.29653508064824,47.57646725456908],[-122.29655402741291,47.5764385200812],[-122.29657297655255,47.57640987084608],[-122.29658855340705,47.57638739160943],[-122.29660731528762,47.5763340670714],[-122.29676188711763,47.57653528504596],[-122.29703156861495,47.57688523052977],[-122.29738382558209,47.57734353454815],[-122.29764850288413,47.57769534254583],[-122.29794816959104,47.57808440170901],[-122.29815468293397,47.57834904283447],[-122.29851566712979,47.57882878171237],[-122.29886815283591,47.57929427629816],[-122.29939679157067,47.57998889730682],[-122.2998427618501,47.58057160374327],[-122.30027770255771,47.58114005525309],[-122.30053082292957,47.58147585424733],[-122.30083625398748,47.58187018714478],[-122.30113920834121,47.58226635104336],[-122.3015575185169,47.58281890326059],[-122.30164588611815,47.58293455415571],[-122.30168744228727,47.58298902870467],[-122.30178264838722,47.58311363126457],[-122.30205883351358,47.58347620628929],[-122.30250162236653,47.58403379467848],[-122.30293864783656,47.58458430131305],[-122.30302387629327,47.58469622160433],[-122.30329331624577,47.58507049125526],[-122.30355729462923,47.58543060730938],[-122.30384179305749,47.58581757731829],[-122.30409070265092,47.58612823112341],[-122.30440971770115,47.58655314134193],[-122.3046179839876,47.58682366141124],[-122.30508760443695,47.58750402589988],[-122.30524782169552,47.58774132001522],[-122.30543418023571,47.58795342620119],[-122.30572375770447,47.58828612889371],[-122.30624329061904,47.58895684592525],[-122.30657937224167,47.58939279754298],[-122.30681191742502,47.58969688850994],[-122.30723851304613,47.5902694076733],[-122.30779620795762,47.59098023949964],[-122.30824011543785,47.59157288171177],[-122.30866984139541,47.59212958914289],[-122.30906873265752,47.59265280563053],[-122.30931124936978,47.59296803019591],[-122.30982441843847,47.59364331305262],[-122.31027875692658,47.59424480973954],[-122.31076756221663,47.59488201704165],[-122.31125283381799,47.59551926865306],[-122.31136761342171,47.59567132915296],[-122.31152899989706,47.59587650985338],[-122.31157157999587,47.5959306251909],[-122.31190123156841,47.59636891621669],[-122.31213700575572,47.59667745355603],[-122.31238310679011,47.59699266861186],[-122.31283756859561,47.59759642466716],[-122.31287221879541,47.59763886078338],[-122.31373235615011,47.59876902723375],[-122.31374922116156,47.59879185774467],[-122.31376564448773,47.59881696446288],[-122.31378256800129,47.59884185057457],[-122.31380049848094,47.59886650948447],[-122.31381893088569,47.59889099058362],[-122.31383786346984,47.59891525072456],[-122.31385729676251,47.59893929025107],[-122.31387723023543,47.59896310881886],[-122.31389816998947,47.59898665772388],[-122.31391961113272,47.59901002812181],[-122.31394155004254,47.59903309265529],[-122.31396399017208,47.59905593621522],[-122.31398692753015,47.59907847321518],[-122.31401036611857,47.59910078959186],[-122.3140348087267,47.59912279316274],[-122.31405924403886,47.59914453955837],[-122.3140846856268,47.59916601593704],[-122.31411062496356,47.59918718574718],[-122.3141370613602,47.59920800652936],[-122.31457585449823,47.59920640720476],[-122.31533682728077,47.5992009949562],[-122.3166585549389,47.59918826748308],[-122.31718514319837,47.59919116860005],[-122.31722720932825,47.59919139135508],[-122.31718656637436,47.60027196937514],[-122.31717567486592,47.60029876033814],[-122.31716575488925,47.6003240817271],[-122.31715583421129,47.6003493606561],[-122.31714591421533,47.6003746820433],[-122.31713599543005,47.60040004623278],[-122.31712607664511,47.60042541077221],[-122.31711666463372,47.60045076835011],[-122.31710725384343,47.60047616908123],[-122.31709733624029,47.60050157607043],[-122.31708843292694,47.60052701300018],[-122.31707902331939,47.60055245618124],[-122.31706961493296,47.60057794251549],[-122.31706071280327,47.60060342189533],[-122.31705181067485,47.60062890162531],[-122.31704291027671,47.60065442415099],[-122.31703451614658,47.60067994007323],[-122.31702561642275,47.6007055050566],[-122.31701722349617,47.60073106378073],[-122.31700883056129,47.60075662250421],[-122.31700043831971,47.600782224037],[-122.3169920465786,47.60080782521154],[-122.31698416163616,47.60083342012707],[-122.31697577110899,47.6008590644544],[-122.31696788807251,47.60088474498186],[-122.31696000432673,47.60091038269886],[-122.31695262807264,47.60093605661612],[-122.31694474501305,47.60096173714197],[-122.31693736996431,47.60098745386136],[-122.31692999490831,47.60101317058029],[-122.31692261984502,47.60103888729872],[-122.31691524599456,47.60106464681984],[-122.3169083789363,47.60109039973155],[-122.31690100508155,47.60111615960254],[-122.31689413871086,47.60114195532331],[-122.3168872728521,47.60116775103689],[-122.31688040646782,47.60119354675678],[-122.31687404809757,47.60121937867071],[-122.31686768973101,47.60124521093509],[-122.31686133186689,47.60127104284151],[-122.31685497469783,47.60129691755748],[-122.31684861630234,47.60132274946993],[-122.31684225913065,47.60134862453599],[-122.31683640996498,47.60137453544546],[-122.31683055906466,47.60140040390906],[-122.31682470988734,47.60142631481789],[-122.31681886192432,47.60145226852958],[-122.31681351902988,47.60147817318694],[-122.31680817734019,47.60150412029635],[-122.31680232937018,47.60153007435799],[-122.31679749447359,47.60155601485845],[-122.31679215399801,47.60158200512108],[-122.31678681228703,47.60160795222944],[-122.31678197860558,47.60163393588322],[-122.31677714612934,47.60165996198908],[-122.3167723124382,47.60168594564243],[-122.31677266017032,47.60171593165169]]]],"type":"MultiPolygon"} +},{ + "id": 907129167, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000116, + "geom:area_square_m":965389.032421, + "geom:bbox":"-122.368584815,47.6185804905,-122.343642262,47.6267614715", + "geom:latitude":47.622669, + "geom:longitude":-122.354709, + "iso:country":"US", + "lbl:latitude":47.622013, + "lbl:longitude":-122.354709, + "lbl:max_zoom":18.0, + "mps:latitude":47.622013, + "mps:longitude":-122.354709, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:deu_x_preferred":[ + "Uptown" + ], + "name:fra_x_preferred":[ + "Uptown" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30c3\u30d7\u30bf\u30a6\u30f3" + ], + "name:kor_x_preferred":[ + "\uc5c5\ud0c0\uc6b4" + ], + "reversegeo:latitude":47.622013, + "reversegeo:longitude":-122.354709, + "src:geom":"mz", + "wof:belongsto":[ + 85869447, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6279e793e80b16f62b267e4188eab004", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129167, + "neighbourhood_id":85869447, + "region_id":85688623 + } + ], + "wof:id":907129167, + "wof:lastmodified":1566608544, + "wof:name":"Uptown", + "wof:parent_id":85869447, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783305 + ], + "wof:tags":[] +}, + "bbox": [ + -122.3685848152815, + 47.61858049046028, + -122.34364226249598, + 47.62676147149658 +], + "geometry": {"coordinates":[[[[-122.36453007603036,47.62586648246793],[-122.36060520094806,47.62582643272219],[-122.36053924670789,47.62580444797547],[-122.36048794896553,47.62576780673093],[-122.36040733822755,47.6257384937353],[-122.36031207099175,47.62572383723749],[-122.3587364974766,47.62572383723749],[-122.35671390077809,47.62570185249076],[-122.35671390077809,47.62544536377899],[-122.35364336448578,47.62542337903227],[-122.34731175742957,47.62540139428555],[-122.34364932638741,47.62541099436691],[-122.34366267861951,47.62514544848072],[-122.34364226249598,47.62377869530984],[-122.34443244644079,47.62314328403112],[-122.34626045345642,47.62177806666198],[-122.34763428383033,47.6206791827023],[-122.3479276405436,47.62046435778009],[-122.34910268613781,47.61955708600252],[-122.34980511092735,47.61901106331323],[-122.35035728611069,47.61858049046028],[-122.35134848711303,47.61858535338488],[-122.35282023241685,47.61858914856664],[-122.3542924848897,47.6185929175918],[-122.35576939667806,47.61859999009026],[-122.3572366812048,47.61860717234394],[-122.35780674503289,47.61861628973696],[-122.35844675515354,47.61860771468798],[-122.35859223368568,47.61872834216865],[-122.35928065947741,47.61929883814326],[-122.36016730985004,47.62002450932476],[-122.36228790967523,47.62178478589015],[-122.36386913884445,47.62311145507555],[-122.36541119929798,47.62437929143059],[-122.36654071202277,47.62525421412971],[-122.36741163832225,47.62588677099898],[-122.36858481528149,47.62676147149658],[-122.36833280752033,47.62672643902887],[-122.36766612789104,47.62648740236015],[-122.36743163701389,47.62639296388884],[-122.36652894264695,47.62604180727678],[-122.36571906932333,47.62572598336426],[-122.36477162823421,47.62536958893143],[-122.36465730365411,47.62527502772021],[-122.36454088432841,47.6251781805688],[-122.3645398075279,47.625227722899],[-122.36453109159173,47.62586172094924],[-122.36453007603036,47.62586648246793]]]],"type":"MultiPolygon"} +},{ + "id": 907129169, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000237, + "geom:area_square_m":1975368.52451, + "geom:bbox":"-122.393046187,47.675914186,-122.376336565,47.6906051591", + "geom:latitude":47.683276, + "geom:longitude":-122.384898, + "iso:country":"US", + "lbl:latitude":47.683274, + "lbl:longitude":-122.384897, + "lbl:max_zoom":18.0, + "mps:latitude":47.683274, + "mps:longitude":-122.384897, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Loyal Heights" + ], + "name:eng_x_preferred":[ + "Loyal Heights" + ], + "name:eng_x_variant":[ + "Loyal Hts" + ], + "name:fra_x_preferred":[ + "Loyal Heights" + ], + "name:kor_x_preferred":[ + "\uc5c5\ud0c0\uc6b4" + ], + "name:por_x_preferred":[ + "Loyal Heights" + ], + "name:sco_x_preferred":[ + "Loyal Heights" + ], + "name:spa_x_preferred":[ + "Loyal Heights" + ], + "name:swe_x_preferred":[ + "Loyal Heights" + ], + "name:und_x_variant":[ + "Loyal" + ], + "reversegeo:latitude":47.683274, + "reversegeo:longitude":-122.384897, + "src:geom":"seagv", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q26729260" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e561bdbfad137490e0f97d4bc751a876", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129169, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":907129169, + "wof:lastmodified":1566608544, + "wof:name":"Loyal Heights", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85831629 + ], + "wof:tags":[] +}, + "bbox": [ + -122.3930461873176, + 47.67591418595407, + -122.37633656472248, + 47.69060515914627 +], + "geometry": {"coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.37670790751649,47.67599822904589],[-122.37790305763099,47.67599788490211],[-122.37998862530341,47.67598934293856],[-122.38182788442997,47.67599207945698],[-122.38360275247724,47.67597981042404],[-122.3854357214252,47.67595879566174],[-122.38708743420604,47.67595213437687],[-122.38770239121612,47.67594768759288],[-122.38895575916798,47.67594244886779],[-122.39044934626308,47.67592598688679],[-122.39177310927295,47.67591581315035],[-122.39282717206579,47.67591531433525],[-122.39295655054526,47.67591418595407],[-122.39295630346368,47.67632870998336],[-122.39295961840902,47.67692955844702],[-122.39296126335915,47.67750857902157],[-122.39297150298634,47.67810342002372],[-122.39297500980646,47.67925177559714],[-122.39298377112864,47.67981424642591],[-122.39300195771972,47.68113039427877],[-122.39301453079068,47.68242858089091],[-122.39301615804834,47.68373411554943],[-122.3930228270559,47.68502158628398],[-122.39303057758862,47.68634507429638],[-122.39303274662132,47.68766863862898],[-122.39304618731759,47.68899564758119],[-122.39301066505074,47.69029809133717],[-122.39300241535642,47.69058132055665],[-122.39243237327538,47.69058269381112],[-122.39034791081274,47.69056312044921],[-122.38819297912386,47.69058050291446],[-122.38583283160172,47.69057660419814],[-122.38327531600729,47.69059316459696],[-122.38320121502439,47.69059365854469],[-122.38145302065547,47.69059788290438],[-122.379876313408,47.69059885417487],[-122.37910384133242,47.69060419297455],[-122.37711791043151,47.69060296390281],[-122.3768103447661,47.69060515914627],[-122.37681026483382,47.69053412427009],[-122.37681098912648,47.69001171430062],[-122.37680306748778,47.68897614672397],[-122.37679475101363,47.68794435503207],[-122.37680040280794,47.68700684573382],[-122.37678440374883,47.68609233667588],[-122.37678526060854,47.68518136985772],[-122.37678053588465,47.68427047860571],[-122.37678731084149,47.68337078541776],[-122.37677742324162,47.68228605918821],[-122.37676782048671,47.68119383105842],[-122.37677044250314,47.68015430722797],[-122.37677006563926,47.67920179799157],[-122.37676988221591,47.67806784040807],[-122.37675975088072,47.67753876468257],[-122.37676198545913,47.67686213733803],[-122.37677217176268,47.67643616976648],[-122.37677245110581,47.67641140220005],[-122.3767707001024,47.67638661896828],[-122.37676692257945,47.67636194882915],[-122.37676112057321,47.67633747774511],[-122.3767538021207,47.67631319848254],[-122.37674496924691,47.67628919665303],[-122.37673360870548,47.67626552915309],[-122.37672124636714,47.67624230377039],[-122.37670635889803,47.67621949796996],[-122.37669047344887,47.6761972626929],[-122.37667257549219,47.67617561168188],[-122.37665369355058,47.67615500237036],[-122.37662081150552,47.67612438566283],[-122.37659791092004,47.67610515888866],[-122.37657300622109,47.67608681635109],[-122.37654711243437,47.67606934359819],[-122.37651972205768,47.67605274820529],[-122.37633656472248,47.67591769896645]]]],"type":"MultiPolygon"} +},{ + "id": 907129171, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000243, + "geom:area_square_m":2027097.76775, + "geom:bbox":"-122.402004342,47.6607024072,-122.376206911,47.675998229", + "geom:latitude":47.670194, + "geom:longitude":-122.386309, + "iso:country":"US", + "lbl:latitude":47.671555, + "lbl:longitude":-122.386062, + "lbl:max_zoom":18.0, + "mps:latitude":47.671555, + "mps:longitude":-122.386062, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ara_x_preferred":[ + "\u0622\u062f\u0627\u0645\u0632" + ], + "name:bel_x_preferred":[ + "\u0410\u0434\u0430\u043c\u0441" + ], + "name:bre_x_preferred":[ + "Adams" + ], + "name:bul_x_preferred":[ + "\u0410\u0434\u0430\u043c\u0441" + ], + "name:cat_x_preferred":[ + "Adams" + ], + "name:ceb_x_preferred":[ + "Adams" + ], + "name:ces_x_preferred":[ + "Adams" + ], + "name:deu_x_preferred":[ + "Adams" + ], + "name:fas_x_preferred":[ + "\u0627\u062f\u0627\u0645\u0632" + ], + "name:fin_x_preferred":[ + "Adams" + ], + "name:fra_x_preferred":[ + "Adams" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d3\u05de\u05e1" + ], + "name:hun_x_preferred":[ + "Adams" + ], + "name:ita_x_preferred":[ + "Adams" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30c0\u30e0\u30ba" + ], + "name:kat_x_preferred":[ + "\u10d0\u10d3\u10d0\u10db\u10e1\u10d8" + ], + "name:kor_x_preferred":[ + "\uc560\ub364\uc2a4" + ], + "name:lav_x_preferred":[ + "Adams" + ], + "name:lit_x_preferred":[ + "Adams" + ], + "name:nld_x_preferred":[ + "Adams" + ], + "name:nor_x_preferred":[ + "Adams" + ], + "name:pol_x_preferred":[ + "Adams" + ], + "name:por_x_preferred":[ + "Adams" + ], + "name:ron_x_preferred":[ + "Adams" + ], + "name:rus_x_preferred":[ + "\u0410\u0434\u0430\u043c\u0441" + ], + "name:slk_x_preferred":[ + "Adams" + ], + "name:slv_x_preferred":[ + "Adams" + ], + "name:spa_x_preferred":[ + "Adams" + ], + "name:srp_x_preferred":[ + "\u0410\u0434\u0430\u043c\u0441" + ], + "name:swe_x_preferred":[ + "Adams" + ], + "name:tur_x_preferred":[ + "Adams" + ], + "name:ukr_x_preferred":[ + "\u0410\u0434\u0430\u043c\u0441" + ], + "name:vol_x_preferred":[ + "Adams" + ], + "name:zho_x_preferred":[ + "\u4e9a\u5f53\u65af" + ], + "reversegeo:latitude":47.671555, + "reversegeo:longitude":-122.386062, + "src:geom":"seagv", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"30de5c777f762bf8db7e1196d1b1f8f6", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129171, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":907129171, + "wof:lastmodified":1566608546, + "wof:name":"Adams", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869841 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40200434166536, + 47.66070240716573, + -122.3762069108763, + 47.67599822904589 +], + "geometry": {"coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.37621415009455,47.67574313828309],[-122.37620697011516,47.67474916188883],[-122.37620691087631,47.67361897281177],[-122.37620875748351,47.67255298169327],[-122.37621540101532,47.67146053322745],[-122.37621612603181,47.67035676852991],[-122.37621200355261,47.66926065272464],[-122.37621898170605,47.6681795106282],[-122.37621491432786,47.66710233114314],[-122.3762223414066,47.6660363069762],[-122.37621860845479,47.66497039075584],[-122.37622401595137,47.66383635695511],[-122.37621333547924,47.66289534067378],[-122.37621512781847,47.66220359491711],[-122.37622608715756,47.6616326743118],[-122.37623202828763,47.66108071601214],[-122.37622829329366,47.6609890799218],[-122.37631103400737,47.66100758168655],[-122.37634758912534,47.66100845739675],[-122.37639861545428,47.66100116802566],[-122.37639976814459,47.66095453795953],[-122.37640999436189,47.66088884745074],[-122.37648002159466,47.66088926998437],[-122.37664988396513,47.66088589727055],[-122.37680204483833,47.66088439238447],[-122.37690496258583,47.66088188364453],[-122.37702008518609,47.66088032340874],[-122.37711804571271,47.66088173753755],[-122.37723290567369,47.66088840693406],[-122.37723692283326,47.66093826615995],[-122.37724160703657,47.66101056682958],[-122.37724742698099,47.66110401694694],[-122.37730536931723,47.66112461080132],[-122.37743178277722,47.66116154289361],[-122.37753317891662,47.66117610627297],[-122.3775844128604,47.66114165009788],[-122.37761486559465,47.66109080968937],[-122.37765437534352,47.6610203519417],[-122.37767725863591,47.66098795114039],[-122.37771539885219,47.66093970550939],[-122.37772654460257,47.66090502172618],[-122.37774304035551,47.66086255364664],[-122.37775860455308,47.66082288287794],[-122.37777746505371,47.66077464138244],[-122.37779127634943,47.66074429186018],[-122.37782088195239,47.66071616993364],[-122.37788795066157,47.66070240716573],[-122.37793077853635,47.66070949565169],[-122.37798246481306,47.66072443265539],[-122.37803738088215,47.66074562418418],[-122.37808819936461,47.66076550033038],[-122.37814444112139,47.66078007573942],[-122.37822393707674,47.66080890281565],[-122.37828525770264,47.6608236665358],[-122.37834362784385,47.66084155501768],[-122.37841148527066,47.66085434452989],[-122.37848816866347,47.66087386962637],[-122.37857216304289,47.66090040741058],[-122.37862482319699,47.66091396033477],[-122.37869736782922,47.66093079923092],[-122.37875168663416,47.66094895657415],[-122.37882068128866,47.66096584356084],[-122.37886295239259,47.66098832029324],[-122.37892244156707,47.66100970661808],[-122.37908103525507,47.66105391195568],[-122.37926510938509,47.66110188402826],[-122.37938929903541,47.66113224605867],[-122.37942155575776,47.66110798676899],[-122.37947898319071,47.66112828678123],[-122.37964268252057,47.66117353570232],[-122.37980001614802,47.66122649764087],[-122.37994611089928,47.66127686976395],[-122.38006585299634,47.66131119015786],[-122.38013094581126,47.66133331369078],[-122.3801534311867,47.66135580138545],[-122.38017414808907,47.66138705357435],[-122.38018883513432,47.66142027277076],[-122.38021103821723,47.66148440889214],[-122.38024316741426,47.66150702286451],[-122.38030335411379,47.66151773058991],[-122.3803507549782,47.66152501298717],[-122.3803953757016,47.66154115924787],[-122.38047944606188,47.66157017956689],[-122.38056013010117,47.66160473025604],[-122.38061465422128,47.66162973895138],[-122.38066359394219,47.66165460938772],[-122.38070187264341,47.66167928173037],[-122.38071557954108,47.66173068025932],[-122.38069073230724,47.66178225965533],[-122.38066435778438,47.6618166364496],[-122.38064803545355,47.66186484362063],[-122.38068448469015,47.66187917284273],[-122.38071794676462,47.6618954274041],[-122.38075218778405,47.66190374551827],[-122.38079050109987,47.66191252213181],[-122.38082921603741,47.66193478920123],[-122.38086622764114,47.66196800509161],[-122.3808954204882,47.66199421457269],[-122.38093240794383,47.66202661649457],[-122.38096864325153,47.6620508026807],[-122.3810206415865,47.66207614524775],[-122.38109887196653,47.6621134707754],[-122.38116745022388,47.66215037076184],[-122.38123811446285,47.66218916994813],[-122.38128822357389,47.66221920822617],[-122.38133842151143,47.66225224476056],[-122.38138971589949,47.66228800788517],[-122.3814327899311,47.66232032692648],[-122.38150355181413,47.66237943309822],[-122.38157273404487,47.6624365895899],[-122.38161407394976,47.66247882945536],[-122.38165628071744,47.66251608727855],[-122.38169982114471,47.6625470286],[-122.38180678708885,47.66262920695395],[-122.38189719747827,47.66270064178392],[-122.38202451514969,47.66280173735337],[-122.38215957074182,47.66290709763447],[-122.38223495665324,47.66296806808426],[-122.38233155211751,47.66304271769982],[-122.3823582422783,47.66307003205292],[-122.3823429688029,47.66310233032983],[-122.3823006821038,47.66318161048106],[-122.3822486279647,47.66325661055193],[-122.38220591657117,47.66332162940398],[-122.38216549548953,47.66337839079765],[-122.38213013857781,47.66343482639731],[-122.38211130568045,47.66346687294966],[-122.38208866064524,47.66350719763011],[-122.3820729943123,47.6635433570874],[-122.38207992140939,47.66357149723056],[-122.38210231718652,47.66360795307818],[-122.38213261519581,47.66363714671976],[-122.38215200982634,47.66365800539911],[-122.38217963204106,47.6636995745085],[-122.38222664006088,47.66376170231032],[-122.38226501345913,47.66378945764306],[-122.38228703298839,47.66381327974022],[-122.38229456590363,47.66384471050609],[-122.38232469112461,47.66388513153049],[-122.38235110404061,47.66392016177073],[-122.38239278852063,47.66395686978864],[-122.38242584512977,47.66397647107892],[-122.38247158057966,47.66397884820272],[-122.38252666755744,47.6639545348073],[-122.38258906807128,47.66392022459033],[-122.38268843496473,47.66386647432247],[-122.38280332087278,47.66380570066036],[-122.38290519903141,47.66375110175899],[-122.38294171714797,47.6637336385167],[-122.38296613376366,47.66375275771836],[-122.38303116525479,47.66380671378461],[-122.3831329000261,47.66390048729757],[-122.3832395850428,47.66399007986501],[-122.38335758215462,47.66408470274605],[-122.38338757106867,47.66406947060223],[-122.38342654183523,47.66406619804844],[-122.3834833214065,47.66411563882805],[-122.38355951895696,47.66418670916958],[-122.3836079368877,47.66422799492189],[-122.38366498610981,47.66426946291428],[-122.38370521685079,47.66425739016084],[-122.38374678885961,47.66429028581818],[-122.38381508444405,47.66435156623104],[-122.38389152905813,47.66441389250918],[-122.38392898663145,47.66444491617123],[-122.38394779214099,47.66448000679915],[-122.38388181726665,47.66451355214251],[-122.38381499971518,47.66455285026977],[-122.38387902593955,47.66460707682901],[-122.38397756649951,47.66467869950439],[-122.38413583269704,47.6645923552987],[-122.3842421452771,47.66453332511299],[-122.38433135279799,47.6644791975459],[-122.38441281277147,47.66443751450934],[-122.38448969193597,47.66439533713778],[-122.38458306222751,47.6643447088215],[-122.38466105254824,47.66430577225234],[-122.38471309647538,47.66428149888466],[-122.38474672562896,47.66426925875523],[-122.38478893609533,47.66430651541519],[-122.38484938077764,47.66435971902679],[-122.38491605888446,47.66441776442448],[-122.38496388172832,47.66445605858738],[-122.3850172504432,47.66451017242997],[-122.38495372199014,47.66454064347106],[-122.38488642208996,47.66458076273375],[-122.38395298197972,47.66510547939225],[-122.38405660665556,47.66519388198586],[-122.38377806577535,47.66544963842072],[-122.38468233436261,47.66615884990043],[-122.38528763472694,47.66660653764897],[-122.38579274519975,47.66697032017094],[-122.38612700857722,47.66719762720947],[-122.38639121726374,47.6673633230826],[-122.38750493948538,47.66767642198941],[-122.38749180272747,47.66706527795996],[-122.38775691519933,47.66677947197187],[-122.38775664209335,47.66680081771917],[-122.38778386216538,47.66684568991293],[-122.38781790505389,47.66689813829351],[-122.3878537540422,47.66692614071192],[-122.38789902858167,47.66696391146838],[-122.38792504460896,47.66698549277311],[-122.38798909328894,47.66700629773754],[-122.38803695243516,47.66702869491549],[-122.3880683099671,47.66704223424583],[-122.38810202364462,47.66706670958678],[-122.38806120564325,47.66711006822115],[-122.38807474663874,47.66713867478362],[-122.38812121482951,47.6671654609862],[-122.38817925801189,47.66717208076214],[-122.3882074961891,47.667149202303],[-122.3882576083311,47.66709423402913],[-122.38829544846215,47.66705310118428],[-122.38832311425125,47.66702804494511],[-122.3883661140455,47.66704065415887],[-122.38840365641022,47.66705740784396],[-122.3884617328152,47.66708210749433],[-122.38853976386918,47.66711231850776],[-122.38863432755444,47.66715241517215],[-122.38868517301246,47.66717284336638],[-122.3888124537701,47.66722101920784],[-122.38887368819321,47.66724948859571],[-122.3889198230204,47.66728206321135],[-122.38895321875606,47.66731284066665],[-122.3889861235986,47.66732721536557],[-122.38902285514573,47.66733382602215],[-122.38909073169562,47.66732989986997],[-122.38911386573822,47.66722127303658],[-122.38913669937712,47.66713651495582],[-122.38917324235418,47.66713682976952],[-122.38917348464204,47.66728052683158],[-122.38917126385795,47.66742669966563],[-122.38920212368883,47.66745751168724],[-122.38928141265453,47.66746191277573],[-122.38933006377711,47.66745987729137],[-122.38937918975768,47.66745676410308],[-122.38948243885284,47.66744794127469],[-122.38954322169715,47.66744436903137],[-122.38960895371852,47.66743661598309],[-122.38971262041254,47.66742478845085],[-122.38975987279986,47.66742688469855],[-122.38980730602233,47.66743501955544],[-122.3899046591752,47.66744958490769],[-122.3900519235746,47.66747032277537],[-122.39013779955162,47.66749134244505],[-122.39020333711125,47.66749404570665],[-122.3902475208629,47.66749532694653],[-122.39028317470422,47.66749980953686],[-122.39030044714646,47.66753436348235],[-122.39035377091551,47.6675358623119],[-122.39043302673829,47.66753914903829],[-122.39047525047286,47.66755969430125],[-122.39047334225339,47.66761456130984],[-122.39047777229439,47.66766081562351],[-122.39051427639413,47.66765980242807],[-122.39063500822452,47.66765866614268],[-122.39074607977128,47.66765689069861],[-122.39082778160534,47.66765714457043],[-122.39089434968976,47.66766034753623],[-122.39089851079274,47.66762987103415],[-122.39090934373016,47.66758499306832],[-122.39094995396906,47.66758555179222],[-122.39099354742592,47.66756713247669],[-122.39099884901034,47.66750699187544],[-122.39104043247504,47.66750616632248],[-122.39108402583328,47.66748774697227],[-122.39110868030149,47.66746384523874],[-122.39114302836485,47.66744169605817],[-122.39120162774239,47.66738219783725],[-122.39124012696072,47.66738004310395],[-122.39129077182444,47.66735989902655],[-122.39133519831474,47.66733542708042],[-122.39137947764907,47.66730603004383],[-122.39141294062625,47.66727129684261],[-122.3914237681055,47.66724317126587],[-122.39142844347816,47.66721294462381],[-122.39144784983408,47.66716632147474],[-122.39143692527445,47.66714042172188],[-122.39141351007159,47.66712103330676],[-122.3914502706663,47.66709473822237],[-122.39150153965014,47.6670954078681],[-122.39159698438272,47.66709710139378],[-122.39169335306622,47.66709578305797],[-122.39178427535647,47.66709895205192],[-122.39184711895435,47.66709642157493],[-122.39188721367722,47.66709672974305],[-122.39192374286991,47.66711349614667],[-122.39203084572125,47.66711477287701],[-122.39208887264724,47.66712083388104],[-122.39209113667181,47.66716249044416],[-122.39209623522424,47.66723097203578],[-122.39209960243323,47.6673263407844],[-122.39212311410294,47.66738278793949],[-122.39213456190606,47.66740919466019],[-122.39217108121164,47.66740869491169],[-122.39225224364127,47.66740788429197],[-122.39238968033284,47.66740544632769],[-122.39247795144695,47.66740479517214],[-122.39254028793418,47.66740227090743],[-122.39263232146644,47.66739171395865],[-122.39267528791474,47.66740316518359],[-122.39270855300072,47.66741260680377],[-122.39280633789627,47.66740771199613],[-122.39287399014795,47.66739633179746],[-122.39291982606404,47.66738503580297],[-122.3929794818486,47.66739463020888],[-122.3930204014849,47.66738858584338],[-122.39309777433148,47.66737985745818],[-122.39316729400441,47.66737997671501],[-122.39322507457609,47.6673778141995],[-122.3932219554416,47.66740913363566],[-122.39322283252389,47.66747218855779],[-122.39323843629697,47.66753559917311],[-122.39329750546007,47.66755946852314],[-122.39335375595945,47.66755702715984],[-122.39339996484124,47.66752434683825],[-122.39344465613456,47.66752561988865],[-122.39344769780378,47.66755933955805],[-122.39348984527092,47.66756039051197],[-122.39352743635408,47.66756180359587],[-122.3935669743977,47.66756044812717],[-122.39361416021814,47.66756031600781],[-122.39364526276248,47.66754840759999],[-122.39368039104738,47.66750156869221],[-122.39372025417443,47.66744343944956],[-122.39375875228913,47.66739055606855],[-122.39375769274892,47.66732146253494],[-122.39375847589852,47.66721232687193],[-122.39376122388086,47.66711794555808],[-122.39376168087712,47.66701485546797],[-122.3937607584739,47.66693342057275],[-122.39376145633372,47.66685526271461],[-122.39376092093553,47.66678671865737],[-122.39376572200398,47.66669312349539],[-122.39376384311895,47.66661362964727],[-122.39376726907305,47.66655874174214],[-122.39379670959934,47.66654218623304],[-122.39383320332365,47.66654087201481],[-122.39391031345555,47.66654032980843],[-122.39402998018323,47.66653761944483],[-122.39411771716858,47.66653611721782],[-122.39419376484662,47.66653400399025],[-122.39424599749729,47.66653298851338],[-122.39430786067295,47.6665316265894],[-122.39438248433468,47.66653278916357],[-122.3944514548006,47.66653154385995],[-122.3945265292943,47.66653081503524],[-122.39459043656892,47.66652993913117],[-122.39459525159948,47.66655510841249],[-122.39463546865582,47.66655948427306],[-122.39471674421765,47.66656248340011],[-122.39481353691151,47.66655841437336],[-122.39484375984593,47.66653413572905],[-122.39484114702481,47.66648095876442],[-122.39483488651395,47.66642457538938],[-122.39483280173434,47.66638895750069],[-122.39484952455091,47.6663544523763],[-122.394885346531,47.6663476632794],[-122.39493539462399,47.66634149307115],[-122.39506963344384,47.66631715927657],[-122.39520643320134,47.66629360448661],[-122.39530899140254,47.66627878786758],[-122.3953983943876,47.66626522240494],[-122.39545803806655,47.66625754944031],[-122.39548229707837,47.66623746557057],[-122.39551156443635,47.66618140891424],[-122.3955805007113,47.6660608844761],[-122.3956397550344,47.66595587388688],[-122.39569640019772,47.66584845691479],[-122.39577019401372,47.66572075341407],[-122.3958141405186,47.66564667243195],[-122.39583792551599,47.66559394729818],[-122.39580104628418,47.66558241377786],[-122.3957298872516,47.66556145344395],[-122.39557083289746,47.66551976218482],[-122.39542618616765,47.66548472816255],[-122.39520544969734,47.66543347108677],[-122.39510120057444,47.66540885092482],[-122.39495805948108,47.66537323901487],[-122.39486753675601,47.6653495016551],[-122.39482323120137,47.66534411073795],[-122.39478376872783,47.66534790776548],[-122.39471174789313,47.66534889501506],[-122.39464983853362,47.66534867242375],[-122.39461163483232,47.66534371197562],[-122.39457125406467,47.66533385426446],[-122.394512428063,47.66533491780537],[-122.39448922456864,47.66535635794038],[-122.39442125003276,47.66534002332561],[-122.39427306195098,47.66530529366057],[-122.3941546121346,47.66528086724275],[-122.39410911568164,47.66525269922792],[-122.39414281564252,47.66519216929677],[-122.39415028342107,47.6651367117978],[-122.39406340363418,47.66511596585498],[-122.39393402303483,47.66508234899769],[-122.39377346710187,47.66504123284984],[-122.39363708572095,47.66501101044847],[-122.39357769262674,47.664993186853],[-122.39344681158171,47.66497715631255],[-122.39329448855446,47.66495674910723],[-122.3930882316585,47.66493133888235],[-122.39292273862036,47.66491166853358],[-122.39273795619368,47.66489170501661],[-122.39259540217095,47.66487557639212],[-122.39242080465267,47.66485684387808],[-122.3921962901031,47.6648316823013],[-122.39203434803771,47.6648119620737],[-122.39186582057253,47.66479258864251],[-122.39167946847931,47.66477101704236],[-122.39150787398604,47.66475087111796],[-122.39133734346308,47.66473238105836],[-122.39123036659853,47.66471820623872],[-122.39119012609524,47.66471297242182],[-122.39115678933203,47.66470108923215],[-122.39111666299539,47.66468274359712],[-122.39109013725555,47.66464416069767],[-122.3911322746044,47.66464495535948],[-122.39125296181348,47.66465950010826],[-122.39142353313419,47.66467936031736],[-122.39158493377273,47.66469797514531],[-122.39174836492016,47.66471660443428],[-122.39191996709404,47.66473700680995],[-122.39206859863332,47.66475279618539],[-122.39223760777136,47.6647713059764],[-122.39238427769089,47.66478934947276],[-122.39254311910339,47.66480718370259],[-122.39270349852227,47.66482555366576],[-122.39283896799883,47.66484233650947],[-122.39300091046402,47.66486205559326],[-122.39318930104065,47.66488389721794],[-122.39333236216265,47.66490001815713],[-122.39353339198287,47.66492031517829],[-122.39360174017445,47.66493223229381],[-122.39368402322617,47.6649519707042],[-122.39383641498816,47.66499157061565],[-122.39397448145736,47.66502721096982],[-122.39413602017979,47.66506724217136],[-122.39427651762021,47.6650993355217],[-122.39438354818661,47.66513214427826],[-122.39452161540426,47.66516778396917],[-122.39462687806783,47.66519239040793],[-122.39474853550537,47.66522225646448],[-122.39485852001059,47.6652520251458],[-122.39494193234708,47.66527556025202],[-122.39500713552829,47.66530097280562],[-122.39504241210595,47.66530982914563],[-122.39509860639401,47.66532251183813],[-122.39518789996674,47.66533911109312],[-122.39526096303388,47.66535593248726],[-122.39539027052498,47.66538706390548],[-122.39553341067662,47.66542263282096],[-122.39569588375059,47.66545990680331],[-122.39581394314344,47.66548819288249],[-122.39594944404958,47.66552279487289],[-122.39612484341895,47.66556807478187],[-122.396256696496,47.66559947004465],[-122.39642236171021,47.66564162664908],[-122.39657919012672,47.66567674916198],[-122.39667944838062,47.66570360762786],[-122.3968021972279,47.66573594150033],[-122.3969239473695,47.66576880314104],[-122.39700773746681,47.66578796113839],[-122.39709060402737,47.6658101312504],[-122.397234704122,47.66584379940296],[-122.39737069756752,47.66587783595645],[-122.3975045473275,47.66590808871209],[-122.39762825348477,47.66593848026385],[-122.39778465869273,47.6659763491794],[-122.39792778715321,47.66601140110141],[-122.39804337868624,47.6660419036678],[-122.39815191082459,47.6660738743868],[-122.39823896714879,47.66610035620413],[-122.39832078586775,47.66608770690771],[-122.39836147804604,47.66612472227891],[-122.39839624834177,47.66613358490261],[-122.39843109214354,47.66614488829232],[-122.39849344093558,47.66615966998888],[-122.39856190796004,47.6661754384288],[-122.39868460105444,47.66620584312201],[-122.39879307640685,47.66623588607251],[-122.39890767913398,47.66626721564469],[-122.39902635608888,47.66629904611217],[-122.39914922262285,47.66633518895318],[-122.39924339749025,47.66636212882105],[-122.39932849276032,47.66639086446597],[-122.39943192120646,47.66642179013102],[-122.39952193142894,47.66644523122461],[-122.3995874722871,47.66646489518738],[-122.39967036502512,47.66648787702138],[-122.39971245087487,47.66650375061914],[-122.39974424447084,47.6665148386387],[-122.39974080753177,47.66656916995171],[-122.39973926813195,47.66661910508408],[-122.39973905529205,47.66664571461175],[-122.39979284417551,47.66667950742536],[-122.39984937205188,47.66670315143485],[-122.39994089296088,47.66674302374982],[-122.40003339477337,47.66678176813151],[-122.4001281415277,47.6668276370482],[-122.40027581026845,47.66687851893322],[-122.40040130296208,47.66693437553683],[-122.40054281983738,47.66698315649551],[-122.40068834580356,47.66703025426022],[-122.40078633421612,47.66708263299558],[-122.40091275963758,47.66713573433667],[-122.40098220572349,47.66718387868295],[-122.4010439872677,47.66721344811037],[-122.40117032336006,47.66726355125385],[-122.40128762770262,47.66731703464905],[-122.40142084120639,47.66735963079782],[-122.40154001889915,47.66740790413313],[-122.4016151876319,47.66744388708575],[-122.40168512386562,47.66744099626198],[-122.40176300547269,47.66746597319919],[-122.40184732093545,47.66750238707135],[-122.40193796846179,47.66756364927326],[-122.40200434166536,47.66784619508945],[-122.40194148182799,47.66804997273742],[-122.40101294758784,47.66768160948311],[-122.39832732559971,47.66748456380363],[-122.39833785211165,47.6681206608513],[-122.39832733528478,47.66856343268898],[-122.39830595945782,47.66945450760386],[-122.3983027313344,47.66956637606422],[-122.39833757904937,47.67109441988498],[-122.39834327434251,47.67202505374682],[-122.39837349789158,47.67409038855582],[-122.39836900529026,47.67582861092068],[-122.39826401749875,47.6758644570828],[-122.39567368378326,47.67587961442324],[-122.39295655054526,47.67591418595407],[-122.39282717206579,47.67591531433525],[-122.39177310927295,47.67591581315035],[-122.39044934626308,47.67592598688679],[-122.38895575916798,47.67594244886779],[-122.38770239121612,47.67594768759288],[-122.38708743420604,47.67595213437687],[-122.3854357214252,47.67595879566174],[-122.38360275247724,47.67597981042404],[-122.38182788442997,47.67599207945698],[-122.37998862530341,47.67598934293856],[-122.37790305763099,47.67599788490211],[-122.37670790751649,47.67599822904589],[-122.37633656472248,47.67591769896645]]],[[[-122.38795639519209,47.66656442144621],[-122.38795268585754,47.66656943844349],[-122.38793761312354,47.66658466956061],[-122.38795639519209,47.66656442144621]]]],"type":"MultiPolygon"} +},{ + "id": 907129173, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000158, + "geom:area_square_m":1315237.006923, + "geom:bbox":"-122.376810989,47.6758970068,-122.36599385,47.6906481725", + "geom:latitude":47.683305, + "geom:longitude":-122.371397, + "iso:country":"US", + "lbl:latitude":47.683302, + "lbl:longitude":-122.371395, + "lbl:max_zoom":18.0, + "mps:latitude":47.683302, + "mps:longitude":-122.371395, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "name:eng_x_variant":[ + "Whittier Hts" + ], + "reversegeo:latitude":47.683302, + "reversegeo:longitude":-122.371395, + "src:geom":"seagv", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"aadd774d1d8b6deb4cc49727e462d7c8", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129173, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":907129173, + "wof:lastmodified":1566608544, + "wof:name":"Whittier Heights", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85857637 + ], + "wof:tags":[] +}, + "bbox": [ + -122.37681098912648, + 47.67589700680676, + -122.36599385013977, + 47.69064817247816 +], + "geometry": {"coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.37651972205768,47.67605274820529],[-122.37654711243437,47.67606934359819],[-122.37657300622109,47.67608681635109],[-122.37659791092004,47.67610515888866],[-122.37662081150552,47.67612438566283],[-122.37665369355058,47.67615500237036],[-122.37667257549219,47.67617561168188],[-122.37669047344887,47.6761972626929],[-122.37670635889803,47.67621949796996],[-122.37672124636714,47.67624230377039],[-122.37673360870548,47.67626552915309],[-122.37674496924691,47.67628919665303],[-122.3767538021207,47.67631319848254],[-122.37676112057321,47.67633747774511],[-122.37676692257945,47.67636194882915],[-122.3767707001024,47.67638661896828],[-122.37677245110581,47.67641140220005],[-122.37677217176268,47.67643616976648],[-122.37676198545913,47.67686213733803],[-122.37675975088072,47.67753876468257],[-122.37676988221591,47.67806784040807],[-122.37677006563926,47.67920179799157],[-122.37677044250314,47.68015430722797],[-122.37676782048671,47.68119383105842],[-122.37677742324162,47.68228605918821],[-122.37678731084149,47.68337078541776],[-122.37678053588465,47.68427047860571],[-122.37678526060854,47.68518136985772],[-122.37678440374883,47.68609233667588],[-122.37680040280794,47.68700684573382],[-122.37679475101363,47.68794435503207],[-122.37680306748778,47.68897614672397],[-122.37681098912648,47.69001171430062],[-122.37681026483382,47.69053412427009],[-122.3768103447661,47.69060515914627],[-122.3751101079868,47.69061737713108],[-122.37323053484103,47.69062488122109],[-122.37140439251037,47.69063673153744],[-122.36952466691186,47.69063907787473],[-122.36760738919931,47.69064185595758],[-122.36600444654802,47.69064817247816],[-122.36600339973846,47.69049223380542],[-122.36599385013977,47.68874029335988],[-122.36600583509494,47.6862900886837],[-122.36599586677966,47.68452392940541],[-122.36603295908897,47.68325190113675],[-122.36603817694619,47.68308465277114],[-122.36600678959239,47.68059231525625],[-122.36604965032166,47.67633264188824],[-122.36605367550301,47.67600452960475],[-122.36629911413722,47.6760152803027],[-122.36744625702131,47.67595322512092],[-122.36851368794524,47.6759415886584],[-122.36952973683682,47.67597724970778],[-122.37061210344423,47.67592152005415],[-122.37114098906284,47.67595829782227],[-122.37171411073714,47.67598072304074],[-122.37328818624748,47.67594026333326],[-122.37558594749616,47.67593386065378],[-122.3760801716715,47.67589700680676],[-122.37633656472248,47.67591769896645]]]],"type":"MultiPolygon"} +},{ + "id": 907129175, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000247, + "geom:area_square_m":2056780.519265, + "geom:bbox":"-122.376336565,47.6565298465,-122.360691453,47.6760152803", + "geom:latitude":47.667871, + "geom:longitude":-122.368548, + "iso:country":"US", + "lbl:latitude":47.668255, + "lbl:longitude":-122.368696, + "lbl:max_zoom":18.0, + "mps:latitude":47.668255, + "mps:longitude":-122.368696, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "West Woodland" + ], + "name:eng_x_variant":[ + "W Woodland" + ], + "reversegeo:latitude":47.668255, + "reversegeo:longitude":-122.368696, + "src:geom":"seagv", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q29512036" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d2ce6aeb4fba0575f46526c0a0bec11a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129175, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":907129175, + "wof:lastmodified":1566608545, + "wof:name":"West Woodland", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869781 + ], + "wof:tags":[] +}, + "bbox": [ + -122.37633656472248, + 47.65652984648145, + -122.36069145329733, + 47.6760152803027 +], + "geometry": {"coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.3760801716715,47.67589700680676],[-122.37558594749616,47.67593386065378],[-122.37328818624748,47.67594026333326],[-122.37171411073714,47.67598072304074],[-122.37114098906284,47.67595829782227],[-122.37061210344423,47.67592152005415],[-122.36952973683682,47.67597724970778],[-122.36851368794524,47.6759415886584],[-122.36744625702131,47.67595322512092],[-122.36629911413722,47.6760152803027],[-122.36605367550301,47.67600452960475],[-122.36522760115047,47.67599177571543],[-122.36435108107447,47.67598933375148],[-122.36364780075522,47.67599308421573],[-122.36271708326983,47.67599418513709],[-122.36224513108188,47.6759948642237],[-122.3609480621502,47.67599803857677],[-122.36069145329733,47.67600430680672],[-122.36077646407034,47.67589224369107],[-122.36077159415649,47.67529489028423],[-122.36077556223401,47.67456657266276],[-122.36077755646525,47.67392649762414],[-122.36078641803216,47.67322656261095],[-122.36078838115368,47.67243002110479],[-122.36079323089891,47.67159359596103],[-122.36078971459126,47.67074875662455],[-122.36079720255937,47.66986396761997],[-122.36080519647037,47.66897912897686],[-122.36080381049338,47.66808593290736],[-122.36080284642665,47.66718981802236],[-122.36080267024445,47.66690756290662],[-122.36080138273323,47.66627670030054],[-122.3608038095139,47.66535783222918],[-122.36080201109694,47.66443332263618],[-122.36079987798192,47.66349742085249],[-122.36079012525512,47.66266478981884],[-122.36078912341681,47.66256163465373],[-122.36078970250787,47.66237414078302],[-122.36079141908962,47.66146565037966],[-122.36214579117036,47.6614566051262],[-122.36343957373815,47.66145752637197],[-122.36413718152086,47.66145732127426],[-122.36615592299873,47.66147365850995],[-122.36612022421834,47.65935103698676],[-122.36538455567164,47.65848918406642],[-122.36504049713014,47.65814171802353],[-122.36503992081643,47.65776058392021],[-122.36589890913896,47.65716154805293],[-122.36609426973007,47.65702541644774],[-122.36679699194549,47.65652984648145],[-122.36682684466226,47.65654439696577],[-122.36685790156484,47.65656535802074],[-122.36689147264876,47.65658555692961],[-122.36693109959077,47.65660468873035],[-122.36698491414066,47.6566404245544],[-122.36696633103023,47.65666398196989],[-122.36694186514936,47.65669447393846],[-122.36694585388378,47.65672651066967],[-122.36692073764738,47.65676935008898],[-122.36691459190349,47.65680178020567],[-122.36691052425189,47.65683585335445],[-122.3669294344888,47.65685779222715],[-122.36695435816247,47.65687720765123],[-122.36698960965121,47.65690278232776],[-122.36702347009978,47.65688120402724],[-122.36705871456793,47.65690652186011],[-122.36708480534782,47.65693110551258],[-122.36713650306052,47.65696387065478],[-122.36717674513427,47.65698663620922],[-122.3672081992159,47.65702104488493],[-122.3672568217662,47.6570527373811],[-122.3673160477323,47.65709992530113],[-122.36736372904011,47.65713411536905],[-122.36740728099225,47.65716587610183],[-122.36739682811624,47.65718988107887],[-122.36734295318809,47.65718649361522],[-122.36726066328849,47.65718293218475],[-122.36712573071992,47.65718337817574],[-122.36712384439301,47.65722260628062],[-122.36706870123356,47.65724502787595],[-122.36708470691725,47.65727167562831],[-122.36712472250724,47.65728677499182],[-122.36720895169877,47.65728726881209],[-122.36731765198149,47.65729184584103],[-122.36735728777847,47.65729405383289],[-122.36741016560612,47.65729801172724],[-122.36749158688839,47.65730651216046],[-122.36759313069341,47.65730925704512],[-122.36765110337947,47.65731396011529],[-122.36775086917891,47.6573252123496],[-122.36774796156459,47.65736419696221],[-122.36774485117877,47.65739632931685],[-122.36773588206088,47.6574362095165],[-122.36773105807673,47.65747903299319],[-122.36793601395648,47.6574790133695],[-122.36811967029044,47.65747928076359],[-122.36814368548701,47.657502264309],[-122.36817976680321,47.65752152946209],[-122.3682211288739,47.6575478353438],[-122.36825712879852,47.65756435936327],[-122.3682821582629,47.65758732921127],[-122.36833101720347,47.65762698707949],[-122.36836927950364,47.65765140675443],[-122.36839535662973,47.6576754764687],[-122.36843667846597,47.65770041188943],[-122.36847069069121,47.65771833356335],[-122.3684996556038,47.65773713753553],[-122.36853387781191,47.65776216826912],[-122.36856091232939,47.65778429710861],[-122.36859714650937,47.65780874404857],[-122.368627142653,47.65782809109373],[-122.36865407932758,47.65784692201861],[-122.36870707644644,47.65788926615404],[-122.36873419912769,47.65791439289013],[-122.36879312814067,47.65795142987142],[-122.36882312390988,47.65797077652105],[-122.36885318473961,47.6579923074877],[-122.3688760648881,47.65801119340463],[-122.3689196103832,47.65804269639916],[-122.36894447845201,47.65806018457183],[-122.36898805565971,47.65809275830485],[-122.36902533025119,47.65811804782789],[-122.36905969088008,47.65814774703538],[-122.36903397550367,47.65817028695367],[-122.36900709337013,47.6581876586224],[-122.36899969168246,47.65821187988006],[-122.36901846458747,47.65826346826357],[-122.36904372119204,47.6582941041555],[-122.36907469146993,47.65831206667418],[-122.36910979061423,47.65833241562838],[-122.36915689147443,47.65834686174931],[-122.36921209874298,47.65836094126479],[-122.36931800944573,47.65837403722468],[-122.36935831049789,47.65839872882209],[-122.36940670861678,47.65842275454563],[-122.36944082720537,47.65844423063616],[-122.36947389821312,47.65846460683547],[-122.36951425584859,47.65849122590111],[-122.3695722118625,47.65852964654704],[-122.3696032305604,47.65854923646987],[-122.36963213231242,47.65856585581498],[-122.36966404373393,47.65858132054374],[-122.36969598756517,47.65859789883754],[-122.36973619151304,47.65861929275349],[-122.36977619296329,47.65863383404347],[-122.36981658305176,47.65866152375929],[-122.3698267973277,47.6586981462173],[-122.36986790167359,47.6587156720736],[-122.36990520118779,47.65874177490668],[-122.36994248377285,47.6587673213019],[-122.36996844773729,47.65878753633127],[-122.36999861458959,47.65881262170821],[-122.3700296095564,47.6588313975654],[-122.37006789886715,47.65885667342048],[-122.370117927743,47.65890149874617],[-122.37016884176886,47.65894194240398],[-122.3701959991356,47.65896818200002],[-122.37021690826758,47.65898902219005],[-122.37024615865199,47.65901741873395],[-122.37027751798179,47.65904852901947],[-122.37031183993338,47.65907685710856],[-122.37033683051651,47.65909845612199],[-122.37036702126322,47.6591243550065],[-122.37039624774972,47.65915193791331],[-122.37041631251877,47.65917853044674],[-122.37044639116981,47.65920061777537],[-122.37047335328202,47.65922026221832],[-122.37050272499255,47.65925277019913],[-122.37051728846804,47.65929918837429],[-122.37054024323699,47.65932055755366],[-122.37054101709064,47.65944967974159],[-122.37064288999659,47.65946338600637],[-122.37066893563335,47.65948634163887],[-122.37070309544909,47.65950918773917],[-122.37072404604889,47.65953139821034],[-122.37074118251513,47.65956188643725],[-122.37075605447288,47.65958443587301],[-122.37077202223767,47.65960971272332],[-122.37078898015218,47.6596341619315],[-122.37082541225539,47.65966520359784],[-122.37085869612159,47.65969273162126],[-122.37091046356605,47.65972767937798],[-122.37095737996877,47.65973582892749],[-122.37096643331421,47.65980177241355],[-122.37099507521684,47.65984388733141],[-122.37109454690955,47.65987930496934],[-122.37113741370837,47.6598877660403],[-122.37116830523753,47.6598687118902],[-122.3712111326479,47.65984152720936],[-122.37124000277979,47.65982275725067],[-122.3712759087778,47.6598017070751],[-122.37131185478113,47.65978202762745],[-122.37135076280552,47.65975956596073],[-122.37142619988963,47.65980571864344],[-122.37146342748255,47.65982933736825],[-122.3714915185617,47.65985282220215],[-122.37154042262877,47.65989384907176],[-122.37156744253956,47.65991542041976],[-122.37159649902725,47.65993722152432],[-122.37163913116149,47.6599720350715],[-122.37167230158525,47.6599957081771],[-122.37175090362771,47.66004593139412],[-122.37179224542486,47.66007142202767],[-122.37182028026739,47.66009297960888],[-122.37185134078356,47.66011393930659],[-122.37191369870652,47.66016382483641],[-122.371986215918,47.66021412974403],[-122.37204023998419,47.66025671543846],[-122.37211468827589,47.66030369531506],[-122.37216459099731,47.66034415143042],[-122.3722434455849,47.66040285375209],[-122.37227448237074,47.66042299973621],[-122.37227632458612,47.66048522752504],[-122.37227074266029,47.66053658749133],[-122.37225504100952,47.66058889846511],[-122.37225206305526,47.6606253992408],[-122.37230093539335,47.66063103688201],[-122.37233758781541,47.660635211775],[-122.37240070095032,47.66064202787659],[-122.37244047773397,47.6606489023762],[-122.37248415673814,47.66065049732984],[-122.37256357213344,47.66065957833109],[-122.37262473042699,47.66066890566852],[-122.37273364879009,47.66068058694935],[-122.37280681604898,47.6606842681617],[-122.3728425430967,47.66069145417738],[-122.37289961107987,47.66069972299497],[-122.37296059064009,47.66070301184589],[-122.37300748414665,47.66071034695294],[-122.37320983963419,47.66072487743605],[-122.3732454373726,47.66072769536846],[-122.37333094599391,47.6607369503739],[-122.37338581562446,47.66073950733549],[-122.37341989543161,47.66072533652429],[-122.37346698315078,47.66073922372797],[-122.37349688508708,47.6607552715937],[-122.37355111306634,47.66077043349008],[-122.37359184722722,47.66077536670884],[-122.3736283379428,47.66077405930643],[-122.37363270277478,47.66075013606405],[-122.37366645003129,47.6607247442675],[-122.3737056826221,47.66071324554307],[-122.37377125365785,47.66070027657268],[-122.37380403481839,47.6606765259987],[-122.37380499865371,47.66060633406587],[-122.37387496836239,47.66060483068678],[-122.37408299573944,47.66060531563075],[-122.37429709197603,47.66060516143138],[-122.37450210029549,47.66060650073117],[-122.37469087997711,47.66060805893346],[-122.3748978766488,47.66060799968285],[-122.37510690938659,47.66060816941248],[-122.37520634268128,47.66060793739334],[-122.37528140760865,47.6606071780974],[-122.3753956056263,47.6606086739619],[-122.37542406779033,47.66062748268272],[-122.37542342409118,47.66065709696446],[-122.37540782939777,47.66067868738808],[-122.37537813992829,47.66070402477439],[-122.3753325317317,47.66074003162757],[-122.37530240139915,47.66076760298666],[-122.37528336200485,47.66079279616276],[-122.37528172049964,47.66082298060602],[-122.37529877623862,47.66086773629137],[-122.37532231932217,47.66090884801081],[-122.37536778914212,47.66095369036886],[-122.37541491525322,47.6609859567612],[-122.37548075774376,47.66101634152176],[-122.37554969891582,47.66104856940496],[-122.37561650752104,47.66107731315938],[-122.37567132516008,47.66109520828633],[-122.37571386602109,47.66110971315081],[-122.37576657392407,47.66112489459061],[-122.37581604472747,47.66113356493086],[-122.37587368533407,47.66114400937107],[-122.37592801279644,47.66116246802149],[-122.37597454109869,47.66115746743718],[-122.3759947099379,47.66111906302551],[-122.37602853152327,47.6610791024086],[-122.37604576434691,47.66104433635873],[-122.37605333980409,47.66099187796372],[-122.37602944710935,47.66093898905227],[-122.37600096268775,47.66090235727865],[-122.37603549486619,47.66086924238742],[-122.3760949542052,47.66085549811131],[-122.37614225091669,47.66085931315755],[-122.37617035768893,47.66090032007303],[-122.37622552107985,47.66092986386188],[-122.37622704663325,47.66096416138628],[-122.37622829329366,47.6609890799218],[-122.37623202828763,47.66108071601214],[-122.37622608715756,47.6616326743118],[-122.37621512781847,47.66220359491711],[-122.37621333547924,47.66289534067378],[-122.37622401595137,47.66383635695511],[-122.37621860845479,47.66497039075584],[-122.3762223414066,47.6660363069762],[-122.37621491432786,47.66710233114314],[-122.37621898170605,47.6681795106282],[-122.37621200355261,47.66926065272464],[-122.37621612603181,47.67035676852991],[-122.37621540101532,47.67146053322745],[-122.37620875748351,47.67255298169327],[-122.37620691087631,47.67361897281177],[-122.37620697011516,47.67474916188883],[-122.37621415009455,47.67574313828309],[-122.37633656472248,47.67591769896645]]]],"type":"MultiPolygon"} +},{ + "id": 907129181, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":80418.553429, + "geom:bbox":"-122.409829536,47.6765402103,-122.402781873,47.6874820084", + "geom:latitude":47.68102, + "geom:longitude":-122.405145, + "iso:country":"US", + "lbl:latitude":47.679564, + "lbl:longitude":-122.405696, + "lbl:max_zoom":18.0, + "mps:latitude":47.679564, + "mps:longitude":-122.405696, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.679564, + "reversegeo:longitude":-122.405696, + "src:geom":"mz", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9f709dad81e5968bdaba59e4c2e0e93b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129181, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":907129181, + "wof:lastmodified":1566608545, + "wof:name":"Shilshole Marina", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.40982953557723, + 47.67654021030057, + -122.40278187280072, + 47.68748200838769 +], + "geometry": {"coordinates":[[[-122.40650725357756,47.67654021030057],[-122.40982953557723,47.67655749733815],[-122.40982163864307,47.67659354301706],[-122.40980246175285,47.67663056898616],[-122.40977658133983,47.67664737944634],[-122.40951518990994,47.67666333549469],[-122.40913771963558,47.67666718568737],[-122.40870844626225,47.67666982334217],[-122.40839779750354,47.67666807725942],[-122.40837960529419,47.67680461773696],[-122.40838563513876,47.67703705213331],[-122.40775765529546,47.6770476601985],[-122.40761264725025,47.67728685185746],[-122.4075203344202,47.67745620697527],[-122.40740121633705,47.67764542631041],[-122.40729892217712,47.67782040324035],[-122.40719539745496,47.67798828474049],[-122.40709680349219,47.6781514281955],[-122.40700728211624,47.67831251794271],[-122.40690102691907,47.67849084842671],[-122.40680743829081,47.67865173690024],[-122.40670497365512,47.6788212314755],[-122.4066018184524,47.67900144679042],[-122.40650622346251,47.67916317697309],[-122.40638522548481,47.67935760545699],[-122.40629273126804,47.67952122093136],[-122.40618815109394,47.67968800196292],[-122.40613458274504,47.67979623845927],[-122.4061657388739,47.67988655332579],[-122.40609281399286,47.68002603407169],[-122.40600491029856,47.68017369023637],[-122.40595348018671,47.68025199159901],[-122.40585290950862,47.68028298543854],[-122.40579596670983,47.68034683842279],[-122.4057289546772,47.68048049592595],[-122.40534779522835,47.68049753788206],[-122.40532433063174,47.68052721012322],[-122.40521908697922,47.68070578149261],[-122.40510012719182,47.68090073772606],[-122.40499957479066,47.68106664807473],[-122.40489987057322,47.6812270625156],[-122.40478402737308,47.68142446000447],[-122.40467386491844,47.68160832584121],[-122.40454510979158,47.68181519866314],[-122.4044359434633,47.68199849349769],[-122.40434085364473,47.68214376238095],[-122.4042953507647,47.68221679718612],[-122.40423921574805,47.6823075020805],[-122.40419869386712,47.68237742620177],[-122.40415141763216,47.68245896829843],[-122.40409450825818,47.68255765285669],[-122.40403362240686,47.6826591340769],[-122.40397063193659,47.68275815931209],[-122.40392207498937,47.68283093631003],[-122.40386118848116,47.68293241743691],[-122.4038169305849,47.68301310384683],[-122.40374611144088,47.6831218341221],[-122.4036927621874,47.68320401706634],[-122.40364339684615,47.68328365977015],[-122.40359497949531,47.68336110451762],[-122.40357967962868,47.68345947228999],[-122.40355941846423,47.68359522633282],[-122.40354043199868,47.683705984054],[-122.40352191835542,47.68383237364832],[-122.40350694124233,47.68394144825317],[-122.40349091626078,47.68404942327425],[-122.4034743488976,47.68417304380739],[-122.40345480290313,47.6842988905991],[-122.40343848333488,47.68443073404545],[-122.40342427259995,47.68453157173539],[-122.40340787456113,47.68462721272392],[-122.40338914492263,47.68474649294208],[-122.40337363720583,47.68483800848752],[-122.4033602416347,47.68493223680612],[-122.40334698707302,47.68503113335704],[-122.40333176079142,47.68513198537137],[-122.40331639390381,47.68522816879087],[-122.403298041101,47.6853263216457],[-122.40328410237241,47.68543619582443],[-122.40327240514033,47.68551943251347],[-122.40326258794987,47.68559771620171],[-122.40325581168632,47.68564223942348],[-122.4032970068459,47.68566168034244],[-122.40333182339967,47.68567161185562],[-122.40344251255523,47.68570629062804],[-122.40354104890245,47.68574195033511],[-122.40358404199219,47.68575369740246],[-122.40367427783053,47.68578343026039],[-122.4037234594221,47.68579839088144],[-122.40379509823579,47.68581741206981],[-122.40383614486927,47.68583192774769],[-122.40387130209642,47.68585312235835],[-122.40387144728616,47.68589150911044],[-122.40387018811244,47.6859170190539],[-122.40386747893868,47.68596174318289],[-122.40386370638196,47.68600485410899],[-122.4038626952262,47.68603858661973],[-122.40385860809101,47.68607129067584],[-122.40385331042866,47.68613113186266],[-122.40384959964821,47.68620988845943],[-122.40384330407296,47.68627030040836],[-122.40384100962807,47.68632872926367],[-122.40383736854191,47.68637620846337],[-122.40383061761072,47.68648872553115],[-122.40382837716551,47.68658254324398],[-122.40383224612303,47.68664337211295],[-122.40380126833422,47.68665969435516],[-122.40375562716262,47.68666113763795],[-122.40363306147522,47.68667023873889],[-122.4035561441916,47.68667815369388],[-122.40347823727521,47.6866868965128],[-122.40344862169798,47.68671472511082],[-122.40344423080542,47.68677099761749],[-122.40344012652375,47.6868031448796],[-122.40343935579777,47.68684484313377],[-122.4034372641418,47.68687640565491],[-122.40343622794536,47.68697650479166],[-122.40342302287637,47.68700984829488],[-122.4034989046727,47.68703485234543],[-122.40356217044835,47.68704550581734],[-122.40360934780449,47.68706130804932],[-122.40366582451534,47.68708246622096],[-122.40369883655607,47.68709983455814],[-122.40370391473142,47.68713348349995],[-122.40371288237525,47.6871950560358],[-122.40375808868953,47.68721281331986],[-122.40379373133887,47.68721643528578],[-122.40382933204064,47.68721868652875],[-122.40383440979252,47.68725233547173],[-122.40380435576235,47.68726564582973],[-122.40376516803764,47.68727908205314],[-122.40372982306893,47.68728531016994],[-122.4037168511127,47.68732636264185],[-122.40370347216611,47.68735396754801],[-122.40368286921152,47.68741127775651],[-122.40366210052839,47.68746310613741],[-122.40365725937397,47.68748200838769],[-122.40278187280072,47.68729893950998],[-122.40289196088514,47.68568038024961],[-122.40300645249296,47.68397579925846],[-122.40304608420332,47.68360819536069],[-122.40310333000723,47.68332952616359],[-122.40318259342803,47.68307753677814],[-122.40330148855919,47.68270696194122],[-122.40346441892414,47.68237196002313],[-122.40403687696312,47.68139065883874],[-122.40511133666708,47.67959699416743],[-122.40601846248271,47.67812050986829],[-122.40621662103467,47.67774100514586],[-122.40638395492299,47.67740004151772],[-122.4064764289139,47.67714209364034],[-122.40650285005415,47.67686635484399],[-122.40650725357756,47.67654021030057]]],"type":"Polygon"} +},{ + "id": 907129183, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":53956.976557, + "geom:bbox":"-122.395744354,47.6299935114,-122.388449282,47.6316147871", + "geom:latitude":47.630806, + "geom:longitude":-122.392107, + "iso:country":"US", + "lbl:latitude":47.630575, + "lbl:longitude":-122.391861, + "lbl:max_zoom":18.0, + "mps:latitude":47.630575, + "mps:longitude":-122.391861, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.630575, + "reversegeo:longitude":-122.391861, + "src:geom":"mz", + "wof:belongsto":[ + 85831927, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"3b4859f6263ffcf4d62a1f33010caa18", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129183, + "neighbourhood_id":85831927, + "region_id":85688623 + } + ], + "wof:id":907129183, + "wof:lastmodified":1566608546, + "wof:name":"Elliot Bay Marina", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.39574435428138, + 47.62999351142852, + -122.3884492821468, + 47.63161478705973 +], + "geometry": {"coordinates":[[[-122.39574415619096,47.63149755925353],[-122.39574435428138,47.63161478705973],[-122.39536695587435,47.63149263630813],[-122.39493407881116,47.63139574331322],[-122.39439099454654,47.63131066608419],[-122.39206544128089,47.63114837980957],[-122.39126292974866,47.63113195755312],[-122.39092509856535,47.6311474484061],[-122.39056171415389,47.63120718015831],[-122.39026631289077,47.63125937725302],[-122.38987828753599,47.63132884802754],[-122.38940153156483,47.63140862509339],[-122.38849228184132,47.63154433033571],[-122.38844928214679,47.63117278032104],[-122.38846208061672,47.63115718009117],[-122.3884847814241,47.63113630486133],[-122.3885133597182,47.63110849394456],[-122.38853088543912,47.63108413290514],[-122.38857531423713,47.63104376628817],[-122.38860815959241,47.63102300934936],[-122.38864302451971,47.63100196753683],[-122.38867871532833,47.63097461640459],[-122.3887063612262,47.63094956004926],[-122.38874002468062,47.63092223659824],[-122.38877265728831,47.63089437021396],[-122.38880322927685,47.6308654179601],[-122.38883699841374,47.63084164918633],[-122.38890912450159,47.63081187213915],[-122.38895329304815,47.63079674419315],[-122.38898223980243,47.63078126724748],[-122.38900498122389,47.63076176229008],[-122.38905567181543,47.63072735065432],[-122.38909372512082,47.63071119256227],[-122.38913582526204,47.63069472187646],[-122.38918186514314,47.63067434108439],[-122.38923711023739,47.63065657667558],[-122.38927234364024,47.6306478691092],[-122.38931141941984,47.63063199670538],[-122.38938696252858,47.6306147686903],[-122.38943322390888,47.63060179716048],[-122.389482608172,47.63059152479277],[-122.38953308088777,47.63058372247737],[-122.3895854727128,47.63057229528082],[-122.38964298317813,47.63056246875268],[-122.38969137038765,47.63055276693412],[-122.3897387926455,47.63054470649531],[-122.38979131690343,47.63053769029236],[-122.38984272830392,47.63052739004863],[-122.38989114748721,47.63051875890493],[-122.38993438388754,47.63050638519108],[-122.38998161765639,47.63049202920114],[-122.39002668441742,47.63047303265576],[-122.39007379507572,47.63045456514872],[-122.39011300120994,47.63044306076242],[-122.39015613879569,47.63042738943135],[-122.39021803698203,47.63039475227608],[-122.39026418205805,47.63037792575087],[-122.39030832600692,47.63036198367698],[-122.39035829659058,47.63033743582312],[-122.39040139351057,47.6303203940161],[-122.39043821911046,47.63029713960111],[-122.39047087478352,47.6302700866753],[-122.39049047580637,47.63024732513519],[-122.39054025001914,47.63021622458756],[-122.3905842039733,47.63019394380444],[-122.3906262044958,47.63017417503467],[-122.39065712893054,47.63015704238765],[-122.39069398637093,47.63013485900024],[-122.39072909658981,47.63012203949761],[-122.39077525022999,47.63010551238133],[-122.39082250776485,47.63009196963718],[-122.39087075453777,47.63007759940911],[-122.39092195289342,47.63006018927663],[-122.39096219654243,47.63004948467341],[-122.39101865919667,47.63003855775872],[-122.39107215482518,47.63003015637451],[-122.39112063106944,47.63002345221517],[-122.39117927791173,47.63001772215884],[-122.39123901995738,47.63001471965944],[-122.39129262251771,47.63000987286127],[-122.39135141634223,47.63000906814642],[-122.3914070948869,47.63000582108697],[-122.39146584765399,47.63000364593753],[-122.39152759304989,47.62999980158444],[-122.39157938078667,47.63000209180196],[-122.39162590409828,47.62999789876534],[-122.39168661865159,47.62999351142852],[-122.39173128664756,47.6299950851196],[-122.39178416243642,47.62999984530379],[-122.39182072862705,47.63000178680161],[-122.39193470576825,47.63001505032867],[-122.39199378706462,47.63002383861111],[-122.39204475116144,47.63003248074541],[-122.39209781619951,47.63004353622335],[-122.39215085635828,47.63005377808915],[-122.39219978428139,47.63006214829975],[-122.39224675941676,47.63007303018952],[-122.39230087924795,47.63008544241709],[-122.39234690574138,47.63009852212461],[-122.39239791105624,47.6301085348268],[-122.39244489397292,47.63011967344858],[-122.39249493447787,47.63013132717975],[-122.39255104060172,47.63014234114527],[-122.39258890941692,47.63015390464159],[-122.39264108380581,47.6301690852343],[-122.39267805330063,47.63018447409539],[-122.39271280630511,47.630193595278],[-122.3927516066403,47.63020240373329],[-122.39279956225867,47.6302121579474],[-122.39283452075001,47.63022813131875],[-122.39291321554128,47.63024843255106],[-122.39296734469801,47.63026114407779],[-122.39303592719104,47.63028239805896],[-122.39308697442131,47.63029378046935],[-122.39313898470375,47.63030347898336],[-122.39318399850085,47.6303165725858],[-122.39323217598434,47.63033373563051],[-122.3932861653113,47.63034177910049],[-122.39332179214747,47.6303462179502],[-122.39339940868084,47.63036434841068],[-122.39345895949585,47.63038876788842],[-122.39349991839354,47.63040191659235],[-122.39353769639882,47.63041043905664],[-122.39359175084657,47.63042066635774],[-122.39364677835731,47.63042950935715],[-122.39369968868806,47.63043538220549],[-122.39374853498566,47.63044101065019],[-122.39379721683197,47.63044115722452],[-122.39385299463017,47.63044120684948],[-122.39395943270574,47.63043974761978],[-122.39401110661169,47.63043822487244],[-122.39406067101189,47.63043398914844],[-122.39420262989725,47.63043341394847],[-122.39425528400328,47.63043076363026],[-122.39457054358911,47.63042644012425],[-122.39461522875683,47.63042856946414],[-122.39466710833221,47.63043389899246],[-122.39470869423592,47.63043414250716],[-122.39479307768256,47.63044121134605],[-122.39484517123039,47.63045364982199],[-122.39489516374239,47.63046367531017],[-122.39494021874408,47.6304781385995],[-122.39499470994964,47.63050288326522],[-122.39503072409919,47.63052021278085],[-122.39507592758565,47.63053960107666],[-122.39511514007643,47.63056211316982],[-122.39515132662351,47.63058518130835],[-122.39519159397608,47.63060905019248],[-122.3952297260669,47.63062934938385],[-122.39527859642936,47.63066955251217],[-122.39531182453132,47.6306954034249],[-122.39534415476801,47.63072512219511],[-122.39536928231811,47.63075138398848],[-122.39539416294151,47.63076942283028],[-122.39543042487497,47.6307949748074],[-122.39546062840886,47.63082142384344],[-122.39549764801878,47.63087220071518],[-122.39550956391179,47.6308975297698],[-122.39552574070231,47.63092965539311],[-122.39553977575152,47.6309579973301],[-122.39554790028808,47.63099216140709],[-122.39555898448197,47.63102354298751],[-122.39557113068705,47.63105653785009],[-122.39558313798858,47.63108490761151],[-122.39558903770377,47.63111250409408],[-122.39559619034216,47.63114805279668],[-122.39560126629463,47.63118200179085],[-122.39561042950945,47.63121696553814],[-122.39561642059741,47.63124760308461],[-122.39562252616713,47.63128205178593],[-122.39562562373936,47.63131765614088],[-122.39562875475322,47.63135437370524],[-122.3956348191922,47.6313874523827],[-122.39564602649064,47.63142294508324],[-122.39568395306593,47.63147015329616],[-122.39572806164065,47.63148681449704],[-122.39574415619096,47.63149755925353]]],"type":"Polygon"} +},{ + "id": 907129185, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":160261.808879, + "geom:bbox":"-122.383712554,47.6263540806,-122.379326746,47.6328456222", + "geom:latitude":47.629773, + "geom:longitude":-122.381664, + "iso:country":"US", + "lbl:latitude":47.632319, + "lbl:longitude":-122.382377, + "lbl:max_zoom":18.0, + "mps:latitude":47.632319, + "mps:longitude":-122.382377, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Terminal 91", + "Pier 90" + ], + "reversegeo:latitude":47.632319, + "reversegeo:longitude":-122.382377, + "src:geom":"mz", + "wof:belongsto":[ + 85826973, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"09ad0f8a7971d77d6c242c7f274828ee", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129185, + "neighbourhood_id":85826973, + "region_id":85688623 + } + ], + "wof:id":907129185, + "wof:lastmodified":1566608546, + "wof:name":"Smith Cove Cruise Terminal", + "wof:parent_id":85826973, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.38371255377386, + 47.62635408056178, + -122.37932674645178, + 47.63284562224852 +], + "geometry": {"coordinates":[[[-122.38371255377386,47.63284562224852],[-122.37981994559289,47.63283645049364],[-122.37981936033445,47.63281676719075],[-122.37981930689887,47.6327808642801],[-122.37981820667265,47.63274386157556],[-122.37981807938129,47.63270547472025],[-122.37981809853066,47.63267201295162],[-122.37981699830765,47.63263501024694],[-122.37981691229314,47.63259799411491],[-122.37981680919415,47.63256042085655],[-122.37981779362777,47.63252531777164],[-122.37981876151538,47.63248965825503],[-122.37981975359278,47.63245481233547],[-122.37981876797561,47.63242166395476],[-122.37981770851391,47.63238603198026],[-122.37971429104635,47.6323868798882],[-122.37966561505486,47.6323869841065],[-122.37951456784835,47.63238903583326],[-122.37951049378754,47.63225198909152],[-122.3794393284666,47.63224610066929],[-122.37938859343627,47.63224516154192],[-122.37933784950192,47.63224392277487],[-122.37932674645178,47.63217745064643],[-122.37937944382492,47.63217617793917],[-122.37938065642327,47.63214874105534],[-122.37937977675487,47.6321191473781],[-122.37941725197436,47.63211752438492],[-122.3794669413824,47.63211740650484],[-122.37951150515971,47.63211543028284],[-122.37951536783139,47.63207480402522],[-122.37951633643698,47.63203914450368],[-122.37951534211419,47.63200569650286],[-122.37951626945122,47.63196866625775],[-122.37951500649625,47.6319261816797],[-122.37951483869291,47.63188642444344],[-122.37951553814312,47.63184172835155],[-122.37951545945981,47.63180496904014],[-122.37951533239413,47.63176658218349],[-122.37951623604948,47.63172873798305],[-122.37951498966241,47.63168681053811],[-122.37951480529784,47.63164649616819],[-122.37951381099397,47.63161304851786],[-122.37951364318209,47.63157329093041],[-122.37951346774658,47.63153327687914],[-122.37951344634365,47.63149844437887],[-122.37951426801237,47.63145785977655],[-122.3795149756107,47.63141342049173],[-122.37951584564856,47.63137446308369],[-122.37951656927686,47.63133058058834],[-122.37951559151894,47.63129768936943],[-122.37951526075778,47.63125245026264],[-122.37951494653819,47.63120776758753],[-122.37951384657218,47.63117076522924],[-122.37951285226761,47.6311373172276],[-122.37951276646156,47.63110030074293],[-122.37951174032868,47.63106578197853],[-122.37951169475191,47.63103013623144],[-122.37951145311439,47.63098789504931],[-122.37951039388194,47.63095226271969],[-122.37951013696691,47.63090950755734],[-122.37950763531644,47.63082535234654],[-122.37950763046894,47.63079107662814],[-122.37950544710728,47.63071762834222],[-122.37950534423703,47.6306800550816],[-122.37950820133115,47.63063969974931],[-122.37950510667743,47.63060383814837],[-122.3795029523464,47.63056547882704],[-122.3795018523921,47.63052847611714],[-122.37950185520343,47.63049445791477],[-122.37950176940629,47.63045744142944],[-122.37950171619232,47.63042153851626],[-122.37950167061256,47.63038589241766],[-122.37949925048353,47.63030447831586],[-122.37949910688251,47.63026553467503],[-122.37949889071614,47.63022414989165],[-122.37949876366656,47.63018576303327],[-122.37949863661717,47.63014737617485],[-122.37949964593427,47.63011308703132],[-122.37949952651846,47.63007495698748],[-122.37950150056186,47.63003902653736],[-122.37950334347784,47.62999868497983],[-122.37950412490341,47.62995672963821],[-122.37950503566096,47.62991914260849],[-122.37950399301603,47.62988406741113],[-122.37950490377241,47.62984648038133],[-122.3795027039034,47.62977247531084],[-122.37950162051686,47.62973602938271],[-122.37950149346645,47.62969764252382],[-122.37950140715185,47.62966062604471],[-122.37950033141298,47.62962443728193],[-122.37950229704097,47.62958820685634],[-122.3795023087583,47.62955448827019],[-122.37950214097229,47.62951473103131],[-122.37950211958822,47.62947989887991],[-122.37950283555732,47.62943575921685],[-122.37950265173959,47.6293954451882],[-122.37950237828788,47.6293521332414],[-122.37950221050248,47.62931237600228],[-122.3795022133031,47.62927835744795],[-122.37949788745291,47.62913283089854],[-122.37949679517685,47.6290960853526],[-122.37949563032808,47.62905689831322],[-122.37949548673322,47.62901795467101],[-122.3794944848477,47.62898424985256],[-122.37949649068192,47.62894939016417],[-122.37949745159794,47.6289134734742],[-122.37949842727181,47.62887807077136],[-122.37949740883658,47.62884380917021],[-122.3794971595765,47.62880131082001],[-122.37949706563262,47.62876403752532],[-122.37949781342476,47.62872096862418],[-122.37950064622238,47.62867979934183],[-122.37950157352101,47.62864276944424],[-122.37950033484313,47.62860109845935],[-122.37949925148264,47.62856465253002],[-122.3794968721767,47.62848460880394],[-122.37949747356667,47.6284366148148],[-122.3794983771876,47.62839877096182],[-122.3794992471875,47.62835981355067],[-122.37949996315403,47.62831567423711],[-122.37950162703018,47.62826929401776],[-122.37950158145237,47.62823364791705],[-122.37950228086487,47.62818895182073],[-122.37950126244057,47.62815469021896],[-122.37950002377457,47.62811301923353],[-122.37950104908258,47.62807928687772],[-122.37950097932128,47.62804282717958],[-122.37950075425658,47.62800114277658],[-122.37950069264835,47.62796493988596],[-122.37950045994003,47.62792299831737],[-122.37950146869377,47.62788870917876],[-122.37950233868283,47.62784975176706],[-122.37950318448657,47.62780998075801],[-122.37950410464268,47.62777269368697],[-122.3795029232783,47.62773295021447],[-122.3795035081038,47.62768439944169],[-122.3795012510336,47.62760846685347],[-122.37950123856733,47.62757393466821],[-122.3795019621551,47.62753005216837],[-122.37950171289759,47.62748755381667],[-122.37950049844132,47.62744669677861],[-122.37950033118248,47.62740693953037],[-122.37950019649459,47.62736829550355],[-122.379499137354,47.62733266352112],[-122.37950008880297,47.62729644686862],[-122.37949981536445,47.62725313491937],[-122.3795006280604,47.62721225034446],[-122.3794958950311,47.62705301928607],[-122.37949591438564,47.62701955751223],[-122.37949473303416,47.626979813688],[-122.37949568500915,47.626943597379],[-122.37949465896956,47.62690907861052],[-122.3794945726749,47.62687206247944],[-122.37949343970499,47.62683394620046],[-122.37949341068385,47.62679885688103],[-122.37949139527849,47.62676516582874],[-122.37948808879428,47.62672215199807],[-122.37948609705953,47.62668927454997],[-122.37947962014971,47.62647137045768],[-122.37947296369165,47.62641799097188],[-122.37951855980839,47.62641681458314],[-122.37952381931082,47.62638906579787],[-122.37969410770829,47.62638675241588],[-122.37975091124369,47.62638735161178],[-122.37980972534035,47.62638736645472],[-122.37987161373283,47.62638845351064],[-122.37992536005885,47.62638853750248],[-122.37998313640959,47.62638775243065],[-122.38003282797995,47.62638789111823],[-122.38009266455332,47.62638819200987],[-122.38014842142512,47.62638769121588],[-122.38025789277823,47.62638620346683],[-122.38032077001996,47.62638646291344],[-122.38037550569354,47.6263857189692],[-122.38043130332794,47.62638658876711],[-122.38048706911667,47.62638638777512],[-122.38054084855287,47.62638758469054],[-122.38064322396298,47.62638619302763],[-122.38069695371489,47.62638571952187],[-122.38073932747949,47.62641256388664],[-122.3807716390898,47.62644202998349],[-122.38076824232463,47.6264982883063],[-122.38076837030191,47.62653667516709],[-122.38076538370653,47.62657261942216],[-122.38076149003676,47.62661217462209],[-122.38076269655076,47.62665273203061],[-122.38076385464986,47.62669166189416],[-122.38076390108077,47.62672730764498],[-122.38076406983245,47.62676706523585],[-122.38076508906123,47.62680132682758],[-122.38076855445534,47.62691781644968],[-122.38076676052773,47.62695978558301],[-122.38076885633862,47.62703023627878],[-122.38076882887921,47.62706339808496],[-122.3807700685261,47.6271050687069],[-122.38077013153567,47.6271412715906],[-122.38077136227218,47.62718264259546],[-122.38077035436915,47.62721693174596],[-122.38077265404195,47.62729423468924],[-122.38077274125716,47.62733125116977],[-122.3807708415701,47.62736966559597],[-122.38077090457007,47.62740586812856],[-122.3807719722336,47.62744175726451],[-122.3807731711246,47.6274820575066],[-122.38077441843538,47.62752398529346],[-122.3807734844227,47.62756075838795],[-122.38077154447934,47.62759780242745],[-122.38077165537901,47.62763563251172],[-122.38077265042602,47.62766908050558],[-122.38077268031049,47.62770416982388],[-122.38077284906161,47.62774392706285],[-122.38077515640147,47.62782148681956],[-122.38077629033195,47.62785960308478],[-122.38077735800854,47.62789549222023],[-122.38077746178156,47.62793306513173],[-122.3807776063331,47.62797200877346],[-122.38077860904087,47.62800571393237],[-122.38077968563547,47.62804190268467],[-122.38077866115728,47.62807563505206],[-122.3807796562172,47.62810908304544],[-122.38077868856119,47.62814474293245],[-122.38077881655023,47.62818312979155],[-122.38077891141143,47.62822040308574],[-122.38077909673302,47.62826071710657],[-122.38077912662217,47.62829580642429],[-122.3807801216866,47.62832925441751],[-122.38078111675232,47.62836270241064],[-122.38077921755279,47.62840111682888],[-122.38077824988061,47.62843677636475],[-122.3807774292561,47.62847736133043],[-122.38077765534582,47.62851904573035],[-122.38077888612095,47.6285604167336],[-122.3807799053946,47.62859467832354],[-122.38078091702941,47.62862868309887],[-122.38078009640398,47.62866926806434],[-122.38078123799676,47.62870764114319],[-122.38078233881215,47.62874464349174],[-122.38077944204188,47.62878362847871],[-122.38077844176377,47.6288181747932],[-122.38077747461274,47.62885383467246],[-122.38077859199277,47.62889139380333],[-122.38077733891997,47.62891746033219],[-122.38077937748059,47.62898598351141],[-122.38077836955831,47.62902027301114],[-122.38077947037826,47.62905727535941],[-122.3807794518486,47.6290907371316],[-122.38078169428445,47.629166112909],[-122.3807818630472,47.62920587014638],[-122.3807798007311,47.62923880269537],[-122.38077784364631,47.62927528995793],[-122.38077679493803,47.62930820872716],[-122.38077690636418,47.62934603880261],[-122.38077698594557,47.62938279846649],[-122.3807761240067,47.62942201270795],[-122.38077617044846,47.62945765845614],[-122.38077530903718,47.62949687304127],[-122.38077539625796,47.62953388951957],[-122.38077555736639,47.62957338959116],[-122.38077570957178,47.62961259039654],[-122.3807756986798,47.62964630898276],[-122.38077569619294,47.62968032754387],[-122.38077802018744,47.62975844407881],[-122.38077799274284,47.62979160623337],[-122.38077611004287,47.62983057708156],[-122.38078032613194,47.62997229205853],[-122.38078135308503,47.63000681081253],[-122.38078242972297,47.63004299956282],[-122.38078154409123,47.63008140019959],[-122.38078063373415,47.63011898724643],[-122.38078161991018,47.63015213527012],[-122.38078165871593,47.63018752420302],[-122.38078171281302,47.63022342711583],[-122.38078167771967,47.63025633210454],[-122.38078164262629,47.63028923709322],[-122.38078496176408,47.63040080161799],[-122.38078599765302,47.63043562033938],[-122.3807870004033,47.63046932514512],[-122.38078609056237,47.63050691218452],[-122.38078513050668,47.63054282888382],[-122.38078427798764,47.63058234273398],[-122.38078537885531,47.63061934543146],[-122.38078642238939,47.63065442096718],[-122.38078539022362,47.63068789651761],[-122.38078345016167,47.63072494020326],[-122.38078451026146,47.63076057252128],[-122.38078456384211,47.63079647544057],[-122.38078469184201,47.63083486229684],[-122.38078477907169,47.63087187877377],[-122.38078376345504,47.63090591075549],[-122.38078080923023,47.63094296857851],[-122.38078185276775,47.63097804411396],[-122.38078284788523,47.63101149210467],[-122.38078192910743,47.63104877917566],[-122.38078191057863,47.63108224094596],[-122.38078297067423,47.63111787291282],[-122.38078304133819,47.63115433260707],[-122.38078728175911,47.63129686117546],[-122.38078730400447,47.63133169332488],[-122.38079287342545,47.63151889078386],[-122.38079287145831,47.63155290898529],[-122.3807371574769,47.63155503763954],[-122.38068649572033,47.63155654023215],[-122.38063683945887,47.63155777221633],[-122.38058513983702,47.6315584749453],[-122.38050495764023,47.63155626555285],[-122.38050547654073,47.63160780047254],[-122.38051058889334,47.63177966555285],[-122.3805529019883,47.6318043260067],[-122.3806038570047,47.63181267329431],[-122.38067100799476,47.63181998683373],[-122.38070764842858,47.63182441585199],[-122.38075740254001,47.63182648173576],[-122.38080924182576,47.63183044684168],[-122.38086300981254,47.63183108682939],[-122.38091679489678,47.63183228391784],[-122.3809715770681,47.63183291006632],[-122.38102023597075,47.63183224850738],[-122.38107100375395,47.63183430012143],[-122.38112173077157,47.63183498168456],[-122.38117144411781,47.63183567665738],[-122.38122620972581,47.63183574590105],[-122.38127589886058,47.63183562723148],[-122.38132659274012,47.63183519513873],[-122.3813772794838,47.63183450585102],[-122.38143203691752,47.63183431783737],[-122.38148675409067,47.63183275976214],[-122.38186588808526,47.63182760284761],[-122.38191550325523,47.63182499995558],[-122.38196817650255,47.63182291244633],[-122.38201782480934,47.63182142272325],[-122.3820704159199,47.6318165944161],[-122.38212311337934,47.63181532043181],[-122.38217582689727,47.63181460321234],[-122.38222440413892,47.63181120003034],[-122.38227599864835,47.63180694184501],[-122.38232550791426,47.63180078406939],[-122.3823800854742,47.63179455730275],[-122.38242341453856,47.63178518470837],[-122.38246677622426,47.63177692531797],[-122.38249678759001,47.63176306377105],[-122.38250393432114,47.63173061899329],[-122.38250390327701,47.63169553003022],[-122.38250284198041,47.63165989772916],[-122.38250281858619,47.63162506558042],[-122.3825017738753,47.63158999006139],[-122.38250274755474,47.63155458733549],[-122.38239729630338,47.63155520846322],[-122.38234866190764,47.63155668420733],[-122.38229388052967,47.63155605871443],[-122.38224114252777,47.63155596239899],[-122.38219245966087,47.63155581053231],[-122.38218947713315,47.63152376086853],[-122.38218845686326,47.63148949894316],[-122.38218824621026,47.63144837133161],[-122.382187209373,47.63141355297483],[-122.38218708033673,47.63137516612075],[-122.38218696788071,47.63133733604882],[-122.38218786959544,47.63129949217755],[-122.38218774055896,47.63126110532338],[-122.38218775818352,47.63122764355299],[-122.38218758832927,47.6311878859691],[-122.38218654385015,47.6311528107976],[-122.38218553124739,47.63111880603709],[-122.38218855793005,47.63108423212805],[-122.38218857607302,47.63105077035043],[-122.38218850443457,47.6310143110078],[-122.38218821980561,47.63097069910172],[-122.38218798491701,47.63092875754209],[-122.38218692386288,47.63089312558817],[-122.38218677059029,47.63085392478608],[-122.3821844444314,47.63077580828226],[-122.3821843562059,47.63073879180631],[-122.38218336019247,47.63070534382761],[-122.38218235653292,47.63067163903441],[-122.38218233335375,47.63063680688465],[-122.38218222090278,47.63059897681192],[-122.38218099661077,47.63055786264066],[-122.38218072909982,47.63051480785996],[-122.3821796846284,47.6304797323369],[-122.38217970225789,47.63044627056576],[-122.38217947503631,47.63040458617083],[-122.38217938681497,47.63036756969451],[-122.3821783423474,47.63033249417127],[-122.38217833575071,47.63029821880337],[-122.38217832915403,47.63026394343543],[-122.38217716226958,47.63022475677559],[-122.38217705747059,47.6301871835169],[-122.38217597985948,47.63015099477995],[-122.3821759898335,47.6301172758432],[-122.38217702161209,47.63008380027257],[-122.38217782460092,47.63004265886729],[-122.38217465807659,47.62993631908295],[-122.38217450482651,47.62989711863064],[-122.38217441660957,47.62986010215378],[-122.38217427100712,47.62982115851585],[-122.38217326737055,47.62978745372173],[-122.38217313834856,47.62974906686591],[-122.38217315650101,47.62971560508705],[-122.38217207124477,47.62967915918427],[-122.38217295584317,47.62964075853628],[-122.38217494332847,47.62960534201915],[-122.382173956275,47.62957219400704],[-122.38217395732848,47.6295381754529],[-122.38217386146533,47.62950090216118],[-122.38217286548237,47.62946745418126],[-122.38217176365218,47.62943045149603],[-122.38217165937766,47.62939287822944],[-122.38217161197977,47.62935723248177],[-122.38217046934713,47.62931885941757],[-122.38217037348689,47.62928158612564],[-122.38217032607955,47.62924594002702],[-122.38216926507182,47.62921030807126],[-122.3821690952383,47.62917055048513],[-122.38217006909885,47.62913514775966],[-122.38216904889904,47.62910088618267],[-122.38216895304022,47.62906361289053],[-122.38216882559909,47.62899120747222],[-122.38216774036096,47.62895476156867],[-122.38216662197664,47.62891720245153],[-122.38216766214005,47.62888402650383],[-122.38216556436015,47.62881357583736],[-122.38216659561105,47.62878010062352],[-122.38216641813395,47.62874008622243],[-122.38216535712878,47.6287044539153],[-122.3821652523518,47.62866688100585],[-122.38216416712297,47.62863043510196],[-122.38216514149576,47.62859503236896],[-122.38216606688583,47.62855800209877],[-122.38216810407138,47.62852425592735],[-122.38216803244028,47.62848779623131],[-122.38217003698286,47.6284529364883],[-122.38217004696041,47.62841921755],[-122.3821690344321,47.62838521313766],[-122.38217008224078,47.62835229435478],[-122.38216897277874,47.62831503450308],[-122.38216894960958,47.62828020235106],[-122.38216886139931,47.62824318587258],[-122.38216869209869,47.62820342862915],[-122.38216647193094,47.62812886682465],[-122.38216646534237,47.62809459145466],[-122.38216744810599,47.62805948834509],[-122.3821683977211,47.62802327202189],[-122.38216838347387,47.62798873948649],[-122.3821683029219,47.62795198017303],[-122.38216920458109,47.62791413594755],[-122.3821691163817,47.62787711981952],[-122.38216906897651,47.62784147371953],[-122.38216802457706,47.62780639854464],[-122.38216897417669,47.62777018187032],[-122.38216788896395,47.62773373596558],[-122.38216887937715,47.62769889002097],[-122.38216776101899,47.62766133090255],[-122.38216866267355,47.62762348667678],[-122.38216971046714,47.62759056789323],[-122.38217073403381,47.62755683551293],[-122.38217072744247,47.62752256014242],[-122.382169625655,47.62748555745521],[-122.3821696190644,47.62745128208464],[-122.3821684764751,47.62741290901842],[-122.38216629714539,47.62733971759126],[-122.38216629106557,47.62730544186265],[-122.38216622709469,47.62726923933072],[-122.38216603304444,47.62722866814578],[-122.38216491469845,47.62719110902682],[-122.38216490811101,47.62715683365599],[-122.38216493467012,47.62712367149874],[-122.38216481331814,47.62708554180546],[-122.3821647659166,47.62704989570471],[-122.38216461268246,47.62701069524933],[-122.38216344587086,47.62697150823502],[-122.38216335819618,47.62693449209899],[-122.38216337583495,47.62690103032463],[-122.38216335267015,47.6268661981713],[-122.3821623490872,47.62683249302353],[-122.38216222008063,47.62679410616462],[-122.38216312887282,47.62675651946124],[-122.38216402999606,47.62671867524165],[-122.38216507829335,47.62668575645031],[-122.38216602788502,47.62664954012576],[-122.38216599706141,47.62661445080684],[-122.38216593309157,47.62657824827426],[-122.38216594308187,47.62654452968508],[-122.38216493950344,47.62651082453708],[-122.38216291345799,47.62647683391493],[-122.38216392041845,47.6264425444006],[-122.38216496106352,47.6264093687945],[-122.38218144146141,47.62638390895697],[-122.38221830876394,47.62636202792834],[-122.38225679331354,47.62636039055856],[-122.38231047455923,47.62635828874699],[-122.38236419610051,47.62635755764688],[-122.38241491065554,47.62635798146153],[-122.38247171419086,47.62635857929978],[-122.3825234162787,47.62635813287933],[-122.38257612478064,47.62635741546735],[-122.38263394187234,47.62635799942897],[-122.38268873436478,47.62635918154053],[-122.38274450011536,47.62635897944271],[-122.38279420825056,47.62635967370704],[-122.38284489730054,47.62635924093111],[-122.38289964897655,47.6263590525624],[-122.38294925939846,47.6263564492124],[-122.38300097039557,47.62635630184105],[-122.3830496241501,47.62635563941465],[-122.38310433551257,47.62635408056178],[-122.38316122072088,47.62635741916409],[-122.38321291513934,47.62635671526521],[-122.38325253570416,47.62635917489329],[-122.38330327399179,47.62636041191574],[-122.3833539548563,47.62635972175494],[-122.38340659825768,47.62635681963256],[-122.38345727911731,47.62635612942577],[-122.38350800082465,47.62635680992576],[-122.38355770948694,47.62635750384963],[-122.38360731935548,47.62635490021992],[-122.38362296344005,47.62640348694413],[-122.38366358229707,47.62640541864449],[-122.38366517526903,47.62645886691211],[-122.38368335440455,47.62649040982179],[-122.38368444958293,47.62652715533011],[-122.38368456259848,47.62656498541261],[-122.38368466847894,47.6266025586736],[-122.38368577897953,47.6266398181614],[-122.38368588486104,47.62667739142233],[-122.38368487888872,47.62671168059908],[-122.38368596514289,47.62674812649036],[-122.38368293152398,47.62678244328517],[-122.3836789422943,47.6268187010387],[-122.38367899073312,47.62685434713901],[-122.38367903916156,47.62688999288847],[-122.38367902964336,47.62692371183536],[-122.38367903722835,47.62695798720632],[-122.38368003413164,47.62699143517536],[-122.38368014000972,47.62702900843595],[-122.38368116881831,47.6270635268157],[-122.38368230486144,47.6271016430527],[-122.3836824018009,47.62713891634554],[-122.38368448497259,47.62720881020523],[-122.38368456659472,47.62724556951836],[-122.38368783432465,47.62735520680731],[-122.38368890399944,47.62739109591591],[-122.38368801290386,47.62742923976366],[-122.38368806133903,47.62746488551257],[-122.38368806841106,47.62749916089009],[-122.38368710327896,47.62753482079533],[-122.38368624408329,47.62757403505369],[-122.38368639847612,47.62761323585728],[-122.38368656178885,47.62765273592678],[-122.38368768890818,47.62769055219552],[-122.38368767224959,47.62772401396938],[-122.38368772017624,47.6277596600759],[-122.38368675502863,47.62779531963003],[-122.38368789874625,47.62783369268062],[-122.38368791400207,47.62786822521598],[-122.38368892752358,47.62790222996612],[-122.38368890192508,47.62793539177218],[-122.3836869563893,47.62797217904656],[-122.38368603922765,47.62800946615114],[-122.38368401964196,47.62804376913219],[-122.38368312853166,47.6280819129792],[-122.38368320121357,47.62811837232385],[-122.38368822543652,47.62828693973922],[-122.38368821592401,47.62832065868484],[-122.38368923710902,47.62835492024892],[-122.3836893264013,47.62839193672615],[-122.38368930973307,47.62842539814853],[-122.38368934158527,47.62846048746531],[-122.3836894232128,47.62849724677719],[-122.38369049291217,47.62853313588469],[-122.38369055795579,47.62856933876535],[-122.38369058979845,47.62860442773115],[-122.3836926730398,47.62867432158792],[-122.38369272148975,47.62870996768645],[-122.38369171496366,47.62874425686843],[-122.38369176340257,47.62877990261606],[-122.38369071654816,47.62881282141255],[-122.38368980883422,47.62885040847684],[-122.38368989812773,47.62888742495353],[-122.38369094357499,47.62892250011346],[-122.38369110638671,47.62896200053945],[-122.38369431679713,47.6290697106628],[-122.38369438183365,47.62910591319206],[-122.38369443793982,47.62914181610454],[-122.38369856363562,47.6292802334374],[-122.3836985303879,47.62931313842785],[-122.38370054856148,47.62938084795763],[-122.3837006136027,47.62941705048658],[-122.38370163481741,47.62945131204957],[-122.38370063646703,47.62948585838905],[-122.38369962227638,47.62951989075601],[-122.38369857541204,47.62955280955189],[-122.38369854981889,47.62958597135647],[-122.38369863146515,47.62962273101805],[-122.38369967693306,47.62965780617716],[-122.38369873601937,47.62969427967673],[-122.38369772182342,47.62972831204349],[-122.38369671579994,47.62976260121748],[-122.3836977778756,47.62979823350928],[-122.38369682036225,47.62983415022675],[-122.38369789902475,47.6298703389496],[-122.38369786577626,47.6299032439395],[-122.38369785677826,47.62993696252573],[-122.38369887034656,47.62997096727385],[-122.38369896730325,47.63000824056378],[-122.38369998853892,47.63004250247701],[-122.38370002881091,47.63007789141607],[-122.38369900618629,47.63011162380781],[-122.38369812270635,47.63015002446716],[-122.38369714093608,47.63018512758794],[-122.38369617523091,47.63022078714686],[-122.38369719645847,47.63025504870907],[-122.38369827514043,47.63029123778238],[-122.38369936147873,47.63032768366997],[-122.38369938567357,47.6303625158197],[-122.38369940986843,47.63039734796943],[-122.38370039790959,47.63043049596755],[-122.38369949017441,47.63046808303024],[-122.38369745390615,47.63050182922726],[-122.38370185800271,47.63064958273918],[-122.38370199529088,47.63068822641372],[-122.38370197864052,47.63072168818483],[-122.38370412709072,47.63079376636274],[-122.38370415128897,47.63082859851202],[-122.38370515593752,47.63086230329165],[-122.38370522098381,47.63089850581914],[-122.38370518773928,47.63093141080812],[-122.38370633153943,47.6309697838552],[-122.38370443440482,47.63100819831941],[-122.38370444149858,47.63104247404446],[-122.38370242180727,47.63107677702296],[-122.3837025353648,47.63111460709366],[-122.38370270636618,47.63115436432456],[-122.38370273056364,47.63118919647349],[-122.38370178910536,47.63122566997859],[-122.38370300694962,47.63126652696754],[-122.38370313710428,47.63130491381999],[-122.38370310385814,47.63133781880861],[-122.38370328252618,47.6313778332044],[-122.38370336416814,47.63141459251331],[-122.38370455649083,47.63145459310333],[-122.38370569264698,47.6314927093355],[-122.38370574109803,47.6315283550804],[-122.38370583806254,47.6315656283687],[-122.38370596822004,47.63160401522082],[-122.38370496165713,47.631638304751],[-122.38370413560001,47.63167863256896],[-122.38370416745371,47.63171372153174],[-122.38370425676237,47.63175073800547],[-122.38370440351564,47.63178968163933],[-122.38370544904143,47.63182475714715],[-122.383705448979,47.63185877534828],[-122.38370552117325,47.63189523504701],[-122.3837046619299,47.63193444965163],[-122.38370372990947,47.63197122276566],[-122.38370479202456,47.63200685470436],[-122.38370484814106,47.63204275761395],[-122.38370497829901,47.63208114446555],[-122.38370496165012,47.63211460623535],[-122.38370195199293,47.63214973697273],[-122.38370195959378,47.63218401233875],[-122.38370095352558,47.63221830151043],[-122.38370205650259,47.63225530417797],[-122.38370214581067,47.63229232065113],[-122.38370250395241,47.6323383733477],[-122.38370417118782,47.63239430554811],[-122.38370738183714,47.63250201566077],[-122.38370742263508,47.6325374045903],[-122.38370743790526,47.63257193712111],[-122.3837085332287,47.63260868262302],[-122.38370952132813,47.63264183096985],[-122.3837105349463,47.63267583536446],[-122.38371158049407,47.63271091087132],[-122.38371055782518,47.63274464326065],[-122.38371059862548,47.63278003218993],[-122.38371255377386,47.63284562224852]]],"type":"Polygon"} +},{ + "id": 907132681, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":76717.53387, + "geom:bbox":"-73.9645342077,40.641426555,-73.9608665352,40.6447363127", + "geom:latitude":40.643307, + "geom:longitude":-73.962762, + "iso:country":"US", + "lbl:latitude":40.643266, + "lbl:longitude":-73.962761, + "lbl:max_zoom":18.0, + "mps:latitude":40.643266, + "mps:longitude":-73.962761, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Beverly Square East" + ], + "reversegeo:latitude":40.643266, + "reversegeo:longitude":-73.962761, + "src:geom":"mz", + "wof:belongsto":[ + 85869833, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f57e9b8d1cc15c8a6d7d515ef70d37d7", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907132681, + "neighbourhood_id":85869833, + "region_id":85688543 + } + ], + "wof:id":907132681, + "wof:lastmodified":1566608538, + "wof:name":"Beverley Square East", + "wof:parent_id":85869833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782909 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96453420767715, + 40.64142655496574, + -73.9608665352181, + 40.64473631270155 +], + "geometry": {"coordinates":[[[[-73.96396205728983,40.64142655496574],[-73.96453420767715,40.64436545113236],[-73.96123304905349,40.64473631270155],[-73.9608665352181,40.64282119989565],[-73.96396205728983,40.64142655496574]]]],"type":"MultiPolygon"} +},{ + "id": 907132683, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":193948.106682, + "geom:bbox":"-73.9701050005,40.6392476628,-73.9639620573,40.6443654511", + "geom:latitude":40.642165, + "geom:longitude":-73.967047, + "iso:country":"US", + "lbl:latitude":40.642431, + "lbl:longitude":-73.96698, + "lbl:max_zoom":18.0, + "mps:latitude":40.642221, + "mps:longitude":-73.967106, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Beverly Square West" + ], + "reversegeo:latitude":40.642221, + "reversegeo:longitude":-73.967106, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869833, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fd20a12b2ead1a8b1b553f9ba065cdfc", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907132683, + "neighbourhood_id":85869833, + "region_id":85688543 + } + ], + "wof:id":907132683, + "wof:lastmodified":1566608538, + "wof:name":"Beverley Square West", + "wof:parent_id":85869833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892911 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97010500047394, + 40.63924766278251, + -73.96396205728983, + 40.64436545113236 +], + "geometry": {"coordinates":[[[[-73.96453420767715,40.64436545113236],[-73.96396205728983,40.64142655496574],[-73.96879827667476,40.63924766278251],[-73.97010500047394,40.64374913180258],[-73.96453420767715,40.64436545113236]]]],"type":"MultiPolygon"} +},{ + "id": 907132685, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0001, + "geom:area_square_m":933965.494998, + "geom:bbox":"-73.8100587009,40.7624977973,-73.795293242,40.7715853695", + "geom:latitude":40.766619, + "geom:longitude":-73.803047, + "iso:country":"US", + "lbl:latitude":40.76598, + "lbl:longitude":-73.803645, + "lbl:max_zoom":18.0, + "mps:latitude":40.76598, + "mps:longitude":-73.803645, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Broadway-Flushing" + ], + "name:fra_x_preferred":[ + "Broadway-Flushing" + ], + "reversegeo:latitude":40.76598, + "reversegeo:longitude":-73.803645, + "src:geom":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2925858" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2f00a7fe2e3431101bd78f0eaa13de46", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907132685, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907132685, + "wof:lastmodified":1566608538, + "wof:name":"Broadway-Flushing", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782869 + ], + "wof:tags":[] +}, + "bbox": [ + -73.81005870085558, + 40.76249779725527, + -73.79529324199193, + 40.77158536951638 +], + "geometry": {"coordinates":[[[[-73.79612090416006,40.76276658535874],[-73.79715058354874,40.76275820942976],[-73.79788233903071,40.76275854833928],[-73.79864633487823,40.76279873342691],[-73.79927329976344,40.76284965756679],[-73.79983407661861,40.76290053019702],[-73.80032463795293,40.76294743211921],[-73.80049939455719,40.76294198942482],[-73.80066221270842,40.76292544173773],[-73.80129071159247,40.76280863415101],[-73.8018934651225,40.7626815633493],[-73.80250805542356,40.76257983134647],[-73.80300208375603,40.7625232922416],[-73.80365313819969,40.76249960207177],[-73.80401194859742,40.76249779725527],[-73.80434723341018,40.7625272223481],[-73.80470557927855,40.76259307499575],[-73.81005870085558,40.76437475894094],[-73.80982576352218,40.76603407403022],[-73.8090464636919,40.77158536951638],[-73.80857780945709,40.77151055835354],[-73.80798311313274,40.77141717663578],[-73.80739992825299,40.77133952615131],[-73.80681667425904,40.77126773662082],[-73.80630730027978,40.77119693308097],[-73.80580877672358,40.77113451090759],[-73.80522535127109,40.77109983436207],[-73.80479013481869,40.77108437946778],[-73.80429188158897,40.77109764112795],[-73.803740702916,40.77113490438816],[-73.80249119329291,40.77128951284981],[-73.8027647242169,40.76932757351397],[-73.79529324199193,40.76876541579122],[-73.79612090416006,40.76276658535874]]]],"type":"MultiPolygon"} +},{ + "id": 907132687, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000189, + "geom:area_square_m":1767073.655293, + "geom:bbox":"-73.9142196106,40.9002794628,-73.896409,40.915532777", + "geom:latitude":40.907606, + "geom:longitude":-73.904665, + "iso:country":"US", + "lbl:latitude":40.9074, + "lbl:longitude":-73.903714, + "lbl:max_zoom":18.0, + "mps:latitude":40.907838, + "mps:longitude":-73.904838, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.907838, + "reversegeo:longitude":-73.904838, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85844897, + 102191575, + 907157029, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fce2383f762da82933842d39b27f5cef", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157029, + "microhood_id":907132687, + "neighbourhood_id":85844897, + "region_id":85688543 + } + ], + "wof:id":907132687, + "wof:lastmodified":1566608538, + "wof:name":"North Riverdale", + "wof:parent_id":85844897, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892779 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9142196105729, + 40.90027946279414, + -73.89640900000012, + 40.91553277700521 +], + "geometry": {"coordinates":[[[[-73.89662684591228,40.91146957665321],[-73.89640900000012,40.90296100000019],[-73.89666700000015,40.90200700000013],[-73.89703342406848,40.90027946279414],[-73.89905899999999,40.90091100000031],[-73.901938,40.90121],[-73.901837,40.90155600000011],[-73.904113,40.901819],[-73.90611,40.90167000000013],[-73.9102,40.9030630000001],[-73.91400800000011,40.90384900000012],[-73.9142196105729,40.90413755987221],[-73.91418416752538,40.90413933380103],[-73.91286540202566,40.90753512220292],[-73.91290342493171,40.9076108425564],[-73.91299834908084,40.90767597498969],[-73.91307611900353,40.90773953074296],[-73.91311160642805,40.90778996026614],[-73.91310863924073,40.90784448415023],[-73.91307809486491,40.90787858721112],[-73.912909610862,40.90794926755085],[-73.91272669647407,40.90799484239437],[-73.91157895749355,40.91213595931993],[-73.91150475394851,40.91216987987964],[-73.91149190703744,40.912233769312],[-73.91153618905388,40.91230206277714],[-73.91143213027867,40.91282382621974],[-73.91155029028242,40.91306981269462],[-73.91165472402228,40.91341785189675],[-73.91149959074832,40.91376658170498],[-73.91113412832104,40.91433060593086],[-73.91095893887849,40.91452884723513],[-73.91066855401334,40.91479942865676],[-73.91045539620558,40.91526468360085],[-73.91033256848922,40.91553277700521],[-73.90851155017609,40.91500226402633],[-73.89662684591228,40.91146957665321]]]],"type":"MultiPolygon"} +},{ + "id": 907132691, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000047, + "geom:area_square_m":441203.05793, + "geom:bbox":"-73.9147368347,40.8834409983,-73.9023320101,40.8911288099", + "geom:latitude":40.887159, + "geom:longitude":-73.908151, + "iso:country":"US", + "lbl:latitude":40.88689, + "lbl:longitude":-73.908151, + "lbl:max_zoom":18.0, + "mps:latitude":40.88689, + "mps:longitude":-73.908151, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":40.88689, + "reversegeo:longitude":-73.908151, + "src:geom":"mz", + "wof:belongsto":[ + 85844897, + 102191575, + 907157029, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d349db55a9c15cc7b85a57627eb237c1", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157029, + "microhood_id":907132691, + "neighbourhood_id":85844897, + "region_id":85688543 + } + ], + "wof:id":907132691, + "wof:lastmodified":1566608539, + "wof:name":"Central Riverdale", + "wof:parent_id":85844897, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782829 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9147368346869, + 40.88344099825605, + -73.90233201013629, + 40.89112880993179 +], + "geometry": {"coordinates":[[[[-73.90732136961913,40.88454072767051],[-73.90746499940234,40.88443399825623],[-73.91032699940226,40.88344099825605],[-73.91473683468691,40.88457859165872],[-73.91423361882067,40.88495327231038],[-73.91364521560826,40.88539630558262],[-73.91319135946136,40.88577898798403],[-73.91249504342686,40.88650974876706],[-73.9118123509745,40.88741314240617],[-73.91164863406408,40.88762482837076],[-73.91143538492759,40.88783833168414],[-73.91114971505635,40.88803571176438],[-73.91085600057505,40.88821988589797],[-73.90944666279189,40.8889400056303],[-73.90925317475899,40.88906274949764],[-73.90909125656205,40.88918634292885],[-73.90873638180283,40.88953193762107],[-73.90840667183708,40.8900317766006],[-73.90825015231181,40.89044703415315],[-73.9081815126587,40.89070299221545],[-73.9071624793129,40.89095434464069],[-73.90699844634055,40.89098416039547],[-73.90683003769419,40.89097973431563],[-73.90664681906257,40.89094748559084],[-73.90651523105269,40.89090739034607],[-73.90623477044917,40.89078502042855],[-73.90595400429827,40.89062160777103],[-73.90569739094951,40.89040138831726],[-73.90546016091515,40.89017449555064],[-73.90535963920948,40.89011823146738],[-73.90525287394378,40.89008287842242],[-73.90513622699153,40.89006959075321],[-73.90468878929011,40.89008829105326],[-73.90454120243648,40.89011062323003],[-73.90434076367578,40.89017662382949],[-73.90424976654957,40.89022517900413],[-73.90378230744908,40.89060920863003],[-73.90351456016616,40.89088567589378],[-73.90336454607784,40.89098647727663],[-73.90318078511298,40.89107311240267],[-73.9029760720544,40.89111732644725],[-73.90276249026981,40.89112880993179],[-73.90259556619188,40.89109122404343],[-73.90244311848136,40.89103562698928],[-73.9023650619332,40.89096352257915],[-73.90234206161152,40.89092481068226],[-73.90233201013629,40.8908762734463],[-73.90235480611153,40.89078551070722],[-73.90241129744024,40.89069810233634],[-73.90258435394539,40.89048988023447],[-73.90275823020377,40.89028129388423],[-73.90282273835491,40.89018249541036],[-73.90287149260348,40.89006735772545],[-73.90289432169783,40.88993194681034],[-73.90291679068918,40.88973972101329],[-73.90290872863218,40.88947621283707],[-73.90288682938812,40.88927922869638],[-73.90285201318834,40.88916539782734],[-73.90285899910322,40.88916499738441],[-73.90406843951845,40.88719728711659],[-73.90413499910336,40.88708899738442],[-73.90572899910336,40.88572399738428],[-73.90732136961913,40.88454072767051]]]],"type":"MultiPolygon"} +},{ + "id": 907132693, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000111, + "geom:area_square_m":1035087.63823, + "geom:bbox":"-73.9080982169,40.8888959974,-73.8964117151,40.90121", + "geom:latitude":40.895169, + "geom:longitude":-73.90218, + "iso:country":"US", + "lbl:latitude":40.894468, + "lbl:longitude":-73.904104, + "lbl:max_zoom":18.0, + "mps:latitude":40.894295, + "mps:longitude":-73.900694, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fieldston" + ], + "name:eng_x_variant":[ + "Fildston" + ], + "name:und_x_variant":[ + "Delafield Woods" + ], + "reversegeo:latitude":40.894295, + "reversegeo:longitude":-73.900694, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85844897, + 102191575, + 907157029, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f4d00d8d929efbc140036ca5fd7dee91", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157029, + "microhood_id":907132693, + "neighbourhood_id":85844897, + "region_id":85688543 + } + ], + "wof:id":907132693, + "wof:lastmodified":1566608538, + "wof:name":"Fieldston", + "wof:parent_id":85844897, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869237, + 85865675 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90809821692501, + 40.88889599738437, + -73.89641171505343, + 40.90121 +], + "geometry": {"coordinates":[[[[-73.89703342406848,40.90027946279414],[-73.89710348085231,40.89875877409325],[-73.89670700000001,40.8958584036411],[-73.89641171505343,40.89381000633664],[-73.89724754895602,40.89172400838495],[-73.89823555670385,40.88952202938314],[-73.89981212889012,40.88967708772844],[-73.90101199910316,40.88889599738437],[-73.90185112889014,40.88922276998967],[-73.90285201318834,40.88916539782734],[-73.90288682938812,40.88927922869638],[-73.90290872863218,40.88947621283707],[-73.90291679068918,40.88973972101329],[-73.90289432169783,40.88993194681034],[-73.90287149260348,40.89006735772545],[-73.90282273835491,40.89018249541036],[-73.90275823020377,40.89028129388423],[-73.90258435394539,40.89048988023447],[-73.90241129744024,40.89069810233634],[-73.90235480611153,40.89078551070722],[-73.90233201013629,40.8908762734463],[-73.90234206161152,40.89092481068226],[-73.9023650619332,40.89096352257915],[-73.90244311848136,40.89103562698928],[-73.90259556619188,40.89109122404343],[-73.90276249026981,40.89112880993179],[-73.9029760720544,40.89111732644725],[-73.90318078511298,40.89107311240267],[-73.90336454607784,40.89098647727663],[-73.90351456016616,40.89088567589378],[-73.90378230744908,40.89060920863003],[-73.90424976654957,40.89022517900413],[-73.90434076367578,40.89017662382949],[-73.90454120243648,40.89011062323003],[-73.90468878929011,40.89008829105326],[-73.90513622699153,40.89006959075321],[-73.90525287394378,40.89008287842242],[-73.90535963920948,40.89011823146738],[-73.90546016091515,40.89017449555064],[-73.90569739094951,40.89040138831726],[-73.90595400429827,40.89062160777103],[-73.90623477044917,40.89078502042855],[-73.90651523105269,40.89090739034607],[-73.90664681906257,40.89094748559084],[-73.90683003769419,40.89097973431563],[-73.90699844634055,40.89098416039547],[-73.9071624793129,40.89095434464069],[-73.90809821692501,40.89072353774986],[-73.90805377872057,40.89363904324254],[-73.90793930731648,40.89767503098074],[-73.90725696170588,40.8993894007568],[-73.905733,40.90045],[-73.90416,40.901109],[-73.901938,40.90121],[-73.89905899999999,40.90091100000031],[-73.89703342406848,40.90027946279414]],[[-73.90506900585885,40.89873718787991],[-73.90511191203667,40.89878948306503],[-73.90397193973747,40.89921297223505],[-73.90421281275491,40.89978189488668],[-73.90419209370296,40.89980729489328],[-73.90414883075425,40.89982740889072],[-73.9040932826894,40.89984568702717],[-73.90338802583059,40.89995186474251],[-73.90331083276227,40.89995058687317],[-73.90324052308807,40.89993926011393],[-73.90317000498382,40.89991154466131],[-73.90310400509767,40.89987990932963],[-73.90212975433002,40.89927649068991],[-73.90188758618106,40.89909371347061],[-73.90170616873588,40.8989114738673],[-73.90163768955711,40.89877589854058],[-73.90158181298244,40.89860089816494],[-73.90156199995586,40.898478815522],[-73.90157025850543,40.89834794324586],[-73.9016473353458,40.89817696820612],[-73.90174369558255,40.89805060546151],[-73.90188239402377,40.89793221844344],[-73.90207009039138,40.89780205352549],[-73.9022759256471,40.89768731696737],[-73.90273150260153,40.89744497665609],[-73.90290401663631,40.89765699436779],[-73.90320806517995,40.89751688436601],[-73.90334826274562,40.89769450219168],[-73.90396596164278,40.89740820261571],[-73.90405459394013,40.89751061480752],[-73.90456853690115,40.89727430039203],[-73.90471713141253,40.8974705283166],[-73.90507220936401,40.89797833810844],[-73.90511576473256,40.89806019211051],[-73.90511430545425,40.89813473130874],[-73.90508702157263,40.89824529795075],[-73.90505378501403,40.89837533890997],[-73.90501068654513,40.89848104312219],[-73.90499975530264,40.89854710321903],[-73.90500222946744,40.89860004445565],[-73.90501805430291,40.89866587412098],[-73.90506900585885,40.89873718787991]]]],"type":"MultiPolygon"} +},{ + "id": 907132695, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":25443.402314, + "geom:bbox":"-73.9820175071,40.7563290454,-73.9783285043,40.7583386334", + "geom:latitude":40.757333, + "geom:longitude":-73.980174, + "iso:country":"US", + "lbl:latitude":40.757333, + "lbl:longitude":-73.980174, + "lbl:max_zoom":18.0, + "mps:latitude":40.757333, + "mps:longitude":-73.980174, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Diamond District" + ], + "name:fra_x_preferred":[ + "Diamond District" + ], + "name:heb_x_preferred":[ + "\u05e8\u05d5\u05d1\u05e2 \u05d4\u05d9\u05d4\u05dc\u05d5\u05de\u05d9\u05dd" + ], + "name:por_x_preferred":[ + "Diamond District" + ], + "name:ron_x_preferred":[ + "Diamond District" + ], + "reversegeo:latitude":40.757333, + "reversegeo:longitude":-73.980174, + "src:geom":"mz", + "wof:belongsto":[ + 85882233, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"35d760fadad435c9c0f48db2d0345f75", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907132695, + "neighbourhood_id":85882233, + "region_id":85688543 + } + ], + "wof:id":907132695, + "wof:lastmodified":1566608538, + "wof:name":"Diamond District", + "wof:parent_id":85882233, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782821 + ], + "wof:tags":[] +}, + "bbox": [ + -73.98201750708007, + 40.75632904542802, + -73.97832850433055, + 40.7583386333706 +], + "geometry": {"coordinates":[[[[-73.98154732108189,40.7583386333706],[-73.97832850433055,40.75697231060568],[-73.9788071954785,40.75632904542802],[-73.98201750708007,40.75769507666251],[-73.98154732108189,40.7583386333706]]]],"type":"MultiPolygon"} +},{ + "id": 907132697, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.0001, + "geom:area_square_m":934503.600561, + "geom:bbox":"-73.8355905225,40.7509682117,-73.8219113968,40.7638801751", + "geom:latitude":40.757158, + "geom:longitude":-73.829439, + "iso:country":"US", + "lbl:latitude":40.758567, + "lbl:longitude":-73.830476, + "lbl:max_zoom":18.0, + "mps:latitude":40.758567, + "mps:longitude":-73.830476, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ara_x_preferred":[ + "\u0627\u0644\u062d\u064a \u0627\u0644\u0635\u064a\u0646\u064a" + ], + "name:ast_x_preferred":[ + "Barriu chinu" + ], + "name:aze_x_preferred":[ + "\u00c7in q\u0259s\u0259b\u0259si" + ], + "name:cat_x_preferred":[ + "Barri xin\u00e8s" + ], + "name:cdo_x_preferred":[ + "D\u00f2ng-\u00ecng-g\u0103\u0324" + ], + "name:dan_x_preferred":[ + "Chinatown" + ], + "name:deu_x_preferred":[ + "Chinatown" + ], + "name:eng_x_variant":[ + "Chinatown Flushing", + "Mandarin Town Flushing" + ], + "name:est_x_preferred":[ + "Hiinalinn" + ], + "name:eus_x_preferred":[ + "Chinatown" + ], + "name:fas_x_preferred":[ + "\u0645\u062d\u0644\u0647 \u0686\u06cc\u0646\u06cc\u200c\u0647\u0627" + ], + "name:fin_x_preferred":[ + "Chinatown" + ], + "name:fra_x_preferred":[ + "Quartier chinois" + ], + "name:fry_x_preferred":[ + "Chinatown" + ], + "name:heb_x_preferred":[ + "\u05e6'\u05d9\u05d9\u05e0\u05d8\u05d0\u05d5\u05df" + ], + "name:hun_x_preferred":[ + "K\u00ednai negyed" + ], + "name:ind_x_preferred":[ + "Pecinan" + ], + "name:isl_x_preferred":[ + "K\u00ednahverfi" + ], + "name:ita_x_preferred":[ + "Chinatown" + ], + "name:jpn_x_preferred":[ + "\u4e2d\u83ef\u8857" + ], + "name:kaz_x_preferred":[ + "\u0427\u0430\u0439\u043d\u0430\u0442\u0430\u0443\u043d" + ], + "name:kor_x_preferred":[ + "\ucc28\uc774\ub098\ud0c0\uc6b4" + ], + "name:lit_x_preferred":[ + "Kin\u0173 kvartalas" + ], + "name:msa_x_preferred":[ + "Pekan Cina" + ], + "name:nld_x_preferred":[ + "Chinatown" + ], + "name:nno_x_preferred":[ + "Chinatown" + ], + "name:nor_x_preferred":[ + "Chinatown" + ], + "name:pol_x_preferred":[ + "Chinatown" + ], + "name:por_x_preferred":[ + "Chinatown" + ], + "name:ron_x_preferred":[ + "Chinatown" + ], + "name:rus_x_preferred":[ + "\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:sah_x_preferred":[ + "\u0427\u0430\u0439\u043d\u0430\u0442\u0430\u0443\u043d" + ], + "name:sco_x_preferred":[ + "Chinatown" + ], + "name:spa_x_preferred":[ + "Barrio chino" + ], + "name:swe_x_preferred":[ + "Chinatown" + ], + "name:tam_x_preferred":[ + "\u0b9a\u0bc0\u0ba9 \u0ba8\u0b95\u0bb0\u0bcd" + ], + "name:tgl_x_preferred":[ + "China Town" + ], + "name:tur_x_preferred":[ + "\u00c7in mahallesi" + ], + "name:ukr_x_preferred":[ + "\u041a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0438\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:zho_x_preferred":[ + "\u5510\u4eba\u8857" + ], + "reversegeo:latitude":40.758567, + "reversegeo:longitude":-73.830476, + "src:geom":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8c9ebbd97a9119d6795c32aefa4e2fd0", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907132697, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907132697, + "wof:lastmodified":1566608539, + "wof:name":"Chinatown", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782865 + ], + "wof:tags":[] +}, + "bbox": [ + -73.83559052249721, + 40.75096821168336, + -73.82191139677495, + 40.76388017512392 +], + "geometry": {"coordinates":[[[[-73.83226276717475,40.7514580072323],[-73.83065819121768,40.75206529495692],[-73.82928044234204,40.75151931738338],[-73.8286909167885,40.75129081356702],[-73.82846506684893,40.7512073252561],[-73.82834851950605,40.75118021842754],[-73.82822632318501,40.75118069215428],[-73.82809166468988,40.75120873609821],[-73.82796132735463,40.75125435171926],[-73.82638626635257,40.75184010584397],[-73.82608548073861,40.75151651262313],[-73.82588292036512,40.75122691482893],[-73.82575596177267,40.75096821168336],[-73.82543282242575,40.75114091790883],[-73.82453028869601,40.7516650207631],[-73.82191139677495,40.75315178336889],[-73.82542150815573,40.75605925269787],[-73.82578466285669,40.75635056947156],[-73.82609233691481,40.75653871968062],[-73.82710151144015,40.75713675579737],[-73.8251967477526,40.75765285815434],[-73.82557817575533,40.75848997401634],[-73.82576396467663,40.75889772292805],[-73.82618684325365,40.75976440529815],[-73.82821800414835,40.76388017512392],[-73.83135247010006,40.76304044310682],[-73.83199622145781,40.76292258658353],[-73.83257470756045,40.76285001607076],[-73.83313428006984,40.76277790020225],[-73.83333392610835,40.76276477101973],[-73.8335991866563,40.76276351188412],[-73.83405609659472,40.76277137512687],[-73.83461324516269,40.76278637380747],[-73.83510761041599,40.76279792558182],[-73.83559052249721,40.76280837058697],[-73.83228549411679,40.75192317463015],[-73.83226276717475,40.7514580072323]]]],"type":"MultiPolygon"} +},{ + "id": 907132699, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000045, + "geom:area_square_m":417640.695315, + "geom:bbox":"-73.8448752627,40.7104387049,-73.8343236768,40.7192668826", + "geom:latitude":40.714552, + "geom:longitude":-73.840292, + "iso:country":"US", + "lbl:latitude":40.714404, + "lbl:longitude":-73.839931, + "lbl:max_zoom":18.0, + "mps:latitude":40.714404, + "mps:longitude":-73.839931, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Forest Hills Gardens" + ], + "name:eng_x_preferred":[ + "Forest Hills Gardens" + ], + "name:fra_x_preferred":[ + "Forest Hills Gardens" + ], + "name:nld_x_preferred":[ + "Forest Hills Gardens" + ], + "name:spa_x_preferred":[ + "Forest Hills Gardens" + ], + "name:urd_x_preferred":[ + "\u0641\u0648\u0631\u0633\u0679 \u06c1\u0644\u0632 \u06af\u0627\u0631\u0688\u0646\u0632\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0641\u0648\u0631\u0633\u0679 \u06c1\u0644\u0632 \u06af\u0627\u0631\u0688\u0646\u0632" + ], + "name:zho_x_preferred":[ + "\u68ee\u6797\u5c0f\u4e18\u793e\u5340" + ], + "reversegeo:latitude":40.714404, + "reversegeo:longitude":-73.839931, + "src:geom":"mz", + "wof:belongsto":[ + 85819875, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1018954" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"afc44c659be655f179c3ee9c57067f95", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907132699, + "neighbourhood_id":85819875, + "region_id":85688543 + } + ], + "wof:id":907132699, + "wof:lastmodified":1566608538, + "wof:name":"Forest Hills Gardens", + "wof:parent_id":85819875, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782893 + ], + "wof:tags":[] +}, + "bbox": [ + -73.84487526265343, + 40.71043870489532, + -73.83432367678449, + 40.71926688256203 +], + "geometry": {"coordinates":[[[[-73.83975796264532,40.71043870489532],[-73.84004389025188,40.71107107362473],[-73.84019593987331,40.71135738781375],[-73.84056988121958,40.71189675743746],[-73.84068103204983,40.71204325951812],[-73.8408363484513,40.71219973844555],[-73.84127115509563,40.71258193136796],[-73.8418699312751,40.71295625230098],[-73.84271681106222,40.71333178432693],[-73.84350983847909,40.713671831935],[-73.84413831865655,40.714021516976],[-73.84443454202827,40.71425259035107],[-73.84451406848021,40.71433019076346],[-73.8445751783313,40.71440155539742],[-73.84466822337777,40.714541223151],[-73.8447467676622,40.71468699932367],[-73.84479066892401,40.7147990299212],[-73.84482921641106,40.71490224911192],[-73.84486354820928,40.71504400659383],[-73.84487407775261,40.71518470560699],[-73.84484690603868,40.71535947073058],[-73.844778932868,40.71560877542026],[-73.84471853458899,40.71576786765709],[-73.84466162107273,40.71591534018114],[-73.84450959652904,40.71619249607065],[-73.84442377067688,40.71631093570804],[-73.84439324591477,40.71636948114577],[-73.84431905826338,40.71666731166889],[-73.84425784617186,40.71703611545536],[-73.84427724796849,40.71728419467676],[-73.84433728463404,40.71757084547652],[-73.84443427021587,40.71784119769252],[-73.84456995639989,40.71825202506245],[-73.84460041095902,40.71834357001304],[-73.84464657480002,40.71855176616191],[-73.84471116110666,40.71880114765012],[-73.84477613341639,40.71895451420031],[-73.84487526265343,40.71912983521276],[-73.84480483465248,40.71925448464028],[-73.84475636649053,40.71926688256203],[-73.84470958922445,40.71926520699968],[-73.84464791490147,40.7192492687837],[-73.84458107864613,40.71922641505726],[-73.843598216582,40.71883722888764],[-73.84282956380956,40.71852173034281],[-73.84223727618983,40.71825483516707],[-73.84101094804079,40.71764720549783],[-73.84051263847479,40.71737711454139],[-73.83914992565799,40.71655617794351],[-73.8378600541896,40.71566830431491],[-73.83709255459867,40.7150446098423],[-73.83432367678449,40.71262726438043],[-73.83599419300454,40.71172745243552],[-73.83611231103399,40.71182793782895],[-73.83685386092385,40.71138030971801],[-73.83804315522086,40.71092665675919],[-73.83975796264532,40.71043870489532]]]],"type":"MultiPolygon"} +},{ + "id": 907132701, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":218171.569136, + "geom:bbox":"-73.8594099178,40.8044578925,-73.8541525591,40.8114224526", + "geom:latitude":40.807929, + "geom:longitude":-73.856762, + "iso:country":"US", + "lbl:latitude":40.80786, + "lbl:longitude":-73.856712, + "lbl:max_zoom":18.0, + "mps:latitude":40.80786, + "mps:longitude":-73.856712, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Harding Park" + ], + "name:eng_x_preferred":[ + "Harding Park" + ], + "name:eng_x_variant":[ + "Little Puerto Rico" + ], + "name:fra_x_preferred":[ + "Harding Park" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30fc\u30c7\u30a3\u30f3\u30b0\u30fb\u30d1\u30fc\u30af" + ], + "reversegeo:latitude":40.80786, + "reversegeo:longitude":-73.856712, + "src:geom":"mz", + "wof:belongsto":[ + 85865667, + 102191575, + 907157031, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q15223005" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e1778a47cad9d9eafb40fb41e8cb51fc", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157031, + "microhood_id":907132701, + "neighbourhood_id":85865667, + "region_id":85688543 + } + ], + "wof:id":907132701, + "wof:lastmodified":1566608537, + "wof:name":"Harding Park", + "wof:parent_id":85865667, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782845 + ], + "wof:tags":[] +}, + "bbox": [ + -73.85940991782047, + 40.80445789246741, + -73.85415255913023, + 40.81142245256327 +], + "geometry": {"coordinates":[[[[-73.85895141221795,40.81027141758673],[-73.85910123068632,40.8110497633062],[-73.85615273164933,40.81142245256327],[-73.85561283723514,40.81065524835865],[-73.85557858545775,40.81057821255293],[-73.85554822064826,40.81048001701816],[-73.85551942583565,40.8103725661781],[-73.85487784912324,40.80745529691521],[-73.85477662522079,40.80715426425432],[-73.85464463750432,40.806687805158],[-73.85457312786848,40.80636273303956],[-73.85415255913023,40.80445789246741],[-73.855388793112,40.80446442729437],[-73.85560958798064,40.80447020557576],[-73.85585446335389,40.80451464613952],[-73.85605162933267,40.80458742968966],[-73.85662613767605,40.80483030421996],[-73.85661813436337,40.80486557116396],[-73.85657780148343,40.80493285194238],[-73.85649692048497,40.8049490132687],[-73.85639785205908,40.80494683571354],[-73.85580840784402,40.80467915750708],[-73.85569047098269,40.80467656607824],[-73.85561389737951,40.80470358427552],[-73.8555635843383,40.80478499633253],[-73.85560497039732,40.8050621570351],[-73.85589835705079,40.80516906078401],[-73.85612542563223,40.8052816817535],[-73.85630011224414,40.80528193146552],[-73.85638598293629,40.80525870442909],[-73.85652361926944,40.80523993225998],[-73.85687753955635,40.80529359302348],[-73.85694865178853,40.80527461477431],[-73.85704443304995,40.80529518503101],[-73.85712145614185,40.80533047515874],[-73.85720240525754,40.80532586934806],[-73.85724491988472,40.80530723861875],[-73.8572196386454,40.8052387180967],[-73.85712793760422,40.8051854945613],[-73.85692623129673,40.80511549422761],[-73.85667579658291,40.80499537082351],[-73.85667488240547,40.8049519107047],[-73.85683421024351,40.80490927121802],[-73.85763302681652,40.80526239438728],[-73.85812705699666,40.80546652055186],[-73.85873606356645,40.80579410683734],[-73.85889037502282,40.8058894911778],[-73.85891121201276,40.80591275573492],[-73.85891177250495,40.80595412602398],[-73.8588720650425,40.80597968963234],[-73.85882643239111,40.80599319272257],[-73.8587828442472,40.80597807348772],[-73.8587472261362,40.80594488505039],[-73.85870561157668,40.80593428886375],[-73.85862247210316,40.80587090993274],[-73.85857294496424,40.8058512633453],[-73.85850560039157,40.80581954279276],[-73.8584558076315,40.80592494177482],[-73.8584438535961,40.80595204619492],[-73.85841209142353,40.80597008614135],[-73.85831487706882,40.80599859201727],[-73.85831274962035,40.80606638471763],[-73.85838196938259,40.80614933143647],[-73.85838583154188,40.80619754682924],[-73.85839959570859,40.80625180008718],[-73.85839336577081,40.80638437096099],[-73.85839331448696,40.80640847622133],[-73.85846091890531,40.80640804326605],[-73.85850311702904,40.80642426976239],[-73.85851230178717,40.80648936177219],[-73.85850533176831,40.80654401390629],[-73.85851704174496,40.80663788375714],[-73.85861191901107,40.80669751353776],[-73.85880946373938,40.80669843629848],[-73.85893471726445,40.80667435866596],[-73.85901926254431,40.80660675020764],[-73.85908475852688,40.80648021816353],[-73.85909209311879,40.80644527138677],[-73.85908344078167,40.80640897827178],[-73.85905716576792,40.80636617503826],[-73.85904704593524,40.80634323705253],[-73.85900263278417,40.8062928076731],[-73.85897431305875,40.80623623656643],[-73.8589580820161,40.8061827082551],[-73.85889742868723,40.8060756889904],[-73.85885706633594,40.8060359639903],[-73.85885297633476,40.80600843045449],[-73.85887709403204,40.80598850810082],[-73.8589092914092,40.80598081606929],[-73.85893141325231,40.80596854564148],[-73.85897232007956,40.80596606723786],[-73.8591273340373,40.80615718170313],[-73.8591954502449,40.80626987782976],[-73.85925939022816,40.8064115816122],[-73.8593660233233,40.80667568320786],[-73.85940991782047,40.80732012080972],[-73.85940191920211,40.80752959133731],[-73.85937656357407,40.8075682956752],[-73.85931295377836,40.80757160173403],[-73.85925775276093,40.80754267300781],[-73.85925309049085,40.80735899842601],[-73.85922737652773,40.80724302374522],[-73.85922265247635,40.80703357001644],[-73.85920549594738,40.80694980690166],[-73.85915868148831,40.80687897464914],[-73.85908225488018,40.80684040682205],[-73.85882779743032,40.80684074432751],[-73.85866505169217,40.80683275149566],[-73.85866500000019,40.80683300000016],[-73.85838996228829,40.80825880914895],[-73.85877452654438,40.8092339756382],[-73.85895141221795,40.81027141758673]]]],"type":"MultiPolygon"} +},{ + "id": 957643097, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000091, + "geom:area_square_m":836061.224293, + "geom:bbox":"-87.7210406755,41.8739537452,-87.7108860028,41.8881405632", + "geom:latitude":41.881465, + "geom:longitude":-87.717291, + "iso:country":"US", + "lbl:latitude":41.882806, + "lbl:longitude":-87.717896, + "lbl:max_zoom":18.0, + "mps:latitude":41.882806, + "mps:longitude":-87.717896, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":14.0, + "mz:min_zoom":13.0, + "name:ceb_x_preferred":[ + "Garfield Park" + ], + "name:swe_x_preferred":[ + "Garfield Park" + ], + "reversegeo:latitude":41.882806, + "reversegeo:longitude":-87.717896, + "src:geom":"mz", + "wof:belongsto":[ + 420518777, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fe2473c214224fb75279e059b2722111", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957643097, + "neighbourhood_id":420518777, + "region_id":85688697 + } + ], + "wof:id":957643097, + "wof:lastmodified":1566624175, + "wof:name":"Garfield Park", + "wof:parent_id":420518777, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783481, + 420518857 + ], + "wof:tags":[] +}, + "bbox": [ + -87.72104067552648, + 41.8739537452219, + -87.71088600284835, + 41.88814056324068 +], + "geometry": {"coordinates":[[[[-87.72070871233625,41.87395885345435],[-87.72104067552648,41.88810866600207],[-87.71594191582734,41.88814056324068],[-87.71592049246725,41.88501455814377],[-87.71088600284835,41.8846636704906],[-87.71089807407556,41.88091718649125],[-87.71100553628,41.8809168423211],[-87.7112893020672,41.8809159329435],[-87.71164166749389,41.880909718049],[-87.71215449591659,41.8809044799084],[-87.7126192709657,41.8808976902367],[-87.7130955732063,41.8808912348168],[-87.71337058144449,41.8808872587155],[-87.7136148084318,41.8808844103152],[-87.71392230908179,41.8808808231025],[-87.71433757329559,41.8808750763846],[-87.71476407520061,41.8808692240405],[-87.7149753244228,41.8808655762847],[-87.7152256296412,41.8808612536129],[-87.7154934874852,41.8808599971243],[-87.715499792315,41.8808611646928],[-87.7156528288035,41.8808592436673],[-87.7158939901594,41.8808555874291],[-87.71588947636479,41.8807089240013],[-87.7158832647701,41.8805302400631],[-87.71587990196829,41.8803836791384],[-87.71587030738419,41.8801216067413],[-87.7158656472084,41.8799648302268],[-87.7158617064575,41.8798401652814],[-87.7158509552003,41.8795327519293],[-87.71584538009741,41.8793733357257],[-87.7158357397178,41.8790740510223],[-87.7158291297775,41.8788719290048],[-87.7158222879517,41.8786557551788],[-87.71581591846039,41.8784591778219],[-87.7158094182074,41.8782660023492],[-87.7158036130256,41.8780934679098],[-87.7157972137778,41.8778961768681],[-87.71578615552301,41.8775878284375],[-87.7157793567106,41.8773786526289],[-87.71577385439249,41.877211555051],[-87.71576816234391,41.8770386896816],[-87.71576182057839,41.876850701918],[-87.7157592729678,41.8767777463343],[-87.71575525801251,41.8766627678455],[-87.7157494510773,41.8764954745894],[-87.71574269110729,41.8762975778158],[-87.7157351310002,41.8760759666858],[-87.7157232388513,41.8756788884903],[-87.7157179870144,41.8755035333866],[-87.7157146064262,41.8753864452101],[-87.7157100290972,41.8752279129616],[-87.7157063320866,41.8751208099542],[-87.7157040573891,41.8750549107348],[-87.71569629543031,41.8748390336789],[-87.7156875314494,41.8746014990869],[-87.7156697406437,41.8740389966204],[-87.7181502751844,41.8739977217102],[-87.7197830233707,41.8739537452219],[-87.72070871233625,41.87395885345435]]]],"type":"MultiPolygon"} +},{ + "id": 957705271, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000017, + "geom:area_square_m":159334.736506, + "geom:bbox":"-87.6597473777,41.9715210374,-87.654884657,41.9752193553", + "geom:latitude":41.97337, + "geom:longitude":-87.65732, + "iso:country":"US", + "lbl:latitude":41.973371, + "lbl:longitude":-87.65732, + "lbl:max_zoom":18.0, + "mps:latitude":41.973371, + "mps:longitude":-87.65732, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "West Argyle Street Historic District" + ], + "name:eng_x_preferred":[ + "West Argyle Street Historic District" + ], + "name:eng_x_variant":[ + "Little Saigon", + "New Chinatown", + "Southeast Asia Town", + "Little Vietnam" + ], + "name:fra_x_preferred":[ + "West Argyle Street Historic District" + ], + "name:nld_x_preferred":[ + "West Argyle Street Historic District" + ], + "name:zho_x_preferred":[ + "\u897f\u4e9a\u7686\u8001\u8857\u5386\u53f2\u8857\u533a" + ], + "reversegeo:latitude":41.973371, + "reversegeo:longitude":-87.65732, + "src:geom":"mz", + "wof:belongsto":[ + 85865771, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2564147" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ec65eeafcc2b104d4c88f3e6434b125e", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957705271, + "neighbourhood_id":85865771, + "region_id":85688697 + } + ], + "wof:id":957705271, + "wof:lastmodified":1566624176, + "wof:name":"West Argyle Street Historic District", + "wof:parent_id":85865771, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783521 + ], + "wof:tags":[] +}, + "bbox": [ + -87.65974737768443, + 41.97152103736463, + -87.65488465697285, + 41.97521935525745 +], + "geometry": {"coordinates":[[[[-87.65488465697285,41.9715932693018],[-87.65966950443857,41.97152103736463],[-87.65974737768443,41.97514914556882],[-87.6549781755311,41.97521935525745],[-87.65497574438341,41.9751579363467],[-87.6549657480181,41.9746929549653],[-87.6549588908462,41.9743757398233],[-87.65495512578509,41.9742974255497],[-87.65495051599559,41.9742015434031],[-87.65493831967861,41.9736874549259],[-87.6549307478837,41.9734168048602],[-87.6549283931239,41.9733130966666],[-87.6549251843179,41.973171769491],[-87.65491382191701,41.9726761548685],[-87.6548982630266,41.9721047202968],[-87.6548862388871,41.9716784199193],[-87.65488465697285,41.9715932693018]]]],"type":"MultiPolygon"} +},{ + "id": 957760607, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000043, + "geom:area_square_m":396748.884863, + "geom:bbox":"-87.6371103399,41.8891744916,-87.6310603763,41.896635635", + "geom:latitude":41.892906, + "geom:longitude":-87.634071, + "iso:country":"US", + "lbl:latitude":41.8929, + "lbl:longitude":-87.634072, + "lbl:max_zoom":18.0, + "mps:latitude":41.8929, + "mps:longitude":-87.634072, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Gallery District" + ], + "reversegeo:latitude":41.8929, + "reversegeo:longitude":-87.634072, + "src:geom":"mz", + "wof:belongsto":[ + 85866931, + 102191575, + 404496273, + 85633793, + 85940195, + 957999223, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f4be113f0440d77cb25b1e78a36677d2", + "wof:hierarchy":[ + { + "borough_id":957999223, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957760607, + "neighbourhood_id":85866931, + "region_id":85688697 + } + ], + "wof:id":957760607, + "wof:lastmodified":1566624176, + "wof:name":"River North Gallery District", + "wof:parent_id":85866931, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783531 + ], + "wof:tags":[] +}, + "bbox": [ + -87.63711033991653, + 41.88917449155208, + -87.63106037632127, + 41.8966356349594 +], + "geometry": {"coordinates":[[[[-87.63106037632127,41.8892335953745],[-87.63686335196535,41.88917449155208],[-87.63711033991653,41.89655244726876],[-87.63705161056269,41.8965535635809],[-87.6368882603056,41.8965566682227],[-87.63650839099191,41.8965630950729],[-87.6362011649322,41.896566419436],[-87.635922534562,41.8965694336646],[-87.6358628672982,41.8965720978908],[-87.6358628478234,41.8965720985958],[-87.63569411463401,41.8965796584129],[-87.6356716666795,41.8965806573237],[-87.63567165712421,41.8965806578145],[-87.63543786870061,41.8965911106879],[-87.63521033560041,41.896580734771],[-87.6350690738887,41.8965826761045],[-87.6349577988892,41.8965842049618],[-87.63477534766319,41.8965869659514],[-87.6347733095634,41.8965869936189],[-87.6347664653254,41.8965870864508],[-87.63454416031129,41.8965909166407],[-87.63446685417129,41.8965922483246],[-87.63420286410221,41.8965958219574],[-87.63392423249429,41.8965995700771],[-87.63383500804041,41.896600770292],[-87.6336283913088,41.8966029741854],[-87.6336283729419,41.8966029743479],[-87.6335022254474,41.8966043304911],[-87.6330921914215,41.8966089142862],[-87.63296311628871,41.8966103568143],[-87.6329132401227,41.8966112013431],[-87.63278623323571,41.8966133524999],[-87.63270949499911,41.8966132624813],[-87.6326983544251,41.8966132529615],[-87.6326482117606,41.896614082028],[-87.6322331587514,41.8966209861354],[-87.6319864604536,41.896625088619],[-87.63198538993581,41.8966251065045],[-87.63198264236659,41.8966251528409],[-87.6318124261737,41.8966275763289],[-87.6315480250129,41.896631333168],[-87.6312452478647,41.8966356349594],[-87.6312433023284,41.8965092038305],[-87.6312415163074,41.8963930919991],[-87.6312382712153,41.8962338354315],[-87.63123351020791,41.8960001733669],[-87.6312274067495,41.8957928019179],[-87.6312229841123,41.8956346550378],[-87.6312138395225,41.8953066596592],[-87.6312074983735,41.8950534278044],[-87.6312074980963,41.89505341957],[-87.6312029008228,41.8948329897922],[-87.6312021789081,41.8947986681573],[-87.631200057295,41.8946978445741],[-87.6311963374193,41.8945030430809],[-87.63119545310779,41.8944567218269],[-87.6311901948429,41.8941792449155],[-87.6311869064271,41.8940314367014],[-87.6311851298173,41.89395179825],[-87.63117787458179,41.8936682265031],[-87.63117760696839,41.8936582545064],[-87.6311775425262,41.8936558553751],[-87.6311727325748,41.8934671286841],[-87.6311709766227,41.893398248308],[-87.6311684295387,41.8932289369249],[-87.631167672478,41.8931790143534],[-87.63116680100281,41.893121564189],[-87.63116059874341,41.8928663745243],[-87.63115939155669,41.8928236138513],[-87.63115224410291,41.8925693500621],[-87.63114771142889,41.892459235626],[-87.6311463987666,41.8924273466982],[-87.6311423697269,41.8923293302901],[-87.6311417847073,41.8921942567264],[-87.6311375663514,41.892031774551],[-87.6311375661405,41.8920317602796],[-87.631137442303,41.8920269711026],[-87.63113554409119,41.8919532114082],[-87.6311301064068,41.8917419731348],[-87.6311278261863,41.8916661394759],[-87.631126623171,41.8916261194893],[-87.6311258078382,41.8915986216338],[-87.6311235795766,41.891523510574],[-87.631115330192,41.891224042392],[-87.631114832802,41.8912054416512],[-87.6311082301013,41.8909583699257],[-87.63110822979419,41.8909583644353],[-87.6311080746011,41.8909501343401],[-87.63110569311451,41.8908236625496],[-87.6311039200304,41.8907295306563],[-87.63109894492931,41.8905809255395],[-87.63109373601149,41.8904253354517],[-87.63109300565949,41.8904031246104],[-87.63108653296609,41.8901619326264],[-87.63108414072541,41.8900928800972],[-87.6310816499995,41.8900209831107],[-87.6310797541435,41.8899667999777],[-87.63107717055991,41.8898929869433],[-87.6310705654713,41.8896213061869],[-87.6310705652453,41.8896212932876],[-87.6310704707851,41.8896174104357],[-87.63106986796539,41.8895924764399],[-87.63106830706209,41.8895293749293],[-87.63106338879319,41.8893305620868],[-87.63106074679339,41.8892455214574],[-87.63106037632127,41.8892335953745]]]],"type":"MultiPolygon"} +},{ + "id": 907138579, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":195995.156581, + "geom:bbox":"-74.0074136204,40.7520451151,-73.9991467138,40.7571177917", + "geom:latitude":40.754644, + "geom:longitude":-74.00323, + "iso:country":"US", + "lbl:latitude":40.754648, + "lbl:longitude":-74.00323, + "lbl:max_zoom":18.0, + "mps:latitude":40.754648, + "mps:longitude":-74.00323, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:deu_x_preferred":[ + "Hudson Yards" + ], + "name:eng_x_preferred":[ + "Hudson Yards" + ], + "name:fas_x_preferred":[ + "\u0647\u0627\u062f\u0633\u0646 \u06cc\u0627\u0631\u062f\u0632" + ], + "name:fra_x_preferred":[ + "Hudson Yards" + ], + "name:ita_x_preferred":[ + "Hudson Yards" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30c9\u30bd\u30f3\u30fb\u30e4\u30fc\u30c9" + ], + "name:kor_x_preferred":[ + "\ud5c8\ub4dc\uc2a8 \uc57c\ub4dc" + ], + "name:por_x_preferred":[ + "Hudson Yards" + ], + "name:rus_x_preferred":[ + "\u0425\u0430\u0434\u0441\u043e\u043d-\u042f\u0440\u0434\u0441" + ], + "name:spa_x_preferred":[ + "Hudson Yards" + ], + "name:zho_x_preferred":[ + "\u54c8\u5fb7\u905c\u6a5f\u5ee0\u91cd\u767c\u5c55\u8a08\u756b" + ], + "reversegeo:latitude":40.754648, + "reversegeo:longitude":-74.00323, + "src:geom":"mz", + "wof:belongsto":[ + 85810589, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1633867" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"15dd789409f720a5be3e23c6663b830c", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907138579, + "neighbourhood_id":85810589, + "region_id":85688543 + } + ], + "wof:id":907138579, + "wof:lastmodified":1566608554, + "wof:name":"Hudson Yards", + "wof:parent_id":85810589, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782819 + ], + "wof:tags":[] +}, + "bbox": [ + -74.00741362036908, + 40.75204511506378, + -73.99914671384737, + 40.75711779172578 +], + "geometry": {"coordinates":[[[[-74.00100748759573,40.75204511506378],[-74.00729966623709,40.75471526609864],[-74.00728499944334,40.75473556820315],[-74.00741362036908,40.75478930266944],[-74.0072718117477,40.75498559453523],[-74.00714468360989,40.75493248117352],[-74.00639424460421,40.75597200955227],[-74.00556710062965,40.75711779172578],[-74.00492700000017,40.75702300000019],[-73.99914671384737,40.75458592918759],[-74.00100748759573,40.75204511506378]]]],"type":"MultiPolygon"} +},{ + "id": 957768631, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000028, + "geom:area_square_m":256214.897354, + "geom:bbox":"-87.6941815922,41.8907153294,-87.6866855129,41.8957432738", + "geom:latitude":41.893719, + "geom:longitude":-87.689972, + "iso:country":"US", + "lbl:latitude":41.89372, + "lbl:longitude":-87.689971, + "lbl:max_zoom":18.0, + "mps:latitude":41.89372, + "mps:longitude":-87.689971, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Smith Park" + ], + "name:eng_x_variant":[ + "The Patch" + ], + "name:swe_x_preferred":[ + "Smith Park" + ], + "reversegeo:latitude":41.89372, + "reversegeo:longitude":-87.689971, + "src:geom":"mz", + "wof:belongsto":[ + 85866935, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"70adced285991071ac424d7db890cfac", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957768631, + "neighbourhood_id":85866935, + "region_id":85688697 + } + ], + "wof:id":957768631, + "wof:lastmodified":1566624176, + "wof:name":"Smith Park", + "wof:parent_id":85866935, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783495 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6941815922366, + 41.89071532942679, + -87.6866855128736, + 41.89574327381573 +], + "geometry": {"coordinates":[[[[-87.68684087488364,41.89574327381573],[-87.68668551287359,41.8907155844737],[-87.68745108633253,41.89071532942679],[-87.69412414454156,41.89340319673217],[-87.6941815922366,41.89566893547218],[-87.6938452693078,41.8956720191094],[-87.6937952377296,41.895672536312],[-87.6933142839783,41.8956775680713],[-87.6931341785031,41.8956794730191],[-87.6927741117005,41.895683557295],[-87.6921831483681,41.8956889036569],[-87.6917873602256,41.8957023076269],[-87.6917725928045,41.8957022155196],[-87.6912122800907,41.8956987094525],[-87.6910221461951,41.8957007196649],[-87.690891851507,41.8957021038662],[-87.6905416396763,41.8957049925853],[-87.6901207911893,41.8957084626519],[-87.68975110918051,41.8957117152032],[-87.6896004302566,41.8957130111369],[-87.689307469086,41.8957161999972],[-87.6885005442125,41.8957249793051],[-87.68819962840099,41.8957274332384],[-87.6878027608351,41.8957312079057],[-87.6875073491366,41.8957341895937],[-87.68725021364109,41.8957368046493],[-87.68684259798449,41.8957432465927],[-87.68684087488364,41.89574327381573]]]],"type":"MultiPolygon"} +},{ + "id": 907158463, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000063, + "geom:area_square_m":590350.53778, + "geom:bbox":"-74.1144008108,40.610215,-74.097658,40.616414", + "geom:latitude":40.612611, + "geom:longitude":-74.106325, + "iso:country":"US", + "lbl:latitude":40.612923, + "lbl:longitude":-74.105329, + "lbl:max_zoom":18.0, + "mps:latitude":40.612923, + "mps:longitude":-74.105329, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Sunnyside" + ], + "name:fra_x_preferred":[ + "Sunnyside" + ], + "name:heb_x_preferred":[ + "\u05e1\u05d0\u05e0\u05d9\u05e1\u05d9\u05d9\u05d3" + ], + "name:ita_x_preferred":[ + "Sunnyside" + ], + "name:jpn_x_preferred":[ + "\u30b5\u30cb\u30fc\u30b5\u30a4\u30c9" + ], + "name:tur_x_preferred":[ + "Sunnyside" + ], + "name:urd_x_preferred":[ + "\u0633\u0646\u06cc \u0633\u0627\u0626\u0688\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0633\u0646\u06cc \u0633\u0627\u0626\u0688" + ], + "name:zho_x_preferred":[ + "\u967d\u908a" + ], + "reversegeo:latitude":40.612923, + "reversegeo:longitude":-74.105329, + "src:geom":"mz", + "wof:belongsto":[ + 85809781, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7523819" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2bd4f65d0d8388238b8d0df4008f2b03", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907158463, + "neighbourhood_id":85809781, + "region_id":85688543 + } + ], + "wof:id":907158463, + "wof:lastmodified":1566608542, + "wof:name":"Sunnyside", + "wof:parent_id":85809781, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782927 + ], + "wof:tags":[] +}, + "bbox": [ + -74.11440081076474, + 40.61021500000015, + -74.09765799999988, + 40.61641400000022 +], + "geometry": {"coordinates":[[[[-74.11398746524245,40.61113857185813],[-74.11440081076474,40.61374670877803],[-74.11339714922052,40.61386062191989],[-74.1121371297322,40.61403518459364],[-74.11104011618448,40.6142143838788],[-74.10805774643238,40.61484505740263],[-74.1063870744005,40.61525690824593],[-74.10504078414041,40.61573107903705],[-74.10351100000011,40.61641400000022],[-74.10209,40.6146],[-74.09962322445985,40.61263544970712],[-74.09935,40.612419],[-74.09906796642892,40.61201504485216],[-74.09818,40.61074200000023],[-74.09765799999988,40.61050300000017],[-74.10535,40.61021500000015],[-74.10666999999999,40.610418],[-74.10978299999999,40.61025400000018],[-74.10997999999999,40.61045600000019],[-74.11125,40.61075900000021],[-74.11398746524245,40.61113857185813]]]],"type":"MultiPolygon"} +},{ + "id": 907157037, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":129306.439111, + "geom:bbox":"-73.9799829616,40.732145244,-73.973633314,40.7368546308", + "geom:latitude":40.734641, + "geom:longitude":-73.976644, + "iso:country":"US", + "lbl:latitude":40.734717, + "lbl:longitude":-73.976598, + "lbl:max_zoom":18.0, + "mps:latitude":40.734717, + "mps:longitude":-73.976598, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ast_x_preferred":[ + "Stuyvesant Town" + ], + "name:deu_x_preferred":[ + "Stuyvesant Town\u2013Peter Cooper Village" + ], + "name:eng_x_preferred":[ + "Stuyvesant Town\u2014Peter Cooper Village" + ], + "name:eng_x_variant":[ + "Stuyvesant Town\u2013Peter Cooper Village" + ], + "name:fra_x_preferred":[ + "Stuyvesant Town" + ], + "name:ind_x_preferred":[ + "Stuyvesant Town\u2014Peter Cooper Village" + ], + "name:ita_x_preferred":[ + "Stuyvesant Town-Peter Cooper Village" + ], + "name:jpn_x_preferred":[ + "\u30b9\u30c8\u30a4\u30d5\u30a7\u30b5\u30f3\u30c8\u30fb\u30bf\u30a6\u30f3" + ], + "name:nld_x_preferred":[ + "Stuyvesant Town\u2014Peter Cooper Village" + ], + "name:pol_x_preferred":[ + "Stuyvesant Town-Peter Cooper Village" + ], + "name:por_x_preferred":[ + "Stuyvesant Town" + ], + "name:rus_x_preferred":[ + "\u0421\u0442\u0430\u0439\u0432\u0435\u0441\u0430\u043d\u0442-\u0442\u0430\u0443\u043d\u2013\u041f\u0438\u0442\u0435\u0440-\u041a\u0443\u043f\u0435\u0440-\u0412\u0438\u043b\u043b\u0438\u0434\u0436" + ], + "name:spa_x_preferred":[ + "Stuyvesant Town" + ], + "name:zho_x_preferred":[ + "\u53f2\u5cb1\u6587\u68ee\u9547" + ], + "reversegeo:latitude":40.734717, + "reversegeo:longitude":-73.976598, + "src:geom":"mz", + "wof:belongsto":[ + 85851295, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1588578" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c8d3ffbc6c8a8bdcbaf929cbe162ebe2", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907157037, + "neighbourhood_id":85851295, + "region_id":85688543 + } + ], + "wof:id":907157037, + "wof:lastmodified":1566608539, + "wof:name":"Peter Cooper Village", + "wof:parent_id":85851295, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782817 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97998296156874, + 40.73214524398909, + -73.97363331401385, + 40.73685463083869 +], + "geometry": {"coordinates":[[[[-73.97363331401385,40.73214524398909],[-73.97998296156874,40.73483763223457],[-73.97852745096854,40.73685463083869],[-73.97852665982734,40.73685429290821],[-73.97490700000019,40.73531257232341],[-73.97464800000016,40.73508157232366],[-73.97437768139221,40.73507968198351],[-73.97437804208253,40.7350811121824],[-73.97437768139221,40.73508110966015],[-73.97395905029718,40.73342116553862],[-73.97394321924939,40.73340308886323],[-73.97390702695189,40.73334971660822],[-73.97386631865599,40.73331097608678],[-73.97384483854887,40.73326536111374],[-73.97386520802414,40.73324642803962],[-73.97385730036505,40.73321630363873],[-73.97384145962664,40.73321974036562],[-73.97384937381277,40.73323265510626],[-73.97383126846692,40.73324556510911],[-73.97380976846563,40.73324899937294],[-73.97378375783403,40.73322748070547],[-73.97380298847436,40.73321198753979],[-73.97378376867154,40.73319993482695],[-73.9737645264947,40.73321284338785],[-73.9737271870777,40.73321971435088],[-73.97368984982587,40.73321885110602],[-73.97367627576068,40.73320593388798],[-73.97369212859827,40.73317409574745],[-73.97373739762324,40.73314311937235],[-73.97381887171848,40.73309924765456],[-73.97387206174018,40.7330949548066],[-73.97386810776209,40.73306568719559],[-73.97365868442448,40.73224470158658],[-73.97363331401385,40.73214524398909]]]],"type":"MultiPolygon"} +},{ + "id": 907157039, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":146060.47962, + "geom:bbox":"-73.8231542064,40.7538763131,-73.8157011609,40.7588401071", + "geom:latitude":40.756487, + "geom:longitude":-73.819362, + "iso:country":"US", + "lbl:latitude":40.756491, + "lbl:longitude":-73.819305, + "lbl:max_zoom":18.0, + "mps:latitude":40.756491, + "mps:longitude":-73.819305, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "Waldheim" + ], + "name:ces_x_preferred":[ + "Waldheim" + ], + "name:deu_x_preferred":[ + "Waldheim" + ], + "name:fra_x_preferred":[ + "Waldheim" + ], + "name:heb_x_preferred":[ + "\u05d5\u05dc\u05d3\u05d4\u05d9\u05d9\u05dd" + ], + "name:nld_x_preferred":[ + "Waldheim" + ], + "name:pol_x_preferred":[ + "Waldheim" + ], + "name:rus_x_preferred":[ + "\u0412\u0430\u043b\u044c\u0434\u0445\u0430\u0439\u043c" + ], + "name:tur_x_preferred":[ + "Waldheim" + ], + "reversegeo:latitude":40.756491, + "reversegeo:longitude":-73.819305, + "src:geom":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"432e438a2117800b476448bdb76228bc", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907157039, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907157039, + "wof:lastmodified":1566608540, + "wof:name":"Waldheim", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782871 + ], + "wof:tags":[] +}, + "bbox": [ + -73.8231542063608, + 40.7538763131276, + -73.81570116085783, + 40.7588401070978 +], + "geometry": {"coordinates":[[[[-73.8231542063608,40.75815560659947],[-73.82068907254576,40.7588401070978],[-73.81570116085783,40.7556241480837],[-73.81839484959767,40.7538763131276],[-73.8231542063608,40.75815560659947]]]],"type":"MultiPolygon"} +},{ + "id": 907157041, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":56087.849544, + "geom:bbox":"-73.8610704884,40.671269,-73.857633177,40.6740213624", + "geom:latitude":40.672521, + "geom:longitude":-73.859417, + "iso:country":"US", + "lbl:latitude":40.672463, + "lbl:longitude":-73.859449, + "lbl:max_zoom":18.0, + "mps:latitude":40.672463, + "mps:longitude":-73.859449, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ceb_x_preferred":[ + "The Hole" + ], + "name:deu_x_preferred":[ + "The Hole" + ], + "name:fas_x_preferred":[ + "\u062d\u0641\u0631\u0647" + ], + "name:fin_x_preferred":[ + "The Hole" + ], + "name:fra_x_preferred":[ + "The Hole" + ], + "name:ita_x_preferred":[ + "The Hole" + ], + "name:nld_x_preferred":[ + "The Hole" + ], + "name:swe_x_preferred":[ + "The Hole" + ], + "reversegeo:latitude":40.672463, + "reversegeo:longitude":-73.859449, + "src:geom":"mz", + "wof:belongsto":[ + 420782889, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bedfb5604c3f334bc5d7c5bce13b4548", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907157041, + "neighbourhood_id":420782889, + "region_id":85688543 + } + ], + "wof:id":907157041, + "wof:lastmodified":1566608539, + "wof:name":"The Hole", + "wof:parent_id":420782889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782887 + ], + "wof:tags":[] +}, + "bbox": [ + -73.86107048844883, + 40.67126900000031, + -73.85763317698049, + 40.6740213623896 +], + "geometry": {"coordinates":[[[[-73.85794356919956,40.67306596933441],[-73.85763317698049,40.67165597514841],[-73.85920272967799,40.67143557714634],[-73.86038899999987,40.67126900000031],[-73.86107048844883,40.6740213623896],[-73.85794356919956,40.67306596933441]]]],"type":"MultiPolygon"} +},{ + "id": 907160287, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000288, + "geom:area_square_m":2695272.022274, + "geom:bbox":"-73.9282773083,40.7708424483,-73.8958291438,40.7909454938", + "geom:latitude":40.781724, + "geom:longitude":-73.911817, + "iso:country":"US", + "lbl:latitude":40.783317, + "lbl:longitude":-73.910715, + "lbl:max_zoom":18.0, + "mps:latitude":40.783317, + "mps:longitude":-73.910715, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":40.783317, + "reversegeo:longitude":-73.910715, + "src:geom":"mz", + "wof:belongsto":[ + 85803821, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"2df191ddf1c78c08bc449857e9d48e17", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907160287, + "neighbourhood_id":85803821, + "region_id":85688543 + } + ], + "wof:id":907160287, + "wof:lastmodified":1566608542, + "wof:name":"Ditmars", + "wof:parent_id":85803821, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782899 + ], + "wof:tags":[] +}, + "bbox": [ + -73.92827730832718, + 40.77084244830798, + -73.8958291437706, + 40.79094549378188 +], + "geometry": {"coordinates":[[[[-73.90267682857933,40.7803825811765],[-73.9064428052469,40.77973140986767],[-73.91734239826137,40.77084244830798],[-73.92232316418463,40.77441462556701],[-73.92303561343148,40.77538727850727],[-73.92397602375762,40.77462199867437],[-73.92827730832718,40.77689897532441],[-73.9270822901822,40.77771978119378],[-73.92631833403907,40.77824177518493],[-73.92481615546201,40.77875769162326],[-73.92423363007519,40.77910119376548],[-73.92318694397959,40.78024839362788],[-73.92295652690137,40.7804410081222],[-73.92263013830839,40.780564785728],[-73.92209965499441,40.78085187463689],[-73.92097562099683,40.78176769150645],[-73.91996458792964,40.78263506903902],[-73.91909034674545,40.783367646004],[-73.91818862939189,40.78393296611366],[-73.91773807440363,40.78407595141041],[-73.91724516427523,40.78414200119836],[-73.91717118646432,40.78419348437143],[-73.91718200679624,40.78455206368196],[-73.91683277016425,40.78519139248732],[-73.91575172894562,40.7861075785781],[-73.91541718757422,40.78606392941098],[-73.91526013936101,40.78619221664151],[-73.91558710139766,40.78642963116581],[-73.91423947964569,40.78785620956335],[-73.91259985911492,40.78937632963388],[-73.91222952426365,40.78917927996614],[-73.91206853578736,40.78933865381291],[-73.91195110905574,40.78940179722101],[-73.9120797502442,40.78952181498954],[-73.91177445569409,40.78972251040848],[-73.91161831292104,40.78958615442998],[-73.91124959039151,40.78974393630266],[-73.91113056873597,40.7901140760953],[-73.9098586292578,40.79094549378188],[-73.90677991420704,40.79037510915573],[-73.90649492923365,40.79018099034462],[-73.90251173700865,40.78947208502826],[-73.90239936084069,40.78955162068589],[-73.90206327886831,40.78949440549523],[-73.90203428533839,40.78941468642665],[-73.90077375891737,40.78914381825157],[-73.90032629743821,40.7890076628257],[-73.89693993562564,40.78662466896971],[-73.89651204913615,40.78606865902599],[-73.8963790528033,40.78613108158351],[-73.89640086049128,40.78615791177354],[-73.89635251322336,40.78617931020325],[-73.89630366096529,40.78611920156258],[-73.89635026246752,40.78609731961278],[-73.89636888344323,40.78612023020099],[-73.89650254833983,40.78605746784402],[-73.89637855982232,40.78590898109444],[-73.89626785620466,40.78596057194638],[-73.8962865269983,40.7859837186365],[-73.8962180352292,40.78601602287127],[-73.89604376668133,40.78579998748045],[-73.89611381864468,40.78576734216538],[-73.89613322780038,40.78579140356483],[-73.89624259793266,40.78574043299193],[-73.89614015089819,40.78560716728828],[-73.89600516772025,40.78566665023859],[-73.89602744472332,40.78568928642575],[-73.89598001322786,40.78571167576893],[-73.89592962975526,40.78564894431381],[-73.89597673220965,40.78562708775973],[-73.89599975377493,40.78565575201835],[-73.89612632632513,40.78559316931142],[-73.8958291437706,40.78522152738348],[-73.89683173824393,40.78442766370344],[-73.89677700751379,40.78438842096362],[-73.89675857252607,40.78440327601171],[-73.89672269281469,40.78437754932576],[-73.89673441949857,40.7843680993418],[-73.89672513646201,40.78436144210915],[-73.89673005421018,40.78435747867778],[-73.89672052173832,40.78435064397937],[-73.89675564813932,40.78432233937576],[-73.89677182707425,40.78433394159836],[-73.89678844985491,40.78432054842666],[-73.89682807945509,40.78434896505372],[-73.89680660094373,40.78436627012364],[-73.8968593888039,40.7844041204827],[-73.89708339167623,40.78425125951734],[-73.89697315561348,40.78416049796692],[-73.898748976384,40.78278115576604],[-73.90114577552113,40.7827111060906],[-73.90172373164526,40.78212925463784],[-73.90218781908904,40.78175713879029],[-73.90251248041793,40.78110825136061],[-73.90258049398926,40.78081489812362],[-73.90267723582109,40.78059413174242],[-73.90267682857933,40.7803825811765]]]],"type":"MultiPolygon"} +},{ + "id": 957919663, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000112, + "geom:area_square_m":1029879.212796, + "geom:bbox":"-87.6366453363,41.8272333897,-87.6305758148,41.8474626932", + "geom:latitude":41.837223, + "geom:longitude":-87.633642, + "iso:country":"US", + "lbl:latitude":41.8372, + "lbl:longitude":-87.633601, + "lbl:max_zoom":18.0, + "mps:latitude":41.8372, + "mps:longitude":-87.633601, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Armour Square" + ], + "name:fra_x_preferred":[ + "Armour Square" + ], + "name:por_x_preferred":[ + "Armour Square" + ], + "name:srp_x_preferred":[ + "Armor Skver" + ], + "name:zho_x_preferred":[ + "\u76d4\u7532\u5ee3\u5834" + ], + "reversegeo:latitude":41.8372, + "reversegeo:longitude":-87.633601, + "src:geom":"mz", + "wof:belongsto":[ + 85865729, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2862800" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e179291c53e3396156380857b95a61b0", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957919663, + "neighbourhood_id":85865729, + "region_id":85688697 + } + ], + "wof:id":957919663, + "wof:lastmodified":1566624177, + "wof:name":"Armour Square", + "wof:parent_id":85865729, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420518739 + ], + "wof:tags":[] +}, + "bbox": [ + -87.63664533629726, + 41.8272333896524, + -87.6305758148246, + 41.8474626931958 +], + "geometry": {"coordinates":[[[[-87.6362105602697,41.8272333896524],[-87.63664533629726,41.847273845892],[-87.6364384176715,41.8472765372127],[-87.6359282084986,41.8472819167638],[-87.6353951430507,41.8473041083657],[-87.63473738233191,41.8473255393776],[-87.6341249640811,41.8473472423926],[-87.63353512580321,41.8473775561879],[-87.63304926440939,41.8474140457409],[-87.63297314148851,41.8474191304708],[-87.6325145784612,41.8474468524803],[-87.63228995006931,41.84745935384],[-87.63215406985159,41.8474626349987],[-87.632151600626,41.8474626931958],[-87.6320070676113,41.8474554783537],[-87.6318661464974,41.8474516899164],[-87.6317682943846,41.8474481646689],[-87.6316665907721,41.8474387601098],[-87.6315491619583,41.8474351145266],[-87.63136539598059,41.8474105698263],[-87.6311425403651,41.8473799301542],[-87.63110736644821,41.8473738594042],[-87.63104113406899,41.8473628231767],[-87.63105201477229,41.8473136288962],[-87.6310580389309,41.8472863913692],[-87.63106509865911,41.8472544030016],[-87.6310770749442,41.8472001355196],[-87.6310976960098,41.8470961984937],[-87.6311239863666,41.8469829302436],[-87.6311518389508,41.8468540621926],[-87.631172755617,41.8467230704833],[-87.631187363167,41.8466387340358],[-87.6312148584117,41.8464913326199],[-87.6312261243929,41.8463486703874],[-87.6312473602261,41.8461818776283],[-87.631258652518,41.8460367964813],[-87.6312731801282,41.8458917348313],[-87.6312813312492,41.8456236688807],[-87.6312886616691,41.8454404671418],[-87.63126966836219,41.8447412259481],[-87.63126112626681,41.8445479682404],[-87.631257018543,41.8444364018664],[-87.6312482366297,41.8442650523044],[-87.63113913831209,41.8431676884193],[-87.631096749073,41.8425811050809],[-87.63108436614201,41.8422258289897],[-87.6310269075379,41.8418702382931],[-87.63096486746809,41.8412639271453],[-87.6309113796993,41.8405036177048],[-87.6308885192839,41.8400824065982],[-87.63086255454689,41.8393171302423],[-87.6308443694234,41.838637409292],[-87.63083756356519,41.838364688399],[-87.6308352892828,41.8382491462418],[-87.6308328442832,41.8381249212883],[-87.6308132570022,41.8376782665479],[-87.6308090585584,41.8373909209126],[-87.63079428072891,41.8367283480685],[-87.63078078901189,41.8361719264715],[-87.6307659315259,41.8355166733228],[-87.630747240939,41.8347644033717],[-87.6307320707876,41.8345153643507],[-87.6306934308827,41.83315401845],[-87.6306807883994,41.8325620299792],[-87.6306616179008,41.8315182042468],[-87.6306297194845,41.8309536568219],[-87.6305758148246,41.8273115998508],[-87.6314209199937,41.8272958030314],[-87.6319885092674,41.8272892263664],[-87.6322000573482,41.8272868131145],[-87.6324010371124,41.8272845270803],[-87.6326272001854,41.827281034815],[-87.6328316012757,41.8272778781093],[-87.6331512224654,41.8272737071954],[-87.6333985898524,41.8272704398142],[-87.63345495493169,41.8272696855641],[-87.6335920507864,41.8272678588938],[-87.63384152225871,41.8272646327403],[-87.6342643187423,41.8272591640932],[-87.63463450573239,41.827254418625],[-87.63492128870141,41.8272502351264],[-87.6352700875736,41.8272452477878],[-87.6356879118669,41.8272393065197],[-87.6360939836615,41.8272344175417],[-87.63616382338709,41.8272338263578],[-87.6362033795498,41.827233456665],[-87.6362105602697,41.8272333896524]]]],"type":"MultiPolygon"} +},{ + "id": 907189645, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000129, + "geom:area_square_m":1208412.669533, + "geom:bbox":"-73.8081154652,40.7857532425,-73.7938012312,40.7968226933", + "geom:latitude":40.790936, + "geom:longitude":-73.801194, + "iso:country":"US", + "lbl:latitude":40.792777, + "lbl:longitude":-73.809995, + "lbl:max_zoom":18.0, + "mps:latitude":40.791139, + "mps:longitude":-73.80133, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Beechhurst" + ], + "name:fra_x_preferred":[ + "Beechhurst" + ], + "name:jpn_x_preferred":[ + "\u30d3\u30fc\u30c1\u30cf\u30fc\u30b9\u30c8" + ], + "name:urd_x_preferred":[ + "\u0628\u06cc\u0686\u06c1\u0631\u0633\u0679\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0628\u06cc\u0686\u06c1\u0631\u0633\u0679" + ], + "reversegeo:latitude":40.791139, + "reversegeo:longitude":-73.80133, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85857567, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2893642" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"62c702a86ce252e97c5436ce2e6b6935", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907189645, + "neighbourhood_id":85857567, + "region_id":85688543 + } + ], + "wof:id":907189645, + "wof:lastmodified":1566608543, + "wof:name":"Beechhurst", + "wof:parent_id":85857567, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85805257 + ], + "wof:tags":[] +}, + "bbox": [ + -73.80811546518981, + 40.78575324247459, + -73.79380123117538, + 40.79682269333237 +], + "geometry": {"coordinates":[[[[-73.79528040314267,40.78608604404583],[-73.79689047350418,40.78583096328504],[-73.79761209246293,40.78577326310351],[-73.79829640566054,40.78575324247459],[-73.80055861827064,40.78582945131635],[-73.80201602653126,40.7859109946634],[-73.80470783968073,40.78610588442658],[-73.80811546518981,40.78643867957732],[-73.80688067722652,40.79651070870845],[-73.80636331452591,40.79639360543776],[-73.80632825394346,40.79656033627027],[-73.80632013155258,40.79655929334688],[-73.80630503940795,40.79662616654993],[-73.80631451940108,40.79662618247991],[-73.80627331882228,40.79682269333237],[-73.80623135012372,40.79681747758281],[-73.80627525037369,40.79662405961188],[-73.80628337664868,40.79662407326925],[-73.80629846516324,40.79655822766332],[-73.80629034788139,40.79655512619507],[-73.8063307671468,40.79639274043609],[-73.80628396673889,40.7963920491521],[-73.80626052354513,40.79639905448717],[-73.80624026055715,40.79645760002462],[-73.80622801362853,40.79648195055464],[-73.80622499879711,40.79648654107834],[-73.80622106306771,40.79649070955874],[-73.80621630630563,40.79649435022452],[-73.80621084920924,40.79649737069713],[-73.80620483024725,40.79649969433483],[-73.80619840214531,40.79650126217742],[-73.80614379014706,40.79650330944954],[-73.80608911950513,40.79650260939747],[-73.80601711974147,40.79649746965709],[-73.80594598618421,40.79648756909567],[-73.80587626284594,40.79647298343048],[-73.80582665237026,40.7964594676865],[-73.80575309750414,40.79643417290389],[-73.80570537631877,40.79641293000197],[-73.80562927917657,40.7963725794766],[-73.80555882551151,40.79632669027532],[-73.80550782819176,40.79628699722353],[-73.80544725584552,40.79623041547555],[-73.80539573274996,40.79617082151339],[-73.8053663863014,40.7961681342767],[-73.80535819199508,40.79622729474976],[-73.80535141713024,40.79622831258497],[-73.80534456769041,40.79625506051251],[-73.80535269325884,40.79625507423437],[-73.80534980160512,40.79631785131896],[-73.80530104939183,40.79631674087689],[-73.80531071962979,40.7962519171942],[-73.80532426114102,40.79625194006577],[-73.80532975387254,40.79622621795116],[-73.80532433939834,40.79622517953081],[-73.80533944487578,40.79616392828882],[-73.80527796934831,40.79615570500062],[-73.80512821783232,40.79617698546313],[-73.80500200239153,40.79614148059282],[-73.80478172394825,40.79617516310488],[-73.80467173768801,40.79616746916396],[-73.80464949613759,40.796362981806],[-73.8046278207767,40.7963650036203],[-73.80466149435826,40.796427842659],[-73.80463437753288,40.79643808895622],[-73.80459395457143,40.7963680340401],[-73.80462921073278,40.7963526563424],[-73.80464873976862,40.79615919598307],[-73.8046095345107,40.79613545786332],[-73.80453769015655,40.79615086464995],[-73.80441601209608,40.79620256396973],[-73.80434825935421,40.79621409099285],[-73.8043438066598,40.79623278227977],[-73.80433026988082,40.79623036682363],[-73.8042971136375,40.79645295479128],[-73.80432012674359,40.79645574726053],[-73.80431189289486,40.79649311945952],[-73.80429293553249,40.79649205799801],[-73.80427353614901,40.7966412613284],[-73.80423563388833,40.79663502181069],[-73.8042590781062,40.79649200050716],[-73.80424147814809,40.79648991206656],[-73.80424295055872,40.79644977499082],[-73.80426732711423,40.79644981638731],[-73.80431138699944,40.79621287616008],[-73.80416535642887,40.79622900877683],[-73.80412218500381,40.7965288197066],[-73.80409238788187,40.79652979834243],[-73.80413644766992,40.79623423117783],[-73.80400524331004,40.79626735893527],[-73.80395884636577,40.79655624264386],[-73.80393114463224,40.79655731294741],[-73.80397418925097,40.79627825591973],[-73.80384612412577,40.79632585464923],[-73.80381886202723,40.79651492494285],[-73.80382563258891,40.7965149364661],[-73.80381736540878,40.79662975065901],[-73.80377383371217,40.79662909019768],[-73.80379312974868,40.79651488114384],[-73.80380261038668,40.79651489728154],[-73.80382294196026,40.79633501284103],[-73.80364301509175,40.79640608550763],[-73.80360867810492,40.79660513725494],[-73.80361815268303,40.79660721194896],[-73.8036125214754,40.79668426618115],[-73.80357594508135,40.79668330258232],[-73.80358565890849,40.79660406875647],[-73.8035937851805,40.79660408260344],[-73.80361288546575,40.7964208568206],[-73.80351687211324,40.79646452938645],[-73.80350403526195,40.79646974886959],[-73.80348822878432,40.79647790721155],[-73.80347562877238,40.79648705321945],[-73.80346385689631,40.79649726274874],[-73.80345417357393,40.79651012340882],[-73.80345049731152,40.79652318378254],[-73.80344742272672,40.79654897794646],[-73.8034313311056,40.79665324659514],[-73.80340121445356,40.79668805390617],[-73.80334996362973,40.79671302643008],[-73.80299970676843,40.79670883609427],[-73.80297168222658,40.79668512306078],[-73.80294925160226,40.79640492955593],[-73.80279125662175,40.79636382152479],[-73.80276267486218,40.79636813950391],[-73.80272775636637,40.79636352289022],[-73.80271057416493,40.79635959432952],[-73.80264036022911,40.79633809705561],[-73.80263086237163,40.79634828409235],[-73.80262670946293,40.79636227841575],[-73.80262272892378,40.79636609117784],[-73.80261322240628,40.79635503447497],[-73.80260474280814,40.79634171073397],[-73.80257934475048,40.79629544313607],[-73.80226038840075,40.79626220935548],[-73.80177947698428,40.79631614185261],[-73.80176331229934,40.79641980689215],[-73.80177549860819,40.79642085712568],[-73.80176584941813,40.7964774480209],[-73.80175501879771,40.79647640011804],[-73.80174543088521,40.79651240660552],[-73.80172106831412,40.79650721832074],[-73.80175550251795,40.79632129591796],[-73.80145799689461,40.79636679988941],[-73.80128784249823,40.79641788921873],[-73.80113832991813,40.79648452056119],[-73.8010112623061,40.79652237458954],[-73.80097496351836,40.79647622451942],[-73.80096377690251,40.79640100440731],[-73.80093513210225,40.79636738403019],[-73.80086307346713,40.79633253590842],[-73.8007614301337,40.79633659379396],[-73.80067173268912,40.7963517466806],[-73.80064068730512,40.79637154893389],[-73.80063334031999,40.79641525599174],[-73.80062184740106,40.79642676236057],[-73.8006074491838,40.79641534572957],[-73.80059411459081,40.79637714229044],[-73.8005548778183,40.79634655563873],[-73.80052713996209,40.79631071249448],[-73.80047518251016,40.79628221177239],[-73.80039069456684,40.79626315539578],[-73.80036547554784,40.7963369203832],[-73.80028591188076,40.79632354905574],[-73.8003216303822,40.79625357193051],[-73.80020438000454,40.79627005394539],[-73.80012080488288,40.79663141271139],[-73.80008350203389,40.7966282353263],[-73.80010619660885,40.79652552022701],[-73.80012111139986,40.79652932663623],[-73.8001261997881,40.79649152565464],[-73.80006403229245,40.79648452392925],[-73.8000791219669,40.7964290584013],[-73.80013384459127,40.79643104382517],[-73.80014389123814,40.79639892200581],[-73.80013145889016,40.79639700992517],[-73.80014405015416,40.79634598845257],[-73.8001589819298,40.79634412432024],[-73.80018235388135,40.79626691369693],[-73.80005184517347,40.79624961838706],[-73.79982777405687,40.79617893683496],[-73.79968067900424,40.79617450270642],[-73.79964718804301,40.79621526423345],[-73.79966916852725,40.79628248915954],[-73.79967980703289,40.79631058473392],[-73.79966872949244,40.79632978348994],[-73.79963988478312,40.79633900722376],[-73.79960548292529,40.79633222060561],[-73.79956913507232,40.79631421946041],[-73.79955188685527,40.79628549990874],[-73.79940489053637,40.79618904391091],[-73.79917089630354,40.79605342588182],[-73.79891628202122,40.79601702483289],[-73.79869265794972,40.79595224845812],[-73.79811108045232,40.7956058885654],[-73.79789832686922,40.79555922192188],[-73.79767259943337,40.79593711199858],[-73.79769744193777,40.79594849908203],[-73.79766994008874,40.79599382238173],[-73.79758295471346,40.79596720215479],[-73.79761542612661,40.79592377762287],[-73.79763779690313,40.79592948863961],[-73.79787014914426,40.79555201314662],[-73.79733705524914,40.795442638541],[-73.79724128273881,40.79545287980241],[-73.79723144562941,40.79543808541659],[-73.7972564330192,40.79537662476274],[-73.79723849400847,40.79533751086956],[-73.79712783133215,40.79530371842459],[-73.79691508645416,40.79527439337988],[-73.79673567660257,40.79520894291812],[-73.79651939930966,40.79559479349646],[-73.79654175232902,40.79560617576529],[-73.79651175709438,40.79565338558528],[-73.79648690334504,40.79564577893867],[-73.79643438737669,40.79573642985648],[-73.79640953426343,40.79572882419958],[-73.79646702704156,40.79563818258367],[-73.79644218574518,40.79562679523601],[-73.79646720043993,40.79558146783366],[-73.7964920644026,40.79558529228157],[-73.79670587562214,40.79519762595191],[-73.79633114341061,40.79507861959893],[-73.79580826080301,40.79498759158871],[-73.79518785394664,40.79500827285589],[-73.79508481023603,40.7950657510371],[-73.79507043234779,40.79497635861884],[-73.79500857656492,40.79492438234959],[-73.79483017402437,40.79488588920493],[-73.79470620936789,40.79488898172747],[-73.79466550345434,40.79491868152383],[-73.79461098148353,40.7949297355261],[-73.79448191996572,40.79483498226571],[-73.79447401015958,40.79483527762808],[-73.79446614286857,40.79483458867919],[-73.79445852875021,40.79483293386657],[-73.79445137168295,40.79483035750008],[-73.79444486330696,40.79482692856546],[-73.79443917789281,40.79482273887714],[-73.79443446767502,40.79481790061972],[-73.79443085877584,40.79481254334408],[-73.79442844782814,40.7948068104985],[-73.79442729938795,40.79480085558764],[-73.79442829014232,40.79479561175089],[-73.79443153242588,40.79479092206666],[-73.79443665250351,40.79478732711004],[-73.79444306018898,40.79478524126785],[-73.79445001687515,40.79478490497298],[-73.7944567206722,40.79478635698971],[-73.79446239884059,40.79478942994571],[-73.79446464196208,40.79479146989497],[-73.79448859303761,40.79479302537531],[-73.79451135093835,40.79479709864146],[-73.79453345509015,40.79480360813729],[-73.79455412899077,40.79481242352766],[-73.79457019411689,40.79479846788212],[-73.79458010758094,40.79478152498032],[-73.79458298189243,40.79476311162304],[-73.79444184340888,40.79454192358369],[-73.79439286110846,40.79443600884569],[-73.79437606190046,40.79432447103306],[-73.79437546739089,40.79422283829076],[-73.79439421572688,40.79413298360021],[-73.79444832276779,40.79405182956137],[-73.79453257299875,40.79398719864454],[-73.79460973137644,40.79389903248892],[-73.79458621884712,40.79357033410699],[-73.79478009224513,40.79293533038113],[-73.79476020271437,40.79282624324588],[-73.79471718788798,40.792735342196],[-73.7947105366036,40.79271343007721],[-73.79470613603499,40.79268825354455],[-73.79471124038163,40.79266204874978],[-73.79471954908449,40.79264985228006],[-73.79474785436723,40.79262690445482],[-73.79491460993412,40.79253154004697],[-73.79492773912168,40.79234673604537],[-73.79488771963615,40.79168061606766],[-73.79380123117538,40.78917205606407],[-73.79430579066388,40.78906222005214],[-73.79497500000011,40.78808165210148],[-73.7947860000001,40.7867186521015],[-73.79528040314267,40.78608604404583]]]],"type":"MultiPolygon"} +},{ + "id": 907189647, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000105, + "geom:area_square_m":983722.85296, + "geom:bbox":"-73.9863693757,40.7185887426,-73.9716294606,40.7304651114", + "geom:latitude":40.72427, + "geom:longitude":-73.978203, + "iso:country":"US", + "lbl:latitude":40.725693, + "lbl:longitude":-73.978823, + "lbl:max_zoom":18.0, + "mps:latitude":40.724564, + "mps:longitude":-73.97806, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:note":"Dup of Alphabet City", + "mz:tier_metro":1, + "name:ces_x_preferred":[ + "Alphabet City" + ], + "name:deu_x_preferred":[ + "Alphabet City" + ], + "name:eng_x_preferred":[ + "Alphabet City" + ], + "name:eng_x_variant":[ + "Alphabetcity", + "Loisaida" + ], + "name:fin_x_preferred":[ + "Alphabet City" + ], + "name:fra_x_preferred":[ + "Alphabet City" + ], + "name:ita_x_preferred":[ + "Alphabet City" + ], + "name:jpn_x_preferred":[ + "\u30a2\u30eb\u30d5\u30a1\u30d9\u30c3\u30c8\u30fb\u30b7\u30c6\u30a3" + ], + "name:kor_x_preferred":[ + "\uc54c\ud30c\ubcb3\uc2dc\ud2f0" + ], + "name:nld_x_preferred":[ + "Alphabet City" + ], + "name:por_x_preferred":[ + "Alphabet City" + ], + "name:ron_x_preferred":[ + "Alphabet City" + ], + "name:rus_x_preferred":[ + "\u0410\u043b\u0444\u0430\u0431\u0435\u0442-\u0441\u0438\u0442\u0438" + ], + "name:slk_x_preferred":[ + "Alphabet City" + ], + "name:spa_x_preferred":[ + "Alphabet City" + ], + "name:swe_x_preferred":[ + "Alphabet City" + ], + "name:und_x_variant":[ + "Alphabetville" + ], + "name:urd_x_preferred":[ + "Astoria Heights" + ], + "reversegeo:latitude":40.724564, + "reversegeo:longitude":-73.97806, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85816887, + 102191575, + 907196817, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1156938" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"de698ee5d1ea5484603c7f2133228ba0", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907196817, + "microhood_id":907189647, + "neighbourhood_id":85816887, + "region_id":85688543 + } + ], + "wof:id":907189647, + "wof:lastmodified":1566608544, + "wof:name":"Alphabet City", + "wof:parent_id":85816887, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869073, + 85868043 + ], + "wof:tags":[] +}, + "bbox": [ + -73.98636937570741, + 40.71858874257678, + -73.97162946063104, + 40.73046511142324 +], + "geometry": {"coordinates":[[[[-73.98636937570741,40.72224459206735],[-73.9803993791033,40.73046511142324],[-73.97162946063104,40.72676061595111],[-73.97162954348369,40.72676026475914],[-73.9717675541022,40.72583330345462],[-73.97177410965314,40.72582128133705],[-73.97179142961491,40.72581422114904],[-73.97181650587731,40.72581496675246],[-73.97218794229818,40.72404464870478],[-73.9728523261151,40.7212467306667],[-73.97338327620164,40.71918892125609],[-73.97351345120533,40.71877484470664],[-73.97357627278947,40.71858874257678],[-73.97473890294737,40.71880102380295],[-73.975452,40.71894700000023],[-73.97722400000013,40.71931000000023],[-73.978753,40.71993400000018],[-73.98636937570741,40.72224459206735]]]],"type":"MultiPolygon"} +},{ + "id": 907189649, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000062, + "geom:area_square_m":585246.628722, + "geom:bbox":"-73.9004924258,40.766595,-73.8884,40.7778508128", + "geom:latitude":40.770352, + "geom:longitude":-73.892898, + "iso:country":"US", + "lbl:latitude":40.769564, + "lbl:longitude":-73.892706, + "lbl:max_zoom":18.0, + "mps:latitude":40.769921, + "mps:longitude":-73.892304, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Astoria Heights" + ], + "name:fra_x_preferred":[ + "Astoria Heights" + ], + "name:urd_x_preferred":[ + "\u0627\u06cc\u0633\u0679\u0648\u0631\u06cc\u0627 \u06c1\u0627\u0626\u06cc\u0679\u0633\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0627\u06cc\u0633\u0679\u0648\u0631\u06cc\u0627 \u06c1\u0627\u0626\u06cc\u0679\u0633" + ], + "reversegeo:latitude":40.769921, + "reversegeo:longitude":-73.892304, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85803821, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2868473" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c0af3ae546d877c89594415ae10603b0", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907189649, + "neighbourhood_id":85803821, + "region_id":85688543 + } + ], + "wof:id":907189649, + "wof:lastmodified":1566608544, + "wof:name":"Astoria Heights", + "wof:parent_id":85803821, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865565, + 85869091 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90049242580716, + 40.766595, + -73.8884, + 40.77785081277779 +], + "geometry": {"coordinates":[[[[-73.89239164375918,40.77419982119807],[-73.89215606356954,40.77444160969784],[-73.89183244904515,40.77488019988873],[-73.8917254778065,40.77505203213402],[-73.89171751335823,40.77516363289296],[-73.89168935121101,40.77525473784354],[-73.89152759083358,40.77547813536741],[-73.89144361875276,40.77562269470964],[-73.891358014047,40.77604940793013],[-73.89136766273342,40.77634299857851],[-73.89145185712489,40.77651276927086],[-73.89126414584791,40.77685585537457],[-73.89110422665522,40.77702320697471],[-73.8911204433948,40.777124699736],[-73.89106681416058,40.77721292530485],[-73.89094860635714,40.77728384517264],[-73.89073132114233,40.77733204986772],[-73.89056250595358,40.77740392096428],[-73.89049834642215,40.77746263585195],[-73.8904591577672,40.77755049725345],[-73.89046537395129,40.77770321928706],[-73.89035193082614,40.77780032027481],[-73.89017369508574,40.77785081277779],[-73.890087294168,40.77778419360687],[-73.89002369095213,40.77724712640631],[-73.88951644381004,40.77593671444562],[-73.88947151143202,40.77573805652339],[-73.88947105399761,40.77553555096724],[-73.88961448773952,40.77484568714214],[-73.88978900756065,40.77423686116985],[-73.8898867162959,40.77401734907425],[-73.8900676015257,40.77396248425597],[-73.89019171520673,40.77364687622497],[-73.89008921667374,40.77362643552484],[-73.889976727389,40.77372361014805],[-73.88985169959679,40.77375329736392],[-73.88975035178019,40.77371739585025],[-73.88945486903738,40.77353295112717],[-73.88942400000001,40.77305],[-73.8884,40.76710000000013],[-73.889323,40.766866],[-73.89120200000001,40.766595],[-73.89499000000001,40.76679],[-73.90049242580716,40.76760566173567],[-73.89239164375918,40.77419982119807]]]],"type":"MultiPolygon"} +},{ + "id": 907190867, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000088, + "geom:area_square_m":824523.947911, + "geom:bbox":"-74.169827,40.548448,-74.1599253903,40.561078", + "geom:latitude":40.554688, + "geom:longitude":-74.164735, + "iso:country":"US", + "lbl:latitude":40.559963, + "lbl:longitude":-74.169614, + "lbl:max_zoom":18.0, + "mps:latitude":40.554757, + "mps:longitude":-74.164639, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Greenridge" + ], + "name:und_x_variant":[ + "Marshland" + ], + "reversegeo:latitude":40.554757, + "reversegeo:longitude":-74.164639, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85822683, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9badeee98e8d814ee9ea05da8dfa3bd2", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907190867, + "neighbourhood_id":85822683, + "region_id":85688543 + } + ], + "wof:id":907190867, + "wof:lastmodified":1566608554, + "wof:name":"Greenridge", + "wof:parent_id":85822683, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85823061 + ], + "wof:tags":[] +}, + "bbox": [ + -74.169827, + 40.54844800000019, + -74.15992539029739, + 40.56107800000017 +], + "geometry": {"coordinates":[[[[-74.1626976160219,40.56077474902074],[-74.16258325533035,40.56043420257534],[-74.16249707877003,40.56015746964729],[-74.16239868891542,40.55981621583674],[-74.16229797015974,40.55953713972053],[-74.16215794424787,40.55918457337689],[-74.16200903770958,40.55876359957377],[-74.16174077897043,40.55799389255109],[-74.16148155624693,40.55720871828023],[-74.16093900650387,40.55564657652174],[-74.16005632498627,40.55305988084623],[-74.15995538698851,40.55273496780751],[-74.15992539029739,40.5525701801518],[-74.15994036612784,40.55233165974093],[-74.16001629348236,40.55187254497489],[-74.16010637858513,40.5513735954906],[-74.16017072207454,40.55092537189504],[-74.16021926538951,40.55058095233638],[-74.16027349588738,40.5503426571151],[-74.16024609503772,40.55008247597907],[-74.16011872180803,40.54946499153421],[-74.161168,40.54919100000021],[-74.16615400000001,40.54860500000021],[-74.16709899999999,40.54844800000019],[-74.16982253323238,40.56105731991319],[-74.169827,40.56107800000017],[-74.16494100000016,40.56011200000017],[-74.16377900000001,40.56031700000027],[-74.1626976160219,40.56077474902074]]]],"type":"MultiPolygon"} +},{ + "id": 907189657, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000039, + "geom:area_square_m":362143.585746, + "geom:bbox":"-73.9027062529,40.8440163239,-73.8940452696,40.852308", + "geom:latitude":40.847895, + "geom:longitude":-73.898208, + "iso:country":"US", + "lbl:latitude":40.849375, + "lbl:longitude":-73.897381, + "lbl:max_zoom":18.0, + "mps:latitude":40.847972, + "mps:longitude":-73.898142, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0628\u0627\u062b\u063a\u064a\u062a" + ], + "name:azb_x_preferred":[ + "\u0628\u0633\u0642\u06cc\u062a" + ], + "name:cat_x_preferred":[ + "Bathgate" + ], + "name:ceb_x_preferred":[ + "Bathgate" + ], + "name:cym_x_preferred":[ + "Bathgate" + ], + "name:deu_x_preferred":[ + "Bathgate" + ], + "name:eus_x_preferred":[ + "Bathgate" + ], + "name:fas_x_preferred":[ + "\u0628\u0633\u06af\u06cc\u062a" + ], + "name:fra_x_preferred":[ + "Bathgate" + ], + "name:gla_x_preferred":[ + "Bathgate" + ], + "name:gle_x_preferred":[ + "Both Ch\u00e9it" + ], + "name:ita_x_preferred":[ + "Bathgate" + ], + "name:kor_x_preferred":[ + "\ubc30\uc2a4\uac8c\uc774\ud2b8" + ], + "name:lit_x_preferred":[ + "Batgitas" + ], + "name:nno_x_preferred":[ + "Bathgate" + ], + "name:nor_x_preferred":[ + "Bathgate" + ], + "name:pol_x_preferred":[ + "Bathgate" + ], + "name:sco_x_preferred":[ + "Bathket" + ], + "name:spa_x_preferred":[ + "Bathgate" + ], + "name:swe_x_preferred":[ + "Bathgate" + ], + "name:ukr_x_preferred":[ + "\u0411\u0430\u0442\u0433\u0435\u0439\u0442" + ], + "name:zho_x_preferred":[ + "\u5df4\u65af\u84cb\u7279" + ], + "reversegeo:latitude":40.847972, + "reversegeo:longitude":-73.898142, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865671, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"403c10ea517cf822570ec7e8c6553122", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907189657, + "neighbourhood_id":85865671, + "region_id":85688543 + } + ], + "wof:id":907189657, + "wof:lastmodified":1566608543, + "wof:name":"Bathgate", + "wof:parent_id":85865671, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892761 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90270625294181, + 40.84401632390924, + -73.89404526958945, + 40.85230800000019 +], + "geometry": {"coordinates":[[[[-73.89404526958945,40.8507190240071],[-73.89749974705818,40.84401632390924],[-73.90084043756596,40.8443952647834],[-73.90270625294181,40.84456800678856],[-73.902654,40.844753],[-73.90009700000019,40.8492090000001],[-73.898104,40.85230800000019],[-73.897087,40.85196900000021],[-73.89708547306009,40.85197169771648],[-73.895563,40.85146900000022],[-73.89404526958945,40.8507190240071]]]],"type":"MultiPolygon"} +},{ + "id": 907191339, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":63539.415093, + "geom:bbox":"-73.8792197696,40.8337978015,-73.8748273236,40.8361555906", + "geom:latitude":40.834906, + "geom:longitude":-73.876713, + "iso:country":"US", + "lbl:latitude":40.829021, + "lbl:longitude":-73.878313, + "lbl:max_zoom":18.0, + "mps:latitude":40.83503, + "mps:longitude":-73.876534, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0646\u0647\u0631 \u0628\u0631\u0648\u0646\u0643\u0633" + ], + "name:cat_x_preferred":[ + "Bronx River" + ], + "name:ceb_x_preferred":[ + "Bronx River" + ], + "name:chv_x_preferred":[ + "\u0411\u0440\u043e\u043d\u043a\u0441" + ], + "name:deu_x_preferred":[ + "Bronx River" + ], + "name:eng_x_preferred":[ + "Bronx River Houses" + ], + "name:eng_x_variant":[ + "Bronx River" + ], + "name:fra_x_preferred":[ + "Bronx River" + ], + "name:heb_x_preferred":[ + "\u05d1\u05e8\u05d5\u05e0\u05e7\u05e1" + ], + "name:ind_x_preferred":[ + "Sungai Bronx" + ], + "name:ita_x_preferred":[ + "Bronx" + ], + "name:por_x_preferred":[ + "Rio Bronx" + ], + "name:rus_x_preferred":[ + "\u0411\u0440\u043e\u043d\u043a\u0441" + ], + "name:spa_x_preferred":[ + "R\u00edo Bronx" + ], + "reversegeo:latitude":40.83503, + "reversegeo:longitude":-73.876534, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840627, + 102191575, + 907157031, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a12e6cd605987fd4dfdfb4de3e339276", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157031, + "microhood_id":907191339, + "neighbourhood_id":85840627, + "region_id":85688543 + } + ], + "wof:id":907191339, + "wof:lastmodified":1566608551, + "wof:name":"Bronx River", + "wof:parent_id":85840627, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892765 + ], + "wof:tags":[] +}, + "bbox": [ + -73.87921976964458, + 40.83379780145317, + -73.87482732359723, + 40.83615559057723 +], + "geometry": {"coordinates":[[[[-73.87527179006364,40.83605944942457],[-73.87482732359723,40.83415303702363],[-73.87741022215046,40.83379780145317],[-73.87921976964458,40.83444784907103],[-73.87722742640324,40.83592209700728],[-73.87716790749404,40.8359528255533],[-73.87705260878421,40.83600394231097],[-73.87692748500147,40.83605527580488],[-73.87679512580833,40.83609335430956],[-73.87664196212604,40.8361301496637],[-73.87649249702889,40.83614646751908],[-73.87633225877738,40.83615559057723],[-73.87615204378139,40.83614545825465],[-73.87527179006364,40.83605944942457]]]],"type":"MultiPolygon"} +},{ + "id": 907191451, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":394080.024321, + "geom:bbox":"-73.849478,40.689238,-73.8410540226,40.6993773089", + "geom:latitude":40.694412, + "geom:longitude":-73.845143, + "iso:country":"US", + "lbl:latitude":40.696412, + "lbl:longitude":-73.850685, + "lbl:max_zoom":18.0, + "mps:latitude":40.69427, + "mps:longitude":-73.845206, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Brooklyn Mnr" + ], + "reversegeo:latitude":40.69427, + "reversegeo:longitude":-73.845206, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85844441, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"aa184682edad94b102d6ff03fb50822c", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907191451, + "neighbourhood_id":85844441, + "region_id":85688543 + } + ], + "wof:id":907191451, + "wof:lastmodified":1566608551, + "wof:name":"Brooklyn Manor", + "wof:parent_id":85844441, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868671 + ], + "wof:tags":[] +}, + "bbox": [ + -73.849478, + 40.68923800000022, + -73.84105402256777, + 40.69937730886798 +], + "geometry": {"coordinates":[[[[-73.84497374825405,40.69937730886798],[-73.84287442480823,40.69517251954748],[-73.84339286128461,40.69515965010146],[-73.84105402256777,40.69036602885694],[-73.845026,40.68923800000022],[-73.84773478561398,40.69495399484592],[-73.84892761987494,40.69747107646799],[-73.849478,40.698196],[-73.84701303722179,40.69885557512632],[-73.84502077795679,40.69934998024539],[-73.84497374825405,40.69937730886798]]]],"type":"MultiPolygon"} +},{ + "id": 907189661, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":36073.896321, + "geom:bbox":"-73.9665077393,40.7523100041,-73.9631349391,40.7545043703", + "geom:latitude":40.753398, + "geom:longitude":-73.964851, + "iso:country":"US", + "lbl:latitude":40.752977, + "lbl:longitude":-73.965071, + "lbl:max_zoom":18.0, + "mps:latitude":40.753391, + "mps:longitude":-73.964851, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Beekman Place" + ], + "name:eng_x_variant":[ + "Beekman" + ], + "name:est_x_preferred":[ + "Beekman" + ], + "name:und_x_variant":[ + "Beekmanville" + ], + "reversegeo:latitude":40.753391, + "reversegeo:longitude":-73.964851, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 907215785, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"606e0af08af7c2eb91c2f19a88181e52", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907189661, + "neighbourhood_id":907215785, + "region_id":85688543 + } + ], + "wof:id":907189661, + "wof:lastmodified":1566608543, + "wof:name":"Beekman", + "wof:parent_id":907215785, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869109 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96650773932781, + 40.75231000410895, + -73.96313493912845, + 40.7545043702688 +], + "geometry": {"coordinates":[[[[-73.96414880949747,40.75231000410895],[-73.96650773932781,40.75327620542298],[-73.96562957282376,40.7545043702688],[-73.96313493912845,40.75347962166776],[-73.96414880949747,40.75231000410895]]]],"type":"MultiPolygon"} +},{ + "id": 907195817, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":514536.189978, + "geom:bbox":"-74.23312206,40.5017702951,-74.2231161415,40.508659", + "geom:latitude":40.505138, + "geom:longitude":-74.227559, + "iso:country":"US", + "lbl:latitude":40.504634, + "lbl:longitude":-74.230156, + "lbl:max_zoom":18.0, + "mps:latitude":40.505237, + "mps:longitude":-74.227559, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Butler Mnr" + ], + "reversegeo:latitude":40.505237, + "reversegeo:longitude":-74.227559, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85852385, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ef42d9b5dbea16f59c3693c0536fa653", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907195817, + "neighbourhood_id":85852385, + "region_id":85688543 + } + ], + "wof:id":907195817, + "wof:lastmodified":1566608541, + "wof:name":"Butler Manor", + "wof:parent_id":85852385, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865881 + ], + "wof:tags":[] +}, + "bbox": [ + -74.23312206000057, + 40.50177029513224, + -74.22311614145036, + 40.50865900000029 +], + "geometry": {"coordinates":[[[[-74.23131724604166,40.50179858574268],[-74.23312206000057,40.506743862242],[-74.23264303817813,40.5069189920793],[-74.23207907120269,40.50710578127143],[-74.23152145192891,40.50729183047505],[-74.23108672445723,40.50742653063052],[-74.23049855636951,40.50760495004058],[-74.22995195398437,40.50774645465537],[-74.22922828525481,40.50790535543559],[-74.22852283394737,40.50803985778876],[-74.22777598848981,40.50816699402701],[-74.22701483765317,40.50827909649952],[-74.22608634129911,40.5083936159676],[-74.2249320800949,40.50850774918848],[-74.22321500000024,40.50865900000029],[-74.22311614145036,40.5024530006705],[-74.22500232195885,40.50177029513224],[-74.22729413511011,40.50229749945599],[-74.22971584237079,40.50208568758786],[-74.23033892500197,40.5018041783721],[-74.23055401780145,40.50194685465995],[-74.23124443244203,40.50182686031908],[-74.23131724604166,40.50179858574268]]]],"type":"MultiPolygon"} +},{ + "id": 907195819, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":54955.409442, + "geom:bbox":"-73.991409,40.69635,-73.98976,40.700767", + "geom:latitude":40.698522, + "geom:longitude":-73.990577, + "iso:country":"US", + "lbl:latitude":40.692481, + "lbl:longitude":-73.9902, + "lbl:max_zoom":18.0, + "mps:latitude":40.69847, + "mps:longitude":-73.990659, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Cadman Plaza" + ], + "name:eng_x_variant":[ + "Cadman Plz", + "Cadman Plaza Park" + ], + "name:rus_x_preferred":[ + "\u041a\u044d\u0434\u043c\u0430\u043d-\u041f\u043b\u0430\u0437\u0430" + ], + "reversegeo:latitude":40.69847, + "reversegeo:longitude":-73.990659, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869191, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9100a4c3869d98abcbe28be1894a2d8d", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907195819, + "neighbourhood_id":85869191, + "region_id":85688543 + } + ], + "wof:id":907195819, + "wof:lastmodified":1617131452, + "wof:name":"Cadman Plaza", + "wof:parent_id":85869191, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869151 + ], + "wof:tags":[] +}, + "bbox": [ + -73.991409, + 40.69635, + -73.98976, + 40.700767 +], + "geometry": {"coordinates":[[[-73.99093000000001,40.700767],[-73.98976,40.70073],[-73.990044,40.69635],[-73.991187,40.696387],[-73.99136,40.69701],[-73.991409,40.698632],[-73.99102999999999,40.699845],[-73.99093000000001,40.700767]]],"type":"Polygon"} +},{ + "id": 907196531, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000068, + "geom:area_square_m":633371.651741, + "geom:bbox":"-73.8763687587,40.6740213624,-73.8610704884,40.6831892464", + "geom:latitude":40.678953, + "geom:longitude":-73.867501, + "iso:country":"US", + "lbl:latitude":40.672133, + "lbl:longitude":-73.867738, + "lbl:max_zoom":18.0, + "mps:latitude":40.679528, + "mps:longitude":-73.868034, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "City Line" + ], + "name:spa_x_preferred":[ + "City Line" + ], + "reversegeo:latitude":40.679528, + "reversegeo:longitude":-73.868034, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85816607, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5123279" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4d9756a3a889cab406dd0ea90a221856", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907196531, + "neighbourhood_id":85816607, + "region_id":85688543 + } + ], + "wof:id":907196531, + "wof:lastmodified":1566608550, + "wof:name":"City Line", + "wof:parent_id":85816607, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865629 + ], + "wof:tags":[] +}, + "bbox": [ + -73.87636875867578, + 40.6740213623896, + -73.86107048844883, + 40.68318924644225 +], + "geometry": {"coordinates":[[[[-73.86302694371781,40.67462020308112],[-73.86495413806725,40.67524759544064],[-73.86687218480476,40.67590324908549],[-73.86850003746858,40.67653099379523],[-73.86961043938129,40.67695183520164],[-73.87063700150262,40.67724559494442],[-73.87175233971438,40.67752499989852],[-73.8724712430664,40.67775205141533],[-73.87279525362901,40.67791817871388],[-73.87305706179554,40.6781115809086],[-73.87329242416355,40.67834077514713],[-73.87345487736276,40.67853571605401],[-73.87373496539647,40.67894087416078],[-73.8739422087435,40.67920586158333],[-73.87417346693321,40.67940735636428],[-73.87450180446534,40.67966824575742],[-73.87497701772274,40.67992497398642],[-73.87544165915173,40.68010774250394],[-73.87636875867578,40.68038701239295],[-73.87633261697529,40.68038737320867],[-73.86629503588273,40.68318924644225],[-73.86629499999999,40.68318900000011],[-73.866027,40.68191800000046],[-73.86410096307416,40.68237285121538],[-73.86328311756516,40.67907750301023],[-73.863282,40.67907300000035],[-73.86239087081393,40.67916058962106],[-73.862346,40.67916500000032],[-73.86131838995043,40.67502105187621],[-73.86107048844883,40.6740213623898],[-73.86107048844883,40.6740213623896],[-73.86302694371781,40.67462020308112]]]],"type":"MultiPolygon"} +},{ + "id": 907196771, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000205, + "geom:area_square_m":1919421.184461, + "geom:bbox":"-73.9625957679,40.6632173672,-73.9254534523,40.67163", + "geom:latitude":40.666795, + "geom:longitude":-73.94554, + "iso:country":"US", + "lbl:latitude":40.668556, + "lbl:longitude":-73.948098, + "lbl:max_zoom":18.0, + "mps:latitude":40.666893, + "mps:longitude":-73.94554, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.666893, + "reversegeo:longitude":-73.94554, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85867069, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"595af1db5ed10e858c69fe533e9ab83b", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907196771, + "neighbourhood_id":85867069, + "region_id":85688543 + } + ], + "wof:id":907196771, + "wof:lastmodified":1566608550, + "wof:name":"Crown Heights South", + "wof:parent_id":85867069, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892925 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96259576791796, + 40.66321736719257, + -73.92545345227222, + 40.67163 +], + "geometry": {"coordinates":[[[[-73.96259576791796,40.67163],[-73.95925836251749,40.67090376534912],[-73.9565664715026,40.67038402860185],[-73.95527611832209,40.67012386174945],[-73.95497971398802,40.67007331391282],[-73.95371186129057,40.66998867352023],[-73.93667878700712,40.66909515160813],[-73.92560589456635,40.66851428923052],[-73.92582913263003,40.66621745272367],[-73.92545345227222,40.66590450841488],[-73.93077976019309,40.66360092176113],[-73.93261863788712,40.66351437664225],[-73.93992600000016,40.6639],[-73.94546300000016,40.66423],[-73.96056253583609,40.66330963279984],[-73.96095249148867,40.66330600507649],[-73.96186030375401,40.66321736719257],[-73.961258,40.66480200000022],[-73.96259576791796,40.67163]]]],"type":"MultiPolygon"} +},{ + "id": 907196815, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":151615.908215, + "geom:bbox":"-73.9632344789,40.6358917996,-73.9586043013,40.6415325073", + "geom:latitude":40.638719, + "geom:longitude":-73.960915, + "iso:country":"US", + "lbl:latitude":40.637605, + "lbl:longitude":-73.962339, + "lbl:max_zoom":18.0, + "mps:latitude":40.638715, + "mps:longitude":-73.960915, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.638715, + "reversegeo:longitude":-73.960915, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869833, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6e67526653868738135cc3bce7188a24", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907196815, + "neighbourhood_id":85869833, + "region_id":85688543 + } + ], + "wof:id":907196815, + "wof:lastmodified":1566608550, + "wof:name":"Ditmas Park", + "wof:parent_id":85869833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892929 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96323447891271, + 40.63589179962218, + -73.95860430126199, + 40.64153250728405 +], + "geometry": {"coordinates":[[[[-73.95930173818354,40.64153250728405],[-73.95860430126199,40.63775669353003],[-73.96250523380428,40.63589179962218],[-73.96323447891271,40.63969186960995],[-73.95930173818354,40.64153250728405]]]],"type":"MultiPolygon"} +},{ + "id": 907189665, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000046, + "geom:area_square_m":428291.042194, + "geom:bbox":"-73.9810018148,40.7349443261,-73.9716817327,40.743843366", + "geom:latitude":40.739207, + "geom:longitude":-73.975682, + "iso:country":"US", + "lbl:latitude":40.739529, + "lbl:longitude":-73.969801, + "lbl:max_zoom":18.0, + "mps:latitude":40.738686, + "mps:longitude":-73.976002, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Bellevue" + ], + "name:eng_x_variant":[ + "Medical Centre" + ], + "reversegeo:latitude":40.738686, + "reversegeo:longitude":-73.976002, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85868041, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1bc16ec28f5b221863fa59816689743f", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907189665, + "neighbourhood_id":85868041, + "region_id":85688543 + } + ], + "wof:id":907189665, + "wof:lastmodified":1566608544, + "wof:name":"Medical Centre", + "wof:parent_id":85868041, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892909 + ], + "wof:tags":[] +}, + "bbox": [ + -73.98100181483072, + 40.73494432610145, + -73.97168173273084, + 40.74384336596832 +], + "geometry": {"coordinates":[[[[-73.98100181483072,40.73791303851167],[-73.97779355641761,40.74234413617773],[-73.97537857675717,40.74133000746244],[-73.97360766570746,40.74384336596832],[-73.97168173273084,40.74304136147111],[-73.97188888913061,40.74272482035548],[-73.97174059715866,40.74266357950877],[-73.97195955856269,40.74233792154364],[-73.97228992099218,40.74072103903177],[-73.97219567275303,40.74070957946137],[-73.97218268570101,40.74070627990962],[-73.97216848387875,40.74069312030049],[-73.97216477368659,40.74067572212912],[-73.9721964164781,40.74040257875026],[-73.97221685422346,40.74030762506142],[-73.97229979590864,40.74003496274298],[-73.97231030439094,40.74001851267482],[-73.9723314172173,40.7400109081997],[-73.97243888981419,40.74002174997323],[-73.9726574380305,40.73922275427692],[-73.97265737562532,40.7392214802635],[-73.9726574380305,40.73922132660046],[-73.97256841033879,40.73740380631294],[-73.97248994174743,40.7358032801076],[-73.97251016786022,40.73578712985961],[-73.97286939178478,40.73577086128557],[-73.97441385816543,40.73641439385893],[-73.97445975070481,40.73629401971823],[-73.9744167735479,40.73627772610673],[-73.97441154346602,40.73628527904677],[-73.97439952343296,40.73628408408968],[-73.97402692104306,40.7361257672455],[-73.97404679254457,40.73609992993463],[-73.97442932366877,40.73626063349143],[-73.97442775474408,40.73626619954392],[-73.97446647047302,40.73627845682983],[-73.97450376013246,40.7360645884439],[-73.97450352357795,40.73606451748448],[-73.97447471755301,40.73606238071297],[-73.97444082924042,40.73605047965696],[-73.97443372879938,40.73605371686951],[-73.97414062018373,40.73595565716728],[-73.97415127634783,40.73593379266809],[-73.97444722336765,40.73603347295399],[-73.97444828612814,40.73603779285909],[-73.97447828183084,40.73604418545107],[-73.9745048828598,40.73604228053655],[-73.97451459772613,40.73589459841118],[-73.974514505998,40.73589456515209],[-73.97451459772604,40.73589317073489],[-73.97450793938162,40.73579694577236],[-73.9744873798514,40.73587698753307],[-73.97444962990868,40.73587039671469],[-73.97446125831895,40.73583242506948],[-73.97424881734739,40.73579823084535],[-73.97424533118317,40.73578115493261],[-73.97425771965983,40.73576732638402],[-73.97446939148737,40.73579916097891],[-73.974468626027,40.73578915679988],[-73.9744767600986,40.73578915860296],[-73.97446461207315,40.7356681726646],[-73.97439147294988,40.73566874159342],[-73.9743910814324,40.73567315398553],[-73.9742629891394,40.73567253975693],[-73.97426396904021,40.73567694357619],[-73.97419155221267,40.73568111586588],[-73.97418881323289,40.73566089849509],[-73.97415673129365,40.73565879219356],[-73.97414539712078,40.73567255831335],[-73.97409217163268,40.7356416047185],[-73.97408936427243,40.73564553073938],[-73.97341851539198,40.73536788602196],[-73.97343868734961,40.73534138899594],[-73.97305698712049,40.73517745341554],[-73.97280661710475,40.73552391852111],[-73.97293673973687,40.73559924929962],[-73.97293031926458,40.73560761439667],[-73.97276308380354,40.73550508747357],[-73.97299695202487,40.73518650689108],[-73.97296395268074,40.7351690666799],[-73.9729318560978,40.73520531236897],[-73.97288512856935,40.73518020390186],[-73.97286403116165,40.73521226701519],[-73.97283745943463,40.73519971670439],[-73.97294520758695,40.73506517007112],[-73.97296719785798,40.73507843076681],[-73.97294519031816,40.73510770051308],[-73.97299560236569,40.73512793848569],[-73.97297083635607,40.73515721697126],[-73.97300291199268,40.73517256003525],[-73.97303684713692,40.73512794815009],[-73.9732989504615,40.73524235507699],[-73.97329894091492,40.73524092261875],[-73.9733218745816,40.73520191866479],[-73.97329897672444,40.73517681588363],[-73.97327881634088,40.73514752741428],[-73.97327241144065,40.73511893385145],[-73.97327700851476,40.73507919579834],[-73.9732962924985,40.73504084931159],[-73.97332929043598,40.7350108773917],[-73.97336870942677,40.7349892747627],[-73.97341821248351,40.73497115816108],[-73.97345945915032,40.73496837685118],[-73.973522708343,40.7349753608469],[-73.97354472883977,40.73494432610145],[-73.97443700958631,40.7353163561293],[-73.97443660722318,40.73531476069023],[-73.97443700958631,40.73531492845274],[-73.97437804208253,40.7350811121824],[-73.97437768139221,40.73507968198351],[-73.97464800000016,40.73508157232366],[-73.97490700000019,40.73531257232341],[-73.97852665982734,40.73685429290821],[-73.97852745096854,40.73685463083869],[-73.97852665982734,40.73685572058485],[-73.97852,40.736858],[-73.98100181483072,40.73791303851167]]]],"type":"MultiPolygon"} +},{ + "id": 907189667, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000041, + "geom:area_square_m":386463.096792, + "geom:bbox":"-73.9459474967,40.7333425148,-73.9306967235,40.7394231938", + "geom:latitude":40.73659, + "geom:longitude":-73.938577, + "iso:country":"US", + "lbl:latitude":40.73664, + "lbl:longitude":-73.937707, + "lbl:max_zoom":18.0, + "mps:latitude":40.73614, + "mps:longitude":-73.938693, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.73614, + "reversegeo:longitude":-73.938693, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831303, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"69478340b9129102bacbaacab11968ff", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907189667, + "neighbourhood_id":85831303, + "region_id":85688543 + } + ], + "wof:id":907189667, + "wof:lastmodified":1566608543, + "wof:name":"Blissville", + "wof:parent_id":85831303, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865549 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9459474966501, + 40.73334251484472, + -73.93069672352867, + 40.73942319382107 +], + "geometry": {"coordinates":[[[[-73.9412843959835,40.73942319382107],[-73.94107807965406,40.73935013867679],[-73.94066575004395,40.73917763708403],[-73.94025382709673,40.73900759709554],[-73.93981012853915,40.73882614495484],[-73.93926838188615,40.73860705156218],[-73.93871677483259,40.73839817938116],[-73.93801091417784,40.73821524869553],[-73.93728807343591,40.73808580191439],[-73.934996,40.737869],[-73.93069672352867,40.73708835644196],[-73.93256595460049,40.73630462327788],[-73.93465196869765,40.73556635243764],[-73.93424480925954,40.73486592595396],[-73.93728332516415,40.73375085263014],[-73.93781580925705,40.73426969933076],[-73.93855073297867,40.73394448017381],[-73.93855500658626,40.73394209703034],[-73.94008587920666,40.73334251484472],[-73.94016538640982,40.73348637434484],[-73.94001807012931,40.7335404412755],[-73.94010436853127,40.73375295054123],[-73.9400670932704,40.73376215298009],[-73.94086498592716,40.73507040909123],[-73.94162192243847,40.73579878365015],[-73.94163596800149,40.73581907939844],[-73.9416229064841,40.73582389971837],[-73.94161655224326,40.73583284827435],[-73.94162472636484,40.73584144233843],[-73.94180143973269,40.7359625782013],[-73.94357675397869,40.73669825857148],[-73.94592145868829,40.73749379303683],[-73.94592866792139,40.73749626341618],[-73.94593478459853,40.73749945515356],[-73.94593932901478,40.73750311271367],[-73.94594215413973,40.73750712143962],[-73.94594514077707,40.73751837023105],[-73.94594749665011,40.73753313041541],[-73.94593726125991,40.73755644009674],[-73.94591827463343,40.73756757872573],[-73.94590575564355,40.73757336373207],[-73.94589726599038,40.73757539468752],[-73.94589209140622,40.73757559044024],[-73.94588728626472,40.73757485860489],[-73.94585686433788,40.73756888271063],[-73.94583902310521,40.73755573572593],[-73.94582536619045,40.73754895805148],[-73.94579426649551,40.73754851136675],[-73.94562459602591,40.73765927440449],[-73.94558536491942,40.73768435334368],[-73.94548811345321,40.73773700496676],[-73.94475495293815,40.73801128350536],[-73.94468245424407,40.73810797209325],[-73.9446579409492,40.73812957306675],[-73.94463860064849,40.73813835203953],[-73.94463143837856,40.73813924000432],[-73.94462383708877,40.73813888554919],[-73.94460803640324,40.73813489752271],[-73.94456692344403,40.73811557936732],[-73.94257885812208,40.73881602026871],[-73.942803842676,40.73886154746157],[-73.94280080814424,40.73888072353927],[-73.94255612805296,40.73902086574689],[-73.9421533811752,40.73908005176053],[-73.94146173463183,40.73924858362736],[-73.9412843959835,40.73942319382107]]]],"type":"MultiPolygon"} +},{ + "id": 907189673, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000025, + "geom:area_square_m":236449.779486, + "geom:bbox":"-73.994808,40.7173043321,-73.9883996375,40.724136", + "geom:latitude":40.720745, + "geom:longitude":-73.991697, + "iso:country":"US", + "lbl:latitude":40.720018, + "lbl:longitude":-73.991775, + "lbl:max_zoom":18.0, + "mps:latitude":40.720692, + "mps:longitude":-73.991742, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Bowery" + ], + "name:ces_x_preferred":[ + "Bowery" + ], + "name:deu_x_preferred":[ + "Bowery" + ], + "name:fas_x_preferred":[ + "\u0628\u0648\u0631\u06cc" + ], + "name:fin_x_preferred":[ + "Bowery" + ], + "name:fra_x_preferred":[ + "Bowery" + ], + "name:ind_x_preferred":[ + "Bowery" + ], + "name:ita_x_preferred":[ + "Bowery" + ], + "name:jpn_x_preferred":[ + "\u30d0\u30ef\u30ea\u30fc" + ], + "name:kat_x_preferred":[ + "\u10d1\u10dd\u10d5\u10d4\u10e0\u10d8" + ], + "name:kor_x_preferred":[ + "\ubc14\uc6b0\uc5b4\ub9ac" + ], + "name:nld_x_preferred":[ + "Bowery" + ], + "name:por_x_preferred":[ + "Bowery" + ], + "name:rus_x_preferred":[ + "\u0411\u0430\u0443\u044d\u0440\u0438" + ], + "name:slk_x_preferred":[ + "Bowery" + ], + "name:spa_x_preferred":[ + "Bowery" + ], + "name:tur_x_preferred":[ + "Bowery" + ], + "name:zho_x_preferred":[ + "\u5305\u5398\u8857" + ], + "reversegeo:latitude":40.720692, + "reversegeo:longitude":-73.991742, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831563, + 102191575, + 907196817, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5df0548727467c980394cff2a4b1902f", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907196817, + "microhood_id":907189673, + "neighbourhood_id":85831563, + "region_id":85688543 + } + ], + "wof:id":907189673, + "wof:lastmodified":1566608543, + "wof:name":"Bowery", + "wof:parent_id":85831563, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869127 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9948080000002, + 40.71730433206383, + -73.9883996374796, + 40.72413600000021 +], + "geometry": {"coordinates":[[[[-73.9883996374796,40.72286051582496],[-73.99108242433162,40.71730433206383],[-73.99480800000021,40.718457],[-73.99437800000015,40.7195190000003],[-73.9943934342075,40.71952520287487],[-73.99260400000018,40.72413600000021],[-73.9883996374796,40.72286051582496]]]],"type":"MultiPolygon"} +},{ + "id": 907189675, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000025, + "geom:area_square_m":230282.537275, + "geom:bbox":"-73.9119087787,40.67619,-73.9054791744,40.6835101564", + "geom:latitude":40.679633, + "geom:longitude":-73.90928, + "iso:country":"US", + "lbl:latitude":40.677783, + "lbl:longitude":-73.902079, + "lbl:max_zoom":18.0, + "mps:latitude":40.679742, + "mps:longitude":-73.909061, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Broadway Jct" + ], + "reversegeo:latitude":40.679742, + "reversegeo:longitude":-73.909061, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85892907, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"edbc8244879c83ca1a6ed601ff079a5c", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907189675, + "neighbourhood_id":85892907, + "region_id":85688543 + } + ], + "wof:id":907189675, + "wof:lastmodified":1566608543, + "wof:name":"Broadway Junction", + "wof:parent_id":85892907, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85807739 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91190877871428, + 40.67619000000037, + -73.90547917436025, + 40.6835101564017 +], + "geometry": {"coordinates":[[[[-73.91102157521259,40.67635015166492],[-73.9108736676978,40.67817672464339],[-73.91190877871428,40.68318894816007],[-73.91159524047028,40.6835101564017],[-73.90547917436027,40.68003942999983],[-73.90547917436025,40.68003942999983],[-73.907859601194,40.67813418293775],[-73.90808800000001,40.67619000000037],[-73.91102157521259,40.67635015166492]]]],"type":"MultiPolygon"} +},{ + "id": 907189679, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":466902.020938, + "geom:bbox":"-73.8940032033,40.8381508377,-73.884465,40.8480943345", + "geom:latitude":40.843207, + "geom:longitude":-73.888725, + "iso:country":"US", + "lbl:latitude":40.846219, + "lbl:longitude":-73.892325, + "lbl:max_zoom":18.0, + "mps:latitude":40.843213, + "mps:longitude":-73.888725, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "East Tremont" + ], + "name:eng_x_variant":[ + "E Tremont" + ], + "name:fra_x_preferred":[ + "East Tremont" + ], + "name:jpn_x_preferred":[ + "\u30a4\u30fc\u30b9\u30c8\u30fb\u30c8\u30ec\u30e2\u30f3\u30c8" + ], + "reversegeo:latitude":40.843213, + "reversegeo:longitude":-73.888725, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865671, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5329558" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cf6b0ba6c8787a5a701491538fd0a054", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907189679, + "neighbourhood_id":85865671, + "region_id":85688543 + } + ], + "wof:id":907189679, + "wof:lastmodified":1566608544, + "wof:name":"East Tremont", + "wof:parent_id":85865671, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85816865 + ], + "wof:tags":[] +}, + "bbox": [ + -73.89400320327921, + 40.83815083769329, + -73.88446500000015, + 40.84809433446885 +], + "geometry": {"coordinates":[[[[-73.89400320327921,40.84216202182262],[-73.8934765891691,40.8427280116469],[-73.89219087648827,40.84402369807636],[-73.89078045013004,40.84564031276754],[-73.8887336713957,40.84809433446885],[-73.88448556130925,40.84599516022891],[-73.88446500000015,40.845985],[-73.88519200000017,40.84519500000016],[-73.88601000000017,40.84058500000012],[-73.88654889323618,40.83933205673376],[-73.88724713235466,40.83815083769329],[-73.88843712058743,40.83859101021643],[-73.88839512709797,40.83883998997575],[-73.8884845377178,40.83909313714068],[-73.88862401176722,40.83916433498181],[-73.88939305512031,40.83945951007337],[-73.8901656264709,40.83991200947673],[-73.89400320327921,40.84216202182262]]]],"type":"MultiPolygon"} +},{ + "id": 907189681, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000071, + "geom:area_square_m":664075.658426, + "geom:bbox":"-73.7833204336,40.7858542198,-73.7706312454,40.7967387273", + "geom:latitude":40.791553, + "geom:longitude":-73.776811, + "iso:country":"US", + "lbl:latitude":40.792831, + "lbl:longitude":-73.77749, + "lbl:max_zoom":18.0, + "mps:latitude":40.792031, + "mps:longitude":-73.777236, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:note":"Park, mostly", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fort Totten Park" + ], + "name:eng_x_variant":[ + "Fort Totten", + "Ft Totten" + ], + "name:ita_x_preferred":[ + "Fort Totten" + ], + "name:rus_x_preferred":[ + "\u0424\u043e\u0440\u0442-\u0422\u043e\u0442\u0442\u0435\u043d" + ], + "reversegeo:latitude":40.792031, + "reversegeo:longitude":-73.777236, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85892755, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3d63146479e16f1de935a883b7ccaba5", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907189681, + "neighbourhood_id":85892755, + "region_id":85688543 + } + ], + "wof:id":907189681, + "wof:lastmodified":1566608543, + "wof:name":"Fort Totten", + "wof:parent_id":85892755, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85820237 + ], + "wof:tags":[] +}, + "bbox": [ + -73.78332043363014, + 40.78585421977454, + -73.77063124537437, + 40.7967387273044 +], + "geometry": {"coordinates":[[[[-73.77407638297794,40.78591728401921],[-73.77435043337012,40.78585421977454],[-73.77483484830191,40.78636364053847],[-73.77533325503569,40.78681503136625],[-73.77578306114327,40.78717718841336],[-73.77624223859327,40.78751322934168],[-73.77670783445021,40.78781104828214],[-73.77713606350564,40.78804097966486],[-73.77774683272348,40.7883467584026],[-73.77839204538625,40.78863197560457],[-73.77892009500171,40.78884387982428],[-73.77952535578333,40.78903612603893],[-73.78011204291364,40.78918838262106],[-73.78072946918644,40.78933383290704],[-73.78146209704452,40.78946123978479],[-73.78218173463939,40.78955783046415],[-73.78311151980246,40.7896112851862],[-73.78244095611288,40.79037458560273],[-73.78174708763109,40.79113340664459],[-73.78107845970241,40.79167732177903],[-73.78107843444964,40.79167743108538],[-73.78107798381011,40.79167779767143],[-73.78077455549794,40.79299118123298],[-73.78077892481967,40.79318978586381],[-73.78085015490863,40.79325247937734],[-73.78083901425094,40.79327791606531],[-73.78158881545019,40.79346354101253],[-73.78158781636603,40.79344838542981],[-73.7815815324612,40.79344438658183],[-73.78163825608038,40.79331090101785],[-73.78168372830318,40.7933217570108],[-73.7816266232815,40.79345484000793],[-73.78160879379372,40.79345161570283],[-73.7816160767875,40.79347077130443],[-73.78165956956762,40.79348193372584],[-73.78164213433465,40.79352505337763],[-73.78082154869801,40.79331942900063],[-73.78080808737934,40.79335093271327],[-73.78072435069852,40.79333361882415],[-73.7807002551626,40.79364850590946],[-73.78079134483436,40.79403639575681],[-73.78100492078089,40.79438529451966],[-73.78152857545294,40.79472485577791],[-73.78181003762923,40.79480185241984],[-73.78190337831823,40.79490167978665],[-73.78258165591834,40.79488335802941],[-73.7828436204445,40.79490185399306],[-73.7831092937477,40.7949149363981],[-73.78317026275755,40.79487586588121],[-73.78324789295398,40.79478855571323],[-73.78328948833695,40.79475996026353],[-73.78331749095065,40.79475883236654],[-73.78332043363014,40.79478784576497],[-73.78328723879922,40.79482842185832],[-73.78327252890553,40.79483304872848],[-73.78326502927337,40.79487956617086],[-73.78327231278638,40.79489943364662],[-73.78325845226382,40.79492392753936],[-73.7832182224664,40.79496354679202],[-73.78317406856863,40.79498455804701],[-73.78305415481087,40.79499109708875],[-73.78200326103394,40.79497546250366],[-73.78200294430312,40.79497593186127],[-73.7820027851418,40.79497593839605],[-73.78182459908301,40.79507728971351],[-73.78172625575418,40.79542750602253],[-73.78165761051019,40.79555862334202],[-73.78154150032751,40.79565973732001],[-73.77989837558086,40.79623809836541],[-73.77980305052077,40.79620552893681],[-73.77980262936131,40.79620598764552],[-73.77980257462865,40.79620600482912],[-73.77944961456498,40.79657623806389],[-73.77946869192904,40.79660844129605],[-73.77943301516065,40.79666153857654],[-73.77936243341459,40.79668538782748],[-73.7792844635084,40.79667469847266],[-73.77927287774986,40.79663768381806],[-73.77871478762613,40.79659736019607],[-73.77843218488233,40.79669950171051],[-73.77806662937613,40.7967387273044],[-73.77762351135652,40.79664963325338],[-73.77687050489595,40.79644520469552],[-73.77612628144375,40.7960614795348],[-73.77471814244024,40.79485987012774],[-73.77431437491849,40.7944252613424],[-73.77401353451292,40.79403000153494],[-73.77363248188925,40.79274975621504],[-73.77320467172575,40.79224253223182],[-73.77286059684774,40.79197709653286],[-73.77232648173562,40.79148082462662],[-73.77225151847004,40.79123367143485],[-73.77227075371181,40.79094446378065],[-73.77224248787599,40.79074718949843],[-73.77224206821538,40.79057121284436],[-73.77225342777683,40.79048359978749],[-73.77213292826477,40.79017877433451],[-73.77202595346793,40.79006369256743],[-73.77194403848252,40.7900011624275],[-73.77185143898815,40.78996176831846],[-73.77177888393052,40.7899029111391],[-73.77173042355773,40.7897817888164],[-73.77174554616069,40.78969488352968],[-73.77063124537437,40.78846290603728],[-73.77082304387173,40.78798293318088],[-73.77099947386466,40.78788278434668],[-73.77139721921269,40.78765700792211],[-73.77173708761455,40.78746408480409],[-73.77354736618499,40.78690589002519],[-73.77396728847467,40.78678177421841],[-73.77426788469757,40.78675713454717],[-73.77434609217973,40.78677223413506],[-73.77439231197859,40.78681496092914],[-73.7743892931183,40.78685762119053],[-73.77420002662133,40.78696216313966],[-73.77419980868136,40.78702642524989],[-73.77422963897658,40.78706551756834],[-73.77432410105467,40.78708225357229],[-73.77444617141916,40.78717856502962],[-73.77501875089096,40.78739495027665],[-73.77628944855431,40.78851364819945],[-73.77633728818724,40.78848722575377],[-73.77504810438833,40.78719259407269],[-73.77486248240427,40.78707913013465],[-73.77480695369429,40.78697068727894],[-73.77474124745524,40.7869272358794],[-73.77463082546342,40.7869194186891],[-73.77458584666527,40.78687809258887],[-73.77451195192261,40.78672886084858],[-73.77445462503049,40.78667990922226],[-73.77426466694448,40.78665122914531],[-73.77409609895105,40.78629656530386],[-73.77407638297794,40.78591728401921]]]],"type":"MultiPolygon"} +},{ + "id": 907213943, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":70473.685729, + "geom:bbox":"-73.8113809747,40.5876229186,-73.8073460947,40.5899345627", + "geom:latitude":40.588786, + "geom:longitude":-73.809323, + "iso:country":"US", + "lbl:latitude":40.587495, + "lbl:longitude":-73.806335, + "lbl:max_zoom":18.0, + "mps:latitude":40.588872, + "mps:longitude":-73.809321, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Hammel" + ], + "name:eng_x_variant":[ + "Hammels" + ], + "name:fra_x_preferred":[ + "Hammels" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30f3\u30e1\u30eb" + ], + "name:urd_x_preferred":[ + "\u06c1\u06cc\u0645\u0644\u0632\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u06c1\u06cc\u0645\u0644\u0632" + ], + "reversegeo:latitude":40.588872, + "reversegeo:longitude":-73.809321, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865515, + 102191575, + 907157757, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q62200" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ff8fad60e94f7d4246ca9bd575c859d0", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "macrohood_id":907157757, + "microhood_id":907213943, + "neighbourhood_id":85865515, + "region_id":85688543 + } + ], + "wof:id":907213943, + "wof:lastmodified":1566608567, + "wof:name":"Hammels", + "wof:parent_id":85865515, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869317 + ], + "wof:tags":[] +}, + "bbox": [ + -73.81138097473466, + 40.58762291864829, + -73.80734609467761, + 40.58993456268318 +], + "geometry": {"coordinates":[[[[-73.81138097473466,40.58895527699323],[-73.81117602957529,40.58911617327549],[-73.8109416285595,40.58928129681005],[-73.81070633642973,40.58943118781132],[-73.81049207997796,40.58957498226235],[-73.81028274979185,40.58970886375557],[-73.81018417915978,40.58975927716918],[-73.81008429809691,40.58980512852806],[-73.80989705108288,40.58986690252122],[-73.80968054046625,40.58991989781169],[-73.80958179294652,40.58992941198694],[-73.80944529221752,40.58993456268318],[-73.8091721383207,40.58993246528344],[-73.80881409787727,40.58990075604228],[-73.80821162446664,40.58987102358428],[-73.80752203950571,40.58985848255945],[-73.80734609467761,40.58800461103491],[-73.81120999488357,40.58762291864829],[-73.81138097473466,40.58895527699323]]]],"type":"MultiPolygon"} +},{ + "id": 907213949, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000167, + "geom:area_square_m":1562317.419857, + "geom:bbox":"-73.8052424718,40.7214359639,-73.791745,40.738418827", + "geom:latitude":40.730356, + "geom:longitude":-73.799597, + "iso:country":"US", + "lbl:latitude":40.730443, + "lbl:longitude":-73.799357, + "lbl:max_zoom":18.0, + "mps:latitude":40.730319, + "mps:longitude":-73.799468, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Hillcrest" + ], + "name:eng_x_variant":[ + "Hill Crest" + ], + "reversegeo:latitude":40.730319, + "reversegeo:longitude":-73.799468, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b456a55eb9a3b8dadcb260cf6ef1e73d", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907213949, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907213949, + "wof:lastmodified":1566608567, + "wof:name":"Hill Crest", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865651 + ], + "wof:tags":[] +}, + "bbox": [ + -73.80524247184451, + 40.72143596385106, + -73.791745, + 40.7384188269903 +], + "geometry": {"coordinates":[[[[-73.80515157116443,40.72787107811068],[-73.80520506028827,40.72822042386014],[-73.80523349227136,40.7285593094645],[-73.80524247184451,40.72883399224948],[-73.80523204056355,40.72909938827767],[-73.80502123019443,40.73275201792901],[-73.80464768464311,40.7384188269903],[-73.79734869845497,40.73819324330073],[-73.79682043359121,40.73823137019448],[-73.79639496380824,40.73829016073359],[-73.796239,40.73788400000015],[-73.79512,40.73641100000013],[-73.79458600000015,40.73505200000031],[-73.7946258100976,40.73359554371673],[-73.79382,40.73165700000025],[-73.79378408955597,40.73070865039838],[-73.79174500000001,40.7257760000002],[-73.79523683467369,40.72458492877367],[-73.79845908004137,40.72349240221484],[-73.80452454146135,40.72143596385106],[-73.80515157116443,40.72787107811068]]]],"type":"MultiPolygon"} +},{ + "id": 907213951, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":228298.469697, + "geom:bbox":"-73.7879984203,40.7078620853,-73.7805678009,40.712938", + "geom:latitude":40.710248, + "geom:longitude":-73.784129, + "iso:country":"US", + "lbl:latitude":40.708718, + "lbl:longitude":-73.783336, + "lbl:max_zoom":18.0, + "mps:latitude":40.710255, + "mps:longitude":-73.784129, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:bar_x_preferred":[ + "Hillside" + ], + "name:ceb_x_preferred":[ + "Hillside" + ], + "name:cym_x_preferred":[ + "Hillside" + ], + "name:deu_x_preferred":[ + "Hillside" + ], + "name:eng_x_preferred":[ + "Hillside" + ], + "name:ita_x_preferred":[ + "Hillside" + ], + "name:mlg_x_preferred":[ + "Hillside" + ], + "name:nld_x_preferred":[ + "Hillside" + ], + "name:pol_x_preferred":[ + "Hillside" + ], + "name:por_x_preferred":[ + "Hillside" + ], + "name:srp_x_preferred":[ + "\u0425\u0438\u043b\u0441\u0430\u0458\u0434" + ], + "name:swe_x_preferred":[ + "Hillside" + ], + "name:ukr_x_preferred":[ + "\u0413\u0456\u043b\u043b\u0441\u0430\u0439\u0434" + ], + "name:und_x_variant":[ + "Rockaway Junction" + ], + "name:vol_x_preferred":[ + "Hillside" + ], + "reversegeo:latitude":40.710255, + "reversegeo:longitude":-73.784129, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827297, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d844bf9da6f86966bd26ff80cca807ee", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907213951, + "neighbourhood_id":85827297, + "region_id":85688543 + } + ], + "wof:id":907213951, + "wof:lastmodified":1566608567, + "wof:name":"Hillside", + "wof:parent_id":85827297, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85825625, + 85868669 + ], + "wof:tags":[] +}, + "bbox": [ + -73.78799842034269, + 40.70786208526779, + -73.78056780090309, + 40.71293800000024 +], + "geometry": {"coordinates":[[[[-73.78056780090309,40.70836791279866],[-73.78183402725914,40.70814833161695],[-73.78234497297635,40.70805558017769],[-73.78249132199315,40.70802227367565],[-73.78260307850904,40.70798858733198],[-73.78272399207043,40.70794988797692],[-73.78292834090105,40.70791330919392],[-73.78321081772866,40.70789670520437],[-73.78379594836606,40.70788413460873],[-73.78435598849286,40.70789067064988],[-73.78495935342487,40.70788582091193],[-73.78558208541455,40.70786208526779],[-73.78799842034269,40.71189386422768],[-73.787718,40.71186500000027],[-73.78271314069707,40.71291943040123],[-73.782625,40.71293800000024],[-73.78056780090309,40.70836791279866]]]],"type":"MultiPolygon"} +},{ + "id": 907214329, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000072, + "geom:area_square_m":676873.373464, + "geom:bbox":"-73.9655048531,40.5932590474,-73.949432823,40.5995661052", + "geom:latitude":40.596423, + "geom:longitude":-73.957473, + "iso:country":"US", + "lbl:latitude":40.60297, + "lbl:longitude":-73.95683, + "lbl:max_zoom":18.0, + "mps:latitude":40.596421, + "mps:longitude":-73.95748, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:note":"dup", + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Homecrest" + ], + "name:fra_x_preferred":[ + "Homecrest" + ], + "name:jpn_x_preferred":[ + "\u30db\u30fc\u30e0\u30af\u30ec\u30b9\u30c8" + ], + "name:zho_x_preferred":[ + "\u970d\u59c6\u514b\u96f7\u65af\u7279" + ], + "reversegeo:latitude":40.596421, + "reversegeo:longitude":-73.95748, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85848121, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q14706396" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ca7df3a61eccbbf61e4c339dad5c7bfb", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907214329, + "neighbourhood_id":85848121, + "region_id":85688543 + } + ], + "wof:id":907214329, + "wof:lastmodified":1566608566, + "wof:name":"Homecrest", + "wof:parent_id":85848121, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869353, + 907214329 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96550485312612, + 40.59325904735473, + -73.9494328230156, + 40.59956610520202 +], + "geometry": {"coordinates":[[[[-73.96550485312612,40.59792718510052],[-73.95028634912236,40.59956610520202],[-73.9494328230156,40.59493789111011],[-73.96465356614065,40.59325904735473],[-73.96463800000019,40.59332800000023],[-73.96550485312612,40.59792718510052]]]],"type":"MultiPolygon"} +},{ + "id": 907212007, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000114, + "geom:area_square_m":1070358.217304, + "geom:bbox":"-74.1449493236,40.5718735229,-74.1256262341,40.5839533184", + "geom:latitude":40.576983, + "geom:longitude":-74.134338, + "iso:country":"US", + "lbl:latitude":40.57857, + "lbl:longitude":-74.122653, + "lbl:max_zoom":18.0, + "mps:latitude":40.577059, + "mps:longitude":-74.132581, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Egbertville" + ], + "reversegeo:latitude":40.577059, + "reversegeo:longitude":-74.132581, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865887, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5347724" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"284c4025ecf8a03efe86a07c7255d7b2", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907212007, + "neighbourhood_id":85865887, + "region_id":85688543 + } + ], + "wof:id":907212007, + "wof:lastmodified":1566608555, + "wof:name":"Egbertville", + "wof:parent_id":85865887, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869213 + ], + "wof:tags":[] +}, + "bbox": [ + -74.14494932363466, + 40.57187352288683, + -74.12562623405144, + 40.58395331837774 +], + "geometry": {"coordinates":[[[[-74.14425011715544,40.57187352288683],[-74.14494932363466,40.5757271971674],[-74.14329521918297,40.57586315095784],[-74.14344393549575,40.57660673252234],[-74.13553222765151,40.57845081480176],[-74.13511582197535,40.57874824742748],[-74.13526453828821,40.57981900488014],[-74.13321225317071,40.58002720771805],[-74.13371788863452,40.58178206020999],[-74.13282559075742,40.58225795241119],[-74.13154663046669,40.5820200063105],[-74.13035689996377,40.58288256092508],[-74.12916716946086,40.58395331837774],[-74.12782872264508,40.58315025028838],[-74.12702565455562,40.5824958985117],[-74.1263829026513,40.58249024729177],[-74.12608309056459,40.5805771606432],[-74.12742510657189,40.57979193851126],[-74.12692541976068,40.57894960931518],[-74.12683975916445,40.5786355204623],[-74.12706818742112,40.57816438718324],[-74.12713957125126,40.57762187007396],[-74.12698252682482,40.57639406819495],[-74.12669699150419,40.57623702376842],[-74.12646856324753,40.5769794156023],[-74.12562623405144,40.57686520147401],[-74.12593445185846,40.5757701193024],[-74.13315876281048,40.57347909128994],[-74.14188348948166,40.57223270176555],[-74.14425011715544,40.57187352288683]]]],"type":"MultiPolygon"} +},{ + "id": 907212517, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000178, + "geom:area_square_m":1670673.880172, + "geom:bbox":"-73.9431914238,40.6320040378,-73.9247052986,40.6452666248", + "geom:latitude":40.639532, + "geom:longitude":-73.934973, + "iso:country":"US", + "lbl:latitude":40.640687, + "lbl:longitude":-73.934461, + "lbl:max_zoom":18.0, + "mps:latitude":40.639813, + "mps:longitude":-73.935149, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Farragut" + ], + "name:ceb_x_preferred":[ + "Farragut" + ], + "name:deu_x_preferred":[ + "Farragut" + ], + "name:fra_x_preferred":[ + "Farragut" + ], + "name:ita_x_preferred":[ + "Farragut" + ], + "name:nld_x_preferred":[ + "Farragut" + ], + "name:pol_x_preferred":[ + "Farragut" + ], + "name:srp_x_preferred":[ + "\u0424\u0430\u0440\u0430\u0433\u0443\u0442" + ], + "name:ukr_x_preferred":[ + "\u0424\u0430\u0440\u0440\u0430\u0433\u0430\u0442" + ], + "name:vol_x_preferred":[ + "Farragut" + ], + "reversegeo:latitude":40.639813, + "reversegeo:longitude":-73.935149, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85816313, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7af338b51e84665a7632f61211e6d9bc", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907212517, + "neighbourhood_id":85816313, + "region_id":85688543 + } + ], + "wof:id":907212517, + "wof:lastmodified":1566608555, + "wof:name":"Farragut", + "wof:parent_id":85816313, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892933 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94319142384614, + 40.63200403784748, + -73.92470529863643, + 40.64526662484501 +], + "geometry": {"coordinates":[[[[-73.92470529863643,40.64481701190135],[-73.9259657758323,40.63823199418805],[-73.93738560299708,40.6322856858553],[-73.94181904572015,40.63200403784748],[-73.94319142384614,40.64466743929312],[-73.93253718967628,40.64526662484501],[-73.93244457988065,40.64432025938925],[-73.92470529863643,40.64481701190135]]]],"type":"MultiPolygon"} +},{ + "id": 907212521, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000051, + "geom:area_square_m":475594.223827, + "geom:bbox":"-73.8556451464,40.871813,-73.843241,40.882192", + "geom:latitude":40.877721, + "geom:longitude":-73.850214, + "iso:country":"US", + "lbl:latitude":40.879257, + "lbl:longitude":-73.848724, + "lbl:max_zoom":18.0, + "mps:latitude":40.878818, + "mps:longitude":-73.849698, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.878818, + "reversegeo:longitude":-73.849698, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869805, + 102191575, + 907157027, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3fdc0c956070ffe1b04e7986b08faf1d", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157027, + "microhood_id":907212521, + "neighbourhood_id":85869805, + "region_id":85688543 + } + ], + "wof:id":907212521, + "wof:lastmodified":1566608556, + "wof:name":"Fishbay", + "wof:parent_id":85869805, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892775 + ], + "wof:tags":[] +}, + "bbox": [ + -73.85564514643653, + 40.87181300000015, + -73.84324100000015, + 40.8821920000002 +], + "geometry": {"coordinates":[[[[-73.85555000000011,40.87181300000015],[-73.85564514643653,40.87385643856438],[-73.8556362833304,40.87400290196728],[-73.85560730934385,40.87413992532438],[-73.85555762691503,40.87428444639987],[-73.85378257650305,40.8774755565008],[-73.85350241029111,40.87797978738504],[-73.85324671927476,40.87839202548678],[-73.85214585835804,40.88007127386683],[-73.85178946738291,40.88060226195739],[-73.85143592630551,40.88110332461587],[-73.85065,40.8821920000002],[-73.84324100000015,40.8791090000002],[-73.84546,40.87735],[-73.85068900000016,40.875487],[-73.85363700000011,40.8733],[-73.85555000000011,40.87181300000015]]]],"type":"MultiPolygon"} +},{ + "id": 907212531, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":152411.312038, + "geom:bbox":"-73.9623530265,40.6290955188,-73.95702579,40.6329956074", + "geom:latitude":40.631044, + "geom:longitude":-73.959691, + "iso:country":"US", + "lbl:latitude":40.630932, + "lbl:longitude":-73.962038, + "lbl:max_zoom":18.0, + "mps:latitude":40.631045, + "mps:longitude":-73.95969, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fiske Terrace" + ], + "name:eng_x_variant":[ + "Fiske Ter" + ], + "name:jpn_x_preferred":[ + "\u30d5\u30a3\u30b9\u30af\u30fb\u30c6\u30e9\u30b9" + ], + "name:spa_x_preferred":[ + "Fiske Terrace" + ], + "name:zho_x_preferred":[ + "\u4e54\u6cbb\u6566" + ], + "reversegeo:latitude":40.631045, + "reversegeo:longitude":-73.95969, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869833, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5455188" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"edd5eeeaab50d78dfcd251bf9d59fd46", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907212531, + "neighbourhood_id":85869833, + "region_id":85688543 + } + ], + "wof:id":907212531, + "wof:lastmodified":1566608556, + "wof:name":"Fiske Terrace", + "wof:parent_id":85869833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869241 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96235302646089, + 40.62909551878467, + -73.9570257900411, + 40.63299560739468 +], + "geometry": {"coordinates":[[[[-73.9576703959597,40.63299560739468],[-73.9570257900411,40.62959620099323],[-73.95712399999999,40.62958600000019],[-73.96171516217314,40.62909551878467],[-73.96235302646089,40.63249062205775],[-73.9576703959597,40.63299560739468]]]],"type":"MultiPolygon"} +},{ + "id": 907212535, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00011, + "geom:area_square_m":1025308.758974, + "geom:bbox":"-73.9358664258,40.846934273,-73.9222977499,40.861552", + "geom:latitude":40.854074, + "geom:longitude":-73.928779, + "iso:country":"US", + "lbl:latitude":40.857483, + "lbl:longitude":-73.93012, + "lbl:max_zoom":18.0, + "mps:latitude":40.854219, + "mps:longitude":-73.928882, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Fort George" + ], + "name:deu_x_preferred":[ + "Fort George" + ], + "name:eng_x_variant":[ + "Ft George" + ], + "name:ita_x_preferred":[ + "Fort George" + ], + "name:nds_x_preferred":[ + "Fort George" + ], + "name:pol_x_preferred":[ + "Fort George" + ], + "name:swe_x_preferred":[ + "Fort George" + ], + "reversegeo:latitude":40.854219, + "reversegeo:longitude":-73.928882, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85854625, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b1e9059de71760b64e2b39f15dd6964a", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":907212535, + "neighbourhood_id":85854625, + "region_id":85688543 + } + ], + "wof:id":907212535, + "wof:lastmodified":1566608555, + "wof:name":"Fort George", + "wof:parent_id":85854625, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869255 + ], + "wof:tags":[] +}, + "bbox": [ + -73.93586642581803, + 40.84693427299283, + -73.92229774992954, + 40.861552 +], + "geometry": {"coordinates":[[[[-73.92853755085196,40.84693427299283],[-73.931078474063,40.84810619517231],[-73.93261684031856,40.84874153569857],[-73.93586642581803,40.85007247973358],[-73.93148951631707,40.85937872307962],[-73.931313,40.859328],[-73.93012200000014,40.858744],[-73.92762500000012,40.859012],[-73.92709100000017,40.85976000000011],[-73.92471,40.861552],[-73.92292999999999,40.858941],[-73.92290600000011,40.855912],[-73.92253051890998,40.85568023183663],[-73.92229774992954,40.85559872142488],[-73.92406857586813,40.85331939199816],[-73.92444065139958,40.85284047270461],[-73.92778659839993,40.8480168661117],[-73.92853755085196,40.84693427299283]]]],"type":"MultiPolygon"} +},{ + "id": 907212589, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000102, + "geom:area_square_m":957409.529823, + "geom:bbox":"-73.9023975349,40.556422209,-73.8848687863,40.5662579114", + "geom:latitude":40.561156, + "geom:longitude":-73.893866, + "iso:country":"US", + "lbl:latitude":40.645437, + "lbl:longitude":-74.069679, + "lbl:max_zoom":18.0, + "mps:latitude":40.561147, + "mps:longitude":-73.893864, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:note":"name of county, old name of borough", + "mz:tier_metro":1, + "name:afr_x_preferred":[ + "Richmond" + ], + "name:ara_x_preferred":[ + "\u0631\u064a\u062a\u0634\u0645\u0648\u0646\u062f" + ], + "name:bar_x_preferred":[ + "Richmond" + ], + "name:bre_x_preferred":[ + "Richmond" + ], + "name:bul_x_preferred":[ + "\u0420\u0438\u0447\u043c\u044a\u043d\u0434" + ], + "name:cat_x_preferred":[ + "Richmond" + ], + "name:ceb_x_preferred":[ + "Richmond" + ], + "name:ces_x_preferred":[ + "Richmond" + ], + "name:che_x_preferred":[ + "\u0420\u0438\u0447\u043c\u043e\u043d\u0434" + ], + "name:cym_x_preferred":[ + "Richmond" + ], + "name:dan_x_preferred":[ + "Richmond" + ], + "name:deu_x_preferred":[ + "Richmond" + ], + "name:ell_x_preferred":[ + "\u03a1\u03af\u03c4\u03c3\u03bc\u03bf\u03bd\u03c4" + ], + "name:epo_x_preferred":[ + "Richmond" + ], + "name:est_x_preferred":[ + "Richmond" + ], + "name:fas_x_preferred":[ + "\u0631\u06cc\u0686\u0645\u0648\u0646\u062f" + ], + "name:fin_x_preferred":[ + "Richmond" + ], + "name:fra_x_preferred":[ + "Richmond" + ], + "name:heb_x_preferred":[ + "\u05e8\u05d9\u05e6'\u05de\u05d5\u05e0\u05d3" + ], + "name:hrv_x_preferred":[ + "Richmond" + ], + "name:hun_x_preferred":[ + "Richmond" + ], + "name:ido_x_preferred":[ + "Richmond" + ], + "name:ind_x_preferred":[ + "Richmond" + ], + "name:ita_x_preferred":[ + "Richmond" + ], + "name:jpn_x_preferred":[ + "\u30ea\u30c3\u30c1\u30e2\u30f3\u30c9" + ], + "name:kor_x_preferred":[ + "\ub9ac\uce58\uba3c\ub4dc" + ], + "name:lit_x_preferred":[ + "Ri\u010dmondas" + ], + "name:mlg_x_preferred":[ + "Richmond" + ], + "name:nld_x_preferred":[ + "Richmond" + ], + "name:nor_x_preferred":[ + "Richmond" + ], + "name:pol_x_preferred":[ + "Richmond" + ], + "name:por_x_preferred":[ + "Richmond" + ], + "name:ron_x_preferred":[ + "Richmond" + ], + "name:rus_x_preferred":[ + "\u0420\u0438\u0447\u043c\u043e\u043d\u0434" + ], + "name:sco_x_preferred":[ + "Richmond" + ], + "name:slk_x_preferred":[ + "Richmond" + ], + "name:spa_x_preferred":[ + "Richmond" + ], + "name:srp_x_preferred":[ + "\u0420\u0438\u0447\u043c\u043e\u043d\u0434" + ], + "name:swa_x_preferred":[ + "Richmond" + ], + "name:swe_x_preferred":[ + "Richmond" + ], + "name:tur_x_preferred":[ + "Richmond" + ], + "name:ukr_x_preferred":[ + "\u0420\u0438\u0447\u043c\u043e\u043d\u0434" + ], + "name:und_x_variant":[ + "Fort Tilden" + ], + "name:urd_x_preferred":[ + "\u0631\u0686\u0645\u0646\u0688" + ], + "name:vol_x_preferred":[ + "Richmond" + ], + "name:yid_x_preferred":[ + "\u05e8\u05d9\u05d8\u05e9\u05de\u05d0\u05e0\u05d3" + ], + "name:zho_x_preferred":[ + "\u91cc\u58eb\u6ee1" + ], + "reversegeo:latitude":40.561147, + "reversegeo:longitude":-73.893864, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807191, + 102191575, + 907157757, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bb32052a54592fa580e999921761ba30", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "macrohood_id":907157757, + "microhood_id":907212589, + "neighbourhood_id":85807191, + "region_id":85688543 + } + ], + "wof:id":907212589, + "wof:lastmodified":1566608556, + "wof:name":"Richmond", + "wof:parent_id":85807191, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85885401 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90239753488133, + 40.55642220902422, + -73.88486878626811, + 40.56625791139696 +], + "geometry": {"coordinates":[[[[-73.88783090116904,40.56625791139696],[-73.88486878626811,40.56004214208385],[-73.88488243929896,40.56004116437254],[-73.88489701008332,40.56004759905644],[-73.88495111801016,40.56016017455542],[-73.88511277798882,40.56015096173739],[-73.88611109684476,40.55992191902921],[-73.88696170683085,40.55955815414469],[-73.88698316803385,40.5595408989113],[-73.88699547207567,40.55951471838842],[-73.88694833771325,40.55942501938265],[-73.88697510801173,40.55940048299851],[-73.88700589149516,40.55940590791815],[-73.88706563479926,40.55953960377153],[-73.88789256106392,40.55951065137959],[-73.88920044973284,40.55897995331932],[-73.88938592166666,40.55892040014805],[-73.88949428876107,40.55885589102973],[-73.88961883994118,40.55879238897394],[-73.88959262563449,40.55869814093875],[-73.88963947542908,40.55866435179398],[-73.88971251660598,40.55877239782637],[-73.89016988162076,40.55879898701806],[-73.890216535535,40.55881154962444],[-73.8907958963037,40.55861937890723],[-73.89181734386617,40.55818192535524],[-73.89192354828403,40.55816042152527],[-73.89199719571874,40.5581046311404],[-73.8920869968554,40.55804822513732],[-73.89211373696484,40.55791654611902],[-73.89213864396129,40.55787154199661],[-73.89216471320677,40.55786825290237],[-73.89219939637604,40.557911357569],[-73.89220367738253,40.55795112129285],[-73.89226637138374,40.55802542116509],[-73.89238831548226,40.55805370379861],[-73.89252745099391,40.55811929354265],[-73.89295657126361,40.55807179565],[-73.89351478690287,40.55791479373087],[-73.89373488375023,40.55780163043287],[-73.89422328361128,40.55759098003168],[-73.89481652964481,40.55734718518533],[-73.89489400002803,40.55730608395834],[-73.89492507893131,40.55729678332571],[-73.89495142499428,40.55729392540934],[-73.89495626172034,40.55728147549211],[-73.89488196616647,40.55710539053742],[-73.89489014015692,40.55708825233695],[-73.89491817266334,40.55707879629837],[-73.89494218163915,40.55709000172232],[-73.89495564136919,40.55710520598141],[-73.89502000255726,40.55726157794504],[-73.8950640624076,40.55727179431204],[-73.89509113472053,40.5572867766174],[-73.89512221087578,40.557302151242],[-73.89514345051374,40.55731747901621],[-73.89514692835677,40.55735141403451],[-73.89518458696969,40.55738503715078],[-73.89528651630845,40.55742202540882],[-73.89551188771095,40.55741427014974],[-73.89560237805888,40.55739785392741],[-73.89578748916927,40.55735839083263],[-73.89593506810228,40.55727173108797],[-73.89699522942664,40.55689179163879],[-73.89703572008942,40.55684239774315],[-73.89707345559773,40.55681113798495],[-73.89708396311504,40.55678079148345],[-73.89706380003445,40.5566949624134],[-73.89706459160607,40.55666362447428],[-73.89707956116769,40.55665743308454],[-73.89709684679295,40.55665631372599],[-73.89711859133801,40.55665886341114],[-73.89712552628782,40.55666385916673],[-73.89712899705188,40.55667220978871],[-73.8971421344786,40.55672739719769],[-73.89715972516328,40.55678239040475],[-73.89718544253139,40.55684974521017],[-73.89735688619331,40.55699842304188],[-73.89759035599648,40.55705926371864],[-73.8979951479682,40.55710213718031],[-73.89828608894094,40.55706520474789],[-73.89911718426407,40.55680035379429],[-73.89913198896227,40.55679355854966],[-73.8991144648131,40.55672874369704],[-73.89910004069156,40.55666348589582],[-73.89911108093183,40.55664927601288],[-73.89912995215269,40.55664117316704],[-73.89915160703455,40.55664134455459],[-73.89916471328425,40.55664612784668],[-73.89917488757396,40.55665403911214],[-73.89919692872246,40.55668200560264],[-73.899213463129,40.55671210047366],[-73.89938729173069,40.55672323811142],[-73.89956037454597,40.55670666843328],[-73.89980226292086,40.55663175736041],[-73.89979520954785,40.55660191856473],[-73.89979274922609,40.55657165680655],[-73.89979491527319,40.55654138196543],[-73.89980531089658,40.5565307903579],[-73.89982115677113,40.55652540707883],[-73.89983843305339,40.55652659777932],[-73.89984856164943,40.5565309638359],[-73.89987312539321,40.55655826159463],[-73.89989113748879,40.55658838534165],[-73.89990205638644,40.55662042939479],[-73.90008998276147,40.55662498858807],[-73.90027595908285,40.55660389483764],[-73.90036634229463,40.55658390799054],[-73.90053827001655,40.5565258568089],[-73.90053984652049,40.55650666902638],[-73.90053211919805,40.55646877420903],[-73.90053474158408,40.55645960400975],[-73.90053934754279,40.5564509004737],[-73.90054580601135,40.55644291125906],[-73.90055393321418,40.55643586369796],[-73.90056349789236,40.55642995832786],[-73.90057422788384,40.55642536318529],[-73.90058581786823,40.55642220902422],[-73.90059436861605,40.55642463021749],[-73.90060232051223,40.55642803776057],[-73.90060947942581,40.5564323484647],[-73.90061567058503,40.55643745709197],[-73.90062074284398,40.55644323892476],[-73.90062457237248,40.55644955281029],[-73.9006281618945,40.55646315094582],[-73.90065211431819,40.55655834486221],[-73.90065778173216,40.55660664449412],[-73.90070115515834,40.55663356854344],[-73.90101920055496,40.5567084801831],[-73.90239753488133,40.5622015230121],[-73.89447114619099,40.56437614240136],[-73.88783090116904,40.56625791139696]]]],"type":"MultiPolygon"} +},{ + "id": 907212747, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00001, + "geom:area_square_m":95929.230378, + "geom:bbox":"-73.9954456431207,40.70247499756855,-73.98941386001289,40.70494346328906", + "geom:latitude":40.703559, + "geom:longitude":-73.992067, + "iso:country":"US", + "lbl:latitude":40.702942, + "lbl:longitude":-73.994027, + "lbl:max_zoom":18.0, + "mps:latitude":40.7036, + "mps:longitude":-73.992915, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fulton Ferry" + ], + "name:eng_x_variant":[ + "Fulton Landing" + ], + "name:und_x_variant":[ + "Fulton Ferry" + ], + "reversegeo:latitude":40.7036, + "reversegeo:longitude":-73.992915, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 421205765, + 102191575, + 85633793, + 102082361, + 85977539, + 85869197, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9dca8009e7004b058bff3d7367b315af", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907212747, + "neighbourhood_id":85869197, + "region_id":85688543 + } + ], + "wof:id":907212747, + "wof:lastmodified":1591683357, + "wof:name":"Fulton Ferry", + "wof:parent_id":85869197, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869265, + 85865617 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9954456431207, + 40.70247499756855, + -73.98941386001289, + 40.70494346328906 +], + "geometry": {"coordinates":[[[[-73.98941386001289,40.70479080119917],[-73.98953945967716,40.70247499756855],[-73.99356281639646,40.70258559673162],[-73.99435815575657,40.70290994772991],[-73.99504592748337,40.70313183979972],[-73.9954456431207,40.70327530547177],[-73.99529346700935,40.70355406589797],[-73.99480038274872,40.70329195814198],[-73.99466290343614,40.7034306080566],[-73.99499542533941,40.70365056321165],[-73.99488239902436,40.70378802583739],[-73.9949104306952,40.70379731595875],[-73.99492964609253,40.70377131508376],[-73.99502925916447,40.70380820086798],[-73.9948820472641,40.70400865389516],[-73.99476934191567,40.70395289495355],[-73.99471424235153,40.70399668906092],[-73.9947923146005,40.70406840563373],[-73.99479231299992,40.70408889470718],[-73.99469807470801,40.7041647007973],[-73.99477614353459,40.70424586105236],[-73.99456978950892,40.70437626351386],[-73.99386341031878,40.70455600743301],[-73.99380687248416,40.70453961321413],[-73.99377457207805,40.70444945740876],[-73.9935860697536,40.70450911821813],[-73.99362643916734,40.70459524465735],[-73.99350881403609,40.70462350527397],[-73.99280104228986,40.70463402392783],[-73.99269135574995,40.70462984994534],[-73.99251210682048,40.70469411255755],[-73.99212703535071,40.70468964203348],[-73.9921210063909,40.70439620157789],[-73.99186159189318,40.70408664210439],[-73.99141794782712,40.70400408902064],[-73.99094755350795,40.70403244213917],[-73.990714731148,40.70435137954315],[-73.99054617998549,40.70441616750173],[-73.99030768493817,40.70483988060199],[-73.9902849603567,40.70486642939219],[-73.99022720244231,40.7049340444872],[-73.99009111393444,40.70494346328906],[-73.98941386001289,40.70479080119917]]]],"type":"MultiPolygon"} +},{ + "id": 907212749, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000044, + "geom:area_square_m":413513.883456, + "geom:bbox":"-73.9934640012,40.7483901988,-73.9817667009,40.7559500056", + "geom:latitude":40.752173, + "geom:longitude":-73.987608, + "iso:country":"US", + "lbl:latitude":40.754134, + "lbl:longitude":-73.990186, + "lbl:max_zoom":18.0, + "mps:latitude":40.752176, + "mps:longitude":-73.987608, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Garment District" + ], + "name:eng_x_preferred":[ + "Garment District" + ], + "name:eng_x_variant":[ + "Garmentdistrict", + "Garment Center", + "Fashion District", + "Fashion Center" + ], + "name:fas_x_preferred":[ + "\u0645\u0646\u0637\u0642\u0647 \u06af\u0627\u0631\u0645\u0646\u062a" + ], + "name:fra_x_preferred":[ + "Garment District" + ], + "name:ind_x_preferred":[ + "Garment District" + ], + "name:ita_x_preferred":[ + "Garment District" + ], + "name:jpn_x_preferred":[ + "\u30ac\u30fc\u30e1\u30f3\u30c8\u30fb\u30c7\u30a3\u30b9\u30c8\u30ea\u30af\u30c8" + ], + "name:por_x_preferred":[ + "Garment District" + ], + "name:rus_x_preferred":[ + "\u0428\u0432\u0435\u0439\u043d\u044b\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:spa_x_preferred":[ + "Garment District" + ], + "name:swe_x_preferred":[ + "Garment District" + ], + "name:zho_x_preferred":[ + "\u6210\u8863\u5546\u5708" + ], + "reversegeo:latitude":40.752176, + "reversegeo:longitude":-73.987608, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882233, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1494337" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8ed605c521a59a717a40ca455eed727c", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907212749, + "neighbourhood_id":85882233, + "region_id":85688543 + } + ], + "wof:id":907212749, + "wof:lastmodified":1566608556, + "wof:name":"Garment District", + "wof:parent_id":85882233, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867073 + ], + "wof:tags":[] +}, + "bbox": [ + -73.99346400122367, + 40.74839019876838, + -73.98176670094662, + 40.75595000563767 +], + "geometry": {"coordinates":[[[[-73.98447574057809,40.74839019876838],[-73.98793290692802,40.74985326918927],[-73.99346400122367,40.75218999709956],[-73.99072364248579,40.75595000563767],[-73.98504300000013,40.75355400000022],[-73.98176670094662,40.75214872901238],[-73.98447574057809,40.74839019876838]]]],"type":"MultiPolygon"} +},{ + "id": 907212751, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000086, + "geom:area_square_m":809667.83013, + "geom:bbox":"-73.9183420574,40.6195487438,-73.903774295,40.6297675391", + "geom:latitude":40.623599, + "geom:longitude":-73.912427, + "iso:country":"US", + "lbl:latitude":40.623781, + "lbl:longitude":-73.911268, + "lbl:max_zoom":18.0, + "mps:latitude":40.623575, + "mps:longitude":-73.912923, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:afr_x_preferred":[ + "Georgetown" + ], + "name:ara_x_preferred":[ + "\u062c\u0648\u0631\u062c\u062a\u0627\u0648\u0646" + ], + "name:aze_x_preferred":[ + "Corctaun" + ], + "name:bel_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u045e\u043d" + ], + "name:bre_x_preferred":[ + "Georgetown" + ], + "name:bul_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u0443\u043d" + ], + "name:cat_x_preferred":[ + "Georgetown" + ], + "name:ceb_x_preferred":[ + "Georgetown" + ], + "name:ces_x_preferred":[ + "Georgetown" + ], + "name:cym_x_preferred":[ + "Georgetown" + ], + "name:dan_x_preferred":[ + "Georgetown" + ], + "name:deu_x_preferred":[ + "Georgetown" + ], + "name:ell_x_preferred":[ + "\u03a4\u03b6\u03ce\u03c1\u03c4\u03b6\u03c4\u03b1\u03bf\u03c5\u03bd" + ], + "name:eng_x_variant":[ + "George Town" + ], + "name:epo_x_preferred":[ + "\u011cor\u011dta\u016dno" + ], + "name:est_x_preferred":[ + "Georgetown" + ], + "name:eus_x_preferred":[ + "Georgetown" + ], + "name:fas_x_preferred":[ + "\u062c\u0631\u062c\u200c\u062a\u0627\u0648\u0646" + ], + "name:fin_x_preferred":[ + "Georgetown" + ], + "name:fra_x_preferred":[ + "Georgetown" + ], + "name:heb_x_preferred":[ + "\u05d2'\u05d5\u05e8\u05d2'\u05d8\u05d0\u05d5\u05df" + ], + "name:hin_x_preferred":[ + "\u091c\u0949\u0930\u094d\u091c\u091f\u093e\u0909\u0928" + ], + "name:hun_x_preferred":[ + "Georgetown" + ], + "name:ido_x_preferred":[ + "Georgetown" + ], + "name:ind_x_preferred":[ + "Georgetown" + ], + "name:ita_x_preferred":[ + "Georgetown" + ], + "name:jpn_x_preferred":[ + "\u30b8\u30e7\u30fc\u30b8\u30bf\u30a6\u30f3" + ], + "name:kat_x_preferred":[ + "\u10ef\u10dd\u10e0\u10ef\u10e2\u10d0\u10e3\u10dc\u10d8" + ], + "name:kor_x_preferred":[ + "\uc870\uc9c0\ud0c0\uc6b4" + ], + "name:lav_x_preferred":[ + "D\u017eord\u017etauna" + ], + "name:lit_x_preferred":[ + "D\u017eord\u017etaunas" + ], + "name:ltz_x_preferred":[ + "Georgetown" + ], + "name:mar_x_preferred":[ + "\u091c\u0949\u0930\u094d\u091c\u091f\u093e\u0909\u0928" + ], + "name:msa_x_preferred":[ + "Georgetown" + ], + "name:nds_x_preferred":[ + "Georgetown" + ], + "name:nld_x_preferred":[ + "Georgetown" + ], + "name:nor_x_preferred":[ + "Georgetown" + ], + "name:pol_x_preferred":[ + "Georgetown" + ], + "name:por_x_preferred":[ + "Georgetown" + ], + "name:ron_x_preferred":[ + "Georgetown" + ], + "name:rus_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u0443\u043d" + ], + "name:sco_x_preferred":[ + "Georgetown" + ], + "name:slk_x_preferred":[ + "Georgetown" + ], + "name:spa_x_preferred":[ + "Georgetown" + ], + "name:srp_x_preferred":[ + "\u040f\u043e\u0440\u045f\u0442\u0430\u0443\u043d" + ], + "name:swe_x_preferred":[ + "Georgetown" + ], + "name:tam_x_preferred":[ + "\u0b9c\u0bbe\u0bb0\u0bcd\u0b9c\u0bcd \u0b9f\u0bb5\u0bc1\u0ba9\u0bcd" + ], + "name:tha_x_preferred":[ + "\u0e08\u0e2d\u0e23\u0e4c\u0e08\u0e17\u0e32\u0e27\u0e19\u0e4c" + ], + "name:tur_x_preferred":[ + "Georgetown" + ], + "name:ukr_x_preferred":[ + "\u0414\u0436\u043e\u0440\u0434\u0436\u0442\u0430\u0443\u043d" + ], + "name:und_x_variant":[ + "Georgetowne Greens" + ], + "name:urd_x_preferred":[ + "\u062c\u0627\u0631\u062c \u0679\u0627\u0624\u0646" + ], + "name:vep_x_preferred":[ + "D\u017eord\u017etaun" + ], + "name:vol_x_preferred":[ + "Georgetown" + ], + "name:war_x_preferred":[ + "Georgetown" + ], + "name:zho_x_preferred":[ + "\u4e54\u6cbb\u6566" + ], + "reversegeo:latitude":40.623575, + "reversegeo:longitude":-73.912923, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865597, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"47d1199a58aed2d108ed4c9e61e52f21", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907212751, + "neighbourhood_id":85865597, + "region_id":85688543 + } + ], + "wof:id":907212751, + "wof:lastmodified":1566608556, + "wof:name":"Georgetown", + "wof:parent_id":85865597, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865601 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91834205743707, + 40.61954874383508, + -73.90377429495669, + 40.62976753912089 +], + "geometry": {"coordinates":[[[[-73.90621690707972,40.62434071675607],[-73.90377429495669,40.6221862432519],[-73.90691073620584,40.62015348266848],[-73.9125250000001,40.61983100000019],[-73.91725287020255,40.61954874383508],[-73.91834205743707,40.62976753912089],[-73.90621690707972,40.62434071675607]]]],"type":"MultiPolygon"} +},{ + "id": 907212755, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":133921.463757, + "geom:bbox":"-74.0014740404,40.707968037,-73.9961352222,40.7120624625", + "geom:latitude":40.710118, + "geom:longitude":-73.998632, + "iso:country":"US", + "lbl:latitude":40.70864, + "lbl:longitude":-73.998539, + "lbl:max_zoom":18.0, + "mps:latitude":40.710197, + "mps:longitude":-73.99868, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Governor Alfred E. Smith Houses" + ], + "name:eng_x_variant":[ + "Alfred E. Smith Houses" + ], + "reversegeo:latitude":40.710197, + "reversegeo:longitude":-73.99868, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869743, + 102191575, + 907196817, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c9105789fb12092ecdccdcf88f71e55c", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907196817, + "microhood_id":907212755, + "neighbourhood_id":85869743, + "region_id":85688543 + } + ], + "wof:id":907212755, + "wof:lastmodified":1566608555, + "wof:name":"Governor Alfred e Smith Houses", + "wof:parent_id":85869743, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868035 + ], + "wof:tags":[] +}, + "bbox": [ + -74.00147404044375, + 40.70796803699163, + -73.99613522221274, + 40.71206246251524 +], + "geometry": {"coordinates":[[[[-73.99777,40.711971],[-73.99691468274567,40.71206246251524],[-73.99613522221274,40.70889705567529],[-73.9972828719558,40.70873161984291],[-73.99808351187021,40.70850961536711],[-73.99908991719062,40.70797459290078],[-73.99910212251511,40.70796810433945],[-73.99910224919999,40.70796803699163],[-74.00147404044375,40.70979846063547],[-74.00070679909625,40.7108711221962],[-74.00067386693235,40.71091059957691],[-74.0006464129345,40.71094038867586],[-74.00010217335284,40.71145652969706],[-73.999762887884,40.7118061192258],[-73.99777,40.711971]]]],"type":"MultiPolygon"} +},{ + "id": 907215391, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":65622.577314, + "geom:bbox":"-73.9205575935,40.8037385349,-73.9150383751,40.8068458276", + "geom:latitude":40.805288, + "geom:longitude":-73.917804, + "iso:country":"US", + "lbl:latitude":40.805345, + "lbl:longitude":-73.917932, + "lbl:max_zoom":18.0, + "mps:latitude":40.805291, + "mps:longitude":-73.917805, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.805291, + "reversegeo:longitude":-73.917805, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85835417, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e41e1b7aaf2e5a4ce5c9313d8d54f3a8", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907215391, + "neighbourhood_id":85835417, + "region_id":85688543 + } + ], + "wof:id":907215391, + "wof:lastmodified":1566608557, + "wof:name":"Mill Brook Houses", + "wof:parent_id":85835417, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868025 + ], + "wof:tags":[] +}, + "bbox": [ + -73.92055759352564, + 40.80373853493478, + -73.91503837505991, + 40.80684582756577 +], + "geometry": {"coordinates":[[[[-73.91970887307397,40.80684582756577],[-73.91503837505991,40.80486672534875],[-73.91585368554465,40.80373853493478],[-73.92055759352564,40.80567793828952],[-73.91970887307397,40.80684582756577]]]],"type":"MultiPolygon"} +},{ + "id": 907214331, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000112, + "geom:area_square_m":1046867.314392, + "geom:bbox":"-73.9470439928,40.8446152267,-73.9314895163,40.8598342662", + "geom:latitude":40.852429, + "geom:longitude":-73.939194, + "iso:country":"US", + "lbl:latitude":40.85366, + "lbl:longitude":-73.936979, + "lbl:max_zoom":18.0, + "mps:latitude":40.852461, + "mps:longitude":-73.938664, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Hudson Hts" + ], + "reversegeo:latitude":40.852461, + "reversegeo:longitude":-73.938664, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85854625, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0557c266cf5957977eba6175314121ed", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":907214331, + "neighbourhood_id":85854625, + "region_id":85688543 + } + ], + "wof:id":907214331, + "wof:lastmodified":1566608565, + "wof:name":"Hudson Heights", + "wof:parent_id":85854625, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869355 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94704399278353, + 40.8446152267371, + -73.93148951631707, + 40.85983426620041 +], + "geometry": {"coordinates":[[[[-73.93148951631707,40.85937872307962],[-73.93586642581803,40.85007247973358],[-73.93704006496382,40.8492109281151],[-73.93746602157997,40.84885530157933],[-73.93766204317502,40.84862101821798],[-73.93782656184241,40.84839357507582],[-73.93805717977301,40.84793558265838],[-73.93824007460786,40.84752466002355],[-73.938429408945,40.8469542963954],[-73.93863426087283,40.84627301351987],[-73.93878353504375,40.84558788880506],[-73.93888996887964,40.84505133354686],[-73.93897293639061,40.8446152267371],[-73.94665944010268,40.84786571385872],[-73.94665606434617,40.84788332048353],[-73.94662285734354,40.84814551949149],[-73.9466194999889,40.84827842591195],[-73.94664422572279,40.84839933388533],[-73.94665138624536,40.84850004835111],[-73.94665040763178,40.84866760421679],[-73.94667853765397,40.848837459093],[-73.94663550012693,40.84891242505977],[-73.94683872036464,40.84938282135101],[-73.94685525004357,40.84942768019963],[-73.94696652237197,40.84981517403266],[-73.94701320370538,40.84999974085006],[-73.9470278249473,40.85004183181242],[-73.94702006715049,40.85009367015581],[-73.94704399278353,40.8502547459878],[-73.94699808302225,40.85039803084265],[-73.94696441759601,40.85046552581834],[-73.94692626404866,40.85052805566834],[-73.94651590216091,40.85096833958307],[-73.94650229457679,40.85097566609912],[-73.94647163441918,40.85098548333596],[-73.94644189200059,40.85098828175261],[-73.94641216085672,40.85098514079454],[-73.94637201017787,40.85096981801796],[-73.94633875378945,40.85094782682727],[-73.9463207741203,40.85092325667692],[-73.94632888036681,40.85090437687028],[-73.94635174194288,40.85089307380802],[-73.94635218637765,40.85086996465725],[-73.94633796356047,40.85085289594618],[-73.94632729794799,40.85084603307684],[-73.94631589827779,40.8508386961086],[-73.94629717304835,40.85083313533091],[-73.94627501496672,40.85084097767568],[-73.94624374642382,40.85088454299488],[-73.94619776917537,40.85090566620352],[-73.94617304480116,40.85095795498825],[-73.94619597814527,40.85097417207248],[-73.94620078322099,40.85103148810551],[-73.94618601249206,40.8510314696569],[-73.94617210619418,40.8510521198151],[-73.94615819227636,40.85104728646893],[-73.94614699837966,40.85103129062841],[-73.94614542501229,40.85100746588196],[-73.94613392284643,40.85098393184356],[-73.94611976648001,40.85096875414158],[-73.94609670195189,40.85096634175068],[-73.94608190501087,40.85098071488113],[-73.94608745879559,40.85100806249657],[-73.94609742395546,40.85103260246974],[-73.94614159383455,40.85109369997016],[-73.9461365365532,40.85115472606455],[-73.94611744105174,40.85117258301975],[-73.94604780286083,40.8511885509714],[-73.94596473439124,40.85117187483646],[-73.94593025783087,40.85118972170717],[-73.94589577454175,40.85118733910362],[-73.94584092799158,40.85116947664419],[-73.94576726165664,40.85116946515459],[-73.94572493994536,40.85119683231837],[-73.9457280636197,40.85122777318983],[-73.94568261912569,40.85122657712713],[-73.94565283626429,40.85121109834135],[-73.94561208079904,40.85123965310482],[-73.94555563975035,40.85132056777697],[-73.94551957908565,40.85136221265915],[-73.94544903734406,40.85142765920951],[-73.94538946888071,40.8514526369143],[-73.94526640999041,40.85157102905372],[-73.94497798395635,40.85173164800292],[-73.94466721178102,40.85192122650953],[-73.94457747870588,40.8519428160693],[-73.94450381945984,40.8519570794526],[-73.94439725279884,40.85189280267387],[-73.94432518482483,40.85182257643866],[-73.94431733342698,40.85185589339351],[-73.9441966078135,40.85201534181601],[-73.94388153574955,40.85217237720745],[-73.94347978545646,40.85228188294722],[-73.94186996426696,40.85386773944295],[-73.94029347497131,40.85664177065782],[-73.93958484140597,40.85748020619801],[-73.93911094164406,40.85804091122584],[-73.93881410843981,40.85853711494591],[-73.93830957434301,40.85938052360811],[-73.93781527094994,40.85983426620041],[-73.93778900000017,40.85981200000015],[-73.93553200000012,40.858918],[-73.933053,40.859828],[-73.93148951631707,40.85937872307962]]]],"type":"MultiPolygon"} +},{ + "id": 907214333, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000165, + "geom:area_square_m":1546893.670487, + "geom:bbox":"-73.962620159,40.7379001234,-73.9381670233,40.748839517", + "geom:latitude":40.742918, + "geom:longitude":-73.950727, + "iso:country":"US", + "lbl:latitude":40.745095, + "lbl:longitude":-73.953594, + "lbl:max_zoom":18.0, + "mps:latitude":40.743199, + "mps:longitude":-73.950724, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Hunters Point" + ], + "name:deu_x_preferred":[ + "Hunters Point" + ], + "name:eng_x_variant":[ + "Hunters Pt", + "Hunterspoint" + ], + "name:fra_x_preferred":[ + "Hunters Point" + ], + "name:swe_x_preferred":[ + "Hunters Point" + ], + "reversegeo:latitude":40.743199, + "reversegeo:longitude":-73.950724, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831303, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"12983a530528ac5d1788daf115f545a9", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907214333, + "neighbourhood_id":85831303, + "region_id":85688543 + } + ], + "wof:id":907214333, + "wof:lastmodified":1566608566, + "wof:name":"Hunters Point", + "wof:parent_id":85831303, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865631 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96262015898665, + 40.73790012335005, + -73.93816702329205, + 40.74883951695578 +], + "geometry": {"coordinates":[[[[-73.95466147272244,40.74821942328077],[-73.95434128567298,40.74811220357854],[-73.95432006769627,40.74810391708214],[-73.95439031474359,40.74801902288753],[-73.95464547239433,40.74812830865804],[-73.95470561241694,40.74801362045259],[-73.95325109906982,40.74774713733631],[-73.95317332410538,40.74772109315825],[-73.93816702329205,40.7450222333969],[-73.93858786976806,40.74293088268769],[-73.94001922975681,40.74320827221096],[-73.9401485852125,40.74283244146026],[-73.93965301521403,40.74273108709571],[-73.94004815102228,40.74207122634068],[-73.94008406290699,40.74206324464146],[-73.94118816696189,40.74029021829477],[-73.94159470030034,40.73986412616891],[-73.94165001879615,40.73986415420968],[-73.94183504992785,40.73969262021157],[-73.94203367165665,40.73965693856114],[-73.9420866491637,40.73959258700143],[-73.94237973008306,40.73943047196956],[-73.94244816527326,40.73941389661739],[-73.94259666844879,40.73939514780285],[-73.9426491363561,40.73932320041671],[-73.94272766121328,40.7392315971958],[-73.94279045640089,40.73919372120449],[-73.94269588366714,40.73913388083164],[-73.94270608992113,40.73911506297863],[-73.94290141828859,40.73900380150439],[-73.94329026866818,40.73900862239311],[-73.94353166038671,40.73892280549138],[-73.94382272278408,40.73887153788181],[-73.94396995657186,40.7387823960599],[-73.9443388253848,40.73864623976486],[-73.94523862072617,40.73835682364518],[-73.94535847947536,40.73826948539718],[-73.94548236590144,40.73820703129391],[-73.94715087182711,40.73790012335005],[-73.95033626203471,40.73900698584341],[-73.95229720792412,40.73951862852663],[-73.95379878808737,40.7398198652721],[-73.95536636374344,40.73976488732692],[-73.95682353901005,40.73961472406356],[-73.95765503729541,40.73943488599123],[-73.95925086376491,40.73873583149298],[-73.95978270346579,40.73851171066128],[-73.9598369952847,40.73849397164275],[-73.95987349884923,40.73848746390511],[-73.95993158356723,40.73848463902804],[-73.95995298823036,40.73848515960658],[-73.96000509976616,40.73849124753227],[-73.96006757901843,40.73848374962371],[-73.96010554777811,40.73846119597234],[-73.96013686315298,40.73841934280762],[-73.96013848536931,40.73837979256484],[-73.96014265220778,40.73836104512281],[-73.96015351682222,40.73834734438555],[-73.96016917242174,40.73833850675283],[-73.96022403678208,40.73831388660274],[-73.96028544056767,40.73824399232705],[-73.96072580373689,40.73808017017923],[-73.96209998908999,40.73826019177944],[-73.96216416128232,40.7382722349097],[-73.96216505619314,40.73827253825895],[-73.96216583608778,40.73827292499858],[-73.96216647673566,40.73827340115155],[-73.96216700104027,40.73827397057848],[-73.96216740987821,40.73827464098591],[-73.96216769092661,40.73827539310424],[-73.96216790859808,40.73827721351757],[-73.96216773862491,40.73827905189643],[-73.96212654058675,40.73841541522791],[-73.96213146112969,40.73845107065081],[-73.96245085621167,40.73861209840278],[-73.96253484590184,40.7386812166548],[-73.96259185234969,40.73876820918987],[-73.9626081975085,40.73879553905661],[-73.96262015898665,40.73903266212604],[-73.96243079071382,40.73967148008299],[-73.96242990341497,40.7396728200664],[-73.96220916491789,40.74000617549819],[-73.96159204783007,40.74000396823183],[-73.9614501384436,40.74033783468062],[-73.96164163979049,40.74035611292443],[-73.96162982563841,40.74045892945751],[-73.96129339923259,40.74043279936797],[-73.96126581236192,40.74053747110837],[-73.96151773884115,40.74060680575989],[-73.96172732138891,40.74066968474283],[-73.96185009745182,40.74072448163046],[-73.96190930217703,40.74086783324406],[-73.96188806252049,40.74098216980954],[-73.96180397489103,40.74109767347233],[-73.96165251735401,40.74113275709856],[-73.96145893775198,40.74113750567926],[-73.96121862852027,40.74110786013025],[-73.9611177038758,40.74153727766141],[-73.9610750950233,40.74162778728837],[-73.96107708539772,40.74169732461796],[-73.96111505608519,40.74179780414889],[-73.96127192619352,40.74183259794322],[-73.96129180598609,40.74179635293709],[-73.96136329157119,40.74181148128099],[-73.96136519326669,40.74182328939672],[-73.96136466867718,40.74183517907706],[-73.96136173044941,40.7418468636582],[-73.96135644942375,40.74185806142123],[-73.96134895292629,40.74186850238443],[-73.96133942169912,40.74187793481266],[-73.96110814501411,40.74182802590811],[-73.96117277851148,40.74188633414107],[-73.96155253168956,40.74199326140734],[-73.96119029789034,40.74264485525982],[-73.96109548654545,40.74278194773137],[-73.96097168385494,40.74275405426379],[-73.96064602180351,40.74339270626311],[-73.96056778448647,40.7434659565139],[-73.96046632238418,40.74352028317141],[-73.96040921438394,40.74353900791942],[-73.96028762060446,40.74355781751107],[-73.96016388160426,40.74355079186095],[-73.95978468552286,40.74349771658414],[-73.95971981529034,40.74369304546528],[-73.95980494771408,40.74370675289002],[-73.9597439319738,40.74387256884916],[-73.95975123851007,40.74390227665793],[-73.96051032999428,40.7440468919529],[-73.96052090981665,40.74401974007527],[-73.96067204579411,40.74405121585594],[-73.96064863700744,40.74413031761401],[-73.96011951918794,40.74402967229435],[-73.96010602637573,40.74405870980694],[-73.95992298789866,40.74402704209606],[-73.95993311497539,40.74399458841103],[-73.95963225023962,40.74393463191436],[-73.95936198209036,40.74421397603712],[-73.95940368217359,40.74422607474715],[-73.95939106609578,40.744283324744],[-73.95946013173089,40.74429251979712],[-73.95946913213881,40.74426775269981],[-73.95971280471122,40.74431481791593],[-73.95972855228646,40.74427211561939],[-73.96015525517694,40.74436878260556],[-73.96012600962393,40.74444393699159],[-73.96001147139265,40.74442254304438],[-73.96002610056908,40.74437386231265],[-73.95980151741627,40.744329368581],[-73.95979139383245,40.74435584424725],[-73.95954322849379,40.74430877828981],[-73.9595241081917,40.74435489590606],[-73.95936852954135,40.74432480534334],[-73.95929971633623,40.74432422217915],[-73.95923368945702,40.74431004302669],[-73.9592159711039,40.74432602663236],[-73.95910022683567,40.74440438450311],[-73.95897577051582,40.74445150791882],[-73.95885419935783,40.74447009115739],[-73.958775370045,40.7445555998636],[-73.9591872398512,40.74462101175963],[-73.95922188572062,40.74455380563087],[-73.95941134001789,40.74459114362487],[-73.95942479652712,40.74459490145683],[-73.95943696655615,40.74460066211309],[-73.95944734539947,40.7446081835084],[-73.95945549887874,40.74461715405908],[-73.95946108867099,40.74462719738258],[-73.95946387758202,40.74463789357502],[-73.95946375112126,40.74464879848416],[-73.9594620474797,40.74466089177199],[-73.95946003174591,40.74466678513851],[-73.95945377637196,40.74467797871576],[-73.95944476107421,40.74468802627893],[-73.95943333829676,40.74469653979328],[-73.9594199474553,40.7447031888835],[-73.95940510501383,40.74470771909118],[-73.95938938708187,40.74470995438122],[-73.95937339680783,40.74470980818744],[-73.95887919943335,40.74462433145465],[-73.95888268557039,40.74461262144167],[-73.95876372515258,40.74459261916412],[-73.9586409667629,40.74494831495516],[-73.95874827896091,40.74496956929866],[-73.95875870330305,40.74495372973999],[-73.95964910654482,40.74514416077284],[-73.95965229756005,40.74521658817356],[-73.95905544841919,40.74510830469195],[-73.95907628880578,40.74509246880728],[-73.95849389303122,40.74498786491633],[-73.95845252269623,40.74511901232482],[-73.95862451222601,40.74514943116529],[-73.95862450071131,40.74516797195999],[-73.9591404409601,40.74529176370702],[-73.95919801002667,40.74529728278576],[-73.95925084238357,40.74531552963386],[-73.95929419130351,40.74534486486369],[-73.95932982273803,40.74539724775557],[-73.95934342702461,40.74547065053108],[-73.95932420250111,40.74554332269673],[-73.95930281987526,40.74557677679971],[-73.95924338775808,40.74564514356172],[-73.95916167785697,40.74570939276163],[-73.95905935607948,40.74575336834634],[-73.95894743371315,40.74577118529589],[-73.95856865756441,40.74568891742152],[-73.95847609450007,40.74568888408763],[-73.95839861481156,40.74571941944536],[-73.95838046238637,40.74575468973873],[-73.95836969226353,40.74579166941705],[-73.95836656305259,40.74582947057591],[-73.9583711499009,40.74586718558522],[-73.95838334268797,40.74590390888174],[-73.95837927151254,40.74595309009345],[-73.95899427160543,40.74606464643539],[-73.95864684421046,40.74654483695275],[-73.95867072374413,40.74664310969384],[-73.95831740194427,40.74707221012015],[-73.95788635502217,40.74756134952379],[-73.95679453290526,40.74883951695578],[-73.95485394268049,40.74804079464118],[-73.95473347953272,40.74801872571106],[-73.95467737259256,40.7481339951511],[-73.95470926432745,40.74815017096336],[-73.95466147272244,40.74821942328077]]]],"type":"MultiPolygon"} +},{ + "id": 907214335, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000244, + "geom:area_square_m":2281836.287495, + "geom:bbox":"-73.906301234,40.8674777725,-73.8846559763,40.8860587377", + "geom:latitude":40.877116, + "geom:longitude":-73.895908, + "iso:country":"US", + "lbl:latitude":40.871778, + "lbl:longitude":-73.901552, + "lbl:max_zoom":18.0, + "mps:latitude":40.877772, + "mps:longitude":-73.895702, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Kings Bridge Heights" + ], + "name:eng_x_variant":[ + "Kings Bridge Heights", + "Kings Bridge Hts", + "Kingsbridge Hts" + ], + "name:und_x_variant":[ + "Kingsbridge Heights" + ], + "reversegeo:latitude":40.877772, + "reversegeo:longitude":-73.895702, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869385, + 102191575, + 907157029, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5c84b23973d4717f0e7ce4c291cced96", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157029, + "microhood_id":907214335, + "neighbourhood_id":85869385, + "region_id":85688543 + } + ], + "wof:id":907214335, + "wof:lastmodified":1566608566, + "wof:name":"Kingsbridge Heights", + "wof:parent_id":85869385, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869389, + 85828381 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90630123396997, + 40.86747777250541, + -73.8846559763116, + 40.88605873771763 +], + "geometry": {"coordinates":[[[[-73.89744236416077,40.86747777250541],[-73.89832528972796,40.86758466024619],[-73.89913481812364,40.86771367918039],[-73.90028751616454,40.86794738711554],[-73.90070357930288,40.8680500673616],[-73.90195690185799,40.86845662915535],[-73.90255141795893,40.86870317417566],[-73.90309191651966,40.86898269809428],[-73.90336792599528,40.86917042151094],[-73.90390850568338,40.86966669669816],[-73.90427727277842,40.87006120667809],[-73.90439810143175,40.87026096484138],[-73.90450609215684,40.87066086475145],[-73.90454402164535,40.87090501356488],[-73.90454682208612,40.87109388791605],[-73.90445421276917,40.87199187458768],[-73.90445420112076,40.87211292142586],[-73.90446747756313,40.87225044216992],[-73.90450248939121,40.87235417312388],[-73.90459760599387,40.87251970938094],[-73.90473680591381,40.87265451939727],[-73.90492369405848,40.87276402673341],[-73.90514601295484,40.87287933401021],[-73.90540140820509,40.87297481693644],[-73.90570427972565,40.8730802370704],[-73.90630123396997,40.87325703931939],[-73.904764567871,40.87658882434162],[-73.9040521207796,40.87822586504058],[-73.90384325703681,40.87861340030227],[-73.90359795268121,40.87895465733902],[-73.90335685640058,40.87925503573629],[-73.90309436030707,40.87951421174128],[-73.90260873722683,40.87997161538176],[-73.89891077062336,40.88431613510735],[-73.8987854354808,40.88444978487433],[-73.89862975141551,40.88461553874616],[-73.89762512929812,40.88553077548906],[-73.89740576707729,40.88569812088361],[-73.89720224841497,40.88583712423552],[-73.89700151647367,40.88595556157108],[-73.89674147353716,40.88605873771763],[-73.89464347995626,40.88569132721192],[-73.89287186931658,40.88531740950062],[-73.88754399910329,40.88426599738443],[-73.88702860944417,40.88441067908988],[-73.88703140853374,40.88373601947579],[-73.88588371422439,40.88130783742078],[-73.88566839140613,40.8807398541035],[-73.88540788211523,40.88040686109021],[-73.88465597631161,40.87980743371418],[-73.885657264264,40.87892613963726],[-73.88780826901973,40.87697024668503],[-73.88830795403736,40.87597086783079],[-73.88866487498171,40.87468596411954],[-73.8894144046008,40.87343674534738],[-73.88980701536764,40.87258013851329],[-73.89037808600925,40.87165214872108],[-73.89181622173834,40.87178545691792],[-73.89519649454596,40.8702958559477],[-73.89726662562113,40.86772603806139],[-73.89744236416077,40.86747777250541]]]],"type":"MultiPolygon"} +},{ + "id": 907215393, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000127, + "geom:area_square_m":1191151.032416, + "geom:bbox":"-73.917088385,40.6035054761,-73.9016421179,40.6165753715", + "geom:latitude":40.609565, + "geom:longitude":-73.909622, + "iso:country":"US", + "lbl:latitude":40.608636, + "lbl:longitude":-73.908736, + "lbl:max_zoom":18.0, + "mps:latitude":40.610864, + "mps:longitude":-73.910241, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"alt mill basin", + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Mill Island" + ], + "name:deu_x_preferred":[ + "Mill-Insel" + ], + "name:eng_x_variant":[ + "Mill Is" + ], + "name:fra_x_preferred":[ + "\u00cele Mill" + ], + "name:glg_x_preferred":[ + "Illa Mill" + ], + "name:ita_x_preferred":[ + "Isola Mill" + ], + "name:lav_x_preferred":[ + "Milla sala" + ], + "name:nno_x_preferred":[ + "Mill Island" + ], + "name:rus_x_preferred":[ + "\u041c\u0438\u043b\u043b" + ], + "name:spa_x_preferred":[ + "Isla Mill" + ], + "name:zho_x_preferred":[ + "\u7c73\u723e\u5cf6" + ], + "reversegeo:latitude":40.610864, + "reversegeo:longitude":-73.910241, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865541, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"04968cff8b872b16ee36f9f4d304a23b", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215393, + "neighbourhood_id":85865541, + "region_id":85688543 + } + ], + "wof:id":907215393, + "wof:lastmodified":1566608561, + "wof:name":"Mill Island", + "wof:parent_id":85865541, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865599 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91708838503332, + 40.60350547610087, + -73.90164211790105, + 40.61657537149951 +], + "geometry": {"coordinates":[[[[-73.913860530607,40.61464226907101],[-73.90964406040364,40.61657537149951],[-73.9096362583485,40.61656543743366],[-73.90959740910345,40.61639266979954],[-73.90900782730674,40.61577278690725],[-73.9086502467629,40.61548455568728],[-73.9085747448176,40.61544019631187],[-73.90840539767109,40.61543670957801],[-73.90834295344662,40.6153731232699],[-73.90785596197074,40.61520595414669],[-73.90740582820483,40.61475340341149],[-73.90730153384297,40.61480891300788],[-73.90687239780972,40.61426255834332],[-73.9067446758728,40.61430216486304],[-73.9054437870297,40.61301450900827],[-73.90535513021175,40.61306605793202],[-73.90505053373569,40.61290299700335],[-73.90509488171139,40.61286332355426],[-73.90496210660231,40.6127937216413],[-73.90490995852693,40.61282147677109],[-73.90424103859348,40.61236227321898],[-73.9043741076631,40.61222538629709],[-73.90431684436874,40.61218761479122],[-73.90428823036949,40.61215582377825],[-73.90427007250861,40.61210021448233],[-73.90429103725185,40.61201485612904],[-73.90420814113487,40.61195515209905],[-73.90410629882956,40.61204241028693],[-73.90404332529361,40.61199868643181],[-73.90406770985659,40.61197796216754],[-73.90411637142174,40.61201075637199],[-73.90416083877494,40.61197258159144],[-73.90409929902899,40.61192776700771],[-73.90414089145187,40.6118961393838],[-73.90384925159574,40.61168886793214],[-73.9035098078227,40.61140649037269],[-73.90339509282558,40.6114795439001],[-73.90340510537733,40.61149047001521],[-73.90331047012515,40.61154716386385],[-73.90328328895754,40.61151984615852],[-73.90337362137006,40.61146642441069],[-73.90337648209004,40.61146970301354],[-73.90349407447785,40.61138900874285],[-73.90342187266513,40.61131126705754],[-73.90333856047306,40.61127148761562],[-73.90313578707037,40.61096753815731],[-73.90286496065255,40.61088193328196],[-73.90274504537501,40.61093146873164],[-73.90262906864341,40.61081018839828],[-73.90268277928784,40.61075272266697],[-73.90239138175349,40.61048244972478],[-73.90232361334397,40.61050423258509],[-73.90225859966304,40.61042277260002],[-73.90221442765916,40.61034331603202],[-73.90222497639523,40.61025596362205],[-73.90227449074737,40.61024607779061],[-73.90220516294404,40.6095530845587],[-73.90207490818699,40.60954900355568],[-73.90214599092714,40.60904276556274],[-73.90210336163588,40.60903791648647],[-73.90196164219765,40.60861970003266],[-73.90196196584291,40.6083993112543],[-73.90199063921324,40.60837892815051],[-73.90201440809039,40.60835068139818],[-73.90200434649167,40.6083141928554],[-73.90199681828278,40.60829973286324],[-73.90197307401527,40.6082875734561],[-73.90197086408789,40.60827985434314],[-73.9019474600089,40.60805972911202],[-73.90191623151597,40.60805967499216],[-73.90187803412172,40.60780778415148],[-73.90191354153022,40.60780748124333],[-73.90187641024089,40.60734541899058],[-73.90190752124974,40.60734516610793],[-73.90189745276439,40.60723317753213],[-73.90186893018573,40.60723309002498],[-73.90167739606477,40.60609454913327],[-73.90171150437259,40.60609676640491],[-73.90170081037196,40.60587222129946],[-73.90165858100022,40.6058569219289],[-73.90164211790105,40.60576336073906],[-73.90177669809981,40.60567468655582],[-73.90181267270415,40.6056678646822],[-73.90185037412343,40.60571038411891],[-73.90187376201807,40.60570355147684],[-73.90189710069488,40.60572961179577],[-73.90272705226189,40.60552354487672],[-73.90520530979806,40.60490818290941],[-73.90524300992125,40.60491009032456],[-73.905287930234,40.60493479702361],[-73.90539181422361,40.60522680882985],[-73.90533534473153,40.60532427015961],[-73.90542440003244,40.6055402975896],[-73.90554717332581,40.60578083484398],[-73.90597461177875,40.60638402870444],[-73.90623422405243,40.60635398000775],[-73.90753931156165,40.60636906558187],[-73.90811001167592,40.60627326534329],[-73.90818770904376,40.60635433731639],[-73.90821683308766,40.60637297909426],[-73.9082860799965,40.60640287030336],[-73.90837376514951,40.60639662774231],[-73.90844815360894,40.60661674673968],[-73.90848093177046,40.60663539956955],[-73.90861472394569,40.60666083776884],[-73.90870529107156,40.60664693764744],[-73.9087459909934,40.60660861635522],[-73.9088291986602,40.6065649660007],[-73.90878731055207,40.60646279780025],[-73.90880856612377,40.60645735304994],[-73.90877243515094,40.60638433964555],[-73.90859415171701,40.60600127131517],[-73.90857234429059,40.60600738587102],[-73.90851058586276,40.60588372150546],[-73.90853378311814,40.60587680174962],[-73.90849236684984,40.60577213812837],[-73.90846664297467,40.60577949344966],[-73.90843408138494,40.60572873265527],[-73.90845649277894,40.60572229091959],[-73.90844212792877,40.60569268997906],[-73.90842412709915,40.60569779365293],[-73.90839365150676,40.60565380921935],[-73.90841899874364,40.60564634053191],[-73.90840420569975,40.60561388354353],[-73.90839062290353,40.60561845715274],[-73.90835983309918,40.60556113982059],[-73.90838206875917,40.60555361873654],[-73.90836540085226,40.60552223243479],[-73.90836357914422,40.60551081202884],[-73.90835197687802,40.60548942136901],[-73.90833426588054,40.60548438371612],[-73.90830727294616,40.60549220187805],[-73.90826141716491,40.60540559544094],[-73.908275785463,40.60540122518408],[-73.90825771968136,40.60536662571434],[-73.90825600624383,40.60536712777169],[-73.90825589550576,40.60535701746724],[-73.90824110417518,40.60532277861841],[-73.90804594062313,40.60538064820044],[-73.90803306097837,40.60535860211742],[-73.90840361574533,40.60524329706001],[-73.90841800626505,40.60526772238173],[-73.90829586897232,40.60530550149006],[-73.90831206762081,40.60533760110233],[-73.90833028939997,40.60533160184381],[-73.90841392944101,40.60550778185572],[-73.90838831344151,40.60551588275037],[-73.9084035756316,40.60554762376042],[-73.90842905394322,40.6055395941201],[-73.90846767150059,40.60563292872575],[-73.90849061430796,40.60562652359295],[-73.9085132769904,40.6056796902525],[-73.90849314617628,40.60568434142081],[-73.90867801158541,40.60605996797879],[-73.90866141097763,40.60606451057451],[-73.90868421931646,40.60610910367548],[-73.90870624207275,40.6061032286686],[-73.90873438126893,40.60615315961844],[-73.90871695983162,40.60615837135179],[-73.90879343156898,40.60632722552801],[-73.90876710091456,40.6063346821251],[-73.90877708012736,40.60635914661736],[-73.90882788621842,40.60644581272111],[-73.90884305768961,40.6064641320021],[-73.90886670981307,40.60647128783419],[-73.90892100027695,40.60645859497022],[-73.90892527516434,40.6064665033868],[-73.90887097975089,40.60648281822842],[-73.9088733834682,40.60649001266194],[-73.90885497326917,40.60649471903447],[-73.90888574422176,40.60653651882861],[-73.90906279646929,40.60646614621087],[-73.90908737385232,40.60646616565406],[-73.90913322764865,40.60648368458373],[-73.9091872847109,40.60649371840982],[-73.90923449625525,40.60648364666095],[-73.90927254334012,40.60645257592512],[-73.90933804983162,40.60647760302482],[-73.90984528326661,40.60616830550727],[-73.90980883736034,40.60608086004867],[-73.90985478785188,40.60602719798733],[-73.9098515484548,40.60599972217793],[-73.90977661382522,40.60582267723147],[-73.90960943418334,40.6056577960507],[-73.90959070936647,40.60566519716741],[-73.90898535789198,40.60515050964305],[-73.90894531863218,40.60504942652807],[-73.90885691315694,40.60506007379731],[-73.9087247642439,40.60473996999448],[-73.90874285904944,40.60472926702112],[-73.90861357941971,40.60451654785949],[-73.90857840990382,40.60452549978713],[-73.90854436867026,40.60444585598159],[-73.90845796643075,40.60446109885738],[-73.90830966174902,40.60412895007758],[-73.90832536835197,40.60407337391871],[-73.90889944956534,40.60391367252357],[-73.90893375673262,40.60397652867653],[-73.9091252659386,40.603927107042],[-73.9091345297295,40.60394410684931],[-73.91092270021196,40.60350547610087],[-73.91099559249963,40.60351822024776],[-73.91365119759625,40.60398251383712],[-73.91362533833536,40.60401648707577],[-73.91377776447153,40.60420645695329],[-73.91384142172902,40.60415768468776],[-73.9146928659457,40.60493896753167],[-73.91497779074935,40.60520409454705],[-73.91491345354056,40.60524538625553],[-73.91504389099261,40.60535572210595],[-73.91509616293008,40.60532360703464],[-73.91633531454008,40.60644705408047],[-73.91673556486211,40.60681456155026],[-73.91660442147965,40.60708939344492],[-73.91672115759056,40.60762484678028],[-73.91643604623195,40.60837599126059],[-73.91638795019617,40.60850270340519],[-73.91632230017538,40.60867566266916],[-73.9167839443277,40.60877388439236],[-73.91657073983444,40.60942353954604],[-73.9166256837356,40.60943683665813],[-73.91683981118773,40.60876001472073],[-73.91648700927337,40.60869920872234],[-73.91650924535951,40.60862975409018],[-73.91688964587335,40.60871001368702],[-73.91685536799852,40.60876093230733],[-73.91687395013781,40.60876294889288],[-73.91682803243785,40.60890605736697],[-73.91699867098366,40.60893673031203],[-73.91705165775819,40.60881413108985],[-73.91708838503332,40.60882085489878],[-73.91702822741905,40.6089748774137],[-73.91681964529593,40.60893138688537],[-73.91665676533476,40.60943674997097],[-73.91681036958977,40.60946691562432],[-73.91679953090701,40.60949419223116],[-73.91670379289533,40.60947271234208],[-73.91668075282955,40.60955133512097],[-73.91664099809648,40.60954543188991],[-73.91666379730019,40.6094572855876],[-73.91656604065847,40.60943782267787],[-73.91638585145242,40.61008889290511],[-73.91606077132613,40.61043050936308],[-73.91616475037755,40.61051557507631],[-73.91554577673008,40.61092847019065],[-73.91492035932124,40.61126665733806],[-73.91499950855349,40.61133572880869],[-73.9148900110566,40.61139315949259],[-73.91481827328003,40.61134207784815],[-73.91464933054561,40.61145502607297],[-73.91449542206001,40.61165322366497],[-73.91458057649919,40.611895384672],[-73.91486259053775,40.61329854209973],[-73.91476336459148,40.61337023831884],[-73.91479289781105,40.61353268727749],[-73.91486977791233,40.61349308259033],[-73.91493418790446,40.61395815505508],[-73.913860530607,40.61464226907101]]]],"type":"MultiPolygon"} +},{ + "id": 907214343, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":52517.018137, + "geom:bbox":"-73.9886903613,40.7470892842,-73.9844757406,40.7498532692", + "geom:latitude":40.74844, + "geom:longitude":-73.986593, + "iso:country":"US", + "lbl:latitude":40.748542, + "lbl:longitude":-73.985958, + "lbl:max_zoom":18.0, + "mps:latitude":40.748436, + "mps:longitude":-73.986594, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0643\u0648\u0631\u064a\u0627 \u062a\u0627\u0648\u0646" + ], + "name:deu_x_preferred":[ + "Koreatown" + ], + "name:jpn_x_preferred":[ + "\u30b3\u30ea\u30a2\u30fb\u30bf\u30a6\u30f3" + ], + "name:kor_x_preferred":[ + "\ucf54\ub9ac\uc544\ud0c0\uc6b4" + ], + "name:pol_x_preferred":[ + "Koreatown" + ], + "name:tha_x_preferred":[ + "\u0e42\u0e04\u0e40\u0e23\u0e35\u0e22\u0e17\u0e32\u0e27\u0e19\u0e4c" + ], + "name:zho_x_preferred":[ + "\u97d3\u570b\u8857" + ], + "reversegeo:latitude":40.748436, + "reversegeo:longitude":-73.986594, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882233, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"18770cfc34040a6109a94b3fffcdac4a", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907214343, + "neighbourhood_id":85882233, + "region_id":85688543 + } + ], + "wof:id":907214343, + "wof:lastmodified":1566608567, + "wof:name":"Koreatown", + "wof:parent_id":85882233, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869391 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9886903613491, + 40.74708928416146, + -73.98447574057809, + 40.74985326918927 +], + "geometry": {"coordinates":[[[[-73.98793290692802,40.74985326918927],[-73.98447574057809,40.74839019876838],[-73.98542120008671,40.74708928416146],[-73.9886903613491,40.74846973943898],[-73.987973,40.74946720539002],[-73.98793290692802,40.74985326918927]]]],"type":"MultiPolygon"} +},{ + "id": 907215397, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":449879.04944, + "geom:bbox":"-74.0072654996,40.6072787972,-73.9960695717,40.6162412108", + "geom:latitude":40.611727, + "geom:longitude":-74.001649, + "iso:country":"US", + "lbl:latitude":40.6095, + "lbl:longitude":-73.999788, + "lbl:max_zoom":18.0, + "mps:latitude":40.611776, + "mps:longitude":-74.001649, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"historic", + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "New Utrecht" + ], + "name:eng_x_preferred":[ + "New Utrecht" + ], + "name:fra_x_preferred":[ + "New Utrecht" + ], + "name:jpn_x_preferred":[ + "\u30cb\u30e5\u30fc\u30fb\u30e6\u30c8\u30ec\u30d2\u30c8" + ], + "name:nld_x_preferred":[ + "Nieuw-Utrecht" + ], + "name:pol_x_preferred":[ + "New Utrecht" + ], + "name:spa_x_preferred":[ + "New Utrecht" + ], + "name:und_x_variant":[ + "Nieuw Utrecht" + ], + "name:zho_x_preferred":[ + "\u65b0\u70cf\u5fb7\u52d2\u652f" + ], + "reversegeo:latitude":40.611776, + "reversegeo:longitude":-74.001649, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85805771, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1536676" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"400edb996667c1a7d4f98df138239c80", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215397, + "neighbourhood_id":85805771, + "region_id":85688543 + } + ], + "wof:id":907215397, + "wof:lastmodified":1566608557, + "wof:name":"New Utrecht", + "wof:parent_id":85805771, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85836777 + ], + "wof:tags":[] +}, + "bbox": [ + -74.00726549955097, + 40.60727879715351, + -73.99606957170282, + 40.61624121082546 +], + "geometry": {"coordinates":[[[[-74.00081640444029,40.61624121082546],[-73.99606957170282,40.61338887804491],[-73.99737264479856,40.61207278436163],[-73.99921678578374,40.61029578345809],[-74.00016967859079,40.60936980235492],[-74.0004453588105,40.60911409755858],[-74.00068142616055,40.60890960256077],[-74.00265501679533,40.60727879715351],[-74.00726549955097,40.61005644336405],[-74.00081640444029,40.61624121082546]]]],"type":"MultiPolygon"} +},{ + "id": 907214345, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000084, + "geom:area_square_m":781056.347222, + "geom:bbox":"-73.8616998769,40.8652005483,-73.8458225368,40.8732883687", + "geom:latitude":40.868585, + "geom:longitude":-73.853924, + "iso:country":"US", + "lbl:latitude":40.869169, + "lbl:longitude":-73.852979, + "lbl:max_zoom":18.0, + "mps:latitude":40.869169, + "mps:longitude":-73.852979, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0644\u0627\u0643\u0648\u0646\u064a\u0627" + ], + "name:aze_x_preferred":[ + "Lakonika" + ], + "name:bel_x_preferred":[ + "\u041b\u0430\u043a\u043e\u043d\u0456\u044f" + ], + "name:bul_x_preferred":[ + "\u041b\u0430\u043a\u043e\u043d\u0438\u044f" + ], + "name:cat_x_preferred":[ + "Lac\u00f2nia" + ], + "name:ceb_x_preferred":[ + "Nom\u00f3s Lakon\u00edas" + ], + "name:ces_x_preferred":[ + "Lak\u00f3nie" + ], + "name:deu_x_preferred":[ + "Lakonien" + ], + "name:ell_x_preferred":[ + "\u039d\u03bf\u03bc\u03cc\u03c2 \u039b\u03b1\u03ba\u03c9\u03bd\u03af\u03b1\u03c2" + ], + "name:epo_x_preferred":[ + "Lakonio" + ], + "name:eus_x_preferred":[ + "Lakonia" + ], + "name:fas_x_preferred":[ + "\u0644\u0627\u06a9\u0648\u0646\u06cc\u0627" + ], + "name:fin_x_preferred":[ + "Lakonia" + ], + "name:fra_x_preferred":[ + "Laconie" + ], + "name:heb_x_preferred":[ + "\u05dc\u05d0\u05e7\u05d5\u05e0\u05d9\u05d4" + ], + "name:hrv_x_preferred":[ + "Prefektura Lakonija" + ], + "name:hun_x_preferred":[ + "Lakon\u00eda prefekt\u00fara" + ], + "name:hye_x_preferred":[ + "\u053c\u0561\u056f\u0578\u0576\u056b\u0561" + ], + "name:ind_x_preferred":[ + "Lakonia" + ], + "name:ita_x_preferred":[ + "Laconia" + ], + "name:jpn_x_preferred":[ + "\u30e9\u30b3\u30cb\u30a2\u770c" + ], + "name:kat_x_preferred":[ + "\u10da\u10d0\u10d9\u10dd\u10dc\u10d8\u10d0" + ], + "name:kor_x_preferred":[ + "\ub77c\ucf54\ub2c8\uc544\ud604" + ], + "name:lav_x_preferred":[ + "Lakonijas nome" + ], + "name:lit_x_preferred":[ + "Lakonijos nomas" + ], + "name:nld_x_preferred":[ + "Laconi\u00eb" + ], + "name:nno_x_preferred":[ + "Lakon\u00eda" + ], + "name:nor_x_preferred":[ + "Lakonia" + ], + "name:pol_x_preferred":[ + "Lakonia" + ], + "name:por_x_preferred":[ + "Lac\u00f4nia" + ], + "name:ron_x_preferred":[ + "Laconia" + ], + "name:rus_x_preferred":[ + "\u041b\u0430\u043a\u043e\u043d\u0438\u044f" + ], + "name:slk_x_preferred":[ + "Lak\u00f3nia" + ], + "name:slv_x_preferred":[ + "Lakonija" + ], + "name:spa_x_preferred":[ + "Laconia" + ], + "name:srp_x_preferred":[ + "\u041b\u0430\u043a\u043e\u043d\u0438\u0458\u0430" + ], + "name:swe_x_preferred":[ + "Lakonien" + ], + "name:tur_x_preferred":[ + "Lakonia" + ], + "name:ukr_x_preferred":[ + "\u041b\u0430\u043a\u043e\u043d\u0456\u044f" + ], + "name:urd_x_preferred":[ + "\u0644\u0627\u06a9\u0648\u0646\u06cc\u0627" + ], + "name:war_x_preferred":[ + "Lakonia" + ], + "name:zho_x_preferred":[ + "\u62c9\u79d1\u5c3c\u4e9a" + ], + "reversegeo:latitude":40.869169, + "reversegeo:longitude":-73.852979, + "src:geom":"mz", + "wof:belongsto":[ + 85869069, + 102191575, + 907157027, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7e0c5284047920dadbc8f1b6125446fd", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157027, + "microhood_id":907214345, + "neighbourhood_id":85869069, + "region_id":85688543 + } + ], + "wof:id":907214345, + "wof:lastmodified":1566608567, + "wof:name":"Laconia", + "wof:parent_id":85869069, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420528059 + ], + "wof:tags":[] +}, + "bbox": [ + -73.86169987689026, + 40.86520054829574, + -73.84582253683678, + 40.8732883686742 +], + "geometry": {"coordinates":[[[[-73.86169987689026,40.86539979725762],[-73.86160442508931,40.86959964458813],[-73.85745,40.86953300000018],[-73.85555000000011,40.87181300000015],[-73.85359796757658,40.8732883686742],[-73.84859700000018,40.87167000000012],[-73.84582253683678,40.87023907623617],[-73.8501024410501,40.86520054829574],[-73.86169987689026,40.86539979725762]]]],"type":"MultiPolygon"} +},{ + "id": 907214347, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":166716.670311, + "geom:bbox":"-73.8658047202,40.7339045233,-73.8587210437,40.7383229704", + "geom:latitude":40.736106, + "geom:longitude":-73.862256, + "iso:country":"US", + "lbl:latitude":40.736319, + "lbl:longitude":-73.862822, + "lbl:max_zoom":18.0, + "mps:latitude":40.736107, + "mps:longitude":-73.862255, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:fra_x_preferred":[ + "LeFrak City" + ], + "reversegeo:latitude":40.736107, + "reversegeo:longitude":-73.862255, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85812357, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c92e2552b8bf1cf7e7c317fa4994dc1e", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907214347, + "neighbourhood_id":85812357, + "region_id":85688543 + } + ], + "wof:id":907214347, + "wof:lastmodified":1566608565, + "wof:name":"LeFrak City", + "wof:parent_id":85812357, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865639 + ], + "wof:tags":[] +}, + "bbox": [ + -73.86580472015291, + 40.73390452332015, + -73.85872104367938, + 40.73832297037776 +], + "geometry": {"coordinates":[[[[-73.86580472015291,40.73658663796159],[-73.86009536569559,40.73832297037776],[-73.85872104367938,40.7355972700913],[-73.864424,40.73390500000026],[-73.86442726358096,40.73390452332015],[-73.86580472015291,40.73658663796159]]]],"type":"MultiPolygon"} +},{ + "id": 907215401, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000267, + "geom:area_square_m":2506929.441025, + "geom:bbox":"-73.9688807178,40.7100272566,-73.9404914311,40.725097", + "geom:latitude":40.716195, + "geom:longitude":-73.955144, + "iso:country":"US", + "lbl:latitude":40.720719, + "lbl:longitude":-73.959652, + "lbl:max_zoom":18.0, + "mps:latitude":40.715435, + "mps:longitude":-73.957971, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "North Side" + ], + "name:eng_x_variant":[ + "N Side", + "North Williamsburg", + "Northside", + "North Williamsburg - North Side" + ], + "name:fra_x_preferred":[ + "Northside" + ], + "reversegeo:latitude":40.715435, + "reversegeo:longitude":-73.957971, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85857853, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7059722" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ceb5075c8682f4079e645ccd88bff6b9", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215401, + "neighbourhood_id":85857853, + "region_id":85688543 + } + ], + "wof:id":907215401, + "wof:lastmodified":1566608558, + "wof:name":"North Side", + "wof:parent_id":85857853, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865609, + 85892951 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96888071778643, + 40.71002725655581, + -73.94049143111448, + 40.7250970000001 +], + "geometry": {"coordinates":[[[[-73.94166486145556,40.72037389954199],[-73.94079600000015,40.720457],[-73.94062917018398,40.71946572051105],[-73.94062400000013,40.719435],[-73.94060093435374,40.71944096101982],[-73.94061376337547,40.71941977559666],[-73.9404930757912,40.71867717748733],[-73.94049143111448,40.71864334963138],[-73.94050647878085,40.71861489544541],[-73.94093939499298,40.71800697891269],[-73.94127706980306,40.71757663788652],[-73.94150707649059,40.71725261851362],[-73.94163504307591,40.71705174310841],[-73.94172079658361,40.71685954311956],[-73.94188458617847,40.71647740117414],[-73.9419921957424,40.71613027480323],[-73.9420318214143,40.71594891477153],[-73.94207308891005,40.71567544161862],[-73.94207468450308,40.71544591920191],[-73.94206206399768,40.71524428362792],[-73.94203103780359,40.71509533783178],[-73.94197500403666,40.71493614004203],[-73.94160327436097,40.71406768781808],[-73.94081582385347,40.71252602788127],[-73.94051553586083,40.71190924224457],[-73.95435955018478,40.71052132620056],[-73.95854137495041,40.71007084256993],[-73.95916397450833,40.7100393173113],[-73.95979721282218,40.71002725655581],[-73.96010336622663,40.71004301542524],[-73.96037390771919,40.71007408499547],[-73.96094128472818,40.71017556890042],[-73.96135419809458,40.71028106557925],[-73.96888071778643,40.71255980294275],[-73.96879580997518,40.7127370388538],[-73.96872927908805,40.71272014379829],[-73.96867997447347,40.71284926990241],[-73.96849857488861,40.71280446473867],[-73.96846973347044,40.71282470934636],[-73.96847298005665,40.7128534277089],[-73.96845231624205,40.71292318664484],[-73.9685676722472,40.71294926378503],[-73.96849927445868,40.71310284084996],[-73.96884229050295,40.71322392502163],[-73.96839125147871,40.71426191817126],[-73.96800830687353,40.71512072330344],[-73.96765448249143,40.71586910922277],[-73.96736391633421,40.71648367905507],[-73.96729235333541,40.71651557261891],[-73.96724404348977,40.71658534991634],[-73.96726331315591,40.71666616718558],[-73.96711354289931,40.71689753910407],[-73.96721527451933,40.7169556385527],[-73.96726798356055,40.71698574095559],[-73.96659690332696,40.71796798088763],[-73.96718343223795,40.71827592102754],[-73.96719282626933,40.71826514452462],[-73.96730741474417,40.71831306668159],[-73.96718243631243,40.71848305630156],[-73.96706867689133,40.71843903629385],[-73.96715101172609,40.71831612593244],[-73.96656241897496,40.71801586680623],[-73.96655430674936,40.71803720335098],[-73.9665311756518,40.71803212709863],[-73.96635278582251,40.7183043739216],[-73.96624200689891,40.71825177876963],[-73.96607597913025,40.71839732855956],[-73.96613319545361,40.7184440227407],[-73.96614672505457,40.7185018713952],[-73.96587893532673,40.71875507768639],[-73.96634259840093,40.71901874243014],[-73.96637067848118,40.71898970835088],[-73.96662993360907,40.71913242786089],[-73.96654344630549,40.71922294246949],[-73.96631897740723,40.7191084200083],[-73.96636503305284,40.71905633078413],[-73.96585847175177,40.71877322834646],[-73.96570332142313,40.7189181142253],[-73.96563350220042,40.71893371662329],[-73.96552577399208,40.71890089271246],[-73.96515385976043,40.71926968304757],[-73.96528401324451,40.71936086098303],[-73.96539613438645,40.71956487925418],[-73.96554693084722,40.71965919869096],[-73.96538515805557,40.71995427278233],[-73.96537431061729,40.7200936330669],[-73.96513713562298,40.72034359475415],[-73.96501325438111,40.72029027209134],[-73.96490548671238,40.72032712936549],[-73.96446386180371,40.72006466300002],[-73.96435606131367,40.72016300359879],[-73.96447993393525,40.72023272348643],[-73.9643976591595,40.72029673502921],[-73.96468283641282,40.72047045735991],[-73.96459313964768,40.72054484421148],[-73.96435090640153,40.72040403237194],[-73.9640876914787,40.72075552952227],[-73.96504914549367,40.72135734425184],[-73.9648942203192,40.72147512088206],[-73.96399793724468,40.72093843807293],[-73.96353855348468,40.72157337851431],[-73.96343759486869,40.72155909516211],[-73.96296566336969,40.72203447712285],[-73.9628721144759,40.72221541331226],[-73.9622534625413,40.72353229754603],[-73.96207271943886,40.72388030040293],[-73.96246790011058,40.72413157960127],[-73.96247195112906,40.72417498927349],[-73.96244340911429,40.72419978548135],[-73.96239043044635,40.72419356718677],[-73.9623659688944,40.72420906161423],[-73.96200744799016,40.72399190160779],[-73.96189426712188,40.72410670210113],[-73.96165984301366,40.72486045446317],[-73.96161100000012,40.7249510000001],[-73.958749,40.723085],[-73.95771999999999,40.72427100000015],[-73.95757200000014,40.7250970000001],[-73.95299787978848,40.72225340372255],[-73.955348,40.720049],[-73.952803,40.718462],[-73.95240200000012,40.718797],[-73.94751599999999,40.719267],[-73.944926,40.72077400000018],[-73.94389900000012,40.719604],[-73.942678,40.720277],[-73.94166486145556,40.72037389954199]]]],"type":"MultiPolygon"} +},{ + "id": 907214349, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000232, + "geom:area_square_m":2171820.677705, + "geom:bbox":"-73.9730151573,40.7582134713,-73.9485504944,40.7757449922", + "geom:latitude":40.766856, + "geom:longitude":-73.961027, + "iso:country":"US", + "lbl:latitude":40.767804, + "lbl:longitude":-73.966805, + "lbl:max_zoom":18.0, + "mps:latitude":40.766695, + "mps:longitude":-73.961026, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Lenox Hill" + ], + "name:eng_x_preferred":[ + "Lenox Hill" + ], + "name:eng_x_variant":[ + "Lenox Hl", + "Meiers Corners" + ], + "name:fra_x_preferred":[ + "Lenox Hill" + ], + "name:jpn_x_preferred":[ + "\u30ec\u30ce\u30c3\u30af\u30b9\u30fb\u30d2\u30eb" + ], + "name:nld_x_preferred":[ + "Lenox Hill" + ], + "name:rus_x_preferred":[ + "\u041b\u0435\u043d\u043e\u043a\u0441-\u0425\u0438\u043b\u043b" + ], + "name:spa_x_preferred":[ + "Lenox Hill" + ], + "name:zho_x_preferred":[ + "\u840a\u8afe\u514b\u65af\u5c71\u4e18" + ], + "reversegeo:latitude":40.766695, + "reversegeo:longitude":-73.961026, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865691, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1190605" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3569f3b0323cd120cdfabf3cb945a01a", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":907214349, + "neighbourhood_id":85865691, + "region_id":85688543 + } + ], + "wof:id":907214349, + "wof:lastmodified":1566608565, + "wof:name":"Lenox Hill", + "wof:parent_id":85865691, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865577 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97301515727007, + 40.75821347130981, + -73.94855049441267, + 40.77574499222065 +], + "geometry": {"coordinates":[[[[-73.96464161150331,40.77574499222065],[-73.94855049441267,40.76897297822743],[-73.94866416477893,40.76885762439959],[-73.95006979303068,40.7670250883835],[-73.95441826078607,40.76218410495125],[-73.95650786241211,40.76028525657404],[-73.95878777342401,40.75821347130981],[-73.96192232679475,40.75954975076039],[-73.97301515727007,40.76427869286467],[-73.96464161150331,40.77574499222065]]]],"type":"MultiPolygon"} +},{ + "id": 907214351, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000271, + "geom:area_square_m":2533297.350739, + "geom:bbox":"-73.8384993965,40.7627635119,-73.8090464637,40.7770457964", + "geom:latitude":40.770195, + "geom:longitude":-73.823112, + "iso:country":"US", + "lbl:latitude":40.711495, + "lbl:longitude":-73.913455, + "lbl:max_zoom":18.0, + "mps:latitude":40.771352, + "mps:longitude":-73.823392, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Linden Hl" + ], + "reversegeo:latitude":40.771352, + "reversegeo:longitude":-73.823392, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"efb64b38c8c77d82d3c49456ea74dbb8", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907214351, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907214351, + "wof:lastmodified":1566608566, + "wof:name":"Linden Hill", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85830727 + ], + "wof:tags":[] +}, + "bbox": [ + -73.83849939652794, + 40.76276351188412, + -73.8090464636919, + 40.77704579641477 +], + "geometry": {"coordinates":[[[[-73.82821800414835,40.76388017512392],[-73.83135247010006,40.76304044310682],[-73.83199622145781,40.76292258658353],[-73.83257470756045,40.76285001607076],[-73.83313428006984,40.76277790020225],[-73.83333392610835,40.76276477101973],[-73.8335991866563,40.76276351188412],[-73.83405609659472,40.76277137512687],[-73.83461324516269,40.76278637380747],[-73.83510761041599,40.76279792558182],[-73.83559052249721,40.76280837058697],[-73.83603173211714,40.76349739052698],[-73.83630126100054,40.76393681054032],[-73.83683762816267,40.76473964522026],[-73.83709428380034,40.76512943628598],[-73.83751309013844,40.76571661825528],[-73.83775347685864,40.76602822058663],[-73.83794799211823,40.76620037131978],[-73.83820808251158,40.76636665362127],[-73.83849939652794,40.76652476526994],[-73.83700981026945,40.76844800000021],[-73.83690881026952,40.76886600000016],[-73.83548581026929,40.77008100000015],[-73.83539781026947,40.77036000000014],[-73.83062381026953,40.77329000000027],[-73.82901381026946,40.77486400000029],[-73.82884081026944,40.77469900000014],[-73.82809881026942,40.77603100000022],[-73.82777681026951,40.7759770000002],[-73.82717751020377,40.77704579641477],[-73.82582500000011,40.77667100000023],[-73.82167,40.77686300000013],[-73.817643,40.77639800000021],[-73.81278400000014,40.77561465210167],[-73.80952646121067,40.77535287634397],[-73.80999220249649,40.77175319129923],[-73.8090464636919,40.77158536951638],[-73.80982576352218,40.76603407403022],[-73.81743962656972,40.76658858574813],[-73.82510378395146,40.76572775934122],[-73.82794461588107,40.76538899239251],[-73.82821800414835,40.76388017512392]]]],"type":"MultiPolygon"} +},{ + "id": 907214353, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000121, + "geom:area_square_m":1136007.143385, + "geom:bbox":"-73.8584295079,40.6601189332,-73.8416662824,40.6730659693", + "geom:latitude":40.666479, + "geom:longitude":-73.85134, + "iso:country":"US", + "lbl:latitude":40.667501, + "lbl:longitude":-73.851201, + "lbl:max_zoom":18.0, + "mps:latitude":40.66666, + "mps:longitude":-73.851467, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Lindenwood" + ], + "reversegeo:latitude":40.66666, + "reversegeo:longitude":-73.851467, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420782889, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4b3134aceb8b0d4f491589b6af1ebb36", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907214353, + "neighbourhood_id":420782889, + "region_id":85688543 + } + ], + "wof:id":907214353, + "wof:lastmodified":1566608565, + "wof:name":"Lindenwood", + "wof:parent_id":420782889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869421 + ], + "wof:tags":[] +}, + "bbox": [ + -73.85842950791307, + 40.66011893315381, + -73.84166628235876, + 40.67306596933441 +], + "geometry": {"coordinates":[[[[-73.84214,40.66826900000051],[-73.84166628235876,40.66606970683247],[-73.84635668164377,40.66408967738508],[-73.84832747751602,40.66311960729959],[-73.85002824742175,40.6622714289968],[-73.85101578705572,40.66168201741061],[-73.85213760436552,40.66087709871327],[-73.85761537185581,40.66011893315381],[-73.85842950791307,40.66345336093104],[-73.85568461221037,40.66386749287555],[-73.85763317698044,40.67165597514837],[-73.85794356919956,40.67306596933441],[-73.85571699999984,40.67253400000025],[-73.84214,40.66826900000051]]]],"type":"MultiPolygon"} +},{ + "id": 907215403, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000146, + "geom:area_square_m":1373219.995561, + "geom:bbox":"-74.11964,40.5477800654,-74.099929142,40.564311", + "geom:latitude":40.556095, + "geom:longitude":-74.110163, + "iso:country":"US", + "lbl:latitude":40.551135, + "lbl:longitude":-74.113739, + "lbl:max_zoom":18.0, + "mps:latitude":40.558344, + "mps:longitude":-74.108673, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Oakwood Bch" + ], + "reversegeo:latitude":40.558344, + "reversegeo:longitude":-74.108673, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85839103, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ecaeafb167b83aa18056bd889727070e", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907215403, + "neighbourhood_id":85839103, + "region_id":85688543 + } + ], + "wof:id":907215403, + "wof:lastmodified":1566608563, + "wof:name":"Oakwood Beach", + "wof:parent_id":85839103, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85839109 + ], + "wof:tags":[] +}, + "bbox": [ + -74.11964, + 40.54778006543032, + -74.09992914201327, + 40.56431100000015 +], + "geometry": {"coordinates":[[[[-74.119528,40.55226700000016],[-74.11793052255378,40.5531052631534],[-74.11787760605839,40.55313754313539],[-74.1178345715502,40.55317773798156],[-74.11731184418328,40.55371175033171],[-74.11729748562334,40.55373861572507],[-74.11728673603859,40.55376175049052],[-74.11723616110602,40.55400088801649],[-74.11706976980088,40.55456012800727],[-74.11702693508806,40.55466543533403],[-74.11691765771805,40.55486264386834],[-74.11669616360982,40.55520892929831],[-74.11635991651687,40.55575158303125],[-74.11609686786336,40.55619350994183],[-74.11603840682618,40.55626717769552],[-74.11596480823312,40.5563503866334],[-74.11570803458051,40.55657987589935],[-74.11561347998484,40.55665803264817],[-74.11551022021285,40.55673413105502],[-74.1154259617482,40.55677694266507],[-74.11456147781175,40.5570918535997],[-74.11449482806766,40.55711097643419],[-74.11408134763191,40.55722391990093],[-74.11366555321091,40.55737257866952],[-74.11362275051427,40.55738996951263],[-74.11333197465588,40.55754851645998],[-74.11329949882929,40.55758142779222],[-74.11314268453069,40.55777446425258],[-74.11312691698605,40.55779746213264],[-74.11312515110778,40.55782410335051],[-74.11323081907069,40.55810972113022],[-74.11324095583485,40.55815061478422],[-74.11325098551984,40.55819777919967],[-74.11325846912243,40.55841559982784],[-74.11325672061774,40.55845454879459],[-74.11326058353842,40.55849111430597],[-74.11331549735419,40.55869210034547],[-74.11332387662566,40.55875720511286],[-74.1133206817389,40.55882689434781],[-74.11330450628499,40.55893770850869],[-74.11326398898134,40.55906673665404],[-74.11320252300843,40.55921726892974],[-74.1131317690683,40.55935063803283],[-74.11300651789551,40.55961822850512],[-74.11300495855694,40.55966671872836],[-74.11301987331277,40.55971956690893],[-74.11305304162602,40.55976754128284],[-74.11311359542664,40.55984560397637],[-74.11314402717258,40.55992524504536],[-74.11315456540801,40.55999799652767],[-74.11315101229984,40.56004892212718],[-74.11313750014597,40.56007287480536],[-74.11312256738141,40.56009271419189],[-74.11294241016263,40.56032397867516],[-74.11278550698091,40.56056553325866],[-74.11262247989703,40.56085522877137],[-74.11226000000001,40.56145800000017],[-74.110821,40.56342100000023],[-74.11014,40.56431100000015],[-74.105576,40.56199000000014],[-74.100337,40.55908000000024],[-74.09992914201327,40.55907068565254],[-74.10079963928123,40.55832182111594],[-74.10124354139896,40.55766083131562],[-74.10169304638774,40.5565842281856],[-74.10184637674718,40.55621698878014],[-74.10184032964915,40.5559446392413],[-74.10137477595717,40.55569237210671],[-74.1013459379665,40.55562567725728],[-74.1013542327053,40.55558329994362],[-74.10140516910836,40.55553852616443],[-74.10147440635068,40.5555336109976],[-74.10265076360244,40.55613440478538],[-74.10286274405615,40.55602559705046],[-74.10309839111545,40.55590464145133],[-74.10465943491411,40.55412046731152],[-74.10508907947467,40.55323546801084],[-74.10486249561579,40.55308001800671],[-74.10484447636348,40.55302581455642],[-74.1049146375917,40.55301626711248],[-74.10642822065182,40.55385337362142],[-74.10643358982918,40.55396967062586],[-74.10640076728387,40.55406134646239],[-74.10648150812332,40.55415682837324],[-74.10667681964422,40.55418786113203],[-74.10704738449667,40.55419545154714],[-74.10734831283665,40.55414815203129],[-74.10853922462557,40.5532580256736],[-74.11028457387542,40.5514963574177],[-74.1112223305614,40.55014355926794],[-74.11278846958076,40.54788426322702],[-74.11301046104482,40.54778006543032],[-74.11338340616298,40.54807337515101],[-74.11359617405465,40.54806131597405],[-74.11463999999999,40.54911200000024],[-74.11606,40.54865300000027],[-74.116507,40.54864700000032],[-74.119438,40.55135200000031],[-74.11964,40.55181700000023],[-74.119528,40.55226700000016]]]],"type":"MultiPolygon"} +},{ + "id": 907214359, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000072, + "geom:area_square_m":671667.620837, + "geom:bbox":"-74.1140405315,40.6346955923,-74.105317004,40.6455791288", + "geom:latitude":40.640193, + "geom:longitude":-74.109686, + "iso:country":"US", + "lbl:latitude":40.642413, + "lbl:longitude":-74.10749, + "lbl:max_zoom":18.0, + "mps:latitude":40.641336, + "mps:longitude":-74.109765, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0644\u064a\u0641\u064a\u0646\u063a\u0633\u062a\u0648\u0646" + ], + "name:bel_x_preferred":[ + "\u041b\u0456\u0432\u0456\u043d\u0433\u0441\u0442\u0430\u043d" + ], + "name:bre_x_preferred":[ + "Livingston" + ], + "name:cat_x_preferred":[ + "Livingston" + ], + "name:ceb_x_preferred":[ + "Livingston" + ], + "name:ces_x_preferred":[ + "Livingston" + ], + "name:deu_x_preferred":[ + "Livingston" + ], + "name:eng_x_preferred":[ + "Livingston" + ], + "name:eus_x_preferred":[ + "Livingston" + ], + "name:fas_x_preferred":[ + "\u0644\u06cc\u0648\u06cc\u0646\u06af\u0633\u062a\u0648\u0646" + ], + "name:fin_x_preferred":[ + "Livingston" + ], + "name:fra_x_preferred":[ + "Livingston" + ], + "name:heb_x_preferred":[ + "\u05dc\u05d9\u05d5\u05d5\u05d9\u05e0\u05d2\u05e1\u05d8\u05d5\u05df" + ], + "name:hun_x_preferred":[ + "Livingston" + ], + "name:ita_x_preferred":[ + "Livingston" + ], + "name:lav_x_preferred":[ + "Livingston" + ], + "name:nld_x_preferred":[ + "Livingston" + ], + "name:nor_x_preferred":[ + "Livingston" + ], + "name:pol_x_preferred":[ + "Livingston" + ], + "name:por_x_preferred":[ + "Livingston" + ], + "name:rus_x_preferred":[ + "\u041b\u0438\u0432\u0438\u043d\u0433\u0441\u0442\u043e\u043d" + ], + "name:sco_x_preferred":[ + "Livingston" + ], + "name:slk_x_preferred":[ + "Livingston" + ], + "name:spa_x_preferred":[ + "Livingston" + ], + "name:srp_x_preferred":[ + "\u041b\u0438\u0432\u0438\u043d\u0433\u0441\u0442\u043e\u043d" + ], + "name:swe_x_preferred":[ + "Livingston" + ], + "name:und_x_variant":[ + "Centerville" + ], + "name:urd_x_preferred":[ + "\u0644\u06cc\u0648\u0646\u06af\u0633\u0679\u0646" + ], + "name:vol_x_preferred":[ + "Livingston" + ], + "name:war_x_preferred":[ + "Livingston" + ], + "reversegeo:latitude":40.641336, + "reversegeo:longitude":-74.109765, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865885, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ba404c8764823cfdce8675250336d194", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907214359, + "neighbourhood_id":85865885, + "region_id":85688543 + } + ], + "wof:id":907214359, + "wof:lastmodified":1566608566, + "wof:name":"Livingston", + "wof:parent_id":85865885, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869437 + ], + "wof:tags":[] +}, + "bbox": [ + -74.11404053146028, + 40.63469559230656, + -74.10531700396457, + 40.64557912880397 +], + "geometry": {"coordinates":[[[[-74.10678324698173,40.64557135459582],[-74.10531700396457,40.63888405516354],[-74.10726434648424,40.63864848389763],[-74.1072783481939,40.63864048292069],[-74.1072881842439,40.63863000749863],[-74.10729234990355,40.63861614661582],[-74.10729101640739,40.63860314502828],[-74.10644368416507,40.63469559230656],[-74.11232752396165,40.63474459163873],[-74.11401818704691,40.64346277016022],[-74.11379666086012,40.64360951580807],[-74.11404053146028,40.64404250211994],[-74.11395094068484,40.64413659167529],[-74.11288806510966,40.64453244463761],[-74.11282960893541,40.64446242868855],[-74.11379152893629,40.64407522183075],[-74.11380493647307,40.64404273550789],[-74.11385205211589,40.64404098058402],[-74.11389010824354,40.64398966912685],[-74.11381590334793,40.6438957413406],[-74.11376653215508,40.64389066348559],[-74.11369030102539,40.64392321192989],[-74.11363867687005,40.64391300836716],[-74.11354450863924,40.64395412006733],[-74.11333023192641,40.6437234975864],[-74.11180799136832,40.64461067447674],[-74.11190333685239,40.64470602724287],[-74.11116129469261,40.64509642318148],[-74.111116336666,40.64504690232309],[-74.11176646650024,40.64470616034492],[-74.11172529995717,40.64465936172609],[-74.11101110999863,40.64505309528206],[-74.10973932564494,40.64546372818478],[-74.10886489895968,40.64557912880397],[-74.10678324698173,40.64557135459582]]]],"type":"MultiPolygon"} +},{ + "id": 907215405, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000116, + "geom:area_square_m":1090882.249937, + "geom:bbox":"-74.134808,40.556535,-74.116379457,40.568963435", + "geom:latitude":40.562805, + "geom:longitude":-74.125838, + "iso:country":"US", + "lbl:latitude":40.563511, + "lbl:longitude":-74.125978, + "lbl:max_zoom":18.0, + "mps:latitude":40.563511, + "mps:longitude":-74.125978, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Oakwood Heights Station" + ], + "name:eng_x_variant":[ + "Oakwood Heights Station" + ], + "name:und_x_variant":[ + "Oakwood" + ], + "reversegeo:latitude":40.563511, + "reversegeo:longitude":-74.125978, + "src:geom":"mz", + "wof:belongsto":[ + 85839103, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0fc88e602cbdba1db33e02c0cf18e920", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907215405, + "neighbourhood_id":85839103, + "region_id":85688543 + } + ], + "wof:id":907215405, + "wof:lastmodified":1566608563, + "wof:name":"Oakwood Heights", + "wof:parent_id":85839103, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420529769 + ], + "wof:tags":[] +}, + "bbox": [ + -74.13480799999988, + 40.556535, + -74.11637945696785, + 40.56896343495993 +], + "geometry": {"coordinates":[[[[-74.11637945696785,40.56389835922349],[-74.12061342608573,40.56007369074995],[-74.12070177568921,40.56000090109184],[-74.12081563776466,40.55992029082308],[-74.12094239893815,40.55984567877207],[-74.12111738414814,40.5597487637741],[-74.12134345323155,40.55963030002948],[-74.12149816348374,40.55956735313627],[-74.1216324450224,40.55953246476157],[-74.12177349063049,40.55952347808248],[-74.12193872917433,40.5595275383563],[-74.12210053319426,40.55953663896677],[-74.12226234599635,40.55955917651826],[-74.12286590179865,40.55966623231706],[-74.12323384144631,40.55971260493735],[-74.12351448706238,40.55973571053165],[-74.12412678668856,40.55972862745309],[-74.12440000268511,40.5596914905767],[-74.12460719432464,40.55964483061151],[-74.12472934600603,40.55959447047631],[-74.1248471118511,40.55952323122793],[-74.12516705023209,40.55931708253913],[-74.12559019624979,40.55901518354985],[-74.12594851439729,40.55874414989358],[-74.12608297463493,40.55861883071494],[-74.12624304924041,40.55845238215831],[-74.12645835705375,40.55821818459664],[-74.12692894202686,40.55769935374728],[-74.12730000000001,40.55729500000015],[-74.128117,40.556535],[-74.12820294969541,40.55658980014165],[-74.12960699999999,40.55748500000024],[-74.13480799999988,40.56079900000017],[-74.13340700000001,40.56213000000017],[-74.13311,40.56286800000012],[-74.13261353310502,40.56345336238953],[-74.1318523611161,40.56435082697138],[-74.13182630369305,40.56438155013851],[-74.13155999999999,40.56469200000024],[-74.13151537835486,40.5647159013581],[-74.13137094329778,40.56478839347814],[-74.13047,40.56497200000031],[-74.1271440000001,40.56757900000018],[-74.12491721724359,40.56896343495993],[-74.1249,40.5689490000002],[-74.11637945696785,40.56389835922349]]]],"type":"MultiPolygon"} +},{ + "id": 907214361, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00007, + "geom:area_square_m":655508.421275, + "geom:bbox":"-73.7795997094,40.6718523517,-73.7653113081,40.6808257002", + "geom:latitude":40.676299, + "geom:longitude":-73.77301, + "iso:country":"US", + "lbl:latitude":40.675179, + "lbl:longitude":-73.760522, + "lbl:max_zoom":18.0, + "mps:latitude":40.676397, + "mps:longitude":-73.773606, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Locust Mnr" + ], + "reversegeo:latitude":40.676397, + "reversegeo:longitude":-73.773606, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827297, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fa89b03566c626035f911000310fa488", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907214361, + "neighbourhood_id":85827297, + "region_id":85688543 + } + ], + "wof:id":907214361, + "wof:lastmodified":1566608566, + "wof:name":"Locust Manor", + "wof:parent_id":85827297, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85831177 + ], + "wof:tags":[] +}, + "bbox": [ + -73.77959970939769, + 40.6718523516756, + -73.7653113081317, + 40.68082570022268 +], + "geometry": {"coordinates":[[[[-73.7653113081317,40.67538599781762],[-73.76575644580544,40.67478851401022],[-73.7687485461267,40.67413294322495],[-73.76837619586451,40.67302350106268],[-73.7737353799955,40.67224688056498],[-73.77468903578087,40.6718523516756],[-73.77959970939769,40.67837267441074],[-73.77913445939836,40.67871456212671],[-73.77860961759325,40.67907557250198],[-73.7780508660672,40.67942697824559],[-73.77786107057216,40.6795424869073],[-73.77768346440723,40.67964235994502],[-73.77732203385658,40.67980339607842],[-73.77713326342371,40.67987018072733],[-73.77689902607095,40.67996317755359],[-73.77653638117981,40.68007642131061],[-73.77503794518645,40.68052113813983],[-73.77408629838284,40.68082570022268],[-73.7653113081317,40.67538599781762]]]],"type":"MultiPolygon"} +},{ + "id": 907215407, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000049, + "geom:area_square_m":456029.611576, + "geom:bbox":"-73.9180723851,40.6763501517,-73.9054791744,40.6871857866", + "geom:latitude":40.681023, + "geom:longitude":-73.914358, + "iso:country":"US", + "lbl:latitude":40.681161, + "lbl:longitude":-73.911972, + "lbl:max_zoom":18.0, + "mps:latitude":40.681062, + "mps:longitude":-73.914263, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Ocean Hl" + ], + "reversegeo:latitude":40.681062, + "reversegeo:longitude":-73.914263, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85892907, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d0aa9d1cd877b33e19c0a15f61cf9c58", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215407, + "neighbourhood_id":85892907, + "region_id":85688543 + } + ], + "wof:id":907215407, + "wof:lastmodified":1566608559, + "wof:name":"Ocean Hill", + "wof:parent_id":85892907, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865619 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91807238514352, + 40.67635015166492, + -73.90547917436027, + 40.68718578655707 +], + "geometry": {"coordinates":[[[[-73.91647710058697,40.67664798328891],[-73.91637832421939,40.67864054948328],[-73.91807238514352,40.68718578655707],[-73.90547917436027,40.68003942999983],[-73.91159524047028,40.6835101564017],[-73.91190877871428,40.68318894816007],[-73.9108736676978,40.67817672464339],[-73.91102157521259,40.67635015166492],[-73.91647710058697,40.67664798328891]]]],"type":"MultiPolygon"} +},{ + "id": 907215409, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00008, + "geom:area_square_m":753216.678502, + "geom:bbox":"-73.8390010273,40.647972211,-73.8285113851,40.6622376581", + "geom:latitude":40.655744, + "geom:longitude":-73.834354, + "iso:country":"US", + "lbl:latitude":40.657764, + "lbl:longitude":-73.835106, + "lbl:max_zoom":18.0, + "mps:latitude":40.655411, + "mps:longitude":-73.835148, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Old Howard Beach" + ], + "name:eng_x_variant":[ + "Old Howard Bch" + ], + "name:fra_x_preferred":[ + "Old Howard Beach" + ], + "name:spa_x_preferred":[ + "Old Howard Beach" + ], + "name:urd_x_preferred":[ + "\u067e\u0631\u0627\u0646\u0627 \u06c1\u0627\u0648\u0631\u0688 \u0633\u0627\u062d\u0644\u060c \u06a9\u0648\u0626\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u067e\u0631\u0627\u0646\u0627 \u06c1\u0627\u0648\u0631\u0688 \u0633\u0627\u062d\u0644" + ], + "reversegeo:latitude":40.655411, + "reversegeo:longitude":-73.835148, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420782889, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q58996" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3a36ca93819bc2d98345ee63d610316b", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215409, + "neighbourhood_id":420782889, + "region_id":85688543 + } + ], + "wof:id":907215409, + "wof:lastmodified":1566608559, + "wof:name":"Old Howard Beach", + "wof:parent_id":420782889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869569 + ], + "wof:tags":[] +}, + "bbox": [ + -73.83900102727786, + 40.64797221101783, + -73.82851138512342, + 40.66223765805183 +], + "geometry": {"coordinates":[[[[-73.83024427039405,40.65834996934829],[-73.83096907996676,40.65823029417257],[-73.83128446183636,40.65840668263054],[-73.83194576717007,40.65827434685906],[-73.83284428358573,40.65813812869351],[-73.83338439472553,40.65805185920807],[-73.83306069956932,40.65668787927794],[-73.83256888625483,40.65502775193514],[-73.83111241541602,40.6494199220414],[-73.83104647225153,40.64908920770502],[-73.83106495328715,40.64855903507988],[-73.83128091312282,40.64821421809398],[-73.83166902767802,40.64797221101783],[-73.83434221467306,40.64809976684818],[-73.83461829473167,40.64812410539683],[-73.83488920791653,40.648171349698],[-73.83515168862553,40.64824093026816],[-73.8354025728768,40.64833200838049],[-73.83556712318169,40.64845660338249],[-73.8356470089909,40.64855777279048],[-73.83569927830652,40.64866891475944],[-73.83572189870637,40.64878570798319],[-73.83570218834348,40.64895123294701],[-73.83571183379931,40.64900637726978],[-73.83578775207218,40.64916219867902],[-73.83613354040506,40.64944408060821],[-73.83900102727786,40.66105675039186],[-73.83104482162398,40.66223765805183],[-73.82851138512342,40.65730188028229],[-73.82895778585919,40.65723823571037],[-73.82898079995608,40.65729522216304],[-73.82901325301842,40.65742521182772],[-73.8290774848878,40.65758128480357],[-73.82913225563838,40.6577027547627],[-73.82917919734581,40.65779977854429],[-73.82925795356898,40.6578541939517],[-73.82932389422105,40.65788066313419],[-73.82941762232907,40.65788323518793],[-73.82951375096916,40.65791452442423],[-73.82952765623918,40.6579289891662],[-73.82955414647579,40.65797806131059],[-73.82965499496454,40.65808820416816],[-73.82972820317217,40.65812103421224],[-73.82975314668512,40.65813615539206],[-73.82977638969628,40.65816095049096],[-73.82979192787609,40.65818477793189],[-73.82986405418083,40.65822950331804],[-73.82991710261365,40.658249440254],[-73.82993039585949,40.6582600959532],[-73.83000933019633,40.65832371226768],[-73.83005302050798,40.65833887197489],[-73.83011807881158,40.65837929937042],[-73.83013028740397,40.65840264372133],[-73.83012345473459,40.65845006242994],[-73.830075845369,40.6584826440637],[-73.83002290290229,40.6584917366806],[-73.82995500685286,40.65848794953019],[-73.82988279238077,40.65846860680397],[-73.82973207932741,40.65849859839248],[-73.82966825159824,40.65852258057252],[-73.82962667738497,40.65855707860329],[-73.82960652783133,40.65860018631549],[-73.82959986903049,40.65865680691556],[-73.82961343158017,40.6587096602713],[-73.82967103985069,40.65879528408583],[-73.82972318498396,40.65889390400772],[-73.82975486375837,40.65894854086476],[-73.82981399218828,40.65901687524381],[-73.82991536797647,40.65915541453217],[-73.82992819287433,40.65918098140744],[-73.82996192425618,40.65930351949154],[-73.83000997071115,40.65950143734399],[-73.83001426888885,40.65952333831563],[-73.83005013033117,40.65963239448659],[-73.83011665938493,40.65978815376845],[-73.83013138340064,40.65980690317586],[-73.8301495010476,40.65980868495731],[-73.83016243281733,40.65980411092637],[-73.83017732063981,40.65977606369462],[-73.83016641944117,40.65973654021963],[-73.83014068468835,40.65970920263296],[-73.83013365723927,40.65969380058537],[-73.83011550258627,40.65964315775378],[-73.83007338502357,40.65947650297142],[-73.83001214184992,40.65916316387903],[-73.82994729215724,40.65910569491066],[-73.82982589468604,40.65896126923766],[-73.82978551303395,40.65888007029174],[-73.8297638699683,40.65882457547289],[-73.82972481464319,40.6587440262994],[-73.8296952008341,40.65865592869157],[-73.82970652894599,40.65860197635541],[-73.8297924026004,40.6585680176266],[-73.82987072192736,40.658570973769],[-73.83000120757706,40.65859389024406],[-73.8301580575766,40.65851742995979],[-73.83019910654937,40.65850896906417],[-73.83024406800726,40.6584295019877],[-73.83024427039405,40.65834996934829]]]],"type":"MultiPolygon"} +},{ + "id": 907214363, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000111, + "geom:area_square_m":1036659.644239, + "geom:bbox":"-73.827241,40.803996,-73.790063,40.818557", + "geom:latitude":40.812762, + "geom:longitude":-73.806178, + "iso:country":"US", + "lbl:latitude":40.815777, + "lbl:longitude":-73.801432, + "lbl:max_zoom":18.0, + "mps:latitude":40.815589, + "mps:longitude":-73.801822, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Locust Point" + ], + "name:deu_x_preferred":[ + "Locust Point" + ], + "name:eng_x_variant":[ + "Locust Pt" + ], + "name:nld_x_preferred":[ + "Locust Point" + ], + "reversegeo:latitude":40.815589, + "reversegeo:longitude":-73.801822, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 421205773, + 102191575, + 85633793, + 102083063, + 85977539, + 907157031, + 85852219, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6f21a30de70d41be6030c6fc02338e13", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157031, + "microhood_id":907214363, + "neighbourhood_id":85852219, + "region_id":85688543 + } + ], + "wof:id":907214363, + "wof:lastmodified":1613773512, + "wof:name":"Locust Point", + "wof:parent_id":85852219, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868655 + ], + "wof:tags":[] +}, + "bbox": [ + -73.827241, + 40.803996, + -73.790063, + 40.818557 +], + "geometry": {"coordinates":[[[-73.827241,40.812993],[-73.822114,40.814738],[-73.82208300000001,40.814748],[-73.822047,40.814755],[-73.817717,40.815682],[-73.81418499999999,40.816437],[-73.81410700000001,40.81645],[-73.81403899999999,40.816457],[-73.80918800000001,40.816822],[-73.80736400000001,40.81705],[-73.807052,40.817104],[-73.80677300000001,40.817166],[-73.806517,40.817241],[-73.80628400000001,40.817322],[-73.806164,40.817378],[-73.80550100000001,40.817684],[-73.80386799999999,40.818531],[-73.803483,40.818277],[-73.802674,40.818239],[-73.802522,40.818526],[-73.80207900000001,40.818557],[-73.801885,40.818359],[-73.800708,40.818045],[-73.800583,40.817911],[-73.800573,40.8177],[-73.798095,40.816796],[-73.79759,40.816508],[-73.797381,40.815764],[-73.797715,40.815513],[-73.798119,40.815699],[-73.798642,40.815464],[-73.79902800000001,40.815541],[-73.80011,40.814029],[-73.800111,40.814025],[-73.800488,40.813867],[-73.800916,40.813761],[-73.80132,40.813261],[-73.801458,40.812941],[-73.80174599999999,40.812865],[-73.80142600000001,40.812424],[-73.801374,40.812444],[-73.801339,40.812394],[-73.801388,40.812367],[-73.80140400000001,40.812363],[-73.801759,40.812861],[-73.80259100000001,40.812509],[-73.802768,40.812464],[-73.80286099999999,40.812452],[-73.803048,40.812449],[-73.803141,40.812457],[-73.80323199999999,40.812473],[-73.80340700000001,40.812524],[-73.80347,40.812559],[-73.803512,40.812559],[-73.803549,40.81253],[-73.803579,40.812519],[-73.803614,40.812521],[-73.803645,40.812557],[-73.80365399999999,40.81258],[-73.80364,40.812635],[-73.80352000000001,40.812922],[-73.80362100000001,40.812965],[-73.803738,40.812794],[-73.80377900000001,40.81281],[-73.803614,40.813045],[-73.80385699999999,40.813277],[-73.80425200000001,40.81365],[-73.804344,40.813597],[-73.80435799999999,40.813609],[-73.804154,40.813731],[-73.804142,40.813718],[-73.80422900000001,40.813663],[-73.803872,40.813322],[-73.803602,40.813056],[-73.80355900000001,40.813043],[-73.80361499999999,40.812972],[-73.80351400000001,40.812935],[-73.803459,40.813051],[-73.803388,40.81313],[-73.803297,40.813169],[-73.803253,40.813197],[-73.803235,40.813296],[-73.803344,40.81332],[-73.80334999999999,40.813305],[-73.803461,40.813329],[-73.80345199999999,40.813352],[-73.80336800000001,40.813332],[-73.803364,40.813341],[-73.80323199999999,40.813316],[-73.803224,40.813359],[-73.803455,40.813403],[-73.803967,40.813967],[-73.804044,40.813941],[-73.804091,40.813952],[-73.80418400000001,40.81403],[-73.804191,40.814053],[-73.804177,40.814061],[-73.804435,40.814293],[-73.80445400000001,40.814292],[-73.80452200000001,40.814247],[-73.804531,40.814255],[-73.804434,40.814319],[-73.804036,40.813963],[-73.80396,40.813988],[-73.80343000000001,40.813422],[-73.803355,40.813406],[-73.80322200000001,40.813375],[-73.80319900000001,40.813505],[-73.803517,40.813952],[-73.80418,40.81459],[-73.804315,40.814592],[-73.80436,40.81457],[-73.80435300000001,40.814556],[-73.80439200000001,40.814538],[-73.80443,40.814583],[-73.80438599999999,40.814604],[-73.804365,40.814588],[-73.80432999999999,40.814603],[-73.804351,40.814619],[-73.804473,40.81489],[-73.805115,40.815636],[-73.80596,40.816042],[-73.80619900000001,40.816287],[-73.806285,40.816268],[-73.806416,40.816514],[-73.806545,40.816615],[-73.806572,40.816606],[-73.806567,40.8166],[-73.806584,40.816595],[-73.80654699999999,40.816527],[-73.806543,40.816528],[-73.80631,40.816147],[-73.806088,40.815931],[-73.805453,40.815499],[-73.80540999999999,40.815505],[-73.80528200000001,40.815411],[-73.805081,40.815198],[-73.804804,40.814899],[-73.804554,40.81463],[-73.804542,40.814608],[-73.804659,40.814545],[-73.80468399999999,40.814572],[-73.80458900000001,40.814622],[-73.80481399999999,40.814877],[-73.805099,40.815187],[-73.805279,40.815377],[-73.805398,40.815471],[-73.805436,40.81546],[-73.806101,40.81592],[-73.80632900000001,40.816138],[-73.80654199999999,40.816455],[-73.806612,40.816578],[-73.806707,40.816553],[-73.80672,40.816575],[-73.806579,40.816618],[-73.806606,40.816664],[-73.806929,40.816568],[-73.80653599999999,40.815892],[-73.80655400000001,40.815889],[-73.806718,40.81616],[-73.80694200000001,40.816565],[-73.807046,40.816534],[-73.806629,40.815684],[-73.80658699999999,40.815699],[-73.806578,40.81573],[-73.80640200000001,40.815702],[-73.80641199999999,40.815664],[-73.80656399999999,40.815688],[-73.806618,40.815669],[-73.80659300000001,40.815617],[-73.806352,40.815533],[-73.80567499999999,40.815212],[-73.80544999999999,40.81494],[-73.805319,40.814781],[-73.805166,40.813685],[-73.80519200000001,40.813144],[-73.80479699999999,40.812728],[-73.80438700000001,40.81223],[-73.804215,40.812162],[-73.80390300000001,40.812144],[-73.803614,40.811938],[-73.803332,40.8116],[-73.80272600000001,40.81063],[-73.80224200000001,40.810197],[-73.80204999999999,40.810161],[-73.801356,40.810711],[-73.801157,40.810588],[-73.801012,40.810713],[-73.800995,40.810707],[-73.80124000000001,40.810479],[-73.801467,40.810142],[-73.80010900000001,40.809711],[-73.79853799999999,40.809587],[-73.792289,40.806849],[-73.791724,40.806878],[-73.79160299999999,40.806894],[-73.791443,40.806964],[-73.791342,40.807054],[-73.791302,40.807122],[-73.791309,40.807195],[-73.79135599999999,40.807255],[-73.79144100000001,40.807295],[-73.79152499999999,40.807347],[-73.79159,40.807412],[-73.79156999999999,40.807457],[-73.791541,40.80748],[-73.791504,40.807496],[-73.791442,40.8075],[-73.790865,40.807341],[-73.79075899999999,40.807066],[-73.790722,40.80678],[-73.790735,40.806589],[-73.79042800000001,40.806327],[-73.79025300000001,40.806019],[-73.790125,40.805772],[-73.790063,40.805409],[-73.79015200000001,40.80508],[-73.790284,40.804817],[-73.79066,40.804486],[-73.791037,40.804263],[-73.79169400000001,40.804122],[-73.79224499999999,40.803996],[-73.79339,40.804204],[-73.794516,40.805003],[-73.795778,40.806163],[-73.795952,40.805982],[-73.79601,40.805921],[-73.796209,40.805969],[-73.796503,40.806104],[-73.79642800000001,40.806201],[-73.796369,40.806277],[-73.79702899999999,40.806345],[-73.79792,40.806694],[-73.79885899999999,40.807136],[-73.801855,40.808968],[-73.802504,40.809114],[-73.802536,40.809111],[-73.80341199999999,40.809736],[-73.80399,40.810196],[-73.804537,40.810702],[-73.80519099999999,40.811416],[-73.807152,40.813717],[-73.808246,40.814868],[-73.80864099999999,40.815493],[-73.813841,40.814711],[-73.81304799999999,40.813291],[-73.81313400000001,40.813331],[-73.81347,40.813393],[-73.81349400000001,40.813359],[-73.813562,40.81333],[-73.813598,40.813326],[-73.813575,40.813364],[-73.813598,40.813385],[-73.813552,40.813432],[-73.813703,40.813532],[-73.813889,40.81359],[-73.814003,40.813551],[-73.81415699999999,40.813521],[-73.814268,40.813512],[-73.81435,40.813512],[-73.814431,40.813518],[-73.81446,40.812963],[-73.81437200000001,40.812959],[-73.814369,40.812936],[-73.814437,40.812938],[-73.81447,40.812915],[-73.81447,40.812906],[-73.8145,40.812908],[-73.814502,40.812922],[-73.814525,40.812946],[-73.81461899999999,40.812947],[-73.81461899999999,40.812967],[-73.814497,40.812965],[-73.814477,40.813519],[-73.814706,40.813519],[-73.814857,40.813541],[-73.815332,40.813522],[-73.81551399999999,40.813505],[-73.815663,40.813512],[-73.81576200000001,40.813572],[-73.815879,40.813767],[-73.81620100000001,40.813847],[-73.81648,40.813853],[-73.816678,40.8138],[-73.816749,40.813708],[-73.817041,40.813652],[-73.81737200000001,40.813574],[-73.81735999999999,40.813376],[-73.81737699999999,40.813376],[-73.81738900000001,40.813571],[-73.817448,40.813559],[-73.817595,40.813548],[-73.817921,40.813545],[-73.817931,40.813401],[-73.817939,40.813396],[-73.817942,40.813356],[-73.817931,40.813353],[-73.81793500000001,40.813298],[-73.817976,40.813299],[-73.817971,40.813357],[-73.817959,40.813357],[-73.817956,40.813398],[-73.817964,40.813402],[-73.817958,40.813541],[-73.81804200000001,40.813533],[-73.81807999999999,40.813517],[-73.818084,40.813469],[-73.818117,40.813468],[-73.81815,40.813473],[-73.818201,40.813487],[-73.818744,40.813426],[-73.819467,40.81324],[-73.819562,40.813218],[-73.819816,40.81318],[-73.82001200000001,40.813092],[-73.82007,40.813045],[-73.82009600000001,40.812973],[-73.820108,40.812864],[-73.820392,40.812844],[-73.820413,40.812972],[-73.82047799999999,40.813019],[-73.820555,40.813018],[-73.82049000000001,40.812836],[-73.820446,40.812845],[-73.820404,40.812774],[-73.82046200000001,40.812757],[-73.82043899999999,40.812707],[-73.820421,40.812711],[-73.820291,40.812448],[-73.820258,40.812454],[-73.820244,40.812431],[-73.821065,40.812204],[-73.82108100000001,40.812227],[-73.820324,40.81244],[-73.820421,40.812638],[-73.82113,40.81245],[-73.82113699999999,40.812467],[-73.820442,40.812658],[-73.820463,40.812702],[-73.820481,40.81275],[-73.82053500000001,40.812743],[-73.82056300000001,40.812808],[-73.820528,40.812826],[-73.820587,40.813019],[-73.82105799999999,40.812977],[-73.82123799999999,40.812931],[-73.821254,40.812905],[-73.821245,40.812885],[-73.821229,40.81288],[-73.821217,40.812871],[-73.821217,40.812859],[-73.821224,40.81285],[-73.82126599999999,40.812848],[-73.82130100000001,40.812852],[-73.821331,40.812859],[-73.821366,40.812875],[-73.82141300000001,40.812873],[-73.821394,40.812841],[-73.821457,40.812818],[-73.821404,40.812709],[-73.821423,40.812702],[-73.821517,40.812847],[-73.82162,40.812831],[-73.821702,40.812753],[-73.82165999999999,40.812674],[-73.82169500000001,40.812665],[-73.82175599999999,40.812769],[-73.821972,40.81275],[-73.82211,40.812701],[-73.822091,40.812628],[-73.822126,40.812623],[-73.82217799999999,40.81268],[-73.822283,40.812661],[-73.82213400000001,40.812366],[-73.822171,40.812354],[-73.822271,40.81254],[-73.82225200000001,40.812549],[-73.822309,40.812658],[-73.822639,40.812576],[-73.822726,40.812505],[-73.823329,40.812381],[-73.82345100000001,40.812324],[-73.823463,40.812202],[-73.823474,40.812191],[-73.823498,40.812195],[-73.82352299999999,40.812223],[-73.82355800000001,40.812276],[-73.82372100000001,40.812261],[-73.824358,40.812063],[-73.82453599999999,40.811987],[-73.824591,40.811896],[-73.824584,40.811818],[-73.824596,40.81177],[-73.82471099999999,40.811699],[-73.824769,40.811701],[-73.824794,40.811719],[-73.82481799999999,40.811754],[-73.824831,40.811808],[-73.824873,40.811847],[-73.824941,40.811857],[-73.82501999999999,40.811843],[-73.825058,40.81183],[-73.824809,40.811439],[-73.82483000000001,40.811432],[-73.824879,40.81151],[-73.824928,40.811537],[-73.824916,40.811572],[-73.82507699999999,40.811823],[-73.825244,40.811761],[-73.82492999999999,40.811337],[-73.824921,40.81134],[-73.824879,40.811273],[-73.824917,40.811261],[-73.824963,40.811319],[-73.82494699999999,40.811326],[-73.825267,40.811752],[-73.825491,40.811659],[-73.825208,40.811224],[-73.825231,40.81121],[-73.825513,40.811649],[-73.82565099999999,40.811592],[-73.82540899999999,40.811162],[-73.825397,40.811168],[-73.82532500000001,40.811038],[-73.82535799999999,40.811028],[-73.825672,40.811585],[-73.825766,40.811552],[-73.825597,40.81124],[-73.825625,40.811226],[-73.82559000000001,40.811168],[-73.825574,40.811171],[-73.82550000000001,40.811028],[-73.825537,40.811016],[-73.82562299999999,40.811154],[-73.82560700000001,40.811161],[-73.825639,40.811217],[-73.825653,40.811212],[-73.825716,40.811327],[-73.825692,40.811341],[-73.825813,40.811534],[-73.82592699999999,40.811487],[-73.825767,40.811216],[-73.82579800000001,40.811205],[-73.82595600000001,40.811474],[-73.82600100000001,40.811464],[-73.826042,40.811449],[-73.826081,40.81143],[-73.826115,40.811406],[-73.826178,40.811294],[-73.82623599999999,40.811283],[-73.827241,40.812993]]],"type":"Polygon"} +},{ + "id": 907214367, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":448174.40187, + "geom:bbox":"-73.832129491,40.7867036521,-73.8235474417,40.7976824494", + "geom:latitude":40.791278, + "geom:longitude":-73.827031, + "iso:country":"US", + "lbl:latitude":40.791332, + "lbl:longitude":-73.827078, + "lbl:max_zoom":18.0, + "mps:latitude":40.790745, + "mps:longitude":-73.82625, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:fra_x_preferred":[ + "Malba" + ], + "reversegeo:latitude":40.790745, + "reversegeo:longitude":-73.82625, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85857567, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b0c692bd6cdfec872ee4980e850137b8", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907214367, + "neighbourhood_id":85857567, + "region_id":85688543 + } + ], + "wof:id":907214367, + "wof:lastmodified":1566608566, + "wof:name":"Malba", + "wof:parent_id":85857567, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85832003 + ], + "wof:tags":[] +}, + "bbox": [ + -73.8321294909787, + 40.78670365210151, + -73.8235474416933, + 40.79768244935802 +], + "geometry": {"coordinates":[[[[-73.82710009802346,40.79768244935802],[-73.82648691613034,40.7967439432416],[-73.82511350176453,40.79454090196611],[-73.82423404409771,40.79309690550312],[-73.82397524308286,40.79264603996772],[-73.82381081962025,40.79232914152241],[-73.82365881301197,40.7919623478711],[-73.82361922673738,40.79183140439561],[-73.82357004913327,40.7915695625556],[-73.82354974520378,40.79132713582268],[-73.82354744169329,40.79118622732413],[-73.82357327972183,40.78942358475945],[-73.82359719723989,40.78920629695806],[-73.82365478835898,40.78887128713986],[-73.82373270974824,40.78856320001054],[-73.82385860610813,40.78818967560505],[-73.82415508273627,40.78737928189992],[-73.82424978774735,40.78714058149471],[-73.82433475096414,40.78694894224449],[-73.82444981026948,40.78673965210146],[-73.82533681026942,40.78670365210151],[-73.825453,40.78710865210162],[-73.82638,40.78797965210157],[-73.82892,40.78769165210154],[-73.82908999999999,40.78856365210157],[-73.83077900000001,40.78836065210147],[-73.83098099999999,40.78915365210153],[-73.83143,40.78938565210154],[-73.8321294909787,40.79009006191096],[-73.8320711081039,40.79024250739355],[-73.83191507342454,40.7904602378586],[-73.83182483351118,40.79067298459244],[-73.83180901533771,40.79085608870736],[-73.83174331571024,40.79100610628163],[-73.83137353382806,40.79136894466204],[-73.83115486096949,40.79149424510241],[-73.83096269707298,40.79157601668994],[-73.83065972132668,40.79165021454862],[-73.83056779313934,40.79165792332032],[-73.8304901650687,40.79165181193729],[-73.83019817362349,40.79157169701324],[-73.83005211074477,40.79155144452659],[-73.82977794576166,40.79161724580177],[-73.82948296063856,40.79175392023617],[-73.82917068969361,40.79187075641023],[-73.82853626940816,40.79233638255494],[-73.82850117052854,40.79235623184513],[-73.82846554640064,40.79236853399551],[-73.82836657648606,40.79239541955735],[-73.82927850999302,40.79289060783452],[-73.82930325518097,40.79291263536861],[-73.82930732843707,40.79293620434299],[-73.82922857533963,40.79301934041091],[-73.82921203169062,40.79302245750085],[-73.82829155299574,40.79251424596073],[-73.82827013504232,40.79255815896744],[-73.82823426229454,40.79260234678186],[-73.82821200657729,40.79262689762366],[-73.82817584627144,40.79264923918219],[-73.82814646574917,40.79266119857054],[-73.82808189662191,40.7926864884005],[-73.82803976792378,40.79271165621282],[-73.82792932227476,40.79287850745511],[-73.82782132489069,40.7931614107365],[-73.82778457368804,40.79342078992596],[-73.82778550688813,40.79342694590959],[-73.82778457368795,40.79343044202747],[-73.82790968658175,40.79397972016697],[-73.82797764503653,40.79450970367476],[-73.82800604847586,40.79481653816278],[-73.82805741824848,40.79481492246429],[-73.82806997268553,40.79482113661221],[-73.82807108549228,40.79483101656881],[-73.82806416917745,40.79484337950296],[-73.82804185283638,40.79486360672121],[-73.82802255294411,40.79487631085414],[-73.82801372355929,40.79494206087162],[-73.8280838802911,40.7950247337597],[-73.82813785302837,40.79506132085697],[-73.82817505476636,40.79509966489555],[-73.82821393552646,40.79516247011632],[-73.82832651007617,40.79548108145818],[-73.82841279822479,40.79562302039044],[-73.82847351197243,40.79566448048679],[-73.82852965393734,40.7956828175727],[-73.82857242430373,40.79568485413637],[-73.82860453183895,40.79567698497475],[-73.82862330095595,40.79568169588399],[-73.82863787466592,40.79570492331978],[-73.82863957832053,40.79572894227555],[-73.82863431470767,40.79575729128526],[-73.82862557729023,40.79578201490875],[-73.82862144922062,40.7958072504736],[-73.82862725470014,40.79583472403547],[-73.82869161684447,40.79591907151728],[-73.82870304740113,40.79592482390004],[-73.82871437187116,40.79592151736277],[-73.82872444183312,40.7959134107016],[-73.82873561640451,40.7959084975214],[-73.82875497212035,40.79590146979827],[-73.82876235352461,40.79590179638196],[-73.82877290726599,40.79590811620348],[-73.82878406885131,40.79592631279301],[-73.82878811739309,40.79595109177288],[-73.8287834262599,40.79597337253342],[-73.82875327145068,40.79606051357986],[-73.82880962942976,40.79619342050282],[-73.82885466653134,40.796203096665],[-73.82892258328484,40.79620001852832],[-73.82897991724748,40.79621090965887],[-73.82906100849344,40.79625429083097],[-73.82913126948527,40.79629362054303],[-73.82919891573285,40.79642323976795],[-73.82925200048705,40.79649748335292],[-73.82927125580088,40.79654823785012],[-73.82927990172632,40.79658672852477],[-73.82929449211724,40.79667299129231],[-73.82931538346607,40.79669105079408],[-73.8293854595432,40.79673309951103],[-73.82941556721877,40.79675232487445],[-73.82944761505534,40.79677729770876],[-73.82945737123778,40.79678954986281],[-73.82946361428057,40.7968040304324],[-73.82946637122627,40.79681457101123],[-73.82945991534366,40.79682336759146],[-73.82944790883207,40.79682895086568],[-73.8294354834763,40.79683186869485],[-73.82941825785157,40.79683080789807],[-73.82939934401163,40.79682685328195],[-73.8293833846852,40.79682120131461],[-73.82936696838213,40.79681426140466],[-73.82934623333296,40.79680426178339],[-73.82932152634478,40.79679075349181],[-73.82929094280404,40.79677253757636],[-73.82926066599074,40.79674973610353],[-73.82925144264568,40.79674264433196],[-73.82924625663101,40.79673651427204],[-73.82923964136576,40.79672390556868],[-73.82923739382854,40.79671279045719],[-73.82924024957087,40.79669915176706],[-73.82924571071906,40.79668129379262],[-73.82923324157353,40.79665514272228],[-73.82920390880295,40.79662948867254],[-73.82916539769329,40.79660654162242],[-73.8291205235286,40.79658388214865],[-73.82905864191771,40.79656211413436],[-73.82874447314435,40.79656974361268],[-73.82848417580752,40.7966120586017],[-73.82836830991199,40.79664081841526],[-73.82824143571035,40.79672445738755],[-73.82816968869709,40.79674682765196],[-73.82808178967329,40.79675641237909],[-73.82761877332679,40.79675692805156],[-73.8274176883121,40.79678901882903],[-73.82728527175658,40.79689418750655],[-73.827277258962,40.79691813814352],[-73.82728894490646,40.79693983844638],[-73.82728873655552,40.79695166189842],[-73.82728314189589,40.79696120798269],[-73.82727261992397,40.79696608278037],[-73.82725849390562,40.79696630368556],[-73.8272427683636,40.79696219266933],[-73.82721191019691,40.79692223637441],[-73.82720743469163,40.79692083367751],[-73.82717201225195,40.79693151408127],[-73.82709508032542,40.79697475842698],[-73.82704565175079,40.79701314454927],[-73.8270006249199,40.79706297403752],[-73.82697091510673,40.79712827768968],[-73.82697037970007,40.79716557621312],[-73.82699346947962,40.79725811110456],[-73.82699897185935,40.79727052728729],[-73.82701214322087,40.7972863341308],[-73.8270583749397,40.79731540765086],[-73.82710156847043,40.79735546373747],[-73.82718039545188,40.79748615496865],[-73.82719616007842,40.79752119807746],[-73.82719495057243,40.79757161549474],[-73.82718643262825,40.79759811342443],[-73.82717025288582,40.79762356261689],[-73.82712912435548,40.79766373758639],[-73.82710009802346,40.79768244935802]]]],"type":"MultiPolygon"} +},{ + "id": 907214375, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000045, + "geom:area_square_m":426239.629408, + "geom:bbox":"-73.9613703989,40.6180309684,-73.9549491944,40.628166275", + "geom:latitude":40.623086, + "geom:longitude":-73.958172, + "iso:country":"US", + "lbl:latitude":40.612917, + "lbl:longitude":-73.962349, + "lbl:max_zoom":18.0, + "mps:latitude":40.623097, + "mps:longitude":-73.958172, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Manhattan Ter" + ], + "reversegeo:latitude":40.623097, + "reversegeo:longitude":-73.958172, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865583, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"79163b7a7ca36b19f12acd67ff74fe69", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907214375, + "neighbourhood_id":85865583, + "region_id":85688543 + } + ], + "wof:id":907214375, + "wof:lastmodified":1566608567, + "wof:name":"Manhattan Terrace", + "wof:parent_id":85865583, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866221 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96137039889948, + 40.61803096835796, + -73.95494919438849, + 40.62816627499118 +], + "geometry": {"coordinates":[[[[-73.96137039889948,40.62764884190543],[-73.95677594922871,40.62816627499118],[-73.95494919438849,40.61853482113333],[-73.959601321834,40.61803096835796],[-73.96137039889948,40.62764884190543]]]],"type":"MultiPolygon"} +},{ + "id": 907214381, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000048, + "geom:area_square_m":445478.700163, + "geom:bbox":"-73.9685681854,40.7941462844,-73.9583575521,40.80299079", + "geom:latitude":40.798587, + "geom:longitude":-73.963399, + "iso:country":"US", + "lbl:latitude":40.797197, + "lbl:longitude":-73.964759, + "lbl:max_zoom":18.0, + "mps:latitude":40.798556, + "mps:longitude":-73.963399, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Manhattan Valley" + ], + "name:eng_x_variant":[ + "Manhattan Vly", + "Bloomington Valley" + ], + "name:fra_x_preferred":[ + "Manhattan Valley" + ], + "name:ind_x_preferred":[ + "Manhattan Valley" + ], + "name:por_x_preferred":[ + "Manhattan Valley" + ], + "name:rus_x_preferred":[ + "\u041c\u0430\u043d\u0445\u044d\u0442\u0442\u0435\u043d-\u0412\u0430\u043b\u043b\u0438" + ], + "name:spa_x_preferred":[ + "Manhattan Valley" + ], + "reversegeo:latitude":40.798556, + "reversegeo:longitude":-73.963399, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85853285, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e1f0b22cc8df4060262c0396c7f24f26", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":907214381, + "neighbourhood_id":85853285, + "region_id":85688543 + } + ], + "wof:id":907214381, + "wof:lastmodified":1566608567, + "wof:name":"Manhattan Valley", + "wof:parent_id":85853285, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865683 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9685681853695, + 40.7941462844332, + -73.95835755205569, + 40.80299078998438 +], + "geometry": {"coordinates":[[[[-73.96290191911386,40.7941462844332],[-73.96428140281904,40.79471844692104],[-73.96443622733405,40.7947893193214],[-73.96462711590401,40.79489070386327],[-73.9650803000408,40.79514919843774],[-73.96575241437054,40.79547292221916],[-73.96704047410157,40.7960268073065],[-73.96856818536951,40.7966443479519],[-73.96394258863215,40.80299078998438],[-73.959647,40.80115600000011],[-73.95850854015947,40.80068227976747],[-73.95853274080838,40.8004913624647],[-73.95835755205569,40.80036909563382],[-73.96290191911386,40.7941462844332]]]],"type":"MultiPolygon"} +},{ + "id": 907214383, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000014, + "geom:area_square_m":132263.61121, + "geom:bbox":"-74.0126592821,40.7393021022,-74.0050849523,40.7425088323", + "geom:latitude":40.740499, + "geom:longitude":-74.008467, + "iso:country":"US", + "lbl:latitude":40.741617, + "lbl:longitude":-74.007143, + "lbl:max_zoom":18.0, + "mps:latitude":40.74072, + "mps:longitude":-74.008152, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Districte Meatpacking" + ], + "name:cat_x_variant":[ + "districte Meatpacking" + ], + "name:ces_x_preferred":[ + "Meatpacking District" + ], + "name:deu_x_preferred":[ + "Meatpacking District" + ], + "name:eng_x_preferred":[ + "Meatpacking District" + ], + "name:eng_x_variant":[ + "Meat Packing District", + "Meatpackingdistrict" + ], + "name:fra_x_preferred":[ + "Meatpacking District" + ], + "name:ind_x_preferred":[ + "Meatpacking District" + ], + "name:jpn_x_preferred":[ + "\u30df\u30fc\u30c8\u30fb\u30d1\u30c3\u30ad\u30f3\u30b0\u30fb\u30c7\u30a3\u30b9\u30c8\u30ea\u30af\u30c8" + ], + "name:nld_x_preferred":[ + "Meatpacking District" + ], + "name:por_x_preferred":[ + "Meatpacking District" + ], + "name:rus_x_preferred":[ + "\u041c\u0438\u0442\u043f\u044d\u043a\u0438\u043d\u0433" + ], + "name:spa_x_preferred":[ + "Meatpacking District" + ], + "name:swe_x_preferred":[ + "Meatpacking District" + ], + "name:urd_x_preferred":[ + "\u0645\u06cc\u0679\u067e\u06cc\u06a9\u06cc\u0646\u06af \u0636\u0644\u0639" + ], + "name:yid_x_preferred":[ + "\u05de\u05d9\u05e2\u05d8 \u05e4\u05e2\u05e7\u05d9\u05e0\u05d2 \u05d3\u05d9\u05e1\u05d8\u05e8\u05d9\u05e7\u05d8" + ], + "name:zho_x_preferred":[ + "\u7c73\u7279\u5e15\u91d1\u5340" + ], + "reversegeo:latitude":40.74072, + "reversegeo:longitude":-74.008152, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85856577, + 102191575, + 907196817, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q280729" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"51944e5e2822ee7407372c85011a2318", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907196817, + "microhood_id":907214383, + "neighbourhood_id":85856577, + "region_id":85688543 + } + ], + "wof:id":907214383, + "wof:lastmodified":1566608565, + "wof:name":"Meat Packing District", + "wof:parent_id":85856577, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869463 + ], + "wof:tags":[] +}, + "bbox": [ + -74.0126592820851, + 40.73930210220413, + -74.00508495229582, + 40.74250883227597 +], + "geometry": {"coordinates":[[[[-74.00508495229582,40.74082316828506],[-74.00535227161514,40.73936502438079],[-74.0115880357905,40.73930210220413],[-74.01158715816635,40.73947887033481],[-74.01163351895194,40.73950648606608],[-74.01162792311777,40.73956247410618],[-74.01155518156288,40.73955672622729],[-74.01152745020426,40.73987377145007],[-74.01159286133142,40.73987376488405],[-74.01161258017355,40.73970760054956],[-74.01161589144259,40.73970779331821],[-74.01234819241692,40.73973756535366],[-74.01236917400036,40.73975164637213],[-74.01237411577738,40.73977886786773],[-74.01234943428379,40.73979389076181],[-74.01228649627012,40.73979296102123],[-74.01228897847173,40.73989904212461],[-74.0123136634877,40.73990279375327],[-74.01234328917013,40.73992062979227],[-74.01235687134125,40.7399365847175],[-74.01234947552233,40.74001637981596],[-74.01232356118136,40.74003140300364],[-74.01227049910148,40.74003422696505],[-74.0122631074717,40.74014218976763],[-74.01230877290092,40.74014781277593],[-74.01232852356419,40.74016283157751],[-74.01232975860142,40.74018348844803],[-74.01231001212778,40.74019475620405],[-74.01157686924245,40.74016009950147],[-74.01158637887603,40.73997384795247],[-74.01151491736549,40.73997286369897],[-74.01146073955357,40.74058421475266],[-74.01215741913089,40.74060599813124],[-74.01215372624053,40.74067425662068],[-74.01265742489996,40.74069665223176],[-74.0126592820851,40.74074763849742],[-74.01147486918865,40.74068706027104],[-74.01137438820493,40.7407239476413],[-74.00963145571757,40.74064536737421],[-74.00949685520361,40.74072701178548],[-74.00949154621286,40.74074270943979],[-74.00951627358204,40.74077358367349],[-74.00951844195934,40.7408057229169],[-74.0094629386021,40.7409023372403],[-74.00941140266139,40.741154093313],[-74.00958452293763,40.74117535138812],[-74.00957692791621,40.74121065665437],[-74.01216232909229,40.74149188968272],[-74.01211904266799,40.74174910416141],[-74.01211745872159,40.74175851621158],[-74.00952698810543,40.74149107821183],[-74.00951947145015,40.74149030219862],[-74.00944784072533,40.74189159122019],[-74.00944719097618,40.74189154158327],[-74.0092779275609,40.7418786108562],[-74.00916135884381,40.74250883227597],[-74.00881,40.74237800000011],[-74.00508495229582,40.74082316828506]]]],"type":"MultiPolygon"} +},{ + "id": 907214385, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000041, + "geom:area_square_m":382065.069965, + "geom:bbox":"-74.1361288673,40.6078411862,-74.1262664761,40.6128554287", + "geom:latitude":40.610392, + "geom:longitude":-74.131353, + "iso:country":"US", + "lbl:latitude":40.615505, + "lbl:longitude":-74.145208, + "lbl:max_zoom":18.0, + "mps:latitude":40.610389, + "mps:longitude":-74.131354, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Meiers Corners" + ], + "name:eng_x_variant":[ + "Meiers Cors" + ], + "reversegeo:latitude":40.610389, + "reversegeo:longitude":-74.131354, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85809781, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6809992" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cd9e2b8b24b0e83ac79bb85b5255bc9f", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907214385, + "neighbourhood_id":85809781, + "region_id":85688543 + } + ], + "wof:id":907214385, + "wof:lastmodified":1566608565, + "wof:name":"Meiers Corners", + "wof:parent_id":85809781, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869469 + ], + "wof:tags":[] +}, + "bbox": [ + -74.1361288673169, + 40.60784118624562, + -74.1262664760559, + 40.61285542873276 +], + "geometry": {"coordinates":[[[[-74.13072,40.61255800000021],[-74.12682337517231,40.61285542873276],[-74.1262664760559,40.608876574196],[-74.12743,40.6086150000001],[-74.13588842292093,40.60784118624562],[-74.13610596765308,40.61004637277031],[-74.1361288673169,40.6122449210908],[-74.13603999999999,40.612262],[-74.13072,40.61255800000021]]]],"type":"MultiPolygon"} +},{ + "id": 907215421, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":471902.216008, + "geom:bbox":"-74.093364,40.59589,-74.0811128006,40.6020243533", + "geom:latitude":40.599038, + "geom:longitude":-74.087089, + "iso:country":"US", + "lbl:latitude":40.596627, + "lbl:longitude":-74.08942, + "lbl:max_zoom":18.0, + "mps:latitude":40.598589, + "mps:longitude":-74.087585, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Old Town Sta" + ], + "reversegeo:latitude":40.598589, + "reversegeo:longitude":-74.087585, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85812029, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1306919e76df74476bb5d0f767c317ff", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907215421, + "neighbourhood_id":85812029, + "region_id":85688543 + } + ], + "wof:id":907215421, + "wof:lastmodified":1566608561, + "wof:name":"Old Town", + "wof:parent_id":85812029, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85839465 + ], + "wof:tags":[] +}, + "bbox": [ + -74.09336399999987, + 40.59589000000017, + -74.081112800591, + 40.6020243533419 +], + "geometry": {"coordinates":[[[[-74.08319616776969,40.60200826952178],[-74.0827499907049,40.60202303868639],[-74.08264990104448,40.6020243533419],[-74.08213531806817,40.60199296495644],[-74.08190879701613,40.60168740791627],[-74.08167304380501,40.60139251324178],[-74.08144280263733,40.60107300266443],[-74.08137776740698,40.60097442413753],[-74.081313638867,40.60086004639987],[-74.08127470411978,40.60078101936668],[-74.0811954601372,40.60053293901976],[-74.08116660022223,40.60044644705812],[-74.08113968091703,40.60034444927372],[-74.08112549496374,40.60024779772294],[-74.08111532018488,40.60012886217953],[-74.081112800591,40.60001290291623],[-74.08111712029097,40.59984867842755],[-74.08112767290308,40.599729135789],[-74.08114010643202,40.59966251965132],[-74.08115923490345,40.59957965732788],[-74.08117280343011,40.59953171237372],[-74.08121570082794,40.59944320943405],[-74.08129331501878,40.59931592683432],[-74.08163041485335,40.59871966613603],[-74.08171,40.59856300000017],[-74.08474218278663,40.59746225600698],[-74.08480900000001,40.59743800000017],[-74.08494351798421,40.59731246262004],[-74.08536955314061,40.59691487015158],[-74.08551300000001,40.59678100000016],[-74.08559290541675,40.59658432672286],[-74.085875,40.59589000000017],[-74.09029200000001,40.59619600000026],[-74.09336399999987,40.59703300000015],[-74.09272,40.5974640000001],[-74.09178,40.5987190000002],[-74.091779,40.59923900000024],[-74.092837,40.60108900000019],[-74.09214636002039,40.60107599317804],[-74.09030443671871,40.60098645152947],[-74.08959885360959,40.60095751034463],[-74.08949314089834,40.60095442264634],[-74.08938373328982,40.60096451364159],[-74.08930127040303,40.60098418895608],[-74.08912175168552,40.60102581783423],[-74.08876946342626,40.60108982191519],[-74.08839522768523,40.60114560060224],[-74.08823339607999,40.60115999220614],[-74.08803871755269,40.60116691892242],[-74.08770121791352,40.60116742182674],[-74.08733998344218,40.60117228529745],[-74.08710564605799,40.60117159821962],[-74.08703667776922,40.6011751053837],[-74.08696816942216,40.60118759318706],[-74.08656030988845,40.60129259222895],[-74.08460787782192,40.60185931715693],[-74.08448954485536,40.6018908056959],[-74.084366673464,40.60191640541456],[-74.08436631268367,40.6019164701361],[-74.08422159967419,40.60193590209428],[-74.08410487298171,40.60194552633335],[-74.08403070352408,40.60195272189557],[-74.08319616776969,40.60200826952178]]]],"type":"MultiPolygon"} +},{ + "id": 907216453, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000061, + "geom:area_square_m":571240.537554, + "geom:bbox":"-73.9907236425,40.753554,-73.979057,40.7641667505", + "geom:latitude":40.758856, + "geom:longitude":-73.984888, + "iso:country":"US", + "lbl:latitude":40.758405, + "lbl:longitude":-73.98543, + "lbl:max_zoom":18.0, + "mps:latitude":40.758855, + "mps:longitude":-73.984888, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:bel_x_preferred":[ + "\u0422\u044d\u0430\u0442\u0440\u0430\u043b\u044c\u043d\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:deu_x_preferred":[ + "Manhattan/Times Square" + ], + "name:eng_x_preferred":[ + "Theater District" + ], + "name:eng_x_variant":[ + "Theatre District" + ], + "name:fra_x_preferred":[ + "Theater District" + ], + "name:heb_x_preferred":[ + "\u05de\u05e0\u05d4\u05d8\u05df/\u05de\u05ea\u05d7\u05dd \u05d4\u05ea\u05d9\u05d0\u05d8\u05e8\u05d0\u05d5\u05ea" + ], + "name:ita_x_preferred":[ + "Theater District" + ], + "name:jpn_x_preferred":[ + "\u30b7\u30a2\u30bf\u30fc\u30fb\u30c7\u30a3\u30b9\u30c8\u30ea\u30af\u30c8" + ], + "name:por_x_preferred":[ + "Theatre District" + ], + "name:ron_x_preferred":[ + "Theatre District" + ], + "name:rus_x_preferred":[ + "\u0422\u0435\u0430\u0442\u0440\u0430\u043b\u044c\u043d\u044b\u0439 \u043a\u0432\u0430\u0440\u0442\u0430\u043b" + ], + "name:spa_x_preferred":[ + "Theater District" + ], + "name:vol_x_preferred":[ + "Sunnyside" + ], + "name:zho_x_preferred":[ + "\u5287\u9662\u5340\u57df" + ], + "reversegeo:latitude":40.758855, + "reversegeo:longitude":-73.984888, + "src:geom":"pedia", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882233, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2662015" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7b2ad53839b38690897d707797ef05f8", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907216453, + "neighbourhood_id":85882233, + "region_id":85688543 + } + ], + "wof:id":907216453, + "wof:lastmodified":1566608542, + "wof:name":"Theatre District", + "wof:parent_id":85882233, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867077 + ], + "wof:tags":[] +}, + "bbox": [ + -73.99072364248579, + 40.75355400000026, + -73.97905700000018, + 40.76416675054455 +], + "geometry": {"coordinates":[[[[-73.97905700000018,40.76174720539009],[-73.98504300000018,40.75355400000026],[-73.99072364248579,40.75595000563767],[-73.98472631047949,40.76416675054455],[-73.97905700000018,40.76174720539009]]]],"type":"MultiPolygon"} +},{ + "id": 974518251, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000051, + "geom:area_square_m":469288.20585, + "geom:bbox":"-87.5938921363,41.7659076183,-87.58607757,41.7733418785", + "geom:latitude":41.769463, + "geom:longitude":-87.589603, + "iso:country":"US", + "lbl:latitude":41.769359, + "lbl:longitude":-87.599127, + "lbl:max_zoom":18.0, + "mps:latitude":41.769476, + "mps:longitude":-87.589555, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Brookdale" + ], + "name:deu_x_preferred":[ + "Brookdale" + ], + "name:fra_x_preferred":[ + "Brookdale" + ], + "name:ita_x_preferred":[ + "Brookdale" + ], + "name:nld_x_preferred":[ + "Brookdale" + ], + "name:pol_x_preferred":[ + "Brookdale" + ], + "name:spa_x_preferred":[ + "Brookdale" + ], + "name:srp_x_preferred":[ + "\u0411\u0440\u0443\u043a\u0434\u0435\u0458\u043b" + ], + "name:swe_x_preferred":[ + "Brookdale" + ], + "name:vol_x_preferred":[ + "Brookdale" + ], + "reversegeo:latitude":41.769476, + "reversegeo:longitude":-87.589555, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420518839, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e803b4286ccf377282ff2bbcc48f8cf1", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974518251, + "neighbourhood_id":420518839, + "region_id":85688697 + } + ], + "wof:id":974518251, + "wof:lastmodified":1566640981, + "wof:name":"Brookdale", + "wof:parent_id":420518839, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867529 + ], + "wof:tags":[] +}, + "bbox": [ + -87.5938921362803, + 41.76590761832339, + -87.5860775700267, + 41.7733418784687 +], + "geometry": {"coordinates":[[[[-87.58611744038194,41.76590761832339],[-87.5938921362803,41.7659489694503],[-87.59285860440407,41.77043310255408],[-87.5921769472712,41.77327469325021],[-87.59206267678989,41.7732758153686],[-87.5920483397005,41.7732759566744],[-87.59180514888359,41.7732783519297],[-87.59171373323341,41.7732793974468],[-87.59158523200411,41.7732808667518],[-87.5914216360818,41.7732827371756],[-87.5911692409171,41.7732852379478],[-87.5908498975878,41.7732884013054],[-87.5906470715242,41.7732904657731],[-87.59021076769599,41.7732949442289],[-87.58972735025679,41.7732999119335],[-87.5893061152763,41.7733042375005],[-87.58909214317219,41.7733064191374],[-87.5887656392605,41.773309454845],[-87.5884868239321,41.7733120463342],[-87.58826120182439,41.7733135471471],[-87.588216984955,41.7733139865151],[-87.5880794585816,41.7733153047222],[-87.5877115321199,41.7733191743946],[-87.5874976689762,41.7733214358227],[-87.58727797606591,41.7733237693152],[-87.5869658900793,41.7733269838221],[-87.5869455781711,41.7733271861156],[-87.58663741644099,41.773330255628],[-87.58619841754791,41.7733418784687],[-87.5861315218992,41.7715178328411],[-87.5860866061749,41.7696992359367],[-87.5860775700267,41.7694980329036],[-87.5860904619841,41.7693407151346],[-87.5861027767062,41.7692330995991],[-87.58612644509731,41.7691007047688],[-87.5861504017649,41.7689434589447],[-87.58617508454689,41.7687886723285],[-87.5861870572553,41.7686454627216],[-87.58618936412989,41.7684466545498],[-87.5861850109803,41.7678799767126],[-87.5861186165628,41.7659742676683],[-87.58611744038194,41.76590761832339]]]],"type":"MultiPolygon"} +},{ + "id": 974518255, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000036, + "geom:area_square_m":331923.893902, + "geom:bbox":"-87.6055871646,41.7585799918,-87.5955175425,41.765868564", + "geom:latitude":41.761072, + "geom:longitude":-87.602163, + "iso:country":"US", + "lbl:latitude":41.761083, + "lbl:longitude":-87.602927, + "lbl:max_zoom":18.0, + "mps:latitude":41.761083, + "mps:longitude":-87.602927, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:cat_x_preferred":[ + "Brookline" + ], + "name:ceb_x_preferred":[ + "Brookline" + ], + "name:dan_x_preferred":[ + "Brookline" + ], + "name:deu_x_preferred":[ + "Brookline" + ], + "name:fra_x_preferred":[ + "Brookline" + ], + "name:ita_x_preferred":[ + "Brookline" + ], + "name:kor_x_preferred":[ + "\ube0c\ub8e8\ud074\ub77c\uc778" + ], + "name:nld_x_preferred":[ + "Brookline" + ], + "name:pol_x_preferred":[ + "Brookline" + ], + "name:por_x_preferred":[ + "Brookline" + ], + "name:rus_x_preferred":[ + "\u0411\u0440\u0443\u043a\u043b\u0430\u0439\u043d" + ], + "name:slk_x_preferred":[ + "Brookline" + ], + "name:spa_x_preferred":[ + "Brookline" + ], + "name:srp_x_preferred":[ + "\u0411\u0440\u0443\u043a\u043b\u0430\u0458\u043d" + ], + "name:swe_x_preferred":[ + "Brookline" + ], + "name:ukr_x_preferred":[ + "\u0411\u0440\u0443\u043a\u043b\u0430\u0439\u043d" + ], + "name:vol_x_preferred":[ + "Brookline" + ], + "name:zho_x_preferred":[ + "\u5e03\u9c81\u514b\u83b1\u6069" + ], + "reversegeo:latitude":41.761083, + "reversegeo:longitude":-87.602927, + "src:geom":"mz", + "wof:belongsto":[ + 420518839, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7a433e5cee34c2bcf4664410d02ccc8d", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974518255, + "neighbourhood_id":420518839, + "region_id":85688697 + } + ], + "wof:id":974518255, + "wof:lastmodified":1566640982, + "wof:name":"Brookline", + "wof:parent_id":420518839, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420518851 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6055871645842, + 41.7585799917879, + -87.59551754249753, + 41.7658685640434 +], + "geometry": {"coordinates":[[[[-87.59551754249753,41.75877815362576],[-87.604754,41.758592],[-87.605142,41.758584],[-87.605391,41.75858],[-87.60539128977007,41.7585799917879],[-87.605391293403,41.7585800641591],[-87.605403248641,41.7588182198822],[-87.6054107845261,41.7591210735191],[-87.6054211306632,41.7594899178739],[-87.6054302978434,41.7598592761519],[-87.60544146969769,41.7602847679974],[-87.60544495131791,41.7604056760991],[-87.605452419729,41.7606650323805],[-87.6054599624818,41.7610224425966],[-87.6054680188723,41.7613474458929],[-87.60547490319939,41.761626941298],[-87.60548341096739,41.7620060372395],[-87.6054893204706,41.7622296443186],[-87.60549180651731,41.7623237156301],[-87.60550023051159,41.7627005060598],[-87.60550763051781,41.7630252029551],[-87.6055152552531,41.7633040720544],[-87.605520591744,41.7636027873908],[-87.60552371901061,41.7637778403365],[-87.60552582563641,41.7638957615432],[-87.6055274187446,41.7639849456166],[-87.60552937653181,41.7640651812027],[-87.6055323034136,41.7641851210896],[-87.6055323175332,41.7641854285402],[-87.6055357123244,41.7644256171052],[-87.6055372217276,41.7645323934974],[-87.60553906354561,41.7646202975504],[-87.6055400974555,41.7646696407751],[-87.60554103488219,41.7647143855951],[-87.60554131723811,41.7647278681878],[-87.60554649931311,41.7649763969893],[-87.60554657475291,41.7649859712169],[-87.60554767407081,41.7651255972378],[-87.60554788408029,41.7651522602227],[-87.6055549721713,41.7654170473087],[-87.60558716458419,41.7658685640434],[-87.59551754249753,41.75877815362576]]]],"type":"MultiPolygon"} +},{ + "id": 974518505, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":10738.124259, + "geom:bbox":"-87.6854999764,41.8675577401,-87.6841924445,41.8684678504", + "geom:latitude":41.868013, + "geom:longitude":-87.684851, + "iso:country":"US", + "lbl:latitude":41.868226, + "lbl:longitude":-87.684893, + "lbl:max_zoom":18.0, + "mps:latitude":41.868014, + "mps:longitude":-87.684848, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.868014, + "reversegeo:longitude":-87.684848, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869739, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8f9a1daee9fd80140a7407fcfb1a0e87", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974518505, + "neighbourhood_id":85869739, + "region_id":85688697 + } + ], + "wof:id":974518505, + "wof:lastmodified":1566640981, + "wof:name":"Claremont Cottages", + "wof:parent_id":85869739, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867549 + ], + "wof:tags":[] +}, + "bbox": [ + -87.68549997637145, + 41.86755774009389, + -87.68419244454593, + 41.86846785044965 +], + "geometry": {"coordinates":[[[[-87.68549997637145,41.86846525842997],[-87.68422113052775,41.86846785044965],[-87.68419244454593,41.86756439450927],[-87.68548914232127,41.86755774009389],[-87.68549997637145,41.86846525842997]]]],"type":"MultiPolygon"} +},{ + "id": 974518511, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":14061.696382, + "geom:bbox":"-87.6039089944,41.7979131547,-87.6028149623,41.7993647673", + "geom:latitude":41.798639, + "geom:longitude":-87.603361, + "iso:country":"US", + "lbl:latitude":41.798652, + "lbl:longitude":-87.603307, + "lbl:max_zoom":18.0, + "mps:latitude":41.798639, + "mps:longitude":-87.603363, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.798639, + "reversegeo:longitude":-87.603363, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85826681, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"90d90477510a0663a4bbfe3712c69e1f", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974518511, + "neighbourhood_id":85826681, + "region_id":85688697 + } + ], + "wof:id":974518511, + "wof:lastmodified":1566640981, + "wof:name":"Egandale", + "wof:parent_id":85826681, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867589 + ], + "wof:tags":[] +}, + "bbox": [ + -87.60390899444423, + 41.79791315472279, + -87.60281496225426, + 41.7993647673056 +], + "geometry": {"coordinates":[[[[-87.60387088332321,41.79791315472279],[-87.60281496225426,41.79792232010112],[-87.60284996869224,41.7993647673056],[-87.60390899444423,41.79935511349505],[-87.60387088332321,41.79791315472279]]]],"type":"MultiPolygon"} +},{ + "id": 974522617, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":8802.750333, + "geom:bbox":"-87.665816124,41.8729878135,-87.6644766798,41.8737188475", + "geom:latitude":41.873354, + "geom:longitude":-87.665149, + "iso:country":"US", + "lbl:latitude":41.873582, + "lbl:longitude":-87.665315, + "lbl:max_zoom":18.0, + "mps:latitude":41.873354, + "mps:longitude":-87.66514, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.873354, + "reversegeo:longitude":-87.66514, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882191, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"59523ccf61b16c97a2debc40f2519b18", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974522617, + "neighbourhood_id":85882191, + "region_id":85688697 + } + ], + "wof:id":974522617, + "wof:lastmodified":1566640982, + "wof:name":"Garibaldi Square", + "wof:parent_id":85882191, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867613 + ], + "wof:tags":[] +}, + "bbox": [ + -87.66581612402784, + 41.87298781350115, + -87.66447667976342, + 41.87371884751553 +], + "geometry": {"coordinates":[[[[-87.66581612402784,41.87371318061732],[-87.66449951119974,41.87371884751553],[-87.66447667976342,41.87299631394447],[-87.66580090307032,41.87298781350115],[-87.66581612402784,41.87371318061732]]]],"type":"MultiPolygon"} +},{ + "id": 974522631, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000008, + "geom:area_square_m":76137.369214, + "geom:bbox":"-87.6460318355,41.8831195848,-87.6426271649,41.8857050062", + "geom:latitude":41.884411, + "geom:longitude":-87.644284, + "iso:country":"US", + "lbl:latitude":41.883606, + "lbl:longitude":-87.644798, + "lbl:max_zoom":18.0, + "mps:latitude":41.88441, + "mps:longitude":-87.644284, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"historic", + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Haymarket" + ], + "name:dan_x_preferred":[ + "Haymarket" + ], + "name:deu_x_preferred":[ + "Haymarket" + ], + "name:eng_x_preferred":[ + "Haymarket Square" + ], + "name:eng_x_variant":[ + "Haymarket" + ], + "name:fra_x_preferred":[ + "Haymarket" + ], + "name:heb_x_preferred":[ + "\u05d4\u05d9\u05d9\u05de\u05e8\u05e7\u05d8" + ], + "name:jpn_x_preferred":[ + "\u30d8\u30a4\u30de\u30fc\u30b1\u30c3\u30c8" + ], + "name:kor_x_preferred":[ + "\ud5e4\uc774\ub9c8\ucf13" + ], + "name:mlg_x_preferred":[ + "Haymarket" + ], + "name:nld_x_preferred":[ + "Haymarket" + ], + "name:nor_x_preferred":[ + "Haymarket" + ], + "name:pol_x_preferred":[ + "Haymarket" + ], + "name:swe_x_preferred":[ + "Haymarket" + ], + "reversegeo:latitude":41.88441, + "reversegeo:longitude":-87.644284, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865741, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1f61304a98ee5f876b76048e795e155c", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974522631, + "neighbourhood_id":85865741, + "region_id":85688697 + } + ], + "wof:id":974522631, + "wof:lastmodified":1566640982, + "wof:name":"Haymarket", + "wof:parent_id":85865741, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868439 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6460318354593, + 41.883119584788, + -87.64262716493795, + 41.8857050061925 +], + "geometry": {"coordinates":[[[[-87.64262716493795,41.883119584788],[-87.64584489828223,41.88312617646971],[-87.6458497656198,41.8832748013494],[-87.6458748439661,41.884291094429],[-87.645891873862,41.8847159328444],[-87.64590401509381,41.8849256858994],[-87.6459308903553,41.8851032685825],[-87.6460318354593,41.8856215780541],[-87.6453798876114,41.8856906678275],[-87.6451538062189,41.8856961609313],[-87.64480932635639,41.8856968954718],[-87.6443769547447,41.8856952350814],[-87.64424346477981,41.885696543093],[-87.6439217851635,41.8856996936195],[-87.6434319067296,41.8857045727413],[-87.64277350331589,41.8857050061925],[-87.64273273136055,41.88570484963493],[-87.64262716493795,41.883119584788]]]],"type":"MultiPolygon"} +},{ + "id": 975148671, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000036, + "geom:area_square_m":335776.866917, + "geom:bbox":"-87.628950206,41.7216216931,-87.6243778522,41.7300939059", + "geom:latitude":41.725876, + "geom:longitude":-87.626657, + "iso:country":"US", + "lbl:latitude":41.724705, + "lbl:longitude":-87.620924, + "lbl:max_zoom":18.0, + "mps:latitude":41.725878, + "mps:longitude":-87.626657, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Lilydale" + ], + "name:deu_x_preferred":[ + "Lilydale" + ], + "name:nld_x_preferred":[ + "Lilydale" + ], + "name:pol_x_preferred":[ + "Lilydale" + ], + "name:swe_x_preferred":[ + "Lilydale" + ], + "reversegeo:latitude":41.725878, + "reversegeo:longitude":-87.626657, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420783603, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a4d580c1eb0299654a895bb9960c3172", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":975148671, + "neighbourhood_id":420783603, + "region_id":85688697 + } + ], + "wof:id":975148671, + "wof:lastmodified":1566643000, + "wof:name":"Lilydale", + "wof:parent_id":420783603, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867661 + ], + "wof:tags":[] +}, + "bbox": [ + -87.62895020595737, + 41.7216216931449, + -87.6243778521792, + 41.7300939059415 +], + "geometry": {"coordinates":[[[[-87.62870254280409,41.72165957670075],[-87.62895020595737,41.73004059102206],[-87.6288067444999,41.7300423592688],[-87.6280270063311,41.7300517638497],[-87.6273255040185,41.7300593660876],[-87.6269954647523,41.7300653237132],[-87.6266026929674,41.7300691107633],[-87.6263096795424,41.7300728517037],[-87.6253520551019,41.7300841896239],[-87.6250839597332,41.7300873674453],[-87.62459951830451,41.7300939059415],[-87.62458040085031,41.729356520222],[-87.6245196704408,41.7268278664359],[-87.6244552078429,41.7246390555785],[-87.6244191117258,41.7228897595864],[-87.62437785217919,41.7216273200556],[-87.62458974100301,41.7216249761173],[-87.6248864510634,41.7216216931449],[-87.62490862790941,41.7216280613913],[-87.6250312475162,41.7216632719202],[-87.62514673251719,41.7216964333493],[-87.6252379137044,41.7216990263358],[-87.6254109763252,41.7216972388444],[-87.62544410464071,41.7216992720222],[-87.62590835293349,41.7216999174974],[-87.6262371758546,41.7216904152628],[-87.6266203779072,41.7216887585635],[-87.627028229893,41.721682537366],[-87.6272632387912,41.7216781625956],[-87.627450030646,41.7216757527498],[-87.6274924067875,41.7216752059545],[-87.6277798258333,41.7216726068141],[-87.6281138770963,41.721667383356],[-87.6283935612886,41.7216618256838],[-87.6286363048858,41.7216604048063],[-87.6286642878266,41.7216600549926],[-87.62870254280409,41.72165957670075]]]],"type":"MultiPolygon"} +},{ + "id": 975148675, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":27472.055292, + "geom:bbox":"-87.6397075434,41.9065311047,-87.6385082471,41.9092329062", + "geom:latitude":41.907878, + "geom:longitude":-87.639109, + "iso:country":"US", + "lbl:latitude":41.907836, + "lbl:longitude":-87.639198, + "lbl:max_zoom":18.0, + "mps:latitude":41.907879, + "mps:longitude":-87.639109, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Marshall Field Garden Apartments" + ], + "name:und_x_variant":[ + "Town and Garden Apartments" + ], + "reversegeo:latitude":41.907879, + "reversegeo:longitude":-87.639109, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85890761, + 102191575, + 404496273, + 85633793, + 85940195, + 957999223, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b76b0f1b24ea565eb6aaf5075e0f07e7", + "wof:hierarchy":[ + { + "borough_id":957999223, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":975148675, + "neighbourhood_id":85890761, + "region_id":85688697 + } + ], + "wof:id":975148675, + "wof:lastmodified":1566643000, + "wof:name":"Marshall Field Garden Apartments", + "wof:parent_id":85890761, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867683 + ], + "wof:tags":[] +}, + "bbox": [ + -87.63970754335618, + 41.90653110470284, + -87.63850824713872, + 41.90923290616514 +], + "geometry": {"coordinates":[[[[-87.63850824713872,41.90654361690188],[-87.63962291674561,41.90653110470284],[-87.63970754335618,41.90920849693818],[-87.63859834784668,41.90923290616514],[-87.63850824713872,41.90654361690188]]]],"type":"MultiPolygon"} +},{ + "id": 975150325, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00004, + "geom:area_square_m":369666.99369, + "geom:bbox":"-87.6487612752,41.918322373,-87.636117323,41.925584547", + "geom:latitude":41.922533, + "geom:longitude":-87.641633, + "iso:country":"US", + "lbl:latitude":41.922712, + "lbl:longitude":-87.641119, + "lbl:max_zoom":18.0, + "mps:latitude":41.923275, + "mps:longitude":-87.641729, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Mid North District", + "Midtown-North", + "Midtown North" + ], + "reversegeo:latitude":41.923275, + "reversegeo:longitude":-87.641729, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869417, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a1e0425f34af165321d3caadcaef5828", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":975150325, + "neighbourhood_id":85869417, + "region_id":85688697 + } + ], + "wof:id":975150325, + "wof:lastmodified":1566643000, + "wof:name":"Mid-North District", + "wof:parent_id":85869417, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867687 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6487612752242, + 41.9183223730124, + -87.6361173230483, + 41.9255845469694 +], + "geometry": {"coordinates":[[[[-87.6388155253388,41.9183223730124],[-87.6487612752242,41.9254538397143],[-87.64790140409769,41.9254653568676],[-87.6475399110597,41.9254721041621],[-87.64729188609191,41.925476763255],[-87.6471825397163,41.9254760516928],[-87.6471490002907,41.925478295815],[-87.64699994752614,41.92548163774023],[-87.6404794530079,41.9255845469694],[-87.63638917236651,41.9188946307294],[-87.63625063290191,41.9186879407643],[-87.6361173230483,41.9184733663886],[-87.6363354406835,41.9184108168428],[-87.6364811643964,41.9183690269679],[-87.6365165460209,41.9183600309721],[-87.636530243045,41.9183565485209],[-87.63656442947,41.9183554170675],[-87.63671736020309,41.9183496221722],[-87.63712500368401,41.9183523857176],[-87.63713760868001,41.9183521482052],[-87.63722088234179,41.9183505803646],[-87.6376953247327,41.9183416977606],[-87.6378437413168,41.9183389297114],[-87.6378437435212,41.9183389297247],[-87.6379854965984,41.9183359759615],[-87.6382026917401,41.918331470817],[-87.6382027090111,41.9183314706471],[-87.6382651443943,41.9183305387889],[-87.63881550917,41.918322373189],[-87.6388155253388,41.9183223730124]]]],"type":"MultiPolygon"} +},{ + "id": 907215425, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":512163.119511, + "geom:bbox":"-73.9185860643,40.6221862433,-73.9005883706,40.6336207611", + "geom:latitude":40.628175, + "geom:longitude":-73.909895, + "iso:country":"US", + "lbl:latitude":40.629707, + "lbl:longitude":-73.914228, + "lbl:max_zoom":18.0, + "mps:latitude":40.629404, + "mps:longitude":-73.909274, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Paerdegat Basin" + ], + "reversegeo:latitude":40.629404, + "reversegeo:longitude":-73.909274, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865597, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b357bbe58f1ab6bb9dca23ddb1b1aeb1", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215425, + "neighbourhood_id":85865597, + "region_id":85688543 + } + ], + "wof:id":907215425, + "wof:lastmodified":1566608558, + "wof:name":"Paedergat Basin", + "wof:parent_id":85865597, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892953 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91858606431548, + 40.6221862432519, + -73.90058837062296, + 40.63362076106387 +], + "geometry": {"coordinates":[[[[-73.90224690374535,40.62324031835469],[-73.90377429495669,40.6221862432519],[-73.90621690707972,40.62434071675607],[-73.91834205743707,40.62976753912089],[-73.91858606431548,40.63205682076104],[-73.91624810498672,40.63362076106387],[-73.91559744748132,40.633029036578],[-73.90058837062296,40.62634003555279],[-73.90151852622715,40.62509885902464],[-73.90412793207629,40.6263062001343],[-73.91504833286207,40.63116610550565],[-73.91633195427593,40.63203873255836],[-73.91679492734245,40.63196017101003],[-73.91716071485482,40.631730125997],[-73.91742614571051,40.63158132538346],[-73.91751823209552,40.63134025951668],[-73.91731998946514,40.63100715271814],[-73.90396106711282,40.62483361555435],[-73.90385540661512,40.62494019869986],[-73.90387959925972,40.62494949466425],[-73.90386678862848,40.62496884844079],[-73.90546206137272,40.62577481968356],[-73.90544562242681,40.62579278066394],[-73.90541298266766,40.62577561813238],[-73.90532958044676,40.62586495608448],[-73.90531870381376,40.62585846560605],[-73.90539726701543,40.62576726762863],[-73.90320897829324,40.62466523688175],[-73.90314076321705,40.62474538167436],[-73.90312443792679,40.62473795326133],[-73.90320848278489,40.62464076938314],[-73.90315226124029,40.62461338719579],[-73.90307005655619,40.62470549847207],[-73.90305433084023,40.62469945601759],[-73.90312436585715,40.62461885378048],[-73.90262747173379,40.62437012914652],[-73.90255865671575,40.62444888812757],[-73.90254656112634,40.6244442391697],[-73.9026305951721,40.62434936475116],[-73.90313231786669,40.6246022561969],[-73.90317372279084,40.62455574101548],[-73.90320334369771,40.62457058890892],[-73.90327045944052,40.62448418394111],[-73.90288536052955,40.62431056512226],[-73.90269333271988,40.62421333487349],[-73.90283262223269,40.62405099444972],[-73.90278628951697,40.62403918286176],[-73.90275548257645,40.62406806005405],[-73.90271898828895,40.62405239371349],[-73.90241543050308,40.62446290725012],[-73.90228707932292,40.62440985393052],[-73.9022969404983,40.62439651880778],[-73.90240380972986,40.62444239705107],[-73.90271369573063,40.6240233268361],[-73.90261908735023,40.62398271330384],[-73.90262364456689,40.62397655126527],[-73.90271937115776,40.62401764604499],[-73.90274531019527,40.62398256701533],[-73.90263558802589,40.62393546354276],[-73.90264355554719,40.62392468930737],[-73.90270209085745,40.62394981859844],[-73.90271236759584,40.6239359210621],[-73.90284816261749,40.62399421782229],[-73.90287435266727,40.6239577803166],[-73.90273926215681,40.62389978674023],[-73.90275168375598,40.62388298807526],[-73.90291619574126,40.62395453125655],[-73.90296245923994,40.62387342321743],[-73.90297860500661,40.62378584608798],[-73.90296345963131,40.62369816526336],[-73.90293591363107,40.62362404852861],[-73.90288185636999,40.62354194624509],[-73.90282481652859,40.62347599119474],[-73.90273017665996,40.62344178017442],[-73.9026493518468,40.62342475449163],[-73.90258885257215,40.62343437418291],[-73.9024200429414,40.6234915538648],[-73.90240187911951,40.62349130239805],[-73.90238403779526,40.6234886791614],[-73.90236704917785,40.62348376250619],[-73.9023514183115,40.62347669894692],[-73.90233760507867,40.62346769527045],[-73.90232117457619,40.62345115492621],[-73.9023108358855,40.62343196442416],[-73.90230768513528,40.62341832339126],[-73.90228582184184,40.6233375694779],[-73.90224690374535,40.62324031835469]]]],"type":"MultiPolygon"} +},{ + "id": 907215429, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":210694.914894, + "geom:bbox":"-73.8132609564,40.8205387687,-73.8058952551,40.8258969921", + "geom:latitude":40.823361, + "geom:longitude":-73.809613, + "iso:country":"US", + "lbl:latitude":40.823571, + "lbl:longitude":-73.809891, + "lbl:max_zoom":18.0, + "mps:latitude":40.823577, + "mps:longitude":-73.809865, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Edgewater Park" + ], + "name:eng_x_variant":[ + "Park of Edgewater" + ], + "reversegeo:latitude":40.823577, + "reversegeo:longitude":-73.809865, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85852219, + 102191575, + 907157031, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b2f42b2faeb6dc3d846a529581cf0749", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157031, + "microhood_id":907215429, + "neighbourhood_id":85852219, + "region_id":85688543 + } + ], + "wof:id":907215429, + "wof:lastmodified":1566608562, + "wof:name":"Park of Edgewater", + "wof:parent_id":85852219, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85840561 + ], + "wof:tags":[] +}, + "bbox": [ + -73.81326095641582, + 40.82053876866041, + -73.80589525514345, + 40.82589699205914 +], + "geometry": {"coordinates":[[[[-73.80589525514345,40.82194060124748],[-73.80764694659257,40.82180447520508],[-73.80770548275663,40.82225146442104],[-73.80905089974181,40.82212563354913],[-73.80967599448921,40.82202463405785],[-73.81059672331902,40.82164292325144],[-73.81032029357543,40.82112523286232],[-73.81183713832922,40.82053876866041],[-73.81215128139569,40.82068250325246],[-73.81221066349312,40.82072465755407],[-73.81226396131655,40.82076664334343],[-73.81230874954775,40.82080556250545],[-73.81235170914718,40.82084399595725],[-73.81243400311357,40.82090743316656],[-73.81243434895036,40.82090785041986],[-73.81243446066854,40.82090845386611],[-73.81240506615295,40.82104533403248],[-73.81243896863009,40.82122917282936],[-73.81249192780102,40.82140385863126],[-73.81257307025781,40.82156615208477],[-73.81291735397502,40.82210107643577],[-73.81292585710868,40.82213195585744],[-73.81292814555719,40.82216827667813],[-73.81291599941881,40.82220883598293],[-73.81289838089411,40.82223675104044],[-73.81287686353029,40.82224852678532],[-73.81222056796233,40.82249361766957],[-73.81257241522248,40.82322478339738],[-73.81285152202425,40.82373332990728],[-73.81287149019708,40.82375279801865],[-73.81289277631839,40.82376673504345],[-73.81326095641582,40.82397727801228],[-73.81307607755663,40.82412571447782],[-73.81291980170819,40.82425118601462],[-73.81281028704979,40.82433911369274],[-73.81282255867909,40.82467968021855],[-73.81273339110186,40.82477847086898],[-73.81239670590338,40.82447939640068],[-73.81232005538465,40.82441130842648],[-73.81201913394885,40.82432568722639],[-73.81189679599498,40.82434084624225],[-73.81177284871222,40.82433980617294],[-73.81165700660038,40.82444603382068],[-73.81158752719132,40.824492599865],[-73.81164355619616,40.82460166226868],[-73.81161100459455,40.82461149170247],[-73.81155844768892,40.82451209023507],[-73.81145450110274,40.82455077798015],[-73.81122136266146,40.82458580068872],[-73.81118706943637,40.8246258701925],[-73.81121173987,40.82469200019446],[-73.81121152557868,40.82476753080163],[-73.81119903005492,40.82479111338073],[-73.81116561831503,40.82478987176065],[-73.811140032556,40.82477685441309],[-73.81112145616831,40.82475322061573],[-73.8111029139569,40.82471778543646],[-73.81105945414961,40.82470355254865],[-73.81103147525592,40.82470822704204],[-73.81102206082723,40.82474125700512],[-73.81097529169038,40.82479782810831],[-73.81091717931503,40.82484035124947],[-73.81084728678655,40.82487249096486],[-73.81087496294401,40.82511394844661],[-73.81078485286447,40.82511380062506],[-73.8107619255919,40.82490157071432],[-73.81036867618806,40.82504702788835],[-73.81033123518841,40.82510125364713],[-73.8103187056486,40.82513663767587],[-73.81029687386918,40.8251649268132],[-73.81025025884568,40.82516721003685],[-73.81016019782049,40.82515053852701],[-73.810060786379,40.82514329456954],[-73.80965481141762,40.82527553562189],[-73.80957228649658,40.82537616136582],[-73.80944144497774,40.82549396224495],[-73.80924839089201,40.82563526361873],[-73.8091981684224,40.82581220521546],[-73.8091670077784,40.82584283794908],[-73.80909234633555,40.82587339816412],[-73.80898675442161,40.82585434128294],[-73.80878493921446,40.82579971898294],[-73.80859213406458,40.82585368695091],[-73.8084692265089,40.82586033865237],[-73.80838405054163,40.82581793724487],[-73.80827534477037,40.82580123328299],[-73.8081634785856,40.82580340715928],[-73.80799778085273,40.82579036736253],[-73.80798431158682,40.82582757491855],[-73.80795249362441,40.82582557697378],[-73.8079630929977,40.82578174273234],[-73.80783421319308,40.82576745480301],[-73.80775957168115,40.82579093275984],[-73.80772524164831,40.82584280293796],[-73.80770957571983,40.82588762397238],[-73.80766604765256,40.82589699205914],[-73.80764748561124,40.82586863722247],[-73.80763826655802,40.82583321720864],[-73.80757311562434,40.82579770320492],[-73.80752039504306,40.8257622099127],[-73.80741500869622,40.82567234199039],[-73.80734677251725,40.82562974244745],[-73.80730969098879,40.82555886937344],[-73.8072756765167,40.82550216477544],[-73.80716084578457,40.82545476690017],[-73.80710187725674,40.82543106423242],[-73.80702113005177,40.82541676744419],[-73.80697771152217,40.82538837089741],[-73.80697779368703,40.82536004598342],[-73.80699654610881,40.82532231281296],[-73.8069719145262,40.82524438070717],[-73.80691927004257,40.82518292330173],[-73.80681727303701,40.8249962859118],[-73.80673428399336,40.82468458298449],[-73.80669402711511,40.82463730859016],[-73.80665055458627,40.82462779486008],[-73.80659773251973,40.82462770628074],[-73.80656361554978,40.82460640543176],[-73.80657302530776,40.82457573741435],[-73.80663305925734,40.8245519777406],[-73.80671607190374,40.82453585161528],[-73.80675345538242,40.82450287004619],[-73.80670755354022,40.82425967758666],[-73.8065926709169,40.82423116107589],[-73.8065398628888,40.82422635215271],[-73.80652125397438,40.82421451915926],[-73.80651819407531,40.8241979919127],[-73.80652975478525,40.8241736458632],[-73.80658800807517,40.82417240690537],[-73.80669991403107,40.82415607293686],[-73.80673104693945,40.82413488149518],[-73.80675058060035,40.82382807065871],[-73.80670714973108,40.82380439448799],[-73.80653930859722,40.82382299606159],[-73.80648339363759,40.82381818189916],[-73.80646480610483,40.82379926749921],[-73.80646486788683,40.82377802514849],[-73.806508429719,40.82375685462483],[-73.80666387639964,40.82372643154824],[-73.80669197728997,40.82367927106438],[-73.80659975771898,40.82333686868597],[-73.80650977491835,40.82329423114608],[-73.80626417474805,40.82334102570461],[-73.80623630693714,40.82330793465067],[-73.80646027418052,40.82322097751138],[-73.8065101867104,40.82315261172051],[-73.80629982379303,40.82283597473967],[-73.80612875487965,40.82289705487307],[-73.8060479275223,40.82291108114823],[-73.80596714429281,40.82291094524422],[-73.80595169124462,40.82288259534947],[-73.80614763085913,40.82281683527484],[-73.80622242082097,40.82274142998953],[-73.80589525514345,40.82194060124748]]]],"type":"MultiPolygon"} +},{ + "id": 907215431, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000034, + "geom:area_square_m":316199.419166, + "geom:bbox":"-73.9771858362,40.6275786865,-73.96678,40.6353167733", + "geom:latitude":40.631485, + "geom:longitude":-73.972068, + "iso:country":"US", + "lbl:latitude":40.631573, + "lbl:longitude":-73.97247, + "lbl:max_zoom":18.0, + "mps:latitude":40.631491, + "mps:longitude":-73.972069, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Parkville" + ], + "name:deu_x_preferred":[ + "Parkville" + ], + "name:eng_x_preferred":[ + "Parkville" + ], + "name:fra_x_preferred":[ + "Parkville" + ], + "name:ita_x_preferred":[ + "Parkville" + ], + "name:kor_x_preferred":[ + "\ud30c\ud06c\ube4c" + ], + "name:mlg_x_preferred":[ + "Parkville" + ], + "name:nld_x_preferred":[ + "Parkville" + ], + "name:nor_x_preferred":[ + "Parkville" + ], + "name:pol_x_preferred":[ + "Parkville" + ], + "name:spa_x_preferred":[ + "Parkville" + ], + "name:srp_x_preferred":[ + "\u041f\u0430\u0440\u043a\u0432\u0438\u043b" + ], + "name:swe_x_preferred":[ + "Parkville" + ], + "name:und_x_variant":[ + "Greenfield" + ], + "name:vol_x_preferred":[ + "Parkville" + ], + "reversegeo:latitude":40.631491, + "reversegeo:longitude":-73.972069, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85828101, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"19de85ef7db8cdd0bc0a1733a3e743b9", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215431, + "neighbourhood_id":85828101, + "region_id":85688543 + } + ], + "wof:id":907215431, + "wof:lastmodified":1566608559, + "wof:name":"Parkville", + "wof:parent_id":85828101, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85840745 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97718583619363, + 40.62757868646409, + -73.96678, + 40.63531677326907 +], + "geometry": {"coordinates":[[[[-73.97718583619363,40.63082150481262],[-73.96765718543182,40.63531677326907],[-73.96678,40.63229500000016],[-73.97656863185141,40.62757868646409],[-73.97718583619363,40.63082150481262]]]],"type":"MultiPolygon"} +},{ + "id": 907215433, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000005, + "geom:area_square_m":43431.87518, + "geom:bbox":"-73.9266490105,40.8115528655,-73.9229550871,40.8150102651", + "geom:latitude":40.813229, + "geom:longitude":-73.924694, + "iso:country":"US", + "lbl:latitude":40.814318, + "lbl:longitude":-73.923538, + "lbl:max_zoom":18.0, + "mps:latitude":40.813245, + "mps:longitude":-73.924694, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.813245, + "reversegeo:longitude":-73.924694, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85835417, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8949c961a34d1865c823a44b3c9d62f7", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907215433, + "neighbourhood_id":85835417, + "region_id":85688543 + } + ], + "wof:id":907215433, + "wof:lastmodified":1566608563, + "wof:name":"Patterson Houses", + "wof:parent_id":85835417, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868027 + ], + "wof:tags":[] +}, + "bbox": [ + -73.92664901054171, + 40.81155286546318, + -73.9229550871382, + 40.81501026513405 +], + "geometry": {"coordinates":[[[[-73.92423851378977,40.81501026513405],[-73.92664901054171,40.81172350812897],[-73.92640002671541,40.81155286546318],[-73.92295508713821,40.81333790828801],[-73.92423851378977,40.81501026513405]]]],"type":"MultiPolygon"} +},{ + "id": 907215439, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":20736.747125, + "geom:bbox":"-73.9233145373,40.8072750331,-73.9201128992,40.8090496242", + "geom:latitude":40.808163, + "geom:longitude":-73.921711, + "iso:country":"US", + "lbl:latitude":40.807098, + "lbl:longitude":-73.927132, + "lbl:max_zoom":18.0, + "mps:latitude":40.808164, + "mps:longitude":-73.921711, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.808164, + "reversegeo:longitude":-73.921711, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85835417, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5f537215786943b585aba47183206720", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907215439, + "neighbourhood_id":85835417, + "region_id":85688543 + } + ], + "wof:id":907215439, + "wof:lastmodified":1566608558, + "wof:name":"Plaza Borinquen", + "wof:parent_id":85835417, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868029 + ], + "wof:tags":[] +}, + "bbox": [ + -73.92331453725365, + 40.80727503313437, + -73.92011289922718, + 40.80904962422638 +], + "geometry": {"coordinates":[[[[-73.92331453725365,40.80843241500801],[-73.92285380108342,40.80904962422638],[-73.92011289922718,40.80789046162815],[-73.92054675688277,40.80727503313437],[-73.92331453725365,40.80843241500801]]]],"type":"MultiPolygon"} +},{ + "id": 907215441, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00011, + "geom:area_square_m":1032700.802001, + "geom:bbox":"-73.815231,40.7271626963,-73.8046476846,40.7389511163", + "geom:latitude":40.733108, + "geom:longitude":-73.80998, + "iso:country":"US", + "lbl:latitude":40.734783, + "lbl:longitude":-73.809715, + "lbl:max_zoom":18.0, + "mps:latitude":40.733194, + "mps:longitude":-73.809909, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.733194, + "reversegeo:longitude":-73.809909, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"eef2f2b2e6229d2707f7dd38e00ecd0e", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215441, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907215441, + "wof:lastmodified":1566608558, + "wof:name":"Pomonok", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865649 + ], + "wof:tags":[] +}, + "bbox": [ + -73.815231, + 40.72716269625774, + -73.80464768464311, + 40.73895111627421 +], + "geometry": {"coordinates":[[[[-73.80514967286702,40.72785159616154],[-73.81086427579858,40.72722344575137],[-73.81118269680971,40.72720991432563],[-73.81158863756177,40.72722310297628],[-73.81202935456265,40.72723657854339],[-73.81247294766769,40.72718966434132],[-73.81256515114409,40.72716269625774],[-73.81444,40.7280868616171],[-73.815231,40.72879400000015],[-73.81480000000001,40.73377586161743],[-73.81471259137689,40.73718073916826],[-73.8147912784837,40.73761324521984],[-73.81490914968371,40.73817017524909],[-73.81505649236264,40.73895111627421],[-73.81468460417732,40.73888950204901],[-73.81429211013828,40.73884135194365],[-73.81362434615878,40.73879009448289],[-73.81296499530126,40.73875786862956],[-73.80464768464311,40.7384188269903],[-73.80502123019443,40.73275201792901],[-73.80523204056355,40.72909938827767],[-73.80524247184451,40.72883399224948],[-73.80523349227136,40.7285593094645],[-73.80520506028827,40.72822042386014],[-73.80515157116443,40.72787107811068],[-73.80514967286702,40.72785159616154]]]],"type":"MultiPolygon"} +},{ + "id": 907215443, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000161, + "geom:area_square_m":1512578.450432, + "geom:bbox":"-73.8359206113,40.7389527719,-73.8136390742,40.752065295", + "geom:latitude":40.745718, + "geom:longitude":-73.82447, + "iso:country":"US", + "lbl:latitude":40.749183, + "lbl:longitude":-73.82248, + "lbl:max_zoom":18.0, + "mps:latitude":40.746718, + "mps:longitude":-73.825569, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Queensboro Hill" + ], + "reversegeo:latitude":40.746718, + "reversegeo:longitude":-73.825569, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e9351a50e57e0fa5e6d61999ab70cecc", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215443, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907215443, + "wof:lastmodified":1566608561, + "wof:name":"Queensboro Hills", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892851, + 85865575 + ], + "wof:tags":[] +}, + "bbox": [ + -73.83592061127761, + 40.73895277192472, + -73.81363907423622, + 40.75206529495692 +], + "geometry": {"coordinates":[[[[-73.81365321299248,40.74515927954972],[-73.81369867271864,40.74496457558467],[-73.81455817098055,40.74187219019143],[-73.81511466597001,40.73978309518493],[-73.81512289376607,40.73948021543566],[-73.81505391141081,40.73895277192472],[-73.8250583743325,40.74221375181344],[-73.8260776442248,40.74252214469961],[-73.82681754008568,40.74270502471648],[-73.82747321639025,40.74279180095859],[-73.82817768846317,40.74285760317289],[-73.8322999555873,40.74325538119659],[-73.83592061127761,40.74359664791278],[-73.8356639328962,40.74478513209736],[-73.83553760011426,40.74519830548714],[-73.83516586411332,40.74592203678557],[-73.83475071933215,40.74670864721357],[-73.83453123112238,40.74702163316417],[-73.83437470319851,40.74717923987043],[-73.83421393288765,40.74731799055774],[-73.8335762564718,40.74773693680817],[-73.83321143873954,40.74795638242376],[-73.83302996470245,40.74816376290532],[-73.83287686032187,40.74841555341349],[-73.83273344740979,40.74878343514364],[-73.83255699126032,40.74936576081268],[-73.83246258295476,40.74970245282783],[-73.83239417222107,40.75008446283409],[-73.8323204630272,40.75072424906968],[-73.83226276717475,40.7514580072323],[-73.83065819121768,40.75206529495692],[-73.82928044234204,40.75151931738338],[-73.8286909167885,40.75129081356702],[-73.82846506684893,40.7512073252561],[-73.82834851950605,40.75118021842754],[-73.82822632318501,40.75118069215428],[-73.82809166468988,40.75120873609821],[-73.82796132735463,40.75125435171926],[-73.82638626635257,40.75184010584397],[-73.82608548073861,40.75151651262313],[-73.82588292036512,40.75122691482893],[-73.82575596177267,40.75096821168336],[-73.82543282242575,40.75114091790883],[-73.82453028869601,40.7516650207631],[-73.82179608982244,40.74892810673731],[-73.82042314127638,40.74824487687786],[-73.8174892283358,40.74725093242067],[-73.81672002549794,40.74711332390902],[-73.81609784269763,40.74698629255199],[-73.81567729125481,40.74685840147473],[-73.81519197886587,40.74665919772643],[-73.81432509201761,40.74617080260305],[-73.81412142702354,40.74611776883708],[-73.81392882230169,40.74615283026993],[-73.81382549304,40.74621452849648],[-73.81368012738102,40.74566923143631],[-73.81363999827175,40.74544313285223],[-73.81363907423622,40.74528398430288],[-73.81365321299248,40.74515927954972]]]],"type":"MultiPolygon"} +},{ + "id": 907215445, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":175269.842639, + "geom:bbox":"-73.9487073703,40.7527269322,-73.9413602296,40.757718929", + "geom:latitude":40.755161, + "geom:longitude":-73.945002, + "iso:country":"US", + "lbl:latitude":40.754844, + "lbl:longitude":-73.944623, + "lbl:max_zoom":18.0, + "mps:latitude":40.755221, + "mps:longitude":-73.944947, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:dan_x_preferred":[ + "Queensbridge" + ], + "name:deu_x_preferred":[ + "Queensbridge" + ], + "name:eng_x_preferred":[ + "Queensbridge" + ], + "name:fin_x_preferred":[ + "Queensbridge" + ], + "name:fra_x_preferred":[ + "Queensbridge" + ], + "name:jpn_x_preferred":[ + "\u30af\u30a4\u30fc\u30f3\u30ba\u30d6\u30ea\u30c3\u30b8\u56e3\u5730" + ], + "name:pol_x_preferred":[ + "Queensbridge" + ], + "name:por_x_preferred":[ + "Queensbridge" + ], + "name:swe_x_preferred":[ + "Queensbridge" + ], + "name:swe_x_variant":[ + "South Williamsburg" + ], + "name:zho_x_preferred":[ + "\u7687\u540e\u6a4b\u4f4f\u5b85" + ], + "reversegeo:latitude":40.755221, + "reversegeo:longitude":-73.944947, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831303, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1292552" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"9c97191c5e11f42d4d238878060c1b80", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215445, + "neighbourhood_id":85831303, + "region_id":85688543 + } + ], + "wof:id":907215445, + "wof:lastmodified":1566608562, + "wof:name":"Queensbridge", + "wof:parent_id":85831303, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869613 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94870737027486, + 40.75272693218825, + -73.9413602296437, + 40.75771892899029 +], + "geometry": {"coordinates":[[[[-73.94136022964371,40.75524156670111],[-73.94372113606987,40.75272693218825],[-73.94870737027486,40.75488056586976],[-73.94802082672004,40.75561566020382],[-73.94754034312264,40.75614176375432],[-73.9473877279521,40.75630419306444],[-73.94714584854802,40.75653201592831],[-73.94581480348533,40.75771892899029],[-73.94462474717439,40.75698748951152],[-73.94350085626249,40.75636124529784],[-73.94136022964371,40.75524156670111]]]],"type":"MultiPolygon"} +},{ + "id": 907215447, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":66101.545655, + "geom:bbox":"-73.8329030952,40.6548754458,-73.8290642344,40.6583499693", + "geom:latitude":40.656979, + "geom:longitude":-73.831215, + "iso:country":"US", + "lbl:latitude":40.657385, + "lbl:longitude":-73.83079, + "lbl:max_zoom":18.0, + "mps:latitude":40.657105, + "mps:longitude":-73.831245, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Ramblersville" + ], + "name:fra_x_preferred":[ + "Ramblersville" + ], + "name:nld_x_preferred":[ + "Ramblersville" + ], + "name:spa_x_preferred":[ + "Ramblersville" + ], + "name:urd_x_preferred":[ + "\u0631\u06cc\u0645\u0628\u0644\u0631\u0632 \u0648\u0644\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0631\u06cc\u0645\u0628\u0644\u0631\u0632 \u0648\u0644" + ], + "reversegeo:latitude":40.657105, + "reversegeo:longitude":-73.831245, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420782889, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q59000" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ffaf7ab02004abfc9fa72e4eac3ccc08", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215447, + "neighbourhood_id":420782889, + "region_id":85688543 + } + ], + "wof:id":907215447, + "wof:lastmodified":1566608557, + "wof:name":"Ramblersville", + "wof:parent_id":420782889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869617 + ], + "wof:tags":[] +}, + "bbox": [ + -73.83290309524605, + 40.65487544577763, + -73.82906423436309, + 40.65834996934829 +], + "geometry": {"coordinates":[[[[-73.83096907996676,40.65823029417257],[-73.83024427039405,40.65834996934829],[-73.83016976043837,40.65831577352829],[-73.83000600274033,40.65817634852296],[-73.82982712281731,40.65811643485667],[-73.82970079467547,40.65792593544332],[-73.8296301319762,40.65784629785769],[-73.82951463014508,40.65779783883256],[-73.82945866947038,40.65780343760182],[-73.82937290582956,40.65779478840818],[-73.82922393902868,40.65770651238414],[-73.82910499991128,40.65754442905882],[-73.82906423436309,40.65744211265005],[-73.82909434825208,40.65733421866339],[-73.82917290744736,40.65724344063427],[-73.82924393205009,40.65718105614684],[-73.829347152373,40.65710305815871],[-73.82942711948486,40.65701373954082],[-73.82949826173954,40.65690590795552],[-73.82949465565422,40.65685761471539],[-73.8294613126143,40.65676951032551],[-73.82946151593039,40.65668997716948],[-73.82950265119857,40.65664743198352],[-73.82958468477645,40.65665607388186],[-73.82968157040287,40.65669030322535],[-73.82977849236676,40.6567103304847],[-73.82989186540318,40.65672882079571],[-73.83000967244324,40.65673623621181],[-73.83018507808815,40.65669388796881],[-73.8303272854543,40.65650662730801],[-73.83039087156536,40.65643570913236],[-73.83050532057382,40.6563423673163],[-73.83106670806471,40.6561384546809],[-73.83127112568124,40.65600327149474],[-73.83137226599491,40.65589155141573],[-73.83144150703522,40.65576651663343],[-73.83147596319591,40.65563337828013],[-73.83146993367258,40.65555345217368],[-73.83151638832743,40.65546449041521],[-73.83155930253504,40.65535534364431],[-73.83155309177064,40.65524297287486],[-73.83168728328508,40.65509126020669],[-73.83175312959307,40.65496210950514],[-73.83185238479284,40.65488503826712],[-73.83191670520526,40.6548826071234],[-73.83200725288438,40.65490052071419],[-73.83212857266429,40.65487544577763],[-73.83218186068029,40.65489475195503],[-73.8328522411238,40.65706213877166],[-73.83290309524605,40.65748377162319],[-73.83278194361475,40.65754846038358],[-73.83208497100864,40.65613102851144],[-73.83200033377661,40.65615781613683],[-73.8326711865823,40.65759187198934],[-73.83260036370608,40.65782659162731],[-73.83201491707914,40.65807753263688],[-73.83096907996676,40.65823029417257]]]],"type":"MultiPolygon"} +},{ + "id": 907215449, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000021, + "geom:area_square_m":198461.584546, + "geom:bbox":"-73.9390952481,40.7587540214,-73.9316714599,40.7642110283", + "geom:latitude":40.761439, + "geom:longitude":-73.93549, + "iso:country":"US", + "lbl:latitude":40.765909, + "lbl:longitude":-73.938621, + "lbl:max_zoom":18.0, + "mps:latitude":40.761413, + "mps:longitude":-73.93549, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Ravenswood" + ], + "name:deu_x_preferred":[ + "Ravenswood" + ], + "name:fin_x_preferred":[ + "Ravenswood" + ], + "name:fra_x_preferred":[ + "Ravenswood" + ], + "name:ita_x_preferred":[ + "Ravenswood" + ], + "name:kor_x_preferred":[ + "\ub808\uc774\ube10\uc2a4\uc6b0\ub4dc" + ], + "name:nld_x_preferred":[ + "Ravenswood" + ], + "name:pol_x_preferred":[ + "Ravenswood" + ], + "name:swe_x_preferred":[ + "Ravenswood" + ], + "reversegeo:latitude":40.761413, + "reversegeo:longitude":-73.93549, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831303, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1cd82c4ed70e7bd173990b7f44a0ab90", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215449, + "neighbourhood_id":85831303, + "region_id":85688543 + } + ], + "wof:id":907215449, + "wof:lastmodified":1566608557, + "wof:name":"Ravenswood", + "wof:parent_id":85831303, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865633 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9390952480807, + 40.75875402135896, + -73.93167145987881, + 40.76421102830356 +], + "geometry": {"coordinates":[[[[-73.93701364974594,40.76421102830356],[-73.93167145987881,40.76171892467666],[-73.93427835229225,40.75875402135896],[-73.93501881648538,40.75910711754183],[-73.93736643516365,40.76019096845069],[-73.93777386336673,40.76034946610237],[-73.93825862268562,40.76052897489099],[-73.93866413296429,40.76068496869867],[-73.9390952480807,40.76083026375908],[-73.93701364974594,40.76421102830356]]]],"type":"MultiPolygon"} +},{ + "id": 907215451, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00016, + "geom:area_square_m":1507920.566959, + "geom:bbox":"-74.2439650076,40.519172,-74.218167,40.5324", + "geom:latitude":40.524832, + "geom:longitude":-74.232107, + "iso:country":"US", + "lbl:latitude":40.523043, + "lbl:longitude":-74.232918, + "lbl:max_zoom":18.0, + "mps:latitude":40.524288, + "mps:longitude":-74.232295, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Richmond Valley" + ], + "name:eng_x_variant":[ + "Richmond Vly" + ], + "name:pol_x_preferred":[ + "Richmond Valley" + ], + "name:swe_x_preferred":[ + "Richmond Valley" + ], + "reversegeo:latitude":40.524288, + "reversegeo:longitude":-74.232295, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85842295, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"05324431dbe0a02014f547d09d0c9272", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907215451, + "neighbourhood_id":85842295, + "region_id":85688543 + } + ], + "wof:id":907215451, + "wof:lastmodified":1566608563, + "wof:name":"Richmond Valley", + "wof:parent_id":85842295, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85844447 + ], + "wof:tags":[] +}, + "bbox": [ + -74.24396500758881, + 40.51917200000023, + -74.218167, + 40.53240000000011 +], + "geometry": {"coordinates":[[[[-74.22504300000011,40.52054000000015],[-74.22691000000017,40.51917200000025],[-74.22691000000019,40.51917200000023],[-74.229299,40.51998400000025],[-74.23159699999999,40.520879],[-74.23353700000018,40.52064000000017],[-74.235112,40.52091700000017],[-74.23945999999999,40.52127900000011],[-74.23982258316799,40.52009071144384],[-74.24073284548766,40.52056915165378],[-74.24117293552212,40.52106013143195],[-74.24133219575538,40.52089451758016],[-74.24293235036527,40.52122716113286],[-74.24258375639451,40.52219864900061],[-74.24276246783731,40.52272678912762],[-74.24261397838448,40.52308093752463],[-74.24275353768007,40.5237701043073],[-74.24280157009598,40.52400729628678],[-74.24335792685878,40.52481891382049],[-74.24363522638353,40.52485840320114],[-74.24396500758881,40.52490536633781],[-74.24342518585456,40.52572301797026],[-74.24338525044953,40.52578350691869],[-74.24333883883872,40.52585380518012],[-74.24282860818658,40.52741888075699],[-74.24284350719839,40.52761920308247],[-74.24288671381223,40.52820013082607],[-74.24260983751452,40.52838093117978],[-74.24256404956563,40.52841083073195],[-74.22856299999999,40.52756600000018],[-74.227853,40.527631],[-74.22758082647761,40.52777572246375],[-74.22733599999999,40.52782800000018],[-74.22693900000013,40.52811700000012],[-74.22569300000015,40.529911],[-74.224846,40.53240000000011],[-74.22414000000001,40.532292],[-74.22389,40.5311130000002],[-74.222278,40.52921200000012],[-74.22191643881985,40.52889936803953],[-74.22169997732169,40.52871219976399],[-74.221576,40.52860500000017],[-74.22086752473589,40.52833318399544],[-74.22022,40.528037],[-74.22003491850163,40.52801374348478],[-74.21982137874899,40.52798646893718],[-74.21925,40.52791400000019],[-74.21816699999999,40.52800400000018],[-74.21829514992336,40.52771468220628],[-74.221183,40.52692200000027],[-74.22153400000012,40.52626300000028],[-74.222128,40.52581400000025],[-74.22224889630627,40.52577429070823],[-74.22245400281662,40.52570692194752],[-74.2228800000002,40.52556700000025],[-74.22366,40.52554300000021],[-74.22396999999999,40.52338300000019],[-74.22504300000011,40.52054000000015]]]],"type":"MultiPolygon"} +},{ + "id": 907215455, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000051, + "geom:area_square_m":478302.312526, + "geom:bbox":"-73.7746890358,40.667035,-73.7637218387,40.6753859978", + "geom:latitude":40.670933, + "geom:longitude":-73.768623, + "iso:country":"US", + "lbl:latitude":40.675445, + "lbl:longitude":-73.773336, + "lbl:max_zoom":18.0, + "mps:latitude":40.670093, + "mps:longitude":-73.768623, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Rochdale" + ], + "reversegeo:latitude":40.670093, + "reversegeo:longitude":-73.768623, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827297, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dd8a4576046144a7d5345c17c5b52460", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215455, + "neighbourhood_id":85827297, + "region_id":85688543 + } + ], + "wof:id":907215455, + "wof:lastmodified":1566608558, + "wof:name":"Rochdale Village", + "wof:parent_id":85827297, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865645 + ], + "wof:tags":[] +}, + "bbox": [ + -73.77468903578087, + 40.66703500000024, + -73.76372183869302, + 40.67538599781762 +], + "geometry": {"coordinates":[[[[-73.77468903578087,40.6718523516756],[-73.7737353799955,40.67224688056498],[-73.76837619586451,40.67302350106268],[-73.7687485461267,40.67413294322495],[-73.76575644580544,40.67478851401022],[-73.7653113081317,40.67538599781762],[-73.76372183869302,40.6744006701442],[-73.76383,40.67364000000015],[-73.76435300000013,40.67185300000027],[-73.76696,40.66703500000024],[-73.77113700000011,40.66744600000014],[-73.77136949934368,40.66744471830586],[-73.77468903578087,40.6718523516756]]]],"type":"MultiPolygon"} +},{ + "id": 907215457, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000022, + "geom:area_square_m":202228.667403, + "geom:bbox":"-73.9847421064,40.7379130385,-73.9777935564,40.7439076369", + "geom:latitude":40.740915, + "geom:longitude":-73.981267, + "iso:country":"US", + "lbl:latitude":40.742056, + "lbl:longitude":-73.983604, + "lbl:max_zoom":18.0, + "mps:latitude":40.740913, + "mps:longitude":-73.981267, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Rose Hill" + ], + "name:eng_x_preferred":[ + "Rose Hill" + ], + "name:eng_x_variant":[ + "Rose Hl" + ], + "name:fra_x_preferred":[ + "Rose Hill" + ], + "name:ind_x_preferred":[ + "Rose Hill" + ], + "name:ita_x_preferred":[ + "Rose Hill" + ], + "name:jpn_x_preferred":[ + "\u30ed\u30fc\u30ba\u30fb\u30d2\u30eb" + ], + "name:nld_x_preferred":[ + "Rose Hill" + ], + "name:zho_x_preferred":[ + "\u73ab\u7470\u5c71" + ], + "reversegeo:latitude":40.740913, + "reversegeo:longitude":-73.981267, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85868041, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1107182" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3536a5779dcaf46199b43265afc52f76", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907215457, + "neighbourhood_id":85868041, + "region_id":85688543 + } + ], + "wof:id":907215457, + "wof:lastmodified":1566608563, + "wof:name":"Rose Hill", + "wof:parent_id":85868041, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868045 + ], + "wof:tags":[] +}, + "bbox": [ + -73.98474210640431, + 40.73791303851167, + -73.97779355641761, + 40.7439076368611 +], + "geometry": {"coordinates":[[[[-73.97779355641761,40.74234413617773],[-73.98100181483072,40.73791303851167],[-73.98474210640431,40.739503065135],[-73.98338138936964,40.74137528869083],[-73.98152601099763,40.7439076368611],[-73.97779355641761,40.74234413617773]]]],"type":"MultiPolygon"} +},{ + "id": 907215459, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":223503.965583, + "geom:bbox":"-73.8956598066,40.5643761424,-73.8856664266,40.5685872473", + "geom:latitude":40.566753, + "geom:longitude":-73.891238, + "iso:country":"US", + "lbl:latitude":40.565515, + "lbl:longitude":-73.890246, + "lbl:max_zoom":18.0, + "mps:latitude":40.566805, + "mps:longitude":-73.891731, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Roxbury" + ], + "name:fra_x_preferred":[ + "Roxbury" + ], + "name:jpn_x_preferred":[ + "\u30ed\u30c3\u30af\u30b9\u30d9\u30ea\u30fc" + ], + "name:urd_x_preferred":[ + "\u0631\u0648\u06a9\u0633\u0628\u0631\u06cc\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0631\u0648\u06a9\u0633\u0628\u0631\u06cc" + ], + "reversegeo:latitude":40.566805, + "reversegeo:longitude":-73.891731, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807191, + 102191575, + 907157757, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q62151" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8d79edd8200de69feeffdae74582e180", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "macrohood_id":907157757, + "microhood_id":907215459, + "neighbourhood_id":85807191, + "region_id":85688543 + } + ], + "wof:id":907215459, + "wof:lastmodified":1566608563, + "wof:name":"Roxbury", + "wof:parent_id":85807191, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85846287 + ], + "wof:tags":[] +}, + "bbox": [ + -73.89565980661519, + 40.56437614240136, + -73.88566642659546, + 40.56858724728664 +], + "geometry": {"coordinates":[[[[-73.88684982097392,40.56837125772126],[-73.88566642659546,40.56685616870595],[-73.88783090116904,40.56625791139696],[-73.89447114619099,40.56437614240136],[-73.8953325941975,40.56634090417406],[-73.89549648042306,40.56670079749258],[-73.89565980661519,40.56705946098029],[-73.89533758908999,40.56702492044204],[-73.89531210417972,40.56702218855319],[-73.89510538013695,40.567157171676],[-73.89345467847608,40.56823501855797],[-73.89261013445631,40.56858724728664],[-73.89245294447518,40.56856418653263],[-73.89016495921189,40.56822852477539],[-73.8895949244921,40.56794189023422],[-73.88911103072225,40.56791623669111],[-73.88900473355332,40.56794895398789],[-73.88836803030985,40.56814492542519],[-73.8883100226566,40.56813266797307],[-73.88786222508219,40.56803804498665],[-73.88759484736241,40.56812604706055],[-73.88684982097392,40.56837125772126]]]],"type":"MultiPolygon"} +},{ + "id": 907215463, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":139376.179541, + "geom:bbox":"-74.005555314,40.7046065965,-73.9991022492,40.7097984606", + "geom:latitude":40.707258, + "geom:longitude":-74.002262, + "iso:country":"US", + "lbl:latitude":40.706899, + "lbl:longitude":-74.002577, + "lbl:max_zoom":18.0, + "mps:latitude":40.707028, + "mps:longitude":-74.002582, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "South Street Seaport" + ], + "name:deu_x_preferred":[ + "South Street Seaport" + ], + "name:eng_x_preferred":[ + "South Street Seaport" + ], + "name:eng_x_variant":[ + "Seaport" + ], + "name:fra_x_preferred":[ + "South Street Seaport" + ], + "name:ind_x_preferred":[ + "South Street Seaport" + ], + "name:jpn_x_preferred":[ + "\u30b5\u30a6\u30b9\u30fb\u30b9\u30c8\u30ea\u30fc\u30c8\u30fb\u30b7\u30fc\u30dd\u30fc\u30c8" + ], + "name:kor_x_preferred":[ + "\uc0ac\uc6b0\uc2a4\uc2a4\ud2b8\ub9ac\ud2b8\uc2dc\ud3ec\ud2b8" + ], + "name:nld_x_preferred":[ + "South Street Seaport" + ], + "name:rus_x_preferred":[ + "\u0421\u0430\u0443\u0442-\u0421\u0442\u0440\u0438\u0442-\u0421\u0438\u043f\u043e\u0440\u0442" + ], + "name:spa_x_preferred":[ + "South Street Seaport" + ], + "name:zho_x_preferred":[ + "\u5357\u8857\u6d77\u6e2f" + ], + "reversegeo:latitude":40.707028, + "reversegeo:longitude":-74.002582, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865711, + 102191575, + 907196817, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q223000" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4152f816e0f1e7e84c81546a5e4d08ad", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907196817, + "microhood_id":907215463, + "neighbourhood_id":85865711, + "region_id":85688543 + } + ], + "wof:id":907215463, + "wof:lastmodified":1566608558, + "wof:name":"Seaport", + "wof:parent_id":85865711, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892957 + ], + "wof:tags":[] +}, + "bbox": [ + -74.00555531395855, + 40.70460659646371, + -73.99910224920004, + 40.70979846063545 +], + "geometry": {"coordinates":[[[[-74.00555531395855,40.70739757894451],[-74.00437414431646,40.7078529684078],[-74.00380781019558,40.70813379328549],[-74.00368964853509,40.7081498383309],[-74.00358606989418,40.70813441582307],[-74.00348411866779,40.70811955236612],[-74.0018604939836,40.709402961235],[-74.00164005949597,40.70958601791656],[-74.00154904636781,40.70968971907107],[-74.00147404044377,40.70979846063545],[-73.99910224920004,40.70796803699159],[-73.99952324941067,40.70776262865812],[-73.99949062474624,40.70772184522502],[-73.99953839659452,40.70769347002565],[-73.99955121325497,40.70769435277649],[-73.99960948039251,40.70775997317629],[-73.99994855949791,40.70759149637099],[-73.99994505655111,40.70758262698331],[-73.9999485595232,40.70755869155373],[-73.99995671262306,40.70753119885585],[-73.99997222648801,40.70750639882205],[-74.00023380525762,40.70734714248683],[-74.00118685262839,40.70685982577173],[-74.00113130577203,40.7067990506845],[-74.00123213691967,40.70674033693098],[-74.00116039022579,40.70666372083431],[-74.00117521610984,40.70664874526916],[-74.00116913341543,40.70663949766772],[-74.0011764356769,40.70663505879536],[-74.00117602079682,40.70662757435898],[-74.00098276691749,40.7064167129929],[-74.00140666691979,40.70617938802079],[-74.00073085752636,40.70556777305873],[-74.00058297047994,40.70543393364905],[-74.00059240209352,40.70541007941349],[-74.00143661179428,40.70487217770533],[-74.0014608576564,40.7048737178121],[-74.00183509983016,40.70521225882239],[-74.00206142563823,40.70541700564098],[-74.00215818348551,40.70535711911853],[-74.00256965059484,40.7055235795235],[-74.00268512768807,40.70544924811874],[-74.00236285311746,40.70515896669259],[-74.0024157347692,40.70512931128249],[-74.00197070397951,40.70473786848727],[-74.00197014837805,40.7047311592023],[-74.00217184941911,40.70460659646371],[-74.00218562331565,40.70460701887392],[-74.00233344621165,40.70474813530698],[-74.00233393075767,40.70474260740414],[-74.0024205931867,40.70468033460376],[-74.00243071075876,40.70467785800437],[-74.0024883982926,40.7047267723512],[-74.0024879014864,40.70473376109165],[-74.00239832748954,40.70479492514085],[-74.00238670740696,40.70479566367466],[-74.00332307270807,40.70562859522026],[-74.00356123827119,40.70547527681651],[-74.00474318347092,40.70655401269453],[-74.00494539781121,40.70675474962158],[-74.00555531395855,40.70739757894451]]]],"type":"MultiPolygon"} +},{ + "id": 907215467, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000023, + "geom:area_square_m":217024.190666, + "geom:bbox":"-73.8138406241,40.8085279708,-73.8025359915,40.8154929779", + "geom:latitude":40.812692, + "geom:longitude":-73.808371, + "iso:country":"US", + "lbl:latitude":40.811991, + "lbl:longitude":-73.807189, + "lbl:max_zoom":18.0, + "mps:latitude":40.813993, + "mps:longitude":-73.809229, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Silver Beach" + ], + "name:deu_x_preferred":[ + "Silver Beach" + ], + "name:eng_x_variant":[ + "Silver Bch" + ], + "name:swe_x_preferred":[ + "Silver Beach" + ], + "reversegeo:latitude":40.813993, + "reversegeo:longitude":-73.809229, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85852219, + 102191575, + 907157031, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0bdc51203bac402b2ed1813870beb9c4", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157031, + "microhood_id":907215467, + "neighbourhood_id":85852219, + "region_id":85688543 + } + ], + "wof:id":907215467, + "wof:lastmodified":1566608562, + "wof:name":"Silver Beach", + "wof:parent_id":85852219, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869651 + ], + "wof:tags":[] +}, + "bbox": [ + -73.81384062408996, + 40.80852797081173, + -73.80253599154231, + 40.81549297791652 +], + "geometry": {"coordinates":[[[[-73.81384062408996,40.81471060950257],[-73.80864144841588,40.81549297791652],[-73.80824618944651,40.81486757426059],[-73.80715162614671,40.81371701790955],[-73.80519053356787,40.81141584534823],[-73.80453683604161,40.81070246564847],[-73.80398955439169,40.81019619153111],[-73.80341186820569,40.80973593898145],[-73.80253599154231,40.80911142955124],[-73.80295921748099,40.80907708372971],[-73.80359386615073,40.80875717047789],[-73.8039265410282,40.80852808043053],[-73.80392673417219,40.80852797081173],[-73.80392680280583,40.80852803455647],[-73.80501511652446,40.80944269570699],[-73.80503236536416,40.80941769848615],[-73.80502190996843,40.80940772345324],[-73.80506135232702,40.80936497193478],[-73.80511892265709,40.80939693436304],[-73.80507948389717,40.80943868913329],[-73.8050637840642,40.8094297005032],[-73.80503639918943,40.80945560231065],[-73.80621482271206,40.81004741226068],[-73.80713987884191,40.81066167645377],[-73.80810866442604,40.81178772984362],[-73.80921232992156,40.81257372075228],[-73.80992029081813,40.81292915226195],[-73.81026812262414,40.8129994803722],[-73.81059832209318,40.81293882510619],[-73.81066931287859,40.81276436653769],[-73.81078477868341,40.81277095135501],[-73.81079927013211,40.81281453015782],[-73.81085315423751,40.81286762496023],[-73.81101873877023,40.81288275940663],[-73.81104806187901,40.81288056229015],[-73.811077479524,40.81288183577623],[-73.8111120357939,40.8128958720487],[-73.81114311206217,40.81291400659979],[-73.81116987432782,40.81293575275009],[-73.81124703768344,40.81299329087473],[-73.81156607359804,40.81305400191417],[-73.81177347317579,40.813043718613],[-73.81183200305001,40.81294468063767],[-73.81185065747451,40.81293940004022],[-73.81187624715335,40.81295360401528],[-73.81189483219032,40.81297310709511],[-73.81191569106025,40.81301208663756],[-73.81194127077777,40.81302983071731],[-73.81241175315148,40.8130925560746],[-73.81276572662649,40.8131586306658],[-73.81304792513603,40.81329081980389],[-73.81384062408996,40.81471060950257]]]],"type":"MultiPolygon"} +},{ + "id": 907215469, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000109, + "geom:area_square_m":1027659.835285, + "geom:bbox":"-73.8052514354,40.5906706778,-73.786166326,40.6032555156", + "geom:latitude":40.596125, + "geom:longitude":-73.795808, + "iso:country":"US", + "lbl:latitude":40.597233, + "lbl:longitude":-73.797292, + "lbl:max_zoom":18.0, + "mps:latitude":40.596202, + "mps:longitude":-73.79581, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Somerville" + ], + "name:ceb_x_preferred":[ + "Somerville" + ], + "name:deu_x_preferred":[ + "Somerville" + ], + "name:epo_x_preferred":[ + "Somerville" + ], + "name:est_x_preferred":[ + "Somerville" + ], + "name:fin_x_preferred":[ + "Somerville" + ], + "name:fra_x_preferred":[ + "Somerville" + ], + "name:heb_x_preferred":[ + "\u05e1\u05d0\u05de\u05e8\u05d5\u05d5\u05d9\u05dc" + ], + "name:ita_x_preferred":[ + "Somerville" + ], + "name:kor_x_preferred":[ + "\uc11c\uba38\ube4c" + ], + "name:mlg_x_preferred":[ + "Somerville" + ], + "name:nld_x_preferred":[ + "Somerville" + ], + "name:pol_x_preferred":[ + "Somerville" + ], + "name:por_x_preferred":[ + "Somerville" + ], + "name:rus_x_preferred":[ + "\u0421\u0430\u043c\u0435\u0440\u0432\u0438\u043b\u043b" + ], + "name:spa_x_preferred":[ + "Somerville" + ], + "name:srp_x_preferred":[ + "\u0421\u0430\u043c\u0435\u0440\u0432\u0438\u043b" + ], + "name:swe_x_preferred":[ + "Somerville" + ], + "name:ukr_x_preferred":[ + "\u0421\u043e\u043c\u0435\u0440\u0432\u0456\u043b\u043b\u044c" + ], + "name:vol_x_preferred":[ + "Somerville" + ], + "reversegeo:latitude":40.596202, + "reversegeo:longitude":-73.79581, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85803679, + 102191575, + 907157757, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d4015794cd04b83cd7b7681eb6fb3f26", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "macrohood_id":907157757, + "microhood_id":907215469, + "neighbourhood_id":85803679, + "region_id":85688543 + } + ], + "wof:id":907215469, + "wof:lastmodified":1566608562, + "wof:name":"Somerville", + "wof:parent_id":85803679, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865551 + ], + "wof:tags":[] +}, + "bbox": [ + -73.80525143538651, + 40.59067067781281, + -73.78616632596848, + 40.60325551557715 +], + "geometry": {"coordinates":[[[[-73.78805200000016,40.59450200000013],[-73.78805200000016,40.594502],[-73.78797151506635,40.59245977742785],[-73.78970976910787,40.59246643678851],[-73.79001753424282,40.59243620934647],[-73.79113797332842,40.59217519896104],[-73.79256759811037,40.59184443481652],[-73.79267438459985,40.59310857479537],[-73.79620043658507,40.59295178021291],[-73.79604991700126,40.59108193527507],[-73.79935563677846,40.59067067781281],[-73.79950288818027,40.59279735123291],[-73.80243846290313,40.5926400638354],[-73.80246008633553,40.59286195684645],[-73.80249285356651,40.59328631108789],[-73.80237735357417,40.59328671578609],[-73.80250965087296,40.59394812804166],[-73.80314197343124,40.593848224463],[-73.80311672501844,40.59376102373357],[-73.80313503440752,40.59375794307134],[-73.80316549464921,40.59386313284474],[-73.80318082190914,40.59394537813117],[-73.80316616820345,40.59394784319244],[-73.80314275347327,40.59386698493293],[-73.80251304282999,40.5939668517925],[-73.80256837601095,40.59427226699425],[-73.802737230955,40.59424940019141],[-73.80323967749763,40.59418846225912],[-73.80322027459169,40.5940890132522],[-73.80324253171031,40.59408723986562],[-73.80328793893042,40.59428211589177],[-73.80325775448782,40.5942858520626],[-73.80324024295776,40.59420405487715],[-73.80281972468119,40.59426086459896],[-73.8028282488529,40.59428830098164],[-73.80272201865938,40.59430321509211],[-73.80271634477459,40.59427361576117],[-73.80260442850866,40.59428775204501],[-73.80260727634308,40.59429859845099],[-73.80270640618431,40.59428597779939],[-73.80270983859091,40.59430643303234],[-73.80257740915901,40.59432212325601],[-73.8025887550429,40.59438474740669],[-73.80233663086598,40.59440486335874],[-73.80234513845664,40.5944959752571],[-73.80277370333901,40.5944818254182],[-73.80277681567541,40.59455581805208],[-73.80304215715404,40.59453639859793],[-73.80309776811414,40.59456301417778],[-73.80311851898685,40.59458951790864],[-73.80318574404427,40.59466300284176],[-73.80347149929423,40.59450267265476],[-73.80341774109775,40.5944467343603],[-73.80344017041465,40.59443420917694],[-73.80350896976357,40.59450580001114],[-73.80348620935116,40.59451851059967],[-73.80348190694258,40.59451638868287],[-73.80319675364977,40.59467819988333],[-73.80321061506862,40.59469283195871],[-73.80337754303835,40.59486904065904],[-73.80365519313504,40.59473064203007],[-73.80372454267388,40.59481711197988],[-73.80371008333059,40.5948239767712],[-73.80365167080726,40.59475314278156],[-73.80338468036202,40.59488526035868],[-73.80336102564657,40.59488688764132],[-73.80334489744966,40.5948710851159],[-73.80320010623225,40.59487284642435],[-73.80320303445056,40.59493729339108],[-73.80338350994708,40.59493448643867],[-73.80338472349479,40.59494957958525],[-73.80320373655319,40.59495275556906],[-73.80320704407259,40.59500968361722],[-73.80339097327922,40.59500651249421],[-73.80339061688493,40.59502044297906],[-73.80320801748975,40.5950264504778],[-73.80321494251262,40.59514564845065],[-73.80331306803043,40.59514906685276],[-73.80331384838638,40.59516528003146],[-73.80335137111732,40.59516369575682],[-73.80335292789002,40.59515574997716],[-73.80363981182515,40.59513279276304],[-73.80389507006753,40.59499087536733],[-73.80390842264872,40.5950048133322],[-73.80365158624444,40.59514954741726],[-73.80331443412842,40.59517742793794],[-73.8033145372907,40.59517956193947],[-73.80332883082927,40.59518814029877],[-73.80342683886531,40.59519132453123],[-73.80349792164733,40.59517513809813],[-73.80354001503524,40.59516683509509],[-73.80357135342217,40.59516370962484],[-73.80359840436361,40.59516456670431],[-73.80362294026628,40.59516891247245],[-73.80364633286696,40.59517618453224],[-73.80366722697457,40.59518595437377],[-73.8036846869574,40.59519779018399],[-73.80411180637117,40.59568714203429],[-73.80427909056907,40.59587879998556],[-73.80439804267071,40.59603625185107],[-73.80449519927369,40.59616928994785],[-73.80459353615727,40.59628696666379],[-73.80469297945247,40.59636950734572],[-73.80471802119763,40.59640697417506],[-73.80473137309315,40.59643858741973],[-73.8047352339766,40.59648758265377],[-73.80475097698768,40.59652968178386],[-73.80477863809371,40.59657258452704],[-73.80486462646954,40.59673362835147],[-73.80495031715077,40.59674437643965],[-73.80500965260912,40.59676326859498],[-73.80501631753073,40.59676392003427],[-73.80501624964813,40.59676029725897],[-73.80509431912357,40.59676740814039],[-73.80509981825783,40.59670649264588],[-73.80510759382435,40.59669046906149],[-73.80509892506629,40.59660906211085],[-73.80513406252761,40.59660758897054],[-73.80514809966373,40.59672153809763],[-73.80515426905586,40.59672110829037],[-73.80515688401547,40.59673375752354],[-73.80521293968145,40.59673277935762],[-73.80521738621712,40.59676677965626],[-73.80522451261193,40.59676670110156],[-73.80522538542242,40.59678770090894],[-73.8052059540656,40.5967904506397],[-73.80520916717913,40.5968096137664],[-73.80520407924874,40.59689225938938],[-73.80524832538254,40.59689503261359],[-73.80524737229534,40.59694503138051],[-73.80520078229809,40.59694409499814],[-73.80520109057905,40.59696039196264],[-73.80524481796699,40.59695928365311],[-73.80525143538651,40.59703274470251],[-73.80520792410326,40.59703502156484],[-73.80522178031919,40.59718883923222],[-73.80519243494217,40.59719037599557],[-73.80518463880817,40.59712891761399],[-73.80517643161772,40.59704677197973],[-73.80517300904623,40.59696735128347],[-73.80517362267634,40.59689827886407],[-73.80518115407425,40.59679148514454],[-73.80516310470952,40.59679204575622],[-73.80515744715051,40.59676928782172],[-73.80516503589428,40.59676847996059],[-73.80516341154976,40.59675799203129],[-73.80514962023194,40.59675741965359],[-73.80513706065165,40.59682203580165],[-73.80510231687569,40.5968191585319],[-73.80510264190883,40.59681118484157],[-73.80501035319573,40.596806042102],[-73.80501106896826,40.59679371749342],[-73.80497365287395,40.59678016384704],[-73.80497148353824,40.59678712102054],[-73.8049457274591,40.59678109683485],[-73.80495249836117,40.59676487939934],[-73.80493010902489,40.59675715430027],[-73.80487565214938,40.59674853593171],[-73.80494117146371,40.59685653723154],[-73.80502580942135,40.59700085448308],[-73.8050845877184,40.59710107810035],[-73.80511185479916,40.59715104799832],[-73.80505481227482,40.59720551630662],[-73.80496957533921,40.59726974325392],[-73.80493314568707,40.59730357383235],[-73.80484578876022,40.59741506485052],[-73.8047651550102,40.59752946104867],[-73.804750760263,40.59755127591794],[-73.80472981462285,40.59762533029134],[-73.80472959936782,40.597635676145],[-73.80472761310357,40.59764591193183],[-73.80472388986286,40.59765586226719],[-73.80471849344069,40.59766535665726],[-73.80471112228062,40.59767466319539],[-73.80470214568707,40.59768311083392],[-73.80469173344075,40.59769053979728],[-73.8046801857739,40.59769585634599],[-73.80466667714958,40.59770070897702],[-73.8046446977669,40.59770594606886],[-73.80462188261254,40.59770832826933],[-73.80459886525759,40.59770778942533],[-73.80458138264061,40.59770656186121],[-73.80456298434073,40.59770813466953],[-73.8045136349039,40.59771386970599],[-73.80448509590953,40.59772005191608],[-73.80446414395622,40.59773047396789],[-73.80445636320806,40.59773188741063],[-73.80444431269623,40.59772753073677],[-73.80443910360165,40.59772310327953],[-73.80443582727858,40.59772348084427],[-73.80442416889072,40.59773254630128],[-73.80441857054223,40.59773832944426],[-73.80440580135837,40.59774574552293],[-73.80438983496536,40.59775016441469],[-73.80437866087807,40.59775423512656],[-73.80436267120022,40.59776727488013],[-73.80435822020662,40.59777467713657],[-73.8043511808183,40.59778042867284],[-73.80434843981266,40.59778218122412],[-73.80433914461102,40.59778356527589],[-73.80432404105336,40.59778889196261],[-73.80431282695537,40.59779408739364],[-73.80430791850927,40.59779784057724],[-73.80429952498108,40.59779903283206],[-73.80429452398968,40.5977975421813],[-73.80429005911876,40.59779745332579],[-73.80427924903057,40.59779993211162],[-73.80426238305884,40.59780456958747],[-73.80424035951769,40.59781224496842],[-73.80423360865748,40.59781755839654],[-73.80423190049063,40.59782318230302],[-73.80423260470631,40.59782864513484],[-73.80422806444814,40.59782968043957],[-73.80421769771002,40.59782831835382],[-73.8042096695066,40.59782791986086],[-73.80420311288307,40.59782867781841],[-73.80419463977593,40.59783212236537],[-73.80417089390042,40.59783795465337],[-73.80412543979922,40.59786601210766],[-73.80411123700331,40.59787114747522],[-73.8040995661049,40.59787269213957],[-73.80408649461421,40.5978719578555],[-73.80407482429875,40.59787352831793],[-73.8040474877813,40.59788767397824],[-73.80403554415486,40.59789602355812],[-73.80393338922417,40.59794349858419],[-73.80392075541614,40.59795388044846],[-73.80391445482589,40.59800253620617],[-73.80390637589976,40.59801940236728],[-73.80389841364087,40.59803283788847],[-73.80388859776929,40.59804034288152],[-73.80388685014029,40.59804711848136],[-73.80388964463056,40.59805170819998],[-73.80388273645939,40.59806154966378],[-73.80387647055761,40.5980618678311],[-73.80386762022498,40.59805941098293],[-73.80385658782782,40.5980514316501],[-73.80385241060455,40.59805202779448],[-73.80384868845721,40.598056248548],[-73.80384964249738,40.59806239901484],[-73.80385182215113,40.59806791931697],[-73.80385593800575,40.5980770664212],[-73.80385746539636,40.5980834649727],[-73.80385748008985,40.59809095775863],[-73.80385331601522,40.59809904785899],[-73.80384570372399,40.59810340018446],[-73.80384062878419,40.59810306165632],[-73.80381966983127,40.59809103059313],[-73.80381154878702,40.59808541722048],[-73.8038059751034,40.59808255367101],[-73.80380093554906,40.59808221570411],[-73.80378259246716,40.59808679563807],[-73.8037699011112,40.5980919879912],[-73.80371151197187,40.59811096738206],[-73.80369294305648,40.59811864638087],[-73.80368751590305,40.59812739304397],[-73.80368332624673,40.59814410131911],[-73.80368599280021,40.59816820567558],[-73.80368138795552,40.59817901234661],[-73.80367896997099,40.59818032633873],[-73.80367170913671,40.5981756202582],[-73.803663626871,40.59816885366769],[-73.80365698226009,40.59816326994632],[-73.80365227068293,40.59816134100216],[-73.80364956811984,40.59816196763615],[-73.80364728360564,40.59816737158793],[-73.80364456970703,40.59818410969037],[-73.80364023682634,40.59818808228744],[-73.80362454370504,40.59818569548287],[-73.80361532449245,40.59818595363959],[-73.80360361343287,40.59818865095613],[-73.8035935508251,40.59819431552487],[-73.80358075867726,40.59820925288096],[-73.80357503810265,40.59821956359599],[-73.803574534761,40.59823205156381],[-73.80357782268696,40.5982402915978],[-73.80358067118344,40.59825124821059],[-73.80356578073965,40.59828202005809],[-73.80355854855945,40.5982923007136],[-73.8035491366611,40.59829708803309],[-73.80354200774555,40.59829647307488],[-73.80352704413083,40.59829092873378],[-73.80352283004473,40.59829149799846],[-73.80351914721822,40.59829459384728],[-73.80351665263268,40.59829818526976],[-73.8035141738963,40.59830811670886],[-73.80351090999116,40.59831598870451],[-73.80348529924218,40.59833084985257],[-73.80344809563273,40.59836976181869],[-73.80344577173932,40.59837629049267],[-73.80344747125588,40.59838565310982],[-73.80344679241961,40.59839630180446],[-73.80344033314651,40.5984011491147],[-73.80343103518442,40.5984036590547],[-73.803424156912,40.59840375752384],[-73.80340842307407,40.59840249491126],[-73.80339966262304,40.59840637699786],[-73.80339402411327,40.59841328481572],[-73.8033968594027,40.59841677612448],[-73.80343045341496,40.59844203087838],[-73.8034332099969,40.59844777113627],[-73.80343092465715,40.59845314760737],[-73.8034235253518,40.59845933873881],[-73.80341623970855,40.59846327880168],[-73.80339972746991,40.59848243621006],[-73.80339355144417,40.59848797070595],[-73.80338906181244,40.59849649932741],[-73.80338940193108,40.59850355307224],[-73.80338610107479,40.59851142600621],[-73.80337927223759,40.59851899001055],[-73.80337235216241,40.59852133815987],[-73.80335830742621,40.59852191740272],[-73.80334646350401,40.59852052473357],[-73.80333789837326,40.59851875285875],[-73.80332630606301,40.59851804681927],[-73.8033139433153,40.59852162302393],[-73.80328484470324,40.59853504963293],[-73.80326373338195,40.59855002816516],[-73.80324373585125,40.59856659946136],[-73.80320358175042,40.5986043260504],[-73.80316610486287,40.59865001788152],[-73.80313217792676,40.59868855221677],[-73.80311386319188,40.59870811811625],[-73.80310166848572,40.5987158101177],[-73.80307007829725,40.59873167649243],[-73.80304348449516,40.59875015717667],[-73.80302729963741,40.59876772423147],[-73.80301724588918,40.59878203597167],[-73.80300615192711,40.5988074327004],[-73.80300191229119,40.59881664910898],[-73.80299435528553,40.59882739523916],[-73.8029794332576,40.59884430455311],[-73.80295721424761,40.59885675528623],[-73.80292155267877,40.59887297197988],[-73.80289207302587,40.59888041418197],[-73.80286443010502,40.59889149413841],[-73.80283474315364,40.59889888883743],[-73.80280059975929,40.59890723973648],[-73.80270532053349,40.59892217815668],[-73.80267116793493,40.59893318769592],[-73.80265662904348,40.59893569343249],[-73.80262990538364,40.59893565574846],[-73.80257090475831,40.59893139380659],[-73.80242371672543,40.59892943908572],[-73.80233534244982,40.59892284895448],[-73.80219289253623,40.59890022541892],[-73.80207586677589,40.59887051342686],[-73.80200819959833,40.59885275600163],[-73.80196349903331,40.59885133790647],[-73.80188884923479,40.59886166308925],[-73.8017657381599,40.5988874133564],[-73.80167092680196,40.59889630926965],[-73.80147213607032,40.59898873821644],[-73.80123490662545,40.59912290165511],[-73.80094867862843,40.59915166462011],[-73.80095155254567,40.59918124108189],[-73.80091083450365,40.59918389943918],[-73.80089078534678,40.59920057125714],[-73.80090327346757,40.59931173989114],[-73.80089306997975,40.59931240456165],[-73.80089596964324,40.59933820579018],[-73.80090900567349,40.59933735454021],[-73.80091500623982,40.59939076113585],[-73.80088285514185,40.59939286070256],[-73.80087685441288,40.59933944355066],[-73.80088646326421,40.59933881621556],[-73.80088341549099,40.59931168018956],[-73.8008705531318,40.59931252034552],[-73.80085916792916,40.599211164654],[-73.80082299851885,40.59918872956965],[-73.80077984407798,40.59919154616153],[-73.80077654707648,40.59916236047853],[-73.80056517505567,40.59917549389562],[-73.80056802039566,40.59919942306311],[-73.80049526371997,40.59920436806874],[-73.80050985467842,40.59932910744507],[-73.80047379227798,40.59933155912373],[-73.80046729855627,40.59927604898415],[-73.80046234043196,40.59927638565402],[-73.80045131861348,40.59918256888051],[-73.79933766550209,40.59924923915842],[-73.79916040009225,40.59925813759455],[-73.79916724875051,40.599321038998],[-73.79919148970743,40.59931950909262],[-73.79919690825386,40.59936939496676],[-73.79918842607505,40.59936993131794],[-73.79918997630611,40.59941675603331],[-73.7991432750363,40.59941879886301],[-73.79913853303405,40.59937337062343],[-73.79912877642306,40.59937335357039],[-73.79912265687945,40.59932234552719],[-73.79914566217302,40.59932052699602],[-73.79914024196694,40.59925849421595],[-73.79878847850679,40.59926470134388],[-73.79868820989631,40.59926289920001],[-73.79861531632378,40.59921407570159],[-73.79852697576109,40.59918346992112],[-73.79843078589403,40.59917371408841],[-73.7983103379235,40.59918581129947],[-73.79823995746294,40.59920032882011],[-73.79817195788716,40.59922038321025],[-73.79810708664004,40.59924575403499],[-73.79811229286904,40.59930104024055],[-73.79782248234713,40.59932182828994],[-73.79769003439195,40.59932850328672],[-73.79561756986662,40.59944482979852],[-73.7956183311845,40.59946221670444],[-73.79554315704529,40.59946730371281],[-73.79554637621138,40.59949676214924],[-73.79546504863085,40.5994985311246],[-73.79546353545747,40.59947267626853],[-73.79531360293959,40.59948278577274],[-73.79519333656768,40.59945483905385],[-73.79507068550598,40.59943375695543],[-73.79494632315614,40.59941965522605],[-73.79482093231374,40.5994126112893],[-73.79469712002864,40.59941236483231],[-73.79457361595858,40.59941902430579],[-73.79445108219672,40.59943255400853],[-73.79433017563672,40.59945288140938],[-73.79421154444954,40.59947989753479],[-73.79409582461035,40.59951345755348],[-73.79398363648933,40.59955338155262],[-73.79387558152663,40.59959945550253],[-73.79377223900747,40.59965143240246],[-73.79367416295865,40.59970903360728],[-73.79358187917698,40.59977195031829],[-73.79355194144344,40.59978384190538],[-73.79351553895107,40.59981721206479],[-73.79348180624329,40.5998489406967],[-73.79345627135446,40.59986799318231],[-73.79343111451111,40.59987957988236],[-73.79341155585982,40.59990114197144],[-73.79337743081241,40.59992652384603],[-73.79335905370635,40.59994915789446],[-73.79334683895591,40.59995173967587],[-73.79333658528577,40.59994967201533],[-73.79331874722406,40.59996565861435],[-73.79330907387696,40.59996846559896],[-73.79325781619301,40.59996575541469],[-73.79318874258801,40.59995796598395],[-73.79316543249615,40.59996113323079],[-73.79314362456485,40.59997575784591],[-73.7931232509377,40.59998514739329],[-73.7931001302735,40.59998661873072],[-73.79303939811136,40.59997793018573],[-73.79298202592086,40.59998632311619],[-73.7929132569072,40.59998783296682],[-73.79289534205128,40.59997816086268],[-73.79287566137775,40.59995800927684],[-73.79285499477501,40.5999478333037],[-73.79281390938522,40.59995599633715],[-73.79278322675363,40.59994240093996],[-73.79277201560414,40.59994156552566],[-73.79275541652937,40.59994843764551],[-73.79274275792105,40.59999232399184],[-73.79273589624482,40.5999979215134],[-73.79270311156473,40.60000675502064],[-73.79266695282772,40.60000738805582],[-73.79263370220626,40.60000871035044],[-73.79262432704731,40.60001202341962],[-73.7926189008938,40.60001993124487],[-73.79261285952836,40.60004319908426],[-73.79259650271233,40.60005223559825],[-73.79258554038346,40.60005131886039],[-73.79255899397359,40.60004438480934],[-73.79253803879706,40.60004800532658],[-73.79252458170215,40.60003666357029],[-73.79250782889378,40.60002021224018],[-73.79248706249776,40.60001874906798],[-73.79245722965986,40.60001065511521],[-73.79242878573588,40.59999583014582],[-73.79235534608978,40.59995332421416],[-73.79233256449524,40.59995439142602],[-73.79228672001176,40.59999268592278],[-73.79228420646561,40.60001861864865],[-73.79226718128305,40.60002071349127],[-73.79226064450114,40.60001427440197],[-73.79224190801931,40.60001015465216],[-73.79221194321228,40.60001255428418],[-73.79219461864328,40.60002066137987],[-73.79219580084779,40.60003536742367],[-73.79219277190978,40.60004984186573],[-73.79215987900962,40.60005471646535],[-73.79213992689124,40.60006399954954],[-73.79212903284505,40.60007885061069],[-73.79210604552308,40.60009049204169],[-73.79209106359571,40.6001129547833],[-73.79208109552209,40.60013549628638],[-73.79205879155801,40.60015777724174],[-73.79205236431135,40.6001698751547],[-73.79204593467387,40.60018196368129],[-73.79203992547666,40.60020570197193],[-73.7920302576977,40.60022200504382],[-73.79193098310191,40.60025276538813],[-73.79191356365369,40.60026540277276],[-73.79188654338611,40.60027855584843],[-73.79185432754554,40.60028730336352],[-73.79179857672625,40.60030008540291],[-73.79171766890656,40.6003156818902],[-73.79158933627814,40.60033492254126],[-73.79154070576037,40.60035038092106],[-73.79147321564987,40.60039126202272],[-73.79141703054276,40.60043332408104],[-73.79131133023751,40.60050216845989],[-73.7911874249701,40.60059790837359],[-73.79115825095177,40.6006255872073],[-73.79107832683238,40.60068817222758],[-73.79095553934772,40.60080457300306],[-73.79086987166566,40.60092081939086],[-73.79084517544976,40.60094282017078],[-73.79082205893044,40.60095989409464],[-73.79078960263367,40.60098020644723],[-73.79076000197993,40.6009936164094],[-73.790736547386,40.60100872390824],[-73.79071831565938,40.60103192823716],[-73.79070491695126,40.60105388204493],[-73.79069791123395,40.60106719693592],[-73.79068511656352,40.60108324391012],[-73.79067067838218,40.60109560659401],[-73.7906488028035,40.60110578672244],[-73.79062047044042,40.60111599244256],[-73.79058890078461,40.60112498235816],[-73.79056344142461,40.60113074840395],[-73.79053507391471,40.60113603587261],[-73.79050959633186,40.60113934086348],[-73.79045247839802,40.60114179541206],[-73.79043249059028,40.60114532332555],[-73.79040350209188,40.60115405772355],[-73.79037646383728,40.60116474940164],[-73.79029900492377,40.60121108532429],[-73.79025461686723,40.60124199646017],[-73.79008673003659,40.60137030374593],[-73.78999783811,40.60143127809206],[-73.7899392991492,40.60150526928182],[-73.78984978803174,40.60160225420763],[-73.7897968220672,40.60164324816432],[-73.78974621092647,40.60167663888593],[-73.78969738402573,40.60170326750273],[-73.78960830868344,40.60177483276719],[-73.7894852981016,40.60187995698546],[-73.78939931834397,40.60196553557678],[-73.78933344957079,40.60201318055611],[-73.78907194280562,40.60218640697258],[-73.78901099030352,40.60223918417947],[-73.78895787564196,40.60228865229498],[-73.78888972550821,40.60233966285546],[-73.78865330410804,40.60250890229268],[-73.78857420265727,40.60258226157872],[-73.7885155665376,40.60262955484944],[-73.78836540496306,40.60272931939149],[-73.78832266934046,40.60275727994636],[-73.7882770070745,40.60279368528578],[-73.78820778807216,40.6028421446771],[-73.78810890201648,40.60293437289396],[-73.78807903186683,40.60295780228292],[-73.78804089550746,40.602976909904],[-73.78797928486595,40.6030162072591],[-73.78789694353759,40.60308402492359],[-73.78785755633548,40.60311117193022],[-73.78782341431722,40.60312438880565],[-73.78779155529843,40.60313423818626],[-73.78776928578725,40.60313613270164],[-73.7876979246508,40.60311549997266],[-73.78766902829133,40.60311478501596],[-73.78761995942556,40.60312319011069],[-73.7875758418735,40.60313461149206],[-73.78743204173531,40.60318782809226],[-73.78734312524055,40.60321786633627],[-73.78730232089386,40.60323059209745],[-73.78727495168464,40.60323794474187],[-73.78663897364014,40.60325551557715],[-73.78650335648618,40.60325020617898],[-73.78635332811838,40.60319465903865],[-73.78630485944034,40.60315872781615],[-73.78630354951891,40.60315059416469],[-73.7863143879221,40.60313837577824],[-73.78631473411518,40.60312250986262],[-73.78628810615065,40.60311409425823],[-73.78625649061965,40.60311372905267],[-73.78622201957903,40.60310480413133],[-73.78616881842791,40.60307472641093],[-73.78616632596848,40.60306714943633],[-73.7861685512481,40.60304744975198],[-73.78617884041064,40.60303206337697],[-73.7862012062298,40.60300977546979],[-73.78624389553234,40.602975672139],[-73.78628781106775,40.60293044258458],[-73.78634019785908,40.60290424073619],[-73.78638878260507,40.60287408192572],[-73.78643305290177,40.60284028422947],[-73.78647254185046,40.60280320410167],[-73.786506832982,40.6027632326146],[-73.78646693278723,40.60272304151771],[-73.78658983800638,40.60264611723686],[-73.78662553843017,40.60267711635454],[-73.78676630785831,40.602595423567],[-73.78690284497024,40.6025096593648],[-73.78716241855214,40.60232643157495],[-73.78721056286672,40.60225974728204],[-73.7872801037301,40.60211327053355],[-73.78733315550727,40.60201219574943],[-73.78741930529897,40.60186460826791],[-73.78745510944212,40.60178748070315],[-73.78751201462373,40.60167645768154],[-73.78754626169658,40.60161778645776],[-73.78757451437758,40.6015570560945],[-73.78763043154149,40.60144198082299],[-73.78766351014326,40.60137046458449],[-73.78774519784881,40.60124981315816],[-73.78788971616287,40.6010410521852],[-73.78792994192678,40.60099530305128],[-73.78800227052686,40.60093739150592],[-73.78807155049913,40.60085446865573],[-73.7883548397444,40.60064281780451],[-73.78850007513715,40.60053885780104],[-73.788625366823,40.60047958313279],[-73.7887606156777,40.60038011516658],[-73.78886763442698,40.60032347137178],[-73.78898515769974,40.60023985757638],[-73.78908852968236,40.60018551074719],[-73.7891327861558,40.60015202036403],[-73.78918828231561,40.60012826864019],[-73.78923630845085,40.60009857498708],[-73.78926404974422,40.6000606696789],[-73.78927079438958,40.60004245482371],[-73.78928357791777,40.60001988471623],[-73.78930418649622,40.60000746818145],[-73.78935965392391,40.60000419212751],[-73.78939493881225,40.59999428878252],[-73.78946269696266,40.59999749212845],[-73.78953462130708,40.5999718149268],[-73.78954114938684,40.59994369480516],[-73.78955983471057,40.59991161644166],[-73.78960231173669,40.59987290792459],[-73.78970098614833,40.59980139808361],[-73.78976540612766,40.59974667361861],[-73.7897729885848,40.59972862394277],[-73.78978096149109,40.59972164031227],[-73.78980075832334,40.59971560726011],[-73.78980602655174,40.59970071312541],[-73.78983482716298,40.59965673968302],[-73.78987511294132,40.59958962492247],[-73.78990943888176,40.59954288710538],[-73.78992643537941,40.5995181095508],[-73.78998038603888,40.5994594928768],[-73.78999622917706,40.59943704571903],[-73.79001376410707,40.5994136634844],[-73.79005223846879,40.5993739577214],[-73.79013529954663,40.59934603113223],[-73.79024080346252,40.59930403392537],[-73.79030531748309,40.59926015184595],[-73.79034006550998,40.59919167636016],[-73.79032450017972,40.59904683534916],[-73.79035167891196,40.59889089541168],[-73.79043233771203,40.59864908902289],[-73.79066455579296,40.59811095337754],[-73.79066404130107,40.59809405054188],[-73.79067875876683,40.59805002258143],[-73.79073876433843,40.59789472047225],[-73.7907911115019,40.59778570807595],[-73.79081330022184,40.59771380604234],[-73.79085314627787,40.59758248137465],[-73.79091651274324,40.5974596310872],[-73.79092749195188,40.59741268847905],[-73.7909367556082,40.59739730583855],[-73.79095604358129,40.59739110915793],[-73.79100150128562,40.59733920520878],[-73.79103242414763,40.59729583809079],[-73.79105572908406,40.5972482608309],[-73.79107079436713,40.59719836237305],[-73.79107981022909,40.59714864289379],[-73.7910682176379,40.59704390857641],[-73.79106882093528,40.59701335561358],[-73.79108998321661,40.59697079849715],[-73.79109553348225,40.59694511724295],[-73.79109463123854,40.59692384553417],[-73.79107264031752,40.59689520522651],[-73.79106730800329,40.59687405881682],[-73.7910669638905,40.59684797985352],[-73.79107940608647,40.59682832544483],[-73.79110071587495,40.59680631962552],[-73.79110296641791,40.59678974447829],[-73.79108785355292,40.59674116087701],[-73.79107684455167,40.59670329172297],[-73.79107312725625,40.5966829694797],[-73.79107086341465,40.59663636346869],[-73.79105611266202,40.59651787189746],[-73.79104972413384,40.5964979857342],[-73.79102080130029,40.59646464080736],[-73.79099965333594,40.59642345773025],[-73.79099262550774,40.59639275468526],[-73.79098674490578,40.59630153849023],[-73.79097335401146,40.5962090669036],[-73.79096043520504,40.59616202703847],[-73.79094400255754,40.59612054561261],[-73.79094119971539,40.59607218256969],[-73.7909399637939,40.5960294677922],[-73.79093525469258,40.59600508265172],[-73.79093189738249,40.59598317572389],[-73.79093142251094,40.59596118340649],[-73.79093449787935,40.5958812981177],[-73.79095128245287,40.59581056042933],[-73.79101892771455,40.59563200484976],[-73.7910329684625,40.59556905630922],[-73.79103617492409,40.59552224010585],[-73.79101795420638,40.59544763934031],[-73.79099860607761,40.59539986103969],[-73.79098954422557,40.59537228073096],[-73.79096931737881,40.59532270775642],[-73.79094688947006,40.59523411679454],[-73.79093660758711,40.59519000276669],[-73.79090267378733,40.5950935796223],[-73.790862923799,40.59501313776406],[-73.79077640549646,40.59492348473745],[-73.79072779276046,40.59489772128723],[-73.79070678530401,40.59488197343357],[-73.790690262347,40.59486216143242],[-73.79065080043436,40.59478270157946],[-73.79053797373713,40.59475729570433],[-73.79042048230933,40.59475269500842],[-73.79043709310868,40.59482599508645],[-73.79045684084386,40.59496013627624],[-73.79057004196042,40.59495180029975],[-73.79071439952168,40.59608554152324],[-73.79080405847397,40.59608143327051],[-73.7908062614169,40.59609339588426],[-73.79059442974037,40.59610838477277],[-73.79059334326143,40.59609727842324],[-73.79068189277972,40.59608889858272],[-73.79053857666521,40.59498078405603],[-73.79042537549716,40.59498911949892],[-73.79040674421688,40.59485583557942],[-73.79031932474763,40.59486165540389],[-73.79031645544241,40.59484883921795],[-73.79040454942982,40.59484131043697],[-73.79040235107801,40.59482764119719],[-73.79038275528076,40.5947891694952],[-73.79037896334799,40.59475196591333],[-73.79029571148867,40.59475382143427],[-73.79015263648824,40.59476820227287],[-73.79016082074578,40.59481782745352],[-73.7901656270879,40.59486912946876],[-73.79031625476247,40.5960481989394],[-73.79042381159329,40.59604197775187],[-73.79042481472287,40.59605393215411],[-73.79017830001342,40.59607131970444],[-73.79017616944469,40.59606021094181],[-73.79028151177371,40.59605141610629],[-73.79012992012326,40.5948724140185],[-73.79011998666471,40.5948237085622],[-73.79011344054709,40.59477348142077],[-73.7899470552338,40.5948073107434],[-73.78990643704788,40.59480862313328],[-73.78990069186749,40.59480242642761],[-73.78986650490673,40.59471554399448],[-73.78985807338587,40.59471718645017],[-73.78989588911116,40.59482073601441],[-73.78988243242804,40.59482412801083],[-73.78984569560446,40.59471959684832],[-73.78978513163786,40.59473138972908],[-73.78982301134072,40.59483427015329],[-73.78981067236685,40.59483851791692],[-73.78977512688957,40.59473333722034],[-73.78973901889825,40.59474366855455],[-73.78970621834647,40.5947779891761],[-73.78968322877788,40.59480883077526],[-73.78967352950475,40.59484352440507],[-73.78971205739906,40.59484090003292],[-73.78972631820011,40.59493830092535],[-73.78987360648408,40.59620444378464],[-73.78999689158508,40.59619698204691],[-73.78999909439116,40.59620894350337],[-73.78969872360844,40.59622803991138],[-73.78969763458426,40.59621778828497],[-73.78984110232906,40.59620694687997],[-73.78968593487113,40.59495189342677],[-73.7896738967583,40.59486047590016],[-73.78946035244321,40.59499746624786],[-73.78942472254529,40.59495613940294],[-73.78941370549548,40.5949467896526],[-73.78940242709986,40.59494978552398],[-73.78939514308203,40.59496289343586],[-73.78941219682905,40.59500223251823],[-73.7894245509966,40.59502168793259],[-73.78942487963511,40.59504494081973],[-73.78938382544044,40.59511301633012],[-73.78937936325222,40.59516049444521],[-73.78937617071958,40.59517654346748],[-73.78935311513335,40.59519376497538],[-73.78933124413732,40.59519872262831],[-73.78930387855203,40.59518758400117],[-73.7892732974538,40.59518514649214],[-73.78924333205902,40.59518587708565],[-73.78920997835175,40.59518439039917],[-73.78917959368805,40.59518586671933],[-73.78918787990526,40.59520911008117],[-73.78918877196472,40.59523354709705],[-73.78918611880975,40.5952822131255],[-73.78918244284348,40.59529822238851],[-73.78914227176719,40.59533991367194],[-73.78911306667331,40.59547475633222],[-73.78912343204297,40.59557007880888],[-73.78918544890193,40.59562596440411],[-73.78920275081695,40.595645882253],[-73.78921283174589,40.59566774996709],[-73.78921549146808,40.59569212371471],[-73.78920994300096,40.59571543785863],[-73.78918996471486,40.59573767528845],[-73.78916664273714,40.59575914247728],[-73.7891519908476,40.59579310502378],[-73.78914991183132,40.59580908806493],[-73.78913011480995,40.59582993481778],[-73.7891166356462,40.59585059765415],[-73.78910675861428,40.59587773726371],[-73.78911180104402,40.59590151428951],[-73.78912429078559,40.59591341841485],[-73.78913819375325,40.59592864741324],[-73.78926858096284,40.59645372374914],[-73.78925996091002,40.5969167577866],[-73.78922017232341,40.59711123450752],[-73.78921222323439,40.59714034227966],[-73.78913396797218,40.59736121490778],[-73.78918554149367,40.59759873307009],[-73.78839900000023,40.59753000000019],[-73.78805200000021,40.59450200000012],[-73.78805200000016,40.59450200000013]]]],"type":"MultiPolygon"} +},{ + "id": 907215481, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":181671.137344, + "geom:bbox":"-73.958310247,40.6329956074,-73.9530662912,40.6384094463", + "geom:latitude":40.635351, + "geom:longitude":-73.955618, + "iso:country":"US", + "lbl:latitude":40.632955, + "lbl:longitude":-73.949351, + "lbl:max_zoom":18.0, + "mps:latitude":40.635289, + "mps:longitude":-73.955568, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.635289, + "reversegeo:longitude":-73.955568, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869833, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"836af0fd74533529f0b3f2040e142211", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215481, + "neighbourhood_id":85869833, + "region_id":85688543 + } + ], + "wof:id":907215481, + "wof:lastmodified":1566608562, + "wof:name":"South Midwood", + "wof:parent_id":85869833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892959 + ], + "wof:tags":[] +}, + "bbox": [ + -73.95831024698829, + 40.63299560739468, + -73.9530662912447, + 40.63840944631501 +], + "geometry": {"coordinates":[[[[-73.95831024698829,40.63632025809833],[-73.95399311473274,40.63840944631501],[-73.9530662912447,40.63351077657962],[-73.9576703959597,40.63299560739468],[-73.95831024698829,40.63632025809833]]]],"type":"MultiPolygon"} +},{ + "id": 907215483, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000408, + "geom:area_square_m":3822379.479483, + "geom:bbox":"-73.837544,40.677207,-73.8058320526,40.6972902129", + "geom:latitude":40.687043, + "geom:longitude":-73.821764, + "iso:country":"US", + "lbl:latitude":40.684119, + "lbl:longitude":-73.824163, + "lbl:max_zoom":18.0, + "mps:latitude":40.687057, + "mps:longitude":-73.821746, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "South Richmond Hl" + ], + "reversegeo:latitude":40.687057, + "reversegeo:longitude":-73.821746, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85844441, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"304f572328eb204e36d8a2d936ad1828", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215483, + "neighbourhood_id":85844441, + "region_id":85688543 + } + ], + "wof:id":907215483, + "wof:lastmodified":1566608558, + "wof:name":"South Richmond Hill", + "wof:parent_id":85844441, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865467 + ], + "wof:tags":[] +}, + "bbox": [ + -73.837544, + 40.677207, + -73.80583205264146, + 40.69729021294013 +], + "geometry": {"coordinates":[[[[-73.83754382077352,40.69136291491292],[-73.83754399999999,40.69136400000039],[-73.82084797985168,40.69600316542288],[-73.82066843481252,40.69602875901764],[-73.82046464043457,40.69604068518571],[-73.82033887637154,40.69604083707569],[-73.82023134960457,40.69603611480046],[-73.82016008859179,40.69602261094104],[-73.81945291525741,40.69588126261812],[-73.819341592453,40.69587442074664],[-73.81927255638971,40.69588554775795],[-73.81893896845553,40.69596993272293],[-73.81487549099894,40.69711117535769],[-73.81456164161696,40.69718402476629],[-73.81420239896488,40.69724890851904],[-73.813929208506,40.69727807533192],[-73.81377122273709,40.69729021294013],[-73.80870357850904,40.68857916436509],[-73.80745368403224,40.68617474577181],[-73.80583205264146,40.68291367684162],[-73.82578100000011,40.677207],[-73.83087515957126,40.67810852504169],[-73.83108300000001,40.67815100000027],[-73.83754,40.69136400000035],[-73.83754382077352,40.69136291491292]]]],"type":"MultiPolygon"} +},{ + "id": 907215485, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000173, + "geom:area_square_m":1622981.430977, + "geom:bbox":"-73.9700095322,40.7002811533,-73.9368772409,40.7125598029", + "geom:latitude":40.707595, + "geom:longitude":-73.950947, + "iso:country":"US", + "lbl:latitude":40.712238, + "lbl:longitude":-73.958105, + "lbl:max_zoom":18.0, + "mps:latitude":40.706724, + "mps:longitude":-73.944008, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "S Side" + ], + "reversegeo:latitude":40.706724, + "reversegeo:longitude":-73.944008, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85857853, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"da5e847133d69532d98d778070b10593", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215485, + "neighbourhood_id":85857853, + "region_id":85688543 + } + ], + "wof:id":907215485, + "wof:lastmodified":1566608557, + "wof:name":"South Side", + "wof:parent_id":85857853, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865603 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97000953222535, + 40.70028115334691, + -73.93687724091511, + 40.71255980294275 +], + "geometry": {"coordinates":[[[[-73.9411488595606,40.70028115334691],[-73.94193099999987,40.70072500000012],[-73.94380837270981,40.70177876695055],[-73.94620728004433,40.70311153836193],[-73.94778215448706,40.70399617204188],[-73.94864593107447,40.70448354339759],[-73.94946946382719,40.70495611560312],[-73.95045306145741,40.70548174497655],[-73.95103665214084,40.70579112375959],[-73.95187968714258,40.70625021899561],[-73.95196500002288,40.7062953153583],[-73.95208752737332,40.70634796996925],[-73.95240758990217,40.7064636041932],[-73.95291994473673,40.70665501112358],[-73.95315596611914,40.70674441389994],[-73.95334320772994,40.70681022943607],[-73.9534855147987,40.70683412218417],[-73.9536295734101,40.70684673020816],[-73.95436439456613,40.70688347244788],[-73.95642291077071,40.70704907603376],[-73.95718387018903,40.70710769672302],[-73.96119985657627,40.70749750985154],[-73.96311073246395,40.7076930754903],[-73.96331826133027,40.7077014403847],[-73.96351655575884,40.70767725829396],[-73.96441639938186,40.70749779727532],[-73.96730686987104,40.70697077502975],[-73.96803681879727,40.70683756368641],[-73.96814629789243,40.70682088300007],[-73.96824734954509,40.70681087001275],[-73.96832471033082,40.70681817096047],[-73.96840352325411,40.70683482828098],[-73.96880862107422,40.70696466881326],[-73.96929296348509,40.70709333109578],[-73.9695732015104,40.70755210830667],[-73.96984864823548,40.7080030416878],[-73.96994088125643,40.70931023140604],[-73.96955679589718,40.71029607131992],[-73.96964728659597,40.71037491048293],[-73.96994489364965,40.71039973365079],[-73.97000953222535,40.71045393762768],[-73.96997064587552,40.71050807071639],[-73.96973123629762,40.71051282944213],[-73.96963399936436,40.71066539565317],[-73.9697116143561,40.7106900673666],[-73.96979416000543,40.71074050647946],[-73.96975026678484,40.71083287772725],[-73.96968522568399,40.71085357994621],[-73.96934894946885,40.71096061478676],[-73.96936184310246,40.71100001269863],[-73.96958170747001,40.71110848477036],[-73.96969388597714,40.71113727505956],[-73.96976280357148,40.71117261775998],[-73.96970449314469,40.71123658451135],[-73.96956219103232,40.71119709704369],[-73.96933582617385,40.71111323878586],[-73.9692581219477,40.71116242124666],[-73.96923861019853,40.71124610934433],[-73.96945195784743,40.7113939655173],[-73.96942598248597,40.71147272512738],[-73.96930299564828,40.71151202924528],[-73.96918658210198,40.71146763615609],[-73.96911535361028,40.71151189897821],[-73.96886701832443,40.71223244408627],[-73.96880934254597,40.71225605597752],[-73.96886922090013,40.7122661975163],[-73.96883145652386,40.71239276314765],[-73.96894455591723,40.71242654772038],[-73.96888071778645,40.71255980294274],[-73.96888071778643,40.71255980294275],[-73.96135419809458,40.71028106557925],[-73.96094128472818,40.71017556890042],[-73.96037390771919,40.71007408499547],[-73.96010336622663,40.71004301542524],[-73.95979721282218,40.71002725655581],[-73.95916397450833,40.7100393173113],[-73.95854137495041,40.71007084256993],[-73.95435955018478,40.71052132620056],[-73.94051553586083,40.71190924224457],[-73.94048048707555,40.71183725272827],[-73.9403592070385,40.71145694142233],[-73.94029337789787,40.71110578601257],[-73.94003406559995,40.70961168326244],[-73.9397475675118,40.70782381009094],[-73.93939311545729,40.70568560090639],[-73.93932754114132,40.7053584900944],[-73.93924795895541,40.70503466562828],[-73.93910455765595,40.7047117478061],[-73.93891223107289,40.70445872194203],[-73.93870949242108,40.70427616974711],[-73.93846668661834,40.70409096354713],[-73.93827333401484,40.70395658416726],[-73.93804297370346,40.70383402216029],[-73.93780931794507,40.70364980703786],[-73.93761004137941,40.70342905454691],[-73.9374692281439,40.7032543602982],[-73.93713396335252,40.70256891369628],[-73.93687724091511,40.70195159982379],[-73.94042,40.70107700000025],[-73.9411488595606,40.70028115334691]]]],"type":"MultiPolygon"} +},{ + "id": 907215487, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000148, + "geom:area_square_m":1387542.134059, + "geom:bbox":"-73.969297,40.698188,-73.941931,40.707701", + "geom:latitude":40.703223, + "geom:longitude":-73.956907, + "iso:country":"US", + "lbl:latitude":40.704289, + "lbl:longitude":-73.960604, + "lbl:max_zoom":18.0, + "mps:latitude":40.70303, + "mps:longitude":-73.957118, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.70303, + "reversegeo:longitude":-73.957118, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 421205765, + 102191575, + 85633793, + 102082361, + 85977539, + 85857853, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"bba6097e515f5c6c2fac5cd399787da7", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215487, + "neighbourhood_id":85857853, + "region_id":85688543 + } + ], + "wof:id":907215487, + "wof:lastmodified":1613773512, + "wof:name":"South Williamsburg", + "wof:parent_id":85857853, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892973 + ], + "wof:tags":[] +}, + "bbox": [ + -73.969297, + 40.698188, + -73.941931, + 40.707701 +], + "geometry": {"coordinates":[[[-73.941931,40.700725],[-73.95702,40.698974],[-73.961899,40.698188],[-73.962067,40.698869],[-73.96170499999999,40.699925],[-73.96720999999999,40.704256],[-73.967477,40.70395],[-73.969297,40.705088],[-73.96929299999999,40.706935],[-73.96929299999999,40.707093],[-73.96880899999999,40.706965],[-73.96840400000001,40.706835],[-73.96832499999999,40.706818],[-73.96824700000001,40.706811],[-73.968146,40.706821],[-73.968037,40.706838],[-73.96730700000001,40.706971],[-73.964416,40.707498],[-73.963517,40.707677],[-73.963318,40.707701],[-73.963111,40.707693],[-73.96120000000001,40.707498],[-73.957184,40.707108],[-73.956423,40.707049],[-73.954364,40.706883],[-73.95363,40.706847],[-73.953486,40.706834],[-73.953343,40.70681],[-73.95315600000001,40.706744],[-73.95292000000001,40.706655],[-73.95240800000001,40.706464],[-73.952088,40.706348],[-73.951965,40.706295],[-73.95188,40.70625],[-73.951037,40.705791],[-73.950453,40.705482],[-73.94946899999999,40.704956],[-73.948646,40.704484],[-73.947782,40.703996],[-73.946207,40.703112],[-73.943808,40.701779],[-73.941931,40.700725]]],"type":"Polygon"} +},{ + "id": 907215729, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":54886.275112, + "geom:bbox":"-73.9098482151,40.815979669,-73.9054685498,40.8187307389", + "geom:latitude":40.817407, + "geom:longitude":-73.908011, + "iso:country":"US", + "lbl:latitude":40.811912, + "lbl:longitude":-73.913875, + "lbl:max_zoom":18.0, + "mps:latitude":40.817485, + "mps:longitude":-73.908162, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Saint Mary's Park Houses", + "St Mary's Park Houses" + ], + "reversegeo:latitude":40.817485, + "reversegeo:longitude":-73.908162, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869443, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"77d1dfcc3aa7a8dcf2c4f8fd89e4866e", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907215729, + "neighbourhood_id":85869443, + "region_id":85688543 + } + ], + "wof:id":907215729, + "wof:lastmodified":1566608565, + "wof:name":"St. Mary's Park Houses", + "wof:parent_id":85869443, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868031 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90984821506015, + 40.815979669003, + -73.9054685498235, + 40.81873073889485 +], + "geometry": {"coordinates":[[[[-73.90811300186984,40.81639701124551],[-73.90845133871096,40.81623803290369],[-73.90867264125534,40.8161357486463],[-73.90892940012471,40.81605475321408],[-73.90911386373639,40.81600811636473],[-73.9093697572717,40.81598192681758],[-73.90960477592466,40.815979669003],[-73.90984821506015,40.81599434674764],[-73.90871406328651,40.81873073889485],[-73.9054685498235,40.81794187658402],[-73.90811300186984,40.81639701124551]]]],"type":"MultiPolygon"} +},{ + "id": 907215731, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000018, + "geom:area_square_m":170133.114858, + "geom:bbox":"-74.0864343088,40.627923688,-74.0791044867,40.633914789", + "geom:latitude":40.631024, + "geom:longitude":-74.082542, + "iso:country":"US", + "lbl:latitude":40.628824, + "lbl:longitude":-74.081079, + "lbl:max_zoom":18.0, + "mps:latitude":40.631071, + "mps:longitude":-74.082598, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Stapleton Hts" + ], + "reversegeo:latitude":40.631071, + "reversegeo:longitude":-74.082598, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85852335, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ec4305a8e5f84c4df502ddc05eab4003", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907215731, + "neighbourhood_id":85852335, + "region_id":85688543 + } + ], + "wof:id":907215731, + "wof:lastmodified":1566608557, + "wof:name":"Stapleton Heights", + "wof:parent_id":85852335, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869703 + ], + "wof:tags":[] +}, + "bbox": [ + -74.08643430877456, + 40.62792368800386, + -74.07910448671775, + 40.63391478895127 +], + "geometry": {"coordinates":[[[[-74.08521064078121,40.63019964762117],[-74.08211702928634,40.63391478895127],[-74.07910448671775,40.63296519079505],[-74.07935999999999,40.63222500000014],[-74.08302999999999,40.628725],[-74.08357700000001,40.62792700000015],[-74.08357815121799,40.62792368800386],[-74.08639243273508,40.62800012681507],[-74.08641351375833,40.62803104505549],[-74.08642733677716,40.62806728725328],[-74.08643430877456,40.62810939667683],[-74.0864312454401,40.62814873447528],[-74.0864175480082,40.62818102755176],[-74.08621921236073,40.62848231144546],[-74.08619228805601,40.62852101852535],[-74.08616826703278,40.62854775513271],[-74.08613376360738,40.62857075014377],[-74.08609548438069,40.62859098682353],[-74.08587894419142,40.62864118773213],[-74.08583100039471,40.62864838173677],[-74.08576335000652,40.62865725391883],[-74.08569022478618,40.62865859811427],[-74.08565604930889,40.62865752910174],[-74.08534535710301,40.62864737334932],[-74.08501269357262,40.62861955931791],[-74.08491051150629,40.62861843812233],[-74.08480266875786,40.62862366465663],[-74.08469551681051,40.6286300941236],[-74.08461827357984,40.62864080933553],[-74.08451459038201,40.6286661261009],[-74.08442019494858,40.62870356539479],[-74.08438483471942,40.62873377648907],[-74.08435600012774,40.62876704717178],[-74.08412388410831,40.62901066109035],[-74.08400581576387,40.62916286031108],[-74.08391623077307,40.62927311163306],[-74.08439022716138,40.62957460226327],[-74.08515439377699,40.63005113564108],[-74.08518138341272,40.63009139380064],[-74.08519806157389,40.63012796845083],[-74.08520971379663,40.63016797857977],[-74.08521064078121,40.63019964762117]]]],"type":"MultiPolygon"} +},{ + "id": 907215737, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":395940.236706, + "geom:bbox":"-73.8759101649,40.8342368124,-73.8630167313,40.8412934314", + "geom:latitude":40.837693, + "geom:longitude":-73.867681, + "iso:country":"US", + "lbl:latitude":40.83412, + "lbl:longitude":-73.871207, + "lbl:max_zoom":18.0, + "mps:latitude":40.837976, + "mps:longitude":-73.866509, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Park Stratton" + ], + "name:fra_x_preferred":[ + "Stratton Park" + ], + "reversegeo:latitude":40.837976, + "reversegeo:longitude":-73.866509, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840627, + 102191575, + 907157031, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7ffe40a45af146b67da99997604d4965", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157031, + "microhood_id":907215737, + "neighbourhood_id":85840627, + "region_id":85688543 + } + ], + "wof:id":907215737, + "wof:lastmodified":1566608557, + "wof:name":"Stratton Park", + "wof:parent_id":85840627, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892783 + ], + "wof:tags":[] +}, + "bbox": [ + -73.87591016489989, + 40.83423681237618, + -73.86301673134284, + 40.84129343135135 +], + "geometry": {"coordinates":[[[[-73.86470221392328,40.84129343135135],[-73.86419189033006,40.8403553957297],[-73.86411706755545,40.8401912241027],[-73.8640545618435,40.84000292850617],[-73.86301673134284,40.83423681237618],[-73.86847062640103,40.83581383872916],[-73.86964549313568,40.83606708771082],[-73.87054824153854,40.83623577674989],[-73.87152337394961,40.8363716668222],[-73.8728140034567,40.83645110962325],[-73.87410607030266,40.83648270581359],[-73.87527722868148,40.83655555235344],[-73.87591016489989,40.83661569074353],[-73.86997400654641,40.83945547112801],[-73.86812620685726,40.84010554899908],[-73.86512688919237,40.84121819910055],[-73.86470221392328,40.84129343135135]]]],"type":"MultiPolygon"} +},{ + "id": 907215739, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":288257.183362, + "geom:bbox":"-73.9436268538,40.6796086431,-73.9314000553,40.6831715173", + "geom:latitude":40.6812, + "geom:longitude":-73.93699, + "iso:country":"US", + "lbl:latitude":40.686167, + "lbl:longitude":-73.928209, + "lbl:max_zoom":18.0, + "mps:latitude":40.681164, + "mps:longitude":-73.93699, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.681164, + "reversegeo:longitude":-73.93699, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85892907, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1fcc10bf40ba6dd25be22fdcf3c3648e", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215739, + "neighbourhood_id":85892907, + "region_id":85688543 + } + ], + "wof:id":907215739, + "wof:lastmodified":1566608557, + "wof:name":"Stuyvesant Heights", + "wof:parent_id":85892907, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85896933 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94362685381734, + 40.67960864308608, + -73.93140005534735, + 40.68317151725321 +], + "geometry": {"coordinates":[[[[-73.93140005534735,40.68011385663094],[-73.93431871217614,40.67979391035843],[-73.93428791357191,40.67960864308608],[-73.94328884671799,40.68009580588785],[-73.94362685381734,40.6817629622857],[-73.93208809438252,40.68317151725321],[-73.93140005534735,40.68011385663094]]]],"type":"MultiPolygon"} +},{ + "id": 907215745, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":139364.080107, + "geom:bbox":"-73.9647513877,40.7545721983,-73.9587877734,40.7595497508", + "geom:latitude":40.757032, + "geom:longitude":-73.961834, + "iso:country":"US", + "lbl:latitude":40.75735, + "lbl:longitude":-73.962288, + "lbl:max_zoom":18.0, + "mps:latitude":40.757069, + "mps:longitude":-73.961789, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Sutton Place" + ], + "name:eng_x_preferred":[ + "Sutton Place" + ], + "name:eng_x_variant":[ + "Sutton Pl" + ], + "name:fra_x_preferred":[ + "Sutton Place" + ], + "name:nld_x_preferred":[ + "Sutton Place" + ], + "name:rus_x_preferred":[ + "\u0421\u0430\u0442\u0442\u043e\u043d-\u041f\u043b\u0435\u0439\u0441" + ], + "name:spa_x_preferred":[ + "Sutton Place" + ], + "reversegeo:latitude":40.757069, + "reversegeo:longitude":-73.961789, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 907215785, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q194644" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8c9d2fa5596eeedd4a41a6b9fa4a0aa6", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907215745, + "neighbourhood_id":907215785, + "region_id":85688543 + } + ], + "wof:id":907215745, + "wof:lastmodified":1566608565, + "wof:name":"Sutton Place", + "wof:parent_id":907215785, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865707 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96475138765851, + 40.75457219826711, + -73.95878777342404, + 40.75954975076039 +], + "geometry": {"coordinates":[[[[-73.96217497095427,40.75457219826711],[-73.96475138765851,40.75565374219133],[-73.96192232679475,40.75954975076039],[-73.95878777342404,40.75821347130985],[-73.95918103220016,40.75785611105238],[-73.96065638180487,40.75592314955023],[-73.96217497095427,40.75457219826711]]]],"type":"MultiPolygon"} +},{ + "id": 907215749, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000092, + "geom:area_square_m":869005.83532, + "geom:bbox":"-74.250548404,40.4975719549,-74.231317246,40.5067438622", + "geom:latitude":40.502432, + "geom:longitude":-74.239965, + "iso:country":"US", + "lbl:latitude":40.496099, + "lbl:longitude":-74.246622, + "lbl:max_zoom":18.0, + "mps:latitude":40.50192, + "mps:longitude":-74.239819, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Tottenville Bch" + ], + "reversegeo:latitude":40.50192, + "reversegeo:longitude":-74.239819, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85852385, + 102191575, + 85633793, + 85977539, + 421205775, + 102081779, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c90a22c0e40b1818adcde36677018552", + "wof:hierarchy":[ + { + "borough_id":421205775, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081779, + "locality_id":85977539, + "microhood_id":907215749, + "neighbourhood_id":85852385, + "region_id":85688543 + } + ], + "wof:id":907215749, + "wof:lastmodified":1566608560, + "wof:name":"Tottenville Beach", + "wof:parent_id":85852385, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869735 + ], + "wof:tags":[] +}, + "bbox": [ + -74.25054840402207, + 40.49757195487354, + -74.23131724604166, + 40.506743862242 +], + "geometry": {"coordinates":[[[[-74.23131724604166,40.50179858574268],[-74.23151605730166,40.50172138444798],[-74.23359904119755,40.50091253160146],[-74.23526495949446,40.50060602857477],[-74.23635130661141,40.50012558110022],[-74.23642784022817,40.50007741253447],[-74.23647256988735,40.5001130393443],[-74.23678845619597,40.50000083525655],[-74.2376886264135,40.49917275625367],[-74.23766770359779,40.49912325493401],[-74.23774805247373,40.4991008453765],[-74.23777146009982,40.49918035138812],[-74.23798737378766,40.49916598084108],[-74.23851321635723,40.49889607636898],[-74.23984851244001,40.49758301320713],[-74.24121414211194,40.49757195487354],[-74.24176432517919,40.49948943213825],[-74.24442591149263,40.49894154599324],[-74.24526083122102,40.5014156655262],[-74.24964612266481,40.5005788903507],[-74.25054840402207,40.50312715091739],[-74.23312206000057,40.506743862242],[-74.23131724604166,40.50179858574268]]]],"type":"MultiPolygon"} +},{ + "id": 907215757, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000072, + "geom:area_square_m":676141.960175, + "geom:bbox":"-73.9759583119,40.7479605604,-73.962174971,40.758312427", + "geom:latitude":40.753088, + "geom:longitude":-73.969449, + "iso:country":"US", + "lbl:latitude":40.754097, + "lbl:longitude":-73.969482, + "lbl:max_zoom":18.0, + "mps:latitude":40.753119, + "mps:longitude":-73.970127, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Turtle Bay" + ], + "name:eng_x_preferred":[ + "Turtle Bay" + ], + "name:fra_x_preferred":[ + "Turtle Bay" + ], + "name:jpn_x_preferred":[ + "\u30bf\u30fc\u30c8\u30eb\u30fb\u30d9\u30a4" + ], + "name:rus_x_preferred":[ + "\u0422\u0451\u0440\u0442\u043b-\u0411\u0435\u0439" + ], + "name:spa_x_preferred":[ + "Turtle Bay" + ], + "name:tur_x_preferred":[ + "Turtle Bay" + ], + "name:zho_x_preferred":[ + "\u70cf\u9f9c\u7063" + ], + "reversegeo:latitude":40.753119, + "reversegeo:longitude":-73.970127, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 907215785, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q976477" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e9802a068f11162396866c8b3793491b", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907215757, + "neighbourhood_id":907215785, + "region_id":85688543 + } + ], + "wof:id":907215757, + "wof:lastmodified":1566608561, + "wof:name":"Turtle Bay", + "wof:parent_id":907215785, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85852839 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9759583119125, + 40.7479605603553, + -73.96217497095427, + 40.75831242699401 +], + "geometry": {"coordinates":[[[[-73.97595831191251,40.75138365093103],[-73.97093880084064,40.75831242699401],[-73.96475138765851,40.75565374219133],[-73.96217497095427,40.75457219826711],[-73.96223125165611,40.75452213042196],[-73.96313493912845,40.75347962166776],[-73.96562957282376,40.7545043702688],[-73.96650773932781,40.75327620542298],[-73.96414880949747,40.75231000410895],[-73.96791907791587,40.7479605603553],[-73.97595831191251,40.75138365093103]]]],"type":"MultiPolygon"} +},{ + "id": 907215763, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000049, + "geom:area_square_m":457576.179376, + "geom:bbox":"-73.793523283,40.725776,-73.781161,40.7332356373", + "geom:latitude":40.729511, + "geom:longitude":-73.787379, + "iso:country":"US", + "lbl:latitude":40.729257, + "lbl:longitude":-73.78768, + "lbl:max_zoom":18.0, + "mps:latitude":40.729471, + "mps:longitude":-73.787379, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:arz_x_preferred":[ + "\u064a\u0648\u062a\u0648\u0628\u064a\u0627" + ], + "name:ast_x_preferred":[ + "Utop\u00eda" + ], + "name:aze_x_preferred":[ + "Utopiya" + ], + "name:bel_x_preferred":[ + "\u0423\u0442\u043e\u043f\u0456\u044f" + ], + "name:ben_x_preferred":[ + "\u0987\u0989\u099f\u09cb\u09aa\u09bf\u09af\u09bc\u09be" + ], + "name:bod_x_preferred":[ + "\u0f61\u0f74\u0f63\u0f0b\u0f4f\u0f7c\u0f0b\u0f54\u0f72\u0f0b\u0f61\u0f0d" + ], + "name:bre_x_preferred":[ + "Utopia" + ], + "name:bul_x_preferred":[ + "\u0423\u0442\u043e\u043f\u0438\u044f" + ], + "name:cat_x_preferred":[ + "Utopia" + ], + "name:ces_x_preferred":[ + "Utopie" + ], + "name:ckb_x_preferred":[ + "\u06cc\u0648\u062a\u06c6\u067e\u06cc\u0627" + ], + "name:cym_x_preferred":[ + "Iwtopia" + ], + "name:dan_x_preferred":[ + "Utopi" + ], + "name:deu_x_preferred":[ + "Utopie" + ], + "name:ell_x_preferred":[ + "\u039f\u03c5\u03c4\u03bf\u03c0\u03af\u03b1" + ], + "name:epo_x_preferred":[ + "Utopio" + ], + "name:est_x_preferred":[ + "Utoopia" + ], + "name:eus_x_preferred":[ + "Utopia" + ], + "name:fas_x_preferred":[ + "\u0622\u0631\u0645\u0627\u0646\u200c\u0634\u0647\u0631" + ], + "name:fin_x_preferred":[ + "Utopia" + ], + "name:fra_x_preferred":[ + "Utopie" + ], + "name:gle_x_preferred":[ + "\u00dat\u00f3ipe" + ], + "name:glg_x_preferred":[ + "Utop\u00eda" + ], + "name:heb_x_preferred":[ + "\u05d0\u05d5\u05d8\u05d5\u05e4\u05d9\u05d4" + ], + "name:hin_x_preferred":[ + "\u092f\u0942\u091f\u094b\u092a\u093f\u092f\u093e" + ], + "name:hun_x_preferred":[ + "Ut\u00f3pia" + ], + "name:hye_x_preferred":[ + "\u0548\u0582\u057f\u0578\u057a\u056b\u0561" + ], + "name:ido_x_preferred":[ + "Utopio" + ], + "name:ind_x_preferred":[ + "Utopia" + ], + "name:isl_x_preferred":[ + "\u00dat\u00f3p\u00eda" + ], + "name:ita_x_preferred":[ + "Utopia" + ], + "name:jpn_x_preferred":[ + "\u30e6\u30fc\u30c8\u30d4\u30a2" + ], + "name:kan_x_preferred":[ + "\u0caf\u0cc1\u0c9f\u0cca\u0caa\u0cbf\u0caf" + ], + "name:kat_x_preferred":[ + "\u10e3\u10e2\u10dd\u10de\u10d8\u10d0" + ], + "name:kaz_x_preferred":[ + "\u0423\u0442\u043e\u043f\u0438\u044f" + ], + "name:kor_x_preferred":[ + "\uc720\ud1a0\ud53c\uc544" + ], + "name:lat_x_preferred":[ + "Utopia" + ], + "name:lav_x_preferred":[ + "Utopija" + ], + "name:lit_x_preferred":[ + "Utopija" + ], + "name:ltz_x_preferred":[ + "Utopie" + ], + "name:mal_x_preferred":[ + "\u0d09\u0d1f\u0d4d\u0d1f\u0d4b\u0d2a\u0d4d\u0d2f" + ], + "name:msa_x_preferred":[ + "Utopia" + ], + "name:nld_x_preferred":[ + "Utopie" + ], + "name:nno_x_preferred":[ + "Utopi" + ], + "name:nor_x_preferred":[ + "Utopi" + ], + "name:oci_x_preferred":[ + "Utopia" + ], + "name:pan_x_preferred":[ + "\u0a2f\u0a42\u0a1f\u0a4b\u0a2a\u0a40\u0a06" + ], + "name:pol_x_preferred":[ + "Utopia" + ], + "name:por_x_preferred":[ + "Utopia" + ], + "name:ron_x_preferred":[ + "Utopie" + ], + "name:rus_x_preferred":[ + "\u0423\u0442\u043e\u043f\u0438\u044f" + ], + "name:sco_x_preferred":[ + "Utopia" + ], + "name:slk_x_preferred":[ + "Ut\u00f3pia" + ], + "name:slv_x_preferred":[ + "Utopija" + ], + "name:snd_x_preferred":[ + "\u064a\u0648\u067d\u0648\u067e\u064a\u0627" + ], + "name:spa_x_preferred":[ + "Utop\u00eda" + ], + "name:sqi_x_preferred":[ + "Utopia" + ], + "name:srp_x_preferred":[ + "\u0423\u0442\u043e\u043f\u0438\u0458\u0430" + ], + "name:swe_x_preferred":[ + "Utopi" + ], + "name:tam_x_preferred":[ + "\u0baf\u0bc1\u0b9f\u0bcd\u0b9f\u0bcb\u0baa\u0bbf\u0baf\u0bbe" + ], + "name:tel_x_preferred":[ + "\u0c06\u0c26\u0c30\u0c4d\u0c36\u0c27\u0c3e\u0c2e\u0c02" + ], + "name:tur_x_preferred":[ + "\u00dctopya" + ], + "name:ukr_x_preferred":[ + "\u0423\u0442\u043e\u043f\u0456\u044f" + ], + "name:urd_x_preferred":[ + "\u06cc\u0648\u0679\u0648\u067e\u06cc\u0627" + ], + "name:uzb_x_preferred":[ + "Utopiya" + ], + "name:vie_x_preferred":[ + "Utopia" + ], + "name:war_x_preferred":[ + "Utopia" + ], + "name:zho_x_preferred":[ + "\u4e4c\u6258\u90a6" + ], + "reversegeo:latitude":40.729471, + "reversegeo:longitude":-73.787379, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85820709, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0c7c9b7c8e7d0455627aae951d6e1098", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215763, + "neighbourhood_id":85820709, + "region_id":85688543 + } + ], + "wof:id":907215763, + "wof:lastmodified":1566608556, + "wof:name":"Utopia", + "wof:parent_id":85820709, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85853315 + ], + "wof:tags":[] +}, + "bbox": [ + -73.79352328304527, + 40.7257760000002, + -73.781161, + 40.73323563732716 +], + "geometry": {"coordinates":[[[[-73.79352328304527,40.73007774758438],[-73.79095536514977,40.73074098613228],[-73.78888656351212,40.73128719266862],[-73.78757960186603,40.73167969899813],[-73.78297334883726,40.73323563732716],[-73.781161,40.72921300000019],[-73.79174500000001,40.7257760000002],[-73.79352328304527,40.73007774758438]]]],"type":"MultiPolygon"} +},{ + "id": 907215765, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":61092.112779, + "geom:bbox":"-73.7576351411,40.5953019749,-73.7540374825,40.5977519398", + "geom:latitude":40.596383, + "geom:longitude":-73.755756, + "iso:country":"US", + "lbl:latitude":40.597446, + "lbl:longitude":-73.762587, + "lbl:max_zoom":18.0, + "mps:latitude":40.596459, + "mps:longitude":-73.755896, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Wave Crst" + ], + "reversegeo:latitude":40.596459, + "reversegeo:longitude":-73.755896, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85818909, + 102191575, + 907157757, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1bf028eaaf0b412cffbb654abd626659", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "macrohood_id":907157757, + "microhood_id":907215765, + "neighbourhood_id":85818909, + "region_id":85688543 + } + ], + "wof:id":907215765, + "wof:lastmodified":1566608557, + "wof:name":"Wavecrest Gardens", + "wof:parent_id":85818909, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866789 + ], + "wof:tags":[] +}, + "bbox": [ + -73.75763514114745, + 40.59530197493915, + -73.75403748251708, + 40.59775193983165 +], + "geometry": {"coordinates":[[[[-73.75403748251708,40.59530197493915],[-73.75741081898364,40.59544047417863],[-73.75752984044777,40.59578673848123],[-73.75755492260959,40.59582001305186],[-73.7575887506526,40.5958409084049],[-73.75761895095125,40.59586012282828],[-73.75763514114745,40.59587094164453],[-73.75711203451483,40.59661117540655],[-73.75709633462129,40.59681602936512],[-73.75712226263535,40.5970878296978],[-73.7571151267918,40.59714640012824],[-73.75708962317965,40.59720084408666],[-73.75705630189866,40.59724632613711],[-73.75701538440759,40.59728626766046],[-73.75690903671277,40.59735875258968],[-73.75678147160976,40.59743137425473],[-73.75630952539477,40.59767386611535],[-73.75625354656469,40.59769785393397],[-73.75619851059609,40.59771810756654],[-73.75612586214447,40.59774078881749],[-73.75605936974853,40.59775087089612],[-73.75599823355218,40.59775193983165],[-73.75594621052456,40.59774950900574],[-73.75588938537132,40.59774403964703],[-73.75582745088118,40.59773359389406],[-73.75574834224282,40.59769981965088],[-73.75563549137857,40.597639472634],[-73.75537928132619,40.5974821664763],[-73.75527316425746,40.59742315761984],[-73.75518587396692,40.59738306098703],[-73.75513122108882,40.59736258099446],[-73.75507217784936,40.59734345984221],[-73.75490254855495,40.59731074347901],[-73.7547242884866,40.59728476585421],[-73.75433201288887,40.59725604933833],[-73.75403748251708,40.59530197493915]]]],"type":"MultiPolygon"} +},{ + "id": 907215769, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000101, + "geom:area_square_m":946928.559886, + "geom:bbox":"-73.981988352,40.5711710201,-73.9672610383,40.5805815501", + "geom:latitude":40.576184, + "geom:longitude":-73.974843, + "iso:country":"US", + "lbl:latitude":40.574578, + "lbl:longitude":-73.977327, + "lbl:max_zoom":18.0, + "mps:latitude":40.57608, + "mps:longitude":-73.974854, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"There's on e on Staten Island", + "mz:tier_metro":1, + "reversegeo:latitude":40.57608, + "reversegeo:longitude":-73.974854, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807547, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"88145af1aa288951a0152f68d9f90f3d", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215769, + "neighbourhood_id":85807547, + "region_id":85688543 + } + ], + "wof:id":907215769, + "wof:lastmodified":1566608561, + "wof:name":"West Brighton", + "wof:parent_id":85807547, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892971 + ], + "wof:tags":[] +}, + "bbox": [ + -73.98198835203702, + 40.57117102007916, + -73.9672610383488, + 40.58058155006354 +], + "geometry": {"coordinates":[[[[-73.98198835203702,40.57931660190357],[-73.97922364333111,40.57958522577117],[-73.97559433907836,40.58000638907081],[-73.97516028452347,40.58004571686106],[-73.97473194595536,40.58006407718173],[-73.97369406522887,40.58003055835132],[-73.972590513066,40.57996635871719],[-73.97177722861808,40.57992217363695],[-73.97132668638814,40.57990761945761],[-73.97086719348731,40.57991733418785],[-73.97040394577748,40.57997573551005],[-73.96726103834879,40.58058155006354],[-73.96908820736375,40.57297828224208],[-73.96945126202385,40.5728572803631],[-73.96921197952126,40.57233537642345],[-73.96924621215584,40.57230407565457],[-73.9692838522803,40.57230147645189],[-73.96955895151763,40.57280858046068],[-73.96975580336907,40.57284692469034],[-73.97108691689407,40.57272724421559],[-73.9713298962635,40.57264381038399],[-73.97137785791335,40.57251075309886],[-73.97114248794523,40.57205063151457],[-73.97115394572518,40.57199963754901],[-73.97113515153811,40.57196015213585],[-73.97118306355733,40.57194189908424],[-73.97122069416352,40.57196278220162],[-73.9714565707673,40.57247946274591],[-73.97160706452411,40.57262822391978],[-73.97293476162713,40.57247460264781],[-73.97334502229825,40.57232121400611],[-73.97323268078632,40.57190586596698],[-73.97321224564612,40.57166842470271],[-73.97324990115146,40.57162668661158],[-73.97329095478173,40.57164235029653],[-73.9733251575623,40.57167627913239],[-73.97334306976649,40.57174057042444],[-73.97344805325694,40.57227210696927],[-73.97528564967101,40.57204983266862],[-73.97547081902783,40.57196900381692],[-73.97540561020007,40.57150453486903],[-73.97540564094241,40.57142104064057],[-73.97545696559195,40.57142105161757],[-73.97548432668442,40.57145497834907],[-73.97550883034111,40.57152449244053],[-73.97551718820385,40.57169431528035],[-73.97567918029279,40.57195598449725],[-73.97592552091535,40.57201865743751],[-73.9770799227453,40.57188751275147],[-73.97730110158659,40.57186238594647],[-73.97766384588164,40.57172938779905],[-73.97756820091217,40.57124666665919],[-73.97759877204506,40.57119103051835],[-73.97767087523846,40.57117102007916],[-73.97804724933891,40.5711997939595],[-73.97807599798243,40.57122957012877],[-73.97771533072503,40.57125191384214],[-73.97769819728074,40.57132496832951],[-73.97780796518657,40.57175620072639],[-73.97845486511184,40.57189220429924],[-73.97910001556907,40.57184069801804],[-73.97952183045098,40.57171407873417],[-73.97984694469412,40.57153931961012],[-73.97986064824681,40.57148192051307],[-73.97980592543578,40.57140363454861],[-73.97972382225467,40.57134621741235],[-73.97946721065122,40.57129920658623],[-73.97944987919769,40.5713032809903],[-73.97943176307899,40.57130262745589],[-73.97941501344562,40.57129732358518],[-73.97940778564607,40.57129310463996],[-73.97939669850385,40.57128215988237],[-73.97939317076822,40.57127576141907],[-73.97939067136888,40.5712620634641],[-73.97944328367626,40.57122092594811],[-73.97958357114787,40.57122616884356],[-73.97975464745687,40.57124968258199],[-73.97995988926652,40.57144019050051],[-73.98000771572246,40.57169850918599],[-73.98010351551915,40.57172722648454],[-73.98061268883313,40.5716623443463],[-73.98059743145237,40.5717554535733],[-73.98198835203702,40.57931660190357]]]],"type":"MultiPolygon"} +},{ + "id": 907215771, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000058, + "geom:area_square_m":547147.311699, + "geom:bbox":"-73.8465017921,40.7553523754,-73.8372960892,40.7653879902", + "geom:latitude":40.760621, + "geom:longitude":-73.841519, + "iso:country":"US", + "lbl:latitude":40.760765, + "lbl:longitude":-73.842335, + "lbl:max_zoom":18.0, + "mps:latitude":40.760505, + "mps:longitude":-73.841519, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Iron Triangle", + "Willets Pt", + "Willetspoint" + ], + "reversegeo:latitude":40.760505, + "reversegeo:longitude":-73.841519, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ffab652e4e47fdf23ab309ba630c7717", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215771, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907215771, + "wof:lastmodified":1566608560, + "wof:name":"Willets Point", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869803 + ], + "wof:tags":[] +}, + "bbox": [ + -73.84650179210374, + 40.75535237539906, + -73.8372960891841, + 40.76538799020284 +], + "geometry": {"coordinates":[[[[-73.8393538102695,40.7650570000003],[-73.83862961660317,40.76465011313973],[-73.83848525195545,40.76453408261974],[-73.83832858431242,40.7643973546873],[-73.8381927631861,40.76423066512317],[-73.83806524972655,40.76405880841771],[-73.83749302454314,40.76297757530926],[-73.83739460034029,40.76273105981354],[-73.83734050477626,40.76249443684335],[-73.83730683902118,40.76231682197948],[-73.83729608918409,40.76212566823938],[-73.83731821463776,40.76181141588464],[-73.83736134507473,40.7615717043437],[-73.83743222883555,40.76131877715185],[-73.83764266365382,40.76073672532215],[-73.83852644566089,40.75871616745662],[-73.83922245449266,40.75685393718106],[-73.84141615773368,40.75596206462859],[-73.84318876864194,40.75535237539906],[-73.84551965542838,40.75977544451317],[-73.84650179210374,40.76150822349621],[-73.84541392003746,40.76230051311835],[-73.8452320691587,40.76243460761827],[-73.84509729732338,40.76252344771838],[-73.84474507206755,40.76275563070321],[-73.84467648051546,40.7627521808577],[-73.84428576361256,40.76299855215025],[-73.8441156672296,40.76313619957922],[-73.84391538553486,40.76323189529801],[-73.84377426607976,40.76329932296636],[-73.84359361316315,40.76337054278846],[-73.84366832633636,40.76346990739614],[-73.84361523822156,40.76349671406157],[-73.84368787664128,40.76361272608368],[-73.8436502807902,40.76362779479575],[-73.84357100634551,40.76351513280459],[-73.84352013946437,40.76353690309127],[-73.84343628780482,40.76343256619363],[-73.84306961269667,40.76359256915376],[-73.84298349190726,40.7638318513791],[-73.84305145175342,40.76409735815322],[-73.84304240810849,40.76432131992043],[-73.84298479705532,40.76442359412181],[-73.84272819396499,40.76462854893173],[-73.84211652153552,40.764901034197],[-73.84052635479276,40.76538799020284],[-73.84002247138059,40.76531588656653],[-73.8393538102695,40.7650570000003]]]],"type":"MultiPolygon"} +},{ + "id": 907215773, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":500191.546926, + "geom:bbox":"-73.9481780874,40.6571816969,-73.939566705,40.66423", + "geom:latitude":40.660783, + "geom:longitude":-73.943881, + "iso:country":"US", + "lbl:latitude":40.663086, + "lbl:longitude":-73.938241, + "lbl:max_zoom":18.0, + "mps:latitude":40.660779, + "mps:longitude":-73.943881, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Wingate" + ], + "name:deu_x_preferred":[ + "Wingate" + ], + "name:fra_x_preferred":[ + "Wingate" + ], + "name:heb_x_preferred":[ + "\u05d5\u05d9\u05e0\u05d2\u05d9\u05d9\u05d8" + ], + "name:ind_x_preferred":[ + "Wingate" + ], + "name:ita_x_preferred":[ + "Wingate" + ], + "name:nld_x_preferred":[ + "Wingate" + ], + "name:pol_x_preferred":[ + "Wingate" + ], + "name:por_x_preferred":[ + "Wingate" + ], + "name:srp_x_preferred":[ + "\u0412\u0438\u043d\u0433\u0435\u0458\u0442" + ], + "name:vol_x_preferred":[ + "Wingate" + ], + "reversegeo:latitude":40.660779, + "reversegeo:longitude":-73.943881, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85892955, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f4ba4ea68f0651fc99116f57a6502a3c", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215773, + "neighbourhood_id":85892955, + "region_id":85688543 + } + ], + "wof:id":907215773, + "wof:lastmodified":1566608564, + "wof:name":"Wingate", + "wof:parent_id":85892955, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865591 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94817808736043, + 40.65718169687446, + -73.93956670501757, + 40.66423 +], + "geometry": {"coordinates":[[[[-73.93956670501757,40.65771712783322],[-73.9474218132541,40.65718169687446],[-73.94817808736043,40.66406450634648],[-73.94546300000016,40.66423],[-73.93992600000016,40.6639],[-73.940029,40.66302100000021],[-73.93957,40.65853],[-73.93956670501757,40.65771712783322]]]],"type":"MultiPolygon"} +},{ + "id": 907215775, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000195, + "geom:area_square_m":1820133.051134, + "geom:bbox":"-73.917625,40.810917,-73.8889895439,40.8242174379", + "geom:latitude":40.817718, + "geom:longitude":-73.903886, + "iso:country":"US", + "lbl:latitude":40.815425, + "lbl:longitude":-73.904555, + "lbl:max_zoom":18.0, + "mps:latitude":40.816925, + "mps:longitude":-73.900644, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:als_x_preferred":[ + "Woodstock-Festival" + ], + "name:ara_x_preferred":[ + "\u0648\u0648\u062f\u0633\u062a\u0648\u0643" + ], + "name:aze_x_preferred":[ + "Vudstok festival\u0131" + ], + "name:bel_x_preferred":[ + "\u0412\u0443\u0434\u0441\u0442\u0430\u043a" + ], + "name:bul_x_preferred":[ + "\u0423\u0434\u0441\u0442\u043e\u043a" + ], + "name:dan_x_preferred":[ + "Woodstockfestivalen" + ], + "name:deu_x_preferred":[ + "Woodstock-Festival" + ], + "name:ell_x_preferred":[ + "\u03a6\u03b5\u03c3\u03c4\u03b9\u03b2\u03ac\u03bb \u0393\u03bf\u03cd\u03bd\u03c4\u03c3\u03c4\u03bf\u03ba" + ], + "name:eng_x_preferred":[ + "Woodstock" + ], + "name:epo_x_preferred":[ + "Woodstock-festivalo" + ], + "name:est_x_preferred":[ + "Woodstocki festival" + ], + "name:eus_x_preferred":[ + "Woodstock" + ], + "name:fas_x_preferred":[ + "\u0648\u0648\u062f\u0633\u062a\u0627\u06a9" + ], + "name:fin_x_preferred":[ + "Woodstock" + ], + "name:fry_x_preferred":[ + "Woodstock" + ], + "name:gle_x_preferred":[ + "F\u00e9ile Woodstock" + ], + "name:heb_x_preferred":[ + "\u05e4\u05e1\u05d8\u05d9\u05d1\u05dc \u05d5\u05d5\u05d3\u05e1\u05d8\u05d5\u05e7" + ], + "name:hrv_x_preferred":[ + "Woodstock" + ], + "name:hun_x_preferred":[ + "Woodstocki fesztiv\u00e1l" + ], + "name:hye_x_preferred":[ + "\u054e\u0578\u0582\u0564\u057d\u057f\u0578\u0584" + ], + "name:ind_x_preferred":[ + "Festival Woodstock" + ], + "name:isl_x_preferred":[ + "Woodstock" + ], + "name:jpn_x_preferred":[ + "\u30a6\u30c3\u30c9\u30b9\u30c8\u30c3\u30af\u30fb\u30d5\u30a7\u30b9\u30c6\u30a3\u30d0\u30eb" + ], + "name:kat_x_preferred":[ + "\u10d5\u10e3\u10d3\u10e1\u10e2\u10dd\u10d9\u10d8\u10e1 \u10e4\u10d4\u10e1\u10e2\u10d8\u10d5\u10d0\u10da\u10d8" + ], + "name:kor_x_preferred":[ + "\uc6b0\ub4dc\uc2a4\ud1a1 \ud398\uc2a4\ud2f0\ubc8c" + ], + "name:lav_x_preferred":[ + "Vudstokas festiv\u0101ls" + ], + "name:lit_x_preferred":[ + "Vudstoko festivalis" + ], + "name:mkd_x_preferred":[ + "\u0412\u0443\u0434\u0441\u0442\u043e\u043a" + ], + "name:nld_x_preferred":[ + "Woodstock" + ], + "name:nno_x_preferred":[ + "Woodstockfestivalen" + ], + "name:nor_x_preferred":[ + "Woodstockfestivalen" + ], + "name:roh_x_preferred":[ + "Woodstock" + ], + "name:rus_x_preferred":[ + "\u0412\u0443\u0434\u0441\u0442\u043e\u043a" + ], + "name:slv_x_preferred":[ + "Woodstock" + ], + "name:srp_x_preferred":[ + "\u0412\u0443\u0434\u0441\u0442\u043e\u043a" + ], + "name:swe_x_preferred":[ + "Woodstockfestivalen" + ], + "name:tha_x_preferred":[ + "\u0e40\u0e17\u0e28\u0e01\u0e32\u0e25\u0e27\u0e39\u0e14\u0e2a\u0e15\u0e47\u0e2d\u0e01" + ], + "name:tur_x_preferred":[ + "Woodstock Festivali" + ], + "name:ukr_x_preferred":[ + "\u0412\u0443\u0434\u0441\u0442\u043e\u043a" + ], + "name:und_x_variant":[ + "Oak Ridge Lake" + ], + "name:zho_x_preferred":[ + "\u80e1\u58eb\u6258\u97f3\u6a02\u7bc0" + ], + "reversegeo:latitude":40.816925, + "reversegeo:longitude":-73.900644, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869443, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"563775e70ca206166e5f95b304964df6", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907215775, + "neighbourhood_id":85869443, + "region_id":85688543 + } + ], + "wof:id":907215775, + "wof:lastmodified":1566608563, + "wof:name":"Woodstock", + "wof:parent_id":85869443, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892797 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91762500000014, + 40.8109170000003, + -73.8889895438766, + 40.82421743789578 +], + "geometry": {"coordinates":[[[[-73.89884020083993,40.82110590960688],[-73.8889895438766,40.82105705236636],[-73.890422,40.81998400000018],[-73.896411,40.81421800000022],[-73.89795496545923,40.81297045195633],[-73.89795800000013,40.81296800000018],[-73.898448,40.81317700000024],[-73.90090499999999,40.8114290000002],[-73.90271800000015,40.8109170000003],[-73.90446600000018,40.81228200000027],[-73.91094800000013,40.81362100000021],[-73.91495400000012,40.8149370000002],[-73.91762500000014,40.81605500000016],[-73.91762315427302,40.81605607613845],[-73.916764,40.8165570000003],[-73.91403100000014,40.8189560000002],[-73.911745,40.82210700000014],[-73.90978479071293,40.82251966948166],[-73.90940952111106,40.82286886067602],[-73.90878829547907,40.82421743789578],[-73.89884658249514,40.82179695782763],[-73.89884020083993,40.82110590960688]],[[-73.90811300186984,40.81639701124551],[-73.9054685498235,40.81794187658402],[-73.90871406328651,40.81873073889485],[-73.90984821506015,40.81599434674764],[-73.90960477592466,40.815979669003],[-73.9093697572717,40.81598192681758],[-73.90911386373639,40.81600811636473],[-73.90892940012471,40.81605475321408],[-73.90867264125534,40.8161357486463],[-73.90845133871096,40.81623803290369],[-73.90811300186984,40.81639701124551]]]],"type":"MultiPolygon"} +},{ + "id": 907215779, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000135, + "geom:area_square_m":1263176.942237, + "geom:bbox":"-73.9573563505,40.7700871351,-73.9420026672,40.7852322617", + "geom:latitude":40.777297, + "geom:longitude":-73.948834, + "iso:country":"US", + "lbl:latitude":40.777862, + "lbl:longitude":-73.949087, + "lbl:max_zoom":18.0, + "mps:latitude":40.776734, + "mps:longitude":-73.948719, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Yorkville" + ], + "name:eng_x_preferred":[ + "York Ville" + ], + "name:eng_x_variant":[ + "Yorkville" + ], + "name:fra_x_preferred":[ + "Yorkville" + ], + "name:ind_x_preferred":[ + "Yorkville" + ], + "name:jpn_x_preferred":[ + "\u30e8\u30fc\u30af\u30f4\u30a3\u30eb" + ], + "name:kor_x_preferred":[ + "\uc694\ud06c\ube4c" + ], + "name:ltz_x_preferred":[ + "Yorkville" + ], + "name:nld_x_preferred":[ + "Yorkville" + ], + "name:por_x_preferred":[ + "Yorkville" + ], + "name:rus_x_preferred":[ + "\u0419\u043e\u0440\u043a\u0432\u0438\u043b\u043b" + ], + "name:spa_x_preferred":[ + "Yorkville" + ], + "name:zho_x_preferred":[ + "\u7d04\u514b\u7dad\u723e" + ], + "reversegeo:latitude":40.776734, + "reversegeo:longitude":-73.948719, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865691, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1189975" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d9982e95032f2c95b78f77e7fa83d105", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":907215779, + "neighbourhood_id":85865691, + "region_id":85688543 + } + ], + "wof:id":907215779, + "wof:lastmodified":1566608560, + "wof:name":"Yorkville", + "wof:parent_id":85865691, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869829, + 85865695 + ], + "wof:tags":[] +}, + "bbox": [ + -73.95735635045575, + 40.77008713513425, + -73.94200266722278, + 40.78523226169593 +], + "geometry": {"coordinates":[[[[-73.94745259739419,40.77008713513425],[-73.95735635045575,40.77427001644171],[-73.94941469080209,40.78523226169593],[-73.944023,40.7829600000003],[-73.94359245462255,40.78274790820657],[-73.9436482353902,40.78265616133345],[-73.94387075988716,40.7812730265717],[-73.94345932494096,40.78004827565324],[-73.94321386265224,40.7793175886602],[-73.94300423950469,40.77963949547429],[-73.9427160054509,40.77954416947617],[-73.94271237476218,40.77921485694],[-73.94253556320861,40.77909095606253],[-73.94289340818803,40.77861409324628],[-73.94243848174503,40.77731523576604],[-73.94224491952259,40.77710408894725],[-73.94207418803889,40.77691784697714],[-73.94200266722278,40.77618531738265],[-73.94262020519901,40.77518087157647],[-73.94285645694552,40.77479660034919],[-73.94293043781397,40.77467626803601],[-73.94587089958821,40.771692257933],[-73.94661869015059,40.77093339256956],[-73.94745259739419,40.77008713513425]]]],"type":"MultiPolygon"} +},{ + "id": 1041531577, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000069, + "geom:area_square_m":701676.988966, + "geom:bbox":"-118.325981302,34.1201686258,-118.316253363,34.1303688337", + "geom:latitude":34.124942, + "geom:longitude":-118.321381, + "iso:country":"US", + "lbl:latitude":34.125025, + "lbl:longitude":-118.321288, + "lbl:max_zoom":18.0, + "mps:latitude":34.125025, + "mps:longitude":-118.321288, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ara_x_preferred":[ + "\u0647\u0648\u0644\u064a\u0648\u0648\u062f\u0644\u0627\u0646\u062f" + ], + "name:deu_x_preferred":[ + "Die Hollywood-Verschw\u00f6rung" + ], + "name:est_x_preferred":[ + "Hollywoodland" + ], + "name:fas_x_preferred":[ + "\u0647\u0627\u0644\u06cc\u0648\u0648\u062f\u0644\u0646\u062f" + ], + "name:fin_x_preferred":[ + "Hollywoodland" + ], + "name:fra_x_preferred":[ + "Hollywoodland" + ], + "name:ind_x_preferred":[ + "Hollywoodland" + ], + "name:ita_x_preferred":[ + "Hollywoodland" + ], + "name:jpn_x_preferred":[ + "\u30cf\u30ea\u30a6\u30c3\u30c9\u30e9\u30f3\u30c9" + ], + "name:kor_x_preferred":[ + "\ud560\ub9ac\uc6b0\ub4dc\ub79c\ub4dc" + ], + "name:nld_x_preferred":[ + "Hollywoodland" + ], + "name:pol_x_preferred":[ + "Hollywoodland" + ], + "name:por_x_preferred":[ + "Hollywoodland" + ], + "name:rus_x_preferred":[ + "\u0421\u043c\u0435\u0440\u0442\u044c \u0421\u0443\u043f\u0435\u0440\u043c\u0435\u043d\u0430" + ], + "name:spa_x_preferred":[ + "Hollywoodland" + ], + "name:swe_x_preferred":[ + "Hollywoodland" + ], + "name:ukr_x_preferred":[ + "\u0421\u043c\u0435\u0440\u0442\u044c \u0441\u0443\u043f\u0435\u0440\u043c\u0435\u043d\u0430" + ], + "name:zho_x_preferred":[ + "\u9280\u8272\u6bba\u6a5f" + ], + "reversegeo:latitude":34.125025, + "reversegeo:longitude":-118.321288, + "src:geom":"mz", + "wof:belongsto":[ + 85869347, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ea0eda799bbdb572ca8b96d5ad9d402d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1041531577, + "neighbourhood_id":85869347, + "region_id":85688637 + } + ], + "wof:id":1041531577, + "wof:lastmodified":1566608535, + "wof:name":"Hollywoodland", + "wof:parent_id":85869347, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -118.32598130242178, + 34.12016862583057, + -118.3162533626667, + 34.13036883373362 +], + "geometry": {"coordinates":[[[-118.31859520054381,34.12016862583057],[-118.32587294134396,34.12035119136588],[-118.3258664833554,34.12038967904472],[-118.3258667061376,34.12044669771344],[-118.32588184185182,34.12051535343155],[-118.3259152717568,34.12061556112613],[-118.32592697231337,34.12065056529847],[-118.32593702805467,34.12068729106943],[-118.32595048212269,34.12074839455433],[-118.32596557202282,34.12080537282257],[-118.32597437102102,34.12094343027048],[-118.32598130242178,34.12102653517971],[-118.32597500523161,34.12110624067496],[-118.32597347360405,34.12113715815892],[-118.32596542290247,34.12119076360855],[-118.32595737220092,34.1212443690242],[-118.32593443641505,34.12129389239018],[-118.32592787961181,34.12130696242509],[-118.32591967170507,34.12132038124003],[-118.32589669100344,34.12135822668932],[-118.32583582205814,34.12142365264842],[-118.32575845734922,34.12149564962751],[-118.32567116176487,34.1215625211741],[-118.3256118487016,34.12160389894423],[-118.32556901074064,34.12163321066475],[-118.32547672142162,34.12169082119873],[-118.32546023374289,34.1216991093842],[-118.32543879814358,34.12170947165996],[-118.32540580751476,34.1217222694481],[-118.32534972569159,34.12174474681829],[-118.32530188860608,34.12176308046511],[-118.32527055806391,34.1217779344865],[-118.32525571969205,34.12178553179615],[-118.32523265275218,34.12180139422683],[-118.3252162019044,34.12181929950895],[-118.32519482020399,34.12184340102254],[-118.3251816742581,34.12186164094594],[-118.32514880041029,34.12190432147369],[-118.32512417758836,34.12194491897066],[-118.32509462211719,34.12199171267257],[-118.32507003432957,34.12204124006286],[-118.32505692251966,34.12206806778998],[-118.3250504762092,34.12210964610225],[-118.32504393198232,34.1221261509984],[-118.32503410531145,34.12214816049632],[-118.32503420951602,34.12217495249362],[-118.32502617139085,34.12223199301204],[-118.32502953917486,34.12224847111247],[-118.32503459399497,34.12227387540204],[-118.32504303276873,34.12231987989545],[-118.32505639790354,34.12235797104974],[-118.32507300865144,34.12238128338397],[-118.32510284888856,34.12240799424819],[-118.32514094823641,34.12243399713778],[-118.32527499663972,34.12249408946823],[-118.32534782036487,34.12252858568599],[-118.32545374790655,34.12257913603896],[-118.32550673233862,34.1226099072269],[-118.32555313661125,34.12264756544026],[-118.32559955795188,34.12268969005756],[-118.32562942783339,34.12272395789202],[-118.32565936059697,34.12277402549353],[-118.32568261977632,34.12280762474469],[-118.32569425655251,34.12282614110104],[-118.32570589961689,34.12284637604787],[-118.32571426383052,34.12287314477049],[-118.32571285347552,34.12293497620399],[-118.32571305649476,34.12298718541306],[-118.32569833849715,34.12302569494551],[-118.32569179157538,34.12304151326779],[-118.32568361870291,34.12306386163475],[-118.325660637103,34.12310170704736],[-118.32562938112099,34.12313614055014],[-118.32558330383515,34.12318229107451],[-118.32553719241328,34.12321985533243],[-118.32546137819656,34.12326608686951],[-118.32541683074163,34.1232809763223],[-118.32534424776499,34.12330865067832],[-118.32530795942077,34.12332317424569],[-118.32527826740566,34.12333458933664],[-118.32523701856445,34.12334809632463],[-118.32504892661532,34.1234107729447],[-118.32491027075291,34.12344068565424],[-118.32487395635755,34.1234486836435],[-118.32483105551454,34.12346219433155],[-118.32481290415589,34.12346773900783],[-118.32478981475813,34.12347776196117],[-118.32476012992959,34.1234912376929],[-118.32473704412507,34.12350229134598],[-118.32472887484587,34.12352567029338],[-118.32472897635552,34.12355177471961],[-118.32481227084364,34.12372982047868],[-118.32482893010057,34.12376549785261],[-118.32487571436056,34.12390104883187],[-118.32488406959101,34.12392541374745],[-118.32488908668188,34.12394120066812],[-118.32490422239609,34.1240098565235],[-118.32491262972884,34.1240476182241],[-118.32490447302605,34.1240744319289],[-118.32489801503748,34.1241129194004],[-118.32487509182806,34.12416587822174],[-118.32486360237557,34.12418514387642],[-118.32484389782984,34.12421611080245],[-118.32481759695493,34.12425018615768],[-118.32479787354454,34.12427634390268],[-118.32478309535982,34.12429974048358],[-118.32474521070934,34.12432869506344],[-118.32464470629704,34.12439869288285],[-118.32462165193358,34.12441798971753],[-118.32459204795339,34.12445241747876],[-118.32456912654062,34.12450572039447],[-118.32455932232759,34.12453391192552],[-118.32455441932277,34.1245476648679],[-118.32455456574817,34.12458544789398],[-118.32456478947441,34.12466545195323],[-118.32456992334626,34.12471112199376],[-118.32458500156829,34.12476500850502],[-118.32460668689927,34.12481853357237],[-118.32463825459665,34.12486447570267],[-118.32466810920681,34.12489462214465],[-118.32471451797102,34.12493331225646],[-118.32479734264022,34.12499010848754],[-118.32484206616496,34.1250202147282],[-118.32488844528476,34.12505134717991],[-118.32498956863628,34.12514038154107],[-118.32500449234809,34.12515442440367],[-118.32503436312795,34.12518869198286],[-118.32504932007743,34.12521132236458],[-118.32504942428199,34.12523811339126],[-118.3250577884956,34.12526488284394],[-118.32505809661774,34.12534422665475],[-118.32505829065384,34.12539403243201],[-118.32507168633136,34.1254400233296],[-118.32510979106908,34.12546705670893],[-118.32515613695122,34.1254896014981],[-118.32519751245489,34.12550838200113],[-118.32524881793573,34.12553160125601],[-118.32535468618859,34.12556600774199],[-118.325401018596,34.12558511840168],[-118.32546726216168,34.12562615808075],[-118.32549210686749,34.12564223470106],[-118.32554016044696,34.12567885865705],[-118.32560478435019,34.12572814592494],[-118.32566278497482,34.12577332979934],[-118.32567604141349,34.12578359862174],[-118.32572910220237,34.1258332621064],[-118.32577398922049,34.12590527243422],[-118.32578902162844,34.12594713738841],[-118.32579744782583,34.12598970654017],[-118.32579755023376,34.12601581094921],[-118.3257943082139,34.12603196408938],[-118.32578943934506,34.12605430348599],[-118.32578459293411,34.12608248185897],[-118.32577489741725,34.12613815295035],[-118.3257159032559,34.12626196641497],[-118.32570607299174,34.12628294639854],[-118.32569624542253,34.12630495555796],[-118.32568970209401,34.12632146037888],[-118.32563047706566,34.12638619538583],[-118.32560742270218,34.12640549251053],[-118.3255694976275,34.12642448623104],[-118.32551341041443,34.12644627672744],[-118.32544578164658,34.12647393814933],[-118.32538972677288,34.12650397172985],[-118.32536170113262,34.12651950459257],[-118.3253435785201,34.12653260579567],[-118.32532380570235,34.12654605426997],[-118.32530075133893,34.12656535210181],[-118.32521847104879,34.12664903969268],[-118.325175707648,34.12669827359767],[-118.32514939509501,34.12672960174823],[-118.32509515391983,34.12680153620659],[-118.32506565414423,34.12686275573991],[-118.325049341637,34.12691638358633],[-118.32504944584156,34.12694317481628],[-118.32505786934398,34.12698505710345],[-118.32505962285541,34.12701115748705],[-118.32506490764422,34.12709564031115],[-118.32507666748961,34.12714575737726],[-118.32510358910038,34.12727105809233],[-118.32513073259497,34.12745337553985],[-118.32513414529475,34.12748118833029],[-118.32513422524484,34.12750179768982],[-118.32513280321172,34.12756088030466],[-118.32512629940905,34.12758768992082],[-118.32508032003955,34.12766028992897],[-118.32497831993231,34.12777150953154],[-118.32493554485343,34.1278179951267],[-118.32489770511872,34.12785897125826],[-118.32485818643273,34.12789308232591],[-118.32482854921487,34.12791926720111],[-118.32479727975816,34.12795026473488],[-118.32471153915755,34.12799446139068],[-118.32467362216771,34.12801551530559],[-118.32463734729821,34.12803416139723],[-118.32461427586681,34.12804933630118],[-118.3245928717085,34.12806828577924],[-118.32457643882702,34.1280909994183],[-118.32458331363388,34.12815967867376],[-118.32458343400813,34.12819059209124],[-118.32456871062064,34.12822841513147],[-118.32455888125479,34.12825008097985],[-118.32454577213986,34.12827793886841],[-118.32448000468126,34.12835986463939],[-118.32443230683464,34.12841529330171],[-118.3244010364796,34.12844629139716],[-118.32437137051564,34.12846491880352],[-118.32433343106793,34.12848047733232],[-118.32419484168086,34.12852996745918],[-118.32416843570307,34.12853725259021],[-118.3241486314443,34.12854280139527],[-118.32413707821144,34.12854592380634],[-118.32412057436304,34.12855043304665],[-118.3240925172818,34.12855806544091],[-118.32406776150918,34.12856500107366],[-118.32384495326758,34.12862536492489],[-118.32372939848099,34.12865006161503],[-118.32366006560906,34.12866501704431],[-118.32361549479793,34.12867475383636],[-118.32359569143749,34.12868064617892],[-118.32355443990133,34.12869415231282],[-118.32350168813288,34.12872452047116],[-118.32347039891323,34.12875105235309],[-118.32345064406181,34.12876931011998],[-118.32343912496493,34.1287813624897],[-118.32341614426333,34.12881989466558],[-118.32337342667662,34.12888149271953],[-118.32334878768503,34.12891865512945],[-118.32330931391479,34.12896478762523],[-118.32323527207413,34.12904364462116],[-118.32320729763786,34.12907291509499],[-118.32316616557763,34.12911733498843],[-118.32313163254149,34.12915933220047],[-118.32311189565637,34.12918239875771],[-118.32309712735309,34.12920854307903],[-118.32309224860279,34.12922882185807],[-118.32308576635972,34.12926146970791],[-118.32308093252516,34.12929308319527],[-118.32308103313649,34.12931918807151],[-118.32306625405343,34.12934258474405],[-118.3230530874463,34.12935567212477],[-118.32303498010513,34.12937289466858],[-118.32298554671334,34.12940703189493],[-118.32296741691431,34.12941875847666],[-118.32292950351773,34.12944118621037],[-118.32290478188111,34.12945705389714],[-118.32287840464943,34.12947189392555],[-118.32286027485036,34.1294832776987],[-118.32282565377932,34.12950260534767],[-118.32276958543083,34.12952989025173],[-118.32272998948974,34.12954442241724],[-118.32270027950838,34.12955205843975],[-118.32266890405042,34.12955626349421],[-118.3226061360666,34.129559866233],[-118.32255988540588,34.12956273726995],[-118.32251694413867,34.12956663001221],[-118.32245254032267,34.12957470252542],[-118.32238813560839,34.12958277429428],[-118.32236336636105,34.12958627515888],[-118.3223254412864,34.12960561170745],[-118.32229580586517,34.12963248239384],[-118.32227938735673,34.12965931812255],[-118.32225811614911,34.12971295832322],[-118.32223513005762,34.12975045944813],[-118.32222032222847,34.12976664236221],[-118.32215779858639,34.12983378844667],[-118.32212160187032,34.12987304217506],[-118.32210515281916,34.12989197860315],[-118.32208380345813,34.12992535343393],[-118.32202962067345,34.13001343011639],[-118.32199020798866,34.13007570545909],[-118.32197543339718,34.13010047608496],[-118.32196722189715,34.13011320716662],[-118.32195406427321,34.13012869846852],[-118.3219409048526,34.13014384697069],[-118.32192116437426,34.13016622617837],[-118.32187506283384,34.13020791055995],[-118.32181412561656,34.13025822134595],[-118.32177950544383,34.13027789235771],[-118.32175971735475,34.13028790632412],[-118.3217465309847,34.13029584120383],[-118.32172508640222,34.13030482901014],[-118.32170034410436,34.13031519915426],[-118.32165414105437,34.1303304353669],[-118.32160958910785,34.13034532506271],[-118.32156337348141,34.13035712661708],[-118.32154355754456,34.13035992698571],[-118.32148410614074,34.13036695467614],[-118.32143124298122,34.13036881291308],[-118.3212941097632,34.13036883373362],[-118.32106114966058,34.13036842252715],[-118.32100166681572,34.13036755029351],[-118.32070590728819,34.13036318317626],[-118.32044483440875,34.13035631833225],[-118.31987642361611,34.13034167922902],[-118.31957224687439,34.13029645689872],[-118.31944146115215,34.13022776227662],[-118.31928877540163,34.13004852334728],[-118.31923523311575,34.12987245622096],[-118.31923676564165,34.12984119541522],[-118.31924455403515,34.12971752029669],[-118.31924418303096,34.12962031488769],[-118.31924552511397,34.12953924919566],[-118.3192481490929,34.12936097251336],[-118.31925104795634,34.12925482785507],[-118.31920324680345,34.12885135885332],[-118.31911621532376,34.12812580492589],[-118.31908038601865,34.12782878423091],[-118.31907184034536,34.12775392749528],[-118.31906842584897,34.12772508414362],[-118.31907649900842,34.12767594453226],[-118.31909914733336,34.12754982495137],[-118.31883050435101,34.12772158989451],[-118.31861787042833,34.12785061377686],[-118.31847421903461,34.12787331855105],[-118.31835203378293,34.12789253205156],[-118.31818846404441,34.1278905585],[-118.31803644933539,34.12788614961244],[-118.31736687656365,34.12776665967397],[-118.31723017184204,34.1278779639086],[-118.3172071120887,34.12789657284986],[-118.31693971147639,34.12796184948853],[-118.31677939813078,34.12794715643044],[-118.31666536059871,34.127936806817],[-118.31642908391605,34.12793158664932],[-118.31638282157724,34.12793102075933],[-118.3162533626667,34.12777473087186],[-118.31626086359931,34.12757377164638],[-118.31626770516853,34.12719866745075],[-118.31632010210242,34.12707418907342],[-118.31636102665183,34.1269741280906],[-118.31645431040587,34.12673962654574],[-118.31651981196313,34.12658557351206],[-118.31660340199694,34.12640914743754],[-118.31662752355896,34.12623493626432],[-118.31663383422384,34.12615626181216],[-118.31663369229,34.12611882230129],[-118.31663494094823,34.12601233893836],[-118.31664101715283,34.12587183801303],[-118.31664734308907,34.12579728443389],[-118.31665711586105,34.12576016229529],[-118.31667014053434,34.12570963615316],[-118.31668806551752,34.12564398372773],[-118.3167191202769,34.12555562660432],[-118.31675674351763,34.12545660491377],[-118.31678782522647,34.12537546012172],[-118.31683376956165,34.12529255952515],[-118.31693879070322,34.12510439836825],[-118.31716392019152,34.12478608330251],[-118.31732820678563,34.12454349600285],[-118.31742695139828,34.12444328180865],[-118.31751911046159,34.12434926800918],[-118.31758096306218,34.12410523157488],[-118.31766472018263,34.12397414281391],[-118.31777143824176,34.12379902903764],[-118.31787312843022,34.12360503655864],[-118.31790265425698,34.12354931323088],[-118.31792237946398,34.12352315674823],[-118.31807705767783,34.12336131179822],[-118.31818055437834,34.12320818887061],[-118.31830376730271,34.12302684686988],[-118.31840399144063,34.12288231928047],[-118.31851078765318,34.12272815733686],[-118.31857008095352,34.1226809423874],[-118.31870184314445,34.12257548912667],[-118.31878560206152,34.12244577451211],[-118.31881632264765,34.12227051627439],[-118.31869410864985,34.12184663448744],[-118.31863451710885,34.12138205615071],[-118.31862772315036,34.1213332980745],[-118.31862600646984,34.12131647175735],[-118.31862416222856,34.12126598460529],[-118.31862404544758,34.12123541446352],[-118.3186184219939,34.12106025262576],[-118.31861485478393,34.12099122105068],[-118.31861292969425,34.12091943782062],[-118.31861088512866,34.12081639707971],[-118.31859520054381,34.12016862583057]]],"type":"Polygon"} +},{ + "id": 1041531585, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000058, + "geom:area_square_m":595774.830858, + "geom:bbox":"-118.469602,34.0580733657,-118.45555292,34.0727961608", + "geom:latitude":34.065262, + "geom:longitude":-118.462416, + "iso:country":"US", + "lbl:latitude":34.063645, + "lbl:longitude":-118.461159, + "lbl:max_zoom":18.0, + "mps:latitude":34.062122, + "mps:longitude":-118.459966, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Brentwood Glen" + ], + "name:eng_x_variant":[ + "Brentwood Gln", + "The Glen" + ], + "name:urd_x_preferred":[ + "\u0628\u0631\u06cc\u0646\u0679\u0648\u0648\u0688 \u06af\u0644\u06cc\u0646\u060c \u0644\u0627\u0633 \u0627\u06cc\u0646\u062c\u0644\u0633" + ], + "name:urd_x_variant":[ + "\u0628\u0631\u06cc\u0646\u0679\u0648\u0648\u0688 \u06af\u0644\u06cc\u0646" + ], + "reversegeo:latitude":34.062122, + "reversegeo:longitude":-118.459966, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85807211, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4961774" + }, + "wof:country":"US", + "wof:geomhash":"09fb99f74af865954e876bbfe942c89c", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1041531585, + "neighbourhood_id":85807211, + "region_id":85688637 + } + ], + "wof:id":1041531585, + "wof:lastmodified":1566608536, + "wof:name":"Brentwood Glen", + "wof:parent_id":85807211, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869137 + ], + "wof:tags":[] +}, + "bbox": [ + -118.469602, + 34.05807336573997, + -118.45555292008919, + 34.07279616076036 +], + "geometry": {"coordinates":[[[-118.46960199999999,34.069794],[-118.469545,34.069974],[-118.469472,34.070155],[-118.469391,34.07032],[-118.469273,34.070516],[-118.46904600000001,34.070832],[-118.468407,34.071707],[-118.468323,34.071811],[-118.46823999999999,34.071894],[-118.46811099999999,34.072],[-118.46798800000001,34.072079],[-118.46746899999999,34.07235],[-118.467437,34.072366],[-118.467083,34.07255],[-118.466736,34.07273],[-118.46672,34.072738],[-118.46660762158167,34.07279616076036],[-118.46633973191743,34.07244180264235],[-118.46614006787078,34.0721878344991],[-118.46568898424077,34.07166557705514],[-118.46517549464795,34.07104566045817],[-118.46487026597903,34.0706889889113],[-118.46478005356492,34.07058813572468],[-118.46453963025891,34.07031637458],[-118.46445754490318,34.07023144662507],[-118.46420672629272,34.06996044036539],[-118.46323718179309,34.06884500871565],[-118.46259030226206,34.06810594450523],[-118.46176796468801,34.06719485912112],[-118.46163523051997,34.06705945616804],[-118.46155512684777,34.06697888343143],[-118.4614410533831,34.06683956292444],[-118.46110570510102,34.06644425282654],[-118.46068272436635,34.06597342523042],[-118.46063335475496,34.06591916342826],[-118.46010643355199,34.06531462684092],[-118.45978443064178,34.06496664759684],[-118.45936296805993,34.06452682735177],[-118.45926724537988,34.06442150254321],[-118.45903300966955,34.06413772255267],[-118.45860736363342,34.06360714244823],[-118.45848622222408,34.06346154221376],[-118.45844046923003,34.06341020641018],[-118.45836629354041,34.06332630222411],[-118.45811296503703,34.06303083338867],[-118.45781450158051,34.06267210242449],[-118.45749290291216,34.06227900322403],[-118.45731707655993,34.06207987840644],[-118.45695350410992,34.06167578989461],[-118.45667194065885,34.06135323317063],[-118.45624069991513,34.06084567244712],[-118.45585535230262,34.06038054860593],[-118.45555292008919,34.06002000096854],[-118.4587805355735,34.05807336573997],[-118.46110034668844,34.0600460620792],[-118.46281438783799,34.06310855914647],[-118.4629213688237,34.06365288833224],[-118.46319978105517,34.06506586375396],[-118.46533623323948,34.06698904619069],[-118.46654778667333,34.06761284273732],[-118.46673122853312,34.06770750991482],[-118.46678323394215,34.06766336583301],[-118.467175,34.068276],[-118.46723799999999,34.068352],[-118.467327,34.068432],[-118.467375,34.068466],[-118.46744,34.068496],[-118.467512,34.068513],[-118.46781799999999,34.068526],[-118.467991,34.068676],[-118.468067,34.068752],[-118.468124,34.068834],[-118.46825200000001,34.069098],[-118.468272,34.069135],[-118.46831899999999,34.069192],[-118.468374,34.069235],[-118.46857199999999,34.069342],[-118.46873600000001,34.069428],[-118.46882600000001,34.069479],[-118.46907,34.069642],[-118.46914599999999,34.069685],[-118.469239,34.069719],[-118.46960199999999,34.069794]]],"type":"Polygon"} +},{ + "id": 1091764195, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000042, + "geom:area_square_m":425497.136207, + "geom:bbox":"-118.38607,34.0445345325,-118.376134188,34.050603", + "geom:latitude":34.047611, + "geom:longitude":-118.38084, + "iso:country":"US", + "lbl:latitude":34.046631, + "lbl:longitude":-118.380805, + "lbl:max_zoom":18.0, + "mps:latitude":34.047614, + "mps:longitude":-118.38084, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Crestview" + ], + "name:ceb_x_preferred":[ + "Crestview" + ], + "name:deu_x_preferred":[ + "Crestview" + ], + "name:fra_x_preferred":[ + "Crestview" + ], + "name:hun_x_preferred":[ + "Crestview" + ], + "name:ita_x_preferred":[ + "Crestview" + ], + "name:nld_x_preferred":[ + "Crestview" + ], + "name:pol_x_preferred":[ + "Crestview" + ], + "name:por_x_preferred":[ + "Crestview" + ], + "name:spa_x_preferred":[ + "Crestview" + ], + "name:srp_x_preferred":[ + "\u041a\u0440\u0435\u0441\u0442\u0432\u0458\u0443" + ], + "name:swe_x_preferred":[ + "Crestview" + ], + "name:vol_x_preferred":[ + "Crestview" + ], + "reversegeo:latitude":34.047614, + "reversegeo:longitude":-118.38084, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865815, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"b7bf77dff4f58add9b52419c533bbad0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1091764195, + "neighbourhood_id":85865815, + "region_id":85688637 + } + ], + "wof:id":1091764195, + "wof:lastmodified":1566625491, + "wof:name":"Crestview", + "wof:parent_id":85865815, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869183 + ], + "wof:tags":[] +}, + "bbox": [ + -118.38607, + 34.0445345325035, + -118.37613418814027, + 34.050603 +], + "geometry": {"coordinates":[[[-118.37683245114802,34.0445345325035],[-118.37803,34.04476],[-118.379024,34.044947],[-118.379992,34.045129],[-118.38103099999999,34.045324],[-118.38207,34.04552],[-118.383109,34.045716],[-118.38410500000001,34.046084],[-118.385107,34.046454],[-118.3856,34.046636],[-118.38607,34.04678],[-118.385502,34.04886],[-118.384865,34.049827],[-118.384474,34.050413],[-118.384319,34.050603],[-118.383205,34.05039],[-118.382169,34.050193],[-118.381134,34.049995],[-118.380099,34.049798],[-118.379063,34.049601],[-118.37807599999999,34.049412],[-118.377105,34.049227],[-118.37614787476177,34.0490444554958],[-118.37614902291888,34.04820169341326],[-118.37613418814027,34.04710464822976],[-118.37656815347427,34.04560879262424],[-118.37675505335901,34.04496245776448],[-118.3767664547766,34.04492876061973],[-118.37677454949564,34.04489369982473],[-118.37678429621646,34.04485863454916],[-118.37679238913886,34.04482322983829],[-118.37680048206124,34.04478782585697],[-118.37680692477846,34.04475242707129],[-118.37681336569904,34.04471668438344],[-118.37681815641447,34.04468094689104],[-118.37682294712987,34.04464521012787],[-118.37682608674177,34.04460947781575],[-118.37682922725203,34.04457374548851],[-118.37683236147404,34.04453663833845],[-118.37683245114802,34.0445345325035]]],"type":"Polygon"} +},{ + "id": 1092456427, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000035, + "geom:area_square_m":354634.791198, + "geom:bbox":"-118.256061,34.040736,-118.243350744,34.052395", + "geom:latitude":34.04629, + "geom:longitude":-118.250289, + "iso:country":"US", + "lbl:latitude":34.045851, + "lbl:longitude":-118.250418, + "lbl:max_zoom":18.0, + "mps:latitude":34.044296, + "mps:longitude":-118.251782, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":1, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Gallery Row" + ], + "name:ind_x_preferred":[ + "Gallery Row" + ], + "name:ita_x_preferred":[ + "Gallery Row" + ], + "name:pol_x_preferred":[ + "Gallery Row" + ], + "reversegeo:latitude":34.044296, + "reversegeo:longitude":-118.251782, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865811, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4146165" + }, + "wof:country":"US", + "wof:geomhash":"a18985b64b982f0a06032070daf162c0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092456427, + "neighbourhood_id":85865811, + "region_id":85688637 + } + ], + "wof:id":1092456427, + "wof:lastmodified":1566625489, + "wof:name":"Gallery Row", + "wof:parent_id":85865811, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869267 + ], + "wof:tags":[] +}, + "bbox": [ + -118.256061, + 34.040736, + -118.24335074380521, + 34.052395 +], + "geometry": {"coordinates":[[[-118.24473802924872,34.04852166383318],[-118.2455327695307,34.04900470155165],[-118.24569502429792,34.04930855928007],[-118.24587572837808,34.04954925290659],[-118.24698537930271,34.05027532079555],[-118.25099930178318,34.04596001164419],[-118.248997,34.044595],[-118.250412,34.04326],[-118.25176399999999,34.042264],[-118.25230500000001,34.041914],[-118.252996,34.041464],[-118.254093,34.040736],[-118.25451691262943,34.04112192045982],[-118.25451700000001,34.041122],[-118.254943,34.041599],[-118.25524521184718,34.041796018625],[-118.25546127512143,34.04193687507918],[-118.256061,34.042328],[-118.254706,34.043774],[-118.253367,34.045213],[-118.252032,34.046648],[-118.25070100000001,34.048079],[-118.249359,34.049521],[-118.248017,34.050963],[-118.24667700000001,34.052395],[-118.245606,34.051703],[-118.24506700000001,34.051354],[-118.244519,34.051003],[-118.24335074380521,34.05027965222884],[-118.24346845013915,34.05012486353328],[-118.24367563038976,34.04985137697581],[-118.24442870785538,34.04885959097827],[-118.24447145778143,34.0488031731208],[-118.24447967556964,34.0487911346665],[-118.24451588126887,34.04875430847793],[-118.2446096761643,34.04865588243341],[-118.24473802924872,34.04852166383318]]],"type":"Polygon"} +},{ + "id": 1108561155, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000038, + "geom:area_square_m":390129.546911, + "geom:bbox":"-118.337373999,34.039846,-118.328430325,34.0465859999", + "geom:latitude":34.042838, + "geom:longitude":-118.332954, + "iso:country":"US", + "lbl:latitude":34.042374, + "lbl:longitude":-118.332122, + "lbl:max_zoom":18.0, + "mps:latitude":34.042982, + "mps:longitude":-118.332869, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Lafayette Square" + ], + "name:eng_x_variant":[ + "Lafayette Sq", + "Lafayettesquare" + ], + "reversegeo:latitude":34.042982, + "reversegeo:longitude":-118.332869, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865813, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q6471521" + }, + "wof:country":"US", + "wof:geomhash":"6bf495128d49f43017c550c0efe3bb5b", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108561155, + "neighbourhood_id":85865813, + "region_id":85688637 + } + ], + "wof:id":1108561155, + "wof:lastmodified":1566623963, + "wof:name":"Lafayette Square", + "wof:parent_id":85865813, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869393 + ], + "wof:tags":[] +}, + "bbox": [ + -118.33737399932366, + 34.03984600000247, + -118.32843032507364, + 34.04658599986394 +], + "geometry": {"coordinates":[[[-118.33433899958577,34.04658599986394],[-118.33379100000001,34.046406],[-118.333169,34.046202],[-118.33287300000001,34.046105],[-118.33178100000001,34.045746],[-118.33068,34.045385],[-118.32961400000001,34.045035],[-118.32950599999999,34.045],[-118.329026,34.044877],[-118.328973,34.04486],[-118.32843032507364,34.04468790849181],[-118.32968885172026,34.04238454770186],[-118.33107980244549,34.03986692180177],[-118.332424,34.039863],[-118.333727,34.039858],[-118.33393100000001,34.039858],[-118.33503,34.039854],[-118.335323,34.039853],[-118.336322,34.039849],[-118.33655400000001,34.039849],[-118.33737399932366,34.03984600000247],[-118.33726,34.0399939991244],[-118.33712,34.04019799912439],[-118.337014,34.04037999912438],[-118.336867,34.04075099912438],[-118.33651500000001,34.04163899912438],[-118.336162,34.04252599912436],[-118.33581,34.04341299912437],[-118.335458,34.04429999912434],[-118.335106,34.04518699912435],[-118.33475900000001,34.04606199912431],[-118.33473499999999,34.04612099912431],[-118.334529,34.04643499912432],[-118.334339,34.0465859991243],[-118.33433899958577,34.04658599986394]]],"type":"Polygon"} +},{ + "id": 420561633, + "type": "Feature", + "properties": { + "edtf:cessation":"2016-02-07", + "edtf:inception":"2016-01-30", + "geom:area":0.000008, + "geom:area_square_m":74923.858815, + "geom:bbox":"-122.39753902,37.7923397444,-122.39310801,37.796684757", + "geom:latitude":37.794893, + "geom:longitude":-122.395268, + "geom:src":"mapzen", + "iso:country":"US", + "lbl:latitude":37.794906, + "lbl:longitude":-122.395229, + "mps:latitude":37.794906, + "mps:longitude":-122.395229, + "mz:categories":[], + "mz:hierarchy_label":1, + "mz:hours":[], + "mz:is_current":0, + "name:eng_x_preferred":[ + "Super Bowl City" + ], + "src:geom":"mapzen", + "src:lbl:centroid":"mapshaper", + "wof:belongsto":[ + 420561633, + 85865899, + 102191575, + 1108830801, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:category":[ + "secure event area" + ], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"0c116fa7d36fb3b3d790f20b6f5f1dfa", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "macrohood_id":1108830801, + "microhood_id":420561633, + "neighbourhood_id":85865899, + "region_id":85688637 + } + ], + "wof:id":420561633, + "wof:lang":[ + "eng" + ], + "wof:lastmodified":1501284302, + "wof:name":"Super Bowl City", + "wof:parent_id":85865899, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[ + "football", + "sportsball", + "superbowl", + "superbowl50" + ] +}, + "bbox": [ + -122.39753901958, + 37.792339744389, + -122.39310801029, + 37.796684756991 +], + "geometry": {"coordinates":[[[[-122.39685505628999,37.796307492857],[-122.39671021700001,37.795629260355],[-122.39668741822,37.795633499327],[-122.39663310349,37.795446984308],[-122.39647686481,37.794650051196],[-122.39640511572,37.79464475241],[-122.39637359977,37.794622497504],[-122.39632934332001,37.794569509605],[-122.39600211382,37.793834033649],[-122.39589348435,37.793712160125],[-122.39619858563,37.793464703264],[-122.39627335221,37.793462848659],[-122.39657895640001,37.793242547764],[-122.39657887257999,37.793157831761],[-122.39753901957999,37.792424527567],[-122.39742100239,37.792339744389],[-122.39657342434,37.793015887528],[-122.39647820592,37.793030194565],[-122.39631325006,37.79288341483],[-122.39548578858,37.793546305832],[-122.39524371922001,37.793354221721],[-122.3950824514,37.793480732347],[-122.39436613396001,37.79405691596],[-122.39399850368,37.793768327948],[-122.39317238331,37.794349079539],[-122.39310801029001,37.794459294654],[-122.39469587803001,37.796095545869],[-122.39526450634,37.796684756991],[-122.39553272724,37.796553350601],[-122.39640578628,37.796414525854],[-122.39685505628999,37.796307492857]]]],"type":"MultiPolygon"} +},{ + "id": 420564211, + "type": "Feature", + "properties": { + "edtf:cessation":"2016-02-07", + "edtf:inception":"2016-01-30", + "geom:area":0, + "geom:area_square_m":3376.421626, + "geom:bbox":"-122.404212356,37.7821035804,-122.400473356,37.7850247094", + "geom:latitude":37.783764, + "geom:longitude":-122.402084, + "iso:country":"US", + "lbl:latitude":37.78385, + "lbl:longitude":-122.401967, + "mz:hierarchy_label":1, + "mz:is_current":0, + "name:eng_x_preferred":[ + "NFL Experience" + ], + "src:geom":"mapzen", + "src:lbl:centroid":"mapshaper", + "wof:belongsto":[ + 85887417, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"110238bd2653d781e3d9bf38f0ad39aa", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420564211, + "neighbourhood_id":85887417, + "region_id":85688637 + } + ], + "wof:id":420564211, + "wof:lastmodified":1509747474, + "wof:name":"NFL Experience", + "wof:parent_id":85887417, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[ + "football", + "sportsball", + "superbowl", + "superbowl50" + ] +}, + "bbox": [ + -122.40421235561, + 37.782103580399, + -122.40047335625, + 37.785024709434 +], + "geometry": {"coordinates":[[[[-122.4005484581,37.785024709434],[-122.40421235561,37.78213749838],[-122.40416944027,37.782103580399],[-122.40268349647999,37.783286460783],[-122.40264594555001,37.783261022695],[-122.40047335625,37.784961115692],[-122.4005484581,37.785024709434]]]],"type":"MultiPolygon"} +},{ + "id": 420780691, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":309633.481755, + "geom:bbox":"-122.4194929,37.7437260187,-122.407785058,37.7484874533", + "geom:latitude":37.746475, + "geom:longitude":-122.413834, + "iso:country":"US", + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "src:geom":"burritojustice", + "wof:belongsto":[ + 85865945, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:created":1458845410, + "wof:geomhash":"63c9dafba67ecff981ae95cf840e2c26", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":420780691, + "neighbourhood_id":85865945, + "region_id":85688637 + } + ], + "wof:id":420780691, + "wof:lastmodified":1566630756, + "wof:name":"Precitaville", + "wof:parent_id":85865945, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.41949290037154, + 37.74372601874967, + -122.40778505802155, + 37.74848745334203 +], + "geometry": {"coordinates":[[[-122.41822689771652,37.74815872271392],[-122.40778505802155,37.74848745334203],[-122.40801572799681,37.74823295233822],[-122.41057187318802,37.74713858804851],[-122.4106228351593,37.74698800564904],[-122.41033852100372,37.74374934946549],[-122.41111636161803,37.74372601874967],[-122.41190493106842,37.74392751105308],[-122.41324603557585,37.7438744868159],[-122.41330772638321,37.74424989759765],[-122.41443425416946,37.74422868799969],[-122.41495460271835,37.744515017059],[-122.41493046283722,37.74473559572711],[-122.41487145423889,37.74475044234462],[-122.41485536098479,37.74479074029144],[-122.41493582725523,37.74505161594257],[-122.41514772176741,37.74499010875808],[-122.41530597209929,37.74498162500448],[-122.41546690464018,37.74501343907546],[-122.41568684577942,37.74509827653119],[-122.418165,37.746082],[-122.41842001676559,37.74574091710011],[-122.41949290037154,37.74619479189546],[-122.41822689771652,37.74815872271392]]],"type":"Polygon"} +},{ + "id": 102147425, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":12169.636731, + "geom:bbox":"-122.418083,37.776573,-122.416199,37.777802", + "geom:latitude":37.777297, + "geom:longitude":-122.41729, + "iso:country":"US", + "lbl:latitude":37.777226, + "lbl:longitude":-122.417428, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Foxy Heights" + ], + "src:geom":"minitenders", + "src:geom_alt":[], + "wof:belongsto":[ + 85866841, + 102191575, + 85633793, + 85922583, + 102087579, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"1d0d23e46a24d6ce9d8b86450ec24fe1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102087579, + "locality_id":85922583, + "microhood_id":102147425, + "neighbourhood_id":85866841, + "region_id":85688637 + } + ], + "wof:id":102147425, + "wof:lastmodified":1566610059, + "wof:name":"Foxy Heights", + "wof:parent_id":85866841, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.418083, + 37.776573, + -122.416199, + 37.777802 +], + "geometry": {"coordinates":[[[-122.418083,37.777596],[-122.4179,37.776794],[-122.41757200000001,37.776573],[-122.41619900000001,37.777641],[-122.416512,37.777802],[-122.418083,37.777596]]],"type":"Polygon"} +},{ + "id": 890730623, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":11837.939456, + "geom:bbox":"-122.385182994,47.6593618596,-122.382774099,47.6609716619", + "geom:latitude":47.660091, + "geom:longitude":-122.384139, + "iso:country":"US", + "lbl:latitude":47.660238, + "lbl:longitude":-122.38437, + "lbl:max_zoom":18.0, + "mps:latitude":47.660238, + "mps:longitude":-122.38437, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.660238, + "reversegeo:longitude":-122.38437, + "src:geom":"mz", + "wof:belongsto":[ + 85826973, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"977de6b81df5ceb9c5400ab34fa1d3fa", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890730623, + "neighbourhood_id":85826973, + "region_id":85688623 + } + ], + "wof:id":890730623, + "wof:lastmodified":1566631078, + "wof:name":"Salmon Bay Marina", + "wof:parent_id":85826973, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.38518299413704, + 47.65936185956175, + -122.38277409938864, + 47.66097166187225 +], + "geometry": {"coordinates":[[[-122.38518299413704,47.66006892442929],[-122.38434352453118,47.66097166187225],[-122.38429251347716,47.66093289465945],[-122.38431100796916,47.66090659367516],[-122.384255827228,47.66087662542762],[-122.38413650183037,47.66080532890037],[-122.38401507422358,47.66073157627613],[-122.38390405030245,47.66066642168114],[-122.38385862958719,47.66062346743703],[-122.38390163847778,47.66058556453417],[-122.38396155667259,47.66053624878725],[-122.38401234497643,47.66048701448978],[-122.38398912225762,47.66045686828244],[-122.38391208775722,47.66035757568196],[-122.38382885276586,47.6602545112096],[-122.38373715312925,47.66013977946063],[-122.38363715015505,47.66001882018669],[-122.38357417738946,47.6599316747196],[-122.3835102148993,47.65984535696782],[-122.38347307121911,47.65982474009947],[-122.38331921402214,47.65976925133065],[-122.38316117008813,47.65970944891009],[-122.38296467407143,47.65963615968435],[-122.38289535301575,47.65960831113605],[-122.38284227507988,47.65959776535846],[-122.38280353803533,47.65957472782702],[-122.38278002276208,47.6595517404723],[-122.38277409938864,47.65954710683945],[-122.38285221407892,47.65956972223682],[-122.38351258744719,47.65936185956175],[-122.38371143578834,47.65949371459772],[-122.38518299413704,47.66006892442929]]],"type":"Polygon"} +},{ + "id": 890723157, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":130851.131982, + "geom:bbox":"-122.383512587,47.6540209884,-122.376219904,47.6595697222", + "geom:latitude":47.655832, + "geom:longitude":-122.379989, + "iso:country":"US", + "lbl:latitude":47.654951, + "lbl:longitude":-122.379992, + "lbl:max_zoom":18.0, + "mps:latitude":47.654951, + "mps:longitude":-122.379992, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":47.654951, + "reversegeo:longitude":-122.379992, + "src:geom":"mz", + "wof:belongsto":[ + 85826973, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d4275853b744c81ed959ae48637f3c40", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":890723157, + "neighbourhood_id":85826973, + "region_id":85688623 + } + ], + "wof:id":890723157, + "wof:lastmodified":1566631078, + "wof:name":"Fisherman's Terminal", + "wof:parent_id":85826973, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.38351258744719, + 47.65402098842528, + -122.37621990354106, + 47.65956972223682 +], + "geometry": {"coordinates":[[[-122.37622411775111,47.65595959816768],[-122.37622413103331,47.65588031915235],[-122.37622420318421,47.65544966373568],[-122.37622001770025,47.65469326072137],[-122.37621990354106,47.65402098842528],[-122.38033426263462,47.65402731471778],[-122.38053140828345,47.65404129644773],[-122.38071622266261,47.65407315757549],[-122.38085018342746,47.65411321215872],[-122.38097686435874,47.65415917006391],[-122.38109489703356,47.65422131275696],[-122.38119211356339,47.65428544777006],[-122.38205215442977,47.65491677682117],[-122.38244331286806,47.65520051105835],[-122.38285559634058,47.65545855479139],[-122.38311878319881,47.6555849090751],[-122.3833006811716,47.65565162452998],[-122.38330118465041,47.65763118450451],[-122.38332308945353,47.65893399769302],[-122.38335532796825,47.65915773629492],[-122.38351258744719,47.65936185956175],[-122.38285221407892,47.65956972223682],[-122.38277409938864,47.65954710683945],[-122.38275041411471,47.65952857873812],[-122.38270361154051,47.65950727909945],[-122.38264700037686,47.65949733830462],[-122.38258072214414,47.65948645743305],[-122.38251495079037,47.65947556997971],[-122.3824389136629,47.65946066614761],[-122.38239337049912,47.65944757520253],[-122.38239223598005,47.6594095021449],[-122.38239164091442,47.65935548333943],[-122.38238958463542,47.65925242775448],[-122.38238560369776,47.65918692982742],[-122.38233684519673,47.65918510802855],[-122.38209235956501,47.65918680503249],[-122.38190616138255,47.65918659464523],[-122.38171795088591,47.65918696866932],[-122.38152359780953,47.65918549758986],[-122.38133130502007,47.65918506937088],[-122.38111374580271,47.65918802614755],[-122.38092297583455,47.65918761936416],[-122.38072405047457,47.65918595213089],[-122.38057436542184,47.65918524348269],[-122.38037144702994,47.65918577226775],[-122.38012138350325,47.65918754045497],[-122.37989757594391,47.65918509568741],[-122.37972003182618,47.65918587822647],[-122.37955316047629,47.65918728705185],[-122.37934317655403,47.65918906640876],[-122.37912251783283,47.65919013351517],[-122.37890534358696,47.65918896770114],[-122.37865420799196,47.6591888192766],[-122.37852790832427,47.65918971893063],[-122.37845309953568,47.65918195089106],[-122.37845539236169,47.6591566842577],[-122.37845335916951,47.65905414258088],[-122.37845643946616,47.65895294528314],[-122.37847284072913,47.65887320348424],[-122.37852558173067,47.65887248795553],[-122.37867669700917,47.65887013792569],[-122.37884979944646,47.65887357288629],[-122.37897342961971,47.65888530544863],[-122.37897013758631,47.65892815190296],[-122.37897054822302,47.65899314098593],[-122.37897943338083,47.65903603628207],[-122.37911942632607,47.65903499309425],[-122.37931726299375,47.65903419295364],[-122.37958463437293,47.65903441957379],[-122.37980433608018,47.65903529249654],[-122.3799742074695,47.65903242880502],[-122.38011787138095,47.65903540486634],[-122.38027817266271,47.65903485590088],[-122.3804785955199,47.65903573245703],[-122.38071701139174,47.65903467838044],[-122.38091795639339,47.65903606125698],[-122.38109703045056,47.6590355557902],[-122.38127970238158,47.65903662934415],[-122.38144411833501,47.659037950754],[-122.38162064720979,47.65903717932192],[-122.38175555255856,47.65903564504818],[-122.38189001433645,47.65903625903505],[-122.38200774243941,47.65903714322219],[-122.38210563456212,47.65903636908838],[-122.38225426417311,47.65903571878876],[-122.3823895767998,47.65903083653217],[-122.38239277650374,47.65900200166755],[-122.38239380073954,47.65895126006123],[-122.38239500833267,47.65885557210563],[-122.38239503056174,47.65870308868612],[-122.3823928546892,47.65854493663026],[-122.3823938495446,47.65840807795163],[-122.3823897082337,47.65828611352696],[-122.38238432453177,47.65813948745225],[-122.38238032256679,47.65800518203304],[-122.38237644332416,47.65785797848745],[-122.38237490140916,47.65777218207575],[-122.38237570157753,47.65762877111516],[-122.38237644431784,47.65748343299459],[-122.38237915429353,47.65740413367749],[-122.38238305796625,47.65736487807693],[-122.38238325944508,47.65723544255776],[-122.38238302117466,47.65709123144153],[-122.38238395147179,47.65695218877523],[-122.38238378541958,47.6568104188032],[-122.38238359564507,47.65666783522747],[-122.38238332368707,47.65652251090282],[-122.38238252760097,47.65639364560453],[-122.38238218030801,47.65631387403049],[-122.38238215336015,47.65617677232064],[-122.38238200443509,47.65603555947018],[-122.38238271342529,47.65588910743411],[-122.38218893688843,47.65588955810644],[-122.38198397120598,47.65588904623657],[-122.38177495741857,47.65588888912658],[-122.38177402735731,47.65599391361117],[-122.38177149960063,47.65614750228136],[-122.3817329598327,47.65614802627282],[-122.38161014335485,47.65614639679006],[-122.38160897631779,47.65610721015648],[-122.38160599273094,47.65607516015161],[-122.38160336260474,47.65602091209524],[-122.38160453932841,47.65589009205548],[-122.38147058409305,47.65588917121846],[-122.38126461321947,47.65588897180741],[-122.38105435580134,47.65588111816859],[-122.38085587525548,47.65589396959533],[-122.38081857085508,47.65590188851372],[-122.38078146096588,47.65591636005215],[-122.38073886483186,47.65591693882588],[-122.38071714002224,47.65593698547011],[-122.38052981779575,47.65591566586713],[-122.38048773873106,47.65589952836289],[-122.38044784216321,47.65588854518628],[-122.38040285022588,47.65587681728802],[-122.38028717465511,47.65587646066652],[-122.38007814435815,47.65587574366081],[-122.3798731711113,47.65587497117816],[-122.37967025034328,47.65587498473445],[-122.37966820823092,47.65601100042873],[-122.37966822802244,47.65614810213992],[-122.37950489322404,47.65614869155201],[-122.37950601027683,47.65601568755937],[-122.37948552765324,47.65587282257847],[-122.37939721151535,47.65587127933453],[-122.37934755620739,47.65587332470285],[-122.37914258298095,47.65587255090544],[-122.37908189445088,47.65587885870976],[-122.37895001540988,47.6558795345796],[-122.37886075847986,47.65588048898424],[-122.37865577631604,47.65587941434308],[-122.37857869763334,47.65588046019744],[-122.37840826423206,47.6558811447151],[-122.37831088480111,47.65588190879618],[-122.37812013409693,47.6558817541402],[-122.37811903768778,47.65601557206759],[-122.37811807182683,47.65615380110663],[-122.37811732483341,47.65629939602066],[-122.37811646510814,47.65644117975724],[-122.37811447617358,47.65657912258233],[-122.37811282956608,47.6567285862746],[-122.37811061281286,47.65685886290404],[-122.37804975249037,47.65685943147632],[-122.37779200282608,47.65685825699938],[-122.37779197886793,47.65678914953853],[-122.37779191619116,47.65665042027849],[-122.37779087066168,47.65651277554017],[-122.37779182976968,47.65637428969113],[-122.37779268326888,47.65623224913507],[-122.37779339755885,47.6560855403143],[-122.37779520793003,47.65594155884204],[-122.37770997432506,47.6559413437677],[-122.37750702021147,47.6559402395545],[-122.37730206329474,47.65594001957826],[-122.37730057090525,47.65602641374173],[-122.37730066534164,47.65616625656999],[-122.37730175789201,47.65630552850853],[-122.3773009030505,47.65644756906053],[-122.37729898573264,47.65658799616646],[-122.37729906413881,47.65672728185161],[-122.37729717096865,47.65686852255312],[-122.37713381735664,47.65686855213352],[-122.37713317945204,47.65681290575084],[-122.37713298754218,47.65666976538424],[-122.37713174027517,47.65652526839165],[-122.37713064817559,47.65638599645257],[-122.37713035071584,47.65623930137688],[-122.37713110808787,47.65609396293277],[-122.37713182425306,47.65594725446628],[-122.37713009084226,47.65588888106985],[-122.37701441526718,47.6558885211246],[-122.37680577530888,47.65590094582841],[-122.37677455072505,47.65604532623688],[-122.37673102115266,47.6560486580221],[-122.3767300672488,47.65608487461893],[-122.37672812335001,47.65612191820562],[-122.37672585345291,47.65614799841112],[-122.3765328540931,47.65614045954533],[-122.37653145442717,47.65609330704523],[-122.3765304723278,47.65599186479525],[-122.37637418025633,47.65599042670647],[-122.37636748201447,47.65593567671528],[-122.37628642749236,47.65593951674648],[-122.37622411775111,47.65595959816768]]],"type":"Polygon"} +},{ + "id": 907128265, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000167, + "geom:area_square_m":1390869.709509, + "geom:bbox":"-122.347019441,47.6694703611,-122.32577669,47.6856329268", + "geom:latitude":47.678245, + "geom:longitude":-122.337837, + "iso:country":"US", + "lbl:latitude":47.678231, + "lbl:longitude":-122.338562, + "lbl:max_zoom":18.0, + "mps:latitude":47.678231, + "mps:longitude":-122.338562, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Green Lake Park" + ], + "name:swe_x_preferred":[ + "Green Lake Park" + ], + "reversegeo:latitude":47.678231, + "reversegeo:longitude":-122.338562, + "src:geom":"mz", + "wof:belongsto":[ + 85822837, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c3e0e0dd4d61b9f4c79686bf7a2a5d5a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907128265, + "neighbourhood_id":85822837, + "region_id":85688623 + } + ], + "wof:id":907128265, + "wof:lastmodified":1566608549, + "wof:name":"Green Lake Park", + "wof:parent_id":85822837, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -122.34701944121849, + 47.66947036112583, + -122.32577669021191, + 47.68563292679674 +], + "geometry": {"coordinates":[[[[-122.34451418236581,47.68129510488929],[-122.34362509455195,47.68173964879622],[-122.34294250685058,47.68194189700404],[-122.3420071088894,47.68209358315991],[-122.34137508323997,47.68227055034175],[-122.34074305759053,47.68257392265348],[-122.34031328014892,47.68310482419901],[-122.34000990783719,47.68361044471855],[-122.33965597347351,47.68431831344592],[-122.33937788218776,47.68484921499144],[-122.33914719282571,47.6851209860207],[-122.33868265397336,47.68538643679346],[-122.3380885498629,47.68558236474479],[-122.33750708626543,47.68563292679674],[-122.33700146574589,47.68560764577077],[-122.33649584522634,47.68550652166686],[-122.33604078675874,47.68520314935513],[-122.33535819905735,47.68452056165374],[-122.33480201648584,47.68398966010822],[-122.33419527186238,47.68340819651073],[-122.33363908929088,47.68292785701716],[-122.33290593953754,47.68262448470544],[-122.33209694670626,47.68247279854957],[-122.33143964003085,47.68247279854957],[-122.3306053661736,47.68254864162751],[-122.32979637334232,47.68254864162751],[-122.32916434769288,47.68244751752359],[-122.32865872717333,47.68219470726382],[-122.32795085844597,47.68184077290014],[-122.32716714664066,47.68136043340657],[-122.32661096406916,47.68093065596495],[-122.32618118662755,47.68057672160126],[-122.32587781431582,47.68027334928954],[-122.32577669021191,47.67996997697781],[-122.32580197123789,47.67966660466607],[-122.32592837636777,47.67938851338032],[-122.32620646765352,47.67903457901664],[-122.32648455893928,47.67878176875687],[-122.32693961740686,47.67855423952307],[-122.32741995690044,47.67845311541916],[-122.32792557741999,47.67835199131525],[-122.32893681845908,47.67837727234123],[-122.33004918360209,47.67840255336721],[-122.3309340195113,47.67837727234123],[-122.33156604516074,47.67825086721135],[-122.33179357439454,47.67809918105548],[-122.33202110362834,47.67779580874375],[-122.33232447594006,47.67741659335409],[-122.33247616209593,47.67680984873063],[-122.33260256722581,47.67632950923706],[-122.33288065851156,47.67597557487338],[-122.33320931184927,47.67564692153567],[-122.33371493236882,47.67524242512003],[-122.33427111494032,47.67498961486026],[-122.33472617340792,47.67466096152255],[-122.33533291803137,47.674155341003],[-122.33573741444701,47.67375084458736],[-122.3364200021484,47.67324522406781],[-122.3372037139537,47.67261319841838],[-122.33801270678498,47.6721328589248],[-122.33864473243442,47.67198117276894],[-122.33917563397995,47.67182948661308],[-122.33955484936961,47.67172836250917],[-122.33980765962937,47.6715766763533],[-122.33993406475926,47.67132386609353],[-122.3400099078372,47.6710204937818],[-122.34000929040607,47.67020352854389],[-122.34001053143642,47.66989623571921],[-122.34001331308818,47.66974714483661],[-122.3400174680942,47.66947036112583],[-122.34005874720481,47.66949397923938],[-122.34007616483598,47.66951718432012],[-122.34009408302076,47.66954012586227],[-122.34011300642453,47.66956275437114],[-122.34013242861258,47.66958507619396],[-122.34015285777123,47.66960712742779],[-122.34017378521617,47.66962887268342],[-122.34019521019559,47.66965026809837],[-122.34021763967569,47.66967130766822],[-122.34024107541768,47.66969203418836],[-122.34026450072068,47.66971241793715],[-122.34028892927461,47.66973240268579],[-122.34031591949874,47.66975321062843],[-122.34034029097177,47.66977122538393],[-122.34036617067879,47.66978874881922],[-122.3403905402231,47.66980667795144],[-122.34041540679212,47.66982425759838],[-122.3404407691549,47.66984144530774],[-122.34046713280509,47.66985814840204],[-122.34049398975652,47.66987437360137],[-122.34052134177965,47.66989016405221],[-122.34054918710346,47.66990547660735],[-122.34057803371454,47.66992030454534],[-122.34060686491688,47.66993461849827],[-122.340636697406,47.66994844783302],[-122.34066651377346,47.66996172072341],[-122.34069732913655,47.66997446585464],[-122.34072863760552,47.66998669062196],[-122.34075993066256,47.66999840140298],[-122.34079222200192,47.67000954196437],[-122.34082449772518,47.67002012572237],[-122.34085726301949,47.67003010317239],[-122.340890520367,47.67003955991961],[-122.34092426832272,47.67004841034423],[-122.34153613223717,47.67023717910374],[-122.34251048881812,47.67053686447174],[-122.34254287093682,47.67055108843584],[-122.3425742455736,47.67056558230303],[-122.34260613641241,47.67058036940861],[-122.34263752725347,47.67059542004547],[-122.3426684186264,47.67061073455798],[-122.34269881124467,47.67062635540535],[-122.34272921010668,47.67064219060939],[-122.34275961768883,47.67065832542483],[-122.34278901708586,47.67067468803833],[-122.34281893267811,47.6706913435395],[-122.34284784007495,47.67070822648864],[-122.34287675444044,47.67072536660487],[-122.34290516932843,47.67074277024827],[-122.3429335904618,47.67076038824933],[-122.34296100463209,47.67077827615208],[-122.34298842505801,47.67079637876386],[-122.3430158524434,47.67081473819262],[-122.34304277962752,47.67083331834018],[-122.34306920505196,47.67085211922756],[-122.34309513100888,47.67087118399498],[-122.34312106247776,47.67089041996071],[-122.3431459864829,47.67090992653955],[-122.34317142367128,47.67092964005705],[-122.34319585195756,47.67094953891981],[-122.34321977847293,47.67096965817329],[-122.34324371299735,47.67099003458244],[-122.34326714431275,47.67101054611425],[-122.34329058259857,47.67103131481565],[-122.34331301019682,47.67105222536662],[-122.34333544527455,47.67107339272982],[-122.34335737714214,47.67109469521676],[-122.34337880777711,47.67111621879097],[-122.34339973644477,47.67113792029219],[-122.34342016211599,47.67115980008538],[-122.34344059328829,47.67118185072827],[-122.34346052250258,47.67120407964969],[-122.34347944174895,47.67122649323316],[-122.34349836475295,47.67124903557264],[-122.34351729450123,47.67127179156511],[-122.3435352118027,47.67129464696577],[-122.34355262786814,47.67131772345586],[-122.34357004694581,47.67134088519112],[-122.34358696354315,47.67136422521328],[-122.34360337640564,47.67138770036906],[-122.34361877908995,47.67141131737269],[-122.34363469320657,47.67143509887119],[-122.34364959591025,47.671458979766],[-122.34366349288929,47.67148317372749],[-122.34367638113541,47.67150759515732],[-122.3436882616964,47.67153224439292],[-122.34369913352194,47.67155712109751],[-122.34370899464234,47.67158213965899],[-122.34371784755425,47.67160738603398],[-122.34372568974811,47.67163277391548],[-122.3437330282075,47.67165829728395],[-122.34373884775809,47.67168392677964],[-122.34374314785784,47.67170966170802],[-122.3437469429649,47.67173548897016],[-122.34374972487916,47.67176137283573],[-122.34375149286447,47.67178727014429],[-122.34375173962857,47.67181323009002],[-122.34375297274391,47.67183819176419],[-122.3437557546667,47.6718640756295],[-122.34375853658204,47.67188995914387],[-122.34376182475297,47.67191579347775],[-122.34376561988435,47.67194162073907],[-122.3437694143052,47.67196740554139],[-122.3437737156875,47.67199318327111],[-122.34377852404218,47.67201895427897],[-122.34378383741172,47.67204463330332],[-122.34378915202031,47.67207035477931],[-122.34379446414619,47.67209599064949],[-122.34380079073502,47.67212161306901],[-122.3438071166055,47.67214719267847],[-122.34381394768843,47.67217272276987],[-122.34382077930773,47.67219825320478],[-122.34382811539545,47.67222369061013],[-122.34383595899035,47.67224912163702],[-122.34384380010489,47.6722744670578],[-122.34385265568825,47.67229979902717],[-122.34386100182105,47.67232505211228],[-122.34387036065046,47.67235024859902],[-122.34387971877449,47.67237540262613],[-122.34388907513392,47.67240051350574],[-122.34389944399726,47.67242552532086],[-122.34390981288081,47.67245053748582],[-122.34392017751243,47.67247542089755],[-122.34393155713849,47.67250029084985],[-122.34394293428721,47.67252507519545],[-122.34395430894835,47.6725497735835],[-122.34396669685289,47.6725744160666],[-122.34397908228088,47.67259897294275],[-122.3439914652221,47.67262344386117],[-122.34400435390504,47.67264786525279],[-122.34401774761587,47.6726721946586],[-122.344031647579,47.67269647417953],[-122.34404554330312,47.67272062529734],[-122.34405943831538,47.67274473360374],[-122.34407434406792,47.67276869969643],[-122.34408924860017,47.67279262333525],[-122.34410414888379,47.67281641821979],[-122.34412006293806,47.67284015719035],[-122.34413597450812,47.67286381020224],[-122.34415188235984,47.67288733480359],[-122.34416829470391,47.67291076672292],[-122.34418521208079,47.67293410665484],[-122.3442021257399,47.67295731817591],[-122.34421954565646,47.6729804798103],[-122.34423746883316,47.67300350631],[-122.34425538829259,47.67302640439858],[-122.34427381277662,47.67304921014802],[-122.34429223478801,47.67307193028892],[-122.34431116005059,47.67309451494367],[-122.34433008159631,47.67311697118694],[-122.34435001514687,47.67313932836622],[-122.34436943800196,47.67316156385798],[-122.34439354458372,47.67318780751118],[-122.34489790585654,47.67369168817437],[-122.3456401505768,47.6741735578627],[-122.34566607664232,47.674192536437],[-122.34569200646351,47.67421164341366],[-122.3457179400406,47.67423087879264],[-122.34574337162974,47.6742502921071],[-122.34576880698505,47.67426983417496],[-122.34579373733115,47.6742894682293],[-122.34581867268905,47.67430927384004],[-122.34584310430344,47.67432921494211],[-122.34586753966359,47.67434928409634],[-122.34589147179926,47.67436948873545],[-122.34591540769091,47.67438982177777],[-122.34593934609282,47.67441024042053],[-122.3459622749946,47.67443084373888],[-122.34598571340803,47.67445152627745],[-122.34600864982153,47.67447238640293],[-122.34603108124394,47.67449333921867],[-122.34605351642212,47.6745144204382],[-122.34607595412052,47.67453558760965],[-122.34609738157963,47.67455689629802],[-122.34611931927766,47.67457832701623],[-122.34614075372846,47.67459989251978],[-122.34616168370603,47.67462155070787],[-122.34618261692978,47.67464333765803],[-122.34620304565928,47.67466521659145],[-122.34622347815429,47.67468722428024],[-122.3462439131485,47.67470931722001],[-122.34626333615441,47.67473150958477],[-122.34628326990966,47.6747538236216],[-122.34630270042565,47.67477627279604],[-122.34632162470035,47.67479877186062],[-122.34634004697064,47.67482144851522],[-122.3463589775087,47.67484416158725],[-122.34637689604504,47.67486697373494],[-122.34639481833564,47.67488991428804],[-122.34641274365391,47.67491294043686],[-122.34643016344535,47.67493605893561],[-122.34644707875846,47.67495927012148],[-122.34646399657916,47.67498256691032],[-122.34648091689732,47.67500594895128],[-122.3464968252197,47.67502943042042],[-122.34651324304639,47.67505299075898],[-122.34652864938533,47.67507665016842],[-122.34654456523899,47.67510038879812],[-122.34655946855456,47.67512422616207],[-122.34657437365982,47.67514810667075],[-122.34658928250757,47.67517211523479],[-122.34660368510748,47.6751961736916],[-122.34661758321447,47.67522032448633],[-122.34663148206128,47.67524451808897],[-122.34664487641437,47.67526880402978],[-122.34665827328301,47.67529317592531],[-122.34667116440049,47.67531759700569],[-122.34668354925687,47.67534206762877],[-122.34669593787444,47.67536666700956],[-122.34670781898362,47.67539127313056],[-122.34671970310622,47.67541596449804],[-122.3467310817032,47.67544074856916],[-122.34674139517202,47.67546379014411],[-122.34675479088969,47.67548811922534],[-122.34676768459384,47.67551262590005],[-122.34677906074185,47.67553732436083],[-122.34678993540395,47.67556220075954],[-122.34680030702107,47.67558725511702],[-122.34680916087019,47.67561245844494],[-122.34681751020774,47.67563775376193],[-122.34682484950433,47.67566323412431],[-122.34701944121849,47.67420547450223],[-122.34683750458099,47.6757143933574],[-122.34684231355249,47.67574012142928],[-122.34684661801762,47.6757659418417],[-122.34684940044468,47.67579178282458],[-122.34685167710612,47.67581767299458],[-122.34685344750208,47.67584361306032],[-122.34685325132949,47.67588915890003],[-122.34685298642366,47.67591491155635],[-122.3468506974512,47.67594086272953],[-122.34684840545363,47.67596672795324],[-122.34684458942162,47.67599252778424],[-122.34684026513253,47.67601829154764],[-122.34683492330329,47.67604398354052],[-122.34682856442123,47.67606960270335],[-122.34682169479593,47.67609510054364],[-122.34681380636978,47.67612048345942],[-122.34680489965061,47.67614575109273],[-122.34679548217491,47.67617089705221],[-122.34678504392097,47.67619584247417],[-122.34677409437903,47.67622066587801],[-122.34676161652817,47.67624529548572],[-122.34674913295244,47.67626971107146],[-122.34673512054576,47.67629393286728],[-122.34672059487367,47.67631794703157],[-122.34670555593566,47.67634175356418],[-122.34668898619948,47.67636528104411],[-122.3466724089492,47.67638855100349],[-122.34665480967502,47.6764115779707],[-122.3466361878359,47.67643436125046],[-122.34661704898798,47.67645680848872],[-122.3465968868568,47.6764789695799],[-122.34590637353985,47.67735744307429],[-122.34577962930618,47.67751893351403],[-122.34576919226592,47.6775439644539],[-122.34575926203085,47.67756894584582],[-122.34574882621645,47.67759401958655],[-122.34573889793396,47.67761908658899],[-122.34572947718414,47.67764414685334],[-122.34571955011822,47.67766925630597],[-122.34571013059566,47.67769435937139],[-122.3457007123199,47.67771950558959],[-122.34569129402477,47.67774465145614],[-122.34568187644675,47.67776984013152],[-122.34567296692278,47.67779502206226],[-122.34566355057238,47.67782025353883],[-122.34565464227654,47.67784547827079],[-122.34564624225288,47.67787073942564],[-122.34563733466612,47.67789600696586],[-122.34562893586128,47.67792131057129],[-122.34562053705849,47.6779466145269],[-122.34561213823729,47.67797191813106],[-122.34560374013404,47.6779972645442],[-122.34559585009825,47.67802260456398],[-122.34558796077064,47.678047987042],[-122.34558007196503,47.67807336986341],[-122.3455721838676,47.67809879514301],[-122.34556429629217,47.67812422076602],[-122.3455569157265,47.67814963930805],[-122.34554953640938,47.67817510100313],[-122.34554215708505,47.67820056269771],[-122.34553477898881,47.67822606684369],[-122.34552790792424,47.67825156461056],[-122.34552103737242,47.67827706237011],[-122.34551061624731,47.67830264972119],[-122.34550729820997,47.6783281431494],[-122.34548957410233,47.67859109745098],[-122.3453887669469,47.67943483325644],[-122.34535024989415,47.6798030310293],[-122.34534643658328,47.67982895956504],[-122.34534211621401,47.67985489447837],[-122.34533728652157,47.67988079368202],[-122.34533194904333,47.67990665645349],[-122.34532660979484,47.67993247642886],[-122.34532076225025,47.67995826032973],[-122.34531440464387,47.67998396536014],[-122.34530753946582,47.68000967712556],[-122.34530016474402,47.68003531001347],[-122.34529278876958,47.68006090009813],[-122.34528490449581,47.68008645410789],[-122.34527651015715,47.68011192924681],[-122.34526760574265,47.68013732516394],[-122.34525870007406,47.6801626782776],[-122.34524928611398,47.68018799566684],[-122.34523936083107,47.68021319103129],[-122.34522892724507,47.68023835032015],[-122.34521798359042,47.68026343073753],[-122.34520703743452,47.68028842554832],[-122.34519558119887,47.68031334113659],[-122.34518361542271,47.68033817819695],[-122.345171645889,47.68036288649692],[-122.34515916804899,47.68038755872068],[-122.34514567132264,47.68041211600409],[-122.34513267966254,47.68043658094579],[-122.34511962642216,47.68045894750588],[-122.34510510309475,47.68048308986134],[-122.3450900666831,47.68050706774525],[-122.34507400868422,47.68053080226552],[-122.34505743509888,47.68055428635734],[-122.34503984116967,47.68057756988752],[-122.34502122387525,47.68060056690619],[-122.34500259857383,47.68062330711219],[-122.34498295042556,47.68064576079912],[-122.34470204926049,47.6809693600197],[-122.34468291165201,47.68099193568787],[-122.34466429031654,47.68101480423955],[-122.34464669232062,47.68103795930033],[-122.34462961132422,47.68106145005491],[-122.34461355241402,47.68108518416579],[-122.34458788026816,47.68112738330186],[-122.3445743793452,47.68115181210858],[-122.34456139221055,47.68117644819537],[-122.34454993299019,47.68120127846311],[-122.34453898879487,47.68122635846341],[-122.3445290629795,47.68125155411568],[-122.34452015727919,47.68127690716351],[-122.34451418236581,47.68129510488929]]]],"type":"MultiPolygon"} +},{ + "id": 907129177, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000261, + "geom:area_square_m":2174288.044961, + "geom:bbox":"-122.409860763,47.6674845638,-122.392956303,47.6976841727", + "geom:latitude":47.681318, + "geom:longitude":-122.400096, + "iso:country":"US", + "lbl:latitude":47.681298, + "lbl:longitude":-122.398111, + "lbl:max_zoom":18.0, + "mps:latitude":47.681298, + "mps:longitude":-122.398111, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "name:eng_x_preferred":[ + "Sunset Hill" + ], + "name:eng_x_variant":[ + "Sunset Hl" + ], + "name:fra_x_preferred":[ + "Sunset Hill" + ], + "reversegeo:latitude":47.681298, + "reversegeo:longitude":-122.398111, + "src:geom":"seagv", + "wof:belongsto":[ + 85804333, + 102191575, + 85633793, + 101730401, + 102086191, + 85688623 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7641284" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"d1f9fc3296e1d01032f5b0c4751b380d", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086191, + "locality_id":101730401, + "microhood_id":907129177, + "neighbourhood_id":85804333, + "region_id":85688623 + } + ], + "wof:id":907129177, + "wof:lastmodified":1566608545, + "wof:name":"Sunset Hill", + "wof:parent_id":85804333, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85851561 + ], + "wof:tags":[] +}, + "bbox": [ + -122.40986076265162, + 47.66748456380363, + -122.39295630346368, + 47.6976841727247 +], + "geometry": {"coordinates":[[[[-122.40210719615096,47.6976819127381],[-122.40202704602105,47.6976841727247],[-122.40219545952438,47.69720859369684],[-122.40265748348672,47.69601565324322],[-122.40236252143545,47.69527640401405],[-122.40113151290755,47.69541566525751],[-122.40109458572735,47.6954201151028],[-122.40104953366303,47.69542450506524],[-122.40100342921404,47.69542766700719],[-122.4009577944702,47.69542957999197],[-122.40091161505681,47.69543025797192],[-122.40086590587489,47.69542968698791],[-122.40082015869935,47.69542787403024],[-122.40077437276167,47.69542477628964],[-122.40072905835675,47.69542047238805],[-122.40068370777901,47.695414969308],[-122.40063882615748,47.69540817446349],[-122.40059441684957,47.69540021626852],[-122.4005504785668,47.69539105192152],[-122.40050701364251,47.69538072421086],[-122.40046452693736,47.69536918337537],[-122.40042251436728,47.69535652198691],[-122.40038148313346,47.6953427334233],[-122.40034092550889,47.69532782396445],[-122.40030186003401,47.69531186594897],[-122.40026326896448,47.69529483055081],[-122.40022617002606,47.69527674589674],[-122.40018954988865,47.69525771226078],[-122.40015492985327,47.69523766555871],[-122.40012079043127,47.69521671267157],[-122.40008814650663,47.69519483929741],[-122.40005699886102,47.6951720885976],[-122.40002734930452,47.69514850336833],[-122.39999869271233,47.69512417619394],[-122.39997153548852,47.69509905694337],[-122.39994638740997,47.69507322460124],[-122.39992223487496,47.69504673592098],[-122.39990009406367,47.69501961975546],[-122.3995755299138,47.69454310762969],[-122.39929507368856,47.69357597620747],[-122.39856130305925,47.69195235181679],[-122.3985018002645,47.69073557071588],[-122.39830850368419,47.69057091730695],[-122.39723230343704,47.69057108107231],[-122.39526425559819,47.69057399311993],[-122.39456990439092,47.69057750929129],[-122.39300241535642,47.69058132055665],[-122.39301066505074,47.69029809133717],[-122.39304618731759,47.68899564758119],[-122.39303274662132,47.68766863862898],[-122.39303057758862,47.68634507429638],[-122.3930228270559,47.68502158628398],[-122.39301615804834,47.68373411554943],[-122.39301453079068,47.68242858089091],[-122.39300195771972,47.68113039427877],[-122.39298377112864,47.67981424642591],[-122.39297500980646,47.67925177559714],[-122.39297150298634,47.67810342002372],[-122.39296126335915,47.67750857902157],[-122.39295961840902,47.67692955844702],[-122.39295630346368,47.67632870998336],[-122.39295655054526,47.67591418595407],[-122.39567368378326,47.67587961442324],[-122.39826401749875,47.6758644570828],[-122.39836900529026,47.67582861092068],[-122.39837349789158,47.67409038855582],[-122.39834327434251,47.67202505374682],[-122.39833757904937,47.67109441988498],[-122.3983027313344,47.66956637606422],[-122.39830595945782,47.66945450760386],[-122.39832733528478,47.66856343268898],[-122.39833785211165,47.6681206608513],[-122.39832732559971,47.66748456380363],[-122.40101294758784,47.66768160948311],[-122.40194148182799,47.66804997273742],[-122.40200434166536,47.66784619508945],[-122.40193796846179,47.66756364927326],[-122.40205140192477,47.66760651707721],[-122.40214839524724,47.66765946538751],[-122.40221048438531,47.66769918390058],[-122.40228208688984,47.66768423034648],[-122.40234599545145,47.66768335009191],[-122.40243157741921,47.66776169102457],[-122.40247786720275,47.66781589448585],[-122.40256980584492,47.66786946908672],[-122.40262276579664,47.66790931314455],[-122.40265781085505,47.66792721097828],[-122.4027508273513,47.6679492368683],[-122.40277004641895,47.66798076271785],[-122.40277010797681,47.66801640840984],[-122.40278206955253,47.66804285022852],[-122.40286880950535,47.66805866446171],[-122.40292272309932,47.66806284870452],[-122.40293972347158,47.66808810705847],[-122.40294472504887,47.6681193145929],[-122.40295306772079,47.66816033064117],[-122.4030000459053,47.66817009452308],[-122.40307108017819,47.66816992961026],[-122.40315320806069,47.66816742690411],[-122.40325973993872,47.66816651575957],[-122.40331752097491,47.66816434847637],[-122.40334350259873,47.66818455553838],[-122.40340747376321,47.66821932073056],[-122.40345046913939,47.66823162428447],[-122.40350765765115,47.66824343244568],[-122.40355425950025,47.66827432345276],[-122.40356618013386,47.66829939481949],[-122.4035610456779,47.66833099932222],[-122.40359021213877,47.66835583261044],[-122.40360406581915,47.66841129668305],[-122.40360493531243,47.66844007654436],[-122.4036293607213,47.66847594340033],[-122.40370147629653,47.66847794841539],[-122.40377057412154,47.66848085173812],[-122.40383823901151,47.66850348353088],[-122.40388771876985,47.6685288509693],[-122.4039170338033,47.66855860923033],[-122.40394389823797,47.66857443424911],[-122.40401559622011,47.66859619605101],[-122.40412092857207,47.66862272121222],[-122.40415958129969,47.66865920605618],[-122.40423262902614,47.66872563593832],[-122.40436357229737,47.6688272143281],[-122.40433454730565,47.66887422974727],[-122.4043605548018,47.66889525051129],[-122.40440247389475,47.66887192165448],[-122.40452120734126,47.66900601592937],[-122.40445773275785,47.6690548774673],[-122.40448570709938,47.66910740481134],[-122.40453544989802,47.66917501304042],[-122.40453133032963,47.6692066035946],[-122.40450466925722,47.66923109264],[-122.40450488089931,47.66927166372866],[-122.40453909567638,47.66929561322771],[-122.4046054984629,47.66931003564695],[-122.4046471045702,47.66934348044781],[-122.4047348509735,47.66945962130224],[-122.40481760764979,47.6695785731599],[-122.40490020853753,47.66969234308917],[-122.40495511984879,47.66979659760372],[-122.40500069458894,47.66989412585488],[-122.40504172261409,47.66997556457265],[-122.40507013760954,47.67004261009465],[-122.40508017660466,47.67010609571828],[-122.40511725768449,47.67015768334277],[-122.40517274368408,47.67018022514784],[-122.40520486038173,47.67023543705569],[-122.40523334537028,47.67027124792754],[-122.40529344485294,47.67031210630718],[-122.40533692298106,47.67034029784614],[-122.40538587646542,47.67041528586874],[-122.40543831645134,47.67047133162631],[-122.40548375805642,47.67049731079353],[-122.40552879240738,47.67050984272611],[-122.4055674254915,47.67051205142049],[-122.40560056886503,47.6705340874534],[-122.40565916750195,47.67062595159714],[-122.40569972473631,47.67069175818468],[-122.40577811264434,47.67069971647837],[-122.40583196313376,47.67070171538511],[-122.40583171969362,47.67072721101304],[-122.40582308459697,47.67077724424524],[-122.40581237867066,47.67082593512047],[-122.40581184254874,47.67087529954591],[-122.40586058212665,47.67094317835758],[-122.40591090230275,47.67099621084931],[-122.40594443618558,47.67103113757668],[-122.40595761275206,47.67106411728227],[-122.40595584723489,47.67110638670666],[-122.40598695584812,47.6711953309425],[-122.40601745212278,47.67126401855053],[-122.40603620816252,47.6713136736553],[-122.40607031386202,47.67136748693935],[-122.40613176925368,47.6714195513306],[-122.406166035448,47.67144512787058],[-122.40620594938819,47.67145610203173],[-122.40620597183396,47.67149037734868],[-122.40620564905798,47.67158031285643],[-122.40619399498738,47.67163120173058],[-122.40618681389667,47.67169573930771],[-122.40618300788825,47.67177119851426],[-122.40620176426913,47.67182085359077],[-122.40620675183321,47.6718515041923],[-122.40619253524272,47.67191832377702],[-122.40619716020736,47.67200407779806],[-122.40619896267998,47.67203010254224],[-122.40620525503387,47.67207033241671],[-122.40621269404068,47.6721149165526],[-122.40621509404262,47.67216068463234],[-122.40622196925086,47.67218663898728],[-122.40626762740534,47.67221972755316],[-122.40630408121102,47.67225050069781],[-122.40633280837076,47.67229423387908],[-122.40634822375503,47.67231732877599],[-122.40639251883495,47.67235566295908],[-122.40642941429111,47.67236749266207],[-122.40647653823581,47.67238192334177],[-122.40652436940717,47.67238618993716],[-122.40657016002197,47.67239009896154],[-122.40663022342443,47.67239612453918],[-122.40676718641973,47.67239436176716],[-122.40688299876476,47.67239798900964],[-122.40693437173489,47.67240190677252],[-122.40693983432988,47.67243147958518],[-122.40696229816197,47.67257002884177],[-122.40695915158445,47.67263369681667],[-122.40695873197707,47.67283772889458],[-122.4069593553773,47.6729085852294],[-122.40696040574822,47.67294327490296],[-122.4071497705862,47.67294584306283],[-122.40731977852987,47.67294597928643],[-122.40750363549981,47.67295097980997],[-122.40760056362966,47.67295101137409],[-122.40763279355473,47.67297631554296],[-122.40763245995011,47.67301556606709],[-122.4076308446347,47.67304600812275],[-122.40767397007032,47.67306242152689],[-122.40770445737475,47.67309721823869],[-122.40770271007582,47.67314004446433],[-122.40778246298605,47.6731929263503],[-122.40783002401119,47.67322174638168],[-122.40784092852228,47.67326341184168],[-122.4078014529491,47.67338422259266],[-122.40777647288986,47.67363173842996],[-122.40777759544544,47.67373579266282],[-122.40777867881799,47.67377155308078],[-122.40784276603831,47.67377632277216],[-122.40787878995012,47.67377608181492],[-122.40796401087918,47.67377490395322],[-122.40809403783767,47.67377859080882],[-122.40813057833567,47.67377864272216],[-122.40820567867917,47.67377841885887],[-122.4082396567325,47.67379440149942],[-122.40826957691226,47.67381044022754],[-122.40829251934207,47.6738306882367],[-122.4083047179104,47.67386479559038],[-122.40831339798422,47.67391677452613],[-122.40830841511635,47.67395330427829],[-122.4082847059782,47.67397475458228],[-122.40826103834912,47.67399757524867],[-122.40820246885799,47.67400742483991],[-122.40812130546318,47.67400854678767],[-122.40808648524271,47.67403177884871],[-122.40807733657843,47.6740648100061],[-122.40807553893042,47.67410596555229],[-122.408086739282,47.67414064338551],[-122.40808771905455,47.67417297753061],[-122.40808761816974,47.67420314174119],[-122.40808548779088,47.67423333365364],[-122.40808226039826,47.67426079884677],[-122.40809314545285,47.67428507016668],[-122.40811615473204,47.67430750251185],[-122.40814914327409,47.67432431279195],[-122.4082019826068,47.67432632460873],[-122.40829739183604,47.67432637661216],[-122.40834609016885,47.6743257033752],[-122.40844753750092,47.67432404391545],[-122.40854908294824,47.67432563873157],[-122.40860192281718,47.67432765035571],[-122.40864192204366,47.6743413644038],[-122.40866902380691,47.67436485442487],[-122.40866918029262,47.67440349800191],[-122.4086304020647,47.67443008385239],[-122.40856455511556,47.67446775492774],[-122.40851153969844,47.67449342356753],[-122.40847217201207,47.67450056600728],[-122.40843058322947,47.67450139792257],[-122.4083832899062,47.67451494795485],[-122.40834327242024,47.67453413876822],[-122.40832295563668,47.67456706742188],[-122.40831434695698,47.67461791442484],[-122.4083065096923,47.67472770510449],[-122.4083009760697,47.67481304250687],[-122.40831158453034,47.67489515760128],[-122.40832508806501,47.67493884385545],[-122.4083270500463,47.67497009321961],[-122.40835125723846,47.67499855008916],[-122.40839840799526,47.67504725528398],[-122.40846031993625,47.67508067532038],[-122.40850688932312,47.67511019392585],[-122.40854410265653,47.67513242980449],[-122.40860569985877,47.67515544289293],[-122.40864762928578,47.67516583136481],[-122.40868649835113,47.67517570512825],[-122.40873983709768,47.67519416180269],[-122.40878584976937,47.67520530769175],[-122.40885042444721,47.67522609425315],[-122.40890550198912,47.67523492986341],[-122.40896712361003,47.67525875600238],[-122.4089874805239,47.67529412140276],[-122.40898734638603,47.67532317170714],[-122.40897829805596,47.67535950079736],[-122.40895902104309,47.67539322911502],[-122.40898238774614,47.6754274385188],[-122.40901760679253,47.67545081620242],[-122.40906065881637,47.6754647448147],[-122.40909359905966,47.67547992764135],[-122.40912350307104,47.67549540937394],[-122.40916487549146,47.67552088677628],[-122.40922173282561,47.67555493298659],[-122.40925256103502,47.67556740274831],[-122.40930845332541,47.6756030904784],[-122.40934359677868,47.6756239837959],[-122.40938471224221,47.67564098140321],[-122.40944813939952,47.67565737024343],[-122.40949139175413,47.6756778944164],[-122.40957584155888,47.67571811404277],[-122.40961068694689,47.67572915718934],[-122.409659943867,47.67574685598849],[-122.40969868832525,47.67575261796252],[-122.40978368834867,47.67577749149176],[-122.40981557290779,47.67579131742986],[-122.40984899558313,47.67582238871328],[-122.40985799307276,47.67585131301515],[-122.40986076265162,47.67587569612903],[-122.40985761872014,47.67590590211108],[-122.40984961806363,47.67597674970396],[-122.40984626641574,47.67603356522191],[-122.40985572160328,47.67614448769906],[-122.40985547136791,47.67623660715601],[-122.40985512187478,47.67632547191132],[-122.40985008208527,47.67639353629611],[-122.40983723311153,47.67650532441628],[-122.40983055461106,47.67655284594249],[-122.40982953557726,47.67655749733816],[-122.40650725357756,47.67654021030057],[-122.40650285005415,47.67686635484399],[-122.4064764289139,47.67714209364034],[-122.40638395492299,47.67740004151772],[-122.40621662103467,47.67774100514586],[-122.40601846248271,47.67812050986829],[-122.40511133666708,47.67959699416743],[-122.40403687696312,47.68139065883874],[-122.40346441892414,47.68237196002313],[-122.40330148855919,47.68270696194122],[-122.40318259342803,47.68307753677814],[-122.40310333000723,47.68332952616359],[-122.40304608420332,47.68360819536069],[-122.40300645249296,47.68397579925846],[-122.40289196088514,47.68568038024961],[-122.40278187280072,47.68729893950998],[-122.40365725937399,47.68748200838769],[-122.40363849083376,47.68755529000876],[-122.40363064164779,47.687597900086],[-122.40360904059855,47.6876557810415],[-122.40359428695244,47.68770508403199],[-122.40359081174044,47.68775804503752],[-122.4035798180508,47.687797399201],[-122.40356790926542,47.68784006521111],[-122.40355458886972,47.68786959723809],[-122.40354065054666,47.68791229121003],[-122.40352701894261,47.68796513488661],[-122.40352381236683,47.68799341388272],[-122.40351861820662,47.68802309085319],[-122.40350964615124,47.68806216023273],[-122.40349100671781,47.68811725812407],[-122.40347665794359,47.68817996621873],[-122.40346054112268,47.68821776309772],[-122.40345258425599,47.68825681813287],[-122.40344351245862,47.68829258999241],[-122.40343546368763,47.68832860467516],[-122.40343341338237,47.68836153756235],[-122.40343125565155,47.68839091577179],[-122.40342160778894,47.68844121958526],[-122.40340831103676,47.68853874575953],[-122.40340367146268,47.68858679569967],[-122.40339878390591,47.68862662272119],[-122.40339372617531,47.68869442962762],[-122.40338469922283,47.68883247093108],[-122.4033789617627,47.68894497397872],[-122.4033730546292,47.6890854572539],[-122.4033721670974,47.68919048142596],[-122.40336725810928,47.68926321337535],[-122.40335720921949,47.68933383126914],[-122.40334039166011,47.68938204897943],[-122.4033135740481,47.68943533119966],[-122.40327067726304,47.68949406246215],[-122.40324802290489,47.6895171249045],[-122.4032157921804,47.6895592568904],[-122.40321446196999,47.68961604422061],[-122.40321970571033,47.68965517465315],[-122.40321966796185,47.68968752279778],[-122.4032153143214,47.68971144714353],[-122.40321521057791,47.68974161132947],[-122.40321301901837,47.68976987597716],[-122.40321274911079,47.68979455834634],[-122.40322419857952,47.68983745918703],[-122.40324012544068,47.68986054749371],[-122.40326034310309,47.68989124531048],[-122.40328894494317,47.68993061131598],[-122.4033146058236,47.69000703528176],[-122.40334424363556,47.69008066222504],[-122.40335513755181,47.69010519079333],[-122.40337416716166,47.69013016393417],[-122.40339267898524,47.69017159652324],[-122.40340590072965,47.69020594720867],[-122.40342338099386,47.69024683734671],[-122.40343926664391,47.6902685549061],[-122.40348058533466,47.69032556856566],[-122.40352332587196,47.69039601614184],[-122.40354291924579,47.69043961902587],[-122.40359526485167,47.69052552945259],[-122.40369251836526,47.69065280877081],[-122.40372535415203,47.69069785735893],[-122.40374440098692,47.69072338721509],[-122.40378013292508,47.69076346878277],[-122.40380556692448,47.69079876480468],[-122.40382289881222,47.69083472948454],[-122.40384419804708,47.69086759787138],[-122.40390973038129,47.69095306951954],[-122.40398242539075,47.69104037036478],[-122.40401975208049,47.69109962408057],[-122.40405147520755,47.69114143149815],[-122.40407467225873,47.69116990325011],[-122.40410023874091,47.69120956782322],[-122.40412995697906,47.69125221713424],[-122.40415313003223,47.69127987492198],[-122.4042310938113,47.69133993973362],[-122.40429460114871,47.69139197743772],[-122.40438427660584,47.69147000370514],[-122.4044823944327,47.69155858164007],[-122.40454274979726,47.69160710650835],[-122.40462627877008,47.69168328938643],[-122.40469538359042,47.69175251595314],[-122.40477881327725,47.69182540120615],[-122.40485517255865,47.69189949756754],[-122.40497094288925,47.69200098511655],[-122.40505225248283,47.69207090026768],[-122.40513094071459,47.6921548185308],[-122.40520733339022,47.692229985759],[-122.40532162638306,47.69231615504157],[-122.40544210856601,47.69240553772606],[-122.4055531919185,47.69248626695343],[-122.4056246768662,47.69256698537777],[-122.40570802370331,47.69267059055852],[-122.40580042737068,47.692805047423],[-122.40583110926528,47.69287947365534],[-122.40585752443245,47.69294710335382],[-122.40588319058074,47.69302352673063],[-122.40589705142933,47.69311245215366],[-122.40590759371726,47.69319238344915],[-122.40591107300966,47.69327378279076],[-122.40592144033151,47.69334793230023],[-122.40592083508953,47.69342857442319],[-122.40591827453218,47.69351168531454],[-122.40590454946134,47.69359495025711],[-122.40588060080226,47.69367591447487],[-122.40576705911651,47.69381595472188],[-122.40561484944787,47.69395322941451],[-122.40551383152761,47.6940374416068],[-122.40542055044054,47.69410890773873],[-122.40528119663274,47.69420131748598],[-122.40519591911664,47.69426885995647],[-122.40510436890477,47.69433044775019],[-122.40496969886676,47.69440989669361],[-122.40486101077073,47.69447557650936],[-122.40475119093152,47.69453741592452],[-122.40461629519061,47.6946094551407],[-122.40449381185198,47.69468903522496],[-122.40439640260882,47.69475837252227],[-122.40428521493789,47.69484216675077],[-122.40419184006375,47.69491063397619],[-122.40405774736512,47.69507644824201],[-122.40405517546161,47.69515930227986],[-122.40404336927713,47.6952389843421],[-122.40402063048444,47.69532648639238],[-122.40400117768132,47.69542191256638],[-122.40397660782027,47.69551603761268],[-122.40395084870192,47.69560439554716],[-122.40392013099596,47.69569667770158],[-122.403875320013,47.69579300994677],[-122.40385121697693,47.69586900553314],[-122.40383006123351,47.6959417044344],[-122.40379703051958,47.69602467806835],[-122.40374911603493,47.69611912507085],[-122.40370410499246,47.69620886187014],[-122.40365281348673,47.69629238714678],[-122.40359251962026,47.69638040651144],[-122.4035238113045,47.69649240648057],[-122.40346013255467,47.69656924692138],[-122.40333504381222,47.69673082337917],[-122.40326911020981,47.69680028271318],[-122.40320129594906,47.69687469535537],[-122.40312447940191,47.6969536444968],[-122.40303597085924,47.69704890753054],[-122.40296984622884,47.69711207127809],[-122.40288034333257,47.69717444290572],[-122.4028013425161,47.69721473378423],[-122.40274042172055,47.69724847727129],[-122.40268368426032,47.69728627593821],[-122.40261617187767,47.69733711943407],[-122.40252720636063,47.69741730697079],[-122.40243662098077,47.69747750827133],[-122.40232330390255,47.69755833062079],[-122.40219626089151,47.69762177546109],[-122.40210719615096,47.6976819127381]]]],"type":"MultiPolygon"} +},{ + "id": 957665791, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":148542.388738, + "geom:bbox":"-87.5887629874,41.8024848761,-87.5836720182,41.8073903256", + "geom:latitude":41.804572, + "geom:longitude":-87.586086, + "iso:country":"US", + "lbl:latitude":41.80448, + "lbl:longitude":-87.586134, + "lbl:max_zoom":18.0, + "mps:latitude":41.80448, + "mps:longitude":-87.586134, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Indian Village" + ], + "name:fra_x_preferred":[ + "Indian Village" + ], + "reversegeo:latitude":41.80448, + "reversegeo:longitude":-87.586134, + "src:geom":"mz", + "wof:belongsto":[ + 85865719, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q3150102" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5546b15b24832304f99d6c566958cfa0", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957665791, + "neighbourhood_id":85865719, + "region_id":85688697 + } + ], + "wof:id":957665791, + "wof:lastmodified":1566624177, + "wof:name":"Indian Village", + "wof:parent_id":85865719, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783551 + ], + "wof:tags":[] +}, + "bbox": [ + -87.5887629873685, + 41.8024848761027, + -87.5836720182234, + 41.8073903256256 +], + "geometry": {"coordinates":[[[[-87.5848892917812,41.8025155854611],[-87.58732412778291,41.8024848761027],[-87.58734107247849,41.8025477524168],[-87.5873945263688,41.8027360824863],[-87.58744620025909,41.802916634665],[-87.5875462733576,41.8032502474713],[-87.5876303428452,41.8035375703911],[-87.58775763562559,41.8039468269936],[-87.58784619922891,41.8042168073524],[-87.5878586612955,41.8042491609118],[-87.5879417295114,41.804464878632],[-87.58805594067999,41.8047373029786],[-87.58821148120489,41.8050831576798],[-87.5882859276487,41.80523915865],[-87.5883971129666,41.8054722372605],[-87.5884862186013,41.8056420273636],[-87.58854801772149,41.8057582600811],[-87.58870769961911,41.8060585897852],[-87.5887629873685,41.8061564075244],[-87.5885355713138,41.8062577510616],[-87.5882637508026,41.8064187786999],[-87.5880492489985,41.8065457643824],[-87.58796868464751,41.8064776776039],[-87.5877195852344,41.8066465353427],[-87.58712326473049,41.8070507367659],[-87.587123262183,41.8070509562913],[-87.5869023557227,41.8071993136996],[-87.58661793318009,41.8073903256256],[-87.5865878887796,41.8073609556629],[-87.5865330932039,41.8072911967381],[-87.5864421324316,41.8071550930746],[-87.5863278311222,41.8069948525958],[-87.5861968337416,41.8068226484153],[-87.5860819258077,41.8066926179279],[-87.5859336128231,41.8065333907139],[-87.5858299589964,41.8064323855661],[-87.5858118740794,41.8063915977285],[-87.58580076425891,41.8063502515388],[-87.5857963181505,41.806344596842],[-87.58577506603319,41.8063175372035],[-87.5856375572809,41.8061977053692],[-87.5855124338415,41.8060947215184],[-87.58532507852431,41.8059592517358],[-87.585123142752,41.8058223419823],[-87.5848893982927,41.8056704878694],[-87.584731751959,41.8055699257582],[-87.5847128594545,41.8055578513184],[-87.5845619118826,41.8054613804349],[-87.5844557490524,41.8053934810805],[-87.5843273595073,41.8053095857694],[-87.5843189858136,41.8053041139701],[-87.5842169825259,41.8052396375567],[-87.5841481459201,41.805197039854],[-87.5840879183647,41.8051593616671],[-87.58402343362479,41.805115171231],[-87.58395459728089,41.8050725734135],[-87.5839029603644,41.8050414353447],[-87.58384921377289,41.8050054203577],[-87.5838019290149,41.8049726898702],[-87.5837761956524,41.8049498262526],[-87.5837633858423,41.8049335316825],[-87.58375302622311,41.8048929363508],[-87.58370930590711,41.8047402669304],[-87.58370589901349,41.8046608105496],[-87.5837026429293,41.8045683859805],[-87.5837035688142,41.8044889578722],[-87.58370842361541,41.8043959040035],[-87.5837091490463,41.8043820010236],[-87.5837136071921,41.8041845910156],[-87.5837069644143,41.8041601222413],[-87.5836986281488,41.8038306449857],[-87.5836896881152,41.8034868935359],[-87.5836832894184,41.8032366286931],[-87.583678429195,41.8030305841684],[-87.5836748130487,41.8028437028033],[-87.5836720182234,41.8026775460783],[-87.58367447118211,41.802614992586],[-87.5837111801016,41.8025818194812],[-87.5837168016796,41.8025767391881],[-87.5837756031532,41.8025476768058],[-87.5838235604796,41.8025300973166],[-87.58403724270789,41.8025252986017],[-87.5840460983645,41.8025250997758],[-87.58425599329409,41.8025223522697],[-87.5846125655585,41.8025189139296],[-87.5848892917812,41.8025155854611]]]],"type":"MultiPolygon"} +},{ + "id": 907136929, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000095, + "geom:area_square_m":890002.280106, + "geom:bbox":"-73.9179272086,40.8920085376,-73.901837,40.9041375599", + "geom:latitude":40.898057, + "geom:longitude":-73.9117, + "iso:country":"US", + "lbl:latitude":40.897077, + "lbl:longitude":-73.912249, + "lbl:max_zoom":18.0, + "mps:latitude":40.897077, + "mps:longitude":-73.912249, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_variant":[ + "Riverdale Estates" + ], + "reversegeo:latitude":40.897077, + "reversegeo:longitude":-73.912249, + "src:geom":"mz", + "wof:belongsto":[ + 85844897, + 102191575, + 907157029, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"447f2b2cd93fb47918d017484f6867a3", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157029, + "microhood_id":907136929, + "neighbourhood_id":85844897, + "region_id":85688543 + } + ], + "wof:id":907136929, + "wof:lastmodified":1566608554, + "wof:name":"Hudson Hill", + "wof:parent_id":85844897, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782831 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91792720864798, + 40.8920085375681, + -73.901837, + 40.90413755987221 +], + "geometry": {"coordinates":[[[[-73.9142196105729,40.90413755987221],[-73.91400800000011,40.90384900000012],[-73.9102,40.9030630000001],[-73.90611,40.90167000000013],[-73.904113,40.901819],[-73.901837,40.90155600000011],[-73.901938,40.90121],[-73.90416,40.901109],[-73.905733,40.90045],[-73.90725696170588,40.8993894007568],[-73.90793930731648,40.89767503098074],[-73.90805377872057,40.89363904324254],[-73.90805475495816,40.89357499416372],[-73.90848679429811,40.89356692006514],[-73.90860284351717,40.8934894104431],[-73.90873716637566,40.89336934122196],[-73.90880883221769,40.89324591792188],[-73.90891965862011,40.893141615613],[-73.90904830107166,40.89303675254703],[-73.9091836586675,40.89293548724447],[-73.90938779163849,40.89281772277649],[-73.90961598134572,40.89271659976741],[-73.9098728471038,40.89261405579317],[-73.91024842214284,40.89253532019028],[-73.91064439518878,40.89245396656082],[-73.9110194118942,40.89237546654576],[-73.91141705811341,40.89229317205378],[-73.91170377329358,40.89222968403284],[-73.91201276735796,40.89217252381253],[-73.912255387565,40.89212920091229],[-73.91248502049967,40.89207185564489],[-73.9126753958885,40.89203947056753],[-73.91289989482074,40.8920085375681],[-73.9130973393607,40.89200969247108],[-73.91328656039292,40.89201839206064],[-73.91347492553835,40.89209656899948],[-73.91358218204083,40.89216426429877],[-73.91369813730041,40.89225497534395],[-73.91378451506711,40.89239666755218],[-73.91385567019273,40.89253494400795],[-73.91391614562359,40.89267220445607],[-73.91396427871537,40.89279755244689],[-73.91403175227707,40.89288583201567],[-73.91411661605237,40.89297707588815],[-73.9142146865051,40.89305665532405],[-73.91439470888783,40.89315659796015],[-73.91453417830661,40.89324445569066],[-73.91462919103067,40.89331685947818],[-73.91469947620793,40.89338571884479],[-73.91475630154925,40.89346687197649],[-73.91481155892798,40.89353953322619],[-73.91491556829557,40.89363929999217],[-73.91499922501842,40.89369253984733],[-73.91509826210978,40.8937084351989],[-73.91792720864798,40.89414553598667],[-73.9178221825785,40.89442228808409],[-73.91790870107327,40.8946767664001],[-73.91763488207495,40.89494190535223],[-73.91694161078408,40.89664455170245],[-73.91527661149436,40.90132548804223],[-73.91518455871687,40.90158428286221],[-73.91543172958437,40.90181268368846],[-73.91501449586053,40.90308129910651],[-73.91484188520064,40.90350364564657],[-73.91459039243323,40.90411900219637],[-73.91429080087588,40.90409320746257],[-73.9142196105729,40.90413755987221]]]],"type":"MultiPolygon"} +},{ + "id": 907139469, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000012, + "geom:area_square_m":110122.62702, + "geom:bbox":"-73.9572433776,40.8014344678,-73.9493378046,40.8056651439", + "geom:latitude":40.803551, + "geom:longitude":-73.953289, + "iso:country":"US", + "lbl:latitude":40.803551, + "lbl:longitude":-73.95329, + "lbl:max_zoom":18.0, + "mps:latitude":40.803551, + "mps:longitude":-73.95329, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:deu_x_preferred":[ + "Le Petit Senegal" + ], + "name:eng_x_preferred":[ + "Le Petit Senegal" + ], + "name:eng_x_variant":[ + "Little Senegal" + ], + "name:fra_x_preferred":[ + "Le Petit Senegal" + ], + "name:ind_x_preferred":[ + "Le Petit Senegal" + ], + "name:jpn_x_preferred":[ + "\u30d7\u30c1\u30fb\u30bb\u30cd\u30ac\u30eb" + ], + "name:por_x_preferred":[ + "Le Petit Senegal" + ], + "reversegeo:latitude":40.803551, + "reversegeo:longitude":-73.95329, + "src:geom":"mz", + "wof:belongsto":[ + 85865555, + 102191575, + 907216433, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q14706778" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"af248b087e3f5edd3601dfeecda76fab", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907216433, + "microhood_id":907139469, + "neighbourhood_id":85865555, + "region_id":85688543 + } + ], + "wof:id":907139469, + "wof:lastmodified":1566608555, + "wof:name":"Le Petit Senegal", + "wof:parent_id":85865555, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782825 + ], + "wof:tags":[] +}, + "bbox": [ + -73.95724337764419, + 40.80143446775658, + -73.94933780460678, + 40.80566514394007 +], + "geometry": {"coordinates":[[[[-73.95027192567854,40.80143446775658],[-73.95724337764419,40.8043734413831],[-73.95629959763953,40.80566514394007],[-73.94933780460678,40.80272849905216],[-73.95027192567854,40.80143446775658]]]],"type":"MultiPolygon"} +},{ + "id": 957731831, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":491477.961414, + "geom:bbox":"-87.6055871646,41.7587781536,-87.5928586044,41.7704331026", + "geom:latitude":41.764551, + "geom:longitude":-87.597554, + "iso:country":"US", + "lbl:latitude":41.763228, + "lbl:longitude":-87.597121, + "lbl:max_zoom":18.0, + "mps:latitude":41.763228, + "mps:longitude":-87.597121, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "Pockettown", + "The Pocket" + ], + "reversegeo:latitude":41.763228, + "reversegeo:longitude":-87.597121, + "src:geom":"mz", + "wof:belongsto":[ + 420518839, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"7602736004e70e6d6213e9a05a6fe121", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957731831, + "neighbourhood_id":420518839, + "region_id":85688697 + } + ], + "wof:id":957731831, + "wof:lastmodified":1566624174, + "wof:name":"Pocket Town", + "wof:parent_id":420518839, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783599 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6055871645842, + 41.75877815362576, + -87.59285860440407, + 41.77043310255408 +], + "geometry": {"coordinates":[[[[-87.60558716458419,41.7658685640434],[-87.59551754249753,41.75877815362576],[-87.5938921362803,41.7659489694503],[-87.59285860440407,41.77043310255408],[-87.59590407852865,41.77039524629161],[-87.59585332062657,41.76598483880924],[-87.60558716458419,41.7658685640434]]]],"type":"MultiPolygon"} +},{ + "id": 907140815, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000113, + "geom:area_square_m":1058746.592388, + "geom:bbox":"-73.8282180041,40.7576528582,-73.8098257635,40.7665885857", + "geom:latitude":40.76284, + "geom:longitude":-73.819392, + "iso:country":"US", + "lbl:latitude":40.762773, + "lbl:longitude":-73.819392, + "lbl:max_zoom":18.0, + "mps:latitude":40.762773, + "mps:longitude":-73.819392, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:ara_x_preferred":[ + "\u0643\u0648\u0631\u064a\u0627 \u062a\u0627\u0648\u0646" + ], + "name:deu_x_preferred":[ + "Koreatown" + ], + "name:eng_x_variant":[ + "Long Island Koreatown", + "Koreatown Flushing" + ], + "name:jpn_x_preferred":[ + "\u30b3\u30ea\u30a2\u30fb\u30bf\u30a6\u30f3" + ], + "name:kor_x_preferred":[ + "\ucf54\ub9ac\uc544\ud0c0\uc6b4" + ], + "name:pol_x_preferred":[ + "Koreatown" + ], + "name:tha_x_preferred":[ + "\u0e42\u0e04\u0e40\u0e23\u0e35\u0e22\u0e17\u0e32\u0e27\u0e19\u0e4c" + ], + "name:zho_x_preferred":[ + "\u97d3\u570b\u8857" + ], + "reversegeo:latitude":40.762773, + "reversegeo:longitude":-73.819392, + "src:geom":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"cff08576f205e2864e309122f42e8da4", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907140815, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907140815, + "wof:lastmodified":1566608568, + "wof:name":"Koreatown", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782867 + ], + "wof:tags":[] +}, + "bbox": [ + -73.82821800414835, + 40.75765285815434, + -73.80982576352218, + 40.76658858574813 +], + "geometry": {"coordinates":[[[[-73.82557817575533,40.75848997401634],[-73.8251967477526,40.75765285815434],[-73.8231542063608,40.75815560659947],[-73.82068907254576,40.7588401070978],[-73.81099417407475,40.76134894525288],[-73.81005870085558,40.76437475894094],[-73.80982576352218,40.76603407403022],[-73.81743962656972,40.76658858574813],[-73.82510378395146,40.76572775934122],[-73.82794461588107,40.76538899239251],[-73.82821800414835,40.76388017512392],[-73.82618684325365,40.75976440529815],[-73.82576396467663,40.75889772292805],[-73.82557817575533,40.75848997401634]]]],"type":"MultiPolygon"} +},{ + "id": 907157035, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00005, + "geom:area_square_m":473210.28206, + "geom:bbox":"-73.9713971547,40.6437491318,-73.96176,40.654871", + "geom:latitude":40.648355, + "geom:longitude":-73.966373, + "iso:country":"US", + "lbl:latitude":40.646632, + "lbl:longitude":-73.965013, + "lbl:max_zoom":18.0, + "mps:latitude":40.647043, + "mps:longitude":-73.966848, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Prospect Park Sout" + ], + "name:eng_x_variant":[ + "Prospect Park South" + ], + "name:fra_x_preferred":[ + "Prospect Park South" + ], + "name:jpn_x_preferred":[ + "\u30d7\u30ed\u30b9\u30da\u30af\u30c8\u30fb\u30d1\u30fc\u30af\u30fb\u30b5\u30a6\u30b9" + ], + "reversegeo:latitude":40.647043, + "reversegeo:longitude":-73.966848, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869833, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7250806" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1dbeebd7e7f4e500e687c4ff8132827d", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907157035, + "neighbourhood_id":85869833, + "region_id":85688543 + } + ], + "wof:id":907157035, + "wof:lastmodified":1566608541, + "wof:name":"Prospect Park South", + "wof:parent_id":85869833, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865585, + 85869607 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97139715469166, + 40.64374913180258, + -73.96176, + 40.65487100000018 +], + "geometry": {"coordinates":[[[[-73.9643751349347,40.64594322683745],[-73.96447929462002,40.64556936901425],[-73.96453122635482,40.6451111795561],[-73.96453420767715,40.64436545113236],[-73.97010500047394,40.64374913180258],[-73.97139715469166,40.64820041078283],[-73.964599564545,40.65085518238709],[-73.9661694721368,40.65319182361121],[-73.96190000000018,40.65487100000018],[-73.96176,40.65407100000016],[-73.9643751349347,40.64594322683745]]]],"type":"MultiPolygon"} +},{ + "id": 907159971, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000006, + "geom:area_square_m":58758.178175, + "geom:bbox":"-73.9051157647,40.8972743004,-73.901562,40.8999518647", + "geom:latitude":40.898554, + "geom:longitude":-73.903365, + "iso:country":"US", + "lbl:latitude":40.898632, + "lbl:longitude":-73.903223, + "lbl:max_zoom":18.0, + "mps:latitude":40.898632, + "mps:longitude":-73.903223, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":40.898632, + "reversegeo:longitude":-73.903223, + "src:geom":"mz", + "wof:belongsto":[ + 85844897, + 102191575, + 907157029, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c84ee2ca17ffe9d397d66eeeff5c279a", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157029, + "microhood_id":907159971, + "neighbourhood_id":85844897, + "region_id":85688543 + } + ], + "wof:id":907159971, + "wof:lastmodified":1566608541, + "wof:name":"Villanova Heights", + "wof:parent_id":85844897, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782833 + ], + "wof:tags":[] +}, + "bbox": [ + -73.90511576473256, + 40.89727430039203, + -73.90156199995586, + 40.89995186474251 +], + "geometry": {"coordinates":[[[[-73.90324052308807,40.89993926011393],[-73.90317000498382,40.89991154466131],[-73.90310400509767,40.89987990932963],[-73.90212975433002,40.89927649068991],[-73.90188758618106,40.89909371347061],[-73.90170616873588,40.8989114738673],[-73.90163768955711,40.89877589854058],[-73.90158181298244,40.89860089816494],[-73.90156199995586,40.898478815522],[-73.90157025850543,40.89834794324586],[-73.9016473353458,40.89817696820612],[-73.90174369558255,40.89805060546151],[-73.90188239402377,40.89793221844344],[-73.90207009039138,40.89780205352549],[-73.9022759256471,40.89768731696737],[-73.90273150260153,40.89744497665609],[-73.90290401663631,40.89765699436779],[-73.90320806517995,40.89751688436601],[-73.90334826274562,40.89769450219168],[-73.90396596164278,40.89740820261571],[-73.90405459394013,40.89751061480752],[-73.90456853690115,40.89727430039203],[-73.90471713141253,40.8974705283166],[-73.90507220936401,40.89797833810844],[-73.90511576473256,40.89806019211051],[-73.90511430545425,40.89813473130874],[-73.90508702157263,40.89824529795075],[-73.90505378501403,40.89837533890997],[-73.90501068654513,40.89848104312219],[-73.90499975530264,40.89854710321903],[-73.90500222946744,40.89860004445565],[-73.90501805430291,40.89866587412098],[-73.90506900585885,40.89873718787991],[-73.90511191203667,40.89878948306503],[-73.90397193973747,40.89921297223505],[-73.90421281275491,40.89978189488668],[-73.90419209370296,40.89980729489328],[-73.90414883075425,40.89982740889072],[-73.9040932826894,40.89984568702717],[-73.90338802583059,40.89995186474251],[-73.90331083276227,40.89995058687317],[-73.90324052308807,40.89993926011393]]]],"type":"MultiPolygon"} +},{ + "id": 957777805, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000286, + "geom:area_square_m":2631648.882976, + "geom:bbox":"-87.6654628803,41.8084918388,-87.645534748,41.8234590579", + "geom:latitude":41.815966, + "geom:longitude":-87.65545, + "iso:country":"US", + "lbl:latitude":41.815978, + "lbl:longitude":-87.65545, + "lbl:max_zoom":18.0, + "mps:latitude":41.815978, + "mps:longitude":-87.65545, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":41.815978, + "reversegeo:longitude":-87.65545, + "src:geom":"mz", + "wof:belongsto":[ + 85867501, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"f119b82ec1551755a5060b1144043b89", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957777805, + "neighbourhood_id":85867501, + "region_id":85688697 + } + ], + "wof:id":957777805, + "wof:lastmodified":1566624176, + "wof:name":"Stockyards Industrial Park", + "wof:parent_id":85867501, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783527 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6654628803294, + 41.80849183880752, + -87.64553474796415, + 41.8234590578932 +], + "geometry": {"coordinates":[[[[-87.64553474796415,41.80877524575994],[-87.66504285124513,41.80849183880752],[-87.6652415746014,41.8200076394868],[-87.6652419924059,41.8200249036722],[-87.66524240190481,41.8200393316025],[-87.6652481938236,41.8202436308997],[-87.6652489986448,41.8202620274272],[-87.6652561972665,41.8204266107173],[-87.665271864302,41.8207511572737],[-87.6653065689453,41.8212973544784],[-87.6653235489849,41.8217047519006],[-87.66534486172419,41.8220354756361],[-87.6654276442402,41.822575495819],[-87.6654628803294,41.8229274585082],[-87.66546190791679,41.8231500300682],[-87.6653082590456,41.8231519294317],[-87.6649146448959,41.8231567941833],[-87.6641800350438,41.823167281185],[-87.6633986771639,41.823178423897],[-87.6631157648914,41.8231813715223],[-87.6626962389258,41.8231857410284],[-87.6619542509364,41.8231930148024],[-87.6612968926042,41.8231977602564],[-87.6612453348246,41.8231981098121],[-87.6610155462601,41.8231996682232],[-87.6608685620045,41.8232006870875],[-87.6605639536392,41.8232027453598],[-87.6605395413074,41.8232029102798],[-87.6601897058181,41.8232052729022],[-87.65997584916531,41.8232075985123],[-87.6598732325769,41.8232087142738],[-87.65913976171881,41.8232224139537],[-87.6584257219494,41.8232408883833],[-87.65781387063591,41.8232617431669],[-87.6576495738821,41.8232674533561],[-87.65698323500339,41.823290609723],[-87.65653272552559,41.8233036006712],[-87.6562996689464,41.8233103206312],[-87.6559801524144,41.8233160267242],[-87.654726135982,41.8233384121115],[-87.6539534068052,41.8233551239337],[-87.6533300048562,41.8233686026631],[-87.6532197398767,41.8233682931435],[-87.65271303345099,41.8233668694901],[-87.6520948882709,41.8233754993865],[-87.6518415538002,41.8233790216633],[-87.65160531861341,41.823382309518],[-87.65134787441259,41.8233858856235],[-87.65115471773029,41.8233885806086],[-87.6507865525667,41.8233925263838],[-87.6504397248836,41.8233962421793],[-87.65019769140589,41.8233996603412],[-87.6498754444723,41.8234042473027],[-87.64947261777959,41.8234099453223],[-87.6490064229461,41.8234163072409],[-87.6485400839326,41.823422419423],[-87.6483411359022,41.823425032064],[-87.6480744418926,41.8234285338695],[-87.64766449954141,41.823433990997],[-87.64724970768501,41.8234401312056],[-87.6471053365518,41.8234429565375],[-87.646942450724,41.8234461441639],[-87.64663948455321,41.8234493298312],[-87.64661298807749,41.8234496085863],[-87.64634715489009,41.8234519158483],[-87.64592818941171,41.8234590578932],[-87.6458600146328,41.8211222160034],[-87.6458553051578,41.8209588487549],[-87.6458500744846,41.8207961918929],[-87.6458487600472,41.8205932451087],[-87.64584516481349,41.8204363588007],[-87.64584423256051,41.8203956853029],[-87.64584354836261,41.8203775064421],[-87.6458400901285,41.8202856700797],[-87.6458337188041,41.8201164750032],[-87.6458282382191,41.8199360337359],[-87.6458229331337,41.8197666254886],[-87.6458196556688,41.8196340575098],[-87.6458151799863,41.8194179466976],[-87.6458123448124,41.819319245683],[-87.6458066309018,41.8191231057533],[-87.6458008647092,41.8189617628837],[-87.64579725687381,41.8188608066581],[-87.64579493972261,41.8187552483263],[-87.64579213268649,41.818627375572],[-87.6457822105434,41.8181753618422],[-87.6457765888662,41.8179395405069],[-87.6457671493793,41.8176559456767],[-87.64576450065741,41.8175647919506],[-87.6457582203449,41.8173486433636],[-87.6457493096591,41.8170053362716],[-87.6457388969886,41.8166001093477],[-87.6457268436582,41.8161837582632],[-87.6457122976461,41.8156813043389],[-87.6457021195036,41.8152438609401],[-87.6456949106514,41.8149370078768],[-87.6456920502266,41.8148166543043],[-87.6456873212082,41.8146176935106],[-87.6456804885857,41.8143099370551],[-87.6456786854458,41.8142309043113],[-87.64567242191301,41.8139563712421],[-87.6456644263158,41.8136030253748],[-87.645660755582,41.813480860641],[-87.6456558773524,41.8133185300457],[-87.6456511494865,41.813129558644],[-87.64564153558069,41.8128212088848],[-87.6456340005323,41.8124934149127],[-87.64563317689429,41.81245748741],[-87.64563014118519,41.8123295308167],[-87.6456262236688,41.8121885067361],[-87.6456184089257,41.8119071716488],[-87.64560513663331,41.8114607630934],[-87.64559505726881,41.8111102311997],[-87.64558743121459,41.8108012623219],[-87.6455852218693,41.8106894747032],[-87.64557943438101,41.8103966531586],[-87.6455716139325,41.8100784348645],[-87.6455615902748,41.8096644280865],[-87.6455533954625,41.8092920629169],[-87.6455379412332,41.8088637453639],[-87.64553474796415,41.80877524575994]]]],"type":"MultiPolygon"} +},{ + "id": 907157047, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000184, + "geom:area_square_m":1726057.429219, + "geom:bbox":"-73.8546210919,40.6477536536,-73.837526318,40.6660697068", + "geom:latitude":40.656518, + "geom:longitude":-73.845312, + "iso:country":"US", + "lbl:latitude":40.658579, + "lbl:longitude":-73.845312, + "lbl:max_zoom":18.0, + "mps:latitude":40.658579, + "mps:longitude":-73.845312, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "reversegeo:latitude":40.658579, + "reversegeo:longitude":-73.845312, + "src:geom":"mz", + "wof:belongsto":[ + 420782889, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"56e01a92a616c480662d40f16eee677a", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907157047, + "neighbourhood_id":420782889, + "region_id":85688543 + } + ], + "wof:id":907157047, + "wof:lastmodified":1566608539, + "wof:name":"Rockwood Park", + "wof:parent_id":420782889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420782891 + ], + "wof:tags":[] +}, + "bbox": [ + -73.8546210919447, + 40.6477536536318, + -73.83752631803416, + 40.66606970683247 +], + "geometry": {"coordinates":[[[[-73.85462109194469,40.65896525943901],[-73.85318579825092,40.65378909877271],[-73.84860108463204,40.65444577444381],[-73.84676658563558,40.6477536536318],[-73.83752631803416,40.64909589034102],[-73.84122985451779,40.66416853431011],[-73.84166628235876,40.66606970683247],[-73.84635668164377,40.66408967738508],[-73.84832747751602,40.66311960729959],[-73.85002824742175,40.6622714289968],[-73.85101578705572,40.66168201741061],[-73.85213760436552,40.66087709871327],[-73.85312872234869,40.66016889565847],[-73.85392472752608,40.65954425273201],[-73.85462109194469,40.65896525943901]]]],"type":"MultiPolygon"} +},{ + "id": 907162765, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00017, + "geom:area_square_m":1596330.70768, + "geom:bbox":"-73.7961209042,40.750475,-73.7805320716,40.769004375", + "geom:latitude":40.758828, + "geom:longitude":-73.789988, + "iso:country":"US", + "lbl:latitude":40.762911, + "lbl:longitude":-73.790141, + "lbl:max_zoom":18.0, + "mps:latitude":40.75868, + "mps:longitude":-73.78984, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Auburndale" + ], + "name:fra_x_preferred":[ + "Auburndale" + ], + "name:ita_x_preferred":[ + "Auburndale" + ], + "name:jpn_x_preferred":[ + "\u30aa\u30fc\u30d0\u30fc\u30f3\u30c7\u30fc\u30eb" + ], + "name:urd_x_preferred":[ + "\u0627\u0648\u0628\u0631\u0646\u0688\u06cc\u0644\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0627\u0648\u0628\u0631\u0646\u0688\u06cc\u0644" + ], + "reversegeo:latitude":40.75868, + "reversegeo:longitude":-73.78984, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q2870650" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"95222422b8b127401e68d194dfa0067e", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907162765, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907162765, + "wof:lastmodified":1566608551, + "wof:name":"Auburndale", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85803923 + ], + "wof:tags":[] +}, + "bbox": [ + -73.79612090416006, + 40.75047500000028, + -73.78053207158632, + 40.76900437503121 +], + "geometry": {"coordinates":[[[[-73.7953162583605,40.76878509604492],[-73.79333824540473,40.76859443486879],[-73.79176079488515,40.76900437503121],[-73.79007788151613,40.76652429217144],[-73.78813624133531,40.76452554492657],[-73.78556642344901,40.76292654713072],[-73.78533799519261,40.76224126236099],[-73.78516667400008,40.76092779988585],[-73.78379610446072,40.75864351732008],[-73.7832821408835,40.75744426897323],[-73.78168314308746,40.75487445108692],[-73.78053207158632,40.75332898975334],[-73.7861,40.75253200000013],[-73.787862,40.75183986161726],[-73.78830100000016,40.75148186161729],[-73.7921680000001,40.75047500000028],[-73.79472699999999,40.75056500000026],[-73.79461661527785,40.75362455450908],[-73.79481370176721,40.75604814284683],[-73.79499357501193,40.75785960612982],[-73.79510697200233,40.75900160189936],[-73.79540107237369,40.76142298303157],[-73.79534394423479,40.76276314856874],[-73.79612090416006,40.76276658535874],[-73.7953162583605,40.76878509604492]]]],"type":"MultiPolygon"} +},{ + "id": 907189643, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000175, + "geom:area_square_m":1644087.509275, + "geom:bbox":"-73.961899,40.6784550689,-73.9494599191,40.6994034919", + "geom:latitude":40.688917, + "geom:longitude":-73.955524, + "iso:country":"US", + "lbl:latitude":40.690282, + "lbl:longitude":-73.953072, + "lbl:max_zoom":18.0, + "mps:latitude":40.688851, + "mps:longitude":-73.955642, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0628\u064a\u062f\u0641\u0648\u0631\u062f" + ], + "name:ast_x_preferred":[ + "Bedford" + ], + "name:azb_x_preferred":[ + "\u0628\u062f\u0641\u0648\u0631\u062f" + ], + "name:cat_x_preferred":[ + "Bedford" + ], + "name:ceb_x_preferred":[ + "Bedford" + ], + "name:cym_x_preferred":[ + "Bedford" + ], + "name:dan_x_preferred":[ + "Bedford" + ], + "name:deu_x_preferred":[ + "Bedford" + ], + "name:epo_x_preferred":[ + "Bedford" + ], + "name:fas_x_preferred":[ + "\u0628\u062f\u0641\u0648\u0631\u062f" + ], + "name:fin_x_preferred":[ + "Bedford" + ], + "name:fra_x_preferred":[ + "Bedford" + ], + "name:fry_x_preferred":[ + "Bedford" + ], + "name:gle_x_preferred":[ + "Bedford" + ], + "name:hun_x_preferred":[ + "Bedford" + ], + "name:isl_x_preferred":[ + "Bedford" + ], + "name:ita_x_preferred":[ + "Bedford" + ], + "name:jpn_x_preferred":[ + "\u30d9\u30c3\u30c9\u30d5\u30a9\u30fc\u30c9" + ], + "name:kor_x_preferred":[ + "\ubca0\ub4dc\ud37c\ub4dc" + ], + "name:lat_x_preferred":[ + "Bedfordia" + ], + "name:lit_x_preferred":[ + "Bedfordas" + ], + "name:lmo_x_preferred":[ + "Bedford" + ], + "name:mlg_x_preferred":[ + "Bedford" + ], + "name:nld_x_preferred":[ + "Bedford" + ], + "name:nno_x_preferred":[ + "Bedford" + ], + "name:nor_x_preferred":[ + "Bedford" + ], + "name:pol_x_preferred":[ + "Bedford" + ], + "name:por_x_preferred":[ + "Bedford" + ], + "name:ron_x_preferred":[ + "Bedford" + ], + "name:rus_x_preferred":[ + "\u0411\u0435\u0434\u0444\u043e\u0440\u0434" + ], + "name:sco_x_preferred":[ + "Bedford" + ], + "name:slv_x_preferred":[ + "Bedford" + ], + "name:spa_x_preferred":[ + "Bedford" + ], + "name:srp_x_preferred":[ + "\u0411\u0435\u0434\u0444\u043e\u0440\u0434" + ], + "name:swe_x_preferred":[ + "Bedford" + ], + "name:tat_x_preferred":[ + "\u0411\u0435\u0434\u0444\u043e\u0440\u0434" + ], + "name:ukr_x_preferred":[ + "\u0411\u0435\u0434\u0444\u043e\u0440\u0434" + ], + "name:urd_x_preferred":[ + "\u0628\u06cc\u0688\u0641\u0648\u0631\u0688" + ], + "name:vec_x_preferred":[ + "Bedford" + ], + "name:vie_x_preferred":[ + "Bedford" + ], + "name:vol_x_preferred":[ + "Bedford" + ], + "name:war_x_preferred":[ + "Bedford" + ], + "name:yid_x_preferred":[ + "\u05d1\u05e2\u05d3\u05e4\u05d0\u05e8\u05d3" + ], + "name:zho_x_preferred":[ + "\u8c9d\u5fb7\u798f\u5fb7" + ], + "reversegeo:latitude":40.688851, + "reversegeo:longitude":-73.955642, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85892907, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3fb544bddceda23429992677c30bdb86", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907189643, + "neighbourhood_id":85892907, + "region_id":85688543 + } + ], + "wof:id":907189643, + "wof:lastmodified":1566608543, + "wof:name":"Bedford", + "wof:parent_id":85892907, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85805225 + ], + "wof:tags":[] +}, + "bbox": [ + -73.9618990000001, + 40.67845506893324, + -73.94945991906279, + 40.69940349193272 +], + "geometry": {"coordinates":[[[[-73.95331891275258,40.69940349193272],[-73.94945991906279,40.68038194852153],[-73.94957835912412,40.67845506893324],[-73.95243231234718,40.67861087382184],[-73.958292,40.679831],[-73.95823731352067,40.68000805623398],[-73.95839600000016,40.680798],[-73.9618990000001,40.69818800000017],[-73.95702,40.69897400000019],[-73.95331891275258,40.69940349193272]]]],"type":"MultiPolygon"} +},{ + "id": 907191337, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000015, + "geom:area_square_m":138584.148635, + "geom:bbox":"-73.884465,40.842625,-73.8772729905,40.848273", + "geom:latitude":40.84531, + "geom:longitude":-73.880923, + "iso:country":"US", + "lbl:latitude":40.847918, + "lbl:longitude":-73.877087, + "lbl:max_zoom":18.0, + "mps:latitude":40.845349, + "mps:longitude":-73.880923, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.845349, + "reversegeo:longitude":-73.880923, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85855481, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4a0474e81f8ecd0cb53bda080b4f0352", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907191337, + "neighbourhood_id":85855481, + "region_id":85688543 + } + ], + "wof:id":907191337, + "wof:lastmodified":1566608551, + "wof:name":"Bronx Park South", + "wof:parent_id":85855481, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892763 + ], + "wof:tags":[] +}, + "bbox": [ + -73.88446500000015, + 40.842625, + -73.87727299054976, + 40.8482730000002 +], + "geometry": {"coordinates":[[[[-73.87811632073301,40.842625],[-73.88446500000015,40.845985],[-73.88379,40.84678300000019],[-73.883109,40.8482730000002],[-73.88278932073304,40.8478697026061],[-73.87727299054976,40.84407938780693],[-73.87811632073301,40.842625]]]],"type":"MultiPolygon"} +},{ + "id": 907189663, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000099, + "geom:area_square_m":928436.090479, + "geom:bbox":"-73.7594702426,40.707248119,-73.746232411,40.7240629228", + "geom:latitude":40.716008, + "geom:longitude":-73.752359, + "iso:country":"US", + "lbl:latitude":40.714142, + "lbl:longitude":-73.746043, + "lbl:max_zoom":18.0, + "mps:latitude":40.717318, + "mps:longitude":-73.75246, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:cat_x_preferred":[ + "Bellaire" + ], + "name:eng_x_preferred":[ + "Bellaire" + ], + "name:fra_x_preferred":[ + "Bellaire" + ], + "name:nld_x_preferred":[ + "Bellaire" + ], + "name:oci_x_preferred":[ + "Bellaire" + ], + "name:urd_x_preferred":[ + "\u0628\u06cc\u0644\u06cc\u0626\u0631\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u0628\u06cc\u0644\u06cc\u0626\u0631" + ], + "reversegeo:latitude":40.717318, + "reversegeo:longitude":-73.75246, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420529697, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q62473" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"b022a5ee793bb90f71f203d98e6e7b3b", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907189663, + "neighbourhood_id":420529697, + "region_id":85688543 + } + ], + "wof:id":907189663, + "wof:lastmodified":1566608544, + "wof:name":"Bellaire", + "wof:parent_id":420529697, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85805413 + ], + "wof:tags":[] +}, + "bbox": [ + -73.7594702425785, + 40.70724811904934, + -73.74623241099825, + 40.72406292280949 +], + "geometry": {"coordinates":[[[[-73.74623241099825,40.7093586020815],[-73.74668608417993,40.70913159412813],[-73.74717436783939,40.70888162651705],[-73.74850089425406,40.70822768878517],[-73.75066418290845,40.70736625357975],[-73.75110191835176,40.70724811904934],[-73.75243457026838,40.71022961602688],[-73.754037,40.7138800000002],[-73.7594702425785,40.721049712873],[-73.75945883801813,40.72105529076939],[-73.75499165580615,40.72406292280949],[-73.75330456345034,40.72262661212488],[-73.75205457810628,40.72161325009841],[-73.75006124829953,40.71999203558835],[-73.74982333768503,40.71969994024493],[-73.74960986168084,40.71929471052074],[-73.74937032000416,40.71879172607504],[-73.74930469337349,40.71858825481859],[-73.74890759336959,40.71673406965613],[-73.74857629218181,40.71498001484374],[-73.7484674163707,40.71467015390796],[-73.74623241099825,40.7093586020815]]]],"type":"MultiPolygon"} +},{ + "id": 957677359, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00007, + "geom:area_square_m":648258.046104, + "geom:bbox":"-87.7270291109,41.9263903387,-87.7171053805,41.93368176", + "geom:latitude":41.930027, + "geom:longitude":-87.72206, + "iso:country":"US", + "lbl:latitude":41.930026, + "lbl:longitude":-87.72206, + "lbl:max_zoom":18.0, + "mps:latitude":41.930026, + "mps:longitude":-87.72206, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_variant":[ + "Koz Park", + "Land of Koz" + ], + "reversegeo:latitude":41.930026, + "reversegeo:longitude":-87.72206, + "src:geom":"mz", + "wof:belongsto":[ + 85865755, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"c2f829afe5eac13526001ac30e619085", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":957677359, + "neighbourhood_id":85865755, + "region_id":85688697 + } + ], + "wof:id":957677359, + "wof:lastmodified":1566624176, + "wof:name":"Kosciuszko Park", + "wof:parent_id":85865755, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420783499 + ], + "wof:tags":[] +}, + "bbox": [ + -87.72702911086567, + 41.92639033874898, + -87.71710538046328, + 41.93368176004895 +], + "geometry": {"coordinates":[[[[-87.72702911086567,41.93361485721769],[-87.71729836874279,41.93368176004895],[-87.71710538046328,41.9264168250538],[-87.72682409690073,41.92639033874898],[-87.7268243810833,41.9264018199395],[-87.7268274336402,41.9265251234724],[-87.72683073209041,41.9266293342462],[-87.7268431030875,41.9270201552381],[-87.7268545132091,41.9274915638413],[-87.7268559249152,41.9275311545673],[-87.72686069165719,41.9276648392072],[-87.7268689226368,41.9278956803383],[-87.7268712957293,41.9279622326725],[-87.7268755288874,41.9281317340428],[-87.72688829056131,41.9286122646373],[-87.7268891899175,41.9286443397823],[-87.72688978139929,41.9286654262442],[-87.7269029325861,41.929134376023],[-87.7269143449244,41.9295460975594],[-87.7269215683072,41.9297664146753],[-87.7269247503356,41.9299787049849],[-87.726934829059,41.9302481242148],[-87.7269351229463,41.9302559737017],[-87.7269351236292,41.9302559791938],[-87.7269466508191,41.9306335301664],[-87.7269529860136,41.9308760943693],[-87.72695298597721,41.930876098211],[-87.72696013609711,41.9311498449407],[-87.72696013641,41.9311498507052],[-87.7269656514909,41.931335328764],[-87.7269688727616,41.9314436542793],[-87.7269712011954,41.9315219653367],[-87.7269787052974,41.9317903618435],[-87.7269799136555,41.9318335883854],[-87.72698742500221,41.9321022349144],[-87.7269991823708,41.9325315526465],[-87.72700012292751,41.9325658834642],[-87.72700245699789,41.9326494653665],[-87.7270075778271,41.9328328597999],[-87.7270122527998,41.9330002760999],[-87.7270162725885,41.9331553448683],[-87.7270228581794,41.9334093860786],[-87.72702911086567,41.93361485721769]]]],"type":"MultiPolygon"} +},{ + "id": 907197987, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000076, + "geom:area_square_m":714375.830841, + "geom:bbox":"-73.9405935522,40.7508944199,-73.9218765246,40.7591071175", + "geom:latitude":40.754341, + "geom:longitude":-73.932523, + "iso:country":"US", + "lbl:latitude":40.741396, + "lbl:longitude":-73.940859, + "lbl:max_zoom":18.0, + "mps:latitude":40.754952, + "mps:longitude":-73.934224, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.754952, + "reversegeo:longitude":-73.934224, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85831303, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e59e9d571c15523d057a96c661f9b9ab", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907197987, + "neighbourhood_id":85831303, + "region_id":85688543 + } + ], + "wof:id":907197987, + "wof:lastmodified":1566608555, + "wof:name":"Dutch Kills", + "wof:parent_id":85831303, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869199 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94059355215076, + 40.75089441986701, + -73.9218765245996, + 40.75910711754183 +], + "geometry": {"coordinates":[[[[-73.9218765245996,40.75289919641136],[-73.93427835229225,40.75875402135896],[-73.93501881648538,40.75910711754183],[-73.94059355215076,40.75300117573802],[-73.93675135989031,40.75096031601249],[-73.93609025779787,40.75164886120694],[-73.93468658233196,40.75089441986701],[-73.93434262783352,40.75110793992726],[-73.9339964416982,40.75130828531119],[-73.93363655239656,40.7515022779021],[-73.93323527986536,40.75164479212462],[-73.93287098893396,40.75176534542647],[-73.93249430468661,40.75185391556766],[-73.93209273944625,40.75190125981825],[-73.93155383136465,40.75193002438301],[-73.93029152933855,40.75195211533038],[-73.9287870711649,40.75196678475045],[-73.9270307415407,40.75200813441862],[-73.92585674703015,40.75204582748719],[-73.9218765245996,40.75289919641136]]]],"type":"MultiPolygon"} +},{ + "id": 907203481, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000327, + "geom:area_square_m":3067028.801533, + "geom:bbox":"-73.8271015114,40.7461177688,-73.7945939691,40.7613489453", + "geom:latitude":40.753648, + "geom:longitude":-73.80879, + "iso:country":"US", + "lbl:latitude":40.754848, + "lbl:longitude":-73.795264, + "lbl:max_zoom":18.0, + "mps:latitude":40.754819, + "mps:longitude":-73.810105, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "E Flushing" + ], + "reversegeo:latitude":40.754819, + "reversegeo:longitude":-73.810105, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85819703, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5c79f9776876c79b3eef9ef2aac29ff4", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907203481, + "neighbourhood_id":85819703, + "region_id":85688543 + } + ], + "wof:id":907203481, + "wof:lastmodified":1566608542, + "wof:name":"East Flushing", + "wof:parent_id":85819703, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892845 + ], + "wof:tags":[] +}, + "bbox": [ + -73.82710151144015, + 40.74611776883708, + -73.79459396909336, + 40.76134894525288 +], + "geometry": {"coordinates":[[[[-73.79461661527785,40.75362455450908],[-73.79472699999999,40.75056500000026],[-73.79481,40.74841486161719],[-73.79459396909336,40.74655764881301],[-73.79782166713326,40.74687243326906],[-73.79820249824,40.7468873348976],[-73.79848618505157,40.74687641060424],[-73.79893026347966,40.74683556114893],[-73.79953821731912,40.74677418644117],[-73.80016231138632,40.74670792035702],[-73.80116697678885,40.74661261163518],[-73.80191980433885,40.74651980951594],[-73.80279447030506,40.74644220831151],[-73.80351814081047,40.74639353125194],[-73.80301277105484,40.7477269742547],[-73.80294216981747,40.7479735435484],[-73.80290650338621,40.74825335625529],[-73.80291560990624,40.7486095213545],[-73.80295551274526,40.74907160933077],[-73.80304332018366,40.74973094800222],[-73.80745494406814,40.75009798280182],[-73.81379382680714,40.74623343650354],[-73.81392882230169,40.74615283026993],[-73.81412142702354,40.74611776883708],[-73.81432509201761,40.74617080260305],[-73.81519197886587,40.74665919772643],[-73.81567729125481,40.74685840147473],[-73.81609784269763,40.74698629255199],[-73.81672002549794,40.74711332390902],[-73.8174892283358,40.74725093242067],[-73.82042314127638,40.74824487687786],[-73.82179608982244,40.74892810673731],[-73.82453028869601,40.7516650207631],[-73.82191139677495,40.75315178336889],[-73.82542150815573,40.75605925269787],[-73.82578466285669,40.75635056947156],[-73.82609233691481,40.75653871968062],[-73.82710151144015,40.75713675579737],[-73.8251967477526,40.75765285815434],[-73.8231542063608,40.75815560659947],[-73.81839484959767,40.7538763131276],[-73.81570116085783,40.7556241480837],[-73.82068907254576,40.7588401070978],[-73.81099417407475,40.76134894525288],[-73.79499357501193,40.75785960612982],[-73.79481370176721,40.75604814284683],[-73.79461661527785,40.75362455450908]]]],"type":"MultiPolygon"} +},{ + "id": 907211067, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000248, + "geom:area_square_m":2320737.127796, + "geom:bbox":"-73.9420746845,40.7019515998,-73.92073,40.720576", + "geom:latitude":40.71154, + "geom:longitude":-73.932336, + "iso:country":"US", + "lbl:latitude":40.710703, + "lbl:longitude":-73.934637, + "lbl:max_zoom":18.0, + "mps:latitude":40.706815, + "mps:longitude":-73.934671, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "East Williasburg" + ], + "name:eng_x_variant":[ + "E Williamsburg" + ], + "name:und_x_variant":[ + "East Williamsburg" + ], + "reversegeo:latitude":40.706815, + "reversegeo:longitude":-73.934671, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85857853, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"41c0b5df20bc9db72e634bdc500053b9", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907211067, + "neighbourhood_id":85857853, + "region_id":85688543 + } + ], + "wof:id":907211067, + "wof:lastmodified":1566608542, + "wof:name":"East Williamsburg", + "wof:parent_id":85857853, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869205, + 85865605 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94207468450308, + 40.70195159982379, + -73.92073, + 40.72057600000014 +], + "geometry": {"coordinates":[[[[-73.93687724091511,40.70195159982379],[-73.93713396335252,40.70256891369628],[-73.9374692281439,40.7032543602982],[-73.93761004137941,40.70342905454691],[-73.93780931794507,40.70364980703786],[-73.93804297370346,40.70383402216029],[-73.93827333401484,40.70395658416726],[-73.93846668661834,40.70409096354713],[-73.93870949242108,40.70427616974711],[-73.93891223107289,40.70445872194203],[-73.93910455765595,40.7047117478061],[-73.93924795895541,40.70503466562828],[-73.93932754114132,40.7053584900944],[-73.93939311545729,40.70568560090639],[-73.9397475675118,40.70782381009094],[-73.94003406559995,40.70961168326244],[-73.94029337789787,40.71110578601257],[-73.9403592070385,40.71145694142233],[-73.94048048707555,40.71183725272827],[-73.94081582385347,40.71252602788127],[-73.94160327436097,40.71406768781808],[-73.94197500403666,40.71493614004203],[-73.94203103780359,40.71509533783178],[-73.94206206399768,40.71524428362792],[-73.94207468450308,40.71544591920191],[-73.94207308891005,40.71567544161862],[-73.9420318214143,40.71594891477153],[-73.9419921957424,40.71613027480323],[-73.94188458617847,40.71647740117414],[-73.94172079658361,40.71685954311956],[-73.94163504307591,40.71705174310841],[-73.94150707649059,40.71725261851362],[-73.94127706980306,40.71757663788652],[-73.94093939499298,40.71800697891269],[-73.94050647878085,40.71861489544541],[-73.94049143111448,40.71864334963138],[-73.9404930757912,40.71867717748733],[-73.94061376337547,40.71941977559666],[-73.94060093435374,40.71944096101983],[-73.93620900000013,40.72057600000014],[-73.93470400000012,40.717209],[-73.92463060957708,40.71985490299261],[-73.92451999415147,40.71961273042439],[-73.92457948088895,40.719162523335],[-73.92470227807115,40.71868830410081],[-73.92499204426565,40.71838478826399],[-73.92714835749319,40.71787142410481],[-73.92837930101506,40.71757836729026],[-73.92887965180022,40.71772031862379],[-73.92970539915329,40.7170492793893],[-73.92931999766097,40.71611200883284],[-73.92947206925157,40.7157252672595],[-73.92947356921466,40.7157214526213],[-73.93219753146349,40.71497210749046],[-73.93214128153336,40.71468129159181],[-73.93175357182271,40.71474167550586],[-73.931240670595,40.71372481088491],[-73.93164527391679,40.71334279375835],[-73.9326390524248,40.71305258616955],[-73.93203262980512,40.7115902230744],[-73.93338484615317,40.71123372774585],[-73.93328349320251,40.71097870745812],[-73.93190101920874,40.71133847142838],[-73.93093227547746,40.70916531125425],[-73.93050100083205,40.70868122503976],[-73.93036094565792,40.70871773853546],[-73.93025038849095,40.7089279129202],[-73.93154613746857,40.71185535175128],[-73.93077894737064,40.71216042795557],[-73.93161032734857,40.71203802318321],[-73.93184868877472,40.71256477418336],[-73.93173436851781,40.71274929223824],[-73.93042294313085,40.71317255867117],[-73.93105231901728,40.71461022392344],[-73.93085190134035,40.71490298559292],[-73.92843881814611,40.71553094957596],[-73.928618527936,40.71594945972534],[-73.92890601265026,40.71661895731231],[-73.92823253044941,40.7171064537509],[-73.92700302745772,40.71739662697857],[-73.92464513864002,40.7179531089175],[-73.9236398926207,40.71732065749364],[-73.92360707092848,40.71726577667926],[-73.92329498309114,40.71674393781381],[-73.92328573702456,40.716728477561],[-73.92305500014339,40.71634266479349],[-73.92398314813715,40.71597709381307],[-73.92431329961585,40.71584705657698],[-73.9248855350761,40.71526718765272],[-73.92433589757117,40.71412259346653],[-73.92405909737055,40.71411155964503],[-73.92392811973541,40.71410154449952],[-73.92392000000012,40.71407400000022],[-73.922116,40.712928],[-73.92179204703694,40.71207957129039],[-73.9216601821272,40.71173421876124],[-73.9213478330812,40.71091618056334],[-73.92132599999999,40.71085900000013],[-73.920779067441,40.71049620140274],[-73.92073000000001,40.71046100000024],[-73.92167600000001,40.70947100000021],[-73.92598,40.7057920000001],[-73.93395099999999,40.70267400000022],[-73.93687724091511,40.70195159982379]]]],"type":"MultiPolygon"} +},{ + "id": 907189669, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000099, + "geom:area_square_m":932929.187867, + "geom:bbox":"-73.8444677948,40.5738279999,-73.743640795,40.5956580962", + "geom:latitude":40.587103, + "geom:longitude":-73.790225, + "iso:country":"US", + "lbl:latitude":40.560451, + "lbl:longitude":-73.826902, + "lbl:max_zoom":18.0, + "mps:latitude":40.589163, + "mps:longitude":-73.785304, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Rockaway Boardwalk" + ], + "name:eng_x_variant":[ + "Boardwalk" + ], + "name:fra_x_preferred":[ + "Boardwalk" + ], + "name:jpn_x_preferred":[ + "\u30dc\u30fc\u30c9\u30a6\u30a9\u30fc\u30af" + ], + "name:nld_x_preferred":[ + "Vlonderpad" + ], + "name:pol_x_preferred":[ + "Promenada" + ], + "name:rus_x_preferred":[ + "\u0414\u043e\u0449\u0430\u0442\u0430\u044f \u0442\u0440\u043e\u043f\u0430" + ], + "name:zho_x_preferred":[ + "\u6728\u677f\u8def" + ], + "reversegeo:latitude":40.589163, + "reversegeo:longitude":-73.785304, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85817375, + 102191575, + 907157757, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"adc9ed16fb936a8b9a007bcbdc51240b", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "macrohood_id":907157757, + "microhood_id":907189669, + "neighbourhood_id":85817375, + "region_id":85688543 + } + ], + "wof:id":907189669, + "wof:lastmodified":1566608543, + "wof:name":"Boardwalk", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85806543 + ], + "wof:tags":[] +}, + "bbox": [ + -73.84446779475307, + 40.57382799991651, + -73.74364079497329, + 40.59565809617638 +], + "geometry": {"coordinates":[[[[-73.74396890592848,40.59565809617638],[-73.74364079497329,40.59460028639253],[-73.74462499793187,40.59466177479786],[-73.7458874270455,40.59439040863447],[-73.74662917813197,40.59430149355924],[-73.74692440482353,40.59412442853859],[-73.74698877652482,40.59410460071994],[-73.74723420758198,40.59406995021581],[-73.74814785335842,40.59361774991312],[-73.74895116248139,40.59341287562516],[-73.75014659352017,40.59275461888502],[-73.75022604796355,40.59271086778486],[-73.75155756485975,40.59141760314228],[-73.75335831392971,40.5909890974438],[-73.75354241944444,40.59094528775175],[-73.75556036620196,40.59088581746119],[-73.75595463623085,40.5908741980498],[-73.75598657768398,40.59088215826309],[-73.75789189861888,40.59135698827787],[-73.76017829846273,40.59160187502199],[-73.76134311678328,40.59172663385051],[-73.76295275572141,40.59161117743115],[-73.76371803996173,40.59147668464056],[-73.76371803996172,40.59147668464051],[-73.76717083510786,40.59086988257894],[-73.76796973006518,40.59072948296451],[-73.76872708525156,40.59087006895572],[-73.7690705064076,40.59081963048241],[-73.77088020413474,40.59055383908001],[-73.77593042821883,40.59018140832799],[-73.7758368859528,40.59032459875764],[-73.7766624348083,40.59006633216659],[-73.77761352076868,40.59005347120861],[-73.77918495356128,40.58959310889536],[-73.78043036101916,40.58959662142909],[-73.78187105424902,40.58920383342643],[-73.78453311048501,40.58847805521788],[-73.78768370715754,40.58792293771196],[-73.78853923030904,40.58755545665971],[-73.78853923030901,40.58755545665966],[-73.78878406873153,40.58745028886732],[-73.78945065591805,40.58762324290703],[-73.7943446052299,40.58675667898872],[-73.79602046510796,40.58631904717598],[-73.79670174417569,40.58636727152467],[-73.7968763617465,40.58631546092121],[-73.7968763617465,40.58631546092124],[-73.79846640546032,40.58584368065307],[-73.7994917499323,40.58581418097837],[-73.80091511175831,40.58540706093314],[-73.80184018400183,40.58535171084631],[-73.80330229481869,40.58488615648929],[-73.80374069598615,40.58500522472315],[-73.80377557037264,40.58501469648519],[-73.80562312964238,40.58451118378325],[-73.80651754277235,40.5844646867619],[-73.8078350296547,40.58401495035291],[-73.80887034203371,40.5840239708418],[-73.80951491959136,40.58382343175406],[-73.81160687156435,40.58364067524316],[-73.81306540553696,40.58351325521467],[-73.81352448727571,40.58347314904687],[-73.81640858005161,40.5826193878724],[-73.81928812030567,40.58176697435422],[-73.81973557340771,40.58166773153706],[-73.82222751244008,40.58111503216208],[-73.82264897973459,40.58093751426899],[-73.82717378884988,40.57944451295538],[-73.83146093331455,40.57841943762286],[-73.83346460870513,40.577779189561],[-73.83386923172182,40.57764989760892],[-73.8377849130498,40.57592368347551],[-73.83960964391407,40.57530428457978],[-73.84286174526336,40.57420036946357],[-73.84378359075201,40.57388745204182],[-73.84394286451244,40.57382799991651],[-73.84446779475307,40.57476591149599],[-73.8418797093979,40.57565676077658],[-73.8303647696227,40.5792764690606],[-73.82664369198841,40.58033559471465],[-73.82348026402563,40.58126742743246],[-73.8218318431455,40.58167187233921],[-73.82074733106444,40.581945157928],[-73.8181504495689,40.58266929156812],[-73.81378446029812,40.58386225799603],[-73.81034219856545,40.5847064621522],[-73.80703814632935,40.58590189680376],[-73.80562335573637,40.58600542551468],[-73.80104735054118,40.58635484166408],[-73.79760028658853,40.58699927030565],[-73.79383510761564,40.58771564409935],[-73.79071722325655,40.58834393753543],[-73.78930999494243,40.58872773149367],[-73.78623972058244,40.58969149563658],[-73.78388630758249,40.5904272694419],[-73.78231106653601,40.59062592142618],[-73.78068041715086,40.59102318440239],[-73.7774995772145,40.59140240496578],[-73.77495686811925,40.59155189801088],[-73.7725838609709,40.59169270414473],[-73.7706846300977,40.59158364341248],[-73.76908121368088,40.59149036232581],[-73.76751384156825,40.59143325475742],[-73.76687670395015,40.59153237648835],[-73.76523676782537,40.59168637927767],[-73.76325710447115,40.59185957542776],[-73.76134326895445,40.59204687148964],[-73.75981635164293,40.59219314084127],[-73.75876743015749,40.59230352797628],[-73.7578722351444,40.59238169675731],[-73.757357234727,40.59239698690958],[-73.75542699748,40.59247784247167],[-73.75418053236467,40.59252605859068],[-73.7536034806772,40.59276952218225],[-73.75261253427057,40.59318863391008],[-73.75178547502864,40.59354097998775],[-73.75114947138421,40.59380079244401],[-73.75081052016927,40.59394485036064],[-73.75052169345756,40.59404167663595],[-73.75006750989182,40.59413813663444],[-73.74936192382319,40.59429321890263],[-73.7476642033876,40.59474302821981],[-73.74606942121746,40.59512511514794],[-73.74396890592848,40.59565809617638]]]],"type":"MultiPolygon"} +},{ + "id": 907196173, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000041, + "geom:area_square_m":382930.530685, + "geom:bbox":"-73.9604272175,40.7794265673,-73.9508766288,40.7879065545", + "geom:latitude":40.783674, + "geom:longitude":-73.955657, + "iso:country":"US", + "lbl:latitude":40.78442, + "lbl:longitude":-73.954313, + "lbl:max_zoom":18.0, + "mps:latitude":40.783663, + "mps:longitude":-73.955657, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:ast_x_preferred":[ + "Carnegie Hill" + ], + "name:deu_x_preferred":[ + "Carnegie Hill" + ], + "name:eng_x_preferred":[ + "Carnegie Hills" + ], + "name:eng_x_variant":[ + "Carnegie Hill" + ], + "name:fra_x_preferred":[ + "Carnegie Hill" + ], + "name:ind_x_preferred":[ + "Carnegie Hill" + ], + "name:jpn_x_preferred":[ + "\u30ab\u30fc\u30cd\u30ae\u30fc\u30fb\u30d2\u30eb" + ], + "name:kor_x_preferred":[ + "\uce74\ub124\uae30\ud790" + ], + "name:lat_x_preferred":[ + "Carnegie Hill" + ], + "name:nld_x_preferred":[ + "Carnegie Hill" + ], + "name:pol_x_preferred":[ + "Carnegie Hill" + ], + "name:por_x_preferred":[ + "Carnegie Hill" + ], + "name:rus_x_preferred":[ + "\u041a\u0430\u0440\u043d\u0435\u0433\u0438-\u0425\u0438\u043b\u043b" + ], + "name:spa_x_preferred":[ + "Carnegie Hill" + ], + "name:swe_x_preferred":[ + "Carnegie Hill" + ], + "name:zho_x_preferred":[ + "\u5361\u8010\u57fa\u5c71" + ], + "reversegeo:latitude":40.783663, + "reversegeo:longitude":-73.955657, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865691, + 102191575, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1043965" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3a1bca4833223015bc3523220bbbd86e", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "microhood_id":907196173, + "neighbourhood_id":85865691, + "region_id":85688543 + } + ], + "wof:id":907196173, + "wof:lastmodified":1566608550, + "wof:name":"Carnegie Hill", + "wof:parent_id":85865691, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869159 + ], + "wof:tags":[] +}, + "bbox": [ + -73.96042721745796, + 40.77942656731454, + -73.9508766288479, + 40.78790655445967 +], + "geometry": {"coordinates":[[[[-73.95087662884789,40.78584837748313],[-73.95557329252578,40.77942656731454],[-73.96042721745796,40.78151596488552],[-73.95576033299818,40.78790655445967],[-73.95087662884789,40.78584837748313]]]],"type":"MultiPolygon"} +},{ + "id": 907215389, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000007, + "geom:area_square_m":62146.901462, + "geom:bbox":"-73.9214562466,40.8193939476,-73.9174509396,40.8220699364", + "geom:latitude":40.820742, + "geom:longitude":-73.91944, + "iso:country":"US", + "lbl:latitude":40.820699, + "lbl:longitude":-73.919623, + "lbl:max_zoom":18.0, + "mps:latitude":40.820756, + "mps:longitude":-73.919441, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.820756, + "reversegeo:longitude":-73.919441, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85833717, + 102191575, + 907157033, + 85633793, + 85977539, + 421205773, + 102083063, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"264caf6345f3ce33723f1cfdd7aa3a95", + "wof:hierarchy":[ + { + "borough_id":421205773, + "continent_id":102191575, + "country_id":85633793, + "county_id":102083063, + "locality_id":85977539, + "macrohood_id":907157033, + "microhood_id":907215389, + "neighbourhood_id":85833717, + "region_id":85688543 + } + ], + "wof:id":907215389, + "wof:lastmodified":1566608564, + "wof:name":"Melrose Houses", + "wof:parent_id":85833717, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85868023 + ], + "wof:tags":[] +}, + "bbox": [ + -73.92145624656013, + 40.81939394763659, + -73.91745093961867, + 40.82206993637245 +], + "geometry": {"coordinates":[[[[-73.91745093961867,40.82126713047492],[-73.91828731893737,40.81939394763659],[-73.92145624656013,40.82020797825525],[-73.92074360632155,40.82174476498965],[-73.92033569004288,40.82206993637245],[-73.91745093961867,40.82126713047492]]]],"type":"MultiPolygon"} +},{ + "id": 974518243, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000053, + "geom:area_square_m":485914.558801, + "geom:bbox":"-87.6496249291,41.9363051511,-87.644214732,41.9513181703", + "geom:latitude":41.941998, + "geom:longitude":-87.64719, + "iso:country":"US", + "lbl:latitude":41.943743, + "lbl:longitude":-87.647312, + "lbl:max_zoom":18.0, + "mps:latitude":41.942058, + "mps:longitude":-87.646868, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Northalsted", + "Boys Town" + ], + "reversegeo:latitude":41.942058, + "reversegeo:longitude":-87.646868, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85882181, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5ee86670080ae0af1e772c255d001351", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974518243, + "neighbourhood_id":85882181, + "region_id":85688697 + } + ], + "wof:id":974518243, + "wof:lastmodified":1566640981, + "wof:name":"Boystown", + "wof:parent_id":85882181, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85882143 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6496249290866, + 41.93630515114521, + -87.6442147319929, + 41.95131817029507 +], + "geometry": {"coordinates":[[[[-87.64961780268024,41.95131817029507],[-87.64441940370646,41.94282860374344],[-87.6442147319929,41.9364281005363],[-87.64913796628461,41.93630515114521],[-87.6491409097314,41.9363790314481],[-87.64914964205541,41.9365977084326],[-87.64916932356989,41.9371558837113],[-87.649200380951,41.9378241083452],[-87.64921612738191,41.9381633149196],[-87.64922663617931,41.938471117009],[-87.6492371770025,41.93908229294],[-87.6492543460196,41.939569324015],[-87.64926662965129,41.9399809486421],[-87.6492766654676,41.9403184624555],[-87.6492843619279,41.9405502584201],[-87.64930156864931,41.9410666260761],[-87.6493034812959,41.9411247569334],[-87.6493271463889,41.9417954982153],[-87.6493315086942,41.941919882971],[-87.6493575727322,41.9427090600892],[-87.64936160553189,41.942831405831],[-87.64936083622371,41.9429252591469],[-87.6493634151832,41.9430560072404],[-87.64936643728051,41.9432364661206],[-87.6493692639088,41.9434169529194],[-87.64937493097599,41.9436161996161],[-87.6493781887735,41.9437308281077],[-87.6493840431439,41.9439271360327],[-87.6493887130667,41.9440811208417],[-87.64938969403769,41.944113285854],[-87.64939642160761,41.9443373344618],[-87.64940353528129,41.9445289062192],[-87.6494096542305,41.9446931440673],[-87.6494122007861,41.9448050616822],[-87.6494177162587,41.9450476418506],[-87.64942277319589,41.9452711859622],[-87.6494298635494,41.9454612732035],[-87.6494388887898,41.9457037869843],[-87.6494429321634,41.9458653058168],[-87.64944932629101,41.9461205804143],[-87.64945667791091,41.9463701563084],[-87.6494660442234,41.9466865366829],[-87.6494782672077,41.947104068166],[-87.64948622871739,41.9473148239039],[-87.6494935149841,41.947508520881],[-87.6494980135468,41.9476639598265],[-87.6495028399513,41.9478288298333],[-87.64950353039811,41.9478517966899],[-87.64951022838891,41.9480822477672],[-87.6495188034214,41.9483742637861],[-87.64952969848029,41.9487482774827],[-87.64953556453879,41.9489472049256],[-87.6495415686028,41.9491149918705],[-87.6495458687433,41.9492342542959],[-87.64954912945041,41.949334069162],[-87.6495545845967,41.9495021442613],[-87.6495590489053,41.9496388984357],[-87.64956139325371,41.9496931319761],[-87.6495663081524,41.9498205757997],[-87.649577750698,41.9501178763183],[-87.6495852952692,41.9503129718131],[-87.6495893323571,41.9504386642531],[-87.64961876854829,41.9506428247084],[-87.6496208481349,41.9507145477125],[-87.6496249290866,41.9508835459704],[-87.6496244205792,41.9509530417252],[-87.649619971368,41.9511978907502],[-87.64961780268024,41.95131817029507]]]],"type":"MultiPolygon"} +},{ + "id": 907217995, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000199, + "geom:area_square_m":1865211.660817, + "geom:bbox":"-74.0140224768,40.652956,-73.983040526,40.671705", + "geom:latitude":40.66099, + "geom:longitude":-73.99923, + "iso:country":"US", + "lbl:latitude":40.659034, + "lbl:longitude":-74.001566, + "lbl:max_zoom":18.0, + "mps:latitude":40.659034, + "mps:longitude":-74.001566, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_preferred":[ + "Greenwood Heights" + ], + "name:ita_x_preferred":[ + "Greenwood Heights" + ], + "name:jpn_x_preferred":[ + "\u30b0\u30ea\u30fc\u30f3\u30a6\u30c3\u30c9\u30fb\u30cf\u30a4\u30c4" + ], + "name:spa_x_preferred":[ + "Greenwood Heights" + ], + "name:zho_x_preferred":[ + "\u683c\u6797\u4f0d\u5fb7\u9ad8\u5730" + ], + "reversegeo:latitude":40.659034, + "reversegeo:longitude":-74.001566, + "src:geom":"mz", + "wof:belongsto":[ + 85851575, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5605028" + }, + "wof:controlled":[ + "wof:parent_id", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"6caf66828451611ea921140b473d4043", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907217995, + "neighbourhood_id":85851575, + "region_id":85688543 + } + ], + "wof:id":907217995, + "wof:lastmodified":1566608542, + "wof:name":"Greenwood Heights", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -74.01402247678044, + 40.65295600000018, + -73.98304052598017, + 40.67170500000019 +], + "geometry": {"coordinates":[[[[-74.00214,40.65295600000018],[-74.01384575645204,40.65991259903129],[-74.01366273992619,40.6600287806369],[-74.01183862056564,40.65891283727483],[-74.01110750410308,40.65970627458073],[-74.01402247678044,40.66152974744019],[-74.01315554938826,40.66198159772609],[-74.01265358811509,40.66198165403767],[-74.00859956968303,40.6595209230983],[-74.00745858163899,40.66055847620999],[-74.01037201297241,40.66239888023259],[-74.010463317245,40.66264211979016],[-74.00955074142058,40.66326769413057],[-74.00896445777485,40.6633382345622],[-74.00868371591309,40.66337201284033],[-74.00616141136334,40.66184506899057],[-74.00569143021326,40.6622697857558],[-74.00568594756913,40.66227474036052],[-74.00428358250133,40.66144489410144],[-74.00414624892224,40.66156163568139],[-74.00495172594647,40.66204178153433],[-74.00512364857585,40.6621445583089],[-74.0051410196299,40.66218444025919],[-74.00526589544616,40.66227016556562],[-74.00562039670659,40.66249392634675],[-74.0057848663663,40.66258252945446],[-74.00582714339056,40.66259010896826],[-74.00585857414509,40.66257525534356],[-74.00622698247926,40.66278782786101],[-74.00592360503049,40.66310825073911],[-74.00545775556651,40.66286136665859],[-74.00422549172735,40.66217696122081],[-74.00380815470899,40.66190794572817],[-74.0034880110067,40.66224055612854],[-74.00423930501739,40.66265796345969],[-74.0043655675606,40.66273567665552],[-74.00438799951004,40.66271432134193],[-74.00455498488724,40.66281637291267],[-74.0046015847354,40.66276772310291],[-74.00458994364882,40.66273373280542],[-74.00460574305602,40.66271888517176],[-74.0045436785081,40.66268014611803],[-74.00473298121788,40.6624965039966],[-74.00535812864274,40.66286912973167],[-74.00515599719324,40.66304741456388],[-74.00506160816846,40.66299204120213],[-74.00497157758633,40.66306821324206],[-74.00519233775097,40.66320155309659],[-74.00524384971578,40.66315519090431],[-74.00523151018437,40.6631184696637],[-74.00524863034876,40.6631056204914],[-74.00518629798096,40.66306960144787],[-74.00538014413937,40.66288392645285],[-74.00599748682708,40.66325861082846],[-74.00579501836197,40.66343615129343],[-74.00569963747787,40.66337678866095],[-74.00561348681769,40.66345839025471],[-74.00590835965352,40.6636382836301],[-74.00630567322521,40.66386341177633],[-74.00672835016063,40.66411875492333],[-74.00772133506705,40.66471863301977],[-74.00772545192979,40.66474271539145],[-74.00767434594513,40.66479110926577],[-74.00763877534811,40.66479598033106],[-74.00730516126843,40.66459759075256],[-74.00725742631742,40.66464295951084],[-74.00726610280039,40.66467304882934],[-74.00725283559048,40.66469032364307],[-74.00731878365987,40.6647298607577],[-74.00712532646752,40.66491521847437],[-74.00652469600145,40.66454722766304],[-74.00670685940639,40.66436298985671],[-74.0067991243028,40.66441830653356],[-74.00688215307321,40.66434037294302],[-74.00662937859578,40.66418793012447],[-74.00653579559385,40.66425740363619],[-74.00664155766744,40.66432021135606],[-74.00644979980794,40.664506206799],[-74.00584157632497,40.66413802067456],[-74.00602870773491,40.66395913653516],[-74.00611934710186,40.66401056669319],[-74.00620306585378,40.66393016821043],[-74.00604608518992,40.66384000563561],[-74.00599262641799,40.66389076321389],[-74.00592138703399,40.66384959857589],[-74.00589826436895,40.66387569107482],[-74.00580999359886,40.66387400202656],[-74.00575781045501,40.6639227568017],[-74.005779742958,40.66398776309303],[-74.00574809232241,40.66401194231734],[-74.00582327521116,40.66405456385318],[-74.00575753791415,40.66411439291196],[-74.00589272459429,40.66419031812323],[-74.00574908832141,40.66432650988956],[-74.00574145525135,40.66438182951614],[-74.00577046133877,40.664397495281],[-74.0057446303361,40.66441763997],[-74.00583499448774,40.66446958031828],[-74.00580832976837,40.66447828424332],[-74.00584924770628,40.6645032986197],[-74.0058221184709,40.66452876005954],[-74.00564140754494,40.66453149189586],[-74.00565025959594,40.66390033784381],[-74.00429508002972,40.66309558072486],[-74.00426622473468,40.66311526298809],[-74.00362862508574,40.66273484753457],[-74.00351172988955,40.66286510724319],[-74.00340348595645,40.66298572659841],[-74.00459238636772,40.66373519983299],[-74.00432294897399,40.6640523199754],[-74.0051542214286,40.66457680979622],[-74.00528132177351,40.66465700352397],[-74.00519824046111,40.66473779368644],[-74.00486193792675,40.66506482193839],[-74.00113519509668,40.66290172405517],[-74.00094424265612,40.66307639198391],[-74.00083401108445,40.66300644269172],[-74.00049413361162,40.6633142270933],[-74.00053780692812,40.66333347770692],[-74.00003024177393,40.6638213693872],[-74.00009913667104,40.6638563455062],[-73.99953152609936,40.66439748593699],[-74.00170685986119,40.66572125305354],[-74.00287020976621,40.66642919239429],[-74.00292463516409,40.66646231216344],[-74.00224030991384,40.66679383514513],[-74.00213129539947,40.6667889963022],[-74.00161950021101,40.66676627917465],[-74.00120611348322,40.66701810720294],[-74.0014125132812,40.66713899709624],[-74.00146470932725,40.66716956870761],[-74.00068774868787,40.66754595189872],[-74.00060092293958,40.66753418954283],[-74.00011210363162,40.66746796878613],[-73.99998149339123,40.66745027490865],[-73.9998716944023,40.66756435030774],[-73.99985924124451,40.66757728848644],[-73.99902600998399,40.66844297212695],[-73.99905372182697,40.6688517992133],[-73.99894520195369,40.66897377448507],[-73.99902633264189,40.66900788840071],[-73.99905044103014,40.66892168779952],[-73.99903627811003,40.66891715219931],[-73.99904324792305,40.66888022073515],[-73.99906368149801,40.66887346818923],[-73.99917988320556,40.66829663988754],[-73.9992404910505,40.6683062865599],[-73.9990793532799,40.66903827186161],[-73.99890195713412,40.66923785677749],[-73.99865580691623,40.66951479554807],[-73.99873688841454,40.6695572019422],[-73.99891160167894,40.66964857863952],[-73.99891684838761,40.66980456321773],[-73.99889207315206,40.66993843617487],[-73.99874991491649,40.67053337321992],[-73.99871255131346,40.67068973626809],[-73.99855824468406,40.67133550166994],[-73.99876941058928,40.67160204710509],[-73.99866,40.67170500000019],[-73.99827000000001,40.67115300000017],[-73.99709199999999,40.669267],[-73.995193,40.66702500000021],[-73.99280115255208,40.66552651695199],[-73.98954526212171,40.66341309371878],[-73.98910014509039,40.66306048774685],[-73.98868263042449,40.66265054748157],[-73.98818432811115,40.66213197200197],[-73.98806202300953,40.66197907080472],[-73.98796485898526,40.66183596282399],[-73.98778517001207,40.66151743269309],[-73.98761596975568,40.66121926552569],[-73.98740313186403,40.66088271576402],[-73.98695717892532,40.66030371450692],[-73.98656490123787,40.65985070613815],[-73.98631394584399,40.65960786014705],[-73.98600293542476,40.65935243571449],[-73.98571490877679,40.65916196297158],[-73.985288328853,40.65892320400166],[-73.98304052598017,40.65760104832696],[-73.98402894386751,40.65659251346505],[-73.988428,40.65925000000012],[-73.99019,40.65760100000011],[-73.99238,40.65889900000021],[-73.992964,40.658337],[-73.995169,40.65966900000015],[-74.00214,40.65295600000018]]]],"type":"MultiPolygon"} +},{ + "id": 975148665, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000001, + "geom:area_square_m":6928.640082, + "geom:bbox":"-87.59678077,41.8088497712,-87.5958212187,41.8096527055", + "geom:latitude":41.80925, + "geom:longitude":-87.596299, + "iso:country":"US", + "lbl:latitude":41.809247, + "lbl:longitude":-87.596266, + "lbl:max_zoom":18.0, + "mps:latitude":41.80925, + "mps:longitude":-87.596299, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.80925, + "reversegeo:longitude":-87.596299, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865719, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"5ed6fa3a3adbb37d96ae9ef46a848a11", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":975148665, + "neighbourhood_id":85865719, + "region_id":85688697 + } + ], + "wof:id":975148665, + "wof:lastmodified":1566643001, + "wof:name":"Kennicott Place", + "wof:parent_id":85865719, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867647 + ], + "wof:tags":[] +}, + "bbox": [ + -87.59678076995618, + 41.80884977119278, + -87.59582121874486, + 41.80965270552579 +], + "geometry": {"coordinates":[[[[-87.59583226574418,41.80965270552579],[-87.59582121874486,41.80885411574735],[-87.59676324979128,41.80884977119278],[-87.59678076995618,41.80964203562689],[-87.59648587710571,41.8096449644053],[-87.59602195368871,41.8096502752658],[-87.59583226574418,41.80965270552579]]]],"type":"MultiPolygon"} +},{ + "id": 975149661, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000184, + "geom:area_square_m":1698568.884937, + "geom:bbox":"-87.7052104402,41.8445112756,-87.6854470543,41.8542719285", + "geom:latitude":41.849399, + "geom:longitude":-87.695331, + "iso:country":"US", + "lbl:latitude":41.850134, + "lbl:longitude":-87.697428, + "lbl:max_zoom":18.0, + "mps:latitude":41.849399, + "mps:longitude":-87.695331, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.849399, + "reversegeo:longitude":-87.695331, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85867775, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"a2d03968eef8389b1bf15d79ba0fb5ce", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":975149661, + "neighbourhood_id":85867775, + "region_id":85688697 + } + ], + "wof:id":975149661, + "wof:lastmodified":1566643001, + "wof:name":"Marshall Square", + "wof:parent_id":85867775, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867519 + ], + "wof:tags":[] +}, + "bbox": [ + -87.7052104402433, + 41.8445112756223, + -87.6854470542783, + 41.85427192845064 +], + "geometry": {"coordinates":[[[[-87.7049507288291,41.8445112756223],[-87.70521044024331,41.85396800230979],[-87.7041001155651,41.8539886122719],[-87.70409970034309,41.8539886201508],[-87.7034654249793,41.8540003880633],[-87.7034640537582,41.8540004137489],[-87.70288599578031,41.8540112309804],[-87.7028859918522,41.8540111450635],[-87.7028859533022,41.8540111459496],[-87.70241419659369,41.8540198974295],[-87.7011721974672,41.8540306600806],[-87.7007854871645,41.8540423526586],[-87.68569655236139,41.85427192845064],[-87.6856902255839,41.8540498469231],[-87.6856880246376,41.8538763721089],[-87.68568774521761,41.8538543319393],[-87.6856765254941,41.8533848906187],[-87.6856655931339,41.8529532678703],[-87.6856548430941,41.8525288338815],[-87.68565411192139,41.8525039118822],[-87.6856402639289,41.8520319062106],[-87.6856248261815,41.8515057143541],[-87.6856152263689,41.8511186921065],[-87.6856035350639,41.8506473543594],[-87.6855882390784,41.8502144479996],[-87.68557258527581,41.8497714039348],[-87.6855601061727,41.8493044527236],[-87.68554612710339,41.8487813723227],[-87.6855363214251,41.8483995790146],[-87.6855129868069,41.8474909927921],[-87.6855001878338,41.846992623001],[-87.6854897140561,41.846584872492],[-87.68547097499631,41.8458551261338],[-87.6854607167064,41.8453084355535],[-87.68545526986961,41.8450181471556],[-87.6854470542783,41.8448384179935],[-87.7049507288291,41.8445112756223]]]],"type":"MultiPolygon"} +},{ + "id": 974522607, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000133, + "geom:area_square_m":1222705.697714, + "geom:bbox":"-87.6644917014,41.8817618403,-87.6458009838,41.8944464801", + "geom:latitude":41.887035, + "geom:longitude":-87.654319, + "iso:country":"US", + "lbl:latitude":41.886576, + "lbl:longitude":-87.649564, + "lbl:max_zoom":18.0, + "mps:latitude":41.887976, + "mps:longitude":-87.654956, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":41.887976, + "reversegeo:longitude":-87.654956, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85866935, + 102191575, + 404496273, + 85633793, + 85940195, + 957979099, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"6e55c92352afcdb50811a833b5af9589", + "wof:hierarchy":[ + { + "borough_id":957979099, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":974522607, + "neighbourhood_id":85866935, + "region_id":85688697 + } + ], + "wof:id":974522607, + "wof:lastmodified":1566640982, + "wof:name":"Fulton Market", + "wof:parent_id":85866935, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85890751 + ], + "wof:tags":[] +}, + "bbox": [ + -87.66449170139563, + 41.881761840252, + -87.6458009838153, + 41.89444648011204 +], + "geometry": {"coordinates":[[[[-87.66449170139563,41.88284978674219],[-87.66373548822695,41.88356069727464],[-87.66331352896438,41.88400247062],[-87.66311813288665,41.88425882830967],[-87.66295748121959,41.88451474713518],[-87.66270359356126,41.88501453321878],[-87.66177296221798,41.88682931117032],[-87.66150822127119,41.88727050914909],[-87.66030252897527,41.88915507690663],[-87.66002444188679,41.88957071375948],[-87.65975003762159,41.88995392724584],[-87.65949133692264,41.89030578598044],[-87.65918568020592,41.8906644455921],[-87.65663480167994,41.89363858693437],[-87.65593027708216,41.89444648011204],[-87.6558908820947,41.8944194235613],[-87.6557153056664,41.894302390907],[-87.655535417067,41.8941853325307],[-87.65534272958369,41.8940553097182],[-87.6551671888713,41.8939350544224],[-87.654674647996,41.8935930440524],[-87.6543180851977,41.8933419397197],[-87.6539271088084,41.8930712280854],[-87.6535489476143,41.8928167597531],[-87.65311466689209,41.8925490227922],[-87.65250085593659,41.8921556347817],[-87.65200082084159,41.8918070086176],[-87.6518680829609,41.8917217264234],[-87.6514906347371,41.8914467980294],[-87.6512711338635,41.8913033895891],[-87.6508525724434,41.8910282151613],[-87.65070980304731,41.8909198278028],[-87.6505206496058,41.8908026932828],[-87.6503287865426,41.8906641364444],[-87.6501414141118,41.890546746796],[-87.6499963298683,41.8904437023514],[-87.6498135989824,41.8903333869918],[-87.64965440709391,41.8902267348122],[-87.64956062829719,41.8901768476564],[-87.6492424350003,41.8899459260362],[-87.64908828666,41.8898410446067],[-87.6489429170643,41.8897327322994],[-87.64883065459129,41.8896474994468],[-87.6487276722833,41.8895764159492],[-87.648587307862,41.8894733978512],[-87.6484843641055,41.88939879076],[-87.64837674251849,41.889320632345],[-87.64830216544139,41.8892391473497],[-87.6481946953084,41.8891468955247],[-87.6481107636951,41.889058307658],[-87.6479905215749,41.8888967540562],[-87.6478853254613,41.8887616592621],[-87.64774030175791,41.8886113861321],[-87.647635053014,41.8884812707618],[-87.6474704101701,41.8882960181321],[-87.6473387708009,41.8881408439016],[-87.6472464265175,41.888033230636],[-87.6471787229714,41.8879521888172],[-87.6471078064815,41.8878600986561],[-87.6469441234087,41.8876504206656],[-87.64684543565799,41.88753030454],[-87.64676652867141,41.8874302278567],[-87.646700684161,41.8873551301865],[-87.64660237065679,41.8872001543495],[-87.646524104536,41.8870403180765],[-87.6464326697054,41.8868654622336],[-87.6463611754827,41.8866957053022],[-87.646283017277,41.8865259092759],[-87.6462250655525,41.8863363128268],[-87.646167221263,41.8861367564881],[-87.6460962622417,41.88591720036],[-87.6460318354593,41.8856215780541],[-87.6459308903553,41.8851032685825],[-87.64590401509381,41.8849256858994],[-87.645891873862,41.8847159328444],[-87.6458748439661,41.884291094429],[-87.6458497656198,41.8832748013494],[-87.64580098381531,41.8817852416628],[-87.64621864443021,41.8817915619376],[-87.6464563409142,41.8817897838339],[-87.6465101486198,41.8817893811762],[-87.64673501748931,41.8817876986636],[-87.6469330818304,41.8817854798146],[-87.6473600719291,41.8817778450827],[-87.6476256051445,41.881773096633],[-87.6478885283903,41.8817701108095],[-87.6479450920972,41.8817694972547],[-87.6481431504475,41.8817673492794],[-87.6485307668393,41.881761840252],[-87.6485352197891,41.8819161481644],[-87.64854047115951,41.8821362403429],[-87.6485443140773,41.8822956488996],[-87.6485486632514,41.8824798684275],[-87.64855339525801,41.8826763844405],[-87.6485542316813,41.8827115431798],[-87.6485560327524,41.8827870480411],[-87.648559828458,41.8829474442255],[-87.6485670452673,41.883125379227],[-87.6486910316325,41.8831234738463],[-87.6491007850294,41.8831163660088],[-87.6495937722604,41.8831073373727],[-87.6497358152541,41.8831046569192],[-87.6500536685613,41.8830986585851],[-87.6503046047056,41.8830941842767],[-87.6504137286563,41.8830922383079],[-87.6506928367556,41.8830872566937],[-87.6509013239033,41.8830839014122],[-87.65116851261691,41.8830796002811],[-87.6512075188657,41.8830789562915],[-87.65141929878941,41.883075436587],[-87.65167294970141,41.8830712344648],[-87.65207100217999,41.8830632715979],[-87.6523966119649,41.8830567570822],[-87.6527080050943,41.8830511936109],[-87.6529150864063,41.8830474811147],[-87.6532344351388,41.8830427383265],[-87.65344213843539,41.883039653153],[-87.653765022838,41.8830343469443],[-87.6541101649149,41.8830286775108],[-87.6543981350341,41.8830230082376],[-87.6547651382544,41.8830157822102],[-87.6549029099486,41.8830133854391],[-87.6550517740578,41.8830107795949],[-87.6555671511194,41.8830016624354],[-87.65587407245761,41.8829962316584],[-87.6560570577453,41.8829930574059],[-87.6562300159911,41.8829900158387],[-87.6567016287031,41.8829832244577],[-87.65690882565841,41.8829802400737],[-87.65705809356641,41.8829776340066],[-87.6573103505408,41.8829732191244],[-87.6576495382142,41.8829679993353],[-87.6578959864039,41.882964206235],[-87.6581833854468,41.8829599140684],[-87.6584022127205,41.8829566446505],[-87.658794819665,41.882950630589],[-87.65902373191641,41.8829471233936],[-87.65922992698459,41.8829437784982],[-87.6594595912635,41.8829401318731],[-87.6596958992705,41.8829368080642],[-87.6599194252004,41.8829336634814],[-87.660172111873,41.8829302602016],[-87.66033290600571,41.8829280741924],[-87.66038976226091,41.8829271406352],[-87.6605995368559,41.8829240110181],[-87.66094693002221,41.8829188279094],[-87.66126315991561,41.8829141477127],[-87.6616043652991,41.8829090638886],[-87.66193201799329,41.8829041742405],[-87.6623132541558,41.882898735073],[-87.66262518529879,41.8828942839657],[-87.6628924594466,41.8828900268523],[-87.66329338869041,41.8828836675632],[-87.66348757025609,41.8828808212183],[-87.6637281311985,41.8828780817014],[-87.66394974106559,41.8828755577835],[-87.6642289428726,41.882871970817],[-87.66432549932451,41.8828707221575],[-87.66449170139563,41.88284978674219]]]],"type":"MultiPolygon"} +},{ + "id": 991748077, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000039, + "geom:area_square_m":356484.577074, + "geom:bbox":"-87.6241874571,41.8883104443,-87.6141713634,41.892610719", + "geom:latitude":41.890522, + "geom:longitude":-87.61893, + "iso:country":"US", + "lbl:latitude":41.889846, + "lbl:longitude":-87.618354, + "lbl:max_zoom":18.0, + "mps:latitude":41.890479, + "mps:longitude":-87.61893, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:fra_x_preferred":[ + "River East" + ], + "reversegeo:latitude":41.890479, + "reversegeo:longitude":-87.61893, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865743, + 102191575, + 404496273, + 85633793, + 85940195, + 957999223, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"ef1e8fef20eb958e29b3be125c755497", + "wof:hierarchy":[ + { + "borough_id":957999223, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":991748077, + "neighbourhood_id":85865743, + "region_id":85688697 + } + ], + "wof:id":991748077, + "wof:lastmodified":1566608568, + "wof:name":"River East", + "wof:parent_id":85865743, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85890765 + ], + "wof:tags":[] +}, + "bbox": [ + -87.624187457106, + 41.8883104443066, + -87.6141713633744, + 41.8926107190262 +], + "geometry": {"coordinates":[[[[-87.62390412520189,41.8924689478157],[-87.61431712436841,41.8926107190262],[-87.61434701403481,41.8919068623862],[-87.614332925154,41.891858147129],[-87.614304340239,41.8917358858543],[-87.6142707529918,41.891621694233],[-87.6142544283212,41.8915228080046],[-87.6142478706514,41.8914598059224],[-87.6142472582407,41.8913849000715],[-87.6142509670598,41.8913132778645],[-87.614258985654,41.8912460248492],[-87.61425329511491,41.8911790622233],[-87.61422910290599,41.8911049288552],[-87.6142323800978,41.8909627166844],[-87.6142382460268,41.8907081351649],[-87.614227952218,41.8902440751114],[-87.6142106921977,41.8895823410252],[-87.61420083153349,41.8892042783949],[-87.6141713633744,41.8884100486481],[-87.614425154107,41.8884116377379],[-87.6145510296121,41.8884142665238],[-87.6152659732951,41.8884227162352],[-87.6158497176479,41.8883907446888],[-87.6169216833276,41.8883529256824],[-87.61725531646,41.8883283051532],[-87.61762653912569,41.8883190760088],[-87.61797368435261,41.8883104443066],[-87.6180118355836,41.8883110387108],[-87.61805603081029,41.8883130425933],[-87.6180982999079,41.8883165168998],[-87.6181403682579,41.8883215264395],[-87.6181999060591,41.8883308983244],[-87.6190844791376,41.8884330281711],[-87.6194029946993,41.8884665401099],[-87.6204645166775,41.8885782290942],[-87.6205453472607,41.8885867335872],[-87.62086214860091,41.8886200741435],[-87.62120028628161,41.8886556474048],[-87.62231738691059,41.8887887048114],[-87.6227136768192,41.8888359190632],[-87.6233181602459,41.8888822656926],[-87.6236011104582,41.8889047658969],[-87.6236070650113,41.8889051808543],[-87.6238581066265,41.8888933155257],[-87.6240320259412,41.8888183423857],[-87.624187457106,41.8888226947529],[-87.624064777302,41.8893918056283],[-87.6237148775154,41.8893362411053],[-87.62384140979979,41.8897501405336],[-87.6238508969351,41.8899349412461],[-87.6238536601021,41.8900370439665],[-87.6238671980652,41.8905394877655],[-87.6238752698184,41.8908389339494],[-87.62388073557889,41.8910419864018],[-87.6238887546248,41.8913395661521],[-87.62389669966581,41.8916372005887],[-87.62389919459081,41.8917307950352],[-87.62389501899914,41.89225472982557],[-87.62390412520189,41.8924689478157]]]],"type":"MultiPolygon"} +},{ + "id": 991899741, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000002, + "geom:area_square_m":18130.009766, + "geom:bbox":"-87.6155876065,41.8039184054,-87.6144930327,41.8058115976", + "geom:latitude":41.804862, + "geom:longitude":-87.615044, + "iso:country":"US", + "lbl:latitude":41.804669, + "lbl:longitude":-87.615019, + "lbl:max_zoom":18.0, + "mps:latitude":41.804865, + "mps:longitude":-87.615045, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":17.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Washington Park Court District" + ], + "name:fra_x_preferred":[ + "Washington Park Court District" + ], + "reversegeo:latitude":41.804865, + "reversegeo:longitude":-87.615045, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85867527, + 102191575, + 404496273, + 85633793, + 85940195, + 958036681, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7972105" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"8942d0881ccea5bd5661eb271167f83f", + "wof:hierarchy":[ + { + "borough_id":958036681, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":991899741, + "neighbourhood_id":85867527, + "region_id":85688697 + } + ], + "wof:id":991899741, + "wof:lastmodified":1566608568, + "wof:name":"Washington Park Court", + "wof:parent_id":85867527, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867799 + ], + "wof:tags":[] +}, + "bbox": [ + -87.61558760650016, + 41.80391840535541, + -87.61449303270416, + 41.80581159755108 +], + "geometry": {"coordinates":[[[[-87.61449303270416,41.80393740537483],[-87.61555060650021,41.80391840535541],[-87.61558760650016,41.80579084639992],[-87.61454615665612,41.80581159755108],[-87.61449303270416,41.80393740537483]]]],"type":"MultiPolygon"} +},{ + "id": 975150323, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000056, + "geom:area_square_m":513335.14331, + "geom:bbox":"-87.6223425358,41.8480373349,-87.6104847335,41.8557922524", + "geom:latitude":41.851362, + "geom:longitude":-87.617073, + "iso:country":"US", + "lbl:latitude":41.852635, + "lbl:longitude":-87.612961, + "lbl:max_zoom":18.0, + "mps:latitude":41.850602, + "mps:longitude":-87.617553, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "McCormick Place" + ], + "reversegeo:latitude":41.850602, + "reversegeo:longitude":-87.617553, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865737, + 102191575, + 404496273, + 85633793, + 85940195, + 957999223, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"4202fc1f3910143728c34e753d26b557", + "wof:hierarchy":[ + { + "borough_id":957999223, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":975150323, + "neighbourhood_id":85865737, + "region_id":85688697 + } + ], + "wof:id":975150323, + "wof:lastmodified":1566643000, + "wof:name":"Mccormick Place", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85833177 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6223425358118, + 41.84803733489077, + -87.61048473348178, + 41.85579225235347 +], + "geometry": {"coordinates":[[[[-87.6223425358118,41.85304662484297],[-87.6174052141173,41.85310658282185],[-87.61834031122358,41.85529950617418],[-87.61601997744712,41.85579225235347],[-87.61457278238697,41.85227149667827],[-87.61318591340914,41.8526061966422],[-87.61397289754126,41.85461260885204],[-87.6119006129575,41.85506985928023],[-87.61048473348178,41.85154810499379],[-87.61257327158182,41.85103226011106],[-87.61295691462021,41.85197226996382],[-87.61431183563032,41.85165011926222],[-87.6132111029241,41.84902900814556],[-87.6150394189625,41.848473453763],[-87.6150242070526,41.8484290388773],[-87.61501219380141,41.8483939744681],[-87.6149711078792,41.8482739855676],[-87.6149585025718,41.84823935653],[-87.6149188352893,41.8481306290328],[-87.61510860817801,41.8481291150223],[-87.6156145202131,41.8481144563852],[-87.6161593453636,41.8481071411962],[-87.6166898066043,41.8481024132898],[-87.61754677231021,41.8480985656481],[-87.6177391765176,41.8480972590803],[-87.61819402538249,41.848090668344],[-87.6185795502081,41.8480793460794],[-87.61907512990351,41.8480732811196],[-87.6197175695532,41.8480635524703],[-87.6201458625716,41.8480570647982],[-87.6213634025473,41.8480417486387],[-87.6218466469186,41.8480447432336],[-87.6221539006919,41.84803733489077],[-87.6223425358118,41.85304662484297]]]],"type":"MultiPolygon"} +},{ + "id": 991907383, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000003, + "geom:area_square_m":24136.100751, + "geom:bbox":"-87.6248767062,41.8967226321,-87.6217741333,41.8976152242", + "geom:latitude":41.897168, + "geom:longitude":-87.623318, + "iso:country":"US", + "lbl:latitude":41.896701, + "lbl:longitude":-87.622745, + "lbl:max_zoom":18.0, + "mps:latitude":41.897168, + "mps:longitude":-87.623322, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Old Chicago Water Tower District" + ], + "name:eng_x_variant":[ + "Water Tower" + ], + "reversegeo:latitude":41.897168, + "reversegeo:longitude":-87.623322, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865743, + 102191575, + 404496273, + 85633793, + 85940195, + 957999223, + 102084317, + 85688697, + 85866925 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"3095b80ef6e98f5a72982eb40a31ebbe", + "wof:hierarchy":[ + { + "borough_id":957999223, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":991907383, + "neighbourhood_id":85865743, + "region_id":85688697 + }, + { + "borough_id":957999223, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":991907383, + "neighbourhood_id":85866925, + "region_id":85688697 + } + ], + "wof:id":991907383, + "wof:lastmodified":1566608568, + "wof:name":"Water Tower", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866933 + ], + "wof:tags":[] +}, + "bbox": [ + -87.62487670620095, + 41.8967226321393, + -87.6217741332925, + 41.89761522420647 +], + "geometry": {"coordinates":[[[[-87.62484451895639,41.8967226321393],[-87.62487670620095,41.89757173592432],[-87.62178945147616,41.89761522420647],[-87.6217741332925,41.89675801344585],[-87.6244700435154,41.8967303971119],[-87.62484451895639,41.8967226321393]]]],"type":"MultiPolygon"} +},{ + "id": 991931065, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000035, + "geom:area_square_m":324320.227882, + "geom:bbox":"-87.674705453,41.9833573904,-87.6697253697,41.9907976952", + "geom:latitude":41.987092, + "geom:longitude":-87.672254, + "iso:country":"US", + "lbl:latitude":41.983486, + "lbl:longitude":-87.673869, + "lbl:max_zoom":18.0, + "mps:latitude":41.987109, + "mps:longitude":-87.67222, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"GNIS", + "mz:tier_metro":1, + "reversegeo:latitude":41.987109, + "reversegeo:longitude":-87.67222, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865775, + 102191575, + 404496273, + 85633793, + 85940195, + 958020405, + 102084317, + 85688697 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"1c39ca32a4ce55e8b2ab54dff4599212", + "wof:hierarchy":[ + { + "borough_id":958020405, + "continent_id":102191575, + "country_id":85633793, + "county_id":102084317, + "localadmin_id":404496273, + "locality_id":85940195, + "microhood_id":991931065, + "neighbourhood_id":85865775, + "region_id":85688697 + } + ], + "wof:id":991931065, + "wof:lastmodified":1566608568, + "wof:name":"West Edgewater", + "wof:parent_id":85865775, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867801 + ], + "wof:tags":[] +}, + "bbox": [ + -87.6747054529721, + 41.9833573903554, + -87.6697253697159, + 41.9907976951786 +], + "geometry": {"coordinates":[[[[-87.67470545297211,41.9907634737427],[-87.670024334903,41.9907976951786],[-87.670022415213,41.9907420971618],[-87.6700073023963,41.9903152411387],[-87.6699954025445,41.9899909429082],[-87.66999252910929,41.9899125266171],[-87.66999204654761,41.9898993429183],[-87.6699836757014,41.9896984214994],[-87.66995769212136,41.98943685072421],[-87.66990851333563,41.98903565931739],[-87.66983495249551,41.988527388241],[-87.66977615552541,41.98800991580012],[-87.66972688288939,41.98756085541391],[-87.66972536971591,41.9871598833378],[-87.66974876845369,41.98675914693277],[-87.66980469531626,41.98635800043198],[-87.66984486541951,41.98601616894614],[-87.66981925670581,41.98347578619387],[-87.6700660660664,41.9834706885944],[-87.67044129310089,41.9834649400343],[-87.67045806891851,41.9834646584797],[-87.6709483461525,41.9834570113823],[-87.6715168427674,41.9834483288236],[-87.67207457607221,41.9834393775565],[-87.6722667567898,41.9834361480226],[-87.6724476626796,41.9834331153291],[-87.6727990862709,41.9834281819423],[-87.6728602225331,41.9834269917353],[-87.67301600844711,41.9834239006093],[-87.67322282570591,41.983419822283],[-87.67359638439061,41.9834130933459],[-87.67397274094409,41.9834074267231],[-87.6740234189519,41.9834066409683],[-87.674260226473,41.9834030823469],[-87.6744739946237,41.9833944434961],[-87.67460924408439,41.9833573903554],[-87.6746098925301,41.9834664679431],[-87.6746203284609,41.983808810663],[-87.67463038771589,41.9841422454594],[-87.6746326636008,41.9842166171876],[-87.67463815526651,41.9843990675098],[-87.67464455411771,41.9846297467929],[-87.67465144004299,41.9848775125801],[-87.67465811940021,41.9851188455988],[-87.6746652609575,41.9853758967204],[-87.6746774294643,41.9858302091573],[-87.67468794739371,41.9862100077279],[-87.67469661416909,41.9865272529696],[-87.67469059966091,41.9866036434791],[-87.6746529678082,41.9866819771324],[-87.67459962983411,41.9867929616404],[-87.6746043109931,41.9869367579876],[-87.67461628088191,41.9873232878269],[-87.67462855505229,41.9878089737296],[-87.6746378122071,41.9882126880059],[-87.6746405619545,41.9883281268024],[-87.67464524314509,41.9885249203656],[-87.6746526991347,41.9887893070009],[-87.6746552671902,41.9888807349642],[-87.6746663026656,41.9893012225517],[-87.6746797898072,41.9897601113305],[-87.6746876938867,41.9901059023199],[-87.67470545297211,41.9907634737427]]]],"type":"MultiPolygon"} +},{ + "id": 907215427, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000031, + "geom:area_square_m":287226.900841, + "geom:bbox":"-73.916248105,40.6263400356,-73.8997566065,40.6356009977", + "geom:latitude":40.631153, + "geom:longitude":-73.908953, + "iso:country":"US", + "lbl:latitude":40.630144, + "lbl:longitude":-73.891937, + "lbl:max_zoom":18.0, + "mps:latitude":40.633282, + "mps:longitude":-73.912514, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"disused name for Canarsie or a part of it", + "mz:tier_metro":1, + "reversegeo:latitude":40.633282, + "reversegeo:longitude":-73.912514, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85809201, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"fbd348a1ce007c9a5aeb4d7c03016df2", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215427, + "neighbourhood_id":85809201, + "region_id":85688543 + } + ], + "wof:id":907215427, + "wof:lastmodified":1566608562, + "wof:name":"Paerdegat", + "wof:parent_id":85809201, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85840193 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91624810498672, + 40.62634003555279, + -73.89975660650772, + 40.63560099770231 +], + "geometry": {"coordinates":[[[[-73.91328920581446,40.63560099770231],[-73.9088789904943,40.63166387267021],[-73.89975660650772,40.62740944157996],[-73.90058837062296,40.62634003555279],[-73.9155974474813,40.63302903657803],[-73.91624810498672,40.63362076106387],[-73.91328920581446,40.63560099770231]]]],"type":"MultiPolygon"} +},{ + "id": 907215479, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000375, + "geom:area_square_m":3519605.134356, + "geom:bbox":"-73.8058320526,40.6725308336,-73.76974,40.6916018205", + "geom:latitude":40.681549, + "geom:longitude":-73.788307, + "iso:country":"US", + "lbl:latitude":40.683462, + "lbl:longitude":-73.783509, + "lbl:max_zoom":18.0, + "mps:latitude":40.680643, + "mps:longitude":-73.788582, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:aze_x_preferred":[ + "C\u0259nubi Yamayka" + ], + "name:eng_x_preferred":[ + "South Jamaica" + ], + "name:eng_x_variant":[ + "S Jamaica" + ], + "name:fra_x_preferred":[ + "South Jamaica" + ], + "name:heb_x_preferred":[ + "\u05e1\u05d0\u05d5\u05ea' \u05d2'\u05de\u05d9\u05d9\u05e7\u05d4" + ], + "name:jpn_x_preferred":[ + "\u30b5\u30a6\u30b9\u30fb\u30b8\u30e3\u30de\u30a4\u30ab" + ], + "name:nld_x_preferred":[ + "South Jamaica" + ], + "name:por_x_preferred":[ + "South Jamaica" + ], + "name:rus_x_preferred":[ + "\u042e\u0436\u043d\u0430\u044f \u0414\u0436\u0430\u043c\u0435\u0439\u043a\u0430" + ], + "name:sco_x_preferred":[ + "South Jamaica" + ], + "name:swe_x_preferred":[ + "South Richmond Hill" + ], + "name:urd_x_preferred":[ + "\u062c\u0646\u0648\u0628\u06cc \u062c\u0645\u06cc\u06a9\u0627\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u062c\u0646\u0648\u0628\u06cc \u062c\u0645\u06cc\u06a9\u0627" + ], + "reversegeo:latitude":40.680643, + "reversegeo:longitude":-73.788582, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827297, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q62372" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"93692f31a77a53b817809a97143af9d9", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215479, + "neighbourhood_id":85827297, + "region_id":85688543 + } + ], + "wof:id":907215479, + "wof:lastmodified":1566608558, + "wof:name":"South Jamaica", + "wof:parent_id":85827297, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865543 + ], + "wof:tags":[] +}, + "bbox": [ + -73.80583205264146, + 40.67253083360053, + -73.76974, + 40.6916018204728 +], + "geometry": {"coordinates":[[[[-73.80583205264146,40.68291367684162],[-73.80105305922409,40.68426258520768],[-73.79392938074656,40.68629349952327],[-73.79363555023745,40.68638725165221],[-73.79059546719547,40.68765061838195],[-73.79039035782806,40.68772587470172],[-73.79007419427987,40.68782039878405],[-73.78731479150385,40.68851477891239],[-73.78717285167419,40.68854353846903],[-73.78705506457193,40.68856721475905],[-73.78586236312876,40.68894239792579],[-73.78574204185246,40.68899704480117],[-73.78562481678509,40.68904960835507],[-73.77920629919896,40.6916018204728],[-73.77661999999999,40.68836400000019],[-73.7724,40.68528000000029],[-73.76974,40.68377800000017],[-73.76981186004384,40.68361691715976],[-73.76989284051024,40.68346287759966],[-73.77000890009279,40.68327254549807],[-73.77014851888836,40.68310276787479],[-73.770299202625,40.68296311907348],[-73.77082806318776,40.68260760792355],[-73.77214029717686,40.68165319976777],[-73.77227431099573,40.68156365954428],[-73.77240238176951,40.68149819177988],[-73.77311100196381,40.68117743619899],[-73.77319734787902,40.68114254648306],[-73.77408629838284,40.68082570022268],[-73.77503794518645,40.68052113813983],[-73.77653638117981,40.68007642131061],[-73.77689902607095,40.67996317755359],[-73.77713326342371,40.67987018072733],[-73.77732203385658,40.67980339607842],[-73.77768346440723,40.67964235994502],[-73.77786107057216,40.6795424869073],[-73.7780508660672,40.67942697824559],[-73.77860961759325,40.67907557250198],[-73.77913445939836,40.67871456212671],[-73.77959970939769,40.67837267441074],[-73.78051507002979,40.67771793626256],[-73.78201134994472,40.67669229510409],[-73.78391076337445,40.67536081416956],[-73.7841418025194,40.67513272328819],[-73.78433663282973,40.67488267828184],[-73.78450667744848,40.6746090666495],[-73.7846582362106,40.67434405986029],[-73.78577859650723,40.67253083360053],[-73.78631454971575,40.67268320478804],[-73.78681436558917,40.67281416547652],[-73.78808500000014,40.67301000000016],[-73.79047400000019,40.673391],[-73.80121600000018,40.67434400000013],[-73.80323000000011,40.67768100000011],[-73.80583205264146,40.68291367684162]]]],"type":"MultiPolygon"} +},{ + "id": 907215491, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000295, + "geom:area_square_m":2769194.585818, + "geom:bbox":"-73.890707662,40.6452438072,-73.8617634546,40.6666339765", + "geom:latitude":40.656631, + "geom:longitude":-73.875413, + "iso:country":"US", + "lbl:latitude":40.648493, + "lbl:longitude":-73.881093, + "lbl:max_zoom":18.0, + "mps:latitude":40.657865, + "mps:longitude":-73.873223, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Spring Creek" + ], + "name:eng_x_variant":[ + "Spring Crk", + "Spring Creek Basin", + "Starrett City" + ], + "name:jpn_x_preferred":[ + "\u30b9\u30d7\u30ea\u30f3\u30b0\u30fb\u30af\u30ea\u30fc\u30af" + ], + "reversegeo:latitude":40.657865, + "reversegeo:longitude":-73.873223, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85816607, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q22713707" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"677b80dd716b1d355dba7e65f2bae08c", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215491, + "neighbourhood_id":85816607, + "region_id":85688543 + } + ], + "wof:id":907215491, + "wof:lastmodified":1566608559, + "wof:name":"Spring Creek", + "wof:parent_id":85816607, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865623 + ], + "wof:tags":[] +}, + "bbox": [ + -73.89070766198115, + 40.64524380722352, + -73.86176345461308, + 40.6666339764711 +], + "geometry": {"coordinates":[[[[-73.88025037684842,40.65189754127083],[-73.8820411215754,40.65438582862829],[-73.88635976924549,40.65258575224512],[-73.88752396290775,40.65416982921533],[-73.88891039383856,40.65617230675175],[-73.88955742402048,40.65697091468289],[-73.89070766198115,40.65837086385185],[-73.87151181440224,40.6666339764711],[-73.86382521550179,40.6562724597863],[-73.86373462039586,40.65616732652843],[-73.86363168498941,40.65607979996805],[-73.86344791583093,40.65595673634446],[-73.863298836075,40.65587878797734],[-73.86316423767801,40.65581358021166],[-73.86176345461308,40.65407321761615],[-73.86585275630037,40.65180716291962],[-73.8680204332334,40.65069459435079],[-73.870875304203,40.64904147332292],[-73.87216332174901,40.64811185431945],[-73.87248937418644,40.64786156924539],[-73.873532082509,40.64692464274525],[-73.873559603464,40.64689901812751],[-73.8793321168056,40.65462201684977],[-73.87963865502321,40.65449909180425],[-73.87676193956314,40.65056095449513],[-73.87394890419274,40.64653654224819],[-73.87507612287473,40.64524380722352],[-73.87584809693614,40.64602816555464],[-73.87655612660251,40.64693809730775],[-73.87758978503392,40.64829639099705],[-73.87911594022408,40.6502863227945],[-73.88025037684842,40.65189754127083]]]],"type":"MultiPolygon"} +},{ + "id": 907215733, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000113, + "geom:area_square_m":1059286.520746, + "geom:bbox":"-73.8911710675,40.6390038515,-73.8750761229,40.6543858286", + "geom:latitude":40.647517, + "geom:longitude":-73.882397, + "iso:country":"US", + "lbl:latitude":40.648906, + "lbl:longitude":-73.881964, + "lbl:max_zoom":18.0, + "mps:latitude":40.648326, + "mps:longitude":-73.882522, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:note":"dup SPring Creek", + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Spring Creek Towers" + ], + "reversegeo:latitude":40.648326, + "reversegeo:longitude":-73.882522, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85816607, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"3db54318cb8e275f3c548bb0128b732e", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215733, + "neighbourhood_id":85816607, + "region_id":85688543 + } + ], + "wof:id":907215733, + "wof:lastmodified":1566608560, + "wof:name":"Starrett City", + "wof:parent_id":85816607, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865621 + ], + "wof:tags":[] +}, + "bbox": [ + -73.89117106748294, + 40.63900385154859, + -73.87507612287473, + 40.65438582862829 +], + "geometry": {"coordinates":[[[[-73.87758978503392,40.64829639099705],[-73.87655612660251,40.64693809730775],[-73.87584809693614,40.64602816555464],[-73.87507612287473,40.64524380722352],[-73.87679634388367,40.64241120954241],[-73.87850156320785,40.63900385154859],[-73.87855952375337,40.63904982577645],[-73.87865447798265,40.63930521440719],[-73.87937099667593,40.64011874431434],[-73.8798638128148,40.64033847696814],[-73.88016359994795,40.6407410982798],[-73.88022196606978,40.64092059694138],[-73.88046932031972,40.64096179009466],[-73.88073623546346,40.64156595847583],[-73.88029248068591,40.64140491573331],[-73.88002616426286,40.64171811329613],[-73.88006714132443,40.64200344662678],[-73.88029385333998,40.64212006895723],[-73.88036553332911,40.64205672628523],[-73.88053544673275,40.64205948856167],[-73.88067807913613,40.64210743556018],[-73.88139306230622,40.64234733997911],[-73.88156734043692,40.64249118621527],[-73.88224108165672,40.64345349240925],[-73.88214832562576,40.64374372784067],[-73.88302004751287,40.64417919237698],[-73.88341999203048,40.6445238156496],[-73.88369759560314,40.64435198816341],[-73.88432452601207,40.64410228112627],[-73.88455063703381,40.64400863055944],[-73.88480750411145,40.64394630368033],[-73.88557762148922,40.6440409502923],[-73.88574170719633,40.64418192868487],[-73.88600582922207,40.64450289060902],[-73.88600571241912,40.64457125820282],[-73.88624448927217,40.64474582429053],[-73.88673134984879,40.6451319353229],[-73.88679595234551,40.6452394738165],[-73.88720113465536,40.64560217221942],[-73.88722033765475,40.64568157961345],[-73.88727419528726,40.64570622241405],[-73.8872789606891,40.64575951052063],[-73.88732997194607,40.64579846564517],[-73.88735029808218,40.64586073461324],[-73.88743444708437,40.64593668177361],[-73.88740120112716,40.6459638829904],[-73.88736029915236,40.64598718568278],[-73.88738823781266,40.64607864136906],[-73.88744693360189,40.64610398708336],[-73.88746222111708,40.64612539928216],[-73.88746471887161,40.64615847201258],[-73.88753363787424,40.64617993666957],[-73.88763668640422,40.64632545126504],[-73.88766589229492,40.64650492455408],[-73.88763764907321,40.64659437977454],[-73.88767074460121,40.64665665998255],[-73.88765531016621,40.64672278329652],[-73.88772611233233,40.6471430292],[-73.88764430451708,40.64719158147297],[-73.88756755982121,40.6472673712237],[-73.88753168688038,40.64733736554933],[-73.88751623247271,40.64741516069441],[-73.88761566189321,40.64751835758167],[-73.88764108201279,40.64758841181892],[-73.88764613154616,40.64762343086531],[-73.88762302100227,40.64769732819689],[-73.88764072166731,40.64780239000721],[-73.88771211156094,40.64787443463666],[-73.88777082214226,40.6478919986652],[-73.88784153520032,40.64787851392866],[-73.88796538193873,40.64788069976459],[-73.88802108784836,40.64790391398522],[-73.88806961284428,40.64790396122244],[-73.88815394851169,40.64787097466716],[-73.88843465427949,40.64800741559473],[-73.88863638434111,40.64802449261586],[-73.88870351913674,40.64811509934624],[-73.88873825775939,40.64813050704221],[-73.88878187140558,40.64820315219237],[-73.88879178231984,40.64831334890418],[-73.88881304373353,40.64834070256054],[-73.88888029486104,40.64836126683784],[-73.88890716492972,40.64838777284082],[-73.88893062680761,40.64844075274218],[-73.88894519646628,40.64844674606872],[-73.88896496571101,40.64847787836673],[-73.88905476803654,40.64856079392842],[-73.8891160112304,40.64859197658816],[-73.88914998188322,40.64864128982875],[-73.88924677936045,40.64874565360687],[-73.88933353488538,40.64879321148815],[-73.88948840794063,40.64885305346255],[-73.88965036399772,40.64898614058458],[-73.88975604953664,40.64908475886086],[-73.88984125931678,40.64913741577973],[-73.88994247097706,40.64925183791206],[-73.89006780073089,40.64932363564066],[-73.89021782110417,40.64937584324812],[-73.89033529141241,40.64934776900211],[-73.89013701016987,40.64917041211666],[-73.89034734693779,40.64903360577805],[-73.89117106748294,40.64993721794038],[-73.89005593368029,40.65095033292923],[-73.88985608200524,40.65108590863849],[-73.88959131212836,40.65121999595],[-73.88635976924549,40.65258575224512],[-73.8820411215754,40.65438582862829],[-73.88025037684842,40.65189754127083],[-73.87911594022408,40.6502863227945],[-73.87758978503392,40.64829639099705]]]],"type":"MultiPolygon"} +},{ + "id": 907215735, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000232, + "geom:area_square_m":2169186.262395, + "geom:bbox":"-73.9173423983,40.7676056617,-73.891195897,40.7842415035", + "geom:latitude":40.774942, + "geom:longitude":-73.902315, + "iso:country":"US", + "lbl:latitude":40.775694, + "lbl:longitude":-73.902827, + "lbl:max_zoom":18.0, + "mps:latitude":40.774066, + "mps:longitude":-73.902281, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Steinway" + ], + "name:und_x_variant":[ + "Ditmars" + ], + "reversegeo:latitude":40.774066, + "reversegeo:longitude":-73.902281, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85803821, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"76b7239279185d0c1fe42a70de77be73", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907215735, + "neighbourhood_id":85803821, + "region_id":85688543 + } + ], + "wof:id":907215735, + "wof:lastmodified":1566608561, + "wof:name":"Steinway", + "wof:parent_id":85803821, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85850997 + ], + "wof:tags":[] +}, + "bbox": [ + -73.91734239826137, + 40.76760566173567, + -73.89119589704401, + 40.78424150346872 +], + "geometry": {"coordinates":[[[[-73.90267682857933,40.7803825811765],[-73.90267677081077,40.7803525720467],[-73.9023430388268,40.78018724480454],[-73.90218303706585,40.78035936715204],[-73.90214967411914,40.78078049395429],[-73.90203565790117,40.78120310196294],[-73.90129127618928,40.78185841927033],[-73.90121754094692,40.78181911242196],[-73.90072847022454,40.781979495284],[-73.90034572668017,40.78206605451125],[-73.90034960780265,40.78216441053002],[-73.89947947752697,40.78216988593729],[-73.89865437844038,40.7819954203208],[-73.89718604766,40.78280720996353],[-73.89711384250623,40.78272307423861],[-73.89705399045003,40.78275635398786],[-73.89702538684737,40.78278799323537],[-73.89697705542579,40.78279913387837],[-73.89693680919498,40.7828215136289],[-73.89690929935816,40.78285247745811],[-73.89687032156341,40.78285848228815],[-73.8968194082322,40.78288679306937],[-73.89678925280833,40.78291444689246],[-73.89675514661018,40.78292252530713],[-73.89671207983274,40.78294647182992],[-73.89668537334383,40.78297144913584],[-73.89664596914923,40.78298323263054],[-73.89659467842748,40.78301175221285],[-73.89657383829028,40.78303869064491],[-73.89653375093988,40.78304562845652],[-73.89648431039487,40.78307311987201],[-73.89645956056663,40.783099544265],[-73.89641893379348,40.78310947059656],[-73.8963637901165,40.78314013294795],[-73.89634131469025,40.78316544072352],[-73.89630945881112,40.78317034200999],[-73.89625542678756,40.78320038781094],[-73.89622533537313,40.78322842190114],[-73.89618107248928,40.78324173011311],[-73.89600297728208,40.78333672680541],[-73.89599058636236,40.78335636082305],[-73.89597146021234,40.78337086315281],[-73.89595122113727,40.78337938817377],[-73.89591974986976,40.78338362947476],[-73.89574317446473,40.78348169737459],[-73.89572966209674,40.7834996214228],[-73.89570828646853,40.78351497588528],[-73.89568579973088,40.7835226441109],[-73.89566219788176,40.7835251847106],[-73.89548449389872,40.78362581265397],[-73.89546985516674,40.78364544440882],[-73.89544735628799,40.78366079897649],[-73.89542374320588,40.78367017388277],[-73.89539452003537,40.78367441708028],[-73.89497050778392,40.78390977565846],[-73.8949569899512,40.78393111629033],[-73.8949367384492,40.78394732634808],[-73.89491087689022,40.78395755331105],[-73.8948794052824,40.78396179483018],[-73.89471407574709,40.78405218232493],[-73.89469380303134,40.78408035111934],[-73.8946634362137,40.78409740659978],[-73.89462522027812,40.78410335081109],[-73.89458477700005,40.78409647996154],[-73.89455221889897,40.78407765918926],[-73.89444200402879,40.78413478596385],[-73.89445429828504,40.78417665008839],[-73.89443513229067,40.78421550963473],[-73.89438677123263,40.78424150346872],[-73.89432496929798,40.78423973956399],[-73.89428006418011,40.78421151156468],[-73.89426438950595,40.78417647600501],[-73.89428244401546,40.78412866172858],[-73.89432968257827,40.78410222548909],[-73.89439148705999,40.78410313685719],[-73.89443190733394,40.78412367263087],[-73.89454100171824,40.78406569230389],[-73.89452643907504,40.78403663694495],[-73.89452873134361,40.784008452228],[-73.89454787875516,40.78398028293513],[-73.89458168018531,40.78396193867165],[-73.89462095843271,40.7839564338594],[-73.89478403798553,40.78386775219647],[-73.89479643340499,40.78384555584556],[-73.89481556198577,40.78382934478729],[-73.89484367158772,40.78381826635503],[-73.89487851410834,40.78381402674787],[-73.89530927247084,40.78357611434306],[-73.89532166654018,40.78355477097289],[-73.8953430422914,40.78353856186773],[-73.89536440727545,40.78353003914862],[-73.89539475352609,40.78352579580544],[-73.89557132620165,40.78343029207817],[-73.8955814680828,40.78341236499445],[-73.89559722093651,40.78339871154007],[-73.89562195925336,40.7833884850804],[-73.8956466839733,40.7833859450031],[-73.89582887869103,40.78328788283202],[-73.89584014671416,40.78326910370381],[-73.89586151959168,40.78325374703606],[-73.89588063504669,40.78324607790796],[-73.89590760973439,40.78324268509291],[-73.89606377738433,40.78315720180517],[-73.89604638627691,40.78315103529246],[-73.89603250791806,40.78314096110222],[-73.89602736158227,40.78313477678103],[-73.89602133271249,40.78312092857457],[-73.8960214540502,40.7831063421167],[-73.8960142092929,40.78310620562357],[-73.89600746163458,40.78310419629715],[-73.89600202279782,40.78310055585334],[-73.8959985470576,40.78309572222626],[-73.8959974525343,40.78309027688626],[-73.8959760942098,40.78309164308381],[-73.89595534959109,40.78308754485847],[-73.89593756934838,40.78307844659944],[-73.89592476824252,40.78306537927306],[-73.89591839682288,40.78304982359845],[-73.89591917705938,40.78303354225994],[-73.89591331586128,40.78303450661425],[-73.89590736767467,40.78303392657684],[-73.89590201653466,40.7830318688514],[-73.89589787781658,40.78302857007412],[-73.89589542746832,40.78302440960089],[-73.8958949472769,40.78301986588151],[-73.89587401394643,40.78302092249999],[-73.89585376213165,40.7830167591386],[-73.89583638318663,40.78300782629529],[-73.89582375760385,40.78299509055106],[-73.89581725153467,40.78297992998026],[-73.89581756896526,40.78296398503525],[-73.89579357075607,40.78294587109674],[-73.89577069982144,40.78294575244795],[-73.89574910750265,40.78294001996176],[-73.89573952790383,40.78293521875959],[-73.89573111278298,40.7829292892989],[-73.89572408961993,40.78292239186673],[-73.89571493581448,40.78290646002818],[-73.89571304958707,40.78288913429822],[-73.89570414332272,40.78288641833086],[-73.89570018381318,40.78288434059261],[-73.89569667217542,40.78288184053212],[-73.89569128998342,40.78287580152869],[-73.89568388888817,40.7828703328312],[-73.89566511842609,40.7828731444563],[-73.89564619898317,40.78287098552604],[-73.89562934206502,40.78286410839904],[-73.89562231884111,40.78285913234561],[-73.89561211057001,40.78284683340429],[-73.89560794943338,40.78283263942145],[-73.89561032182453,40.78281820953838],[-73.89560094567013,40.78281623329774],[-73.89559279752274,40.78281219111072],[-73.89558942977584,40.78280950725448],[-73.8955866429644,40.78280642233843],[-73.89558450293804,40.78280312960286],[-73.89558243942579,40.78279671689988],[-73.89558257621644,40.78279091210364],[-73.89557081050025,40.78279237691987],[-73.89555888836703,40.78279244703302],[-73.89554709424176,40.78279112077039],[-73.89553570949546,40.78278842977244],[-73.89552500573259,40.78278443823801],[-73.89551523831135,40.78277924139264],[-73.89542536848086,40.78271997030176],[-73.89477429053538,40.78225359249423],[-73.89542197971667,40.78171777101628],[-73.89535750567515,40.7816576571334],[-73.89527872466451,40.7817226874621],[-73.89528796173532,40.78172923822648],[-73.89462439338405,40.78226980919071],[-73.8946009177459,40.78225315898132],[-73.89523739867151,40.78173465477342],[-73.89521264204438,40.78171709670753],[-73.89524343107055,40.78169201531747],[-73.89526612251343,40.78170811017552],[-73.89531098163852,40.78167156639662],[-73.8953166783332,40.78167560575161],[-73.89534850467382,40.78164926548435],[-73.89532558010086,40.7816262739109],[-73.89535590038525,40.78159565149595],[-73.89528467911306,40.78154124925479],[-73.89526579423844,40.78156368650608],[-73.8952382240694,40.78158012738051],[-73.89522278732731,40.78160086648181],[-73.89521222004326,40.7816097101905],[-73.89518654280279,40.78162337917894],[-73.89518095259182,40.78166623951377],[-73.89515643903543,40.78170507066047],[-73.89511595076105,40.78173520174575],[-73.89506435796235,40.78175300839313],[-73.89505582522074,40.78176887274461],[-73.89504911070165,40.78177579287627],[-73.89504099268397,40.78178178119801],[-73.89503169146174,40.78178667520785],[-73.8950105742711,40.78179268236686],[-73.89499345089534,40.78183222111448],[-73.89497846535509,40.78184973298281],[-73.89495974872317,40.78186503037895],[-73.89493785627016,40.78187765946968],[-73.89488721681123,40.78189350432425],[-73.89488094945163,40.78191042263548],[-73.89486804732974,40.78192500833575],[-73.89484979994799,40.78193580365316],[-73.89482803104501,40.78194172964602],[-73.8948082182345,40.78198078615777],[-73.89479278350191,40.78199818970929],[-73.89477409893784,40.78201364341394],[-73.89475258461358,40.78202679983581],[-73.89470305419832,40.78204509597804],[-73.8946981734053,40.78206083406874],[-73.89468665156065,40.7820744262844],[-73.89466981457502,40.78208430845602],[-73.89464960001914,40.78208934335967],[-73.89463214646797,40.7821277465406],[-73.8946173995714,40.78214477360319],[-73.89459914633296,40.7821597089665],[-73.89457789093412,40.78217214009182],[-73.89452878879167,40.78218819481315],[-73.89451476403879,40.78221004030355],[-73.89449262200554,40.78222757885703],[-73.8944644844443,40.78223912984372],[-73.89444990512636,40.7822738541843],[-73.89442156618725,40.78230325782908],[-73.89438240477224,40.78232429326701],[-73.89433647972338,40.78233478029873],[-73.89433312566325,40.7823502209901],[-73.89432340912812,40.78236401829168],[-73.89431646448033,40.78236983003722],[-73.89429932841449,40.78237850478572],[-73.8942794301997,40.78238252314644],[-73.89426271446209,40.7824180883155],[-73.89423122236758,40.78244729969678],[-73.89418863063001,40.78246674683547],[-73.89413991187082,40.7824741592585],[-73.89409075405688,40.78246867155744],[-73.89404689641604,40.78245092442737],[-73.89401345936697,40.78242298986389],[-73.89398994178221,40.78242452339438],[-73.89396691184001,40.78242059063755],[-73.89394651704826,40.78241155831721],[-73.89393065918931,40.78239826868366],[-73.89388338815883,40.78240065450149],[-73.893837577582,40.78239147643708],[-73.89379799495997,40.7823716896507],[-73.89376875964294,40.78234335335013],[-73.89375291412807,40.78230941648656],[-73.8937294364471,40.78230188891484],[-73.8937105203687,40.78228891206493],[-73.89369826944089,40.78227192901956],[-73.89363936708125,40.78225246657689],[-73.89359238276968,40.78221918097233],[-73.89356270107572,40.78217588686952],[-73.89354577525789,40.78217190115832],[-73.89353137087879,40.78216405708071],[-73.89352096165231,40.78215315716596],[-73.89351561254601,40.78214031658606],[-73.89346528031392,40.78212638311987],[-73.89344323065443,40.78211469215199],[-73.893424161562,40.78210028760629],[-73.89340864367688,40.78208360053853],[-73.89338999883927,40.78204542963733],[-73.89337206544761,40.78204473086102],[-73.89335536387378,40.78203971696694],[-73.89334803141956,40.78203573937579],[-73.89334164190726,40.78203091265033],[-73.89333636360726,40.78202536390445],[-73.89332966374306,40.78201270003232],[-73.89332863295211,40.78199907300964],[-73.89329113502656,40.78199839558982],[-73.89325576859569,40.78198889845166],[-73.89322603217549,40.78197152107081],[-73.89320486734458,40.78194798245132],[-73.89319436775718,40.7819206110766],[-73.89316202560073,40.78190028084159],[-73.89313414972767,40.78187643307118],[-73.89310800167924,40.78186982622677],[-73.89308341029535,40.78186037704936],[-73.89306090692067,40.78184828970711],[-73.89230750203646,40.78246604157373],[-73.89229702094441,40.78253435048855],[-73.89281494422094,40.78291321498261],[-73.89274917876416,40.78296570668474],[-73.89165459123727,40.7821947815307],[-73.89171690105488,40.78214228602731],[-73.89214162714602,40.78243172650315],[-73.89224191097452,40.78241079906109],[-73.89300986180196,40.78179802356217],[-73.89300068989373,40.78177971976088],[-73.89297902267404,40.78177214214841],[-73.89296180476889,40.78175959679673],[-73.89295092816624,40.78174346225298],[-73.89289812872582,40.78172999207293],[-73.89287468903464,40.78171842587093],[-73.89285412327862,40.78170404358369],[-73.8928370104063,40.78168725008969],[-73.89281495952612,40.78164837507696],[-73.89277875364625,40.78163383504859],[-73.89275063254138,40.78161120968271],[-73.89270499091218,40.78159663719644],[-73.892684896928,40.78158555601995],[-73.89266726492279,40.7815722722433],[-73.89265250853333,40.78155709749749],[-73.89263293172114,40.78152253507572],[-73.8926059084647,40.78151278003235],[-73.89258375599169,40.7814974974281],[-73.8925683704615,40.78147799539286],[-73.8925199035977,40.78146483113645],[-73.89249822767111,40.78145418045652],[-73.89247895370995,40.78144113171837],[-73.89246253659276,40.78142599288203],[-73.89243974613808,40.78139091496121],[-73.89241768315615,40.78138354945618],[-73.89239962874457,40.78137141813304],[-73.89238730474331,40.7813556779515],[-73.89235597147731,40.78134718330888],[-73.89232690321529,40.78133488664734],[-73.89230089184525,40.78131912295759],[-73.89227864597682,40.78130032168022],[-73.89217832400544,40.78137075104872],[-73.89216184201908,40.78135819165569],[-73.89211148854683,40.78139517920908],[-73.8920848045048,40.78137365032207],[-73.89224627026238,40.78125475229792],[-73.89222492781721,40.78124225449716],[-73.89220662197236,40.78122722917315],[-73.89219186413222,40.78121009608527],[-73.892151176244,40.78120370774825],[-73.89211562173415,40.78118736905679],[-73.89210107852159,40.78117601367429],[-73.89208054536552,40.78114855895832],[-73.89207323539787,40.78111747045158],[-73.89205518188596,40.78111416014213],[-73.89203951209853,40.78110658344393],[-73.89202791544278,40.7810955572243],[-73.89202164218729,40.78108227025346],[-73.89198018776671,40.78107573209951],[-73.89194370306882,40.78105940565124],[-73.89191606596962,40.78103502621201],[-73.8919065293491,40.78102059997411],[-73.89189728869439,40.78098919370689],[-73.8919018288797,40.78095719711281],[-73.89191966732156,40.7809280110278],[-73.89187669401886,40.78089465727221],[-73.89183482012547,40.78090973161751],[-73.89178875667773,40.78091352108625],[-73.89174360958951,40.78090560563385],[-73.89172296302652,40.78089748376782],[-73.89170438319921,40.78088686265047],[-73.89168838859474,40.78087403867448],[-73.89166585582747,40.78084326509409],[-73.89165786235139,40.78080857412372],[-73.89166529417943,40.78077381107821],[-73.89164770191009,40.7807611761334],[-73.89163644379344,40.78074489015733],[-73.89163273431069,40.78072671002382],[-73.89163697362136,40.78070859694039],[-73.89160475186416,40.78068300817115],[-73.89158530462484,40.78065081858406],[-73.89158076870419,40.78061556510051],[-73.89158431501356,40.7805979983272],[-73.89160254840421,40.78056540081961],[-73.89163379835782,40.78053912490868],[-73.89167463120208,40.78052205771959],[-73.89168741475613,40.78049643716536],[-73.89169832108583,40.78048355511564],[-73.89172706068787,40.78046219653196],[-73.89173389813381,40.7804275746695],[-73.8917550134551,40.78039646097515],[-73.89177027861851,40.78038327631342],[-73.89180819582592,40.78036340306392],[-73.89185250457938,40.78035384945364],[-73.89184813135286,40.78034334362579],[-73.8918486569557,40.78033233164694],[-73.89185402025134,40.78032209434675],[-73.8918635974204,40.78031382244962],[-73.89187627451903,40.78030847807889],[-73.89189057704461,40.78030668285039],[-73.89190484143832,40.78030864557122],[-73.89191589733834,40.7802727776956],[-73.89194155256436,40.78024152363847],[-73.89197907652239,40.78021820987925],[-73.89202447540029,40.78020531778049],[-73.89202790646907,40.78018889805296],[-73.89203800445415,40.7801741505296],[-73.89204525275274,40.78016788988823],[-73.89206321322803,40.78015840221123],[-73.89208420286442,40.78015372880569],[-73.89210165693289,40.78011490494032],[-73.8921161450379,40.7800975226147],[-73.89213402963897,40.78008207557246],[-73.89215487099443,40.78006894361942],[-73.89220331410863,40.78005085165151],[-73.89221743353905,40.78003437739072],[-73.89222667959727,40.7800274668512],[-73.8922371367338,40.78002163869653],[-73.89224651885672,40.7800177330278],[-73.89226677355451,40.78001258736368],[-73.89226953828597,40.77999365236486],[-73.8922872008595,40.77995945522814],[-73.89230158565871,40.77994460861408],[-73.89233930844024,40.77992164227292],[-73.89238693345644,40.77990742846363],[-73.89238594234938,40.77989888822097],[-73.89238884691891,40.7798906039904],[-73.89239897381023,40.77987880745459],[-73.89240559484624,40.77987385472266],[-73.89241853906964,40.77986745215256],[-73.89243041393865,40.77986486582294],[-73.89244276652367,40.7798649031489],[-73.89244504715478,40.77984206083174],[-73.89244763138566,40.77983118795571],[-73.89245239466931,40.77982074918109],[-73.89245922259779,40.77981099523149],[-73.89246795117391,40.7798021603819],[-73.89247837074987,40.77979445683182],[-73.89249023106299,40.77978806960876],[-73.89250324724655,40.77978315212388],[-73.89251710667186,40.77977982248751],[-73.89253484564904,40.77977051958846],[-73.89251281724422,40.77974178684948],[-73.8924961922682,40.77970211269636],[-73.89249710706522,40.7796744125393],[-73.89254394803059,40.7795755962497],[-73.89254018145552,40.77955183427147],[-73.89247748773292,40.77951465264362],[-73.89245856421998,40.77952809347229],[-73.89243701341502,40.77953901181503],[-73.8924134109014,40.77954711606192],[-73.89238838706088,40.77955218976251],[-73.8923626102369,40.77955409740708],[-73.89233676888421,40.77955278804561],[-73.89231155318096,40.77954829664895],[-73.89228763659509,40.77954074317463],[-73.89222623410127,40.77953164392625],[-73.89216393088094,40.77952735316964],[-73.89210137686584,40.77952791566489],[-73.89203922460376,40.77953332554415],[-73.89197812245179,40.77954352637289],[-73.8918179184095,40.77958857362859],[-73.89166859702844,40.77949253940983],[-73.89150718848435,40.7790978671708],[-73.8912965852538,40.77891576446896],[-73.89119589704401,40.77856328788705],[-73.89218330746358,40.77772181348738],[-73.89252259860892,40.77740462898905],[-73.89250271923211,40.77736469480256],[-73.89225365703378,40.77720452353147],[-73.89213229037037,40.77709093638003],[-73.89177229652566,40.77659352115331],[-73.89165215964923,40.77656232354972],[-73.8915305842385,40.77647676928531],[-73.89143415108217,40.77638052314342],[-73.89141605902397,40.77633895623428],[-73.89140128112417,40.77604486488027],[-73.89148016646909,40.77589684238876],[-73.89152987157541,40.775605631198],[-73.89166785647704,40.77548456209765],[-73.89176577778613,40.77535718790516],[-73.8918088345026,40.77521964056435],[-73.89179251028327,40.77508872859762],[-73.89183244904515,40.77488019988873],[-73.89215606356954,40.77444160969784],[-73.89239164375918,40.77419982119807],[-73.90049242580716,40.76760566173567],[-73.90160305064738,40.76777029715587],[-73.90390566712568,40.76813988075974],[-73.90466691422807,40.7685445679334],[-73.90560467795554,40.76871680825199],[-73.91660684792498,40.77040705115934],[-73.91726183601573,40.77078466951929],[-73.91734239826137,40.77084244830798],[-73.9064428052469,40.77973140986767],[-73.90267682857933,40.7803825811765]]]],"type":"MultiPolygon"} +},{ + "id": 907215751, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":38857.870466, + "geom:bbox":"-73.9732702724,40.7475024054,-73.9698443208,40.749830059", + "geom:latitude":40.748669, + "geom:longitude":-73.971556, + "iso:country":"US", + "lbl:latitude":40.748848, + "lbl:longitude":-73.97108, + "lbl:max_zoom":18.0, + "mps:latitude":40.748669, + "mps:longitude":-73.971558, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:ceb_x_preferred":[ + "Tudor City Historic District" + ], + "name:deu_x_preferred":[ + "Tudor City" + ], + "name:eus_x_preferred":[ + "Tudor City" + ], + "name:fra_x_preferred":[ + "Tudor City" + ], + "name:ind_x_preferred":[ + "Tudor City" + ], + "name:ita_x_preferred":[ + "Tudor City" + ], + "name:jpn_x_preferred":[ + "\u30c6\u30e5\u30fc\u30c0\u30fc\u30fb\u30b7\u30c6\u30a3\u30fc" + ], + "name:kor_x_preferred":[ + "\ud29c\ub354 \uc2dc\ud2f0" + ], + "name:rus_x_preferred":[ + "\u0422\u044e\u0434\u043e\u0440-\u0441\u0438\u0442\u0438" + ], + "name:spa_x_preferred":[ + "Tudor City" + ], + "reversegeo:latitude":40.748669, + "reversegeo:longitude":-73.971558, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85836095, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"4fb2d4c70ff2d9ce20228429bfa3f2ba", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907215751, + "neighbourhood_id":85836095, + "region_id":85688543 + } + ], + "wof:id":907215751, + "wof:lastmodified":1566608561, + "wof:name":"Tudor City", + "wof:parent_id":85836095, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865703 + ], + "wof:tags":[] +}, + "bbox": [ + -73.97327027241064, + 40.74750240535553, + -73.96984432075901, + 40.74983005901998 +], + "geometry": {"coordinates":[[[[-73.96984432075901,40.74878032510347],[-73.97080355636575,40.74750240535553],[-73.97327027241064,40.74856667756423],[-73.97230965330056,40.74983005901998],[-73.96984432075901,40.74878032510347]]]],"type":"MultiPolygon"} +},{ + "id": 907215743, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000032, + "geom:area_square_m":296565.741124, + "geom:bbox":"-73.9476927385,40.8236271492,-73.939655564,40.8316190112", + "geom:latitude":40.827605, + "geom:longitude":-73.943507, + "iso:country":"US", + "lbl:latitude":40.827366, + "lbl:longitude":-73.943204, + "lbl:max_zoom":18.0, + "mps:latitude":40.827592, + "mps:longitude":-73.943507, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Sugar Hill" + ], + "name:eng_x_preferred":[ + "Sugar Hill" + ], + "name:eng_x_variant":[ + "Sugar Hl", + "St. Nicholas Terrace" + ], + "name:eus_x_preferred":[ + "Sugar Hill" + ], + "name:fra_x_preferred":[ + "Sugar Hill" + ], + "name:jpn_x_preferred":[ + "\u30b7\u30e5\u30ac\u30fc\u30d2\u30eb" + ], + "name:kor_x_preferred":[ + "\uc288\uac70\ud790" + ], + "name:nld_x_preferred":[ + "Sugar Hill" + ], + "name:por_x_preferred":[ + "Sugar Hill" + ], + "name:spa_x_preferred":[ + "Sugar Hill" + ], + "name:zho_x_preferred":[ + "\u7cd6\u5c71" + ], + "reversegeo:latitude":40.827592, + "reversegeo:longitude":-73.943507, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869313, + 102191575, + 907216433, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1857393" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"557803e559e92a6935ea61259ba91440", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907216433, + "microhood_id":907215743, + "neighbourhood_id":85869313, + "region_id":85688543 + } + ], + "wof:id":907215743, + "wof:lastmodified":1566608563, + "wof:name":"Sugar Hill", + "wof:parent_id":85869313, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869709 + ], + "wof:tags":[] +}, + "bbox": [ + -73.94769273846104, + 40.82362714924891, + -73.93965556398857, + 40.83161901120868 +], + "geometry": {"coordinates":[[[[-73.9438684314855,40.82362714924891],[-73.94769273846104,40.82527467246399],[-73.94310018373992,40.83161901120868],[-73.94034600000001,40.8304580000002],[-73.94032710308788,40.83035466264866],[-73.94021932520774,40.83025517537469],[-73.94007838490295,40.83013081628223],[-73.93991257277966,40.83001474779593],[-73.93977992308103,40.8298820980973],[-73.93968043580706,40.82974115779251],[-73.93965556398857,40.82960850809388],[-73.9396721452009,40.82945927718293],[-73.93973017944406,40.82929346505964],[-73.94002864126597,40.82889551596376],[-73.9411064200673,40.82739491624803],[-73.94385890131382,40.8236475622618],[-73.9438684314855,40.82362714924891]]]],"type":"MultiPolygon"} +},{ + "id": 907215761, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000004, + "geom:area_square_m":34888.556048, + "geom:bbox":"-73.991724524,40.7344104155,-73.9889479818,40.7371881782", + "geom:latitude":40.735843, + "geom:longitude":-73.990318, + "iso:country":"US", + "lbl:latitude":40.736004, + "lbl:longitude":-73.990386, + "lbl:max_zoom":18.0, + "mps:latitude":40.735908, + "mps:longitude":-73.990339, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":1, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:ara_x_preferred":[ + "\u0645\u064a\u062f\u0627\u0646 \u0627\u0644\u0625\u062a\u062d\u0627\u062f" + ], + "name:cat_x_preferred":[ + "Union Square" + ], + "name:ceb_x_preferred":[ + "Union Square" + ], + "name:ces_x_preferred":[ + "Union Square" + ], + "name:dan_x_preferred":[ + "Union Square" + ], + "name:deu_x_preferred":[ + "Union Square" + ], + "name:eng_x_preferred":[ + "Union Square" + ], + "name:epo_x_preferred":[ + "Placo Unui\u011do" + ], + "name:fin_x_preferred":[ + "Union Square" + ], + "name:fra_x_preferred":[ + "Union Square" + ], + "name:heb_x_preferred":[ + "\u05db\u05d9\u05db\u05e8 \u05d9\u05d5\u05e0\u05d9\u05d5\u05df" + ], + "name:jpn_x_preferred":[ + "\u30e6\u30cb\u30aa\u30f3\u30b9\u30af\u30a8\u30a2" + ], + "name:kor_x_preferred":[ + "\uc720\ub2c8\uc5b8 \uc2a4\ud018\uc5b4" + ], + "name:nld_x_preferred":[ + "Union Square" + ], + "name:oci_x_preferred":[ + "Union Square" + ], + "name:por_x_preferred":[ + "Union Square" + ], + "name:ron_x_preferred":[ + "Union Square" + ], + "name:rus_x_preferred":[ + "\u042e\u043d\u0438\u043e\u043d-\u0441\u043a\u0432\u0435\u0440" + ], + "name:slk_x_preferred":[ + "Union Square" + ], + "name:spa_x_preferred":[ + "Union Square" + ], + "name:swe_x_preferred":[ + "Union Square" + ], + "name:tur_x_preferred":[ + "Union Square" + ], + "name:ukr_x_preferred":[ + "\u042e\u043d\u0456\u043e\u043d-C\u043a\u0432\u0435\u0440" + ], + "name:zho_x_preferred":[ + "\u8054\u5408\u5e7f\u573a" + ], + "reversegeo:latitude":40.735908, + "reversegeo:longitude":-73.990339, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865705, + 102191575, + 907215781, + 85633793, + 85977539, + 421205771, + 102081863, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q110007" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dfb3c8ce8857683d4a43c404ca91d1f3", + "wof:hierarchy":[ + { + "borough_id":421205771, + "continent_id":102191575, + "country_id":85633793, + "county_id":102081863, + "locality_id":85977539, + "macrohood_id":907215781, + "microhood_id":907215761, + "neighbourhood_id":85865705, + "region_id":85688543 + } + ], + "wof:id":907215761, + "wof:lastmodified":1566608561, + "wof:name":"Union Square", + "wof:parent_id":85865705, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85892965 + ], + "wof:tags":[] +}, + "bbox": [ + -73.99172452403793, + 40.73441041552141, + -73.98894798182472, + 40.73718817817307 +], + "geometry": {"coordinates":[[[[-73.99034477603621,40.73718817817307],[-73.98894798182472,40.73658821791152],[-73.98976094200081,40.73545142770067],[-73.9898058227889,40.73537636659559],[-73.98984370604478,40.73528931727294],[-73.98987436364509,40.73520331418894],[-73.98989822245429,40.73509039008758],[-73.9899009924457,40.73497672548474],[-73.98989174700412,40.73485597466053],[-73.98981508468097,40.73441041552141],[-73.9907037823596,40.73478189608048],[-73.99172452403793,40.73524520893186],[-73.99037070012193,40.73709767219646],[-73.99034477603621,40.73718817817307]]]],"type":"MultiPolygon"} +},{ + "id": 907215767, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000122, + "geom:area_square_m":1144304.881635, + "geom:bbox":"-73.936678787,40.6683718427,-73.9217204595,40.6777090343", + "geom:latitude":40.673032, + "geom:longitude":-73.929238, + "iso:country":"US", + "lbl:latitude":40.673542, + "lbl:longitude":-73.921029, + "lbl:max_zoom":18.0, + "mps:latitude":40.673025, + "mps:longitude":-73.929238, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "reversegeo:latitude":40.673025, + "reversegeo:longitude":-73.929238, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85867069, + 102191575, + 85633793, + 85977539, + 421205765, + 102082361, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"11e65bd0b66d6698dd5dceac4fef9747", + "wof:hierarchy":[ + { + "borough_id":421205765, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082361, + "locality_id":85977539, + "microhood_id":907215767, + "neighbourhood_id":85867069, + "region_id":85688543 + } + ], + "wof:id":907215767, + "wof:lastmodified":1566608560, + "wof:name":"Weeksville", + "wof:parent_id":85867069, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865593 + ], + "wof:tags":[] +}, + "bbox": [ + -73.93667878700712, + 40.66837184271973, + -73.9217204594884, + 40.67770903431907 +], + "geometry": {"coordinates":[[[[-73.9217204594884,40.67693423218121],[-73.92261961088184,40.66837184271973],[-73.92560589456635,40.66851428923052],[-73.93667878700712,40.66909515160813],[-73.93591288360329,40.67770903431907],[-73.9217204594884,40.67693423218121]]]],"type":"MultiPolygon"} +},{ + "id": 907213937, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000026, + "geom:area_square_m":245421.836911, + "geom:bbox":"-73.8322169852,40.6483309399,-73.8264296696,40.6572996355", + "geom:latitude":40.65286, + "geom:longitude":-73.829063, + "iso:country":"US", + "lbl:latitude":40.652971, + "lbl:longitude":-73.829372, + "lbl:max_zoom":18.0, + "mps:latitude":40.652827, + "mps:longitude":-73.8293, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Hamilton Beach" + ], + "name:eng_x_variant":[ + "Hamilton Bch" + ], + "name:fra_x_preferred":[ + "Hamilton Beach" + ], + "name:nld_x_preferred":[ + "Hamilton Beach" + ], + "name:spa_x_preferred":[ + "Hamilton Beach" + ], + "name:urd_x_preferred":[ + "\u06c1\u06cc\u0645\u0644\u0679\u0646 \u0633\u0627\u062d\u0644\u060c \u06a9\u0648\u0626\u06cc\u0646\u0632" + ], + "name:urd_x_variant":[ + "\u06c1\u06cc\u0645\u0644\u0679\u0646 \u0633\u0627\u062d\u0644" + ], + "reversegeo:latitude":40.652827, + "reversegeo:longitude":-73.8293, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420782889, + 102191575, + 85633793, + 85977539, + 421205767, + 102082377, + 85688543 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q59022" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"e85190caf6ead315cbb4ba92767e1cb5", + "wof:hierarchy":[ + { + "borough_id":421205767, + "continent_id":102191575, + "country_id":85633793, + "county_id":102082377, + "locality_id":85977539, + "microhood_id":907213937, + "neighbourhood_id":420782889, + "region_id":85688543 + } + ], + "wof:id":907213937, + "wof:lastmodified":1566608567, + "wof:name":"Hamilton Beach", + "wof:parent_id":420782889, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85823673 + ], + "wof:tags":[] +}, + "bbox": [ + -73.83221698518582, + 40.64833093992156, + -73.82642966960216, + 40.65729963545054 +], + "geometry": {"coordinates":[[[[-73.82988919856032,40.65552282258413],[-73.8299455643584,40.6554244943529],[-73.8303272533708,40.65513280580339],[-73.83037789718178,40.65512833511793],[-73.83041325059035,40.6551578223362],[-73.83041203905745,40.65521585576167],[-73.83040011516184,40.65525714450141],[-73.83035808100352,40.65532208288763],[-73.83033058333677,40.6553698723749],[-73.83026601851503,40.65542864678488],[-73.83019020357145,40.65547881938588],[-73.83012570678879,40.65551061084523],[-73.83000321318897,40.65555212870704],[-73.82992594068642,40.65554220350464],[-73.82988919856032,40.65552282258413]]],[[[-73.82896221379026,40.65723798128732],[-73.82851390239327,40.65729963545054],[-73.82849,40.65725300000017],[-73.82664837952326,40.65043608287466],[-73.82652301770946,40.64884573545145],[-73.82642966960216,40.64833093992156],[-73.82649802934519,40.64835665330203],[-73.8265529806023,40.64839690726851],[-73.82658130944169,40.64852038005435],[-73.82664941531891,40.64860232700514],[-73.82669139111334,40.64864860003755],[-73.82675728912731,40.64874912898789],[-73.8268695746432,40.64879904518625],[-73.82699528082725,40.64882424895322],[-73.82719273528116,40.6489128806798],[-73.82752122418498,40.64896570685219],[-73.82762723797374,40.64892750566152],[-73.82787736674908,40.64901927061069],[-73.82811085304162,40.64900864639468],[-73.8283673434462,40.64906718624301],[-73.82859874347986,40.64916979456999],[-73.82891475597506,40.64937915582061],[-73.82907978221002,40.64966181132403],[-73.82933909113285,40.64994732500824],[-73.82945096002813,40.65004416733572],[-73.82968053496431,40.65022886619791],[-73.82986948766413,40.65042963064447],[-73.83036529785852,40.65113787211479],[-73.83069916378,40.65140431258625],[-73.83093651353489,40.65162612925594],[-73.8313315140328,40.65274755744288],[-73.83129214295725,40.65347092446854],[-73.83139918925797,40.65351404947987],[-73.83156040928806,40.65360326778686],[-73.83159216342213,40.65364699650281],[-73.83161314793701,40.65374895323627],[-73.8315832205966,40.65381378633367],[-73.83120160215557,40.65418976108504],[-73.83042516703101,40.65483084527054],[-73.83015719582366,40.65500135673464],[-73.83013498681507,40.65502863509915],[-73.83014785427365,40.65503478765405],[-73.83016885409624,40.65500906266848],[-73.83020905999673,40.65502997144834],[-73.83018320665536,40.65506427326677],[-73.83013012659283,40.65503966637227],[-73.8301122668116,40.65509728218516],[-73.83008155069437,40.65514384105465],[-73.82990080019458,40.65529687902321],[-73.82934489242989,40.65571002208629],[-73.82917306859059,40.65586486554234],[-73.82904066356421,40.65602238094793],[-73.82902428985524,40.65604926151254],[-73.82901417557977,40.6561078844526],[-73.82903950091578,40.65612309967283],[-73.82907029897918,40.65612314544521],[-73.82910836312274,40.65611561380376],[-73.82915279961658,40.65609636311552],[-73.8291881885572,40.65607227030178],[-73.82921364262404,40.65603712544866],[-73.82934890224668,40.65592418720414],[-73.82938972946424,40.65589872179449],[-73.82945602175378,40.65583397285635],[-73.82943341421337,40.65581876175748],[-73.82966677652158,40.6555990400165],[-73.82985054455625,40.65564484306467],[-73.83002267408853,40.65563681981886],[-73.83002356082704,40.65564440882828],[-73.83006519242164,40.65565895787005],[-73.83008601602313,40.65566312775941],[-73.83015032686748,40.65566460284455],[-73.83020017064875,40.65565570813668],[-73.830308055358,40.65561999347815],[-73.83036977490913,40.65557179443943],[-73.83044328071924,40.6555194724445],[-73.83055410997997,40.65539476943639],[-73.83058237017298,40.65532375453783],[-73.83057157846146,40.65515651641772],[-73.83055658589429,40.65515473712592],[-73.83055620208113,40.65530585075516],[-73.83055145115404,40.65535943678196],[-73.83053069151882,40.65535764899062],[-73.83053540141086,40.65531987725618],[-73.83053759090555,40.65491222374293],[-73.83055028060313,40.65491224243853],[-73.83055777780145,40.65513980338383],[-73.83056930687607,40.65514245592535],[-73.83055609756155,40.65489292174051],[-73.83056886758,40.65486131285197],[-73.83060245974778,40.65480688977776],[-73.83135734463553,40.65418069958854],[-73.83134353287544,40.65416837939514],[-73.83144752173949,40.65410263768664],[-73.83146913310621,40.65411585753242],[-73.83170814411548,40.65393117429691],[-73.8319529731001,40.65403133434727],[-73.83199688470378,40.65400152699491],[-73.83205445130551,40.65404641806771],[-73.83212330981655,40.65427316167608],[-73.83200052870748,40.65444081896507],[-73.83216050229875,40.65450950867272],[-73.83219775627529,40.65445407709599],[-73.83221698518582,40.6544603862931],[-73.83216594711055,40.65453045482917],[-73.83204647773093,40.65448107631957],[-73.83190474303169,40.65463051993912],[-73.83185835751907,40.65461183972553],[-73.83160220213369,40.65484199906214],[-73.83150811075663,40.65496919065529],[-73.83149330103012,40.65497982053982],[-73.83141211466817,40.6551937389537],[-73.83135764938122,40.65547097583979],[-73.8313084475257,40.65559932463884],[-73.83116100809642,40.65591923373728],[-73.83092856003483,40.65603056223284],[-73.83083321606253,40.6560434515703],[-73.83075005477036,40.65607124700922],[-73.83040507534938,40.65625197214514],[-73.83034959412646,40.65628306117188],[-73.83021213161005,40.65633719250567],[-73.83007856308664,40.65646906446876],[-73.83008780413894,40.6565063627481],[-73.83005514080463,40.65655420551347],[-73.829985260323,40.65658261675721],[-73.82988890772108,40.65655640318567],[-73.82979956416528,40.65649197276186],[-73.82965828569361,40.65644694842202],[-73.82960897167339,40.65643161822888],[-73.82960562793463,40.65644448515609],[-73.82955286969728,40.65643795680692],[-73.82955413715339,40.65642377086851],[-73.82953233393793,40.65642686044968],[-73.82937603410709,40.65650633521591],[-73.8293077520443,40.65655362803776],[-73.82925819722632,40.65660651123434],[-73.82925847022506,40.65670629509872],[-73.82930287477961,40.65687263733879],[-73.82930974695336,40.65693245753521],[-73.82928525714235,40.65696556283855],[-73.82926623612846,40.65698408503011],[-73.82923845041697,40.65700718833912],[-73.82920543743194,40.65703583493437],[-73.82911536880955,40.65711766545049],[-73.82909990801161,40.6571308010009],[-73.82908591602643,40.65714092489517],[-73.82903021278639,40.65716524162263],[-73.82900435055305,40.65717438943228],[-73.82898285487586,40.65718560834885],[-73.828967787403,40.65720524792025],[-73.82896084087683,40.65722601563984],[-73.82896221379026,40.65723798128732]]]],"type":"MultiPolygon"} +},{ + "id": 1058996411, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000055, + "geom:area_square_m":564895.481244, + "geom:bbox":"-118.376186465,34.058183,-118.361375,34.0642470727", + "geom:latitude":34.061114, + "geom:longitude":-118.36813, + "iso:country":"US", + "lbl:latitude":34.061228, + "lbl:longitude":-118.366197, + "lbl:max_zoom":18.0, + "mps:latitude":34.061202, + "mps:longitude":-118.368129, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "Carthay Cir" + ], + "reversegeo:latitude":34.061202, + "reversegeo:longitude":-118.368129, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420551221, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"cd57db3b9f0d4b43bc0b69b139b6a603", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1058996411, + "neighbourhood_id":420551221, + "region_id":85688637 + } + ], + "wof:id":1058996411, + "wof:lastmodified":1566610069, + "wof:name":"Carthay Circle", + "wof:parent_id":420551221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867331 + ], + "wof:tags":[] +}, + "bbox": [ + -118.37618646469993, + 34.058183, + -118.361375, + 34.06424707269341 +], + "geometry": {"coordinates":[[[-118.3643566664533,34.05824407556441],[-118.36489400000001,34.058305],[-118.36539999999999,34.058363],[-118.365968,34.058428],[-118.366815,34.058524],[-118.367043,34.05855],[-118.367677,34.058623],[-118.36811899999999,34.058673],[-118.36904699999999,34.058779],[-118.369192,34.058795],[-118.369601,34.058842],[-118.37061,34.058957],[-118.371758,34.059088],[-118.372794,34.059207],[-118.373678,34.059308],[-118.37480600000001,34.059437],[-118.37546500000001,34.059512],[-118.375777,34.05949],[-118.37599899999999,34.059474],[-118.37617400000001,34.059462],[-118.37618644058337,34.05946114790525],[-118.37618646469993,34.05946651195259],[-118.37618048281846,34.05960461141886],[-118.37601875642292,34.05961610654978],[-118.37601374202697,34.0599695680407],[-118.37507857874823,34.06052617422743],[-118.37225654463936,34.06220458635782],[-118.37223568845343,34.06234067056076],[-118.37218943869102,34.06270593837759],[-118.37203944159812,34.06387150120653],[-118.37226862919695,34.06424707269341],[-118.372258,34.064245],[-118.372145,34.064228],[-118.37203,34.064182],[-118.371549,34.064127],[-118.371391,34.064109],[-118.36825899999999,34.063744],[-118.365471,34.063429],[-118.36526499999999,34.063406],[-118.365188,34.063397],[-118.363375,34.063193],[-118.361375,34.062967],[-118.36188900000001,34.06197],[-118.362375,34.061027],[-118.362861,34.060084],[-118.363473,34.058897],[-118.363559,34.058731],[-118.363685,34.058463],[-118.36381799999999,34.058183],[-118.3643566664533,34.05824407556441]]],"type":"Polygon"} +},{ + "id": 1058996415, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000036, + "geom:area_square_m":366466.533399, + "geom:bbox":"-118.376189929,34.052547,-118.369201403,34.059512", + "geom:latitude":34.056324, + "geom:longitude":-118.373316, + "iso:country":"US", + "lbl:latitude":34.056435, + "lbl:longitude":-118.373381, + "lbl:max_zoom":18.0, + "mps:latitude":34.056435, + "mps:longitude":-118.373381, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:eng_x_variant":[ + "S Carthay" + ], + "reversegeo:latitude":34.056435, + "reversegeo:longitude":-118.373381, + "src:geom":"mz", + "wof:belongsto":[ + 420551221, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"cad419d6a9868d51546f2bc2c6cb91ea", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1058996415, + "neighbourhood_id":420551221, + "region_id":85688637 + } + ], + "wof:id":1058996415, + "wof:lastmodified":1566610070, + "wof:name":"South Carthay", + "wof:parent_id":420551221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[], + "wof:tags":[] +}, + "bbox": [ + -118.37618992860367, + 34.052547, + -118.36920140256774, + 34.059512 +], + "geometry": {"coordinates":[[[-118.36920140256774,34.05879608049067],[-118.37031,34.056373],[-118.371229,34.054378],[-118.37145099999999,34.053907],[-118.372073,34.052547],[-118.37305000000001,34.052734],[-118.37379199999999,34.052875],[-118.374112,34.052936],[-118.37519,34.053142],[-118.376131,34.053321],[-118.3761439883048,34.05332348595716],[-118.37614414237194,34.05335776100313],[-118.37614875432261,34.05364936583775],[-118.37615728921614,34.05407903869237],[-118.37616586543216,34.05451798655569],[-118.37617873469691,34.05517743674005],[-118.37618910664519,34.05564866592685],[-118.37618992860367,34.05583139818057],[-118.37618897010127,34.05635246791302],[-118.37618704680823,34.05886163238885],[-118.3761863272577,34.05943594181281],[-118.37618644058337,34.05946114790525],[-118.37617400000001,34.059462],[-118.37599899999999,34.059474],[-118.375777,34.05949],[-118.37546500000001,34.059512],[-118.37480600000001,34.059437],[-118.373678,34.059308],[-118.372794,34.059207],[-118.371758,34.059088],[-118.37061,34.058957],[-118.369601,34.058842],[-118.36920140256774,34.05879608049067]]],"type":"Polygon"} +},{ + "id": 1058996413, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000035, + "geom:area_square_m":360035.573667, + "geom:bbox":"-118.372073,34.051502,-118.364356666,34.0587960805", + "geom:latitude":34.055188, + "geom:longitude":-118.368093, + "iso:country":"US", + "lbl:latitude":34.056057, + "lbl:longitude":-118.370652, + "lbl:max_zoom":18.0, + "mps:latitude":34.055215, + "mps:longitude":-118.36802, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_variant":[ + "S Carthay", + "South Carthay" + ], + "reversegeo:latitude":34.055215, + "reversegeo:longitude":-118.36802, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420551221, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"3d83b0621694c62b158d0ba671e519d1", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1058996413, + "neighbourhood_id":420551221, + "region_id":85688637 + } + ], + "wof:id":1058996413, + "wof:lastmodified":1566610070, + "wof:name":"Carthay Square", + "wof:parent_id":420551221, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85867345 + ], + "wof:tags":[] +}, + "bbox": [ + -118.372073, + 34.051502, + -118.3643566664533, + 34.05879608049067 +], + "geometry": {"coordinates":[[[-118.372073,34.052547],[-118.37145099999999,34.053907],[-118.371229,34.054378],[-118.37031,34.056373],[-118.36920140256774,34.05879608049067],[-118.369192,34.058795],[-118.36904699999999,34.058779],[-118.36811899999999,34.058673],[-118.367677,34.058623],[-118.367043,34.05855],[-118.366815,34.058524],[-118.365968,34.058428],[-118.36539999999999,34.058363],[-118.36489400000001,34.058305],[-118.3643566664533,34.05824407556441],[-118.3654937794286,34.05582280914285],[-118.365452,34.055818],[-118.36493400000001,34.05576],[-118.365274,34.055022],[-118.365324,34.054913],[-118.365999,34.053447],[-118.366032,34.053378],[-118.3665,34.05236],[-118.366561,34.052189],[-118.366597,34.05204],[-118.36662800000001,34.051825],[-118.366636,34.051684],[-118.36663900000001,34.051502],[-118.367024,34.051576],[-118.367485,34.051665],[-118.36791100000001,34.051747],[-118.368627,34.051884],[-118.368954,34.051947],[-118.369913,34.052132],[-118.37034222398772,34.05221439567622],[-118.371033,34.052347],[-118.37142994605111,34.05242333577906],[-118.372073,34.052547]]],"type":"Polygon"} +},{ + "id": 1041500549, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000072, + "geom:area_square_m":738545.380587, + "geom:bbox":"-118.570119765,34.0378838489,-118.5551,34.048186937", + "geom:latitude":34.043723, + "geom:longitude":-118.562946, + "iso:country":"US", + "lbl:latitude":34.042641, + "lbl:longitude":-118.561096, + "lbl:max_zoom":18.0, + "mps:latitude":34.043812, + "mps:longitude":-118.562947, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Castellammare" + ], + "name:ita_x_preferred":[ + "Castellammare" + ], + "name:jpn_x_preferred":[ + "\u30ab\u30b9\u30c6\u30c3\u30e9\u30f3\u30de\u30fc\u30ec" + ], + "name:nor_x_preferred":[ + "Castellammare" + ], + "name:ron_x_preferred":[ + "Castellammare" + ], + "name:rus_x_preferred":[ + "\u041a\u0430\u0441\u0442\u0435\u043b\u043b\u0430\u043c\u0430\u0440\u0435" + ], + "name:sco_x_preferred":[ + "Castellammare" + ], + "name:swe_x_preferred":[ + "Castellammare" + ], + "reversegeo:latitude":34.043812, + "reversegeo:longitude":-118.562947, + "src:geom":"zetashapes", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85840153, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"3a46f3319e998811c4e01a7c4e967027", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1041500549, + "neighbourhood_id":85840153, + "region_id":85688637 + } + ], + "wof:id":1041500549, + "wof:lastmodified":1566608535, + "wof:name":"Castellammare", + "wof:parent_id":85840153, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85809755 + ], + "wof:tags":[] +}, + "bbox": [ + -118.5701197645024, + 34.03788384889918, + -118.5551, + 34.04818693703709 +], + "geometry": {"coordinates":[[[-118.556381,34.037983],[-118.55639230582732,34.03790492634044],[-118.55654144345374,34.03792715119016],[-118.5567463659756,34.03796879821138],[-118.55695302351157,34.03802176510342],[-118.55725910482784,34.03813680334962],[-118.5575108326107,34.03826615762941],[-118.55774612568273,34.03840726932234],[-118.5579765260259,34.03855665855384],[-118.55823495272415,34.03870110826226],[-118.55853294457792,34.03883850121749],[-118.5588456807248,34.03896035863833],[-118.55914344329065,34.03906339483652],[-118.55940309518101,34.03914394699903],[-118.55959322028269,34.0391932234276],[-118.55985955449559,34.03928472013461],[-118.56021871565557,34.0394372904969],[-118.56063097182256,34.03963218514259],[-118.56150031057848,34.04005923011868],[-118.56186625934531,34.04023853754495],[-118.56221059618463,34.04039459901617],[-118.56255316009782,34.0405321263043],[-118.56291872965903,34.04065441954719],[-118.56332380082826,34.040760725591],[-118.56358331044201,34.04081790750091],[-118.56385764259382,34.04087159094134],[-118.56411041744875,34.04090955411682],[-118.56433181535695,34.04094425601915],[-118.5647595592167,34.04098620808333],[-118.56508000038802,34.04102387469877],[-118.56543683806713,34.04107407358104],[-118.56581187445309,34.04113104489704],[-118.56617703776617,34.04119219762708],[-118.56651254878665,34.04126103343686],[-118.56714054357971,34.04138277143907],[-118.56714214099081,34.04155928096916],[-118.56718526588867,34.04164012779633],[-118.56731993058477,34.04188823188221],[-118.56733335511824,34.04191775616393],[-118.56919375780012,34.0454054108848],[-118.56927150028072,34.04555033430842],[-118.56989689572693,34.04672252614025],[-118.569897,34.046724],[-118.57010699999999,34.047117],[-118.57011461389592,34.04774368220299],[-118.57011976450239,34.04818693703709],[-118.569256,34.047956],[-118.568186,34.047682],[-118.567858,34.047595],[-118.567645,34.047498],[-118.567486,34.047359],[-118.567369,34.047172],[-118.56729799999999,34.046928],[-118.56717,34.046952],[-118.56656,34.047062],[-118.56637000000001,34.047138],[-118.566261,34.047205],[-118.56618400000001,34.047292],[-118.56610999999999,34.047412],[-118.56590300000001,34.047359],[-118.56555299999999,34.047297],[-118.56528299999999,34.047289],[-118.564995,34.047291],[-118.56481700000001,34.047313],[-118.56474,34.047323],[-118.56459700000001,34.047358],[-118.564398,34.047432],[-118.56422600000001,34.047518],[-118.564131,34.047559],[-118.564098,34.047562],[-118.564024,34.047569],[-118.563941,34.047544],[-118.563205,34.047118],[-118.56283000000001,34.046892],[-118.562575,34.046764],[-118.562118,34.046601],[-118.561955,34.046555],[-118.561846,34.046567],[-118.561684,34.0466],[-118.561452,34.046621],[-118.561212,34.046613],[-118.561047,34.046698],[-118.560896,34.046855],[-118.560739,34.047108],[-118.56072,34.047143],[-118.56066199999999,34.047247],[-118.560553,34.047344],[-118.560435,34.047381],[-118.560287,34.047374],[-118.560168,34.04734],[-118.560106,34.047266],[-118.56006600000001,34.047055],[-118.560061,34.047017],[-118.560044,34.046886],[-118.560006,34.046649],[-118.55998700000001,34.046561],[-118.55994,34.0464],[-118.55988000000001,34.046243],[-118.55980599999999,34.046089],[-118.55972,34.04594],[-118.559622,34.045797],[-118.559511,34.045659],[-118.55938999999999,34.045529],[-118.55864099999999,34.044831],[-118.55754899999999,34.043813],[-118.55739,34.043682],[-118.55721800000001,34.043563],[-118.556088,34.042911],[-118.555725,34.042683],[-118.555245,34.042291],[-118.55534900000001,34.042181],[-118.55538199999999,34.04212],[-118.555397,34.042059],[-118.555395,34.042011],[-118.55539400000001,34.041992],[-118.555373,34.041932],[-118.55534,34.041882],[-118.555117,34.041637],[-118.5551,34.041597],[-118.5551,34.041552],[-118.55512,34.041505],[-118.555154,34.041472],[-118.55520199999999,34.041448],[-118.55525400000001,34.041439],[-118.55552299999999,34.04146],[-118.555639,34.041485],[-118.55574799999999,34.041524],[-118.55584899999999,34.041577],[-118.55592900000001,34.041635],[-118.55630499999999,34.041945],[-118.556393,34.041995],[-118.556494,34.042031],[-118.556725,34.042094],[-118.556819,34.042133],[-118.55689599999999,34.042178],[-118.55694800000001,34.042218],[-118.557068,34.042332],[-118.557147,34.042383],[-118.557227,34.042417],[-118.55731400000001,34.042439],[-118.55740400000001,34.042449],[-118.557503,34.042444],[-118.557608,34.04242],[-118.557697,34.042384],[-118.557776,34.042333],[-118.55784199999999,34.042271],[-118.55788800000001,34.042207],[-118.55792099999999,34.042137],[-118.557937,34.04207],[-118.557936,34.041992],[-118.557918,34.041905],[-118.557902,34.04186],[-118.55785299999999,34.041769],[-118.557787,34.041688],[-118.557596,34.041517],[-118.55739,34.041337],[-118.557237,34.041227],[-118.55707200000001,34.041132],[-118.55692500000001,34.041063],[-118.556772,34.041006],[-118.556614,34.040959],[-118.55641799999999,34.040919],[-118.556192,34.040891],[-118.556133,34.040871],[-118.556083,34.040839],[-118.556044,34.040797],[-118.55601799999999,34.040744],[-118.556011,34.040688],[-118.556023,34.040632],[-118.556055,34.040579],[-118.556095,34.040542],[-118.556152,34.040511],[-118.556217,34.040494],[-118.55645699999999,34.040474],[-118.556569,34.040454],[-118.556697,34.040415],[-118.55680099999999,34.04037],[-118.55698099999999,34.040278],[-118.557052,34.04026],[-118.557107,34.040256],[-118.55717199999999,34.040261],[-118.557239,34.040279],[-118.557305,34.040312],[-118.557355,34.040354],[-118.557444,34.040466],[-118.557525,34.040536],[-118.55761200000001,34.040587],[-118.557698,34.040622],[-118.557788,34.040645],[-118.557896,34.040657],[-118.558003,34.040652],[-118.558443,34.040602],[-118.55850700000001,34.040608],[-118.55856799999999,34.040626],[-118.558628,34.040662],[-118.558837,34.040835],[-118.55893,34.04089],[-118.559022,34.040929],[-118.559254,34.040989],[-118.55935599999999,34.041026],[-118.559665,34.041174],[-118.559749,34.041202],[-118.559848,34.041219],[-118.559949,34.041221],[-118.56004799999999,34.041209],[-118.560243,34.041166],[-118.560305,34.041168],[-118.560357,34.041184],[-118.560441,34.041228],[-118.56049400000001,34.041245],[-118.560633,34.041271],[-118.560745,34.041306],[-118.56079200000001,34.041327],[-118.560942,34.041407],[-118.560996,34.041142],[-118.560991,34.041091],[-118.56097200000001,34.041037],[-118.560939,34.040988],[-118.56089,34.040944],[-118.560829,34.040911],[-118.560766,34.040893],[-118.560694,34.040886],[-118.560593,34.040898],[-118.56012800000001,34.040874],[-118.560063,34.040865],[-118.55999300000001,34.040844],[-118.559926,34.040809],[-118.55987,34.040764],[-118.55981300000001,34.040715],[-118.55974399999999,34.040676],[-118.55965999999999,34.040649],[-118.559572,34.040638],[-118.55937900000001,34.04065],[-118.55932300000001,34.040649],[-118.559256,34.040634],[-118.55919299999999,34.040603],[-118.559145,34.040562],[-118.559134,34.040549],[-118.559027,34.040352],[-118.558993,34.04031],[-118.558947,34.040277],[-118.55888899999999,34.040254],[-118.558825,34.040246],[-118.558753,34.040252],[-118.558672,34.040252],[-118.558606,34.040238],[-118.558537,34.040207],[-118.55847,34.040161],[-118.558396,34.040142],[-118.55834400000001,34.040113],[-118.55831000000001,34.040076],[-118.558289,34.040029],[-118.558279,34.039952],[-118.558256,34.039902],[-118.55822499999999,34.039864],[-118.55817999999999,34.03983],[-118.55813000000001,34.039808],[-118.55802300000001,34.03977],[-118.55799500000001,34.039749],[-118.55797699999999,34.039718],[-118.557974,34.039685],[-118.55802,34.039553],[-118.558657,34.039895],[-118.558751,34.039932],[-118.558955,34.039997],[-118.55906899999999,34.040019],[-118.559228,34.040032],[-118.559271,34.040044],[-118.55933400000001,34.040075],[-118.55941799999999,34.040141],[-118.559487,34.040177],[-118.55956500000001,34.040198],[-118.55985699999999,34.040249],[-118.55991299999999,34.040271],[-118.55996500000001,34.040306],[-118.56003200000001,34.040373],[-118.560299,34.040545],[-118.560367,34.040571],[-118.56065700000001,34.040615],[-118.560783,34.040616],[-118.56085299999999,34.040632],[-118.560912,34.040659],[-118.561347,34.04091],[-118.561455,34.040957],[-118.56155,34.040989],[-118.56167000000001,34.04088],[-118.561707,34.040864],[-118.561752,34.040862],[-118.561792,34.040874],[-118.56211500000001,34.041021],[-118.562158,34.041026],[-118.56219900000001,34.041019],[-118.562343,34.040966],[-118.562287,34.040903],[-118.562237,34.040851],[-118.562157,34.040795],[-118.562004,34.040727],[-118.56180500000001,34.040655],[-118.560739,34.040331],[-118.560692,34.040308],[-118.56065,34.04027],[-118.560626,34.040228],[-118.56061699999999,34.04018],[-118.560626,34.040129],[-118.559831,34.039887],[-118.55951,34.039778],[-118.559195,34.03966],[-118.558885,34.039533],[-118.557571,34.038948],[-118.55745400000001,34.038887],[-118.557292,34.038815],[-118.557124,34.038752],[-118.55690800000001,34.038688],[-118.556686,34.038639],[-118.55576000000001,34.038537],[-118.55579299999999,34.03843],[-118.555932,34.037982],[-118.55596013664891,34.03788384889918],[-118.55596847797759,34.0378847933242],[-118.55612206232144,34.03788502358108],[-118.556381,34.037983]]],"type":"Polygon"} +},{ + "id": 1091861851, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000011, + "geom:area_square_m":116905.376667, + "geom:bbox":"-118.276518,33.771942,-118.273575,33.776436", + "geom:latitude":33.774189, + "geom:longitude":-118.275047, + "iso:country":"US", + "lbl:latitude":33.774189, + "lbl:longitude":-118.275047, + "lbl:max_zoom":18.0, + "mps:latitude":33.774189, + "mps:longitude":-118.275047, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "reversegeo:latitude":33.774189, + "reversegeo:longitude":-118.275047, + "src:geom":"mz", + "wof:belongsto":[ + 85858057, + 102191575, + 1108692885, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"56089f57d0ebb978953e4ccac458673e", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692885, + "microhood_id":1091861851, + "neighbourhood_id":85858057, + "region_id":85688637 + } + ], + "wof:id":1091861851, + "wof:lastmodified":1566625491, + "wof:name":"Dana Strand Village", + "wof:parent_id":85858057, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420551247 + ], + "wof:tags":[] +}, + "bbox": [ + -118.276518, + 33.771942, + -118.273575, + 33.776436 +], + "geometry": {"coordinates":[[[-118.276518,33.776294],[-118.275217,33.776365],[-118.273916,33.776436],[-118.273859,33.775711],[-118.27385599999999,33.775674],[-118.273802,33.774986],[-118.273689,33.773535],[-118.27357499999999,33.772085],[-118.27487600000001,33.772013],[-118.276178,33.771942],[-118.276291,33.773393],[-118.276405,33.774844],[-118.276518,33.776294]]],"type":"Polygon"} +},{ + "id": 1075806299, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.001029, + "geom:area_square_m":10520376.755287, + "geom:bbox":"-118.564422026,34.2319922595,-118.536096989,34.2750668496", + "geom:latitude":34.254329, + "geom:longitude":-118.549434, + "iso:country":"US", + "lbl:latitude":34.239298, + "lbl:longitude":-118.549787, + "lbl:max_zoom":18.0, + "mps:latitude":34.254493, + "mps:longitude":-118.549246, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "reversegeo:latitude":34.254493, + "reversegeo:longitude":-118.549246, + "src:geom":"lacity", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85838305, + 102191575, + 1108692439, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"ec3303a411dfe4b7ee697c15c399b1fa", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692439, + "microhood_id":1075806299, + "neighbourhood_id":85838305, + "region_id":85688637 + } + ], + "wof:id":1075806299, + "wof:lastmodified":1566625491, + "wof:name":"Northridge West", + "wof:parent_id":85838305, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85865867 + ], + "wof:tags":[] +}, + "bbox": [ + -118.56442202570258, + 34.23199225952985, + -118.5360969886625, + 34.27506684959558 +], + "geometry": {"coordinates":[[[-118.56402222779045,34.26768968674108],[-118.56402092882654,34.26774259035597],[-118.56401797426754,34.26779515763893],[-118.5640133560287,34.26784635965101],[-118.56400704266886,34.26789172949242],[-118.56399767054552,34.2679742108721],[-118.56398975099796,34.26802680102401],[-118.56398017495704,34.26807905633027],[-118.56397059622115,34.26813096788298],[-118.56395936278852,34.26818288682745],[-118.56394647376084,34.2682348131636],[-118.56393358024155,34.26828605351151],[-118.56391903472047,34.26833764497224],[-118.56390282911276,34.26838855712738],[-118.56388662440334,34.26843946850925],[-118.56386876409886,34.2684903880265],[-118.56384924370775,34.26854062824015],[-118.56382972421493,34.26859086842378],[-118.56380854463548,34.26864042930548],[-118.56378736505602,34.26868999090036],[-118.56376452808487,34.26873921542877],[-118.56374003462032,34.26878810586084],[-118.56371553846084,34.26883665180381],[-118.56368938490967,34.2688848621669],[-118.56366157127185,34.26893239323275],[-118.56363375853233,34.26897992427173],[-118.56360428570618,34.26902677527272],[-118.56357481018507,34.26907328401506],[-118.56354367547564,34.26911911272126],[-118.56351254076623,34.26916494140248],[-118.56347974597014,34.26921009227618],[-118.56344529198572,34.2692545623739],[-118.56341083530639,34.26929868947417],[-118.56337472213363,34.26934248025882],[-118.56333860357101,34.26938558433109],[-118.56330082582005,34.26942800911569],[-118.56326139157569,34.26947009832934],[-118.56322195194146,34.26951150009097],[-118.56277985954912,34.2699703968318],[-118.56274698659961,34.27000386769802],[-118.56271577643172,34.27003870523814],[-118.56268622185884,34.27007353459786],[-118.56265501438587,34.27010871656451],[-118.56262546699955,34.27014457703387],[-118.56259757430998,34.27018042932193],[-118.56256968611198,34.2702169682775],[-118.56254345440736,34.27025384350606],[-118.56251722809264,34.27029140540059],[-118.56249100177794,34.27032896802072],[-118.5624664328549,34.27036686542768],[-118.56244352312022,34.27040544281766],[-118.56242061338556,34.27044402018988],[-118.56239770634579,34.27048328422502],[-118.56237645669773,34.27052254007593],[-118.5623568635431,34.27056213368079],[-118.56233727308334,34.27060206949331],[-118.56231768442028,34.27064234825531],[-118.56229975314889,34.27068296328516],[-118.56229812629991,34.27068709226717],[-118.56228182187751,34.27072357829535],[-118.56226720269457,34.27076452140686],[-118.56225093150984,34.27080581488977],[-118.56223631681847,34.2708474453812],[-118.56222335772219,34.27088906768611],[-118.56221039772757,34.27093068997042],[-118.56219909602298,34.27097264777774],[-118.56218779611503,34.27101495001578],[-118.56217815090382,34.27105724406668],[-118.56216850838757,34.27109988180522],[-118.56216052056807,34.2711425113563],[-118.56215253274854,34.27118514088577],[-118.56214620232075,34.27122810593625],[-118.56213986919798,34.2712707279988],[-118.56213519346693,34.27131368558204],[-118.56213217512759,34.27135697942767],[-118.56212915409327,34.27139992954331],[-118.56212613575393,34.2714432233446],[-118.56212478378944,34.27148822749462],[-118.56212373455718,34.27206941535569],[-118.56212345158788,34.27227310523265],[-118.56212477121299,34.27296042167508],[-118.56212482690854,34.27296866456855],[-118.56014906778108,34.27277481902595],[-118.55981787151225,34.27274646693714],[-118.55715966765332,34.27246504560311],[-118.55674729063226,34.27242366311187],[-118.5564790222474,34.27240050877295],[-118.55634985618764,34.27238942340173],[-118.55626870507982,34.27238120866041],[-118.55587788672726,34.27234625034687],[-118.55531167770535,34.27231759078434],[-118.55496739927104,34.27231229937594],[-118.55463481061348,34.27232309747129],[-118.55438996669797,34.27233795839788],[-118.55407730896165,34.27235931183519],[-118.55366211302723,34.27239178181772],[-118.55329167834675,34.2724353816948],[-118.55304862387528,34.27247084105063],[-118.55283866333887,34.27250511784462],[-118.55262706427538,34.27254215018794],[-118.55240721867759,34.27258334183975],[-118.55229977567804,34.27260341022644],[-118.5521560110966,34.27263704113199],[-118.55194615745968,34.27268780370104],[-118.55170496429749,34.27275450942052],[-118.55129036035284,34.27287696307548],[-118.55104096197883,34.27295435233943],[-118.55088736353997,34.27300279640427],[-118.55072880640074,34.27305229307179],[-118.55046124229503,34.27313594673113],[-118.5504166526193,34.2731505759059],[-118.55034893401991,34.27317149338694],[-118.55006812964525,34.27325520631439],[-118.54987652169009,34.27331240898666],[-118.54969317733723,34.27336785674737],[-118.54932811368386,34.27347427738781],[-118.5486177214656,34.27366847763589],[-118.54849382043174,34.27370304419225],[-118.54840626613257,34.2737278283265],[-118.54831375852292,34.2737546961696],[-118.54824603004208,34.27377423796591],[-118.54809242172175,34.27382164898011],[-118.54799827468672,34.27385058417589],[-118.54788263905175,34.27388373949307],[-118.54775708781271,34.27391934299187],[-118.54764308441665,34.2739490553702],[-118.54740510183325,34.27400165440484],[-118.54716212371856,34.27404981058605],[-118.54686295149129,34.27410955518224],[-118.54671914828231,34.27413802706806],[-118.54656210390603,34.27416655833023],[-118.54632732920651,34.27420368421698],[-118.54615865524057,34.27422539795006],[-118.54598168802791,34.2742444021942],[-118.54587582785986,34.27425415336444],[-118.54572034026395,34.27426756344864],[-118.54546063282376,34.27428865584018],[-118.54513307832508,34.27431108366667],[-118.54388556363553,34.27437268240023],[-118.54236161397682,34.27442829351499],[-118.54175603179601,34.27445470534835],[-118.54147806969091,34.2744683143429],[-118.54109918186366,34.27448718268722],[-118.54068555259109,34.27450826537348],[-118.5402901618137,34.27453441811144],[-118.5400171952399,34.27455281061289],[-118.53979220409217,34.27456789681106],[-118.53952417286251,34.27458180048878],[-118.53912378835049,34.2746035059587],[-118.53880786074653,34.27463307779662],[-118.53842248259134,34.27467223223911],[-118.53810995960231,34.27471621471302],[-118.53787023518559,34.27475678175118],[-118.53757433462258,34.2748120229369],[-118.53725532130564,34.27487664105566],[-118.53719747519119,34.27488926344062],[-118.5370437689545,34.27492257646194],[-118.53688014531711,34.27495833763451],[-118.53672636092696,34.27497962879394],[-118.5365544179917,34.27500821321733],[-118.53630647668508,34.27505808728591],[-118.53626681157371,34.27506684959558],[-118.53615481591228,34.27437968250656],[-118.53615267792193,34.27404685093255],[-118.53611659529192,34.2717796425908],[-118.53611523793751,34.2687346216257],[-118.5361139749062,34.26802291912362],[-118.53611246393993,34.26727240313384],[-118.5361097070103,34.26452485017082],[-118.53610964053497,34.26271122985831],[-118.53610957405965,34.26089761053068],[-118.53610968365412,34.25911146833163],[-118.5361088895434,34.25898781634948],[-118.53610944021067,34.25727037038946],[-118.5361077100554,34.25545538414359],[-118.53610692852114,34.25327285975244],[-118.5361057041174,34.25153652981748],[-118.53610420572751,34.25001522562909],[-118.53610436203437,34.24926676248847],[-118.53610413026902,34.24820023138741],[-118.5361024010121,34.24638524478277],[-118.53610153593449,34.24547775091111],[-118.53610232555363,34.24457025022471],[-118.53610074182377,34.24329316618537],[-118.53610059629671,34.24275526331102],[-118.53610052263483,34.2409406130254],[-118.53609965396394,34.24003243218867],[-118.53609879337793,34.23912562582407],[-118.53609698866251,34.23549564394297],[-118.53722190397703,34.23549512110598],[-118.53824921643766,34.23549502158875],[-118.53836667116106,34.23549484334883],[-118.5404676132183,34.23549372266557],[-118.54249080698604,34.23549325924189],[-118.54293579375023,34.23549057673154],[-118.54297217821419,34.23549041334498],[-118.54483823867244,34.23549198779737],[-118.547084759908,34.2354911277899],[-118.54762736479749,34.23549073491947],[-118.54920886322822,34.2354900947412],[-118.55019812664666,34.23548972340805],[-118.55037017288818,34.23548962834677],[-118.55357948868233,34.23548804349705],[-118.55481689552832,34.23548752957206],[-118.55490952530886,34.23548607468889],[-118.55497567904301,34.23548336692767],[-118.55511126536211,34.23547347089893],[-118.55520549414382,34.23546342039446],[-118.55532118277935,34.23544674604562],[-118.55538562701953,34.23543580210991],[-118.55545666848715,34.23542173600151],[-118.55554586670328,34.23540174712174],[-118.55567798013548,34.23536713586194],[-118.55580839934507,34.23532669167635],[-118.55591732276822,34.23528772092464],[-118.55596187561305,34.2352706856043],[-118.55599816755053,34.23525540520568],[-118.5560592026842,34.23522936279552],[-118.55617958861035,34.23517282119436],[-118.5562620153259,34.23512950649825],[-118.55635430913649,34.23507755898591],[-118.55643009460711,34.23503083984039],[-118.55655361026375,34.23494748991503],[-118.556686914862,34.23484383006064],[-118.55678395447225,34.23475922928944],[-118.55684477580689,34.23470124361594],[-118.55690227966319,34.23464189880967],[-118.55693019750558,34.23461119964405],[-118.55695811534797,34.23458050120994],[-118.55699750737151,34.23453394889042],[-118.55701228735288,34.23451773555857],[-118.55708608036018,34.23442053274015],[-118.55769899998025,34.23355555179118],[-118.55774816477575,34.23348628392117],[-118.55779733406281,34.23341770297738],[-118.5578366012205,34.23336187685067],[-118.55787435202201,34.23330811906602],[-118.55795137806606,34.23319990823922],[-118.55800709337659,34.23312064796482],[-118.55807264074795,34.23302760407154],[-118.558121844171,34.23296417552707],[-118.55820227482994,34.23287037540314],[-118.55825976700812,34.23280965607292],[-118.55834851157506,34.23272234392244],[-118.5584438991835,34.23263877930217],[-118.55851136445797,34.23258522678152],[-118.55854427603505,34.23255931351659],[-118.5585788459021,34.23253407906441],[-118.55864964662122,34.23248463356801],[-118.5586858801682,34.23246076564854],[-118.5587600100438,34.23241439560229],[-118.55883580988747,34.23237042294592],[-118.55887371609748,34.23234929479193],[-118.55891327969923,34.23232850307311],[-118.55895284599593,34.23230839759866],[-118.55903199116571,34.23226990523073],[-118.55915570265506,34.23221677878243],[-118.55923819674425,34.23218445297252],[-118.55939334208203,34.23213186938098],[-118.55945442752135,34.2321137260624],[-118.55949735800878,34.23210184886717],[-118.55958653286871,34.23207910973758],[-118.55972033243872,34.23205032505204],[-118.55978807259764,34.23203798960405],[-118.55985582443471,34.23202737126915],[-118.55996325575614,34.23201347838243],[-118.56003929994158,34.23200591327164],[-118.56006575083512,34.2320033866166],[-118.56020300083411,34.23199588092067],[-118.56036344353714,34.23199342110808],[-118.56043788333146,34.23199341962266],[-118.56231707356588,34.23199225952985],[-118.56231744636671,34.23204755925001],[-118.56231796379635,34.2331068778019],[-118.56231943074518,34.23406142824508],[-118.56231916214891,34.23500396408446],[-118.56232073330234,34.23548278096396],[-118.56232111688297,34.23627658201774],[-118.56232138547925,34.23729880546339],[-118.56232129564772,34.23753100365947],[-118.56232165138057,34.23832068453696],[-118.56232203316456,34.23911414321412],[-118.56232330338237,34.24274104025125],[-118.562323404892,34.24324734271631],[-118.56232440202197,34.24339538168245],[-118.56232544316939,34.24526910996687],[-118.56232597048044,34.24534742389692],[-118.5623262669245,34.24637376836107],[-118.56232673854002,34.24742621692319],[-118.56232765482163,34.24952699280794],[-118.56232920082221,34.25000203072651],[-118.56232931221329,34.25050970775162],[-118.56232930233185,34.25149071232165],[-118.56232983233785,34.25181496421892],[-118.56233115196302,34.25274753128035],[-118.56233215178794,34.25363269830687],[-118.56233180683485,34.25456389907297],[-118.56233281294799,34.25545009612919],[-118.56233344715858,34.25726337257127],[-118.56233483325904,34.25746911560728],[-118.56233509017723,34.25750724303577],[-118.56233534529875,34.25754502519765],[-118.56233725242214,34.25758245689616],[-118.56234081603885,34.25762022417486],[-118.56234437785893,34.25765764767269],[-118.56234793878073,34.2576950711539],[-118.5623531552976,34.25773248719377],[-118.56236002651119,34.25776989579225],[-118.56236689502987,34.25780696061084],[-118.56237376354851,34.2578440254131],[-118.56238228676396,34.25788108277439],[-118.56239081087767,34.25791813937682],[-118.5624009860949,34.2579548462605],[-118.56241116400706,34.25799189614828],[-118.56241452909609,34.25800012417467],[-118.56242299032778,34.25802790730786],[-118.56243146233922,34.25805740775833],[-118.56244325632059,34.25808861067489],[-118.56245339291027,34.25811947798495],[-118.56246518329837,34.25815033711659],[-118.56247862928153,34.25818118806977],[-118.56249207256975,34.25821169599251],[-118.56250551675627,34.25824220464661],[-118.5625189573496,34.25827236878576],[-118.56253405174128,34.25830218247069],[-118.56255079993147,34.25833198797793],[-118.56256588623833,34.25836077110109],[-118.56258095188396,34.25838646333604],[-118.5626010427053,34.25842106216046],[-118.56262112813673,34.25845497419184],[-118.56264286377335,34.25848819200633],[-118.56266459671501,34.25852106530483],[-118.56268633055501,34.25855393933298],[-118.56270971370185,34.25858611840346],[-118.56273475154545,34.25861829003706],[-118.56275813020071,34.25864978230569],[-118.56278316445105,34.2586812671379],[-118.56280984800826,34.25871205701455],[-118.56283653156544,34.25874284687993],[-118.56286321063106,34.2587729499578],[-118.56289154259682,34.25880270184111],[-118.56291987186761,34.25883210995479],[-118.56294819844346,34.25886117578408],[-118.56297817612281,34.2588895459186],[-118.56300815020892,34.25891757228474],[-118.56303812249836,34.25894525562542],[-118.56306974768792,34.25897258777385],[-118.56310136748762,34.2589992323966],[-118.56313464018744,34.2590255265704],[-118.56316791019229,34.25905147697782],[-118.56318288151482,34.25906308605543],[-118.5635504667392,34.25934200635881],[-118.56361366411775,34.25938876992198],[-118.56369185976827,34.25945126385039],[-118.56378675150668,34.25953566384204],[-118.56383172835632,34.25957976485879],[-118.56389507126194,34.25964816708699],[-118.56397684759722,34.25975049042054],[-118.56401193309725,34.25980013224198],[-118.56406209053117,34.25987615332397],[-118.56411905899154,34.25998065175907],[-118.56415766319255,34.26006119196765],[-118.56417954345794,34.26011570481332],[-118.5641997717215,34.26017056805933],[-118.56422349802477,34.26025323965352],[-118.56442202570258,34.26098051082465],[-118.56441378455816,34.26098535748132],[-118.56440388871698,34.26099021304701],[-118.56439564757257,34.26099505970312],[-118.56438740822477,34.26100025085161],[-118.56437916977531,34.26100544125738],[-118.56437093312246,34.26101097541298],[-118.56436269646962,34.26101651031068],[-118.56435611451353,34.26102203629873],[-118.56434787786071,34.26102757045329],[-118.56433964390283,34.26103344835756],[-118.56433306464166,34.26103931809459],[-118.56432483248039,34.2610455397481],[-118.56431825321926,34.26105140948429],[-118.56431002375294,34.26105797414446],[-118.56430344628843,34.26106418762972],[-118.56429687151888,34.26107074412209],[-118.56429029674931,34.26107730135634],[-118.56428372197975,34.26108385933253],[-118.56427714631187,34.26109041582337],[-118.56427057693217,34.26109765981334],[-118.56426728819994,34.26110076692579],[-118.56384190357355,34.2615757335606],[-118.56383533778715,34.26158366426208],[-118.56382877200075,34.2615915949628],[-118.56382220621431,34.26159952566277],[-118.56381564042789,34.26160745636199],[-118.56380907733643,34.26161573080822],[-118.56380251155004,34.26162366150592],[-118.56379760315531,34.26163192852617],[-118.56379104186048,34.26164054597516],[-118.56378613346578,34.26164881225131],[-118.56378122686769,34.26165742227421],[-118.56377632116791,34.26166603303867],[-118.56377141456984,34.26167464305981],[-118.56376651066671,34.26168359608513],[-118.56376160496694,34.26169220610448],[-118.56375670016547,34.26170115987031],[-118.5637534509591,34.2617101054684],[-118.56374854705595,34.26171905923234],[-118.56374530054454,34.26172834857579],[-118.56374205133814,34.26173729417103],[-118.5637388048267,34.26174658351248],[-118.56373555562033,34.26175552984817],[-118.56373230821059,34.26176481918765],[-118.56372906169914,34.26177410852605],[-118.56372747168108,34.26178373344373],[-118.56372422516964,34.26179302278004],[-118.56372263245665,34.26180230394858],[-118.56371938864017,34.26181193702977],[-118.56371779592713,34.26182121819617],[-118.56371620590913,34.2618308438509],[-118.56371461678938,34.26184046876203],[-118.56371467877312,34.26184974250098],[-118.56371308965338,34.26185936741],[-118.56371149963535,34.26186899306031],[-118.56371152927974,34.26187345805504],[-118.56365593344512,34.26270736553079],[-118.56365597566594,34.26271354771235],[-118.56365438564788,34.26272317252246],[-118.56365279562984,34.26273279807398],[-118.5636528585119,34.26274207171455],[-118.56365126849384,34.26275169726384],[-118.5636496784758,34.26276132206965],[-118.56364643196436,34.262770611298],[-118.5636448419463,34.26278023610165],[-118.56364325013161,34.26278951790364],[-118.56364000272187,34.26279880712887],[-118.56363841090717,34.26280808892886],[-118.56363516439575,34.26281737815204],[-118.56363191698598,34.26282666737426],[-118.56362867047456,34.26283595659538],[-118.56362542306481,34.26284524581548],[-118.56362217385843,34.26285419203433],[-118.56361726995529,34.26286314567648],[-118.56361402344383,34.26287243489363],[-118.5636091186424,34.26288138853384],[-118.56360421294265,34.26288999917295],[-118.56360096373625,34.26289894538709],[-118.56359605713816,34.26290755528202],[-118.56359115054009,34.26291616517607],[-118.56358624394201,34.26292477506924],[-118.56357968354548,34.26293339312822],[-118.56357477694742,34.26294200301962],[-118.56356986855269,34.2629502699103],[-118.56356330456292,34.26295854422441],[-118.56355674147143,34.26296681853771],[-118.56355183038181,34.26297474094134],[-118.56354526459538,34.26298267225333],[-118.56353869880896,34.26299060282214],[-118.56353213302255,34.26299853339021],[-118.56352390984445,34.26300612838216],[-118.56351734405803,34.26301405969119],[-118.56351077378004,34.2630213035155],[-118.56350255060194,34.2630288985054],[-118.56349598032394,34.26303614232843],[-118.5634877553492,34.26304339357507],[-118.56347952767952,34.26305030182166],[-118.56347295740153,34.26305754564285],[-118.5634647270369,34.26306411014645],[-118.5634565002655,34.26307101839135],[-118.56344826990087,34.2630775828939],[-118.56343838394118,34.26308415482019],[-118.56343015177991,34.26309037632245],[-118.56342191961865,34.26309659708183],[-118.56341203276064,34.2631028260074],[-118.56340379880274,34.26310870376665],[-118.56339555945496,34.26311389478473],[-118.56336820755121,34.2634746853462],[-118.56340089904101,34.26390492513018],[-118.56344981590149,34.26453225199836],[-118.56352966535047,34.26557402636826],[-118.56353679527889,34.26564956115654],[-118.56354376710378,34.26570173924564],[-118.56355239632042,34.26575425286676],[-118.56356102284209,34.26580642272451],[-118.56357130495884,34.26585858512593],[-118.56358323907739,34.26591039634084],[-118.56359517319594,34.26596220752381],[-118.56360875931628,34.26601366752112],[-118.56362234633495,34.26606512897177],[-118.56363758535545,34.26611623775285],[-118.56365447727605,34.26616699534976],[-118.56367302209676,34.2662174017632],[-118.56367976664792,34.26623591857908],[-118.56384499287982,34.26668683764518],[-118.56387026159045,34.2667526698775],[-118.56388715351103,34.2668034270903],[-118.56390404543166,34.26685418501485],[-118.56391928535044,34.26690529331641],[-118.56393452706585,34.26695674679755],[-118.56394811408452,34.26700820692876],[-118.5639600491014,34.26706001817774],[-118.56397198591492,34.26711217237775],[-118.56398226533668,34.26716399172897],[-118.56399089275666,34.26721616145458],[-118.56399952197329,34.26726867487246],[-118.5640048417964,34.26732120384764],[-118.56401181631627,34.26737372536613],[-118.56401548144265,34.26742626244195],[-118.56401914656901,34.26747879948488],[-118.5640228143903,34.26753167947621],[-118.56402317012315,34.26758423130099],[-118.56402352765264,34.26763712755837],[-118.56402222779045,34.26768968674108]]],"type":"Polygon"} +},{ + "id": 1092456409, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000136, + "geom:area_square_m":1397583.244736, + "geom:bbox":"-118.259342549,34.0854118326,-118.242929195,34.1025895243", + "geom:latitude":34.092534, + "geom:longitude":-118.250386, + "iso:country":"US", + "lbl:latitude":34.089089, + "lbl:longitude":-118.247434, + "lbl:max_zoom":18.0, + "mps:latitude":34.091172, + "mps:longitude":-118.249826, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Elysian Heights" + ], + "name:eng_x_variant":[ + "Elysian Hts" + ], + "name:fra_x_preferred":[ + "Elysian Heights" + ], + "reversegeo:latitude":34.091172, + "reversegeo:longitude":-118.249826, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85865835, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5368569" + }, + "wof:country":"US", + "wof:geomhash":"fba1f9e333d7e678e0aa3fa19546fd88", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1092456409, + "neighbourhood_id":85865835, + "region_id":85688637 + } + ], + "wof:id":1092456409, + "wof:lastmodified":1566625490, + "wof:name":"Elysian Heights", + "wof:parent_id":85865835, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869219 + ], + "wof:tags":[] +}, + "bbox": [ + -118.2593425489821, + 34.08541183261789, + -118.24292919512337, + 34.10258952430608 +], + "geometry": {"coordinates":[[[-118.24856940458471,34.08541183261789],[-118.25932400955128,34.09001191240427],[-118.25933573256573,34.09006444025654],[-118.25934084397971,34.09011526443958],[-118.2593425489821,34.09013243545848],[-118.25934095357417,34.09015064353437],[-118.25933937882748,34.09017537749746],[-118.25933942913314,34.09019152111544],[-118.25933623921554,34.09022793723793],[-118.25933304300978,34.09026229261755],[-118.25932818042914,34.09029184284531],[-118.2593233708491,34.09033856701567],[-118.25932014320229,34.09036261723931],[-118.25931526535031,34.09038735932378],[-118.25930713380035,34.09042790796762],[-118.25930063898085,34.09046364402442],[-118.2592826762684,34.09052894509001],[-118.2592400997172,34.09064513394919],[-118.25921714327012,34.09069773580271],[-118.25919250787179,34.09074141108034],[-118.25910376779645,34.09088208716045],[-118.25900674166091,34.09101350618388],[-118.25894091940508,34.09108921376866],[-118.25888657851694,34.0911394786397],[-118.25872025005221,34.09128993830264],[-118.25844353930027,34.09152512956187],[-118.25833977490181,34.09161431377962],[-118.2579378821184,34.09195659589721],[-118.25788187934698,34.09200377294572],[-118.25778140817233,34.09209054484212],[-118.25768588312167,34.09217421521369],[-118.25760519105296,34.09224823750881],[-118.25734995093462,34.09248612878623],[-118.25718528704813,34.09264276508794],[-118.25697451712963,34.09284277772428],[-118.25692017713978,34.0928940718857],[-118.25687406032806,34.09293435746847],[-118.25683453355722,34.09296947724447],[-118.25678841764379,34.09301010648276],[-118.25671924377365,34.0930710499316],[-118.25665830206479,34.09312442023452],[-118.25661054043775,34.0931667700838],[-118.25655783448343,34.09321256574439],[-118.25650183710185,34.09326214569349],[-118.25643266143508,34.09332274601479],[-118.25634042870992,34.09340400338876],[-118.25622843933672,34.09350488222442],[-118.25603905111862,34.09367839978947],[-118.25596825668769,34.09374965117675],[-118.25590411607811,34.09383668834844],[-118.25584151877416,34.09388868713704],[-118.25576253799608,34.09398331206987],[-118.25573948542925,34.09400568820011],[-118.25569006102064,34.09404460668825],[-118.25559944436466,34.09411521279647],[-118.25554342901681,34.09415929694955],[-118.25550061710699,34.09420060555068],[-118.25543804495589,34.09426084737947],[-118.25534750016512,34.0943544661315],[-118.25526683684252,34.09443947181211],[-118.25520922339176,34.09450108374869],[-118.2551812372774,34.09453033865339],[-118.25515819459204,34.09455580482916],[-118.25514502439168,34.09456957231684],[-118.25512856186577,34.09458678111543],[-118.25510551558718,34.09461121696358],[-118.25508740824598,34.09463083377881],[-118.25505613429766,34.09466490468724],[-118.25501991781867,34.0947031079788],[-118.25497876869046,34.09474819089067],[-118.25495736812545,34.09477090603945],[-118.25490305418676,34.09483147403654],[-118.25483558711565,34.09491164906968],[-118.25477634861254,34.09498218824722],[-118.25472533688084,34.09504274865409],[-118.2546891365715,34.09508610404363],[-118.25466610466593,34.09511534833149],[-118.25465459006062,34.09513048599577],[-118.25456740227408,34.09524264552208],[-118.25452135193767,34.09530594329653],[-118.25444899713311,34.09540811127523],[-118.25439308509154,34.09548654355093],[-118.25432731403968,34.09558148359806],[-118.25426811865572,34.09566679230038],[-118.2542451020215,34.09570084493826],[-118.25418920165801,34.09578339887229],[-118.2535693191962,34.09668566069836],[-118.25315163582677,34.09728179587417],[-118.25296253147629,34.09755354339029],[-118.25288690231251,34.09766705282302],[-118.25281456906752,34.09777780603261],[-118.25274388243444,34.09788683776401],[-118.25269127080321,34.0979656054629],[-118.25259261692041,34.09811076329122],[-118.25253670308217,34.09818988114691],[-118.25245283007902,34.09830787156786],[-118.2523541591282,34.09844821892715],[-118.25222917382779,34.09862503137855],[-118.25214198334631,34.09873856243413],[-118.25205313547316,34.09885003653862],[-118.25193490640197,34.09907698333825],[-118.25187413627133,34.09918908556407],[-118.25183135670085,34.09924310214808],[-118.25178369209188,34.09931979840778],[-118.25176230230666,34.09934663408568],[-118.25161257919993,34.09953620638033],[-118.25152044978101,34.09965558743446],[-118.25136582097453,34.09986165637616],[-118.25126052135525,34.09999583456534],[-118.25117662319927,34.10010661076237],[-118.25111083418111,34.10019811421228],[-118.25106317047049,34.10027549693013],[-118.25103689385011,34.10032501397732],[-118.25102375329412,34.10034908516695],[-118.25099418614485,34.10040307348786],[-118.25095472854433,34.10046326478292],[-118.25091197951659,34.10052724151146],[-118.25086431221267,34.10060359443452],[-118.250819933641,34.10067513083855],[-118.25073454428166,34.10084018131539],[-118.25065080782244,34.10100557066614],[-118.25061142298544,34.10109014939157],[-118.25059501256185,34.10112556183547],[-118.25056875570441,34.10118194782982],[-118.25054249705032,34.1012376472145],[-118.2505047507404,34.10131810107276],[-118.2504670232951,34.10140473696635],[-118.25044077901408,34.10146524442748],[-118.2504063277246,34.10154294360878],[-118.25039485893338,34.10157388088926],[-118.25037518313373,34.10162200916197],[-118.25036207671374,34.10165741468875],[-118.25034404752597,34.10170382388981],[-118.2503194768063,34.10177188412614],[-118.2502949375277,34.10185024950918],[-118.25028020964861,34.10189596311165],[-118.25026548446448,34.10194270765475],[-118.25024583561425,34.1019997662813],[-118.25022947549633,34.10205235363991],[-118.25021149032604,34.10211318718407],[-118.25019512930976,34.10216508790774],[-118.25018041760032,34.10221629757238],[-118.25016406556722,34.10227128888507],[-118.25015426943904,34.10230909227703],[-118.25014118637526,34.10235274147959],[-118.25013140641676,34.10239604105574],[-118.25011834131928,34.10244552934007],[-118.25011018551479,34.10247989463748],[-118.25010038399672,34.10251598116013],[-118.25008243565736,34.10258952430608],[-118.25002943864885,34.10254120244222],[-118.24997313045021,34.10249013951016],[-118.24990688418958,34.10242948029507],[-118.24984229532068,34.10237087774978],[-118.24976778815267,34.10230954825027],[-118.24967009816216,34.10222834480047],[-118.2495839964388,34.10215570361894],[-118.2495310048202,34.10210909829176],[-118.24944985640731,34.10203576077231],[-118.24933886057083,34.10192264027807],[-118.24923446735164,34.10180847527654],[-118.24913007503078,34.10169465377701],[-118.24902567911667,34.10157911458551],[-118.24892124277838,34.10145018004933],[-118.2488383067181,34.10133081789149],[-118.24874540295139,34.10119189755166],[-118.24851641519895,34.10083377228747],[-118.24827587960354,34.10047910368989],[-118.24813986119479,34.10028119189787],[-118.24795905098935,34.10001639334596],[-118.24787609247119,34.09988844427518],[-118.247804747373,34.09977798839677],[-118.24776325957991,34.09971109367586],[-118.24769189561712,34.09959445606615],[-118.24759895142623,34.09944042202035],[-118.24746613730811,34.09920849824283],[-118.24742801460407,34.09916220594806],[-118.24737497267982,34.09909739654408],[-118.24730701333195,34.09901475583456],[-118.24693919005402,34.0986170667477],[-118.24682321305929,34.09849261771313],[-118.24665919416312,34.09831811992112],[-118.24658962323763,34.09824819126938],[-118.24611422490781,34.09777206031267],[-118.24567361383737,34.09732986261393],[-118.24528596294449,34.09692396500755],[-118.24500268820277,34.09662914301543],[-118.24477245987696,34.09640187944922],[-118.24463002749705,34.09626443061958],[-118.24414975311188,34.09580753756041],[-118.24411331115576,34.09577017090695],[-118.24397492876695,34.09562385284963],[-118.24432971005744,34.09564441988096],[-118.24453368413617,34.09568136006842],[-118.24474087040507,34.09572151244614],[-118.24490870734385,34.09577692272734],[-118.24504924066578,34.09583715129391],[-118.24520123524812,34.09591663689481],[-118.24534476216563,34.09600418518513],[-118.24543711263439,34.09608208079784],[-118.24552464481771,34.09617121907635],[-118.24560896481091,34.09626838783036],[-118.24567882994806,34.09636395048929],[-118.24585871260015,34.09662092570655],[-118.24603859525223,34.09686505216295],[-118.24616577790867,34.0970211445313],[-118.24630841923036,34.0971605736628],[-118.24651310050224,34.09731534536942],[-118.24671957957797,34.09744324640179],[-118.24689946223006,34.09754603648869],[-118.24722068125163,34.09710917861935],[-118.24826143088154,34.09788010427113],[-118.25011165244582,34.09564763207118],[-118.24784384615349,34.0956508442614],[-118.2477381450194,34.09564793321395],[-118.2476607513112,34.09564441988096],[-118.24756789893797,34.09561259912157],[-118.24630944861512,34.09500198053306],[-118.24611326317027,34.09525895610528],[-118.24492215831371,34.09461379870442],[-118.24465640512291,34.09495941332322],[-118.24392299270545,34.09425897403843],[-118.24364181398421,34.0943576975136],[-118.24338648954375,34.09413332439771],[-118.24386346740168,34.09390294579871],[-118.24315029054689,34.09352437477346],[-118.24498499686146,34.09187973294808],[-118.24371296953602,34.09139148003528],[-118.24292919512337,34.08937422457979],[-118.24380291086206,34.08879603034094],[-118.24416896600579,34.08857624964772],[-118.2444838951878,34.08841056751505],[-118.24481796297025,34.08826923114556],[-118.24567882994806,34.08792231460225],[-118.24598905618306,34.08777689851582],[-118.24616689156304,34.08768361780047],[-118.24629363106325,34.08759788253501],[-118.24639928315223,34.08751617601423],[-118.24651726403533,34.08741711042047],[-118.2466832145433,34.08725257358741],[-118.24808154822946,34.08587936162503],[-118.24856940458471,34.08541183261789]]],"type":"Polygon"} +},{ + "id": 1092611477, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000106, + "geom:area_square_m":1088866.198621, + "geom:bbox":"-118.19690021,34.099173,-118.176198888,34.1128417794", + "geom:latitude":34.105443, + "geom:longitude":-118.184253, + "iso:country":"US", + "lbl:latitude":34.102889, + "lbl:longitude":-118.184642, + "lbl:max_zoom":18.0, + "mps:latitude":34.105147, + "mps:longitude":-118.184254, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Hermon" + ], + "name:ita_x_preferred":[ + "Hermon" + ], + "reversegeo:latitude":34.105147, + "reversegeo:longitude":-118.184254, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869501, + 102191575, + 1108692433, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4842231" + }, + "wof:country":"US", + "wof:geomhash":"3a2b366319f1ed532896f3da399cb5be", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692433, + "microhood_id":1092611477, + "neighbourhood_id":85869501, + "region_id":85688637 + } + ], + "wof:id":1092611477, + "wof:lastmodified":1566625490, + "wof:name":"Hermon", + "wof:parent_id":85869501, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869327 + ], + "wof:tags":[] +}, + "bbox": [ + -118.1969002096533, + 34.099173, + -118.17619888802889, + 34.1128417794489 +], + "geometry": {"coordinates":[[[-118.180786,34.103115],[-118.181614,34.102253],[-118.18182299999999,34.102091],[-118.181865,34.102066],[-118.18190300000001,34.102052],[-118.181984,34.102031],[-118.18210500000001,34.101978],[-118.182277,34.101905],[-118.18235,34.101866],[-118.182439,34.101804],[-118.182517,34.101734],[-118.182585,34.101651],[-118.18263,34.101576],[-118.18266800000001,34.101485],[-118.182732,34.101239],[-118.18283700000001,34.100825],[-118.182864,34.100755],[-118.18290399999999,34.100683],[-118.182969,34.100605],[-118.18304999999999,34.100536],[-118.18347300000001,34.100274],[-118.183622,34.100182],[-118.183707,34.100115],[-118.18377599999999,34.100037],[-118.183819,34.099968],[-118.184027,34.09947],[-118.18405199999999,34.099365],[-118.184054,34.099267],[-118.18403600000001,34.099173],[-118.184349,34.099263],[-118.18453700000001,34.099317],[-118.185017,34.099456],[-118.185548,34.099609],[-118.186657,34.099929],[-118.186781,34.099965],[-118.187916,34.100291],[-118.189153,34.100647],[-118.18968,34.100799],[-118.189874,34.100855],[-118.19168150222487,34.10138473556729],[-118.19690020965329,34.10291421359621],[-118.19685080696617,34.10292050560724],[-118.19668402305555,34.10293417280442],[-118.19651722207698,34.10294097069812],[-118.19632234605081,34.10294884417432],[-118.19598205703467,34.10292775724053],[-118.19548980002192,34.10289970206709],[-118.19497608046038,34.1028744273358],[-118.19446399403603,34.10284193442943],[-118.19432688686918,34.10283322412968],[-118.19423108334075,34.10282960016865],[-118.19409894655233,34.10282740808867],[-118.1939354378993,34.10282904452438],[-118.19382148480884,34.10283403639679],[-118.19369267807519,34.10284317291351],[-118.1935473701881,34.10285886260817],[-118.19332116541644,34.10288979494458],[-118.19321054866899,34.1029085202159],[-118.19311479903945,34.10292825114598],[-118.19289690637908,34.10298218277777],[-118.19275825321161,34.10301950012934],[-118.19267409723916,34.10305329616188],[-118.19265429567534,34.10306122764653],[-118.192457886225,34.10312062040698],[-118.19234073243723,34.10316992528503],[-118.19209990578766,34.10330701478684],[-118.19197950099687,34.10337899371552],[-118.19179808353029,34.10349434895531],[-118.19165791759988,34.10359280873779],[-118.19153586260393,34.10366616424724],[-118.19131485997605,34.10380596865305],[-118.19115491134643,34.10392094470394],[-118.19103620347322,34.10401387291512],[-118.19087792211678,34.10413606079062],[-118.19072952672005,34.10424758357166],[-118.1906124394076,34.104327456619],[-118.19042771793741,34.10444418812071],[-118.19033866345174,34.10450375247658],[-118.19009955258434,34.10467209208797],[-118.18971369203383,34.1049509208008],[-118.18865177646849,34.10573606970672],[-118.18815703741059,34.10607895075062],[-118.18759139522564,34.10647758510078],[-118.1873061145459,34.10668583461582],[-118.18718903082673,34.10676982675586],[-118.18705712131208,34.10687204560515],[-118.1868609499153,34.10704340404068],[-118.18666807174233,34.10721132281719],[-118.18635986066668,34.10750856766642],[-118.18600214792727,34.10782958971077],[-118.185707072916,34.10809418307166],[-118.1855405944326,34.10825106717483],[-118.18540545816946,34.10838969849283],[-118.18526544764761,34.10856474748568],[-118.1851106948736,34.10879649165629],[-118.1850104608542,34.10903330628318],[-118.18495795971572,34.10919379373897],[-118.1849138012313,34.10939239424756],[-118.18487145554714,34.10966381205643],[-118.18485845063677,34.10975863281357],[-118.18483726656572,34.10988953237963],[-118.18482098280458,34.10999535103192],[-118.18478987234967,34.11011905276678],[-118.18475543453494,34.1102321117265],[-118.18472422616362,34.1103115038559],[-118.18465030020565,34.11049503748514],[-118.18455980033067,34.11065317856247],[-118.18442640140928,34.11083302461228],[-118.1842665893236,34.1110201234507],[-118.18406540892079,34.11117499769183],[-118.18383607801191,34.11129762743108],[-118.18358523963849,34.11140586228247],[-118.18333431502683,34.11147459674095],[-118.18310974698556,34.11151065934569],[-118.18298092947215,34.11152184620997],[-118.18283886540152,34.11151828286552],[-118.18264392918826,34.11150792975357],[-118.18245391574271,34.11148314252425],[-118.18229029120698,34.11143976652889],[-118.18203740916628,34.11136870333184],[-118.1818324585342,34.11131096304568],[-118.18161592861813,34.11124533886029],[-118.18130359247867,34.11117917242225],[-118.18112846232079,34.11116123067435],[-118.18096159846013,34.11114671022452],[-118.18075841301757,34.11114117515304],[-118.18063123582787,34.11114651759035],[-118.18050407660446,34.11116044749387],[-118.18036867084675,34.11117988420152],[-118.18020521249932,34.11121344640862],[-118.17993780919207,34.11130143399438],[-118.17972491206299,34.11138865169791],[-118.17937996079053,34.11151762687094],[-118.17926443564835,34.11156554272274],[-118.17896244630434,34.11170235309987],[-118.17848889760569,34.11194761459041],[-118.17838663339373,34.11201749250168],[-118.17824972385623,34.11210734383939],[-118.17802870775364,34.11226223765876],[-118.17780113844101,34.11244221490622],[-118.17727009486923,34.1128417794489],[-118.17682706553403,34.11268339628273],[-118.17619888802889,34.11245623979638],[-118.17700444597172,34.11220260215874],[-118.17689843219179,34.11206192879283],[-118.17702997788872,34.1109986532595],[-118.17745923066073,34.11089635311971],[-118.17724853350579,34.11046318491399],[-118.17733934779112,34.11044690830947],[-118.17742355766246,34.1104320151095],[-118.1780064196531,34.11032776858616],[-118.17800686072592,34.10510406488356],[-118.17800618070126,34.10478462575387],[-118.17800613501601,34.10404587033472],[-118.178251,34.104087],[-118.178371,34.104107],[-118.17841,34.104114],[-118.178545,34.104147],[-118.179096,34.10428],[-118.18100099999999,34.104741],[-118.181324,34.103816],[-118.18141799999999,34.103512],[-118.180786,34.103115]]],"type":"Polygon"} +},{ + "id": 1108439241, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00006, + "geom:area_square_m":611063.9548, + "geom:bbox":"-118.346183,34.104116,-118.336465117,34.113594", + "geom:latitude":34.108235, + "geom:longitude":-118.341558, + "iso:country":"US", + "lbl:latitude":34.106438, + "lbl:longitude":-118.340053, + "lbl:max_zoom":18.0, + "mps:latitude":34.107949, + "mps:longitude":-118.341165, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Hollywood Heights" + ], + "name:eng_x_variant":[ + "Hollywood Hts" + ], + "name:ita_x_preferred":[ + "Hollywood Heights" + ], + "reversegeo:latitude":34.107949, + "reversegeo:longitude":-118.341165, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869347, + 102191575, + 1108694663, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q5882751" + }, + "wof:country":"US", + "wof:geomhash":"5bb3bfc5a42b52afb5dab7af373df88f", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108694663, + "microhood_id":1108439241, + "neighbourhood_id":85869347, + "region_id":85688637 + } + ], + "wof:id":1108439241, + "wof:lastmodified":1566623953, + "wof:name":"Hollywood Heights", + "wof:parent_id":85869347, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85869345 + ], + "wof:tags":[] +}, + "bbox": [ + -118.346183, + 34.104116, + -118.33646511668448, + 34.113594 +], + "geometry": {"coordinates":[[[-118.33747099999999,34.105173],[-118.337474,34.10505],[-118.33748,34.104998],[-118.33751100000001,34.10487],[-118.33755499999999,34.104762],[-118.337613,34.104661],[-118.33768499999999,34.104567],[-118.337763,34.104488],[-118.33787599999999,34.104397],[-118.338003,34.104321],[-118.33814,34.104261],[-118.338261,34.104204],[-118.338368,34.104136],[-118.33934600000001,34.104128],[-118.33939599999999,34.104128],[-118.340165,34.104126],[-118.341751,34.104122],[-118.34232299999999,34.10412],[-118.342809,34.104119],[-118.34333599999999,34.104117],[-118.34386000000001,34.104116],[-118.34415799999999,34.105759],[-118.34427599999999,34.106394],[-118.34430999999999,34.106463],[-118.344357,34.106519],[-118.34439,34.106547],[-118.344444,34.106581],[-118.344962,34.106882],[-118.345082,34.106966],[-118.345213,34.107078],[-118.34532900000001,34.107201],[-118.345406,34.107301],[-118.345429,34.107332],[-118.345506,34.107462],[-118.345557,34.107578],[-118.34559299999999,34.107698],[-118.34561600000001,34.107841],[-118.345617,34.107984],[-118.345595,34.108382],[-118.345598,34.108412],[-118.34561600000001,34.108496],[-118.345692,34.108727],[-118.34571699999999,34.108851],[-118.345726,34.108961],[-118.34573899999999,34.109144],[-118.34576,34.109245],[-118.34580200000001,34.109356],[-118.34587000000001,34.10949],[-118.34590799999999,34.109602],[-118.34592600000001,34.109717],[-118.34593599999999,34.11024],[-118.345955,34.110469],[-118.345984,34.110658],[-118.34602099999999,34.110798],[-118.346084,34.110961],[-118.346159,34.111125],[-118.346181,34.11122],[-118.346183,34.111308],[-118.346169,34.111395],[-118.346132,34.111495],[-118.34608,34.111578],[-118.346009,34.111655],[-118.345932,34.111715],[-118.345834,34.111769],[-118.34553,34.111884],[-118.345405,34.111947],[-118.345304,34.112011],[-118.345197,34.112097],[-118.345116,34.112178],[-118.34490599999999,34.112444],[-118.344785,34.112579],[-118.34461,34.11275],[-118.344532,34.112819],[-118.34437200000001,34.112949],[-118.344131,34.113132],[-118.34405,34.113211],[-118.34398400000001,34.113298],[-118.34393300000001,34.113392],[-118.343898,34.113491],[-118.343881,34.113594],[-118.3438178722766,34.11331641667453],[-118.34371338094151,34.11306620273398],[-118.34358689622248,34.11287499178614],[-118.34342870593369,34.11267983409234],[-118.34311820454698,34.11243743952554],[-118.34291184238386,34.11230692187588],[-118.3426189640309,34.11218682148305],[-118.34047451417574,34.11157742361547],[-118.33989697959787,34.11135564364449],[-118.33953737483235,34.11111867584482],[-118.33927640416302,34.11088076580986],[-118.33881190678646,34.11044000646071],[-118.33850162089621,34.11024395219815],[-118.33831567614142,34.11015778523375],[-118.33817514093893,34.11011855799481],[-118.33697252223318,34.10983481691918],[-118.33680620761908,34.10979115803368],[-118.33667021351809,34.10972589436339],[-118.33655992063771,34.10963313789427],[-118.33650885564245,34.10956584773307],[-118.33647535036685,34.1094577821414],[-118.33646511668448,34.1093472490216],[-118.33647288958728,34.10925286424872],[-118.33650400000001,34.10914],[-118.336612,34.108935],[-118.336938,34.108437],[-118.33698099999999,34.10837],[-118.33707099999999,34.108233],[-118.337141,34.108119],[-118.337253,34.107906],[-118.33734800000001,34.107687],[-118.337424,34.107461],[-118.337461,34.10729],[-118.33748,34.107117],[-118.33747099999999,34.105173]]],"type":"Polygon"} +},{ + "id": 1041491317, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000815, + "geom:area_square_m":8339047.259442, + "geom:bbox":"-118.459433439,34.0791957203,-118.422790746,34.1329398257", + "geom:latitude":34.110428, + "geom:longitude":-118.44304, + "iso:country":"US", + "lbl:latitude":34.10325, + "lbl:longitude":-118.444052, + "lbl:max_zoom":18.0, + "mps:latitude":34.11414, + "mps:longitude":-118.44581, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Beverly Glen" + ], + "name:eng_x_variant":[ + "Beverly Gln" + ], + "name:spa_x_preferred":[ + "Beverly Glen" + ], + "reversegeo:latitude":34.11414, + "reversegeo:longitude":-118.44581, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85869119, + 102191575, + 1108692797, + 85633793, + 85923517, + 102086957, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q4899523" + }, + "wof:country":"US", + "wof:geomhash":"184ca15f0208cc1e2bf7d9fee27a6001", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086957, + "locality_id":85923517, + "macrohood_id":1108692797, + "microhood_id":1041491317, + "neighbourhood_id":85869119, + "region_id":85688637 + } + ], + "wof:id":1041491317, + "wof:lastmodified":1566608537, + "wof:name":"Beverly Glen", + "wof:parent_id":85869119, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85805981 + ], + "wof:tags":[] +}, + "bbox": [ + -118.45943343894945, + 34.07919572025783, + -118.42279074633139, + 34.13293982566629 +], + "geometry": {"coordinates":[[[-118.42301053803027,34.07994005370318],[-118.42302215055194,34.07995071424368],[-118.42303398316088,34.0799612043987],[-118.42304318911827,34.07996908502644],[-118.423045739413,34.07997145199696],[-118.42304903937854,34.07997400470275],[-118.42305830235225,34.07998166164818],[-118.4230680423108,34.07998943725061],[-118.42307060927165,34.07999163097486],[-118.42307661987523,34.0799961249858],[-118.42308346236672,34.08000140015495],[-118.42309634959778,34.08001099225361],[-118.42310276124095,34.08001559955503],[-118.42310873287398,34.0800203507242],[-118.42312198931262,34.08002957898771],[-118.42313524305632,34.0800384627622],[-118.42315015059847,34.0800476850714],[-118.42316340344385,34.08005622584403],[-118.42316994286834,34.08005982006927],[-118.42317771630127,34.08006448685889],[-118.42318859906945,34.08007078385088],[-118.42319155754318,34.08007261394672],[-118.4232061735111,34.08008064844724],[-118.42320627823572,34.0800807068082],[-118.4232063386134,34.08008073920513],[-118.42320645969544,34.08008080576478],[-118.42320662088063,34.08008089066163],[-118.4232208102821,34.08008850428732],[-118.42323550312686,34.08009608897194],[-118.42325035407514,34.08010345863001],[-118.4232653559404,34.08011061177355],[-118.42328050692598,34.08011754617048],[-118.42329579984535,34.0801242588448],[-118.42330734376243,34.08012911408142],[-118.42331073703191,34.08013058908514],[-118.42331411305281,34.08013190900081],[-118.42332679621427,34.08013701381729],[-118.42333259765063,34.08013924584105],[-118.42334217357528,34.08014318780955],[-118.4233487416499,34.0801453473379],[-118.42335801716195,34.08014875318185],[-118.42336518003026,34.08015128769472],[-118.42336698684005,34.08015203139428],[-118.42474531044385,34.08063300665251],[-118.42521433089935,34.08079671030993],[-118.42522966693787,34.0808019333864],[-118.42524578091744,34.08080714827826],[-118.42526200269485,34.08081213028908],[-118.42527070220758,34.08081465882438],[-118.42527751390486,34.0808168355212],[-118.42529404919428,34.08082124314197],[-118.42531058358541,34.08082565001847],[-118.4253271161799,34.08082971315399],[-118.42533613558152,34.08083155590917],[-118.42534454169979,34.0808334637976],[-118.42535966507768,34.08083666107238],[-118.42536182977742,34.08083714822264],[-118.42536484797091,34.08083770204556],[-118.42537813060659,34.08084030513191],[-118.42539502791708,34.08084336010929],[-118.4254017040667,34.08084446583471],[-118.42541141228953,34.08084624768034],[-118.42541898996352,34.08084722324605],[-118.42542900130282,34.08084873050034],[-118.42544606749655,34.08085104442603],[-118.4254515546331,34.08085170696233],[-118.42546263602367,34.08085328022872],[-118.42547778513453,34.08085465844376],[-118.42548033103812,34.08085492824966],[-118.42548495752447,34.0808553501866],[-118.42549732895993,34.08085659263912],[-118.42551549828487,34.08085790287151],[-118.4255293637693,34.08085871919057],[-118.42553198147202,34.08085888126767],[-118.42553267336353,34.08085891404023],[-118.42554853293113,34.08085984775929],[-118.42555841831756,34.080859999598],[-118.42556652169469,34.08086026515872],[-118.42558380887401,34.08086058137037],[-118.42559755841997,34.08086063284372],[-118.42560137632771,34.08086069148646],[-118.42560496275345,34.08086060421066],[-118.4256183904192,34.08086045860586],[-118.42563567220863,34.08086002111774],[-118.4256440048395,34.08085968909141],[-118.42565255784105,34.08085948095376],[-118.42566357786176,34.08085875424641],[-118.42566948838919,34.08085843261912],[-118.42598659727776,34.08083991228534],[-118.42700623812581,34.08077578005541],[-118.42702940747363,34.0807743522653],[-118.42705094727751,34.08077286346482],[-118.42705868707839,34.08077221504339],[-118.42707050899114,34.08077135308756],[-118.42708379550169,34.08076992348674],[-118.42709105166504,34.08076920879812],[-118.4271023219286,34.08076793278968],[-118.42710626277685,34.08076748649087],[-118.42711176771381,34.0807670853415],[-118.42712814806315,34.08076475441744],[-118.42713097818617,34.08076439195909],[-118.42722612504612,34.08074912077701],[-118.42725572679733,34.08074153074028],[-118.42731630961245,34.08072617419314],[-118.42732788158428,34.08072262648069],[-118.42733484904328,34.08072060737076],[-118.42735006827087,34.08071594804161],[-118.42735423019553,34.08071470499102],[-118.42736800189724,34.08071022176675],[-118.42737258816668,34.08070874160054],[-118.42739126593806,34.08070239801089],[-118.42740980716552,34.0806957850823],[-118.42741008786659,34.08069568011371],[-118.42741027428949,34.08069561469968],[-118.42742840408853,34.08068902483551],[-118.42744653029436,34.08068174748797],[-118.42746465650013,34.08067447013979],[-118.42747866376219,34.08066831399179],[-118.42748250153328,34.08066667271462],[-118.42748446825586,34.0806657951135],[-118.42750090352187,34.08065888496112],[-118.42751205267211,34.08065326501541],[-118.42751788886727,34.08065055108941],[-118.42752579409465,34.08064672237965],[-118.4275354940502,34.08064227525116],[-118.42754155774186,34.0806389648945],[-118.42755257731194,34.08063341088483],[-118.42756159799849,34.08062868435685],[-118.42757007918863,34.08062463505708],[-118.42758654351115,34.08061530269428],[-118.42760300783368,34.08060597033046],[-118.42761640265469,34.08059809774485],[-118.4276196958367,34.08059616476265],[-118.42763597420799,34.08058625056534],[-118.42763602419458,34.08058621899054],[-118.42765239271644,34.08057625526765],[-118.42765804748127,34.08057216873117],[-118.42766789404499,34.08056572129098],[-118.42768019217922,34.08055737446616],[-118.42768365768157,34.08055519252122],[-118.42768770651912,34.08055217215573],[-118.42769893353299,34.08054427759848],[-118.42770674951774,34.08053858370086],[-118.42771491815515,34.08053309854359],[-118.42772972239104,34.08052205490072],[-118.42774452393195,34.08051032377227],[-118.42774781356253,34.08050790790508],[-118.4277532418586,34.0805027827364],[-118.42775822234174,34.08049875260871],[-118.42777120349534,34.08048787456696],[-118.42777247411371,34.08048686746261],[-118.42777364486155,34.08048579284507],[-118.42778639889895,34.08047472636828],[-118.42779614153241,34.08046597157064],[-118.4278004198039,34.08046238140771],[-118.42781356574979,34.08044996948254],[-118.42782670989901,34.08043721381313],[-118.42783985494655,34.08042445739778],[-118.42785299729917,34.08041135798203],[-118.42786244779965,34.08040030772032],[-118.42786464665174,34.08039794904718],[-118.42787672989064,34.08038450886083],[-118.42788279151586,34.0803775150168],[-118.42788911855673,34.08037104263127],[-118.4279006071109,34.08035726241811],[-118.42790504665936,34.08035088934965],[-118.42791126292681,34.08034316226896],[-118.42792219003391,34.0803290539331],[-118.42792534916759,34.08032481423683],[-118.42793341448338,34.08031489723279],[-118.4279432474425,34.0803004362209],[-118.42795308040158,34.08028597520652],[-118.42796291246238,34.08027117044655],[-118.42797274362484,34.08025636568404],[-118.42797765651115,34.08024844843112],[-118.42826255630516,34.07977754948978],[-118.42828093790425,34.07974704406297],[-118.42833977279206,34.07964995077453],[-118.4283482223456,34.07963630139476],[-118.42835641138775,34.07962361926263],[-118.42836485914469,34.07961106584722],[-118.42837148092343,34.07960161526119],[-118.42837392045094,34.07959854219147],[-118.42837784553799,34.07959276973747],[-118.42838253619284,34.07958633623839],[-118.42838887097928,34.07957798112668],[-118.42839195952018,34.07957409084953],[-118.42840180505567,34.07956203370073],[-118.42841165238784,34.07955032029614],[-118.42842149971997,34.07953860688999],[-118.4284313461538,34.07952689273817],[-118.42843456572484,34.07952317587803],[-118.42844163815199,34.07951543602235],[-118.42844691705149,34.07950986256236],[-118.42845269551484,34.07950414671377],[-118.42845638193425,34.07950002030868],[-118.42846328036386,34.07949299430696],[-118.42847445181272,34.07948201302784],[-118.42848585053535,34.07947119543596],[-118.42849747563345,34.07946054450761],[-118.4285093217171,34.07945006396309],[-118.42851885133936,34.0794419235165],[-118.42852171487475,34.07943967046987],[-118.42852586521738,34.079436063035],[-118.42853366516297,34.07942962816233],[-118.4285418807543,34.07942308339509],[-118.42854638081585,34.0794196610016],[-118.42855954023641,34.07940999666413],[-118.42856574297539,34.07940479140495],[-118.42857174923947,34.07940033009335],[-118.42858484667629,34.0793909373284],[-118.42859813994588,34.07938173652477],[-118.42860635982571,34.07937624677518],[-118.42861218780027,34.07937271280186],[-118.42862535261077,34.07936407895519],[-118.42863097954479,34.07936038890772],[-118.42863914803858,34.07935531192437],[-118.42865318062164,34.07934690575244],[-118.42865360433339,34.07934666110768],[-118.42866815463911,34.07933885299904],[-118.42867600020678,34.07933391318689],[-118.42868176231904,34.07933070872785],[-118.42869630334853,34.07932292457172],[-118.42871100607479,34.07931535321059],[-118.4287168979095,34.07931243601624],[-118.42872578875111,34.0793080779771],[-118.42872893133267,34.07930653763677],[-118.42874087685465,34.07930085556999],[-118.4287560341284,34.07929393375483],[-118.4287634237381,34.07929069849949],[-118.42877191544432,34.07928730509146],[-118.42878488868641,34.07928154868095],[-118.42878677627405,34.07928075678394],[-118.42880234946783,34.07927450534848],[-118.4288137001972,34.0792701507712],[-118.42881805291731,34.07926859319542],[-118.42883453430782,34.07926269592281],[-118.42884411690876,34.07925911130757],[-118.42884982183733,34.07925712007573],[-118.42885715131555,34.07925468661901],[-118.42886585137525,34.07925193633821],[-118.42888233725736,34.07924672581484],[-118.42889882403776,34.07924185829435],[-118.42891531261481,34.07923733452092],[-118.42893180119184,34.07923281074717],[-118.42894829246383,34.0792286299765],[-118.42896478463412,34.07922479295288],[-118.42897416569465,34.07922261080395],[-118.42898108187001,34.07922109506494],[-118.42898905327688,34.07921947156382],[-118.428997772568,34.07921780639994],[-118.42901426833154,34.07921465612655],[-118.42903241519862,34.07921150064472],[-118.42904891455544,34.07920903786588],[-118.42906541391226,34.0792065743429],[-118.42907740126515,34.07920494388544],[-118.42908278643152,34.07920425367596],[-118.42909399814224,34.07920298310955],[-118.42909676691232,34.07920268523542],[-118.42910360181934,34.07920194950992],[-118.42911708949899,34.07920062051882],[-118.42913429223667,34.07919917707722],[-118.42914457929513,34.07919846504522],[-118.42915123176797,34.0791980260442],[-118.42915575878655,34.07919775316975],[-118.42916877766211,34.07919704242058],[-118.42918604867177,34.0791963512055],[-118.42920333046121,34.07919590998856],[-118.42922062033547,34.07919572025783],[-118.42923791110805,34.07919578201332],[-118.42925519828739,34.07919609451102],[-118.42927247558525,34.07919665775086],[-118.42928114666039,34.07919706663096],[-118.4292899289529,34.07919753348834],[-118.42930644627603,34.07919850520725],[-118.42930867714756,34.0791986659924],[-118.42932419968099,34.07919985192336],[-118.42933267642572,34.07920062395971],[-118.42934113561903,34.07920147319096],[-118.42934670483641,34.07920197964145],[-118.42935854137599,34.07920323136224],[-118.42937565248553,34.07920529459071],[-118.42939271957759,34.07920760632913],[-118.42940973456741,34.0792101643454],[-118.42942669296333,34.07921297012753],[-118.42944359117215,34.07921602144345],[-118.42946032451025,34.07921929839539],[-118.42946176588697,34.07921959284445],[-118.42953945398939,34.0792354602798],[-118.42955763768737,34.07923951753924],[-118.42957747518376,34.07924391184935],[-118.42959731357848,34.0792486506505],[-118.42960304557465,34.07925001963847],[-118.42961636504904,34.07925346087936],[-118.42962903345983,34.07925693584069],[-118.42963534285776,34.07925881946658],[-118.42964445626905,34.07926131141819],[-118.42965456860146,34.07926424948145],[-118.42967349050691,34.07927005751464],[-118.42969157200463,34.07927613777529],[-118.42970758013448,34.07928134413786],[-118.42971096752994,34.07928249709661],[-118.4297295024692,34.07928912278426],[-118.42974789637296,34.07929601558215],[-118.42976614205469,34.07930317549023],[-118.4297842341245,34.07931059804427],[-118.42980216988749,34.07931828324408],[-118.42981994036045,34.07932622736944],[-118.42983378882086,34.07933268046923],[-118.42983717633578,34.07933435527216],[-118.42984320835619,34.07933717870239],[-118.42985496746999,34.0793428842121],[-118.42986236988823,34.07934662121155],[-118.42987194023894,34.07935174945756],[-118.4298884979863,34.07936062139847],[-118.42990101012562,34.07936694869522],[-118.42990614628836,34.07936975077647],[-118.42992282081664,34.0793791963707],[-118.42992916921077,34.07938292847756],[-118.42993929591896,34.07938888303293],[-118.4299555653071,34.07939880778693],[-118.4299716235911,34.07940896765653],[-118.42998746627946,34.0794193581773],[-118.43000308798223,34.07942997860518],[-118.43001848600451,34.07944082373177],[-118.43003365315977,34.07945188983683],[-118.43004858675305,34.07946317543213],[-118.43006327959786,34.07947467530934],[-118.43007773079583,34.07948638723629],[-118.43009193316045,34.07949830749263],[-118.43010588309853,34.07951043235812],[-118.43011957791502,34.07952275662434],[-118.43012956179108,34.07953206455426],[-118.43013301132176,34.07953527880318],[-118.43014617972551,34.07954799443036],[-118.43015907953301,34.07956089904144],[-118.43017170625265,34.07957398966028],[-118.43018405808779,34.07958726033438],[-118.43019612875028,34.07960070957568],[-118.43020791554513,34.07961433143181],[-118.43021941487908,34.07962812218239],[-118.43023062315888,34.07964207810718],[-118.43024153679124,34.07965619474189],[-118.43025215308128,34.07967046762225],[-118.43026246843569,34.07968489228386],[-118.43027247926122,34.07969946426252],[-118.43028218376124,34.07971418058192],[-118.43029157654583,34.07972903454566],[-118.43030065851336,34.07974402317756],[-118.4303094233756,34.07975914052525],[-118.43031786933589,34.07977438435649],[-118.43032599549596,34.07978974723093],[-118.4303337973642,34.07980522617226],[-118.43034127404231,34.07982081597227],[-118.43034842193703,34.07983651216659],[-118.43035524015004,34.07985231029092],[-118.43036172508809,34.079868203649],[-118.43036766744366,34.07988364611828],[-118.43088480958643,34.08126911841692],[-118.43089052197331,34.08128396243563],[-118.4308960807483,34.08129758550903],[-118.43090192518754,34.08131112673764],[-118.43090805169777,34.08132458016934],[-118.43091446027903,34.08133794208405],[-118.43092114823631,34.08135120950566],[-118.4309281128747,34.0813643787142],[-118.43093535419419,34.08137744375745],[-118.43094286590662,34.08139040240346],[-118.43095064980855,34.08140324870006],[-118.43095870230674,34.08141598115923],[-118.43096701980798,34.0814285945729],[-118.43097560141388,34.08144108447699],[-118.43098444263292,34.08145344938355],[-118.43099354346504,34.08146568185229],[-118.43100289762212,34.0814777826274],[-118.43101250600238,34.08148974426866],[-118.43102236231768,34.08150156528816],[-118.43103246566969,34.08151324047766],[-118.43104281156681,34.0815247676053],[-118.43105339821244,34.08153614369501],[-118.43106448162641,34.08154763213043],[-118.43106887348983,34.08155207170612],[-118.43171147793842,34.08219662240942],[-118.4317272811009,34.08221219465684],[-118.43174246083258,34.08222663376581],[-118.43175794149987,34.08224084966778],[-118.43177371681459,34.08225483864269],[-118.43178978318343,34.08226859622664],[-118.43180613611487,34.08228211869962],[-118.43182277021899,34.08229540159766],[-118.43183968010588,34.08230844045676],[-118.43185686128403,34.08232123230104],[-118.43187430746512,34.08233377266644],[-118.43189201505602,34.08234605783309],[-118.43190997776844,34.08235808408094],[-118.43192818931421,34.08236984694608],[-118.43194664430341,34.08238134419654],[-118.43196533824448,34.08239257062439],[-118.43198426484919,34.08240352548567],[-118.43200341782936,34.08241420357238],[-118.4320227926934,34.08242460042055],[-118.43204238225481,34.08243471603033],[-118.43206218112365,34.0824445451937],[-118.43208218301179,34.0824540849347],[-118.43210238163094,34.08246333302131],[-118.43212277159125,34.08247228573374],[-118.43214334480791,34.08248094232788],[-118.43216409858591,34.08248929833982],[-118.4321850230438,34.08249735153768],[-118.4322061145884,34.08250509968943],[-118.43222736513474,34.08251253981911],[-118.43224876749639,34.08251967118277],[-118.43227031628342,34.08252648931646],[-118.43229200610597,34.0825329949643],[-118.43231382798082,34.08253918440618],[-118.43231565066255,34.08253967173449],[-118.43233577651819,34.08254505541019],[-118.43235784453145,34.08255060723236],[-118.43236084310786,34.08255131404437],[-118.43238002663077,34.08255583764078],[-118.43240231383295,34.0825607451475],[-118.43242470164645,34.08256532826442],[-118.43244718108814,34.08256958550366],[-118.43246974676809,34.08257351612129],[-118.43249239239807,34.08257711788524],[-118.43251548898235,34.08258044436444],[-118.43252624990112,34.08258187733217],[-118.43267872454757,34.08260165615358],[-118.43272063095559,34.08260709190619],[-118.43272253448566,34.0826073396622],[-118.43379835058172,34.08274689389722],[-118.43381545719969,34.08274899126386],[-118.43383260603844,34.08275083417873],[-118.43384979080983,34.08275242859393],[-118.43386700702227,34.08275377227751],[-118.43388424838749,34.08275486746139],[-118.43390151041399,34.08275571042564],[-118.43391878681354,34.08275630265823],[-118.43393607399285,34.08275664490316],[-118.43395336476547,34.08275673567253],[-118.43397065553803,34.08275657571022],[-118.43398793912411,34.08275616352819],[-118.43400521282869,34.08275550135862],[-118.43402246856701,34.08275458771335],[-118.43403970454236,34.08275342408042],[-118.43405691177162,34.08275201120384],[-118.43407408755986,34.0827503475956],[-118.43409122561886,34.08274843474375],[-118.434108321457,34.08274627413613],[-118.43412536878617,34.08274386502887],[-118.43414236311472,34.08274120965394],[-118.43415929905277,34.08273830652322],[-118.43417617121041,34.08273515861287],[-118.43419297509614,34.08273176592273],[-118.43420970531997,34.08272812994084],[-118.43422635649209,34.08272425141117],[-118.43424292412087,34.08272013182174],[-118.43425940281645,34.08271577191655],[-118.43427578718891,34.08271117392753],[-118.4342920727467,34.08270633859869],[-118.4343082540999,34.08270126741795],[-118.43432432765529,34.08269596261738],[-118.43434028712464,34.0826904249409],[-118.43435612711802,34.08268465587655],[-118.43437184404223,34.08267865691224],[-118.43438743250738,34.082672431768],[-118.43440288892016,34.08266598193176],[-118.4344182078907,34.08265930740354],[-118.43443338313077,34.08265241115932],[-118.43444841194548,34.0826452961751],[-118.43446329074153,34.08263796468281],[-118.43447801233239,34.08263041742646],[-118.43449257312484,34.08262265738195],[-118.43450696862729,34.08261468752541],[-118.43452119524645,34.08260651008868],[-118.43453524849073,34.08259812730384],[-118.43454912297031,34.08258954065879],[-118.43456281509185,34.08258075461757],[-118.43457632216048,34.08257177215617],[-118.43458963878625,34.08256259327452],[-118.43460275957929,34.08255322318067],[-118.43461568274297,34.08254366410652],[-118.43462359779893,34.0825375996591],[-118.43462840198907,34.08253391828411],[-118.43464091641928,34.08252399017739],[-118.43465322064374,34.08251388053043],[-118.43465503524062,34.08251233595954],[-118.43466531017083,34.0825035938071],[-118.43467718320395,34.0824931337275],[-118.43468883345486,34.08248250326756],[-118.43470025912696,34.08247170465933],[-118.4347114575253,34.08246074236676],[-118.43472242505659,34.08244961787783],[-118.4347331554327,34.08243833714452],[-118.43474364955182,34.08242690165496],[-118.43475390112584,34.08241531587298],[-118.43475962279342,34.08240860683364],[-118.43481703585607,34.0825281657058],[-118.43483560788471,34.08259913655306],[-118.43481162177559,34.08269563951355],[-118.43478879552372,34.08284053455431],[-118.43477485376043,34.08299584067632],[-118.43476102877229,34.08314872348566],[-118.43477886359091,34.08329896538996],[-118.43496122816322,34.08402723741953],[-118.435204710665,34.08513148751999],[-118.43527225802332,34.08533816820061],[-118.43533327548057,34.08549262738282],[-118.43572475105695,34.08646219967743],[-118.4361188251447,34.08740070081313],[-118.43622673127602,34.08764005894125],[-118.43631685003929,34.08781591497623],[-118.43639521280194,34.08795448521332],[-118.43645217421259,34.08803769811109],[-118.43665077173836,34.08827591585224],[-118.4370266899416,34.08870057369992],[-118.43753638447205,34.08929071141146],[-118.43784483344335,34.08965298021297],[-118.43802510779706,34.08985253655258],[-118.43809742416494,34.08996147009703],[-118.43817716760354,34.0901393681417],[-118.43823732600369,34.09036682769975],[-118.43824784518556,34.09052371005856],[-118.43832023768395,34.09111937980054],[-118.43853726858161,34.09171201540215],[-118.43860381702908,34.09181573193664],[-118.43869343445608,34.09192873618785],[-118.43888268138429,34.0921815147778],[-118.43908394866249,34.09244589829314],[-118.43933154883979,34.09291347028151],[-118.43938838760594,34.09304668369908],[-118.43945083749084,34.09316461601146],[-118.43955930763784,34.09330618365615],[-118.43959906275909,34.09333719466289],[-118.43966381335879,34.0933719965681],[-118.4397933982592,34.09344977368587],[-118.43990430476875,34.09353820000842],[-118.44009075971273,34.09370567450839],[-118.44026656973219,34.0938611385344],[-118.44034812837292,34.09396185413425],[-118.44054698367705,34.09431670314058],[-118.44058970214456,34.0944216132392],[-118.44079307766766,34.09529579197392],[-118.4409888956902,34.09610840478254],[-118.44113650125882,34.09675251529773],[-118.44118942408647,34.0968523449292],[-118.44150444535107,34.09727188937355],[-118.44173053866893,34.09758528480872],[-118.44178073308865,34.09764573184599],[-118.44184581228224,34.09772410399297],[-118.44191458809438,34.0978367690913],[-118.44201030532582,34.09799317283916],[-118.44207612686866,34.09812283915808],[-118.44219566955175,34.09835716301962],[-118.44224392093916,34.09846363431791],[-118.44231633504947,34.09858321335235],[-118.44237716021914,34.09866226567396],[-118.44244802441226,34.09872222670128],[-118.44263169328308,34.09885762716998],[-118.44289776870372,34.09907256177593],[-118.44316871833385,34.09925967596009],[-118.4432502215881,34.09933194299435],[-118.44329190731332,34.09940282825215],[-118.44337757906973,34.09954558908549],[-118.44345842006499,34.0996637316609],[-118.4435158359944,34.09959734562244],[-118.44360190696223,34.09951501253552],[-118.44374915825526,34.0993952221644],[-118.4438431797833,34.09931962990453],[-118.44387023134301,34.09928799722064],[-118.44387428671658,34.09926184222936],[-118.44380226194812,34.09907087637949],[-118.44375999881591,34.09898583485303],[-118.44372700061285,34.09892377222067],[-118.44368785493428,34.09884744395568],[-118.44368985624621,34.09877313397362],[-118.44371524846342,34.09871646461954],[-118.44382599630391,34.09865925929376],[-118.44393702781224,34.09864069095999],[-118.44400207252824,34.09866264931576],[-118.44406096378917,34.09868899691105],[-118.44429500249235,34.09881769788145],[-118.4445404585482,34.09894173485064],[-118.44474356210601,34.09908011630429],[-118.44492955005789,34.09919303737172],[-118.44510754699432,34.0992833942256],[-118.44520905446231,34.09931187977914],[-118.44567298232121,34.09941647010337],[-118.44626422588253,34.09955169998845],[-118.44678484337628,34.09963791024766],[-118.44681528362251,34.10006606887874],[-118.44681683213284,34.10041068736346],[-118.44681285845974,34.10077431955318],[-118.44686182166798,34.10092421492205],[-118.44693667512324,34.10104942516943],[-118.44712349668943,34.10124026562387],[-118.44746339571778,34.10152935721354],[-118.44765170107371,34.10168876554919],[-118.44777081950011,34.10178359769099],[-118.44790434250257,34.1019387267528],[-118.44802432106923,34.10207760221581],[-118.44809718646633,34.102133472627],[-118.44818021410347,34.10214729105562],[-118.44834570100983,34.10216348937642],[-118.44845271612179,34.10218834070444],[-118.44857669682033,34.10230644152509],[-118.44870356650847,34.10244672625593],[-118.44879501203438,34.10253569855033],[-118.44889355436315,34.10259737705886],[-118.44900318157032,34.10262344889954],[-118.449121272673,34.10261574481647],[-118.44926820373983,34.10254710709686],[-118.44943490621162,34.102512415733],[-118.44954048045798,34.10251937088694],[-118.44959982820845,34.10255036814519],[-118.44965153325121,34.10260348920025],[-118.44968217687541,34.10267396176388],[-118.44968407782311,34.10271656382552],[-118.44967769885156,34.10276077515404],[-118.44962196658493,34.10281932031182],[-118.44956306919259,34.10288235997371],[-118.44946814803514,34.10296366331632],[-118.44940720082829,34.10303566094183],[-118.44936352444326,34.10311062362214],[-118.44934267645306,34.103189141253],[-118.4493227831292,34.10329520973124],[-118.44930176593668,34.10341314877182],[-118.44930379051007,34.10353811022706],[-118.44939874627229,34.1037398196048],[-118.44960290372042,34.10417194450817],[-118.44973154727282,34.10442847629484],[-118.44974975641581,34.10445919081029],[-118.44978485954047,34.10449048709528],[-118.4501670230987,34.10455531780963],[-118.45036524866521,34.10457512048596],[-118.45044410991738,34.10456957511548],[-118.45051240079415,34.10453605037932],[-118.45065948484637,34.10442297283944],[-118.45090374405724,34.10417109527008],[-118.45101502395711,34.10408115001862],[-118.45114100912419,34.10404157187941],[-118.45131700120207,34.10403220564658],[-118.45255647178682,34.10405066431261],[-118.45268152311922,34.10405781484694],[-118.45274912986214,34.10408118710248],[-118.45281288779434,34.10412627207945],[-118.45293573670719,34.10420749063906],[-118.45308202598153,34.10430777460766],[-118.45324149430064,34.10441186973599],[-118.45345108203703,34.10452425644238],[-118.45357798447571,34.10458296340472],[-118.45360913224108,34.10461555191303],[-118.4536221445494,34.10464679730023],[-118.45361040723397,34.10467146002764],[-118.4535435364845,34.10475424721987],[-118.45340927488618,34.10491027991085],[-118.45335915715638,34.10506107276905],[-118.45343648581343,34.1052229480114],[-118.45367792893175,34.10546831288385],[-118.45387049584916,34.10566398961861],[-118.45409292884702,34.10588747379751],[-118.45428679228571,34.10602965867304],[-118.4545227719836,34.10617245497887],[-118.45485077435697,34.10633172079147],[-118.45500504205751,34.10647362478201],[-118.45507461702667,34.10661648755458],[-118.45521703931328,34.10694227722191],[-118.45532255732522,34.10712501859764],[-118.45543926087582,34.10727416537937],[-118.45562437264428,34.10749593843174],[-118.45617868792823,34.10790657572952],[-118.45656896763653,34.10818105882431],[-118.45664008114028,34.1082459426711],[-118.45669109430179,34.10831785399974],[-118.45675163170259,34.10849182639081],[-118.45681535911108,34.10875388801268],[-118.45685400566823,34.10882286851682],[-118.45696493236865,34.10889314479656],[-118.45715531148761,34.10898289117255],[-118.45739431019905,34.10911143979462],[-118.4575715915888,34.10931880904204],[-118.45788062966436,34.10973867872328],[-118.45819378687669,34.11000557409533],[-118.45829550584764,34.11011173400928],[-118.45832580005417,34.11022822317342],[-118.4583074003001,34.1103805878974],[-118.45810575921936,34.11094660950157],[-118.458046336921,34.11122905655334],[-118.45790598462081,34.11248405676233],[-118.45787063430964,34.11254567494365],[-118.45781508895746,34.11259853544288],[-118.4576251926251,34.11267672208989],[-118.45737528224697,34.11277915382837],[-118.45710101426901,34.1128379936907],[-118.4568115831749,34.11284307975331],[-118.45657943802807,34.11283308176606],[-118.45637929764439,34.11287709127429],[-118.45632332972431,34.1129253830658],[-118.45630773893288,34.11299297518634],[-118.45638400845242,34.11311469400992],[-118.45668829271489,34.11323819606549],[-118.45703560438842,34.11342799018134],[-118.4572682575949,34.11360275371804],[-118.45736712682834,34.11373633900843],[-118.457381068142,34.1138869800124],[-118.45734030102987,34.11401056463549],[-118.45722116594165,34.11412112461394],[-118.45705597487159,34.11417924356127],[-118.45680237956689,34.11424293422108],[-118.45664193282454,34.11429008509001],[-118.45657568364577,34.11432839087306],[-118.45655973985625,34.11438418164928],[-118.45664627506353,34.11447369739998],[-118.45744080688017,34.11487544074517],[-118.45756122825863,34.11498299284768],[-118.45761001552452,34.11511820582461],[-118.45767700457804,34.11518233037325],[-118.45777294234875,34.11520670985062],[-118.457957016905,34.11522529487424],[-118.45823202464292,34.11523154449265],[-118.45828652261369,34.11527045048304],[-118.45833614352293,34.11534607175748],[-118.45844414517069,34.11596183155661],[-118.45845635385007,34.11602506025199],[-118.45842382514734,34.11611942307123],[-118.45832612484467,34.11616895592563],[-118.45822491210129,34.11616188581726],[-118.45809556807758,34.11613462127512],[-118.45792713552356,34.11609343951541],[-118.45774844930099,34.1160503736945],[-118.45757611493148,34.11604831673839],[-118.45738783319638,34.11609667730514],[-118.4572440290644,34.11622251388078],[-118.45712179482111,34.11637542790665],[-118.45709567311775,34.11655074587033],[-118.45708099560075,34.11673054653662],[-118.45713584330571,34.11690800328712],[-118.45718069628022,34.11710632366849],[-118.45717180429668,34.11726580416104],[-118.45710702717743,34.11735071635882],[-118.45702004864167,34.11741707976916],[-118.45677559594925,34.11746483956202],[-118.45630651718362,34.11744255547738],[-118.45607960546215,34.11750787017489],[-118.45591099939573,34.1176287138548],[-118.45585979839987,34.11775304164087],[-118.45589274862394,34.11789255754471],[-118.45595034970607,34.11806190991604],[-118.45595628308673,34.11820520404906],[-118.45592657425487,34.11834127199438],[-118.4558099935655,34.1184975148255],[-118.45572785775437,34.11866620858461],[-118.45570557374116,34.11882243888719],[-118.45573946791494,34.11896656417449],[-118.45589631627416,34.1191866197409],[-118.45611022466218,34.1194541379781],[-118.45619309071843,34.11962914523313],[-118.45622050110588,34.11987263561827],[-118.45608676790279,34.12139629817951],[-118.45598955458834,34.12278581607308],[-118.4559421211939,34.12301667465938],[-118.45586158841179,34.12315299451815],[-118.45568928658631,34.12327663395991],[-118.45556003494561,34.1233577097026],[-118.45553284716085,34.12342470168593],[-118.45552064617448,34.12350015967312],[-118.45554850902882,34.1237416790209],[-118.45558243876741,34.12397435826671],[-118.45567570695259,34.12425142870792],[-118.45576901791559,34.12444231132454],[-118.45585482061669,34.12456932679761],[-118.45599148546277,34.12476358999677],[-118.45607952699601,34.12489793147243],[-118.4561594758036,34.12504385769702],[-118.45620314136626,34.12517110547399],[-118.45621611203389,34.12527509642658],[-118.45623405747182,34.12537388788051],[-118.45628410445913,34.12547399902241],[-118.4563660224112,34.1255916493465],[-118.45645563521801,34.1257157145526],[-118.45655799590749,34.12581398231534],[-118.45666154615611,34.125875937441],[-118.45680736658382,34.1259272048115],[-118.45694407324737,34.12594924610296],[-118.45707195195409,34.12598382409792],[-118.45716810760625,34.12603432597795],[-118.45737252970163,34.12619158832549],[-118.4574386750968,34.12623551764055],[-118.45751801160581,34.12627272565397],[-118.45759120769365,34.12628310462335],[-118.45765293439565,34.12627714147393],[-118.45788351068633,34.12619825431456],[-118.45826545525928,34.12608597419618],[-118.45845726144945,34.12606072449334],[-118.45853491890682,34.12606298540619],[-118.45860850916849,34.12607607052922],[-118.45890968109485,34.12620875367548],[-118.45916505226613,34.12638204657478],[-118.45934847414426,34.12654248948141],[-118.45942731151059,34.1266575216012],[-118.45943343894945,34.12673067808552],[-118.45941395105029,34.12681259108101],[-118.45936711403338,34.12686342376677],[-118.45926158638272,34.12691876432656],[-118.45868082959051,34.12719992075764],[-118.45833932327976,34.12736509668031],[-118.45819662149495,34.12744800875992],[-118.45815404564463,34.12749134458792],[-118.45813248149396,34.1275449344858],[-118.45809592482216,34.12766046719081],[-118.45809747081451,34.12775386535682],[-118.45812193467432,34.12786887300145],[-118.4581659450707,34.12800797049504],[-118.45824599857794,34.12817482557513],[-118.45834183760206,34.12838071049875],[-118.45841611013914,34.12855493103604],[-118.45845574497613,34.12867916184516],[-118.45847692768766,34.12875722143101],[-118.45847793003608,34.12882079412016],[-118.45846692867337,34.12889299263388],[-118.45844605013706,34.12897218878138],[-118.45841263145479,34.12903344881866],[-118.45838125903795,34.12910711431037],[-118.4583724456246,34.12920380679755],[-118.4583707703235,34.12926016719284],[-118.45838355842102,34.12932633023649],[-118.45845674794485,34.12946324329439],[-118.45857455042857,34.1296727242631],[-118.45871016335076,34.12985459325815],[-118.45876987179193,34.12990884870412],[-118.45887235339322,34.12995952150325],[-118.4591407856007,34.13004336251856],[-118.45930150695426,34.13011776255167],[-118.45937231901559,34.13016922057783],[-118.45939471308566,34.13021890361473],[-118.45938484100088,34.13026456534602],[-118.45931431104201,34.1303751441187],[-118.45925130418786,34.13050030733036],[-118.4592501432535,34.13050046804173],[-118.45922208078234,34.13050503963942],[-118.4591940201078,34.13050995551945],[-118.45916596212821,34.13051521419458],[-118.45913790504697,34.13052081640838],[-118.45910985066064,34.13052676216076],[-118.45908179896927,34.13053339499064],[-118.45905374997281,34.13054037135884],[-118.45902735477485,34.13054768457307],[-118.45899930847337,34.13055534801778],[-118.45897291686862,34.13056334830834],[-118.45894487775367,34.13057204162433],[-118.4589184897422,34.13058072899079],[-118.45889210622229,34.13059010343375],[-118.45880800774201,34.13061996303899],[-118.45878822324619,34.13062759450284],[-118.45876350071127,34.13063867994077],[-118.45873877997298,34.13065010891575],[-118.45871241172442,34.13066223091476],[-118.45868769457938,34.13067434696327],[-118.45866298192594,34.13068714934305],[-118.45863992127425,34.13069994577219],[-118.45861521041741,34.13071309242991],[-118.45859215515567,34.13072691946956],[-118.45856910079222,34.1307407457634],[-118.4585460491237,34.13075525987458],[-118.45852299745519,34.13076977398327],[-118.45849995027827,34.13078497442174],[-118.45847855510314,34.13080017039593],[-118.45845550792622,34.13081571436666],[-118.45843411814097,34.13083193946132],[-118.45841272835577,34.13084816455282],[-118.45839299326727,34.13086472648655],[-118.45837160707531,34.13088163864685],[-118.45835187288515,34.1308985441114],[-118.45833214318657,34.13091613664739],[-118.45831241528462,34.13093407271702],[-118.45829433848617,34.1309520028341],[-118.45827461238082,34.13097028243327],[-118.45825654007395,34.13098889887328],[-118.45823846776705,34.13100751605275],[-118.45822205195356,34.13102681360972],[-118.45820398323994,34.13104611711098],[-118.45818756832473,34.13106575819592],[-118.45817115430788,34.13108539927623],[-118.45815639408943,34.13110537719637],[-118.45813998276751,34.13112570534058],[-118.45812522614234,34.13114637032407],[-118.45811046951717,34.13116703530251],[-118.45809736489379,34.13118769432717],[-118.45809244482101,34.13119423936217],[-118.45808261186188,34.13120904636789],[-118.45806951173009,34.13123039171094],[-118.4580564107,34.13125173779219],[-118.45804496436664,34.1312734214553],[-118.45803351893161,34.13129544864865],[-118.4580220743949,34.1313174750927],[-118.4580106316548,34.13133984506668],[-118.45800245159582,34.13135464535468],[-118.45799919610123,34.13136358843336],[-118.45799429938461,34.13137459867291],[-118.4579877515645,34.13138561485966],[-118.45798120104946,34.13139628825316],[-118.45797630433285,34.13140729848844],[-118.45796975381779,34.1314179711356],[-118.45796320330275,34.13142864378142],[-118.45795499898927,34.13143897958289],[-118.45794844757589,34.13144965222605],[-118.4579418952642,34.13145998207631],[-118.45793369005239,34.13146997433883],[-118.4579254848406,34.13148031013519],[-118.45791727783215,34.13149030239531],[-118.45790906992539,34.13149995111923],[-118.45790086381527,34.13150994263343],[-118.45789265501023,34.13151959135512],[-118.45788444530683,34.13152889654082],[-118.45787458270331,34.13153820841774],[-118.45786637299996,34.1315475136014],[-118.45785651039647,34.13155682547621],[-118.45784664599633,34.13156579307172],[-118.45783677979955,34.13157441787519],[-118.4578269136028,34.13158304193417],[-118.45781704740602,34.13159166673587],[-118.45780717941261,34.13159994800206],[-118.45779565941743,34.13160823521611],[-118.45778579142402,34.1316165164807],[-118.45777426963217,34.13162446015865],[-118.45776439804553,34.13163205435268],[-118.45775287355876,34.13163965449473],[-118.45774134997028,34.13164725463609],[-118.45772982368689,34.1316545112424],[-118.45715680992669,34.13201321985497],[-118.45714528274497,34.13202013364049],[-118.45713210445975,34.13202739616339],[-118.45712057637971,34.13203430994778],[-118.45710904470641,34.13204053592246],[-118.45709751482975,34.13204710617303],[-118.45708433115465,34.1320533380953],[-118.45707279948134,34.13205956481217],[-118.45705961400961,34.13206545394441],[-118.45704642674121,34.13207099954363],[-118.45703323857454,34.13207654514243],[-118.45702170151135,34.13208174125968],[-118.45700851244635,34.13208694332516],[-118.45699532248301,34.13209214539037],[-118.45698212982475,34.13209666039005],[-118.45696893626818,34.1321011761331],[-118.45695574360992,34.13210569113236],[-118.45694089625489,34.13210986929099],[-118.4569277009017,34.13211404075729],[-118.45691450195524,34.13211752590193],[-118.45690130480537,34.13212135383532],[-118.45688645206047,34.1321245013958],[-118.456873253114,34.13212798579648],[-118.45685839767417,34.13213078982427],[-118.45684519513441,34.13213358790338],[-118.45683033789793,34.13213604839859],[-118.45681713356159,34.1321385029451],[-118.45680227542678,34.13214061990777],[-118.45678741639367,34.13214273687042],[-118.45677420846404,34.13214450435198],[-118.45675934583765,34.13214593424974],[-118.45674448410962,34.13214736414749],[-118.45673127168841,34.13214844456423],[-118.45671640816371,34.13214953167309],[-118.45670154194407,34.13215027450605],[-118.45668997793143,34.13215066190945],[-118.45667676281528,34.13215105526144],[-118.45666520059926,34.1321517854536],[-118.45665363928156,34.13215251713287],[-118.45664207706554,34.13215324732502],[-118.45663051754445,34.1321543210495],[-118.45661895982001,34.13215573904989],[-118.45660740209557,34.13215715705024],[-118.45659584437112,34.13215857430694],[-118.45658428754501,34.132160335096],[-118.45657273161719,34.13216209737218],[-118.45656283038612,34.13216419425768],[-118.45655127805156,34.13216664359837],[-118.45653972571702,34.13216909145181],[-118.45652817338244,34.1321715393052],[-118.45651827484632,34.13217432474215],[-118.45650507410325,34.13217746635206],[-118.45649517646544,34.13218025104524],[-118.45648527972595,34.13218338001414],[-118.45647373098465,34.13218651493153],[-118.45646383694013,34.1321899874324],[-118.4564522917921,34.1321938094139],[-118.45644239954419,34.1321976247031],[-118.45643085439616,34.13220144668426],[-118.45642096394485,34.13220560624879],[-118.45641107529021,34.13221010860163],[-118.45640118394064,34.13221426816572],[-118.45638964508082,34.13221911999884],[-118.45637975642617,34.13222362309455],[-118.45636986956814,34.13222846897847],[-118.45635998450675,34.1322336583942],[-118.45635009944536,34.13223884855313],[-118.45634186638578,34.13224403201956],[-118.456331983121,34.13224956496622],[-118.45632209895797,34.13225509791258],[-118.45631221569319,34.13226063085854],[-118.45630398622687,34.1322665013874],[-118.45629410475875,34.13227237786452],[-118.45628587798738,34.13227859192442],[-118.4562776503177,34.13228480524031],[-118.45626777064619,34.13229102524789],[-118.45625954567149,34.13229758283816],[-118.45625132069672,34.132304140428],[-118.45624309662028,34.13231104080538],[-118.45623487164556,34.13231759839416],[-118.45622664936576,34.13232484230209],[-118.45622007818946,34.13233173672926],[-118.45621185680798,34.13233898137956],[-118.45620363542649,34.13234622528572],[-118.45619706514852,34.13235346324261],[-118.45619049756547,34.13236104473044],[-118.4561822779806,34.1323686329097],[-118.45617571219421,34.13237655792755],[-118.45616914461117,34.1323841394133],[-118.45616257882475,34.13239206442972],[-118.45615601393666,34.13239998944541],[-118.45614944994686,34.1324082572481],[-118.45614453795892,34.13241651984494],[-118.45613797396912,34.13242478838961],[-118.45613306287945,34.13243305024123],[-118.45612649888967,34.13244131878427],[-118.45612158869832,34.132449924909],[-118.4561166794053,34.13245853028933],[-118.45611176921395,34.13246713566873],[-118.45610685992095,34.1324757417909],[-118.45610195152622,34.13248469069955],[-118.45609704402985,34.1324936396073],[-118.45609378853524,34.13250258256547],[-118.45608888014053,34.13251153221493],[-118.45608562464592,34.13252047517121],[-118.45608237274462,34.13253010518822],[-118.45607909658877,34.1325352693039],[-118.45607420885533,34.13254799704453],[-118.45607095695399,34.13255762705842],[-118.45606604945758,34.13256657595841],[-118.456062793963,34.13257551890892],[-118.45605788556827,34.132584467807],[-118.45605297627525,34.13259307391721],[-118.45604806788054,34.13260202281344],[-118.45604315858751,34.13261062892187],[-118.45603824839617,34.13261923502937],[-118.45603333640821,34.13262749760558],[-118.45602677511336,34.13263610965998],[-118.4560218631254,34.13264437149101],[-118.4560152991356,34.13265264001332],[-118.45600873514583,34.13266090853489],[-118.45600382136121,34.13266882683318],[-118.45599725647313,34.13267675182294],[-118.45599069068672,34.1326846768119],[-118.45598412490031,34.13269260180018],[-118.45597590441713,34.13270018994968],[-118.4559693368341,34.13270777140641],[-118.45596276925106,34.13271535286241],[-118.45595454786957,34.13272259673629],[-118.4559479784899,34.13272983466095],[-118.45593975621011,34.13273707927721],[-118.45593153482862,34.13274432314918],[-118.45592331165051,34.13275122423421],[-118.45591673957587,34.13275811862658],[-118.45590686170104,34.13276468212919],[-118.45589863672629,34.13277123968278],[-118.45589041085323,34.13277779649222],[-118.45588218408187,34.13278401051501],[-118.45587395641216,34.13279022453729],[-118.45586407674067,34.13279644450766],[-118.45585584727435,34.1328023142558],[-118.45584596670456,34.13280819143918],[-118.45583608254148,34.13281372434892],[-118.45582785217685,34.13281925130979],[-118.45581796891207,34.1328247842188],[-118.4558080829524,34.13282997359786],[-118.455798197891,34.13283516297665],[-118.45578831103298,34.13284000956909],[-118.45577842417497,34.13284485541769],[-118.45576853731694,34.13284970126605],[-118.45575864686568,34.13285420432816],[-118.45574875821102,34.13285870664646],[-118.45573721485962,34.13286287212719],[-118.45572732440834,34.13286703091558],[-118.45571743126212,34.13287084691791],[-118.45570588611409,34.13287466886869],[-118.45569599386617,34.1328784841271],[-118.45568444692151,34.13288196254809],[-118.45567455018202,34.132885091491],[-118.4556630041357,34.13288856991172],[-118.45565310559958,34.13289135532506],[-118.45564155506165,34.13289414668684],[-118.45563000452373,34.13289693804855],[-118.45561845218919,34.13289938588083],[-118.45560855185644,34.13290182776452],[-118.45559699772525,34.13290393206737],[-118.45558544359406,34.13290603637018],[-118.45557388856454,34.13290814067294],[-118.45556233263676,34.13290990218996],[-118.45555077491227,34.13291131943408],[-118.45554086918965,34.13291273072964],[-118.45552930877028,34.13291380444448],[-118.45551774924918,34.13291487890281],[-118.4555061897281,34.13291595261762],[-118.4554946275121,34.13291668354675],[-118.45548471639955,34.13291706425451],[-118.45494620243788,34.13293935796102],[-118.4549362895287,34.13293939513946],[-118.45492472551607,34.13293978179566],[-118.4549131606051,34.13293982566629],[-118.45490159299918,34.13293952600772],[-118.45489002539328,34.13293922560561],[-118.45487845599072,34.13293858241793],[-118.45486688658818,34.1329379392302],[-118.45485531808396,34.13293729529893],[-118.45484374688478,34.13293630858202],[-118.45483217388897,34.13293497833598],[-118.45482060089317,34.13293364734634],[-118.45480902789735,34.13293231710022],[-118.45479745310492,34.13293064332488],[-118.45478587561755,34.13292862602036],[-118.45477595192861,34.13292660276721],[-118.45476437444123,34.13292458546255],[-118.4547527960555,34.13292222462868],[-118.45474121766982,34.13291986379469],[-118.45473128948929,34.13291715273931],[-118.45471970840865,34.13291444837592],[-118.45470812642969,34.1329114004832],[-118.45469819645254,34.13290834664179],[-118.45468661088033,34.13290495521959],[-118.45467667910654,34.13290155784867],[-118.45466509263601,34.13289782289683],[-118.45465515906561,34.13289408199626],[-118.45464357349337,34.1328903470441],[-118.45463363722801,34.13288626261385],[-118.45462370006436,34.13288183465402],[-118.45461376379899,34.13287775022336],[-118.45460217283687,34.1328729854258],[-118.45459223477488,34.13286855746527],[-118.4545822958146,34.13286378597505],[-118.45457235415934,34.13285867095509],[-118.45456241250409,34.13285355593482],[-118.45455412374898,34.13284843496562],[-118.45454418029709,34.13284297641519],[-118.45453423774352,34.13283751786441],[-118.45452429429164,34.13283206005684],[-118.45451600104494,34.13282625202719],[-118.45450605669475,34.13282044994563],[-118.45449776165141,34.13281429838552],[-118.45448946660808,34.13280814682496],[-118.4544795177663,34.13280165768274],[-118.4544712236213,34.13279550612127],[-118.45446292498471,34.13278866749981],[-118.45445462814473,34.13278217240754],[-118.45444633040645,34.1327753345286],[-118.45443803176985,34.13276849590545],[-118.45443138333845,34.13276130780333],[-118.45442308560017,34.13275446917911],[-118.45441643537212,34.13274693754586],[-118.45440813493889,34.13273975539051],[-118.45440148471084,34.13273222375597],[-118.45439318337928,34.13272469806934],[-118.45438653315124,34.13271716643343],[-118.45437988112657,34.13270929126678],[-118.45437322910189,34.13270141609939],[-118.45436824075713,34.13269559542004],[-118.454348273005,34.13266956520018],[-118.45432831693093,34.13264593968469],[-118.45430671155005,34.13262266438525],[-118.45428675996757,34.13259972443065],[-118.45426515817994,34.13257713543616],[-118.45424355818895,34.13255488996633],[-118.45422195819793,34.13253264449065],[-118.45419870979838,34.13251109276306],[-118.45417546050051,34.13248954028644],[-118.45415221569422,34.1324686748664],[-118.45412731798781,34.13244781538985],[-118.45410407677478,34.13242763702198],[-118.45407918355994,34.13240746534152],[-118.45405264193654,34.13238798592401],[-118.45402775500992,34.13236884408487],[-118.45400121518318,34.13234970893362],[-118.45397467894968,34.13233126009769],[-118.45394814451281,34.13231315478941],[-118.45391995987077,34.13229539970123],[-118.45389343172212,34.13227832498086],[-118.45386525067336,34.13226125620558],[-118.45383707411615,34.13224487449081],[-118.45380724645543,34.13222884299714],[-118.45377907349152,34.13221314834028],[-118.4537492503224,34.13219780316134],[-118.45371942805157,34.13218280225543],[-118.45368961027236,34.13216848692424],[-118.45365979428976,34.13215451586656],[-118.45362998190042,34.13214123112778],[-118.45359851661097,34.13212795382269],[-118.45356705581311,34.13211536283693],[-118.45353559681185,34.13210311538184],[-118.45350414140387,34.13209155499017],[-118.45347268779251,34.13208033738603],[-118.45343958487429,34.13206947000523],[-118.45340813665281,34.13205928373994],[-118.45337503912448,34.13204944695475],[-118.45334359449627,34.13203994700907],[-118.45331050235784,34.13203114007662],[-118.45327741201604,34.13202267741971],[-118.45324432526748,34.1320149010842],[-118.45320958831377,34.1320074749731],[-118.4531765051585,34.13200038570213],[-118.45314342559648,34.13199398349655],[-118.45310869582924,34.13198793077216],[-118.45307396696037,34.13198222158034],[-118.4530607383695,34.1319802102018],[-118.45185860566977,34.13180300570436],[-118.45180238640432,34.13179497207009],[-118.4517461725288,34.13178796903655],[-118.45168830934642,34.13178131548493],[-118.45163045245224,34.1317760360683],[-118.45157425205143,34.13177143702692],[-118.45151640324207,34.13176753174534],[-118.45145855892429,34.13176465632183],[-118.45140071819978,34.1317624679661],[-118.45134288196685,34.13176096667812],[-118.45128505202213,34.13176049524842],[-118.45122722656897,34.13176105442061],[-118.45116940560739,34.1317623006606],[-118.45111324024087,34.1317642280198],[-118.45105542826246,34.13176719192933],[-118.4509976198773,34.13177084216304],[-118.45093981598367,34.13177517946435],[-118.45088201748001,34.13178089090083],[-118.45083413008884,34.13178587883389],[-118.44988631583591,34.13189108191752],[-118.44987145410788,34.13189251107598],[-118.44985658968487,34.131893596701],[-118.44984337726366,34.13189467637741],[-118.44982851104403,34.13189541846907],[-118.44981364392608,34.13189616130426],[-118.44979877680814,34.13189655986248],[-118.44978555899704,34.13189660893867],[-118.44977068918413,34.13189666470708],[-118.44975581757461,34.13189637619851],[-118.44974259617025,34.13189573820792],[-118.44972772276408,34.13189510690955],[-118.44971284756133,34.13189413207777],[-118.44969962436033,34.13189315055376],[-118.44968474736092,34.13189183218851],[-118.44966987036149,34.13189051307972],[-118.44965664087231,34.13188850169897],[-118.44964176207624,34.13188683980025],[-118.44962687968693,34.13188449009105],[-118.44961530309787,34.13188247276152],[-118.44959876601179,34.13187978621094],[-118.44958553382766,34.13187708776304],[-118.44957064784509,34.13187405173014],[-118.449557412966,34.13187100900497],[-118.44954417718861,34.13186762348973],[-118.44952928761278,34.1318639003895],[-118.44951604914044,34.13186017134043],[-118.44950281156642,34.13185644229125],[-118.44948956950081,34.13185202617471],[-118.44947467812834,34.1318479602838],[-118.44946143426611,34.13184320063322],[-118.44944819130218,34.13183844098237],[-118.44943494743995,34.13183368133125],[-118.44942335468123,34.13182857219763],[-118.44941010722573,34.13182312547857],[-118.44939686066854,34.13181767875918],[-118.44938361321304,34.13181223278302],[-118.44937201506443,34.13180609304678],[-118.44935876581229,34.1318003027925],[-118.4493471649687,34.13179381952159],[-118.44933391481828,34.13178768647624],[-118.44932231217805,34.1317808596705],[-118.44931071223279,34.1317743763981],[-118.44929910779595,34.13176720605737],[-118.44928750515574,34.13176037999358],[-118.44927589982059,34.13175286611763],[-118.44926429448545,34.13174569503155],[-118.44925268645532,34.13173783910744],[-118.44924273222368,34.13173031853733],[-118.44923112509187,34.13172246112467],[-118.44922116726696,34.13171425497207],[-118.44920955744024,34.13170605402376],[-118.44919960051361,34.13169784786956],[-118.44918964089206,34.13168929743679],[-118.44917967947387,34.13168040346883],[-118.44916972075065,34.1316718537779],[-118.44915975933246,34.1316629598081],[-118.44915144811945,34.13165371709796],[-118.44914148580294,34.13164447959191],[-118.44913317458993,34.13163523613614],[-118.4491232095785,34.13162565583711],[-118.44911489746715,34.13161606884481],[-118.44910658445752,34.13160648259498],[-118.44909827054957,34.13159655206585],[-118.44908995574332,34.13158662227915],[-118.44908329204051,34.13157634226435],[-118.44907331355435,34.13156435721552],[-118.44906664985157,34.131554077198],[-118.44905667226371,34.13154209214601],[-118.44904669467587,34.1315301070923],[-118.44903671618967,34.1315181227805],[-118.44902674039842,34.13150648125838],[-118.44901676460722,34.13149483973464],[-118.44900679061261,34.1314835417444],[-118.44899516461621,34.13147224970128],[-118.44898354041642,34.13146130119186],[-118.44897356821848,34.13145034673231],[-118.44896194581531,34.13143974175525],[-118.44895032341216,34.13142913677686],[-118.44893870819554,34.13141990593851],[-118.44887400164731,34.13136965384342],[-118.44879275891132,34.13131671514999],[-118.44870494679569,34.13127135652182],[-118.44861056889361,34.13123392299426],[-118.44643255048666,34.13054161761683],[-118.4463779445955,34.13052601856997],[-118.44633658885473,34.13051655414539],[-118.44626547911517,34.13050445071529],[-118.446207622221,34.13049882544909],[-118.44340779895752,34.13031265309289],[-118.44337804945026,34.1303107019056],[-118.44336317424748,34.1303097255684],[-118.44335160753987,34.13030942441335],[-118.44334003005248,34.13030878046199],[-118.44332847322637,34.13030882284679],[-118.4433169083154,34.13030886523156],[-118.44330534340442,34.13030890761635],[-118.44329377849346,34.13030929354102],[-118.44328221537911,34.13030967946565],[-118.44327230606322,34.13031040223777],[-118.4432607447455,34.13031113170221],[-118.44324918522442,34.13031220470649],[-118.44323432259806,34.13031363314809],[-118.44321615956133,34.13031576056675],[-118.44319800011787,34.13031857506498],[-118.44318479578151,34.13032102817706],[-118.44317323985368,34.13032278751725],[-118.44316168751915,34.13032523468048],[-118.4431501351846,34.13032768110004],[-118.44314023485181,34.13033012231442],[-118.4431286843139,34.13033291227363],[-118.44311713377601,34.13033570223276],[-118.44310723703651,34.13033882978273],[-118.4430956882952,34.13034196402492],[-118.44308414135055,34.13034544106314],[-118.4430742464077,34.13034891215244],[-118.44306270125966,34.13035273273003],[-118.44305280811345,34.13035654735867],[-118.44304291496722,34.1303603619872],[-118.44303137251413,34.13036452610389],[-118.44302148296114,34.1303690278112],[-118.4430115934082,34.13037352951832],[-118.44300170385522,34.13037803122516],[-118.44299181609891,34.13038287572773],[-118.4429819292409,34.13038772097363],[-118.44297204148457,34.13039256621923],[-118.44296215552484,34.13039775426044],[-118.44295227046346,34.13040294304496],[-118.44294238630039,34.13040847611213],[-118.44293250213732,34.1304140076918],[-118.44292427446764,34.13042022114472],[-118.44291933373357,34.13042333010178],[-118.44257683486184,34.13064235550524],[-118.4421701190237,34.13090317666173],[-118.44203015611254,34.13099299529259],[-118.44202027554273,34.13099921390808],[-118.44200874925932,34.13100646908282],[-118.44199722207757,34.13101372425695],[-118.44198569130259,34.13102029310014],[-118.44197416052761,34.13102686119923],[-118.44196097685249,34.13103343599014],[-118.44194944428088,34.13103966055134],[-118.44193625791083,34.13104554826751],[-118.44192472354258,34.131051429291],[-118.44191153717252,34.13105731700633],[-118.44189834900584,34.1310628611845],[-118.44188515814422,34.13106806182554],[-118.44187196818088,34.13107326246627],[-118.44185877642093,34.13107811882635],[-118.441845584661,34.13108297592976],[-118.4418323902061,34.13108748949622],[-118.44181919664953,34.13109200306243],[-118.44180600129631,34.13109617309171],[-118.44179280324816,34.13109999958421],[-118.44177795409652,34.1311038327688],[-118.44176475425174,34.13110731572436],[-118.44175155530525,34.13111079867977],[-118.44173670166205,34.13111394479068],[-118.44172350091894,34.13111708420927],[-118.4417086454791,34.13111988603987],[-118.44169544114273,34.1311223391287],[-118.44168058390625,34.1311247974226],[-118.44166737597661,34.13112690697483],[-118.44165251784182,34.13112902173209],[-118.44163765521543,34.13113045015983],[-118.44162444638751,34.13113221617542],[-118.44160958465945,34.13113364385952],[-118.44159472023644,34.13113472875074],[-118.44158150601859,34.13113546415676],[-118.44156664069729,34.1311362055115],[-118.44155177268101,34.13113660332969],[-118.44153855666654,34.13113699519921],[-118.44152368685366,34.13113704948097],[-118.44150881793907,34.13113710376269],[-118.44149394632956,34.13113681450799],[-118.44147742092157,34.13113618766541],[-118.4414691582176,34.13113587461596],[-118.44145924351182,34.13113556751517],[-118.44144932970433,34.13113560320726],[-118.44143941679518,34.13113563964296],[-118.441429503886,34.13113567607861],[-118.44141959277349,34.13113605530724],[-118.44140968166094,34.13113643527935],[-118.44139977144674,34.13113715804447],[-118.44138986213083,34.13113788155311],[-118.44137995461158,34.13113894785462],[-118.44137004709232,34.13114001489969],[-118.44136014136964,34.13114142473764],[-118.44135023385039,34.1311424917827],[-118.4413403299244,34.13114424515705],[-118.44133042330344,34.13114565499491],[-118.44132052117405,34.13114775264922],[-118.44131061724806,34.13114950602352],[-118.44130071511867,34.13115160293414],[-118.44129081478592,34.13115404338111],[-118.44128091265654,34.13115614029167],[-118.44127101412045,34.1311589250185],[-118.44126111378769,34.13116136546525],[-118.44125286725337,34.13116414349965],[-118.44124297051388,34.13116727101902],[-118.44123307197779,34.13117005500189],[-118.44122317703493,34.13117352605731],[-118.44121493229724,34.13117664688406],[-118.44120503735438,34.13118011793924],[-118.44119679620997,34.13118392658192],[-118.4411869012671,34.13118739763678],[-118.44117866191932,34.13119154981533],[-118.44116876877312,34.13119536366258],[-118.44116052942533,34.13119951584077],[-118.44115229097585,34.13120366801876],[-118.44114405342469,34.13120816298913],[-118.44113416297343,34.13121266465156],[-118.44112592542227,34.13121715962144],[-118.44111768966773,34.13122199887084],[-118.44110945391321,34.13122683737633],[-118.441101219057,34.13123167662519],[-118.44109463710092,34.13123685271754],[-118.44108640314302,34.13124203550188],[-118.44107817188008,34.13124756107827],[-118.44106993971882,34.13125308665436],[-118.44106335955935,34.13125860628137],[-118.44105512829641,34.13126413260034],[-118.44104854993358,34.13126999576257],[-118.44104031956896,34.1312758648731],[-118.44103374210445,34.13128172803456],[-118.44102716553826,34.13128793473144],[-118.44102058987035,34.1312941414279],[-118.44101401330418,34.13130034812386],[-118.44100743763629,34.13130655481941],[-118.44100086286672,34.13131310653741],[-118.44099428899547,34.13131965676777],[-118.44098771422588,34.13132620699756],[-118.4409811421513,34.13133310076257],[-118.44097457995814,34.13134205499731],[-118.44096800608689,34.13134860522543],[-118.44096308062419,34.13135446243313],[-118.44095815426317,34.13136031964043],[-118.44095322700383,34.13136583331183],[-118.44094664684441,34.13137135293149],[-118.44094171958504,34.13137686734571],[-118.4409351403239,34.1313823869647],[-118.44093021036964,34.13138755709914],[-118.44092362931187,34.13139273318194],[-118.44091869935757,34.13139790331581],[-118.44091211829982,34.13140308014156],[-118.4409055345471,34.13140791268804],[-118.44089895348932,34.13141308876963],[-118.44089236793998,34.13141757852379],[-118.44088578418726,34.13142241106943],[-118.44087919953623,34.13142690082315],[-118.44087261398687,34.13143138983298],[-118.44086602843751,34.13143587958616],[-118.44085944198986,34.13144002506027],[-118.4408528564405,34.13144451481305],[-118.4408446152961,34.13144832270017],[-118.44083802884843,34.13145246891726],[-118.44082978770402,34.13145627680408],[-118.4408231985614,34.13146007948561],[-118.440814957417,34.13146388811564],[-118.44080836737605,34.13146734651811],[-118.44080012443503,34.13147081161274],[-118.44079353169914,34.13147392722341],[-118.44078528875809,34.13147739231771],[-118.44077704402044,34.13148051313319],[-118.44075890613652,34.13148744926982],[-118.44073746424903,34.13149439730316],[-118.44072921591808,34.13149683179159],[-118.4407209657905,34.13149892274496],[-118.44071271745955,34.1315013572333],[-118.44070446553536,34.13150310465156],[-118.44069621540778,34.13150519560475],[-118.4406879634836,34.13150694302293],[-118.4406797115594,34.13150869044106],[-118.44067145963518,34.13151043860277],[-118.44066320591436,34.13151184248588],[-118.44065329839511,34.13151290878267],[-118.44064504467427,34.13151431266574],[-118.44063678915681,34.13151537375744],[-118.44062853363934,34.13151643410554],[-118.44062027632523,34.1315171509187],[-118.44061201901113,34.13151786847544],[-118.44060210969528,34.13151859123722],[-118.44059385058453,34.13151896451544],[-118.44058559057551,34.13151933853722],[-118.44057732966813,34.13151936828048],[-118.44056741586067,34.13151940471602],[-118.44055915495332,34.13151943445929],[-118.44055089404596,34.13151946494619],[-118.44054263134198,34.13151915189809],[-118.44053271483953,34.13151850052017],[-118.44052445213559,34.13151818747213],[-118.44051618763496,34.13151753014556],[-118.44050792133771,34.13151653002765],[-118.44049965504048,34.13151552990967],[-118.44048973584309,34.13151453574038],[-118.44048146954586,34.13151353487884],[-118.44047320145198,34.13151219122587],[-118.44046493335811,34.13151084757295],[-118.44045666346761,34.13150916038498],[-118.4404483935771,34.13150747319703],[-118.44044012368657,34.13150578600899],[-118.44043185110115,34.1315037545424],[-118.44042357941402,34.13150172381935],[-118.44041530772688,34.1314996930962],[-118.44040703424309,34.13149731883799],[-118.44039876075932,34.13149494457976],[-118.44039048727556,34.13149257032141],[-118.44037890349998,34.13148917809881],[-118.43991381154143,34.1313338978843],[-118.43972678140094,34.1312713765986],[-118.4396407147119,34.13124249280634],[-118.43962913093628,34.13123910057366],[-118.43962085745251,34.13123672630818],[-118.43961423597058,34.13123434609391],[-118.43960596248681,34.1312319718283],[-118.43959769079967,34.13122994035507],[-118.43958941911255,34.13122790962544],[-118.43958114742539,34.1312258788957],[-118.43957122553307,34.13122419765077],[-118.43956295564257,34.13122251045709],[-118.43955468575207,34.13122082326342],[-118.43954641675988,34.13121947886225],[-118.43953814866602,34.13121813520461],[-118.43952988236877,34.13121713508315],[-118.4395216160715,34.1312161342181],[-118.43951169777246,34.13121514004524],[-118.43950343057691,34.13121413918014],[-118.4394951660763,34.1312134825948],[-118.4394869033723,34.13121316954564],[-118.43947863887169,34.13121251221665],[-118.43946872326757,34.13121220511614],[-118.43946046236024,34.13121223485953],[-118.43945220145288,34.13121226460292],[-118.43944394054552,34.13121229508992],[-118.43943402763637,34.13121233078198],[-118.43942576852565,34.13121270480514],[-118.43941750941494,34.13121307808466],[-118.43940925210083,34.13121379490038],[-118.43940099478675,34.13121451171611],[-118.43939108547083,34.13121523522409],[-118.43938282995339,34.13121629557595],[-118.43937457443592,34.1312173559278],[-118.43936631891846,34.13121841627963],[-118.43935806519762,34.1312198201676],[-118.4393498114768,34.13122122405559],[-118.43933990755079,34.13122297742832],[-118.4393316556266,34.13122472485231],[-118.43932340370239,34.13122647227629],[-118.43931515357481,34.13122856323633],[-118.43930690165062,34.13123031066021],[-118.43929865331971,34.13123274515625],[-118.43929040319213,34.13123483611616],[-118.43928215486117,34.1312372706121],[-118.43927390832687,34.13124004864399],[-118.43925411664453,34.13124664646939],[-118.43923433035209,34.13125427490227],[-118.43922773761621,34.13125739052093],[-118.43921949467516,34.1312608556241],[-118.43921125173411,34.1312643199836],[-118.43920466079489,34.13126777913783],[-118.43919642054878,34.13127158703292],[-118.43918983140617,34.13127538972276],[-118.43918159026174,34.13127919761755],[-118.43917500291576,34.13128334384296],[-118.43916841377317,34.13128714578867],[-118.43916182912211,34.13129163480598],[-118.43915358977435,34.13129578697941],[-118.43914700422499,34.1313002759962],[-118.43914041867565,34.13130476501281],[-118.4391338340246,34.13130925477272],[-118.43912725027189,34.13131408732455],[-118.43912066472257,34.13131857634043],[-118.43911408186813,34.13132340889172],[-118.43910749991207,34.13132858572204],[-118.43910256995778,34.13133375660344],[-118.43909598710339,34.13133858915386],[-118.43908940694392,34.13134410877529],[-118.43908447788793,34.13134927891214],[-118.43907789772851,34.13135479853288],[-118.43907296957086,34.13136031220464],[-118.43906804231152,34.131365825876],[-118.43906146215207,34.13137134623923],[-118.43905653668936,34.13137720270182],[-118.43905160853171,34.13138271637207],[-118.43904668306901,34.13138857357741],[-118.43904011189271,34.13139581087277],[-118.43902210965439,34.13142850770578],[-118.43900404183913,34.13144883874656],[-118.43898266822353,34.13146883888826],[-118.43896621198587,34.13148160768654],[-118.43894647599906,34.13149885359184],[-118.43892671575776,34.13151163428284],[-118.43889046693943,34.13153065734299],[-118.4388409949201,34.13154869812726],[-118.43883605149108,34.13155112071678],[-118.43882615924318,34.13155527882616],[-118.43881626609695,34.13155909265699],[-118.43880802495252,34.13156290128255],[-118.43879813000969,34.13156637157831],[-118.43878988706864,34.13156983666882],[-118.43877999032915,34.13157296417314],[-118.43877009358967,34.13157609093379],[-118.43876184885198,34.13157921248923],[-118.43875195031588,34.13158199645851],[-118.43874205088144,34.13158478042778],[-118.43873215054869,34.13158722011865],[-118.43872225021593,34.1315896605531],[-118.43871400188499,34.13159209503878],[-118.43870409975563,34.13159419193842],[-118.4386941949313,34.1315959453034],[-118.43868429280191,34.131598042203],[-118.43867438887592,34.13159979556789],[-118.4386644831533,34.13160120539816],[-118.43865457653233,34.13160261522842],[-118.43864467080969,34.13160402505869],[-118.43863476329044,34.13160509135432],[-118.43862485577115,34.13160615839352],[-118.43861494555695,34.13160688115455],[-118.43860338423923,34.13160760986423],[-118.43859347492332,34.13160833262524],[-118.43858356291248,34.13160871259529],[-118.43857365000333,34.13160874828719],[-118.43856373889082,34.13160912751371],[-118.43855382598164,34.13160916394914],[-118.43854391037755,34.13160885610647],[-118.43853399567173,34.1316085490074],[-118.43852407916933,34.13160789763018],[-118.43851416446351,34.13160759053111],[-118.43850259326435,34.13160660156795],[-118.43849267496529,34.13160560739973],[-118.43848275666626,34.13160461248792],[-118.43847283746888,34.13160361831967],[-118.4384629173732,34.13160228061684],[-118.43845299548089,34.13160059863579],[-118.43844307269026,34.13159891739826],[-118.43843315079796,34.13159723616074],[-118.43842322800731,34.1315955541796],[-118.43841330162343,34.13159318587272],[-118.43840502993629,34.13159115515182],[-118.43839510445072,34.13158878684488],[-118.43838517896515,34.13158641853781],[-118.43837525078462,34.13158370669606],[-118.43836532350242,34.13158099485419],[-118.43835704642539,34.13157793352894],[-118.43834711734655,34.13157487815218],[-118.4383371873694,34.13157182277536],[-118.43766528932105,34.13133834657069],[-118.43753652707593,34.13120454933283],[-118.43745359976593,34.13109242018918],[-118.43736730834728,34.13102413046897],[-118.43724951506771,34.1309595623804],[-118.43709229513694,34.13093076433161],[-118.43692448581837,34.13091857474172],[-118.4367636613735,34.13090766884138],[-118.43663162927199,34.13087891418953],[-118.43652386755713,34.13082428654862],[-118.43643774299291,34.13074240322425],[-118.43635319772075,34.1306292328025],[-118.436297962289,34.13051935313663],[-118.43626349473099,34.13040895665523],[-118.43626631859314,34.13030035600431],[-118.43629184719973,34.13018318356351],[-118.43634177758875,34.13001441668716],[-118.43638538999753,34.12985215151024],[-118.43639356184211,34.12973751879351],[-118.43636383479335,34.12962839143214],[-118.43631265152847,34.12950811403636],[-118.43623286776653,34.12940184004132],[-118.43613861613017,34.12930237348253],[-118.43602796834615,34.12921465660153],[-118.4359665595521,34.12911768722611],[-118.43592231876931,34.12899921292475],[-118.43591736928214,34.12888125892914],[-118.43592096964859,34.12872616361091],[-118.43592780507585,34.12854318280726],[-118.43590186892263,34.12839189029836],[-118.43589666650735,34.12825496545061],[-118.43593021137585,34.12810710229472],[-118.4359986730849,34.12796673454825],[-118.43613168086333,34.12783502215825],[-118.43627782675377,34.1277413537134],[-118.43638822395152,34.12764725333707],[-118.43647397997125,34.1275687888809],[-118.43654804289604,34.1274734526911],[-118.43663432669638,34.12729715303105],[-118.43668103599586,34.12714554553974],[-118.43669486615093,34.12706321258986],[-118.43665824860338,34.12697354563389],[-118.4365904862522,34.12687759864961],[-118.43650215994107,34.12680036212434],[-118.43641790918549,34.12672499845218],[-118.43633799774379,34.12662776580639],[-118.43627936460248,34.12651156687619],[-118.43621552054252,34.12637587337377],[-118.43613373430119,34.12620846194988],[-118.43604356758183,34.12604761750163],[-118.43590789605744,34.12585733393887],[-118.43573487284027,34.12565143070494],[-118.43558805383117,34.12546546244327],[-118.43544621498458,34.12532275243432],[-118.43534800220907,34.12521785422411],[-118.43523647463917,34.12510143365372],[-118.43511743964379,34.12502279490455],[-118.43501822391882,34.12494679268222],[-118.43488199107128,34.12484662214348],[-118.43475180310001,34.12469369538398],[-118.43468339509261,34.12458611284845],[-118.43463788644414,34.12448165545723],[-118.43461878773088,34.12437901919186],[-118.4346211480931,34.12427387888653],[-118.43464881415886,34.12417797757661],[-118.43469191898596,34.12408321660853],[-118.43473931464578,34.1239859414389],[-118.43478247123204,34.12389233590072],[-118.43481188335164,34.12379787748275],[-118.43480984227132,34.12367881588543],[-118.43479148119025,34.12357102774657],[-118.43476015963346,34.1234834335026],[-118.43466182804173,34.12338660614457],[-118.43455556201893,34.12333201964594],[-118.43445332406496,34.12326159027183],[-118.4343580848419,34.1231661581493],[-118.43428223642971,34.12306761858684],[-118.43423240927299,34.12295856654271],[-118.43423893190317,34.12291616049252],[-118.43425935481659,34.12286417636928],[-118.43431752697347,34.12280365773256],[-118.43440859591037,34.12274774225734],[-118.43446938800072,34.1227407607836],[-118.4345606696387,34.1227493074035],[-118.43465721325543,34.12278151147144],[-118.43477956532047,34.12285769098271],[-118.43490295398905,34.12294411673013],[-118.43505224802858,34.12305083449019],[-118.4351667722636,34.12313868529113],[-118.43526701330202,34.12322091357267],[-118.43536944019559,34.12331987654761],[-118.4354489556364,34.12341659643609],[-118.43549011161079,34.12352712354591],[-118.4354980073347,34.12362296309558],[-118.43550076780244,34.12370931067994],[-118.43548919392879,34.12380831063365],[-118.43549885754389,34.12397891175513],[-118.43551847819883,34.12413414269977],[-118.43554813044533,34.12423542563641],[-118.43562583139177,34.12430470377365],[-118.43575988353855,34.12436520327193],[-118.43587668383771,34.1244298965258],[-118.43598034421133,34.12450650553116],[-118.43607310841989,34.12459342948635],[-118.43623747754603,34.12475297168427],[-118.4363506941757,34.12486501841955],[-118.4364586671843,34.12493918533077],[-118.43656134033509,34.12500850096242],[-118.43673645091141,34.12509194203997],[-118.43696042478366,34.12519567097274],[-118.43710029692043,34.12526475112813],[-118.43717867911259,34.12532356187916],[-118.43727065293376,34.12541625887676],[-118.43735996660722,34.12550609003058],[-118.43742438190941,34.12559874262335],[-118.43753932908048,34.12573687086694],[-118.43761955047869,34.12586699211469],[-118.43767921022896,34.12596472103778],[-118.4377107109778,34.12605276091364],[-118.43777863339903,34.12626004315264],[-118.43787817726734,34.12647970644526],[-118.43793764038877,34.12654786364359],[-118.4379974450826,34.12660007258623],[-118.43807433143418,34.12665302182948],[-118.43816169595222,34.12668955293373],[-118.43822898120872,34.1267116738931],[-118.43830851015849,34.12672355696961],[-118.43838698740907,34.12670973545698],[-118.43846362165529,34.12667343422947],[-118.43851232435213,34.12658921498502],[-118.43853993971277,34.12649349045088],[-118.43852808958631,34.1263961411209],[-118.43849292224458,34.12625717982775],[-118.43840890451706,34.12601089659181],[-118.43823700145589,34.1254860723064],[-118.43788978315189,34.12461568616101],[-118.43781942106504,34.12439188757423],[-118.4377543284691,34.1241522111147],[-118.43770838771736,34.12394280854668],[-118.43767654780278,34.12374641766805],[-118.43762520574062,34.12343112398484],[-118.43758565476668,34.12322178688266],[-118.43753625657807,34.12301639897282],[-118.43747065284572,34.12287663306422],[-118.43732962660781,34.12271125627012],[-118.43714068282914,34.12248425323158],[-118.43697176994563,34.12226370042568],[-118.43690124961877,34.12215768630936],[-118.43685490185599,34.12204328820788],[-118.43682914706916,34.12188474795713],[-118.43681555936207,34.12169522617493],[-118.43679300686493,34.12146807265555],[-118.43677100799999,34.12134394640458],[-118.43673225870963,34.12122338715674],[-118.43665930491656,34.12110226252677],[-118.43655525191465,34.1209339214022],[-118.43643524116324,34.12076847568866],[-118.43634173269841,34.12066291319245],[-118.43624042666818,34.12053123063907],[-118.43612178178043,34.12028939581825],[-118.43601326315353,34.12005609793006],[-118.43593612030024,34.11979630235162],[-118.43586847910959,34.11942189894944],[-118.43581484692633,34.1189502811718],[-118.43576435849012,34.11861342961845],[-118.43572512230686,34.11843161969368],[-118.43564248680853,34.11817734978408],[-118.43557446065023,34.11798228224502],[-118.43549693142697,34.11779671668295],[-118.43543952474653,34.11764237408334],[-118.43537924003874,34.11748838580206],[-118.43532857322256,34.11730373560762],[-118.43526854997519,34.11701278937829],[-118.43521938405242,34.11689348295479],[-118.43513853813175,34.11678985335616],[-118.43498450009349,34.11665153072536],[-118.43487576145483,34.11654366165435],[-118.43477412917674,34.1164370326086],[-118.43470302062025,34.11631883805164],[-118.43463978372837,34.11616564184268],[-118.43460528331897,34.11601081594059],[-118.43460575132508,34.11587409504281],[-118.43463942697544,34.115670790908],[-118.43469865682619,34.11546241985798],[-118.43476674214945,34.11526941971332],[-118.43479654920367,34.11518192583099],[-118.43481994094029,34.11506085081424],[-118.43482326600012,34.11490986188047],[-118.43480733554709,34.11459436355531],[-118.4347816462784,34.114236207784],[-118.43479365498244,34.11399058263214],[-118.43479505819916,34.11375570523418],[-118.43477833228278,34.11356922428864],[-118.43472297405633,34.11337550319173],[-118.43468314514325,34.11312064711231],[-118.4347009813231,34.11297836980476],[-118.43473203702641,34.11291948690306],[-118.4348368658321,34.11265669208804],[-118.4349548773895,34.11237512390002],[-118.43511195569765,34.11202960722263],[-118.43526695390541,34.11164141107171],[-118.43538349299587,34.11136630119966],[-118.43544809187939,34.11112759525546],[-118.43546610616431,34.11099521486278],[-118.43545239253449,34.11085460320398],[-118.43542497614789,34.11072759865006],[-118.43535590974265,34.11050580871685],[-118.43528276952368,34.11034061316003],[-118.43525324497112,34.1102218815836],[-118.43525683184419,34.11016904425751],[-118.43526994563214,34.11010412890355],[-118.43530386951666,34.10994241444102],[-118.43536836506259,34.1098034234747],[-118.43543158820574,34.10970740846515],[-118.4355127007169,34.10960027213293],[-118.43563420371744,34.10944950273598],[-118.43574454764922,34.10935234205861],[-118.4358476747808,34.10927333072502],[-118.43594068875589,34.10917305519695],[-118.43599999136275,34.10907656918525],[-118.43602818200519,34.10893221308593],[-118.43604421579197,34.10833030402796],[-118.43607652239712,34.10813300477482],[-118.43612570810632,34.10798524405991],[-118.43618378364485,34.1078374833395],[-118.43625127875868,34.10769547381952],[-118.43626603448632,34.10756402220327],[-118.43628915560284,34.107188660442],[-118.43631152247237,34.10688952786593],[-118.43633783779948,34.10672066099854],[-118.43640419685615,34.10648641762018],[-118.43649691749854,34.10622443611297],[-118.43652458905919,34.10616729093272],[-118.43656610282356,34.10609017368901],[-118.43666899481318,34.10596258598315],[-118.43674321963044,34.10583171853064],[-118.43678004744338,34.10570069315833],[-118.43682131736659,34.10550778510132],[-118.436909273936,34.10508738338581],[-118.4370061104284,34.10475658321806],[-118.43707487882007,34.10454650678599],[-118.43722604957394,34.10408852809611],[-118.43726236913619,34.10384717101705],[-118.43727485173345,34.10360255498259],[-118.43726557454347,34.10336831128004],[-118.43720923610228,34.10311684166272],[-118.43711091877354,34.10289967303117],[-118.43698326748365,34.10267577391065],[-118.43682903163916,34.10245511448722],[-118.43665269179903,34.10222783809797],[-118.43639998879435,34.10182086892001],[-118.43598099220122,34.10121557998604],[-118.43562121389932,34.10068078444819],[-118.4354771566657,34.10045960188376],[-118.43535682061314,34.10032558418335],[-118.43525710516953,34.10022539260335],[-118.43510934673783,34.10013488129943],[-118.43494622122749,34.10003649891299],[-118.43479589613422,34.09995612825756],[-118.43462385746029,34.0998809566135],[-118.43439646287503,34.09982874480738],[-118.43415614297324,34.09977075511339],[-118.43400200118317,34.09972249981901],[-118.43385878095175,34.09966792953319],[-118.43369234632172,34.09964381130066],[-118.43355894157295,34.09965974210772],[-118.43341772918217,34.09968515683921],[-118.43316348540044,34.09973738694524],[-118.43299139706752,34.09975430396293],[-118.43285211098404,34.09975615946038],[-118.43271735279096,34.09974267001337],[-118.4325564299717,34.09970927506071],[-118.43243524471599,34.09967315223646],[-118.43232031715428,34.09961913845316],[-118.43221636895225,34.0995329337102],[-118.43206128694725,34.09939573764512],[-118.43171059026942,34.09908305535411],[-118.43153511482527,34.09894607337919],[-118.43133506153256,34.09883461650059],[-118.43113776962794,34.09871222505595],[-118.43101198451551,34.09859798806326],[-118.43090702405387,34.09846501726857],[-118.43083312896637,34.09830094484914],[-118.43069635131566,34.09791496266364],[-118.43046503843618,34.09717231930247],[-118.43019305822503,34.09641879705814],[-118.4298022425605,34.09518463524406],[-118.42964108588603,34.09475772818122],[-118.42954840325795,34.09456253886212],[-118.42943441438267,34.09441977296452],[-118.42931652697371,34.09429356990193],[-118.42918742163033,34.09412458329778],[-118.42908234460928,34.09392150493881],[-118.42901781117548,34.09374789777748],[-118.42900468112079,34.09360160416855],[-118.429039513254,34.0934271949763],[-118.42911539399553,34.0931592026679],[-118.42918992541765,34.09293241346948],[-118.42924854169954,34.09269747405552],[-118.42924805542724,34.09251733849899],[-118.42922357650502,34.09241147674134],[-118.42916824620036,34.09230145321259],[-118.42908905182462,34.09220745931272],[-118.42896976992355,34.09211774768515],[-118.42875941396862,34.09197896801539],[-118.42784216907569,34.09137085178683],[-118.4275951062709,34.09119262248628],[-118.42752385183071,34.09112606264439],[-118.42745520856086,34.09105383766919],[-118.42736934941227,34.09091412989753],[-118.42726424017174,34.0906486434702],[-118.42714213181031,34.09037373826761],[-118.4270727225519,34.09019327802749],[-118.42704727832863,34.09012750689684],[-118.42704595623779,34.0898686712323],[-118.42704372931422,34.08975601581059],[-118.42704337178473,34.08968594617399],[-118.42704028786835,34.08940532854928],[-118.4270396617426,34.08928270651123],[-118.42703663352178,34.08901308098574],[-118.42703607566798,34.08890385332231],[-118.42703336455247,34.08869639774532],[-118.42703006683703,34.08837387545517],[-118.42702671612103,34.08804104951852],[-118.42702394751335,34.08782225898973],[-118.42702021052173,34.08741386664273],[-118.42701484937615,34.08701063252546],[-118.42701376331296,34.08679801879279],[-118.42701143667637,34.08666578452313],[-118.42700446395314,34.08594689265832],[-118.42700173576964,34.08573600155478],[-118.42699488881051,34.08504184097831],[-118.42699435431291,34.08493707883742],[-118.42698533702412,34.08414125403217],[-118.42698130269017,34.08367447024039],[-118.42697909552952,34.0835655920674],[-118.42697480697235,34.0830490041826],[-118.42609308357153,34.08305933101606],[-118.42582394292252,34.08306234052889],[-118.42508587001709,34.08307112280009],[-118.42434449670131,34.08307991176653],[-118.42432633276627,34.08307997575118],[-118.42426029042321,34.08308158132033],[-118.42424872820719,34.08308093477741],[-118.4232150969969,34.0830931476669],[-118.42279074633139,34.08309806853455],[-118.42279155032357,34.08260378923636],[-118.42279293732236,34.0822249188102],[-118.42279235431573,34.08210951002912],[-118.42279589727124,34.08117727680594],[-118.42279764449445,34.08086950002696],[-118.42279906742586,34.08017119472341],[-118.4228002100829,34.08007054999532],[-118.4227995453296,34.07993899642867],[-118.42293988822811,34.07993713113152],[-118.42300593057118,34.07993586924722],[-118.42300858676049,34.07993819794716],[-118.42301053803027,34.07994005370318]]],"type":"Polygon"} +},{ + "id": 1108711405, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000009, + "geom:area_square_m":84654.442612, + "geom:bbox":"-71.0619764294,42.2969076207,-71.0588136146,42.302591489", + "geom:latitude":42.299743, + "geom:longitude":-71.060309, + "iso:country":"US", + "lbl:latitude":42.300258, + "lbl:longitude":-71.058431, + "lbl:max_zoom":18.0, + "mps:latitude":42.299761, + "mps:longitude":-71.060285, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "Fields Corner" + ], + "reversegeo:latitude":42.299761, + "reversegeo:longitude":-71.060285, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85814925, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q17053428" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"dfef2ca0d207eaa5a8a3c0af2306a982", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711405, + "neighbourhood_id":85814925, + "region_id":85688645 + } + ], + "wof:id":1108711405, + "wof:lastmodified":1566624150, + "wof:name":"Fields Corner", + "wof:parent_id":85814925, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 420524065, + 420524065 + ], + "wof:tags":[] +}, + "bbox": [ + -71.0619764293503, + 42.29690762073938, + -71.0588136145654, + 42.302591488963 +], + "geometry": {"coordinates":[[[[-71.06003685223246,42.29735415264913],[-71.0619764293503,42.29690762073938],[-71.06063846388449,42.3015415678865],[-71.06089717613621,42.30203998116124],[-71.05955370506669,42.30244817492346],[-71.05908202155804,42.302591488963],[-71.05881361456539,42.30204722589985],[-71.06003685223246,42.29735415264913]]]],"type":"MultiPolygon"} +},{ + "id": 1108732587, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000024, + "geom:area_square_m":255650.799074, + "geom:bbox":"-90.0807492938,29.9936896906,-90.0744918655,29.9990788728", + "geom:latitude":29.996565, + "geom:longitude":-90.077093, + "iso:country":"US", + "lbl:latitude":29.996701, + "lbl:longitude":-90.077034, + "lbl:max_zoom":18.0, + "mps:latitude":29.996701, + "mps:longitude":-90.077034, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:eng_x_preferred":[ + "St. Bernard Projects" + ], + "name:eng_x_variant":[ + "St. Bernard Projects", + "St. Bernard Area", + "Saint Bernard Projects" + ], + "reversegeo:latitude":29.996701, + "reversegeo:longitude":-90.077034, + "src:geom":"mz", + "src:geom_alt":[], + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 420521743, + 102191575, + 1108739491, + 85633793, + 85948111, + 102086693, + 85688735 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7587301" + }, + "wof:country":"US", + "wof:geomhash":"a1754ea50cdd2a811beff0575aa2d3f4", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086693, + "locality_id":85948111, + "macrohood_id":1108739491, + "microhood_id":1108732587, + "neighbourhood_id":420521743, + "region_id":85688735 + } + ], + "wof:id":1108732587, + "wof:lastmodified":1566623876, + "wof:name":"Columbia Parc", + "wof:parent_id":420521743, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866079 + ], + "wof:tags":[] +}, + "bbox": [ + -90.08074929382879, + 29.99368969058911, + -90.07449186547838, + 29.99907887276248 +], + "geometry": {"coordinates":[[[-90.08074929382879,29.99870254272638],[-90.07788130583485,29.99368969058911],[-90.07449186547838,29.99390044623243],[-90.07496117260465,29.99907887276248],[-90.08074929382879,29.99870254272638]]],"type":"Polygon"} +},{ + "id": 1108711407, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000034, + "geom:area_square_m":308114.799939, + "geom:bbox":"-71.057976199,42.3523699598,-71.0511696275,42.3596863295", + "geom:latitude":42.356313, + "geom:longitude":-71.054627, + "iso:country":"US", + "lbl:latitude":42.35566, + "lbl:longitude":-71.055593, + "lbl:max_zoom":18.0, + "mps:latitude":42.356382, + "mps:longitude":-71.054627, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":19.0, + "mz:min_zoom":15.0, + "mz:tier_metro":1, + "name:deu_x_preferred":[ + "Financial District" + ], + "name:eng_x_preferred":[ + "Financial District" + ], + "name:eng_x_variant":[ + "Financialdistrict" + ], + "name:jpn_x_preferred":[ + "\u30d5\u30a3\u30ca\u30f3\u30b7\u30e3\u30eb\u30fb\u30c7\u30a3\u30b9\u30c8\u30ea\u30af\u30c8" + ], + "reversegeo:latitude":42.356382, + "reversegeo:longitude":-71.054627, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85815133, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1381137" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"89f6ed9d37c0758b42e1504b0bc41de0", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711407, + "neighbourhood_id":85815133, + "region_id":85688645 + } + ], + "wof:id":1108711407, + "wof:lastmodified":1566624150, + "wof:name":"Financial District", + "wof:parent_id":85815133, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85866973 + ], + "wof:tags":[] +}, + "bbox": [ + -71.05797619898007, + 42.35236995975576, + -71.05116962750601, + 42.35968632948072 +], + "geometry": {"coordinates":[[[[-71.05149464032112,42.35516265343326],[-71.05170957847153,42.35498684868539],[-71.05191024902953,42.35485902582769],[-71.05284142828957,42.35433850111108],[-71.05345257703159,42.35403397216769],[-71.05532865766222,42.35319668176581],[-71.05592622887822,42.35295621621838],[-71.05790492479626,42.35236995975576],[-71.05766578244665,42.35352156672087],[-71.05797619898007,42.35367780659343],[-71.05747175333379,42.35447122875915],[-71.05743148320465,42.35455249129514],[-71.05741428704097,42.35463111663545],[-71.05741886467452,42.35469677653679],[-71.05746595103776,42.35501269874781],[-71.05746277508361,42.35506228552814],[-71.05745119275205,42.35510759380924],[-71.05730930038288,42.35534021113431],[-71.05728630126349,42.35538189703821],[-71.05727124757833,42.35542120078932],[-71.0572653404996,42.35548396073936],[-71.05726574713803,42.35761579581571],[-71.05751519697149,42.35762032424034],[-71.05752346285854,42.35762083914363],[-71.05743063039564,42.35820173584408],[-71.05739428620331,42.35848093461922],[-71.05737955852547,42.35855245983043],[-71.0573567705914,42.35862202717229],[-71.05730588808048,42.35868930431376],[-71.05723771292604,42.35874844325001],[-71.05715784298671,42.35879403034927],[-71.0570602254071,42.35883724800126],[-71.05694726573262,42.35886470741396],[-71.05206069150277,42.35968632948072],[-71.0512865012987,42.35711697039006],[-71.05119051774929,42.35669284192099],[-71.05116962750601,42.35647468184038],[-71.05117472234897,42.35625780231173],[-71.05126292842058,42.35560931429963],[-71.05134826733394,42.35538170931729],[-71.05140862582913,42.35527374003266],[-71.05149464032112,42.35516265343326]]]],"type":"MultiPolygon"} +},{ + "id": 1108815091, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00002, + "geom:area_square_m":190917.833493, + "geom:bbox":"-122.284682583,37.7955421293,-122.277690874,37.8012272471", + "geom:latitude":37.798388, + "geom:longitude":-122.281181, + "iso:country":"US", + "lbl:latitude":37.797901, + "lbl:longitude":-122.280257, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "src:geom":"mz", + "wof:belongsto":[ + 85872423, + 102191575, + 1108794093, + 85633793, + 85921881, + 102086959, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"e2697f5bfd1442aad924c2bf409aafec", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086959, + "locality_id":85921881, + "macrohood_id":1108794093, + "microhood_id":1108815091, + "neighbourhood_id":85872423, + "region_id":85688637 + } + ], + "wof:id":1108815091, + "wof:lastmodified":1566623927, + "wof:name":"Ironworks District", + "wof:parent_id":85872423, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 1108785889 + ], + "wof:tags":[] +}, + "bbox": [ + -122.284682582903, + 37.79554212928525, + -122.27769087401379, + 37.80122724714742 +], + "geometry": {"coordinates":[[[-122.28397081498494,37.80122724714742],[-122.27769087401379,37.79872524848933],[-122.27969829461784,37.79554212928525],[-122.280130526006,37.7957430800749],[-122.280674533076,37.7957180837926],[-122.28148054331901,37.7959560816072],[-122.281330541133,37.7962400728311],[-122.282268553047,37.7965830684222],[-122.28316156512101,37.7959560909266],[-122.28279255988799,37.7965520721875],[-122.28189154703399,37.7979530279956],[-122.281889547006,37.7979560279006],[-122.283080562244,37.7984510205775],[-122.284081575054,37.7989510120458],[-122.284682582903,37.7990510125283],[-122.284481579871,37.799650994599],[-122.284182575326,37.8005509677297],[-122.28415357488601,37.8006349652166],[-122.283981572255,37.801151949787],[-122.28397081498494,37.80122724714742]]],"type":"Polygon"} +},{ + "id": 1108815095, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000016, + "geom:area_square_m":160169.434909, + "geom:bbox":"-122.27769562,37.8015653804,-122.27120354,37.8062019628", + "geom:latitude":37.803883, + "geom:longitude":-122.274456, + "iso:country":"US", + "lbl:latitude":37.80388, + "lbl:longitude":-122.274455, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "src:geom":"mz", + "wof:belongsto":[ + 85872277, + 102191575, + 1108794093, + 85633793, + 85921881, + 102086959, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:parent_id", + "wof:belongsto", + "wof:hierarchy" + ], + "wof:country":"US", + "wof:geomhash":"fb6db943229b0605c96f650fe05a6cde", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086959, + "locality_id":85921881, + "macrohood_id":1108794093, + "microhood_id":1108815095, + "neighbourhood_id":85872277, + "region_id":85688637 + } + ], + "wof:id":1108815095, + "wof:lastmodified":1566623928, + "wof:name":"City Center", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 1108785885 + ], + "wof:tags":[] +}, + "bbox": [ + -122.27769562034494, + 37.80156538039969, + -122.27120353968733, + 37.80620196279775 +], + "geometry": {"coordinates":[[[-122.27598272609977,37.80620196279775],[-122.27120353968733,37.80432230231403],[-122.27294815419627,37.80156538039969],[-122.27769562034494,37.80343675679683],[-122.27598272609977,37.80620196279775]]],"type":"Polygon"} +},{ + "id": 1108711409, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.00019, + "geom:area_square_m":1738858.03574, + "geom:bbox":"-71.1195637041,42.2863526866,-71.0964590378,42.3020258975", + "geom:latitude":42.294475, + "geom:longitude":-71.109083, + "iso:country":"US", + "lbl:latitude":42.295954, + "lbl:longitude":-71.108063, + "lbl:max_zoom":18.0, + "mps:latitude":42.29506, + "mps:longitude":-71.108118, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_hard_boundary":0, + "mz:is_landuse_aoi":0, + "mz:is_official":0, + "mz:max_zoom":18.0, + "mz:min_zoom":13.0, + "mz:tier_metro":1, + "name:ces_x_preferred":[ + "Forest Hills" + ], + "name:deu_x_preferred":[ + "Forest Hills" + ], + "name:eng_x_preferred":[ + "Forest Hills" + ], + "name:fra_x_preferred":[ + "Forest Hills" + ], + "name:nld_x_preferred":[ + "Forest Hills" + ], + "name:und_x_variant":[ + "Forest Hill" + ], + "reversegeo:latitude":42.29506, + "reversegeo:longitude":-71.108118, + "src:geom":"mz", + "src:lbl_centroid":"mz", + "wof:belongsto":[ + 85827307, + 102191575, + 404476573, + 85633793, + 85950361, + 102084423, + 85688645 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1245759" + }, + "wof:controlled":[], + "wof:country":"US", + "wof:geomhash":"0eb6a3a7ad375c2208f28ab31c8bdceb", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102084423, + "localadmin_id":404476573, + "locality_id":85950361, + "microhood_id":1108711409, + "neighbourhood_id":85827307, + "region_id":85688645 + } + ], + "wof:id":1108711409, + "wof:lastmodified":1566624150, + "wof:name":"Forest Hills", + "wof:parent_id":85827307, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85885311 + ], + "wof:tags":[] +}, + "bbox": [ + -71.11956370408625, + 42.28635268659605, + -71.0964590377647, + 42.30202589750591 +], + "geometry": {"coordinates":[[[[-71.11925841685623,42.29017623098452],[-71.1168955746183,42.28872524692894],[-71.11659998488074,42.28854632171865],[-71.11653511374726,42.288515341084],[-71.11646624391204,42.28850083852296],[-71.116382,42.288498],[-71.11540100000001,42.288553],[-71.114897,42.288603],[-71.11421199999999,42.288688],[-71.113812,42.288727],[-71.11354300000001,42.288748],[-71.113246,42.288773],[-71.113169,42.288792],[-71.113113,42.288849],[-71.11351000000001,42.289066],[-71.113744,42.289222],[-71.113769,42.289238],[-71.11384,42.289308],[-71.113983,42.28948],[-71.11414000000001,42.289803],[-71.11419600000001,42.290039],[-71.114402,42.290649],[-71.11444299999999,42.290818],[-71.114484,42.291188],[-71.114476,42.291346],[-71.11443199999999,42.291572],[-71.114329,42.291834],[-71.11422,42.292022],[-71.1139,42.292482],[-71.113632,42.292824],[-71.113501,42.293],[-71.1134,42.293118],[-71.113758,42.293538],[-71.113969,42.293714],[-71.114,42.29374],[-71.114234,42.293896],[-71.115092,42.294401],[-71.115368,42.294572],[-71.11563700000001,42.294868],[-71.11576100000001,42.295054],[-71.11582900000001,42.29522],[-71.11585599999999,42.295411],[-71.115916,42.295695],[-71.115956,42.295838],[-71.11602600000001,42.295933],[-71.11621599999999,42.296068],[-71.11734101759714,42.2966907110221],[-71.11622292352908,42.29787690999971],[-71.11577592048154,42.29839966717098],[-71.11541587084606,42.29894678779227],[-71.11508404035902,42.29956831713941],[-71.114859146562,42.3001722242313],[-71.11476560503439,42.30048153222157],[-71.11471855404048,42.30075628126699],[-71.11460905705937,42.30202589750591],[-71.11193653020183,42.30185762110305],[-71.10890598826283,42.30174335373668],[-71.10852426814232,42.30169959147688],[-71.10808098755084,42.30159841378413],[-71.10780360911563,42.30151202276382],[-71.10752916570429,42.30140726721655],[-71.10681714884031,42.30105438722767],[-71.10684105115622,42.30101712910854],[-71.10684422725849,42.30098199679674],[-71.10683214917483,42.3009433335321],[-71.10678834854484,42.30092362014304],[-71.10672254457731,42.30091035229372],[-71.10672034329494,42.30091017280205],[-71.10670816958302,42.30090917861646],[-71.10663913226429,42.30090354499281],[-71.10653815088727,42.30089667836948],[-71.10645917049888,42.30088336524688],[-71.10638029270467,42.30085374890209],[-71.10631025851056,42.3008143810531],[-71.10626228860075,42.30075878525321],[-71.1062587613923,42.30075125476682],[-71.10625844661111,42.30075058296513],[-71.10623628035074,42.3007032655982],[-71.10617700001418,42.3005900001393],[-71.10612400024101,42.30050100033739],[-71.10606400019249,42.30044500038892],[-71.10591399985792,42.30040400044557],[-71.10578200003397,42.3003750000365],[-71.10534900053646,42.30031299997191],[-71.10495997643355,42.30026852165306],[-71.10466099945542,42.30027099999757],[-71.10426999955581,42.3002290000688],[-71.10409100006773,42.30018199999417],[-71.10392999940392,42.3001349995645],[-71.10376199965637,42.30007800035257],[-71.10348499950528,42.29993200019401],[-71.10329099980598,42.29980599982666],[-71.10295200043319,42.29949400040339],[-71.10186399990427,42.29850999982065],[-71.10022100054013,42.29696199957327],[-71.09916399957527,42.295940999801],[-71.09885199952701,42.29564000003074],[-71.09740199978197,42.29421899981693],[-71.0968959996904,42.29373500001385],[-71.09661899981006,42.29346099976051],[-71.0964590377647,42.29322448707924],[-71.09657366728307,42.29321480088936],[-71.09671560323474,42.29320274541826],[-71.09882574046836,42.29302349638294],[-71.09913440630945,42.29299727308813],[-71.09952294901267,42.29296426187227],[-71.09956615831069,42.29296235439908],[-71.09960913287561,42.29296113212092],[-71.09965233904455,42.2929599106338],[-71.0996955365389,42.29296006115896],[-71.09973873282081,42.29296021166369],[-71.0997480179367,42.29296039256252],[-71.09976799706777,42.29296078087338],[-71.09978169437436,42.29296104736387],[-71.09981451152876,42.29296220423105],[-71.09982488319966,42.292962569869],[-71.09986807081447,42.29296409235363],[-71.09991101936996,42.29296698604828],[-71.09995396792931,42.29296987972689],[-71.09998531225905,42.29297249260523],[-71.09999691337204,42.29297345940792],[-71.10003962166854,42.29297772427671],[-71.10008233118337,42.29298198913381],[-71.10012503082771,42.29298762599937],[-71.10016726969317,42.29299326124542],[-71.10020973462858,42.29299958329196],[-71.10032624406237,42.29301696565179],[-71.10035097647484,42.29302065559559],[-71.10116223383936,42.2931357306636],[-71.10127809614599,42.2931521644933],[-71.10139304784607,42.29316628397399],[-71.10141820156466,42.29317048742053],[-71.10144406063347,42.29317263522061],[-71.10144711727385,42.29317288980612],[-71.10146991970412,42.2931747830149],[-71.10149578740473,42.29317555967498],[-71.10151942245331,42.29317502044809],[-71.10152189535727,42.29317496330339],[-71.10153321874658,42.2931744029774],[-71.1015477760135,42.29317368100853],[-71.10156948764892,42.29317201512608],[-71.10157342937839,42.29317171189028],[-71.10157598647216,42.29317137954431],[-71.101585815579,42.29317010009231],[-71.10159909258594,42.29316837074187],[-71.10162453281548,42.29316365675599],[-71.10164951104093,42.29315894116252],[-71.10167404020756,42.29315216591883],[-71.1016981073687,42.29314538906809],[-71.1017217211536,42.29313723858208],[-71.10174464564025,42.2931283996724],[-71.10176711796116,42.29311818713222],[-71.10177130878601,42.29311606704554],[-71.10178866937613,42.29310728536632],[-71.10180953391642,42.29309569518644],[-71.10182947755024,42.29308341578177],[-71.10184850149017,42.293070447157],[-71.10185266233294,42.29306730872312],[-71.10186660573613,42.29305678931257],[-71.10188352275274,42.29304179130458],[-71.10188356299484,42.29304175543201],[-71.10188359838091,42.29304172044292],[-71.10188383754972,42.29304148269198],[-71.10190271490171,42.2930227012075],[-71.10206611279111,42.29286012466377],[-71.10207582231291,42.29285046385434],[-71.10210137674763,42.29282503873549],[-71.10215631399126,42.29277126135534],[-71.10240725907632,42.29252561599297],[-71.10264112798473,42.29228974410302],[-71.10266225370093,42.29226776879861],[-71.10267530775189,42.29225418879107],[-71.10269948327405,42.29223026137123],[-71.10272411525511,42.29220702155409],[-71.10274920921134,42.29218378332909],[-71.10277499122942,42.29216123350695],[-71.10280123213178,42.29213937129499],[-71.1028279380987,42.29211682465539],[-71.10292830207113,42.2920326594283],[-71.10299165904215,42.29197952745191],[-71.10307316572171,42.29191117734008],[-71.10315024782878,42.29184624923546],[-71.10333583814305,42.29168992269301],[-71.10392403575638,42.29119446731769],[-71.10402057882423,42.29110925981342],[-71.10404004762862,42.2910920762472],[-71.1040448212448,42.29108786308532],[-71.10405242204499,42.29108160698075],[-71.10438700818975,42.29080620155272],[-71.10438949951291,42.29080415114319],[-71.10465734158451,42.29058368191689],[-71.10499746470596,42.29029687253406],[-71.10514430176606,42.29017305202029],[-71.10517156888488,42.29014989185563],[-71.10533319266366,42.29001261919954],[-71.10549263615098,42.28987719704933],[-71.10572535579242,42.28971129080254],[-71.10572579010739,42.28971106091569],[-71.10587516287609,42.28963214979471],[-71.1058779293286,42.28963068819336],[-71.10589824461751,42.28961995607298],[-71.10594739320773,42.28959131052643],[-71.10596616168824,42.28958401584057],[-71.10599462983127,42.289572949746],[-71.10603676337435,42.28955800159395],[-71.10605634801099,42.28955166131081],[-71.10607240913782,42.28954646132776],[-71.1060955060405,42.28953903201319],[-71.10610828405646,42.28953492183625],[-71.10614461788205,42.28952406993653],[-71.10621635180479,42.2895037349612],[-71.10621963857471,42.28950283512265],[-71.10628808141657,42.28948408595601],[-71.10645212549679,42.28943882631345],[-71.10646000362814,42.28943665296536],[-71.10662777087445,42.28938851946067],[-71.10662942248959,42.28938811007725],[-71.10672609408982,42.2893641590351],[-71.10673177083889,42.28936246969675],[-71.10681727308473,42.28933702995538],[-71.10686877045494,42.28932096746333],[-71.10687166192825,42.28932006535312],[-71.1069041811957,42.28930797935093],[-71.10690539533661,42.28930752795304],[-71.10690824291201,42.28930646993955],[-71.10693437484908,42.28929627251187],[-71.10694135543689,42.2892935486766],[-71.10697072190433,42.28928050835237],[-71.10697355130623,42.28927925220879],[-71.10697571025986,42.28927817653254],[-71.10699775709277,42.28926719715729],[-71.10700228297702,42.28926494388103],[-71.10700451049586,42.28926376130291],[-71.10702700585655,42.28925182193463],[-71.1070331068849,42.28924858461414],[-71.10705372266138,42.28923744638133],[-71.10705582012537,42.2892363137743],[-71.1070574721292,42.28923525436849],[-71.10707924273331,42.28922130123769],[-71.10709139409454,42.28921341924644],[-71.1073026319626,42.28907640802855],[-71.10733807051415,42.2890534220308],[-71.10734794062903,42.28904638389993],[-71.10736154370055,42.28903668373172],[-71.10779096327363,42.28873047713678],[-71.10779171179141,42.28873002413987],[-71.10795199693348,42.28863296508806],[-71.10795382380384,42.28863185855018],[-71.10797459606067,42.28861928020371],[-71.10797550351765,42.28861861527682],[-71.10815280223375,42.28848885653548],[-71.10815333990116,42.28848857747546],[-71.10944652390404,42.28781710427324],[-71.10949822894815,42.28779025569814],[-71.10965664195575,42.28769061394041],[-71.10967188787632,42.28768102441578],[-71.1097745801499,42.28761643005234],[-71.10981173749742,42.28759305839835],[-71.10981232221754,42.28759261833639],[-71.10981848613628,42.28758798021239],[-71.10996420049935,42.28747832315753],[-71.11004376014746,42.28740008156361],[-71.11004678916252,42.2873971028448],[-71.11006214771628,42.28738199930359],[-71.11007737940446,42.28736701867099],[-71.11022580557461,42.28722104962144],[-71.11028885089655,42.28715904817965],[-71.11047006586456,42.28698884138655],[-71.11055858242781,42.28690544586786],[-71.11056026558246,42.28690501942923],[-71.11120421494272,42.28674189003156],[-71.11183567346784,42.28658192079732],[-71.11222901143897,42.28651841131812],[-71.11252020147485,42.2865120375386],[-71.11313438578057,42.28649859361094],[-71.11357567131928,42.28648893137485],[-71.11376413341748,42.28648594507961],[-71.11400465302597,42.28648213317511],[-71.1140819482159,42.28648118467085],[-71.11413569616307,42.28648052524401],[-71.11441231405921,42.28647713173608],[-71.11460720249876,42.28646933190993],[-71.11461359876886,42.28646907517574],[-71.11461821282185,42.2864689925224],[-71.11463006749278,42.28646877840741],[-71.11486097158918,42.2864646146459],[-71.11486102130604,42.28646461391229],[-71.11486978497928,42.28646445603152],[-71.11507709840177,42.28646054225215],[-71.11538300875739,42.28645476782889],[-71.1154253576215,42.28645396879814],[-71.11550113141891,42.28645216346088],[-71.1156159693642,42.28644976765384],[-71.1158646523153,42.28644457650163],[-71.11621651713568,42.28643723214537],[-71.11654444539204,42.28643038660599],[-71.11667313050643,42.2864276992518],[-71.11720090317569,42.28641667851772],[-71.11756136472694,42.28641106296075],[-71.11789021591424,42.28640593892967],[-71.1182666750512,42.28639468086695],[-71.11827925332146,42.2863943040249],[-71.11832333546205,42.28639298571025],[-71.11867778370264,42.28638238420999],[-71.11867875993664,42.28638235503976],[-71.11867887394139,42.28638235001637],[-71.11867901704542,42.28638234508961],[-71.11888836739558,42.28637532875689],[-71.1194161938425,42.28635763309561],[-71.11956370408625,42.28635268659605],[-71.11944624912424,42.2883198344958],[-71.11925841685623,42.29017623098452]]]],"type":"MultiPolygon"} +},{ + "id": 1108815099, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000019, + "geom:area_square_m":186630.748265, + "geom:bbox":"-122.279698295,37.7912952334,-122.270381987,37.7970271829", + "geom:latitude":37.794315, + "geom:longitude":-122.274818, + "iso:country":"US", + "lbl:latitude":37.794304, + "lbl:longitude":-122.274888, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "name:ceb_x_preferred":[ + "Jack London Square" + ], + "name:eng_x_preferred":[ + "Jack London Square" + ], + "name:fra_x_preferred":[ + "Jack London Square" + ], + "name:nld_x_preferred":[ + "Jack London Square" + ], + "name:pol_x_preferred":[ + "Jack London Square" + ], + "name:ron_x_preferred":[ + "Jack London Square" + ], + "name:urd_x_preferred":[ + "\u062c\u06cc\u06a9 \u0644\u0646\u062f\u0646 \u0627\u0633\u06a9\u0648\u0627\u0626\u0631" + ], + "src:geom":"mz", + "wof:belongsto":[ + 85872423, + 102191575, + 1108794093, + 85633793, + 85921881, + 102086959, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q1833634" + }, + "wof:country":"US", + "wof:geomhash":"884c142ef2badcf6db5093525a8e4029", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086959, + "locality_id":85921881, + "macrohood_id":1108794093, + "microhood_id":1108815099, + "neighbourhood_id":85872423, + "region_id":85688637 + } + ], + "wof:id":1108815099, + "wof:lastmodified":1566623927, + "wof:name":"Jack London Square", + "wof:parent_id":85872423, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 1108794055 + ], + "wof:tags":[] +}, + "bbox": [ + -122.27969829461784, + 37.79129523336785, + -122.27038198739436, + 37.79702718287569 +], + "geometry": {"coordinates":[[[-122.27876175187959,37.79702718287569],[-122.27038198739436,37.79373441228435],[-122.27183046934358,37.79129523336785],[-122.273679446834,37.792450135779],[-122.274280453193,37.7934501113609],[-122.274781460117,37.7930501252945],[-122.275382467431,37.7933501203205],[-122.275682470909,37.7936501136521],[-122.27668348328299,37.7940511080861],[-122.277906498294,37.7947090965717],[-122.27969829461784,37.79554212928525],[-122.27876175187959,37.79702718287569]]],"type":"Polygon"} +},{ + "id": 1108815097, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000054, + "geom:area_square_m":526623.71449, + "geom:bbox":"-122.267371332,37.8115598941,-122.248554189,37.8379159873", + "geom:latitude":37.825268, + "geom:longitude":-122.257937, + "iso:country":"US", + "lbl:latitude":37.825681, + "lbl:longitude":-122.257796, + "lbl:max_zoom":18.0, + "mz:hierarchy_label":1, + "mz:is_current":-1, + "mz:is_funky":0, + "mz:is_landuse_aoi":1, + "mz:max_zoom":18.0, + "mz:min_zoom":16.0, + "src:geom":"mz", + "wof:belongsto":[ + 85872355, + 102191575, + 1108794075, + 85633793, + 85921881, + 102086959, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:controlled":[ + "wof:hierarchy", + "wof:belongsto", + "wof:parent_id" + ], + "wof:country":"US", + "wof:geomhash":"37bfd7b433be837308705e814a4b4859", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102086959, + "locality_id":85921881, + "macrohood_id":1108794075, + "microhood_id":1108815097, + "neighbourhood_id":85872355, + "region_id":85688637 + } + ], + "wof:id":1108815097, + "wof:lastmodified":1566623927, + "wof:name":"Broadway Auto Row", + "wof:parent_id":-3, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 1108785883 + ], + "wof:tags":[] +}, + "bbox": [ + -122.267371332394, + 37.81155989412252, + -122.24855418937238, + 37.83791598725163 +], + "geometry": {"coordinates":[[[-122.24855418937238,37.83791598725163],[-122.25152522697248,37.83345775589148],[-122.25510320464218,37.82835572781309],[-122.25765614006053,37.82423107598905],[-122.26024775631862,37.82012147139694],[-122.26264596837829,37.8162255383026],[-122.2656261355303,37.81155989412252],[-122.26616931610999,37.8116585632641],[-122.26737133239401,37.8119585611777],[-122.26687032431199,37.8125585420233],[-122.26616931228,37.813759505269],[-122.265769305338,37.8144594839094],[-122.265268296735,37.8152604592651],[-122.264767288274,37.8159604374249],[-122.264266279572,37.8167604128461],[-122.263665268984,37.8177613822491],[-122.26276425337301,37.819062341929],[-122.261663233645,37.8208632869295],[-122.261663233222,37.8210632814307],[-122.26126222673,37.821363271208],[-122.26086221893701,37.8222632445116],[-122.260662214912,37.822764229769],[-122.259263189821,37.8247591681947],[-122.259312190503,37.8247791678832],[-122.258411173654,37.8262801223725],[-122.25821016971901,37.8266801104431],[-122.257409154635,37.8279810709683],[-122.256809143429,37.8288810434729],[-122.255907126332,37.8302820008747],[-122.255607120777,37.8306809885516],[-122.25500610909,37.8316819583701],[-122.253604082141,37.8337828944679],[-122.253604081614,37.8339828890085],[-122.25310307202101,37.8346828675963],[-122.252903067853,37.8350838557371],[-122.252202054267,37.8360838252569],[-122.25170104454,37.836784803867],[-122.251501040311,37.837184792059],[-122.25130103607199,37.837584780255],[-122.24979799052799,37.8375847739111],[-122.24855418937238,37.83791598725163]]],"type":"Polygon"} +},{ + "id": 1108826371, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000034, + "geom:area_square_m":353967.483371, + "geom:bbox":"-117.169817827,32.9850182667,-117.165141334,32.9927825998", + "geom:latitude":32.988891, + "geom:longitude":-117.167574, + "iso:country":"US", + "lbl:latitude":32.988921, + "lbl:longitude":-117.167576, + "lbl:max_zoom":18.0, + "mps:latitude":32.988921, + "mps:longitude":-117.167576, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":18.0, + "reversegeo:latitude":32.988921, + "reversegeo:longitude":-117.167576, + "src:geom":"mz", + "wof:belongsto":[ + 85871215, + 102191575, + 85633793, + 85922227, + 102083569, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"fe28504793b2f96f028e51b139c9f272", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102083569, + "locality_id":85922227, + "microhood_id":1108826371, + "neighbourhood_id":85871215, + "region_id":85688637 + } + ], + "wof:id":1108826371, + "wof:lastmodified":1566624123, + "wof:name":"Santa Monica", + "wof:parent_id":85871215, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887361 + ], + "wof:tags":[] +}, + "bbox": [ + -117.16981782682264, + 32.98501826673261, + -117.16514133423621, + 32.99278259979683 +], + "geometry": {"coordinates":[[[[-117.16976942517654,32.99276600088032],[-117.16894979285287,32.99275293133911],[-117.16541842023462,32.99278259979683],[-117.16543610657494,32.99106181276197],[-117.16545968836205,32.98950911980389],[-117.16514133423621,32.98940527630672],[-117.16520618415075,32.98918769905936],[-117.16526513861849,32.98897012127564],[-117.16530051129914,32.98878715772421],[-117.16528282495879,32.9885349640992],[-117.16524745227815,32.98837177960494],[-117.16520028870396,32.98811463978961],[-117.16520618415075,32.98786738926074],[-117.16522976593785,32.98763497313212],[-117.16527692951206,32.98741244647807],[-117.16531819763949,32.98726904011487],[-117.16533588397979,32.98707123785229],[-117.16533588397979,32.98680914917165],[-117.165329988533,32.98513769739333],[-117.16981782682264,32.98501826673261],[-117.16980783471634,32.98605567250117],[-117.16980773810559,32.98621436919664],[-117.16980756942436,32.98646961593724],[-117.16980757063264,32.98646973136548],[-117.16980756993203,32.98646997598771],[-117.16980758994647,32.98647126488808],[-117.16980759735014,32.98647166061791],[-117.16980761837995,32.98647366961922],[-117.16980762249385,32.986474062625],[-117.16980766994159,32.98647921846903],[-117.16980765770144,32.98648023001015],[-117.1698076520611,32.9864806258369],[-117.16980546826846,32.9865791952441],[-117.16980545607736,32.98657958837107],[-117.16980603711676,32.98663416112957],[-117.16980603179283,32.98663458718755],[-117.16980093732609,32.98723616027138],[-117.1698003272714,32.98730873360142],[-117.16978416052797,32.98921791348458],[-117.16978415817721,32.98921831203531],[-117.1697842907146,32.98923097341402],[-117.16978429482852,32.98923136641973],[-117.16977756158005,32.9907681249829],[-117.16977755591056,32.99076851806129],[-117.16977948005044,32.99076850925355],[-117.16978027245393,32.99076849786547],[-117.16978081706705,32.99076849381662],[-117.16977475542343,32.99174661363126],[-117.16977475301503,32.99174700668541],[-117.16976939790827,32.99276272348586],[-117.16976942517654,32.99276600088032]]]],"type":"MultiPolygon"} +},{ + "id": 1108826373, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000027, + "geom:area_square_m":280726.903345, + "geom:bbox":"-117.234846162,32.7079094561,-117.22015739,32.7198445438", + "geom:latitude":32.714125, + "geom:longitude":-117.226529, + "iso:country":"US", + "lbl:latitude":32.717453, + "lbl:longitude":-117.223363, + "lbl:max_zoom":18.0, + "mps:latitude":32.717453, + "mps:longitude":-117.223363, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":15.0, + "name:eng_x_preferred":[ + "Shelter Island" + ], + "reversegeo:latitude":32.717453, + "reversegeo:longitude":-117.223363, + "src:geom":"mz", + "wof:belongsto":[ + 85828937, + 102191575, + 1108802083, + 85633793, + 85922227, + 102083569, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{ + "wd:id":"Q7493960" + }, + "wof:country":"US", + "wof:geomhash":"97470ed61372374dad988a4d891a078a", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102083569, + "locality_id":85922227, + "macrohood_id":1108802083, + "microhood_id":1108826373, + "neighbourhood_id":85828937, + "region_id":85688637 + } + ], + "wof:id":1108826373, + "wof:lastmodified":1566624123, + "wof:name":"Shelter Island", + "wof:parent_id":85828937, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887367 + ], + "wof:tags":[] +}, + "bbox": [ + -117.23484616225464, + 32.70790945608907, + -117.22015738987807, + 32.71984454378045 +], + "geometry": {"coordinates":[[[[-117.22485247882817,32.71851594872804],[-117.22429025669115,32.71919969937057],[-117.22426829998818,32.71918563188423],[-117.22426815593758,32.71918554232064],[-117.22428085028113,32.71915798148623],[-117.22412389611539,32.71907674059415],[-117.22409481856144,32.71909346142337],[-117.22340106509542,32.71868940773658],[-117.2233523596782,32.71869528917917],[-117.22325760897894,32.71864114602077],[-117.22325747155381,32.71864106739783],[-117.22326688474546,32.71861078678108],[-117.22283885913113,32.71839919568593],[-117.22256902715816,32.71841162247832],[-117.22248446915556,32.71840954070197],[-117.22238371647545,32.71841308360546],[-117.22236773798373,32.7184156117931],[-117.22235186503418,32.71841857066561],[-117.2223361072586,32.71842194915307],[-117.22232048747483,32.71842575257259],[-117.22230501862629,32.71842997532519],[-117.22228971693779,32.71843461453449],[-117.22228709303377,32.71843549276035],[-117.22227459854324,32.71843965907929],[-117.22225967641631,32.71844510610877],[-117.22224496681227,32.71845095549488],[-117.22223048264426,32.71845719889039],[-117.22221624329724,32.7184638251484],[-117.22220226177534,32.71847083416645],[-117.2221885477104,32.71847821487466],[-117.22217512051779,32.71848595887446],[-117.22216199314106,32.71849406056693],[-117.22214917524236,32.7185025116303],[-117.22213668298606,32.71851130369174],[-117.22212453253657,32.7185204283784],[-117.22211272377248,32.71852987469711],[-117.22209579634959,32.71854453408974],[-117.22204422966595,32.71860966561729],[-117.22197815688892,32.71864073623286],[-117.22131252324435,32.71937360910531],[-117.22121520891977,32.71947772561855],[-117.22098063348064,32.71972968590946],[-117.22088066638482,32.71980468588419],[-117.22085484234366,32.7198213803325],[-117.22070552985451,32.71984454378045],[-117.2206513188667,32.71984125990922],[-117.22058514769466,32.71983724557421],[-117.22046106377442,32.71978874844757],[-117.22034654528714,32.71972368477132],[-117.22027435517597,32.71966378506667],[-117.22019226057293,32.71959022058815],[-117.22017217913562,32.71953815650701],[-117.22015823691537,32.71945306179032],[-117.22015738987807,32.71937610965397],[-117.22016939597592,32.71928531377356],[-117.22024867664034,32.7191032872457],[-117.22028307715748,32.71897933284077],[-117.22030848072907,32.71892416241977],[-117.2203179011637,32.71889385449379],[-117.22032063789078,32.71884710797823],[-117.22030949287708,32.71872076334569],[-117.22027955115867,32.71836369294093],[-117.22027867374096,32.71828398976882],[-117.22028785207752,32.71823169552185],[-117.22036758541067,32.71809089327942],[-117.22044750004821,32.7179665807284],[-117.22049882081431,32.71790296075307],[-117.2206147162764,32.71777233743855],[-117.2206658170919,32.71771474664625],[-117.22072989696814,32.71763854508814],[-117.22075888645421,32.71760407300133],[-117.22097398096045,32.71735501225491],[-117.22105431797507,32.71726917537634],[-117.22135646128676,32.71695346386909],[-117.22165219132617,32.71664604771871],[-117.22179049954833,32.71651028011095],[-117.22200613401229,32.71631068679102],[-117.22230246596986,32.71605823488449],[-117.22253137499759,32.71588327548757],[-117.2225419335829,32.71587282752596],[-117.22255171255165,32.71586185249652],[-117.22256067331696,32.71585038918321],[-117.22256878385453,32.71583848181514],[-117.22257600888904,32.71582617464713],[-117.22258232295891,32.71581351735367],[-117.22258770373226,32.71580054859036],[-117.22259213237075,32.7157873289736],[-117.22259558660333,32.71577390265551],[-117.22259805728393,32.71576032467891],[-117.22259953514541,32.71574663909342],[-117.22260001110241,32.71573290643828],[-117.22259948892197,32.71571917340893],[-117.2225979659904,32.71570549774501],[-117.22259544601411,32.71569192064511],[-117.22259194591544,32.7156785024435],[-117.22258747599361,32.71566529253228],[-117.22258204979873,32.71565234027808],[-117.22257569063375,32.71563969497053],[-117.22256094315054,32.71561643227891],[-117.22256352696117,32.7155559442691],[-117.22256791670083,32.71554273595407],[-117.22257522359169,32.7155304831111],[-117.22258517308444,32.71551964416052],[-117.22259739893639,32.71551061777804],[-117.22261144646242,32.71550374286912],[-117.222626788517,32.71549927370659],[-117.22264286444441,32.71549737412608],[-117.22265907032639,32.71549811760336],[-117.22267480759388,32.71550147312821],[-117.22268948968083,32.71550731889451],[-117.22270257447256,32.71551543654747],[-117.22271357421032,32.71552552484778],[-117.2227226452322,32.7155381982334],[-117.22287506787029,32.71579810623085],[-117.2228839793631,32.71580957700782],[-117.22289525953543,32.71581944044947],[-117.22290851453997,32.7158273615929],[-117.2229276244563,32.71583316690552],[-117.22293725772685,32.71583609505394],[-117.22295561685544,32.71583455946712],[-117.22297146249252,32.71583152651844],[-117.22298678398784,32.71582695852651],[-117.22300137722748,32.715820920318],[-117.22301504153062,32.71581349318372],[-117.22351499552009,32.71545223908051],[-117.2235331895545,32.71543811919552],[-117.22354408238813,32.71542792412163],[-117.22355405110413,32.71541707119754],[-117.22356303788364,32.71540562409594],[-117.22357099466075,32.71539364641269],[-117.22357787987166,32.71538120169228],[-117.22358365198275,32.71536835622751],[-117.22358827933503,32.71535518722719],[-117.22359173664987,32.71534176085571],[-117.22359400858373,32.71532815969016],[-117.22359507961094,32.7153144498179],[-117.22359494085967,32.71530071101634],[-117.22359359643133,32.71528702021187],[-117.22359105686864,32.71527344878308],[-117.22358732955432,32.7152600763789],[-117.22358244125553,32.71524697150119],[-117.22357641238897,32.71523421644443],[-117.22356928260402,32.71522186861471],[-117.22356108851135,32.71521000468152],[-117.22343305392556,32.71509832560737],[-117.22341476213853,32.71509416853148],[-117.22339877160509,32.71509172211493],[-117.22338260414213,32.71509032977931],[-117.22336635405669,32.71508999352882],[-117.22335012540879,32.71509071529068],[-117.22333401575628,32.71509249704346],[-117.22331810947149,32.71509532437874],[-117.22330251365278,32.71509917996023],[-117.22328730933047,32.71510404116032],[-117.22327260023081,32.71510987967535],[-117.22325846723248,32.71511665913632],[-117.22324499443476,32.71512434040041],[-117.22323225937456,32.71513287887952],[-117.22322034599974,32.71514222168934],[-117.2232093187222,32.71515231335131],[-117.2230388390613,32.71531857022099],[-117.22293222184972,32.71537987897622],[-117.22290912607201,32.71539116247828],[-117.22289334385755,32.71539433784271],[-117.22287712235959,32.71539453451638],[-117.22286123855753,32.71539174637032],[-117.22284645147205,32.71538610759242],[-117.22283346956405,32.71537788469917],[-117.22282290844183,32.71536747412058],[-117.222815280744,32.71535536929739],[-117.22281095053536,32.71534215279521],[-117.22281011334611,32.71532845523367],[-117.22281282193758,32.71531493309512],[-117.22281894689641,32.71530223330435],[-117.22282818605443,32.71529096292068],[-117.22284010316653,32.71528165859911],[-117.22326592386963,32.71497870934247],[-117.22328824813781,32.71497000173559],[-117.22330346929857,32.71496519537294],[-117.22331900791565,32.71496116708525],[-117.22333480559391,32.71495792832744],[-117.22335080071772,32.71495549332836],[-117.22336693486164,32.71495387079457],[-117.22338316257375,32.71495306658182],[-117.22339941558481,32.71495308122892],[-117.2234156386597,32.71495391792033],[-117.22343177647227,32.71495557159567],[-117.22344776391309,32.71495803452332],[-117.22345925065858,32.71496070063336],[-117.22347575392203,32.71496453375045],[-117.22349176603764,32.71496687554239],[-117.2235079368217,32.71496827608291],[-117.22350953692029,32.71496832117176],[-117.22352417837693,32.71496872507156],[-117.22353178037652,32.71496848915874],[-117.22354041918226,32.71496822307301],[-117.22355658121459,32.71496677070305],[-117.22357258326075,32.71496437409993],[-117.22358835067004,32.71496104484703],[-117.223603808883,32.71495680277283],[-117.22428416643395,32.714739793272],[-117.22509337174262,32.71441457145221],[-117.225409406788,32.71418119315027],[-117.22694981563272,32.71294865336213],[-117.22802329568275,32.71212383171233],[-117.22829349825102,32.71186332681419],[-117.22845491054228,32.71176035069522],[-117.22869260264233,32.71150010283501],[-117.22931037611535,32.71092075597331],[-117.23012053198271,32.71010075502633],[-117.23087514294325,32.7092591939661],[-117.23089026435808,32.70924233514426],[-117.23090014630905,32.70923142458653],[-117.23091008391741,32.70922054931614],[-117.23092007724436,32.70920971482973],[-117.23093012616754,32.70919891013413],[-117.23094022752801,32.70918814349995],[-117.23095038454585,32.70917741215317],[-117.23096059731287,32.70916672433858],[-117.23097086248649,32.70915607183715],[-117.23098118331755,32.70914545462305],[-117.23099155658581,32.7091348754703],[-117.23100198554202,32.70912433435313],[-117.23101247018613,32.70911383127153],[-117.23102300076607,32.70910336630303],[-117.23103359028461,32.70909293934416],[-117.23104423224038,32.70908255044669],[-117.23105492341323,32.70907220238467],[-117.23106567027396,32.70906189235815],[-117.23107646957192,32.70905162039292],[-117.23108732133763,32.70904138923731],[-117.23109822554051,32.70903119614299],[-117.23110917896047,32.70902104388409],[-117.23112018484818,32.70901093243473],[-117.23113124317308,32.70900085904663],[-117.23114235074564,32.7089908292422],[-117.23115351075529,32.70898083749898],[-117.23116471998205,32.70897088659113],[-117.23117598167653,32.70896097649275],[-117.23118729258805,32.70895110722972],[-117.23119865268602,32.70894127605369],[-117.23121006534352,32.70893149393196],[-117.23122152715686,32.70892174714895],[-117.23123304149914,32.70891204667196],[-117.23124459527574,32.70890238435948],[-117.2312562048014,32.70889276557887],[-117.23126786357467,32.70888319038173],[-117.23127956831429,32.70887365604568],[-117.23129132230153,32.70886416529313],[-117.23130312550578,32.70885471537577],[-117.23131497470698,32.70884530906777],[-117.23132687318642,32.70883594909144],[-117.2313388208829,32.70882662995032],[-117.23135081457634,32.70881735441846],[-117.23136285426669,32.70880812249587],[-117.23137493995398,32.70879893418256],[-117.23138707491951,32.7087897922009],[-117.23139925585147,32.70878069108019],[-117.23141148281088,32.708771636317],[-117.23142375576728,32.708762625163],[-117.23143607150057,32.70875366039239],[-117.23144843648144,32.70874473920504],[-117.23146084420866,32.70873586165276],[-117.23147330121414,32.70872703043205],[-117.23148579449506,32.70871824564639],[-117.23149834030501,32.70870950716635],[-117.23151092886125,32.7087008123213],[-117.23152356341446,32.70869216108536],[-117.23153623430439,32.70868356178103],[-117.23154895444205,32.70867500605983],[-117.23156171735658,32.70866649672187],[-117.23157452304804,32.70865803376712],[-117.23158736826576,32.70864961722141],[-117.23160026273125,32.70864124425889],[-117.23161319678415,32.70863292320192],[-117.23162617361402,32.70862464852815],[-117.23163919319025,32.7086164174892],[-117.231652252354,32.70860823835581],[-117.23166535429469,32.70860010560557],[-117.23167849576166,32.70859201926427],[-117.23169168328698,32.70858398202845],[-117.23170490383718,32.70857599125334],[-117.23171817044573,32.7085680495837],[-117.23173147658063,32.70856015432298],[-117.2317448223337,32.70855231371605],[-117.2317582043318,32.70854451679558],[-117.23177162588689,32.70853676903229],[-117.23178509350036,32.70852907037436],[-117.23179859742017,32.7085214208995],[-117.23181214089699,32.70851382058171],[-117.23182572068011,32.708506269447],[-117.23183934002029,32.70849876746932],[-117.2318529956668,32.70849131467465],[-117.23186669090101,32.70848391378533],[-117.23188042241098,32.70847655933066],[-117.2318941870073,32.7084692568331],[-117.23190799769272,32.70846200618909],[-117.23192184143383,32.70845480475389],[-117.23193572148143,32.7084476525016],[-117.23194963786609,32.70844055218046],[-117.23196358730651,32.70843350106806],[-117.23197757633471,32.70842650186095],[-117.23199159844943,32.70841955461085],[-117.23200565687054,32.70841265654359],[-117.23201975162887,32.70840581040741],[-117.23203387947368,32.70839901622825],[-117.23204804362507,32.70839227123188],[-117.23206223761224,32.70838557821831],[-117.23207646793659,32.70837893713585],[-117.23209073137815,32.70837235075863],[-117.23210503112635,32.70836581356409],[-117.23211936074108,32.70835933110074],[-117.23213372666243,32.70835289782001],[-117.23214812241973,32.70834651652209],[-117.23216255129425,32.7083401899294],[-117.23217701000475,32.70833391531937],[-117.23219150180194,32.70832769266629],[-117.23220602668583,32.70832152196998],[-117.23222058143632,32.7083154060047],[-117.23223516924293,32.70830933924799],[-117.23224978697745,32.70830333271878],[-117.23226443451749,32.70829737542402],[-117.23227911189358,32.7082914701119],[-117.2322938191364,32.70828561953078],[-117.23230855624604,32.7082798236806],[-117.23232331994114,32.70827407983894],[-117.23233811675371,32.70826839070234],[-117.23235294015181,32.70826275357424],[-117.23236779341676,32.70825717117706],[-117.2323826765486,32.70825164351072],[-117.23239758304595,32.70824617062708],[-117.23241251941023,32.70824075247432],[-117.23242748236011,32.70823538633006],[-117.23285185763093,32.70810442632376],[-117.2331402763424,32.70801806902673],[-117.23370822489203,32.70793108401844],[-117.23373104591258,32.70792781262964],[-117.23374710129809,32.70792567263092],[-117.23376318094051,32.70792366711463],[-117.23377928152779,32.70792179061012],[-117.23379540634141,32.70792004583973],[-117.23381154891072,32.70791843560357],[-117.23382770920514,32.70791695715343],[-117.23384388397412,32.70791561051514],[-117.23386007324831,32.70791439843705],[-117.23387627696646,32.70791331542254],[-117.2338924919394,32.70791236699409],[-117.23390871816707,32.70791155315178],[-117.23392495233767,32.70791086842492],[-117.23394119454315,32.70791032105832],[-117.23395744147166,32.70790990558147],[-117.23397368987261,32.70790962202014],[-117.23398994302735,32.7079094730968],[-117.23400619765461,32.70790945608907],[-117.23402245053448,32.7079095737711],[-117.23403869835502,32.7079098206724],[-117.23405494767906,32.70791020223752],[-117.23407119197452,32.70791071577019],[-117.23408742477088,32.70791136407046],[-117.23410365582028,32.70791214706056],[-117.23411987534001,32.70791306207002],[-117.23413608004881,32.70791410637653],[-117.23415227328948,32.70791528819899],[-117.23416845500077,32.70791660204085],[-117.23418461865067,32.70791804520564],[-117.2342007643006,32.70791962319005],[-117.23421689191996,32.70792133324572],[-117.2342330014782,32.70792317262437],[-117.23424908653533,32.70792514687452],[-117.23426514706078,32.70792725324788],[-117.2342811862746,32.70792948897021],[-117.23429719445555,32.70793185686762],[-117.23431317810497,32.70793435688825],[-117.23432913391098,32.70793698356155],[-117.23434505546426,32.70793974518417],[-117.23436094595426,32.7079426362337],[-117.23437679887965,32.70794565676196],[-117.23439262399253,32.70794880669118],[-117.23440840832102,32.70795208887343],[-117.23442415502362,32.70795549503794],[-117.23443986419267,32.70795903342957],[-117.23445552601468,32.70796269862959],[-117.23447114702186,32.70796649333444],[-117.2344867239328,32.70797041482174],[-117.23450225677834,32.70797446583987],[-117.23455578788338,32.7079838424898],[-117.23461466934364,32.70800712244643],[-117.2346853211196,32.70804103865959],[-117.2347521840418,32.70808005612787],[-117.23480260078438,32.70811474677669],[-117.23482820665765,32.70823066774306],[-117.23484247778228,32.70832052145132],[-117.23484616225464,32.70841664389886],[-117.23483975207236,32.70852641096388],[-117.23482488099035,32.70862175808706],[-117.23480056297765,32.70871365703052],[-117.23476107911651,32.70880381906543],[-117.23471791219113,32.7088777199509],[-117.23466655850402,32.70894777777625],[-117.23459693238048,32.70902379460955],[-117.23452956070587,32.70908336543318],[-117.23443512182631,32.70913660253753],[-117.23433434437649,32.70918119655718],[-117.23419885065385,32.70922766170425],[-117.23402811877919,32.7092668219338],[-117.23385947624476,32.70932075510351],[-117.23355606883132,32.70933533202587],[-117.23309280608662,32.70941087520988],[-117.23243574166219,32.70957120818412],[-117.23218499876607,32.70975200009612],[-117.23169180667132,32.71019270151874],[-117.23091028267216,32.71095476602876],[-117.23019980467228,32.7116750328879],[-117.22964959352046,32.71219063136366],[-117.22906666019327,32.71268724465663],[-117.22672651922613,32.71450883836325],[-117.22601752511282,32.7150751512895],[-117.22552718429377,32.715422596946],[-117.22502125361488,32.71583063152251],[-117.22467379589948,32.71616320142571],[-117.22430458113607,32.71658664367776],[-117.2242910782591,32.71660720490151],[-117.22428357250793,32.71661939620241],[-117.22427635417921,32.71663170616761],[-117.22426942330338,32.71664413754551],[-117.22426278301009,32.71665667931728],[-117.22425643655036,32.71666933145729],[-117.22425039033523,32.71668208566938],[-117.22424464108336,32.71669493923097],[-117.22423919526655,32.7167078893424],[-117.22423404951236,32.71672092503631],[-117.22422921351323,32.7167340407391],[-117.2242246808279,32.71674724199872],[-117.224220457746,32.71676050952586],[-117.22421654757935,32.7167738487914],[-117.22421295020656,32.71678724880228],[-117.22420966559741,32.71680070681015],[-117.22420669694233,32.71681421729285],[-117.22420404418065,32.71682777475377],[-117.22420170725175,32.7168413736964],[-117.22419968937648,32.71685501134673],[-117.22419799043337,32.71686867671167],[-117.22419661042265,32.71688236979123],[-117.22419555250434,32.71689608231488],[-117.22419481336679,32.71690980881169],[-117.22419439623081,32.71692354650774],[-117.22419430100538,32.71693728715812],[-117.22419452440936,32.71695102804025],[-117.22419506963307,32.71696476363186],[-117.22419593658553,32.7169784856881],[-117.22419712520616,32.71699218871233],[-117.22419863224414,32.71700587273029],[-117.22420045760843,32.71701952949703],[-117.22420260120802,32.7170331507677],[-117.22420506301282,32.71704673379404],[-117.22420784296206,32.71706027307938],[-117.22421093774412,32.71707376315283],[-117.22421434729854,32.7170871985178],[-117.22421807159492,32.71710057642598],[-117.22422210729134,32.7171138886581],[-117.22422645107612,32.71712712974328],[-117.22422921320832,32.71713493848519],[-117.22423110617002,32.71714029690745],[-117.22423606598004,32.71715338195718],[-117.22432727645948,32.71746324526385],[-117.22440116897016,32.71767704679991],[-117.22456144267828,32.71805782606843],[-117.22466137511705,32.71827417022845],[-117.22481317313449,32.71847636174628],[-117.22485247882817,32.71851594872804]]]],"type":"MultiPolygon"} +},{ + "id": 1108826375, + "type": "Feature", + "properties": { + "edtf:cessation":"uuuu", + "edtf:inception":"uuuu", + "geom:area":0.000409, + "geom:area_square_m":4257568.643065, + "geom:bbox":"-117.051271541,32.670231137,-117.021615641,32.6978597427", + "geom:latitude":32.684459, + "geom:longitude":-117.037181, + "iso:country":"US", + "lbl:latitude":32.684262, + "lbl:longitude":-117.038642, + "lbl:max_zoom":18.0, + "mps:latitude":32.684262, + "mps:longitude":-117.038642, + "mz:hierarchy_label":1, + "mz:is_current":1, + "mz:is_funky":0, + "mz:is_landuse_aoi":0, + "mz:max_zoom":18.0, + "mz:min_zoom":14.0, + "reversegeo:latitude":32.684262, + "reversegeo:longitude":-117.038642, + "src:geom":"mz", + "wof:belongsto":[ + 420552065, + 102191575, + 85633793, + 85922227, + 102083569, + 85688637 + ], + "wof:breaches":[], + "wof:concordances":{}, + "wof:country":"US", + "wof:geomhash":"a6b7d1662ad12deddeaa0810565c45dd", + "wof:hierarchy":[ + { + "continent_id":102191575, + "country_id":85633793, + "county_id":102083569, + "locality_id":85922227, + "microhood_id":1108826375, + "neighbourhood_id":420552065, + "region_id":85688637 + } + ], + "wof:id":1108826375, + "wof:lastmodified":1566624124, + "wof:name":"South Bay Terraces", + "wof:parent_id":420552065, + "wof:placetype":"microhood", + "wof:repo":"whosonfirst-data-admin-us", + "wof:superseded_by":[], + "wof:supersedes":[ + 85887373 + ], + "wof:tags":[] +}, + "bbox": [ + -117.05127154104959, + 32.67023113696015, + -117.02161564069108, + 32.69785974265487 +], + "geometry": {"coordinates":[[[[-117.0488278116965,32.68825228692992],[-117.04818479491524,32.68848447753749],[-117.04775332006767,32.68861416947325],[-117.0473218452201,32.68872656896588],[-117.0469211900045,32.68883464527551],[-117.04655135442086,32.68893839840214],[-117.04623802149584,32.68902702079153],[-117.04598119122942,32.68910051244366],[-117.04570895114702,32.6891869731146],[-117.04542130124865,32.68928640280434],[-117.04513365135027,32.68940528594483],[-117.04484600145187,32.68954362253607],[-117.04456091985617,32.68968628191093],[-117.04427840656312,32.68983326406941],[-117.04400616648073,32.68998673045995],[-117.04374419960898,32.69014668108253],[-117.04346425461858,32.69029798548376],[-117.04316633150955,32.69044064366362],[-117.04286840840052,32.69056384831215],[-117.04257048529146,32.69066759942934],[-117.04225972066911,32.69074541272202],[-117.04193611453344,32.69079728819018],[-117.04151491289653,32.69087510130201],[-117.04099611575836,32.69097885205748],[-117.04044393068558,32.69108044122576],[-117.03985835767816,32.69117986880681],[-117.03912639141888,32.69130739526457],[-117.03824803190776,32.69146302059902],[-117.0375212022538,32.6915948696811],[-117.03694590245703,32.6917029425108],[-117.03649901779347,32.69178940071177],[-117.03618054826313,32.691854244284],[-117.0358389640088,32.69193205649155],[-117.0354742650305,32.69202283733441],[-117.03515836380282,32.6921157795269],[-117.03489126032574,32.69221088306903],[-117.034621588546,32.69232111656534],[-117.03434934846362,32.69244648001582],[-117.03405913026256,32.69259778043154],[-117.03375093394287,32.69277501781251],[-117.03337853005657,32.69299980600015],[-117.03294191860368,32.69327214499448],[-117.03219454252843,32.69372604008736],[-117.03113640183079,32.69436149127878],[-117.02978033802414,32.69517849081411],[-117.02812635110843,32.69617703869338],[-117.02692952206694,32.69689028375902],[-117.02582654794909,32.69752138227935],[-117.02581281412974,32.69752873018273],[-117.02579903754571,32.69753602063539],[-117.02578521819704,32.69754325363746],[-117.02577135935827,32.69755043191671],[-117.02575745773063,32.69755754999694],[-117.02574351333843,32.69756461062646],[-117.02572953268236,32.6975716137644],[-117.02571550598714,32.69757855672362],[-117.02570144302805,32.6975854421913],[-117.02568733730448,32.69759227020818],[-117.02567319531704,32.69759904073339],[-117.02565901051678,32.69760574831118],[-117.02564478947686,32.69761240114558],[-117.02563794568333,32.6976155637238],[-117.02563052562414,32.69761899103246],[-117.02561622875805,32.69762552340722],[-117.02560189562823,32.69763199829023],[-117.02558751968567,32.69763841022574],[-117.02557311072974,32.69764476464902],[-117.02555866223565,32.69765105885266],[-117.02554417745371,32.69765729281616],[-117.02553911582017,32.69765944648044],[-117.02552965963437,32.69766346651907],[-117.0255151022527,32.69766957725397],[-117.02550051185783,32.69767563047659],[-117.02548588517521,32.69768162345905],[-117.02547122540693,32.69768755068423],[-117.02545652939928,32.69769342316586],[-117.02544180033014,32.69769923263853],[-117.0254270381996,32.69770497910223],[-117.02541223978137,32.69771066532566],[-117.02539741482666,32.69771629124752],[-117.02538255356021,32.69772185418079],[-117.02538125752824,32.69772232957264],[-117.02538046050358,32.69772262592375],[-117.0253676592324,32.69772735410507],[-117.02535998979324,32.69773014806565],[-117.02535273511783,32.69773279374812],[-117.02533777794193,32.69773817038217],[-117.02532279420539,32.69774348396625],[-117.0253077741815,32.69774873731004],[-117.02529272434668,32.69775392762423],[-117.02527764470105,32.69775905490891],[-117.02526253849497,32.69776411914359],[-117.02524739925188,32.69776912311752],[-117.0252322301739,32.69777406131349],[-117.0252170410362,32.69777893641859],[-117.02520181558712,32.69778374853495],[-117.02519393836876,32.6977862029794],[-117.02518656685224,32.69778850032917],[-117.02518216126687,32.69778985279412],[-117.02517128828251,32.69779318634543],[-117.02515598312839,32.69779780656331],[-117.02514065143815,32.6978023664794],[-117.02512529316354,32.69780686059711],[-117.02510990835293,32.69781129441306],[-117.02509450018422,32.69781565966179],[-117.02507906545533,32.69781996186045],[-117.02506360419055,32.69782420375729],[-117.02504811956777,32.69782837708691],[-117.02503261163527,32.69783248734594],[-117.02501708039317,32.69783653453445],[-117.02500152581725,32.69784051590394],[-117.0249859479076,32.69784443145456],[-117.02497034668838,32.6978482839346],[-117.02495472538587,32.69785207057522],[-117.02493908077386,32.69785579414523],[-117.02492341280409,32.69785944914794],[-117.02492275110801,32.69785960996987],[-117.0249226245856,32.69785963824985],[-117.02492219318177,32.69785974265487],[-117.02489224254862,32.6977739253198],[-117.02487596001851,32.6977279987838],[-117.02478282462532,32.69748671744907],[-117.02462320092837,32.69707716556509],[-117.02462308355427,32.69707712507518],[-117.02278515750487,32.69653453555799],[-117.02274700895387,32.69644951943481],[-117.02270890689606,32.69636460745149],[-117.02205918753077,32.69492297518882],[-117.0220119994097,32.69473087958837],[-117.02198178458403,32.69462112669651],[-117.02198183150867,32.69462091751802],[-117.02199430423076,32.69456607865587],[-117.02202356561652,32.69443072506316],[-117.02203179087709,32.69439268953044],[-117.02203838145397,32.69436322300791],[-117.02206932551159,32.69422479705894],[-117.02210057618426,32.6940816802705],[-117.02213500476054,32.69393029812549],[-117.02215988171396,32.69380950593343],[-117.02215994736873,32.69380920868613],[-117.02215993417599,32.69380881573569],[-117.02215951409956,32.69375973870851],[-117.02215949765667,32.69375934577842],[-117.02215153408801,32.69358972630715],[-117.02215152457882,32.69358938280635],[-117.02211317523356,32.69347899651999],[-117.02209150142029,32.69341660700293],[-117.02209147847735,32.69341621411355],[-117.02208958747997,32.69338363444572],[-117.02208955803665,32.69338324159703],[-117.02208401421585,32.69330396334355],[-117.02218989845332,32.69314663676506],[-117.02237112129043,32.69287862403307],[-117.02237279946289,32.69287613988638],[-117.02295693945108,32.69277078554443],[-117.022956796465,32.69277041814406],[-117.02291204719384,32.6926552871163],[-117.02267431612084,32.69204695747396],[-117.02257124968449,32.69178374896168],[-117.02223671280299,32.6906981326432],[-117.02218764078444,32.69053639769247],[-117.02161564069108,32.68865122159443],[-117.02161572690753,32.68865113860041],[-117.02162478369451,32.68864279524674],[-117.02165836103076,32.68861192028886],[-117.02206734514691,32.68805996308014],[-117.02255342661461,32.6877106095392],[-117.02281561163851,32.68752205864141],[-117.02325914630721,32.68720321326681],[-117.02327636360027,32.68713989568617],[-117.02327674439134,32.68713856578089],[-117.0232969624042,32.68706830595021],[-117.02331906368963,32.68699395280756],[-117.02347303647242,32.68676211444647],[-117.02357726578214,32.68671813894785],[-117.02357782597356,32.68671790181205],[-117.0241008749752,32.68649721947863],[-117.02410120812647,32.68649703598705],[-117.02425828543129,32.68640921136573],[-117.02427669144912,32.68639891814714],[-117.02430499428444,32.68638309878889],[-117.02433402149471,32.6863561325265],[-117.02477566585652,32.68594587897964],[-117.02495907246349,32.68592067433622],[-117.02502611284022,32.68591159246456],[-117.02517168430224,32.68589186119248],[-117.02536320889661,32.68586557972226],[-117.02542680048643,32.68585682715102],[-117.025551511622,32.68583965628393],[-117.02571380449987,32.68581732906031],[-117.02585338414245,32.68579824759149],[-117.02591183473798,32.68579031868369],[-117.02598089702113,32.68569986847631],[-117.02606281728963,32.6855911368425],[-117.02608531896985,32.68556110270437],[-117.02611691728804,32.68545921543169],[-117.02635384138316,32.68468264612774],[-117.02662677603179,32.68450499129153],[-117.02758181243667,32.68388334171207],[-117.02758503233076,32.68388057017289],[-117.02795935243034,32.68357588114333],[-117.02806949681325,32.68348618195419],[-117.02833676717133,32.68326851914151],[-117.02833688976685,32.68326841667368],[-117.02874593011843,32.68321636097745],[-117.02893409896838,32.68299272654322],[-117.02893890402343,32.68298701781877],[-117.02934227275865,32.68239237393266],[-117.02944258882808,32.68224449527274],[-117.03020854542132,32.68165006775072],[-117.03073718522883,32.68123946190066],[-117.03100920230152,32.68102828257068],[-117.03100935399237,32.68102816342493],[-117.03252101436655,32.68049344707741],[-117.03252098488106,32.68049305423138],[-117.03248774276977,32.68004015847458],[-117.03286744964907,32.67961448141381],[-117.03358737570562,32.67925014491647],[-117.03485562926738,32.6781253519019],[-117.03498535849909,32.67802824104538],[-117.03500137617092,32.67801612268183],[-117.03501588600173,32.6780051078142],[-117.03503037286137,32.67799406835472],[-117.03504483354905,32.67798300982086],[-117.03505927451523,32.67797192667449],[-117.03507368930946,32.67796082445371],[-117.03508808440662,32.67794970036877],[-117.03510245330737,32.6779385544611],[-117.03511680251107,32.67792738668929],[-117.0351311255428,32.67791619984308],[-117.03514542560339,32.67790498840515],[-117.03515970274167,32.67789375787213],[-117.03517395693318,32.67788250549576],[-117.03518818492837,32.67787123129662],[-117.03520239325086,32.67785993798179],[-117.03521657535251,32.67784862009594],[-117.03523073453186,32.67783728311504],[-117.03524487076447,32.67782592429084],[-117.03525898082523,32.67781454639226],[-117.03527307116434,32.67780314388134],[-117.035287135356,32.67779172504444],[-117.03530117655197,32.67778027886759],[-117.03531519162497,32.67776881911306],[-117.03532918047719,32.67775733478764],[-117.03534315288184,32.67774582857751],[-117.03535709909009,32.67773430054478],[-117.03537101915093,32.67772275618614],[-117.035384916265,32.67771118998421],[-117.0353987871827,32.67769960195974],[-117.03541263515362,32.67768799209199],[-117.03542646345188,32.67767636310861],[-117.03544025905455,32.6776647123441],[-117.03545403498454,32.67765304246402],[-117.03546778469364,32.67764134801309],[-117.03548151152944,32.67762963996389],[-117.03549521539398,32.67761790732314],[-117.03550889308667,32.67760615560823],[-117.03552254458292,32.67759438207088],[-117.03553617640652,32.67758258941794],[-117.03554977878412,32.67757077496319],[-117.03556335821499,32.67755893866528],[-117.03557691149841,32.67754708604165],[-117.03559044185954,32.67753521432313],[-117.03560394927396,32.67752332076147],[-117.03561742724236,32.67751140539809],[-117.03563088553813,32.67749947091924],[-117.03564431441234,32.67748751738696],[-117.03565772033984,32.67747554201156],[-117.03567110334501,32.67746354754146],[-117.03568445692875,32.67745153401794],[-117.03569778756565,32.67743949865134],[-117.03571109203074,32.67742744421071],[-117.03572437357353,32.67741537067534],[-117.03573856591268,32.67740485247232],[-117.03576343245527,32.67738360761254],[-117.03577706748816,32.67737181766069],[-117.03579064360828,32.6773599813586],[-117.03580415751702,32.67734809323031],[-117.03581761251291,32.67733615875181],[-117.03583100859608,32.67732417792313],[-117.03584434249235,32.6773121480167],[-117.03585761742688,32.67730006626348],[-117.03587083022347,32.67728794092915],[-117.03588398083322,32.67727576651713],[-117.03589707250573,32.6772635430067],[-117.03591010204038,32.67725127591524],[-117.03592306938816,32.67723895974608],[-117.03593597457356,32.67722659724767],[-117.03594881434704,32.67721418844066],[-117.03596159525679,32.67720173878031],[-117.03597431395521,32.67718923729406],[-117.0359869672662,32.67717669224763],[-117.03599955841483,32.67716410087198],[-117.03601208742566,32.67715146591547],[-117.03602455102464,32.67713878465052],[-117.03603695246127,32.67712605705641],[-117.03604928853504,32.67711328865049],[-117.0360615591969,32.67710047393624],[-117.0360820348947,32.67707737979382],[-117.03609585973481,32.67706574800804],[-117.03610963221038,32.67705407532736],[-117.03612335557099,32.67704236173106],[-117.03613702654246,32.67703060449148],[-117.03615065167307,32.67701880906399],[-117.03616422441456,32.67700696999327],[-117.03617774804111,32.67699509000704],[-117.03619122257713,32.67698317185356],[-117.03620464472411,32.67697121005698],[-117.03621801450652,32.67695920736561],[-117.03623133517395,32.67694716375873],[-117.03624460350134,32.67693508200547],[-117.03625782596335,32.67692295931599],[-117.03627098958609,32.67691079852157],[-117.03628410731898,32.6768985940427],[-117.03629716946223,32.67688635143819],[-117.03631017926539,32.67687407068733],[-117.03632313995371,32.67686174902112],[-117.03633604505231,32.67684938922927],[-117.03634890106049,32.67683699127048],[-117.03636170470419,32.67682455241706],[-117.03637445273378,32.67681207268978],[-117.03638714847234,32.67679956031292],[-117.03639979184639,32.67678700704151],[-117.03641238288044,32.6767744156239],[-117.03642491832497,32.67676178608082],[-117.0364374014295,32.67674911839156],[-117.03644983219404,32.67673641255615],[-117.03646220736904,32.67672366859534],[-117.03647452697901,32.67671088925745],[-117.03648679422453,32.67669806902514],[-117.03649900595404,32.67668521891244],[-117.03651116527008,32.67667232240866],[-117.03652326907019,32.67665939602455],[-117.03653531725624,32.67664642876676],[-117.03654730990186,32.67663342888039],[-117.03655925020752,32.67662039084795],[-117.03657113167421,32.67660731471106],[-117.03658296085001,32.67659420592474],[-117.03659473121134,32.67658106178232],[-117.03660644598321,32.67656787951468],[-117.03661810843975,32.67655466184942],[-117.03662971210629,32.67654141157634],[-117.03664126018349,32.6765281231781],[-117.03665275596987,32.67651480213065],[-117.03667649095595,32.67649463071677],[-117.03689089763598,32.67627623380495],[-117.03689096208763,32.67627617292691],[-117.03777360856712,32.67541652684173],[-117.03814065983509,32.67505903812518],[-117.03929725620463,32.67361751770181],[-117.03942528941725,32.67345238799232],[-117.03942538579379,32.67345226369336],[-117.03942551109553,32.67345210347887],[-117.03948358433802,32.67337720642843],[-117.04001359559588,32.67294428333908],[-117.04116947129188,32.67200012093971],[-117.04117008421522,32.67199961953027],[-117.04146756735301,32.67175662110711],[-117.04177961441346,32.67159697515051],[-117.04177972439909,32.67159691947442],[-117.04177958252674,32.67159659056751],[-117.04171772293944,32.6714362565077],[-117.04167089573293,32.6713148900886],[-117.04166492498592,32.6712994517179],[-117.04162982501191,32.67120815809572],[-117.04161667710602,32.67117401840123],[-117.04160504877598,32.6711445386222],[-117.04160518492883,32.6711445020176],[-117.0418838458345,32.67107058926704],[-117.04188437439548,32.67107046493829],[-117.04188445201009,32.67107042321244],[-117.0420378239625,32.67102975250463],[-117.04203811568956,32.67102967092417],[-117.04216756817469,32.67099503824315],[-117.04219042606444,32.67098894912827],[-117.04233235365182,32.67095099289131],[-117.04279602208204,32.67082699599655],[-117.04279612231801,32.67082694038223],[-117.04299050434372,32.67077498055691],[-117.04334371826536,32.67068050994607],[-117.04336858256936,32.6706738772414],[-117.04357189722073,32.6706218617534],[-117.04380948613826,32.67056109392587],[-117.04381757266337,32.67055622650675],[-117.04400839430753,32.67045769293453],[-117.0440856420078,32.67041779581529],[-117.04442790872905,32.67023113696015],[-117.04455097695286,32.67038106243817],[-117.04464668161887,32.67042788987503],[-117.04515454550041,32.67053180587391],[-117.04515124831602,32.67054526173693],[-117.04514823426983,32.67055876524623],[-117.04514550006317,32.67057231092618],[-117.04514304892069,32.67058589600738],[-117.04514087754357,32.67059951501434],[-117.04513899238113,32.67061316240838],[-117.0451373901841,32.67062683821057],[-117.04513607412764,32.67064053415488],[-117.0451354821068,32.67064839589222],[-117.04513504093778,32.67065424751402],[-117.04513460079056,32.67066237487478],[-117.04513429383917,32.67066797551868],[-117.04513383278243,32.67068171267223],[-117.04513365771814,32.67069545347802],[-117.04513376864637,32.67070919793608],[-117.04513416544341,32.67072293230472],[-117.04513484490961,32.67073666210164],[-117.04513533269902,32.67074354940718],[-117.04513581346937,32.67075037903982],[-117.04513688411647,32.67076208342851],[-117.04513706462424,32.67076408316126],[-117.04513860149977,32.67077776070339],[-117.04514042414561,32.67079141716273],[-117.04514167349001,32.6707995143864],[-117.04514252596408,32.67080504158803],[-117.04514491670336,32.67081863391627],[-117.04514758656603,32.67083218871376],[-117.04514810180449,32.67083455183589],[-117.0451505355273,32.67084570323208],[-117.04515377001177,32.67085916918438],[-117.04515728027145,32.67087258663346],[-117.04516043180752,32.67088370041746],[-117.04516106950629,32.67088595006171],[-117.04516513766679,32.6708992539725],[-117.04516801793996,32.67090803329376],[-117.04516948147899,32.67091249563833],[-117.04517410091816,32.67092567231095],[-117.04517898941141,32.67093877578722],[-117.0451841534575,32.67095180602519],[-117.04518958648354,32.67096475482178],[-117.04519528851438,32.67097762492529],[-117.04520125620162,32.67099040536335],[-117.04520748954538,32.67100309613588],[-117.04521084720227,32.67100967908566],[-117.0452206681519,32.67100544353109],[-117.04523522309009,32.67099933869997],[-117.04524987704374,32.6709934036344],[-117.04526462021531,32.67098763290064],[-117.04527945915315,32.67098203195332],[-117.04529438413397,32.67097660360366],[-117.04530939510832,32.67097134235498],[-117.04532448887645,32.67096625372479],[-117.04533965896458,32.67096134050348],[-117.04535490859725,32.67095659992153],[-117.04536545753319,32.67095345630393],[-117.04537023454999,32.67095203474835],[-117.04537723557206,32.67095003815188],[-117.04538563029942,32.6709476422775],[-117.04540109262099,32.67094342527818],[-117.04541662156434,32.67093938924701],[-117.04543221383072,32.67093552870832],[-117.04544786944498,32.67093184641048],[-117.04546357865902,32.67092834241623],[-117.04731099297308,32.67039419507681],[-117.04757402920383,32.67109335729131],[-117.0478373182527,32.67182000221194],[-117.04818378747042,32.67276049270965],[-117.04829343184512,32.67302638311042],[-117.04829751482049,32.67303623472841],[-117.04830274428971,32.67304924792605],[-117.04830780193826,32.67306230621193],[-117.04831268779104,32.67307541233441],[-117.04831740504754,32.67308856077586],[-117.04832195048324,32.67310175430554],[-117.04832474377102,32.67311021529537],[-117.04832632082369,32.67311499019637],[-117.04832868930157,32.67312247272767],[-117.0483305225428,32.67312826565783],[-117.04833454586738,32.67314157800479],[-117.04833840379507,32.67315492715304],[-117.04834208330314,32.67316831043851],[-117.04834559091525,32.67318173056738],[-117.04834892008274,32.67319518208523],[-117.04835207727953,32.67320866220155],[-117.04835376839476,32.67321634426167],[-117.04835505275715,32.67322217097949],[-117.04835612653271,32.67322735041846],[-117.0483578594885,32.67323570558663],[-117.04836048772513,32.67324926608605],[-117.0483629407164,32.67326285245674],[-117.04836521516305,32.67327645922312],[-117.04836730781548,32.67329008640622],[-117.04836923489606,32.6733037311525],[-117.04837097365849,32.67331739360928],[-117.04837253707566,32.67333107094411],[-117.04837317622896,32.6733374185558],[-117.04837392189802,32.67334476317801],[-117.04837447614285,32.6733510646153],[-117.04837513135007,32.67335846754163],[-117.0483761589079,32.67337218132869],[-117.04837701107033,32.67338590449711],[-117.04837768131358,32.67339963434075],[-117.04837817613637,32.67341337081744],[-117.04838895481059,32.6738860406015],[-117.04839151313901,32.67488647296521],[-117.04839866029984,32.67534817235188],[-117.04840716923168,32.67589781448724],[-117.04840682614817,32.67590406951545],[-117.04840613153199,32.67591779995439],[-117.04840552467824,32.67593153257346],[-117.04840500236223,32.67594527014203],[-117.04840456775888,32.67595900439399],[-117.04840422094293,32.67597274357441],[-117.04840416390128,32.67597577552417],[-117.04840395861505,32.67598648220767],[-117.04840378407464,32.67600022576934],[-117.04840369399753,32.67601396603553],[-117.0484036887884,32.67602272274646],[-117.04840369168311,32.67602770848179],[-117.04840377710644,32.67604145035985],[-117.04840394701809,32.67605519169074],[-117.04840420141811,32.67606893247446],[-117.04840454678073,32.67608266992057],[-117.04840497663176,32.6760964068195],[-117.04840549097126,32.67611014317126],[-117.04840609302393,32.67612387620648],[-117.04840678278978,32.67613760592516],[-117.04840755701936,32.6761513323483],[-117.04840841893733,32.6761650527066],[-117.048409365344,32.6761787725177],[-117.04841039943909,32.67619248626394],[-117.048411518023,32.67620619946297],[-117.04841272424568,32.67621990110047],[-117.04841401493231,32.67623359944245],[-117.04841539330754,32.67624729171953],[-117.04841685937149,32.6762609779317],[-117.04841840984973,32.67627465535173],[-117.0484200447921,32.67628832947617],[-117.04842176737345,32.67630199203912],[-117.04842357441903,32.6763156513065],[-117.04842546910373,32.67632929901233],[-117.04842744820286,32.67634293792597],[-117.04857062481626,32.67708135337881],[-117.04863155669608,32.67735031033571],[-117.0486319724322,32.67735387242944],[-117.04863364962266,32.67736754078133],[-117.04863546969636,32.67738119721363],[-117.04863742612932,32.67739483902015],[-117.04863953191997,32.67740846611662],[-117.04864177404512,32.67742207583896],[-117.04864415575436,32.67743566816605],[-117.04864667382314,32.67744924586736],[-117.04864933792561,32.67746280063464],[-117.04865214161235,32.67747633800668],[-117.04865508158413,32.67748985250791],[-117.0486581610906,32.67750334411719],[-117.04865882995145,32.67750614873723],[-117.04866138015666,32.67751681558287],[-117.04866422954765,32.67752822258163],[-117.04866473873265,32.67753026140834],[-117.04866823356895,32.67754368161461],[-117.04867186789041,32.67755707343225],[-117.048675641722,32.67757043960959],[-117.04867954856442,32.67758378018874],[-117.04868360134165,32.67759708684049],[-117.0486877838554,32.67761036516676],[-117.04869210582969,32.67762361235603],[-117.04869656401492,32.67763682842934],[-117.04870115511183,32.6776500079111],[-117.04870588566943,32.6776631562558],[-117.04870713315101,32.67766561906304],[-117.04871349055799,32.67767826488839],[-117.04871977672435,32.67769093865992],[-117.04872600132423,32.67770363206936],[-117.04873215465847,32.67771635067663],[-117.04873824322632,32.67772909443964],[-117.0487442637035,32.67774185513446],[-117.04875021616461,32.67775464100599],[-117.04875610060964,32.67776745205436],[-117.0487619137392,32.67778028280394],[-117.04876766857655,32.67779313591887],[-117.04877334884874,32.67780600875607],[-117.04877896110474,32.67781890677007],[-117.0487845085195,32.67783182169493],[-117.04878998464349,32.67784475906934],[-117.04879539272639,32.67785771887227],[-117.04910261303684,32.67840817367762],[-117.04925453753037,32.67867654051848],[-117.0493902894174,32.67895325750882],[-117.04976120539581,32.67971767969409],[-117.05000304518212,32.68022458069755],[-117.05027140932232,32.68078902731144],[-117.05027337347025,32.68079453077541],[-117.05027799418981,32.68080770726186],[-117.05028251111912,32.68082090640976],[-117.05028692105829,32.68083413373687],[-117.05029122720715,32.68084738372549],[-117.05029542959055,32.680860659124],[-117.05029952818356,32.68087395718394],[-117.05030050343754,32.68087721055891],[-117.05030351973635,32.68088727792657],[-117.05030740749864,32.68090062133076],[-117.05031118819569,32.6809139846692],[-117.05031486182746,32.68092736794201],[-117.05031572994136,32.68093063300631],[-117.05031843169357,32.68094077662472],[-117.05032189446935,32.68095420249343],[-117.05032525017972,32.68096764829648],[-117.05032850207436,32.68098111401286],[-117.05033022323927,32.68098849077307],[-117.05033164685358,32.68099459416692],[-117.05033468456729,32.68100809425536],[-117.05033642459431,32.68101611678759],[-117.05033761519047,32.68102161152987],[-117.05034043872304,32.68103514599044],[-117.05034315511504,32.68104869214048],[-117.05034576444135,32.68106225822491],[-117.05034826662704,32.68107583599882],[-117.05035066169701,32.68108942821044],[-117.05035294962619,32.68110303211154],[-117.05035513043961,32.68111665045046],[-117.05035720086242,32.68113028049993],[-117.05035916739413,32.68114392221775],[-117.05036102351025,32.68115757289785],[-117.05036276923565,32.68117123528851],[-117.05036441104487,32.68118490659926],[-117.05036594243829,32.68119858687226],[-117.05036645515409,32.68120351432977],[-117.05036736666564,32.68121227608643],[-117.05036823545005,32.68122134320256],[-117.05036868372687,32.6812259742418],[-117.05036989034728,32.68123967861108],[-117.05037098652677,32.68125338919436],[-117.0503719820146,32.68126710592827],[-117.05037286378666,32.6812808261489],[-117.05037363836747,32.68129455256245],[-117.05037430248217,32.68130828244158],[-117.05037485940552,32.68132201851359],[-117.05037530908753,32.68133575528188],[-117.05037564502861,32.68134949278853],[-117.0503758802776,32.68136323644585],[-117.05037600173573,32.68137697534495],[-117.05037601597725,32.68139071768863],[-117.05037591970245,32.68140445800125],[-117.05037585710369,32.6814086608446],[-117.05037571618604,32.68141819901012],[-117.05037540542787,32.6814319407152],[-117.05037498412835,32.68144567764097],[-117.05037445558698,32.68145941526292],[-117.05037381647919,32.68147314535725],[-117.05037307007963,32.68148687065112],[-117.05037221641312,32.68150059389291],[-117.05037125220493,32.68151431235536],[-117.05037018067986,32.68152802326899],[-117.05036899863802,32.68154173215162],[-117.05036771247903,32.68155542796774],[-117.05036769752749,32.68155557098616],[-117.05036631577818,32.68156911900455],[-117.05036480851047,32.68158280251365],[-117.05036319712546,32.68159647295618],[-117.05036147522341,32.6816101413677],[-117.05035964592928,32.68162379398544],[-117.05035770931782,32.68163743905438],[-117.05035566536411,32.68165107382621],[-117.05035351074341,32.68166469007704],[-117.05035125208001,32.68167830150625],[-117.05034888274955,32.68169189441451],[-117.05034640932637,32.68170547700443],[-117.05034382528594,32.68171904657003],[-117.05034344002743,32.68172100049696],[-117.05034113707781,32.68173259757236],[-117.05033834150217,32.6817461355292],[-117.05033801102218,32.68174767957593],[-117.05033543525919,32.68175965496501],[-117.05033242489833,32.68177316133418],[-117.05032931359445,32.68178664637066],[-117.05032608514855,32.6818001156766],[-117.05032461872274,32.68180576784038],[-117.05032105497629,32.68181917610757],[-117.05031737401285,32.68183256039924],[-117.05031443247803,32.68184290830933],[-117.0503135790821,32.68184592069424],[-117.05030966695924,32.68185925976193],[-117.0503060101655,32.68187136859827],[-117.05030564411869,32.68187257481183],[-117.05030150728579,32.6818858631167],[-117.05029725648539,32.68189912742484],[-117.05029288841783,32.68191236226075],[-117.05028840638265,32.6819255730998],[-117.05028381682952,32.68193875440332],[-117.05027911000903,32.68195190623452],[-117.05027429244571,32.68196503129949],[-117.05026936083972,32.68197812412271],[-117.05026431846581,32.68199118743135],[-117.0502591620742,32.68200422124654],[-117.05025389486461,32.68201722005044],[-117.05024851361229,32.6820301866126],[-117.05024302479175,32.6820431181423],[-117.05023742195327,32.68205602017855],[-117.05023171152158,32.68206888443402],[-117.05022589029669,32.68208171642654],[-117.05021995820374,32.68209450791109],[-117.05021391854235,32.68210726436322],[-117.050207764813,32.68211998582505],[-117.05020150346525,32.68213266675777],[-117.05019513449902,32.68214530716134],[-117.05018865471446,32.68215791255356],[-117.05018207053621,32.68217047464709],[-117.05017537548964,32.68218299623264],[-117.05016857607427,32.6821954772678],[-117.05016166901538,32.68220791502549],[-117.05015484940677,32.68221996193],[-117.0501546510631,32.68222030952667],[-117.05014753199166,32.6822326634564],[-117.05014030525165,32.68224497136023],[-117.05013297411773,32.68225723596534],[-117.05012553853992,32.68226945177509],[-117.05011799531843,32.68228162430714],[-117.05011034767793,32.68229375079209],[-117.05010259884332,32.68230582846055],[-117.05009474558969,32.68231786008187],[-117.0500867878422,32.682329837411],[-117.05007872897532,32.68234177416861],[-117.05007125526511,32.68235265445765],[-117.05007056561449,32.68235365663402],[-117.05006230428421,32.68236548751338],[-117.05005479205435,32.68237606296928],[-117.05005393850989,32.68237726959718],[-117.05004547151621,32.68238900011598],[-117.05003690652812,32.68240067630033],[-117.05002823704598,32.68241229819243],[-117.05001947286904,32.68242387122562],[-117.05001060739787,32.68243538444876],[-117.05000164398201,32.68244684883402],[-117.04999257929691,32.68245825615749],[-117.04998341984205,32.682469606377],[-117.04997416236762,32.68248089951365],[-117.04996481014838,32.68249213829461],[-117.04995535988459,32.6825033172442],[-117.04994581157624,32.68251443636258],[-117.04993617174792,32.68252549835578],[-117.0494437385163,32.68305640200252],[-117.04944522759418,32.68305754121445],[-117.04945727125731,32.68306676949619],[-117.04946929877359,32.68307600887539],[-117.04948131019286,32.68308526484874],[-117.0494933055151,32.68309453741625],[-117.04950528144074,32.68310382110235],[-117.04951724454409,32.68311312410989],[-117.04952919150058,32.68312243821489],[-117.04954111911032,32.68313176893514],[-117.04955303384789,32.68314111348023],[-117.04956492923864,32.68315047464055],[-117.04957681175735,32.68315984962568],[-117.04958867490431,32.68316923847774],[-117.04960052520404,32.68317864390295],[-117.04961235613212,32.68318806319509],[-117.04962417093823,32.68319749633311],[-117.04963597289721,32.68320694604426],[-117.04964775545947,32.68321640687407],[-117.04965952194976,32.68322588704642],[-117.04967126904334,32.68323537833746],[-117.04968300328976,32.68324488620165],[-117.04969472141424,32.6832544079117],[-117.04969946246524,32.68325827176592],[-117.04970641691723,32.68326394350986],[-117.04971810604773,32.68327349289071],[-117.04972977258164,32.68328305890796],[-117.04973823041854,32.68329001268723],[-117.04974142299361,32.68329263877112],[-117.04975305728365,32.68330223248027],[-117.04976467220202,32.68331184005638],[-117.0497762742732,32.68332146420574],[-117.04978785697264,32.68333110222209],[-117.04979942355021,32.68334075408439],[-117.04981097400585,32.68335041979267],[-117.04982250508975,32.68336009936797],[-117.04983402332653,32.68336979551648],[-117.04984552219155,32.68337950553206],[-117.04985700488481,32.68338922389702],[-117.04986847153096,32.68339896435288],[-117.04987991880536,32.68340871867584],[-117.04989134993295,32.68341848409642],[-117.04990276493864,32.683428263363],[-117.04991416384728,32.68343805922396],[-117.04992554335932,32.68344786620364],[-117.0499369100242,32.68345768975659],[-117.04994825406753,32.68346752719773],[-117.0499595852388,32.68347737846382],[-117.04997089378844,32.68348724361807],[-117.05065885006823,32.68408744508893],[-117.05127154104959,32.68463041372854],[-117.0504527184813,32.68500952689283],[-117.05043851451825,32.68501620173738],[-117.05042435010047,32.68502293679035],[-117.05041022192817,32.68502972657604],[-117.05039613330113,32.68503657657016],[-117.05038208416941,32.685043481276],[-117.05036807783276,32.68505044616909],[-117.05035410774154,32.6850574657951],[-117.0503401771705,32.68506454288119],[-117.05032628936958,32.68507167740627],[-117.05031244106388,32.68507886664318],[-117.05029863552826,32.68508611331915],[-117.05028486951278,32.68509341745526],[-117.05027114624237,32.68510077628209],[-117.05025746574195,32.68510819254806],[-117.05024382798653,32.68511566350473],[-117.05023022972631,32.68512318917337],[-117.05021667751087,32.68513077500833],[-117.05020316799052,32.68513841003748],[-117.05018970446511,32.68514609973635],[-117.05017628048458,32.68515384964377],[-117.05016290569893,32.68516164870329],[-117.05014957368319,32.68516950520195],[-117.05013628441232,32.68517741639154],[-117.05012304111133,32.6851853795026],[-117.05010984707999,32.68519340001075],[-117.05009669576862,32.68520147246151],[-117.05008359040208,32.68520959408543],[-117.05007053108021,32.68521777587589],[-117.050057520978,32.68522600956683],[-117.05004455682072,32.68523429243103],[-117.05003163543317,32.68524263273456],[-117.05001876974011,32.68525102214812],[-117.05000595004178,32.68525946623158],[-117.04999317631321,32.68526796223669],[-117.04998045177929,32.68527650739406],[-117.04996777646504,32.68528510445201],[-117.04995515042032,32.68529375890714],[-117.04994257354528,32.68530245976632],[-117.04993004913977,32.68531121250501],[-117.04991757070395,32.68532001716539],[-117.04990514473765,32.68532887370536],[-117.04989276794103,32.68533777664932],[-117.04988044363884,32.68534673422126],[-117.04986817178118,32.68535574092444],[-117.04985594911815,32.68536479678004],[-117.04984377892463,32.68537390451532],[-117.04983166115059,32.68538305863352],[-117.04983086711196,32.68538366295503],[-117.04981959584605,32.68539226463149],[-117.04980757971123,32.68540151703356],[-117.04979562254562,32.68541082127313],[-117.04978371454968,32.68542017191687],[-117.04977186224812,32.68542957167097],[-117.04976006239107,32.68543902055648],[-117.04974831497857,32.68544851857342],[-117.04973662323543,32.68545806295247],[-117.049724983887,32.68546765096625],[-117.04971340675766,32.6854772907967],[-117.04970187557301,32.68548697980076],[-117.04969040653272,32.68549671237646],[-117.04967899313692,32.68550648856596],[-117.04966763223547,32.68551631938367],[-117.04965632695365,32.68552619106691],[-117.04964508059123,32.68553610909123],[-117.04963388664831,32.68554607349884],[-117.04962275812454,32.68555608420539],[-117.04961168199549,32.68556613854693],[-117.04960066153585,32.68557623925073],[-117.04958970322056,32.68558638352626],[-117.04957879732487,32.68559657418518],[-117.04956795357354,32.68560680841591],[-117.04955716871662,32.68561708623947],[-117.04954643950433,32.68562740767709],[-117.04953577243634,32.68563777268656],[-117.04952516103789,32.68564818405835],[-117.0495146150088,32.68565863623262],[-117.0495041213495,32.6856691292937],[-117.04949369310938,32.68567966865394],[-117.04948332373883,32.68569024885887],[-117.04947301323784,32.68570086990851],[-117.04946276488133,32.68571153453009],[-117.04945258189417,32.68572223995426],[-117.04944245130176,32.68573298901364],[-117.04943238605388,32.68574377612729],[-117.04942238295038,32.68575460681296],[-117.04941244196645,32.68576547832236],[-117.04940256307718,32.68577638790716],[-117.04939274630745,32.68578733831571],[-117.04938299490715,32.68579832952692],[-117.04937329912664,32.68580936160405],[-117.04936367191571,32.68582042896621],[-117.04935410684929,32.68583153990043],[-117.0493446038526,32.6858426861619],[-117.04933516622552,32.68585387322604],[-117.04932579069308,32.68586509836578],[-117.04931648050531,32.68587636155993],[-117.04930723566218,32.68588766280856],[-117.04929805616374,32.68589900211175],[-117.0492889387351,32.68591037674212],[-117.04927988665116,32.68592178942703],[-117.04927089991197,32.68593324016647],[-117.04926198174245,32.68594472619114],[-117.04925312564285,32.68595624754305],[-117.04924433488804,32.68596780694956],[-117.04923561270292,32.68597940164124],[-117.04922695583771,32.68599103163923],[-117.04921836429237,32.68600269694347],[-117.04920984129193,32.68601439478468],[-117.04920138363629,32.68602613068053],[-117.04919299452564,32.68603789911334],[-117.04918467398478,32.6860497028314],[-117.04917641873899,32.68606153910752],[-117.04916822876336,32.68607340519338],[-117.04916011065745,32.68608531204011],[-117.04915205782167,32.68609724869663],[-117.04914407353095,32.68610921789016],[-117.04913615778527,32.68612121962073],[-117.04912831383463,32.6861332538673],[-117.04912053515423,32.68614531792368],[-117.04911282501898,32.68615741451713],[-117.0491051867037,32.68616954637494],[-117.04909761360888,32.68618170254593],[-117.04909011235904,32.68619389672963],[-117.04908268282952,32.68620611518438],[-117.04907531859537,32.68621836619742],[-117.0490680293814,32.68623064695709],[-117.04906080543786,32.68624295752669],[-117.04905365651454,32.68625529784303],[-117.04904657283679,32.68626766522096],[-117.04903956417932,32.68628006234565],[-117.04903262404227,32.68629248925927],[-117.04902575565075,32.68630494319238],[-117.0490189590047,32.68631742414497],[-117.04901306831354,32.68632837931252],[-117.04901223412911,32.68632993486546],[-117.04900785937039,32.68633817294845],[-117.04900557774914,32.68634247262658],[-117.04899899633985,32.68635503463782],[-117.04899248345109,32.68636762643809],[-117.04898604553298,32.6863802424885],[-117.04897967611059,32.6863928855796],[-117.04897338168389,32.68640555566925],[-117.04896715897794,32.68641825003017],[-117.04896100799282,32.68643096866239],[-117.04895493200341,32.68644371429323],[-117.04894892448495,32.68645648421644],[-117.04894299193731,32.68646927838986],[-117.04893713433567,32.68648209406531],[-117.04893135172985,32.68649493673939],[-117.04892563757015,32.68650780095753],[-117.04891999838144,32.686520689426],[-117.04891443416368,32.68653360214483],[-117.04890894161716,32.68654653363837],[-117.04890352401685,32.68655948663391],[-117.04889817816255,32.68657246664922],[-117.04889291050435,32.68658546814551],[-117.04888771451753,32.6865984884166],[-117.04888259345212,32.68661152744139],[-117.04887754738276,32.68662459346491],[-117.04887257295994,32.68663767551493],[-117.04886767673344,32.68665077904599],[-117.04886285542835,32.6866639013308],[-117.04885810576999,32.68667703964212],[-117.04885343435781,32.68669020493115],[-117.04884883784224,32.68670338622569],[-117.04884431299831,32.68671658629505],[-117.04883986630108,32.68672980234884],[-117.04883549127554,32.68674303717751],[-117.04883120092154,32.68675629069684],[-117.04882697571455,32.68676956028486],[-117.04882283517908,32.68678284856358],[-117.04881876629054,32.68679615286885],[-117.048814772299,32.68680947317964],[-117.04881085647918,32.68682281222326],[-117.04880701553139,32.68683616452412],[-117.04880325273064,32.6868495328095],[-117.04879956482689,32.68686291710041],[-117.04879595179536,32.68687631464855],[-117.04879241688595,32.68688972543288],[-117.04878895364863,32.68690315499219],[-117.04878557825846,32.68691659497622],[-117.04878227126561,32.68693005100796],[-117.04878016010083,32.68693881861805],[-117.0487799840046,32.68693947115046],[-117.04877652101381,32.68695221083745],[-117.04877300892275,32.68696562971891],[-117.04876961725311,32.68697906705948],[-117.04876635257958,32.68699253106208],[-117.04876499483422,32.68699836115476],[-117.04876486339052,32.68699891994927],[-117.0487632148275,32.68700601348174],[-117.04876019427189,32.68701951712992],[-117.04875731038773,32.68703303913208],[-117.04875454370023,32.68704658236281],[-117.0487519071594,32.68706014124125],[-117.0487493942904,32.68707371855784],[-117.04874700831822,32.68708731154322],[-117.04874474599301,32.68710092021842],[-117.04874379978061,32.68710697302077],[-117.04874373519144,32.68710737746686],[-117.04874261378991,32.68711454179308],[-117.04874060523386,32.68712817905759],[-117.04873872680002,32.68714182922153],[-117.04873697196352,32.68715548957872],[-117.04873534399944,32.68716916285638],[-117.04873384288281,32.68718284630621],[-117.04873246861368,32.68719653992824],[-117.04873122116734,32.6872102409741],[-117.04873092201254,32.68721381319736],[-117.04873067548131,32.68721673643662],[-117.04865812836546,32.68781912515433],[-117.04865673129993,32.6878328161749],[-117.04865576023073,32.68784653192085],[-117.04865521835831,32.68786026687453],[-117.04865509905845,32.68787400733643],[-117.04865540878143,32.6878877477678],[-117.04865594812047,32.68789777350518],[-117.04865597172802,32.68789822685273],[-117.04865614415304,32.68790147444808],[-117.04865730512374,32.68791518188051],[-117.04865889481917,32.6879288563025],[-117.0486609066898,32.68794249225945],[-117.04866334063618,32.68795607875798],[-117.04866619658387,32.68796960755316],[-117.04866859347418,32.68797946184562],[-117.0486686947828,32.68797988170794],[-117.04866947118356,32.68798306767269],[-117.04867316111061,32.68799645089263],[-117.04867726626568,32.68800974621959],[-117.04868178654944,32.68802294266019],[-117.04868671218711,32.68803603752936],[-117.04869204310417,32.6880490225819],[-117.04869777587651,32.68806187860066],[-117.04870245312192,32.68807159169013],[-117.04870390400431,32.68807460562765],[-117.04871043061327,32.68808718990012],[-117.04871733942863,32.6880996287749],[-117.04872463357597,32.68811190848931],[-117.04873230973084,32.68812402081934],[-117.04873845065264,32.68813313624914],[-117.0487403515686,32.68813595762519],[-117.04874877203953,32.68814771332595],[-117.04875544029878,32.68815655873538],[-117.0488278116965,32.68825228692992]]]],"type":"MultiPolygon"} +}]} \ No newline at end of file diff --git a/fixtures/microhoods/1007729419.geojson b/fixtures/microhoods/1007729419.geojson new file mode 100644 index 0000000..e11c126 --- /dev/null +++ b/fixtures/microhoods/1007729419.geojson @@ -0,0 +1 @@ +{"id":1007729419,"type":"Feature","bbox":[-87.6737224705246,41.9396964988298,-87.6589843785878,41.9471518891998],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6591215756444,41.9453157210476],[-87.6589843785878,41.9398429217264],[-87.6686616744218,41.9396964988298],[-87.6688444261434,41.9399467982458],[-87.6688921878363,41.9400095596547],[-87.6689426814345,41.9400825030782],[-87.6689774455923,41.9401327239067],[-87.6690402375084,41.9402233950137],[-87.6692993487654,41.9405982613278],[-87.6693773837768,41.9407111481197],[-87.6695086914551,41.9409010997143],[-87.6695948077934,41.9410241397525],[-87.6697207628351,41.9412040989211],[-87.6699308858987,41.9415034484579],[-87.6700772656533,41.941711960257],[-87.6702886380568,41.9420130490327],[-87.6704327530821,41.9422199185925],[-87.6704702811419,41.9422737877048],[-87.6705753262165,41.9424245299054],[-87.6707091970752,41.9426166367371],[-87.6709539756614,41.9429555838728],[-87.6709557299288,41.9429580124708],[-87.6709557324619,41.9429580163273],[-87.6711933241507,41.9433087729179],[-87.6711983951061,41.9433159906353],[-87.6714316926232,41.9436488236276],[-87.6714907369305,41.9437330689405],[-87.6715505307631,41.9438183915305],[-87.6715529703756,41.9438218729085],[-87.6715529739972,41.9438218781434],[-87.6716703268107,41.9439896901148],[-87.6717719891228,41.9441356359312],[-87.6718239008977,41.9442101600237],[-87.6718768901083,41.9442862539531],[-87.6720128151227,41.9444814442947],[-87.6722585107107,41.9448300043567],[-87.6723858337981,41.9450116950412],[-87.6724565888843,41.9451126618962],[-87.6724706879831,41.9451327953038],[-87.672793356365,41.9455932631024],[-87.6729251822126,41.9457829191846],[-87.6729251909039,41.9457829318579],[-87.67315006394,41.9461064573714],[-87.6732968819841,41.9463176899843],[-87.67347197225,41.9465508539239],[-87.673593447983,41.9467331059357],[-87.6737224705246,41.9469266793429],[-87.65916831859788,41.9471518891998],[-87.6591684126822,41.9471485105193],[-87.6591707758216,41.9470636365536],[-87.6591710810693,41.9470526675307],[-87.6591707243929,41.9470389317473],[-87.6591697995112,41.9470033464953],[-87.6591641894294,41.9467926408542],[-87.6591641141834,41.9467896997134],[-87.6591612450656,41.9466783056769],[-87.6591593114461,41.9466032335021],[-87.659158185597,41.9465424145742],[-87.6591565237587,41.9464526421445],[-87.6591545073862,41.9463427909659],[-87.6591539080879,41.9463101472229],[-87.6591521897219,41.9462447899997],[-87.6591516586312,41.9462245823347],[-87.6591505594872,41.9461827559871],[-87.6591479252061,41.9460825347368],[-87.6591443377426,41.9459813400033],[-87.6591388574101,41.945826747945],[-87.6591375887549,41.9457907891002],[-87.6591369891951,41.9457738010918],[-87.6591331977636,41.9456661507641],[-87.6591290736867,41.945548207679],[-87.6591282129428,41.94552342402],[-87.6591254073284,41.9454426436839],[-87.6591233385646,41.9453741241563],[-87.6591215756444,41.9453157210476]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000089,"geom:area_square_m":814800.32757,"geom:bbox":"-87.6737224705,41.9396964988,-87.6589843786,41.9471518892","geom:latitude":41.943648,"geom:longitude":-87.665224,"iso:country":"US","lbl:latitude":41.933211,"lbl:longitude":-87.677286,"lbl:max_zoom":18,"mps:latitude":41.943403,"mps:longitude":-87.665224,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":41.943403,"reversegeo:longitude":-87.665224,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85829473,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e77307e21e97567a018ffa37f9b11fca","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1007729419,"neighbourhood_id":85829473,"region_id":85688697}],"wof:id":1007729419,"wof:lastmodified":1566625491,"wof:name":"West Lakeview","wof:parent_id":85829473,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865749],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147409.geojson b/fixtures/microhoods/102147409.geojson new file mode 100644 index 0000000..cc769d5 --- /dev/null +++ b/fixtures/microhoods/102147409.geojson @@ -0,0 +1 @@ +{"id":102147409,"type":"Feature","bbox":[-122.420303,37.777382,-122.413727,37.782318],"geometry":{"type":"Polygon","coordinates":[[[-122.414856,37.778732],[-122.416191,37.77763],[-122.416512,37.777802],[-122.41967,37.777382],[-122.420303,37.780548],[-122.419449,37.780659],[-122.419548,37.78117],[-122.419281,37.7812],[-122.419449,37.782051],[-122.417313,37.782318],[-122.417152,37.781528],[-122.416206,37.781639],[-122.416008,37.780701],[-122.413849,37.78096],[-122.413727,37.780201],[-122.415169,37.78001],[-122.415192,37.780094],[-122.416939,37.779873],[-122.416824,37.779247],[-122.415077,37.779469],[-122.4151,37.779617],[-122.414284,37.779716],[-122.413979,37.779449],[-122.414856,37.778732]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":191264.816806,"geom:bbox":"-122.420303,37.777382,-122.413727,37.782318","geom:latitude":37.779731,"geom:longitude":-122.41752,"iso:country":"US","lbl:latitude":37.779297,"lbl:longitude":-122.418443,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:bar_x_preferred":["Civic Centre"],"name:cat_x_preferred":["centre cívic"],"name:deu_x_preferred":["Civic Center"],"name:eng_x_preferred":["Civic Center"],"name:eng_x_variant":["civic center"],"name:fra_x_preferred":["zone administrative"],"name:jpn_x_preferred":["オフィス街"],"name:por_x_preferred":["Downtown"],"name:ron_x_preferred":["Centru civic"],"name:vie_x_preferred":["trung tâm hành chính"],"name:zho_x_preferred":["The Yo"],"name:zho_x_variant":["市民中心"],"src:geom":"minitenders","src:geom_alt":[],"wd:wordcount":449,"wof:belongsto":[85866841,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6583066"},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"80bdb7b60ba577c001f841086b1a2f67","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147409,"neighbourhood_id":85866841,"region_id":85688637}],"wof:id":102147409,"wof:lastmodified":1566610060,"wof:name":"Civic Center","wof:parent_id":85866841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147411.geojson b/fixtures/microhoods/102147411.geojson new file mode 100644 index 0000000..c7ecee9 --- /dev/null +++ b/fixtures/microhoods/102147411.geojson @@ -0,0 +1 @@ +{"id":102147411,"type":"Feature","bbox":[-122.413849,37.779903,-122.41259,37.780994],"geometry":{"type":"Polygon","coordinates":[[[-122.41259,37.78056],[-122.412788,37.780708],[-122.413223,37.780418],[-122.413483,37.780373],[-122.413605,37.780994],[-122.413849,37.780964],[-122.413719,37.780205],[-122.413452,37.779903],[-122.41259,37.78056]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":4940.984659,"geom:bbox":"-122.413849,37.779903,-122.41259,37.780994","geom:latitude":37.780421,"geom:longitude":-122.413355,"iso:country":"US","lbl:latitude":37.780183,"lbl:longitude":-122.413422,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Fecal Fountain"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"f6722062e3cba972f61f38d845e11f9e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147411,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147411,"wof:lastmodified":1566610061,"wof:name":"Fecal Fountain","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147413.geojson b/fixtures/microhoods/102147413.geojson new file mode 100644 index 0000000..8a8de8e --- /dev/null +++ b/fixtures/microhoods/102147413.geojson @@ -0,0 +1 @@ +{"id":102147413,"type":"Feature","bbox":[-122.415848,37.782501,-122.415283,37.78299],"geometry":{"type":"Polygon","coordinates":[[[-122.415771,37.782501],[-122.415848,37.782928],[-122.415359,37.78299],[-122.415283,37.782562],[-122.415771,37.782501]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":2086.848562,"geom:bbox":"-122.415848,37.782501,-122.415283,37.78299","geom:latitude":37.782745,"geom:longitude":-122.415565,"iso:country":"US","lbl:latitude":37.782741,"lbl:longitude":-122.415601,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Le marché"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"5da726edb61c885f8c25f5b54d52b92f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147413,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147413,"wof:lastmodified":1566610059,"wof:name":"Le marché","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147415.geojson b/fixtures/microhoods/102147415.geojson new file mode 100644 index 0000000..4e37338 --- /dev/null +++ b/fixtures/microhoods/102147415.geojson @@ -0,0 +1 @@ +{"id":102147415,"type":"Feature","bbox":[-122.419357,37.782742,-122.415863,37.785851],"geometry":{"type":"Polygon","coordinates":[[[-122.416893,37.782791],[-122.417389,37.782742],[-122.417511,37.783321],[-122.41832,37.783218],[-122.418404,37.783649],[-122.419273,37.783539],[-122.419357,37.784069],[-122.418533,37.784168],[-122.418602,37.784599],[-122.41748,37.785236],[-122.417572,37.78569],[-122.416344,37.785851],[-122.415863,37.783482],[-122.417,37.783352],[-122.416893,37.782791]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":56310.236538,"geom:bbox":"-122.419357,37.782742,-122.415863,37.785851","geom:latitude":37.784286,"geom:longitude":-122.417314,"iso:country":"US","lbl:latitude":37.784237,"lbl:longitude":-122.417314,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Little Saigon"],"name:epo_x_preferred":["vjetnama kvartalo"],"name:fra_x_preferred":["Little Saigon"],"name:ind_x_preferred":["Little Saigon"],"name:jpn_x_preferred":["リトルサイゴン"],"name:nld_x_preferred":["Little Saigon"],"name:vie_x_preferred":["Little Sài Gòn"],"name:zho_x_preferred":["小西貢"],"src:geom":"minitenders","src:geom_alt":[],"wd:wordcount":5534,"wof:belongsto":[85882193,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3113369"},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"6cadd073a2a6d90d3eea6d6c6d9b1946","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147415,"neighbourhood_id":85882193,"region_id":85688637}],"wof:id":102147415,"wof:lastmodified":1566610060,"wof:name":"Little Saigon","wof:parent_id":85882193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147419.geojson b/fixtures/microhoods/102147419.geojson new file mode 100644 index 0000000..233e3db --- /dev/null +++ b/fixtures/microhoods/102147419.geojson @@ -0,0 +1 @@ +{"id":102147419,"type":"Feature","bbox":[-122.414497,37.781239,-122.413399,37.783348],"geometry":{"type":"Polygon","coordinates":[[[-122.413399,37.781239],[-122.414223,37.78186],[-122.414497,37.783264],[-122.413826,37.783348],[-122.413399,37.781239]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":11911.741262,"geom:bbox":"-122.414497,37.781239,-122.413399,37.783348","geom:latitude":37.782416,"geom:longitude":-122.413961,"iso:country":"US","lbl:latitude":37.782376,"lbl:longitude":-122.413975,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":1,"mz:min_zoom":16,"name:eng_x_preferred":["Pill Hill"],"src:geom":"minitenders","src:geom_alt":[],"wd:wordcount":81,"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"17b839051238d7d72ad6a4f4b85b5055","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147419,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147419,"wof:lastmodified":1566610061,"wof:name":"Pill Hill","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147421.geojson b/fixtures/microhoods/102147421.geojson new file mode 100644 index 0000000..af02ff0 --- /dev/null +++ b/fixtures/microhoods/102147421.geojson @@ -0,0 +1 @@ +{"id":102147421,"type":"Feature","bbox":[-122.419533,37.7845,-122.41748,37.78569],"geometry":{"type":"Polygon","coordinates":[[[-122.419533,37.784981],[-122.419434,37.7845],[-122.41861,37.784607],[-122.41748,37.785236],[-122.417572,37.78569],[-122.417961,37.785641],[-122.418709,37.785084],[-122.419533,37.784981]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":10570.973736,"geom:bbox":"-122.419533,37.7845,-122.41748,37.78569","geom:latitude":37.785044,"geom:longitude":-122.418461,"iso:country":"US","lbl:latitude":37.785015,"lbl:longitude":-122.418406,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Naked Hood"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85882193,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"2253fc1d34f20bc2662950d81b3545e3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147421,"neighbourhood_id":85882193,"region_id":85688637}],"wof:id":102147421,"wof:lastmodified":1566610061,"wof:name":"The Naked Hood","wof:parent_id":85882193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147423.geojson b/fixtures/microhoods/102147423.geojson new file mode 100644 index 0000000..2a531a0 --- /dev/null +++ b/fixtures/microhoods/102147423.geojson @@ -0,0 +1 @@ +{"id":102147423,"type":"Feature","bbox":[-122.416199,37.780701,-122.413605,37.78167],"geometry":{"type":"Polygon","coordinates":[[[-122.413605,37.780998],[-122.416008,37.780701],[-122.416199,37.781639],[-122.415977,37.78167],[-122.413643,37.781151],[-122.413605,37.780998]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":14028.218955,"geom:bbox":"-122.416199,37.780701,-122.413605,37.78167","geom:latitude":37.781157,"geom:longitude":-122.415169,"iso:country":"US","lbl:latitude":37.781152,"lbl:longitude":-122.415266,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Bar"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"d2363bd756f05ac4599f6b71d9538b56","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147423,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147423,"wof:lastmodified":1566610060,"wof:name":"The Bar","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147425.geojson b/fixtures/microhoods/102147425.geojson new file mode 100644 index 0000000..709d39d --- /dev/null +++ b/fixtures/microhoods/102147425.geojson @@ -0,0 +1 @@ +{"id":102147425,"type":"Feature","bbox":[-122.418083,37.776573,-122.416199,37.777802],"geometry":{"type":"Polygon","coordinates":[[[-122.418083,37.777596],[-122.4179,37.776794],[-122.417572,37.776573],[-122.416199,37.777641],[-122.416512,37.777802],[-122.418083,37.777596]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":12169.636731,"geom:bbox":"-122.418083,37.776573,-122.416199,37.777802","geom:latitude":37.777297,"geom:longitude":-122.41729,"iso:country":"US","lbl:latitude":37.777226,"lbl:longitude":-122.417428,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Foxy Heights"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85866841,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"1d0d23e46a24d6ce9d8b86450ec24fe1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147425,"neighbourhood_id":85866841,"region_id":85688637}],"wof:id":102147425,"wof:lastmodified":1566610059,"wof:name":"Foxy Heights","wof:parent_id":85866841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147427.geojson b/fixtures/microhoods/102147427.geojson new file mode 100644 index 0000000..6e33c19 --- /dev/null +++ b/fixtures/microhoods/102147427.geojson @@ -0,0 +1 @@ +{"id":102147427,"type":"Feature","bbox":[-122.41967,37.775314,-122.417587,37.777599],"geometry":{"type":"Polygon","coordinates":[[[-122.41925,37.775314],[-122.41967,37.777382],[-122.418068,37.777599],[-122.417908,37.776794],[-122.417587,37.776581],[-122.41925,37.775314]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":26789.787397,"geom:bbox":"-122.41967,37.775314,-122.417587,37.777599","geom:latitude":37.776644,"geom:longitude":-122.418751,"iso:country":"US","lbl:latitude":37.776699,"lbl:longitude":-122.418741,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Nipple"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85866841,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"f7821f7ff45e43ed3edb0820db986202","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147427,"neighbourhood_id":85866841,"region_id":85688637}],"wof:id":102147427,"wof:lastmodified":1566610062,"wof:name":"The Nipple","wof:parent_id":85866841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147429.geojson b/fixtures/microhoods/102147429.geojson new file mode 100644 index 0000000..9f78027 --- /dev/null +++ b/fixtures/microhoods/102147429.geojson @@ -0,0 +1 @@ +{"id":102147429,"type":"Feature","bbox":[-122.410233,37.7845,-122.404633,37.789539],"geometry":{"type":"Polygon","coordinates":[[[-122.407532,37.784519],[-122.407669,37.784618],[-122.408539,37.7845],[-122.408707,37.785412],[-122.40889,37.785839],[-122.408981,37.78632],[-122.409302,37.786282],[-122.409401,37.786831],[-122.409798,37.786781],[-122.409866,37.787151],[-122.408218,37.787361],[-122.408401,37.788288],[-122.410049,37.788078],[-122.410233,37.788952],[-122.405403,37.789539],[-122.404877,37.786861],[-122.404633,37.786781],[-122.407532,37.784519]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":164881.845588,"geom:bbox":"-122.410233,37.7845,-122.404633,37.789539","geom:latitude":37.787265,"geom:longitude":-122.407277,"iso:country":"US","lbl:latitude":37.787291,"lbl:longitude":-122.406663,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Tenderloin East"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85866851,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"4dec4d230c6f605e5c26e5df3e9c353e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147429,"neighbourhood_id":85866851,"region_id":85688637}],"wof:id":102147429,"wof:lastmodified":1566610062,"wof:name":"Tenderloin East","wof:parent_id":85866851,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147431.geojson b/fixtures/microhoods/102147431.geojson new file mode 100644 index 0000000..42c0969 --- /dev/null +++ b/fixtures/microhoods/102147431.geojson @@ -0,0 +1 @@ +{"id":102147431,"type":"Feature","bbox":[-122.41288,37.784389,-122.408234,37.788952],"geometry":{"type":"Polygon","coordinates":[[[-122.408546,37.7845],[-122.409348,37.784389],[-122.409531,37.785301],[-122.411201,37.78508],[-122.411362,37.785969],[-122.412178,37.78587],[-122.412392,37.7869],[-122.412819,37.78685],[-122.41288,37.787201],[-122.412201,37.787281],[-122.412239,37.787498],[-122.411972,37.787529],[-122.412033,37.78783],[-122.412712,37.78775],[-122.412758,37.78801],[-122.411728,37.788139],[-122.41169,37.787899],[-122.410843,37.787998],[-122.411003,37.78886],[-122.410233,37.788952],[-122.410049,37.788078],[-122.408401,37.78828],[-122.408234,37.787361],[-122.409882,37.787159],[-122.409813,37.786839],[-122.41008,37.786812],[-122.410049,37.786659],[-122.410858,37.78656],[-122.410759,37.786079],[-122.409683,37.786221],[-122.40979,37.78677],[-122.409401,37.786819],[-122.409302,37.78627],[-122.408981,37.786308],[-122.408882,37.785809],[-122.408707,37.785412],[-122.408546,37.7845]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":97347.016267,"geom:bbox":"-122.41288,37.784389,-122.408234,37.788952","geom:latitude":37.786789,"geom:longitude":-122.410422,"iso:country":"US","lbl:latitude":37.78733,"lbl:longitude":-122.410576,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Panhandle"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865905,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"3ac62f690ee4294d5926dce890479e8a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147431,"neighbourhood_id":85865905,"region_id":85688637}],"wof:id":102147431,"wof:lastmodified":1566610061,"wof:name":"The Panhandle","wof:parent_id":85865905,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147433.geojson b/fixtures/microhoods/102147433.geojson new file mode 100644 index 0000000..d4fd1be --- /dev/null +++ b/fixtures/microhoods/102147433.geojson @@ -0,0 +1 @@ +{"id":102147433,"type":"Feature","bbox":[-122.420822,37.785419,-122.412323,37.787201],"geometry":{"type":"Polygon","coordinates":[[[-122.419029,37.78598],[-122.420723,37.78577],[-122.420822,37.786259],[-122.412903,37.787201],[-122.412827,37.786842],[-122.412399,37.786888],[-122.412323,37.78651],[-122.413139,37.786411],[-122.412949,37.78545],[-122.413277,37.785419],[-122.413437,37.786209],[-122.418938,37.785519],[-122.419029,37.78598]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":69278.862302,"geom:bbox":"-122.420822,37.785419,-122.412323,37.787201","geom:latitude":37.786325,"geom:longitude":-122.41626,"iso:country":"US","lbl:latitude":37.786329,"lbl:longitude":-122.416256,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Gimlet"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865905,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"baf568dc1168afbde58d6975b2474bfb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147433,"neighbourhood_id":85865905,"region_id":85688637}],"wof:id":102147433,"wof:lastmodified":1566610063,"wof:name":"The Gimlet","wof:parent_id":85865905,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147437.geojson b/fixtures/microhoods/102147437.geojson new file mode 100644 index 0000000..1124eeb --- /dev/null +++ b/fixtures/microhoods/102147437.geojson @@ -0,0 +1 @@ +{"id":102147437,"type":"Feature","bbox":[-122.41597,37.781044,-122.413132,37.781849],"geometry":{"type":"Polygon","coordinates":[[[-122.414207,37.781849],[-122.413132,37.781044],[-122.41597,37.781658],[-122.414207,37.781849]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":7938.209636,"geom:bbox":"-122.41597,37.781044,-122.413132,37.781849","geom:latitude":37.781517,"geom:longitude":-122.414436,"iso:country":"US","lbl:latitude":37.781568,"lbl:longitude":-122.414311,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Castle Triangle"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"21d8d4f0ddd7d1165061b572bbab5d15","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147437,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147437,"wof:lastmodified":1566610060,"wof:name":"The Castle Triangle","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147439.geojson b/fixtures/microhoods/102147439.geojson new file mode 100644 index 0000000..6b69079 --- /dev/null +++ b/fixtures/microhoods/102147439.geojson @@ -0,0 +1 @@ +{"id":102147439,"type":"Feature","bbox":[-122.412704,37.783909,-122.410492,37.785156],"geometry":{"type":"Polygon","coordinates":[[[-122.412598,37.783909],[-122.412704,37.784424],[-122.411919,37.784531],[-122.412018,37.784969],[-122.411644,37.785015],[-122.410583,37.785156],[-122.410538,37.784962],[-122.410492,37.784767],[-122.411034,37.784695],[-122.410912,37.784142],[-122.411743,37.784031],[-122.412598,37.783909]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":14675.391488,"geom:bbox":"-122.412704,37.783909,-122.410492,37.785156","geom:latitude":37.784515,"geom:longitude":-122.411589,"iso:country":"US","lbl:latitude":37.784552,"lbl:longitude":-122.411477,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:deu_x_preferred":["Pattinappalai"],"name:eng_x_preferred":["Tender Wasteland"],"name:tam_x_preferred":["பட்டினப் பாலை"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"a7b5c876afaf5e1988440346aa1208a8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147439,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147439,"wof:lastmodified":1566610060,"wof:name":"Tender Wasteland","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147441.geojson b/fixtures/microhoods/102147441.geojson new file mode 100644 index 0000000..57a80bf --- /dev/null +++ b/fixtures/microhoods/102147441.geojson @@ -0,0 +1 @@ +{"id":102147441,"type":"Feature","bbox":[-122.418373,37.786579,-122.411987,37.788139],"geometry":{"type":"Polygon","coordinates":[[[-122.413239,37.78717],[-122.418182,37.786579],[-122.418373,37.78754],[-122.413452,37.788139],[-122.413361,37.78767],[-122.41301,37.787708],[-122.413063,37.787979],[-122.412773,37.78801],[-122.412712,37.787739],[-122.412041,37.787823],[-122.411987,37.78754],[-122.412247,37.78751],[-122.412209,37.787289],[-122.413239,37.78717]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":54376.82223,"geom:bbox":"-122.418373,37.786579,-122.411987,37.788139","geom:latitude":37.78738,"geom:longitude":-122.415427,"iso:country":"US","lbl:latitude":37.787403,"lbl:longitude":-122.415431,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Post Up"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85887435,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"ebe382562d9919cb76f7db5d5df88686","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147441,"neighbourhood_id":85887435,"region_id":85688637}],"wof:id":102147441,"wof:lastmodified":1566610059,"wof:name":"The Post Up","wof:parent_id":85887435,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147443.geojson b/fixtures/microhoods/102147443.geojson new file mode 100644 index 0000000..0d4ab7a --- /dev/null +++ b/fixtures/microhoods/102147443.geojson @@ -0,0 +1 @@ +{"id":102147443,"type":"Feature","bbox":[-122.412361,37.781929,-122.410309,37.783569],"geometry":{"type":"Polygon","coordinates":[[[-122.410622,37.783569],[-122.411003,37.78352],[-122.410782,37.782391],[-122.412361,37.782181],[-122.412308,37.781929],[-122.410744,37.782139],[-122.41066,37.782089],[-122.410309,37.782372],[-122.410408,37.78244],[-122.410622,37.783569]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":9161.616245,"geom:bbox":"-122.412361,37.781929,-122.410309,37.783569","geom:latitude":37.782557,"geom:longitude":-122.411058,"iso:country":"US","lbl:latitude":37.782927,"lbl:longitude":-122.410693,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Tender Turnpike"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"b407ddae67072ca47813aab0625ec48b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147443,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147443,"wof:lastmodified":1566610061,"wof:name":"Tender Turnpike","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147445.geojson b/fixtures/microhoods/102147445.geojson new file mode 100644 index 0000000..d3581a2 --- /dev/null +++ b/fixtures/microhoods/102147445.geojson @@ -0,0 +1 @@ +{"id":102147445,"type":"Feature","bbox":[-122.42186,37.786182,-122.418205,37.788452],"geometry":{"type":"Polygon","coordinates":[[[-122.418571,37.788452],[-122.42186,37.78804],[-122.421501,37.786182],[-122.418205,37.786579],[-122.418571,37.788452]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":61454.683943,"geom:bbox":"-122.42186,37.786182,-122.418205,37.788452","geom:latitude":37.787313,"geom:longitude":-122.420032,"iso:country":"US","lbl:latitude":37.787314,"lbl:longitude":-122.420033,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Whoa-Man"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85882193,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"621d21d2d618ab1da2c202be362b568e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147445,"neighbourhood_id":85882193,"region_id":85688637}],"wof:id":102147445,"wof:lastmodified":1566610062,"wof:name":"The Whoa-Man","wof:parent_id":85882193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147447.geojson b/fixtures/microhoods/102147447.geojson new file mode 100644 index 0000000..80b8720 --- /dev/null +++ b/fixtures/microhoods/102147447.geojson @@ -0,0 +1 @@ +{"id":102147447,"type":"Feature","bbox":[-122.412834,37.787895,-122.410851,37.78854],"geometry":{"type":"Polygon","coordinates":[[[-122.411812,37.78849],[-122.412834,37.788361],[-122.412766,37.788025],[-122.411728,37.788151],[-122.41169,37.787895],[-122.410851,37.787998],[-122.410927,37.788471],[-122.411423,37.788399],[-122.411453,37.78854],[-122.411812,37.78849]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":7885.571495,"geom:bbox":"-122.412834,37.787895,-122.410851,37.78854","geom:latitude":37.788231,"geom:longitude":-122.411759,"iso:country":"US","lbl:latitude":37.788316,"lbl:longitude":-122.411808,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["BoHo Slope"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865905,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"09f38b422599bd246215cf76c3dea98d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147447,"neighbourhood_id":85865905,"region_id":85688637}],"wof:id":102147447,"wof:lastmodified":1566610059,"wof:name":"BoHo Slope","wof:parent_id":85865905,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147449.geojson b/fixtures/microhoods/102147449.geojson new file mode 100644 index 0000000..211e79d --- /dev/null +++ b/fixtures/microhoods/102147449.geojson @@ -0,0 +1 @@ +{"id":102147449,"type":"Feature","bbox":[-122.411034,37.783352,-122.409149,37.785221],"geometry":{"type":"Polygon","coordinates":[[[-122.410118,37.785221],[-122.410568,37.78516],[-122.410477,37.78476],[-122.411034,37.784698],[-122.410782,37.78355],[-122.409775,37.78368],[-122.409714,37.783352],[-122.409149,37.783421],[-122.409256,37.783909],[-122.410004,37.783817],[-122.41011,37.78434],[-122.4104,37.784306],[-122.410477,37.784653],[-122.410011,37.78471],[-122.410118,37.785221]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":13420.969318,"geom:bbox":"-122.411034,37.783352,-122.409149,37.785221","geom:latitude":37.784147,"geom:longitude":-122.410261,"iso:country":"US","lbl:latitude":37.783954,"lbl:longitude":-122.410391,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":1,"mz:min_zoom":16,"name:ceb_x_preferred":["The Park"],"name:eng_x_preferred":["The Park"],"name:swe_x_preferred":["The Park"],"src:geom":"minitenders","src:geom_alt":[],"wd:wordcount":152,"wof:belongsto":[85887445,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"29ba9c5f9afc6790e421766e588ef571","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147449,"neighbourhood_id":85887445,"region_id":85688637}],"wof:id":102147449,"wof:lastmodified":1566610059,"wof:name":"The Park","wof:parent_id":85887445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147451.geojson b/fixtures/microhoods/102147451.geojson new file mode 100644 index 0000000..282bfcd --- /dev/null +++ b/fixtures/microhoods/102147451.geojson @@ -0,0 +1 @@ +{"id":102147451,"type":"Feature","bbox":[-122.409348,37.783329,-122.408127,37.7845],"geometry":{"type":"Polygon","coordinates":[[[-122.409348,37.784389],[-122.409149,37.783409],[-122.409027,37.783329],[-122.408127,37.784042],[-122.408531,37.784382],[-122.408546,37.7845],[-122.409348,37.784389]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":8100.29789,"geom:bbox":"-122.409348,37.783329,-122.408127,37.7845","geom:latitude":37.783994,"geom:longitude":-122.408826,"iso:country":"US","lbl:latitude":37.784024,"lbl:longitude":-122.408839,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Forgotten Island"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85887445,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"d652292620b8354e556693808976c97a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147451,"neighbourhood_id":85887445,"region_id":85688637}],"wof:id":102147451,"wof:lastmodified":1566610063,"wof:name":"Forgotten Island","wof:parent_id":85887445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147455.geojson b/fixtures/microhoods/102147455.geojson new file mode 100644 index 0000000..f795384 --- /dev/null +++ b/fixtures/microhoods/102147455.geojson @@ -0,0 +1 @@ +{"id":102147455,"type":"Feature","bbox":[-122.413719,37.780369,-122.41066,37.78302],"geometry":{"type":"Polygon","coordinates":[[[-122.41259,37.78056],[-122.41066,37.782089],[-122.410728,37.782131],[-122.412308,37.781929],[-122.412537,37.78302],[-122.413719,37.782879],[-122.413399,37.78125],[-122.413109,37.781029],[-122.413635,37.781151],[-122.413483,37.780369],[-122.413231,37.780418],[-122.412788,37.780708],[-122.41259,37.78056]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":37529.582601,"geom:bbox":"-122.413719,37.780369,-122.41066,37.78302","geom:latitude":37.781722,"geom:longitude":-122.41265,"iso:country":"US","lbl:latitude":37.781569,"lbl:longitude":-122.412793,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Yo"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"65bdd7b67854401f27e98f55c63ba105","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147455,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147455,"wof:lastmodified":1566610060,"wof:name":"The Yo","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147457.geojson b/fixtures/microhoods/102147457.geojson new file mode 100644 index 0000000..412ee8a --- /dev/null +++ b/fixtures/microhoods/102147457.geojson @@ -0,0 +1 @@ +{"id":102147457,"type":"Feature","bbox":[-122.410461,37.783821,-122.409264,37.785294],"geometry":{"type":"Polygon","coordinates":[[[-122.409538,37.785294],[-122.410118,37.785221],[-122.410011,37.78471],[-122.410461,37.784653],[-122.4104,37.784309],[-122.41011,37.784348],[-122.410004,37.783821],[-122.409264,37.783909],[-122.409538,37.785294]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":10396.578342,"geom:bbox":"-122.410461,37.783821,-122.409264,37.785294","geom:latitude":37.784519,"geom:longitude":-122.40979,"iso:country":"US","lbl:latitude":37.784458,"lbl:longitude":-122.409737,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Rambles"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85887445,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"fa0dcbe5244066075fa9d745d95c0684","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147457,"neighbourhood_id":85887445,"region_id":85688637}],"wof:id":102147457,"wof:lastmodified":1566610063,"wof:name":"The Rambles","wof:parent_id":85887445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147459.geojson b/fixtures/microhoods/102147459.geojson new file mode 100644 index 0000000..5d7f844 --- /dev/null +++ b/fixtures/microhoods/102147459.geojson @@ -0,0 +1 @@ +{"id":102147459,"type":"Feature","bbox":[-122.415863,37.782181,-122.410782,37.7855],"geometry":{"type":"Polygon","coordinates":[[[-122.41098,37.783421],[-122.410789,37.782391],[-122.412354,37.782181],[-122.412537,37.78302],[-122.413719,37.782879],[-122.413818,37.783352],[-122.414497,37.78326],[-122.414459,37.783112],[-122.415756,37.782944],[-122.415863,37.783482],[-122.415291,37.78355],[-122.415382,37.783981],[-122.415009,37.784031],[-122.415199,37.78503],[-122.411278,37.7855],[-122.411201,37.785069],[-122.412018,37.784962],[-122.411919,37.784519],[-122.412712,37.78442],[-122.412598,37.783901],[-122.410912,37.78413],[-122.410782,37.783539],[-122.411003,37.78352],[-122.41098,37.783421]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":93180.929463,"geom:bbox":"-122.415863,37.782181,-122.410782,37.7855","geom:latitude":37.783887,"geom:longitude":-122.413085,"iso:country":"US","lbl:latitude":37.784278,"lbl:longitude":-122.413686,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Sit/Lie"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"8ffac3705cc4c5d1358f1ed190e72297","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147459,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147459,"wof:lastmodified":1566610063,"wof:name":"The Sit/Lie","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147461.geojson b/fixtures/microhoods/102147461.geojson new file mode 100644 index 0000000..6046bd2 --- /dev/null +++ b/fixtures/microhoods/102147461.geojson @@ -0,0 +1 @@ +{"id":102147461,"type":"Feature","bbox":[-122.415382,37.78503,-122.411278,37.786499],"geometry":{"type":"Polygon","coordinates":[[[-122.411362,37.785961],[-122.411278,37.785511],[-122.415199,37.78503],[-122.415382,37.785969],[-122.413452,37.786201],[-122.413292,37.785412],[-122.412941,37.78545],[-122.413132,37.786404],[-122.412323,37.786499],[-122.412193,37.785858],[-122.411362,37.785961]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":31177.226563,"geom:bbox":"-122.415382,37.78503,-122.411278,37.786499","geom:latitude":37.785703,"geom:longitude":-122.413512,"iso:country":"US","lbl:latitude":37.785674,"lbl:longitude":-122.413849,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Delicious Fields"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"62c3cc603542a495d9c4cfdcb13c1ea8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147461,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147461,"wof:lastmodified":1566610063,"wof:name":"Delicious Fields","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147463.geojson b/fixtures/microhoods/102147463.geojson new file mode 100644 index 0000000..63917b3 --- /dev/null +++ b/fixtures/microhoods/102147463.geojson @@ -0,0 +1 @@ +{"id":102147463,"type":"Feature","bbox":[-122.422043,37.78754,-122.410469,37.790489],"geometry":{"type":"Polygon","coordinates":[[[-122.414001,37.788078],[-122.418381,37.78754],[-122.418571,37.78846],[-122.421852,37.78804],[-122.422043,37.789021],[-122.410568,37.790489],[-122.410469,37.789928],[-122.412086,37.789719],[-122.412018,37.78933],[-122.415703,37.788872],[-122.415604,37.78833],[-122.414093,37.788509],[-122.414001,37.788078]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":137690.589689,"geom:bbox":"-122.422043,37.78754,-122.410469,37.790489","geom:latitude":37.788988,"geom:longitude":-122.416575,"iso:country":"US","lbl:latitude":37.788692,"lbl:longitude":-122.416971,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Tenderloin Heights"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85887435,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"0a1551e4bb056c5f336c381d1b3904df","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147463,"neighbourhood_id":85887435,"region_id":85688637}],"wof:id":102147463,"wof:lastmodified":1566610060,"wof:name":"Tenderloin Heights","wof:parent_id":85887435,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147465.geojson b/fixtures/microhoods/102147465.geojson new file mode 100644 index 0000000..b66bab6 --- /dev/null +++ b/fixtures/microhoods/102147465.geojson @@ -0,0 +1 @@ +{"id":102147465,"type":"Feature","bbox":[-122.415688,37.787678,-122.408058,37.790211],"geometry":{"type":"Polygon","coordinates":[[[-122.415688,37.788872],[-122.415588,37.788342],[-122.414078,37.788521],[-122.414001,37.788078],[-122.413452,37.788151],[-122.413353,37.787678],[-122.413033,37.78772],[-122.413078,37.787987],[-122.412773,37.788025],[-122.412842,37.788361],[-122.411453,37.78854],[-122.411423,37.78841],[-122.410927,37.788471],[-122.411003,37.78886],[-122.408058,37.789211],[-122.408257,37.790211],[-122.412079,37.789719],[-122.412003,37.789322],[-122.415688,37.788872]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":70666.648803,"geom:bbox":"-122.415688,37.787678,-122.408058,37.790211","geom:latitude":37.789095,"geom:longitude":-122.411597,"iso:country":"US","lbl:latitude":37.789364,"lbl:longitude":-122.410958,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Academy Downs"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865905,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"cbedc5e12b4b3afac391931e2809632f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147465,"neighbourhood_id":85865905,"region_id":85688637}],"wof:id":102147465,"wof:lastmodified":1566610061,"wof:name":"Academy Downs","wof:parent_id":85865905,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147467.geojson b/fixtures/microhoods/102147467.geojson new file mode 100644 index 0000000..c7d4b69 --- /dev/null +++ b/fixtures/microhoods/102147467.geojson @@ -0,0 +1 @@ +{"id":102147467,"type":"Feature","bbox":[-122.410568,37.789215,-122.405403,37.7911],"geometry":{"type":"Polygon","coordinates":[[[-122.410568,37.790489],[-122.410461,37.789928],[-122.408257,37.790218],[-122.408066,37.789215],[-122.405403,37.789543],[-122.405693,37.7911],[-122.410568,37.790489]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":53657.388593,"geom:bbox":"-122.410568,37.789215,-122.405403,37.7911","geom:latitude":37.7902,"geom:longitude":-122.407458,"iso:country":"US","lbl:latitude":37.790107,"lbl:longitude":-122.407276,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The French Swell"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85866851,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"99965fc84425020864a15f7397cf9425","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147467,"neighbourhood_id":85866851,"region_id":85688637}],"wof:id":102147467,"wof:lastmodified":1566610062,"wof:name":"The French Swell","wof:parent_id":85866851,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147469.geojson b/fixtures/microhoods/102147469.geojson new file mode 100644 index 0000000..b72097e --- /dev/null +++ b/fixtures/microhoods/102147469.geojson @@ -0,0 +1 @@ +{"id":102147469,"type":"Feature","bbox":[-122.421494,37.78056,-122.417313,37.786251],"geometry":{"type":"Polygon","coordinates":[[[-122.417976,37.785629],[-122.418953,37.785511],[-122.419037,37.785973],[-122.420738,37.78577],[-122.42083,37.786251],[-122.421494,37.786171],[-122.420303,37.78056],[-122.419449,37.78067],[-122.419563,37.781181],[-122.419289,37.781212],[-122.419456,37.782051],[-122.417313,37.78233],[-122.417511,37.78331],[-122.418327,37.783211],[-122.418411,37.783642],[-122.419273,37.783531],[-122.419373,37.784081],[-122.418533,37.784168],[-122.41861,37.784599],[-122.419441,37.7845],[-122.419533,37.784981],[-122.418709,37.78508],[-122.417976,37.785629]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":111502.955849,"geom:bbox":"-122.421494,37.78056,-122.417313,37.786251","geom:latitude":37.783592,"geom:longitude":-122.419718,"iso:country":"US","lbl:latitude":37.782866,"lbl:longitude":-122.41986,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:ara_x_preferred":["حنة"],"name:arg_x_preferred":["Santa Ana"],"name:arz_x_preferred":["حنه"],"name:bel_x_preferred":["Святая Ганна"],"name:bos_x_preferred":["Hana bint Fakud"],"name:bre_x_preferred":["Santez Anna"],"name:bul_x_preferred":["Анна"],"name:cat_x_preferred":["Santa Anna"],"name:ces_x_preferred":["Svatá Anna"],"name:che_x_preferred":["Хьаннат"],"name:cym_x_preferred":["Ann"],"name:dan_x_preferred":["Sankt Anna"],"name:deu_x_preferred":["Anna"],"name:ell_x_preferred":["Αγία Άννα"],"name:eng_x_preferred":["Saint Anne's"],"name:eng_x_variant":["Saint Anne"],"name:epo_x_preferred":["Sankta Anna"],"name:est_x_preferred":["Anna"],"name:eus_x_preferred":["Ana"],"name:fas_x_preferred":["حنا"],"name:fin_x_preferred":["Pyhä Anna"],"name:fra_x_preferred":["Anne"],"name:fry_x_preferred":["Anna"],"name:gle_x_preferred":["Naomh Áine"],"name:gsw_x_preferred":["St. Anna"],"name:heb_x_preferred":["אנה הקדושה"],"name:hun_x_preferred":["Szent Anna"],"name:hye_x_preferred":["Աննա"],"name:ind_x_preferred":["Anna"],"name:ita_x_preferred":["Anna"],"name:jav_x_preferred":["Anna"],"name:jpn_x_preferred":["アンナ"],"name:kat_x_preferred":["წმინდა ანა"],"name:kor_x_preferred":["안나"],"name:lat_x_preferred":["Anna"],"name:lav_x_preferred":["Svētā Anna"],"name:lim_x_preferred":["Anna"],"name:lin_x_preferred":["Santu Anna"],"name:mal_x_preferred":["വിശുദ്ധ അന്ന"],"name:msa_x_preferred":["Hana"],"name:nld_x_preferred":["Anna"],"name:nob_x_preferred":["Anna av Jerusalem"],"name:nrm_x_preferred":["Âone"],"name:pol_x_preferred":["Święta Anna"],"name:por_x_preferred":["Santa Ana"],"name:ron_x_preferred":["Sfânta Ana"],"name:rus_x_preferred":["Святая Анна"],"name:scn_x_preferred":["Sant'Anna"],"name:sco_x_preferred":["Saunt Anne"],"name:slk_x_preferred":["Anna"],"name:slv_x_preferred":["sveta Ana"],"name:spa_x_preferred":["Ana"],"name:srp_x_preferred":["Света Ана"],"name:swa_x_preferred":["Ana"],"name:swe_x_preferred":["Anna"],"name:tgl_x_preferred":["Santa Ana"],"name:tha_x_preferred":["นักบุญอันนา"],"name:tur_x_preferred":["Hanne"],"name:ukr_x_preferred":["Свята Анна"],"name:urd_x_preferred":["حنا"],"name:vec_x_preferred":["Santi Ana e Joachin"],"name:vie_x_preferred":["Sveta Ana"],"name:zho_x_preferred":["聖安妮"],"src:geom":"minitenders","src:geom_alt":[],"wd:wordcount":2310,"wof:belongsto":[85882193,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q164294"},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"be792148a3db41571ada80358eb97723","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147469,"neighbourhood_id":85882193,"region_id":85688637}],"wof:id":102147469,"wof:lastmodified":1566610062,"wof:name":"Saint Anne's","wof:parent_id":85882193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147473.geojson b/fixtures/microhoods/102147473.geojson new file mode 100644 index 0000000..6056fe9 --- /dev/null +++ b/fixtures/microhoods/102147473.geojson @@ -0,0 +1 @@ +{"id":102147473,"type":"Feature","bbox":[-122.417381,37.781521,-122.414223,37.78347],"geometry":{"type":"Polygon","coordinates":[[[-122.414459,37.783112],[-122.414223,37.781841],[-122.417152,37.781521],[-122.417381,37.78273],[-122.416901,37.782787],[-122.417,37.78334],[-122.415863,37.78347],[-122.415756,37.78294],[-122.415863,37.782928],[-122.415771,37.782501],[-122.415276,37.782562],[-122.415359,37.78299],[-122.414459,37.783112]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":40201.764077,"geom:bbox":"-122.417381,37.781521,-122.414223,37.78347","geom:latitude":37.782405,"geom:longitude":-122.415894,"iso:country":"US","lbl:latitude":37.782326,"lbl:longitude":-122.416393,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Deli Hills"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"d64c0a7c996853be4a178dd43bcf2652","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147473,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147473,"wof:lastmodified":1566610062,"wof:name":"Deli Hills","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147475.geojson b/fixtures/microhoods/102147475.geojson new file mode 100644 index 0000000..a549570 --- /dev/null +++ b/fixtures/microhoods/102147475.geojson @@ -0,0 +1 @@ +{"id":102147475,"type":"Feature","bbox":[-122.416344,37.783489,-122.415016,37.785969],"geometry":{"type":"Polygon","coordinates":[[[-122.416344,37.785851],[-122.415855,37.783489],[-122.415306,37.783558],[-122.41539,37.783981],[-122.415016,37.784031],[-122.415398,37.785969],[-122.416344,37.785851]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":20534.067037,"geom:bbox":"-122.416344,37.783489,-122.415016,37.785969","geom:latitude":37.784806,"geom:longitude":-122.41567,"iso:country":"US","lbl:latitude":37.784839,"lbl:longitude":-122.415658,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Hydeaway"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"8c95609114c678be8eca3ff977306928","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147475,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147475,"wof:lastmodified":1566610061,"wof:name":"The Hydeaway","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147477.geojson b/fixtures/microhoods/102147477.geojson new file mode 100644 index 0000000..f9783fc --- /dev/null +++ b/fixtures/microhoods/102147477.geojson @@ -0,0 +1 @@ +{"id":102147477,"type":"Feature","bbox":[-122.410614,37.782372,-122.409042,37.78368],"geometry":{"type":"Polygon","coordinates":[[[-122.409775,37.78368],[-122.410614,37.783569],[-122.410408,37.782444],[-122.410309,37.782372],[-122.409042,37.783333],[-122.409164,37.783417],[-122.409714,37.783348],[-122.409775,37.78368]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":10315.892304,"geom:bbox":"-122.410614,37.782372,-122.409042,37.78368","geom:latitude":37.783124,"geom:longitude":-122.41001,"iso:country":"US","lbl:latitude":37.783099,"lbl:longitude":-122.410067,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Off Market"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85887445,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"dddb8e9d276bf345cb37f0055e2d5851","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147477,"neighbourhood_id":85887445,"region_id":85688637}],"wof:id":102147477,"wof:lastmodified":1566610059,"wof:name":"Off Market","wof:parent_id":85887445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147479.geojson b/fixtures/microhoods/102147479.geojson new file mode 100644 index 0000000..06b2c6b --- /dev/null +++ b/fixtures/microhoods/102147479.geojson @@ -0,0 +1 @@ +{"id":102147479,"type":"Feature","bbox":[-122.415169,37.779453,-122.413452,37.780201],"geometry":{"type":"Polygon","coordinates":[[[-122.413452,37.7799],[-122.413727,37.780201],[-122.415169,37.780006],[-122.415131,37.779781],[-122.4151,37.779617],[-122.414276,37.779724],[-122.413986,37.779453],[-122.413452,37.7799]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":7233.103882,"geom:bbox":"-122.415169,37.779453,-122.413452,37.780201","geom:latitude":37.779874,"geom:longitude":-122.414288,"iso:country":"US","lbl:latitude":37.779859,"lbl:longitude":-122.413964,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Ghost Market"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865903,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"90fbb7d50f868b62af6398ada8c4c782","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147479,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":102147479,"wof:lastmodified":1566610059,"wof:name":"Ghost Market","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147481.geojson b/fixtures/microhoods/102147481.geojson new file mode 100644 index 0000000..3e26cf2 --- /dev/null +++ b/fixtures/microhoods/102147481.geojson @@ -0,0 +1 @@ +{"id":102147481,"type":"Feature","bbox":[-122.416939,37.779251,-122.415077,37.780094],"geometry":{"type":"Polygon","coordinates":[[[-122.415192,37.780094],[-122.416939,37.779873],[-122.416824,37.779251],[-122.415077,37.779469],[-122.415192,37.780094]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":10892.102201,"geom:bbox":"-122.416939,37.779251,-122.415077,37.780094","geom:latitude":37.779672,"geom:longitude":-122.416007,"iso:country":"US","lbl:latitude":37.779674,"lbl:longitude":-122.415988,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:bel_x_variant":["Грошавыбівальны кадар"],"name:deu_x_preferred":["Money shot"],"name:eng_x_preferred":["The Money Shot"],"name:eng_x_variant":["money shot"],"name:fas_x_preferred":["مانی‌شات"],"name:fra_x_preferred":["Money shot"],"name:jpn_x_preferred":["マネーショット"],"name:nld_x_preferred":["Money shot"],"src:geom":"minitenders","src:geom_alt":[],"wd:wordcount":830,"wof:belongsto":[85866841,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6899287"},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"5e24262f9910e875086bb8ed5c9fe02f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147481,"neighbourhood_id":85866841,"region_id":85688637}],"wof:id":102147481,"wof:lastmodified":1566610061,"wof:name":"The Money Shot","wof:parent_id":85866841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147483.geojson b/fixtures/microhoods/102147483.geojson new file mode 100644 index 0000000..f7efd80 --- /dev/null +++ b/fixtures/microhoods/102147483.geojson @@ -0,0 +1 @@ +{"id":102147483,"type":"Feature","bbox":[-122.408546,37.784046,-122.407539,37.784622],"geometry":{"type":"Polygon","coordinates":[[[-122.408546,37.7845],[-122.408524,37.784386],[-122.408119,37.784046],[-122.407539,37.784527],[-122.407677,37.784622],[-122.408546,37.7845]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":2964.915789,"geom:bbox":"-122.408546,37.784046,-122.407539,37.784622","geom:latitude":37.784386,"geom:longitude":-122.408065,"iso:country":"US","lbl:latitude":37.784335,"lbl:longitude":-122.408101,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["The Loin Pit"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85887445,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"e8df48114e51e7bd371a2b123df5bb10","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147483,"neighbourhood_id":85887445,"region_id":85688637}],"wof:id":102147483,"wof:lastmodified":1566610059,"wof:name":"The Loin Pit","wof:parent_id":85887445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/102147485.geojson b/fixtures/microhoods/102147485.geojson new file mode 100644 index 0000000..d8ab72c --- /dev/null +++ b/fixtures/microhoods/102147485.geojson @@ -0,0 +1 @@ +{"id":102147485,"type":"Feature","bbox":[-122.410851,37.786091,-122.409683,37.786831],"geometry":{"type":"Polygon","coordinates":[[[-122.40992,37.786819],[-122.410072,37.7868],[-122.410042,37.786655],[-122.410851,37.786556],[-122.410751,37.786091],[-122.409683,37.786221],[-122.409798,37.786831],[-122.40992,37.786819]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":5406.4848,"geom:bbox":"-122.410851,37.786091,-122.409683,37.786831","geom:latitude":37.786415,"geom:longitude":-122.410239,"iso:country":"US","lbl:latitude":37.786386,"lbl:longitude":-122.410285,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["Rental Row"],"src:geom":"minitenders","src:geom_alt":[],"wof:belongsto":[85865905,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"f45e1efbfc5f0512937e51a66c223f57","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":102147485,"neighbourhood_id":85865905,"region_id":85688637}],"wof:id":102147485,"wof:lastmodified":1566610059,"wof:name":"Rental Row","wof:parent_id":85865905,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024496943.geojson b/fixtures/microhoods/1024496943.geojson new file mode 100644 index 0000000..15f2529 --- /dev/null +++ b/fixtures/microhoods/1024496943.geojson @@ -0,0 +1 @@ +{"id":1024496943,"type":"Feature","bbox":[-87.6856402639289,41.8448384179935,-87.6830187392088,41.852062207952],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6856402639289,41.8520319062106],[-87.6856248261815,41.8515057143541],[-87.6856152263689,41.8511186921065],[-87.6856035350639,41.8506473543594],[-87.6855882390784,41.8502144479996],[-87.6855725852758,41.8497714039348],[-87.6855601061727,41.8493044527236],[-87.6855461271034,41.8487813723227],[-87.6855363214251,41.8483995790146],[-87.6855129868069,41.8474909927921],[-87.6855001878338,41.846992623001],[-87.6854897140561,41.846584872492],[-87.6854709749963,41.8458551261338],[-87.6854607167064,41.8453084355535],[-87.6854552698696,41.8450181471556],[-87.6854470542783,41.8448384179935],[-87.6853936236675,41.8448497132925],[-87.6851418822932,41.8449380577015],[-87.6848430083944,41.8450541181498],[-87.6845765395184,41.8451563826821],[-87.6842248862678,41.8452918134325],[-87.683722447869,41.8454853124375],[-87.6835314504491,41.8455583271065],[-87.6830187392088,41.8457537122268],[-87.6830263861789,41.8461012743747],[-87.6830294858564,41.8462421560078],[-87.6830311041747,41.8463157108507],[-87.6830476432508,41.8466473001126],[-87.683051432537,41.8469787847852],[-87.6830529541895,41.8470284370988],[-87.6830561899543,41.8471462116967],[-87.6830592293367,41.8472568500996],[-87.6830676804563,41.8475311594663],[-87.6830721014985,41.8476746544956],[-87.6830841826968,41.8480487654659],[-87.6830846751265,41.8480639991792],[-87.6830941426961,41.8484353694516],[-87.6831032991928,41.8487945171951],[-87.6831061840196,41.8488878106863],[-87.6831106812596,41.849033254812],[-87.6831193267245,41.8493431000764],[-87.6831297474008,41.8497165736476],[-87.6831418401621,41.8502519740629],[-87.6831503065679,41.8506268240087],[-87.6831520378977,41.8507034815462],[-87.6831531631015,41.8507532959637],[-87.6831647931524,41.8511550394212],[-87.6831773914654,41.8515902128663],[-87.6831778527429,41.8516112087902],[-87.6831795749657,41.8516895674293],[-87.6831877638023,41.852062207952],[-87.6836630249139,41.8520550119092],[-87.684352458297,41.8520434748509],[-87.6843604987572,41.8520433402603],[-87.6850338715545,41.8520338883994],[-87.6856402639289,41.8520319062106]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":152280.59142,"geom:bbox":"-87.6856402639,41.844838418,-87.6830187392,41.852062208","geom:latitude":41.848661,"geom:longitude":-87.684349,"iso:country":"US","lbl:latitude":41.848647,"lbl:longitude":-87.684334,"lbl:max_zoom":18,"mps:latitude":41.848647,"mps:longitude":-87.684334,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":41.848647,"reversegeo:longitude":-87.684334,"src:geom":"zolk","wof:belongsto":[420783545,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b099086eb1e1c5c6d0d85457d68ed64f","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024496943,"neighbourhood_id":420783545,"region_id":85688697}],"wof:id":1024496943,"wof:lastmodified":1566608617,"wof:name":"Heart of Italy","wof:parent_id":420783545,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024497021.geojson b/fixtures/microhoods/1024497021.geojson new file mode 100644 index 0000000..c043ad4 --- /dev/null +++ b/fixtures/microhoods/1024497021.geojson @@ -0,0 +1 @@ +{"id":1024497021,"type":"Feature","bbox":[-87.71427585513828,41.8152693848321,-87.70416701665008,41.82262005539101],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.71427585513828,41.82245475072546],[-87.70439089533737,41.82262005539101],[-87.70416701665008,41.81533851881966],[-87.71404028322331,41.8152693848321],[-87.7140471549429,41.8155069996733],[-87.7140561694606,41.815865999915],[-87.7140660799778,41.8162842813764],[-87.7140819338576,41.8166949108689],[-87.7140909800116,41.8170506180717],[-87.7141005272752,41.817430477598],[-87.71410643924,41.8177307334506],[-87.7141341572851,41.8185854508657],[-87.7141617214148,41.8195323750204],[-87.7141662292711,41.8197080330315],[-87.7141926656706,41.8207378280604],[-87.714216546778,41.821686378566],[-87.7142155963034,41.8217088765043],[-87.714215379544,41.8217313781228],[-87.7142158964926,41.8217538842448],[-87.7142164134441,41.8217763900921],[-87.7142183978242,41.8217989038488],[-87.7142196484911,41.8218214136506],[-87.7142223665881,41.8218439313616],[-87.7142250846868,41.8218664490725],[-87.7142285417893,41.8218884219111],[-87.7142327273227,41.8219109475308],[-87.7142615598047,41.8221932144601],[-87.7142635336385,41.8222168258677],[-87.7142655123934,41.8222398884466],[-87.7142674865967,41.822263499856],[-87.7142687267149,41.8222871073089],[-87.714269972123,41.8223101656606],[-87.7142712122402,41.8223337733877],[-87.7142724523607,41.8223573808403],[-87.7142736924821,41.8223809882928],[-87.7142742045367,41.8224040429663],[-87.7142747105712,41.8224276464622],[-87.71427585513828,41.82245475072546]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000071,"geom:area_square_m":657734.944675,"geom:bbox":"-87.7142758551,41.8152693848,-87.7041670167,41.8226200554","geom:latitude":41.81892,"geom:longitude":-87.7092,"iso:country":"US","lbl:latitude":41.816447,"lbl:longitude":-87.715494,"lbl:max_zoom":18,"mps:latitude":41.818921,"mps:longitude":-87.7092,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Corwith Intermodal Facility"],"name:eng_x_variant":["Corwith"],"name:fra_x_preferred":["Corwith"],"name:ita_x_preferred":["Corwith"],"name:pol_x_preferred":["Corwith"],"reversegeo:latitude":41.818921,"reversegeo:longitude":-87.7092,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420518915,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"da8f9b7387f987e43cffd17a7c337b82","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024497021,"neighbourhood_id":420518915,"region_id":85688697}],"wof:id":1024497021,"wof:lastmodified":1566608619,"wof:name":"Corwith","wof:parent_id":420518915,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867563],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024497083.geojson b/fixtures/microhoods/1024497083.geojson new file mode 100644 index 0000000..1776668 --- /dev/null +++ b/fixtures/microhoods/1024497083.geojson @@ -0,0 +1 @@ +{"id":1024497083,"type":"Feature","bbox":[-87.5514967924649,41.7374262438559,-87.5417353589202,41.7519943793372],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5467259142867,41.7465364482798],[-87.5467665203611,41.7483583649076],[-87.5467952435314,41.7496468177631],[-87.5468051303868,41.7500769167418],[-87.546807419627,41.7501764700353],[-87.5468229138293,41.7508504643136],[-87.5468382102893,41.7515365018815],[-87.546848420279,41.7519943793372],[-87.5481495366639,41.7519758333595],[-87.5480630753862,41.751702242466],[-87.5480560184133,41.7516317755537],[-87.5480479394623,41.7515232654135],[-87.5480403984491,41.7514219769996],[-87.5480176038998,41.7501594286907],[-87.5480162636476,41.7500852013507],[-87.5479979155659,41.7490685330887],[-87.5479816918109,41.748342093215],[-87.5479679495116,41.7477267501279],[-87.5479589039536,41.7472903172067],[-87.5479425244015,41.7465223182827],[-87.5479286831772,41.7458733108141],[-87.5479158310415,41.7452862170669],[-87.5479065164468,41.7447055718507],[-87.548506711513,41.7446996144816],[-87.5485911487851,41.7446987759798],[-87.5491197564658,41.744690719658],[-87.5495897235407,41.7446835551278],[-87.550324496108,41.7446741506909],[-87.5507704148268,41.7446684409697],[-87.5509369885256,41.7446660588331],[-87.5514175702718,41.7446591849612],[-87.5514967924649,41.7446577031656],[-87.5514936737248,41.7443612554104],[-87.5514819969842,41.743571914813],[-87.5514834189008,41.7435151174416],[-87.5514831190762,41.7434582809105],[-87.5514811331561,41.7434014877915],[-87.5514774241389,41.7433447378326],[-87.5514719927953,41.7432880584819],[-87.5514669459176,41.7432479847734],[-87.5514648740045,41.7432315048626],[-87.5514643933415,41.7432288396189],[-87.5514639133779,41.7432261469368],[-87.5514633960754,41.7432234814438],[-87.5514628787394,41.7432207885074],[-87.5514623614369,41.7432181230143],[-87.5514618441378,41.7432154572468],[-87.5514613271617,41.7432127648618],[-87.5514608098627,41.7432100990942],[-87.5514602555543,41.7432074333493],[-87.5514597389848,41.7432047678612],[-87.5514591846765,41.7432021021162],[-87.5514586310676,41.743199408933],[-87.5514580404862,41.7431967429413],[-87.5514574865444,41.7431940771988],[-87.5514568959631,41.743191411207],[-87.5514563420214,41.7431887454645],[-87.5514557514402,41.7431860794727],[-87.551455160859,41.7431834134809],[-87.5514545336382,41.7431807472398],[-87.551453943057,41.743178081248],[-87.5514533158363,41.7431754150068],[-87.5514527249224,41.7431727764558],[-87.5514520977018,41.7431701102146],[-87.5514514338416,41.7431674437241],[-87.5514508069875,41.7431647774854],[-87.5514501794006,41.7431621112418],[-87.5514495152077,41.743159472192],[-87.5514488513477,41.7431568057015],[-87.5514481874877,41.743154139211],[-87.5514475232949,41.7431515001612],[-87.5514468594351,41.7431488336707],[-87.5514461586028,41.7431461943716],[-87.5514454581034,41.7431435276317],[-87.5514447939108,41.7431408885819],[-87.5514440564391,41.7431382490334],[-87.5514433559399,41.7431355822936],[-87.5514426551078,41.7431329429944],[-87.5514419179692,41.7431302760052],[-87.5514412171372,41.743127636706],[-87.5514404800321,41.74312499716],[-87.5514397421943,41.7431223576091],[-87.5514389680833,41.7431197178112],[-87.5514382306121,41.7431170782627],[-87.5514374568341,41.7431144110241],[-87.5514367193629,41.7431117714756],[-87.5514359452522,41.7431091316777],[-87.5514351711415,41.7431064918799],[-87.551434359692,41.7431038792709],[-87.5514335859478,41.7431012394755],[-87.5514327751978,41.7430985994283],[-87.5514320010873,41.7430959596304],[-87.5514311903374,41.7430933195832],[-87.551430342615,41.7430907067273],[-87.5514295318651,41.7430880666801],[-87.5514287211154,41.7430854266328],[-87.5514278733932,41.743082813777],[-87.551427026004,41.7430801734804],[-87.5514261782819,41.7430775606245],[-87.5514253308928,41.7430749203279],[-87.5514244831709,41.743072307472],[-87.5514235991424,41.743069666926],[-87.5514227514205,41.7430670540702],[-87.5514218670592,41.7430644409649],[-87.5514209830309,41.7430618004189],[-87.5514200986697,41.7430591873137],[-87.551419177669,41.7430565739591],[-87.551418293308,41.7430539608538],[-87.5514173723075,41.7430513474992],[-87.5514164513104,41.7430487338701],[-87.5514155303067,41.7430461207899],[-87.5514146093063,41.7430435074353],[-87.5514136883061,41.7430408940806],[-87.5514127306664,41.7430382804766],[-87.5514118093333,41.7430356945627],[-87.5514108516938,41.7430330809587],[-87.5514098940542,41.7430304673546],[-87.5514089364148,41.7430278537506],[-87.551407941803,41.743025267338],[-87.5514069841637,41.7430226537339],[-87.551405989552,41.7430200673212],[-87.5514049952734,41.7430174534678],[-87.5514040006618,41.7430148670552],[-87.5514030060504,41.7430122806425],[-87.551401974766,41.7430096665372],[-87.5514009805211,41.743007080127],[-87.5513999492703,41.7430044934649],[-87.5513989180197,41.7430019068028],[-87.5513978867691,41.7429993201408],[-87.5513968555152,41.7429967337531],[-87.5513958242681,41.7429941468166],[-87.5513947563782,41.7429915599051],[-87.5513936884884,41.7429889729936],[-87.5513926572383,41.7429863863315],[-87.5513915527091,41.7429837991707],[-87.5513904844866,41.7429812396999],[-87.5513894165971,41.7429786527884],[-87.5513883120682,41.7429760656275],[-87.551387243846,41.7429735061567],[-87.5513861393172,41.7429709189959],[-87.551385034822,41.7429683592782],[-87.5513838932876,41.7429657718654],[-87.5513827884261,41.7429632121453],[-87.5513816469253,41.7429606521757],[-87.551380542064,41.7429580924555],[-87.5513794008963,41.7429555050452],[-87.5513782593957,41.7429529450756],[-87.5513771178952,41.742950385106],[-87.5513759397586,41.7429478246127],[-87.551374798255,41.7429452649175],[-87.5513736201152,41.7429427046985],[-87.5513724416427,41.7429401719202],[-87.5513712631367,41.7429376116988],[-87.5513700853637,41.7429350514822],[-87.5513688702518,41.7429325184546],[-87.5513676921125,41.7429299582355],[-87.5513664773339,41.7429273977671],[-87.5513652622223,41.7429248647395],[-87.5513640471109,41.7429223317118],[-87.5513628323325,41.7429197712433],[-87.5513616172212,41.7429172382156],[-87.5513603654706,41.7429147049385],[-87.5513591140864,41.7429121716639],[-87.5513578986091,41.7429096386337],[-87.5513566471917,41.7429070779158],[-87.5513553584689,41.74290457183],[-87.5513541067188,41.7429020385529],[-87.5513528549687,41.7428995052757],[-87.5513515665793,41.7428969717492],[-87.5513502781899,41.7428944382226],[-87.5513489894677,41.7428919321368],[-87.5513477010785,41.7428893986102],[-87.551346375717,41.742886892275],[-87.5513450873281,41.7428843587483],[-87.5513437619668,41.7428818524131],[-87.5513424369386,41.7428793186371],[-87.5513411482169,41.7428768125512],[-87.5513397862165,41.7428743059665],[-87.5513384608556,41.7428717996312],[-87.5513371354948,41.7428692932959],[-87.5513357734947,41.7428667867111],[-87.5513344114946,41.7428642801264],[-87.5513330494947,41.7428617735417],[-87.5513316874949,41.7428592669569],[-87.5513303254951,41.7428567603721],[-87.5513289265231,41.7428542809787],[-87.5513275645236,41.7428517743939],[-87.5513261655518,41.7428492950005],[-87.551324766913,41.7428467881663],[-87.5513233683078,41.7428443087753],[-87.5513219689699,41.7428418293793],[-87.551320533692,41.7428393222957],[-87.551319134724,41.7428368426277],[-87.55131769911,41.7428343632592],[-87.5513162634995,41.7428318836163],[-87.5513148278891,41.7428294039733],[-87.5513133922788,41.7428269243303],[-87.5513119200292,41.742824444438],[-87.5513104840861,41.7428219922357],[-87.5513090118367,41.7428195123433],[-87.5513075395874,41.7428170324509],[-87.5513060670052,41.7428145799992],[-87.5513045947561,41.7428121001067],[-87.5513031221742,41.742809647655],[-87.5513016129529,41.7428071949539],[-87.5513001403712,41.7428047425021],[-87.5512986314798,41.7428022626346],[-87.5512971222622,41.742799809659],[-87.5512956130414,41.7427973569578],[-87.5512940671812,41.7427949040072],[-87.5512925576277,41.7427924787467],[-87.5512910117678,41.7427900257961],[-87.5512895025474,41.7427875730948],[-87.5512879566878,41.7427851201441],[-87.5512864104952,41.7427826946341],[-87.5512848279964,41.742780241434],[-87.5512832818041,41.742777815924],[-87.5512816989725,41.7427753901646],[-87.5512801531134,41.7427729372138],[-87.5512785702821,41.7427705114544],[-87.5512769874475,41.7427680859693],[-87.5512754046197,41.7427656599354],[-87.5512737851493,41.7427632339265],[-87.5512722019854,41.7427608356077],[-87.5512705825153,41.7427584095988],[-87.5512689630452,41.7427559835898],[-87.5512673435753,41.7427535575808],[-87.5512657237725,41.7427511590126],[-87.5512641043028,41.7427487330035],[-87.5512624478608,41.7427463341858],[-87.5512608280584,41.7427439356175],[-87.5512591716167,41.7427415367998],[-87.5512575151751,41.742739137982],[-87.5512558587336,41.7427367391642],[-87.5512542022923,41.7427343403464],[-87.5512525458511,41.7427319415286],[-87.5512508527706,41.7427295424613],[-87.5512491600566,41.7427271433965],[-87.551247466277,41.7427247717675],[-87.5512458098363,41.7427223729495],[-87.5512440797839,41.7427200010735],[-87.551242386704,41.7427176020062],[-87.5512406932913,41.7427152303795],[-87.5512389632393,41.7427128585034],[-87.5512372331874,41.7427104866273],[-87.5512355031357,41.7427081147512],[-87.5512337730874,41.7427057426006],[-87.5512320430326,41.7427033709989],[-87.5512303129812,41.7427009991227],[-87.5512285462906,41.742698626997],[-87.5512267792671,41.7426962823121],[-87.5512250492162,41.7426939104358],[-87.5512232821963,41.7426915654765],[-87.5512215155028,41.7426891936251],[-87.5512197114741,41.7426868486882],[-87.5512179448177,41.7426845040057],[-87.5512161411556,41.7426821590712],[-87.5512143374937,41.7426798141367],[-87.5512125704712,41.7426774694516],[-87.5512107668095,41.742675124517],[-87.5512089261756,41.7426728067738],[-87.5512071225142,41.7426704618392],[-87.5511621449466,41.7426175473888],[-87.5511148085829,41.7425657969119],[-87.5510651483003,41.7425152655292],[-87.5510132005075,41.7424660632575],[-87.5505172087056,41.7420318296019],[-87.5504295957156,41.7419445126929],[-87.5501368810937,41.7416686364053],[-87.5498648333669,41.7413808253564],[-87.5498628086276,41.7413785883905],[-87.5498607842153,41.7413763245326],[-87.5498587232006,41.7413740875937],[-87.549856698092,41.7413718508996],[-87.5498546736834,41.7413695867673],[-87.5498526489414,41.7413673500756],[-87.5498506241996,41.7413651133839],[-87.5498485994251,41.7413628492489],[-87.5498465750499,41.7413606125596],[-87.5498445506388,41.7413583487015],[-87.5498425625394,41.7413561119851],[-87.5498405381318,41.7413538478525],[-87.5498385133908,41.7413516111605],[-87.5498364889836,41.7413493470278],[-87.5498344645764,41.7413470828951],[-87.549832476108,41.7413448464504],[-87.5498304520676,41.7413425823201],[-87.5498284273273,41.741340345628],[-87.5498264395593,41.741338081745],[-87.5498244151528,41.7413358176121],[-87.5498224273851,41.741333553729],[-87.5498204026454,41.7413313170368],[-87.549818414878,41.7413290531536],[-87.5498163904721,41.7413267890205],[-87.5498144027016,41.7413245254117],[-87.5498123782994,41.7413222610042],[-87.5498103901989,41.7413200245616],[-87.5498084024321,41.7413177606783],[-87.549806378027,41.7413154965451],[-87.5498043902605,41.7413132326617],[-87.5498024024942,41.7413109687782],[-87.549800414728,41.7413087048947],[-87.549798426962,41.7413064410112],[-87.5497964391961,41.7413041771277],[-87.5497944147918,41.7413019129942],[-87.5497924270261,41.7412996491106],[-87.549790439264,41.7412973849526],[-87.5497884514953,41.7412951213433],[-87.5497864637301,41.7412928574596],[-87.5497845129372,41.7412905663849],[-87.5497825251723,41.7412883025011],[-87.5497805374075,41.7412860386173],[-87.5497785496429,41.7412837747335],[-87.5497765618783,41.7412815108496],[-87.5497745744509,41.7412792192505],[-87.5497726233219,41.7412769558908],[-87.5497706355578,41.7412746920068],[-87.5497686481275,41.7412724006821],[-87.5497666970022,41.7412701370479],[-87.5497647088721,41.7412678731613],[-87.5497627584471,41.7412655820888],[-87.5497607706837,41.7412633182046],[-87.5497588198926,41.7412610271295],[-87.5497568321328,41.7412587629709],[-87.5497548817084,41.7412564718982],[-87.5497528935758,41.7412542082859],[-87.5497509427853,41.7412519172106],[-87.5497489916612,41.7412496535761],[-87.5497470042324,41.741247362251],[-87.5497450531087,41.7412450986164],[-87.5497431023187,41.7412428075411],[-87.5497411511952,41.7412405439065],[-87.5497392004055,41.7412382528311],[-87.5497372129773,41.7412359615057],[-87.5497352621879,41.7412336704303],[-87.5497333110649,41.7412314067955],[-87.5497313602758,41.74122911572],[-87.5497294094867,41.7412268246444],[-87.5497274587012,41.7412245332944],[-87.5497255075754,41.7412222699339],[-87.5497235567868,41.7412199788582],[-87.5497216426369,41.7412176880324],[-87.5497196918485,41.7412153969566],[-87.5497177410603,41.7412131058809],[-87.5497157902722,41.7412108148051],[-87.5497138394843,41.7412085237292],[-87.549711925335,41.7412062329032],[-87.5497099745473,41.7412039418273],[-87.5497080603983,41.7412016510013],[-87.5497061096109,41.7411993599253],[-87.5497041588237,41.7411970688493],[-87.5497022446751,41.7411947780232],[-87.5497002938881,41.7411924869471],[-87.5496983797398,41.7411901961209],[-87.5496964293194,41.7411879050473],[-87.5496945151714,41.741185614221],[-87.5496926010234,41.7411833233947],[-87.5496906502044,41.7411810048752],[-87.5496887360568,41.7411787140488],[-87.5496868219092,41.7411764232224],[-87.5496849077619,41.741174132396],[-87.5496829573098,41.7411718138789],[-87.5496810431627,41.7411695230524],[-87.5496791290157,41.7411672322258],[-87.5496772152025,41.7411649139585],[-87.5496753010558,41.7411626231319],[-87.5496733869092,41.7411603323053],[-87.5496714730964,41.7411580140379],[-87.5496695589501,41.7411557232112],[-87.5496676451376,41.7411534049437],[-87.5496657309916,41.7411511141169],[-87.5496638171793,41.7411487958494],[-87.549661939672,41.7411465052725],[-87.5496600258634,41.7411441867305],[-87.5496581117179,41.7411418959036],[-87.5496561979029,41.7411395779103],[-87.5496543203961,41.7411372873333],[-87.5496524065847,41.7411349690656],[-87.5496504927734,41.7411326507978],[-87.5496486152671,41.7411303602207],[-87.5496467014561,41.7411280419529],[-87.5496448242836,41.7411257239349],[-87.5496429105056,41.7411234331103],[-87.5496410329671,41.7411211150897],[-87.5496391191566,41.7411187968218],[-87.5496372419847,41.7411164788037],[-87.5496353644793,41.7411141882264],[-87.5496334506693,41.7411118699583],[-87.5496315735011,41.7411095516658],[-87.5496296963265,41.741107233922],[-87.5496278191553,41.7411049159037],[-87.5496259053457,41.7411025976356],[-87.5496240281748,41.7411002796173],[-87.5496221506376,41.7410979615965],[-87.5496202738333,41.7410956435806],[-87.5496183966628,41.7410933255622],[-87.5496165194924,41.7410910075438],[-87.5496146423255,41.741088689251],[-87.549612765152,41.7410863715069],[-87.549610887982,41.7410840534884],[-87.5496090108121,41.7410817354699],[-87.5496071336424,41.7410794174513],[-87.5496052931112,41.7410770996826],[-87.5496034159418,41.741074781664],[-87.5496015391061,41.7410724362046],[-87.5495996619403,41.7410701179115],[-87.5495978214063,41.7410678004171],[-87.5495959442374,41.7410654823983],[-87.5495940674023,41.7410631369388],[-87.5495922268721,41.7410608191699],[-87.5495903497035,41.7410585011511],[-87.5495885095072,41.7410561559414],[-87.549586632339,41.7410538379225],[-87.5495847918093,41.7410515201535],[-87.549582914975,41.7410491746938],[-87.5495810744455,41.7410468569247],[-87.5495792339162,41.7410445391556],[-87.5495773570824,41.7410421936958],[-87.5495755165533,41.7410398759267],[-87.5495736763581,41.7410375307167],[-87.5495718358293,41.7410352129475],[-87.5495699956344,41.7410328677375],[-87.5495681184347,41.7410305222751],[-87.5495662782728,41.7410282045083],[-87.5495644380782,41.7410258592982],[-87.5495625975501,41.7410235415288],[-87.5495607577222,41.7410211963212],[-87.5495589171616,41.7410188511085],[-87.5495570766339,41.741016533339],[-87.54955523644,41.7410141881288],[-87.5495534328847,41.7410118431685],[-87.5495515923574,41.741009525399],[-87.5495497521639,41.7410071801886],[-87.5495479119705,41.7410048349783],[-87.5495461084157,41.7410024900178],[-87.5495442682226,41.7410001448074],[-87.5495424280296,41.740997799597],[-87.5495406241415,41.7409954820772],[-87.5495387839521,41.7409931365923],[-87.5495369437562,41.7409907916562],[-87.5495351402022,41.7409884466956],[-87.5495333000099,41.740986101485],[-87.5495314964527,41.7409837567987],[-87.5495296929024,41.7409814115636],[-87.5495278527105,41.740979066353],[-87.5495260491571,41.7409767213922],[-87.5495242456039,41.7409743764314],[-87.5495224054124,41.7409720312207],[-87.5495206018594,41.7409696862598],[-87.5495187983065,41.7409673412989],[-87.5495169947537,41.740964996338],[-87.5495151548965,41.7409626236864],[-87.549513351344,41.7409602787255],[-87.5495115477917,41.7409579337645],[-87.5495097438764,41.7409555885266],[-87.5495079406874,41.7409532438424],[-87.5495061374691,41.7409508714406],[-87.5495043339173,41.7409485264795],[-87.5495025303656,41.7409461815184],[-87.5495007637861,41.7409438093664],[-87.5494989602347,41.7409414644052],[-87.54949715668,41.7409391197184],[-87.5494953534659,41.740936747042],[-87.5494935499149,41.7409344020808],[-87.5494917830023,41.7409320573694],[-87.5494899797853,41.7409296849674],[-87.5494881762346,41.740927340006],[-87.5494864096562,41.7409249678538],[-87.5494846061058,41.7409226228924],[-87.5494828395276,41.7409202507402],[-87.5494810359775,41.7409179057787],[-87.5494792693995,41.7409155336264],[-87.5494774658496,41.7409131886649],[-87.549475699272,41.7409108165126],[-87.5494739326944,41.7409084443602],[-87.5494721291449,41.7409060993986],[-87.5494703625677,41.7409037272462],[-87.5494685959938,41.7409013548193],[-87.5494668290797,41.740899010382],[-87.5494650254981,41.740896637977],[-87.5494632592911,41.7408942655526],[-87.5494614923774,41.7408919211152],[-87.5494597258009,41.7408895489626],[-87.5494579592278,41.7408871765356],[-87.5494561926482,41.7408848046573],[-87.5494544260721,41.7408824325047],[-87.5494526591657,41.7408800875183],[-87.5494508925865,41.74087771564],[-87.5494491260108,41.7408753434872],[-87.5494473594352,41.7408729713345],[-87.549445629498,41.7408705994316],[-87.5494438629227,41.7408682272788],[-87.5494420963474,41.7408658551259],[-87.5494403297724,41.740863482973],[-87.5494385998324,41.7408611113445],[-87.5494368332609,41.7408587389172],[-87.5494351033245,41.7408563670142],[-87.5494333367499,41.7408539948612],[-87.5494316068137,41.7408516229581],[-87.5494298402394,41.7408492508051],[-87.5494281103035,41.740846878902],[-87.5494263440632,41.7408444793081],[-87.5494246141276,41.740842107405],[-87.5494228475538,41.7408397352518],[-87.5494211176184,41.7408373633486],[-87.5494193876831,41.7408349914454],[-87.5494176580818,41.7408325921013],[-87.5494158915085,41.7408302199481],[-87.5494141615736,41.7408278480448],[-87.5494124320052,41.7408254761439],[-87.549410702038,41.7408230767973],[-87.5494089721035,41.7408207048939],[-87.5494072418027,41.740818332988],[-87.5494055125686,41.7408159336463],[-87.5494037826379,41.7408135614684],[-87.5494020530343,41.7408111623986],[-87.5494003231004,41.7408087904951],[-87.5493985931667,41.7408064185915],[-87.5493968635669,41.7408040192472],[-87.5493951702716,41.7408016475936],[-87.549393440672,41.7407992482492],[-87.5493917103758,41.7407968760686],[-87.5493899811395,41.7407944770011],[-87.5493882881786,41.7407920779066],[-87.5493865582457,41.7407897060029],[-87.5493848286468,41.7407873066584],[-87.5493831353524,41.7407849350046],[-87.5493814057537,41.74078253566],[-87.5493797127934,41.7407801365654],[-87.5493779828612,41.7407777646616],[-87.5493762899011,41.7407753655669],[-87.5493745969412,41.7407729664723],[-87.5493728670094,41.7407705945683],[-87.5493711740497,41.7407681954736],[-87.5493694810901,41.7407657963788],[-87.5493677881307,41.7407633972841],[-87.5493660585331,41.7407609979393],[-87.5493643652402,41.7407586262852],[-87.5493626722778,41.7407562274648],[-87.5493609793222,41.7407538280955],[-87.54935928636,41.740751429275],[-87.5493575934047,41.7407490299057],[-87.5493559004428,41.7407466310851],[-87.5493542074877,41.7407442317157],[-87.5493525145327,41.7407418323463],[-87.5493508215712,41.7407394335257],[-87.5493491286165,41.7407370341562],[-87.5493474356552,41.7407346353356],[-87.549345779339,41.7407322362161],[-87.5493440863779,41.7407298373953],[-87.5493423934204,41.7407274383002],[-87.5493407004629,41.740725039205],[-87.5493390441439,41.7407226403598],[-87.5493373511867,41.7407202412646],[-87.5493356952016,41.7407178149786],[-87.5493340022447,41.7407154158833],[-87.5493323462925,41.7407130170405],[-87.5493306529694,41.7407106179427],[-87.5493289966511,41.7407082190974],[-87.5493273040284,41.7407057925612],[-87.5493256477103,41.7407033937158],[-87.5493239913924,41.7407009948704],[-87.5493222984363,41.740698595775],[-87.5493206424557,41.7406961692144],[-87.5493189861348,41.7406937706433],[-87.5493173298173,41.7406913717978],[-87.5493156371955,41.7406889452615],[-87.5493139808783,41.7406865464159],[-87.549312324895,41.7406841201296],[-87.549310668578,41.7406817212839],[-87.5493090122611,41.7406793224383],[-87.5493073562782,41.7406768961519],[-87.5493056999582,41.7406744975806],[-87.5493040439789,41.7406720710198],[-87.5493023872961,41.7406696721715],[-87.5493007683182,41.7406672461375],[-87.5492991123359,41.740664819851],[-87.5492974560199,41.7406624210052],[-87.5492958000378,41.7406599947186],[-87.5492941803602,41.7406575961228],[-87.5492925243784,41.7406551698362],[-87.5492202447555,41.7405516554604],[-87.5491502106351,41.7404473056294],[-87.5490824223428,41.7403420929062],[-87.5490169155064,41.7402360998672],[-87.5489536901169,41.7401293265161],[-87.5488927824656,41.7400218008219],[-87.5488371203655,41.7399198264097],[-87.5487836650492,41.7398171812359],[-87.5487323792051,41.7397139196604],[-87.548683299462,41.7396100419362],[-87.5486364617797,41.7395056031978],[-87.548591829177,41.7394006306383],[-87.5485384300502,41.7392693626402],[-87.5484877499839,41.7391374819979],[-87.5484398619032,41.7390050166564],[-87.5483947284865,41.73887202125],[-87.5483523493836,41.7387385232226],[-87.5483127978524,41.7386045230778],[-87.5482900185034,41.7385194037932],[-87.5482685971184,41.7384341016801],[-87.5482485706633,41.7383485895488],[-87.5482299021939,41.7382629220336],[-87.5482125909365,41.7381770719614],[-87.5481966739633,41.7380910936487],[-87.5481624906867,41.7378894281364],[-87.548128307248,41.7376877626063],[-87.5481116479702,41.737590582715],[-87.5480955023183,41.7374933514439],[-87.5480852202732,41.7374262438559],[-87.5480218551559,41.7374273141203],[-87.5474962683773,41.7374328866546],[-87.5469453490944,41.7374396555611],[-87.5467057261297,41.7374427629556],[-87.5465181443534,41.7374447843729],[-87.5465440215453,41.7392377244553],[-87.5455111549688,41.739278778084],[-87.5453602288928,41.7392805206506],[-87.5451965156874,41.7392824107692],[-87.5448970716299,41.7392749226624],[-87.544756974754,41.7392753375043],[-87.5447071206936,41.7392754851937],[-87.5444594582156,41.739279273671],[-87.5441547476698,41.7392829694755],[-87.5439032469369,41.7392860190674],[-87.5435522713496,41.7392917335412],[-87.5431683860245,41.7392979824451],[-87.5429482026625,41.7393018872043],[-87.5428096712452,41.7393043436943],[-87.5426643968744,41.7393069196467],[-87.5423646946068,41.7393115617641],[-87.5422546783011,41.7393132654485],[-87.5420564031513,41.7393173887646],[-87.5419680630505,41.7393173841056],[-87.5418495705541,41.7393231268156],[-87.5417353589202,41.7393353589857],[-87.5417425427688,41.7396663329954],[-87.5417448440177,41.7397862199984],[-87.5417497885097,41.7400340097169],[-87.5417559830023,41.7403262105779],[-87.5417611176668,41.7406092387012],[-87.5417661061255,41.7408833191035],[-87.5417720508536,41.7411440416035],[-87.5417754410997,41.7412927235329],[-87.5417810223625,41.7415513301233],[-87.5417866161236,41.7418089213965],[-87.5417953350322,41.7422118449638],[-87.5417971807192,41.7422972603467],[-87.5418054847264,41.74263253399],[-87.5418076208485,41.7427181709117],[-87.5418126859609,41.7429602803566],[-87.5418169912547,41.7431819126188],[-87.5418184430496,41.7432511887828],[-87.5418219811077,41.7434046742029],[-87.5418257394922,41.7435640893757],[-87.5418313427213,41.7438060106654],[-87.5418370199326,41.7440478775685],[-87.5418409672571,41.7442187649277],[-87.5418471644721,41.7444839345077],[-87.5418508866405,41.7446433216836],[-87.5418521356741,41.7447206372338],[-87.5418589919229,41.7447382205439],[-87.5418670171513,41.7447501312041],[-87.5418777541138,41.7447620331002],[-87.5418966720144,41.7447731680577],[-87.5419227316568,41.7447786715026],[-87.5419515915124,41.7447798856771],[-87.5421709719109,41.7447772800557],[-87.5424550372969,41.7447739024616],[-87.542675260989,41.7447712835694],[-87.5427426191518,41.7447706894186],[-87.5430446135032,41.7447680243055],[-87.5430442665509,41.7448485770201],[-87.5430569798817,41.7452048302073],[-87.5430663128833,41.7456379990473],[-87.5430747809514,41.7456956104796],[-87.5442872196758,41.7456713963883],[-87.5454961617402,41.745658028046],[-87.5467061044145,41.7456473951126],[-87.5467259142867,41.7465364482798]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":570686.285556,"geom:bbox":"-87.5514967925,41.7374262439,-87.5417353589,41.7519943793","geom:latitude":41.743036,"geom:longitude":-87.546293,"iso:country":"US","lbl:latitude":41.74285,"lbl:longitude":-87.546564,"lbl:max_zoom":18,"mps:latitude":41.742467,"mps:longitude":-87.545554,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":41.742467,"reversegeo:longitude":-87.545554,"src:geom":"zolk","src:lbl_centroid":"mz","wof:belongsto":[85849559,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"75e30759fb426590946abc909d76f5b2","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024497083,"neighbourhood_id":85849559,"region_id":85688697}],"wof:id":1024497083,"wof:lastmodified":1566608613,"wof:name":"The Bush","wof:parent_id":85849559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867791],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024497107.geojson b/fixtures/microhoods/1024497107.geojson new file mode 100644 index 0000000..bcc1f9f --- /dev/null +++ b/fixtures/microhoods/1024497107.geojson @@ -0,0 +1 @@ +{"id":1024497107,"type":"Feature","bbox":[-87.6592694896921,41.9444664340342,-87.6518433006133,41.9511636669575],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6518500809039,41.9456663203492],[-87.6518539170883,41.9457966098274],[-87.6518589725976,41.9459698339928],[-87.6518636544676,41.9461305124114],[-87.6518721751369,41.9464212764095],[-87.6518801430311,41.9466944006045],[-87.6518839643015,41.9468187819546],[-87.6518851421329,41.9468548105802],[-87.6518864050467,41.9468934467127],[-87.6518909216865,41.9470322340883],[-87.651891457048,41.9470486847046],[-87.651891893533,41.9470620282852],[-87.6518951036374,41.9471602015132],[-87.651899784326,41.9472319506632],[-87.6519032139658,41.9472845210435],[-87.651912937354,41.9474330348891],[-87.6519174737617,41.9475817094911],[-87.6519183993392,41.9476120530762],[-87.651922366931,41.9477410334762],[-87.6519223978371,41.947741790239],[-87.6519272942632,41.9479027432033],[-87.6519310897048,41.948027491274],[-87.6519340605594,41.9481243902992],[-87.65193716607,41.948225663024],[-87.6519408194913,41.9483473191641],[-87.6519453394058,41.9484978281497],[-87.6519533996286,41.9487696429783],[-87.6519571576482,41.9488969805203],[-87.6519589002754,41.9489560243468],[-87.651962330533,41.9490805196802],[-87.6519626471162,41.9490920763369],[-87.6519655315277,41.9491972722291],[-87.6519671649237,41.9492515240106],[-87.6519677778552,41.9492718776241],[-87.6519724626693,41.94943235207],[-87.6519740336341,41.9494863227459],[-87.6519778857272,41.9496186747787],[-87.6519779928067,41.9496839404466],[-87.6519780315949,41.9497074991832],[-87.6519817188839,41.9498282995727],[-87.6519892459695,41.9500748789737],[-87.6519933808299,41.950228423744],[-87.6520035674159,41.9506044411169],[-87.6520140061264,41.9509565502006],[-87.6520201424139,41.9511636669575],[-87.6522620767886,41.9511596930158],[-87.6526377197357,41.9511535215665],[-87.6526543609685,41.9511532481142],[-87.6526564251279,41.9511532142493],[-87.653234840408,41.9511436254375],[-87.6534028461032,41.9511408401014],[-87.6535961368609,41.9511376347995],[-87.6536710048453,41.9511363930878],[-87.653764342871,41.9511349538515],[-87.6537643575776,41.9511349536641],[-87.6538175607513,41.9511341335592],[-87.6538175688413,41.9511341333327],[-87.6538442316466,41.9511337222612],[-87.6544444522753,41.9511244652387],[-87.6550593996842,41.9511149778691],[-87.655059939801,41.9511149695343],[-87.6552318020933,41.9511121417372],[-87.6556525744277,41.951105217639],[-87.6560652356666,41.9510984252691],[-87.656155884668,41.9510969330995],[-87.6562445320155,41.9510955432129],[-87.6563616195594,41.9510937073516],[-87.6564937068556,41.9510916362573],[-87.6567040545964,41.9510883377493],[-87.6568064526828,41.951086731818],[-87.6569845183486,41.951083939048],[-87.657081959033,41.951082410691],[-87.6572789545367,41.9510793203495],[-87.657569463873,41.9510740691167],[-87.6582947246247,41.9510609560134],[-87.6583979979024,41.9510595612706],[-87.6588283952993,41.9510537468673],[-87.6591034483354,41.9510498929738],[-87.6592694896921,41.9510475663803],[-87.6592611891182,41.9508074963021],[-87.6592538375006,41.9505948763695],[-87.6592330269555,41.9497503177199],[-87.6592323470565,41.9497207835385],[-87.6592307742928,41.9496524458978],[-87.6592303019628,41.9496371943622],[-87.659229076747,41.9495976614608],[-87.6592290459856,41.9495966733639],[-87.6592231568925,41.9493810534927],[-87.659218828022,41.9492266935888],[-87.6592150611316,41.9490914981674],[-87.6592143468496,41.9490658564456],[-87.6592133312645,41.94904051619],[-87.6592104036792,41.9489674900578],[-87.6592070113313,41.9488828567453],[-87.6592034544867,41.9487529542135],[-87.6592034545069,41.9487529522927],[-87.6591993979695,41.9486040823952],[-87.6591962215706,41.948487407274],[-87.6591933289949,41.94838116155],[-87.6591895756586,41.9482432568268],[-87.659187604824,41.9481708392053],[-87.6591872241648,41.9481487726775],[-87.6591856779467,41.9480592210378],[-87.6591824686795,41.9478733089506],[-87.6591755506198,41.947622759021],[-87.6591731842068,41.9475370554319],[-87.6591706817903,41.9474464323156],[-87.6591654629955,41.9472544439723],[-87.659166929028,41.947201790309],[-87.6591684126822,41.9471485105193],[-87.6591707758216,41.9470636365536],[-87.6591710810693,41.9470526675307],[-87.6591707243929,41.9470389317473],[-87.6591697995112,41.9470033464953],[-87.6591641894294,41.9467926408542],[-87.6591641141834,41.9467896997134],[-87.6591612450656,41.9466783056769],[-87.6591593114461,41.9466032335021],[-87.659158185597,41.9465424145742],[-87.6591565237587,41.9464526421445],[-87.6591545073862,41.9463427909659],[-87.6591539080879,41.9463101472229],[-87.6591521897219,41.9462447899997],[-87.6591516586312,41.9462245823347],[-87.6591505594872,41.9461827559871],[-87.6591479252061,41.9460825347368],[-87.6591443377426,41.9459813400033],[-87.6591388574101,41.945826747945],[-87.6591375887549,41.9457907891002],[-87.6591369891951,41.9457738010918],[-87.6591331977636,41.9456661507641],[-87.6591290736867,41.945548207679],[-87.6591282129428,41.94552342402],[-87.6591254073284,41.9454426436839],[-87.6591233385646,41.9453741241563],[-87.6591215756444,41.9453157210476],[-87.6590733031727,41.945315581365],[-87.6589716991981,41.9453153007641],[-87.6587727731283,41.9453182358808],[-87.6585143125514,41.9453220427485],[-87.6584415431173,41.945323099638],[-87.6583830741206,41.9453239485661],[-87.657941117664,41.9453313612973],[-87.6576745578822,41.9453358436513],[-87.657653914426,41.9453361906024],[-87.6571322980692,41.9453451390554],[-87.6568505347823,41.945347932271],[-87.6566987354184,41.9453513741664],[-87.6565352387255,41.9453550668835],[-87.656535235785,41.9453550668662],[-87.6563942998161,41.9453563317455],[-87.6562546163569,41.9453575816101],[-87.6560962814278,41.9453589979049],[-87.6560931778796,41.9453590366778],[-87.6560899655104,41.9453590770041],[-87.6559135874405,41.9453606267333],[-87.6558250081455,41.9453614426892],[-87.6558249974775,41.9453614434495],[-87.6557739032435,41.945364895467],[-87.6557546599679,41.9453708938152],[-87.6557073334643,41.9453856607525],[-87.6556565957614,41.9454089664638],[-87.6555681479357,41.9454495941285],[-87.6555037436592,41.9454791527393],[-87.6554858822995,41.9454873504554],[-87.6552297225224,41.9456050157191],[-87.6552130057107,41.9455842193033],[-87.6551085598328,41.9454542725162],[-87.6549814246785,41.9452970617325],[-87.6549814148795,41.9452970498745],[-87.6548153144393,41.9450915149583],[-87.6548153122602,41.9450915124756],[-87.6546802905504,41.9449245341883],[-87.6545717206804,41.9447902255686],[-87.6545369201786,41.9447471746887],[-87.6542449698337,41.9444664500496],[-87.654244953095,41.9444664340342],[-87.6542532204035,41.944715957232],[-87.6542559758017,41.944808958748],[-87.6542615813721,41.9450007539992],[-87.654264706896,41.9451065416195],[-87.6542681781803,41.9452240158702],[-87.6542712559308,41.9453780901124],[-87.6542716158343,41.9453960638217],[-87.654271615073,41.945396066287],[-87.6540441662096,41.9454015017616],[-87.6539727315829,41.9454030873115],[-87.6538301437046,41.9454054449118],[-87.6538115988318,41.9454057487079],[-87.6537061935619,41.9454074760572],[-87.6536902541046,41.9454077466837],[-87.6536693473262,41.945408102062],[-87.6536250152802,41.9454088291813],[-87.6535075372672,41.945410781799],[-87.6534948758459,41.9454109900306],[-87.6534658956463,41.9454114663356],[-87.6533072824918,41.9454141070924],[-87.6530593477699,41.9454177022232],[-87.6529357772366,41.9454194968626],[-87.6528686497834,41.9454204719649],[-87.6526868845474,41.9454227122988],[-87.6524959953866,41.9454251021355],[-87.6524679035802,41.9454254443251],[-87.6524494040108,41.9454256694108],[-87.6523594721748,41.9454268031537],[-87.6522640905521,41.9454280049363],[-87.652006608783,41.9454311912726],[-87.6519831739882,41.9454318002747],[-87.6518433006133,41.9454354322077],[-87.6518433482607,41.9454364116259],[-87.6518433645904,41.9454367421261],[-87.6518467287639,41.9455517424418],[-87.6518500809039,41.9456663203492]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":385564.690497,"geom:bbox":"-87.6592694897,41.944466434,-87.6518433006,41.951163667","geom:latitude":41.948213,"geom:longitude":-87.655556,"iso:country":"US","lbl:latitude":41.94935,"lbl:longitude":-87.657274,"lbl:max_zoom":18,"mps:latitude":41.948281,"mps:longitude":-87.655556,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":41.948281,"reversegeo:longitude":-87.655556,"src:geom":"zolk","src:lbl_centroid":"mz","wof:belongsto":[85829473,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e36cdda552c279f446208af44eebc36d","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024497107,"neighbourhood_id":85829473,"region_id":85688697}],"wof:id":1024497107,"wof:lastmodified":1566608625,"wof:name":"Wrigleyville","wof:parent_id":85829473,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865757],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024497109.geojson b/fixtures/microhoods/1024497109.geojson new file mode 100644 index 0000000..7a31108 --- /dev/null +++ b/fixtures/microhoods/1024497109.geojson @@ -0,0 +1 @@ +{"id":1024497109,"type":"Feature","bbox":[-87.707218761193,41.9174017102323,-87.6885959648927,41.9247788849171],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7069319934366,41.9174018835622],[-87.7069111962888,41.9174019855284],[-87.7066618756867,41.9174032735585],[-87.7059555247675,41.9174077108263],[-87.7055608120398,41.9174098026933],[-87.7052838680326,41.9174146619968],[-87.705253537466,41.9174152016376],[-87.7052100526899,41.9174159752957],[-87.7050744645841,41.9174183473905],[-87.704670782094,41.9174212021559],[-87.7046093641723,41.917421632891],[-87.7044750007335,41.917422574928],[-87.7041031553254,41.9174252524394],[-87.7039512082905,41.9174269226955],[-87.7037934936274,41.9174286483956],[-87.7036916122077,41.9174297785741],[-87.7036126303724,41.917430654174],[-87.7033999383483,41.9174321722161],[-87.7032298737222,41.9174333856471],[-87.7031903979651,41.9174336638012],[-87.7031414036194,41.917434028834],[-87.7031274232403,41.9174341329496],[-87.7025926356943,41.9174352130288],[-87.702438249932,41.9174391670022],[-87.7024175602437,41.9174396973935],[-87.702280239674,41.9174432172038],[-87.7021622012866,41.9174442199072],[-87.7020888589148,41.9174448428022],[-87.7019936810543,41.917445640325],[-87.7018644317862,41.9174467226835],[-87.7017972335055,41.9174469313225],[-87.7016580977714,41.9174473633005],[-87.7015600690214,41.9174476436842],[-87.701522373258,41.9174477515859],[-87.7011948254199,41.9174511584704],[-87.7010609255149,41.9174522546616],[-87.7009724847425,41.9174529742748],[-87.7008283932256,41.9174541463392],[-87.7008255306977,41.9174541766742],[-87.7008048940427,41.917454395048],[-87.7005802268811,41.9174569113255],[-87.7004634803847,41.9174571995901],[-87.7003413169755,41.9174574866889],[-87.6999938953849,41.9174610132988],[-87.6998859469639,41.9174621058129],[-87.6997800643701,41.9174631805351],[-87.6997014855257,41.9174640545703],[-87.699444252349,41.9174669149818],[-87.6993441662055,41.9174682874913],[-87.6993095656524,41.9174687616453],[-87.6990148986808,41.9174728383729],[-87.6989001700831,41.9174741611648],[-87.6987742914742,41.9174756126737],[-87.6987619393218,41.9174756978135],[-87.6987414794157,41.9174758388572],[-87.6985989675959,41.9174769136709],[-87.698422981732,41.9174782398287],[-87.6983255768462,41.917479146859],[-87.6982327684824,41.9174800111734],[-87.6980812911964,41.917481414185],[-87.6978291175262,41.9174837712533],[-87.6977155558472,41.9174848325807],[-87.6976176239998,41.9174857454237],[-87.6973539508221,41.917488272688],[-87.6973236381941,41.917488513133],[-87.697200566217,41.9174894894405],[-87.6969554861618,41.9174914201137],[-87.6967690857933,41.9174937628527],[-87.6966580557249,41.9174951843138],[-87.6964821909985,41.9174974003173],[-87.6963821764143,41.9174986603235],[-87.696225865768,41.9175007105281],[-87.6960874726601,41.9175025257116],[-87.6959752837027,41.9175029507861],[-87.6958824568864,41.9175033002017],[-87.6957472814314,41.9175038095704],[-87.6952136307158,41.9175080336454],[-87.6949166009895,41.9175106899108],[-87.6948330055765,41.9175118236102],[-87.6947522176588,41.9175129190754],[-87.6946041999733,41.9175149034227],[-87.6944852607724,41.9175164980505],[-87.6943356499263,41.9175179663286],[-87.6942562705451,41.9175187454642],[-87.6941553863013,41.917518632613],[-87.6940796368667,41.9175185479164],[-87.6939289561743,41.9175183862225],[-87.6938336430714,41.9175182840786],[-87.6937385038503,41.9175190560378],[-87.6932146863837,41.9175233044633],[-87.6929806914515,41.9175253276902],[-87.6926110025326,41.9175285230899],[-87.6925919678273,41.917528664953],[-87.6925908941378,41.9175286726827],[-87.6925738534535,41.9175288133208],[-87.6924099571571,41.917530166166],[-87.69230594275,41.9175314186814],[-87.692031390151,41.9175347168355],[-87.6915901586615,41.9175387472787],[-87.6913177290125,41.9175412350666],[-87.691246009738,41.9175418927663],[-87.6908465013582,41.9175455551386],[-87.6907308894141,41.9175464531899],[-87.6906265567892,41.9175472636007],[-87.6904691345425,41.9175490069364],[-87.690432793017,41.9175494093927],[-87.6902892631978,41.9175509923396],[-87.6900228728883,41.9175524104405],[-87.6898565486314,41.9175538648629],[-87.6896283401888,41.9175558749909],[-87.6896029497523,41.9175560918694],[-87.689599580185,41.9175561207285],[-87.6895698066603,41.9175564195031],[-87.6895131822277,41.9175570043274],[-87.6895125587445,41.9175570008315],[-87.6889688017274,41.9175625653889],[-87.6886653081636,41.9175629227819],[-87.6885959648927,41.9175630043521],[-87.6886863164393,41.9176178594436],[-87.6888578011964,41.9177219932662],[-87.6889816462947,41.917800506674],[-87.6890403130207,41.9178376990991],[-87.6891284315995,41.9178893544389],[-87.6892134129878,41.9179391710423],[-87.6895136341169,41.9181151607674],[-87.6899077437089,41.9183558433259],[-87.6904387141355,41.9186806309058],[-87.6904512108732,41.918688275493],[-87.6904512137932,41.9186882774303],[-87.6905140742103,41.9187268597533],[-87.6908457564804,41.9189304407885],[-87.6912696634176,41.9191906321855],[-87.6913198174162,41.9192205716915],[-87.6913320470114,41.9192278724834],[-87.6915779332743,41.9193746546098],[-87.6916253259544,41.9194033806931],[-87.6917610220015,41.9194856299196],[-87.6919021002539,41.9195711414777],[-87.6919353624257,41.9195914243626],[-87.6919953189709,41.9196279849915],[-87.6922745378648,41.9197982480922],[-87.692607093123,41.920001475434],[-87.6926071117487,41.9200014867893],[-87.6927122790207,41.9200653417583],[-87.6927892989294,41.9201121058068],[-87.6929972948087,41.9202383936587],[-87.6931037824801,41.9203027117217],[-87.6931466668708,41.9203286140222],[-87.6933532780521,41.9204534058603],[-87.693353289741,41.920453412786],[-87.6935445381734,41.9205715198815],[-87.6937188110604,41.9206784484362],[-87.6938726735763,41.9207728533883],[-87.6939599047168,41.9208263754676],[-87.6940374182312,41.9208739347799],[-87.6944234351034,41.9211078607967],[-87.6946857245889,41.9212675230198],[-87.6947320888746,41.9212957462132],[-87.6948719669889,41.9213817647183],[-87.6953774484534,41.9216926088606],[-87.6954130967034,41.9217145269266],[-87.6954454142524,41.9217343968476],[-87.6955902342759,41.9218211880833],[-87.6956673775926,41.9218674201445],[-87.6957875249594,41.9219394246006],[-87.6958777577464,41.921994636959],[-87.695951506233,41.9220397624444],[-87.6961534113476,41.9221633049357],[-87.6961568411947,41.922165403544],[-87.6961568558073,41.9221654121322],[-87.6964399059723,41.9223372807148],[-87.6967143132309,41.922504169576],[-87.6967174641467,41.9225063862692],[-87.6967192393881,41.9225076351302],[-87.6967250364719,41.9225110942617],[-87.6967436912584,41.9225222248146],[-87.6968209246469,41.9225693599964],[-87.6970593415861,41.9227161506727],[-87.6971745297543,41.9227870704861],[-87.6973615723136,41.9229065839467],[-87.6973967416638,41.9229290558195],[-87.6976811590608,41.9231107861633],[-87.6977004216452,41.9231226147631],[-87.6977447456048,41.9231498317551],[-87.6979741009529,41.9232897666018],[-87.6983423987695,41.923514470778],[-87.6983424078956,41.9235144768658],[-87.6986437904421,41.9236958565383],[-87.6987643329309,41.9237684215185],[-87.6988668665442,41.9238320781698],[-87.6991233581505,41.923991316451],[-87.6991631834448,41.9240160412598],[-87.6992007961061,41.9240390030185],[-87.699381422509,41.9241492711327],[-87.6996022222188,41.9242845808498],[-87.6996633931826,41.924322067317],[-87.6999060558912,41.9244716493501],[-87.7001385525329,41.9246163449687],[-87.7004046883802,41.9247788849171],[-87.700412796717,41.9247787891077],[-87.700458175139,41.9247782568546],[-87.7006679071788,41.9247757976949],[-87.7007441805229,41.9247749031749],[-87.7007546148086,41.9247747809133],[-87.7007923281111,41.9247743385707],[-87.7010588185016,41.9247738853691],[-87.7014223642475,41.9247714558553],[-87.7014241032106,41.9247714440205],[-87.701428072098,41.9247714175644],[-87.7015381324909,41.9247705138883],[-87.7016467313511,41.9247696223734],[-87.7017082504073,41.9247691172257],[-87.7019110901201,41.9247670009746],[-87.7020544384107,41.9247655051586],[-87.7021343230448,41.924764661128],[-87.7023183354203,41.9247627167273],[-87.7028522152596,41.9247570729444],[-87.70290826181,41.9247566619665],[-87.7030191668071,41.9247558487743],[-87.7030580875318,41.9247555602293],[-87.7031063359427,41.9247552023972],[-87.7036900451415,41.9247486901768],[-87.7038442250882,41.9247472358804],[-87.7039568496707,41.9247461738012],[-87.7041119665581,41.9247451394824],[-87.7046432587524,41.924741595575],[-87.7048109959453,41.9247404762838],[-87.7049982409392,41.9247392263997],[-87.7053672073785,41.9247360308552],[-87.7057945383976,41.9247316986809],[-87.7058415784141,41.9247314299662],[-87.7058837639481,41.9247311884916],[-87.7062249127268,41.9247280401516],[-87.7062260925199,41.924728016683],[-87.7063919583667,41.9247246988106],[-87.7066054777935,41.9247224341698],[-87.7068707764939,41.9247168495767],[-87.7068707842129,41.9247168493444],[-87.7069150206903,41.9247159180797],[-87.707218761193,41.9247163609812],[-87.7072140397925,41.9245210253357],[-87.7072128510346,41.9244718302372],[-87.707211005379,41.9244148050217],[-87.7072048298527,41.9242240283787],[-87.707199936724,41.9240747879305],[-87.7071848572032,41.9236121925899],[-87.7071801336117,41.9234696728387],[-87.7071787185937,41.923426973455],[-87.7071686258933,41.9232674892446],[-87.7071676552123,41.9232272629101],[-87.7071595542495,41.9228920045034],[-87.7071541438022,41.9226681398894],[-87.7071514658971,41.9225935698375],[-87.7071509587712,41.9225794436304],[-87.7071428370368,41.9223458735268],[-87.7071425936668,41.9223388579536],[-87.7071306587603,41.9219812559382],[-87.7071185656696,41.9216398052887],[-87.7071154422977,41.9215364312967],[-87.7071128833067,41.921451736774],[-87.7071071031982,41.921261717397],[-87.7071071029113,41.9212617091627],[-87.7070947915324,41.9210462843168],[-87.7070929939661,41.9210148717598],[-87.7070847514635,41.9208974405179],[-87.7070782867079,41.9208053333783],[-87.7070744971554,41.9206628510305],[-87.707067656221,41.9204058120527],[-87.7070406983061,41.9193929375565],[-87.7070344296318,41.9192250339309],[-87.7070299399186,41.9191045317441],[-87.7070022047396,41.9183601632919],[-87.7070018696824,41.9183506153874],[-87.706967427951,41.9174017102323],[-87.7069319934366,41.9174018835622]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000092,"geom:area_square_m":846966.494421,"geom:bbox":"-87.7072187612,41.9174017102,-87.6885959649,41.9247788849","geom:latitude":41.92056,"geom:longitude":-87.700346,"iso:country":"US","lbl:latitude":41.92111,"lbl:longitude":-87.701449,"lbl:max_zoom":18,"mps:latitude":41.92111,"mps:longitude":-87.701449,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Palmer Square"],"reversegeo:latitude":41.92111,"reversegeo:longitude":-87.701449,"src:geom":"zolk","wof:belongsto":[85865755,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a2bd2af48089f141e9b00157da99a79b","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024497109,"neighbourhood_id":85865755,"region_id":85688697}],"wof:id":1024497109,"wof:lastmodified":1566608625,"wof:name":"Palmer Square","wof:parent_id":85865755,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783501],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024497111.geojson b/fixtures/microhoods/1024497111.geojson new file mode 100644 index 0000000..341967b --- /dev/null +++ b/fixtures/microhoods/1024497111.geojson @@ -0,0 +1 @@ +{"id":1024497111,"type":"Feature","bbox":[-87.5804033760904,41.7233088303425,-87.5704982327011,41.7298271766021],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5797602001497,41.7233152131953],[-87.5796733788717,41.7233161918466],[-87.5796370654045,41.7233166010493],[-87.5793146177308,41.7233202730879],[-87.5788710372709,41.7233253229912],[-87.5781385696732,41.7233392586152],[-87.5779263957137,41.7233432944123],[-87.5773932967959,41.7233472646056],[-87.5704982327011,41.7234338000867],[-87.5705206880553,41.7240902753768],[-87.5705267270465,41.7243643380699],[-87.5705399859335,41.7248310933488],[-87.5705399858946,41.7248310966417],[-87.570561945476,41.7256286812582],[-87.5705723181355,41.7259936612233],[-87.5705754780323,41.7260947233562],[-87.5705780602569,41.7261772940501],[-87.5705801211852,41.7262432035867],[-87.5705852886023,41.7264084676593],[-87.5705951886993,41.7267174056037],[-87.5706018873144,41.7269687191918],[-87.5706056609101,41.7270769343109],[-87.5706170144707,41.7274025305024],[-87.5706259284369,41.7277650645455],[-87.5706272053061,41.7278169890665],[-87.5706279987188,41.7278518388449],[-87.5706314669665,41.7280042106212],[-87.5706361974131,41.7282120099257],[-87.5706531621911,41.7287909250181],[-87.5706710412941,41.7292863642119],[-87.5706748718498,41.7294410087221],[-87.570680187185,41.7296555894779],[-87.570682996012,41.7298271766021],[-87.5711085972938,41.7298212896604],[-87.5712844975935,41.7298188561136],[-87.5713663958401,41.7298177293246],[-87.5715628065342,41.7298150260265],[-87.5718953642783,41.7298103618185],[-87.5724967893535,41.7298019181166],[-87.572769304099,41.7297985415393],[-87.5729832150394,41.7297957639368],[-87.5731093180092,41.7297941267979],[-87.5735528906743,41.7297883875722],[-87.5736311975768,41.7297872551805],[-87.5737158672408,41.7297860308769],[-87.573909011472,41.7297831943961],[-87.5740493209756,41.7297811333648],[-87.5742240414901,41.7297789427417],[-87.5743229627324,41.7297777023698],[-87.574450689766,41.7297760882079],[-87.57457099746,41.7297745673408],[-87.5746480983076,41.7297732789225],[-87.5748456628235,41.7297699777237],[-87.5749921785428,41.7297680166085],[-87.5750815755883,41.7297668200279],[-87.5752933019738,41.72976427591],[-87.575330191004,41.7297638326402],[-87.5753497285784,41.7297635754001],[-87.575534860305,41.7297611372387],[-87.5761468083815,41.7297531225418],[-87.5761468208397,41.7297531223495],[-87.5761577193169,41.7297529737988],[-87.5762749655073,41.7297513763612],[-87.5764564994103,41.7297491108746],[-87.5767542461096,41.7297453943248],[-87.5769957903218,41.7297423861365],[-87.5772114448642,41.7297396609864],[-87.5772835379503,41.7297387497668],[-87.5777277412978,41.7297321837851],[-87.5779662579312,41.7297288915653],[-87.578187032614,41.7297258445013],[-87.5784261940927,41.7297225426663],[-87.578477177544,41.7297218608432],[-87.5785808911105,41.7297204737494],[-87.5787385318128,41.7297183364123],[-87.5788860116323,41.7297163365954],[-87.5791851098439,41.72971221701],[-87.57940963579,41.729709237498],[-87.5794967499635,41.7297078833663],[-87.5795623550933,41.7297068633861],[-87.5797025999124,41.7297046981514],[-87.5797950671396,41.729703442022],[-87.5797950839968,41.7297034415837],[-87.5800634827426,41.7296998176316],[-87.5804033760904,41.7296957004977],[-87.5804020212721,41.7296106539454],[-87.5804011794186,41.7295577894409],[-87.5803989495258,41.7294407316305],[-87.5803954466526,41.7292568124221],[-87.5803879798246,41.7289679604647],[-87.5803836823854,41.7287869902851],[-87.5803796182327,41.7286160043341],[-87.5803710547046,41.7283146011859],[-87.5803686793944,41.7281999941648],[-87.580364667949,41.7280064601826],[-87.5803622085454,41.7278743974121],[-87.580359626004,41.7277362217014],[-87.5803509720416,41.7274226232913],[-87.5803420366124,41.7270898723891],[-87.5803411737151,41.7270447436637],[-87.580339745502,41.726970005324],[-87.5803375403878,41.7268560758641],[-87.5803324224383,41.7265790559103],[-87.5803312366504,41.7265242156893],[-87.5803266384456,41.7263091327603],[-87.5803236828595,41.7261834922316],[-87.5803233931965,41.7261711856611],[-87.5803227676922,41.7261537897583],[-87.58031902301,41.7260497041948],[-87.580312269212,41.7258628384107],[-87.5803065611204,41.725573154205],[-87.5802967393427,41.7251599525282],[-87.5802967394293,41.7251599451191],[-87.5802934646645,41.7248981077234],[-87.5802851620859,41.7245744121138],[-87.5802782441305,41.7242386179254],[-87.5802488926022,41.7233088303425],[-87.5797602001497,41.7233152131953]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":574319.797538,"geom:bbox":"-87.5804033761,41.7233088303,-87.5704982327,41.7298271766","geom:latitude":41.726565,"geom:longitude":-87.57546,"iso:country":"US","lbl:latitude":41.726307,"lbl:longitude":-87.576273,"lbl:max_zoom":18,"mps:latitude":41.726567,"mps:longitude":-87.57546,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":41.726567,"reversegeo:longitude":-87.57546,"src:geom":"zolk","src:lbl_centroid":"mz","wof:belongsto":[85867531,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e025328e18dab1af79c3cff6e6317be3","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024497111,"neighbourhood_id":85867531,"region_id":85688697}],"wof:id":1024497111,"wof:lastmodified":1566608626,"wof:name":"Pill Hill","wof:parent_id":85867531,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85890763],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1024608979.geojson b/fixtures/microhoods/1024608979.geojson new file mode 100644 index 0000000..b1c862e --- /dev/null +++ b/fixtures/microhoods/1024608979.geojson @@ -0,0 +1 @@ +{"id":1024608979,"type":"Feature","bbox":[-87.6010319718918,41.68587488289115,-87.576643094557,41.70340420698537],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59009319019044,41.70340420698537],[-87.58893285956145,41.70266784853315],[-87.58299698666816,41.70251180026356],[-87.58140851364034,41.70286143449836],[-87.576643094557,41.69536438365804],[-87.57664309455701,41.68687984219404],[-87.58717717884655,41.6876854878085],[-87.59440891131513,41.68749818621448],[-87.59545395935973,41.68587488289115],[-87.6010319718918,41.68731183347267],[-87.6010319232733,41.687311928013],[-87.60095054690206,41.68746819738385],[-87.60094266680007,41.68748332976885],[-87.60081801902163,41.6877226904416],[-87.60069388790558,41.68796105834353],[-87.60069286418828,41.68796288891302],[-87.600596989538,41.6881342665337],[-87.6005950377515,41.6881378181527],[-87.6004726142013,41.6883606217792],[-87.6003424325979,41.6886017043492],[-87.60034243231719,41.68860170480586],[-87.60029586616865,41.68867745824208],[-87.60029274784824,41.68868349782748],[-87.6002927478443,41.6886834978351],[-87.60029032856424,41.68868818280566],[-87.60008315197558,41.68908938324265],[-87.59999048570829,41.68926882885424],[-87.59995898331034,41.68932738287497],[-87.59973683362425,41.68974029130352],[-87.59973682619359,41.68974030511477],[-87.59962628841566,41.68993528433575],[-87.5995296172679,41.6901058040027],[-87.5995296115302,41.69010581412344],[-87.59945011435119,41.69024603849698],[-87.59939448256556,41.69034440255196],[-87.59917489277456,41.69073266164831],[-87.5990944989797,41.69087809868283],[-87.5990854193904,41.6908945241861],[-87.59908541693895,41.69089452862087],[-87.5988560968612,41.69130937639702],[-87.5987088201172,41.69160065128009],[-87.59845192669201,41.69207789434675],[-87.59834845966277,41.69227019662321],[-87.59830571541785,41.69233951971009],[-87.59829040585664,41.69236816095626],[-87.59823889163643,41.69246453613378],[-87.59804070866984,41.69283530052856],[-87.59792008172703,41.69306096874407],[-87.5975238841126,41.69379297972234],[-87.59724716531636,41.69430873309063],[-87.59700628142531,41.6947805053214],[-87.5969701358763,41.69485129583429],[-87.59679781770579,41.69517602562135],[-87.5967509615788,41.69525943581388],[-87.59660417404119,41.69552073433975],[-87.59640624313234,41.69587285234356],[-87.59616655623996,41.69631768324381],[-87.5957073798508,41.6969571256844],[-87.59482326148893,41.69828718640284],[-87.59477668648182,41.69836000307259],[-87.59475034726721,41.6983969063478],[-87.59436552781351,41.69897584429195],[-87.59415872516519,41.69920130400625],[-87.59368755777196,41.69979031154411],[-87.59332544341943,41.70020218133065],[-87.59313265409435,41.70041929716177],[-87.59307047261393,41.70048932451635],[-87.59287837273587,41.70070310477924],[-87.59271744916829,41.70088053123123],[-87.59256981477343,41.70103581408319],[-87.59241143269742,41.70119901343069],[-87.59222487133673,41.70138933685779],[-87.59205441784161,41.70156082804019],[-87.59186438275054,41.7017473687345],[-87.5916342286548,41.70196370464499],[-87.5913930912042,41.70219036192805],[-87.59122606684352,41.70234694486694],[-87.59099055568632,41.70256732978996],[-87.59079729441378,41.70274726145885],[-87.59038988401865,41.70312718698207],[-87.59009319019044,41.70340420698537]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000293,"geom:area_square_m":2703796.100948,"geom:bbox":"-87.6010319719,41.6858748829,-87.5766430946,41.703404207","geom:latitude":41.693965,"geom:longitude":-87.587434,"iso:country":"US","lbl:latitude":41.695154,"lbl:longitude":-87.587434,"lbl:max_zoom":18,"mps:latitude":41.695154,"mps:longitude":-87.587434,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":41.695154,"reversegeo:longitude":-87.587434,"src:geom":"mz","wof:belongsto":[1024497067,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"57582e928579d52b9b225e5f4e77def3","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":1024608979,"neighbourhood_id":1024497067,"region_id":85688697}],"wof:id":1024608979,"wof:lastmodified":1566610043,"wof:name":"Harborside International Golf Course","wof:parent_id":1024497067,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041491317.geojson b/fixtures/microhoods/1041491317.geojson new file mode 100644 index 0000000..2ce904d --- /dev/null +++ b/fixtures/microhoods/1041491317.geojson @@ -0,0 +1 @@ +{"id":1041491317,"type":"Feature","bbox":[-118.45943343894945,34.07919572025783,-118.42279074633139,34.13293982566629],"geometry":{"type":"Polygon","coordinates":[[[-118.42301053803027,34.07994005370318],[-118.42302215055194,34.07995071424368],[-118.42303398316088,34.0799612043987],[-118.42304318911827,34.07996908502644],[-118.423045739413,34.07997145199696],[-118.42304903937854,34.07997400470275],[-118.42305830235225,34.07998166164818],[-118.4230680423108,34.07998943725061],[-118.42307060927165,34.07999163097486],[-118.42307661987523,34.0799961249858],[-118.42308346236672,34.08000140015495],[-118.42309634959778,34.08001099225361],[-118.42310276124095,34.08001559955503],[-118.42310873287398,34.0800203507242],[-118.42312198931262,34.08002957898771],[-118.42313524305632,34.0800384627622],[-118.42315015059847,34.0800476850714],[-118.42316340344385,34.08005622584403],[-118.42316994286834,34.08005982006927],[-118.42317771630127,34.08006448685889],[-118.42318859906945,34.08007078385088],[-118.42319155754318,34.08007261394672],[-118.4232061735111,34.08008064844724],[-118.42320627823572,34.0800807068082],[-118.4232063386134,34.08008073920513],[-118.42320645969544,34.08008080576478],[-118.42320662088063,34.08008089066163],[-118.4232208102821,34.08008850428732],[-118.42323550312686,34.08009608897194],[-118.42325035407514,34.08010345863001],[-118.4232653559404,34.08011061177355],[-118.42328050692598,34.08011754617048],[-118.42329579984535,34.0801242588448],[-118.42330734376243,34.08012911408142],[-118.42331073703191,34.08013058908514],[-118.42331411305281,34.08013190900081],[-118.42332679621427,34.08013701381729],[-118.42333259765063,34.08013924584105],[-118.42334217357528,34.08014318780955],[-118.4233487416499,34.0801453473379],[-118.42335801716195,34.08014875318185],[-118.42336518003026,34.08015128769472],[-118.42336698684005,34.08015203139428],[-118.42474531044385,34.08063300665251],[-118.42521433089935,34.08079671030993],[-118.42522966693787,34.0808019333864],[-118.42524578091744,34.08080714827826],[-118.42526200269485,34.08081213028908],[-118.42527070220758,34.08081465882438],[-118.42527751390486,34.0808168355212],[-118.42529404919428,34.08082124314197],[-118.42531058358541,34.08082565001847],[-118.4253271161799,34.08082971315399],[-118.42533613558152,34.08083155590917],[-118.42534454169979,34.0808334637976],[-118.42535966507768,34.08083666107238],[-118.42536182977742,34.08083714822264],[-118.42536484797091,34.08083770204556],[-118.42537813060659,34.08084030513191],[-118.42539502791708,34.08084336010929],[-118.4254017040667,34.08084446583471],[-118.42541141228953,34.08084624768034],[-118.42541898996352,34.08084722324605],[-118.42542900130282,34.08084873050034],[-118.42544606749655,34.08085104442603],[-118.4254515546331,34.08085170696233],[-118.42546263602367,34.08085328022872],[-118.42547778513453,34.08085465844376],[-118.42548033103812,34.08085492824966],[-118.42548495752447,34.0808553501866],[-118.42549732895993,34.08085659263912],[-118.42551549828487,34.08085790287151],[-118.4255293637693,34.08085871919057],[-118.42553198147202,34.08085888126767],[-118.42553267336353,34.08085891404023],[-118.42554853293113,34.08085984775929],[-118.42555841831756,34.080859999598],[-118.42556652169469,34.08086026515872],[-118.42558380887401,34.08086058137037],[-118.42559755841997,34.08086063284372],[-118.4256013763277,34.08086069148646],[-118.42560496275345,34.08086060421066],[-118.4256183904192,34.08086045860586],[-118.42563567220863,34.08086002111774],[-118.4256440048395,34.08085968909141],[-118.42565255784105,34.08085948095376],[-118.42566357786176,34.08085875424641],[-118.42566948838919,34.08085843261912],[-118.42598659727776,34.08083991228534],[-118.42700623812581,34.08077578005541],[-118.42702940747363,34.0807743522653],[-118.42705094727751,34.08077286346482],[-118.42705868707839,34.08077221504339],[-118.42707050899114,34.08077135308756],[-118.42708379550169,34.08076992348674],[-118.42709105166504,34.08076920879812],[-118.4271023219286,34.08076793278968],[-118.42710626277685,34.08076748649087],[-118.42711176771381,34.0807670853415],[-118.42712814806315,34.08076475441744],[-118.42713097818617,34.08076439195909],[-118.42722612504612,34.08074912077701],[-118.42725572679733,34.08074153074028],[-118.42731630961245,34.08072617419314],[-118.42732788158428,34.08072262648069],[-118.42733484904328,34.08072060737076],[-118.42735006827087,34.08071594804161],[-118.42735423019553,34.08071470499102],[-118.42736800189724,34.08071022176675],[-118.42737258816668,34.08070874160054],[-118.42739126593806,34.08070239801089],[-118.42740980716552,34.0806957850823],[-118.42741008786659,34.08069568011371],[-118.42741027428949,34.08069561469968],[-118.42742840408853,34.08068902483551],[-118.42744653029436,34.08068174748797],[-118.42746465650013,34.08067447013979],[-118.42747866376219,34.08066831399179],[-118.42748250153328,34.08066667271462],[-118.42748446825586,34.0806657951135],[-118.42750090352187,34.08065888496112],[-118.42751205267211,34.08065326501541],[-118.42751788886727,34.08065055108941],[-118.42752579409465,34.08064672237965],[-118.4275354940502,34.08064227525116],[-118.42754155774186,34.0806389648945],[-118.42755257731194,34.08063341088483],[-118.42756159799849,34.08062868435685],[-118.42757007918863,34.08062463505708],[-118.42758654351115,34.08061530269428],[-118.42760300783368,34.08060597033046],[-118.42761640265469,34.08059809774485],[-118.4276196958367,34.08059616476265],[-118.42763597420799,34.08058625056534],[-118.42763602419458,34.08058621899054],[-118.42765239271644,34.08057625526765],[-118.42765804748127,34.08057216873117],[-118.42766789404499,34.08056572129098],[-118.42768019217922,34.08055737446616],[-118.42768365768157,34.08055519252122],[-118.42768770651912,34.08055217215573],[-118.427698933533,34.08054427759848],[-118.42770674951774,34.08053858370086],[-118.42771491815515,34.08053309854359],[-118.42772972239104,34.08052205490072],[-118.42774452393195,34.08051032377227],[-118.42774781356253,34.08050790790508],[-118.4277532418586,34.0805027827364],[-118.42775822234174,34.08049875260871],[-118.42777120349534,34.08048787456696],[-118.42777247411371,34.08048686746261],[-118.42777364486155,34.08048579284507],[-118.42778639889895,34.08047472636828],[-118.42779614153241,34.08046597157064],[-118.4278004198039,34.08046238140771],[-118.42781356574979,34.08044996948254],[-118.42782670989901,34.08043721381313],[-118.42783985494655,34.08042445739778],[-118.42785299729917,34.08041135798203],[-118.42786244779965,34.08040030772032],[-118.42786464665174,34.08039794904718],[-118.42787672989064,34.08038450886083],[-118.42788279151586,34.0803775150168],[-118.42788911855673,34.08037104263127],[-118.4279006071109,34.08035726241811],[-118.42790504665936,34.08035088934965],[-118.42791126292681,34.08034316226896],[-118.42792219003391,34.0803290539331],[-118.4279253491676,34.08032481423683],[-118.42793341448338,34.08031489723279],[-118.4279432474425,34.0803004362209],[-118.42795308040158,34.08028597520652],[-118.42796291246238,34.08027117044655],[-118.42797274362484,34.08025636568404],[-118.42797765651115,34.08024844843112],[-118.42826255630516,34.07977754948978],[-118.42828093790425,34.07974704406297],[-118.42833977279206,34.07964995077453],[-118.4283482223456,34.07963630139476],[-118.42835641138775,34.07962361926263],[-118.4283648591447,34.07961106584722],[-118.42837148092343,34.07960161526119],[-118.42837392045094,34.07959854219147],[-118.428377845538,34.07959276973747],[-118.42838253619284,34.07958633623839],[-118.42838887097928,34.07957798112668],[-118.42839195952018,34.07957409084953],[-118.42840180505567,34.07956203370073],[-118.42841165238784,34.07955032029614],[-118.42842149971997,34.07953860688999],[-118.4284313461538,34.07952689273817],[-118.42843456572484,34.07952317587803],[-118.428441638152,34.07951543602235],[-118.42844691705149,34.07950986256236],[-118.42845269551484,34.07950414671377],[-118.42845638193425,34.07950002030868],[-118.42846328036386,34.07949299430696],[-118.42847445181272,34.07948201302784],[-118.42848585053535,34.07947119543596],[-118.42849747563345,34.07946054450761],[-118.4285093217171,34.07945006396309],[-118.42851885133936,34.0794419235165],[-118.42852171487475,34.07943967046987],[-118.42852586521738,34.079436063035],[-118.42853366516297,34.07942962816233],[-118.4285418807543,34.07942308339509],[-118.42854638081585,34.0794196610016],[-118.4285595402364,34.07940999666413],[-118.4285657429754,34.07940479140495],[-118.42857174923947,34.07940033009335],[-118.42858484667629,34.0793909373284],[-118.42859813994588,34.07938173652477],[-118.42860635982571,34.07937624677518],[-118.42861218780027,34.07937271280186],[-118.42862535261077,34.07936407895519],[-118.42863097954479,34.07936038890772],[-118.42863914803858,34.07935531192437],[-118.42865318062164,34.07934690575244],[-118.42865360433339,34.07934666110768],[-118.42866815463911,34.07933885299904],[-118.42867600020678,34.07933391318689],[-118.42868176231904,34.07933070872785],[-118.42869630334853,34.07932292457172],[-118.42871100607479,34.07931535321059],[-118.4287168979095,34.07931243601624],[-118.42872578875111,34.0793080779771],[-118.42872893133267,34.07930653763677],[-118.42874087685465,34.07930085556999],[-118.4287560341284,34.07929393375483],[-118.4287634237381,34.07929069849949],[-118.42877191544432,34.07928730509146],[-118.42878488868641,34.07928154868095],[-118.42878677627405,34.07928075678394],[-118.42880234946783,34.07927450534848],[-118.4288137001972,34.0792701507712],[-118.42881805291731,34.07926859319542],[-118.42883453430782,34.07926269592281],[-118.42884411690876,34.07925911130757],[-118.42884982183733,34.07925712007573],[-118.42885715131555,34.07925468661901],[-118.42886585137525,34.07925193633821],[-118.42888233725736,34.07924672581484],[-118.42889882403776,34.07924185829435],[-118.4289153126148,34.07923733452092],[-118.42893180119184,34.07923281074717],[-118.42894829246383,34.0792286299765],[-118.42896478463412,34.07922479295288],[-118.42897416569465,34.07922261080395],[-118.42898108187,34.07922109506494],[-118.42898905327688,34.07921947156382],[-118.428997772568,34.07921780639994],[-118.42901426833154,34.07921465612655],[-118.42903241519862,34.07921150064472],[-118.42904891455544,34.07920903786588],[-118.42906541391226,34.0792065743429],[-118.42907740126515,34.07920494388544],[-118.42908278643152,34.07920425367596],[-118.42909399814224,34.07920298310955],[-118.42909676691232,34.07920268523542],[-118.42910360181934,34.07920194950992],[-118.42911708949899,34.07920062051882],[-118.42913429223667,34.07919917707722],[-118.42914457929513,34.07919846504522],[-118.42915123176797,34.0791980260442],[-118.42915575878655,34.07919775316975],[-118.42916877766211,34.07919704242058],[-118.42918604867177,34.0791963512055],[-118.4292033304612,34.07919590998856],[-118.42922062033547,34.07919572025783],[-118.42923791110805,34.07919578201332],[-118.4292551982874,34.07919609451102],[-118.42927247558525,34.07919665775086],[-118.42928114666039,34.07919706663096],[-118.4292899289529,34.07919753348834],[-118.42930644627603,34.07919850520725],[-118.42930867714756,34.0791986659924],[-118.42932419968099,34.07919985192336],[-118.42933267642572,34.07920062395971],[-118.42934113561903,34.07920147319096],[-118.4293467048364,34.07920197964145],[-118.42935854137599,34.07920323136224],[-118.42937565248553,34.07920529459071],[-118.42939271957759,34.07920760632913],[-118.42940973456741,34.0792101643454],[-118.42942669296333,34.07921297012753],[-118.42944359117215,34.07921602144345],[-118.42946032451025,34.07921929839539],[-118.42946176588697,34.07921959284445],[-118.42953945398939,34.0792354602798],[-118.42955763768737,34.07923951753924],[-118.42957747518376,34.07924391184935],[-118.42959731357848,34.0792486506505],[-118.42960304557465,34.07925001963847],[-118.42961636504904,34.07925346087936],[-118.42962903345983,34.07925693584069],[-118.42963534285776,34.07925881946658],[-118.42964445626905,34.07926131141819],[-118.42965456860146,34.07926424948145],[-118.42967349050691,34.07927005751464],[-118.42969157200463,34.07927613777529],[-118.42970758013448,34.07928134413786],[-118.42971096752994,34.07928249709661],[-118.4297295024692,34.07928912278426],[-118.42974789637296,34.07929601558215],[-118.42976614205469,34.07930317549023],[-118.4297842341245,34.07931059804427],[-118.4298021698875,34.07931828324408],[-118.42981994036045,34.07932622736944],[-118.42983378882086,34.07933268046923],[-118.42983717633578,34.07933435527216],[-118.42984320835619,34.07933717870239],[-118.42985496746999,34.0793428842121],[-118.42986236988823,34.07934662121155],[-118.42987194023894,34.07935174945756],[-118.4298884979863,34.07936062139847],[-118.42990101012562,34.07936694869522],[-118.42990614628836,34.07936975077647],[-118.42992282081664,34.0793791963707],[-118.42992916921077,34.07938292847756],[-118.42993929591896,34.07938888303293],[-118.4299555653071,34.07939880778693],[-118.4299716235911,34.07940896765653],[-118.42998746627946,34.0794193581773],[-118.43000308798223,34.07942997860518],[-118.43001848600451,34.07944082373177],[-118.43003365315977,34.07945188983683],[-118.43004858675305,34.07946317543213],[-118.43006327959786,34.07947467530934],[-118.43007773079583,34.07948638723629],[-118.43009193316045,34.07949830749263],[-118.43010588309853,34.07951043235812],[-118.43011957791502,34.07952275662434],[-118.43012956179108,34.07953206455426],[-118.43013301132176,34.07953527880318],[-118.43014617972551,34.07954799443036],[-118.43015907953301,34.07956089904144],[-118.43017170625265,34.07957398966028],[-118.43018405808779,34.07958726033438],[-118.43019612875028,34.07960070957568],[-118.43020791554513,34.07961433143181],[-118.43021941487908,34.07962812218239],[-118.43023062315888,34.07964207810718],[-118.43024153679124,34.07965619474189],[-118.43025215308128,34.07967046762225],[-118.43026246843569,34.07968489228386],[-118.43027247926122,34.07969946426252],[-118.43028218376124,34.07971418058192],[-118.43029157654583,34.07972903454566],[-118.43030065851336,34.07974402317756],[-118.4303094233756,34.07975914052525],[-118.4303178693359,34.07977438435649],[-118.43032599549596,34.07978974723093],[-118.4303337973642,34.07980522617226],[-118.4303412740423,34.07982081597227],[-118.43034842193703,34.07983651216659],[-118.43035524015004,34.07985231029092],[-118.43036172508809,34.079868203649],[-118.43036766744366,34.07988364611828],[-118.43088480958643,34.08126911841692],[-118.43089052197331,34.08128396243563],[-118.4308960807483,34.08129758550903],[-118.43090192518754,34.08131112673764],[-118.43090805169777,34.08132458016934],[-118.43091446027903,34.08133794208405],[-118.43092114823631,34.08135120950566],[-118.4309281128747,34.0813643787142],[-118.43093535419419,34.08137744375745],[-118.43094286590662,34.08139040240346],[-118.43095064980855,34.08140324870006],[-118.43095870230674,34.08141598115923],[-118.43096701980798,34.0814285945729],[-118.43097560141388,34.08144108447699],[-118.43098444263292,34.08145344938355],[-118.43099354346504,34.08146568185229],[-118.43100289762212,34.0814777826274],[-118.43101250600238,34.08148974426866],[-118.43102236231768,34.08150156528816],[-118.43103246566969,34.08151324047766],[-118.43104281156681,34.0815247676053],[-118.43105339821244,34.08153614369501],[-118.43106448162641,34.08154763213043],[-118.43106887348983,34.08155207170612],[-118.43171147793842,34.08219662240942],[-118.4317272811009,34.08221219465684],[-118.43174246083258,34.08222663376581],[-118.43175794149987,34.08224084966778],[-118.43177371681459,34.08225483864269],[-118.43178978318343,34.08226859622664],[-118.43180613611487,34.08228211869962],[-118.43182277021899,34.08229540159766],[-118.43183968010588,34.08230844045676],[-118.43185686128403,34.08232123230104],[-118.43187430746512,34.08233377266644],[-118.43189201505602,34.08234605783309],[-118.43190997776844,34.08235808408094],[-118.4319281893142,34.08236984694608],[-118.43194664430341,34.08238134419654],[-118.43196533824448,34.08239257062439],[-118.43198426484919,34.08240352548567],[-118.43200341782936,34.08241420357238],[-118.4320227926934,34.08242460042055],[-118.4320423822548,34.08243471603033],[-118.43206218112365,34.0824445451937],[-118.43208218301179,34.0824540849347],[-118.43210238163094,34.08246333302131],[-118.43212277159125,34.08247228573374],[-118.43214334480791,34.08248094232788],[-118.43216409858591,34.08248929833982],[-118.4321850230438,34.08249735153768],[-118.4322061145884,34.08250509968943],[-118.43222736513474,34.08251253981911],[-118.43224876749639,34.08251967118277],[-118.43227031628342,34.08252648931646],[-118.43229200610597,34.0825329949643],[-118.43231382798082,34.08253918440618],[-118.43231565066255,34.08253967173449],[-118.43233577651819,34.08254505541019],[-118.43235784453145,34.08255060723236],[-118.43236084310786,34.08255131404437],[-118.43238002663077,34.08255583764078],[-118.43240231383295,34.0825607451475],[-118.43242470164645,34.08256532826442],[-118.43244718108814,34.08256958550366],[-118.43246974676809,34.08257351612129],[-118.43249239239807,34.08257711788524],[-118.43251548898235,34.08258044436444],[-118.43252624990112,34.08258187733217],[-118.43267872454757,34.08260165615358],[-118.43272063095559,34.08260709190619],[-118.43272253448566,34.0826073396622],[-118.43379835058172,34.08274689389722],[-118.43381545719969,34.08274899126386],[-118.43383260603844,34.08275083417873],[-118.43384979080983,34.08275242859393],[-118.43386700702227,34.08275377227751],[-118.43388424838749,34.08275486746139],[-118.43390151041399,34.08275571042564],[-118.43391878681354,34.08275630265823],[-118.43393607399285,34.08275664490316],[-118.43395336476547,34.08275673567253],[-118.43397065553803,34.08275657571022],[-118.43398793912411,34.08275616352819],[-118.4340052128287,34.08275550135862],[-118.43402246856701,34.08275458771335],[-118.43403970454236,34.08275342408042],[-118.43405691177162,34.08275201120384],[-118.43407408755986,34.0827503475956],[-118.43409122561886,34.08274843474375],[-118.434108321457,34.08274627413613],[-118.43412536878617,34.08274386502887],[-118.43414236311472,34.08274120965394],[-118.43415929905277,34.08273830652322],[-118.43417617121041,34.08273515861287],[-118.43419297509614,34.08273176592273],[-118.43420970531997,34.08272812994084],[-118.43422635649209,34.08272425141117],[-118.43424292412087,34.08272013182174],[-118.43425940281645,34.08271577191655],[-118.43427578718891,34.08271117392753],[-118.4342920727467,34.08270633859869],[-118.4343082540999,34.08270126741795],[-118.43432432765529,34.08269596261738],[-118.43434028712464,34.0826904249409],[-118.43435612711802,34.08268465587655],[-118.43437184404223,34.08267865691224],[-118.43438743250738,34.082672431768],[-118.43440288892016,34.08266598193176],[-118.4344182078907,34.08265930740354],[-118.43443338313077,34.08265241115932],[-118.43444841194548,34.0826452961751],[-118.43446329074153,34.08263796468281],[-118.43447801233239,34.08263041742646],[-118.43449257312484,34.08262265738195],[-118.43450696862729,34.08261468752541],[-118.43452119524645,34.08260651008868],[-118.43453524849073,34.08259812730384],[-118.43454912297031,34.08258954065879],[-118.43456281509185,34.08258075461757],[-118.43457632216048,34.08257177215617],[-118.43458963878625,34.08256259327452],[-118.43460275957929,34.08255322318067],[-118.43461568274297,34.08254366410652],[-118.43462359779893,34.0825375996591],[-118.43462840198907,34.08253391828411],[-118.43464091641928,34.08252399017739],[-118.43465322064374,34.08251388053043],[-118.43465503524062,34.08251233595954],[-118.43466531017083,34.0825035938071],[-118.43467718320395,34.0824931337275],[-118.43468883345486,34.08248250326756],[-118.43470025912696,34.08247170465933],[-118.4347114575253,34.08246074236676],[-118.43472242505659,34.08244961787783],[-118.4347331554327,34.08243833714452],[-118.43474364955182,34.08242690165496],[-118.43475390112584,34.08241531587298],[-118.43475962279342,34.08240860683364],[-118.43481703585607,34.0825281657058],[-118.43483560788471,34.08259913655306],[-118.4348116217756,34.08269563951355],[-118.43478879552372,34.08284053455431],[-118.43477485376043,34.08299584067632],[-118.43476102877229,34.08314872348566],[-118.4347788635909,34.08329896538996],[-118.43496122816322,34.08402723741953],[-118.435204710665,34.08513148751999],[-118.43527225802332,34.08533816820061],[-118.43533327548057,34.08549262738282],[-118.43572475105695,34.08646219967743],[-118.4361188251447,34.08740070081313],[-118.43622673127602,34.08764005894125],[-118.43631685003929,34.08781591497623],[-118.43639521280194,34.08795448521332],[-118.43645217421259,34.08803769811109],[-118.43665077173836,34.08827591585224],[-118.4370266899416,34.08870057369992],[-118.43753638447205,34.08929071141146],[-118.43784483344335,34.08965298021297],[-118.43802510779706,34.08985253655258],[-118.43809742416494,34.08996147009703],[-118.43817716760354,34.0901393681417],[-118.43823732600369,34.09036682769975],[-118.43824784518556,34.09052371005856],[-118.43832023768395,34.09111937980054],[-118.43853726858161,34.09171201540215],[-118.43860381702908,34.09181573193664],[-118.43869343445608,34.09192873618785],[-118.43888268138429,34.0921815147778],[-118.43908394866249,34.09244589829314],[-118.43933154883979,34.09291347028151],[-118.43938838760594,34.09304668369908],[-118.43945083749084,34.09316461601146],[-118.43955930763784,34.09330618365615],[-118.43959906275909,34.09333719466289],[-118.43966381335879,34.0933719965681],[-118.4397933982592,34.09344977368587],[-118.43990430476875,34.09353820000842],[-118.44009075971273,34.09370567450839],[-118.44026656973219,34.0938611385344],[-118.44034812837292,34.09396185413425],[-118.44054698367705,34.09431670314058],[-118.44058970214456,34.0944216132392],[-118.44079307766766,34.09529579197392],[-118.4409888956902,34.09610840478254],[-118.44113650125882,34.09675251529773],[-118.44118942408647,34.0968523449292],[-118.44150444535107,34.09727188937355],[-118.44173053866893,34.09758528480872],[-118.44178073308865,34.09764573184599],[-118.44184581228224,34.09772410399297],[-118.44191458809438,34.0978367690913],[-118.44201030532582,34.09799317283916],[-118.44207612686866,34.09812283915808],[-118.44219566955175,34.09835716301962],[-118.44224392093916,34.09846363431791],[-118.44231633504947,34.09858321335235],[-118.44237716021914,34.09866226567396],[-118.44244802441226,34.09872222670128],[-118.44263169328308,34.09885762716998],[-118.44289776870372,34.09907256177593],[-118.44316871833385,34.09925967596009],[-118.4432502215881,34.09933194299435],[-118.44329190731332,34.09940282825215],[-118.44337757906973,34.09954558908549],[-118.44345842006499,34.0996637316609],[-118.4435158359944,34.09959734562244],[-118.44360190696223,34.09951501253552],[-118.44374915825526,34.0993952221644],[-118.4438431797833,34.09931962990453],[-118.44387023134301,34.09928799722064],[-118.44387428671658,34.09926184222936],[-118.44380226194812,34.09907087637949],[-118.4437599988159,34.09898583485303],[-118.44372700061285,34.09892377222067],[-118.44368785493428,34.09884744395568],[-118.44368985624621,34.09877313397362],[-118.44371524846342,34.09871646461954],[-118.44382599630391,34.09865925929376],[-118.44393702781224,34.09864069095999],[-118.44400207252824,34.09866264931576],[-118.44406096378917,34.09868899691105],[-118.44429500249235,34.09881769788145],[-118.4445404585482,34.09894173485064],[-118.44474356210601,34.09908011630429],[-118.44492955005789,34.09919303737172],[-118.44510754699432,34.0992833942256],[-118.44520905446231,34.09931187977914],[-118.44567298232121,34.09941647010337],[-118.44626422588253,34.09955169998845],[-118.44678484337628,34.09963791024766],[-118.44681528362251,34.10006606887874],[-118.44681683213284,34.10041068736346],[-118.44681285845974,34.10077431955318],[-118.44686182166798,34.10092421492205],[-118.44693667512324,34.10104942516943],[-118.44712349668943,34.10124026562387],[-118.44746339571778,34.10152935721354],[-118.44765170107371,34.10168876554919],[-118.44777081950011,34.10178359769099],[-118.44790434250257,34.1019387267528],[-118.44802432106923,34.10207760221581],[-118.44809718646633,34.102133472627],[-118.44818021410347,34.10214729105562],[-118.44834570100983,34.10216348937642],[-118.44845271612179,34.10218834070444],[-118.44857669682033,34.10230644152509],[-118.44870356650847,34.10244672625593],[-118.44879501203438,34.10253569855033],[-118.44889355436315,34.10259737705886],[-118.44900318157032,34.10262344889954],[-118.449121272673,34.10261574481647],[-118.44926820373983,34.10254710709686],[-118.44943490621162,34.102512415733],[-118.44954048045798,34.10251937088694],[-118.44959982820845,34.10255036814519],[-118.44965153325121,34.10260348920025],[-118.44968217687541,34.10267396176388],[-118.44968407782311,34.10271656382552],[-118.44967769885156,34.10276077515404],[-118.44962196658493,34.10281932031182],[-118.44956306919259,34.10288235997371],[-118.44946814803514,34.10296366331632],[-118.44940720082829,34.10303566094183],[-118.44936352444326,34.10311062362214],[-118.44934267645306,34.103189141253],[-118.4493227831292,34.10329520973124],[-118.44930176593668,34.10341314877182],[-118.44930379051007,34.10353811022706],[-118.4493987462723,34.1037398196048],[-118.44960290372042,34.10417194450817],[-118.44973154727282,34.10442847629484],[-118.44974975641581,34.10445919081029],[-118.44978485954047,34.10449048709528],[-118.4501670230987,34.10455531780963],[-118.45036524866521,34.10457512048596],[-118.45044410991738,34.10456957511548],[-118.45051240079415,34.10453605037932],[-118.45065948484637,34.10442297283944],[-118.45090374405724,34.10417109527008],[-118.45101502395711,34.10408115001862],[-118.45114100912419,34.10404157187941],[-118.45131700120207,34.10403220564658],[-118.45255647178682,34.10405066431261],[-118.45268152311922,34.10405781484694],[-118.45274912986214,34.10408118710248],[-118.45281288779434,34.10412627207945],[-118.45293573670719,34.10420749063906],[-118.45308202598153,34.10430777460766],[-118.45324149430064,34.10441186973599],[-118.45345108203703,34.10452425644238],[-118.45357798447571,34.10458296340472],[-118.45360913224108,34.10461555191303],[-118.4536221445494,34.10464679730023],[-118.45361040723397,34.10467146002764],[-118.4535435364845,34.10475424721987],[-118.45340927488618,34.10491027991085],[-118.45335915715638,34.10506107276905],[-118.45343648581343,34.1052229480114],[-118.45367792893175,34.10546831288385],[-118.45387049584916,34.10566398961861],[-118.45409292884702,34.10588747379751],[-118.45428679228571,34.10602965867304],[-118.4545227719836,34.10617245497887],[-118.45485077435697,34.10633172079147],[-118.45500504205751,34.10647362478201],[-118.45507461702667,34.10661648755458],[-118.45521703931328,34.10694227722191],[-118.45532255732522,34.10712501859764],[-118.45543926087582,34.10727416537937],[-118.45562437264428,34.10749593843174],[-118.45617868792823,34.10790657572952],[-118.45656896763653,34.10818105882431],[-118.45664008114028,34.1082459426711],[-118.45669109430179,34.10831785399974],[-118.45675163170259,34.10849182639081],[-118.45681535911108,34.10875388801268],[-118.45685400566823,34.10882286851682],[-118.45696493236865,34.10889314479656],[-118.45715531148761,34.10898289117255],[-118.45739431019905,34.10911143979462],[-118.4575715915888,34.10931880904204],[-118.45788062966436,34.10973867872328],[-118.45819378687669,34.11000557409533],[-118.45829550584764,34.11011173400928],[-118.45832580005417,34.11022822317342],[-118.4583074003001,34.1103805878974],[-118.45810575921936,34.11094660950157],[-118.458046336921,34.11122905655334],[-118.45790598462081,34.11248405676233],[-118.45787063430964,34.11254567494365],[-118.45781508895746,34.11259853544288],[-118.4576251926251,34.11267672208989],[-118.45737528224697,34.11277915382837],[-118.45710101426901,34.1128379936907],[-118.4568115831749,34.11284307975331],[-118.45657943802807,34.11283308176606],[-118.45637929764439,34.11287709127429],[-118.45632332972431,34.1129253830658],[-118.45630773893288,34.11299297518634],[-118.45638400845242,34.11311469400992],[-118.45668829271489,34.11323819606549],[-118.45703560438842,34.11342799018134],[-118.4572682575949,34.11360275371804],[-118.45736712682834,34.11373633900843],[-118.457381068142,34.1138869800124],[-118.45734030102987,34.11401056463549],[-118.45722116594165,34.11412112461394],[-118.4570559748716,34.11417924356127],[-118.4568023795669,34.11424293422108],[-118.45664193282454,34.11429008509001],[-118.45657568364577,34.11432839087306],[-118.45655973985625,34.11438418164928],[-118.45664627506353,34.11447369739998],[-118.45744080688017,34.11487544074517],[-118.45756122825863,34.11498299284768],[-118.45761001552452,34.11511820582461],[-118.45767700457804,34.11518233037325],[-118.45777294234875,34.11520670985062],[-118.457957016905,34.11522529487424],[-118.45823202464292,34.11523154449265],[-118.45828652261369,34.11527045048304],[-118.45833614352293,34.11534607175748],[-118.45844414517069,34.11596183155661],[-118.45845635385007,34.11602506025199],[-118.45842382514734,34.11611942307123],[-118.45832612484467,34.11616895592563],[-118.45822491210129,34.11616188581726],[-118.45809556807758,34.11613462127512],[-118.45792713552356,34.11609343951541],[-118.457748449301,34.1160503736945],[-118.45757611493148,34.11604831673839],[-118.45738783319638,34.11609667730514],[-118.4572440290644,34.11622251388078],[-118.4571217948211,34.11637542790665],[-118.45709567311775,34.11655074587033],[-118.45708099560075,34.11673054653662],[-118.45713584330571,34.11690800328712],[-118.45718069628022,34.11710632366849],[-118.45717180429668,34.11726580416104],[-118.45710702717743,34.11735071635882],[-118.45702004864167,34.11741707976916],[-118.45677559594925,34.11746483956202],[-118.45630651718362,34.11744255547738],[-118.45607960546215,34.11750787017489],[-118.45591099939573,34.1176287138548],[-118.45585979839987,34.11775304164087],[-118.45589274862394,34.11789255754471],[-118.45595034970607,34.11806190991604],[-118.45595628308673,34.11820520404906],[-118.45592657425487,34.11834127199438],[-118.4558099935655,34.1184975148255],[-118.45572785775437,34.11866620858461],[-118.45570557374116,34.11882243888719],[-118.45573946791494,34.11896656417449],[-118.45589631627416,34.1191866197409],[-118.45611022466218,34.1194541379781],[-118.45619309071843,34.11962914523313],[-118.45622050110588,34.11987263561827],[-118.45608676790279,34.12139629817951],[-118.45598955458834,34.12278581607308],[-118.4559421211939,34.12301667465938],[-118.45586158841179,34.12315299451815],[-118.4556892865863,34.12327663395991],[-118.4555600349456,34.1233577097026],[-118.45553284716085,34.12342470168593],[-118.45552064617448,34.12350015967312],[-118.45554850902882,34.1237416790209],[-118.45558243876741,34.12397435826671],[-118.45567570695259,34.12425142870792],[-118.45576901791559,34.12444231132454],[-118.4558548206167,34.12456932679761],[-118.45599148546277,34.12476358999677],[-118.456079526996,34.12489793147243],[-118.4561594758036,34.12504385769702],[-118.45620314136626,34.12517110547399],[-118.45621611203389,34.12527509642658],[-118.45623405747182,34.12537388788051],[-118.45628410445913,34.12547399902241],[-118.4563660224112,34.1255916493465],[-118.456455635218,34.1257157145526],[-118.45655799590749,34.12581398231534],[-118.45666154615611,34.125875937441],[-118.45680736658382,34.1259272048115],[-118.45694407324737,34.12594924610296],[-118.45707195195409,34.12598382409792],[-118.45716810760625,34.12603432597795],[-118.45737252970163,34.12619158832549],[-118.4574386750968,34.12623551764055],[-118.45751801160581,34.12627272565397],[-118.45759120769365,34.12628310462335],[-118.45765293439565,34.12627714147393],[-118.45788351068633,34.12619825431456],[-118.45826545525928,34.12608597419618],[-118.45845726144945,34.12606072449334],[-118.45853491890682,34.12606298540619],[-118.45860850916849,34.12607607052922],[-118.45890968109485,34.12620875367548],[-118.45916505226613,34.12638204657478],[-118.45934847414426,34.12654248948141],[-118.4594273115106,34.1266575216012],[-118.45943343894945,34.12673067808552],[-118.4594139510503,34.12681259108101],[-118.45936711403338,34.12686342376677],[-118.45926158638272,34.12691876432656],[-118.4586808295905,34.12719992075764],[-118.45833932327976,34.12736509668031],[-118.45819662149495,34.12744800875992],[-118.45815404564463,34.12749134458792],[-118.45813248149396,34.1275449344858],[-118.45809592482216,34.12766046719081],[-118.45809747081451,34.12775386535682],[-118.45812193467432,34.12786887300145],[-118.4581659450707,34.12800797049504],[-118.45824599857794,34.12817482557513],[-118.45834183760206,34.12838071049875],[-118.45841611013914,34.12855493103604],[-118.45845574497613,34.12867916184516],[-118.45847692768766,34.12875722143101],[-118.45847793003608,34.12882079412016],[-118.45846692867337,34.12889299263388],[-118.45844605013706,34.12897218878138],[-118.45841263145479,34.12903344881866],[-118.45838125903795,34.12910711431037],[-118.4583724456246,34.12920380679755],[-118.4583707703235,34.12926016719284],[-118.45838355842102,34.12932633023649],[-118.45845674794485,34.12946324329439],[-118.45857455042857,34.1296727242631],[-118.45871016335076,34.12985459325815],[-118.45876987179193,34.12990884870412],[-118.45887235339322,34.12995952150325],[-118.4591407856007,34.13004336251856],[-118.45930150695426,34.13011776255167],[-118.45937231901559,34.13016922057783],[-118.45939471308566,34.13021890361473],[-118.45938484100088,34.13026456534602],[-118.45931431104201,34.1303751441187],[-118.45925130418786,34.13050030733036],[-118.4592501432535,34.13050046804173],[-118.45922208078234,34.13050503963942],[-118.4591940201078,34.13050995551945],[-118.45916596212821,34.13051521419458],[-118.45913790504697,34.13052081640838],[-118.45910985066064,34.13052676216076],[-118.45908179896927,34.13053339499064],[-118.45905374997281,34.13054037135884],[-118.45902735477485,34.13054768457307],[-118.45899930847337,34.13055534801778],[-118.45897291686862,34.13056334830834],[-118.45894487775367,34.13057204162433],[-118.4589184897422,34.13058072899079],[-118.4588921062223,34.13059010343375],[-118.45880800774201,34.13061996303899],[-118.45878822324619,34.13062759450284],[-118.45876350071127,34.13063867994077],[-118.45873877997298,34.13065010891575],[-118.45871241172442,34.13066223091476],[-118.45868769457938,34.13067434696327],[-118.45866298192594,34.13068714934305],[-118.45863992127425,34.13069994577219],[-118.4586152104174,34.13071309242991],[-118.45859215515567,34.13072691946956],[-118.45856910079222,34.1307407457634],[-118.4585460491237,34.13075525987458],[-118.45852299745519,34.13076977398327],[-118.45849995027827,34.13078497442174],[-118.45847855510314,34.13080017039593],[-118.45845550792622,34.13081571436666],[-118.45843411814097,34.13083193946132],[-118.45841272835577,34.13084816455282],[-118.45839299326727,34.13086472648655],[-118.4583716070753,34.13088163864685],[-118.45835187288515,34.1308985441114],[-118.45833214318657,34.13091613664739],[-118.45831241528462,34.13093407271702],[-118.45829433848617,34.1309520028341],[-118.45827461238082,34.13097028243327],[-118.45825654007395,34.13098889887328],[-118.45823846776705,34.13100751605275],[-118.45822205195356,34.13102681360972],[-118.45820398323994,34.13104611711098],[-118.45818756832473,34.13106575819592],[-118.45817115430788,34.13108539927623],[-118.45815639408943,34.13110537719637],[-118.4581399827675,34.13112570534058],[-118.45812522614234,34.13114637032407],[-118.45811046951717,34.13116703530251],[-118.45809736489379,34.13118769432717],[-118.458092444821,34.13119423936217],[-118.45808261186188,34.13120904636789],[-118.45806951173009,34.13123039171094],[-118.4580564107,34.13125173779219],[-118.45804496436664,34.1312734214553],[-118.45803351893161,34.13129544864865],[-118.4580220743949,34.1313174750927],[-118.4580106316548,34.13133984506668],[-118.45800245159582,34.13135464535468],[-118.45799919610123,34.13136358843336],[-118.45799429938461,34.13137459867291],[-118.4579877515645,34.13138561485966],[-118.45798120104946,34.13139628825316],[-118.45797630433285,34.13140729848844],[-118.45796975381779,34.1314179711356],[-118.45796320330275,34.13142864378142],[-118.45795499898927,34.13143897958289],[-118.45794844757589,34.13144965222605],[-118.4579418952642,34.13145998207631],[-118.45793369005239,34.13146997433883],[-118.4579254848406,34.13148031013519],[-118.45791727783215,34.13149030239531],[-118.45790906992539,34.13149995111923],[-118.45790086381527,34.13150994263343],[-118.45789265501023,34.13151959135512],[-118.45788444530683,34.13152889654082],[-118.45787458270331,34.13153820841774],[-118.45786637299996,34.1315475136014],[-118.45785651039647,34.13155682547621],[-118.45784664599633,34.13156579307172],[-118.45783677979955,34.13157441787519],[-118.4578269136028,34.13158304193417],[-118.45781704740602,34.13159166673587],[-118.45780717941261,34.13159994800206],[-118.45779565941743,34.13160823521611],[-118.45778579142402,34.1316165164807],[-118.45777426963217,34.13162446015865],[-118.45776439804553,34.13163205435268],[-118.45775287355876,34.13163965449473],[-118.45774134997028,34.13164725463609],[-118.45772982368689,34.1316545112424],[-118.45715680992669,34.13201321985497],[-118.45714528274497,34.13202013364049],[-118.45713210445975,34.13202739616339],[-118.45712057637971,34.13203430994778],[-118.45710904470641,34.13204053592246],[-118.45709751482975,34.13204710617303],[-118.45708433115465,34.1320533380953],[-118.45707279948134,34.13205956481217],[-118.45705961400961,34.13206545394441],[-118.45704642674121,34.13207099954363],[-118.45703323857454,34.13207654514243],[-118.45702170151135,34.13208174125968],[-118.45700851244635,34.13208694332516],[-118.45699532248301,34.13209214539037],[-118.45698212982475,34.13209666039005],[-118.45696893626818,34.1321011761331],[-118.45695574360992,34.13210569113236],[-118.45694089625489,34.13210986929099],[-118.4569277009017,34.13211404075729],[-118.45691450195524,34.13211752590193],[-118.45690130480537,34.13212135383532],[-118.45688645206047,34.1321245013958],[-118.456873253114,34.13212798579648],[-118.45685839767417,34.13213078982427],[-118.4568451951344,34.13213358790338],[-118.45683033789793,34.13213604839859],[-118.45681713356159,34.1321385029451],[-118.45680227542678,34.13214061990777],[-118.45678741639367,34.13214273687042],[-118.45677420846404,34.13214450435198],[-118.45675934583765,34.13214593424974],[-118.45674448410962,34.13214736414749],[-118.45673127168841,34.13214844456423],[-118.45671640816371,34.13214953167309],[-118.45670154194407,34.13215027450605],[-118.45668997793143,34.13215066190945],[-118.45667676281528,34.13215105526144],[-118.45666520059926,34.1321517854536],[-118.45665363928156,34.13215251713287],[-118.45664207706554,34.13215324732502],[-118.45663051754445,34.1321543210495],[-118.45661895982,34.13215573904989],[-118.45660740209557,34.13215715705024],[-118.45659584437112,34.13215857430694],[-118.45658428754501,34.132160335096],[-118.45657273161719,34.13216209737218],[-118.45656283038612,34.13216419425768],[-118.45655127805156,34.13216664359837],[-118.45653972571702,34.13216909145181],[-118.45652817338244,34.1321715393052],[-118.45651827484632,34.13217432474215],[-118.45650507410325,34.13217746635206],[-118.45649517646544,34.13218025104524],[-118.45648527972595,34.13218338001414],[-118.45647373098465,34.13218651493153],[-118.45646383694013,34.1321899874324],[-118.4564522917921,34.1321938094139],[-118.45644239954419,34.1321976247031],[-118.45643085439616,34.13220144668426],[-118.45642096394485,34.13220560624879],[-118.4564110752902,34.13221010860163],[-118.45640118394064,34.13221426816572],[-118.45638964508082,34.13221911999884],[-118.45637975642617,34.13222362309455],[-118.45636986956814,34.13222846897847],[-118.45635998450675,34.1322336583942],[-118.45635009944536,34.13223884855313],[-118.45634186638578,34.13224403201956],[-118.456331983121,34.13224956496622],[-118.45632209895797,34.13225509791258],[-118.45631221569319,34.13226063085854],[-118.45630398622687,34.1322665013874],[-118.45629410475875,34.13227237786452],[-118.45628587798738,34.13227859192442],[-118.4562776503177,34.13228480524031],[-118.45626777064619,34.13229102524789],[-118.45625954567149,34.13229758283816],[-118.45625132069672,34.132304140428],[-118.45624309662028,34.13231104080538],[-118.45623487164556,34.13231759839416],[-118.45622664936576,34.13232484230209],[-118.45622007818946,34.13233173672926],[-118.45621185680798,34.13233898137956],[-118.45620363542649,34.13234622528572],[-118.45619706514852,34.13235346324261],[-118.45619049756547,34.13236104473044],[-118.4561822779806,34.1323686329097],[-118.45617571219421,34.13237655792755],[-118.45616914461117,34.1323841394133],[-118.45616257882475,34.13239206442972],[-118.45615601393666,34.13239998944541],[-118.45614944994686,34.1324082572481],[-118.45614453795892,34.13241651984494],[-118.45613797396912,34.13242478838961],[-118.45613306287945,34.13243305024123],[-118.45612649888967,34.13244131878427],[-118.45612158869832,34.132449924909],[-118.4561166794053,34.13245853028933],[-118.45611176921395,34.13246713566873],[-118.45610685992095,34.1324757417909],[-118.45610195152622,34.13248469069955],[-118.45609704402985,34.1324936396073],[-118.45609378853524,34.13250258256547],[-118.45608888014053,34.13251153221493],[-118.45608562464592,34.13252047517121],[-118.45608237274462,34.13253010518822],[-118.45607909658877,34.1325352693039],[-118.45607420885533,34.13254799704453],[-118.456070956954,34.13255762705842],[-118.45606604945758,34.13256657595841],[-118.456062793963,34.13257551890892],[-118.45605788556827,34.132584467807],[-118.45605297627525,34.13259307391721],[-118.45604806788054,34.13260202281344],[-118.4560431585875,34.13261062892187],[-118.45603824839617,34.13261923502937],[-118.45603333640821,34.13262749760558],[-118.45602677511336,34.13263610965998],[-118.4560218631254,34.13264437149101],[-118.4560152991356,34.13265264001332],[-118.45600873514583,34.13266090853489],[-118.45600382136121,34.13266882683318],[-118.45599725647313,34.13267675182294],[-118.45599069068672,34.1326846768119],[-118.45598412490031,34.13269260180018],[-118.45597590441713,34.13270018994968],[-118.4559693368341,34.13270777140641],[-118.45596276925106,34.13271535286241],[-118.45595454786957,34.13272259673629],[-118.4559479784899,34.13272983466095],[-118.45593975621011,34.13273707927721],[-118.45593153482862,34.13274432314918],[-118.45592331165051,34.13275122423421],[-118.45591673957587,34.13275811862658],[-118.45590686170104,34.13276468212919],[-118.45589863672629,34.13277123968278],[-118.45589041085323,34.13277779649222],[-118.45588218408187,34.13278401051501],[-118.45587395641216,34.13279022453729],[-118.45586407674067,34.13279644450766],[-118.45585584727435,34.1328023142558],[-118.45584596670456,34.13280819143918],[-118.45583608254148,34.13281372434892],[-118.45582785217685,34.13281925130979],[-118.45581796891207,34.1328247842188],[-118.4558080829524,34.13282997359786],[-118.455798197891,34.13283516297665],[-118.45578831103298,34.13284000956909],[-118.45577842417497,34.13284485541769],[-118.45576853731694,34.13284970126605],[-118.45575864686568,34.13285420432816],[-118.45574875821102,34.13285870664646],[-118.45573721485962,34.13286287212719],[-118.45572732440834,34.13286703091558],[-118.45571743126212,34.13287084691791],[-118.45570588611409,34.13287466886869],[-118.45569599386617,34.1328784841271],[-118.45568444692151,34.13288196254809],[-118.45567455018202,34.132885091491],[-118.4556630041357,34.13288856991172],[-118.45565310559958,34.13289135532506],[-118.45564155506165,34.13289414668684],[-118.45563000452373,34.13289693804855],[-118.45561845218919,34.13289938588083],[-118.45560855185644,34.13290182776452],[-118.45559699772525,34.13290393206737],[-118.45558544359406,34.13290603637018],[-118.45557388856454,34.13290814067294],[-118.45556233263676,34.13290990218996],[-118.45555077491227,34.13291131943408],[-118.45554086918965,34.13291273072964],[-118.45552930877028,34.13291380444448],[-118.45551774924918,34.13291487890281],[-118.4555061897281,34.13291595261762],[-118.4554946275121,34.13291668354675],[-118.45548471639955,34.13291706425451],[-118.45494620243788,34.13293935796102],[-118.4549362895287,34.13293939513946],[-118.45492472551607,34.13293978179566],[-118.4549131606051,34.13293982566629],[-118.45490159299918,34.13293952600772],[-118.45489002539328,34.13293922560561],[-118.45487845599072,34.13293858241793],[-118.45486688658818,34.1329379392302],[-118.45485531808396,34.13293729529893],[-118.45484374688478,34.13293630858202],[-118.45483217388897,34.13293497833598],[-118.45482060089317,34.13293364734634],[-118.45480902789735,34.13293231710022],[-118.45479745310492,34.13293064332488],[-118.45478587561755,34.13292862602036],[-118.45477595192861,34.13292660276721],[-118.45476437444123,34.13292458546255],[-118.4547527960555,34.13292222462868],[-118.45474121766982,34.13291986379469],[-118.45473128948929,34.13291715273931],[-118.45471970840865,34.13291444837592],[-118.4547081264297,34.1329114004832],[-118.45469819645254,34.13290834664179],[-118.45468661088033,34.13290495521959],[-118.45467667910654,34.13290155784867],[-118.454665092636,34.13289782289683],[-118.45465515906561,34.13289408199626],[-118.45464357349337,34.1328903470441],[-118.45463363722801,34.13288626261385],[-118.45462370006436,34.13288183465402],[-118.45461376379899,34.13287775022336],[-118.45460217283687,34.1328729854258],[-118.45459223477488,34.13286855746527],[-118.4545822958146,34.13286378597505],[-118.45457235415934,34.13285867095509],[-118.45456241250409,34.13285355593482],[-118.45455412374898,34.13284843496562],[-118.45454418029709,34.13284297641519],[-118.45453423774352,34.13283751786441],[-118.45452429429164,34.13283206005684],[-118.45451600104494,34.13282625202719],[-118.45450605669475,34.13282044994563],[-118.45449776165141,34.13281429838552],[-118.45448946660808,34.13280814682496],[-118.4544795177663,34.13280165768274],[-118.4544712236213,34.13279550612127],[-118.45446292498471,34.13278866749981],[-118.45445462814473,34.13278217240754],[-118.45444633040645,34.1327753345286],[-118.45443803176985,34.13276849590545],[-118.45443138333845,34.13276130780333],[-118.45442308560017,34.13275446917911],[-118.45441643537212,34.13274693754586],[-118.45440813493889,34.13273975539051],[-118.45440148471084,34.13273222375597],[-118.45439318337928,34.13272469806934],[-118.45438653315124,34.13271716643343],[-118.45437988112657,34.13270929126678],[-118.45437322910189,34.13270141609939],[-118.45436824075713,34.13269559542004],[-118.454348273005,34.13266956520018],[-118.45432831693093,34.13264593968469],[-118.45430671155005,34.13262266438525],[-118.45428675996757,34.13259972443065],[-118.45426515817994,34.13257713543616],[-118.45424355818895,34.13255488996633],[-118.45422195819793,34.13253264449065],[-118.45419870979838,34.13251109276306],[-118.45417546050051,34.13248954028644],[-118.45415221569422,34.1324686748664],[-118.45412731798781,34.13244781538985],[-118.45410407677478,34.13242763702198],[-118.45407918355994,34.13240746534152],[-118.45405264193654,34.13238798592401],[-118.45402775500992,34.13236884408487],[-118.45400121518318,34.13234970893362],[-118.45397467894968,34.13233126009769],[-118.45394814451281,34.13231315478941],[-118.45391995987077,34.13229539970123],[-118.45389343172212,34.13227832498086],[-118.45386525067336,34.13226125620558],[-118.45383707411615,34.13224487449081],[-118.45380724645543,34.13222884299714],[-118.45377907349152,34.13221314834028],[-118.4537492503224,34.13219780316134],[-118.45371942805157,34.13218280225543],[-118.45368961027236,34.13216848692424],[-118.45365979428976,34.13215451586656],[-118.45362998190042,34.13214123112778],[-118.45359851661097,34.13212795382269],[-118.45356705581311,34.13211536283693],[-118.45353559681185,34.13210311538184],[-118.45350414140387,34.13209155499017],[-118.45347268779251,34.13208033738603],[-118.45343958487429,34.13206947000523],[-118.45340813665281,34.13205928373994],[-118.45337503912448,34.13204944695475],[-118.45334359449627,34.13203994700907],[-118.45331050235784,34.13203114007662],[-118.45327741201604,34.13202267741971],[-118.45324432526748,34.1320149010842],[-118.45320958831377,34.1320074749731],[-118.4531765051585,34.13200038570213],[-118.45314342559648,34.13199398349655],[-118.45310869582924,34.13198793077216],[-118.45307396696037,34.13198222158034],[-118.4530607383695,34.1319802102018],[-118.45185860566977,34.13180300570436],[-118.45180238640432,34.13179497207009],[-118.4517461725288,34.13178796903655],[-118.45168830934642,34.13178131548493],[-118.45163045245224,34.1317760360683],[-118.45157425205143,34.13177143702692],[-118.45151640324207,34.13176753174534],[-118.45145855892429,34.13176465632183],[-118.45140071819978,34.1317624679661],[-118.45134288196685,34.13176096667812],[-118.45128505202213,34.13176049524842],[-118.45122722656897,34.13176105442061],[-118.45116940560739,34.1317623006606],[-118.45111324024087,34.1317642280198],[-118.45105542826246,34.13176719192933],[-118.4509976198773,34.13177084216304],[-118.45093981598367,34.13177517946435],[-118.45088201748001,34.13178089090083],[-118.45083413008884,34.13178587883389],[-118.44988631583591,34.13189108191752],[-118.44987145410788,34.13189251107598],[-118.44985658968487,34.131893596701],[-118.44984337726366,34.13189467637741],[-118.44982851104403,34.13189541846907],[-118.44981364392608,34.13189616130426],[-118.44979877680814,34.13189655986248],[-118.44978555899704,34.13189660893867],[-118.44977068918413,34.13189666470708],[-118.44975581757461,34.13189637619851],[-118.44974259617025,34.13189573820792],[-118.44972772276408,34.13189510690955],[-118.44971284756133,34.13189413207777],[-118.44969962436033,34.13189315055376],[-118.44968474736092,34.13189183218851],[-118.44966987036149,34.13189051307972],[-118.4496566408723,34.13188850169897],[-118.44964176207624,34.13188683980025],[-118.44962687968693,34.13188449009105],[-118.44961530309787,34.13188247276152],[-118.44959876601179,34.13187978621094],[-118.44958553382766,34.13187708776304],[-118.44957064784509,34.13187405173014],[-118.449557412966,34.13187100900497],[-118.44954417718861,34.13186762348973],[-118.44952928761278,34.1318639003895],[-118.44951604914044,34.13186017134043],[-118.44950281156642,34.13185644229125],[-118.44948956950081,34.13185202617471],[-118.44947467812834,34.1318479602838],[-118.44946143426611,34.13184320063322],[-118.44944819130218,34.13183844098237],[-118.44943494743995,34.13183368133125],[-118.44942335468123,34.13182857219763],[-118.44941010722573,34.13182312547857],[-118.44939686066854,34.13181767875918],[-118.44938361321304,34.13181223278302],[-118.44937201506443,34.13180609304678],[-118.44935876581229,34.1318003027925],[-118.4493471649687,34.13179381952159],[-118.44933391481828,34.13178768647624],[-118.44932231217805,34.1317808596705],[-118.44931071223279,34.1317743763981],[-118.44929910779595,34.13176720605737],[-118.44928750515574,34.13176037999358],[-118.44927589982059,34.13175286611763],[-118.44926429448545,34.13174569503155],[-118.44925268645532,34.13173783910744],[-118.44924273222368,34.13173031853733],[-118.44923112509187,34.13172246112467],[-118.44922116726696,34.13171425497207],[-118.44920955744024,34.13170605402376],[-118.44919960051361,34.13169784786956],[-118.44918964089206,34.13168929743679],[-118.44917967947387,34.13168040346883],[-118.44916972075065,34.1316718537779],[-118.44915975933246,34.1316629598081],[-118.44915144811945,34.13165371709796],[-118.44914148580294,34.13164447959191],[-118.44913317458993,34.13163523613614],[-118.4491232095785,34.13162565583711],[-118.44911489746715,34.13161606884481],[-118.44910658445752,34.13160648259498],[-118.44909827054957,34.13159655206585],[-118.44908995574332,34.13158662227915],[-118.44908329204051,34.13157634226435],[-118.44907331355435,34.13156435721552],[-118.44906664985157,34.131554077198],[-118.44905667226371,34.13154209214601],[-118.44904669467587,34.1315301070923],[-118.44903671618967,34.1315181227805],[-118.44902674039842,34.13150648125838],[-118.44901676460722,34.13149483973464],[-118.44900679061261,34.1314835417444],[-118.4489951646162,34.13147224970128],[-118.44898354041642,34.13146130119186],[-118.44897356821848,34.13145034673231],[-118.44896194581531,34.13143974175525],[-118.44895032341216,34.13142913677686],[-118.44893870819554,34.13141990593851],[-118.44887400164731,34.13136965384342],[-118.44879275891132,34.13131671514999],[-118.44870494679569,34.13127135652182],[-118.44861056889361,34.13123392299426],[-118.44643255048666,34.13054161761683],[-118.4463779445955,34.13052601856997],[-118.44633658885473,34.13051655414539],[-118.44626547911517,34.13050445071529],[-118.446207622221,34.13049882544909],[-118.44340779895752,34.13031265309289],[-118.44337804945026,34.1303107019056],[-118.44336317424748,34.1303097255684],[-118.44335160753987,34.13030942441335],[-118.44334003005248,34.13030878046199],[-118.44332847322637,34.13030882284679],[-118.4433169083154,34.13030886523156],[-118.44330534340442,34.13030890761635],[-118.44329377849346,34.13030929354102],[-118.44328221537911,34.13030967946565],[-118.44327230606322,34.13031040223777],[-118.4432607447455,34.13031113170221],[-118.44324918522442,34.13031220470649],[-118.44323432259806,34.13031363314809],[-118.44321615956133,34.13031576056675],[-118.44319800011787,34.13031857506498],[-118.4431847957815,34.13032102817706],[-118.44317323985368,34.13032278751725],[-118.44316168751915,34.13032523468048],[-118.4431501351846,34.13032768110004],[-118.44314023485181,34.13033012231442],[-118.4431286843139,34.13033291227363],[-118.44311713377601,34.13033570223276],[-118.44310723703651,34.13033882978273],[-118.4430956882952,34.13034196402492],[-118.44308414135055,34.13034544106314],[-118.4430742464077,34.13034891215244],[-118.44306270125966,34.13035273273003],[-118.44305280811345,34.13035654735867],[-118.44304291496722,34.1303603619872],[-118.44303137251413,34.13036452610389],[-118.44302148296114,34.1303690278112],[-118.4430115934082,34.13037352951832],[-118.44300170385522,34.13037803122516],[-118.44299181609891,34.13038287572773],[-118.4429819292409,34.13038772097363],[-118.44297204148457,34.13039256621923],[-118.44296215552484,34.13039775426044],[-118.44295227046346,34.13040294304496],[-118.44294238630039,34.13040847611213],[-118.44293250213732,34.1304140076918],[-118.44292427446764,34.13042022114472],[-118.44291933373357,34.13042333010178],[-118.44257683486184,34.13064235550524],[-118.4421701190237,34.13090317666173],[-118.44203015611254,34.13099299529259],[-118.44202027554273,34.13099921390808],[-118.44200874925932,34.13100646908282],[-118.44199722207757,34.13101372425695],[-118.44198569130259,34.13102029310014],[-118.44197416052761,34.13102686119923],[-118.44196097685249,34.13103343599014],[-118.44194944428088,34.13103966055134],[-118.44193625791083,34.13104554826751],[-118.44192472354258,34.131051429291],[-118.44191153717252,34.13105731700633],[-118.44189834900584,34.1310628611845],[-118.44188515814422,34.13106806182554],[-118.44187196818088,34.13107326246627],[-118.44185877642093,34.13107811882635],[-118.441845584661,34.13108297592976],[-118.4418323902061,34.13108748949622],[-118.44181919664953,34.13109200306243],[-118.44180600129631,34.13109617309171],[-118.44179280324816,34.13109999958421],[-118.44177795409652,34.1311038327688],[-118.44176475425174,34.13110731572436],[-118.44175155530525,34.13111079867977],[-118.44173670166205,34.13111394479068],[-118.44172350091894,34.13111708420927],[-118.4417086454791,34.13111988603987],[-118.44169544114273,34.1311223391287],[-118.44168058390625,34.1311247974226],[-118.4416673759766,34.13112690697483],[-118.44165251784182,34.13112902173209],[-118.44163765521543,34.13113045015983],[-118.44162444638751,34.13113221617542],[-118.44160958465945,34.13113364385952],[-118.44159472023644,34.13113472875074],[-118.4415815060186,34.13113546415676],[-118.44156664069729,34.1311362055115],[-118.44155177268101,34.13113660332969],[-118.44153855666654,34.13113699519921],[-118.44152368685366,34.13113704948097],[-118.44150881793907,34.13113710376269],[-118.44149394632956,34.13113681450799],[-118.44147742092157,34.13113618766541],[-118.4414691582176,34.13113587461596],[-118.44145924351182,34.13113556751517],[-118.44144932970433,34.13113560320726],[-118.44143941679518,34.13113563964296],[-118.441429503886,34.13113567607861],[-118.44141959277349,34.13113605530724],[-118.44140968166094,34.13113643527935],[-118.44139977144674,34.13113715804447],[-118.44138986213083,34.13113788155311],[-118.44137995461158,34.13113894785462],[-118.44137004709232,34.13114001489969],[-118.44136014136964,34.13114142473764],[-118.44135023385039,34.1311424917827],[-118.4413403299244,34.13114424515705],[-118.44133042330344,34.13114565499491],[-118.44132052117405,34.13114775264922],[-118.44131061724806,34.13114950602352],[-118.44130071511867,34.13115160293414],[-118.44129081478592,34.13115404338111],[-118.44128091265654,34.13115614029167],[-118.44127101412045,34.1311589250185],[-118.44126111378769,34.13116136546525],[-118.44125286725337,34.13116414349965],[-118.44124297051388,34.13116727101902],[-118.44123307197779,34.13117005500189],[-118.44122317703493,34.13117352605731],[-118.44121493229724,34.13117664688406],[-118.44120503735438,34.13118011793924],[-118.44119679620997,34.13118392658192],[-118.4411869012671,34.13118739763678],[-118.44117866191932,34.13119154981533],[-118.44116876877312,34.13119536366258],[-118.44116052942533,34.13119951584077],[-118.44115229097585,34.13120366801876],[-118.4411440534247,34.13120816298913],[-118.44113416297343,34.13121266465156],[-118.44112592542227,34.13121715962144],[-118.44111768966773,34.13122199887084],[-118.44110945391321,34.13122683737633],[-118.441101219057,34.13123167662519],[-118.44109463710092,34.13123685271754],[-118.44108640314302,34.13124203550188],[-118.44107817188008,34.13124756107827],[-118.44106993971882,34.13125308665436],[-118.44106335955935,34.13125860628137],[-118.44105512829641,34.13126413260034],[-118.44104854993358,34.13126999576257],[-118.44104031956896,34.1312758648731],[-118.44103374210445,34.13128172803456],[-118.44102716553826,34.13128793473144],[-118.44102058987035,34.1312941414279],[-118.44101401330418,34.13130034812386],[-118.44100743763629,34.13130655481941],[-118.44100086286672,34.13131310653741],[-118.44099428899547,34.13131965676777],[-118.44098771422588,34.13132620699756],[-118.4409811421513,34.13133310076257],[-118.44097457995814,34.13134205499731],[-118.44096800608689,34.13134860522543],[-118.44096308062419,34.13135446243313],[-118.44095815426317,34.13136031964043],[-118.44095322700383,34.13136583331183],[-118.44094664684441,34.13137135293149],[-118.44094171958504,34.13137686734571],[-118.4409351403239,34.1313823869647],[-118.44093021036964,34.13138755709914],[-118.44092362931187,34.13139273318194],[-118.44091869935757,34.13139790331581],[-118.44091211829982,34.13140308014156],[-118.4409055345471,34.13140791268804],[-118.44089895348932,34.13141308876963],[-118.44089236793998,34.13141757852379],[-118.44088578418726,34.13142241106943],[-118.44087919953623,34.13142690082315],[-118.44087261398687,34.13143138983298],[-118.44086602843751,34.13143587958616],[-118.44085944198986,34.13144002506027],[-118.4408528564405,34.13144451481305],[-118.4408446152961,34.13144832270017],[-118.44083802884843,34.13145246891726],[-118.44082978770402,34.13145627680408],[-118.4408231985614,34.13146007948561],[-118.440814957417,34.13146388811564],[-118.44080836737605,34.13146734651811],[-118.44080012443503,34.13147081161274],[-118.44079353169914,34.13147392722341],[-118.4407852887581,34.13147739231771],[-118.44077704402044,34.13148051313319],[-118.44075890613652,34.13148744926982],[-118.44073746424903,34.13149439730316],[-118.44072921591808,34.13149683179159],[-118.4407209657905,34.13149892274496],[-118.44071271745955,34.1315013572333],[-118.44070446553536,34.13150310465156],[-118.44069621540778,34.13150519560475],[-118.4406879634836,34.13150694302293],[-118.4406797115594,34.13150869044106],[-118.44067145963518,34.13151043860277],[-118.44066320591436,34.13151184248588],[-118.4406532983951,34.13151290878267],[-118.44064504467427,34.13151431266574],[-118.44063678915681,34.13151537375744],[-118.44062853363934,34.13151643410554],[-118.44062027632523,34.1315171509187],[-118.44061201901113,34.13151786847544],[-118.44060210969528,34.13151859123722],[-118.44059385058453,34.13151896451544],[-118.44058559057551,34.13151933853722],[-118.44057732966813,34.13151936828048],[-118.44056741586067,34.13151940471602],[-118.44055915495332,34.13151943445929],[-118.44055089404596,34.13151946494619],[-118.44054263134198,34.13151915189809],[-118.44053271483953,34.13151850052017],[-118.44052445213559,34.13151818747213],[-118.44051618763496,34.13151753014556],[-118.44050792133771,34.13151653002765],[-118.44049965504048,34.13151552990967],[-118.44048973584309,34.13151453574038],[-118.44048146954586,34.13151353487884],[-118.44047320145198,34.13151219122587],[-118.44046493335811,34.13151084757295],[-118.44045666346761,34.13150916038498],[-118.4404483935771,34.13150747319703],[-118.44044012368657,34.13150578600899],[-118.44043185110115,34.1315037545424],[-118.44042357941402,34.13150172381935],[-118.44041530772688,34.1314996930962],[-118.4404070342431,34.13149731883799],[-118.44039876075932,34.13149494457976],[-118.44039048727556,34.13149257032141],[-118.44037890349998,34.13148917809881],[-118.43991381154143,34.1313338978843],[-118.43972678140094,34.1312713765986],[-118.4396407147119,34.13124249280634],[-118.43962913093628,34.13123910057366],[-118.43962085745251,34.13123672630818],[-118.43961423597058,34.13123434609391],[-118.43960596248681,34.1312319718283],[-118.43959769079967,34.13122994035507],[-118.43958941911255,34.13122790962544],[-118.43958114742539,34.1312258788957],[-118.43957122553307,34.13122419765077],[-118.43956295564257,34.13122251045709],[-118.43955468575207,34.13122082326342],[-118.43954641675988,34.13121947886225],[-118.43953814866602,34.13121813520461],[-118.43952988236877,34.13121713508315],[-118.4395216160715,34.1312161342181],[-118.43951169777246,34.13121514004524],[-118.4395034305769,34.13121413918014],[-118.4394951660763,34.1312134825948],[-118.4394869033723,34.13121316954564],[-118.43947863887169,34.13121251221665],[-118.43946872326757,34.13121220511614],[-118.43946046236024,34.13121223485953],[-118.43945220145288,34.13121226460292],[-118.43944394054552,34.13121229508992],[-118.43943402763637,34.13121233078198],[-118.43942576852565,34.13121270480514],[-118.43941750941494,34.13121307808466],[-118.43940925210083,34.13121379490038],[-118.43940099478675,34.13121451171611],[-118.43939108547083,34.13121523522409],[-118.43938282995339,34.13121629557595],[-118.43937457443592,34.1312173559278],[-118.43936631891846,34.13121841627963],[-118.43935806519762,34.1312198201676],[-118.4393498114768,34.13122122405559],[-118.43933990755079,34.13122297742832],[-118.4393316556266,34.13122472485231],[-118.43932340370239,34.13122647227629],[-118.43931515357481,34.13122856323633],[-118.43930690165062,34.13123031066021],[-118.43929865331971,34.13123274515625],[-118.43929040319213,34.13123483611616],[-118.43928215486117,34.1312372706121],[-118.43927390832687,34.13124004864399],[-118.43925411664453,34.13124664646939],[-118.4392343303521,34.13125427490227],[-118.4392277376162,34.13125739052093],[-118.43921949467516,34.1312608556241],[-118.43921125173411,34.1312643199836],[-118.43920466079489,34.13126777913783],[-118.43919642054878,34.13127158703292],[-118.43918983140617,34.13127538972276],[-118.43918159026174,34.13127919761755],[-118.43917500291576,34.13128334384296],[-118.43916841377317,34.13128714578867],[-118.43916182912211,34.13129163480598],[-118.43915358977435,34.13129578697941],[-118.43914700422499,34.1313002759962],[-118.43914041867565,34.13130476501281],[-118.4391338340246,34.13130925477272],[-118.4391272502719,34.13131408732455],[-118.43912066472257,34.13131857634043],[-118.43911408186813,34.13132340889172],[-118.43910749991207,34.13132858572204],[-118.43910256995778,34.13133375660344],[-118.43909598710339,34.13133858915386],[-118.43908940694392,34.13134410877529],[-118.43908447788793,34.13134927891214],[-118.43907789772851,34.13135479853288],[-118.43907296957086,34.13136031220464],[-118.43906804231152,34.131365825876],[-118.43906146215207,34.13137134623923],[-118.43905653668936,34.13137720270182],[-118.43905160853171,34.13138271637207],[-118.43904668306901,34.13138857357741],[-118.43904011189271,34.13139581087277],[-118.43902210965439,34.13142850770578],[-118.43900404183913,34.13144883874656],[-118.43898266822353,34.13146883888826],[-118.43896621198587,34.13148160768654],[-118.43894647599906,34.13149885359184],[-118.43892671575776,34.13151163428284],[-118.43889046693943,34.13153065734299],[-118.4388409949201,34.13154869812726],[-118.43883605149108,34.13155112071678],[-118.43882615924318,34.13155527882616],[-118.43881626609695,34.13155909265699],[-118.43880802495252,34.13156290128255],[-118.43879813000969,34.13156637157831],[-118.43878988706864,34.13156983666882],[-118.43877999032915,34.13157296417314],[-118.43877009358967,34.13157609093379],[-118.43876184885198,34.13157921248923],[-118.43875195031588,34.13158199645851],[-118.43874205088144,34.13158478042778],[-118.43873215054869,34.13158722011865],[-118.43872225021593,34.1315896605531],[-118.43871400188499,34.13159209503878],[-118.43870409975563,34.13159419193842],[-118.4386941949313,34.1315959453034],[-118.43868429280191,34.131598042203],[-118.43867438887592,34.13159979556789],[-118.4386644831533,34.13160120539816],[-118.43865457653233,34.13160261522842],[-118.4386446708097,34.13160402505869],[-118.43863476329044,34.13160509135432],[-118.43862485577115,34.13160615839352],[-118.43861494555695,34.13160688115455],[-118.43860338423923,34.13160760986423],[-118.43859347492332,34.13160833262524],[-118.43858356291248,34.13160871259529],[-118.43857365000333,34.13160874828719],[-118.43856373889082,34.13160912751371],[-118.43855382598164,34.13160916394914],[-118.43854391037755,34.13160885610647],[-118.43853399567173,34.1316085490074],[-118.43852407916933,34.13160789763018],[-118.43851416446351,34.13160759053111],[-118.43850259326435,34.13160660156795],[-118.43849267496529,34.13160560739973],[-118.43848275666626,34.13160461248792],[-118.43847283746888,34.13160361831967],[-118.4384629173732,34.13160228061684],[-118.43845299548089,34.13160059863579],[-118.43844307269026,34.13159891739826],[-118.43843315079796,34.13159723616074],[-118.43842322800731,34.1315955541796],[-118.43841330162343,34.13159318587272],[-118.43840502993629,34.13159115515182],[-118.43839510445072,34.13158878684488],[-118.43838517896515,34.13158641853781],[-118.43837525078462,34.13158370669606],[-118.43836532350242,34.13158099485419],[-118.4383570464254,34.13157793352894],[-118.43834711734655,34.13157487815218],[-118.4383371873694,34.13157182277536],[-118.43766528932105,34.13133834657069],[-118.43753652707593,34.13120454933283],[-118.43745359976593,34.13109242018918],[-118.43736730834728,34.13102413046897],[-118.4372495150677,34.1309595623804],[-118.43709229513694,34.13093076433161],[-118.43692448581837,34.13091857474172],[-118.4367636613735,34.13090766884138],[-118.43663162927199,34.13087891418953],[-118.43652386755713,34.13082428654862],[-118.43643774299291,34.13074240322425],[-118.43635319772075,34.1306292328025],[-118.436297962289,34.13051935313663],[-118.436263494731,34.13040895665523],[-118.43626631859314,34.13030035600431],[-118.43629184719973,34.13018318356351],[-118.43634177758875,34.13001441668716],[-118.43638538999753,34.12985215151024],[-118.43639356184211,34.12973751879351],[-118.43636383479335,34.12962839143214],[-118.43631265152847,34.12950811403636],[-118.43623286776653,34.12940184004132],[-118.43613861613017,34.12930237348253],[-118.43602796834615,34.12921465660153],[-118.4359665595521,34.12911768722611],[-118.43592231876931,34.12899921292475],[-118.43591736928214,34.12888125892914],[-118.43592096964859,34.12872616361091],[-118.43592780507585,34.12854318280726],[-118.43590186892263,34.12839189029836],[-118.43589666650735,34.12825496545061],[-118.43593021137585,34.12810710229472],[-118.4359986730849,34.12796673454825],[-118.43613168086333,34.12783502215825],[-118.43627782675377,34.1277413537134],[-118.43638822395152,34.12764725333707],[-118.43647397997125,34.1275687888809],[-118.43654804289604,34.1274734526911],[-118.43663432669638,34.12729715303105],[-118.43668103599586,34.12714554553974],[-118.43669486615093,34.12706321258986],[-118.43665824860338,34.12697354563389],[-118.4365904862522,34.12687759864961],[-118.43650215994107,34.12680036212434],[-118.4364179091855,34.12672499845218],[-118.43633799774379,34.12662776580639],[-118.43627936460248,34.12651156687619],[-118.43621552054252,34.12637587337377],[-118.4361337343012,34.12620846194988],[-118.43604356758183,34.12604761750163],[-118.43590789605744,34.12585733393887],[-118.43573487284027,34.12565143070494],[-118.43558805383117,34.12546546244327],[-118.43544621498458,34.12532275243432],[-118.43534800220907,34.12521785422411],[-118.43523647463917,34.12510143365372],[-118.43511743964379,34.12502279490455],[-118.43501822391882,34.12494679268222],[-118.43488199107128,34.12484662214348],[-118.43475180310001,34.12469369538398],[-118.4346833950926,34.12458611284845],[-118.43463788644414,34.12448165545723],[-118.43461878773088,34.12437901919186],[-118.4346211480931,34.12427387888653],[-118.43464881415886,34.12417797757661],[-118.43469191898596,34.12408321660853],[-118.43473931464578,34.1239859414389],[-118.43478247123204,34.12389233590072],[-118.43481188335164,34.12379787748275],[-118.43480984227132,34.12367881588543],[-118.43479148119025,34.12357102774657],[-118.43476015963346,34.1234834335026],[-118.43466182804173,34.12338660614457],[-118.43455556201893,34.12333201964594],[-118.43445332406496,34.12326159027183],[-118.4343580848419,34.1231661581493],[-118.43428223642971,34.12306761858684],[-118.434232409273,34.12295856654271],[-118.43423893190317,34.12291616049252],[-118.43425935481659,34.12286417636928],[-118.43431752697347,34.12280365773256],[-118.43440859591037,34.12274774225734],[-118.43446938800072,34.1227407607836],[-118.4345606696387,34.1227493074035],[-118.43465721325543,34.12278151147144],[-118.43477956532047,34.12285769098271],[-118.43490295398905,34.12294411673013],[-118.43505224802858,34.12305083449019],[-118.4351667722636,34.12313868529113],[-118.43526701330202,34.12322091357267],[-118.43536944019559,34.12331987654761],[-118.4354489556364,34.12341659643609],[-118.43549011161079,34.12352712354591],[-118.4354980073347,34.12362296309558],[-118.43550076780244,34.12370931067994],[-118.43548919392879,34.12380831063365],[-118.43549885754389,34.12397891175513],[-118.43551847819883,34.12413414269977],[-118.43554813044533,34.12423542563641],[-118.43562583139177,34.12430470377365],[-118.43575988353855,34.12436520327193],[-118.4358766838377,34.1244298965258],[-118.43598034421133,34.12450650553116],[-118.43607310841989,34.12459342948635],[-118.43623747754603,34.12475297168427],[-118.4363506941757,34.12486501841955],[-118.4364586671843,34.12493918533077],[-118.43656134033509,34.12500850096242],[-118.43673645091141,34.12509194203997],[-118.43696042478366,34.12519567097274],[-118.43710029692043,34.12526475112813],[-118.43717867911259,34.12532356187916],[-118.43727065293376,34.12541625887676],[-118.43735996660722,34.12550609003058],[-118.43742438190941,34.12559874262335],[-118.43753932908048,34.12573687086694],[-118.43761955047869,34.12586699211469],[-118.43767921022896,34.12596472103778],[-118.4377107109778,34.12605276091364],[-118.43777863339903,34.12626004315264],[-118.43787817726734,34.12647970644526],[-118.43793764038877,34.12654786364359],[-118.4379974450826,34.12660007258623],[-118.43807433143418,34.12665302182948],[-118.43816169595222,34.12668955293373],[-118.43822898120872,34.1267116738931],[-118.43830851015849,34.12672355696961],[-118.43838698740907,34.12670973545698],[-118.43846362165529,34.12667343422947],[-118.43851232435213,34.12658921498502],[-118.43853993971277,34.12649349045088],[-118.43852808958631,34.1263961411209],[-118.43849292224458,34.12625717982775],[-118.43840890451706,34.12601089659181],[-118.43823700145589,34.1254860723064],[-118.43788978315189,34.12461568616101],[-118.43781942106504,34.12439188757423],[-118.4377543284691,34.1241522111147],[-118.43770838771736,34.12394280854668],[-118.43767654780278,34.12374641766805],[-118.43762520574062,34.12343112398484],[-118.43758565476668,34.12322178688266],[-118.43753625657807,34.12301639897282],[-118.43747065284572,34.12287663306422],[-118.4373296266078,34.12271125627012],[-118.43714068282914,34.12248425323158],[-118.43697176994563,34.12226370042568],[-118.43690124961877,34.12215768630936],[-118.436854901856,34.12204328820788],[-118.43682914706916,34.12188474795713],[-118.43681555936207,34.12169522617493],[-118.43679300686493,34.12146807265555],[-118.436771008,34.12134394640458],[-118.43673225870963,34.12122338715674],[-118.43665930491656,34.12110226252677],[-118.43655525191465,34.1209339214022],[-118.43643524116324,34.12076847568866],[-118.43634173269841,34.12066291319245],[-118.43624042666818,34.12053123063907],[-118.43612178178043,34.12028939581825],[-118.43601326315353,34.12005609793006],[-118.43593612030024,34.11979630235162],[-118.43586847910959,34.11942189894944],[-118.43581484692633,34.1189502811718],[-118.43576435849012,34.11861342961845],[-118.43572512230686,34.11843161969368],[-118.43564248680853,34.11817734978408],[-118.43557446065023,34.11798228224502],[-118.43549693142697,34.11779671668295],[-118.43543952474653,34.11764237408334],[-118.43537924003874,34.11748838580206],[-118.43532857322256,34.11730373560762],[-118.43526854997519,34.11701278937829],[-118.43521938405242,34.11689348295479],[-118.43513853813175,34.11678985335616],[-118.43498450009349,34.11665153072536],[-118.43487576145483,34.11654366165435],[-118.43477412917674,34.1164370326086],[-118.43470302062025,34.11631883805164],[-118.43463978372837,34.11616564184268],[-118.43460528331897,34.11601081594059],[-118.43460575132508,34.11587409504281],[-118.43463942697544,34.115670790908],[-118.43469865682619,34.11546241985798],[-118.43476674214945,34.11526941971332],[-118.43479654920367,34.11518192583099],[-118.43481994094029,34.11506085081424],[-118.43482326600012,34.11490986188047],[-118.43480733554709,34.11459436355531],[-118.4347816462784,34.114236207784],[-118.43479365498244,34.11399058263214],[-118.43479505819916,34.11375570523418],[-118.43477833228278,34.11356922428864],[-118.43472297405633,34.11337550319173],[-118.43468314514325,34.11312064711231],[-118.4347009813231,34.11297836980476],[-118.43473203702641,34.11291948690306],[-118.4348368658321,34.11265669208804],[-118.4349548773895,34.11237512390002],[-118.43511195569765,34.11202960722263],[-118.43526695390541,34.11164141107171],[-118.43538349299587,34.11136630119966],[-118.4354480918794,34.11112759525546],[-118.43546610616431,34.11099521486278],[-118.43545239253449,34.11085460320398],[-118.43542497614789,34.11072759865006],[-118.43535590974265,34.11050580871685],[-118.43528276952368,34.11034061316003],[-118.43525324497112,34.1102218815836],[-118.43525683184419,34.11016904425751],[-118.43526994563214,34.11010412890355],[-118.43530386951666,34.10994241444102],[-118.43536836506259,34.1098034234747],[-118.43543158820574,34.10970740846515],[-118.4355127007169,34.10960027213293],[-118.43563420371744,34.10944950273598],[-118.43574454764922,34.10935234205861],[-118.4358476747808,34.10927333072502],[-118.43594068875589,34.10917305519695],[-118.43599999136275,34.10907656918525],[-118.43602818200519,34.10893221308593],[-118.43604421579197,34.10833030402796],[-118.43607652239712,34.10813300477482],[-118.43612570810632,34.10798524405991],[-118.43618378364485,34.1078374833395],[-118.43625127875868,34.10769547381952],[-118.43626603448632,34.10756402220327],[-118.43628915560284,34.107188660442],[-118.43631152247237,34.10688952786593],[-118.43633783779948,34.10672066099854],[-118.43640419685615,34.10648641762018],[-118.43649691749854,34.10622443611297],[-118.43652458905919,34.10616729093272],[-118.43656610282356,34.10609017368901],[-118.43666899481318,34.10596258598315],[-118.43674321963044,34.10583171853064],[-118.43678004744338,34.10570069315833],[-118.4368213173666,34.10550778510132],[-118.436909273936,34.10508738338581],[-118.4370061104284,34.10475658321806],[-118.43707487882007,34.10454650678599],[-118.43722604957394,34.10408852809611],[-118.43726236913619,34.10384717101705],[-118.43727485173345,34.10360255498259],[-118.43726557454347,34.10336831128004],[-118.43720923610228,34.10311684166272],[-118.43711091877354,34.10289967303117],[-118.43698326748365,34.10267577391065],[-118.43682903163916,34.10245511448722],[-118.43665269179903,34.10222783809797],[-118.43639998879435,34.10182086892001],[-118.43598099220122,34.10121557998604],[-118.43562121389932,34.10068078444819],[-118.4354771566657,34.10045960188376],[-118.43535682061314,34.10032558418335],[-118.43525710516953,34.10022539260335],[-118.43510934673783,34.10013488129943],[-118.43494622122749,34.10003649891299],[-118.43479589613422,34.09995612825756],[-118.4346238574603,34.0998809566135],[-118.43439646287503,34.09982874480738],[-118.43415614297324,34.09977075511339],[-118.43400200118317,34.09972249981901],[-118.43385878095175,34.09966792953319],[-118.43369234632172,34.09964381130066],[-118.43355894157295,34.09965974210772],[-118.43341772918217,34.09968515683921],[-118.43316348540044,34.09973738694524],[-118.43299139706752,34.09975430396293],[-118.43285211098404,34.09975615946038],[-118.43271735279096,34.09974267001337],[-118.4325564299717,34.09970927506071],[-118.43243524471599,34.09967315223646],[-118.43232031715428,34.09961913845316],[-118.43221636895225,34.0995329337102],[-118.43206128694725,34.09939573764512],[-118.43171059026942,34.09908305535411],[-118.43153511482527,34.09894607337919],[-118.43133506153256,34.09883461650059],[-118.43113776962794,34.09871222505595],[-118.43101198451551,34.09859798806326],[-118.43090702405387,34.09846501726857],[-118.43083312896637,34.09830094484914],[-118.43069635131566,34.09791496266364],[-118.43046503843618,34.09717231930247],[-118.43019305822503,34.09641879705814],[-118.4298022425605,34.09518463524406],[-118.42964108588603,34.09475772818122],[-118.42954840325795,34.09456253886212],[-118.42943441438267,34.09441977296452],[-118.42931652697371,34.09429356990193],[-118.42918742163033,34.09412458329778],[-118.42908234460928,34.09392150493881],[-118.42901781117548,34.09374789777748],[-118.42900468112079,34.09360160416855],[-118.429039513254,34.0934271949763],[-118.42911539399553,34.0931592026679],[-118.42918992541765,34.09293241346948],[-118.42924854169954,34.09269747405552],[-118.42924805542724,34.09251733849899],[-118.42922357650502,34.09241147674134],[-118.42916824620036,34.09230145321259],[-118.42908905182462,34.09220745931272],[-118.42896976992355,34.09211774768515],[-118.42875941396862,34.09197896801539],[-118.42784216907569,34.09137085178683],[-118.4275951062709,34.09119262248628],[-118.42752385183071,34.09112606264439],[-118.42745520856086,34.09105383766919],[-118.42736934941227,34.09091412989753],[-118.42726424017174,34.0906486434702],[-118.42714213181031,34.09037373826761],[-118.4270727225519,34.09019327802749],[-118.42704727832863,34.09012750689684],[-118.42704595623779,34.0898686712323],[-118.42704372931422,34.08975601581059],[-118.42704337178473,34.08968594617399],[-118.42704028786835,34.08940532854928],[-118.4270396617426,34.08928270651123],[-118.42703663352178,34.08901308098574],[-118.42703607566798,34.08890385332231],[-118.42703336455247,34.08869639774532],[-118.42703006683703,34.08837387545517],[-118.42702671612103,34.08804104951852],[-118.42702394751335,34.08782225898973],[-118.42702021052173,34.08741386664273],[-118.42701484937615,34.08701063252546],[-118.42701376331296,34.08679801879279],[-118.42701143667637,34.08666578452313],[-118.42700446395314,34.08594689265832],[-118.42700173576964,34.08573600155478],[-118.42699488881051,34.08504184097831],[-118.42699435431291,34.08493707883742],[-118.42698533702412,34.08414125403217],[-118.42698130269017,34.08367447024039],[-118.42697909552952,34.0835655920674],[-118.42697480697235,34.0830490041826],[-118.42609308357153,34.08305933101606],[-118.42582394292252,34.08306234052889],[-118.42508587001709,34.08307112280009],[-118.42434449670131,34.08307991176653],[-118.42432633276627,34.08307997575118],[-118.4242602904232,34.08308158132033],[-118.42424872820719,34.08308093477741],[-118.4232150969969,34.0830931476669],[-118.42279074633139,34.08309806853455],[-118.42279155032357,34.08260378923636],[-118.42279293732236,34.0822249188102],[-118.42279235431573,34.08210951002912],[-118.42279589727124,34.08117727680594],[-118.42279764449445,34.08086950002696],[-118.42279906742586,34.08017119472341],[-118.4228002100829,34.08007054999532],[-118.4227995453296,34.07993899642867],[-118.42293988822811,34.07993713113152],[-118.42300593057118,34.07993586924722],[-118.42300858676049,34.07993819794716],[-118.42301053803027,34.07994005370318]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000815,"geom:area_square_m":8339047.259442,"geom:bbox":"-118.459433439,34.0791957203,-118.422790746,34.1329398257","geom:latitude":34.110428,"geom:longitude":-118.44304,"iso:country":"US","lbl:latitude":34.10325,"lbl:longitude":-118.444052,"lbl:max_zoom":18,"mps:latitude":34.11414,"mps:longitude":-118.44581,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Beverly Glen"],"name:eng_x_variant":["Beverly Gln"],"name:spa_x_preferred":["Beverly Glen"],"reversegeo:latitude":34.11414,"reversegeo:longitude":-118.44581,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869119,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4899523"},"wof:country":"US","wof:geomhash":"184ca15f0208cc1e2bf7d9fee27a6001","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1041491317,"neighbourhood_id":85869119,"region_id":85688637}],"wof:id":1041491317,"wof:lastmodified":1566608537,"wof:name":"Beverly Glen","wof:parent_id":85869119,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85805981],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041500549.geojson b/fixtures/microhoods/1041500549.geojson new file mode 100644 index 0000000..25eea23 --- /dev/null +++ b/fixtures/microhoods/1041500549.geojson @@ -0,0 +1 @@ +{"id":1041500549,"type":"Feature","bbox":[-118.5701197645024,34.03788384889918,-118.5551,34.04818693703709],"geometry":{"type":"Polygon","coordinates":[[[-118.556381,34.037983],[-118.55639230582732,34.03790492634044],[-118.55654144345374,34.03792715119016],[-118.5567463659756,34.03796879821138],[-118.55695302351157,34.03802176510342],[-118.55725910482784,34.03813680334962],[-118.5575108326107,34.03826615762941],[-118.55774612568273,34.03840726932234],[-118.5579765260259,34.03855665855384],[-118.55823495272415,34.03870110826226],[-118.55853294457792,34.03883850121749],[-118.5588456807248,34.03896035863833],[-118.55914344329065,34.03906339483652],[-118.55940309518101,34.03914394699903],[-118.5595932202827,34.0391932234276],[-118.55985955449559,34.03928472013461],[-118.56021871565557,34.0394372904969],[-118.56063097182256,34.03963218514259],[-118.56150031057848,34.04005923011868],[-118.56186625934531,34.04023853754495],[-118.56221059618463,34.04039459901617],[-118.56255316009782,34.0405321263043],[-118.56291872965903,34.04065441954719],[-118.56332380082826,34.040760725591],[-118.56358331044201,34.04081790750091],[-118.56385764259382,34.04087159094134],[-118.56411041744875,34.04090955411682],[-118.56433181535695,34.04094425601915],[-118.5647595592167,34.04098620808333],[-118.56508000038802,34.04102387469877],[-118.56543683806713,34.04107407358104],[-118.56581187445309,34.04113104489704],[-118.56617703776617,34.04119219762708],[-118.56651254878665,34.04126103343686],[-118.56714054357971,34.04138277143907],[-118.56714214099081,34.04155928096916],[-118.56718526588867,34.04164012779633],[-118.56731993058477,34.04188823188221],[-118.56733335511824,34.04191775616393],[-118.56919375780012,34.0454054108848],[-118.56927150028072,34.04555033430842],[-118.56989689572693,34.04672252614025],[-118.569897,34.046724],[-118.570107,34.047117],[-118.57011461389592,34.04774368220299],[-118.5701197645024,34.04818693703709],[-118.569256,34.047956],[-118.568186,34.047682],[-118.567858,34.047595],[-118.567645,34.047498],[-118.567486,34.047359],[-118.567369,34.047172],[-118.567298,34.046928],[-118.56717,34.046952],[-118.56656,34.047062],[-118.56637,34.047138],[-118.566261,34.047205],[-118.566184,34.047292],[-118.56611,34.047412],[-118.565903,34.047359],[-118.565553,34.047297],[-118.565283,34.047289],[-118.564995,34.047291],[-118.564817,34.047313],[-118.56474,34.047323],[-118.564597,34.047358],[-118.564398,34.047432],[-118.564226,34.047518],[-118.564131,34.047559],[-118.564098,34.047562],[-118.564024,34.047569],[-118.563941,34.047544],[-118.563205,34.047118],[-118.56283,34.046892],[-118.562575,34.046764],[-118.562118,34.046601],[-118.561955,34.046555],[-118.561846,34.046567],[-118.561684,34.0466],[-118.561452,34.046621],[-118.561212,34.046613],[-118.561047,34.046698],[-118.560896,34.046855],[-118.560739,34.047108],[-118.56072,34.047143],[-118.560662,34.047247],[-118.560553,34.047344],[-118.560435,34.047381],[-118.560287,34.047374],[-118.560168,34.04734],[-118.560106,34.047266],[-118.560066,34.047055],[-118.560061,34.047017],[-118.560044,34.046886],[-118.560006,34.046649],[-118.559987,34.046561],[-118.55994,34.0464],[-118.55988,34.046243],[-118.559806,34.046089],[-118.55972,34.04594],[-118.559622,34.045797],[-118.559511,34.045659],[-118.55939,34.045529],[-118.558641,34.044831],[-118.557549,34.043813],[-118.55739,34.043682],[-118.557218,34.043563],[-118.556088,34.042911],[-118.555725,34.042683],[-118.555245,34.042291],[-118.555349,34.042181],[-118.555382,34.04212],[-118.555397,34.042059],[-118.555395,34.042011],[-118.555394,34.041992],[-118.555373,34.041932],[-118.55534,34.041882],[-118.555117,34.041637],[-118.5551,34.041597],[-118.5551,34.041552],[-118.55512,34.041505],[-118.555154,34.041472],[-118.555202,34.041448],[-118.555254,34.041439],[-118.555523,34.04146],[-118.555639,34.041485],[-118.555748,34.041524],[-118.555849,34.041577],[-118.555929,34.041635],[-118.556305,34.041945],[-118.556393,34.041995],[-118.556494,34.042031],[-118.556725,34.042094],[-118.556819,34.042133],[-118.556896,34.042178],[-118.556948,34.042218],[-118.557068,34.042332],[-118.557147,34.042383],[-118.557227,34.042417],[-118.557314,34.042439],[-118.557404,34.042449],[-118.557503,34.042444],[-118.557608,34.04242],[-118.557697,34.042384],[-118.557776,34.042333],[-118.557842,34.042271],[-118.557888,34.042207],[-118.557921,34.042137],[-118.557937,34.04207],[-118.557936,34.041992],[-118.557918,34.041905],[-118.557902,34.04186],[-118.557853,34.041769],[-118.557787,34.041688],[-118.557596,34.041517],[-118.55739,34.041337],[-118.557237,34.041227],[-118.557072,34.041132],[-118.556925,34.041063],[-118.556772,34.041006],[-118.556614,34.040959],[-118.556418,34.040919],[-118.556192,34.040891],[-118.556133,34.040871],[-118.556083,34.040839],[-118.556044,34.040797],[-118.556018,34.040744],[-118.556011,34.040688],[-118.556023,34.040632],[-118.556055,34.040579],[-118.556095,34.040542],[-118.556152,34.040511],[-118.556217,34.040494],[-118.556457,34.040474],[-118.556569,34.040454],[-118.556697,34.040415],[-118.556801,34.04037],[-118.556981,34.040278],[-118.557052,34.04026],[-118.557107,34.040256],[-118.557172,34.040261],[-118.557239,34.040279],[-118.557305,34.040312],[-118.557355,34.040354],[-118.557444,34.040466],[-118.557525,34.040536],[-118.557612,34.040587],[-118.557698,34.040622],[-118.557788,34.040645],[-118.557896,34.040657],[-118.558003,34.040652],[-118.558443,34.040602],[-118.558507,34.040608],[-118.558568,34.040626],[-118.558628,34.040662],[-118.558837,34.040835],[-118.55893,34.04089],[-118.559022,34.040929],[-118.559254,34.040989],[-118.559356,34.041026],[-118.559665,34.041174],[-118.559749,34.041202],[-118.559848,34.041219],[-118.559949,34.041221],[-118.560048,34.041209],[-118.560243,34.041166],[-118.560305,34.041168],[-118.560357,34.041184],[-118.560441,34.041228],[-118.560494,34.041245],[-118.560633,34.041271],[-118.560745,34.041306],[-118.560792,34.041327],[-118.560942,34.041407],[-118.560996,34.041142],[-118.560991,34.041091],[-118.560972,34.041037],[-118.560939,34.040988],[-118.56089,34.040944],[-118.560829,34.040911],[-118.560766,34.040893],[-118.560694,34.040886],[-118.560593,34.040898],[-118.560128,34.040874],[-118.560063,34.040865],[-118.559993,34.040844],[-118.559926,34.040809],[-118.55987,34.040764],[-118.559813,34.040715],[-118.559744,34.040676],[-118.55966,34.040649],[-118.559572,34.040638],[-118.559379,34.04065],[-118.559323,34.040649],[-118.559256,34.040634],[-118.559193,34.040603],[-118.559145,34.040562],[-118.559134,34.040549],[-118.559027,34.040352],[-118.558993,34.04031],[-118.558947,34.040277],[-118.558889,34.040254],[-118.558825,34.040246],[-118.558753,34.040252],[-118.558672,34.040252],[-118.558606,34.040238],[-118.558537,34.040207],[-118.55847,34.040161],[-118.558396,34.040142],[-118.558344,34.040113],[-118.55831,34.040076],[-118.558289,34.040029],[-118.558279,34.039952],[-118.558256,34.039902],[-118.558225,34.039864],[-118.55818,34.03983],[-118.55813,34.039808],[-118.558023,34.03977],[-118.557995,34.039749],[-118.557977,34.039718],[-118.557974,34.039685],[-118.55802,34.039553],[-118.558657,34.039895],[-118.558751,34.039932],[-118.558955,34.039997],[-118.559069,34.040019],[-118.559228,34.040032],[-118.559271,34.040044],[-118.559334,34.040075],[-118.559418,34.040141],[-118.559487,34.040177],[-118.559565,34.040198],[-118.559857,34.040249],[-118.559913,34.040271],[-118.559965,34.040306],[-118.560032,34.040373],[-118.560299,34.040545],[-118.560367,34.040571],[-118.560657,34.040615],[-118.560783,34.040616],[-118.560853,34.040632],[-118.560912,34.040659],[-118.561347,34.04091],[-118.561455,34.040957],[-118.56155,34.040989],[-118.56167,34.04088],[-118.561707,34.040864],[-118.561752,34.040862],[-118.561792,34.040874],[-118.562115,34.041021],[-118.562158,34.041026],[-118.562199,34.041019],[-118.562343,34.040966],[-118.562287,34.040903],[-118.562237,34.040851],[-118.562157,34.040795],[-118.562004,34.040727],[-118.561805,34.040655],[-118.560739,34.040331],[-118.560692,34.040308],[-118.56065,34.04027],[-118.560626,34.040228],[-118.560617,34.04018],[-118.560626,34.040129],[-118.559831,34.039887],[-118.55951,34.039778],[-118.559195,34.03966],[-118.558885,34.039533],[-118.557571,34.038948],[-118.557454,34.038887],[-118.557292,34.038815],[-118.557124,34.038752],[-118.556908,34.038688],[-118.556686,34.038639],[-118.55576,34.038537],[-118.555793,34.03843],[-118.555932,34.037982],[-118.5559601366489,34.03788384889918],[-118.55596847797759,34.0378847933242],[-118.55612206232144,34.03788502358108],[-118.556381,34.037983]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000072,"geom:area_square_m":738545.380587,"geom:bbox":"-118.570119765,34.0378838489,-118.5551,34.048186937","geom:latitude":34.043723,"geom:longitude":-118.562946,"iso:country":"US","lbl:latitude":34.042641,"lbl:longitude":-118.561096,"lbl:max_zoom":18,"mps:latitude":34.043812,"mps:longitude":-118.562947,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Castellammare"],"name:ita_x_preferred":["Castellammare"],"name:jpn_x_preferred":["カステッランマーレ"],"name:nor_x_preferred":["Castellammare"],"name:ron_x_preferred":["Castellammare"],"name:rus_x_preferred":["Кастелламаре"],"name:sco_x_preferred":["Castellammare"],"name:swe_x_preferred":["Castellammare"],"reversegeo:latitude":34.043812,"reversegeo:longitude":-118.562947,"src:geom":"zetashapes","src:lbl_centroid":"mz","wof:belongsto":[85840153,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"3a46f3319e998811c4e01a7c4e967027","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1041500549,"neighbourhood_id":85840153,"region_id":85688637}],"wof:id":1041500549,"wof:lastmodified":1566608535,"wof:name":"Castellammare","wof:parent_id":85840153,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85809755],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041500555.geojson b/fixtures/microhoods/1041500555.geojson new file mode 100644 index 0000000..b09a9c0 --- /dev/null +++ b/fixtures/microhoods/1041500555.geojson @@ -0,0 +1 @@ +{"id":1041500555,"type":"Feature","bbox":[-118.3876333978847,34.03817860506778,-118.37640752482,34.04678],"geometry":{"type":"Polygon","coordinates":[[[-118.38607,34.04678],[-118.3856,34.046636],[-118.385107,34.046454],[-118.384105,34.046084],[-118.383109,34.045716],[-118.38207,34.04552],[-118.381031,34.045324],[-118.379992,34.045129],[-118.379024,34.044947],[-118.37803,34.04476],[-118.37683245114802,34.0445345325035],[-118.37683385357573,34.04450159896736],[-118.37683369277731,34.04446587701559],[-118.37683352928393,34.04442946801612],[-118.3768351085222,34.04441366254256],[-118.37683332356973,34.04438378517265],[-118.37683151076948,34.04434772523715],[-118.37682969707092,34.04431166454202],[-118.37682623586214,34.04427595293114],[-118.37682277375501,34.04424024204952],[-118.37681766144273,34.04420453561899],[-118.37681254913045,34.04416882917335],[-118.376805786613,34.04413312792323],[-118.37679902409553,34.04409742665802],[-118.3767922624764,34.04406206777908],[-118.37678385244872,34.04402705873025],[-118.3767737895209,34.04399171098727],[-118.3767637283897,34.04395670711989],[-118.37675366995346,34.0439220463843],[-118.3767419586171,34.04388704769862],[-118.3767302490774,34.04385239214501],[-118.37672357639148,34.04383661261628],[-118.37652141143508,34.04329075925247],[-118.37651304272988,34.04326502383701],[-118.37650133408849,34.04323036877358],[-118.37648962454875,34.04319571295161],[-118.3764795643159,34.04316070801131],[-118.37646950408303,34.0431257045453],[-118.3764610922587,34.04309035196045],[-118.37645268133268,34.04305499936086],[-118.37644426950837,34.04301964600215],[-118.37643750878756,34.0429842889069],[-118.37643239647528,34.0429485819475],[-118.3764272850613,34.04291287571748],[-118.37642217274902,34.04287716947238],[-118.3764187097436,34.04284111410688],[-118.3764152476365,34.04280540262106],[-118.37641343573458,34.04276934275879],[-118.37641162383264,34.04273362528785],[-118.37641152681458,34.04271198592998],[-118.37641146213586,34.04269755944019],[-118.37640796768945,34.04265463501726],[-118.37640772873758,34.04260139592939],[-118.37640752482,34.04255605674162],[-118.37641055932903,34.04249696763279],[-118.37641693287597,34.04244611190196],[-118.37642335403362,34.04240590428459],[-118.37698345720653,34.04034049962571],[-118.37724318979959,34.03937896166507],[-118.37725131416299,34.03935077080244],[-118.37725778742293,34.0393222412319],[-118.37726426068285,34.03929371165182],[-118.3772690828393,34.03926518727288],[-118.37727555430263,34.03923631450843],[-118.37727872535558,34.03920745215571],[-118.37728354571539,34.03917858458234],[-118.37728671676835,34.03914972146557],[-118.3772882367178,34.03912086354973],[-118.37728975756559,34.03909200636841],[-118.3772912757184,34.03906280526709],[-118.3772927965662,34.03903394806608],[-118.37729266451385,34.03900475215551],[-118.37729253425812,34.03897589940107],[-118.37729075379723,34.03894705259199],[-118.37728897243801,34.03891786186231],[-118.37728719197713,34.03888901503348],[-118.37728376041275,34.03886017266124],[-118.37728032974668,34.0388313310236],[-118.3772768990806,34.03880248937616],[-118.37727181820934,34.03877365218531],[-118.3772667364398,34.038744815729],[-118.37726000716,34.03871632764096],[-118.37725492718708,34.03868783433251],[-118.37724654680378,34.03865934994733],[-118.37723981842231,34.03863120574256],[-118.37723144163226,34.03860340916258],[-118.37722976268101,34.03859723214355],[-118.3772280864247,34.03859139829187],[-118.37722307472373,34.03857801772581],[-118.37721971502455,34.03856497585907],[-118.37721635442709,34.03855159082249],[-118.37721299293126,34.03853820503932],[-118.37721128253898,34.03852481478768],[-118.37720792283984,34.03851177291282],[-118.37720621244753,34.0384983819126],[-118.37720450025859,34.03848464848644],[-118.37720278896798,34.03847125748194],[-118.37720107857567,34.03845786721972],[-118.37720101838856,34.03844447174463],[-118.3772009573031,34.03843107552294],[-118.37719924511418,34.03841734134154],[-118.37719918492705,34.03840394586003],[-118.37719912473992,34.03839055037636],[-118.37720071296137,34.03837680576678],[-118.37720702362624,34.03831221113379],[-118.37721828310998,34.03824725765006],[-118.37723415297295,34.03817860506778],[-118.3876333978847,34.04105323039428],[-118.387619,34.041106],[-118.387298,34.042282],[-118.386592,34.044868],[-118.386334,34.045812],[-118.38607,34.04678]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":630467.116131,"geom:bbox":"-118.387633398,34.0381786051,-118.376407525,34.04678","geom:latitude":34.042483,"geom:longitude":-118.381804,"iso:country":"US","lbl:latitude":34.020953,"lbl:longitude":-118.325495,"lbl:max_zoom":18,"mps:latitude":34.042478,"mps:longitude":-118.381812,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"old GNIS","mz:tier_metro":1,"name:eng_x_preferred":["La Cienega Heights"],"reversegeo:latitude":34.042478,"reversegeo:longitude":-118.381812,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865813,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"765a43c9bb4b4dfac1d167267b0c0b3f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041500555,"neighbourhood_id":85865813,"region_id":85688637}],"wof:id":1041500555,"wof:lastmodified":1566608535,"wof:name":"Cienega","wof:parent_id":85865813,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85811025],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041520717.geojson b/fixtures/microhoods/1041520717.geojson new file mode 100644 index 0000000..21c1a1e --- /dev/null +++ b/fixtures/microhoods/1041520717.geojson @@ -0,0 +1 @@ +{"id":1041520717,"type":"Feature","bbox":[-118.18823087095286,34.11248787128734,-118.16579352242988,34.13132200426189],"geometry":{"type":"Polygon","coordinates":[[[-118.1760994552299,34.11248787128734],[-118.18395763557132,34.11529993067651],[-118.18435095241377,34.11546487867789],[-118.18405409256006,34.1157964995018],[-118.18380816511555,34.11607095952557],[-118.18359913900616,34.11642188217216],[-118.18350703874691,34.11662143165652],[-118.18345269831995,34.11676624706962],[-118.18343904941057,34.11683420995446],[-118.1834332013296,34.11688834395145],[-118.18377230499789,34.12018110134576],[-118.18457880423999,34.12200032118903],[-118.18602674802015,34.12509115602873],[-118.18823087095286,34.12989906691219],[-118.18806042719504,34.12995261812446],[-118.18793163393613,34.12998716632507],[-118.18793661868764,34.12999986767994],[-118.18784745460748,34.13002370660328],[-118.18777975666936,34.13004201614695],[-118.18762289375277,34.13008416533655],[-118.18746603083615,34.13012597022093],[-118.18730751501946,34.13016812085581],[-118.18715065210284,34.13021026923893],[-118.18699378918625,34.13025241685742],[-118.18683692357469,34.13029422091498],[-118.18667840775797,34.13033637146598],[-118.1865215448414,34.13037851827799],[-118.18636468102648,34.13042066506903],[-118.18620781541493,34.13046246829978],[-118.18605590401219,34.13050288991774],[-118.18589243488496,34.13054676400785],[-118.18573556837512,34.13058856643264],[-118.18557870366189,34.13063071311895],[-118.1854366997784,34.13066871427247],[-118.18542018694686,34.1306728612714],[-118.18531120692985,34.13070188133513],[-118.1852616693335,34.13071500940278],[-118.18510645572378,34.13075680877007],[-118.18494959011223,34.1307989538853],[-118.18479107249888,34.13084110121024],[-118.18463420598901,34.13088290274588],[-118.18447734037748,34.13092504705463],[-118.18432047386761,34.13096719134237],[-118.18416195535595,34.13100933783989],[-118.18400508794777,34.13105113854879],[-118.18385152364488,34.13109224770215],[-118.18375575604908,34.13111918483862],[-118.18296809793661,34.13132200426189],[-118.18290189928669,34.13127161231482],[-118.18282908005315,34.13121573491308],[-118.18283476189733,34.13079186674371],[-118.18284354921741,34.13027731458596],[-118.18285232036784,34.12975520508817],[-118.18259169664604,34.12919091077674],[-118.18236051969924,34.12924896529663],[-118.18230767989594,34.12926244085208],[-118.18224162946804,34.12927902763533],[-118.18204512838952,34.12932809864714],[-118.18196091312828,34.12934952179967],[-118.1813515948542,34.12950225734292],[-118.18144955164436,34.12820064869079],[-118.18090794029158,34.12833576275251],[-118.1807301196794,34.12785446421195],[-118.18067859950123,34.12771371277516],[-118.18060049188558,34.12750190030898],[-118.18048250625787,34.12718504061141],[-118.18041603272344,34.1270051534849],[-118.18020497264914,34.12642978903435],[-118.17859479550297,34.12672517123502],[-118.17836676355797,34.12670661632048],[-118.17804784815739,34.12667995143173],[-118.17789086935811,34.12666678629975],[-118.17768927662857,34.12665025254496],[-118.17776056153966,34.12676521464825],[-118.17780035241513,34.12683110490614],[-118.17772598268941,34.12681919205961],[-118.1776499582669,34.12680728218589],[-118.17755575463799,34.12679161998548],[-118.17725827124346,34.12674293864756],[-118.17687980562438,34.12668132267558],[-118.17653108861423,34.12662481461993],[-118.17664958268841,34.1256254449358],[-118.17667392703258,34.12541897620965],[-118.1767421046711,34.12484628848195],[-118.17685245731384,34.12390635476797],[-118.17687682052266,34.12370915888776],[-118.1769027818344,34.12348620018933],[-118.176803641963,34.1234781018105],[-118.17684257764238,34.12314108660484],[-118.17635068983716,34.12334102566246],[-118.17611960092528,34.1234347914592],[-118.17602221276873,34.12347477693869],[-118.17506318574443,34.12386361947708],[-118.17281661779646,34.12477605455513],[-118.17276579560927,34.12496641761642],[-118.17270515663263,34.12520247753879],[-118.17266910364702,34.12534404520751],[-118.17263959937983,34.12545709348225],[-118.17257403673715,34.12570964805133],[-118.1725674871204,34.12573816637939],[-118.17256093031713,34.12576290630011],[-118.17254781042243,34.1258099827002],[-118.1725330214579,34.1258484738434],[-118.17253138562577,34.12585637641995],[-118.17252315526112,34.12587115758996],[-118.17249846506554,34.12591515901403],[-118.17249517543496,34.12592237669994],[-118.17247375600535,34.12595022940646],[-118.17245727551312,34.12597017507684],[-118.17244573755163,34.12598290008786],[-118.17244079502095,34.12598943362767],[-118.17242100693186,34.12600766670763],[-118.17239462161533,34.12603106132212],[-118.17236492870192,34.12605274260627],[-118.17234183032105,34.12606788886428],[-118.17231873014352,34.12608200444852],[-118.17228572334503,34.12609922617204],[-118.17223455261149,34.12612128148434],[-118.17219823102961,34.12613335579682],[-118.17215199743687,34.12614544423656],[-118.17211071266304,34.12615408967102],[-118.17184483828841,34.12620942533874],[-118.17172263417208,34.12623467376348],[-118.17162189709616,34.12625542545987],[-118.17156905549618,34.12626786636194],[-118.1714980571477,34.12628823210725],[-118.1714122105459,34.12631892386438],[-118.17139570400255,34.12632616085014],[-118.1713791974592,34.12633305353565],[-118.17131482867752,34.12636405834363],[-118.17128347298254,34.12638093347933],[-118.17126862293256,34.12638988526413],[-118.17123892103601,34.12640778883092],[-118.17119437358107,34.12643670402019],[-118.171153133723,34.12646767607065],[-118.17111354856172,34.12649967580118],[-118.1710228348877,34.12657434030469],[-118.17100139389848,34.12659223193443],[-118.17094036864627,34.1266424675353],[-118.17087769857879,34.12669613939533],[-118.17085790689644,34.12671265455055],[-118.17083811341749,34.12672813978302],[-118.17082326965573,34.12674052558735],[-118.17080842409734,34.12675222502487],[-118.17076554211896,34.12678800820518],[-118.17073090308159,34.12681484855502],[-118.1707111033144,34.12682758533684],[-118.17070285498346,34.12683377971922],[-118.17067315308691,34.1268513396381],[-118.17063354456943,34.12687269128688],[-118.17058072452902,34.12689577928943],[-118.17055926377688,34.12690405357946],[-118.17053614922632,34.12691164224862],[-118.17050312805476,34.12692199347487],[-118.17049156943202,34.12692475751974],[-118.17046845128819,34.12693062990645],[-118.17043377182664,34.12693789137937],[-118.17038752745411,34.12694516995504],[-118.17035118790594,34.12694865605637],[-118.1703164976646,34.12695076571282],[-118.17030328165013,34.12695112785685],[-118.17026858691725,34.12695117693592],[-118.17022562768373,34.12694917659198],[-118.17020084226671,34.12694749377477],[-118.17014961763427,34.12694275764417],[-118.17010004141038,34.12693664432462],[-118.17007359949999,34.1269332467138],[-118.17002401968283,34.1269250728157],[-118.1699744353741,34.12691518189224],[-118.16994964277056,34.12690972072775],[-118.16992319547028,34.12690323187639],[-118.16990005576689,34.12689811203398],[-118.16987526046842,34.12689162095084],[-118.16985211717177,34.12688478333902],[-118.16982732097495,34.12687760514728],[-118.16980417588167,34.12687008117027],[-118.16975623189664,34.12685400478339],[-118.1697330850067,34.12684545014253],[-118.16970993721847,34.12683655194684],[-118.16968678943022,34.12682731093983],[-118.16966363984534,34.12681772563418],[-118.1696189917791,34.12679752286998],[-118.16957434191622,34.12677628943841],[-118.16953133956356,34.12675367955345],[-118.16950983838724,34.12674168787186],[-118.16948833631261,34.12672969618851],[-118.16940727862956,34.1266782871997],[-118.16933117605366,34.1266261843774],[-118.16928319793263,34.12659327672816],[-118.16924018569851,34.1265648278457],[-118.16919883355105,34.1265404978975],[-118.16917071628268,34.12652508104432],[-118.16912606552147,34.12650350398897],[-118.16910126213814,34.12649254739972],[-118.16908141925182,34.12648398751686],[-118.16905165716815,34.12647200769501],[-118.16900536428662,34.12645592825798],[-118.16899048549058,34.12645114078964],[-118.16897395469272,34.12644635480824],[-118.16894089489362,34.12643747069944],[-118.16888469718775,34.12642449664183],[-118.16885329388205,34.1264180144459],[-118.16880701627188,34.12640880462543],[-118.16874916836085,34.12639686346158],[-118.16869958495045,34.12638697173268],[-118.16865991714411,34.126378440097],[-118.16857893132631,34.12636206616566],[-118.16850951401271,34.12634773646347],[-118.16844835401322,34.12633236493636],[-118.16841694711428,34.12632416495314],[-118.16838719221711,34.12631561992582],[-118.16835743552332,34.1263063870418],[-118.16832602682776,34.12629681283148],[-118.16823674955985,34.12626533728213],[-118.16817888008924,34.12624240452578],[-118.16812265902719,34.12621775174996],[-118.16809289424856,34.12620474047717],[-118.16798374355164,34.12614890434391],[-118.16792420590956,34.12611841627959],[-118.16787790584152,34.12609787202218],[-118.16782995826321,34.12607973340273],[-118.16781342566873,34.1260739174728],[-118.16779689307425,34.12606844435589],[-118.16776383058021,34.12605818597898],[-118.16774730068066,34.12605374353247],[-118.16769771188035,34.1260407597488],[-118.16763986486762,34.12602916209013],[-118.16757044935069,34.12601517514518],[-118.16753243174955,34.12600561056907],[-118.16749441235176,34.12599501531977],[-118.16745639025905,34.1259833893969],[-118.1674200183715,34.12597038775525],[-118.16740017907848,34.12596354560709],[-118.16736545559947,34.12594916675766],[-118.16733238502061,34.12593512997616],[-118.1672943512498,34.12591732149409],[-118.16727616126362,34.12590875932213],[-118.16724308709146,34.1258926619308],[-118.16723316879242,34.1258895840396],[-118.16721333668589,34.12588652027731],[-118.16720507577854,34.12588618787399],[-118.16719351086759,34.12588620423389],[-118.16717699444277,34.12588828788969],[-118.16715553009738,34.1258948437458],[-118.16710105356358,34.12591621497061],[-118.166825372281,34.12602651030415],[-118.16673292755341,34.12606304708895],[-118.16660911724937,34.12611164924996],[-118.16655794292258,34.12613198528772],[-118.1665199747288,34.12614715086589],[-118.16649190956268,34.12615749474944],[-118.16646383990499,34.12616543373495],[-118.16644237196635,34.12617027178629],[-118.16640768980984,34.1261765026546],[-118.1663779582689,34.1261796348203],[-118.166348224033,34.12618139275934],[-118.16632178930914,34.12618074208394],[-118.16629369809188,34.12617872015654],[-118.16627056377837,34.12617634797979],[-118.16620114556648,34.1261613296454],[-118.166166429274,34.12615004135311],[-118.16613997388887,34.12613908694892],[-118.16611516781063,34.12612675534146],[-118.16606719957107,34.12609796869409],[-118.16604072442303,34.12607705261676],[-118.16601258469674,34.12604995622394],[-118.1659993390379,34.12603520408678],[-118.1659860924807,34.12602010913339],[-118.1659612360968,34.12598270376934],[-118.1659496271684,34.12596039335541],[-118.16594464780677,34.12594872206627],[-118.16579352242988,34.1255532350756],[-118.16629543812857,34.12539213913484],[-118.16683697671785,34.12521861967981],[-118.16743299812907,34.12502716254946],[-118.1676047039091,34.12497231096104],[-118.16780915507786,34.12476971426828],[-118.16807131312218,34.12450967657933],[-118.16827411049252,34.12430708175255],[-118.16828727530302,34.12428164609706],[-118.16846662125454,34.1239190213414],[-118.16801562835434,34.12392926659219],[-118.16807003032794,34.12387148505673],[-118.16806463774132,34.12365441055538],[-118.16805738294705,34.12333291983321],[-118.16805199215705,34.12311653257464],[-118.16797381986272,34.12285456298249],[-118.16796384227486,34.12282194537939],[-118.1679056009017,34.1226131890004],[-118.16778246343584,34.12217129589627],[-118.16775917191714,34.12209026545023],[-118.16772922298388,34.12198417041273],[-118.16760942725087,34.12156013399441],[-118.16748462430843,34.12110965562445],[-118.16752249548419,34.12104743317094],[-118.16758506314373,34.12094327038029],[-118.16781064268798,34.1205726821294],[-118.16795224232959,34.12033754259988],[-118.16867518580901,34.12002602618835],[-118.16890130973229,34.11992850472561],[-118.16901081526375,34.11934580173266],[-118.16888922020523,34.11885032481348],[-118.16886089901925,34.11873254970715],[-118.16884591152707,34.11867314782738],[-118.16885062588567,34.11855360917081],[-118.1688584744663,34.11834991129938],[-118.1688679489976,34.11813350385192],[-118.1688710401005,34.11802839297203],[-118.1688789344952,34.11784770919481],[-118.16933392938999,34.11738268274415],[-118.16953174650041,34.11717871952329],[-118.16985320143827,34.11684783639546],[-118.17005925250659,34.11663218220415],[-118.17057191744598,34.11610249399755],[-118.1707450039366,34.11592398222822],[-118.17100050726128,34.11565913818117],[-118.17122304600831,34.1154307498993],[-118.17133843550488,34.11531208351104],[-118.17136479566858,34.11527804174017],[-118.17171570905957,34.11482036630819],[-118.17249660914617,34.11380700721949],[-118.17306426535399,34.11352453956749],[-118.17383158560843,34.11314354506991],[-118.17548008578297,34.11312261463203],[-118.17564258922121,34.11263188355417],[-118.1760994552299,34.11248787128734]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000215,"geom:area_square_m":2204589.930194,"geom:bbox":"-118.188230871,34.1124878713,-118.165793522,34.1313220043","geom:latitude":34.121332,"geom:longitude":-118.177509,"iso:country":"US","lbl:latitude":34.120362,"lbl:longitude":-118.177716,"lbl:max_zoom":18,"mps:latitude":34.117954,"mps:longitude":-118.176575,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Garvanza"],"name:ita_x_preferred":["Garvanza"],"reversegeo:latitude":34.117954,"reversegeo:longitude":-118.176575,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420551135,102191575,1108692433,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4490700"},"wof:country":"US","wof:geomhash":"a9cf7f37610279e97e6a1a7a260bf75c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692433,"microhood_id":1041520717,"neighbourhood_id":420551135,"region_id":85688637}],"wof:id":1041520717,"wof:lastmodified":1566608537,"wof:name":"Garvanza","wof:parent_id":420551135,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85821221],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531499.geojson b/fixtures/microhoods/1041531499.geojson new file mode 100644 index 0000000..ec83e15 --- /dev/null +++ b/fixtures/microhoods/1041531499.geojson @@ -0,0 +1 @@ +{"id":1041531499,"type":"Feature","bbox":[-118.23694384053552,34.0597397102904,-118.22483226805444,34.07183708531114],"geometry":{"type":"Polygon","coordinates":[[[-118.23694384053552,34.06185298142431],[-118.23572283943594,34.06441238757537],[-118.23555585141855,34.0647923526138],[-118.23539410837066,34.06521073444817],[-118.23512407928132,34.06600908132098],[-118.2349597137487,34.06646695673333],[-118.23487356859897,34.06666272782314],[-118.23478360782086,34.06681916858898],[-118.23445487675559,34.06734748637246],[-118.23434554432508,34.06748323469167],[-118.23421126355542,34.06764980154855],[-118.23391481857692,34.06795798692225],[-118.23361409898212,34.06824158602518],[-118.23345928848728,34.06835701490296],[-118.23332779881751,34.06845108352016],[-118.23224768246018,34.06912028604589],[-118.23127322965955,34.06967208461975],[-118.23094179121857,34.06982344462843],[-118.23016376231425,34.07013289513089],[-118.22919517971121,34.07048217188775],[-118.22825594809613,34.0708343837434],[-118.22734019727145,34.07117485520386],[-118.22708262404291,34.07130683465351],[-118.22674143711683,34.07148891077514],[-118.22653818152511,34.0716452047858],[-118.22643618684195,34.0717383941729],[-118.22538647200791,34.07183708531114],[-118.22532649686927,34.07152510121177],[-118.22525953554967,34.07118345977998],[-118.22519088809227,34.0708287689048],[-118.2251624240742,34.07068146737836],[-118.2251004349297,34.07034634252246],[-118.22508531269021,34.0702484780607],[-118.2249683574301,34.06973347057917],[-118.22491989601546,34.06951647892994],[-118.22486973409,34.06928128607163],[-118.22485466574943,34.06920334297045],[-118.22484117215555,34.06909723147562],[-118.2248341167873,34.06892928173572],[-118.22483226805444,34.06885543625074],[-118.22483703451535,34.0687860428523],[-118.22484340177407,34.06869809961954],[-118.22487374057619,34.06831505860555],[-118.22498421089824,34.0682616123901],[-118.22498236216539,34.06818811085945],[-118.22497892251616,34.06813693790926],[-118.22497708995299,34.06806927553573],[-118.22497707198667,34.06806274942932],[-118.22497538405226,34.06804901335038],[-118.22497533284829,34.06802977807363],[-118.2249736107779,34.06800333356072],[-118.22497183930015,34.06795868363726],[-118.22497012172134,34.06793395583549],[-118.22497007321228,34.06791575191227],[-118.22497003817799,34.06790269818708],[-118.22496982168401,34.06782232419408],[-118.22499598421835,34.06772816041568],[-118.22498575240725,34.06760693053604],[-118.22500524315399,34.06748770520936],[-118.22502804778578,34.06737293863749],[-118.22506235175155,34.06723719887029],[-118.22510164316374,34.06711415851979],[-118.22525253947025,34.0667460060256],[-118.22533783001488,34.06653906991009],[-118.22611215084035,34.06471956368044],[-118.22637624475406,34.0640911811326],[-118.22653698030786,34.06370308641546],[-118.22666494621842,34.06340710764157],[-118.22671251021606,34.06329229386856],[-118.22673545408674,34.06323042406253],[-118.22676499159161,34.0631647633438],[-118.22706190365763,34.06246658966808],[-118.22715997022698,34.06222960075602],[-118.23085057543275,34.06198212577138],[-118.23101669821065,34.06195893937907],[-118.23138253448576,34.0618740306823],[-118.2316304234681,34.06180995172817],[-118.23170762428151,34.06178253905318],[-118.23183309975492,34.06172457085196],[-118.23193851475106,34.06165581631154],[-118.23203597586523,34.06157221746981],[-118.2321302785083,34.06147728877828],[-118.23232268782382,34.06123037458713],[-118.23248249036394,34.06099593257556],[-118.23268955795328,34.06061038803746],[-118.23288459889915,34.06021226119674],[-118.23310473130893,34.0597397102904],[-118.23340998158382,34.06008018175086],[-118.23363644893476,34.06029007206116],[-118.23386785699617,34.06044413400171],[-118.23486579058718,34.0610546345515],[-118.23541753218404,34.06131286870232],[-118.23541904015028,34.06131353881685],[-118.23602808971081,34.06154773114941],[-118.23694384053552,34.06185298142431]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000082,"geom:area_square_m":841543.415188,"geom:bbox":"-118.236943841,34.0597397103,-118.224832268,34.0718370853","geom:latitude":34.065854,"geom:longitude":-118.230348,"iso:country":"US","lbl:latitude":34.060395,"lbl:longitude":-118.236439,"lbl:max_zoom":18,"mps:latitude":34.065784,"mps:longitude":-118.230256,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"old GNIS","mz:tier_metro":1,"name:eng_x_preferred":["Dogtown"],"name:eng_x_variant":["Mission Junction","Mission Jct","Naud Junction","Naud Jct"],"reversegeo:latitude":34.065784,"reversegeo:longitude":-118.230256,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866825,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q14683463"},"wof:country":"US","wof:geomhash":"84653bb4a1ad6ce37ae0fd53b3d3767c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041531499,"neighbourhood_id":85866825,"region_id":85688637}],"wof:id":1041531499,"wof:lastmodified":1566608536,"wof:name":"Naud Junction","wof:parent_id":85866825,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85834651,85836383],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531567.geojson b/fixtures/microhoods/1041531567.geojson new file mode 100644 index 0000000..85b1542 --- /dev/null +++ b/fixtures/microhoods/1041531567.geojson @@ -0,0 +1 @@ +{"id":1041531567,"type":"Feature","bbox":[-118.260011,34.06273698199352,-118.24755595266686,34.076759],"geometry":{"type":"Polygon","coordinates":[[[-118.25938743504734,34.06905736390992],[-118.259583,34.069825],[-118.260011,34.07126],[-118.259731,34.072645],[-118.259638,34.073108],[-118.258614,34.074737],[-118.25734,34.076759],[-118.256216,34.076271],[-118.255849,34.076112],[-118.255216,34.075837],[-118.254356,34.075464],[-118.253455,34.075072],[-118.252732,34.074757],[-118.252561,34.074668],[-118.252517,34.074643],[-118.252348,34.074534],[-118.252192,34.074413],[-118.25209,34.074319],[-118.251972,34.074194],[-118.251856,34.074053],[-118.251772,34.07393],[-118.251681,34.073769],[-118.251435,34.07323],[-118.251355,34.073074],[-118.251109,34.072682],[-118.250985,34.072486],[-118.250726,34.072071],[-118.250675,34.071958],[-118.250647,34.071855],[-118.250579,34.071336],[-118.250498,34.070727],[-118.25048,34.070549],[-118.250451,34.069388],[-118.250433,34.06922],[-118.250257,34.068394],[-118.250185,34.068187],[-118.250011,34.067689],[-118.2498676119913,34.06721745554184],[-118.24987429151446,34.06720387446751],[-118.24976258511056,34.06683760804076],[-118.24957751329741,34.06622865027819],[-118.24943912692957,34.06577244646147],[-118.24941757567588,34.06569821707248],[-118.24941757567588,34.06569821707247],[-118.24940743346802,34.06566328407495],[-118.24939031907505,34.06560836009987],[-118.24939031907503,34.06560836009981],[-118.24938743157992,34.06559909347201],[-118.2493590960209,34.06550847241213],[-118.24935241794506,34.0654834112546],[-118.24934409415566,34.06546041514125],[-118.24933577126455,34.06543741902167],[-118.24931747527715,34.06539177354389],[-118.24930750218087,34.06536912418587],[-118.2492975290846,34.0653464748218],[-118.24928755778494,34.06532416925542],[-118.24927814621017,34.06530768842074],[-118.24927814621016,34.06530768842071],[-118.24926855968633,34.06529090122851],[-118.24926855968631,34.06529090122849],[-118.24925934529513,34.06527476568672],[-118.24922282877881,34.06520889223256],[-118.24921287903874,34.06519379982225],[-118.24919960912534,34.06517287464223],[-118.2491846890068,34.06515195317784],[-118.24917141999174,34.06513137030365],[-118.24913993134608,34.06509056099581],[-118.2491067951902,34.06505078531534],[-118.24905544569194,34.06499318607838],[-118.2490372287563,34.06497433186555],[-118.24901901361727,34.06495582145381],[-118.24900079937659,34.06493765409908],[-118.24896272248662,34.06490166690435],[-118.24890976320737,34.06485781011786],[-118.24884356096418,34.0648019588016],[-118.24871281386953,34.06469196913677],[-118.24864495692957,34.06463474769428],[-118.24858702996681,34.06458574855235],[-118.24854731005821,34.06455251240723],[-118.24852579450884,34.06453435240775],[-118.24849765837583,34.06451070935224],[-118.24842318175055,34.06444800547519],[-118.24824443946692,34.06429758370086],[-118.24809548711472,34.06417183103248],[-118.24793329449354,34.06403511424437],[-118.2477545549048,34.06388469173709],[-118.24770821441255,34.06384562990043],[-118.24760560345094,34.06375893771181],[-118.24755595266686,34.06371679119927],[-118.24842395699666,34.06304109419785],[-118.24873360268184,34.06280001769068],[-118.24877805761028,34.06276042549324],[-118.2488043983177,34.06273698199352],[-118.24980421747807,34.06378499816022],[-118.24996156106499,34.06392685872757],[-118.25036369767747,34.06423947084649],[-118.25082965090323,34.06456648134364],[-118.25279994050393,34.0659606610348],[-118.25384158453258,34.06669480895372],[-118.25444308104798,34.06708115706289],[-118.25497719533412,34.06737756365914],[-118.25562225940749,34.06768549998147],[-118.25630501504705,34.06797001845374],[-118.25938743504734,34.06905736390992]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000079,"geom:area_square_m":806146.502435,"geom:bbox":"-118.260011,34.062736982,-118.247555953,34.076759","geom:latitude":34.070554,"geom:longitude":-118.254406,"iso:country":"US","lbl:latitude":34.070301,"lbl:longitude":-118.254637,"lbl:max_zoom":18,"mps:latitude":34.071486,"mps:longitude":-118.254836,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Angelino Heights"],"name:eng_x_variant":["Angelino Hts"],"name:ita_x_preferred":["Angelino Heights"],"name:spa_x_preferred":["Angelino Heights"],"name:und_x_variant":["Angeleno Heights"],"reversegeo:latitude":34.071486,"reversegeo:longitude":-118.254836,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865835,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4762767"},"wof:country":"US","wof:geomhash":"aaec96bd4a42223733f331e33fb8177b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041531567,"neighbourhood_id":85865835,"region_id":85688637}],"wof:id":1041531567,"wof:lastmodified":1566608536,"wof:name":"Angelino Heights","wof:parent_id":85865835,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869075],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531569.geojson b/fixtures/microhoods/1041531569.geojson new file mode 100644 index 0000000..524aacf --- /dev/null +++ b/fixtures/microhoods/1041531569.geojson @@ -0,0 +1 @@ +{"id":1041531569,"type":"Feature","bbox":[-118.23861075379718,34.03455244986433,-118.22720730496953,34.048988],"geometry":{"type":"Polygon","coordinates":[[[-118.23861075379718,34.03498710579433],[-118.238543,34.036117],[-118.238512,34.036634],[-118.238495,34.036912],[-118.238465,34.037406],[-118.238421,34.038137],[-118.238362,34.039112],[-118.238315,34.039884],[-118.238223,34.04142],[-118.238112,34.043273],[-118.238044,34.04439],[-118.238061,34.045538],[-118.23808,34.046905],[-118.238084,34.047162],[-118.238102,34.04841],[-118.238115,34.048988],[-118.237075,34.048849],[-118.236109,34.048721],[-118.235148,34.048593],[-118.233894,34.048427],[-118.232615,34.048257],[-118.232098,34.048189],[-118.23206,34.048184],[-118.231032,34.048047],[-118.230587,34.047988],[-118.230534,34.047981],[-118.230303,34.04795],[-118.230152,34.04793],[-118.2300567184096,34.04791721832323],[-118.230093345839,34.04763644662801],[-118.23008646564224,34.04753513132385],[-118.23007636857845,34.04746473722025],[-118.23006459166507,34.04738369702935],[-118.23000759266199,34.0470636791444],[-118.22984882531698,34.04634816243617],[-118.22954467732133,34.04498064652054],[-118.22906507397768,34.04282242095915],[-118.22826825933751,34.0393238349756],[-118.2279459042877,34.03791788013252],[-118.22764192876859,34.03659123445284],[-118.22720730496953,34.03455244986433],[-118.22780968375803,34.03455990239334],[-118.22806383691483,34.03456216993924],[-118.22828333127134,34.03456415981118],[-118.22864310564431,34.03456725740081],[-118.22903423571228,34.03457063787518],[-118.22942371467676,34.0345740198383],[-118.23000958512527,34.0345790879439],[-118.23049808538353,34.03458330888356],[-118.23088756614463,34.03458668637956],[-118.2313430596044,34.03459062294518],[-118.2317391411862,34.03459398555223],[-118.2322953052466,34.03459875588318],[-118.23249334603749,34.03460043532546],[-118.23265673431631,34.03460355599121],[-118.23388972414605,34.03468051773572],[-118.2341637210875,34.03469750420464],[-118.23566411961438,34.03479488191198],[-118.2361642548522,34.03482756618943],[-118.23663962982579,34.03485857920589],[-118.23708859612672,34.03488792468535],[-118.23752270608945,34.03491626815066],[-118.23861075379718,34.03498710579433]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000131,"geom:area_square_m":1338655.690429,"geom:bbox":"-118.238610754,34.0345524499,-118.227207305,34.048988","geom:latitude":34.041132,"geom:longitude":-118.233481,"iso:country":"US","lbl:latitude":34.042958,"lbl:longitude":-118.232692,"lbl:max_zoom":18,"mps:latitude":34.040862,"mps:longitude":-118.233481,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":20,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Arts District"],"name:eng_x_variant":["Artist District"],"name:ita_x_preferred":["Arts District"],"name:jpn_x_preferred":["アート地区"],"name:nld_x_preferred":["Arts District"],"name:zho_x_preferred":["藝術區"],"reversegeo:latitude":34.040862,"reversegeo:longitude":-118.233481,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865837,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3932198"},"wof:country":"US","wof:geomhash":"9f8c60d8a2c2541aaa49bb34fc54a3ed","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041531569,"neighbourhood_id":85865837,"region_id":85688637}],"wof:id":1041531569,"wof:lastmodified":1566608536,"wof:name":"Arts District","wof:parent_id":85865837,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869087],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531573.geojson b/fixtures/microhoods/1041531573.geojson new file mode 100644 index 0000000..87b09cf --- /dev/null +++ b/fixtures/microhoods/1041531573.geojson @@ -0,0 +1 @@ +{"id":1041531573,"type":"Feature","bbox":[-118.37415786307419,34.00555956639068,-118.355388,34.021699],"geometry":{"type":"Polygon","coordinates":[[[-118.37275620915996,34.01836408573924],[-118.37264657168166,34.01873739292041],[-118.3725848336286,34.01895560707958],[-118.37253904778775,34.01922813097347],[-118.37251726194694,34.019513],[-118.372464,34.020577],[-118.372419,34.021503],[-118.372338,34.021699],[-118.371101,34.021639],[-118.370026,34.021586],[-118.36917,34.02158],[-118.365874,34.021562],[-118.365903,34.021009],[-118.366045,34.01835],[-118.365032,34.018347],[-118.364072,34.018344],[-118.363091,34.018339],[-118.362912,34.018331],[-118.362608,34.018303],[-118.362381,34.018271],[-118.362117,34.01822],[-118.361848,34.018159],[-118.361618,34.018113],[-118.361386,34.018076],[-118.36114,34.018048],[-118.360994,34.018037],[-118.360679,34.018027],[-118.360363,34.018035],[-118.360126,34.018054],[-118.359971,34.018071],[-118.359661,34.01812],[-118.359145,34.01823],[-118.359049,34.018247],[-118.358823,34.018281],[-118.358595,34.018306],[-118.358289,34.018322],[-118.357942,34.018324],[-118.356862,34.01832],[-118.355562,34.018316],[-118.355479,34.018237],[-118.355388,34.012822],[-118.355446,34.01248],[-118.355489,34.012315],[-118.355553,34.012126],[-118.355633,34.011941],[-118.355729,34.011761],[-118.355839,34.011587],[-118.355931,34.011461],[-118.35608095221222,34.01132890442447],[-118.35622633274282,34.0112298566367],[-118.35659718937953,34.0109028566367],[-118.35694533274282,34.01052480884895],[-118.35710623716729,34.01036533274282],[-118.35723171327342,34.01018390442447],[-118.3573292371673,34.01002638053059],[-118.35780748016253,34.00913490757698],[-118.35849188681455,34.00907379802095],[-118.35862711829914,34.0090617174405],[-118.35864359879132,34.00905754661279],[-118.36144845172205,34.00833713712167],[-118.36141664686942,34.00784879845709],[-118.36141650583393,34.0078161678305],[-118.36142130822743,34.00778214912854],[-118.36142945504875,34.00775842397446],[-118.36144251385804,34.00772609713822],[-118.36145724712702,34.00769960552097],[-118.36147856864028,34.00767034521288],[-118.36149006707592,34.00765863229977],[-118.36150156730821,34.00764760671546],[-118.36150978509642,34.0076403685221],[-118.36151800468126,34.00763347436578],[-118.36153115961028,34.0076234734445],[-118.36154431723423,34.00761415985285],[-118.36155253951405,34.00760795228051],[-118.36158216685041,34.00759206324635],[-118.36160357370366,34.00758272507708],[-118.36162498415013,34.00757441753108],[-118.36166288137701,34.00756331225607],[-118.3617090296298,34.00755286973671],[-118.36185571463422,34.00751945560231],[-118.36199415759592,34.00748743994779],[-118.36198536578425,34.00736209451922],[-118.36198507922167,34.00729580374111],[-118.36198816313804,34.00724598881604],[-118.36199297092145,34.00721300051435],[-118.36200100724997,34.00716385723688],[-118.36201722453579,34.00709889033602],[-118.36203839423378,34.0070349391227],[-118.36205798918506,34.00698816604552],[-118.36207270358942,34.00695720837546],[-118.36208906999559,34.00692693281769],[-118.36211527205577,34.00688220158471],[-118.36214478081456,34.00683883383211],[-118.36217594247343,34.00679649222297],[-118.36221041172922,34.00675585813911],[-118.36225968072928,34.0067041864142],[-118.36230076517882,34.00666731067952],[-118.36234185681485,34.00663215215855],[-118.36237145540515,34.00660973657387],[-118.36238625604777,34.0065990444697],[-118.36240270779386,34.00658834640676],[-118.36241751023314,34.0065779975971],[-118.36243396287756,34.00656764357345],[-118.36244876891008,34.00655798210062],[-118.36246522335114,34.00654797137185],[-118.36249813762313,34.00652932458988],[-118.36251459655578,34.00652034449483],[-118.36253599622246,34.00650963227304],[-118.36253928675136,34.00650756131782],[-118.36254422838375,34.00650548589444],[-118.36254751711598,34.0065030716416],[-118.3625508076449,34.00650100068621],[-118.36255574658233,34.00649858122046],[-118.36256890330796,34.00648892420781],[-118.36257547987417,34.00648375240347],[-118.36259191724722,34.00646996390243],[-118.36260177715579,34.00646100390749],[-118.36260341298791,34.00645790752599],[-118.36260998685917,34.00645204837965],[-118.36261162179298,34.00644860870015],[-118.3626149078303,34.00644550710545],[-118.36261654456074,34.00644241072339],[-118.36261982880143,34.00643896657539],[-118.36262146553189,34.00643587019315],[-118.36262474977255,34.00643242530019],[-118.3626280205385,34.00642588923723],[-118.36263130567747,34.00642244434387],[-118.3626329406113,34.00641900466317],[-118.36263784361611,34.00640834232222],[-118.3626411278568,34.00640489742816],[-118.36264439592783,34.00639767476714],[-118.36264437975814,34.00639389625554],[-118.36264764782915,34.00638667359365],[-118.36265091500182,34.00637910688839],[-118.36265089793385,34.00637532837595],[-118.36265416690314,34.00636810571248],[-118.36265414983517,34.00636432719956],[-118.36265578387066,34.00636054421835],[-118.36265576680269,34.0063567657051],[-118.36265740083817,34.00635298272357],[-118.36265734963419,34.00634130462875],[-118.3626589836697,34.00633752090184],[-118.3626589252792,34.00632412556897],[-118.36503947785012,34.00555956639068],[-118.36622412035128,34.00634427367392],[-118.36624232111724,34.00635658400281],[-118.36685590459227,34.0070811886676],[-118.3671842603882,34.00709324272155],[-118.36716600482498,34.00744468239046],[-118.36714924944832,34.0077621130651],[-118.36710043589407,34.00866940332341],[-118.3668459494623,34.01346830695549],[-118.36673166489355,34.01562676475288],[-118.37049082150679,34.01576470180744],[-118.37266084131444,34.01584423609955],[-118.37269748898481,34.01518154113081],[-118.37270499800223,34.01501527238517],[-118.37271572927662,34.01483147526543],[-118.37272330836265,34.01468100493636],[-118.3727308730757,34.0145271009452],[-118.37274312968943,34.01431547663805],[-118.37275531803121,34.01408839586062],[-118.37276292137177,34.01394342245084],[-118.37286487296998,34.01201444299593],[-118.37286942742847,34.01192581017452],[-118.37318780114495,34.01191486556465],[-118.37328141547903,34.01218902024605],[-118.37338644829869,34.01243359890861],[-118.37365137764566,34.01301601596676],[-118.37382133350751,34.01338954335281],[-118.37387633914898,34.01351474510803],[-118.37392304795048,34.01362932396447],[-118.37395645090602,34.01371990069129],[-118.37396982502396,34.01375901614814],[-118.37402337898794,34.01392853238627],[-118.37407546959632,34.0141396133458],[-118.3741075412486,34.01430163803049],[-118.37413480871074,34.0144959658281],[-118.37415215338224,34.01468517176481],[-118.37415589037383,34.01478305270958],[-118.37415786307419,34.01485517908341],[-118.37415520495928,34.01499876373605],[-118.37415066038224,34.01508945739403],[-118.37414603675347,34.01516229013694],[-118.3741333902709,34.01528598443507],[-118.3741142301042,34.01542893321375],[-118.37410134826303,34.01550007393149],[-118.37407714136106,34.01562139916447],[-118.37404476248496,34.01575992371629],[-118.37401877961369,34.01585308862689],[-118.37398949723037,34.01594626311496],[-118.37397485379294,34.01599233580421],[-118.373950413329,34.0160614514926],[-118.3739259701701,34.01613022386607],[-118.37389822570255,34.01619832083609],[-118.37388027915982,34.01624371580742],[-118.37386231195582,34.01628464616704],[-118.37384108386735,34.01633417358831],[-118.37381003449784,34.01640124881275],[-118.37377733222824,34.01646764268186],[-118.37373152533529,34.01655537278394],[-118.37370862458374,34.01659975417522],[-118.37295410442378,34.01797052871572],[-118.37288210086052,34.01810402278593],[-118.37283792890136,34.01818899998259],[-118.3727954197238,34.01827671937076],[-118.37275620915996,34.01836408573924]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000161,"geom:area_square_m":1645398.650823,"geom:bbox":"-118.374157863,34.0055595664,-118.355388,34.021699","geom:latitude":34.014337,"geom:longitude":-118.363951,"iso:country":"US","lbl:latitude":34.00679,"lbl:longitude":-118.347093,"lbl:max_zoom":18,"mps:latitude":34.013334,"mps:longitude":-118.362255,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Baldwin Vista"],"name:eng_x_variant":["Baldwin Vis"],"reversegeo:latitude":34.013334,"reversegeo:longitude":-118.362255,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1041531571,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4850611"},"wof:country":"US","wof:geomhash":"e0841c5b957fd2c0840f50fa8e6cf19d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1041531573,"neighbourhood_id":1041531571,"region_id":85688637}],"wof:id":1041531573,"wof:lastmodified":1566608535,"wof:name":"Baldwin Vista","wof:parent_id":1041531571,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869097],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531575.geojson b/fixtures/microhoods/1041531575.geojson new file mode 100644 index 0000000..31193a2 --- /dev/null +++ b/fixtures/microhoods/1041531575.geojson @@ -0,0 +1 @@ +{"id":1041531575,"type":"Feature","bbox":[-118.345901,34.010868,-118.335096,34.02401811532715],"geometry":{"type":"Polygon","coordinates":[[[-118.335096,34.010925],[-118.335157,34.010887],[-118.335226,34.010871],[-118.335293,34.010868],[-118.335376,34.010874],[-118.335509,34.010914],[-118.335629,34.010966],[-118.337791,34.012327],[-118.341501,34.01466],[-118.341683,34.014877],[-118.344032,34.016354],[-118.345227,34.017105],[-118.345389,34.017207],[-118.345901,34.017528],[-118.345794,34.017651],[-118.345182,34.018253],[-118.345182,34.020298],[-118.345183,34.0215],[-118.345183,34.023763],[-118.34518357779308,34.02401811532715],[-118.34250817091564,34.02374094170771],[-118.33998382817296,34.02341629093062],[-118.33511098132794,34.02267907176714],[-118.33510959696173,34.02070230238658],[-118.33510905707423,34.01933111554018],[-118.33510972991238,34.01908689701679],[-118.33510984938832,34.0187045990567],[-118.335097,34.018221],[-118.335097,34.01642],[-118.335097,34.014608],[-118.335096,34.011683],[-118.335096,34.010925]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000097,"geom:area_square_m":991540.171261,"geom:bbox":"-118.345901,34.010868,-118.335096,34.0240181153","geom:latitude":34.018444,"geom:longitude":-118.33972,"iso:country":"US","lbl:latitude":34.014292,"lbl:longitude":-118.357805,"lbl:max_zoom":18,"mps:latitude":34.018727,"mps:longitude":-118.339617,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:note":"dupe.","mz:tier_metro":1,"name:azb_x_preferred":["کرنشاو"],"name:dan_x_preferred":["Crenshaw"],"name:deu_x_preferred":["Crenshaw"],"name:eng_x_preferred":["Crenshaw"],"name:eng_x_variant":["Crenshaw District","Baldwin Vista"],"name:fas_x_preferred":["کرنشاو"],"name:fra_x_preferred":["Crenshaw"],"name:heb_x_preferred":["קרנשואו"],"name:ita_x_preferred":["Crenshaw"],"name:jpn_x_preferred":["クレンシャー"],"name:nld_x_preferred":["Crenshaw"],"name:pol_x_preferred":["Crenshaw"],"name:por_x_preferred":["Crenshaw"],"name:spa_x_preferred":["Crenshaw"],"name:swe_x_preferred":["Crenshaw"],"name:ukr_x_preferred":["Креншов"],"reversegeo:latitude":34.018727,"reversegeo:longitude":-118.339617,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1041531571,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1139604"},"wof:country":"US","wof:geomhash":"186b79eefa5d95559f3c60f6b1e1ff7a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1041531575,"neighbourhood_id":1041531571,"region_id":85688637}],"wof:id":1041531575,"wof:lastmodified":1566608535,"wof:name":"Crenshaw","wof:parent_id":1041531571,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868341,420780777],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531577.geojson b/fixtures/microhoods/1041531577.geojson new file mode 100644 index 0000000..f358f22 --- /dev/null +++ b/fixtures/microhoods/1041531577.geojson @@ -0,0 +1 @@ +{"id":1041531577,"type":"Feature","bbox":[-118.32598130242178,34.12016862583057,-118.3162533626667,34.13036883373362],"geometry":{"type":"Polygon","coordinates":[[[-118.31859520054381,34.12016862583057],[-118.32587294134396,34.12035119136588],[-118.3258664833554,34.12038967904472],[-118.3258667061376,34.12044669771344],[-118.32588184185182,34.12051535343155],[-118.3259152717568,34.12061556112613],[-118.32592697231337,34.12065056529847],[-118.32593702805467,34.12068729106943],[-118.32595048212269,34.12074839455433],[-118.32596557202282,34.12080537282257],[-118.32597437102102,34.12094343027048],[-118.32598130242178,34.12102653517971],[-118.32597500523161,34.12110624067496],[-118.32597347360405,34.12113715815892],[-118.32596542290247,34.12119076360855],[-118.32595737220092,34.1212443690242],[-118.32593443641505,34.12129389239018],[-118.32592787961181,34.12130696242509],[-118.32591967170507,34.12132038124003],[-118.32589669100344,34.12135822668932],[-118.32583582205814,34.12142365264842],[-118.32575845734922,34.12149564962751],[-118.32567116176487,34.1215625211741],[-118.3256118487016,34.12160389894423],[-118.32556901074064,34.12163321066475],[-118.32547672142162,34.12169082119873],[-118.32546023374289,34.1216991093842],[-118.32543879814358,34.12170947165996],[-118.32540580751476,34.1217222694481],[-118.3253497256916,34.12174474681829],[-118.32530188860608,34.12176308046511],[-118.3252705580639,34.1217779344865],[-118.32525571969205,34.12178553179615],[-118.32523265275218,34.12180139422683],[-118.3252162019044,34.12181929950895],[-118.32519482020399,34.12184340102254],[-118.3251816742581,34.12186164094594],[-118.32514880041029,34.12190432147369],[-118.32512417758836,34.12194491897066],[-118.32509462211719,34.12199171267257],[-118.32507003432957,34.12204124006286],[-118.32505692251966,34.12206806778998],[-118.3250504762092,34.12210964610225],[-118.32504393198232,34.1221261509984],[-118.32503410531145,34.12214816049632],[-118.32503420951602,34.12217495249362],[-118.32502617139085,34.12223199301204],[-118.32502953917486,34.12224847111247],[-118.32503459399497,34.12227387540204],[-118.32504303276873,34.12231987989545],[-118.32505639790354,34.12235797104974],[-118.32507300865144,34.12238128338397],[-118.32510284888856,34.12240799424819],[-118.32514094823641,34.12243399713778],[-118.32527499663972,34.12249408946823],[-118.32534782036487,34.12252858568599],[-118.32545374790655,34.12257913603896],[-118.32550673233862,34.1226099072269],[-118.32555313661125,34.12264756544026],[-118.32559955795188,34.12268969005756],[-118.32562942783339,34.12272395789202],[-118.32565936059697,34.12277402549353],[-118.32568261977632,34.12280762474469],[-118.32569425655251,34.12282614110104],[-118.32570589961689,34.12284637604787],[-118.32571426383052,34.12287314477049],[-118.32571285347552,34.12293497620399],[-118.32571305649476,34.12298718541306],[-118.32569833849715,34.12302569494551],[-118.32569179157538,34.12304151326779],[-118.32568361870291,34.12306386163475],[-118.325660637103,34.12310170704736],[-118.32562938112099,34.12313614055014],[-118.32558330383515,34.12318229107451],[-118.32553719241328,34.12321985533243],[-118.32546137819656,34.12326608686951],[-118.32541683074163,34.1232809763223],[-118.32534424776499,34.12330865067832],[-118.32530795942077,34.12332317424569],[-118.32527826740566,34.12333458933664],[-118.32523701856445,34.12334809632463],[-118.32504892661532,34.1234107729447],[-118.32491027075291,34.12344068565424],[-118.32487395635755,34.1234486836435],[-118.32483105551454,34.12346219433155],[-118.32481290415589,34.12346773900783],[-118.32478981475813,34.12347776196117],[-118.32476012992959,34.1234912376929],[-118.32473704412507,34.12350229134598],[-118.32472887484587,34.12352567029338],[-118.32472897635552,34.12355177471961],[-118.32481227084364,34.12372982047868],[-118.32482893010057,34.12376549785261],[-118.32487571436056,34.12390104883187],[-118.32488406959101,34.12392541374745],[-118.32488908668188,34.12394120066812],[-118.32490422239609,34.1240098565235],[-118.32491262972884,34.1240476182241],[-118.32490447302605,34.1240744319289],[-118.32489801503748,34.1241129194004],[-118.32487509182806,34.12416587822174],[-118.32486360237557,34.12418514387642],[-118.32484389782984,34.12421611080245],[-118.32481759695493,34.12425018615768],[-118.32479787354454,34.12427634390268],[-118.32478309535982,34.12429974048358],[-118.32474521070934,34.12432869506344],[-118.32464470629704,34.12439869288285],[-118.32462165193358,34.12441798971753],[-118.32459204795339,34.12445241747876],[-118.32456912654062,34.12450572039447],[-118.32455932232759,34.12453391192552],[-118.32455441932277,34.1245476648679],[-118.32455456574817,34.12458544789398],[-118.32456478947441,34.12466545195323],[-118.32456992334626,34.12471112199376],[-118.3245850015683,34.12476500850502],[-118.32460668689927,34.12481853357237],[-118.32463825459665,34.12486447570267],[-118.32466810920681,34.12489462214465],[-118.32471451797102,34.12493331225646],[-118.32479734264022,34.12499010848754],[-118.32484206616496,34.1250202147282],[-118.32488844528476,34.12505134717991],[-118.32498956863628,34.12514038154107],[-118.32500449234809,34.12515442440367],[-118.32503436312795,34.12518869198286],[-118.32504932007743,34.12521132236458],[-118.32504942428199,34.12523811339126],[-118.3250577884956,34.12526488284394],[-118.32505809661774,34.12534422665475],[-118.32505829065384,34.12539403243201],[-118.32507168633136,34.1254400233296],[-118.32510979106908,34.12546705670893],[-118.32515613695122,34.1254896014981],[-118.32519751245489,34.12550838200113],[-118.32524881793573,34.12553160125601],[-118.32535468618859,34.12556600774199],[-118.325401018596,34.12558511840168],[-118.32546726216168,34.12562615808075],[-118.32549210686749,34.12564223470106],[-118.32554016044696,34.12567885865705],[-118.32560478435019,34.12572814592494],[-118.32566278497482,34.12577332979934],[-118.32567604141349,34.12578359862174],[-118.32572910220237,34.1258332621064],[-118.3257739892205,34.12590527243422],[-118.32578902162844,34.12594713738841],[-118.32579744782583,34.12598970654017],[-118.32579755023376,34.12601581094921],[-118.3257943082139,34.12603196408938],[-118.32578943934506,34.12605430348599],[-118.32578459293411,34.12608248185897],[-118.32577489741725,34.12613815295035],[-118.3257159032559,34.12626196641497],[-118.32570607299174,34.12628294639854],[-118.32569624542253,34.12630495555796],[-118.32568970209401,34.12632146037888],[-118.32563047706566,34.12638619538583],[-118.32560742270218,34.12640549251053],[-118.3255694976275,34.12642448623104],[-118.32551341041443,34.12644627672744],[-118.32544578164658,34.12647393814933],[-118.32538972677288,34.12650397172985],[-118.32536170113262,34.12651950459257],[-118.3253435785201,34.12653260579567],[-118.32532380570235,34.12654605426997],[-118.32530075133893,34.12656535210181],[-118.32521847104879,34.12664903969268],[-118.325175707648,34.12669827359767],[-118.32514939509501,34.12672960174823],[-118.32509515391983,34.12680153620659],[-118.32506565414423,34.12686275573991],[-118.325049341637,34.12691638358633],[-118.32504944584156,34.12694317481628],[-118.32505786934398,34.12698505710345],[-118.3250596228554,34.12701115748705],[-118.32506490764422,34.12709564031115],[-118.32507666748961,34.12714575737726],[-118.32510358910038,34.12727105809233],[-118.32513073259497,34.12745337553985],[-118.32513414529475,34.12748118833029],[-118.32513422524484,34.12750179768982],[-118.32513280321172,34.12756088030466],[-118.32512629940905,34.12758768992082],[-118.32508032003955,34.12766028992897],[-118.32497831993231,34.12777150953154],[-118.32493554485343,34.1278179951267],[-118.32489770511872,34.12785897125826],[-118.32485818643273,34.12789308232591],[-118.32482854921487,34.12791926720111],[-118.32479727975816,34.12795026473488],[-118.32471153915755,34.12799446139068],[-118.32467362216771,34.12801551530559],[-118.32463734729821,34.12803416139723],[-118.32461427586681,34.12804933630118],[-118.3245928717085,34.12806828577924],[-118.32457643882702,34.1280909994183],[-118.32458331363388,34.12815967867376],[-118.32458343400813,34.12819059209124],[-118.32456871062064,34.12822841513147],[-118.32455888125479,34.12825008097985],[-118.32454577213986,34.12827793886841],[-118.32448000468126,34.12835986463939],[-118.32443230683464,34.12841529330171],[-118.3244010364796,34.12844629139716],[-118.32437137051564,34.12846491880352],[-118.32433343106793,34.12848047733232],[-118.32419484168086,34.12852996745918],[-118.32416843570307,34.12853725259021],[-118.3241486314443,34.12854280139527],[-118.32413707821144,34.12854592380634],[-118.32412057436304,34.12855043304665],[-118.3240925172818,34.12855806544091],[-118.32406776150918,34.12856500107366],[-118.32384495326758,34.12862536492489],[-118.32372939848099,34.12865006161503],[-118.32366006560906,34.12866501704431],[-118.32361549479793,34.12867475383636],[-118.32359569143749,34.12868064617892],[-118.32355443990133,34.12869415231282],[-118.32350168813288,34.12872452047116],[-118.32347039891323,34.12875105235309],[-118.32345064406181,34.12876931011998],[-118.32343912496493,34.1287813624897],[-118.32341614426333,34.12881989466558],[-118.32337342667662,34.12888149271953],[-118.32334878768503,34.12891865512945],[-118.32330931391479,34.12896478762523],[-118.32323527207413,34.12904364462116],[-118.32320729763786,34.12907291509499],[-118.32316616557763,34.12911733498843],[-118.32313163254149,34.12915933220047],[-118.32311189565637,34.12918239875771],[-118.3230971273531,34.12920854307903],[-118.32309224860279,34.12922882185807],[-118.32308576635972,34.12926146970791],[-118.32308093252516,34.12929308319527],[-118.32308103313649,34.12931918807151],[-118.32306625405343,34.12934258474405],[-118.3230530874463,34.12935567212477],[-118.32303498010513,34.12937289466858],[-118.32298554671334,34.12940703189493],[-118.32296741691431,34.12941875847666],[-118.32292950351773,34.12944118621037],[-118.3229047818811,34.12945705389714],[-118.32287840464943,34.12947189392555],[-118.32286027485036,34.1294832776987],[-118.32282565377932,34.12950260534767],[-118.32276958543083,34.12952989025173],[-118.32272998948974,34.12954442241724],[-118.32270027950838,34.12955205843975],[-118.32266890405042,34.12955626349421],[-118.3226061360666,34.129559866233],[-118.32255988540588,34.12956273726995],[-118.32251694413867,34.12956663001221],[-118.32245254032267,34.12957470252542],[-118.32238813560839,34.12958277429428],[-118.32236336636105,34.12958627515888],[-118.3223254412864,34.12960561170745],[-118.32229580586517,34.12963248239384],[-118.32227938735673,34.12965931812255],[-118.32225811614911,34.12971295832322],[-118.32223513005762,34.12975045944813],[-118.32222032222847,34.12976664236221],[-118.32215779858639,34.12983378844667],[-118.32212160187032,34.12987304217506],[-118.32210515281916,34.12989197860315],[-118.32208380345813,34.12992535343393],[-118.32202962067345,34.13001343011639],[-118.32199020798866,34.13007570545909],[-118.32197543339718,34.13010047608496],[-118.32196722189715,34.13011320716662],[-118.32195406427321,34.13012869846852],[-118.3219409048526,34.13014384697069],[-118.32192116437426,34.13016622617837],[-118.32187506283384,34.13020791055995],[-118.32181412561656,34.13025822134595],[-118.32177950544383,34.13027789235771],[-118.32175971735475,34.13028790632412],[-118.3217465309847,34.13029584120383],[-118.32172508640222,34.13030482901014],[-118.32170034410436,34.13031519915426],[-118.32165414105437,34.1303304353669],[-118.32160958910785,34.13034532506271],[-118.32156337348141,34.13035712661708],[-118.32154355754456,34.13035992698571],[-118.32148410614074,34.13036695467614],[-118.32143124298122,34.13036881291308],[-118.3212941097632,34.13036883373362],[-118.32106114966058,34.13036842252715],[-118.32100166681572,34.13036755029351],[-118.32070590728819,34.13036318317626],[-118.32044483440875,34.13035631833225],[-118.31987642361611,34.13034167922902],[-118.31957224687439,34.13029645689872],[-118.31944146115215,34.13022776227662],[-118.31928877540163,34.13004852334728],[-118.31923523311575,34.12987245622096],[-118.31923676564165,34.12984119541522],[-118.31924455403515,34.12971752029669],[-118.31924418303096,34.12962031488769],[-118.31924552511397,34.12953924919566],[-118.3192481490929,34.12936097251336],[-118.31925104795634,34.12925482785507],[-118.31920324680345,34.12885135885332],[-118.31911621532376,34.12812580492589],[-118.31908038601865,34.12782878423091],[-118.31907184034536,34.12775392749528],[-118.31906842584897,34.12772508414362],[-118.31907649900842,34.12767594453226],[-118.31909914733336,34.12754982495137],[-118.31883050435101,34.12772158989451],[-118.31861787042833,34.12785061377686],[-118.31847421903461,34.12787331855105],[-118.31835203378293,34.12789253205156],[-118.31818846404441,34.1278905585],[-118.3180364493354,34.12788614961244],[-118.31736687656365,34.12776665967397],[-118.31723017184204,34.1278779639086],[-118.3172071120887,34.12789657284986],[-118.3169397114764,34.12796184948853],[-118.31677939813078,34.12794715643044],[-118.3166653605987,34.127936806817],[-118.31642908391605,34.12793158664932],[-118.31638282157724,34.12793102075933],[-118.3162533626667,34.12777473087186],[-118.31626086359931,34.12757377164638],[-118.31626770516853,34.12719866745075],[-118.31632010210242,34.12707418907342],[-118.31636102665183,34.1269741280906],[-118.31645431040587,34.12673962654574],[-118.31651981196313,34.12658557351206],[-118.31660340199694,34.12640914743754],[-118.31662752355896,34.12623493626432],[-118.31663383422384,34.12615626181216],[-118.31663369229,34.12611882230129],[-118.31663494094823,34.12601233893836],[-118.31664101715283,34.12587183801303],[-118.31664734308907,34.12579728443389],[-118.31665711586105,34.12576016229529],[-118.31667014053434,34.12570963615316],[-118.31668806551752,34.12564398372773],[-118.3167191202769,34.12555562660432],[-118.31675674351763,34.12545660491377],[-118.31678782522647,34.12537546012172],[-118.31683376956165,34.12529255952515],[-118.31693879070322,34.12510439836825],[-118.31716392019152,34.12478608330251],[-118.31732820678563,34.12454349600285],[-118.31742695139828,34.12444328180865],[-118.31751911046159,34.12434926800918],[-118.31758096306218,34.12410523157488],[-118.31766472018263,34.12397414281391],[-118.31777143824176,34.12379902903764],[-118.31787312843022,34.12360503655864],[-118.31790265425698,34.12354931323088],[-118.31792237946398,34.12352315674823],[-118.31807705767783,34.12336131179822],[-118.31818055437834,34.12320818887061],[-118.31830376730271,34.12302684686988],[-118.31840399144063,34.12288231928047],[-118.31851078765318,34.12272815733686],[-118.31857008095352,34.1226809423874],[-118.31870184314445,34.12257548912667],[-118.31878560206152,34.12244577451211],[-118.31881632264765,34.12227051627439],[-118.31869410864985,34.12184663448744],[-118.31863451710885,34.12138205615071],[-118.31862772315036,34.1213332980745],[-118.31862600646984,34.12131647175735],[-118.31862416222856,34.12126598460529],[-118.31862404544758,34.12123541446352],[-118.3186184219939,34.12106025262576],[-118.31861485478393,34.12099122105068],[-118.31861292969425,34.12091943782062],[-118.31861088512866,34.12081639707971],[-118.31859520054381,34.12016862583057]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":701676.988966,"geom:bbox":"-118.325981302,34.1201686258,-118.316253363,34.1303688337","geom:latitude":34.124942,"geom:longitude":-118.321381,"iso:country":"US","lbl:latitude":34.125025,"lbl:longitude":-118.321288,"lbl:max_zoom":18,"mps:latitude":34.125025,"mps:longitude":-118.321288,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["هوليوودلاند"],"name:deu_x_preferred":["Die Hollywood-Verschwörung"],"name:est_x_preferred":["Hollywoodland"],"name:fas_x_preferred":["هالیوودلند"],"name:fin_x_preferred":["Hollywoodland"],"name:fra_x_preferred":["Hollywoodland"],"name:ind_x_preferred":["Hollywoodland"],"name:ita_x_preferred":["Hollywoodland"],"name:jpn_x_preferred":["ハリウッドランド"],"name:kor_x_preferred":["할리우드랜드"],"name:nld_x_preferred":["Hollywoodland"],"name:pol_x_preferred":["Hollywoodland"],"name:por_x_preferred":["Hollywoodland"],"name:rus_x_preferred":["Смерть Супермена"],"name:spa_x_preferred":["Hollywoodland"],"name:swe_x_preferred":["Hollywoodland"],"name:ukr_x_preferred":["Смерть супермена"],"name:zho_x_preferred":["銀色殺機"],"reversegeo:latitude":34.125025,"reversegeo:longitude":-118.321288,"src:geom":"mz","wof:belongsto":[85869347,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ea0eda799bbdb572ca8b96d5ad9d402d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041531577,"neighbourhood_id":85869347,"region_id":85688637}],"wof:id":1041531577,"wof:lastmodified":1566608535,"wof:name":"Hollywoodland","wof:parent_id":85869347,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531581.geojson b/fixtures/microhoods/1041531581.geojson new file mode 100644 index 0000000..18b74b6 --- /dev/null +++ b/fixtures/microhoods/1041531581.geojson @@ -0,0 +1 @@ +{"id":1041531581,"type":"Feature","bbox":[-118.331089,34.105195,-118.316081,34.12035119136588],"geometry":{"type":"Polygon","coordinates":[[[-118.32587294134396,34.12035119136588],[-118.31859520054381,34.12016862583057],[-118.3162393961828,34.12021828384188],[-118.316255,34.119848],[-118.316265,34.119437],[-118.3163,34.118057],[-118.316324,34.117108],[-118.316321,34.116935],[-118.3163,34.116766],[-118.316286,34.11669],[-118.316201,34.116365],[-118.31616,34.116137],[-118.316086,34.115357],[-118.316081,34.115165],[-118.316092,34.114974],[-118.316114,34.114804],[-118.316194,34.114234],[-118.316232,34.11398],[-118.316261,34.113837],[-118.3163,34.113714],[-118.316366,34.11356],[-118.316991,34.112486],[-118.317035,34.11241],[-118.317086,34.112304],[-118.317116,34.112204],[-118.317121,34.112181],[-118.317133,34.112067],[-118.317127,34.111968],[-118.317044,34.11156],[-118.317008,34.111325],[-118.317002,34.111268],[-118.316992,34.111092],[-118.316984,34.110163],[-118.316929,34.109681],[-118.316921,34.108312],[-118.316904,34.105262],[-118.317995,34.105259],[-118.319195,34.105255],[-118.319375,34.105255],[-118.320417,34.105252],[-118.32126,34.105249],[-118.322399,34.105246],[-118.322943,34.105244],[-118.323982,34.105241],[-118.32484,34.105239],[-118.325218,34.105197],[-118.325983,34.105196],[-118.32634,34.105195],[-118.326485,34.105195],[-118.32666,34.105208],[-118.326706,34.105215],[-118.326863,34.105244],[-118.327502,34.105408],[-118.327668,34.105436],[-118.327811,34.105448],[-118.328006,34.105448],[-118.328171,34.105432],[-118.329017,34.10528],[-118.329138,34.105263],[-118.329274,34.105252],[-118.329375,34.105249],[-118.32976541914378,34.10524748527975],[-118.329728,34.105801],[-118.329635,34.10682],[-118.329617,34.107011],[-118.329605,34.10714],[-118.329588,34.107333],[-118.329568,34.107522],[-118.329553,34.10771],[-118.32956,34.107821],[-118.32980123697604,34.10899686900355],[-118.329934,34.109644],[-118.329973,34.109721],[-118.330019,34.109778],[-118.330402,34.11014],[-118.330788,34.110921],[-118.330838,34.111058],[-118.330878,34.11122],[-118.330897,34.111387],[-118.330897,34.111527],[-118.330872,34.11181],[-118.330786,34.112718],[-118.330765,34.112948],[-118.330842,34.113383],[-118.330848,34.113433],[-118.330838,34.113465],[-118.330686,34.113858],[-118.330679,34.113917],[-118.330693,34.114044],[-118.330685,34.11409],[-118.330656,34.114141],[-118.330438,34.114363],[-118.330406,34.114396],[-118.330382,34.114445],[-118.330376,34.114495],[-118.330388,34.114547],[-118.33042,34.114596],[-118.330641,34.114794],[-118.330677,34.114818],[-118.330928,34.114963],[-118.330987,34.115016],[-118.331032,34.115077],[-118.331062,34.115151],[-118.331089,34.115361],[-118.331078,34.115438],[-118.331011,34.115672],[-118.3309183260229,34.11596551648537],[-118.3308681899252,34.11612706613354],[-118.33080691247244,34.11627190374915],[-118.33076234705224,34.11638331729961],[-118.33068435756692,34.11652258423769],[-118.33060079740407,34.11667299253081],[-118.33029441014031,34.11704622792486],[-118.33011057778205,34.11727462570331],[-118.32999916423158,34.11739160993129],[-118.32991003339122,34.11746959941662],[-118.3298320439059,34.11751973551432],[-118.32970948900038,34.11755315957947],[-118.329607,34.117554],[-118.329418,34.117503],[-118.329249,34.117479],[-118.329066,34.117469],[-118.328978,34.117497],[-118.328909,34.117504],[-118.328845,34.117516],[-118.328786,34.117533],[-118.328726,34.117559],[-118.32864,34.117604],[-118.328582,34.117629],[-118.328521,34.117659],[-118.328509,34.117665],[-118.328424,34.117734],[-118.328396,34.117753],[-118.328344,34.117786],[-118.328293,34.117822],[-118.328242,34.117858],[-118.328196,34.117898],[-118.328158,34.11794],[-118.328128,34.117981],[-118.328096,34.118026],[-118.328077,34.118079],[-118.328065,34.118144],[-118.328057,34.118198],[-118.328055,34.118253],[-118.328053,34.118335],[-118.32805,34.118389],[-118.328035,34.118404],[-118.328033,34.118472],[-118.328033,34.118529],[-118.328019,34.118587],[-118.327987,34.118637],[-118.327945,34.118682],[-118.327893,34.118722],[-118.327847,34.118766],[-118.327799,34.118807],[-118.327751,34.118847],[-118.327702,34.11889],[-118.327657,34.118931],[-118.32761,34.118972],[-118.327561,34.119012],[-118.327513,34.119051],[-118.327468,34.119092],[-118.327424,34.119131],[-118.327383,34.11917],[-118.327341,34.119208],[-118.327298,34.119248],[-118.327255,34.119285],[-118.32721,34.119323],[-118.327168,34.119361],[-118.327133,34.119397],[-118.327063,34.119429],[-118.327019,34.119458],[-118.32697,34.119493],[-118.326924,34.119534],[-118.326887,34.119588],[-118.32687,34.119639],[-118.32685451832654,34.11969030366531],[-118.3268454644188,34.11974034684196],[-118.326843,34.119801],[-118.326852,34.119852],[-118.326909,34.12],[-118.326913,34.120038],[-118.326904,34.120099],[-118.326877,34.120152],[-118.326856,34.120177],[-118.32681,34.120215],[-118.326746,34.120245],[-118.326693,34.120257],[-118.326638,34.12026],[-118.326596,34.120256],[-118.326531,34.120241],[-118.326489,34.120235],[-118.326392,34.120237],[-118.326339,34.120249],[-118.326294,34.120264],[-118.326257,34.120282],[-118.326205,34.120314],[-118.326165,34.12033],[-118.326114,34.120341],[-118.3260606073306,34.12034578533876],[-118.32587294134396,34.12035119136588]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000198,"geom:area_square_m":2028297.572729,"geom:bbox":"-118.331089,34.105195,-118.316081,34.1203511914","geom:latitude":34.112703,"geom:longitude":-118.323276,"iso:country":"US","lbl:latitude":34.112775,"lbl:longitude":-118.321496,"lbl:max_zoom":18,"mps:latitude":34.11277,"mps:longitude":-118.323775,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Beachwood Canyon"],"name:eng_x_preferred":["Beachwood Canyon"],"name:eng_x_variant":["Beachwood Cyn"],"name:fas_x_preferred":["بیچوود کنیون، لس آنجلس"],"name:fas_x_variant":["بیچوود کنیون"],"name:fra_x_preferred":["Beachwood Canyon"],"name:ita_x_preferred":["Beachwood Canyon"],"name:jpn_x_preferred":["カリフォルニア州"],"name:spa_x_preferred":["Beachwood Canyon"],"name:urd_x_preferred":["بیچ ووڈ کینین، لاس اینجلس، کیلیفورنیا"],"name:urd_x_variant":["بیچ ووڈ کینین"],"reversegeo:latitude":34.11277,"reversegeo:longitude":-118.323775,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869347,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4875891"},"wof:country":"US","wof:geomhash":"2962eb1031e1cdc708ad3d581914c9bf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041531581,"neighbourhood_id":85869347,"region_id":85688637}],"wof:id":1041531581,"wof:lastmodified":1566608536,"wof:name":"Beachwood Canyon","wof:parent_id":85869347,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869107],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531583.geojson b/fixtures/microhoods/1041531583.geojson new file mode 100644 index 0000000..3efbc7e --- /dev/null +++ b/fixtures/microhoods/1041531583.geojson @@ -0,0 +1 @@ +{"id":1041531583,"type":"Feature","bbox":[-118.47393387506094,34.06736312275746,-118.46812171143834,34.07483668061631],"geometry":{"type":"Polygon","coordinates":[[[-118.46824,34.071894],[-118.468323,34.071811],[-118.468407,34.071707],[-118.469046,34.070832],[-118.469273,34.070516],[-118.469391,34.07032],[-118.469472,34.070155],[-118.469545,34.069974],[-118.469602,34.069794],[-118.469946,34.068627],[-118.47035111886852,34.06736312275746],[-118.47134229425185,34.06837711642629],[-118.47166245879359,34.0687574986453],[-118.47211458352741,34.06940457221477],[-118.47261878424399,34.07010469629572],[-118.4733095653726,34.07113361481625],[-118.47365712430488,34.07163849804795],[-118.4738379428167,34.07212545438632],[-118.47393387506094,34.07248307881284],[-118.47390905921985,34.07279395483085],[-118.47378828305443,34.07307715960234],[-118.47358144775633,34.07337723142135],[-118.47318296803357,34.07388340453144],[-118.47304962697123,34.07402668623588],[-118.4729058419265,34.07417181150895],[-118.47274017528518,34.07430183990908],[-118.47255846466591,34.07441670081559],[-118.47237647277107,34.07450892355266],[-118.47217410643195,34.07459424797598],[-118.47178139347756,34.07474096853883],[-118.4716278319308,34.07479077228955],[-118.4714762325191,34.07482747228862],[-118.47133330939256,34.07483668061631],[-118.4711884363522,34.07483476717017],[-118.47108409073354,34.07481710246229],[-118.47097396599953,34.07478760350623],[-118.47080098885608,34.07472510676185],[-118.4706232247224,34.07464894983521],[-118.47050536658078,34.07458428730173],[-118.47042612469977,34.07452468760111],[-118.47031966620314,34.07445335209686],[-118.4702066900344,34.07436659538929],[-118.4701395207609,34.07429541848288],[-118.47007968263587,34.07420528181946],[-118.4700028881153,34.07403861779646],[-118.469858463824,34.07236290154727],[-118.46812171143834,34.07199119835301],[-118.46824,34.071894]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":229410.155381,"geom:bbox":"-118.473933875,34.0673631228,-118.468121711,34.0748366806","geom:latitude":34.071616,"geom:longitude":-118.471273,"iso:country":"US","lbl:latitude":34.064617,"lbl:longitude":-118.476486,"lbl:max_zoom":18,"mps:latitude":34.071701,"mps:longitude":-118.471516,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Brentwood Circle"],"name:eng_x_variant":["Brentwood Cir"],"reversegeo:latitude":34.071701,"reversegeo:longitude":-118.471516,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807211,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4961757"},"wof:country":"US","wof:geomhash":"47d7fc4606df186d34ccf6afd607e4fd","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1041531583,"neighbourhood_id":85807211,"region_id":85688637}],"wof:id":1041531583,"wof:lastmodified":1566608536,"wof:name":"Brentwood Circle","wof:parent_id":85807211,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869133],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531585.geojson b/fixtures/microhoods/1041531585.geojson new file mode 100644 index 0000000..c1705f5 --- /dev/null +++ b/fixtures/microhoods/1041531585.geojson @@ -0,0 +1 @@ +{"id":1041531585,"type":"Feature","bbox":[-118.469602,34.05807336573997,-118.45555292008919,34.07279616076036],"geometry":{"type":"Polygon","coordinates":[[[-118.469602,34.069794],[-118.469545,34.069974],[-118.469472,34.070155],[-118.469391,34.07032],[-118.469273,34.070516],[-118.469046,34.070832],[-118.468407,34.071707],[-118.468323,34.071811],[-118.46824,34.071894],[-118.468111,34.072],[-118.467988,34.072079],[-118.467469,34.07235],[-118.467437,34.072366],[-118.467083,34.07255],[-118.466736,34.07273],[-118.46672,34.072738],[-118.46660762158167,34.07279616076036],[-118.46633973191743,34.07244180264235],[-118.46614006787078,34.0721878344991],[-118.46568898424077,34.07166557705514],[-118.46517549464795,34.07104566045817],[-118.46487026597903,34.0706889889113],[-118.46478005356492,34.07058813572468],[-118.46453963025891,34.07031637458],[-118.46445754490318,34.07023144662507],[-118.46420672629272,34.06996044036539],[-118.46323718179309,34.06884500871565],[-118.46259030226206,34.06810594450523],[-118.46176796468801,34.06719485912112],[-118.46163523051997,34.06705945616804],[-118.46155512684777,34.06697888343143],[-118.4614410533831,34.06683956292444],[-118.46110570510102,34.06644425282654],[-118.46068272436635,34.06597342523042],[-118.46063335475496,34.06591916342826],[-118.46010643355199,34.06531462684092],[-118.45978443064178,34.06496664759684],[-118.45936296805993,34.06452682735177],[-118.45926724537988,34.06442150254321],[-118.45903300966955,34.06413772255267],[-118.45860736363342,34.06360714244823],[-118.45848622222408,34.06346154221376],[-118.45844046923003,34.06341020641018],[-118.45836629354041,34.06332630222411],[-118.45811296503703,34.06303083338867],[-118.45781450158051,34.06267210242449],[-118.45749290291216,34.06227900322403],[-118.45731707655993,34.06207987840644],[-118.45695350410992,34.06167578989461],[-118.45667194065885,34.06135323317063],[-118.45624069991513,34.06084567244712],[-118.45585535230262,34.06038054860593],[-118.45555292008919,34.06002000096854],[-118.4587805355735,34.05807336573997],[-118.46110034668844,34.0600460620792],[-118.462814387838,34.06310855914647],[-118.4629213688237,34.06365288833224],[-118.46319978105517,34.06506586375396],[-118.46533623323948,34.06698904619069],[-118.46654778667333,34.06761284273732],[-118.46673122853312,34.06770750991482],[-118.46678323394215,34.06766336583301],[-118.467175,34.068276],[-118.467238,34.068352],[-118.467327,34.068432],[-118.467375,34.068466],[-118.46744,34.068496],[-118.467512,34.068513],[-118.467818,34.068526],[-118.467991,34.068676],[-118.468067,34.068752],[-118.468124,34.068834],[-118.468252,34.069098],[-118.468272,34.069135],[-118.468319,34.069192],[-118.468374,34.069235],[-118.468572,34.069342],[-118.468736,34.069428],[-118.468826,34.069479],[-118.46907,34.069642],[-118.469146,34.069685],[-118.469239,34.069719],[-118.469602,34.069794]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000058,"geom:area_square_m":595774.830858,"geom:bbox":"-118.469602,34.0580733657,-118.45555292,34.0727961608","geom:latitude":34.065262,"geom:longitude":-118.462416,"iso:country":"US","lbl:latitude":34.063645,"lbl:longitude":-118.461159,"lbl:max_zoom":18,"mps:latitude":34.062122,"mps:longitude":-118.459966,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Brentwood Glen"],"name:eng_x_variant":["Brentwood Gln","The Glen"],"name:urd_x_preferred":["برینٹووڈ گلین، لاس اینجلس"],"name:urd_x_variant":["برینٹووڈ گلین"],"reversegeo:latitude":34.062122,"reversegeo:longitude":-118.459966,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807211,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4961774"},"wof:country":"US","wof:geomhash":"09fb99f74af865954e876bbfe942c89c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1041531585,"neighbourhood_id":85807211,"region_id":85688637}],"wof:id":1041531585,"wof:lastmodified":1566608536,"wof:name":"Brentwood Glen","wof:parent_id":85807211,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869137],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531589.geojson b/fixtures/microhoods/1041531589.geojson new file mode 100644 index 0000000..c070884 --- /dev/null +++ b/fixtures/microhoods/1041531589.geojson @@ -0,0 +1 @@ +{"id":1041531589,"type":"Feature","bbox":[-118.492016,34.056336,-118.485594,34.066049],"geometry":{"type":"Polygon","coordinates":[[[-118.487632,34.065403],[-118.48757,34.065189],[-118.487392,34.064555],[-118.487238,34.062857],[-118.486807,34.061013],[-118.486223,34.059452],[-118.486206,34.059407],[-118.485788,34.058328],[-118.485594,34.057199],[-118.487495,34.056641],[-118.488905,34.056392],[-118.489785,34.056336],[-118.489958,34.056339],[-118.490129,34.056358],[-118.490269,34.056384],[-118.491497,34.056665],[-118.491802,34.057463],[-118.491872,34.057594],[-118.491947,34.0577],[-118.492016,34.05778],[-118.491568,34.057891],[-118.491502,34.057924],[-118.491448,34.05797],[-118.491413,34.058022],[-118.491399,34.058056],[-118.491274,34.058465],[-118.49136,34.059286],[-118.491498,34.060097],[-118.491146,34.060985],[-118.49090938497896,34.06150364100571],[-118.49075,34.061853],[-118.490393,34.06284],[-118.490301,34.063868],[-118.490556,34.065184],[-118.490554,34.065272],[-118.490534,34.065358],[-118.490496,34.065439],[-118.490332,34.065683],[-118.490276,34.065743],[-118.490201,34.065801],[-118.490115,34.065846],[-118.49006,34.065867],[-118.489572,34.066025],[-118.489455,34.066045],[-118.489348,34.066049],[-118.489092,34.06603],[-118.488908,34.066016],[-118.48833,34.065938],[-118.488266,34.065919],[-118.488204,34.065888],[-118.487753,34.065555],[-118.487721,34.065528],[-118.487667,34.065467],[-118.487632,34.065403]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00004,"geom:area_square_m":407034.209942,"geom:bbox":"-118.492016,34.056336,-118.485594,34.066049","geom:latitude":34.060532,"geom:longitude":-118.488858,"iso:country":"US","lbl:latitude":34.059736,"lbl:longitude":-118.48892,"lbl:max_zoom":18,"mps:latitude":34.059736,"mps:longitude":-118.48892,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":34.059736,"reversegeo:longitude":-118.48892,"src:geom":"mz","wof:belongsto":[85807211,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"8022132ec8f98f0afb0418d47aef3ee2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1041531589,"neighbourhood_id":85807211,"region_id":85688637}],"wof:id":1041531589,"wof:lastmodified":1566608536,"wof:name":"Brentwood Park","wof:parent_id":85807211,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551171],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1041531599.geojson b/fixtures/microhoods/1041531599.geojson new file mode 100644 index 0000000..f2b2004 --- /dev/null +++ b/fixtures/microhoods/1041531599.geojson @@ -0,0 +1 @@ +{"id":1041531599,"type":"Feature","bbox":[-118.25447,34.051658,-118.246585,34.057769],"geometry":{"type":"Polygon","coordinates":[[[-118.25447,34.055121],[-118.253124,34.056549],[-118.251973,34.057769],[-118.251856,34.057693],[-118.246585,34.054338],[-118.249089,34.051658],[-118.24979,34.05211],[-118.250157,34.052347],[-118.251204,34.053022],[-118.251226,34.053036],[-118.252275,34.053711],[-118.25282710297171,34.05406550306265],[-118.253401,34.054434],[-118.25447,34.055121]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":235130.823745,"geom:bbox":"-118.25447,34.051658,-118.246585,34.057769","geom:latitude":34.054719,"geom:longitude":-118.250526,"iso:country":"US","lbl:latitude":34.054713,"lbl:longitude":-118.250328,"lbl:max_zoom":18,"mps:latitude":34.054716,"mps:longitude":-118.250526,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":20,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Bunker Hill"],"name:eng_x_variant":["Bunker Hl"],"name:fra_x_preferred":["Bunker Hill"],"name:ita_x_preferred":["Bunker Hill"],"name:jpn_x_preferred":["バンカー・ヒル"],"name:nld_x_preferred":["Bunker Hill"],"name:pol_x_preferred":["Bunker Hill"],"name:zho_x_preferred":["邦克丘"],"reversegeo:latitude":34.054716,"reversegeo:longitude":-118.250526,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2928231"},"wof:country":"US","wof:geomhash":"b9645f7bc1a6eefef33619c50ce3191b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1041531599,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1041531599,"wof:lastmodified":1566608536,"wof:name":"Bunker Hill","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869149],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1058996411.geojson b/fixtures/microhoods/1058996411.geojson new file mode 100644 index 0000000..162d486 --- /dev/null +++ b/fixtures/microhoods/1058996411.geojson @@ -0,0 +1 @@ +{"id":1058996411,"type":"Feature","bbox":[-118.37618646469993,34.058183,-118.361375,34.06424707269341],"geometry":{"type":"Polygon","coordinates":[[[-118.3643566664533,34.05824407556441],[-118.364894,34.058305],[-118.3654,34.058363],[-118.365968,34.058428],[-118.366815,34.058524],[-118.367043,34.05855],[-118.367677,34.058623],[-118.368119,34.058673],[-118.369047,34.058779],[-118.369192,34.058795],[-118.369601,34.058842],[-118.37061,34.058957],[-118.371758,34.059088],[-118.372794,34.059207],[-118.373678,34.059308],[-118.374806,34.059437],[-118.375465,34.059512],[-118.375777,34.05949],[-118.375999,34.059474],[-118.376174,34.059462],[-118.37618644058337,34.05946114790525],[-118.37618646469993,34.05946651195259],[-118.37618048281846,34.05960461141886],[-118.37601875642292,34.05961610654978],[-118.37601374202697,34.0599695680407],[-118.37507857874823,34.06052617422743],[-118.37225654463936,34.06220458635782],[-118.37223568845343,34.06234067056076],[-118.37218943869102,34.06270593837759],[-118.37203944159812,34.06387150120653],[-118.37226862919695,34.06424707269341],[-118.372258,34.064245],[-118.372145,34.064228],[-118.37203,34.064182],[-118.371549,34.064127],[-118.371391,34.064109],[-118.368259,34.063744],[-118.365471,34.063429],[-118.365265,34.063406],[-118.365188,34.063397],[-118.363375,34.063193],[-118.361375,34.062967],[-118.361889,34.06197],[-118.362375,34.061027],[-118.362861,34.060084],[-118.363473,34.058897],[-118.363559,34.058731],[-118.363685,34.058463],[-118.363818,34.058183],[-118.3643566664533,34.05824407556441]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":564895.481244,"geom:bbox":"-118.376186465,34.058183,-118.361375,34.0642470727","geom:latitude":34.061114,"geom:longitude":-118.36813,"iso:country":"US","lbl:latitude":34.061228,"lbl:longitude":-118.366197,"lbl:max_zoom":18,"mps:latitude":34.061202,"mps:longitude":-118.368129,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Carthay Cir"],"reversegeo:latitude":34.061202,"reversegeo:longitude":-118.368129,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420551221,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"cd57db3b9f0d4b43bc0b69b139b6a603","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1058996411,"neighbourhood_id":420551221,"region_id":85688637}],"wof:id":1058996411,"wof:lastmodified":1566610069,"wof:name":"Carthay Circle","wof:parent_id":420551221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867331],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1058996413.geojson b/fixtures/microhoods/1058996413.geojson new file mode 100644 index 0000000..8f3a065 --- /dev/null +++ b/fixtures/microhoods/1058996413.geojson @@ -0,0 +1 @@ +{"id":1058996413,"type":"Feature","bbox":[-118.372073,34.051502,-118.3643566664533,34.05879608049067],"geometry":{"type":"Polygon","coordinates":[[[-118.372073,34.052547],[-118.371451,34.053907],[-118.371229,34.054378],[-118.37031,34.056373],[-118.36920140256774,34.05879608049067],[-118.369192,34.058795],[-118.369047,34.058779],[-118.368119,34.058673],[-118.367677,34.058623],[-118.367043,34.05855],[-118.366815,34.058524],[-118.365968,34.058428],[-118.3654,34.058363],[-118.364894,34.058305],[-118.3643566664533,34.05824407556441],[-118.3654937794286,34.05582280914285],[-118.365452,34.055818],[-118.364934,34.05576],[-118.365274,34.055022],[-118.365324,34.054913],[-118.365999,34.053447],[-118.366032,34.053378],[-118.3665,34.05236],[-118.366561,34.052189],[-118.366597,34.05204],[-118.366628,34.051825],[-118.366636,34.051684],[-118.366639,34.051502],[-118.367024,34.051576],[-118.367485,34.051665],[-118.367911,34.051747],[-118.368627,34.051884],[-118.368954,34.051947],[-118.369913,34.052132],[-118.37034222398772,34.05221439567622],[-118.371033,34.052347],[-118.37142994605111,34.05242333577906],[-118.372073,34.052547]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000035,"geom:area_square_m":360035.573667,"geom:bbox":"-118.372073,34.051502,-118.364356666,34.0587960805","geom:latitude":34.055188,"geom:longitude":-118.368093,"iso:country":"US","lbl:latitude":34.056057,"lbl:longitude":-118.370652,"lbl:max_zoom":18,"mps:latitude":34.055215,"mps:longitude":-118.36802,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["S Carthay","South Carthay"],"reversegeo:latitude":34.055215,"reversegeo:longitude":-118.36802,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420551221,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"3d83b0621694c62b158d0ba671e519d1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1058996413,"neighbourhood_id":420551221,"region_id":85688637}],"wof:id":1058996413,"wof:lastmodified":1566610070,"wof:name":"Carthay Square","wof:parent_id":420551221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867345],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1058996415.geojson b/fixtures/microhoods/1058996415.geojson new file mode 100644 index 0000000..f16cb57 --- /dev/null +++ b/fixtures/microhoods/1058996415.geojson @@ -0,0 +1 @@ +{"id":1058996415,"type":"Feature","bbox":[-118.37618992860367,34.052547,-118.36920140256774,34.059512],"geometry":{"type":"Polygon","coordinates":[[[-118.36920140256774,34.05879608049067],[-118.37031,34.056373],[-118.371229,34.054378],[-118.371451,34.053907],[-118.372073,34.052547],[-118.37305,34.052734],[-118.373792,34.052875],[-118.374112,34.052936],[-118.37519,34.053142],[-118.376131,34.053321],[-118.3761439883048,34.05332348595716],[-118.37614414237194,34.05335776100313],[-118.37614875432261,34.05364936583775],[-118.37615728921614,34.05407903869237],[-118.37616586543216,34.05451798655569],[-118.37617873469691,34.05517743674005],[-118.37618910664519,34.05564866592685],[-118.37618992860367,34.05583139818057],[-118.37618897010127,34.05635246791302],[-118.37618704680823,34.05886163238885],[-118.3761863272577,34.05943594181281],[-118.37618644058337,34.05946114790525],[-118.376174,34.059462],[-118.375999,34.059474],[-118.375777,34.05949],[-118.375465,34.059512],[-118.374806,34.059437],[-118.373678,34.059308],[-118.372794,34.059207],[-118.371758,34.059088],[-118.37061,34.058957],[-118.369601,34.058842],[-118.36920140256774,34.05879608049067]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000036,"geom:area_square_m":366466.533399,"geom:bbox":"-118.376189929,34.052547,-118.369201403,34.059512","geom:latitude":34.056324,"geom:longitude":-118.373316,"iso:country":"US","lbl:latitude":34.056435,"lbl:longitude":-118.373381,"lbl:max_zoom":18,"mps:latitude":34.056435,"mps:longitude":-118.373381,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["S Carthay"],"reversegeo:latitude":34.056435,"reversegeo:longitude":-118.373381,"src:geom":"mz","wof:belongsto":[420551221,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"cad419d6a9868d51546f2bc2c6cb91ea","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1058996415,"neighbourhood_id":420551221,"region_id":85688637}],"wof:id":1058996415,"wof:lastmodified":1566610070,"wof:name":"South Carthay","wof:parent_id":420551221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1075806299.geojson b/fixtures/microhoods/1075806299.geojson new file mode 100644 index 0000000..4616934 --- /dev/null +++ b/fixtures/microhoods/1075806299.geojson @@ -0,0 +1 @@ +{"id":1075806299,"type":"Feature","bbox":[-118.56442202570258,34.23199225952985,-118.5360969886625,34.27506684959558],"geometry":{"type":"Polygon","coordinates":[[[-118.56402222779045,34.26768968674108],[-118.56402092882654,34.26774259035597],[-118.56401797426754,34.26779515763893],[-118.5640133560287,34.26784635965101],[-118.56400704266886,34.26789172949242],[-118.56399767054552,34.2679742108721],[-118.56398975099796,34.26802680102401],[-118.56398017495704,34.26807905633027],[-118.56397059622115,34.26813096788298],[-118.56395936278852,34.26818288682745],[-118.56394647376084,34.2682348131636],[-118.56393358024155,34.26828605351151],[-118.56391903472047,34.26833764497224],[-118.56390282911276,34.26838855712738],[-118.56388662440334,34.26843946850925],[-118.56386876409886,34.2684903880265],[-118.56384924370775,34.26854062824015],[-118.56382972421493,34.26859086842378],[-118.56380854463548,34.26864042930548],[-118.56378736505602,34.26868999090036],[-118.56376452808487,34.26873921542877],[-118.56374003462032,34.26878810586084],[-118.56371553846084,34.26883665180381],[-118.56368938490967,34.2688848621669],[-118.56366157127185,34.26893239323275],[-118.56363375853233,34.26897992427173],[-118.56360428570618,34.26902677527272],[-118.56357481018507,34.26907328401506],[-118.56354367547564,34.26911911272126],[-118.56351254076623,34.26916494140248],[-118.56347974597014,34.26921009227618],[-118.56344529198572,34.2692545623739],[-118.56341083530639,34.26929868947417],[-118.56337472213363,34.26934248025882],[-118.56333860357101,34.26938558433109],[-118.56330082582005,34.26942800911569],[-118.5632613915757,34.26947009832934],[-118.56322195194146,34.26951150009097],[-118.56277985954912,34.2699703968318],[-118.5627469865996,34.27000386769802],[-118.56271577643172,34.27003870523814],[-118.56268622185884,34.27007353459786],[-118.56265501438587,34.27010871656451],[-118.56262546699955,34.27014457703387],[-118.56259757430998,34.27018042932193],[-118.56256968611198,34.2702169682775],[-118.56254345440736,34.27025384350606],[-118.56251722809264,34.27029140540059],[-118.56249100177794,34.27032896802072],[-118.5624664328549,34.27036686542768],[-118.56244352312022,34.27040544281766],[-118.56242061338556,34.27044402018988],[-118.56239770634579,34.27048328422502],[-118.56237645669773,34.27052254007593],[-118.5623568635431,34.27056213368079],[-118.56233727308334,34.27060206949331],[-118.56231768442028,34.27064234825531],[-118.56229975314889,34.27068296328516],[-118.56229812629991,34.27068709226717],[-118.5622818218775,34.27072357829535],[-118.56226720269457,34.27076452140686],[-118.56225093150984,34.27080581488977],[-118.56223631681847,34.2708474453812],[-118.56222335772219,34.27088906768611],[-118.56221039772757,34.27093068997042],[-118.56219909602298,34.27097264777774],[-118.56218779611503,34.27101495001578],[-118.56217815090382,34.27105724406668],[-118.56216850838757,34.27109988180522],[-118.56216052056807,34.2711425113563],[-118.56215253274854,34.27118514088577],[-118.56214620232075,34.27122810593625],[-118.56213986919798,34.2712707279988],[-118.56213519346693,34.27131368558204],[-118.56213217512759,34.27135697942767],[-118.56212915409327,34.27139992954331],[-118.56212613575393,34.2714432233446],[-118.56212478378944,34.27148822749462],[-118.56212373455718,34.27206941535569],[-118.56212345158788,34.27227310523265],[-118.56212477121299,34.27296042167508],[-118.56212482690854,34.27296866456855],[-118.56014906778108,34.27277481902595],[-118.55981787151225,34.27274646693714],[-118.55715966765332,34.27246504560311],[-118.55674729063226,34.27242366311187],[-118.5564790222474,34.27240050877295],[-118.55634985618764,34.27238942340173],[-118.55626870507982,34.27238120866041],[-118.55587788672726,34.27234625034687],[-118.55531167770535,34.27231759078434],[-118.55496739927104,34.27231229937594],[-118.55463481061348,34.27232309747129],[-118.55438996669797,34.27233795839788],[-118.55407730896165,34.27235931183519],[-118.55366211302723,34.27239178181772],[-118.55329167834675,34.2724353816948],[-118.55304862387528,34.27247084105063],[-118.55283866333887,34.27250511784462],[-118.55262706427538,34.27254215018794],[-118.55240721867759,34.27258334183975],[-118.55229977567804,34.27260341022644],[-118.5521560110966,34.27263704113199],[-118.55194615745968,34.27268780370104],[-118.55170496429749,34.27275450942052],[-118.55129036035284,34.27287696307548],[-118.55104096197883,34.27295435233943],[-118.55088736353997,34.27300279640427],[-118.55072880640074,34.27305229307179],[-118.55046124229503,34.27313594673113],[-118.5504166526193,34.2731505759059],[-118.55034893401991,34.27317149338694],[-118.55006812964525,34.27325520631439],[-118.5498765216901,34.27331240898666],[-118.54969317733723,34.27336785674737],[-118.54932811368386,34.27347427738781],[-118.5486177214656,34.27366847763589],[-118.54849382043174,34.27370304419225],[-118.54840626613257,34.2737278283265],[-118.54831375852292,34.2737546961696],[-118.54824603004208,34.27377423796591],[-118.54809242172175,34.27382164898011],[-118.54799827468672,34.27385058417589],[-118.54788263905175,34.27388373949307],[-118.54775708781271,34.27391934299187],[-118.54764308441665,34.2739490553702],[-118.54740510183325,34.27400165440484],[-118.54716212371856,34.27404981058605],[-118.54686295149129,34.27410955518224],[-118.5467191482823,34.27413802706806],[-118.54656210390603,34.27416655833023],[-118.5463273292065,34.27420368421698],[-118.54615865524057,34.27422539795006],[-118.54598168802791,34.2742444021942],[-118.54587582785986,34.27425415336444],[-118.54572034026395,34.27426756344864],[-118.54546063282376,34.27428865584018],[-118.54513307832508,34.27431108366667],[-118.54388556363553,34.27437268240023],[-118.54236161397682,34.27442829351499],[-118.54175603179601,34.27445470534835],[-118.54147806969091,34.2744683143429],[-118.54109918186366,34.27448718268722],[-118.54068555259109,34.27450826537348],[-118.5402901618137,34.27453441811144],[-118.5400171952399,34.27455281061289],[-118.53979220409217,34.27456789681106],[-118.53952417286251,34.27458180048878],[-118.5391237883505,34.2746035059587],[-118.53880786074653,34.27463307779662],[-118.53842248259134,34.27467223223911],[-118.53810995960231,34.27471621471302],[-118.5378702351856,34.27475678175118],[-118.53757433462258,34.2748120229369],[-118.53725532130564,34.27487664105566],[-118.53719747519119,34.27488926344062],[-118.5370437689545,34.27492257646194],[-118.53688014531711,34.27495833763451],[-118.53672636092696,34.27497962879394],[-118.5365544179917,34.27500821321733],[-118.53630647668508,34.27505808728591],[-118.53626681157371,34.27506684959558],[-118.53615481591228,34.27437968250656],[-118.53615267792193,34.27404685093255],[-118.53611659529192,34.2717796425908],[-118.53611523793751,34.2687346216257],[-118.5361139749062,34.26802291912362],[-118.53611246393993,34.26727240313384],[-118.5361097070103,34.26452485017082],[-118.53610964053497,34.26271122985831],[-118.53610957405965,34.26089761053068],[-118.53610968365412,34.25911146833163],[-118.5361088895434,34.25898781634948],[-118.53610944021067,34.25727037038946],[-118.5361077100554,34.25545538414359],[-118.53610692852114,34.25327285975244],[-118.5361057041174,34.25153652981748],[-118.53610420572751,34.25001522562909],[-118.53610436203437,34.24926676248847],[-118.53610413026902,34.24820023138741],[-118.5361024010121,34.24638524478277],[-118.53610153593449,34.24547775091111],[-118.53610232555363,34.24457025022471],[-118.53610074182377,34.24329316618537],[-118.5361005962967,34.24275526331102],[-118.53610052263483,34.2409406130254],[-118.53609965396394,34.24003243218867],[-118.53609879337793,34.23912562582407],[-118.5360969886625,34.23549564394297],[-118.53722190397703,34.23549512110598],[-118.53824921643766,34.23549502158875],[-118.53836667116106,34.23549484334883],[-118.5404676132183,34.23549372266557],[-118.54249080698604,34.23549325924189],[-118.54293579375023,34.23549057673154],[-118.54297217821419,34.23549041334498],[-118.54483823867244,34.23549198779737],[-118.547084759908,34.2354911277899],[-118.54762736479749,34.23549073491947],[-118.54920886322822,34.2354900947412],[-118.55019812664666,34.23548972340805],[-118.55037017288818,34.23548962834677],[-118.55357948868233,34.23548804349705],[-118.55481689552832,34.23548752957206],[-118.55490952530886,34.23548607468889],[-118.55497567904301,34.23548336692767],[-118.55511126536211,34.23547347089893],[-118.55520549414382,34.23546342039446],[-118.55532118277935,34.23544674604562],[-118.55538562701953,34.23543580210991],[-118.55545666848715,34.23542173600151],[-118.55554586670328,34.23540174712174],[-118.55567798013548,34.23536713586194],[-118.55580839934507,34.23532669167635],[-118.55591732276822,34.23528772092464],[-118.55596187561305,34.2352706856043],[-118.55599816755053,34.23525540520568],[-118.5560592026842,34.23522936279552],[-118.55617958861035,34.23517282119436],[-118.5562620153259,34.23512950649825],[-118.5563543091365,34.23507755898591],[-118.55643009460711,34.23503083984039],[-118.55655361026375,34.23494748991503],[-118.556686914862,34.23484383006064],[-118.55678395447225,34.23475922928944],[-118.5568447758069,34.23470124361594],[-118.55690227966319,34.23464189880967],[-118.55693019750558,34.23461119964405],[-118.55695811534797,34.23458050120994],[-118.5569975073715,34.23453394889042],[-118.55701228735288,34.23451773555857],[-118.55708608036018,34.23442053274015],[-118.55769899998025,34.23355555179118],[-118.55774816477575,34.23348628392117],[-118.55779733406281,34.23341770297738],[-118.5578366012205,34.23336187685067],[-118.55787435202201,34.23330811906602],[-118.55795137806606,34.23319990823922],[-118.55800709337659,34.23312064796482],[-118.55807264074795,34.23302760407154],[-118.558121844171,34.23296417552707],[-118.55820227482994,34.23287037540314],[-118.55825976700812,34.23280965607292],[-118.55834851157506,34.23272234392244],[-118.5584438991835,34.23263877930217],[-118.55851136445797,34.23258522678152],[-118.55854427603505,34.23255931351659],[-118.5585788459021,34.23253407906441],[-118.55864964662122,34.23248463356801],[-118.5586858801682,34.23246076564854],[-118.5587600100438,34.23241439560229],[-118.55883580988747,34.23237042294592],[-118.55887371609748,34.23234929479193],[-118.55891327969923,34.23232850307311],[-118.55895284599593,34.23230839759866],[-118.55903199116571,34.23226990523073],[-118.55915570265506,34.23221677878243],[-118.55923819674425,34.23218445297252],[-118.55939334208203,34.23213186938098],[-118.55945442752135,34.2321137260624],[-118.55949735800878,34.23210184886717],[-118.5595865328687,34.23207910973758],[-118.55972033243872,34.23205032505204],[-118.55978807259764,34.23203798960405],[-118.5598558244347,34.23202737126915],[-118.55996325575614,34.23201347838243],[-118.56003929994158,34.23200591327164],[-118.56006575083512,34.2320033866166],[-118.56020300083411,34.23199588092067],[-118.56036344353714,34.23199342110808],[-118.56043788333146,34.23199341962266],[-118.56231707356588,34.23199225952985],[-118.5623174463667,34.23204755925001],[-118.56231796379635,34.2331068778019],[-118.56231943074518,34.23406142824508],[-118.56231916214891,34.23500396408446],[-118.56232073330234,34.23548278096396],[-118.56232111688297,34.23627658201774],[-118.56232138547925,34.23729880546339],[-118.56232129564772,34.23753100365947],[-118.56232165138057,34.23832068453696],[-118.56232203316456,34.23911414321412],[-118.56232330338237,34.24274104025125],[-118.562323404892,34.24324734271631],[-118.56232440202197,34.24339538168245],[-118.56232544316939,34.24526910996687],[-118.56232597048044,34.24534742389692],[-118.5623262669245,34.24637376836107],[-118.56232673854002,34.24742621692319],[-118.56232765482163,34.24952699280794],[-118.5623292008222,34.25000203072651],[-118.5623293122133,34.25050970775162],[-118.56232930233185,34.25149071232165],[-118.56232983233785,34.25181496421892],[-118.56233115196302,34.25274753128035],[-118.56233215178794,34.25363269830687],[-118.56233180683485,34.25456389907297],[-118.56233281294799,34.25545009612919],[-118.56233344715858,34.25726337257127],[-118.56233483325904,34.25746911560728],[-118.56233509017723,34.25750724303577],[-118.56233534529875,34.25754502519765],[-118.56233725242214,34.25758245689616],[-118.56234081603885,34.25762022417486],[-118.56234437785893,34.25765764767269],[-118.56234793878073,34.2576950711539],[-118.5623531552976,34.25773248719377],[-118.56236002651119,34.25776989579225],[-118.56236689502987,34.25780696061084],[-118.5623737635485,34.2578440254131],[-118.56238228676396,34.25788108277439],[-118.56239081087767,34.25791813937682],[-118.5624009860949,34.2579548462605],[-118.56241116400706,34.25799189614828],[-118.56241452909609,34.25800012417467],[-118.56242299032778,34.25802790730786],[-118.56243146233922,34.25805740775833],[-118.56244325632059,34.25808861067489],[-118.56245339291027,34.25811947798495],[-118.56246518329837,34.25815033711659],[-118.56247862928153,34.25818118806977],[-118.56249207256975,34.25821169599251],[-118.56250551675627,34.25824220464661],[-118.5625189573496,34.25827236878576],[-118.56253405174128,34.25830218247069],[-118.56255079993147,34.25833198797793],[-118.56256588623833,34.25836077110109],[-118.56258095188396,34.25838646333604],[-118.5626010427053,34.25842106216046],[-118.56262112813673,34.25845497419184],[-118.56264286377335,34.25848819200633],[-118.56266459671501,34.25852106530483],[-118.56268633055501,34.25855393933298],[-118.56270971370185,34.25858611840346],[-118.56273475154545,34.25861829003706],[-118.5627581302007,34.25864978230569],[-118.56278316445105,34.2586812671379],[-118.56280984800826,34.25871205701455],[-118.56283653156544,34.25874284687993],[-118.56286321063106,34.2587729499578],[-118.56289154259682,34.25880270184111],[-118.5629198718676,34.25883210995479],[-118.56294819844346,34.25886117578408],[-118.56297817612281,34.2588895459186],[-118.56300815020892,34.25891757228474],[-118.56303812249836,34.25894525562542],[-118.56306974768792,34.25897258777385],[-118.56310136748762,34.2589992323966],[-118.56313464018744,34.2590255265704],[-118.56316791019229,34.25905147697782],[-118.56318288151482,34.25906308605543],[-118.5635504667392,34.25934200635881],[-118.56361366411775,34.25938876992198],[-118.56369185976827,34.25945126385039],[-118.56378675150668,34.25953566384204],[-118.56383172835632,34.25957976485879],[-118.56389507126194,34.25964816708699],[-118.56397684759722,34.25975049042054],[-118.56401193309725,34.25980013224198],[-118.56406209053117,34.25987615332397],[-118.56411905899154,34.25998065175907],[-118.56415766319255,34.26006119196765],[-118.56417954345794,34.26011570481332],[-118.5641997717215,34.26017056805933],[-118.56422349802477,34.26025323965352],[-118.56442202570258,34.26098051082465],[-118.56441378455816,34.26098535748132],[-118.56440388871698,34.26099021304701],[-118.56439564757257,34.26099505970312],[-118.56438740822477,34.26100025085161],[-118.56437916977531,34.26100544125738],[-118.56437093312246,34.26101097541298],[-118.56436269646962,34.26101651031068],[-118.56435611451353,34.26102203629873],[-118.56434787786071,34.26102757045329],[-118.56433964390283,34.26103344835756],[-118.56433306464166,34.26103931809459],[-118.5643248324804,34.2610455397481],[-118.56431825321926,34.26105140948429],[-118.56431002375294,34.26105797414446],[-118.56430344628843,34.26106418762972],[-118.56429687151888,34.26107074412209],[-118.5642902967493,34.26107730135634],[-118.56428372197975,34.26108385933253],[-118.56427714631187,34.26109041582337],[-118.56427057693217,34.26109765981334],[-118.56426728819994,34.26110076692579],[-118.56384190357355,34.2615757335606],[-118.56383533778715,34.26158366426208],[-118.56382877200075,34.2615915949628],[-118.56382220621431,34.26159952566277],[-118.56381564042789,34.26160745636199],[-118.56380907733643,34.26161573080822],[-118.56380251155004,34.26162366150592],[-118.56379760315531,34.26163192852617],[-118.56379104186048,34.26164054597516],[-118.56378613346578,34.26164881225131],[-118.56378122686769,34.26165742227421],[-118.56377632116791,34.26166603303867],[-118.56377141456984,34.26167464305981],[-118.56376651066671,34.26168359608513],[-118.56376160496694,34.26169220610448],[-118.56375670016547,34.26170115987031],[-118.5637534509591,34.2617101054684],[-118.56374854705595,34.26171905923234],[-118.56374530054454,34.26172834857579],[-118.56374205133814,34.26173729417103],[-118.5637388048267,34.26174658351248],[-118.56373555562033,34.26175552984817],[-118.56373230821059,34.26176481918765],[-118.56372906169914,34.26177410852605],[-118.56372747168108,34.26178373344373],[-118.56372422516964,34.26179302278004],[-118.56372263245665,34.26180230394858],[-118.56371938864017,34.26181193702977],[-118.56371779592713,34.26182121819617],[-118.56371620590913,34.2618308438509],[-118.56371461678938,34.26184046876203],[-118.56371467877312,34.26184974250098],[-118.56371308965338,34.26185936741],[-118.56371149963535,34.26186899306031],[-118.56371152927974,34.26187345805504],[-118.56365593344512,34.26270736553079],[-118.56365597566594,34.26271354771235],[-118.56365438564788,34.26272317252246],[-118.56365279562984,34.26273279807398],[-118.5636528585119,34.26274207171455],[-118.56365126849384,34.26275169726384],[-118.5636496784758,34.26276132206965],[-118.56364643196436,34.262770611298],[-118.5636448419463,34.26278023610165],[-118.5636432501316,34.26278951790364],[-118.56364000272187,34.26279880712887],[-118.56363841090717,34.26280808892886],[-118.56363516439575,34.26281737815204],[-118.56363191698598,34.26282666737426],[-118.56362867047456,34.26283595659538],[-118.5636254230648,34.26284524581548],[-118.56362217385843,34.26285419203433],[-118.56361726995529,34.26286314567648],[-118.56361402344383,34.26287243489363],[-118.5636091186424,34.26288138853384],[-118.56360421294265,34.26288999917295],[-118.56360096373625,34.26289894538709],[-118.56359605713816,34.26290755528202],[-118.56359115054009,34.26291616517607],[-118.56358624394201,34.26292477506924],[-118.56357968354548,34.26293339312822],[-118.56357477694742,34.26294200301962],[-118.56356986855269,34.2629502699103],[-118.56356330456292,34.26295854422441],[-118.56355674147143,34.26296681853771],[-118.56355183038181,34.26297474094134],[-118.56354526459538,34.26298267225333],[-118.56353869880896,34.26299060282214],[-118.56353213302255,34.26299853339021],[-118.56352390984445,34.26300612838216],[-118.56351734405803,34.26301405969119],[-118.56351077378004,34.2630213035155],[-118.56350255060194,34.2630288985054],[-118.56349598032394,34.26303614232843],[-118.5634877553492,34.26304339357507],[-118.56347952767952,34.26305030182166],[-118.56347295740153,34.26305754564285],[-118.5634647270369,34.26306411014645],[-118.5634565002655,34.26307101839135],[-118.56344826990087,34.2630775828939],[-118.56343838394118,34.26308415482019],[-118.56343015177991,34.26309037632245],[-118.56342191961865,34.26309659708183],[-118.56341203276064,34.2631028260074],[-118.56340379880274,34.26310870376665],[-118.56339555945496,34.26311389478473],[-118.5633682075512,34.2634746853462],[-118.56340089904101,34.26390492513018],[-118.56344981590149,34.26453225199836],[-118.56352966535047,34.26557402636826],[-118.56353679527889,34.26564956115654],[-118.56354376710378,34.26570173924564],[-118.56355239632042,34.26575425286676],[-118.5635610228421,34.26580642272451],[-118.56357130495884,34.26585858512593],[-118.56358323907739,34.26591039634084],[-118.56359517319594,34.26596220752381],[-118.56360875931628,34.26601366752112],[-118.56362234633495,34.26606512897177],[-118.56363758535545,34.26611623775285],[-118.56365447727605,34.26616699534976],[-118.56367302209676,34.2662174017632],[-118.56367976664792,34.26623591857908],[-118.56384499287982,34.26668683764518],[-118.56387026159045,34.2667526698775],[-118.56388715351103,34.2668034270903],[-118.56390404543166,34.26685418501485],[-118.56391928535044,34.26690529331641],[-118.56393452706585,34.26695674679755],[-118.56394811408452,34.26700820692876],[-118.5639600491014,34.26706001817774],[-118.56397198591492,34.26711217237775],[-118.56398226533668,34.26716399172897],[-118.56399089275666,34.26721616145458],[-118.56399952197329,34.26726867487246],[-118.5640048417964,34.26732120384764],[-118.56401181631627,34.26737372536613],[-118.56401548144265,34.26742626244195],[-118.56401914656901,34.26747879948488],[-118.5640228143903,34.26753167947621],[-118.56402317012315,34.26758423130099],[-118.56402352765264,34.26763712755837],[-118.56402222779045,34.26768968674108]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.001029,"geom:area_square_m":10520376.755287,"geom:bbox":"-118.564422026,34.2319922595,-118.536096989,34.2750668496","geom:latitude":34.254329,"geom:longitude":-118.549434,"iso:country":"US","lbl:latitude":34.239298,"lbl:longitude":-118.549787,"lbl:max_zoom":18,"mps:latitude":34.254493,"mps:longitude":-118.549246,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":34.254493,"reversegeo:longitude":-118.549246,"src:geom":"lacity","src:lbl_centroid":"mz","wof:belongsto":[85838305,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ec3303a411dfe4b7ee697c15c399b1fa","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1075806299,"neighbourhood_id":85838305,"region_id":85688637}],"wof:id":1075806299,"wof:lastmodified":1566625491,"wof:name":"Northridge West","wof:parent_id":85838305,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865867],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1091648325.geojson b/fixtures/microhoods/1091648325.geojson new file mode 100644 index 0000000..6948bdb --- /dev/null +++ b/fixtures/microhoods/1091648325.geojson @@ -0,0 +1 @@ +{"id":1091648325,"type":"Feature","bbox":[-118.401912,34.246439,-118.332805,34.276032],"geometry":{"type":"Polygon","coordinates":[[[-118.380221,34.249332],[-118.380346,34.249171],[-118.380485,34.249017],[-118.380597,34.248907],[-118.380712,34.248803],[-118.383948,34.246439],[-118.387102,34.249419],[-118.38870436233918,34.25093330850643],[-118.39005,34.252205],[-118.390129,34.252279],[-118.390203,34.252349],[-118.390254,34.252397],[-118.393406,34.255374],[-118.394809,34.256703],[-118.39497,34.256872],[-118.395119,34.257049],[-118.395258,34.257232],[-118.395424,34.257484],[-118.395534,34.257679],[-118.395632,34.257879],[-118.396001,34.258735],[-118.396087,34.258867],[-118.39616,34.258997],[-118.396239,34.259125],[-118.396367,34.259313],[-118.396507,34.259495],[-118.396607,34.259612],[-118.396766,34.259783],[-118.396877,34.259893],[-118.39895,34.261859],[-118.401912,34.264658],[-118.401829,34.265091],[-118.401779,34.265303],[-118.401715,34.265512],[-118.401638,34.265718],[-118.401548,34.26592],[-118.401453,34.266105],[-118.401331,34.266312],[-118.401204,34.266501],[-118.401136,34.266589],[-118.401065,34.266683],[-118.40098,34.266785],[-118.400525,34.267331],[-118.400215,34.267702],[-118.399886,34.268096],[-118.398244,34.270063],[-118.397981,34.270348],[-118.397796,34.270532],[-118.397504,34.270798],[-118.397234,34.271022],[-118.397175,34.27107],[-118.395594,34.272222],[-118.393953,34.27342],[-118.393794,34.273536],[-118.393652,34.273463],[-118.393356,34.273328],[-118.393021,34.273198],[-118.392807,34.273127],[-118.39267,34.273087],[-118.392382,34.273014],[-118.392317,34.272997],[-118.392137,34.27296],[-118.391774,34.272902],[-118.391591,34.272881],[-118.391407,34.272865],[-118.391113,34.272851],[-118.390853,34.27285],[-118.390576,34.27286],[-118.390301,34.272882],[-118.389134,34.273034],[-118.387897,34.273195],[-118.38302,34.273836],[-118.382795,34.273876],[-118.382572,34.273929],[-118.382355,34.273994],[-118.382144,34.274072],[-118.38194,34.274162],[-118.381696,34.274291],[-118.381511,34.274406],[-118.381339,34.274529],[-118.381256,34.27459],[-118.380875,34.274868],[-118.38064,34.27504],[-118.380316,34.275275],[-118.380296,34.275289],[-118.380105,34.275425],[-118.37992,34.27554],[-118.379725,34.275643],[-118.37953,34.275732],[-118.379321,34.275813],[-118.379103,34.275883],[-118.378995,34.275912],[-118.378716,34.275972],[-118.378488,34.276005],[-118.378321,34.27602],[-118.378258,34.276025],[-118.378028,34.276032],[-118.377797,34.276025],[-118.377567,34.276005],[-118.377339,34.275971],[-118.377115,34.275925],[-118.376896,34.275866],[-118.376681,34.275794],[-118.376474,34.27571],[-118.376274,34.275614],[-118.376082,34.275506],[-118.375469,34.27511],[-118.375329,34.275023],[-118.375086,34.274894],[-118.374882,34.274804],[-118.374785,34.274768],[-118.374671,34.274726],[-118.374454,34.27466],[-118.374232,34.274607],[-118.374006,34.274567],[-118.37381,34.274543],[-118.373777,34.27454],[-118.373547,34.274526],[-118.372959,34.274524],[-118.370457,34.274516],[-118.369589,34.274513],[-118.368254,34.274509],[-118.365656,34.274501],[-118.36353,34.274495],[-118.362061,34.274491],[-118.361483,34.274489],[-118.358778,34.274129],[-118.357144,34.273911],[-118.352769,34.273328],[-118.351713,34.273187],[-118.351329,34.273135],[-118.350754,34.273058],[-118.347851,34.272672],[-118.347373,34.27277],[-118.347113,34.272833],[-118.346846,34.272898],[-118.346699,34.27291],[-118.346395,34.272942],[-118.346092,34.27298],[-118.345958,34.273],[-118.345861,34.273028],[-118.345654,34.273089],[-118.34492,34.273328],[-118.343439,34.273811],[-118.342753,34.274036],[-118.342614,34.274079],[-118.342572,34.274086],[-118.342389,34.274128],[-118.34214,34.274172],[-118.341951,34.274195],[-118.341825,34.274206],[-118.341635,34.274216],[-118.341508,34.274217],[-118.341317,34.274213],[-118.341127,34.2742],[-118.340938,34.274179],[-118.340753,34.274151],[-118.340627,34.274127],[-118.340504,34.274099],[-118.340449,34.274084],[-118.340323,34.274051],[-118.340144,34.273996],[-118.339912,34.27391],[-118.339756,34.273837],[-118.339662,34.273794],[-118.339554,34.273739],[-118.339428,34.273669],[-118.339294,34.273587],[-118.339146,34.273488],[-118.339004,34.273381],[-118.338856,34.273256],[-118.338827,34.273231],[-118.338662,34.27307],[-118.338511,34.2729],[-118.338375,34.272722],[-118.338254,34.272536],[-118.338141,34.272327],[-118.338118,34.272278],[-118.338101,34.272235],[-118.338078,34.272194],[-118.337662,34.271312],[-118.336143,34.26809],[-118.335595,34.267117],[-118.33554,34.267039],[-118.335395,34.266851],[-118.335182,34.2666],[-118.33504,34.266449],[-118.334836,34.266249],[-118.334804,34.26622],[-118.334737,34.266159],[-118.334557,34.266004],[-118.334299,34.265802],[-118.334152,34.265696],[-118.333919,34.265541],[-118.3338,34.265466],[-118.333504,34.265296],[-118.332977,34.265031],[-118.332805,34.264944],[-118.33280547580375,34.26494364698431],[-118.33281704964425,34.2649493613731],[-118.33294574947836,34.26485420562314],[-118.3331883008933,34.26467595645742],[-118.33351664590944,34.26443289521615],[-118.33361894515566,34.26435738977398],[-118.33368494617622,34.26430911964968],[-118.33377569488454,34.26424223350607],[-118.33385324554469,34.26418534464349],[-118.33389121284019,34.26416188216182],[-118.33392918732218,34.26414013836069],[-118.33398367822903,34.26411044775833],[-118.33402496659612,34.26408972476294],[-118.33401809815467,34.26408366673252],[-118.334133,34.264028],[-118.334214,34.263991],[-118.334412,34.263893],[-118.334578,34.263825],[-118.334792,34.263754],[-118.334969,34.263709],[-118.335194,34.263666],[-118.335444,34.263639],[-118.335671,34.263631],[-118.335928,34.263642],[-118.33748,34.263793],[-118.338277,34.263875],[-118.339359,34.263983],[-118.339531,34.263996],[-118.339847,34.264006],[-118.34336,34.264144],[-118.343813,34.264176],[-118.344113,34.264206],[-118.344499,34.264257],[-118.345008,34.264344],[-118.345285,34.264401],[-118.34556,34.264465],[-118.345968,34.264573],[-118.346293,34.264671],[-118.34819,34.265271],[-118.348211,34.265277],[-118.348458,34.265346],[-118.348777,34.265422],[-118.349115,34.265487],[-118.349456,34.265537],[-118.3498,34.265573],[-118.353086,34.265834],[-118.354206,34.265928],[-118.355925,34.266065],[-118.356259,34.26608],[-118.356471,34.266083],[-118.359894,34.266123],[-118.364179,34.266174],[-118.364355,34.266172],[-118.364585,34.266158],[-118.364757,34.266139],[-118.364927,34.266113],[-118.365151,34.266066],[-118.365316,34.266022],[-118.365479,34.265971],[-118.365727,34.265874],[-118.365978,34.265756],[-118.366127,34.265674],[-118.366246,34.265601],[-118.366432,34.265473],[-118.366599,34.26534],[-118.36824,34.263895],[-118.368586,34.263591],[-118.368812,34.263374],[-118.368956,34.263223],[-118.369158,34.26299],[-118.369284,34.262832],[-118.369962,34.261945],[-118.371198,34.260326],[-118.372125,34.259113],[-118.372256,34.258956],[-118.372395,34.258802],[-118.37254,34.258653],[-118.372691,34.258508],[-118.372929,34.258298],[-118.373179,34.2581],[-118.373442,34.257912],[-118.373716,34.257736],[-118.373905,34.257626],[-118.374098,34.257521],[-118.375225,34.256954],[-118.375557,34.256787],[-118.3759126001627,34.25660841862513],[-118.37715,34.255987],[-118.37743,34.255842],[-118.377451,34.255831],[-118.377616,34.255722],[-118.37774,34.255625],[-118.377862,34.255519],[-118.377936,34.255439],[-118.377988,34.255373],[-118.378061,34.255251],[-118.378235,34.254928],[-118.378298,34.254784],[-118.378359,34.254599],[-118.378394,34.254448],[-118.37842,34.254258],[-118.378426,34.254066],[-118.378353,34.252799],[-118.378357,34.252643],[-118.378374,34.252487],[-118.378414,34.252295],[-118.37846,34.252144],[-118.378519,34.251996],[-118.37859,34.251852],[-118.378688,34.251689],[-118.37995,34.249745],[-118.3800644839979,34.24957052807701],[-118.380221,34.249332]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000878,"geom:area_square_m":8971783.761176,"geom:bbox":"-118.401912,34.246439,-118.332805,34.276032","geom:latitude":34.265383,"geom:longitude":-118.373806,"iso:country":"US","lbl:latitude":34.264198,"lbl:longitude":-118.381902,"lbl:max_zoom":18,"mps:latitude":34.264198,"mps:longitude":-118.381902,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Hansen Dam"],"name:deu_x_preferred":["Hansen Dam"],"reversegeo:latitude":34.264198,"reversegeo:longitude":-118.381902,"src:geom":"mz","wof:belongsto":[85865477,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"322c58efec191247d713226eb58d1cf9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1091648325,"neighbourhood_id":85865477,"region_id":85688637}],"wof:id":1091648325,"wof:lastmodified":1566625491,"wof:name":"Hansen Dam","wof:parent_id":85865477,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1091736553.geojson b/fixtures/microhoods/1091736553.geojson new file mode 100644 index 0000000..03fb09b --- /dev/null +++ b/fixtures/microhoods/1091736553.geojson @@ -0,0 +1 @@ +{"id":1091736553,"type":"Feature","bbox":[-118.253462,34.05151207790922,-118.23939580035636,34.06272650496462],"geometry":{"type":"Polygon","coordinates":[[[-118.246585,34.054338],[-118.251856,34.057693],[-118.251973,34.057769],[-118.253462,34.058712],[-118.253294,34.058875],[-118.253045,34.059105],[-118.252906,34.059233],[-118.252503,34.059578],[-118.252227,34.0598],[-118.251728,34.060201],[-118.251137,34.060684],[-118.250668,34.061079],[-118.250086,34.061591],[-118.248959,34.062584],[-118.248916,34.062623],[-118.24885081447258,34.06268303684147],[-118.24880191113057,34.06272650496462],[-118.24822457322439,34.06205330105873],[-118.24818481378992,34.06200632611765],[-118.24813179971343,34.06194323266266],[-118.24807051035654,34.06187294503545],[-118.24796614498517,34.06175053541536],[-118.24788994269623,34.06166172979921],[-118.24779717637178,34.06155372306462],[-118.24768287293841,34.06141999819467],[-118.24758016765365,34.0613003332715],[-118.24743936212273,34.06113609354603],[-118.24732174390599,34.06099790950361],[-118.24712295751338,34.06076474849146],[-118.24709811101093,34.0607362901273],[-118.24707160981174,34.06070646092898],[-118.24699541291274,34.06061868419881],[-118.24694074863106,34.0605549080183],[-118.24690099099321,34.06050827606994],[-118.24679331802493,34.06038312430749],[-118.24674362681667,34.06032620805755],[-118.24671049694899,34.06028780543745],[-118.24667074919262,34.06024426404024],[-118.24662934224791,34.06019763415357],[-118.24658462770634,34.06014929479242],[-118.246521701619,34.06008278700817],[-118.24647864626576,34.06003719222932],[-118.24645049306473,34.06000667959957],[-118.24640909869645,34.05996451559246],[-118.24637764328845,34.05993400963444],[-118.24631969207117,34.05987539181484],[-118.24629319985512,34.05984831068844],[-118.24625843595194,34.05981540758086],[-118.24624518849645,34.05980135164208],[-118.24621870077198,34.05977598813489],[-118.2461938704392,34.05975268162439],[-118.24614752006548,34.05970915334811],[-118.24609951230008,34.05966322421627],[-118.24605316551961,34.0596210704573],[-118.24600847433425,34.059580286776],[-118.24597867811458,34.05955218151605],[-118.24595550697015,34.05953196343548],[-118.245924059647,34.05950386188057],[-118.24581648549339,34.05941099718974],[-118.24578338616844,34.059382555488],[-118.24572877039581,34.05933526575145],[-118.24566919951606,34.05928661109466],[-118.24557487820785,34.05920951985963],[-118.24538459167448,34.05905740015417],[-118.24529193224954,34.05898373881886],[-118.24523402055812,34.0589381732175],[-118.24518934733905,34.05890322910453],[-118.2451016529027,34.05883402254173],[-118.2450007262822,34.05875556971372],[-118.24493950699392,34.05870760610643],[-118.24491137804742,34.05868499366148],[-118.24488490559432,34.0586644382413],[-118.24483527277657,34.05862709910675],[-118.24478729285893,34.05859044389673],[-118.24476578719101,34.05857468720482],[-118.24474427703153,34.05855755667374],[-118.24471284408143,34.0585342632242],[-118.24468471782988,34.05851302457005],[-118.2446168878394,34.05846232654589],[-118.2445837974976,34.05843663220232],[-118.24456725591996,34.05842498732231],[-118.2445523645475,34.05841333871957],[-118.24451762489882,34.05838799042574],[-118.24446965037107,34.0583530520397],[-118.24443822101424,34.05833078928606],[-118.24440844096424,34.05830817971754],[-118.24436873722532,34.05827906412134],[-118.2443389607686,34.05825748529197],[-118.24429595122943,34.05822665870229],[-118.2442297813256,34.05817904830329],[-118.24416692081527,34.05813383577724],[-118.24413549235675,34.05811225988781],[-118.24410240830316,34.05808862620398],[-118.24405940145891,34.05805883030825],[-118.24400316063394,34.05801944353553],[-118.24386090881544,34.05792115030111],[-118.24381955666794,34.05789272447246],[-118.2437881273111,34.05787046159795],[-118.24376001183933,34.05785231356273],[-118.24370211991086,34.05781258658101],[-118.24365414987467,34.05777902180675],[-118.2436012238331,34.05774443667918],[-118.24347056207837,34.05765779927636],[-118.24334817201081,34.05757698391168],[-118.24330848084831,34.05755198962218],[-118.24324728761115,34.05751226845354],[-118.24319105576932,34.05747562839033],[-118.2431381351176,34.05744241699337],[-118.24290825893135,34.05729724303327],[-118.2428206112074,34.05724280524595],[-118.24276272916039,34.05720616878744],[-118.24264862245805,34.05713529747187],[-118.24250805498069,34.0570479903777],[-118.24229802976559,34.0569161710896],[-118.24224180241532,34.05688090537642],[-118.24216407748199,34.05683263036079],[-118.24210950482849,34.05679839091815],[-118.2420317825901,34.0567508027883],[-118.24193255648044,34.05668848761691],[-118.24182837346704,34.05662377817856],[-118.24169442118345,34.05653954873859],[-118.24165307891745,34.0565138701855],[-118.2416200047453,34.05649332763507],[-118.2414595961783,34.05639369448316],[-118.24119830860148,34.05623003171358],[-118.24113546785411,34.05619065674319],[-118.24109908878003,34.05616874619343],[-118.24107097510492,34.05615094089056],[-118.2410494757252,34.0561369007175],[-118.24102136205009,34.05611909540794],[-118.24097671308552,34.05609170645245],[-118.24093041032253,34.05606294584415],[-118.24086260548489,34.05601980268069],[-118.2406608573468,34.0558944894872],[-118.24058148130999,34.05584518610451],[-118.24053848434723,34.05581813718155],[-118.24046076210885,34.05576986081645],[-118.24036153959246,34.05570720108111],[-118.2401201020885,34.05555654796013],[-118.2400423798501,34.05550827070174],[-118.23999111659009,34.05547642869894],[-118.23997788710088,34.05546821142993],[-118.23996300381329,34.0554586239949],[-118.23992993143777,34.05543842428838],[-118.23989354877044,34.05541513965693],[-118.23985716879808,34.05539254196288],[-118.23980259614454,34.05535830193853],[-118.2397199143075,34.05530728720888],[-118.23968849573045,34.05528777068965],[-118.23964715346443,34.05526174791275],[-118.23960911699866,34.05523743542011],[-118.23959423460934,34.05522819105941],[-118.23957439172304,34.05521620859216],[-118.23955950933376,34.05520696422914],[-118.2395495856448,34.05520045722705],[-118.2395347041538,34.05519155670716],[-118.23939580125467,34.05510630472804],[-118.23939580035636,34.05510596088286],[-118.2394188349569,34.05507981078274],[-118.23944022653872,34.05505606833655],[-118.23947807166334,34.055013744829],[-118.2396343803194,34.05483654063501],[-118.23972487300789,34.05473331524048],[-118.2397643593545,34.05468789694994],[-118.23978739395503,34.05466174672086],[-118.2402941524714,34.0540850612656],[-118.24052285096634,34.05382527525972],[-118.24082558231878,34.05348015892792],[-118.24084861691928,34.05345435143387],[-118.2408601333212,34.05344093227816],[-118.24087494294697,34.05342475858297],[-118.24090456309683,34.05339241192759],[-118.24093582716368,34.05335834525432],[-118.24096709212884,34.053324277823],[-118.2409950656668,34.05329399573311],[-118.2410164545537,34.05326956582573],[-118.24107237647675,34.05320007035191],[-118.24131249166065,34.05289423347202],[-118.24166279419725,34.05244803464198],[-118.24213150187484,34.05185080905912],[-118.24232062868319,34.05161033410864],[-118.24237654341972,34.05153912095351],[-118.24239463459124,34.05151641430494],[-118.24239793922504,34.05151207790922],[-118.246585,34.054338]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000061,"geom:area_square_m":629890.377751,"geom:bbox":"-118.253462,34.0515120779,-118.2393958,34.062726505","geom:latitude":34.057024,"geom:longitude":-118.246389,"iso:country":"US","lbl:latitude":34.059165,"lbl:longitude":-118.251734,"lbl:max_zoom":18,"mps:latitude":34.057089,"mps:longitude":-118.246401,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Civic center"],"name:eng_x_variant":["Civic Ctr","Civiccenter"],"name:fra_x_preferred":["Civic Center"],"name:ita_x_preferred":["Civic Center"],"name:kor_x_preferred":["시빅센터"],"name:nld_x_preferred":["Civic Center"],"name:spa_x_preferred":["Centro cívico"],"reversegeo:latitude":34.057089,"reversegeo:longitude":-118.246401,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"bec6d759e93e4dc68e4aaa2c0d3604fc","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1091736553,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1091736553,"wof:lastmodified":1566625491,"wof:name":"Civic Center","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866227],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1091764195.geojson b/fixtures/microhoods/1091764195.geojson new file mode 100644 index 0000000..b6f4478 --- /dev/null +++ b/fixtures/microhoods/1091764195.geojson @@ -0,0 +1 @@ +{"id":1091764195,"type":"Feature","bbox":[-118.38607,34.0445345325035,-118.37613418814027,34.050603],"geometry":{"type":"Polygon","coordinates":[[[-118.37683245114802,34.0445345325035],[-118.37803,34.04476],[-118.379024,34.044947],[-118.379992,34.045129],[-118.381031,34.045324],[-118.38207,34.04552],[-118.383109,34.045716],[-118.384105,34.046084],[-118.385107,34.046454],[-118.3856,34.046636],[-118.38607,34.04678],[-118.385502,34.04886],[-118.384865,34.049827],[-118.384474,34.050413],[-118.384319,34.050603],[-118.383205,34.05039],[-118.382169,34.050193],[-118.381134,34.049995],[-118.380099,34.049798],[-118.379063,34.049601],[-118.378076,34.049412],[-118.377105,34.049227],[-118.37614787476177,34.0490444554958],[-118.37614902291888,34.04820169341326],[-118.37613418814027,34.04710464822976],[-118.37656815347427,34.04560879262424],[-118.376755053359,34.04496245776448],[-118.3767664547766,34.04492876061973],[-118.37677454949564,34.04489369982473],[-118.37678429621646,34.04485863454916],[-118.37679238913886,34.04482322983829],[-118.37680048206124,34.04478782585697],[-118.37680692477846,34.04475242707129],[-118.37681336569904,34.04471668438344],[-118.37681815641447,34.04468094689104],[-118.37682294712987,34.04464521012787],[-118.37682608674177,34.04460947781575],[-118.37682922725203,34.04457374548851],[-118.37683236147404,34.04453663833845],[-118.37683245114802,34.0445345325035]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":425497.136207,"geom:bbox":"-118.38607,34.0445345325,-118.376134188,34.050603","geom:latitude":34.047611,"geom:longitude":-118.38084,"iso:country":"US","lbl:latitude":34.046631,"lbl:longitude":-118.380805,"lbl:max_zoom":18,"mps:latitude":34.047614,"mps:longitude":-118.38084,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["Crestview"],"name:ceb_x_preferred":["Crestview"],"name:deu_x_preferred":["Crestview"],"name:fra_x_preferred":["Crestview"],"name:hun_x_preferred":["Crestview"],"name:ita_x_preferred":["Crestview"],"name:nld_x_preferred":["Crestview"],"name:pol_x_preferred":["Crestview"],"name:por_x_preferred":["Crestview"],"name:spa_x_preferred":["Crestview"],"name:srp_x_preferred":["Крествју"],"name:swe_x_preferred":["Crestview"],"name:vol_x_preferred":["Crestview"],"reversegeo:latitude":34.047614,"reversegeo:longitude":-118.38084,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865815,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b7bf77dff4f58add9b52419c533bbad0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1091764195,"neighbourhood_id":85865815,"region_id":85688637}],"wof:id":1091764195,"wof:lastmodified":1566625491,"wof:name":"Crestview","wof:parent_id":85865815,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869183],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1091861851.geojson b/fixtures/microhoods/1091861851.geojson new file mode 100644 index 0000000..6b96338 --- /dev/null +++ b/fixtures/microhoods/1091861851.geojson @@ -0,0 +1 @@ +{"id":1091861851,"type":"Feature","bbox":[-118.276518,33.771942,-118.273575,33.776436],"geometry":{"type":"Polygon","coordinates":[[[-118.276518,33.776294],[-118.275217,33.776365],[-118.273916,33.776436],[-118.273859,33.775711],[-118.273856,33.775674],[-118.273802,33.774986],[-118.273689,33.773535],[-118.273575,33.772085],[-118.274876,33.772013],[-118.276178,33.771942],[-118.276291,33.773393],[-118.276405,33.774844],[-118.276518,33.776294]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":116905.376667,"geom:bbox":"-118.276518,33.771942,-118.273575,33.776436","geom:latitude":33.774189,"geom:longitude":-118.275047,"iso:country":"US","lbl:latitude":33.774189,"lbl:longitude":-118.275047,"lbl:max_zoom":18,"mps:latitude":33.774189,"mps:longitude":-118.275047,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":33.774189,"reversegeo:longitude":-118.275047,"src:geom":"mz","wof:belongsto":[85858057,102191575,1108692885,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"56089f57d0ebb978953e4ccac458673e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692885,"microhood_id":1091861851,"neighbourhood_id":85858057,"region_id":85688637}],"wof:id":1091861851,"wof:lastmodified":1566625491,"wof:name":"Dana Strand Village","wof:parent_id":85858057,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551247],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456409.geojson b/fixtures/microhoods/1092456409.geojson new file mode 100644 index 0000000..d4921ac --- /dev/null +++ b/fixtures/microhoods/1092456409.geojson @@ -0,0 +1 @@ +{"id":1092456409,"type":"Feature","bbox":[-118.2593425489821,34.08541183261789,-118.24292919512337,34.10258952430608],"geometry":{"type":"Polygon","coordinates":[[[-118.24856940458471,34.08541183261789],[-118.25932400955128,34.09001191240427],[-118.25933573256573,34.09006444025654],[-118.25934084397971,34.09011526443958],[-118.2593425489821,34.09013243545848],[-118.25934095357417,34.09015064353437],[-118.25933937882748,34.09017537749746],[-118.25933942913314,34.09019152111544],[-118.25933623921554,34.09022793723793],[-118.25933304300978,34.09026229261755],[-118.25932818042914,34.09029184284531],[-118.2593233708491,34.09033856701567],[-118.25932014320229,34.09036261723931],[-118.25931526535031,34.09038735932378],[-118.25930713380035,34.09042790796762],[-118.25930063898085,34.09046364402442],[-118.2592826762684,34.09052894509001],[-118.2592400997172,34.09064513394919],[-118.25921714327012,34.09069773580271],[-118.25919250787179,34.09074141108034],[-118.25910376779645,34.09088208716045],[-118.25900674166091,34.09101350618388],[-118.25894091940508,34.09108921376866],[-118.25888657851694,34.0911394786397],[-118.2587202500522,34.09128993830264],[-118.25844353930027,34.09152512956187],[-118.25833977490181,34.09161431377962],[-118.2579378821184,34.09195659589721],[-118.25788187934698,34.09200377294572],[-118.25778140817233,34.09209054484212],[-118.25768588312167,34.09217421521369],[-118.25760519105296,34.09224823750881],[-118.25734995093462,34.09248612878623],[-118.25718528704813,34.09264276508794],[-118.25697451712963,34.09284277772428],[-118.25692017713978,34.0928940718857],[-118.25687406032806,34.09293435746847],[-118.25683453355722,34.09296947724447],[-118.25678841764379,34.09301010648276],[-118.25671924377365,34.0930710499316],[-118.25665830206479,34.09312442023452],[-118.25661054043775,34.0931667700838],[-118.25655783448343,34.09321256574439],[-118.25650183710185,34.09326214569349],[-118.25643266143508,34.09332274601479],[-118.25634042870992,34.09340400338876],[-118.25622843933672,34.09350488222442],[-118.25603905111862,34.09367839978947],[-118.2559682566877,34.09374965117675],[-118.25590411607811,34.09383668834844],[-118.25584151877416,34.09388868713704],[-118.25576253799608,34.09398331206987],[-118.25573948542925,34.09400568820011],[-118.25569006102064,34.09404460668825],[-118.25559944436466,34.09411521279647],[-118.25554342901681,34.09415929694955],[-118.25550061710699,34.09420060555068],[-118.2554380449559,34.09426084737947],[-118.25534750016512,34.0943544661315],[-118.25526683684252,34.09443947181211],[-118.25520922339176,34.09450108374869],[-118.2551812372774,34.09453033865339],[-118.25515819459204,34.09455580482916],[-118.25514502439168,34.09456957231684],[-118.25512856186577,34.09458678111543],[-118.25510551558718,34.09461121696358],[-118.25508740824598,34.09463083377881],[-118.25505613429766,34.09466490468724],[-118.25501991781867,34.0947031079788],[-118.25497876869046,34.09474819089067],[-118.25495736812545,34.09477090603945],[-118.25490305418676,34.09483147403654],[-118.25483558711565,34.09491164906968],[-118.25477634861254,34.09498218824722],[-118.25472533688084,34.09504274865409],[-118.2546891365715,34.09508610404363],[-118.25466610466593,34.09511534833149],[-118.25465459006062,34.09513048599577],[-118.25456740227408,34.09524264552208],[-118.25452135193767,34.09530594329653],[-118.25444899713311,34.09540811127523],[-118.25439308509154,34.09548654355093],[-118.25432731403968,34.09558148359806],[-118.25426811865572,34.09566679230038],[-118.2542451020215,34.09570084493826],[-118.25418920165801,34.09578339887229],[-118.2535693191962,34.09668566069836],[-118.25315163582677,34.09728179587417],[-118.25296253147629,34.09755354339029],[-118.25288690231251,34.09766705282302],[-118.25281456906752,34.09777780603261],[-118.25274388243444,34.09788683776401],[-118.25269127080321,34.0979656054629],[-118.25259261692041,34.09811076329122],[-118.25253670308217,34.09818988114691],[-118.25245283007902,34.09830787156786],[-118.2523541591282,34.09844821892715],[-118.25222917382779,34.09862503137855],[-118.2521419833463,34.09873856243413],[-118.25205313547316,34.09885003653862],[-118.25193490640197,34.09907698333825],[-118.25187413627133,34.09918908556407],[-118.25183135670085,34.09924310214808],[-118.25178369209188,34.09931979840778],[-118.25176230230666,34.09934663408568],[-118.25161257919993,34.09953620638033],[-118.25152044978101,34.09965558743446],[-118.25136582097453,34.09986165637616],[-118.25126052135525,34.09999583456534],[-118.25117662319927,34.10010661076237],[-118.2511108341811,34.10019811421228],[-118.25106317047049,34.10027549693013],[-118.25103689385011,34.10032501397732],[-118.25102375329412,34.10034908516695],[-118.25099418614485,34.10040307348786],[-118.25095472854433,34.10046326478292],[-118.25091197951659,34.10052724151146],[-118.25086431221267,34.10060359443452],[-118.250819933641,34.10067513083855],[-118.25073454428166,34.10084018131539],[-118.25065080782244,34.10100557066614],[-118.25061142298544,34.10109014939157],[-118.25059501256185,34.10112556183547],[-118.2505687557044,34.10118194782982],[-118.25054249705032,34.1012376472145],[-118.2505047507404,34.10131810107276],[-118.2504670232951,34.10140473696635],[-118.25044077901408,34.10146524442748],[-118.2504063277246,34.10154294360878],[-118.25039485893338,34.10157388088926],[-118.25037518313373,34.10162200916197],[-118.25036207671374,34.10165741468875],[-118.25034404752597,34.10170382388981],[-118.2503194768063,34.10177188412614],[-118.2502949375277,34.10185024950918],[-118.25028020964861,34.10189596311165],[-118.25026548446448,34.10194270765475],[-118.25024583561425,34.1019997662813],[-118.25022947549633,34.10205235363991],[-118.25021149032604,34.10211318718407],[-118.25019512930976,34.10216508790774],[-118.25018041760032,34.10221629757238],[-118.25016406556722,34.10227128888507],[-118.25015426943904,34.10230909227703],[-118.25014118637526,34.10235274147959],[-118.25013140641676,34.10239604105574],[-118.25011834131928,34.10244552934007],[-118.25011018551479,34.10247989463748],[-118.25010038399672,34.10251598116013],[-118.25008243565736,34.10258952430608],[-118.25002943864885,34.10254120244222],[-118.24997313045021,34.10249013951016],[-118.24990688418958,34.10242948029507],[-118.24984229532068,34.10237087774978],[-118.24976778815267,34.10230954825027],[-118.24967009816216,34.10222834480047],[-118.2495839964388,34.10215570361894],[-118.2495310048202,34.10210909829176],[-118.24944985640731,34.10203576077231],[-118.24933886057083,34.10192264027807],[-118.24923446735164,34.10180847527654],[-118.24913007503078,34.10169465377701],[-118.24902567911667,34.10157911458551],[-118.24892124277838,34.10145018004933],[-118.2488383067181,34.10133081789149],[-118.24874540295139,34.10119189755166],[-118.24851641519895,34.10083377228747],[-118.24827587960354,34.10047910368989],[-118.24813986119479,34.10028119189787],[-118.24795905098935,34.10001639334596],[-118.24787609247119,34.09988844427518],[-118.247804747373,34.09977798839677],[-118.24776325957991,34.09971109367586],[-118.24769189561712,34.09959445606615],[-118.24759895142623,34.09944042202035],[-118.24746613730811,34.09920849824283],[-118.24742801460407,34.09916220594806],[-118.24737497267982,34.09909739654408],[-118.24730701333195,34.09901475583456],[-118.24693919005402,34.0986170667477],[-118.24682321305929,34.09849261771313],[-118.24665919416312,34.09831811992112],[-118.24658962323763,34.09824819126938],[-118.24611422490781,34.09777206031267],[-118.24567361383737,34.09732986261393],[-118.2452859629445,34.09692396500755],[-118.24500268820277,34.09662914301543],[-118.24477245987696,34.09640187944922],[-118.24463002749705,34.09626443061958],[-118.24414975311188,34.09580753756041],[-118.24411331115576,34.09577017090695],[-118.24397492876695,34.09562385284963],[-118.24432971005744,34.09564441988096],[-118.24453368413617,34.09568136006842],[-118.24474087040507,34.09572151244614],[-118.24490870734385,34.09577692272734],[-118.24504924066578,34.09583715129391],[-118.24520123524812,34.09591663689481],[-118.24534476216563,34.09600418518513],[-118.24543711263439,34.09608208079784],[-118.2455246448177,34.09617121907635],[-118.24560896481091,34.09626838783036],[-118.24567882994806,34.09636395048929],[-118.24585871260015,34.09662092570655],[-118.24603859525223,34.09686505216295],[-118.24616577790867,34.0970211445313],[-118.24630841923036,34.0971605736628],[-118.24651310050224,34.09731534536942],[-118.24671957957797,34.09744324640179],[-118.24689946223006,34.09754603648869],[-118.24722068125163,34.09710917861935],[-118.24826143088154,34.09788010427113],[-118.25011165244582,34.09564763207118],[-118.24784384615349,34.0956508442614],[-118.2477381450194,34.09564793321395],[-118.2476607513112,34.09564441988096],[-118.24756789893797,34.09561259912157],[-118.24630944861512,34.09500198053306],[-118.24611326317027,34.09525895610528],[-118.24492215831371,34.09461379870442],[-118.24465640512291,34.09495941332322],[-118.24392299270545,34.09425897403843],[-118.24364181398421,34.0943576975136],[-118.24338648954375,34.09413332439771],[-118.24386346740168,34.09390294579871],[-118.2431502905469,34.09352437477346],[-118.24498499686146,34.09187973294808],[-118.24371296953602,34.09139148003528],[-118.24292919512337,34.08937422457979],[-118.24380291086206,34.08879603034094],[-118.24416896600579,34.08857624964772],[-118.2444838951878,34.08841056751505],[-118.24481796297025,34.08826923114556],[-118.24567882994806,34.08792231460225],[-118.24598905618306,34.08777689851582],[-118.24616689156304,34.08768361780047],[-118.24629363106325,34.08759788253501],[-118.24639928315223,34.08751617601423],[-118.24651726403533,34.08741711042047],[-118.2466832145433,34.08725257358741],[-118.24808154822946,34.08587936162503],[-118.24856940458471,34.08541183261789]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000136,"geom:area_square_m":1397583.244736,"geom:bbox":"-118.259342549,34.0854118326,-118.242929195,34.1025895243","geom:latitude":34.092534,"geom:longitude":-118.250386,"iso:country":"US","lbl:latitude":34.089089,"lbl:longitude":-118.247434,"lbl:max_zoom":18,"mps:latitude":34.091172,"mps:longitude":-118.249826,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Elysian Heights"],"name:eng_x_variant":["Elysian Hts"],"name:fra_x_preferred":["Elysian Heights"],"reversegeo:latitude":34.091172,"reversegeo:longitude":-118.249826,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865835,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5368569"},"wof:country":"US","wof:geomhash":"fba1f9e333d7e678e0aa3fa19546fd88","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092456409,"neighbourhood_id":85865835,"region_id":85688637}],"wof:id":1092456409,"wof:lastmodified":1566625490,"wof:name":"Elysian Heights","wof:parent_id":85865835,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869219],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456413.geojson b/fixtures/microhoods/1092456413.geojson new file mode 100644 index 0000000..9ba92a9 --- /dev/null +++ b/fixtures/microhoods/1092456413.geojson @@ -0,0 +1 @@ +{"id":1092456413,"type":"Feature","bbox":[-118.36141378579084,34.0712437645954,-118.3589342603917,34.07303250769022],"geometry":{"type":"Polygon","coordinates":[[[-118.359466,34.071246],[-118.361411,34.071516],[-118.36141378579084,34.07303250769022],[-118.3589342603917,34.07300504360765],[-118.3594498305734,34.0712437645954],[-118.359466,34.071246]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":37665.147916,"geom:bbox":"-118.361413786,34.0712437646,-118.35893426,34.0730325077","geom:latitude":34.072226,"geom:longitude":-118.360266,"iso:country":"US","lbl:latitude":34.072063,"lbl:longitude":-118.343693,"lbl:max_zoom":18,"mps:latitude":34.072188,"mps:longitude":-118.360265,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Farmers Market"],"reversegeo:latitude":34.072188,"reversegeo:longitude":-118.360265,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869227,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"9668e73635e7e601de7d43d7e5c3ea5b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1092456413,"neighbourhood_id":85869227,"region_id":85688637}],"wof:id":1092456413,"wof:lastmodified":1566625490,"wof:name":"Farmer Market","wof:parent_id":85869227,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868359],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456417.geojson b/fixtures/microhoods/1092456417.geojson new file mode 100644 index 0000000..5db54ec --- /dev/null +++ b/fixtures/microhoods/1092456417.geojson @@ -0,0 +1 @@ +{"id":1092456417,"type":"Feature","bbox":[-118.264367,34.027549,-118.24524,34.044595],"geometry":{"type":"Polygon","coordinates":[[[-118.256061,34.042328],[-118.25546127512143,34.04193687507918],[-118.25524521184718,34.041796018625],[-118.254943,34.041599],[-118.254517,34.041122],[-118.25451691262943,34.04112192045982],[-118.254093,34.040736],[-118.252996,34.041464],[-118.252305,34.041914],[-118.251764,34.042264],[-118.250412,34.04326],[-118.248997,34.044595],[-118.247905,34.043941],[-118.247114,34.043467],[-118.246162,34.042856],[-118.24524,34.04226],[-118.245487,34.041922],[-118.246765,34.040704],[-118.248003,34.039523],[-118.248827,34.038737],[-118.249056,34.038518],[-118.25033,34.037303],[-118.24926,34.036327],[-118.248548,34.035679],[-118.247828,34.035022],[-118.248714,34.033736],[-118.249318,34.032897],[-118.249901,34.032084],[-118.250496,34.031258],[-118.251043,34.030495],[-118.250049,34.030005],[-118.249008,34.029492],[-118.24975,34.028612],[-118.250771,34.029112],[-118.251239,34.028534],[-118.25178,34.027865],[-118.251935,34.027673],[-118.252036,34.027549],[-118.252684,34.027897],[-118.253955,34.02858],[-118.256068,34.029713],[-118.256472,34.02993],[-118.256968,34.030179],[-118.257537,34.03044],[-118.257635,34.030482],[-118.257913,34.0306],[-118.25856,34.030869],[-118.258691,34.03091],[-118.25987,34.031286],[-118.261317,34.031729],[-118.261687,34.031854],[-118.262152,34.03203],[-118.262286,34.032087],[-118.262557,34.032201],[-118.262833,34.032332],[-118.262968,34.0324],[-118.263372,34.032617],[-118.263512,34.032692],[-118.264367,34.033173],[-118.26415,34.033442],[-118.263562,34.034168],[-118.263008,34.034854],[-118.262453,34.035539],[-118.26188,34.036247],[-118.26118,34.037113],[-118.260254,34.038173],[-118.259039,34.039562],[-118.258968,34.039621],[-118.258441,34.040056],[-118.257402,34.040901],[-118.256061,34.042328]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000159,"geom:area_square_m":1625144.459304,"geom:bbox":"-118.264367,34.027549,-118.24524,34.044595","geom:latitude":34.035921,"geom:longitude":-118.254372,"iso:country":"US","lbl:latitude":34.035442,"lbl:longitude":-118.255863,"lbl:max_zoom":18,"mps:latitude":34.035575,"mps:longitude":-118.255315,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Fashion District"],"name:fra_x_preferred":["Fashion District"],"name:ita_x_preferred":["Fashion District"],"name:nld_x_preferred":["Fashion District"],"name:pol_x_preferred":["Fashion District"],"reversegeo:latitude":34.035575,"reversegeo:longitude":-118.255315,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2491300"},"wof:country":"US","wof:geomhash":"c5d60204016035d0256eca8c21bbf6b3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092456417,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1092456417,"wof:lastmodified":1566625490,"wof:name":"Fashion District","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869233],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456419.geojson b/fixtures/microhoods/1092456419.geojson new file mode 100644 index 0000000..0ebdf4f --- /dev/null +++ b/fixtures/microhoods/1092456419.geojson @@ -0,0 +1 @@ +{"id":1092456419,"type":"Feature","bbox":[-118.286809,34.06191,-118.259647,34.07826621553952],"geometry":{"type":"Polygon","coordinates":[[[-118.259647,34.062004],[-118.259789,34.061939],[-118.259927,34.06191],[-118.260568,34.062194],[-118.260642,34.062323],[-118.263063,34.063415],[-118.263752,34.063725],[-118.265606,34.064561],[-118.265795,34.064646],[-118.266594,34.065005],[-118.267001,34.065189],[-118.26781,34.065553],[-118.267932,34.065608],[-118.26836,34.065801],[-118.26886,34.066026],[-118.269382,34.066264],[-118.269735,34.066423],[-118.270302,34.066679],[-118.271327,34.067123],[-118.272199,34.067501],[-118.272785,34.067755],[-118.273528,34.068076],[-118.273913,34.068243],[-118.2746,34.068541],[-118.274979,34.068705],[-118.27541711752669,34.06889456523594],[-118.275848,34.069081],[-118.27679,34.06949],[-118.277646,34.069861],[-118.278572,34.070262],[-118.279463,34.070648],[-118.280081,34.070915],[-118.281268,34.07143],[-118.282191,34.071829],[-118.283114,34.072229],[-118.283712,34.072488],[-118.284036,34.072629],[-118.284287,34.072738],[-118.28436,34.072782],[-118.285577,34.073534],[-118.286017,34.073806],[-118.286159,34.073902],[-118.286228,34.073957],[-118.286354,34.074075],[-118.286412,34.074138],[-118.286515,34.074271],[-118.28656,34.074341],[-118.286613,34.074436],[-118.286795,34.074798],[-118.28679986409507,34.07528635514282],[-118.286805,34.075802],[-118.286809,34.076331],[-118.286807,34.076474],[-118.286784,34.077734],[-118.286786,34.078033],[-118.286787,34.078114],[-118.286788,34.078248],[-118.28678814809383,34.07826621553952],[-118.28442210225803,34.07782035103376],[-118.28427235669342,34.07778861414175],[-118.28413753663727,34.07776171954578],[-118.28389958639326,34.07770732169115],[-118.28334933863732,34.0775849587569],[-118.28225048165255,34.07733541383586],[-118.28208191817937,34.07729218551884],[-118.28154323263948,34.07716978701404],[-118.28112189941501,34.07708249312061],[-118.28001970249402,34.07681782289667],[-118.2798478502886,34.07677803263212],[-118.278874371168,34.07648969644585],[-118.27848602587741,34.07639029514276],[-118.27770589564703,34.07614993446438],[-118.27660687516887,34.07584022863976],[-118.27566156452066,34.07557515943078],[-118.27523514144183,34.07544251550828],[-118.2745757564637,34.07526196997011],[-118.2742634041546,34.07517234291595],[-118.27426017201617,34.07517127888524],[-118.27426023209101,34.07517118509791],[-118.272704495431,34.07457338636389],[-118.2722210023172,34.07436698539361],[-118.27172759653348,34.07413854160963],[-118.27092843998841,34.07374496725996],[-118.2700982076395,34.07336220211],[-118.26835474249167,34.07263484863596],[-118.26416254401397,34.07077333848061],[-118.26353229596822,34.07052264604857],[-118.26275376016466,34.07023309419511],[-118.2616707405055,34.06986281605946],[-118.2612365503197,34.06970965240051],[-118.261214,34.069617],[-118.261088,34.06909],[-118.26086,34.068138],[-118.26065,34.067264],[-118.260255,34.065619],[-118.259879,34.064355],[-118.259768,34.062962],[-118.259724,34.062614],[-118.259647,34.062004]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000167,"geom:area_square_m":1713254.645682,"geom:bbox":"-118.286809,34.06191,-118.259647,34.0782662155","geom:latitude":34.070859,"geom:longitude":-118.272694,"iso:country":"US","lbl:latitude":34.069991,"lbl:longitude":-118.267585,"lbl:max_zoom":18,"mps:latitude":34.071138,"mps:longitude":-118.272684,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Historic Filipinotown"],"name:fra_x_preferred":["Historic Filipinotown"],"name:ita_x_preferred":["Historic Filipinotown"],"name:nld_x_preferred":["Historic Filipinotown"],"name:tgl_x_preferred":["Historic Filipinotown"],"name:zho_x_preferred":["旧菲律宾城"],"reversegeo:latitude":34.071138,"reversegeo:longitude":-118.272684,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865821,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3138354"},"wof:country":"US","wof:geomhash":"f40a4708880fd3a8f4f506d568b450b7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092456419,"neighbourhood_id":85865821,"region_id":85688637}],"wof:id":1092456419,"wof:lastmodified":1566625490,"wof:name":"Filipinotown","wof:parent_id":85865821,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869343],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456421.geojson b/fixtures/microhoods/1092456421.geojson new file mode 100644 index 0000000..2f6859e --- /dev/null +++ b/fixtures/microhoods/1092456421.geojson @@ -0,0 +1 @@ +{"id":1092456421,"type":"Feature","bbox":[-118.264295,34.045163,-118.248017,34.056183],"geometry":{"type":"Polygon","coordinates":[[[-118.250701,34.048079],[-118.25285889877533,34.04951503297377],[-118.256865,34.045163],[-118.257926,34.045849],[-118.259025,34.04656],[-118.260101,34.047256],[-118.261181,34.047954],[-118.262697,34.04873],[-118.263171,34.04898],[-118.263424,34.049112],[-118.263691,34.049231],[-118.263826,34.049281],[-118.263901,34.049309],[-118.264068,34.049359],[-118.264295,34.049419],[-118.264046,34.049576],[-118.263708,34.049781],[-118.262916,34.050249],[-118.262787,34.050327],[-118.261169,34.051308],[-118.260389,34.051781],[-118.260107,34.051958],[-118.259821,34.052152],[-118.259694,34.052247],[-118.259421,34.052467],[-118.259363,34.052517],[-118.259205,34.052653],[-118.259005,34.052839],[-118.258932,34.052907],[-118.258691,34.053151],[-118.258502,34.053354],[-118.25832,34.053559],[-118.257178,34.054927],[-118.257153,34.054957],[-118.257135,34.054978],[-118.257081,34.055043],[-118.256914,34.055233],[-118.256482,34.055718],[-118.256127,34.056099],[-118.256045,34.056183],[-118.255897,34.056087],[-118.255412,34.055771],[-118.255086,34.055546],[-118.25447,34.055121],[-118.253401,34.054434],[-118.252275,34.053711],[-118.251226,34.053036],[-118.251204,34.053022],[-118.250157,34.052347],[-118.24979,34.05211],[-118.249089,34.051658],[-118.248017,34.050963],[-118.249359,34.049521],[-118.250701,34.048079]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000081,"geom:area_square_m":826805.118226,"geom:bbox":"-118.264295,34.045163,-118.248017,34.056183","geom:latitude":34.050577,"geom:longitude":-118.25596,"iso:country":"US","lbl:latitude":34.05008,"lbl:longitude":-118.257026,"lbl:max_zoom":18,"mps:latitude":34.051118,"mps:longitude":-118.25596,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ces_x_preferred":["Financial District"],"name:eng_x_preferred":["Financial District"],"name:eng_x_variant":["Financial Core"],"name:fas_x_preferred":["منطقه اقتصادی"],"name:fra_x_preferred":["Financial District"],"name:ind_x_preferred":["Financial District"],"name:ita_x_preferred":["Financial District"],"name:nld_x_preferred":["Financial District"],"name:pol_x_preferred":["Financial District"],"name:sco_x_preferred":["Financial District"],"reversegeo:latitude":34.051118,"reversegeo:longitude":-118.25596,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3488365"},"wof:country":"US","wof:geomhash":"364a797a4b71a22be527fb30855bf9b2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092456421,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1092456421,"wof:lastmodified":1566625489,"wof:name":"Financial District","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869239],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456425.geojson b/fixtures/microhoods/1092456425.geojson new file mode 100644 index 0000000..cb7caa2 --- /dev/null +++ b/fixtures/microhoods/1092456425.geojson @@ -0,0 +1 @@ +{"id":1092456425,"type":"Feature","bbox":[-118.283049,34.09578094475829,-118.27304463645243,34.107188],"geometry":{"type":"Polygon","coordinates":[[[-118.27717489249943,34.09578094475829],[-118.27873394472616,34.09578903686229],[-118.27962742797236,34.09579384168811],[-118.28058036621566,34.0957988458779],[-118.28302601122726,34.09581131722597],[-118.283031,34.098174],[-118.283033,34.099122],[-118.283036,34.099999],[-118.283038,34.100897],[-118.28304,34.101804],[-118.283042,34.102711],[-118.283045,34.103617],[-118.283046,34.104197],[-118.283047,34.104521],[-118.283049,34.105431],[-118.282107,34.105433],[-118.280899,34.105436],[-118.279083,34.10544],[-118.278578,34.105442],[-118.278578,34.105925],[-118.278254,34.106185],[-118.277598,34.106712],[-118.277006,34.107188],[-118.274774,34.105269],[-118.274492,34.105026],[-118.273906,34.104522],[-118.2733723648408,34.10406278001896],[-118.27337375132475,34.10405762091064],[-118.27337686129226,34.10399853451963],[-118.27337511766228,34.10397037259046],[-118.27337007182535,34.103942562481],[-118.27328814187818,34.10363704564557],[-118.27325803394311,34.10352135959673],[-118.27309251126718,34.10290655277576],[-118.27307069298554,34.10280012200698],[-118.27305377591212,34.10267753648171],[-118.27304511615279,34.1025545885303],[-118.27304463645243,34.10240757798532],[-118.27304615460527,34.10236669960928],[-118.27304767455472,34.10232650852056],[-118.27305087165881,34.10229387035521],[-118.27305569291693,34.1022529852297],[-118.27308628055236,34.10201007220709],[-118.27328454951535,34.1005164965308],[-118.2733120586243,34.10034263147041],[-118.27336905313581,34.10009450669896],[-118.2734131514331,34.09994327345149],[-118.27345567049214,34.09981402772065],[-118.27350153038572,34.09969645149907],[-118.2735769322757,34.09952179105161],[-118.27366061303938,34.09935363683046],[-118.27369344736132,34.09929345292866],[-118.2737558524258,34.09918511406141],[-118.27383964907214,34.09905268267557],[-118.27393992171909,34.09890819148156],[-118.2739892509063,34.098841787027],[-118.27401885039488,34.09880256278258],[-118.27405338882095,34.09875851898535],[-118.27412742078013,34.09867007575171],[-118.27422449811962,34.09855891011699],[-118.27439897879559,34.0983805882082],[-118.27448953167115,34.09829451158749],[-118.27460315867314,34.09819395609495],[-118.2750314340781,34.09785052759162],[-118.27516156672512,34.09774684281631],[-118.27530322924878,34.09763454452731],[-118.27544158687051,34.09752156543821],[-118.27553209483034,34.09742243579284],[-118.27556333284602,34.0973794289931],[-118.27560932479194,34.09730341460342],[-118.27590663032008,34.09681120962382],[-118.27606923886121,34.09654085898062],[-118.27614808489204,34.09641152845728],[-118.27621216711113,34.09631245925477],[-118.27630757807576,34.09619820336876],[-118.27639812735809,34.09611212527236],[-118.27648213780347,34.09604667080825],[-118.27659255602325,34.09597634750337],[-118.27663047121644,34.0959553079292],[-118.27668982739884,34.09592563247243],[-118.27679207723774,34.09588177612738],[-118.27683331440087,34.0958665686713],[-118.27689930643828,34.09584580803078],[-118.2769867592278,34.09582259401625],[-118.27717489249943,34.09578094475829]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00009,"geom:area_square_m":918603.618084,"geom:bbox":"-118.283049,34.0957809448,-118.273044636,34.107188","geom:latitude":34.101052,"geom:longitude":-118.27844,"iso:country":"US","lbl:latitude":34.106054,"lbl:longitude":-118.282113,"lbl:max_zoom":18,"mps:latitude":34.100912,"mps:longitude":-118.27844,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Franklin Hills"],"name:eng_x_variant":["Franklin Hls"],"name:ita_x_preferred":["Franklin Hills"],"reversegeo:latitude":34.100912,"reversegeo:longitude":-118.27844,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85868353,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5491571"},"wof:country":"US","wof:geomhash":"197a317ab69436b576c67cf1e1321da0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092456425,"neighbourhood_id":85868353,"region_id":85688637}],"wof:id":1092456425,"wof:lastmodified":1566625489,"wof:name":"Franklin Hills","wof:parent_id":85868353,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869263],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456427.geojson b/fixtures/microhoods/1092456427.geojson new file mode 100644 index 0000000..17a5147 --- /dev/null +++ b/fixtures/microhoods/1092456427.geojson @@ -0,0 +1 @@ +{"id":1092456427,"type":"Feature","bbox":[-118.256061,34.040736,-118.24335074380521,34.052395],"geometry":{"type":"Polygon","coordinates":[[[-118.24473802924872,34.04852166383318],[-118.2455327695307,34.04900470155165],[-118.24569502429792,34.04930855928007],[-118.24587572837808,34.04954925290659],[-118.24698537930271,34.05027532079555],[-118.25099930178318,34.04596001164419],[-118.248997,34.044595],[-118.250412,34.04326],[-118.251764,34.042264],[-118.252305,34.041914],[-118.252996,34.041464],[-118.254093,34.040736],[-118.25451691262943,34.04112192045982],[-118.254517,34.041122],[-118.254943,34.041599],[-118.25524521184718,34.041796018625],[-118.25546127512143,34.04193687507918],[-118.256061,34.042328],[-118.254706,34.043774],[-118.253367,34.045213],[-118.252032,34.046648],[-118.250701,34.048079],[-118.249359,34.049521],[-118.248017,34.050963],[-118.246677,34.052395],[-118.245606,34.051703],[-118.245067,34.051354],[-118.244519,34.051003],[-118.24335074380521,34.05027965222884],[-118.24346845013915,34.05012486353328],[-118.24367563038976,34.04985137697581],[-118.24442870785538,34.04885959097827],[-118.24447145778143,34.0488031731208],[-118.24447967556964,34.0487911346665],[-118.24451588126887,34.04875430847793],[-118.2446096761643,34.04865588243341],[-118.24473802924872,34.04852166383318]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000035,"geom:area_square_m":354634.791198,"geom:bbox":"-118.256061,34.040736,-118.243350744,34.052395","geom:latitude":34.04629,"geom:longitude":-118.250289,"iso:country":"US","lbl:latitude":34.045851,"lbl:longitude":-118.250418,"lbl:max_zoom":18,"mps:latitude":34.044296,"mps:longitude":-118.251782,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Gallery Row"],"name:ind_x_preferred":["Gallery Row"],"name:ita_x_preferred":["Gallery Row"],"name:pol_x_preferred":["Gallery Row"],"reversegeo:latitude":34.044296,"reversegeo:longitude":-118.251782,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4146165"},"wof:country":"US","wof:geomhash":"a18985b64b982f0a06032070daf162c0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092456427,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1092456427,"wof:lastmodified":1566625489,"wof:name":"Gallery Row","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869267],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092456431.geojson b/fixtures/microhoods/1092456431.geojson new file mode 100644 index 0000000..3362ad6 --- /dev/null +++ b/fixtures/microhoods/1092456431.geojson @@ -0,0 +1 @@ +{"id":1092456431,"type":"Feature","bbox":[-118.413214,34.257346,-118.401912,34.26762997650321],"geometry":{"type":"Polygon","coordinates":[[[-118.401912,34.264658],[-118.402189,34.263209],[-118.402788,34.260073],[-118.402821,34.259922],[-118.402887,34.259698],[-118.402927,34.259588],[-118.402995,34.259425],[-118.403047,34.259318],[-118.403132,34.25916],[-118.403194,34.259058],[-118.403271,34.258942],[-118.403382,34.258794],[-118.403407,34.258761],[-118.403568,34.258574],[-118.4037,34.25844],[-118.40384,34.258312],[-118.404008,34.258172],[-118.405141,34.257346],[-118.405495,34.257656],[-118.40625,34.258418],[-118.4066,34.258794],[-118.40702,34.259245],[-118.407184,34.259411],[-118.407339,34.259571],[-118.407466,34.259748],[-118.40756,34.259943],[-118.407621,34.260054],[-118.407669,34.26014],[-118.407826,34.26032],[-118.408346,34.260812],[-118.40848994532122,34.26094783572565],[-118.408843,34.261281],[-118.409004,34.261428],[-118.409192,34.261554],[-118.409415,34.261639],[-118.409666,34.261671],[-118.409797,34.261669],[-118.410063,34.261638],[-118.410326,34.261597],[-118.410716,34.261535],[-118.411214,34.261447],[-118.411675,34.261372],[-118.411999,34.261337],[-118.412311,34.261381],[-118.412508,34.261445],[-118.412712,34.261531],[-118.412873,34.261632],[-118.413014,34.261761],[-118.413127,34.261906],[-118.413186,34.262062],[-118.413214,34.26224],[-118.413207,34.262322],[-118.4132,34.262414],[-118.413144,34.262586],[-118.412918,34.262963],[-118.41268,34.263684],[-118.412654,34.263751],[-118.412605,34.263843],[-118.412543,34.26393],[-118.412458,34.26402],[-118.412189,34.264253],[-118.412116,34.264333],[-118.411937,34.264595],[-118.411892,34.264771],[-118.411748,34.265089],[-118.411669,34.265225],[-118.411582,34.265341],[-118.411157,34.265817],[-118.411084,34.265915],[-118.411006,34.266054],[-118.410991,34.266207],[-118.410834,34.266383],[-118.410749,34.266476],[-118.410658,34.266563],[-118.410465,34.266725],[-118.410361,34.266804],[-118.409733,34.267257],[-118.40944871830386,34.26746128169612],[-118.4094,34.267416],[-118.40929,34.267315],[-118.409199,34.267248],[-118.408935,34.267102],[-118.408737,34.266993],[-118.408632,34.266918],[-118.40813,34.266447],[-118.407459,34.265813],[-118.40684694114556,34.26625950758181],[-118.405677,34.267113],[-118.40496916655829,34.26762997650321],[-118.402039,34.264858],[-118.401912,34.264658]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000067,"geom:area_square_m":687022.225473,"geom:bbox":"-118.413214,34.257346,-118.401912,34.2676299765","geom:latitude":34.263045,"geom:longitude":-118.406865,"iso:country":"US","lbl:latitude":34.263012,"lbl:longitude":-118.405837,"lbl:max_zoom":18,"mps:latitude":34.263012,"mps:longitude":-118.405837,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":34.263012,"reversegeo:longitude":-118.405837,"src:geom":"mz","wof:belongsto":[85840179,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"6152019053f0c606e51a284ab271c0b7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1092456431,"neighbourhood_id":85840179,"region_id":85688637}],"wof:id":1092456431,"wof:lastmodified":1566625489,"wof:name":"Hansen Hills","wof:parent_id":85840179,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551231],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092582151.geojson b/fixtures/microhoods/1092582151.geojson new file mode 100644 index 0000000..e1397f3 --- /dev/null +++ b/fixtures/microhoods/1092582151.geojson @@ -0,0 +1 @@ +{"id":1092582151,"type":"Feature","bbox":[-118.38834,34.02890941708048,-118.38337033879827,34.03200289069749],"geometry":{"type":"Polygon","coordinates":[[[-118.38390558676679,34.03200289069749],[-118.38337033879827,34.03044302518928],[-118.38421863852348,34.03021889699324],[-118.38541340952943,34.02950441817448],[-118.38622801350719,34.02901715792974],[-118.3864073873065,34.02890941708048],[-118.38667446632194,34.029211859269],[-118.3868110740255,34.02913413691478],[-118.3869021398391,34.02920013890515],[-118.38718362064516,34.02940463940517],[-118.38776990445696,34.02907123787238],[-118.387812,34.029102],[-118.388058,34.02928],[-118.38834,34.029485],[-118.387602,34.029904],[-118.386811,34.030353],[-118.38602,34.030802],[-118.385229,34.031251],[-118.384411,34.031716],[-118.38390558676679,34.03200289069749]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":62714.338324,"geom:bbox":"-118.38834,34.0289094171,-118.383370339,34.0320028907","geom:latitude":34.030302,"geom:longitude":-118.385552,"iso:country":"US","lbl:latitude":34.030643,"lbl:longitude":-118.379493,"lbl:max_zoom":18,"mps:latitude":34.030266,"mps:longitude":-118.385516,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:note":"no ref","mz:tier_metro":1,"name:eng_x_variant":["Helms Bakery District"],"reversegeo:latitude":34.030266,"reversegeo:longitude":-118.385516,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865813,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"037600b32de7516cb08d30e2fcb29c8c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1092582151,"neighbourhood_id":85865813,"region_id":85688637}],"wof:id":1092582151,"wof:lastmodified":1566625490,"wof:name":"Helms District","wof:parent_id":85865813,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85886315],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1092611477.geojson b/fixtures/microhoods/1092611477.geojson new file mode 100644 index 0000000..a422a59 --- /dev/null +++ b/fixtures/microhoods/1092611477.geojson @@ -0,0 +1 @@ +{"id":1092611477,"type":"Feature","bbox":[-118.1969002096533,34.099173,-118.17619888802889,34.1128417794489],"geometry":{"type":"Polygon","coordinates":[[[-118.180786,34.103115],[-118.181614,34.102253],[-118.181823,34.102091],[-118.181865,34.102066],[-118.181903,34.102052],[-118.181984,34.102031],[-118.182105,34.101978],[-118.182277,34.101905],[-118.18235,34.101866],[-118.182439,34.101804],[-118.182517,34.101734],[-118.182585,34.101651],[-118.18263,34.101576],[-118.182668,34.101485],[-118.182732,34.101239],[-118.182837,34.100825],[-118.182864,34.100755],[-118.182904,34.100683],[-118.182969,34.100605],[-118.18305,34.100536],[-118.183473,34.100274],[-118.183622,34.100182],[-118.183707,34.100115],[-118.183776,34.100037],[-118.183819,34.099968],[-118.184027,34.09947],[-118.184052,34.099365],[-118.184054,34.099267],[-118.184036,34.099173],[-118.184349,34.099263],[-118.184537,34.099317],[-118.185017,34.099456],[-118.185548,34.099609],[-118.186657,34.099929],[-118.186781,34.099965],[-118.187916,34.100291],[-118.189153,34.100647],[-118.18968,34.100799],[-118.189874,34.100855],[-118.19168150222487,34.10138473556729],[-118.1969002096533,34.10291421359621],[-118.19685080696617,34.10292050560724],[-118.19668402305555,34.10293417280442],[-118.19651722207698,34.10294097069812],[-118.1963223460508,34.10294884417432],[-118.19598205703467,34.10292775724053],[-118.19548980002192,34.10289970206709],[-118.19497608046038,34.1028744273358],[-118.19446399403603,34.10284193442943],[-118.19432688686918,34.10283322412968],[-118.19423108334075,34.10282960016865],[-118.19409894655233,34.10282740808867],[-118.1939354378993,34.10282904452438],[-118.19382148480884,34.10283403639679],[-118.1936926780752,34.10284317291351],[-118.1935473701881,34.10285886260817],[-118.19332116541644,34.10288979494458],[-118.19321054866899,34.1029085202159],[-118.19311479903945,34.10292825114598],[-118.19289690637908,34.10298218277777],[-118.19275825321161,34.10301950012934],[-118.19267409723916,34.10305329616188],[-118.19265429567534,34.10306122764653],[-118.192457886225,34.10312062040698],[-118.19234073243723,34.10316992528503],[-118.19209990578766,34.10330701478684],[-118.19197950099687,34.10337899371552],[-118.19179808353029,34.10349434895531],[-118.19165791759988,34.10359280873779],[-118.19153586260393,34.10366616424724],[-118.19131485997605,34.10380596865305],[-118.19115491134643,34.10392094470394],[-118.19103620347322,34.10401387291512],[-118.19087792211678,34.10413606079062],[-118.19072952672005,34.10424758357166],[-118.1906124394076,34.104327456619],[-118.19042771793741,34.10444418812071],[-118.19033866345174,34.10450375247658],[-118.19009955258434,34.10467209208797],[-118.18971369203383,34.1049509208008],[-118.18865177646849,34.10573606970672],[-118.18815703741059,34.10607895075062],[-118.18759139522564,34.10647758510078],[-118.1873061145459,34.10668583461582],[-118.18718903082673,34.10676982675586],[-118.18705712131208,34.10687204560515],[-118.1868609499153,34.10704340404068],[-118.18666807174233,34.10721132281719],[-118.18635986066668,34.10750856766642],[-118.18600214792727,34.10782958971077],[-118.185707072916,34.10809418307166],[-118.1855405944326,34.10825106717483],[-118.18540545816946,34.10838969849283],[-118.18526544764761,34.10856474748568],[-118.1851106948736,34.10879649165629],[-118.1850104608542,34.10903330628318],[-118.18495795971572,34.10919379373897],[-118.1849138012313,34.10939239424756],[-118.18487145554714,34.10966381205643],[-118.18485845063677,34.10975863281357],[-118.18483726656572,34.10988953237963],[-118.18482098280458,34.10999535103192],[-118.18478987234967,34.11011905276678],[-118.18475543453494,34.1102321117265],[-118.18472422616362,34.1103115038559],[-118.18465030020565,34.11049503748514],[-118.18455980033067,34.11065317856247],[-118.18442640140928,34.11083302461228],[-118.1842665893236,34.1110201234507],[-118.18406540892079,34.11117499769183],[-118.18383607801191,34.11129762743108],[-118.18358523963849,34.11140586228247],[-118.18333431502683,34.11147459674095],[-118.18310974698556,34.11151065934569],[-118.18298092947215,34.11152184620997],[-118.18283886540152,34.11151828286552],[-118.18264392918826,34.11150792975357],[-118.18245391574271,34.11148314252425],[-118.18229029120698,34.11143976652889],[-118.18203740916628,34.11136870333184],[-118.1818324585342,34.11131096304568],[-118.18161592861813,34.11124533886029],[-118.18130359247867,34.11117917242225],[-118.18112846232079,34.11116123067435],[-118.18096159846013,34.11114671022452],[-118.18075841301757,34.11114117515304],[-118.18063123582787,34.11114651759035],[-118.18050407660446,34.11116044749387],[-118.18036867084675,34.11117988420152],[-118.18020521249932,34.11121344640862],[-118.17993780919207,34.11130143399438],[-118.179724912063,34.11138865169791],[-118.17937996079053,34.11151762687094],[-118.17926443564835,34.11156554272274],[-118.17896244630434,34.11170235309987],[-118.17848889760569,34.11194761459041],[-118.17838663339373,34.11201749250168],[-118.17824972385623,34.11210734383939],[-118.17802870775364,34.11226223765876],[-118.17780113844101,34.11244221490622],[-118.17727009486923,34.1128417794489],[-118.17682706553403,34.11268339628273],[-118.17619888802889,34.11245623979638],[-118.17700444597172,34.11220260215874],[-118.17689843219179,34.11206192879283],[-118.17702997788872,34.1109986532595],[-118.17745923066073,34.11089635311971],[-118.17724853350579,34.11046318491399],[-118.17733934779112,34.11044690830947],[-118.17742355766246,34.1104320151095],[-118.1780064196531,34.11032776858616],[-118.17800686072592,34.10510406488356],[-118.17800618070126,34.10478462575387],[-118.178006135016,34.10404587033472],[-118.178251,34.104087],[-118.178371,34.104107],[-118.17841,34.104114],[-118.178545,34.104147],[-118.179096,34.10428],[-118.181001,34.104741],[-118.181324,34.103816],[-118.181418,34.103512],[-118.180786,34.103115]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000106,"geom:area_square_m":1088866.198621,"geom:bbox":"-118.19690021,34.099173,-118.176198888,34.1128417794","geom:latitude":34.105443,"geom:longitude":-118.184253,"iso:country":"US","lbl:latitude":34.102889,"lbl:longitude":-118.184642,"lbl:max_zoom":18,"mps:latitude":34.105147,"mps:longitude":-118.184254,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Hermon"],"name:ita_x_preferred":["Hermon"],"reversegeo:latitude":34.105147,"reversegeo:longitude":-118.184254,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869501,102191575,1108692433,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4842231"},"wof:country":"US","wof:geomhash":"3a2b366319f1ed532896f3da399cb5be","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692433,"microhood_id":1092611477,"neighbourhood_id":85869501,"region_id":85688637}],"wof:id":1092611477,"wof:lastmodified":1566625490,"wof:name":"Hermon","wof:parent_id":85869501,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869327],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108439241.geojson b/fixtures/microhoods/1108439241.geojson new file mode 100644 index 0000000..aa6acc0 --- /dev/null +++ b/fixtures/microhoods/1108439241.geojson @@ -0,0 +1 @@ +{"id":1108439241,"type":"Feature","bbox":[-118.346183,34.104116,-118.33646511668448,34.113594],"geometry":{"type":"Polygon","coordinates":[[[-118.337471,34.105173],[-118.337474,34.10505],[-118.33748,34.104998],[-118.337511,34.10487],[-118.337555,34.104762],[-118.337613,34.104661],[-118.337685,34.104567],[-118.337763,34.104488],[-118.337876,34.104397],[-118.338003,34.104321],[-118.33814,34.104261],[-118.338261,34.104204],[-118.338368,34.104136],[-118.339346,34.104128],[-118.339396,34.104128],[-118.340165,34.104126],[-118.341751,34.104122],[-118.342323,34.10412],[-118.342809,34.104119],[-118.343336,34.104117],[-118.34386,34.104116],[-118.344158,34.105759],[-118.344276,34.106394],[-118.34431,34.106463],[-118.344357,34.106519],[-118.34439,34.106547],[-118.344444,34.106581],[-118.344962,34.106882],[-118.345082,34.106966],[-118.345213,34.107078],[-118.345329,34.107201],[-118.345406,34.107301],[-118.345429,34.107332],[-118.345506,34.107462],[-118.345557,34.107578],[-118.345593,34.107698],[-118.345616,34.107841],[-118.345617,34.107984],[-118.345595,34.108382],[-118.345598,34.108412],[-118.345616,34.108496],[-118.345692,34.108727],[-118.345717,34.108851],[-118.345726,34.108961],[-118.345739,34.109144],[-118.34576,34.109245],[-118.345802,34.109356],[-118.34587,34.10949],[-118.345908,34.109602],[-118.345926,34.109717],[-118.345936,34.11024],[-118.345955,34.110469],[-118.345984,34.110658],[-118.346021,34.110798],[-118.346084,34.110961],[-118.346159,34.111125],[-118.346181,34.11122],[-118.346183,34.111308],[-118.346169,34.111395],[-118.346132,34.111495],[-118.34608,34.111578],[-118.346009,34.111655],[-118.345932,34.111715],[-118.345834,34.111769],[-118.34553,34.111884],[-118.345405,34.111947],[-118.345304,34.112011],[-118.345197,34.112097],[-118.345116,34.112178],[-118.344906,34.112444],[-118.344785,34.112579],[-118.34461,34.11275],[-118.344532,34.112819],[-118.344372,34.112949],[-118.344131,34.113132],[-118.34405,34.113211],[-118.343984,34.113298],[-118.343933,34.113392],[-118.343898,34.113491],[-118.343881,34.113594],[-118.3438178722766,34.11331641667453],[-118.34371338094151,34.11306620273398],[-118.34358689622248,34.11287499178614],[-118.34342870593369,34.11267983409234],[-118.34311820454698,34.11243743952554],[-118.34291184238386,34.11230692187588],[-118.3426189640309,34.11218682148305],[-118.34047451417574,34.11157742361547],[-118.33989697959787,34.11135564364449],[-118.33953737483235,34.11111867584482],[-118.33927640416302,34.11088076580986],[-118.33881190678646,34.11044000646071],[-118.33850162089621,34.11024395219815],[-118.33831567614142,34.11015778523375],[-118.33817514093893,34.11011855799481],[-118.33697252223318,34.10983481691918],[-118.33680620761908,34.10979115803368],[-118.33667021351809,34.10972589436339],[-118.33655992063771,34.10963313789427],[-118.33650885564245,34.10956584773307],[-118.33647535036685,34.1094577821414],[-118.33646511668448,34.1093472490216],[-118.33647288958728,34.10925286424872],[-118.336504,34.10914],[-118.336612,34.108935],[-118.336938,34.108437],[-118.336981,34.10837],[-118.337071,34.108233],[-118.337141,34.108119],[-118.337253,34.107906],[-118.337348,34.107687],[-118.337424,34.107461],[-118.337461,34.10729],[-118.33748,34.107117],[-118.337471,34.105173]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00006,"geom:area_square_m":611063.9548,"geom:bbox":"-118.346183,34.104116,-118.336465117,34.113594","geom:latitude":34.108235,"geom:longitude":-118.341558,"iso:country":"US","lbl:latitude":34.106438,"lbl:longitude":-118.340053,"lbl:max_zoom":18,"mps:latitude":34.107949,"mps:longitude":-118.341165,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Hollywood Heights"],"name:eng_x_variant":["Hollywood Hts"],"name:ita_x_preferred":["Hollywood Heights"],"reversegeo:latitude":34.107949,"reversegeo:longitude":-118.341165,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869347,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5882751"},"wof:country":"US","wof:geomhash":"5bb3bfc5a42b52afb5dab7af373df88f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108439241,"neighbourhood_id":85869347,"region_id":85688637}],"wof:id":1108439241,"wof:lastmodified":1566623953,"wof:name":"Hollywood Heights","wof:parent_id":85869347,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869345],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108546309.geojson b/fixtures/microhoods/1108546309.geojson new file mode 100644 index 0000000..8499adf --- /dev/null +++ b/fixtures/microhoods/1108546309.geojson @@ -0,0 +1 @@ +{"id":1108546309,"type":"Feature","bbox":[-118.43531593387999,34.066901,-118.4163272840249,34.08275673567253],"geometry":{"type":"Polygon","coordinates":[[[-118.43475390112584,34.08241531587298],[-118.43474364955182,34.08242690165496],[-118.4347331554327,34.08243833714452],[-118.43472242505659,34.08244961787783],[-118.4347114575253,34.08246074236676],[-118.43470025912696,34.08247170465933],[-118.43468883345486,34.08248250326756],[-118.43467718320395,34.0824931337275],[-118.43466531017083,34.0825035938071],[-118.43465503524062,34.08251233595954],[-118.43465322064374,34.08251388053043],[-118.43464091641928,34.08252399017739],[-118.43462840198907,34.08253391828411],[-118.43462359779893,34.0825375996591],[-118.43461568274297,34.08254366410652],[-118.43460275957929,34.08255322318067],[-118.43458963878625,34.08256259327452],[-118.43457632216048,34.08257177215617],[-118.43456281509185,34.08258075461757],[-118.43454912297031,34.08258954065879],[-118.43453524849073,34.08259812730384],[-118.43452119524645,34.08260651008868],[-118.43450696862729,34.08261468752541],[-118.43449257312484,34.08262265738195],[-118.43447801233239,34.08263041742646],[-118.43446329074153,34.08263796468281],[-118.43444841194548,34.0826452961751],[-118.43443338313077,34.08265241115932],[-118.4344182078907,34.08265930740354],[-118.43440288892016,34.08266598193176],[-118.43438743250738,34.082672431768],[-118.43437184404223,34.08267865691224],[-118.43435612711802,34.08268465587655],[-118.43434028712464,34.0826904249409],[-118.43432432765529,34.08269596261738],[-118.4343082540999,34.08270126741795],[-118.4342920727467,34.08270633859869],[-118.43427578718891,34.08271117392753],[-118.43425940281645,34.08271577191655],[-118.43424292412087,34.08272013182174],[-118.43422635649209,34.08272425141117],[-118.43420970531997,34.08272812994084],[-118.43419297509614,34.08273176592273],[-118.43417617121041,34.08273515861287],[-118.43415929905277,34.08273830652322],[-118.43414236311472,34.08274120965394],[-118.43412536878617,34.08274386502887],[-118.434108321457,34.08274627413613],[-118.43409122561886,34.08274843474375],[-118.43407408755986,34.0827503475956],[-118.43405691177162,34.08275201120384],[-118.43403970454236,34.08275342408042],[-118.43402246856701,34.08275458771335],[-118.4340052128287,34.08275550135862],[-118.43398793912411,34.08275616352819],[-118.43397065553803,34.08275657571022],[-118.43395336476547,34.08275673567253],[-118.43393607399285,34.08275664490316],[-118.43391878681354,34.08275630265823],[-118.43390151041399,34.08275571042564],[-118.43388424838749,34.08275486746139],[-118.43386700702227,34.08275377227751],[-118.43384979080983,34.08275242859393],[-118.43383260603844,34.08275083417873],[-118.43381545719969,34.08274899126386],[-118.43379835058172,34.08274689389722],[-118.43272253448566,34.0826073396622],[-118.43272063095559,34.08260709190619],[-118.43267872454757,34.08260165615358],[-118.43252624990112,34.08258187733217],[-118.43251548898235,34.08258044436444],[-118.43249239239807,34.08257711788524],[-118.43246974676809,34.08257351612129],[-118.43244718108814,34.08256958550366],[-118.43242470164645,34.08256532826442],[-118.43240231383295,34.0825607451475],[-118.43238002663077,34.08255583764078],[-118.43236084310786,34.08255131404437],[-118.43235784453145,34.08255060723236],[-118.43233577651819,34.08254505541019],[-118.43231565066255,34.08253967173449],[-118.43231382798082,34.08253918440618],[-118.43229200610597,34.0825329949643],[-118.43227031628342,34.08252648931646],[-118.43224876749639,34.08251967118277],[-118.43222736513474,34.08251253981911],[-118.4322061145884,34.08250509968943],[-118.4321850230438,34.08249735153768],[-118.43216409858591,34.08248929833982],[-118.43214334480791,34.08248094232788],[-118.43212277159125,34.08247228573374],[-118.43210238163094,34.08246333302131],[-118.43208218301179,34.0824540849347],[-118.43206218112365,34.0824445451937],[-118.4320423822548,34.08243471603033],[-118.4320227926934,34.08242460042055],[-118.43200341782936,34.08241420357238],[-118.43198426484919,34.08240352548567],[-118.43196533824448,34.08239257062439],[-118.43194664430341,34.08238134419654],[-118.4319281893142,34.08236984694608],[-118.43190997776844,34.08235808408094],[-118.43189201505602,34.08234605783309],[-118.43187430746512,34.08233377266644],[-118.43185686128403,34.08232123230104],[-118.43183968010588,34.08230844045676],[-118.43182277021899,34.08229540159766],[-118.43180613611487,34.08228211869962],[-118.43178978318343,34.08226859622664],[-118.43177371681459,34.08225483864269],[-118.43175794149987,34.08224084966778],[-118.43174246083258,34.08222663376581],[-118.4317272811009,34.08221219465684],[-118.43171147793842,34.08219662240942],[-118.43106887348983,34.08155207170612],[-118.43106448162641,34.08154763213043],[-118.43105339821244,34.08153614369501],[-118.43104281156681,34.0815247676053],[-118.43103246566969,34.08151324047766],[-118.43102236231768,34.08150156528816],[-118.43101250600238,34.08148974426866],[-118.43100289762212,34.0814777826274],[-118.43099354346504,34.08146568185229],[-118.43098444263292,34.08145344938355],[-118.43097560141388,34.08144108447699],[-118.43096701980798,34.0814285945729],[-118.43095870230674,34.08141598115923],[-118.43095064980855,34.08140324870006],[-118.43094286590662,34.08139040240346],[-118.43093535419419,34.08137744375745],[-118.4309281128747,34.0813643787142],[-118.43092114823631,34.08135120950566],[-118.43091446027903,34.08133794208405],[-118.43090805169777,34.08132458016934],[-118.43090192518754,34.08131112673764],[-118.4308960807483,34.08129758550903],[-118.43089052197331,34.08128396243563],[-118.43088480958643,34.08126911841692],[-118.43036766744366,34.07988364611828],[-118.43036172508809,34.079868203649],[-118.43035524015004,34.07985231029092],[-118.43034842193703,34.07983651216659],[-118.4303412740423,34.07982081597227],[-118.4303337973642,34.07980522617226],[-118.43032599549596,34.07978974723093],[-118.4303178693359,34.07977438435649],[-118.4303094233756,34.07975914052525],[-118.43030065851336,34.07974402317756],[-118.43029157654583,34.07972903454566],[-118.43028218376124,34.07971418058192],[-118.43027247926122,34.07969946426252],[-118.43026246843569,34.07968489228386],[-118.43025215308128,34.07967046762225],[-118.43024153679124,34.07965619474189],[-118.43023062315888,34.07964207810718],[-118.43021941487908,34.07962812218239],[-118.43020791554513,34.07961433143181],[-118.43019612875028,34.07960070957568],[-118.43018405808779,34.07958726033438],[-118.43017170625265,34.07957398966028],[-118.43015907953301,34.07956089904144],[-118.43014617972551,34.07954799443036],[-118.43013301132176,34.07953527880318],[-118.43012956179108,34.07953206455426],[-118.43011957791502,34.07952275662434],[-118.43010588309853,34.07951043235812],[-118.43009193316045,34.07949830749263],[-118.43007773079583,34.07948638723629],[-118.43006327959786,34.07947467530934],[-118.43004858675305,34.07946317543213],[-118.43003365315977,34.07945188983683],[-118.43001848600451,34.07944082373177],[-118.43000308798223,34.07942997860518],[-118.42998746627946,34.0794193581773],[-118.4299716235911,34.07940896765653],[-118.4299555653071,34.07939880778693],[-118.42993929591896,34.07938888303293],[-118.42992916921077,34.07938292847756],[-118.42992282081664,34.0793791963707],[-118.42990614628836,34.07936975077647],[-118.4298892759273,34.07936054699442],[-118.42987221422513,34.07935159097688],[-118.42985496746999,34.0793428842121],[-118.4298375410518,34.07933442893223],[-118.42981994036045,34.07932622736944],[-118.4298021698875,34.07931828324408],[-118.4297842341245,34.07931059804427],[-118.42976614205469,34.07930317549023],[-118.42974789637296,34.07929601558215],[-118.4297295024692,34.07928912278426],[-118.42971096752994,34.07928249709661],[-118.42969229694508,34.07927614223949],[-118.42967349520617,34.07927005895706],[-118.42965456860146,34.07926424948145],[-118.42963552341912,34.07925871604484],[-118.42961636504904,34.07925346087936],[-118.42959709888115,34.07924848324113],[-118.42957773210195,34.07924378759439],[-118.42955827010132,34.0792393724511],[-118.4295394036837,34.07923538661965],[-118.42946182427748,34.07921959210039],[-118.42944359117215,34.07921602144345],[-118.42942669296333,34.07921297012753],[-118.42940973456741,34.0792101643454],[-118.42939271957759,34.07920760632913],[-118.42937565248553,34.07920529459071],[-118.42935854137599,34.07920323136224],[-118.42934138804564,34.0792014173878],[-118.42932419968099,34.07919985192336],[-118.42930698167193,34.07919853645704],[-118.42928973761175,34.07919747173286],[-118.42927247558525,34.07919665775086],[-118.4292551982874,34.07919609451102],[-118.42923791110805,34.07919578201332],[-118.42922062033547,34.07919572025783],[-118.4292033304612,34.07919590998856],[-118.42918604867177,34.0791963512055],[-118.42916877766211,34.07919704242058],[-118.42915152372045,34.07919798437787],[-118.42913429223667,34.07919917707722],[-118.42911708949899,34.07920062051882],[-118.42909991820233,34.07920231247036],[-118.42909614078657,34.07920274029451],[-118.42908278643152,34.07920425367596],[-118.42906569598325,34.07920644413557],[-118.42904865584065,34.07920888161708],[-118.4290316678003,34.07921156612042],[-118.42901473994709,34.07921449764562],[-118.42899787587424,34.07921767470451],[-118.42898108187,34.07922109506494],[-118.42896436152763,34.07922475947104],[-118.42894771933867,34.0792286656905],[-118.428931163388,34.07923281372334],[-118.42891469547222,34.07923720133741],[-118.42889832277784,34.07924182704463],[-118.42888204979646,34.0792466893568],[-118.42886588101966,34.07925178827392],[-118.42884982183733,34.07925712007573],[-118.42883387674105,34.07926268550622],[-118.42881805112067,34.07926848158926],[-118.42880234946783,34.07927450534848],[-118.42878677627405,34.07928075678394],[-118.42877133603096,34.07928723440751],[-118.4287560341284,34.07929393375483],[-118.42874087685465,34.07930085556999],[-118.42872586510791,34.07930799613258],[-118.42871100607479,34.07931535321059],[-118.42869630334853,34.07932292457172],[-118.42868176231904,34.07933070872785],[-118.42866738657956,34.07933870344686],[-118.42865318062164,34.07934690575244],[-118.42863914803858,34.07935531192437],[-118.42862529511861,34.07936392196262],[-118.42861162455658,34.0793727306588],[-118.42859813994588,34.07938173652477],[-118.42858484667629,34.0793909373284],[-118.42857174923947,34.07940033009335],[-118.42855885033029,34.07940991109951],[-118.42854615444037,34.07941967885859],[-118.42853366516297,34.07942962816233],[-118.42852138609136,34.07943975826663],[-118.4285093217171,34.07945006396309],[-118.42849747563345,34.07946054450761],[-118.42848585053535,34.07947119543596],[-118.42847445181272,34.07948201302784],[-118.42846328036386,34.07949299430696],[-118.42845234068031,34.07950413629722],[-118.428441638152,34.07951543602235],[-118.42843117277894,34.07952688901796],[-118.42842094905271,34.07953849230798],[-118.42841097146484,34.0795502429161],[-118.42840124091369,34.079562135634],[-118.42839176189082,34.07957416822956],[-118.42838253619284,34.07958633623839],[-118.42837356741306,34.0795986374284],[-118.4283648591447,34.07961106584722],[-118.42835641138775,34.07962361926263],[-118.4283482223456,34.07963630139476],[-118.42833977279206,34.07964995077453],[-118.42826251588099,34.07977744532461],[-118.42797708338601,34.08024843578257],[-118.42797214534686,34.08025649068156],[-118.42796289269943,34.08027109381122],[-118.42795317382638,34.08028580333499],[-118.42794314952614,34.08030036925796],[-118.42793282069698,34.08031478711598],[-118.42792219003391,34.0803290539331],[-118.42791126292681,34.08034316226896],[-118.42790004117228,34.08035711137964],[-118.42788853016023,34.08037089382489],[-118.42787672989064,34.08038450886083],[-118.42786464665174,34.08039794904718],[-118.42785228224018,34.0804112121519],[-118.42783964294414,34.08042429371089],[-118.42782673056024,34.08043719000413],[-118.42781354868178,34.08044989731152],[-118.42780010449523,34.08046241042491],[-118.42778639889895,34.08047472636828],[-118.42777243638447,34.08048684142153],[-118.42775822234174,34.08049875260871],[-118.42774702304509,34.0805078149013],[-118.42774376036398,34.08051045472164],[-118.42772905584108,34.08052194552828],[-118.42771411146802,34.08053322056458],[-118.427698933533,34.08054427759848],[-118.42768352652756,34.08055511142195],[-118.42766789404499,34.08056572129098],[-118.42765204057685,34.08057610199744],[-118.42763597420799,34.08058625056534],[-118.4276196958367,34.08059616476265],[-118.42760321085294,34.08060584086926],[-118.4275865273415,34.08061527590922],[-118.42756964709898,34.08062446690639],[-118.42755257731194,34.08063341088483],[-118.4275353233703,34.08064210710056],[-118.42751788886727,34.08065055108941],[-118.42750027919276,34.08065873987545],[-118.42748250153328,34.08066667271462],[-118.4274645594821,34.08067434588693],[-118.42744645932743,34.0806817564163],[-118.42742820735751,34.08068890430282],[-118.42740980716552,34.0806957850823],[-118.42739126593806,34.08070239801089],[-118.42737258816668,34.08070874160054],[-118.42735378103788,34.08071481138711],[-118.42733484904328,34.08072060737076],[-118.42731579847103,34.08072612806338],[-118.42722612504612,34.08074912077701],[-118.42713097818617,34.08076439195909],[-118.42711104007844,34.0807669454642],[-118.4271023219286,34.08076793278968],[-118.42709105166504,34.08076920879812],[-118.42707101833591,34.08077118196104],[-118.42705094727751,34.08077286346482],[-118.42702940747363,34.0807743522653],[-118.42700623812581,34.08077578005541],[-118.42598659727776,34.08083991228534],[-118.42566948838919,34.08085843261912],[-118.4256529441166,34.08085933289234],[-118.42563567220863,34.08086002111774],[-118.4256183904192,34.08086045860586],[-118.4256010996466,34.0808606461008],[-118.42558380887401,34.08086058137037],[-118.42556652169469,34.08086026515872],[-118.42554924439685,34.08085969895383],[-118.42553198147202,34.08085888126767],[-118.42551473741185,34.08085781358826],[-118.4254975203011,34.08085649591557],[-118.42548033103812,34.08085492824966],[-118.4254631795044,34.08085311059045],[-118.42544606749655,34.08085104442603],[-118.42542900130282,34.08084873050034],[-118.425411986313,34.08084616881348],[-118.42539502791708,34.08084336010929],[-118.42537813060659,34.08084030513191],[-118.4253613006697,34.08083700685737],[-118.42534454169979,34.0808334637976],[-118.42532785908664,34.08082967744061],[-118.42531126091515,34.08082565001847],[-118.42529474718525,34.08082138153115],[-118.42527832688017,34.08081687495469],[-118.42526200269485,34.08081213028908],[-118.42524578091744,34.08080714827826],[-118.42522966693787,34.0808019333864],[-118.42521433089935,34.08079671030993],[-118.42336679819385,34.08015186026653],[-118.42335801716195,34.08014875318185],[-118.4233424915789,34.08014305239544],[-118.42332679621427,34.08013701381729],[-118.42331123110534,34.08013074905241],[-118.42329579984535,34.0801242588448],[-118.42328050692598,34.08011754617048],[-118.4232653559404,34.08011061177355],[-118.42325035407514,34.08010345863001],[-118.42323550312686,34.08009608897194],[-118.4232208102821,34.08008850428732],[-118.42320627823572,34.0800807068082],[-118.42319191237769,34.08007270099871],[-118.42317771630127,34.08006448685889],[-118.423163694498,34.08005606885276],[-118.42314997991853,34.08004752659207],[-118.42313575779096,34.08003833553222],[-118.42312271784633,34.08002960874909],[-118.42310943625485,34.08002039611031],[-118.42309634959778,34.08001099225361],[-118.42308346236672,34.08000140015495],[-118.42307077905322,34.07999162204645],[-118.42305830235225,34.07998166164818],[-118.42304603585704,34.07997152193631],[-118.42303398316088,34.0799612043987],[-118.42302215055194,34.07995071424368],[-118.42301053803027,34.07994005370318],[-118.42300466664157,34.07993446971629],[-118.42324109603781,34.07993247867703],[-118.42384026784075,34.07974523149407],[-118.42361830581213,34.07925612231605],[-118.42348927719462,34.078817402291],[-118.42364375418583,34.07876886521957],[-118.42346876057185,34.07838326036048],[-118.4234525055568,34.07834724539469],[-118.42344617423066,34.07833256752834],[-118.42344014833176,34.07831781451043],[-118.42343442606337,34.07830298262066],[-118.4234290209003,34.07828804284102],[-118.42342392924928,34.07827304279068],[-118.42341915560186,34.07825798470176],[-118.42341469097492,34.07824283509197],[-118.42341054524988,34.07822764753291],[-118.42340672381665,34.07821238258981],[-118.42340322128537,34.07819707895334],[-118.42340004663914,34.07818171802219],[-118.42339718370835,34.07816630202844],[-118.42339465584912,34.07815086445441],[-118.4233924450952,34.07813539116312],[-118.42339055953143,34.07811987545806],[-118.42338900095443,34.07810434338101],[-118.42338776307595,34.07808878897952],[-118.42336826334608,34.07780526235813],[-118.42336722399529,34.07779211119753],[-118.42336589898025,34.07777896152297],[-118.42336431075883,34.07776583267992],[-118.42336243687315,34.07775274252566],[-118.42336029079793,34.07773968957214],[-118.4233578725332,34.0777266537299],[-118.42335518477384,34.07771366029672],[-118.423352224825,34.07770070034412],[-118.42334898460176,34.07768778280061],[-118.4233454784772,34.07767491808308],[-118.42334171184123,34.07766211512025],[-118.42333766493086,34.07764936572747],[-118.42333335301751,34.0776366743691],[-118.42332878238935,34.07762403955709],[-118.42332394675817,34.0776114798929],[-118.42331884522567,34.07759899388832],[-118.42331347779184,34.07758658972813],[-118.42330786152469,34.07757425253118],[-118.42330197755957,34.07756199569054],[-118.42329584655775,34.0775498519447],[-118.42328945145125,34.07753778111469],[-118.42328280930805,34.07752580403407],[-118.42327592012812,34.07751392442321],[-118.42326878301321,34.07750215567522],[-118.42326140065819,34.07749048142082],[-118.42325376946987,34.07747891654119],[-118.42324590112628,34.07746746922107],[-118.42323778664431,34.07745614913315],[-118.42322944039701,34.07744494288455],[-118.42322085789279,34.07743385121933],[-118.4232120481148,34.07742288827465],[-118.4232039381244,34.07741313665449],[-118.42301646152126,34.07719177546853],[-118.42301442593882,34.07718945474637],[-118.42301228884675,34.07718720619794],[-118.42301005743158,34.07718499708458],[-118.42300773887985,34.07718286386531],[-118.42300408632991,34.0771798020593],[-118.42300025321858,34.07717688980929],[-118.42299623864758,34.07717416357407],[-118.42299206148151,34.077171589127],[-118.42298772800858,34.0771692200404],[-118.42298325529677,34.07716705631421],[-118.4229786433461,34.07716506000151],[-118.4229739235976,34.07716328839483],[-118.42296908706811,34.07716171991648],[-118.4229641669953,34.07716035977489],[-118.42295916517578,34.07715922061909],[-118.42295409777927,34.07715830691345],[-118.42294897558553,34.07715760228864],[-118.42294382464569,34.07715713427491],[-118.42293864495976,34.07715687459797],[-118.4229334562907,34.0771568515321],[-118.42292827750305,34.07715705689269],[-118.4229231139868,34.07715748472717],[-118.42291798999644,34.07715811717816],[-118.42291291182015,34.07715900930609],[-118.42290789472928,34.07716008968115],[-118.42290458982733,34.07716094014166],[-118.42290132445129,34.0771618828656],[-118.42289649870158,34.07716348557074],[-118.42289178524129,34.07716529066011],[-118.42288719934176,34.07716728027628],[-118.4228827347148,34.07716949385442],[-118.42287842549638,34.07717187707816],[-118.42287425641516,34.07717446119801],[-118.42287026430202,34.07717721496338],[-118.42286644915698,34.07718013539813],[-118.42286274899637,34.07718329765211],[-118.42278040402753,34.07705439143369],[-118.422779351202,34.0770527567319],[-118.42278543279647,34.07704598949771],[-118.42279137515207,34.07703913223161],[-118.42279717916713,34.07703219758265],[-118.4228028304686,34.07702517438977],[-118.42280832905644,34.07701807306994],[-118.42281368481217,34.0770108824621],[-118.42281888605766,34.07700361521537],[-118.42282393369125,34.07699629439563],[-118.42282879717018,34.07698887907939],[-118.42283356093613,34.07698141019012],[-118.42283814683566,34.07697386838214],[-118.4228425629536,34.07696624919105],[-118.422846823663,34.07695859577245],[-118.42285092806553,34.07695085083356],[-118.4228548590932,34.07694306645869],[-118.42285863381403,34.07693521065316],[-118.42286224144823,34.07692731689971],[-118.42286568558902,34.07691936585278],[-118.42286896084654,34.07691136197667],[-118.42287206003427,34.07690332387293],[-118.42287458519856,34.07689639888565],[-118.42330134604393,34.07569376844492],[-118.42255818597907,34.07527801077266],[-118.42185105554361,34.07509738749981],[-118.42094275279017,34.07543209399253],[-118.4203974170222,34.07425741144978],[-118.41962324352046,34.07258974177823],[-118.41845379063244,34.07231488042637],[-118.41834513850051,34.07202391202993],[-118.41768990553562,34.07074188815819],[-118.41739377680054,34.07021108598876],[-118.41672504305527,34.06927798660288],[-118.41638338321,34.06884493355822],[-118.41694482307604,34.06854218548357],[-118.41710958128569,34.06856527824225],[-118.41726498623659,34.068387684921],[-118.4163272840249,34.06707907156824],[-118.416782,34.067083],[-118.41719,34.067083],[-118.42438,34.068066],[-118.424735,34.06803],[-118.425384,34.067977],[-118.426485,34.067829],[-118.426772,34.067765],[-118.42699,34.067702],[-118.427202,34.067627],[-118.427284,34.067595],[-118.42886,34.066901],[-118.430083,34.068826],[-118.43118,34.070551],[-118.431758,34.071461],[-118.431797,34.071536],[-118.431824,34.071627],[-118.431826,34.071642],[-118.43183,34.071733],[-118.43164,34.072846],[-118.431573,34.073242],[-118.431536,34.07346],[-118.43146,34.073904],[-118.431446,34.07404],[-118.431449,34.074192],[-118.431466,34.074319],[-118.431496,34.074443],[-118.431545,34.07458],[-118.431608,34.074729],[-118.432822,34.07758],[-118.432982,34.077955],[-118.43302,34.078029],[-118.434428,34.080011],[-118.43446,34.080056],[-118.435007,34.080482],[-118.435104,34.080553],[-118.435198,34.080645],[-118.435258,34.080725],[-118.43531593387999,34.08081387652243],[-118.4352249462198,34.08094235589975],[-118.43521585526912,34.08095598274824],[-118.43520704998271,34.08096973905511],[-118.43519853395382,34.08098362184426],[-118.43519031077568,34.08099762739545],[-118.43518238404164,34.08101174901241],[-118.43517475285329,34.08102598371894],[-118.43516742260059,34.08104032705088],[-118.43516039418179,34.08105477454402],[-118.43515366849527,34.08106932247809],[-118.43514725093088,34.08108396490095],[-118.4351411405903,34.08109869883639],[-118.43513534016853,34.08111351982021],[-118.43512985146214,34.08112842190013],[-118.43512467536945,34.08114340135606],[-118.43511981548376,34.08115845521182],[-118.4351152718051,34.08117357602716],[-118.43511104612998,34.08118876008184],[-118.43510713935679,34.08120400365576],[-118.43510358202829,34.08121917505658],[-118.43510115118714,34.08123048050506],[-118.43492737299376,34.08207209864043],[-118.43492396209061,34.08208772819998],[-118.43492055657735,34.08210183401079],[-118.43491685462007,34.08211588699412],[-118.43491285801538,34.08212988491792],[-118.43490856945819,34.08214382331804],[-118.43490398894855,34.08215769624253],[-118.43489911738477,34.08217150071521],[-118.43489395746178,34.08218523301616],[-118.43488851097621,34.08219888793724],[-118.43488277792808,34.0822124617584],[-118.43487676101232,34.0822259492716],[-118.43487046292387,34.08223934824487],[-118.43486388366273,34.08225265421409],[-118.43485702772047,34.08226586197118],[-118.43484989509712,34.08227896779619],[-118.43484248848758,34.08229196871309],[-118.43483481058685,34.08230485951383],[-118.43482686319153,34.08231763796632],[-118.43481864989491,34.08233029811861],[-118.43481017069693,34.08234283699466],[-118.4348014300892,34.08235525161848],[-118.43479243166502,34.08236753678202],[-118.43478317542433,34.08237968876522],[-118.43477366765535,34.0823917053361],[-118.43476390745977,34.08240358277472],[-118.43475390112584,34.08241531587298]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000155,"geom:area_square_m":1587231.82314,"geom:bbox":"-118.435315934,34.066901,-118.416327284,34.0827567357","geom:latitude":34.073938,"geom:longitude":-118.426214,"iso:country":"US","lbl:latitude":34.086747,"lbl:longitude":-118.43873,"lbl:max_zoom":18,"mps:latitude":34.072536,"mps:longitude":-118.42686,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ara_x_preferred":["هولمبي هيلز"],"name:deu_x_preferred":["Holmby Hills"],"name:eng_x_preferred":["Holmby Hills"],"name:eng_x_variant":["Holmby Hls"],"name:fra_x_preferred":["Holmby Hills"],"name:jpn_x_preferred":["ホルムビー・ヒルズ"],"name:nob_x_preferred":["Holmby Hills"],"name:pol_x_preferred":["Holmby Hills"],"name:por_x_preferred":["Holmby Hills"],"name:spa_x_preferred":["Holmby Hills"],"name:swe_x_preferred":["Holmby Hills"],"reversegeo:latitude":34.072536,"reversegeo:longitude":-118.42686,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85857293,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3139443"},"wof:country":"US","wof:geomhash":"7d1dad1ca9e2ed589d6f45e12ed0d62e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108546309,"neighbourhood_id":85857293,"region_id":85688637}],"wof:id":1108546309,"wof:lastmodified":1566624172,"wof:name":"Holmby Hills","wof:parent_id":85857293,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869349],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108558929.geojson b/fixtures/microhoods/1108558929.geojson new file mode 100644 index 0000000..1d78e7a --- /dev/null +++ b/fixtures/microhoods/1108558929.geojson @@ -0,0 +1 @@ +{"id":1108558929,"type":"Feature","bbox":[-118.256865,34.043774,-118.250701,34.04951503297377],"geometry":{"type":"Polygon","coordinates":[[[-118.256865,34.045163],[-118.25285889877533,34.04951503297377],[-118.250701,34.048079],[-118.252032,34.046648],[-118.253367,34.045213],[-118.254706,34.043774],[-118.255785,34.044468],[-118.256865,34.045163]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":153701.26179,"geom:bbox":"-118.256865,34.043774,-118.250701,34.049515033","geom:latitude":34.046638,"geom:longitude":-118.25378,"iso:country":"US","lbl:latitude":34.046419,"lbl:longitude":-118.255093,"lbl:max_zoom":18,"mps:latitude":34.046642,"mps:longitude":-118.253779,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Jewelry District"],"name:fra_x_preferred":["Jewelry District"],"name:ita_x_preferred":["Jewelry District"],"name:nld_x_preferred":["Jewelry District"],"name:pol_x_preferred":["Jewelry District"],"reversegeo:latitude":34.046642,"reversegeo:longitude":-118.253779,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4171089"},"wof:country":"US","wof:geomhash":"cbc87072c6b28c2f9226fb3d13c7560f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108558929,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1108558929,"wof:lastmodified":1566624172,"wof:name":"Jewelry District","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869373],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561153.geojson b/fixtures/microhoods/1108561153.geojson new file mode 100644 index 0000000..32f47d1 --- /dev/null +++ b/fixtures/microhoods/1108561153.geojson @@ -0,0 +1 @@ +{"id":1108561153,"type":"Feature","bbox":[-118.3671351800297,34.2211271884607,-118.26681464748053,34.237562],"geometry":{"type":"Polygon","coordinates":[[[-118.3671351800297,34.2342147606204],[-118.367123,34.234213],[-118.366897,34.234184],[-118.36673,34.234169],[-118.366086,34.23413],[-118.365069,34.234115],[-118.363991,34.234099],[-118.363363,34.23409],[-118.363288,34.234088],[-118.362988,34.234081],[-118.362666,34.234057],[-118.36177,34.233932],[-118.358185,34.233868],[-118.358034,34.23387],[-118.357883,34.233881],[-118.357696,34.233906],[-118.35735,34.23398],[-118.357122,34.234036],[-118.356872,34.234076],[-118.356556,34.234106],[-118.356365,34.234112],[-118.355354,34.234098],[-118.353909,34.234073],[-118.353714,34.234071],[-118.35346,34.234077],[-118.353079,34.234108],[-118.351837,34.234236],[-118.35114,34.234308],[-118.349568,34.234471],[-118.348461,34.234585],[-118.346528,34.234785],[-118.345741,34.234867],[-118.344302,34.235015],[-118.335493,34.236314],[-118.335237,34.236343],[-118.33506,34.23635],[-118.332642,34.236433],[-118.331612,34.236469],[-118.329552,34.236541],[-118.329408,34.236542],[-118.329066,34.236538],[-118.328902,34.236523],[-118.328711,34.236491],[-118.327631,34.236308],[-118.327378,34.236265],[-118.32719,34.236239],[-118.327104,34.236235],[-118.327017,34.23623],[-118.326844,34.236236],[-118.326666,34.236259],[-118.326484,34.236299],[-118.326321,34.236351],[-118.325738,34.236586],[-118.325323,34.236773],[-118.324846,34.237008],[-118.324527,34.237173],[-118.324325,34.237247],[-118.32405,34.237298],[-118.322862,34.237498],[-118.32245,34.237546],[-118.322283,34.237562],[-118.322023,34.23755],[-118.321705,34.237514],[-118.321312,34.237445],[-118.320921,34.237353],[-118.320323,34.237195],[-118.320219,34.237155],[-118.320106,34.237111],[-118.319908,34.23702],[-118.319038,34.2366],[-118.318833,34.236512],[-118.318621,34.236436],[-118.318403,34.236373],[-118.317696,34.236211],[-118.31765,34.2362],[-118.317447,34.236144],[-118.317235,34.236068],[-118.317032,34.235977],[-118.316839,34.235872],[-118.316658,34.235753],[-118.31649,34.235621],[-118.316336,34.235478],[-118.316225,34.235356],[-118.3158,34.234819],[-118.315702,34.234701],[-118.315559,34.23455],[-118.315404,34.234408],[-118.315237,34.234275],[-118.31506,34.234152],[-118.314824,34.234013],[-118.314575,34.233892],[-118.314367,34.233809],[-118.314293,34.233784],[-118.314153,34.233738],[-118.313933,34.233679],[-118.313705,34.233632],[-118.313477,34.2336],[-118.312823,34.233542],[-118.312581,34.233513],[-118.312356,34.233473],[-118.312134,34.233419],[-118.311781,34.233313],[-118.311605,34.233269],[-118.31156,34.233258],[-118.311333,34.233219],[-118.31115,34.2332],[-118.310966,34.233191],[-118.310735,34.233196],[-118.310551,34.233211],[-118.310382,34.233237],[-118.310324,34.233246],[-118.310145,34.233285],[-118.309635,34.23343],[-118.309385,34.233493],[-118.30916,34.233534],[-118.308932,34.233563],[-118.308701,34.233579],[-118.308413,34.233579],[-118.308183,34.233564],[-118.307954,34.233536],[-118.307392,34.233435],[-118.307256,34.233413],[-118.307027,34.23339],[-118.306796,34.233384],[-118.306565,34.233394],[-118.306337,34.233421],[-118.30523,34.233641],[-118.305059,34.233671],[-118.304876,34.233693],[-118.304691,34.233704],[-118.304507,34.233704],[-118.304276,34.233689],[-118.304093,34.233665],[-118.303457,34.233601],[-118.302943,34.233546],[-118.30241,34.233473],[-118.301574,34.233323],[-118.300802,34.233152],[-118.300144,34.232961],[-118.299976,34.232895],[-118.299537,34.232744],[-118.299332,34.232665],[-118.299165,34.232613],[-118.29896,34.232566],[-118.298564,34.232498],[-118.29844,34.232486],[-118.298257,34.232481],[-118.298225,34.23248],[-118.29813,34.232478],[-118.297887,34.232494],[-118.297648,34.23253],[-118.297249,34.232604],[-118.29646,34.232797],[-118.292037,34.233878],[-118.291769,34.234027],[-118.29175,34.234038],[-118.291574,34.234161],[-118.29145,34.234253],[-118.291338,34.234343],[-118.291156,34.234498],[-118.29070290722846,34.23491846981256],[-118.2905102373651,34.2348992326248],[-118.29043246032951,34.23489151923895],[-118.29037950284689,34.23488546349537],[-118.290025347436,34.23484440711675],[-118.28998562932402,34.23483969412068],[-118.2899359812349,34.23483397331842],[-118.2888999398447,34.23469699626793],[-118.28844315370924,34.23463591508743],[-118.28821145124799,34.23460486686292],[-118.28791685234384,34.23456400641351],[-118.28738392500492,34.2344893616633],[-118.2871356674913,34.23445457178637],[-118.28703967621497,34.23444140415136],[-118.28693871725515,34.23442721682072],[-118.28683114759312,34.23441476289281],[-118.2867831559974,34.23440938072186],[-118.28669710098644,34.23439928033108],[-118.286594496313,34.23438750149143],[-118.28654981500905,34.23438245500827],[-118.28649189792777,34.23437709660084],[-118.28643894493672,34.23437241254297],[-118.28636944407982,34.23436605077946],[-118.28630656200994,34.23436001727836],[-118.28624864672526,34.23435500198592],[-118.28615101512521,34.23434595841702],[-118.28608316896506,34.23433959293813],[-118.28601201520807,34.23433357800203],[-118.28583827654053,34.23432128002238],[-118.28573072394651,34.23431363342449],[-118.28564302771352,34.2343073147318],[-118.28555699066888,34.23430270865109],[-118.28551066365134,34.23430041378009],[-118.28544944615967,34.23429712297953],[-118.28539153806152,34.23429451172809],[-118.28534521284062,34.23429290383289],[-118.2852707613682,34.23428998808382],[-118.28521616625682,34.23428839875543],[-118.28515164655815,34.23428717705202],[-118.28503584024332,34.23428470171017],[-118.28497133042613,34.23428622791107],[-118.2848985489218,34.23428777342153],[-118.28483403640966,34.23428895576301],[-118.28466861254843,34.23428934492566],[-118.28455281431842,34.23428892976932],[-118.28449656900183,34.23428871884914],[-118.2844502527641,34.23428951425596],[-118.28440394101794,34.23429168435761],[-118.28436920945413,34.23429382698008],[-118.28404502902767,34.23430935783524],[-118.28398713979409,34.23431224164857],[-118.28390113239388,34.23431622165237],[-118.28386144123135,34.23431940624946],[-118.28379694399058,34.23432470970246],[-118.28374402154225,34.23432895558393],[-118.28364148603907,34.23433709606016],[-118.28352406545169,34.23434630227615],[-118.28340168436723,34.2343562058641],[-118.28326937779727,34.23436579010014],[-118.28314202992762,34.23437467547694],[-118.28304610692328,34.23438176951834],[-118.28292868364092,34.23438994415257],[-118.28284764212756,34.23439494236138],[-118.28276494412083,34.23439925730812],[-118.28266735923317,34.23440395027659],[-118.2825796980345,34.23440827710566],[-118.28254000327874,34.23441043086538],[-118.28250030762463,34.23441224076611],[-118.28243580050238,34.23441479557054],[-118.28234151602511,34.23441707632763],[-118.28213805839307,34.23442167274725],[-118.28206030830691,34.23442185396014],[-118.28188992305031,34.23442259440777],[-118.28178571039254,34.23442386735375],[-118.28168976762525,34.23442512173287],[-118.28163847921243,34.2344231796361],[-118.28158719169792,34.234421238282],[-118.28150943083196,34.23441832773614],[-118.2814581469107,34.23441776033189],[-118.28139362811038,34.23441687951856],[-118.28134730738107,34.23441630023153],[-118.28129767007171,34.23441332432996],[-118.28122156030928,34.23440903612028],[-118.28112725517073,34.23440513335913],[-118.28103129623379,34.23440157817007],[-118.28091216974563,34.23439567166908],[-118.28084267697358,34.23439136786229],[-118.28077649000176,34.23438636891065],[-118.28077483530501,34.23438637262403],[-118.28071361332177,34.23438170564818],[-118.28064907925005,34.23437635986625],[-118.28059778365072,34.23437235684225],[-118.28054152036785,34.2343666478911],[-118.2804869108834,34.23436127908519],[-118.28044554166793,34.23435725303757],[-118.2804058262509,34.23435322327639],[-118.28030323235726,34.23434418713401],[-118.28027841100764,34.2343418402768],[-118.28024697087099,34.23433916515654],[-118.28022049482465,34.23433682201257],[-118.28019070489319,34.23433276922744],[-118.28016588174694,34.23432973539418],[-118.28009802750195,34.23432096141412],[-118.28002354997837,34.23431014210176],[-118.27996561852403,34.23430031500407],[-118.27988947821885,34.23428709535757],[-118.27973057163499,34.23425757988995],[-118.2796163562365,34.23423586103838],[-118.27951206542528,34.23421411841556],[-118.27943922642879,34.23419848653869],[-118.2793498323799,34.23417945765081],[-118.27927533958498,34.2341638294809],[-118.27918594643442,34.2341448005852],[-118.27897074063505,34.23409858223007],[-118.27886810452061,34.2340768358584],[-118.27878367725692,34.23405882515575],[-118.27867441876218,34.23403537655344],[-118.27859495918204,34.23401838554047],[-118.27853701964287,34.2340061528705],[-118.2783896869531,34.23397454814674],[-118.27825061876399,34.23394120628289],[-118.27791785134167,34.23386159541833],[-118.2775436940427,34.23377177409563],[-118.27732019230172,34.23371767271097],[-118.27719436887313,34.23368738985308],[-118.27691126660795,34.23361865385242],[-118.27662656444328,34.23356640833461],[-118.2764527350459,34.23352558748618],[-118.27629877368767,34.23348987331236],[-118.27620440836202,34.23346741900555],[-118.27588820407695,34.23339326048437],[-118.27568788965009,34.23334700309709],[-118.27552730321662,34.23330889814304],[-118.2754014896695,34.23328101921182],[-118.27517634580815,34.23322966470794],[-118.27436848188998,34.23304704689678],[-118.27395462983523,34.23295696105075],[-118.27372452907017,34.23290698997882],[-118.27358547705069,34.23287707743133],[-118.27345635411005,34.23284851656813],[-118.2733802021268,34.23283117105274],[-118.27331067432044,34.23281552777875],[-118.27326101185827,34.23280464811504],[-118.27255082894746,34.23264446757516],[-118.27226940563358,34.23258121327468],[-118.27212703883075,34.23254924558233],[-118.27200122708025,34.23252101956217],[-118.27190355685265,34.23249891257716],[-118.27143507016063,34.23239314045875],[-118.2713787862165,34.23238055774401],[-118.27113047300735,34.23232478143286],[-118.27032097864695,34.23214385871901],[-118.26995513525591,34.23206223938934],[-118.26976807547105,34.23202040774403],[-118.2696737173319,34.23199932183601],[-118.26928137543665,34.23190779849151],[-118.26885757633671,34.23180741168169],[-118.26840565008696,34.23170468227771],[-118.26800339079092,34.23161455043357],[-118.2677716353291,34.23156216701535],[-118.26750677515243,34.23150298636178],[-118.26730978359376,34.23145876888061],[-118.26722204873323,34.23143903974837],[-118.26713430399123,34.23141656335633],[-118.26688100333561,34.23135117286317],[-118.26681478132949,34.23133414491613],[-118.26681464748053,34.23129224012426],[-118.26681586559604,34.23115587375686],[-118.26681572096729,34.23111053460912],[-118.26681726337463,34.23107549601537],[-118.26681698310024,34.23098790652285],[-118.26681805748532,34.23080654496734],[-118.26681910581928,34.23061693894954],[-118.26682415974105,34.23012780484783],[-118.26682522963456,34.2299450681597],[-118.26684003297211,34.22784840331357],[-118.26684334865386,34.22733316742893],[-118.26684709732355,34.22695360880613],[-118.26688371984103,34.22185105629889],[-118.27369804583728,34.22180114325957],[-118.28405680055111,34.22172471713373],[-118.28624002559346,34.221708580814],[-118.28692972601748,34.22170351277302],[-118.28842324973748,34.22169206195546],[-118.2927896962289,34.22165959246161],[-118.30016137565495,34.2216040913098],[-118.30152257933025,34.22159383785424],[-118.31025544805854,34.22152745256743],[-118.31339299295308,34.22150356742957],[-118.31898830331215,34.22146043734241],[-118.3266245788102,34.22140159647355],[-118.32772114419268,34.22139279217772],[-118.33492241949754,34.22133666467729],[-118.33609341030134,34.22132723494455],[-118.33742152812637,34.22131701265254],[-118.33747445326968,34.22131652166754],[-118.33737739898525,34.2211271884607],[-118.33742943419921,34.22122699745164],[-118.33981354859023,34.22221437393394],[-118.34166090612422,34.22297995422863],[-118.34233629663414,34.22325959857635],[-118.34808466978777,34.22564118102437],[-118.3536148514122,34.22793079203145],[-118.35474579619714,34.22839926549494],[-118.35628520855678,34.22903637581265],[-118.35703301021674,34.22906577204657],[-118.35716147880372,34.22907070329093],[-118.35833173516573,34.22911654753817],[-118.36049767235087,34.22920107588686],[-118.36050731105342,34.2292014532955],[-118.36168361179884,34.22924740547343],[-118.36262829542298,34.22928442269377],[-118.36372684159066,34.22932749678425],[-118.36404122054626,34.22933968953582],[-118.36444652149063,34.22935555824817],[-118.3647032667045,34.22936595190546],[-118.36516951797066,34.22938532275986],[-118.36600997636059,34.22941885062217],[-118.3664869431489,34.22992542334236],[-118.36688051932938,34.23253403821637],[-118.36688979701573,34.23259505556519],[-118.36693845258036,34.2329185670142],[-118.36705076523265,34.23365697204498],[-118.3671351800297,34.2342147606204]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00114,"geom:area_square_m":11650058.963737,"geom:bbox":"-118.36713518,34.2211271885,-118.266814647,34.237562","geom:latitude":34.228527,"geom:longitude":-118.313393,"iso:country":"US","lbl:latitude":34.235837,"lbl:longitude":-118.337288,"lbl:max_zoom":18,"mps:latitude":34.229489,"mps:longitude":-118.322467,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["La Tuna Cyn","Latuna Canyon"],"reversegeo:latitude":34.229489,"reversegeo:longitude":-118.322467,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865489,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ec018f4a56852035e9343038a5baef93","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1108561153,"neighbourhood_id":85865489,"region_id":85688637}],"wof:id":1108561153,"wof:lastmodified":1566623963,"wof:name":"La Tuna Canyon","wof:parent_id":85865489,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868385,420551287],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561155.geojson b/fixtures/microhoods/1108561155.geojson new file mode 100644 index 0000000..53e55ec --- /dev/null +++ b/fixtures/microhoods/1108561155.geojson @@ -0,0 +1 @@ +{"id":1108561155,"type":"Feature","bbox":[-118.33737399932366,34.03984600000247,-118.32843032507364,34.04658599986394],"geometry":{"type":"Polygon","coordinates":[[[-118.33433899958577,34.04658599986394],[-118.333791,34.046406],[-118.333169,34.046202],[-118.332873,34.046105],[-118.331781,34.045746],[-118.33068,34.045385],[-118.329614,34.045035],[-118.329506,34.045],[-118.329026,34.044877],[-118.328973,34.04486],[-118.32843032507364,34.04468790849181],[-118.32968885172026,34.04238454770186],[-118.33107980244549,34.03986692180177],[-118.332424,34.039863],[-118.333727,34.039858],[-118.333931,34.039858],[-118.33503,34.039854],[-118.335323,34.039853],[-118.336322,34.039849],[-118.336554,34.039849],[-118.33737399932366,34.03984600000247],[-118.33726,34.0399939991244],[-118.33712,34.04019799912439],[-118.337014,34.04037999912438],[-118.336867,34.04075099912438],[-118.336515,34.04163899912438],[-118.336162,34.04252599912436],[-118.33581,34.04341299912437],[-118.335458,34.04429999912434],[-118.335106,34.04518699912435],[-118.334759,34.04606199912431],[-118.334735,34.04612099912431],[-118.334529,34.04643499912432],[-118.334339,34.0465859991243],[-118.33433899958577,34.04658599986394]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000038,"geom:area_square_m":390129.546911,"geom:bbox":"-118.337373999,34.039846,-118.328430325,34.0465859999","geom:latitude":34.042838,"geom:longitude":-118.332954,"iso:country":"US","lbl:latitude":34.042374,"lbl:longitude":-118.332122,"lbl:max_zoom":18,"mps:latitude":34.042982,"mps:longitude":-118.332869,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Lafayette Square"],"name:eng_x_variant":["Lafayette Sq","Lafayettesquare"],"reversegeo:latitude":34.042982,"reversegeo:longitude":-118.332869,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865813,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6471521"},"wof:country":"US","wof:geomhash":"6bf495128d49f43017c550c0efe3bb5b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108561155,"neighbourhood_id":85865813,"region_id":85688637}],"wof:id":1108561155,"wof:lastmodified":1566623963,"wof:name":"Lafayette Square","wof:parent_id":85865813,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869393],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561745.geojson b/fixtures/microhoods/1108561745.geojson new file mode 100644 index 0000000..f17a21c --- /dev/null +++ b/fixtures/microhoods/1108561745.geojson @@ -0,0 +1 @@ +{"id":1108561745,"type":"Feature","bbox":[-118.38236596136157,34.10164825895766,-118.3621741095037,34.12519455499626],"geometry":{"type":"Polygon","coordinates":[[[-118.37582344721685,34.11195265634178],[-118.37649451074141,34.11399185731708],[-118.37655604019949,34.11414316456185],[-118.3766315468268,34.11427279471349],[-118.37671368580752,34.11437885219148],[-118.37679908522075,34.11446569058739],[-118.37836572537815,34.11570167737909],[-118.37911072820258,34.11631678157823],[-118.37920863722479,34.11644527569236],[-118.37926715096539,34.11656760646546],[-118.37928763476728,34.11668663487347],[-118.37929238234189,34.11679915557866],[-118.37910606258417,34.11756800927775],[-118.3791062473716,34.11772692314599],[-118.37911951505362,34.11787515987928],[-118.37914876881845,34.11799826087575],[-118.37920489217655,34.11810464332984],[-118.3807816113893,34.11936468215755],[-118.38094728640677,34.11950722442873],[-118.38110386318499,34.11966005786446],[-118.38125683959335,34.1198185196198],[-118.38140794764729,34.12000467430204],[-118.38149773074659,34.12013583430195],[-118.38158105205618,34.12028797372216],[-118.38204043423303,34.12142377816498],[-118.38213309058636,34.12170274098536],[-118.38219590541961,34.12192409278146],[-118.38225994793719,34.12216183804106],[-118.38236596136157,34.12260613591118],[-118.38235847550506,34.12260486372154],[-118.3823502065129,34.12260282906635],[-118.3823402846206,34.12260079887309],[-118.38233036182994,34.1225984258523],[-118.38232043814101,34.12259605283143],[-118.38231051355375,34.12259333698297],[-118.3823005907631,34.12259096396196],[-118.38229231638104,34.12258789859285],[-118.38228239179378,34.12258518200046],[-118.38227246451159,34.12258177826544],[-118.3822641901295,34.12257871363966],[-118.38225426194897,34.12257530990444],[-118.38224433466678,34.12257190616908],[-118.38223605669143,34.1225681544003],[-118.3822277796144,34.12256440188769],[-118.38221785053554,34.12256065532422],[-118.3822095716619,34.12255655923992],[-118.38219963988811,34.12255246910476],[-118.38219136011614,34.12254803019236],[-118.38218307944588,34.12254359053606],[-118.38217479877558,34.12253915162325],[-118.38216651810527,34.12253471271015],[-118.38215823653668,34.12252993022537],[-118.38214995227312,34.12252480416883],[-118.38214167070451,34.1225200216835],[-118.3821333873393,34.12251489488269],[-118.38212510127909,34.12250942599739],[-118.38211846991568,34.12250429399033],[-118.3821101847538,34.12249882510434],[-118.38210354979714,34.12249300595344],[-118.38209526463525,34.12248753632306],[-118.38208531848845,34.122480010468],[-118.38208199831513,34.12247658664994],[-118.38207536874835,34.12247179895626],[-118.38206873828322,34.12246701051863],[-118.38206210871643,34.1224622228244],[-118.38205548004797,34.1224577787016],[-118.38204885137948,34.12245333457862],[-118.382042222711,34.12244888971174],[-118.38203559494085,34.12244444558829],[-118.38202731606718,34.12244034949836],[-118.38202068919533,34.12243624894629],[-118.38201406232346,34.12243249122221],[-118.3820057834498,34.12242839587538],[-118.38199915837458,34.12242463889462],[-118.38199253240104,34.12242088117002],[-118.38198425712065,34.12241747222284],[-118.38197598094193,34.12241406401912],[-118.38196935766337,34.12241064986598],[-118.38196108328125,34.12240758449029],[-118.38195280800086,34.12240417554256],[-118.38194618741721,34.12240144927665],[-118.38193791303516,34.12239838390062],[-118.38192964044968,34.12239566209652],[-118.38192136786425,34.12239294029228],[-118.3819130961771,34.12239056206003],[-118.38190482538828,34.12238818382772],[-118.38189655459946,34.12238580559529],[-118.38188828470895,34.12238377093487],[-118.38188001392014,34.12238139270232],[-118.38187174582626,34.1223797008702],[-118.38186347683406,34.12237766620964],[-118.3818552087402,34.12237597512107],[-118.38184694244296,34.12237462686093],[-118.38183867434907,34.12237293577235],[-118.38183040984846,34.12237193182794],[-118.38182214355122,34.12237058356772],[-118.3818122261505,34.12236958482889],[-118.38180396164987,34.12236858014077],[-118.38179569714926,34.12236757619624],[-118.38178743354696,34.12236691508019],[-118.38177917084296,34.12236625396415],[-118.3817692570355,34.12236594162587],[-118.38176099522984,34.12236562482563],[-118.38175273342415,34.12236530728169],[-118.38174447341513,34.12236533330988],[-118.3817362134061,34.12236535933807],[-118.38172630319187,34.12236573414402],[-118.38171804318284,34.12236576017218],[-118.3817097840721,34.12236612977249],[-118.38170152765633,34.12236684294498],[-118.38169161834043,34.12236756132302],[-118.38168336192466,34.12236827449543],[-118.38167510640722,34.12236933049631],[-118.38166685088976,34.12237038724081],[-118.38165859537229,34.12237144398529],[-118.38164868964964,34.12237284876387],[-118.3816404359288,34.1223742490804],[-118.38163218220798,34.12237564865323],[-118.3816239302838,34.12237739254182],[-118.38161567746127,34.12237913568672],[-118.38160742733369,34.12238122314728],[-118.38159917451118,34.12238296629212],[-118.38159092528193,34.12238539658096],[-118.38158267515436,34.12238748404135],[-118.38157442592511,34.1223899143301],[-118.38156617669584,34.12239234461872],[-118.38155792926321,34.12239511847935],[-118.3815496818306,34.12239789233982],[-118.38154308639977,34.12240066099464],[-118.38153483896717,34.12240343485492],[-118.38152659243286,34.12240655228713],[-118.38151834859349,34.12241001329111],[-118.38151175406098,34.1224131255174],[-118.3815035102216,34.12241658652118],[-118.38149691748576,34.12242004231913],[-118.3814886745447,34.12242384615082],[-118.38148043160365,34.12242765072602],[-118.38147384156275,34.12243145009538],[-118.38146724882687,34.12243524946457],[-118.38145900768245,34.12243939686739],[-118.38145241853984,34.12244353980803],[-118.38144582939722,34.12244768200484],[-118.38143924205123,34.12245216851684],[-118.38143265380695,34.12245665428499],[-118.3814244144592,34.12246114600217],[-118.38141782801154,34.12246597534151],[-118.38141289266736,34.12247045590325],[-118.38140630621969,34.12247528598577],[-118.38139972156866,34.12248045889596],[-118.3813931360193,34.12248528823423],[-118.38138655136827,34.12249046114378],[-118.38138161871903,34.1224956295911],[-118.38137503586462,34.12250114681532],[-118.3813701032154,34.12250631377464],[-118.38136352036102,34.12251183099812],[-118.3813585895084,34.122517342272],[-118.38135365955414,34.12252319711696],[-118.38134707669974,34.12252871359572],[-118.38134214764376,34.1225345684399],[-118.38133721768949,34.12254042328365],[-118.38133228863352,34.12254627812702],[-118.38132735957755,34.12255213297004],[-118.3813224314199,34.12255833138391],[-118.38131915526408,34.12256452459174],[-118.38131422800475,34.12257072226106],[-118.3813092998471,34.12257692067364],[-118.38130602369125,34.12258311388005],[-118.38130109733024,34.12258965586293],[-118.38129782386933,34.12259619263966],[-118.3812945477135,34.12260238510104],[-118.38129127335428,34.12260892187678],[-118.38128634878989,34.12261580742873],[-118.38128307443068,34.12262234345974],[-118.38128145207327,34.12262887502834],[-118.38127817951072,34.12263575537305],[-118.38127490694814,34.12264263497354],[-118.38127163258889,34.12264917174617],[-118.38127001202814,34.12265604613989],[-118.38126673856725,34.12266292648241],[-118.38126511800647,34.12266980161874],[-118.38126184724052,34.12267702478731],[-118.38126022667977,34.12268389992251],[-118.38125860611898,34.12269077431343],[-118.38125698645653,34.12269799301828],[-118.38125536769236,34.12270521097885],[-118.3812537471316,34.12271208611169],[-118.38125213824893,34.1227217083222],[-118.38125050690837,34.12272617920282],[-118.38125054194268,34.12273373552596],[-118.38124892228021,34.12274095348346],[-118.38124730171944,34.12274782861342],[-118.3812456829553,34.1227550473134],[-118.38124240949439,34.12276192690418],[-118.38124079073025,34.12276914560295],[-118.38123917016951,34.12277601998699],[-118.3812358976069,34.12278290031968],[-118.38123427704615,34.1227897747026],[-118.38123100358524,34.12279665503422],[-118.38122938302448,34.12280353015969],[-118.38122610866526,34.12281006617621],[-118.38122283610268,34.12281694650618],[-118.38121956174346,34.12282348326532],[-118.38121628918091,34.12283036285052],[-118.38121301482167,34.12283689960864],[-118.38120974046248,34.12284343636625],[-118.38120481410144,34.12284997758527],[-118.38120153974225,34.12285651434187],[-118.38119826448472,34.12286270752787],[-118.38119333632707,34.12286890591898],[-118.38118840996604,34.12287544713607],[-118.3811851338102,34.12288164032068],[-118.38118020475426,34.12288749514042],[-118.3811752765966,34.12289369352973],[-118.38117034754065,34.12289954834868],[-118.38116541938297,34.1229057467371],[-118.3811604885304,34.12291125798526],[-118.38115555947444,34.12291711280294],[-118.38115062952015,34.12292296762027],[-118.38114569866755,34.12292847886731],[-118.38113911581314,34.12293399531956],[-118.38113418496054,34.12293950656594],[-118.38112760120782,34.12294502301749],[-118.3811226685586,34.12295019143701],[-118.38111608390759,34.12295536506186],[-118.38110949925655,34.12296053794266],[-118.38110456750564,34.12296570487396],[-118.38109798105798,34.1229705356718],[-118.38109139461031,34.12297536498203],[-118.38108480816265,34.12298019429203],[-118.38107822081668,34.12298468077579],[-118.3810716334707,34.12298916651568],[-118.38106504522639,34.12299365299895],[-118.38105845788041,34.12299813873836],[-118.3810502158377,34.1230022868572],[-118.38104362849172,34.12300677259615],[-118.38103703755247,34.12301057193948],[-118.38102879640805,34.12301472005777],[-118.38102220546881,34.12301851865708],[-118.38101561452956,34.12302231799988],[-118.3810073697919,34.12302577897871],[-118.38099912595253,34.1230292399574],[-118.38099253321668,34.12303269498665],[-118.38098428847897,34.12303615596505],[-118.3809776948448,34.12303926816831],[-118.38096944831048,34.12304238557702],[-118.38096120267451,34.12304550298566],[-118.38095295524188,34.1230482768248],[-118.38094470691092,34.1230510506639],[-118.3809364576817,34.12305348093359],[-118.38092986225087,34.12305624956687],[-118.38092161032665,34.12305833701071],[-118.3809133610974,34.12306076728014],[-118.38090511096983,34.12306285398024],[-118.38089685994395,34.12306494068024],[-118.38088860891807,34.12306702812394],[-118.38087870499206,34.12306877646014],[-118.38087045127124,34.12307017676522],[-118.38086219844871,34.12307191989579],[-118.3808539447279,34.12307331945715],[-118.38084569100708,34.12307471976209],[-118.38083743548961,34.12307577649777],[-118.38082917997212,34.12307683248977],[-118.38081927245285,34.12307789443106],[-118.38081101603709,34.12307860759746],[-118.38080275872298,34.12307932002021],[-118.3807945005106,34.12307968961741],[-118.38078624139987,34.12308005921459],[-118.38077633118564,34.1230804340174],[-118.38076807207493,34.12308080361458],[-118.3807598120659,34.12308082964256],[-118.38075155026024,34.12308051210131],[-118.38074163824938,34.12308054333486],[-118.38073337644373,34.12308022579366],[-118.38072511373971,34.12307956468314],[-118.38071685193407,34.1230792471419],[-118.38070693453334,34.12307824841147],[-118.38069867182934,34.12307758730099],[-118.3806904064304,34.12307658262127],[-118.3806821419298,34.12307557868515],[-118.38067387563257,34.12307423043617],[-118.38066560933532,34.12307288293082],[-118.38065734303808,34.1230715346818],[-118.38064742294237,34.12306984881274],[-118.38063915484851,34.12306815699439],[-118.38063088675462,34.12306646591963],[-118.38062261776246,34.1230644312756],[-118.38061434787194,34.12306239588786],[-118.38060607798143,34.12306036124369],[-118.3805978071926,34.12305798303021],[-118.3805895364038,34.12305560481666],[-118.38058126471665,34.12305322585933],[-118.380574644133,34.12305049887073],[-118.38056637154756,34.12304777708758],[-118.38055809716548,34.12304471173503],[-118.3805498236817,34.1230416463823],[-118.38054320130145,34.12303857582391],[-118.38053492691934,34.12303551047102],[-118.38052665163895,34.12303210229222],[-118.38052002746207,34.12302868816404],[-118.38051175128335,34.12302527924136],[-118.38050512620812,34.12302152154345],[-118.38049684913108,34.12301776979462],[-118.38049022225924,34.12301366852689],[-118.38048194518221,34.12300991603405],[-118.38047531831036,34.12300581550961],[-118.3804686914385,34.1230017142413],[-118.38046206277004,34.12299727014691],[-118.38012739361429,34.12278742176589],[-118.37990538577161,34.12264797817164],[-118.37989875710315,34.12264353331499],[-118.3798921302313,34.12263943277277],[-118.37988550335943,34.1226353314867],[-118.37987722538406,34.12263123614968],[-118.37987059941055,34.12262747843427],[-118.37986232233352,34.12262372592433],[-118.3798556972583,34.12261996820859],[-118.3798474219779,34.12261655926937],[-118.379840797801,34.12261314586809],[-118.37983252072397,34.12260973692864],[-118.37982424544356,34.12260632798901],[-118.37981762306329,34.1226032574148],[-118.37980934868123,34.12260019204614],[-118.3798010769941,34.12259747024848],[-118.37979280440862,34.12259474845079],[-118.37978618382498,34.12259202144737],[-118.37977791213784,34.12258964247704],[-118.37976964134903,34.12258726425026],[-118.3797613705602,34.12258488602348],[-118.37975309977139,34.12258250779663],[-118.37974482988088,34.12258047239723],[-118.37973656178701,34.12257878131278],[-118.37972829279482,34.12257674591334],[-118.37972002470096,34.12257505482881],[-118.37971010640189,34.12257371177743],[-118.37970183830801,34.12257202069285],[-118.37969357201077,34.12257067243576],[-118.37968530751014,34.12256966775003],[-118.37967704300955,34.12256866380793],[-118.3796687776106,34.12256765912217],[-118.3796588611082,34.12256665964199],[-118.3796505975059,34.12256599852751],[-118.37964233480193,34.12256533741301],[-118.37963407299624,34.12256501986983],[-118.37962581119058,34.12256470232665],[-118.37961589738312,34.12256438998912],[-118.37960763737406,34.12256441601725],[-118.37959937736504,34.12256444204538],[-118.3795861631472,34.12256482726169],[-118.3794969667277,34.12256785544863],[-118.37908402017474,34.12258220363942],[-118.37897830643209,34.12258596953708],[-118.37896839621789,34.12258634434203],[-118.37895683220522,34.12258638078141],[-118.37894526819258,34.12258641722079],[-118.37893370417991,34.12258645291649],[-118.37892213837064,34.12258614578465],[-118.37891057076475,34.12258549508157],[-118.37889900405713,34.12258484437849],[-118.37888743645122,34.12258419367542],[-118.378875867947,34.12258319940104],[-118.3788642976461,34.12258186229914],[-118.37885272734528,34.12258052445354],[-118.37884115704443,34.12257918660787],[-118.37882958494693,34.12257750519096],[-118.37881801284944,34.12257582451765],[-118.37880809095714,34.1225737943238],[-118.37879651616467,34.12257142650785],[-118.37878494316888,34.12256940151949],[-118.37877336657982,34.1225666901321],[-118.3787634437892,34.12256431711035],[-118.37875186450516,34.12256126140786],[-118.37874028791609,34.12255855002022],[-118.3787303615322,34.12255548985553],[-118.37871878134987,34.12255209132498],[-118.37870885406768,34.12254868758868],[-118.37869727298701,34.12254494548646],[-118.37868734480652,34.12254154174988],[-118.37867576282756,34.12253745607597],[-118.37866583195206,34.12253336519616],[-118.37865590107663,34.12252927505988],[-118.37864596840453,34.12252484060824],[-118.37863438462894,34.122520411362],[-118.37862445195684,34.12251597765357],[-118.37861451838643,34.12251119888604],[-118.37860458301938,34.12250607803399],[-118.37859464675401,34.12250095643799],[-118.37858471138699,34.12249583558532],[-118.37857642712343,34.12249036521149],[-118.37856648995977,34.12248490078653],[-118.37855655279611,34.12247943636128],[-118.37854826673592,34.12247362315833],[-118.37853832777562,34.12246781516059],[-118.37853003991881,34.12246165838511],[-118.37852175206197,34.12245550160917],[-118.37851181130506,34.12244935003841],[-118.37850352165162,34.12244284968978],[-118.37849523199817,34.12243634934065],[-118.37848694234472,34.12242984899103],[-118.37847865179297,34.122423005069],[-118.3784703603429,34.12241616114643],[-118.3784620679945,34.12240897439503],[-118.37845542854625,34.12240212526564],[-118.37844547431456,34.12239288228664],[-118.37844049315633,34.12238740223849],[-118.37843220260456,34.12238055831303],[-118.37842390935788,34.1223733715586],[-118.3784156188061,34.12236652763201],[-118.37840732735602,34.12235968370488],[-118.3783990377026,34.12235318334935],[-118.37839074804914,34.12234668299332],[-118.37838245839572,34.1223401826368],[-118.37837417053889,34.12233402585202],[-118.3783658826821,34.12232786906679],[-118.37835594192516,34.12232171748674],[-118.37834765586497,34.12231590427295],[-118.37833771690468,34.12231009626437],[-118.37832778063932,34.12230463182782],[-118.37831949547746,34.12229916144157],[-118.37830955831377,34.12229369700432],[-118.37829962294673,34.12228857613909],[-118.37828968757968,34.12228345452991],[-118.37827975221266,34.12227833366408],[-118.37826981864225,34.12227355562678],[-118.37825988597012,34.12226912190542],[-118.37824995419636,34.12226468744015],[-118.37824002152426,34.12226025297459],[-118.378228438647,34.1222561672871],[-118.37821850866985,34.12225207713735],[-118.37820857869269,34.12224832981637],[-118.37819699671374,34.12224458770087],[-118.3781870676349,34.12224084037957],[-118.37817548835089,34.12223744183636],[-118.37816556017037,34.12223403808741],[-118.37815398268299,34.12223098237298],[-118.37814240609393,34.12222827097474],[-118.37813247971002,34.1222252107981],[-118.3781209049176,34.12222284222876],[-118.37810932832852,34.12222013083026],[-118.3780994073345,34.1222181013715],[-118.37808783164377,34.12221573280197],[-118.37807625864797,34.12221370780509],[-118.37806468655049,34.12221202712455],[-118.37805311535129,34.12221034570035],[-118.37804154505044,34.12220900784882],[-118.3780299747496,34.12220766999732],[-118.37802005645054,34.12220632694012],[-118.37800848704798,34.12220533266134],[-118.3779969203404,34.12220468195535],[-118.37798535273447,34.12220403124933],[-118.37797378602689,34.12220338054333],[-118.37796222021758,34.12220307341003],[-118.37795065620494,34.12220310910595],[-118.37793909219228,34.12220314554544],[-118.37792752817964,34.12220318198499],[-118.37791596596364,34.12220356125363],[-118.37790440464592,34.12220428483874],[-118.37789284332823,34.12220500768021],[-118.37788128290879,34.12220573052162],[-118.37786972338773,34.12220679767948],[-118.37785816386668,34.12220786409364],[-118.37784660614221,34.12220927408054],[-118.37783504841777,34.12221068406742],[-118.37782349159163,34.12221243762708],[-118.37781193746046,34.12221453475937],[-118.37780203263613,34.12221628311327],[-118.37779047940326,34.1222187238182],[-118.37777892437377,34.12222082095035],[-118.3777673711409,34.12222326091151],[-118.37775747170646,34.1222260399833],[-118.37774592027021,34.12222882426062],[-118.3777343697323,34.12223195136689],[-118.37772447209451,34.12223507401104],[-118.37771292155658,34.12223820111702],[-118.3777030257154,34.12224166658996],[-118.37769147877074,34.12224548158459],[-118.37768158203126,34.12224929062976],[-118.3776700359849,34.12225310488044],[-118.37766014283868,34.12225725749782],[-118.37765024879417,34.12226141085875],[-118.37764200225985,34.12226452755246],[-118.3776337593188,34.12226833139114],[-118.3776255136828,34.12227144882833],[-118.37761726714848,34.12227456626535],[-118.37761067171769,34.12227733418054],[-118.37760242518337,34.12228045161734],[-118.37759417595413,34.12228288190917],[-118.3775859285215,34.12228565577331],[-118.37757767929223,34.12228808532133],[-118.37756943006299,34.12229051561293],[-118.3775611790371,34.12229260233201],[-118.37755292890952,34.12229468905107],[-118.37754467788363,34.12229677577004],[-118.37753642685776,34.122298862489],[-118.37752817493357,34.12230060563549],[-118.37751992121272,34.12230200520955],[-118.3775116683902,34.12230374835602],[-118.37750341466939,34.1223051486737],[-118.3774935071501,34.122306209881],[-118.37748525342928,34.12230760945497],[-118.37747699791181,34.12230866545662],[-118.37746874149605,34.12230937862953],[-118.37746048418194,34.12231009105876],[-118.37745222776618,34.12231080423165],[-118.37744231845026,34.12231152186654],[-118.37743406023787,34.12231189146708],[-118.37742580022883,34.12231191675162],[-118.3774175411181,34.12231228635216],[-118.37740762910727,34.12231231684237],[-118.3773993673016,34.12231199929823],[-118.37739110729258,34.12231202532643],[-118.37738284458858,34.12231136420996],[-118.37737293078112,34.1223110518715],[-118.3773646671788,34.12231039075496],[-118.37735640447482,34.12230972889485],[-118.37734813997422,34.12230872494963],[-118.37733987637189,34.12230806308951],[-118.37732995807285,34.12230672077758],[-118.37732169357224,34.12230571608869],[-118.377313427275,34.12230436782743],[-118.3773051591811,34.12230267599372],[-118.37729689288389,34.12230132773241],[-118.37728862389169,34.12229929306997],[-118.37728035579784,34.1222976012362],[-118.37727208680562,34.12229556583],[-118.37726381691512,34.12229353116737],[-118.37725554792293,34.12229149576108],[-118.37724727713412,34.12228911752597],[-118.37723900634529,34.12228673854712],[-118.37723073375982,34.12228401673938],[-118.37722080647764,34.12228061299231],[-118.37610562171426,34.12190041424898],[-118.37609900472384,34.12189837362752],[-118.37609238593686,34.12189599017571],[-118.37608576894648,34.12189394955414],[-118.37607915285439,34.12189225325026],[-118.37607253586401,34.12189021262865],[-118.37606591977196,34.12188851558101],[-118.37605765167807,34.12188682448269],[-118.37605103828095,34.12188547100907],[-118.37604442398552,34.12188411753545],[-118.37603780879176,34.12188276406177],[-118.37602954249454,34.12188141579376],[-118.37602458289585,34.12188074426258],[-118.37601631659858,34.12187939599453],[-118.3760097040998,34.12187838609492],[-118.37600143959918,34.12187738140096],[-118.375994828897,34.12187671507539],[-118.37598821909314,34.12187639232398],[-118.37597995549086,34.12187573120409],[-118.3759733465853,34.12187540770899],[-118.37596673678144,34.12187508495752],[-118.37595847497576,34.12187476741173],[-118.37595186696853,34.12187478749075],[-118.37594360695951,34.12187481351909],[-118.37593699895228,34.12187483434178],[-118.37593039274167,34.12187519799491],[-118.37592213452926,34.12187556759736],[-118.37591552742036,34.12187593125049],[-118.37590892120974,34.1218762956473],[-118.37590066389564,34.12187700808017],[-118.37589405948168,34.12187771530741],[-118.37588745596604,34.12187876610871],[-118.37587920044857,34.12187982285935],[-118.37587259693292,34.12188087366064],[-118.37586599341728,34.12188192446192],[-118.37585773969643,34.12188332404291],[-118.37585113618078,34.12188437484416],[-118.37584453625838,34.12188611279353],[-118.37583793453938,34.12188750791249],[-118.37583133371865,34.12188924586181],[-118.37582308179446,34.12189098901678],[-118.37581648187206,34.12189272696602],[-118.37580988284799,34.12189480774558],[-118.37580328382391,34.12189688926877],[-118.37579668569816,34.12189897079191],[-118.3757900884707,34.12190139588901],[-118.37578349124324,34.12190382098603],[-118.37577689401581,34.12190624533937],[-118.37577029678835,34.12190867043626],[-118.37576370045923,34.12191143910704],[-118.37575710502841,34.12191420703405],[-118.37575050959761,34.12191697570466],[-118.37574391416679,34.12191974437518],[-118.37573897163611,34.1219228506702],[-118.37573237710359,34.12192596291447],[-118.3757257834694,34.1219290744149],[-118.37572084273533,34.12193252502715],[-118.37571424999948,34.12193598010121],[-118.37570765726359,34.12193943517517],[-118.37570271742787,34.12194288578694],[-118.37569612469198,34.12194634086064],[-118.37569118575458,34.12195013504597],[-118.37568624681712,34.12195392848747],[-118.37567965497956,34.12195772713444],[-118.37567471783876,34.12196186414936],[-118.37566977890131,34.12196565833401],[-118.37566484176054,34.12196979534854],[-118.3756582517196,34.12197393756855],[-118.37565331637542,34.12197841815637],[-118.3756483783363,34.12198255517028],[-118.37564344209383,34.12198703575763],[-118.37563850674968,34.12199151634477],[-118.37563357050719,34.12199599693166],[-118.37563028806314,34.12200081662995],[-118.37562535182063,34.12200529721635],[-118.37562041737478,34.12201012137607],[-118.37561713582906,34.12201494032988],[-118.3756122013832,34.12201976448905],[-118.37560891893914,34.12202458344232],[-118.37560398539162,34.12202975043074],[-118.37560070294754,34.12203457012711],[-118.37559577029832,34.12203973711494],[-118.37559248965091,34.12204489964049],[-118.3755892090035,34.12205006216572],[-118.37558592745775,34.12205522469058],[-118.37558264860698,34.12206073078855],[-118.37557936795956,34.1220658940565],[-118.37557608821045,34.12207140015376],[-118.37557280935968,34.12207690625063],[-118.37556952961057,34.12208241234717],[-118.37556790276162,34.12208791249405],[-118.37556462301251,34.1220934185899],[-118.3755613432634,34.12209892468532],[-118.37555971821104,34.12210476914799],[-118.37555643846193,34.12211027524272],[-118.37555481251125,34.12211611896087],[-118.3755531874589,34.12212196342235],[-118.37555155971162,34.12212746431029],[-118.37554993376095,34.12213330877097],[-118.37554665580848,34.12213915843684],[-118.37554503075613,34.12214500215305],[-118.37554505680728,34.12215084140686],[-118.37554343085661,34.12215668586592],[-118.37554180490596,34.12216253032455],[-118.37554018075193,34.12216871761207],[-118.37554020680307,34.12217455686423],[-118.37553858085242,34.12218040132161],[-118.37553860870018,34.12218658414582],[-118.37553698364783,34.12219242860243],[-118.37553700969896,34.12219826785295],[-118.37553703754675,34.12220444993217],[-118.37553706359789,34.12221028918187],[-118.37553709144565,34.12221647200389],[-118.37553711749679,34.12222231125276],[-118.37553714534458,34.12222849407389],[-118.37553717139572,34.12223433332193],[-118.37553719924351,34.12224051539851],[-118.37553722529465,34.12224635464571],[-118.3755389033476,34.1222521886869],[-118.37553893119535,34.12225837150585],[-118.3755406101466,34.1222642055462],[-118.37554063619777,34.12227004479176],[-118.37554231604736,34.12227622240373],[-118.3755439941003,34.12228205644286],[-118.37554567215327,34.12228789048157],[-118.3755456982044,34.1222937297255],[-118.37554737715566,34.12229956376334],[-118.37554905520862,34.12230539780085],[-118.37555238526338,34.12231122663228],[-118.37555406331632,34.12231706066898],[-118.37555574047096,34.12232255113294],[-118.3755574185239,34.12232838516886],[-118.37556074678204,34.12233387042644],[-118.37556242573329,34.1223397044616],[-118.37556575399144,34.12234518971844],[-118.3755690831479,34.12235067497496],[-118.3755707594042,34.1223561661804],[-118.37557408856065,34.12236165143625],[-118.37557741681874,34.12236713669169],[-118.3755807459752,34.12237262194677],[-118.37558407243671,34.12237776437309],[-118.37558740159314,34.12238324962748],[-118.37559072895296,34.1223883913095],[-118.37559405631276,34.12239353373487],[-118.37559738277427,34.12239867541626],[-118.3756023621359,34.1224038118917],[-118.37560568769909,34.12240861074419],[-118.37560901505888,34.12241375242466],[-118.37561399262388,34.12241854607092],[-118.37561897018885,34.12242333897327],[-118.37562229575205,34.12242813782466],[-118.37562727331702,34.12243293072648],[-118.37563225178033,34.12243772437165],[-118.3756355755469,34.12244217890672],[-118.37564055131524,34.12244662897963],[-118.3756488409687,34.12245312932797],[-118.37565547951863,34.12245997845316],[-118.3756637817485,34.1224692266305],[-118.37567373687847,34.1224788139165],[-118.37568204000664,34.12248840566336],[-118.37569034313482,34.12249799740918],[-118.3756986471613,34.12250758915385],[-118.3757069520861,34.122517524469],[-118.37571525611258,34.1225274590393],[-118.37572191083223,34.12253774387281],[-118.37573021755365,34.12254802275574],[-118.37573687137494,34.12255830684308],[-118.3757451780964,34.12256858572356],[-118.37575183371433,34.12257921263598],[-118.37575849023058,34.12258984029073],[-118.37576514764515,34.1226008107717],[-118.37577015126128,34.12261144362935],[-118.37577680867588,34.12262241410752],[-118.37578181408861,34.12263339053347],[-118.37578847150318,34.12264436100872],[-118.37579347871258,34.12265568025916],[-118.37579848592198,34.12266700025175],[-118.37580349313137,34.12267831949917],[-118.37580684744064,34.12268964395064],[-118.37581185465004,34.12270096319502],[-118.37581521165424,34.12271263121418],[-118.37582021796534,34.1227239511991],[-118.37582357496954,34.12273561921515],[-118.37582693107545,34.12274728722952],[-118.37583028807967,34.12275895524229],[-118.3758319939804,34.12277097202957],[-118.37583535098463,34.12278264003908],[-118.3758370550887,34.12279431325261],[-118.37583876098944,34.12280633003481],[-118.37584211889197,34.12281834160978],[-118.37584217189256,34.12283002002397],[-118.37584387779329,34.12284203605749],[-118.37584558369402,34.1228540528329],[-118.37584563759292,34.12286607481226],[-118.37584734439197,34.1228780915843],[-118.37584739649427,34.12288976999025],[-118.37584745039317,34.12290179196452],[-118.3758475042921,34.12291381319342],[-118.37584755908931,34.12292583516427],[-118.37584596098642,34.12293786233904],[-118.37584601488535,34.12294988430649],[-118.37584441678246,34.12296191073418],[-118.37584281778125,34.1229735950778],[-118.37584121967835,34.12298562224577],[-118.37583962157547,34.122997649412],[-118.37583636967413,34.12300933821263],[-118.37583477157125,34.12302136463187],[-118.37583152056825,34.12303305342917],[-118.37582826866691,34.12304474222491],[-118.37582501676556,34.12305643101903],[-118.37582176576257,34.12306811906788],[-118.37581851386125,34.12307980785878],[-118.37581526106159,34.12309115307887],[-118.37581035715847,34.12310284707215],[-118.37580710435881,34.12311419154551],[-118.37580219955737,34.12312554196662],[-118.37579729385759,34.12313689238616],[-118.37579238725952,34.12314789923523],[-118.37578583045625,34.12315925485738],[-118.37578092385819,34.12317026170354],[-118.37577601726008,34.12318126854828],[-118.37576945776189,34.12319227985352],[-118.37576289826367,34.12320294833228],[-118.37575633786717,34.12321361680965],[-118.37574977747065,34.12322428528572],[-118.37574321707413,34.12323495376039],[-118.37573665488097,34.12324527866522],[-118.37572844158434,34.12325560877435],[-118.37572022649105,34.12326559531375],[-118.37571366429789,34.12327592021479],[-118.37570544920466,34.1232859067518],[-118.37569723231474,34.12329555046296],[-118.37568901632314,34.12330553699763],[-118.37568079943324,34.12331517996289],[-118.37567092874488,34.12332448456437],[-118.375654483287,34.12334102343151],[-118.37564296958,34.12335239390078],[-118.37563474909683,34.12336134972453],[-118.37562487571356,34.12336996792853],[-118.37561500412689,34.12337892895597],[-118.37560347694514,34.12338720879581],[-118.37559360266356,34.12339582625349],[-118.37558372658533,34.12340375731816],[-118.37557219940359,34.12341203715552],[-118.37556232242704,34.12341996747499],[-118.37555079255038,34.12342756091881],[-118.37553926177539,34.12343515361834],[-118.37552938390053,34.12344274111158],[-118.3755178504306,34.12344999024197],[-118.37550631965563,34.12345723862808],[-118.37549313328554,34.12346414939516],[-118.375481598019,34.12347071138846],[-118.3754717138559,34.12347692535176],[-118.37531671763847,34.1235430122656],[-118.37507927853582,34.12364507773147],[-118.37503475803037,34.12366410702374],[-118.37500508667651,34.12367862606819],[-118.37498530846892,34.12368899181962],[-118.3749474103437,34.12371143594643],[-118.37492105916316,34.1237297223168],[-118.37490459573895,34.12374248187295],[-118.3748881350097,34.12375592930374],[-118.37487990464506,34.12376248086334],[-118.37484864327317,34.12379108685528],[-118.37481246811667,34.12382898251052],[-118.37480097417262,34.12384481853013],[-118.37478783092168,34.12386100331834],[-118.37477142229471,34.12388612974231],[-118.37475501726098,34.12391194180312],[-118.37474518250527,34.12392914612109],[-118.3747370024463,34.12394703310503],[-118.37472882238731,34.12396491934158],[-118.37472555970619,34.12397420379305],[-118.37471903254735,34.12399242912746],[-118.37471577076454,34.1240017128323],[-118.37470763472302,34.12402956022238],[-118.37469954449557,34.12406736876395],[-118.3746963258319,34.12408661436259],[-118.37469471605093,34.12409589359518],[-118.37469315028738,34.12411513323816],[-118.37469323652563,34.12413436841491],[-118.37469332186559,34.12415360284359],[-118.37469336498472,34.12416322042814],[-118.37469342966342,34.12417764643102],[-118.37469683427832,34.1241999625209],[-118.37472428769175,34.12442760950292],[-118.37473460394446,34.12451757035731],[-118.374739736918,34.12455705559639],[-118.37474320082174,34.12459276682885],[-118.37474488695952,34.1246003185233],[-118.37474494535003,34.12461337094338],[-118.37474671503114,34.12463946982825],[-118.37474677162498,34.1246521786794],[-118.3747484820173,34.12466522588595],[-118.37474693511837,34.12468858815166],[-118.37474700428866,34.12470404475283],[-118.37474381526941,34.12472981566367],[-118.37474222165808,34.12474287326922],[-118.37473903353714,34.12476864416822],[-118.37473743812919,34.12478135894908],[-118.37473419071945,34.12479407818989],[-118.374730944208,34.12480679742878],[-118.37472444938851,34.12483223515719],[-118.37472120197877,34.12484495439034],[-118.37471795367068,34.12485733005959],[-118.37470980595107,34.12488242941641],[-118.37470000263637,34.1249068475913],[-118.37468854731985,34.12493127022094],[-118.37467709110504,34.12495535002559],[-118.37465742428851,34.12499078966135],[-118.37465086748527,34.12500214503599],[-118.37462954417538,34.12503655991745],[-118.37461312207367,34.12505859394147],[-118.37459669817534,34.12508028439866],[-118.37456875518008,34.12511197158254],[-118.37454902278658,34.12513264175435],[-118.37452928500315,34.12515228123873],[-118.37449967293811,34.12518019517722],[-118.37448452821735,34.12519455499626],[-118.37267972475976,34.12442734162063],[-118.37250857144309,34.12434202882586],[-118.37230990517467,34.12421629748358],[-118.37218863667901,34.12411103568853],[-118.37121217594459,34.12314304818773],[-118.3711574533197,34.12305434343155],[-118.3711180598057,34.12295743840477],[-118.37082878425103,34.12193399731782],[-118.37082306098496,34.12184749239225],[-118.37085117515959,34.12174014851216],[-118.37273093828928,34.11871071093101],[-118.37278585002892,34.11855980890922],[-118.37275719532435,34.11836218070289],[-118.37267407620226,34.11810709006112],[-118.37197281835898,34.11698926792271],[-118.37185366587677,34.11683062109135],[-118.37083457402109,34.11568794043792],[-118.37068622685855,34.11550389698889],[-118.37054710578167,34.11529713953979],[-118.36997267042969,34.11415289190585],[-118.36983266680774,34.11392878787975],[-118.36910543664838,34.11304879455168],[-118.36894774206118,34.11286593394437],[-118.36877136775959,34.11264787835984],[-118.36807346445723,34.11160521832729],[-118.36793045375975,34.11141081883235],[-118.3670200246291,34.11029801601848],[-118.36692149773835,34.11013792753373],[-118.36535696266299,34.10721126176031],[-118.36441405913347,34.10559737984341],[-118.36339441981768,34.10419538470004],[-118.3629117633604,34.10352229855181],[-118.36266169058479,34.10308332610209],[-118.36252292188455,34.10267296884326],[-118.3621741095037,34.10164825895766],[-118.36548897325872,34.10171301408533],[-118.36630024286012,34.10171093876247],[-118.36723219136712,34.10323768300094],[-118.36726697819634,34.10328956440429],[-118.3673137157382,34.10333597211751],[-118.36940236854228,34.1048375695801],[-118.36946780939168,34.10488836144847],[-118.36953600230271,34.10495166725826],[-118.3709469746612,34.10662202583877],[-118.37105830517446,34.10674343060562],[-118.37116206564255,34.10683660592834],[-118.37284057622435,34.10796189974807],[-118.37296805191316,34.10805928337997],[-118.37304681770283,34.10812449814536],[-118.37311334165038,34.10818296498167],[-118.3745825852586,34.10955647062854],[-118.37467401192971,34.10965489713686],[-118.37473940499025,34.10975369013006],[-118.37566739949328,34.11157137883981],[-118.37574376209476,34.11175103973384],[-118.37582344721685,34.11195265634178]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000157,"geom:area_square_m":1612014.04069,"geom:bbox":"-118.382365961,34.101648259,-118.36217411,34.125194555","geom:latitude":34.113787,"geom:longitude":-118.372505,"iso:country":"US","lbl:latitude":34.113383,"lbl:longitude":-118.374101,"lbl:max_zoom":18,"mps:latitude":34.113678,"mps:longitude":-118.373193,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:azb_x_preferred":["لورل کنیون"],"name:dan_x_preferred":["Laurel Canyon"],"name:deu_x_preferred":["Laurel Canyon"],"name:eng_x_preferred":["Laurel Canyon"],"name:eng_x_variant":["Laurel Cyn","Laurelcanyon"],"name:fas_x_preferred":["لورل کنیون"],"name:fra_x_preferred":["Laurel Canyon"],"name:ita_x_preferred":["Laurel Canyon"],"name:jpn_x_preferred":["ローレル・キャニオン"],"name:nld_x_preferred":["Laurel Canyon"],"name:por_x_preferred":["Laurel Canyon"],"reversegeo:latitude":34.113678,"reversegeo:longitude":-118.373193,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865833,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q462539"},"wof:country":"US","wof:geomhash":"9ba2e9309f7653767640940e7e7e8865","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108561745,"neighbourhood_id":85865833,"region_id":85688637}],"wof:id":1108561745,"wof:lastmodified":1566623962,"wof:name":"Laurel Canyon","wof:parent_id":85865833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869407],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561747.geojson b/fixtures/microhoods/1108561747.geojson new file mode 100644 index 0000000..e5e3fc5 --- /dev/null +++ b/fixtures/microhoods/1108561747.geojson @@ -0,0 +1 @@ +{"id":1108561747,"type":"Feature","bbox":[-118.30926493695246,34.090787,-118.291735,34.10178051048084],"geometry":{"type":"Polygon","coordinates":[[[-118.30053281764141,34.1005657760543],[-118.3005400884369,34.1017618219129],[-118.29983523959609,34.10176361332784],[-118.29947023343492,34.10176453941337],[-118.2983563143978,34.10176757652729],[-118.2972599610177,34.10177055934056],[-118.29659807872308,34.10177219133357],[-118.2961649290594,34.10177325726158],[-118.29569464753342,34.10177452774656],[-118.2945189118283,34.10177769652046],[-118.29365160099792,34.10177980234177],[-118.29344845148798,34.10178029476621],[-118.29335926494994,34.10178051048084],[-118.29312688965057,34.10177806621074],[-118.29291661739876,34.10175703551734],[-118.29280919865371,34.10173792765536],[-118.2926754439995,34.10170600707274],[-118.29255865223277,34.1016701262496],[-118.2923898129768,34.10160382512521],[-118.29223023085983,34.10152320566104],[-118.29217939879116,34.10149329858885],[-118.29204730422359,34.10140789980335],[-118.29197201372466,34.1013407728028],[-118.29188262865895,34.10128431327335],[-118.29178040936279,34.10123273855896],[-118.2917679859882,34.10122371438443],[-118.291761,34.099087],[-118.291758,34.098153],[-118.291755,34.097],[-118.29175,34.095548],[-118.291746,34.094499],[-118.291743,34.093445],[-118.29174,34.092426],[-118.291735,34.090874],[-118.292792,34.090867],[-118.293881,34.090861],[-118.294972,34.090855],[-118.296062,34.090848],[-118.297027,34.090843],[-118.297362,34.09084],[-118.297868,34.090838],[-118.29838,34.090834],[-118.299193,34.09083],[-118.299407,34.090828],[-118.300482,34.090822],[-118.301213,34.090818],[-118.301875,34.090814],[-118.302461,34.090811],[-118.303267,34.090806],[-118.304605,34.090798],[-118.305036,34.090795],[-118.305293,34.090793],[-118.305958,34.090789],[-118.305992,34.090789],[-118.30636,34.090787],[-118.306925,34.091719],[-118.307097,34.091973],[-118.30722,34.092139],[-118.307424,34.092388],[-118.30763,34.092613],[-118.307779,34.092763],[-118.308015,34.092979],[-118.308265,34.093184],[-118.308527,34.093379],[-118.308804,34.093564],[-118.309202,34.093816],[-118.30921446694288,34.09382387125314],[-118.30921517470505,34.09390736976528],[-118.30921826041805,34.09427123310211],[-118.30921931504018,34.09439554848919],[-118.30922355239336,34.09489506149714],[-118.30922921088136,34.09556303641117],[-118.30923123478568,34.09579967755381],[-118.30923814283022,34.09660717374219],[-118.30924040478811,34.09687130899997],[-118.30925113696082,34.09810743816604],[-118.30925113785912,34.098107720095],[-118.30926493695246,34.10051485147932],[-118.30053281764141,34.1005657760543]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000175,"geom:area_square_m":1794197.320556,"geom:bbox":"-118.309264937,34.090787,-118.291735,34.1017805105","geom:latitude":34.096124,"geom:longitude":-118.300021,"iso:country":"US","lbl:latitude":34.094774,"lbl:longitude":-118.301127,"lbl:max_zoom":18,"mps:latitude":34.095693,"mps:longitude":-118.300611,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:azb_x_preferred":["لیتل آرمنیا"],"name:aze_x_preferred":["Kiçik Ermənistan"],"name:deu_x_preferred":["Little Armenia"],"name:eng_x_preferred":["Little Armenia"],"name:eus_x_preferred":["Little Armenia"],"name:fas_x_preferred":["لیتل آرمنیا"],"name:fra_x_preferred":["Little Armenia"],"name:hye_x_preferred":["Փոքր Հայաստան"],"name:ita_x_preferred":["Little Armenia"],"name:jpn_x_preferred":["リトル・アルメニア"],"name:nld_x_preferred":["Little Armenia"],"name:pol_x_preferred":["Little Ethiopia"],"name:rus_x_preferred":["Маленькая Армения"],"name:spa_x_preferred":["Little Armenia"],"name:ukr_x_preferred":["Маленька Вірменія"],"reversegeo:latitude":34.095693,"reversegeo:longitude":-118.300611,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865827,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1795364"},"wof:country":"US","wof:geomhash":"0a81176fa90ac9b6f159d6aa0a15846c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108561747,"neighbourhood_id":85865827,"region_id":85688637}],"wof:id":1108561747,"wof:lastmodified":1566623962,"wof:name":"Little Armenia","wof:parent_id":85865827,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869425],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561749.geojson b/fixtures/microhoods/1108561749.geojson new file mode 100644 index 0000000..6a4e7c3 --- /dev/null +++ b/fixtures/microhoods/1108561749.geojson @@ -0,0 +1 @@ +{"id":1108561749,"type":"Feature","bbox":[-118.3654937794286,34.05563892794969,-118.36275342571058,34.05824407556441],"geometry":{"type":"Polygon","coordinates":[[[-118.3643566664533,34.05824407556441],[-118.363816274186,34.058183],[-118.363018,34.058049],[-118.36275342571058,34.05800450986904],[-118.362959,34.057514],[-118.36350514759518,34.0576872642743],[-118.36449309939363,34.05563892794969],[-118.364934,34.05576],[-118.365452,34.055818],[-118.3654937794286,34.05582280914285],[-118.3643566664533,34.05824407556441]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":30272.531037,"geom:bbox":"-118.365493779,34.0556389279,-118.362753426,34.0582440756","geom:latitude":34.057048,"geom:longitude":-118.364284,"iso:country":"US","lbl:latitude":34.056134,"lbl:longitude":-118.364199,"lbl:max_zoom":18,"mps:latitude":34.057039,"mps:longitude":-118.364378,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Little Ethiopia"],"name:eng_x_preferred":["Little Ethiopia"],"name:eng_x_variant":["Littleethiopia"],"name:fra_x_preferred":["Little Ethiopia"],"name:pol_x_preferred":["Little Ethiopia"],"name:spa_x_preferred":["Little Ethiopia"],"reversegeo:latitude":34.057039,"reversegeo:longitude":-118.364378,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420551221,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q634624"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"b4bf95e668be14321cddd342236e9b5f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561749,"neighbourhood_id":420551221,"region_id":85688637}],"wof:id":1108561749,"wof:lastmodified":1566623961,"wof:name":"Little Ethiopia","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869427],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561751.geojson b/fixtures/microhoods/1108561751.geojson new file mode 100644 index 0000000..4daec71 --- /dev/null +++ b/fixtures/microhoods/1108561751.geojson @@ -0,0 +1 @@ +{"id":1108561751,"type":"Feature","bbox":[-118.44561525656553,34.04612957781348,-118.43325336281785,34.05917608846353],"geometry":{"type":"Polygon","coordinates":[[[-118.44256553689863,34.05917608846353],[-118.44216613577393,34.05823417621738],[-118.44266725303567,34.05809101747131],[-118.44214885586837,34.05713184763555],[-118.441673658465,34.05629435464927],[-118.44120710101441,34.05548548604665],[-118.44057638446087,34.05463366032457],[-118.43985926837942,34.05388204228483],[-118.43678344518673,34.05029565873813],[-118.43604904919974,34.05050325793049],[-118.43325336281785,34.04722905413272],[-118.43507137089958,34.04612957781348],[-118.43689576457302,34.04824827395971],[-118.438407756311,34.04999499694248],[-118.43793255890763,34.05013816935656],[-118.43920263196752,34.05159135572764],[-118.44220069558513,34.05511326073367],[-118.44277957242197,34.05604382095142],[-118.44373860718149,34.05770448764915],[-118.4450000402886,34.05735374609992],[-118.44561525656553,34.05833627976211],[-118.44256553689863,34.05917608846353]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":235610.872378,"geom:bbox":"-118.445615257,34.0461295778,-118.433253363,34.0591760885","geom:latitude":34.052237,"geom:longitude":-118.438933,"iso:country":"US","lbl:latitude":34.051755,"lbl:longitude":-118.438594,"lbl:max_zoom":18,"mps:latitude":34.049341,"mps:longitude":-118.436451,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:deu_x_preferred":["Tehrangeles"],"name:eng_x_preferred":["Persian Square"],"name:eng_x_variant":["Little Persia","Tehrangeles"],"name:fas_x_preferred":["تهرانجلس"],"name:fra_x_preferred":["Little Persia"],"name:rus_x_preferred":["Тегеранджелес"],"name:spa_x_preferred":["Tehrangeles"],"name:tgk_x_preferred":["Теҳронҷелес"],"reversegeo:latitude":34.049341,"reversegeo:longitude":-118.436451,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85855873,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1482230"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"9643db0904766617198202e2db6e099b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561751,"neighbourhood_id":85855873,"region_id":85688637}],"wof:id":1108561751,"wof:lastmodified":1566623962,"wof:name":"Little Persia","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869431],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561753.geojson b/fixtures/microhoods/1108561753.geojson new file mode 100644 index 0000000..0744729 --- /dev/null +++ b/fixtures/microhoods/1108561753.geojson @@ -0,0 +1 @@ +{"id":1108561753,"type":"Feature","bbox":[-118.24473688187331,34.045538,-118.238039,34.05342822916984],"geometry":{"type":"Polygon","coordinates":[[[-118.238115,34.048988],[-118.238102,34.04841],[-118.238084,34.047162],[-118.23808,34.046905],[-118.238061,34.045538],[-118.239561,34.04611],[-118.240196,34.046352],[-118.240375,34.04642],[-118.241056,34.04668],[-118.242504,34.047326],[-118.243077,34.047608],[-118.243789,34.04796],[-118.244727,34.048517],[-118.24473688187331,34.04852286364169],[-118.2446096761643,34.04865588243341],[-118.24455043855951,34.04871851611963],[-118.24451588126887,34.04875430847793],[-118.24449448789038,34.04877633482339],[-118.24447967556964,34.0487911346665],[-118.24446323639995,34.04881383757915],[-118.24441226419411,34.04888091987946],[-118.24348982285639,34.0500956245501],[-118.24239463459124,34.05151641430494],[-118.24168746193496,34.05241638500178],[-118.24112336305568,34.05313608093771],[-118.24096709212884,34.053324277823],[-118.24087494294697,34.05342475858297],[-118.24087188998863,34.05342822916984],[-118.240862,34.05342],[-118.239698,34.052451],[-118.238039,34.05107],[-118.238115,34.048988]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":314407.270432,"geom:bbox":"-118.244736882,34.045538,-118.238039,34.0534282292","geom:latitude":34.04933,"geom:longitude":-118.24068,"iso:country":"US","lbl:latitude":34.048857,"lbl:longitude":-118.240008,"lbl:max_zoom":18,"mps:latitude":34.049322,"mps:longitude":-118.24073,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":20,"mz:min_zoom":15,"mz:tier_metro":1,"name:afr_x_preferred":["Little Tokyo"],"name:ceb_x_preferred":["Little Tokyo Historic District"],"name:deu_x_preferred":["Little Tokyo Historic District"],"name:eng_x_preferred":["Little Tokyo"],"name:eng_x_variant":["Littletokyo"],"name:epo_x_preferred":["Eta Tokio"],"name:fas_x_preferred":["لیتل توکیو"],"name:fra_x_preferred":["Little Tokyo"],"name:ita_x_preferred":["Little Tokyo"],"name:jpn_x_preferred":["リトル・トーキョー"],"name:kor_x_preferred":["리틀도쿄"],"name:nld_x_preferred":["Little Tokyo"],"name:pol_x_preferred":["Little Tokyo"],"name:zho_x_preferred":["小东京"],"reversegeo:latitude":34.049322,"reversegeo:longitude":-118.24073,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865837,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1780798"},"wof:country":"US","wof:geomhash":"943472b434ccef79e598f6e2adb8d5e1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108561753,"neighbourhood_id":85865837,"region_id":85688637}],"wof:id":1108561753,"wof:lastmodified":1566623962,"wof:name":"Little Tokyo","wof:parent_id":85865837,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867339],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561755.geojson b/fixtures/microhoods/1108561755.geojson new file mode 100644 index 0000000..9bab992 --- /dev/null +++ b/fixtures/microhoods/1108561755.geojson @@ -0,0 +1 @@ +{"id":1108561755,"type":"Feature","bbox":[-118.51160800526,34.05778,-118.487632,34.1305018600442],"geometry":{"type":"Polygon","coordinates":[[[-118.492016,34.05778],[-118.492135,34.05789],[-118.492266,34.057984],[-118.492387,34.058053],[-118.492658,34.058184],[-118.492965,34.058331],[-118.493074,34.058402],[-118.493159,34.058473],[-118.493224,34.058541],[-118.493287,34.058627],[-118.493338,34.058718],[-118.493375,34.058814],[-118.493399,34.058927],[-118.493405,34.059027],[-118.493384,34.059653],[-118.493395,34.059764],[-118.493423,34.059873],[-118.493466,34.059978],[-118.493524,34.060078],[-118.493596,34.060172],[-118.493682,34.060258],[-118.493779,34.060334],[-118.493887,34.0604],[-118.494004,34.060454],[-118.494022,34.060461],[-118.494128,34.060496],[-118.494257,34.060526],[-118.494428,34.060544],[-118.494581,34.060541],[-118.494713,34.060524],[-118.494842,34.060494],[-118.494965,34.060451],[-118.495097,34.060386],[-118.495189,34.060329],[-118.495261,34.060271],[-118.495285,34.060251],[-118.495332,34.060206],[-118.495437781294,34.0602436823115],[-118.495613944937,34.0603800200215],[-118.495598771785,34.0604694669025],[-118.495575707839,34.0605626615752],[-118.495518395241,34.0606666084923],[-118.495466140035,34.0607502992509],[-118.49542200791,34.060844573371],[-118.495385386882,34.0609338242497],[-118.49536138592,34.0610241041617],[-118.495360260147,34.0611080135339],[-118.495365076036,34.0612293944876],[-118.495407312062,34.0615438416378],[-118.495492328281,34.0618307622861],[-118.495561566333,34.0621047861574],[-118.495610484301,34.062290620765],[-118.495653319923,34.0624111514086],[-118.495706191196,34.0625032026759],[-118.495777537857,34.062607877634],[-118.495999840587,34.0628411718392],[-118.496130436704,34.0629719554607],[-118.496221999132,34.0630760115118],[-118.496276661133,34.0631952204175],[-118.496370349186,34.0634021347771],[-118.496470138425,34.0635767388128],[-118.496567147078,34.0637165994899],[-118.496642249739,34.0638330524852],[-118.49675431559,34.0639053629231],[-118.496942285675,34.0640035050656],[-118.497223059274,34.0641382943762],[-118.497447305044,34.0642305305045],[-118.497633987511,34.0642826814111],[-118.497937631496,34.0643269224133],[-118.498248516944,34.0643576118945],[-118.498583198865,34.0643760690762],[-118.498752231369,34.0643905360722],[-118.498855871726,34.064425659206],[-118.498983958769,34.0644903763525],[-118.499164817205,34.0646113152604],[-118.49948206133,34.0648967331513],[-118.499828134281,34.0652343631568],[-118.500070503559,34.0654942053606],[-118.50038534078,34.0658762398989],[-118.50062536059,34.0661310346521],[-118.500707104971,34.0662092124624],[-118.500773579343,34.0662722739074],[-118.500943291754,34.0664078930507],[-118.501224507562,34.0666235058635],[-118.501370927591,34.0667430671036],[-118.501469350056,34.0668168371493],[-118.501576376638,34.0668697203074],[-118.501691290964,34.0669059864047],[-118.501833939012,34.0669482043658],[-118.502042706079,34.0669825039783],[-118.502189044333,34.0669983281981],[-118.502377360634,34.0669981557551],[-118.502508928358,34.0670297137549],[-118.502593232672,34.0670723005248],[-118.502678076771,34.0671658000639],[-118.50282039027,34.0673499934537],[-118.502945697011,34.0675054488224],[-118.503031181129,34.067609000533],[-118.503099480237,34.0676641099406],[-118.503187035845,34.0677323288287],[-118.503261820916,34.0677905001027],[-118.503284321819,34.0678511471451],[-118.50329321495,34.0679839401025],[-118.503306236361,34.0681785601562],[-118.503341398975,34.068324976346],[-118.503397131822,34.068461118612],[-118.503443033115,34.0685565329683],[-118.503500527301,34.0686469847067],[-118.503591321442,34.068722234511],[-118.503693712546,34.068766192855],[-118.503832279268,34.068823387199],[-118.503938766525,34.0688761691062],[-118.504053610716,34.0689746940694],[-118.504122728037,34.0690684268735],[-118.50415787079,34.0691648090865],[-118.504184591458,34.0692808388364],[-118.504191916971,34.0693987695062],[-118.504186275557,34.0695149582783],[-118.504176528005,34.0696211738597],[-118.504144721792,34.0697415555162],[-118.504115967059,34.0698633166121],[-118.504101394716,34.0699914825897],[-118.504094420725,34.0701115122291],[-118.504095316001,34.0701878517843],[-118.504128867592,34.0702402503358],[-118.504187002104,34.0702955814927],[-118.504256282915,34.070340901122],[-118.504346457006,34.0703763141085],[-118.504510014065,34.0704387448711],[-118.504658028285,34.0705046244484],[-118.504876907298,34.0705883112493],[-118.504961608783,34.0706321957061],[-118.505017762095,34.0706890517926],[-118.505111323686,34.0707877252187],[-118.505205317798,34.0708791459814],[-118.505312306098,34.0709826188046],[-118.505399626952,34.0710659156042],[-118.505485196854,34.0711711242451],[-118.505540516433,34.0712725061949],[-118.505602836166,34.0713630308567],[-118.505622348906,34.0713736561083],[-118.505640012158,34.0713809509381],[-118.505823640985,34.0714059135883],[-118.505989903854,34.0714430306975],[-118.506137545502,34.0714994566249],[-118.506315732023,34.0715763295216],[-118.50639616788,34.0716268008449],[-118.506444634689,34.071704560021],[-118.5064781238,34.071834717413],[-118.506542240781,34.0720461215756],[-118.506654466804,34.0723555892867],[-118.506691442051,34.0724424610536],[-118.506737887706,34.0725014796257],[-118.506881921219,34.0725849426152],[-118.507027270341,34.0726300779963],[-118.507159013661,34.0726584064723],[-118.507196852028,34.0726908455846],[-118.507209520118,34.0727362612508],[-118.507193795485,34.0728107287487],[-118.507158860187,34.0728780633747],[-118.506585950024,34.0735452314889],[-118.506527378097,34.073618903805],[-118.506507592239,34.0736376615887],[-118.506469904836,34.0736581478534],[-118.506429622256,34.0736705893609],[-118.506354487165,34.0736786341084],[-118.506252559655,34.0736877247226],[-118.505580266911,34.0737690676751],[-118.505783040836,34.0738987777582],[-118.506161334216,34.0741943572949],[-118.506504961663,34.0744512843018],[-118.507063784106,34.0748603231744],[-118.507098340152,34.0749000502129],[-118.507120865783,34.0749648043384],[-118.507138864329,34.0750473502977],[-118.50725633524,34.0756956110908],[-118.507272051628,34.0757836419381],[-118.507305938259,34.0758703897916],[-118.507414994162,34.0760882923858],[-118.507513615162,34.0762507585323],[-118.507565477713,34.0763280636598],[-118.507667009331,34.0764274267236],[-118.507963707708,34.0766976366039],[-118.508129328294,34.076820776751],[-118.508241699159,34.0768957812688],[-118.508385970615,34.0769802138276],[-118.508534302552,34.0770732888875],[-118.508619264531,34.077148543998],[-118.50866587049,34.0772521475497],[-118.508691605531,34.0773548899031],[-118.508690554323,34.0774425142817],[-118.508672640233,34.0775145449005],[-118.508631812249,34.0775839992036],[-118.508565390324,34.077669330276],[-118.508399203241,34.0778246383885],[-118.508043764357,34.0781839448308],[-118.508224946993,34.0783304509344],[-118.508436285611,34.0785189069073],[-118.508704586003,34.0788175325538],[-118.508903703713,34.0790443669284],[-118.509095315047,34.0792269661997],[-118.509257325631,34.0793805858273],[-118.509488251561,34.0795279532917],[-118.50990273453,34.0797571962748],[-118.510167276835,34.0798922196136],[-118.510259418211,34.0799711049846],[-118.510347766976,34.0800973675369],[-118.51048909611,34.0803295532719],[-118.510907817117,34.0811101658293],[-118.511599835154,34.082361098924],[-118.51160800526,34.0825173276083],[-118.511581070725,34.0826494712776],[-118.510066473412,34.0857829165476],[-118.510041963989,34.0858105043549],[-118.510012458247,34.0858281649429],[-118.509934315575,34.0858547219466],[-118.509851094227,34.0858667898819],[-118.509754365947,34.0858679533893],[-118.50378433087,34.085572914738],[-118.503795261244,34.0857189901314],[-118.503814812704,34.0859060503898],[-118.503868296307,34.0861167781759],[-118.50396101519,34.0864252586714],[-118.504047846771,34.0867069007215],[-118.504097367423,34.0868935652115],[-118.504133591656,34.0870381377085],[-118.504145353798,34.0871673415217],[-118.504134839336,34.0872639960613],[-118.504091588935,34.0873455950565],[-118.504059157847,34.0874275672305],[-118.504021731636,34.0875378399191],[-118.503996954071,34.0876820848036],[-118.503978998743,34.0877755076265],[-118.503971936665,34.087903678508],[-118.503996901463,34.0882596809226],[-118.504069438497,34.0890121087653],[-118.504089219916,34.0891725222013],[-118.50410704839,34.0892697185278],[-118.50412156493,34.0893435652692],[-118.504117687256,34.0893975763015],[-118.504103249481,34.0894791459487],[-118.504068886601,34.0895652221304],[-118.504020969437,34.0896819123386],[-118.503956705069,34.0898279124137],[-118.503910343234,34.089909533749],[-118.503878855395,34.089975646168],[-118.503861127252,34.090053708674],[-118.503820392435,34.0909237802257],[-118.503792921502,34.0910989368323],[-118.503765446036,34.0912201288702],[-118.503718699806,34.0913531522855],[-118.503605841407,34.0915783493184],[-118.503479368931,34.0918283374372],[-118.503384931982,34.0919884021381],[-118.50330769619,34.0921327857989],[-118.503271897554,34.0922068621766],[-118.503246326958,34.0922961981567],[-118.503212882835,34.0924291346924],[-118.503184733667,34.0925621476459],[-118.503177002473,34.0927298504517],[-118.503182589705,34.0928626988414],[-118.50319916824,34.093010098212],[-118.50323183154,34.0931976227125],[-118.503275173443,34.0933579751589],[-118.503352336837,34.0935795301528],[-118.503454898371,34.0938134103691],[-118.503559378935,34.0940950936997],[-118.503639274645,34.0943255190871],[-118.503759653849,34.0945525184908],[-118.503828482929,34.0947067151431],[-118.503888180462,34.0948807529669],[-118.503922491783,34.0950439069407],[-118.503945252108,34.0952025068709],[-118.503960947702,34.0953315548618],[-118.50396150184,34.0954508985031],[-118.503932346937,34.0955990964379],[-118.50388633888,34.0957272631058],[-118.503824371811,34.0959011158985],[-118.503772554845,34.0960871313557],[-118.503747366422,34.0962208342072],[-118.503679517098,34.0967607339351],[-118.503651388135,34.0968799084183],[-118.50362383994,34.0969541543506],[-118.503601859291,34.0970344244117],[-118.50359392874,34.0971163895519],[-118.503618753739,34.097312233538],[-118.503640916888,34.0975318064719],[-118.503635555567,34.0976291674206],[-118.503621960594,34.0977180004754],[-118.503606363637,34.0978083762266],[-118.503550432611,34.0979224498921],[-118.503470170414,34.0980434409195],[-118.503313048908,34.0982369399052],[-118.503275680328,34.0983173853988],[-118.50324286014,34.0984151476722],[-118.503149525803,34.0987561430243],[-118.503131925557,34.0988774310827],[-118.50311876022,34.0990284840853],[-118.503125234914,34.0991503726489],[-118.503163913856,34.099397350735],[-118.503204153168,34.0995546375232],[-118.503264757533,34.0997838723413],[-118.503314562914,34.0999818089863],[-118.503355252884,34.1002816923435],[-118.503388129742,34.1005285798369],[-118.503418319518,34.1007110422638],[-118.503434891175,34.1008829337855],[-118.503459434011,34.1009596358478],[-118.503485852361,34.1010502090009],[-118.503575954841,34.1012065686485],[-118.503670112005,34.1014176954279],[-118.50375080817,34.1015703935152],[-118.50379073571,34.1017161719773],[-118.503829749329,34.1018249302156],[-118.503860213174,34.1019595488036],[-118.5038969602,34.1021567511621],[-118.503967006287,34.1027083865409],[-118.503988356456,34.1029100131197],[-118.504003651439,34.1031114444072],[-118.504005962769,34.1032574313034],[-118.503999154976,34.103380234633],[-118.503991142082,34.1034844481945],[-118.503951830592,34.1036144691238],[-118.503875090833,34.1037891778888],[-118.503763616673,34.1040394150754],[-118.503509506613,34.1046472408469],[-118.503336873486,34.105047833659],[-118.503206386047,34.1053310018659],[-118.503096590528,34.1055331920193],[-118.50301745824,34.1056979401636],[-118.502933123583,34.1058896007316],[-118.502832437234,34.1061340087786],[-118.502740967302,34.1063795010716],[-118.502673700306,34.1065620854915],[-118.502595679723,34.1067786090584],[-118.502509420442,34.1069884743886],[-118.502433845408,34.1071918474841],[-118.502396317434,34.1073216938758],[-118.502373960976,34.1074605136549],[-118.502377770354,34.107598510837],[-118.502371597526,34.1077003745697],[-118.502344757946,34.1078154062776],[-118.502277034539,34.1079332821589],[-118.502125253925,34.1082006864753],[-118.50192739506,34.1086414477446],[-118.501800291407,34.1088812067059],[-118.501689708732,34.1090561672369],[-118.501593481399,34.1091623305055],[-118.501467725479,34.1092590320049],[-118.501245672382,34.1094172766968],[-118.501048223022,34.1095477090878],[-118.500905507333,34.1096595895561],[-118.500802820498,34.1097707094628],[-118.500688421691,34.1099208125804],[-118.500575230356,34.110150932402],[-118.500395918439,34.1105195344628],[-118.500210135219,34.1109543996042],[-118.500109661976,34.1111692082456],[-118.500031265999,34.1113184955915],[-118.499975072128,34.111455007363],[-118.499934722531,34.1115583152132],[-118.499916067033,34.1116630565722],[-118.499922681269,34.1117636988117],[-118.499944585623,34.1118503929188],[-118.499995911918,34.1119486974531],[-118.500052819851,34.1120234893842],[-118.500079290737,34.1120869449959],[-118.500108086953,34.1121756336287],[-118.500122361486,34.1123433019594],[-118.500142915861,34.112560261392],[-118.500167743332,34.1127232543572],[-118.500206252284,34.1128701964567],[-118.500246753967,34.1130157759905],[-118.500290342285,34.1131217559503],[-118.500335102289,34.1132049471415],[-118.500496258848,34.1133750654749],[-118.500560582724,34.1134518395499],[-118.500621530244,34.113565242987],[-118.500669972214,34.1137090067032],[-118.500698953633,34.1138504878273],[-118.500728120613,34.1140005178548],[-118.500782798317,34.1141085895472],[-118.500828923452,34.1141988956817],[-118.500873419361,34.1142863047431],[-118.500891352536,34.1143457217534],[-118.500904198847,34.1144156338378],[-118.500906299212,34.1144712844792],[-118.500895957662,34.1145717410846],[-118.500889053915,34.1146716796069],[-118.500892713075,34.1147548486466],[-118.500899067595,34.1148333376559],[-118.500919468728,34.1149123545533],[-118.500949310042,34.1149839352546],[-118.500999957562,34.1150487289868],[-118.501057735703,34.1151013864493],[-118.501137424534,34.1151608777935],[-118.501225467182,34.1151979880105],[-118.501369297208,34.1152678228804],[-118.501509836929,34.1153316050432],[-118.501636082905,34.1153878425381],[-118.501737392595,34.1154305261239],[-118.501848408544,34.1154999191819],[-118.501927889413,34.1155671905005],[-118.502025390529,34.1156596503461],[-118.502050806475,34.1157044855664],[-118.502078144671,34.1157518188173],[-118.502111194801,34.1158358705762],[-118.502127456777,34.1159502109362],[-118.502168294046,34.1162005862256],[-118.502221546455,34.1165000328429],[-118.502257159835,34.116715163763],[-118.502292967181,34.1169636492752],[-118.502339044183,34.1171296613431],[-118.502432837455,34.1173421762852],[-118.502555731348,34.1176154357087],[-118.502644733452,34.1177508226223],[-118.50274364975,34.117850100714],[-118.502844053814,34.1179734106412],[-118.502897845684,34.1180490078801],[-118.502923178819,34.1181208204533],[-118.502916918741,34.1182004542959],[-118.502894530911,34.1183649980112],[-118.502882079627,34.1185968410869],[-118.502892598177,34.1189966005074],[-118.502904383,34.1191247259629],[-118.502958246386,34.1192696026949],[-118.503010156883,34.1193500941917],[-118.503096861258,34.1194531068026],[-118.503179241902,34.1195585089701],[-118.503264442465,34.1196242722448],[-118.503366064635,34.1196608007081],[-118.503502537026,34.1196795700258],[-118.50362877059,34.1196857403549],[-118.503748862707,34.1196961142779],[-118.503893601518,34.1197286586793],[-118.504649848311,34.120086892778],[-118.504910627134,34.1202242120796],[-118.505044708329,34.1203074267826],[-118.505166468491,34.1204041408938],[-118.505291496739,34.1205237313962],[-118.505355138607,34.1206177086053],[-118.505445280283,34.1206934473467],[-118.505586342273,34.1207614194205],[-118.50573607223,34.1208568233108],[-118.505821417139,34.1209320854053],[-118.505901118869,34.1210679413938],[-118.505967368472,34.1212169598396],[-118.506052321217,34.1213981946846],[-118.506141268804,34.1215041582662],[-118.506251238194,34.1215966080709],[-118.506369797673,34.1216760214605],[-118.506452316554,34.1217343261946],[-118.506554126075,34.1218114866861],[-118.506613486414,34.1219028361766],[-118.506665506945,34.1220148899713],[-118.506705844016,34.1222100282823],[-118.506749417196,34.1223897857815],[-118.506784359104,34.1224716036336],[-118.506829464305,34.1225373413941],[-118.506916736072,34.1226663477729],[-118.506985092433,34.1227836191696],[-118.507009327402,34.1229472444416],[-118.507009385026,34.1231891791522],[-118.507028249162,34.1233217720731],[-118.507089112558,34.1235090287154],[-118.507236218674,34.1238603655165],[-118.507421257451,34.1241813207335],[-118.507642213864,34.1245921800952],[-118.507987439629,34.125240969717],[-118.508069834548,34.1254317155904],[-118.508142678962,34.12556846293],[-118.508227017082,34.1256736647633],[-118.508330728624,34.1257701843753],[-118.508508596162,34.1258731431245],[-118.508725260352,34.1259580372278],[-118.509390561213,34.1262483918646],[-118.511337836504,34.1269206565778],[-118.511340384457,34.1269222942942],[-118.511341884955,34.1269263842459],[-118.511341018171,34.1269308524284],[-118.511339014235,34.1269340008252],[-118.511336585164,34.1269363771978],[-118.511328635478,34.1269412518081],[-118.506996805025,34.1297085093021],[-118.50680395492,34.1294036291782],[-118.506767311741,34.1293550073454],[-118.506745692886,34.1293317408065],[-118.506700821139,34.129288649842],[-118.506649367436,34.1292497074115],[-118.506588011604,34.1292125243263],[-118.506301278348,34.1290629344468],[-118.506271458772,34.1290496633506],[-118.506208539872,34.1290272570776],[-118.506177093447,34.1290181144658],[-118.506110921746,34.1290043087111],[-118.50604313218,34.1289960048825],[-118.505975380343,34.128993884123],[-118.505856472145,34.1290019388444],[-118.505787092561,34.1290039465759],[-118.505717692316,34.1290025195993],[-118.505649918021,34.1289966205868],[-118.505582118573,34.1289869425766],[-118.505514295769,34.1289731435092],[-118.505448105204,34.1289559022939],[-118.505400097438,34.1289403029544],[-118.505337168656,34.1289161781813],[-118.505277524115,34.1288886053039],[-118.505219510015,34.1288575902677],[-118.505164781953,34.1288234706659],[-118.50511168613,34.1287859074105],[-118.505063528346,34.1287455771787],[-118.505017007292,34.1287024926079],[-118.504975427871,34.1286569823682],[-118.504938790082,34.1286090471994],[-118.504903792617,34.1285590440292],[-118.504875391481,34.1285069527765],[-118.504850286264,34.1284534739173],[-118.504830130764,34.1283989435604],[-118.504799772199,34.1282963670243],[-118.5047829755,34.1282507532041],[-118.504762877492,34.128205839841],[-118.504737835156,34.1281626650181],[-118.504709496004,34.1281208784967],[-118.50467786273,34.1280808223405],[-118.504642936232,34.1280424972957],[-118.504604720103,34.1280065912066],[-118.50456486365,34.1279727523472],[-118.504506792059,34.1279321198204],[-118.504430531379,34.1278888139815],[-118.50435432909,34.1278551267723],[-118.504273209424,34.1278279863325],[-118.504190481772,34.1278080656397],[-118.504149135913,34.1278010250952],[-118.504091268239,34.1277940529625],[-118.503987155294,34.1277896782762],[-118.50389961986,34.1277945087985],[-118.503813753495,34.1278020795409],[-118.503727916775,34.127814459239],[-118.503298875107,34.1279007445241],[-118.503242781606,34.1279140306729],[-118.503199907712,34.1279276060854],[-118.503122444188,34.127958842316],[-118.503092797089,34.1279740796969],[-118.503036825759,34.1280076307776],[-118.502985841875,34.1280463135158],[-118.502961184018,34.1280670253561],[-118.502918497873,34.128111856252],[-118.502880786597,34.1281601010452],[-118.502849704888,34.1282114102326],[-118.502834994976,34.1282379199672],[-118.502825242865,34.1282647524205],[-118.502813845939,34.128292622202],[-118.502799315689,34.1283490146269],[-118.502792994244,34.1283967863491],[-118.502791687196,34.1284541543196],[-118.502798640156,34.1285114880452],[-118.502810546427,34.128568113817],[-118.502830701927,34.1286229876115],[-118.502844082333,34.1286500675639],[-118.502874132776,34.1287018092331],[-118.502959049621,34.1288106843632],[-118.502999085737,34.128874407648],[-118.503030877115,34.1289409119667],[-118.503054421958,34.1290098545112],[-118.503069717573,34.1290805496729],[-118.503074961039,34.1291282726474],[-118.5030752485,34.1291760156723],[-118.503069069887,34.1292474870157],[-118.503059442643,34.1292949288146],[-118.503046504208,34.1293413533404],[-118.503028605275,34.1293871123179],[-118.503009046257,34.1294315030458],[-118.502532149537,34.1303533476809],[-118.502507562648,34.1303860806096],[-118.502478001787,34.1304157439786],[-118.502445115362,34.130441985329],[-118.502427009818,34.1304533957408],[-118.502387473166,34.1304727952963],[-118.502344604662,34.1304877437107],[-118.502300053614,34.1304975464725],[-118.502253818224,34.1305018600442],[-118.502207551394,34.1305010220171],[-118.502184406301,34.1304987139104],[-118.502146359055,34.1304909716399],[-118.502096701983,34.1304757205844],[-118.50205693626,34.1304569939799],[-118.50202044849,34.1304337887188],[-118.501987242266,34.130406791133],[-118.50196062159,34.130375987834],[-118.501938941649,34.1303424161291],[-118.501928920942,34.1303245966781],[-118.501915483044,34.1302878988882],[-118.501908647763,34.1302501436928],[-118.501908416896,34.1302116746308],[-118.501914798528,34.1301738636319],[-118.501919641345,34.1301549510619],[-118.501934294664,34.130118824279],[-118.501955568567,34.1300847304685],[-118.501968691157,34.1300688762843],[-118.501998252018,34.1300392135371],[-118.502031138442,34.1300129713181],[-118.502078893781,34.1299866681161],[-118.502121755098,34.129970689733],[-118.502182788435,34.1299542927024],[-118.502232251471,34.129937256176],[-118.502283326085,34.1299133428687],[-118.502312967794,34.1298970759564],[-118.502357387688,34.1298656344657],[-118.502395192389,34.1298328455658],[-118.502436225634,34.1297876779894],[-118.502464054544,34.129744626668],[-118.502485282632,34.1297029755198],[-118.502495036539,34.1296764863218],[-118.502507957907,34.1296273143828],[-118.502512614773,34.1295774895352],[-118.502510617818,34.1295201349682],[-118.502500399482,34.12946934189],[-118.502481943594,34.1294223604777],[-118.502453543356,34.1293702682699],[-118.502426881359,34.1293325959481],[-118.50240692798,34.1293113824868],[-118.502372032024,34.1292782089297],[-118.502327219566,34.1292443891694],[-118.502300686028,34.1292280120752],[-118.502254281755,34.1292041610299],[-118.502226124961,34.1291925994981],[-118.502201287442,34.1291834286473],[-118.502143367665,34.1291678687608],[-118.50131651426,34.1290407757974],[-118.501247078082,34.129033507069],[-118.501166115621,34.1290324689979],[-118.501098408699,34.1290379017683],[-118.501063744509,34.1290431977152],[-118.500997743488,34.1290575544739],[-118.500931777502,34.1290777500055],[-118.500870802556,34.1291037642287],[-118.500841152761,34.1291186571149],[-118.500786825348,34.1291511696716],[-118.500702894853,34.1292064758643],[-118.500085772761,34.1296136040948],[-118.499596,34.129184],[-118.498615,34.128308],[-118.499551,34.127041],[-118.499134,34.123613],[-118.497615,34.120606],[-118.493515,34.113707],[-118.494803,34.111056],[-118.494878,34.11071],[-118.49489,34.110634],[-118.494894,34.110529],[-118.494771,34.109511],[-118.494772,34.109376],[-118.494789,34.109262],[-118.495023,34.108403],[-118.495066,34.108214],[-118.495094,34.108023],[-118.495141,34.107327],[-118.495138,34.107218],[-118.495115,34.107095],[-118.495072,34.106976],[-118.495009,34.106863],[-118.494927,34.106758],[-118.494912,34.106743],[-118.494843,34.106675],[-118.494542,34.106437],[-118.49441,34.106333],[-118.494354,34.106281],[-118.494323,34.106252],[-118.494248,34.106162],[-118.494181,34.106053],[-118.494166,34.106023],[-118.494126,34.105919],[-118.494029,34.105517],[-118.493937,34.10513],[-118.493915,34.10498],[-118.493912,34.104896],[-118.493985,34.104835],[-118.494102,34.104796],[-118.49423,34.104727],[-118.494389,34.104618],[-118.494514,34.104516],[-118.494562,34.104448],[-118.494656,34.103914],[-118.494774,34.103613],[-118.495047,34.103129],[-118.495199,34.102893],[-118.495366,34.102578],[-118.495401,34.102462],[-118.495419,34.102364],[-118.495414,34.102087],[-118.495414,34.102065],[-118.495379,34.101391],[-118.495394,34.101248],[-118.495444,34.101173],[-118.495517,34.101076],[-118.49557,34.100985],[-118.495584,34.100918],[-118.495585,34.100834],[-118.495605,34.100669],[-118.495626,34.10057],[-118.495683,34.100496],[-118.495741,34.100413],[-118.495785,34.100274],[-118.495927,34.100002],[-118.496085,34.099864],[-118.496285,34.099754],[-118.496466,34.099613],[-118.496551,34.099509],[-118.496581,34.09942],[-118.496595,34.099295],[-118.496601,34.099241],[-118.496554,34.099062],[-118.496519,34.099031],[-118.496372,34.098988],[-118.496196,34.09894],[-118.496175,34.098925],[-118.496093,34.098831],[-118.496027,34.098662],[-118.49604,34.098566],[-118.496068,34.09853],[-118.496096,34.09851],[-118.496153,34.098481],[-118.496317,34.098464],[-118.496426,34.098468],[-118.49649,34.098491],[-118.496613,34.098485],[-118.496722,34.098464],[-118.496842,34.098432],[-118.496948,34.09839],[-118.497027,34.098327],[-118.497071,34.09823],[-118.497064,34.098152],[-118.49704,34.09809],[-118.496984,34.097992],[-118.496959,34.097875],[-118.496929,34.097641],[-118.496897,34.097474],[-118.496825,34.097296],[-118.496801,34.097217],[-118.496811,34.097162],[-118.496819,34.097141],[-118.496885,34.097099],[-118.496925,34.097094],[-118.496974,34.097091],[-118.497107,34.097132],[-118.497415,34.097339],[-118.49759,34.097449],[-118.49763,34.097466],[-118.497679,34.09747],[-118.497702,34.097467],[-118.497736,34.09744],[-118.497755,34.09738],[-118.497826,34.097174],[-118.497913,34.097022],[-118.497989,34.096935],[-118.498051,34.096858],[-118.49813,34.096795],[-118.498187,34.096739],[-118.498215,34.096693],[-118.498219,34.096605],[-118.498205,34.096459],[-118.498175,34.095758],[-118.49813,34.095462],[-118.498108,34.095369],[-118.498081,34.095293],[-118.498032,34.095169],[-118.498008,34.095088],[-118.498021,34.095026],[-118.498128,34.094857],[-118.498234,34.094701],[-118.498378,34.094546],[-118.498467,34.094401],[-118.498481,34.094368],[-118.498477,34.09431],[-118.498428,34.094136],[-118.498389,34.094053],[-118.498357,34.09401],[-118.498298,34.093949],[-118.498188,34.093876],[-118.49795,34.093738],[-118.497821,34.093641],[-118.497768,34.093542],[-118.497755,34.093451],[-118.497707,34.093332],[-118.497667,34.093198],[-118.497581,34.092857],[-118.497543,34.0927],[-118.497458,34.092445],[-118.497403,34.092228],[-118.497391,34.092068],[-118.49746,34.091866],[-118.497484,34.091751],[-118.49747,34.091658],[-118.497433,34.091525],[-118.4974,34.091425],[-118.497296,34.091206],[-118.497209,34.091049],[-118.497129,34.090892],[-118.497108,34.090849],[-118.497055,34.090776],[-118.496976,34.090684],[-118.496954,34.090588],[-118.497005,34.090399],[-118.497068,34.090339],[-118.497127,34.090297],[-118.497206,34.090198],[-118.497244,34.090073],[-118.497255,34.089862],[-118.497251,34.08981],[-118.497212,34.089748],[-118.497101,34.089639],[-118.497061,34.089594],[-118.496925,34.089443],[-118.49684,34.089308],[-118.496824,34.089255],[-118.496817,34.089176],[-118.496843,34.088999],[-118.496788,34.088651],[-118.496782,34.088598],[-118.496761,34.088431],[-118.496728,34.088338],[-118.496591,34.088077],[-118.496509,34.087994],[-118.496395,34.087904],[-118.496231,34.08779],[-118.496295,34.087139],[-118.496327,34.086824],[-118.496364,34.086446],[-118.495795,34.086087],[-118.495929,34.085577],[-118.49628,34.084244],[-118.496271,34.084171],[-118.496241,34.084083],[-118.496183,34.084033],[-118.496102,34.083995],[-118.496022,34.083949],[-118.495979,34.083868],[-118.495997,34.083793],[-118.496051,34.083707],[-118.496111,34.083642],[-118.496279,34.083493],[-118.496318,34.08342],[-118.496334,34.083338],[-118.496334,34.083261],[-118.496327,34.083169],[-118.496273,34.083106],[-118.496204,34.083055],[-118.496099,34.083],[-118.496035,34.08296],[-118.495885,34.082835],[-118.495863,34.082768],[-118.495863,34.082686],[-118.495857,34.082591],[-118.495811,34.082474],[-118.495759,34.082425],[-118.495688,34.082372],[-118.495332,34.082212],[-118.495042,34.082101],[-118.494974,34.082072],[-118.494901,34.08204],[-118.494724,34.081972],[-118.494623,34.081908],[-118.494575,34.081829],[-118.494527,34.081724],[-118.494232,34.081311],[-118.494194,34.081238],[-118.494174,34.081161],[-118.494135,34.08026],[-118.494128,34.080212],[-118.494104,34.080153],[-118.494062,34.080096],[-118.494009,34.080053],[-118.49395,34.080022],[-118.493587,34.079917],[-118.493508,34.079906],[-118.493433,34.07991],[-118.493194,34.079971],[-118.493134,34.079976],[-118.493074,34.079969],[-118.493011,34.079947],[-118.492964,34.079916],[-118.492926,34.079876],[-118.4929,34.079825],[-118.492891,34.079777],[-118.492899,34.07972],[-118.492987,34.079529],[-118.492994,34.079472],[-118.492925,34.07911],[-118.492903,34.079011],[-118.492863,34.07888],[-118.492813,34.078753],[-118.492661,34.078447],[-118.492606,34.078368],[-118.492529,34.078291],[-118.491465,34.077535],[-118.491394,34.077466],[-118.491337,34.077389],[-118.491299,34.077315],[-118.491121,34.076779],[-118.491084,34.076706],[-118.491032,34.076641],[-118.490984,34.076599],[-118.49064,34.076377],[-118.490608,34.076352],[-118.490534,34.076278],[-118.490482,34.076204],[-118.490261,34.075723],[-118.490246,34.075662],[-118.490248,34.075543],[-118.490298,34.075485],[-118.490338,34.075444],[-118.490391,34.075407],[-118.490452,34.07538],[-118.490524,34.075364],[-118.490599,34.075361],[-118.490678,34.075374],[-118.49075,34.075403],[-118.490813,34.075445],[-118.490858,34.075495],[-118.490889,34.075552],[-118.490935,34.075803],[-118.49095,34.075848],[-118.490984,34.075898],[-118.491024,34.075932],[-118.491082,34.075961],[-118.491145,34.075976],[-118.49168,34.075981],[-118.491951,34.075983],[-118.492088,34.075984],[-118.49214,34.07598],[-118.492203,34.075963],[-118.492262,34.075932],[-118.492305,34.075895],[-118.492338,34.075848],[-118.492356,34.075799],[-118.492377,34.075476],[-118.492374,34.075418],[-118.492344,34.07533],[-118.491693,34.074138],[-118.491649,34.07407],[-118.491595,34.074009],[-118.491521,34.073948],[-118.491447,34.073902],[-118.491356,34.073861],[-118.49068,34.073669],[-118.490578,34.073631],[-118.490484,34.073581],[-118.48979,34.073084],[-118.489375,34.072793],[-118.489316,34.072756],[-118.489203,34.07267],[-118.489102,34.072577],[-118.489071,34.072543],[-118.489,34.072435],[-118.488956,34.072338],[-118.488929,34.072237],[-118.488919,34.07212],[-118.488929,34.072017],[-118.489045,34.071563],[-118.489057,34.071452],[-118.489052,34.071342],[-118.489031,34.071232],[-118.488949,34.070997],[-118.488901,34.070882],[-118.488827,34.070749],[-118.488347430631,34.0700541726591],[-118.48827791897,34.0698099416988],[-118.487632,34.065403],[-118.487667,34.065467],[-118.487721,34.065528],[-118.487753,34.065555],[-118.488204,34.065888],[-118.488266,34.065919],[-118.48833,34.065938],[-118.488908,34.066016],[-118.489092,34.06603],[-118.489348,34.066049],[-118.489455,34.066045],[-118.489572,34.066025],[-118.49006,34.065867],[-118.490115,34.065846],[-118.490201,34.065801],[-118.490276,34.065743],[-118.490332,34.065683],[-118.490496,34.065439],[-118.490534,34.065358],[-118.490554,34.065272],[-118.490556,34.065184],[-118.490301,34.063868],[-118.490393,34.06284],[-118.49075,34.061853],[-118.490909384979,34.0615036410057],[-118.491146,34.060985],[-118.491498,34.060097],[-118.49136,34.059286],[-118.491274,34.058465],[-118.491399,34.058056],[-118.491413,34.058022],[-118.491448,34.05797],[-118.491502,34.057924],[-118.491568,34.057891],[-118.492016,34.05778]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000672,"geom:area_square_m":6880199.261139,"geom:bbox":"-118.511608005,34.05778,-118.487632,34.13050186","geom:latitude":34.090566,"geom:longitude":-118.499593,"iso:country":"US","lbl:latitude":34.106407,"lbl:longitude":-118.511485,"lbl:max_zoom":18,"mps:latitude":34.077865,"mps:longitude":-118.500399,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Mandeville Canyon"],"name:eng_x_variant":["Mandeville Cyn"],"name:zho_x_preferred":["曼德維爾峽谷"],"reversegeo:latitude":34.077865,"reversegeo:longitude":-118.500399,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807211,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6748002"},"wof:country":"US","wof:geomhash":"461e6b3479904923724aa1766a92303d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561755,"neighbourhood_id":85807211,"region_id":85688637}],"wof:id":1108561755,"wof:lastmodified":1566623963,"wof:name":"Mandeville Canyon","wof:parent_id":85807211,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869451],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561757.geojson b/fixtures/microhoods/1108561757.geojson new file mode 100644 index 0000000..a06388c --- /dev/null +++ b/fixtures/microhoods/1108561757.geojson @@ -0,0 +1 @@ +{"id":1108561757,"type":"Feature","bbox":[-118.433473,33.99808583248273,-118.41736100356404,34.01036677903576],"geometry":{"type":"Polygon","coordinates":[[[-118.433473,34.003564],[-118.431159,34.004825],[-118.428828,34.006141],[-118.428347,34.006413],[-118.425003,34.008301],[-118.424525,34.008572],[-118.423779,34.008992],[-118.42302,34.009421],[-118.422261,34.00985],[-118.421411,34.010324],[-118.42133474171888,34.01036677903576],[-118.42066869745823,34.00952504515489],[-118.42048604480814,34.00929142540332],[-118.420449520207,34.00924621287875],[-118.42041299740247,34.00920099958545],[-118.42022536269583,34.00896052659462],[-118.42006929748321,34.00876459627793],[-118.41969746143089,34.00896785924709],[-118.41937991955439,34.00914173533697],[-118.41930188290567,34.00904273983775],[-118.41927034125939,34.00900369220603],[-118.41918731985915,34.00889750016061],[-118.41911260518033,34.00880295818784],[-118.419049513803,34.00872314475384],[-118.4188984288503,34.00853269237021],[-118.41872242732657,34.00830832010851],[-118.41861118624999,34.00816719047363],[-118.41807990731961,34.00749717578206],[-118.41790723315569,34.0072772561649],[-118.41767977613249,34.00698917284722],[-118.41736100356404,34.00658427747864],[-118.41780512704725,34.00632169194921],[-118.41785118457017,34.00629439712673],[-118.41810285837681,34.0061468576353],[-118.41832656403538,34.0060145273228],[-118.41857329800627,34.00586906501817],[-118.41902728409295,34.00560060243379],[-118.41909307580606,34.00556121662012],[-118.41920656536581,34.00549281249842],[-118.4193545960465,34.00540402318709],[-118.41948617767608,34.00532456400991],[-118.41958322267622,34.00526686537528],[-118.41971315949048,34.00518878598337],[-118.42017040286844,34.0049134372971],[-118.42044837036343,34.00474691014155],[-118.42074606665868,34.00456726035325],[-118.42108981868026,34.0043606580471],[-118.42058842310611,34.00372730268501],[-118.42025968911948,34.00331042654095],[-118.41990273455816,34.00285758248901],[-118.41972010346764,34.00262533552115],[-118.41920212589166,34.00197073600322],[-118.41848326076365,34.00105853121522],[-118.41834381887536,34.00088418131175],[-118.41817614024272,34.00067111471636],[-118.41837019610705,34.00055056647472],[-118.41848366680213,34.00047975878798],[-118.41864482815738,34.00037924585047],[-118.4189342572571,34.00019791116929],[-118.41919080172917,34.00003867467846],[-118.41949083094926,33.99966872959936],[-118.41962364327074,33.9995078611328],[-118.41975972186661,33.99934045426387],[-118.4199548278615,33.99910139666822],[-118.42005975827321,33.99897291241878],[-118.420090908254,33.99893467714398],[-118.42013845698028,33.99887680660043],[-118.42015321001222,33.99885820579804],[-118.42018766489493,33.99882099003094],[-118.42020407891178,33.99880478879314],[-118.42023694018322,33.99877856994982],[-118.4202632410581,33.99876027372785],[-118.4202862684721,33.99874679751187],[-118.4203092967844,33.99873366462272],[-118.42034879480913,33.99871532221673],[-118.4203932506359,33.99869868081238],[-118.42044431806319,33.99868441962156],[-118.42048057406804,33.99867742345238],[-118.42051519064752,33.99867249396048],[-118.4205399221656,33.99867000352061],[-118.42057124641956,33.99866646000583],[-118.42066687118324,33.99865616534237],[-118.42083174078397,33.99863807315528],[-118.42127524083635,33.9985898119128],[-118.42155716720681,33.99855894427527],[-118.42206991209626,33.99850322505922],[-118.42239635268399,33.99846773472363],[-118.42268487358696,33.99843615431515],[-118.42290744646994,33.99841201768196],[-118.42299812421136,33.99840208195769],[-118.42354054135296,33.99834281762097],[-118.4244225899439,33.99824697771119],[-118.42472759493232,33.99821361726151],[-118.42491059972203,33.99819373831786],[-118.42589980654657,33.99808583248273],[-118.42643455297397,33.99878843041049],[-118.42661556619866,33.99902513921439],[-118.42683644306238,33.99931529014213],[-118.42716029560378,33.99974212518677],[-118.42741107289176,34.00007201355874],[-118.42749245306999,34.0001792354379],[-118.4277199765685,34.00047760502036],[-118.42794418169038,34.00077186338805],[-118.42809697074719,34.00097157302425],[-118.42833779021021,34.00128844253869],[-118.42833779380348,34.00128912917593],[-118.4283394467036,34.00128981060004],[-118.42833945748339,34.00129187125632],[-118.4283411085869,34.00129220861712],[-118.42834111936666,34.00129427001806],[-118.42834277226679,34.00129495069747],[-118.42834279023307,34.00129838537263],[-118.42834444313323,34.00129906679668],[-118.42834447187931,34.00130456212765],[-118.42834612477941,34.00130524355171],[-118.42834617778001,34.00131554757555],[-118.42834453116811,34.00131624017035],[-118.4283445590159,34.00132173624496],[-118.4283429133023,34.00132242883971],[-118.42834293037028,34.00132586351378],[-118.42834128465668,34.00132655685319],[-118.42834129902971,34.00132930414549],[-118.42833965062117,34.00132965342177],[-118.4283396578077,34.00133102744019],[-118.4283380120941,34.00133172077961],[-118.42833802017894,34.00133343811648],[-118.42833637446533,34.00133413071114],[-118.42833637985525,34.00133516141109],[-118.4283347332433,34.00133585400573],[-118.42833473863321,34.00133688470574],[-118.42833309291959,34.00133757730031],[-118.42833309830948,34.00133860725554],[-118.42833144990094,34.00133895727645],[-118.42833145529086,34.00133998723167],[-118.42832816476194,34.00134171648394],[-118.42832652264163,34.00134309646003],[-118.42832487602972,34.00134378905461],[-118.42832323390937,34.00134516903065],[-118.42832323570599,34.00134551234902],[-118.42836436507127,34.00132372689632],[-118.42916228374092,34.00090149701261],[-118.43011812623753,34.00039523304941],[-118.43069722428712,34.00008918345683],[-118.43059093292776,33.99995010829976],[-118.43050622179646,33.9998374041111],[-118.43037999682093,33.99967126320493],[-118.43046932352915,33.99962397737521],[-118.430528,33.999698],[-118.430836,34.000102],[-118.430924,34.000218],[-118.431428,34.00088],[-118.431923,34.00153],[-118.43238,34.00213],[-118.432826,34.002714],[-118.433473,34.003564]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000109,"geom:area_square_m":1117949.972132,"geom:bbox":"-118.433473,33.9980858325,-118.417361004,34.010366779","geom:latitude":34.003706,"geom:longitude":-118.424577,"iso:country":"US","lbl:latitude":33.99849,"lbl:longitude":-118.420875,"lbl:max_zoom":18,"mps:latitude":34.002978,"mps:longitude":-118.4247,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ces_x_preferred":["McLaughlin"],"name:deu_x_preferred":["McLaughlin"],"name:fra_x_preferred":["McLaughlin"],"name:ita_x_preferred":["McLaughlin"],"name:jpn_x_preferred":["マクラフリン"],"name:kor_x_preferred":["매클로플린"],"name:nld_x_preferred":["McLaughlin"],"name:por_x_preferred":["McLaughlin"],"name:rus_x_preferred":["Маклохлин"],"name:ukr_x_preferred":["Маклафлін"],"reversegeo:latitude":34.002978,"reversegeo:longitude":-118.4247,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85832373,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"373401cbe7de29d72a5fba435f79ff1a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561757,"neighbourhood_id":85832373,"region_id":85688637}],"wof:id":1108561757,"wof:lastmodified":1566623962,"wof:name":"McLaughlin","wof:parent_id":85832373,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85886319],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561759.geojson b/fixtures/microhoods/1108561759.geojson new file mode 100644 index 0000000..2ecec1d --- /dev/null +++ b/fixtures/microhoods/1108561759.geojson @@ -0,0 +1 @@ +{"id":1108561759,"type":"Feature","bbox":[-118.36143984679904,34.08297502299688,-118.34406149196477,34.08896719601043],"geometry":{"type":"Polygon","coordinates":[[[-118.34406149196477,34.08297502299688],[-118.35856201647209,34.08325678588643],[-118.35856159410187,34.08363868645584],[-118.36143330080888,34.08365594523405],[-118.36143984679904,34.08721940171985],[-118.36139800503067,34.08721958612821],[-118.36121139440343,34.08721773959069],[-118.36092074539158,34.08721482991776],[-118.36091414007927,34.087214850005],[-118.3604269729209,34.08721012132126],[-118.359441084473,34.08720172336878],[-118.35829831424387,34.08719240884214],[-118.35813812935737,34.08719116640923],[-118.35720343410088,34.08718328551527],[-118.35705315673363,34.08718201257937],[-118.35378503362772,34.08715487396782],[-118.35281235939763,34.08714707044362],[-118.35281343198609,34.08896719601043],[-118.3458410833482,34.08891178910891],[-118.34506325999148,34.08890576975497],[-118.34407075006162,34.08889795225701],[-118.34407054524573,34.08844661327718],[-118.34406617404355,34.08658150162195],[-118.34406301107543,34.08500972214923],[-118.34406359587868,34.08394766536873],[-118.3440619618432,34.08355060113588],[-118.3440622627788,34.08322222771962],[-118.34406149196477,34.08297502299688]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000084,"geom:area_square_m":864549.667021,"geom:bbox":"-118.361439847,34.082975023,-118.344061492,34.088967196","geom:latitude":34.085708,"geom:longitude":-118.35179,"iso:country":"US","lbl:latitude":34.083698,"lbl:longitude":-118.355437,"lbl:max_zoom":18,"mps:latitude":34.086018,"mps:longitude":-118.350053,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:cat_x_preferred":["Melrose"],"name:ceb_x_preferred":["Melrose"],"name:cym_x_preferred":["Melrose"],"name:deu_x_preferred":["Melrose"],"name:eng_x_variant":["Melrose District"],"name:fin_x_preferred":["Melrose"],"name:fra_x_preferred":["Melrose"],"name:hun_x_preferred":["Melrose"],"name:ita_x_preferred":["Melrose"],"name:jpn_x_preferred":["メルローズ"],"name:nld_x_preferred":["Melrose"],"name:pol_x_preferred":["Melrose"],"name:por_x_preferred":["Melrose"],"name:rus_x_preferred":["Мелроз"],"name:sco_x_preferred":["Melrose"],"name:spa_x_preferred":["Melrose"],"name:srp_x_preferred":["Мелроуз"],"name:swe_x_preferred":["Melrose"],"name:ukr_x_preferred":["Мелроуз"],"name:vol_x_preferred":["Melrose"],"reversegeo:latitude":34.086018,"reversegeo:longitude":-118.350053,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869227,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"979aff039501b0507663945ea9d6a081","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561759,"neighbourhood_id":85869227,"region_id":85688637}],"wof:id":1108561759,"wof:lastmodified":1566623962,"wof:name":"Melrose","wof:parent_id":85869227,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869471],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561763.geojson b/fixtures/microhoods/1108561763.geojson new file mode 100644 index 0000000..7791aa3 --- /dev/null +++ b/fixtures/microhoods/1108561763.geojson @@ -0,0 +1 @@ +{"id":1108561763,"type":"Feature","bbox":[-118.309193762053,34.08351384972063,-118.298832,34.090786],"geometry":{"type":"Polygon","coordinates":[[[-118.298832,34.083563],[-118.29912,34.083562],[-118.299257,34.083561],[-118.300446,34.083555],[-118.301609,34.083548],[-118.301702,34.083548],[-118.302773,34.083542],[-118.303447,34.083539],[-118.303936,34.083536],[-118.304602,34.083533],[-118.305096,34.08353],[-118.30576,34.083527],[-118.306916,34.083521],[-118.307759,34.083516],[-118.30794823208088,34.08351517725182],[-118.30914501627451,34.08351384980632],[-118.30914503256898,34.08351384972063],[-118.309193762053,34.09076996898361],[-118.309176,34.09077],[-118.308516,34.090774],[-118.307795,34.090779],[-118.306945,34.090784],[-118.30658,34.090786],[-118.305324,34.088764],[-118.305291,34.088712],[-118.305038,34.088341],[-118.304922,34.088191],[-118.304821,34.088072],[-118.304797,34.088045],[-118.30464,34.087863],[-118.304426,34.087633],[-118.304306,34.087513],[-118.304203,34.08741],[-118.30412,34.087333],[-118.30397,34.087193],[-118.303729,34.086983],[-118.303473,34.086778],[-118.303276,34.086641],[-118.30258,34.086158],[-118.300451,34.084681],[-118.300202,34.084508],[-118.298832,34.083563]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":427975.410298,"geom:bbox":"-118.309193762,34.0835138497,-118.298832,34.090786","geom:latitude":34.086335,"geom:longitude":-118.30583,"iso:country":"US","lbl:latitude":34.08605,"lbl:longitude":-118.306261,"lbl:max_zoom":18,"mps:latitude":34.08602,"mps:longitude":-118.30634,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Melrose Hill"],"name:eng_x_variant":["Melrose Hl"],"name:ita_x_preferred":["Melrose Hill"],"name:spa_x_preferred":["Melrose Hill"],"reversegeo:latitude":34.08602,"reversegeo:longitude":-118.30634,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865827,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6813660"},"wof:country":"US","wof:geomhash":"07e10a3242636f242aff028cc6fb48cd","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108561763,"neighbourhood_id":85865827,"region_id":85688637}],"wof:id":1108561763,"wof:lastmodified":1566623964,"wof:name":"Melrose Hill","wof:parent_id":85865827,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869473],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561767.geojson b/fixtures/microhoods/1108561767.geojson new file mode 100644 index 0000000..cfa8d97 --- /dev/null +++ b/fixtures/microhoods/1108561767.geojson @@ -0,0 +1 @@ +{"id":1108561767,"type":"Feature","bbox":[-118.363559,34.051653,-118.3440309061855,34.06917696190013],"geometry":{"type":"Polygon","coordinates":[[[-118.363559,34.058731],[-118.363473,34.058897],[-118.362861,34.060084],[-118.362375,34.061027],[-118.361889,34.06197],[-118.361375,34.062967],[-118.361379,34.064028],[-118.361383,34.064881],[-118.360641,34.064876],[-118.36031,34.064874],[-118.359252,34.064867],[-118.357384,34.064872],[-118.35643518521174,34.06487415835939],[-118.355186,34.064877],[-118.354617,34.064879],[-118.353209,34.064882],[-118.352502,34.064884],[-118.351445,34.064887],[-118.350388,34.06489],[-118.349331,34.064892],[-118.348275,34.064895],[-118.347218,34.064898],[-118.347222,34.066878],[-118.3472258736668,34.06917527382246],[-118.3472257884023,34.06917696190013],[-118.346193,34.068991],[-118.345619,34.068888],[-118.345123,34.068889],[-118.34403495665252,34.06889295292769],[-118.34403383648994,34.06828311723499],[-118.3440309061855,34.06716920388836],[-118.34403882034314,34.06347362770059],[-118.34404538612955,34.06266161087261],[-118.34404744955977,34.06236036927095],[-118.34404714143763,34.06228549107795],[-118.34405523885158,34.06224734088227],[-118.34406168965363,34.06221022583939],[-118.344661,34.060522],[-118.345316,34.058874],[-118.345855,34.057604],[-118.345886,34.05748],[-118.345899,34.057371],[-118.345897,34.057243],[-118.345893,34.057214],[-118.345871,34.057099],[-118.345829,34.056977],[-118.345769,34.056859],[-118.345719,34.056784],[-118.345869,34.056391],[-118.346561,34.054583],[-118.346985,34.053677],[-118.347105,34.05346],[-118.3472,34.05331],[-118.347257,34.053185],[-118.347817,34.051653],[-118.348836,34.052022],[-118.349859,34.052392],[-118.350881,34.052762],[-118.354279,34.053976],[-118.354672,34.05412],[-118.355439,34.054389],[-118.356259,34.054677],[-118.357156,34.054991],[-118.358056,34.055305],[-118.358876,34.055593],[-118.359083,34.055671],[-118.35926,34.055751],[-118.35936,34.055803],[-118.359531,34.055908],[-118.359734,34.056047],[-118.359995,34.056236],[-118.360348,34.056501],[-118.360828,34.056862],[-118.361139,34.057067],[-118.361984,34.057636],[-118.362459,34.057955],[-118.362923,34.058267],[-118.363559,34.058731]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000195,"geom:area_square_m":2001711.411952,"geom:bbox":"-118.363559,34.051653,-118.344030906,34.0691769619","geom:latitude":34.060041,"geom:longitude":-118.352555,"iso:country":"US","lbl:latitude":34.063224,"lbl:longitude":-118.355038,"lbl:max_zoom":18,"mps:latitude":34.05954,"mps:longitude":-118.352408,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Miracle Mile"],"name:eng_x_variant":["Miraclemile"],"name:fra_x_preferred":["Miracle Mile"],"name:nob_x_preferred":["Miracle Mile"],"name:rus_x_preferred":["Миля чудес"],"name:zho_x_preferred":["奇迹一英里"],"reversegeo:latitude":34.05954,"reversegeo:longitude":-118.352408,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85886323,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3315812"},"wof:country":"US","wof:geomhash":"49aa892f4987a86e6bfb7912f9f2e981","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561767,"neighbourhood_id":85886323,"region_id":85688637}],"wof:id":1108561767,"wof:lastmodified":1566623964,"wof:name":"Miracle Mile","wof:parent_id":85886323,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866827],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561769.geojson b/fixtures/microhoods/1108561769.geojson new file mode 100644 index 0000000..14c50ab --- /dev/null +++ b/fixtures/microhoods/1108561769.geojson @@ -0,0 +1 @@ +{"id":1108561769,"type":"Feature","bbox":[-118.361411,34.064867,-118.347218,34.071516],"geometry":{"type":"Polygon","coordinates":[[[-118.3472257884023,34.06917696190013],[-118.3472258736668,34.06917527382246],[-118.347222,34.066878],[-118.347218,34.064898],[-118.348275,34.064895],[-118.349331,34.064892],[-118.350388,34.06489],[-118.351445,34.064887],[-118.352502,34.064884],[-118.353209,34.064882],[-118.354617,34.064879],[-118.355186,34.064877],[-118.35643518521174,34.06487415835939],[-118.357384,34.064872],[-118.359252,34.064867],[-118.36031,34.064874],[-118.360641,34.064876],[-118.361383,34.064881],[-118.361384,34.065176],[-118.361387,34.065726],[-118.36139,34.066566],[-118.36139413054379,34.06743203008498],[-118.361397,34.068224],[-118.3614,34.069012],[-118.361401,34.069055],[-118.361404,34.069901],[-118.361408,34.070747],[-118.361411,34.071516],[-118.359466,34.071246],[-118.359032,34.071186],[-118.358379,34.071095],[-118.356416,34.070823],[-118.356316,34.070809],[-118.355208,34.070655],[-118.3544096288389,34.07054410051679],[-118.353689,34.070444],[-118.353194,34.070346],[-118.352198,34.070149],[-118.351075,34.069926],[-118.349789,34.069671],[-118.348621,34.069439],[-118.347999,34.069315],[-118.347408,34.069209],[-118.347226,34.069177],[-118.3472257884023,34.06917696190013]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000079,"geom:area_square_m":807553.011422,"geom:bbox":"-118.361411,34.064867,-118.347218,34.071516","geom:latitude":34.067704,"geom:longitude":-118.354811,"iso:country":"US","lbl:latitude":34.067755,"lbl:longitude":-118.356605,"lbl:max_zoom":18,"mps:latitude":34.067739,"mps:longitude":-118.35481,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ara_x_preferred":["منتزه لا بريا"],"name:eng_x_preferred":["Park La Brea"],"reversegeo:latitude":34.067739,"reversegeo:longitude":-118.35481,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85886323,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7137866"},"wof:country":"US","wof:geomhash":"7f43b3710519ae6ff543579c0e9c11ca","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108561769,"neighbourhood_id":85886323,"region_id":85688637}],"wof:id":1108561769,"wof:lastmodified":1566623963,"wof:name":"Park la Brea","wof:parent_id":85886323,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85840663],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108561771.geojson b/fixtures/microhoods/1108561771.geojson new file mode 100644 index 0000000..9f73497 --- /dev/null +++ b/fixtures/microhoods/1108561771.geojson @@ -0,0 +1 @@ +{"id":1108561771,"type":"Feature","bbox":[-118.190322,34.09260769501926,-118.179652,34.103115],"geometry":{"type":"Polygon","coordinates":[[[-118.187916,34.100291],[-118.186781,34.099965],[-118.186657,34.099929],[-118.185548,34.099609],[-118.185017,34.099456],[-118.184537,34.099317],[-118.184349,34.099263],[-118.184036,34.099173],[-118.184054,34.099267],[-118.184052,34.099365],[-118.184027,34.09947],[-118.183819,34.099968],[-118.183776,34.100037],[-118.183707,34.100115],[-118.183622,34.100182],[-118.183473,34.100274],[-118.18305,34.100536],[-118.182969,34.100605],[-118.182904,34.100683],[-118.182864,34.100755],[-118.182837,34.100825],[-118.182732,34.101239],[-118.182668,34.101485],[-118.18263,34.101576],[-118.182585,34.101651],[-118.182517,34.101734],[-118.182439,34.101804],[-118.18235,34.101866],[-118.182277,34.101905],[-118.182105,34.101978],[-118.181984,34.102031],[-118.181903,34.102052],[-118.181865,34.102066],[-118.181823,34.102091],[-118.181614,34.102253],[-118.180786,34.103115],[-118.180711,34.103064],[-118.180519,34.102917],[-118.180412,34.102823],[-118.180344,34.102758],[-118.180305,34.102717],[-118.180247,34.102657],[-118.180186,34.102587],[-118.180074,34.102442],[-118.179997,34.102329],[-118.17995,34.102252],[-118.179866,34.102095],[-118.179795,34.101932],[-118.179752,34.101811],[-118.179704,34.10164],[-118.179679,34.101512],[-118.179664,34.101408],[-118.179652,34.101254],[-118.179654,34.101039],[-118.179679,34.100824],[-118.179705,34.100696],[-118.179752,34.100528],[-118.17983,34.100322],[-118.179908,34.100162],[-118.179999,34.100007],[-118.180131,34.099821],[-118.18018,34.099762],[-118.180189,34.09975],[-118.180314,34.099612],[-118.18045,34.099482],[-118.180597,34.09936],[-118.180754,34.099247],[-118.18092,34.099143],[-118.181077,34.099058],[-118.181094,34.099049],[-118.181294,34.098959],[-118.182868,34.098292],[-118.183049,34.098207],[-118.18323,34.098111],[-118.183434,34.09799],[-118.18357,34.0979],[-118.183629,34.097857],[-118.183785,34.097741],[-118.18394,34.09761],[-118.184069,34.097492],[-118.184205,34.097353],[-118.184338,34.0972],[-118.184372,34.097158],[-118.184487,34.097005],[-118.184625,34.096795],[-118.184717,34.096632],[-118.184798,34.096465],[-118.18489,34.096238],[-118.184966,34.095992],[-118.185009,34.095805],[-118.185362,34.093982],[-118.185407,34.093814],[-118.185448,34.093704],[-118.185485,34.093624],[-118.185542,34.093519],[-118.185608,34.093418],[-118.185682,34.093321],[-118.185764,34.093228],[-118.185853,34.09314],[-118.18594291481408,34.09307807923285],[-118.1860121542612,34.09302370237617],[-118.18606491770771,34.09298618124605],[-118.18611933585103,34.09295037558159],[-118.18613403611016,34.09294134792888],[-118.18613912573672,34.09293797962149],[-118.18614736859219,34.0929331602489],[-118.18617540779275,34.09291594094939],[-118.18620510212256,34.09289940502962],[-118.18623808325012,34.09288012186461],[-118.18625037791577,34.09287419224022],[-118.18627932041325,34.09285807499429],[-118.18640964529972,34.09279536011246],[-118.18643519797745,34.09278505492026],[-118.1864409938082,34.09278225963486],[-118.18645146816046,34.09277849328454],[-118.18650369352007,34.09275743121135],[-118.1866472586755,34.09270809125383],[-118.186828812686,34.09266075391031],[-118.18685563895474,34.09265617442968],[-118.18687338170051,34.09265175392014],[-118.18695500775617,34.09263921129905],[-118.18703186248294,34.09262609151948],[-118.18705911180014,34.0926232147209],[-118.1870698351683,34.09262156697322],[-118.18708338136628,34.09262065250428],[-118.18713422730617,34.09261528453388],[-118.18727293167765,34.09260785645083],[-118.18737697365553,34.09260769501926],[-118.18741687362649,34.09260926036502],[-118.18742486913152,34.09260933834787],[-118.18743401711018,34.09260993293393],[-118.18746120418814,34.09261099953062],[-118.18754874501256,34.09261738983923],[-118.1876528121433,34.09262925022101],[-118.1877203764098,34.09264038336731],[-118.18773376202849,34.09264217664409],[-118.18775270785726,34.09264571089847],[-118.18776845586308,34.09264830583307],[-118.187783266696,34.0926514115047],[-118.18780315149431,34.09265512091938],[-118.18782422467189,34.09265999994969],[-118.18787089344987,34.09266978588818],[-118.18788859193964,34.09267490277339],[-118.18791220427485,34.09268036968975],[-118.18799978462516,34.09270427715871],[-118.18808241615658,34.09273094011231],[-118.18811547146409,34.09274256688632],[-118.18817332027344,34.09276411759022],[-118.1881805166694,34.0927672377137],[-118.18819150217477,34.09277130239678],[-118.18831383025861,34.09282503815458],[-118.18841799171243,34.09287845919931],[-118.18844361792486,34.09289361732164],[-118.18847586567462,34.09291065687463],[-118.18851398714172,34.0929352413111],[-118.18854367051225,34.09295279927689],[-118.18858782763044,34.09298286085311],[-118.18859328895697,34.0929863828486],[-118.18859477170497,34.0929875882863],[-118.18863629310626,34.09301585550165],[-118.18867599594687,34.09304601999037],[-118.18872562966293,34.09308578624466],[-118.1887504483176,34.09310670006576],[-118.18880174212035,34.09315058611762],[-118.18881828818954,34.09316464321849],[-118.18893408459581,34.09326344132959],[-118.18893907656097,34.09326749967461],[-118.18896318145293,34.09328826692318],[-118.1890151917133,34.09333264235458],[-118.18905315567804,34.09336572151222],[-118.18907972488668,34.09338852916507],[-118.18915417546079,34.09344817867008],[-118.18918519799995,34.09347029024038],[-118.18920694074143,34.09348463872212],[-118.18926829384122,34.09352219241205],[-118.18936253160611,34.09356841488797],[-118.18940800588254,34.09358724229089],[-118.18943030410439,34.09359613095378],[-118.18949475912437,34.09361732584879],[-118.18958279324247,34.09363945212999],[-118.18959896232978,34.09364315121787],[-118.18964988965703,34.09365227796455],[-118.18967485606747,34.09365585693576],[-118.18969711779944,34.09365890845696],[-118.18973641248398,34.09366330353718],[-118.18975075392552,34.09366449606414],[-118.1897904424465,34.0936669357889],[-118.18981525825478,34.09366800283533],[-118.18989452688916,34.09366726751219],[-118.18991103932532,34.09366647855369],[-118.18998010200562,34.09366123863822],[-118.18998038926529,34.09366121609936],[-118.19006246062465,34.09365328975489],[-118.19010257092368,34.09364934544742],[-118.1901778491001,34.09364213583275],[-118.19024598895244,34.09413453330593],[-118.19023407864252,34.09418759791565],[-118.19025145493084,34.09417403198201],[-118.190314,34.094626],[-118.190322,34.094767],[-118.190319,34.094922],[-118.190059,34.09722],[-118.19003,34.09748],[-118.190001,34.097635],[-118.189953,34.097786],[-118.18991,34.097884],[-118.189831,34.098026],[-118.189772,34.09811],[-118.18969,34.098216],[-118.189484,34.09848],[-118.189407,34.098569],[-118.189301,34.098674],[-118.188936,34.098991],[-118.188812,34.099102],[-118.188693,34.099219],[-118.18858,34.099343],[-118.188479,34.099465],[-118.188218,34.09982],[-118.188078,34.100045],[-118.188065,34.100065],[-118.187976,34.100209],[-118.187916,34.100291]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":487813.49001,"geom:bbox":"-118.190322,34.092607695,-118.179652,34.103115","geom:latitude":34.097493,"geom:longitude":-118.185809,"iso:country":"US","lbl:latitude":34.092386,"lbl:longitude":-118.176351,"lbl:max_zoom":18,"mps:latitude":34.097313,"mps:longitude":-118.18714,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Monterey Hills"],"name:eng_x_variant":["Monterey Hls"],"name:ita_x_preferred":["Monterey Hills"],"reversegeo:latitude":34.097313,"reversegeo:longitude":-118.18714,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869501,102191575,1108692433,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5413749"},"wof:country":"US","wof:geomhash":"a1f0529330d3640fefeb3c6e1478fd12","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692433,"microhood_id":1108561771,"neighbourhood_id":85869501,"region_id":85688637}],"wof:id":1108561771,"wof:lastmodified":1566623963,"wof:name":"Monterey Hills","wof:parent_id":85869501,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869503],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108562811.geojson b/fixtures/microhoods/1108562811.geojson new file mode 100644 index 0000000..ea7483f --- /dev/null +++ b/fixtures/microhoods/1108562811.geojson @@ -0,0 +1 @@ +{"id":1108562811,"type":"Feature","bbox":[-118.36582014206743,34.101525,-118.35316458686492,34.12895878252858],"geometry":{"type":"Polygon","coordinates":[[[-118.355027,34.101662],[-118.356117,34.101669],[-118.357209,34.101677],[-118.357372,34.101678],[-118.358207,34.101684],[-118.359389,34.101693],[-118.359623,34.101686],[-118.359827,34.101668],[-118.360029,34.101639],[-118.360227,34.101597],[-118.360418,34.101546],[-118.360478,34.101525],[-118.360482,34.102773],[-118.360475,34.102846],[-118.360452,34.102899],[-118.360395,34.102988],[-118.360367,34.103061],[-118.360354,34.103144],[-118.360361,34.103227],[-118.3604,34.103363],[-118.360455,34.103492],[-118.360558,34.103694],[-118.360618,34.103813],[-118.36068,34.103935],[-118.360851,34.104148],[-118.36170358285366,34.10501614178747],[-118.36231196639622,34.10563562782784],[-118.36235530221744,34.10571579755785],[-118.3623676280813,34.10579317636812],[-118.36235068166859,34.10586872788382],[-118.362305,34.105945],[-118.362264,34.106006],[-118.362238,34.106072],[-118.362228,34.106141],[-118.362232,34.106204],[-118.36225,34.106266],[-118.362284,34.106329],[-118.362332,34.106386],[-118.362827,34.106838],[-118.362922,34.106947],[-118.36299,34.107047],[-118.363053,34.107171],[-118.363092,34.107281],[-118.363226,34.107814],[-118.363267,34.107924],[-118.363333,34.108046],[-118.363396,34.108136],[-118.364132,34.109085],[-118.364185,34.109176],[-118.364224,34.109271],[-118.36446,34.110101],[-118.36451,34.110312],[-118.364573,34.110626],[-118.364252,34.110671],[-118.364147,34.110698],[-118.364038,34.110743],[-118.36394,34.110804],[-118.363872,34.110862],[-118.363807,34.110936],[-118.363757,34.111017],[-118.363723,34.111104],[-118.36371,34.111163],[-118.363597,34.111889],[-118.363479,34.11259],[-118.363433,34.112753],[-118.363371,34.112913],[-118.363095,34.113471],[-118.362515,34.114638],[-118.362488,34.114727],[-118.362479,34.114828],[-118.362488,34.114919],[-118.362515,34.115008],[-118.362558,34.115092],[-118.362616,34.11517],[-118.36371,34.116214],[-118.363769,34.116292],[-118.363816,34.116385],[-118.363843,34.116484],[-118.363849,34.116576],[-118.363838,34.116667],[-118.363809,34.116755],[-118.363771,34.11683],[-118.36357909250488,34.11715138048612],[-118.36294156185932,34.11831252935555],[-118.36263704728319,34.11886714858564],[-118.36221653114139,34.11949816322208],[-118.36148573506522,34.12059477515793],[-118.36141814421929,34.12076483205993],[-118.361376,34.120959],[-118.36139,34.122113],[-118.361396,34.122574],[-118.361413,34.122654],[-118.361435,34.122715],[-118.361473,34.122798],[-118.36151,34.122863],[-118.361526,34.122929],[-118.361516,34.123274],[-118.3615,34.123349],[-118.361475,34.123425],[-118.361467,34.123501],[-118.361477,34.123577],[-118.361525,34.123723],[-118.361541,34.123822],[-118.361543,34.12386],[-118.36158557359009,34.12396065055611],[-118.36168542255801,34.12408980018188],[-118.36339265942057,34.1254631172759],[-118.36348458703607,34.12559205647099],[-118.36353973562633,34.12575066020295],[-118.36355402393343,34.12591027445593],[-118.363558,34.126122],[-118.363573,34.126194],[-118.363605,34.126271],[-118.363659,34.126349],[-118.363717,34.126406],[-118.36395,34.126602],[-118.364187,34.12641],[-118.364268,34.126366],[-118.364349,34.126338],[-118.364435,34.126322],[-118.364523,34.126318],[-118.364619,34.126329],[-118.364711,34.126355],[-118.364795,34.126395],[-118.364862,34.126443],[-118.364914,34.126493],[-118.365106,34.126716],[-118.36521842508093,34.12688338471431],[-118.3653237761141,34.1271198704821],[-118.36543740326833,34.12739044191397],[-118.36554945459098,34.12771341702649],[-118.36582014206743,34.12895878252858],[-118.365704,34.128947],[-118.365478,34.128912],[-118.365299,34.128872],[-118.365272,34.128864],[-118.365082,34.128807],[-118.363923,34.128395],[-118.363763,34.128342],[-118.363599,34.128296],[-118.36332,34.128236],[-118.36315,34.128209],[-118.362863,34.128181],[-118.362691,34.128175],[-118.362402,34.12818],[-118.36223,34.128194],[-118.361973,34.128227],[-118.361895,34.128234],[-118.36174,34.128239],[-118.361636,34.128234],[-118.361533,34.128224],[-118.361431,34.128208],[-118.361331,34.128185],[-118.361233,34.128157],[-118.36109,34.128105],[-118.360967,34.128046],[-118.360843,34.127974],[-118.360708,34.127873],[-118.360637,34.12781],[-118.360579,34.12775],[-118.360519,34.127679],[-118.360465,34.127605],[-118.360424,34.12754],[-118.360393,34.127478],[-118.360367,34.127413],[-118.360349,34.127348],[-118.360341,34.127306],[-118.360333,34.127198],[-118.360343,34.127089],[-118.360371,34.126983],[-118.360417,34.126881],[-118.360488,34.126774],[-118.360567,34.126689],[-118.360617,34.126633],[-118.360656,34.126566],[-118.36068,34.126493],[-118.360686,34.126425],[-118.360677,34.12635],[-118.36065,34.126278],[-118.360612,34.126218],[-118.360556,34.126158],[-118.360488,34.126109],[-118.36041,34.126071],[-118.360347,34.126053],[-118.35965,34.125858],[-118.359567,34.125829],[-118.359485,34.125788],[-118.359404,34.125729],[-118.35937,34.125697],[-118.359315,34.125631],[-118.35927,34.125551],[-118.359242,34.125466],[-118.359205,34.125145],[-118.359202,34.125121],[-118.359182,34.125061],[-118.359146,34.125007],[-118.358789,34.124664],[-118.358049,34.123963],[-118.358005,34.123907],[-118.357979,34.123844],[-118.357972,34.123777],[-118.357984,34.123715],[-118.358011,34.123658],[-118.358054,34.123606],[-118.358109,34.123564],[-118.358174,34.123534],[-118.359258,34.123257],[-118.359317,34.123227],[-118.359359,34.123191],[-118.359392,34.123146],[-118.359412,34.123091],[-118.359414,34.123033],[-118.359398,34.122977],[-118.359365,34.122927],[-118.359318,34.122885],[-118.35902,34.122733],[-118.358285,34.122263],[-118.358178,34.122201],[-118.35804,34.122134],[-118.35791,34.122083],[-118.357774,34.122042],[-118.357607,34.122007],[-118.357465,34.121988],[-118.357321,34.121979],[-118.357234,34.12198],[-118.357004,34.121995],[-118.356924,34.121995],[-118.356832,34.121984],[-118.356733,34.121959],[-118.35667,34.121935],[-118.356572,34.121884],[-118.356528,34.121854],[-118.355947,34.121352],[-118.355913,34.121326],[-118.355839,34.121281],[-118.355747,34.121241],[-118.355693,34.121224],[-118.355626,34.121209],[-118.355569,34.121201],[-118.355499,34.121197],[-118.355142,34.121191],[-118.355039,34.121181],[-118.354917,34.12115],[-118.354815,34.121107],[-118.354768,34.121079],[-118.354698,34.121029],[-118.35463,34.120962],[-118.354447,34.120744],[-118.354379,34.120679],[-118.354308,34.120629],[-118.354009,34.120456],[-118.353956,34.120419],[-118.353916,34.120384],[-118.353872,34.120338],[-118.353311,34.119682],[-118.353287,34.119658],[-118.353221,34.11961],[-118.353191,34.119595],[-118.35316458686492,34.11958357810375],[-118.35433479641058,34.11822815553646],[-118.35448882503542,34.11806312486699],[-118.35471986797269,34.11786508806362],[-118.35494643220153,34.11772322984212],[-118.3549738262154,34.11770652245954],[-118.35500592113311,34.11770005739415],[-118.35505543033395,34.11771243469434],[-118.3551035642792,34.1177426903171],[-118.35522596202574,34.11783208192973],[-118.35534698451669,34.11790909624215],[-118.35540887101774,34.11795585493181],[-118.35544019969251,34.11800927804288],[-118.35546800700763,34.11804112077773],[-118.35550238839711,34.11805349807792],[-118.35553565858007,34.11806029734152],[-118.35558902949857,34.11806312486699],[-118.35561240884343,34.11805349807791],[-118.35563303767711,34.1180287434775],[-118.35564142673614,34.11800495155597],[-118.35564403972174,34.11797510850994],[-118.35561583889262,34.11793993432607],[-118.35556702540931,34.11790909624215],[-118.35555042341146,34.1178864298148],[-118.35554035472246,34.11785770185948],[-118.35553401927542,34.11776606966194],[-118.35553126876427,34.11767667804929],[-118.35554502132005,34.11760103899247],[-118.3555659327405,34.11753990605609],[-118.3556000315432,34.11748001650152],[-118.35564368527443,34.11744930718622],[-118.35570867673394,34.11743188255626],[-118.35577606425733,34.11743600832298],[-118.35593559390448,34.11748001650152],[-118.35606211741774,34.11750202059078],[-118.35615577866999,34.11750905766779],[-118.3562601542211,34.11751302263541],[-118.35649807343626,34.11750339584636],[-118.35658443828555,34.11749444767688],[-118.35666722987247,34.11748001650152],[-118.35674974520721,34.11745251138993],[-118.35682125849732,34.11741400423373],[-118.35685768427405,34.11737032211493],[-118.35689101312532,34.11731455233672],[-118.35691,34.117218],[-118.356306,34.116984],[-118.355992,34.116828],[-118.355955,34.1168],[-118.355927,34.116759],[-118.355915,34.116715],[-118.35592,34.116671],[-118.355939,34.11663],[-118.355975,34.11659],[-118.356025,34.116557],[-118.356084,34.116535],[-118.356203,34.116521],[-118.356338,34.116497],[-118.35665,34.116405],[-118.356734,34.116368],[-118.356809,34.116319],[-118.356979,34.116158],[-118.35702,34.116106],[-118.357046,34.116047],[-118.357055,34.115986],[-118.357038,34.115844],[-118.35702,34.115762],[-118.356973,34.115643],[-118.356949,34.115601],[-118.356909,34.115561],[-118.356873,34.115538],[-118.356511,34.115395],[-118.356465,34.115365],[-118.356431,34.115321],[-118.356417,34.115279],[-118.356417,34.115236],[-118.356434,34.115189],[-118.356468,34.115149],[-118.356513,34.115121],[-118.356568,34.115104],[-118.357349,34.115093],[-118.357395,34.115088],[-118.357438,34.115072],[-118.357483,34.115041],[-118.357513,34.114999],[-118.357525,34.114954],[-118.357519,34.114907],[-118.357497,34.114865],[-118.357462,34.114832],[-118.357411,34.114807],[-118.356877,34.114716],[-118.356816,34.114701],[-118.356748,34.11467],[-118.356675,34.114623],[-118.356613,34.114564],[-118.356444,34.114332],[-118.356423,34.114281],[-118.356418,34.114231],[-118.356485,34.113833],[-118.35648851433557,34.11378077237519],[-118.35649047769415,34.11371057511339],[-118.35648777892409,34.11363767687293],[-118.35648414897356,34.11357600972679],[-118.35623294527774,34.10985862303716],[-118.3562133000642,34.10977594792618],[-118.35618726567546,34.10971807401397],[-118.35614700831705,34.10967016783351],[-118.356093,34.109625],[-118.356063,34.109622],[-118.356016,34.109606],[-118.355975,34.109577],[-118.35595,34.109542],[-118.355938,34.109499],[-118.355988,34.109177],[-118.355984,34.109097],[-118.355959,34.109013],[-118.355777,34.108693],[-118.355684,34.108509],[-118.35554,34.108147],[-118.355503,34.108035],[-118.355489,34.107978],[-118.35531,34.106974],[-118.355283,34.106771],[-118.355273,34.106578],[-118.35528,34.106384],[-118.355366,34.105539],[-118.355154,34.105327],[-118.355109,34.105218],[-118.355039,34.105048],[-118.35503435004136,34.10373593667057],[-118.35503130031577,34.10287540576693],[-118.355027,34.101662]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000167,"geom:area_square_m":1710633.597248,"geom:bbox":"-118.365820142,34.101525,-118.353164587,34.1289587825","geom:latitude":34.114042,"geom:longitude":-118.359496,"iso:country":"US","lbl:latitude":34.12265,"lbl:longitude":-118.358779,"lbl:max_zoom":18,"mps:latitude":34.112337,"mps:longitude":-118.359598,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Nichols Canyon"],"name:eng_x_variant":["Nichols Cyn"],"name:jpn_x_preferred":["ニコラスキャニオン"],"name:por_x_preferred":["Nichols Canyon"],"reversegeo:latitude":34.112337,"reversegeo:longitude":-118.359598,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865833,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q10336698"},"wof:country":"US","wof:geomhash":"a4dc7ba34704490a086caf096c367c15","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108562811,"neighbourhood_id":85865833,"region_id":85688637}],"wof:id":1108562811,"wof:lastmodified":1566623961,"wof:name":"Nichols Canyon","wof:parent_id":85865833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869527],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108562813.geojson b/fixtures/microhoods/1108562813.geojson new file mode 100644 index 0000000..cf28db2 --- /dev/null +++ b/fixtures/microhoods/1108562813.geojson @@ -0,0 +1 @@ +{"id":1108562813,"type":"Feature","bbox":[-118.37899595063077,34.15224364132217,-118.36152582900739,34.16870798373524],"geometry":{"type":"Polygon","coordinates":[[[-118.378971,34.168058],[-118.377523,34.168058],[-118.377397,34.168097],[-118.37657,34.168098],[-118.37471,34.168097],[-118.372459,34.168097],[-118.371507,34.168097],[-118.37035,34.168097],[-118.37031,34.168411],[-118.370277,34.168663],[-118.368609,34.168664],[-118.367518,34.168666],[-118.367172,34.168666],[-118.366805,34.168702],[-118.365366,34.168704],[-118.364581,34.168705],[-118.363609,34.168706],[-118.362637,34.168707],[-118.36156276111649,34.16870798373524],[-118.36155378098576,34.1675624964049],[-118.36155336057422,34.16708333522922],[-118.36155266527817,34.16692258604204],[-118.36155047608383,34.16603468084223],[-118.36154906393222,34.1657083728551],[-118.36154642108865,34.1650976633203],[-118.36154701397673,34.16485275524471],[-118.36154621806939,34.16466864986043],[-118.36154411152006,34.16379997980648],[-118.36154117941896,34.16312229000908],[-118.36153921300681,34.16228590836005],[-118.36153676689429,34.16172053718612],[-118.36153599703808,34.16154261383603],[-118.3615348921103,34.16090510783525],[-118.36153313231064,34.16049842566109],[-118.36153283766323,34.16043041492453],[-118.36153364524867,34.16023497007078],[-118.36153288617224,34.16005945123906],[-118.3615300744454,34.15940958350219],[-118.36152727170173,34.15837982107661],[-118.36152714234433,34.15796798127549],[-118.36152582900739,34.15766434334005],[-118.36261662810406,34.1576627949378],[-118.36374709500706,34.15766145987754],[-118.36479822899236,34.15766001108443],[-118.36479402397852,34.15669688894715],[-118.36479130477815,34.15569529167395],[-118.36478729829197,34.15477750951761],[-118.36478365921677,34.15394387973442],[-118.36478235576129,34.15364539387224],[-118.36478027077152,34.1527890905229],[-118.36477923321739,34.15255140081294],[-118.36477789023601,34.15224364132217],[-118.36588356094221,34.15225747450306],[-118.36634962667456,34.15226327673677],[-118.36650002531438,34.152265225187],[-118.36671653007764,34.15226765982044],[-118.36706855737958,34.15227140060666],[-118.36744204902696,34.15227095308019],[-118.36833116017266,34.15226996510226],[-118.36886495797913,34.15226936815245],[-118.36929133344725,34.15226875336106],[-118.369402119078,34.15228215462287],[-118.36967990960487,34.15231565516606],[-118.37000234460476,34.15235451337094],[-118.37021895447089,34.15238064160269],[-118.37031816710584,34.15239270324274],[-118.37032255447767,34.1530099342807],[-118.37032496375926,34.15318270011903],[-118.37031798834109,34.15347124999401],[-118.37061871285715,34.15347238960922],[-118.37061972525849,34.15405906043361],[-118.37062128203887,34.1544100988889],[-118.37062435337884,34.15510255735934],[-118.37062860241012,34.15643320963714],[-118.37063021398774,34.15679661293267],[-118.37063235018151,34.15765085596013],[-118.37201403364863,34.15764970376437],[-118.37317590295902,34.15764852778126],[-118.37399400317985,34.15764771752743],[-118.37482532660162,34.15764686118571],[-118.37578225785637,34.15764595206603],[-118.3765557369604,34.15764560640727],[-118.37765975925807,34.15764422377225],[-118.37818036889783,34.15764362760378],[-118.37894227859933,34.15764295933015],[-118.37899595063077,34.15764293692553],[-118.378995,34.157738],[-118.378988,34.158803],[-118.37898,34.159922],[-118.378973,34.160812],[-118.378974,34.162973],[-118.378977,34.164896],[-118.37897,34.165443],[-118.37897,34.165951],[-118.37897,34.166997],[-118.378971,34.168058]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000218,"geom:area_square_m":2233280.335909,"geom:bbox":"-118.378995951,34.1522436413,-118.361525829,34.1687079837","geom:latitude":34.161881,"geom:longitude":-118.369786,"iso:country":"US","lbl:latitude":34.167692,"lbl:longitude":-118.376418,"lbl:max_zoom":18,"mps:latitude":34.162963,"mps:longitude":-118.367872,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["NoHo Arts District"],"name:pol_x_preferred":["NoHo Arts District"],"reversegeo:latitude":34.162963,"reversegeo:longitude":-118.367872,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85837735,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7043919"},"wof:country":"US","wof:geomhash":"d0b1306763b3747dc763a7817d0d2696","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1108562813,"neighbourhood_id":85837735,"region_id":85688637}],"wof:id":1108562813,"wof:lastmodified":1566623961,"wof:name":"NoHo Arts District","wof:parent_id":85837735,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869529],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108562815.geojson b/fixtures/microhoods/1108562815.geojson new file mode 100644 index 0000000..505f7fa --- /dev/null +++ b/fixtures/microhoods/1108562815.geojson @@ -0,0 +1 @@ +{"id":1108562815,"type":"Feature","bbox":[-118.287428,34.029346,-118.283953,34.032767],"geometry":{"type":"Polygon","coordinates":[[[-118.287428,34.029349],[-118.28742,34.032766],[-118.28643,34.032767],[-118.283965,34.031698],[-118.283953,34.029346],[-118.287428,34.029349]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":107845.606824,"geom:bbox":"-118.287428,34.029346,-118.283953,34.032767","geom:latitude":34.030886,"geom:longitude":-118.285805,"iso:country":"US","lbl:latitude":34.030857,"lbl:longitude":-118.285827,"lbl:max_zoom":18,"mps:latitude":34.030857,"mps:longitude":-118.285827,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["North University Park"],"reversegeo:latitude":34.030857,"reversegeo:longitude":-118.285827,"src:geom":"mz","wof:belongsto":[420551237,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"8fa4607c1bac5265bbdcbcfb96d3d651","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1108562815,"neighbourhood_id":420551237,"region_id":85688637}],"wof:id":1108562815,"wof:lastmodified":1566623961,"wof:name":"North University Park Historic District","wof:parent_id":420551237,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551219],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108564571.geojson b/fixtures/microhoods/1108564571.geojson new file mode 100644 index 0000000..de90160 --- /dev/null +++ b/fixtures/microhoods/1108564571.geojson @@ -0,0 +1 @@ +{"id":1108564571,"type":"Feature","bbox":[-118.25099930178318,34.044595,-118.24473802924872,34.05027532079555],"geometry":{"type":"Polygon","coordinates":[[[-118.248997,34.044595],[-118.25099930178318,34.04596001164419],[-118.24698537930271,34.05027532079555],[-118.24587572837808,34.04954925290659],[-118.24569502429792,34.04930855928007],[-118.2455327695307,34.04900470155165],[-118.24473802924872,34.04852166383318],[-118.245354,34.047863],[-118.245505,34.047705],[-118.246183,34.047247],[-118.246963,34.046678],[-118.24757,34.046064],[-118.248536,34.04503],[-118.248997,34.044595]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":153727.107344,"geom:bbox":"-118.250999302,34.044595,-118.244738029,34.0502753208","geom:latitude":34.047433,"geom:longitude":-118.247878,"iso:country":"US","lbl:latitude":34.048299,"lbl:longitude":-118.247311,"lbl:max_zoom":18,"mps:latitude":34.047473,"mps:longitude":-118.247926,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"no ref","mz:tier_metro":1,"name:eng_x_preferred":["Old Bank District"],"name:ita_x_preferred":["Old Bank District"],"name:pol_x_preferred":["Old Bank District"],"reversegeo:latitude":34.047473,"reversegeo:longitude":-118.247926,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4252148"},"wof:country":"US","wof:geomhash":"9018512e4bb522a77059a9f4d7cad054","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108564571,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1108564571,"wof:lastmodified":1566623963,"wof:name":"Old Bank District","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869565],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691213.geojson b/fixtures/microhoods/1108691213.geojson new file mode 100644 index 0000000..7416897 --- /dev/null +++ b/fixtures/microhoods/1108691213.geojson @@ -0,0 +1 @@ +{"id":1108691213,"type":"Feature","bbox":[-118.57385993620096,34.06855917366284,-118.54593778012551,34.08063082755434],"geometry":{"type":"Polygon","coordinates":[[[-118.56805996086288,34.06992620909504],[-118.57002753849352,34.07172386717153],[-118.57042807879353,34.07216346782851],[-118.57081267101623,34.07265830563203],[-118.57163083308615,34.07388035244227],[-118.57331423651269,34.07671216488555],[-118.57356677838071,34.07717108370475],[-118.57375910548858,34.07766496777013],[-118.57384399005775,34.07794528721922],[-118.57385993620096,34.07823785817155],[-118.57385610482287,34.07855936133883],[-118.57378167702338,34.07890469138694],[-118.57348475445406,34.07943223950866],[-118.57315885629285,34.07983436551774],[-118.57277632684738,34.080106445014],[-118.5723747802052,34.08030356543862],[-118.57195746189933,34.08047856067556],[-118.57148868285175,34.08063082755434],[-118.56441880123515,34.08044588001357],[-118.56355803242992,34.08035951694579],[-118.562543527884,34.08022268900335],[-118.56167572470942,34.08007446187018],[-118.56080192407889,34.07987784130126],[-118.55714497720284,34.07900960027435],[-118.55671709116174,34.07892359720442],[-118.55624742841144,34.07883953430078],[-118.55536649140285,34.0787831585809],[-118.55442659990894,34.07885154534044],[-118.55348699223855,34.07902624994207],[-118.55174516287546,34.07964517618757],[-118.55125701960169,34.07970420125491],[-118.55077524589615,34.07961996215218],[-118.5503043072963,34.0794264654752],[-118.54924553961412,34.07902615152068],[-118.54876581855643,34.07897285910836],[-118.54826072827345,34.07899637691229],[-118.54790593681822,34.07897974949496],[-118.54751740442082,34.07891988673514],[-118.54720849383183,34.07874345642805],[-118.54696460154659,34.0785276143573],[-118.54673084543569,34.07826747232956],[-118.54642666388904,34.07790741657662],[-118.5462719267177,34.0776141209972],[-118.54615018613326,34.0773054654997],[-118.54600717157385,34.07669676008917],[-118.54594967830883,34.0762196875245],[-118.54593778012551,34.07571078864064],[-118.5459497328522,34.07515040323061],[-118.54608273827911,34.07454391708289],[-118.54621033219696,34.07398350726938],[-118.54652005478899,34.07314744827869],[-118.54669676564914,34.07275855499826],[-118.54694764318975,34.07235330351197],[-118.54720202663052,34.07200965960403],[-118.54749903521,34.07168474633797],[-118.54786041463501,34.07135659572602],[-118.54834807784417,34.07099999893477],[-118.54881755047249,34.07074894842818],[-118.54928845159884,34.07056104586967],[-118.54974780441128,34.07042680433322],[-118.55019734307257,34.07033620160666],[-118.55079585976164,34.0703795083201],[-118.55130844726342,34.07049266029223],[-118.55171318831893,34.07061843803732],[-118.55216216913598,34.07078187616442],[-118.55247379517807,34.07094195801345],[-118.55267501137786,34.07111097360431],[-118.55382766024374,34.07229400180786],[-118.55428478863175,34.07262031760918],[-118.55478551107696,34.07295003126388],[-118.55515921984316,34.07310063878415],[-118.55552426027721,34.07319058472959],[-118.5559290939439,34.07316928036092],[-118.5562955097641,34.07305645908416],[-118.55656119935233,34.07291926613168],[-118.55673821098944,34.07274288632405],[-118.55683441629871,34.07246267652658],[-118.55715245352464,34.07130277872459],[-118.55739737374357,34.07056641311654],[-118.55789353237216,34.06963399106471],[-118.55837877730667,34.06929342203205],[-118.55893702362323,34.06896844305611],[-118.55959636814394,34.06873524718803],[-118.5603044197183,34.06859460202077],[-118.5610263608279,34.06855917366284],[-118.56191956480684,34.06855953387074],[-118.5642952826138,34.06865107222029],[-118.56511134466444,34.06881849134179],[-118.56598787723426,34.06904256673558],[-118.56671735012507,34.06924664078107],[-118.56727810312834,34.0694729603473],[-118.56774895371656,34.06970192345698],[-118.56805996086288,34.06992620909504]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000243,"geom:area_square_m":2487206.079946,"geom:bbox":"-118.573859936,34.0685591737,-118.54593778,34.0806308276","geom:latitude":34.075105,"geom:longitude":-118.560273,"iso:country":"US","lbl:latitude":34.100348,"lbl:longitude":-118.583618,"lbl:max_zoom":18,"mps:latitude":34.074425,"mps:longitude":-118.562799,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"no ref","mz:tier_metro":1,"reversegeo:latitude":34.074425,"reversegeo:longitude":-118.562799,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85840153,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ea24c7d7d733c035c189b9b4d550aad5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108691213,"neighbourhood_id":85840153,"region_id":85688637}],"wof:id":1108691213,"wof:lastmodified":1566623957,"wof:name":"Palisades Highlands","wof:parent_id":85840153,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869577],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691215.geojson b/fixtures/microhoods/1108691215.geojson new file mode 100644 index 0000000..1fd7b0e --- /dev/null +++ b/fixtures/microhoods/1108691215.geojson @@ -0,0 +1 @@ +{"id":1108691215,"type":"Feature","bbox":[-118.50871223450146,34.0501616421146,-118.4938721124241,34.06567146031539],"geometry":{"type":"Polygon","coordinates":[[[-118.50007050355931,34.06549420536063],[-118.49982813428062,34.06523436315683],[-118.4994820613303,34.06489673315127],[-118.49916481720506,34.06461131526036],[-118.4989839587692,34.06449037635254],[-118.49885587172642,34.06442565920597],[-118.49875223136857,34.06439053607223],[-118.49858319886503,34.06437606907616],[-118.4982485169444,34.06435761189447],[-118.49793763149587,34.06432692241333],[-118.49763398751101,34.06428268141109],[-118.49744730504436,34.06423053050451],[-118.49722305927418,34.06413829437619],[-118.4969422856749,34.06400350506557],[-118.49675431558998,34.0639053629231],[-118.49664224973876,34.06383305248522],[-118.49656714707783,34.06371659948986],[-118.49647013842504,34.06357673881278],[-118.49637034918642,34.06340213477711],[-118.49627666113287,34.06319522041748],[-118.4962219991322,34.06307601151183],[-118.49613043670402,34.06297195546068],[-118.49599984058665,34.06284117183922],[-118.49577753785681,34.06260787763403],[-118.49570619119602,34.06250320267593],[-118.495653319923,34.06241115140863],[-118.4956104843009,34.06229062076499],[-118.49556156633253,34.06210478615738],[-118.49549232828093,34.06183076228607],[-118.49540731206167,34.06154384163781],[-118.4953650760361,34.06122939448763],[-118.49536026014661,34.06110801353389],[-118.49536138592048,34.06102410416174],[-118.49538538688239,34.06093382424972],[-118.49542200790975,34.06084457337099],[-118.49546614003452,34.06075029925089],[-118.49551839524096,34.06066660849235],[-118.49557570783861,34.0605626615752],[-118.4955987717847,34.06046946690248],[-118.49561394493713,34.06038002002155],[-118.49543778129379,34.0602436823115],[-118.49546028628562,34.06021306001941],[-118.4955304200857,34.06013915356837],[-118.49559591137866,34.06002734921336],[-118.49564649082546,34.05988116718437],[-118.49571243402357,34.05957711166469],[-118.49578924249893,34.05924263149009],[-118.49597474152793,34.05801220306907],[-118.49607698656963,34.05736760644606],[-118.4961351835591,34.05690819684349],[-118.4961779635597,34.0566590176967],[-118.49623271712504,34.05645831340732],[-118.49628903792681,34.05632900972042],[-118.49635392195674,34.05621976319876],[-118.49642629302461,34.05612268821824],[-118.49650890780157,34.05603728856264],[-118.49658868494123,34.05595952865157],[-118.49669908598865,34.05587566731965],[-118.4970133107981,34.05569914620329],[-118.49741920792427,34.05546027952299],[-118.49710723138152,34.05511660259291],[-118.49694262651207,34.05497208462671],[-118.49679691927777,34.05487191617066],[-118.4966351809946,34.05479278276609],[-118.49647409219124,34.05474986007082],[-118.4962399312278,34.05472314369813],[-118.49554571259397,34.05467964528267],[-118.49470540506927,34.05462006076592],[-118.4945459625657,34.05460002581254],[-118.49439011997877,34.05456293558061],[-118.49425007407869,34.05450441626435],[-118.49413898313043,34.05444286498653],[-118.49405471669687,34.05435423266294],[-118.4939731215975,34.05424738190551],[-118.4939114133577,34.05413265321451],[-118.49387269599376,34.05403984149116],[-118.4938721124241,34.05392121580542],[-118.49389390468995,34.05382231251578],[-118.49392908580849,34.05367706936079],[-118.49400582742783,34.05351832257405],[-118.49410967317338,34.05328417251386],[-118.49423885129895,34.05298897507804],[-118.49434634785155,34.05277170033294],[-118.49451326168153,34.05237175387395],[-118.49463970825647,34.05199580187734],[-118.49472008297666,34.05166557279939],[-118.49480153435323,34.05126419235494],[-118.49481857729478,34.05108076571824],[-118.49480678531562,34.05095219755079],[-118.49475849059914,34.05082766293386],[-118.49467722740663,34.05068451329635],[-118.4945385329732,34.05048681407685],[-118.49447565303448,34.05043303974145],[-118.49464117788806,34.0501616421146],[-118.49485533304298,34.05033852822869],[-118.49503705887942,34.05041203921839],[-118.49554749544556,34.05049552094462],[-118.49625203302783,34.05053580182138],[-118.49739137681986,34.05058501727914],[-118.4971340229776,34.05149394490496],[-118.49764852233896,34.05162670693468],[-118.49815028681839,34.05171616050081],[-118.49864029734711,34.05172937058292],[-118.4992636028675,34.05167677267884],[-118.49996392344316,34.05156745255014],[-118.50059339266322,34.05140976827604],[-118.50137233750375,34.05115729355986],[-118.50144772083834,34.05133242069928],[-118.5015432051862,34.05150555920563],[-118.50201630491902,34.05209068245988],[-118.50240346836507,34.05254858307384],[-118.50262631805282,34.052877115291],[-118.50273065662533,34.0531756646502],[-118.50276121498077,34.05369927801957],[-118.50331111612444,34.05367465450013],[-118.50363115141235,34.05362308057445],[-118.50407843803751,34.05352358281466],[-118.50444431429116,34.05337982815657],[-118.50484231716055,34.0531436221534],[-118.50520794024457,34.05281358199684],[-118.50571739833758,34.05219907074358],[-118.50617405683502,34.05148381635861],[-118.50871223450146,34.05302972408692],[-118.508641,34.053224],[-118.508555,34.053439],[-118.508411,34.053478],[-118.50831,34.053485],[-118.508234,34.053494],[-118.508158,34.053518],[-118.508113,34.053536],[-118.50807,34.053559],[-118.50803,34.053608],[-118.508037,34.053657],[-118.508037,34.053722],[-118.508023,34.053767],[-118.50798,34.053857],[-118.507403,34.055025],[-118.507381,34.05507],[-118.507114,34.055408],[-118.506892,34.055689],[-118.50685576987533,34.05573373569442],[-118.50680958626972,34.0557713540361],[-118.50674130479604,34.05580859847629],[-118.50665207332477,34.05584273921313],[-118.50658689555443,34.05586446513657],[-118.50652326963578,34.0558753280983],[-118.5064545410902,34.05587769053338],[-118.50635930885134,34.05589069186532],[-118.50628428447793,34.0559086929093],[-118.50621833078176,34.05594438549781],[-118.50617487893486,34.05598007808632],[-118.5061380530094,34.0560263036997],[-118.506128,34.056079],[-118.506354,34.057303],[-118.50636,34.057444],[-118.506351,34.057544],[-118.506305,34.057903],[-118.506308,34.058041],[-118.506331,34.058177],[-118.506367,34.058291],[-118.506416,34.058402],[-118.506476,34.058513],[-118.506492,34.058575],[-118.506492,34.058649],[-118.506476,34.058711],[-118.506444,34.058775],[-118.506391,34.058835],[-118.506345,34.058873],[-118.506286,34.058904],[-118.506182,34.05896],[-118.506077,34.059062],[-118.506017,34.059143],[-118.505765,34.059597],[-118.505738,34.05968],[-118.505733,34.05973],[-118.505739,34.059809],[-118.50576,34.059879],[-118.505795,34.059944],[-118.505849,34.060009],[-118.505917,34.060065],[-118.506407,34.060329],[-118.506606,34.060448],[-118.506677,34.060519],[-118.50673,34.0606],[-118.506764,34.060688],[-118.506776,34.060771],[-118.506771,34.060855],[-118.506749,34.060937],[-118.506705,34.061021],[-118.506414,34.061443],[-118.50636,34.061522],[-118.506315,34.061616],[-118.506282,34.061702],[-118.506258,34.061791],[-118.506245,34.061867],[-118.506133,34.062743],[-118.50604307804475,34.06308735783478],[-118.50592600445685,34.0632215740118],[-118.50576050595822,34.06330956300211],[-118.50559124563915,34.06336188666518],[-118.5053253373808,34.06343811130557],[-118.50505276258696,34.06350330693079],[-118.5044966228138,34.06361180958226],[-118.50442867392199,34.06367317854602],[-118.50440415934531,34.06376208461595],[-118.50452752076802,34.06471597223449],[-118.50450996520202,34.06488644916706],[-118.50447257603433,34.06505187301716],[-118.50439990228384,34.06523587553476],[-118.50430998603717,34.06539637165744],[-118.50419584125041,34.06550629124894],[-118.5040809779068,34.0655760992798],[-118.50395384083909,34.06562003732498],[-118.50377296040342,34.06565689567325],[-118.5034617274213,34.06567146031539],[-118.50232474582285,34.06565235820313],[-118.50216509779742,34.0656392705765],[-118.50210033075878,34.0656096084667],[-118.50205290845453,34.06557176269968],[-118.50154244545561,34.06483737502522],[-118.50151631824707,34.06482196447845],[-118.50147654995973,34.06481308547324],[-118.50143364175484,34.06481776967129],[-118.50138903519469,34.06482738658043],[-118.50007050355931,34.06549420536063]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000142,"geom:area_square_m":1453801.195611,"geom:bbox":"-118.508712235,34.0501616421,-118.493872112,34.0656714603","geom:latitude":34.057911,"geom:longitude":-118.500946,"iso:country":"US","lbl:latitude":34.057786,"lbl:longitude":-118.501383,"lbl:max_zoom":18,"mps:latitude":34.058538,"mps:longitude":-118.50109,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:note":"seems to just be the country club","mz:tier_metro":1,"name:ara_x_preferred":["ريفييرا"],"name:bre_x_preferred":["Riviera"],"name:bul_x_preferred":["Ривиера"],"name:deu_x_preferred":["Riviera"],"name:ell_x_preferred":["Ριβιέρα"],"name:epo_x_preferred":["Riviero"],"name:fin_x_preferred":["Riviera"],"name:fra_x_preferred":["Riviera"],"name:hun_x_preferred":["Riviéra"],"name:hye_x_preferred":["Ռիվիերա"],"name:ita_x_preferred":["Riviera"],"name:kir_x_preferred":["Ривьера"],"name:lav_x_preferred":["Rivjēra"],"name:nld_x_preferred":["Rivièra"],"name:nor_x_preferred":["Rivieraen"],"name:pol_x_preferred":["Riwiera"],"name:ron_x_preferred":["Riviera"],"name:rus_x_preferred":["Ривьера"],"name:spa_x_preferred":["Riviera"],"name:swe_x_preferred":["Rivieran"],"reversegeo:latitude":34.058538,"reversegeo:longitude":-118.50109,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85840153,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"74301e25a220e450bd6942667e51a14a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108691215,"neighbourhood_id":85840153,"region_id":85688637}],"wof:id":1108691215,"wof:lastmodified":1566623957,"wof:name":"Riviera","wof:parent_id":85840153,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85845189],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691219.geojson b/fixtures/microhoods/1108691219.geojson new file mode 100644 index 0000000..7c0ca7b --- /dev/null +++ b/fixtures/microhoods/1108691219.geojson @@ -0,0 +1 @@ +{"id":1108691219,"type":"Feature","bbox":[-118.19980927450541,34.07415215082336,-118.18253651403644,34.09366800283533],"geometry":{"type":"Polygon","coordinates":[[[-118.1963488706062,34.07415215082336],[-118.19781693696939,34.07565696212979],[-118.19782024636292,34.07566004780115],[-118.19782190105968,34.07566176288969],[-118.19782355575643,34.0756631334724],[-118.19788637943579,34.07569772244786],[-118.19928010122607,34.07646826883485],[-118.19928671372487,34.07647169302665],[-118.19930820591806,34.07648333617073],[-118.19931322031395,34.07650874527346],[-118.1996505987886,34.07812256222804],[-118.19980927450541,34.07888208585312],[-118.19948175593936,34.08002127481547],[-118.19863654186831,34.08288594867178],[-118.19850056747703,34.08334060133483],[-118.19857837505536,34.0834239395998],[-118.19895747219009,34.08382690956575],[-118.19900547905719,34.0838773223407],[-118.1991677147975,34.08405017069554],[-118.19934981588202,34.08424325171819],[-118.1993696452936,34.08424905862029],[-118.19581287372395,34.08498958677457],[-118.19521392829647,34.08519252500304],[-118.19451103162095,34.0854316927018],[-118.19356059159246,34.08573823276456],[-118.19324707596505,34.08583937517761],[-118.19305236343227,34.08590082672131],[-118.19300450299058,34.08591258165448],[-118.19294507494294,34.08592092021623],[-118.19285425796264,34.08592312612574],[-118.19285888159142,34.08649570687373],[-118.19286191430385,34.08709473719004],[-118.1922806504161,34.08709738126885],[-118.19143022162483,34.08710113609877],[-118.19142789049666,34.08752568524017],[-118.19144648831798,34.08771491500296],[-118.19150153438365,34.08795595408858],[-118.19153978914002,34.08807542512866],[-118.1915550470251,34.08824817415016],[-118.1915921564295,34.08858850731262],[-118.1916026352773,34.08883751690249],[-118.19157536152696,34.0891865393143],[-118.19159042986755,34.0892765078909],[-118.1915875004614,34.08943932344596],[-118.19157041001311,34.08990854982745],[-118.19155127859253,34.09020775474783],[-118.1914927856911,34.0913471826558],[-118.19147826801778,34.09149765236464],[-118.19131756121008,34.09199252324257],[-118.19115003439276,34.09239535199726],[-118.19101185373913,34.09263154299486],[-118.19074476394391,34.09282603352263],[-118.19057715897313,34.09319623002744],[-118.190177,34.093636],[-118.19010257092368,34.09364934544742],[-118.19006246062465,34.09365328975489],[-118.18998038926529,34.09366121609936],[-118.18998010200562,34.09366123863822],[-118.18991103932532,34.09366647855369],[-118.18989452688916,34.09366726751219],[-118.18981525825478,34.09366800283533],[-118.1897904424465,34.0936669357889],[-118.18975075392552,34.09366449606414],[-118.18973641248398,34.09366330353718],[-118.18969711779944,34.09365890845696],[-118.18967485606747,34.09365585693576],[-118.18964988965703,34.09365227796455],[-118.18959896232978,34.09364315121787],[-118.18958279324247,34.09363945212999],[-118.18949475912437,34.09361732584879],[-118.18943030410439,34.09359613095378],[-118.18940800588254,34.09358724229089],[-118.18936253160611,34.09356841488797],[-118.18926829384122,34.09352219241205],[-118.18920694074143,34.09348463872212],[-118.18918519799995,34.09347029024038],[-118.18915417546079,34.09344817867008],[-118.18907972488668,34.09338852916507],[-118.18905315567804,34.09336572151222],[-118.1890151917133,34.09333264235458],[-118.18896318145293,34.09328826692318],[-118.18893907656097,34.09326749967461],[-118.18893408459581,34.09326344132959],[-118.18881828818954,34.09316464321849],[-118.18880174212035,34.09315058611762],[-118.1887504483176,34.09310670006576],[-118.18872562966293,34.09308578624466],[-118.18867599594687,34.09304601999037],[-118.18863629310626,34.09301585550165],[-118.18859477170497,34.0929875882863],[-118.18859328895697,34.0929863828486],[-118.18858782763044,34.09298286085311],[-118.18854367051225,34.09295279927689],[-118.18851398714172,34.0929352413111],[-118.18847586567462,34.09291065687463],[-118.18844361792486,34.09289361732164],[-118.18841799171243,34.09287845919931],[-118.18831383025861,34.09282503815458],[-118.18819150217477,34.09277130239678],[-118.1881805166694,34.0927672377137],[-118.18817332027344,34.09276411759022],[-118.18811547146409,34.09274256688632],[-118.18808241615658,34.09273094011231],[-118.18799978462516,34.09270427715871],[-118.18791220427485,34.09268036968975],[-118.18788859193964,34.09267490277339],[-118.18787089344987,34.09266978588818],[-118.18782422467189,34.09265999994969],[-118.18780315149431,34.09265512091938],[-118.187783266696,34.0926514115047],[-118.18776845586308,34.09264830583307],[-118.18775270785726,34.09264571089847],[-118.18773376202849,34.09264217664409],[-118.1877203764098,34.09264038336731],[-118.1876528121433,34.09262925022101],[-118.18754874501256,34.09261738983923],[-118.18746120418814,34.09261099953062],[-118.18743401711018,34.09260993293393],[-118.18742486913152,34.09260933834787],[-118.18741687362649,34.09260926036502],[-118.18737697365553,34.09260769501926],[-118.18727293167765,34.09260785645083],[-118.18713422730617,34.09261528453388],[-118.18708338136628,34.09262065250428],[-118.1870698351683,34.09262156697322],[-118.18705911180014,34.0926232147209],[-118.18703186248294,34.09262609151948],[-118.18695500775617,34.09263921129905],[-118.18687338170051,34.09265175392014],[-118.18685563895474,34.09265617442968],[-118.186828812686,34.09266075391031],[-118.1866472586755,34.09270809125383],[-118.18650369352007,34.09275743121135],[-118.18645146816046,34.09277849328454],[-118.1864409938082,34.09278225963486],[-118.18643519797745,34.09278505492026],[-118.18640964529972,34.09279536011246],[-118.18627932041325,34.09285807499429],[-118.18625037791577,34.09287419224022],[-118.18623808325012,34.09288012186461],[-118.18620510212256,34.09289940502962],[-118.18617540779275,34.09291594094939],[-118.18614736859219,34.0929331602489],[-118.18613912573672,34.09293797962149],[-118.18613403611016,34.09294134792888],[-118.18611933585103,34.09295037558159],[-118.18606491770771,34.09298618124605],[-118.1860121542612,34.09302370237617],[-118.18594291481408,34.09307807923285],[-118.18570136232573,34.09288026097802],[-118.18568498753206,34.09286977031466],[-118.18568482434134,34.09286963851751],[-118.18543466683293,34.09270940003833],[-118.18513743565421,34.0925189761284],[-118.18470578195424,34.09224187618551],[-118.18422209485551,34.09193268163835],[-118.18392685905958,34.09174363898606],[-118.18362256194358,34.09154522544159],[-118.18362135130384,34.09154440538506],[-118.18358120799948,34.09151403155757],[-118.18348882131986,34.09145463294835],[-118.18342574914969,34.09141190946621],[-118.18341308293905,34.09140593810941],[-118.1834042551599,34.09140026242319],[-118.18326868590877,34.09133039798579],[-118.18312653380328,34.09127084741977],[-118.18296621866105,34.09121269838822],[-118.18290439858178,34.09119048011085],[-118.18253651403644,34.09105809411038],[-118.18279342454436,34.09039389609032],[-118.18324754090612,34.08931435733146],[-118.18404905156049,34.08751429000175],[-118.18419094428259,34.08722854545566],[-118.18420228153855,34.08699342045852],[-118.18421799743373,34.08630432940253],[-118.1840647674557,34.0854509241254],[-118.18626106380745,34.08523184900871],[-118.1865404113445,34.08519352466789],[-118.18673385677509,34.08515447602813],[-118.1868803728422,34.0850945440508],[-118.18705487194521,34.08500650692112],[-118.18728069543042,34.08487360450589],[-118.18748230241698,34.08472605025161],[-118.18783265332597,34.08440964240035],[-118.1899189384116,34.08213596333148],[-118.19144338024446,34.08044776751148],[-118.19248961932364,34.07930568162525],[-118.19264141560876,34.07908785540373],[-118.19288177028585,34.07880304832312],[-118.19296202547815,34.07864575542626],[-118.1930542595007,34.0785028249659],[-118.1931466980175,34.07837464097175],[-118.19322122843742,34.07827556900406],[-118.19328851265993,34.07816868184231],[-118.19334199544276,34.07804170984231],[-118.19340591033566,34.07772023701047],[-118.1934864466183,34.07727282747084],[-118.19353688290761,34.0770740500235],[-118.1935475824178,34.07689982830696],[-118.19371960327923,34.0759675845752],[-118.19372131367153,34.07599299978519],[-118.19372481081292,34.07607714813174],[-118.19372487010175,34.0761029093011],[-118.19372656881592,34.07612317179233],[-118.19372660025695,34.07613691102656],[-118.19381145062712,34.07641465290743],[-118.19511155359173,34.0759931664569],[-118.1960543453639,34.07458610535424],[-118.1963488706062,34.07415215082336]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000139,"geom:area_square_m":1422843.886415,"geom:bbox":"-118.199809275,34.0741521508,-118.182536514,34.0936680028","geom:latitude":34.084564,"geom:longitude":-118.191709,"iso:country":"US","lbl:latitude":34.088869,"lbl:longitude":-118.187978,"lbl:max_zoom":18,"mps:latitude":34.088869,"mps:longitude":-118.187978,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["روز هيل"],"name:cat_x_preferred":["Rose Hill"],"name:ceb_x_preferred":["Rose Hill"],"name:deu_x_preferred":["Rose Hill"],"name:fra_x_preferred":["Rose Hill"],"name:ita_x_preferred":["Rose Hill"],"name:kor_x_preferred":["로즈힐"],"name:nld_x_preferred":["Rose Hill"],"name:pol_x_preferred":["Rose Hill"],"name:por_x_preferred":["Rose Hill"],"name:rus_x_preferred":["Роз-Хилл"],"name:spa_x_preferred":["Rose Hill"],"name:srp_x_preferred":["Роуз Хил"],"name:swe_x_preferred":["Rose Hill"],"name:urd_x_preferred":["روز ہل"],"name:vol_x_preferred":["Rose Hill"],"reversegeo:latitude":34.088869,"reversegeo:longitude":-118.187978,"src:geom":"mz","wof:belongsto":[85869501,102191575,1108692433,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"2f2207873130e685ad899d26e7f2cfbd","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692433,"microhood_id":1108691219,"neighbourhood_id":85869501,"region_id":85688637}],"wof:id":1108691219,"wof:lastmodified":1566623957,"wof:name":"Rose Hill","wof:parent_id":85869501,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551071,420780787],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691223.geojson b/fixtures/microhoods/1108691223.geojson new file mode 100644 index 0000000..02f0d07 --- /dev/null +++ b/fixtures/microhoods/1108691223.geojson @@ -0,0 +1 @@ +{"id":1108691223,"type":"Feature","bbox":[-118.519633,34.027872,-118.509156,34.051127],"geometry":{"type":"Polygon","coordinates":[[[-118.51291053326302,34.03632918371908],[-118.513555,34.034788],[-118.513587,34.034716],[-118.513647,34.034613],[-118.513733,34.034499],[-118.513818,34.03441],[-118.513866,34.034367],[-118.513986,34.034277],[-118.514118,34.034201],[-118.514526,34.034014],[-118.51464,34.033956],[-118.514723,34.033897],[-118.514794,34.03383],[-118.514854,34.033755],[-118.514904,34.033668],[-118.515143,34.033071],[-118.51509,34.033061],[-118.515038,34.03307],[-118.514998,34.033092],[-118.514512,34.033317],[-118.514409,34.033375],[-118.514226,34.033512],[-118.514153,34.033558],[-118.514069,34.033592],[-118.513987,34.033612],[-118.513739,34.033629],[-118.51365,34.033646],[-118.513313,34.033764],[-118.513269,34.033775],[-118.513202,34.033777],[-118.513137,34.033762],[-118.513086,34.033736],[-118.513045,34.033701],[-118.513015,34.033655],[-118.513003,34.03361],[-118.513004,34.03356],[-118.513042,34.033302],[-118.513069,34.033234],[-118.513116,34.033167],[-118.513175,34.033115],[-118.514819,34.032122],[-118.514714,34.031575],[-118.514695,34.031521],[-118.51466,34.031474],[-118.514615,34.031438],[-118.514556,34.03141],[-118.514491,34.031396],[-118.514432,34.031396],[-118.514367,34.031409],[-118.514316,34.031431],[-118.5138,34.031801],[-118.513645,34.031902],[-118.513096,34.032217],[-118.51303,34.032275],[-118.512982,34.032344],[-118.512955,34.032414],[-118.512861,34.033221],[-118.51256400700868,34.03321755234107],[-118.512601,34.032956],[-118.512609,34.032809],[-118.512605,34.032645],[-118.512598,34.032436],[-118.512516,34.03196],[-118.512497,34.031821],[-118.512494,34.031681],[-118.51251,34.031541],[-118.512542,34.031404],[-118.512592,34.03127],[-118.512659,34.031141],[-118.512741,34.031019],[-118.512838,34.030905],[-118.512929,34.030816],[-118.513075,34.0307],[-118.513167,34.030634],[-118.513278,34.030579],[-118.51337,34.030529],[-118.513476,34.030495],[-118.513595,34.030462],[-118.513718,34.030433],[-118.513804,34.030416],[-118.514849,34.030202],[-118.515274,34.029829],[-118.515563,34.029575],[-118.515719,34.029538],[-118.515983,34.029413],[-118.516186,34.029318],[-118.517001,34.028932],[-118.517313,34.028744],[-118.517533,34.02861],[-118.517988,34.028335],[-118.518773,34.027872],[-118.519457,34.028283],[-118.51892,34.029219],[-118.517867,34.03004],[-118.517923,34.030161],[-118.51805,34.030434],[-118.518234,34.030825],[-118.518294,34.030923],[-118.518379,34.03103],[-118.51848,34.031127],[-118.518593,34.031214],[-118.518866,34.031382],[-118.518971,34.031449],[-118.51899,34.031468],[-118.519062,34.031548],[-118.519124,34.031648],[-118.519161,34.031734],[-118.519186,34.031832],[-118.519194,34.031931],[-118.519187,34.032018],[-118.519109,34.032552],[-118.51911,34.032663],[-118.519127,34.032773],[-118.51916,34.03288],[-118.519209,34.032985],[-118.519256,34.03306],[-118.519452,34.033345],[-118.519505,34.033451],[-118.519542,34.033562],[-118.519563,34.033676],[-118.519592,34.03401],[-118.519632,34.034497],[-118.519633,34.034701],[-118.519617,34.034904],[-118.519584,34.035105],[-118.519534,34.035304],[-118.519467,34.035499],[-118.519407,34.035643],[-118.519197,34.036081],[-118.518645,34.037227],[-118.518518,34.037526],[-118.51844,34.03773],[-118.518359,34.03797],[-118.518288,34.038211],[-118.518216,34.038508],[-118.518156,34.038823],[-118.518121,34.03907],[-118.518096,34.039318],[-118.518082,34.039567],[-118.518078,34.039816],[-118.518085,34.040064],[-118.518102,34.040313],[-118.518212,34.041304],[-118.518123,34.041298],[-118.517997,34.041301],[-118.517855,34.041321],[-118.517714,34.041357],[-118.517619,34.041394],[-118.51751,34.041447],[-118.517494,34.041526],[-118.517442,34.041562],[-118.517338,34.041654],[-118.517261,34.041747],[-118.517201,34.041847],[-118.517162,34.04194],[-118.51698,34.042677],[-118.516845,34.043038],[-118.516821,34.043112],[-118.516795,34.043245],[-118.516788,34.043359],[-118.516843,34.04391],[-118.516843,34.044027],[-118.516827,34.044144],[-118.516793,34.044258],[-118.516743,34.044368],[-118.516678,34.044472],[-118.516597,34.044568],[-118.516503,34.044656],[-118.516397,34.044733],[-118.514964,34.045563],[-118.514363,34.04591],[-118.514217,34.045985],[-118.513967,34.046083],[-118.513923,34.046104],[-118.513809,34.046157],[-118.51367,34.046239],[-118.513554,34.046323],[-118.513473,34.046393],[-118.513417,34.046447],[-118.513315,34.046563],[-118.513241,34.046666],[-118.51319,34.046752],[-118.513157,34.046819],[-118.513103,34.046955],[-118.513076,34.047054],[-118.513034,34.047242],[-118.512993,34.047357],[-118.51293,34.04749],[-118.512318,34.048465],[-118.512229,34.048588],[-118.512035,34.048798],[-118.511945,34.048908],[-118.511879,34.049009],[-118.511827,34.049116],[-118.511789,34.049226],[-118.51177,34.049315],[-118.511525,34.050449],[-118.511509,34.05051],[-118.511471,34.050606],[-118.51142,34.050697],[-118.511355,34.050782],[-118.511278,34.050863],[-118.511191,34.050932],[-118.511094,34.050993],[-118.510974,34.051049],[-118.510862,34.051087],[-118.510744,34.051112],[-118.510729,34.051114],[-118.510642,34.051125],[-118.510568,34.051126],[-118.510499,34.051127],[-118.51035,34.051112],[-118.510298,34.0511],[-118.510217,34.051081],[-118.51009,34.051034],[-118.509987,34.050982],[-118.509881,34.050912],[-118.509795,34.050838],[-118.509478,34.050483],[-118.509382,34.050361],[-118.509315,34.050255],[-118.509249,34.050122],[-118.5092,34.049984],[-118.509169,34.049843],[-118.509156,34.049699],[-118.509166,34.049367],[-118.509173,34.049256],[-118.5092,34.04909],[-118.509243,34.048926],[-118.509304,34.048766],[-118.509364,34.048642],[-118.509454,34.048491],[-118.510066,34.047639],[-118.510125,34.047544],[-118.510167,34.047452],[-118.510202,34.047342],[-118.510221,34.047213],[-118.510218,34.047082],[-118.510193,34.046954],[-118.510154,34.046845],[-118.5101,34.04674],[-118.510023,34.046633],[-118.509934,34.046539],[-118.50985,34.04647],[-118.509613,34.04631],[-118.509763,34.04586],[-118.509839,34.045592],[-118.509905,34.045295],[-118.510093,34.044178],[-118.510129,34.044004],[-118.510182,34.043824],[-118.51025,34.043648],[-118.510332,34.043476],[-118.510428,34.043309],[-118.510568,34.043109],[-118.510695,34.042957],[-118.511288,34.042335],[-118.511381,34.042223],[-118.511478,34.042085],[-118.511555,34.041953],[-118.511629,34.041794],[-118.511686,34.041631],[-118.511726,34.041464],[-118.511748,34.041295],[-118.511766,34.040836],[-118.5118,34.039896],[-118.511817,34.039729],[-118.511852,34.039563],[-118.512114,34.038704],[-118.51257,34.037218],[-118.51291053326302,34.03632918371908]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000112,"geom:area_square_m":1147612.524356,"geom:bbox":"-118.519633,34.027872,-118.509156,34.051127","geom:latitude":34.039094,"geom:longitude":-118.514722,"iso:country":"US","lbl:latitude":34.04309,"lbl:longitude":-118.514534,"lbl:max_zoom":18,"mps:latitude":34.03936,"mps:longitude":-118.515079,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Rustic Canyon"],"name:eng_x_variant":["Rustic Cyn"],"reversegeo:latitude":34.03936,"reversegeo:longitude":-118.515079,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85840153,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7382484"},"wof:country":"US","wof:geomhash":"c20bc5151ad104d8e97a7ca94dd3c984","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108691223,"neighbourhood_id":85840153,"region_id":85688637}],"wof:id":1108691223,"wof:lastmodified":1566623960,"wof:name":"Rustic Canyon","wof:parent_id":85840153,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869635],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691227.geojson b/fixtures/microhoods/1108691227.geojson new file mode 100644 index 0000000..d2132da --- /dev/null +++ b/fixtures/microhoods/1108691227.geojson @@ -0,0 +1 @@ +{"id":1108691227,"type":"Feature","bbox":[-118.248997,34.03498710579433,-118.238044,34.047326],"geometry":{"type":"Polygon","coordinates":[[[-118.24757,34.046064],[-118.246569,34.045413],[-118.245785,34.044902],[-118.245641,34.044809],[-118.244983,34.044581],[-118.243885,34.0442],[-118.243442,34.044957],[-118.243002,34.045843],[-118.242891,34.046068],[-118.242824,34.046255],[-118.242713,34.046684],[-118.242654,34.046913],[-118.242504,34.047326],[-118.241056,34.04668],[-118.240375,34.04642],[-118.240196,34.046352],[-118.239561,34.04611],[-118.238061,34.045538],[-118.238044,34.04439],[-118.238112,34.043273],[-118.238223,34.04142],[-118.238315,34.039884],[-118.238362,34.039112],[-118.238421,34.038137],[-118.238465,34.037406],[-118.238495,34.036912],[-118.238512,34.036634],[-118.238543,34.036117],[-118.23861075379718,34.03498710579433],[-118.246765,34.040704],[-118.245487,34.041922],[-118.24524,34.04226],[-118.246162,34.042856],[-118.247114,34.043467],[-118.247905,34.043941],[-118.248997,34.044595],[-118.248536,34.04503],[-118.24757,34.046064]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":708418.056996,"geom:bbox":"-118.248997,34.0349871058,-118.238044,34.047326","geom:latitude":34.041833,"geom:longitude":-118.241998,"iso:country":"US","lbl:latitude":34.043595,"lbl:longitude":-118.244024,"lbl:max_zoom":18,"mps:latitude":34.041519,"mps:longitude":-118.241625,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Skid Row"],"name:eng_x_variant":["Skidrow","The NIckel","Central City East"],"name:fao_x_preferred":["Skid Row"],"name:ita_x_preferred":["Skid Row"],"name:jpn_x_preferred":["スキッド・ロウ"],"name:kor_x_preferred":["스키드로"],"name:mkd_x_preferred":["Скид Роу"],"name:nld_x_preferred":["Skid Row"],"name:pol_x_preferred":["Skid Row"],"name:por_x_preferred":["Skid Row"],"name:sco_x_preferred":["Skid Row"],"reversegeo:latitude":34.041519,"reversegeo:longitude":-118.241625,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1057444"},"wof:country":"US","wof:geomhash":"c78f5887478ce6d3d9eeedc91740f7a1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691227,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1108691227,"wof:lastmodified":1566623960,"wof:name":"Skid Row","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869659],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691229.geojson b/fixtures/microhoods/1108691229.geojson new file mode 100644 index 0000000..2d16cf4 --- /dev/null +++ b/fixtures/microhoods/1108691229.geojson @@ -0,0 +1 @@ +{"id":1108691229,"type":"Feature","bbox":[-118.36156145747691,34.09442076730092,-118.356032,34.09807],"geometry":{"type":"Polygon","coordinates":[[[-118.356103,34.098045],[-118.356211,34.097863],[-118.356209,34.097483],[-118.356196,34.097402],[-118.356165,34.097324],[-118.356091,34.097214],[-118.356058,34.097137],[-118.356044,34.097063],[-118.356039,34.096202],[-118.356032,34.094498],[-118.356032,34.09442076730092],[-118.35672571272772,34.09442571174236],[-118.35768030117619,34.0944325066],[-118.35926907865567,34.09444359380694],[-118.3594936871211,34.0944449864029],[-118.36011961883804,34.09444930478918],[-118.36155480596351,34.09445944499909],[-118.36154125487744,34.09476312702226],[-118.36153811706214,34.0951832189643],[-118.36154108150258,34.09548685078119],[-118.36154577969153,34.09580971345651],[-118.36155761050382,34.09701805987618],[-118.36155997486965,34.09718292556344],[-118.36156145747691,34.09805391731095],[-118.361556,34.098054],[-118.360994,34.098063],[-118.36036,34.09807],[-118.35927,34.098066],[-118.358179,34.098059],[-118.357089,34.098051],[-118.356103,34.098045]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":203032.294718,"geom:bbox":"-118.361561457,34.0944207673,-118.356032,34.09807","geom:latitude":34.096242,"geom:longitude":-118.358809,"iso:country":"US","lbl:latitude":34.096256,"lbl:longitude":-118.358653,"lbl:max_zoom":18,"mps:latitude":34.096252,"mps:longitude":-118.358809,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Spaulding Square"],"name:eng_x_variant":["Spaulding Sq"],"reversegeo:latitude":34.096252,"reversegeo:longitude":-118.358809,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85826037,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7574138"},"wof:country":"US","wof:geomhash":"0dc0d85d86db4b34120a207cd7ef1fee","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691229,"neighbourhood_id":85826037,"region_id":85688637}],"wof:id":1108691229,"wof:lastmodified":1566623960,"wof:name":"Spaulding Square","wof:parent_id":85826037,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869687],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691231.geojson b/fixtures/microhoods/1108691231.geojson new file mode 100644 index 0000000..878206a --- /dev/null +++ b/fixtures/microhoods/1108691231.geojson @@ -0,0 +1 @@ +{"id":1108691231,"type":"Feature","bbox":[-118.38026335472193,34.24426447294009,-118.369048,34.254407],"geometry":{"type":"Polygon","coordinates":[[[-118.380221,34.249332],[-118.38011957452622,34.24948657092499],[-118.37995,34.249745],[-118.37976,34.249662],[-118.379718,34.249648],[-118.379654,34.24964],[-118.37959,34.249648],[-118.379534,34.249667],[-118.37944,34.249732],[-118.376955,34.251547],[-118.375368,34.252706],[-118.374658,34.253224],[-118.373039,34.254407],[-118.372927,34.254304],[-118.372878,34.254251],[-118.372792,34.254139],[-118.372709,34.254],[-118.372655,34.253875],[-118.372622,34.253765],[-118.372598,34.253636],[-118.37259,34.253504],[-118.372599,34.25341],[-118.372621,34.253235],[-118.372628,34.253118],[-118.372614,34.252984],[-118.372587,34.25287],[-118.372546,34.25276],[-118.372492,34.252654],[-118.372424,34.252554],[-118.372344,34.252459],[-118.372232,34.252351],[-118.370655,34.250859],[-118.369868,34.250115],[-118.369799,34.25005],[-118.369677,34.249897],[-118.369597,34.24977],[-118.369543,34.249659],[-118.369498,34.24952],[-118.369463,34.24938],[-118.369422,34.249118],[-118.369335,34.248568],[-118.369048,34.246747],[-118.369899,34.246126],[-118.37245068953574,34.24426447294009],[-118.37599770440423,34.24482862672582],[-118.37847737743064,34.24748521581314],[-118.37892878051385,34.24796925516665],[-118.37900799703291,34.2480536932817],[-118.3792963529086,34.24836262234792],[-118.37931616909864,34.24838400366987],[-118.37936106150664,34.24843229481304],[-118.37936806492479,34.24843945076748],[-118.37938599963726,34.24845866505942],[-118.3793963191061,34.24846832033231],[-118.37940261847002,34.24847475689804],[-118.37946243548816,34.24853055740943],[-118.37983131518486,34.24887632193936],[-118.38007889626707,34.24910774119816],[-118.38010346953847,34.24913034912367],[-118.3801038191263,34.24913067621579],[-118.38026335472193,34.24927744711815],[-118.380221,34.249332]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000065,"geom:area_square_m":661619.538596,"geom:bbox":"-118.380263355,34.2442644729,-118.369048,34.254407","geom:latitude":34.248736,"geom:longitude":-118.374084,"iso:country":"US","lbl:latitude":34.248574,"lbl:longitude":-118.374084,"lbl:max_zoom":18,"mps:latitude":34.248574,"mps:longitude":-118.374084,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Stonehurst"],"reversegeo:latitude":34.248574,"reversegeo:longitude":-118.374084,"src:geom":"mz","wof:belongsto":[85865489,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"c073256cd90ff3df23e9e2d1986f911b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1108691231,"neighbourhood_id":85865489,"region_id":85688637}],"wof:id":1108691231,"wof:lastmodified":1566623959,"wof:name":"Stonehurst","wof:parent_id":85865489,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551239],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691233.geojson b/fixtures/microhoods/1108691233.geojson new file mode 100644 index 0000000..dfb6fe4 --- /dev/null +++ b/fixtures/microhoods/1108691233.geojson @@ -0,0 +1 @@ +{"id":1108691233,"type":"Feature","bbox":[-118.387047,34.0921090627151,-118.36548897325872,34.11234130953594],"geometry":{"type":"Polygon","coordinates":[[[-118.37582344721685,34.11195265634178],[-118.37574376209476,34.11175103973384],[-118.37566739949328,34.11157137883981],[-118.37473940499025,34.10975369013006],[-118.37467401192971,34.10965489713686],[-118.3745825852586,34.10955647062854],[-118.37311334165038,34.10818296498167],[-118.37304681770283,34.10812449814536],[-118.37296805191316,34.10805928337997],[-118.37284057622435,34.10796189974807],[-118.37116206564255,34.10683660592834],[-118.37105830517446,34.10674343060562],[-118.3709469746612,34.10662202583877],[-118.36953600230271,34.10495166725826],[-118.36946780939168,34.10488836144847],[-118.36940236854228,34.1048375695801],[-118.3673137157382,34.10333597211751],[-118.36726697819634,34.10328956440429],[-118.36723219136712,34.10323768300094],[-118.36630024286012,34.10171093876247],[-118.36548897325872,34.10171301408533],[-118.36557353796464,34.10141117868029],[-118.36560446156997,34.10130666441407],[-118.36561909692257,34.10125406692197],[-118.36563050013679,34.10121796647193],[-118.36564193928363,34.10119011008302],[-118.36564685666148,34.10118150821512],[-118.36569114719826,34.10111199030283],[-118.36572066763513,34.10106415630462],[-118.36576167303289,34.10099911330047],[-118.36581252216955,34.10091892692542],[-118.36587321235015,34.10082291056099],[-118.36589125141937,34.10079366006288],[-118.36590108168353,34.10077542526613],[-118.36590762680869,34.1007613225666],[-118.36591412881472,34.10073760259276],[-118.36867534518221,34.09805208262357],[-118.36875263533095,34.09797662377029],[-118.36897322293717,34.09781313803597],[-118.36902260871821,34.09777657788872],[-118.36919710915711,34.09764895497036],[-118.36938313048952,34.0975123658609],[-118.36952963762751,34.09740337679226],[-118.36953787068711,34.09739785569927],[-118.36956750161674,34.09737578248205],[-118.3695823220223,34.09736611945015],[-118.36962677695077,34.09733506979286],[-118.36967123547248,34.09730505040201],[-118.36971734779266,34.09727536872354],[-118.36976346280777,34.09724637512682],[-118.36981123162131,34.09721806291764],[-118.36985900492644,34.09719043804782],[-118.36988865561901,34.09717317324346],[-118.36990678182482,34.09716384344852],[-118.36995455962153,34.0971375925155],[-118.36996774419495,34.09713102550366],[-118.37000399391161,34.09711202297264],[-118.37005508110181,34.09708713556454],[-118.37010452168009,34.09706328363709],[-118.37015561695516,34.09704011384569],[-118.37020671402684,34.09701728697918],[-118.37025781469177,34.09699549113206],[-118.37034024410224,34.09696226398459],[-118.37043421057591,34.09692350528579],[-118.37060071241552,34.09685498514745],[-118.3706699491677,34.09682626218162],[-118.37128154826429,34.09657398438067],[-118.37133595023789,34.09655183432794],[-118.37137221522592,34.09653626546184],[-118.3714084784173,34.09652035365968],[-118.37144473801543,34.09650375524404],[-118.37148099581692,34.09648681314795],[-118.37151559981997,34.096469188901],[-118.37152384096441,34.09646538538989],[-118.37155185312989,34.09645121576585],[-118.37158645264138,34.09643256122303],[-118.3716078702744,34.09642047374363],[-118.37161940015106,34.09641356820582],[-118.3716342250482,34.09640493609683],[-118.37165069745556,34.09639526774685],[-118.37168199386173,34.09637662211837],[-118.37171493328657,34.09635625512144],[-118.37174787001649,34.09633520150776],[-118.37178080584806,34.09631380421088],[-118.37179891588418,34.09630103902914],[-118.37181208788117,34.09629206843785],[-118.37183348664958,34.09627620196718],[-118.37184336721938,34.09626964530294],[-118.37187299275912,34.09624688443505],[-118.37190426940238,34.09622377467547],[-118.37193389045056,34.09619998276004],[-118.37196351060041,34.09617584790326],[-118.37199147785014,34.09615137382441],[-118.37201944330327,34.0961265568036],[-118.37204740695975,34.09610139684069],[-118.37206878776182,34.09608140841941],[-118.37209180798932,34.09605866758599],[-118.37220692888961,34.09594942818446],[-118.37222008112367,34.09593599121058],[-118.37223818038002,34.09592082170288],[-118.37225462763455,34.09590565814361],[-118.37227272868753,34.09589083231014],[-118.37228588810811,34.09587911372551],[-118.3722891777387,34.09587601168136],[-118.37230728148663,34.09586187320223],[-118.37232703633802,34.09584772951352],[-118.37234514188259,34.09583393396566],[-118.37236489853063,34.09582013395221],[-118.37238300677012,34.09580702575986],[-118.3724027661131,34.09579391235828],[-118.37242088423406,34.09578286475473],[-118.3724422919856,34.09576905952565],[-118.37246370782196,34.0957569719515],[-118.37248347255486,34.09574488883897],[-118.37250489108618,34.09573348787806],[-118.37254773174209,34.09571137256857],[-118.37256915386666,34.0957006582201],[-118.3726120035057,34.09568060424122],[-118.37263508122537,34.09567091572326],[-118.37265650963815,34.0956615753482],[-118.37267959095105,34.09565257344542],[-118.37270267406062,34.09564391522234],[-118.37272410696495,34.09563560588639],[-118.37274719187113,34.09562763427918],[-118.37277193057575,34.09562000114467],[-118.3727950199735,34.09561271689758],[-118.37281975957642,34.09560542744254],[-118.3728411996673,34.09559883501929],[-118.37286594466013,34.09559257586177],[-118.37288903944777,34.09558666559205],[-118.3733988441513,34.09547208364237],[-118.37367107051328,34.09541113225154],[-118.37394164577184,34.09535018528019],[-118.3741957198769,34.09529272343951],[-118.3742468663559,34.0952815731122],[-118.37474676982835,34.09516942182037],[-118.3748738068809,34.0951405182583],[-118.37518562648908,34.0950705103591],[-118.37524831901442,34.09505623263565],[-118.37526316816607,34.09505309485395],[-118.37555188849501,34.09498796540053],[-118.37631081129818,34.09481763964001],[-118.3765896321927,34.09475494406373],[-118.37692223612159,34.09453373235853],[-118.37720214487591,34.09434634636575],[-118.37723507980917,34.09432529076425],[-118.37749193509836,34.09415343344608],[-118.37758249516048,34.09409303903902],[-118.37771092639835,34.09400814087774],[-118.37794802503949,34.09385008325253],[-118.3779661350756,34.09383766064328],[-118.37809456272021,34.09375173116081],[-118.37822464056998,34.0936657963837],[-118.37833495458518,34.09359194419704],[-118.3783827036358,34.09356019461814],[-118.37854241600846,34.09345424382389],[-118.37861980048032,34.09340247910231],[-118.37900343590384,34.09314709639138],[-118.37904459850681,34.09311983173776],[-118.37907423752127,34.09310050395715],[-118.37911869334806,34.09307116821492],[-118.37913351555025,34.09306219058604],[-118.3791664558734,34.09304250868615],[-118.37921256909189,34.09301419879037],[-118.37926198900894,34.09298690805677],[-118.37930976051742,34.09296030990492],[-118.37935918672268,34.09293439317668],[-118.37948111236123,34.09287218273046],[-118.37950088877221,34.092863190202],[-118.3795503275539,34.09284002149263],[-118.37981568000734,34.09272274505457],[-118.37983051029438,34.09271548510758],[-118.3799738984817,34.09265217721282],[-118.38119349802382,34.0921090627151],[-118.3811939911989,34.09221725887894],[-118.38119257635236,34.09263150728651],[-118.38119575010022,34.09332774291141],[-118.38116371279001,34.09357099249252],[-118.381135,34.093789],[-118.38118,34.09382],[-118.381235,34.093848],[-118.381295,34.093869],[-118.381358,34.093882],[-118.381408,34.093886],[-118.381459,34.093885],[-118.381639,34.093862],[-118.381725,34.09386],[-118.381824,34.093877],[-118.381896,34.093904],[-118.381961,34.093941],[-118.382016,34.093989],[-118.382059,34.094044],[-118.382089,34.094105],[-118.382106,34.094193],[-118.3821,34.094259],[-118.38208,34.094323],[-118.381853,34.09469],[-118.381833,34.094738],[-118.381821,34.094794],[-118.38182,34.094869],[-118.381841,34.094945],[-118.381882,34.095015],[-118.381938,34.095072],[-118.38197,34.095096],[-118.382023,34.095127],[-118.382061,34.095143],[-118.382122,34.095161],[-118.38219,34.095172],[-118.382673,34.095212],[-118.38271,34.095219],[-118.382773,34.095238],[-118.382832,34.095264],[-118.382884,34.095295],[-118.38296,34.095357],[-118.382994,34.095395],[-118.383021,34.095438],[-118.383353,34.096039],[-118.383371,34.0961],[-118.38339,34.096157],[-118.383389,34.096216],[-118.383376,34.096275],[-118.38335,34.096331],[-118.383314,34.096383],[-118.383253,34.096438],[-118.383183,34.096478],[-118.383121,34.096498],[-118.383085,34.096505],[-118.382967,34.096512],[-118.382884,34.096503],[-118.382806,34.09648],[-118.38273,34.09644],[-118.382696,34.096414],[-118.382483,34.096224],[-118.38236,34.096089],[-118.382313,34.096053],[-118.382253,34.096027],[-118.382195,34.096015],[-118.382127,34.096016],[-118.38207,34.096028],[-118.382017,34.09605],[-118.381969,34.096085],[-118.381931,34.096132],[-118.38191,34.096178],[-118.381902,34.09623],[-118.381939,34.096672],[-118.381959,34.096781],[-118.38203,34.097075],[-118.382031,34.09712],[-118.382021,34.09717],[-118.381989,34.097233],[-118.381824,34.097473],[-118.381794,34.097553],[-118.381765,34.097684],[-118.381727,34.097794],[-118.38158909979609,34.09807823315408],[-118.381449,34.098367],[-118.381437,34.09842],[-118.381442,34.098474],[-118.381496,34.098631],[-118.3815,34.098696],[-118.38149,34.09874],[-118.381458,34.098799],[-118.381425,34.098834],[-118.38138,34.098866],[-118.381333,34.098888],[-118.380747,34.099054],[-118.380687,34.099061],[-118.380627,34.099054],[-118.380567,34.099035],[-118.380518,34.099005],[-118.380479,34.098966],[-118.380413,34.098884],[-118.380363,34.098849],[-118.380323,34.098833],[-118.380254,34.098825],[-118.380195,34.098835],[-118.380176,34.098841],[-118.380134,34.098864],[-118.380101,34.098893],[-118.380085,34.098916],[-118.380079,34.098925],[-118.380066,34.098961],[-118.380063,34.098999],[-118.380078,34.099052],[-118.380099,34.099084],[-118.380129,34.099113],[-118.380163,34.099133],[-118.380375,34.099234],[-118.380547,34.099318],[-118.380584,34.099349],[-118.38061,34.099387],[-118.380625,34.099429],[-118.380624,34.099491],[-118.380547,34.09974],[-118.380512,34.100083],[-118.380509,34.100176],[-118.380525,34.100251],[-118.380558,34.100322],[-118.380601,34.100381],[-118.380657,34.100434],[-118.380839,34.100562],[-118.381183,34.100802],[-118.381223,34.100819],[-118.381288,34.100828],[-118.381332,34.100823],[-118.381375,34.100808],[-118.381409,34.100788],[-118.381448,34.100743],[-118.3815,34.100627],[-118.381527,34.100595],[-118.381564,34.100572],[-118.381608,34.100559],[-118.381668,34.100561],[-118.381712,34.100576],[-118.381748,34.100602],[-118.381772,34.100635],[-118.381782,34.100672],[-118.381778,34.100711],[-118.381761,34.100746],[-118.381369,34.101266],[-118.381318,34.101305],[-118.381264,34.101328],[-118.381197,34.101341],[-118.381128,34.101337],[-118.381063,34.101318],[-118.381013,34.101289],[-118.380978,34.101258],[-118.380912,34.101155],[-118.38087,34.101119],[-118.380834,34.101102],[-118.380776,34.101089],[-118.380732,34.101091],[-118.380692,34.1011],[-118.38064,34.101128],[-118.380003,34.101609],[-118.379964,34.101626],[-118.379915,34.101633],[-118.37986,34.101624],[-118.379818,34.101602],[-118.379797,34.101583],[-118.379708,34.101486],[-118.379674,34.101467],[-118.379634,34.101457],[-118.379593,34.101459],[-118.37956539856405,34.10146701190288],[-118.379513,34.101501],[-118.379494,34.101532],[-118.379487,34.101566],[-118.379493,34.1016],[-118.379511,34.10163],[-118.379528,34.101647],[-118.379693,34.101765],[-118.379869,34.101852],[-118.379937,34.101869],[-118.380004,34.101867],[-118.380064,34.10185],[-118.380109,34.101823],[-118.380431,34.101582],[-118.380464,34.101566],[-118.380519,34.101554],[-118.380571,34.101556],[-118.380629,34.101574],[-118.380681,34.101607],[-118.38071,34.101642],[-118.38073,34.101692],[-118.380814,34.102116],[-118.380898,34.102804],[-118.380919,34.102851],[-118.380956,34.102895],[-118.381017,34.102935],[-118.381077,34.102955],[-118.381088,34.102957],[-118.381158,34.102961],[-118.381221,34.102949],[-118.381277,34.102926],[-118.381514,34.102789],[-118.381576,34.102743],[-118.381642,34.102681],[-118.381869,34.102411],[-118.381938,34.102328],[-118.38196,34.102287],[-118.382013,34.102118],[-118.382032,34.102086],[-118.382214,34.101837],[-118.382271,34.101684],[-118.382296,34.101647],[-118.382333,34.101613],[-118.382396,34.101582],[-118.382445,34.101571],[-118.382519,34.101571],[-118.382572,34.101585],[-118.382615,34.101607],[-118.382652,34.101636],[-118.382681,34.101674],[-118.382698,34.101714],[-118.382702,34.101779],[-118.382688,34.101823],[-118.382664,34.101861],[-118.382631,34.101893],[-118.382496,34.101999],[-118.382456,34.102043],[-118.382428,34.102089],[-118.382385,34.102206],[-118.382368,34.102315],[-118.382369,34.1024],[-118.382382,34.102485],[-118.382403,34.102556],[-118.382451,34.102658],[-118.382536,34.102789],[-118.38255,34.10283],[-118.382554,34.102873],[-118.382542,34.103091],[-118.382525,34.103139],[-118.382494,34.103182],[-118.382451,34.103218],[-118.38208842674769,34.10340415992256],[-118.3817972463876,34.10355366381712],[-118.38160782969506,34.10368181403708],[-118.38142963066495,34.10384390754172],[-118.381016,34.104334],[-118.380987,34.104395],[-118.380975,34.104459],[-118.380981,34.104525],[-118.381002,34.104582],[-118.381033,34.104631],[-118.381088,34.104684],[-118.38114,34.104716],[-118.381175,34.104734],[-118.381381,34.104843],[-118.38161,34.105018],[-118.381671,34.105044],[-118.381742,34.105057],[-118.381786,34.105058],[-118.381851,34.105053],[-118.38193,34.105048],[-118.381985,34.105061],[-118.382027,34.105088],[-118.382059,34.105127],[-118.382076,34.105171],[-118.38209,34.105332],[-118.382112,34.10539],[-118.38215,34.105441],[-118.382194,34.105479],[-118.382302,34.105553],[-118.382361,34.105611],[-118.382404,34.105675],[-118.382424,34.105719],[-118.382472,34.105847],[-118.382513,34.105906],[-118.382718,34.106125],[-118.38277,34.106158],[-118.382892,34.106198],[-118.382955,34.106202],[-118.38302,34.10619],[-118.383078,34.106161],[-118.383271,34.105983],[-118.383301,34.105945],[-118.38337,34.105848],[-118.38341,34.105812],[-118.383511,34.10573],[-118.383557,34.105673],[-118.383588,34.105605],[-118.383637,34.105447],[-118.383671,34.105397],[-118.383713,34.105361],[-118.383772,34.105332],[-118.383858,34.10531],[-118.383916,34.105303],[-118.383977,34.105311],[-118.384027,34.105331],[-118.384074,34.105368],[-118.384099,34.105405],[-118.384113,34.105447],[-118.384141,34.105807],[-118.384161,34.105865],[-118.384194,34.105913],[-118.38424,34.105954],[-118.384296,34.105986],[-118.384358,34.106006],[-118.38442,34.106014],[-118.384492,34.10601],[-118.384561,34.105991],[-118.384622,34.105959],[-118.38487,34.105766],[-118.384928,34.105743],[-118.384994,34.105735],[-118.38505,34.105742],[-118.385101,34.10576],[-118.385134,34.105781],[-118.385298,34.105899],[-118.385374,34.105934],[-118.385636,34.106005],[-118.385714,34.106005],[-118.38578,34.105988],[-118.385831,34.105961],[-118.385878,34.105919],[-118.385905,34.105875],[-118.386085,34.105479],[-118.386091,34.105429],[-118.386088,34.105396],[-118.386066,34.105286],[-118.386071,34.105236],[-118.386088,34.105191],[-118.386125,34.105143],[-118.386319,34.10498],[-118.38638,34.104907],[-118.386435,34.10481],[-118.386482,34.104666],[-118.386488,34.104601],[-118.386482,34.104539],[-118.386463,34.104447],[-118.386468,34.104398],[-118.386487,34.104354],[-118.386527,34.104309],[-118.386556,34.104289],[-118.386665,34.104225],[-118.386696,34.104198],[-118.386786,34.104106],[-118.386831,34.104083],[-118.386885,34.104074],[-118.386937,34.10408],[-118.386988,34.104102],[-118.387024,34.104136],[-118.387044,34.104177],[-118.387047,34.104218],[-118.387035,34.104258],[-118.386856,34.104564],[-118.386831,34.104628],[-118.38675,34.104893],[-118.386748,34.104962],[-118.386763,34.105029],[-118.386794,34.105093],[-118.386841,34.10515],[-118.386942,34.105246],[-118.386965,34.105286],[-118.386976,34.105334],[-118.386971,34.105384],[-118.386809,34.105751],[-118.386654,34.10598],[-118.386608,34.106015],[-118.386558,34.106034],[-118.386405,34.106066],[-118.386357,34.106089],[-118.38632,34.106123],[-118.386294,34.106163],[-118.386246,34.106269],[-118.386136,34.106421],[-118.386089,34.10646],[-118.386036,34.106488],[-118.385973,34.106507],[-118.385911,34.106514],[-118.385849,34.10651],[-118.385805,34.1065],[-118.385543,34.106425],[-118.385492,34.106422],[-118.38544,34.106433],[-118.385396,34.106453],[-118.385352,34.106493],[-118.385223,34.106437],[-118.385185,34.106426],[-118.385074,34.106419],[-118.385023,34.106427],[-118.384617,34.10661],[-118.384553,34.106633],[-118.384467,34.106649],[-118.384379,34.106652],[-118.384293,34.106641],[-118.38421,34.106616],[-118.384134,34.106578],[-118.383956,34.106445],[-118.383907,34.106424],[-118.38385,34.106416],[-118.383796,34.106424],[-118.383637,34.106488],[-118.383552,34.106524],[-118.383482,34.106565],[-118.383461,34.106583],[-118.383441,34.106635],[-118.383413,34.106673],[-118.383371,34.106704],[-118.383122,34.106788],[-118.383045,34.106808],[-118.382854,34.106843],[-118.382808,34.106846],[-118.382743,34.106838],[-118.382684,34.106816],[-118.382311,34.106552],[-118.382113,34.106411],[-118.381956,34.106288],[-118.381832,34.106176],[-118.381635,34.105969],[-118.381582,34.105922],[-118.381523,34.105888],[-118.381033,34.105708],[-118.380975,34.105679],[-118.380533,34.105349],[-118.380485,34.105321],[-118.380426,34.105302],[-118.380367,34.105297],[-118.380309,34.105304],[-118.380251,34.105323],[-118.380201,34.105355],[-118.38019,34.105367],[-118.38016,34.1054],[-118.380135,34.105455],[-118.38013,34.105511],[-118.380248,34.105998],[-118.38028,34.106056],[-118.380326,34.106108],[-118.380385,34.106149],[-118.380448,34.106176],[-118.380518,34.106192],[-118.380593,34.106196],[-118.380681,34.106182],[-118.380816,34.106129],[-118.380915,34.106105],[-118.381009,34.106098],[-118.381102,34.106104],[-118.381202,34.106126],[-118.381287,34.10616],[-118.381363,34.106205],[-118.381429,34.106261],[-118.381482,34.106326],[-118.381523,34.106401],[-118.381564,34.106492],[-118.381582,34.106569],[-118.381584,34.106647],[-118.381571,34.106716],[-118.381542,34.106791],[-118.381508,34.106846],[-118.381453,34.106909],[-118.381386,34.106964],[-118.381249,34.107043],[-118.381178,34.107094],[-118.381025,34.107252],[-118.380953,34.107314],[-118.380879,34.107356],[-118.380785,34.107391],[-118.380528,34.107445],[-118.380446,34.107468],[-118.38037,34.107503],[-118.380024,34.107729],[-118.379971,34.107779],[-118.379933,34.107838],[-118.379914,34.107903],[-118.379913,34.10796],[-118.379945,34.108102],[-118.37995,34.108159],[-118.379938,34.108217],[-118.37991,34.108273],[-118.379864,34.108324],[-118.379807,34.108362],[-118.379731,34.108389],[-118.379659,34.108398],[-118.379587,34.108392],[-118.379519,34.108372],[-118.379454,34.108336],[-118.379413,34.108297],[-118.379382,34.108254],[-118.379364,34.108212],[-118.379354,34.108152],[-118.379363,34.108093],[-118.379388,34.108036],[-118.380129,34.107139],[-118.380149,34.107111],[-118.380176,34.107053],[-118.380187,34.106987],[-118.380178,34.10692],[-118.380152,34.106861],[-118.380111,34.106809],[-118.380054,34.106763],[-118.379978,34.106728],[-118.3799,34.106711],[-118.379819,34.106711],[-118.379752,34.106723],[-118.379679,34.106752],[-118.379625,34.106787],[-118.37932,34.107095],[-118.379231,34.107161],[-118.379135,34.107215],[-118.379031,34.107256],[-118.378921,34.107285],[-118.378698,34.107318],[-118.378648,34.107333],[-118.378595,34.107366],[-118.378543,34.107369],[-118.378545,34.107957],[-118.378248,34.107958],[-118.378177,34.107958],[-118.378141,34.107958],[-118.378103,34.108001],[-118.378008,34.108111],[-118.377527,34.108666],[-118.377495,34.108744],[-118.376621,34.110887],[-118.376447,34.111311],[-118.375981,34.11228],[-118.37595134583276,34.11234130953594],[-118.37582344721685,34.11195265634178]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000182,"geom:area_square_m":1864487.448784,"geom:bbox":"-118.387047,34.0921090627,-118.365488973,34.1123413095","geom:latitude":34.101541,"geom:longitude":-118.375524,"iso:country":"US","lbl:latitude":34.103414,"lbl:longitude":-118.358521,"lbl:max_zoom":18,"mps:latitude":34.101359,"mps:longitude":-118.374462,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:note":"no ref","mz:tier_metro":1,"name:eng_x_variant":["Sunset Hls"],"reversegeo:latitude":34.101359,"reversegeo:longitude":-118.374462,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865833,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"912cb390533af74b4a1c16f15468f40a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691233,"neighbourhood_id":85865833,"region_id":85688637}],"wof:id":1108691233,"wof:lastmodified":1566623960,"wof:name":"Sunset Hills","wof:parent_id":85865833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869715],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691405.geojson b/fixtures/microhoods/1108691405.geojson new file mode 100644 index 0000000..9752c55 --- /dev/null +++ b/fixtures/microhoods/1108691405.geojson @@ -0,0 +1 @@ +{"id":1108691405,"type":"Feature","bbox":[-118.28459679207204,34.083459,-118.276015,34.0958167849324],"geometry":{"type":"Polygon","coordinates":[[[-118.27717489249943,34.09578094475829],[-118.276555,34.095773],[-118.276015,34.095653],[-118.276117,34.095571],[-118.277909,34.093952],[-118.277968,34.09389],[-118.27802,34.093823],[-118.278065,34.093754],[-118.278118,34.093653],[-118.278245,34.093248],[-118.278282,34.092851],[-118.278227,34.092564],[-118.278022,34.092134],[-118.277455,34.09094],[-118.277138,34.090061],[-118.27704460312962,34.08990386797478],[-118.276888,34.089748],[-118.277691,34.088474],[-118.278271,34.087556],[-118.278712,34.086858],[-118.279065,34.086299],[-118.279073,34.086285],[-118.279335,34.08626],[-118.279463,34.086142],[-118.279391,34.086395],[-118.279393,34.086448],[-118.279411,34.086499],[-118.27944,34.086542],[-118.27948,34.086579],[-118.279533,34.086609],[-118.280053,34.086828],[-118.280155,34.086667],[-118.28032,34.086737],[-118.281198,34.087107],[-118.281316,34.087157],[-118.281548,34.08709],[-118.283547,34.08389],[-118.283816,34.083459],[-118.28447790957526,34.0837379989648],[-118.28447830355717,34.08377223809417],[-118.28448562123347,34.08446708983499],[-118.28448638749641,34.08469241385965],[-118.28448888032133,34.08493971703169],[-118.28449153753793,34.0852354502039],[-118.28449377883456,34.08540890511215],[-118.28449694809089,34.08585508439208],[-118.28450127258067,34.08615562197205],[-118.28450172712819,34.08628923712089],[-118.28450690950908,34.08684189100372],[-118.28450965206565,34.08716269906646],[-118.28451450656144,34.08761883530129],[-118.28451975272269,34.08819003792168],[-118.28452282945254,34.08860908151141],[-118.28452511835987,34.08879627487229],[-118.28452755369263,34.08902674745296],[-118.28453210635448,34.08939426448893],[-118.28453457043331,34.08963298138799],[-118.28453718812403,34.08991703678519],[-118.28454458575041,34.09063524547854],[-118.28454719086474,34.0909155227659],[-118.28454737322274,34.09096910570643],[-118.2845485230663,34.09105161738725],[-118.2845474477969,34.09105364613032],[-118.28451976440077,34.09110587722468],[-118.28455831906712,34.09201905249652],[-118.28455971158317,34.09216852490796],[-118.28456708675162,34.09287986372374],[-118.28457710296708,34.09388212805613],[-118.28459679207204,34.09580807093005],[-118.2840982344453,34.0958167849324],[-118.28058036621566,34.0957988458779],[-118.2798421280202,34.0957950624218],[-118.27934501471503,34.09579243423645],[-118.27843832084426,34.09578765767858],[-118.27801717806265,34.09578553608637],[-118.27795111595667,34.095785000481],[-118.2777975229077,34.09578432353538],[-118.27725912123542,34.09578143870544],[-118.27717489249943,34.09578094475829]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000068,"geom:area_square_m":697890.218716,"geom:bbox":"-118.284596792,34.083459,-118.276015,34.0958167849","geom:latitude":34.090906,"geom:longitude":-118.281254,"iso:country":"US","lbl:latitude":34.087415,"lbl:longitude":-118.274901,"lbl:max_zoom":18,"mps:latitude":34.090959,"mps:longitude":-118.281173,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Sunset Jct"],"reversegeo:latitude":34.090959,"reversegeo:longitude":-118.281173,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865847,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d30611b05b8cd16b58743a33df55d535","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691405,"neighbourhood_id":85865847,"region_id":85688637}],"wof:id":1108691405,"wof:lastmodified":1566623961,"wof:name":"Sunset Junction","wof:parent_id":85865847,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869717],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691447.geojson b/fixtures/microhoods/1108691447.geojson new file mode 100644 index 0000000..d489c55 --- /dev/null +++ b/fixtures/microhoods/1108691447.geojson @@ -0,0 +1 @@ +{"id":1108691447,"type":"Feature","bbox":[-118.3092797983032,34.10051485147788,-118.30053281764141,34.10295057521376],"geometry":{"type":"Polygon","coordinates":[[[-118.30053281764141,34.1005657760543],[-118.30926493720011,34.10051485147788],[-118.30926498988082,34.10052404144881],[-118.30927194643436,34.10173759441328],[-118.30927255100056,34.10173773499979],[-118.3092797983032,34.10291843646314],[-118.30054731490073,34.10295057521376],[-118.30053281764141,34.1005657760543]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":214066.209331,"geom:bbox":"-118.309279798,34.1005148515,-118.300532818,34.1029505752","geom:latitude":34.101737,"geom:longitude":-118.304912,"iso:country":"US","lbl:latitude":34.099555,"lbl:longitude":-118.303269,"lbl:max_zoom":18,"mps:latitude":34.101737,"mps:longitude":-118.304912,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Thai Town"],"name:epo_x_preferred":["Losanĝelesa Taja Kvartalo"],"name:fra_x_preferred":["Thai Town"],"name:ita_x_preferred":["Thai Town"],"name:jpn_x_preferred":["タイ・タウン"],"name:nld_x_preferred":["Thai Town"],"name:tha_x_preferred":["ไทยทาวน์"],"reversegeo:latitude":34.101737,"reversegeo:longitude":-118.304912,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865827,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3519423"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"de02cac0381467bfb09cf436d67b439a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691447,"neighbourhood_id":85865827,"region_id":85688637}],"wof:id":1108691447,"wof:lastmodified":1566623957,"wof:name":"Thai Town","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869731],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691449.geojson b/fixtures/microhoods/1108691449.geojson new file mode 100644 index 0000000..e95e8f1 --- /dev/null +++ b/fixtures/microhoods/1108691449.geojson @@ -0,0 +1 @@ +{"id":1108691449,"type":"Feature","bbox":[-118.24757,34.0442,-118.242504,34.04852286364169],"geometry":{"type":"Polygon","coordinates":[[[-118.242504,34.047326],[-118.242654,34.046913],[-118.242713,34.046684],[-118.242824,34.046255],[-118.242891,34.046068],[-118.243002,34.045843],[-118.243442,34.044957],[-118.243885,34.0442],[-118.244983,34.044581],[-118.245641,34.044809],[-118.245785,34.044902],[-118.246569,34.045413],[-118.24757,34.046064],[-118.246963,34.046678],[-118.246183,34.047247],[-118.245505,34.047705],[-118.245354,34.047863],[-118.24473802924872,34.04852166383318],[-118.24473688187331,34.04852286364169],[-118.244727,34.048517],[-118.243789,34.04796],[-118.243077,34.047608],[-118.242504,34.047326]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000012,"geom:area_square_m":124673.629283,"geom:bbox":"-118.24757,34.0442,-118.242504,34.0485228636","geom:latitude":34.046324,"geom:longitude":-118.244771,"iso:country":"US","lbl:latitude":34.046276,"lbl:longitude":-118.244733,"lbl:max_zoom":18,"mps:latitude":34.046276,"mps:longitude":-118.244733,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Toy District"],"name:ita_x_preferred":["Toy District"],"name:pol_x_preferred":["Toy District"],"reversegeo:latitude":34.046276,"reversegeo:longitude":-118.244733,"src:geom":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4274139"},"wof:country":"US","wof:geomhash":"4bdefdc54d031829ebad3debf9c7834f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691449,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1108691449,"wof:lastmodified":1566623956,"wof:name":"Toy District","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551233,420780783],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691453.geojson b/fixtures/microhoods/1108691453.geojson new file mode 100644 index 0000000..eba6a06 --- /dev/null +++ b/fixtures/microhoods/1108691453.geojson @@ -0,0 +1 @@ +{"id":1108691453,"type":"Feature","bbox":[-118.179105,34.06183675262984,-118.16157148461198,34.07463962794071],"geometry":{"type":"Polygon","coordinates":[[[-118.17907917499909,34.06230175874638],[-118.179098,34.062378],[-118.179105,34.062411],[-118.179104,34.062455],[-118.179086,34.06414],[-118.179077,34.064262],[-118.179043,34.064427],[-118.178994,34.064566],[-118.178929,34.064699],[-118.178847,34.064826],[-118.177668,34.066271],[-118.176514,34.067683],[-118.17634,34.067893],[-118.176153,34.068109],[-118.175962,34.068322],[-118.175766,34.068533],[-118.175464,34.068843],[-118.175317,34.06899],[-118.175207,34.069449],[-118.174794,34.069819],[-118.174484,34.070083],[-118.172649,34.071592],[-118.170505,34.073355],[-118.168323,34.074431],[-118.168186,34.07448],[-118.168042,34.074512],[-118.16729891767045,34.07461436706817],[-118.16710398112507,34.07463034136345],[-118.16703698112505,34.07463034136345],[-118.16697098112508,34.07463034136345],[-118.16690498112507,34.07462834136344],[-118.16683598112508,34.07462234136344],[-118.16677598112507,34.07461734136344],[-118.16658398112507,34.07459634136344],[-118.16649798112506,34.07458634136344],[-118.16631098112506,34.07455734136344],[-118.16617398112506,34.07453034136343],[-118.16605198112508,34.07450234136343],[-118.16599598112506,34.07448134136344],[-118.16593798112505,34.07445834136344],[-118.16588298112507,34.07443434136344],[-118.16581598112506,34.07440234136345],[-118.16575998112506,34.07437634136344],[-118.165676,34.074331],[-118.165133,34.074112],[-118.165098,34.074098],[-118.164258,34.073814],[-118.164188,34.073805],[-118.164001,34.073779],[-118.163812,34.073769],[-118.163606,34.073787],[-118.163304,34.073849],[-118.163209,34.07389],[-118.162793,34.074121],[-118.1625418164659,34.07429035763069],[-118.16222966124425,34.07446951285236],[-118.16201108232956,34.07456132931827],[-118.16177292552624,34.07463962794071],[-118.161628785449,34.07352865250628],[-118.16158672273414,34.07312168090373],[-118.16157148461198,34.07292591512172],[-118.16157459368117,34.07282595751578],[-118.16158921376244,34.07270194083839],[-118.16162360216983,34.07255522743185],[-118.16165643739009,34.07245935078398],[-118.16168438218193,34.07239542576542],[-118.16169259907186,34.07237583653882],[-118.16171887120065,34.07230092180604],[-118.16173362063931,34.07224422786261],[-118.1617418024949,34.07220609033576],[-118.16175482267661,34.07210886720798],[-118.16175805122177,34.07207073631712],[-118.16175798474643,34.07203638695061],[-118.16175786257554,34.07197353014843],[-118.16174945793773,34.0718962577315],[-118.16174277626867,34.07185573518652],[-118.161739440824,34.07183856567014],[-118.16173445517418,34.07182174216],[-118.16170948739918,34.07171735655416],[-118.16169782816512,34.07166447577499],[-118.16169114290278,34.07162223646059],[-118.16168272119697,34.0715360329231],[-118.16168252626255,34.07143539207217],[-118.16168734662237,34.07136668908945],[-118.16169060211696,34.07134264165576],[-118.1617003910586,34.07128217516942],[-118.16170366451952,34.07126705779699],[-118.16170857560917,34.07124541158416],[-118.16173316968502,34.07115710256846],[-118.16177259853946,34.07105572236262],[-118.1618301527014,34.07093611346126],[-118.16187620932601,34.07084708977236],[-118.16192391705414,34.07075840753931],[-118.1619535318141,34.07070512731499],[-118.16198150355541,34.07065562791617],[-118.16200783227808,34.07061059617001],[-118.16206214352184,34.07052190475994],[-118.16213127247622,34.07041189796421],[-118.16216748895522,34.07035757873084],[-118.16221687922784,34.07028538122911],[-118.16228767994699,34.07018636256496],[-118.16237002850907,34.07008251964147],[-118.16245242917344,34.07000512569591],[-118.16251012976076,34.06996211241017],[-118.16261237600642,34.0699025520253],[-118.162645360347,34.06988464691872],[-118.16267669178748,34.06986502585836],[-118.16269812828511,34.06985160111551],[-118.16275747638268,34.06980686808003],[-118.16280856536952,34.06975974191509],[-118.16245195037139,34.06975884822101],[-118.16313948675386,34.06843722806061],[-118.16361811991705,34.06751776270558],[-118.16375627901112,34.0672520632077],[-118.16406220028111,34.06666326155496],[-118.16412634628061,34.06654089382966],[-118.16418393278188,34.06644120551556],[-118.16431216369544,34.06616590079064],[-118.16436641565039,34.06604972969134],[-118.16441408475094,34.06594421627115],[-118.16444859982079,34.06586551105777],[-118.16449953789068,34.06574350458646],[-118.16452582708747,34.06567992500027],[-118.16458004221148,34.06554451888211],[-118.16464080246067,34.06538025091818],[-118.16466050880307,34.06532732823123],[-118.16468185726578,34.06526993680413],[-118.1647015582183,34.06521392204322],[-118.16472289320629,34.06514966189246],[-118.1647491554536,34.06507234232254],[-118.16478033507882,34.06497715523506],[-118.16479674729906,34.06492835796054],[-118.16482135125636,34.06484726153562],[-118.16490825607357,34.06454693931267],[-118.16493938718975,34.06442736512882],[-118.16496396509592,34.06433321618183],[-118.16498689639018,34.06424147527549],[-118.16501143746545,34.06412877906502],[-118.16504089142697,34.06399615442909],[-118.16507195337284,34.0638415443691],[-118.16509318415626,34.06372507464458],[-118.16511766414611,34.06358112222556],[-118.16523500119018,34.06280846717906],[-118.16526759566199,34.06259477538465],[-118.16529040209038,34.06244017765169],[-118.16530993146468,34.06229829264379],[-118.16716052473035,34.06229677598355],[-118.17009406941038,34.06229371066281],[-118.17098057364514,34.06229451959791],[-118.17184727002787,34.06229569393059],[-118.17284343160938,34.06183675262984],[-118.17303552555309,34.06212534631788],[-118.17333074519311,34.06198959144673],[-118.1734052694291,34.0621038637244],[-118.17307550148156,34.0622973750569],[-118.17459263113061,34.06229896985712],[-118.17907917499909,34.06230175874638]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000147,"geom:area_square_m":1501506.15934,"geom:bbox":"-118.179105,34.0618367526,-118.161571485,34.0746396279","geom:latitude":34.067793,"geom:longitude":-118.169733,"iso:country":"US","lbl:latitude":34.068647,"lbl:longitude":-118.170363,"lbl:max_zoom":18,"mps:latitude":34.067689,"mps:longitude":-118.169026,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["University Hls"],"reversegeo:latitude":34.067689,"reversegeo:longitude":-118.169026,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85817715,102191575,1108692437,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"7b07a4eb9ffddfbddb72b7912cc5aa7a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692437,"microhood_id":1108691453,"neighbourhood_id":85817715,"region_id":85688637}],"wof:id":1108691453,"wof:lastmodified":1566623956,"wof:name":"University Hills","wof:parent_id":85817715,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869745],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691517.geojson b/fixtures/microhoods/1108691517.geojson new file mode 100644 index 0000000..17e4688 --- /dev/null +++ b/fixtures/microhoods/1108691517.geojson @@ -0,0 +1 @@ +{"id":1108691517,"type":"Feature","bbox":[-118.61465495849941,34.167942,-118.588159,34.19378115647839],"geometry":{"type":"Polygon","coordinates":[[[-118.605811,34.18696],[-118.605976,34.186925],[-118.606426,34.186814],[-118.606877,34.186704],[-118.607175,34.186632],[-118.60741,34.186584],[-118.607678,34.186544],[-118.607889,34.186521],[-118.608211,34.186501],[-118.610259,34.186496],[-118.610343,34.186459],[-118.612344,34.186456],[-118.612446,34.186455],[-118.612486,34.186455],[-118.614437,34.186452],[-118.614625,34.186451],[-118.61463749525032,34.18645620094792],[-118.61463735870639,34.1866622968239],[-118.6146385822118,34.18682853926835],[-118.61463991800665,34.18723488130975],[-118.614640961849,34.18782602346572],[-118.61464313487367,34.1883460567536],[-118.61464571663178,34.18914637584231],[-118.61464708117269,34.18955649638047],[-118.61465272798803,34.19192278463716],[-118.61465460007165,34.19260046954133],[-118.61465495849941,34.1930985284521],[-118.61465265971063,34.19368487854618],[-118.61465350003871,34.19373792245757],[-118.60591622197568,34.19375299920326],[-118.60582901700455,34.19375314104152],[-118.59771014688954,34.19376634632501],[-118.59683216587023,34.19376793344574],[-118.5884541298825,34.19378115647839],[-118.58844321445346,34.18894590443765],[-118.58844961405156,34.18868104256892],[-118.5884546706683,34.18845981061235],[-118.58845721020562,34.18835091130687],[-118.5884448772511,34.18835097133024],[-118.588445,34.188346],[-118.58845,34.188163],[-118.588444,34.185605],[-118.588466,34.185284],[-118.588495,34.185136],[-118.588537,34.185008],[-118.588561,34.184956],[-118.588661,34.184737],[-118.588678,34.184701],[-118.588766,34.184545],[-118.588866,34.184394],[-118.588978,34.184249],[-118.589103,34.184111],[-118.589238,34.183981],[-118.589601,34.183676],[-118.589741,34.183551],[-118.589872,34.183416],[-118.589991,34.183274],[-118.590072,34.183163],[-118.590169,34.183011],[-118.590273,34.182812],[-118.590337,34.182657],[-118.590355,34.182607],[-118.590415,34.182397],[-118.590447,34.182226],[-118.590467,34.182011],[-118.590467,34.179251],[-118.590455,34.178981],[-118.590434,34.17879],[-118.590397,34.1786],[-118.590344,34.178413],[-118.590275,34.17823],[-118.589979,34.177602],[-118.588604,34.174717],[-118.588557,34.174618],[-118.588485,34.174436],[-118.58839,34.174159],[-118.588317,34.173891],[-118.588292,34.173785],[-118.588271,34.173678],[-118.588255,34.173595],[-118.588213,34.173303],[-118.588202,34.173195],[-118.588186,34.172907],[-118.588186,34.172853],[-118.588183,34.17197],[-118.588162,34.168865],[-118.58816,34.168479],[-118.58816,34.16838],[-118.58816,34.168258],[-118.588159,34.168137],[-118.588159,34.168003],[-118.588159,34.167942],[-118.588445,34.167975],[-118.589197,34.168074],[-118.592389,34.168575],[-118.59269,34.168621],[-118.594681,34.168927],[-118.59743,34.16935],[-118.602041,34.17006],[-118.602665,34.170156],[-118.605564,34.170616],[-118.605766,34.170642],[-118.605766,34.17074],[-118.605766,34.170807],[-118.605766,34.170903],[-118.605766,34.171031],[-118.605767,34.171158],[-118.60577,34.171954],[-118.605694,34.17452],[-118.605674,34.175139],[-118.605657,34.175318],[-118.605619,34.175539],[-118.605561,34.175769],[-118.605483,34.175995],[-118.605442,34.176093],[-118.605393,34.176202],[-118.605212,34.176539],[-118.604986,34.176982],[-118.604954,34.177062],[-118.6049,34.177219],[-118.604866,34.177345],[-118.604841,34.177467],[-118.604824,34.177594],[-118.604815,34.17772],[-118.604813,34.177845],[-118.60482,34.177971],[-118.604835,34.178096],[-118.604857,34.17822],[-118.604887,34.178344],[-118.604925,34.178465],[-118.605005,34.178664],[-118.605045,34.178745],[-118.605302,34.179211],[-118.605495,34.179558],[-118.605589,34.179759],[-118.605665,34.179965],[-118.605724,34.180175],[-118.605765,34.180388],[-118.605788,34.180603],[-118.605794,34.180765],[-118.605795,34.181087],[-118.605799,34.182837],[-118.605811,34.18696]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000472,"geom:area_square_m":4828893.896884,"geom:bbox":"-118.614654958,34.167942,-118.588159,34.1937811565","geom:latitude":34.182725,"geom:longitude":-118.598913,"iso:country":"US","lbl:latitude":34.181656,"lbl:longitude":-118.59694,"lbl:max_zoom":18,"mps:latitude":34.182409,"mps:longitude":-118.598653,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Warner Center"],"name:eng_x_variant":["Warner Ctr"],"name:fra_x_preferred":["Warner Center"],"name:spa_x_preferred":["Warner Center"],"reversegeo:latitude":34.182409,"reversegeo:longitude":-118.598653,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85858757,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3566344"},"wof:country":"US","wof:geomhash":"7fd62ecb6bc1f9379fe41c3d5ddb45d1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1108691517,"neighbourhood_id":85858757,"region_id":85688637}],"wof:id":1108691517,"wof:lastmodified":1566623953,"wof:name":"Warner Center","wof:parent_id":85858757,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865871],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691519.geojson b/fixtures/microhoods/1108691519.geojson new file mode 100644 index 0000000..d3b7248 --- /dev/null +++ b/fixtures/microhoods/1108691519.geojson @@ -0,0 +1 @@ +{"id":1108691519,"type":"Feature","bbox":[-118.444914,34.010577,-118.423853,34.026778],"geometry":{"type":"Polygon","coordinates":[[[-118.444914,34.019945],[-118.4448,34.019991],[-118.444698,34.020032],[-118.443809,34.020386],[-118.443635,34.020445],[-118.442788,34.020632],[-118.440987,34.021524],[-118.440249,34.02189],[-118.439512,34.022256],[-118.438799,34.022609],[-118.43865,34.022683],[-118.436618,34.02369],[-118.434113,34.024932],[-118.432755,34.025604],[-118.432377,34.025792],[-118.431423,34.026265],[-118.430588,34.026596],[-118.430476,34.02664],[-118.430338,34.026695],[-118.430128,34.026778],[-118.428496,34.024707],[-118.427479,34.02338],[-118.427029,34.022804],[-118.42509,34.020322],[-118.424707,34.019853],[-118.424645,34.019775],[-118.424541,34.019647],[-118.423853,34.018764],[-118.424165,34.018695],[-118.424359,34.018642],[-118.42452,34.018589],[-118.424729,34.018508],[-118.424881,34.01844],[-118.42515,34.018307],[-118.425182,34.018291],[-118.425266,34.018249],[-118.42539,34.018188],[-118.427805,34.016989],[-118.428736,34.016527],[-118.429098,34.016347],[-118.429325,34.016259],[-118.43007,34.015969],[-118.430213,34.015898],[-118.431091,34.015461],[-118.431834,34.01509],[-118.432052,34.014962],[-118.432224,34.014843],[-118.432452,34.01466],[-118.432639,34.014478],[-118.432775,34.014323],[-118.433155,34.01382],[-118.433312,34.013649],[-118.433465,34.013505],[-118.43363,34.013371],[-118.433805,34.013247],[-118.433943,34.01316],[-118.434086,34.01308],[-118.434304,34.012965],[-118.4353,34.012438],[-118.436486,34.01181],[-118.437675,34.011181],[-118.438816,34.010577],[-118.440021,34.012157],[-118.44202,34.014781],[-118.442618,34.015565],[-118.443163,34.01628],[-118.443426,34.016625],[-118.443827,34.017152],[-118.443889,34.017233],[-118.443994,34.017376],[-118.444108,34.017543],[-118.444266,34.017799],[-118.444362,34.017973],[-118.444451,34.01815],[-118.44457,34.01842],[-118.444639,34.018603],[-118.44473,34.018881],[-118.444802,34.019162],[-118.444841,34.019351],[-118.444872,34.019541],[-118.44491,34.0199],[-118.444914,34.019945]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000174,"geom:area_square_m":1788317.945007,"geom:bbox":"-118.444914,34.010577,-118.423853,34.026778","geom:latitude":34.018886,"geom:longitude":-118.434781,"iso:country":"US","lbl:latitude":34.01994,"lbl:longitude":-118.436992,"lbl:max_zoom":18,"mps:latitude":34.019054,"mps:longitude":-118.43494,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Westdale"],"name:ita_x_preferred":["Westdale"],"reversegeo:latitude":34.019054,"reversegeo:longitude":-118.43494,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85832373,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d308ce98153e0ece7edd60e98fe55e22","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108691519,"neighbourhood_id":85832373,"region_id":85688637}],"wof:id":1108691519,"wof:lastmodified":1566623953,"wof:name":"Westdale","wof:parent_id":85832373,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869791],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691521.geojson b/fixtures/microhoods/1108691521.geojson new file mode 100644 index 0000000..8f9d2e7 --- /dev/null +++ b/fixtures/microhoods/1108691521.geojson @@ -0,0 +1 @@ +{"id":1108691521,"type":"Feature","bbox":[-118.42865265344757,34.01683871784061,-118.40994107382745,34.03244719103768],"geometry":{"type":"Polygon","coordinates":[[[-118.42031771310027,34.01683871784061],[-118.42865265344757,34.02737172857393],[-118.42284098730859,34.02967247059465],[-118.4226581747584,34.0297442120783],[-118.4221953905718,34.02992753468861],[-118.42141863171864,34.03035342224696],[-118.42127710034902,34.03043051440692],[-118.42124418967026,34.03044917752893],[-118.42117671541263,34.0304858225707],[-118.4211174679264,34.0305179732347],[-118.42080314381522,34.03069081132087],[-118.42001813663114,34.03112015308411],[-118.41913438483442,34.0316047911756],[-118.41885625474433,34.03175723260743],[-118.41759725419556,34.03244719103768],[-118.41710069604922,34.03181964278075],[-118.41694957785886,34.03162987351549],[-118.41637997949341,34.03091395561407],[-118.41638326283575,34.03091050948093],[-118.41628860286268,34.03079061537852],[-118.41489509397316,34.02898284174071],[-118.41446327112112,34.02842341383684],[-118.41382384311537,34.02759299911052],[-118.4130366251774,34.02657245320995],[-118.41287719307905,34.02636622011968],[-118.41240386536596,34.02575025243165],[-118.41234574167214,34.02567522799618],[-118.41222617590783,34.02552175490967],[-118.41193720225395,34.02514559469194],[-118.41155025923354,34.02464439655527],[-118.41109024814621,34.02404795571792],[-118.41091919454308,34.0238252728449],[-118.41038944364699,34.02313804375496],[-118.40994107382745,34.02255667372064],[-118.41088564785711,34.02203376950028],[-118.41277641198567,34.02098827750908],[-118.41308412898792,34.02081788636995],[-118.41595062611007,34.01923453911131],[-118.4166647652014,34.01884016039322],[-118.41781824245038,34.01820450357629],[-118.4185192095447,34.0178190907833],[-118.41880881112094,34.01766042566571],[-118.41965788076116,34.01719789437803],[-118.42031771310027,34.01683871784061]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000151,"geom:area_square_m":1542678.778182,"geom:bbox":"-118.428652653,34.0168387178,-118.409941074,34.032447191","geom:latitude":34.024706,"geom:longitude":-118.419137,"iso:country":"US","lbl:latitude":34.025632,"lbl:longitude":-118.422432,"lbl:max_zoom":18,"mps:latitude":34.02462,"mps:longitude":-118.418995,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Westside Village"],"reversegeo:latitude":34.02462,"reversegeo:longitude":-118.418995,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85832373,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7989722"},"wof:country":"US","wof:geomhash":"bbb6307028b6c40c326fc266206ca8b7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108691521,"neighbourhood_id":85832373,"region_id":85688637}],"wof:id":1108691521,"wof:lastmodified":1566623957,"wof:name":"Westside Village","wof:parent_id":85832373,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85886327],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691525.geojson b/fixtures/microhoods/1108691525.geojson new file mode 100644 index 0000000..8048e0d --- /dev/null +++ b/fixtures/microhoods/1108691525.geojson @@ -0,0 +1 @@ +{"id":1108691525,"type":"Feature","bbox":[-118.23972081711436,34.01471786676648,-118.22259703594705,34.03498794639032],"geometry":{"type":"Polygon","coordinates":[[[-118.23265673431631,34.03460355599121],[-118.23258741491908,34.03460128472424],[-118.23226560065508,34.03459881320455],[-118.23069117645721,34.03458500098156],[-118.2301432634227,34.0345802075724],[-118.22988250944519,34.03457795640452],[-118.22909859910406,34.03457120290052],[-118.22877513193993,34.03456838149604],[-118.22770406254185,34.03455907086058],[-118.22720730496953,34.03455244986433],[-118.22665974048134,34.03223908875626],[-118.22622714417986,34.03032223412184],[-118.2260284898396,34.02947866815348],[-118.22517727412416,34.02590494386762],[-118.22492192261475,34.02544687024086],[-118.22473463375948,34.02452496711502],[-118.22466273080751,34.02417131394409],[-118.22452391414666,34.02347876723638],[-118.22423797859508,34.02207067504378],[-118.22364437095703,34.01913705866537],[-118.22361091410258,34.01896606591971],[-118.22355741403753,34.01870374428673],[-118.22349721343876,34.01840365175833],[-118.22345707850849,34.0182034753148],[-118.22340023042237,34.0179229560269],[-118.22324138672059,34.01713667372504],[-118.2231460862487,34.01666662219352],[-118.22305748631055,34.0162339973571],[-118.22304746919681,34.01619004987359],[-118.22289522176484,34.01575828199206],[-118.22259703594705,34.01494884759593],[-118.22284144255589,34.01494774738774],[-118.22324379330723,34.01494593618632],[-118.22333515736149,34.01517796181933],[-118.22340827663237,34.01537395477563],[-118.22371679493185,34.01536754374951],[-118.22370411431329,34.01494405307754],[-118.22581267767745,34.01493497483976],[-118.22581679824965,34.01523929334158],[-118.22746167282368,34.01520494775415],[-118.22758795888464,34.01492614529947],[-118.2303432724224,34.01491198809996],[-118.23034302718233,34.01482268368934],[-118.23972081711436,34.01471786676648],[-118.23971992149403,34.01498131911433],[-118.23964654710161,34.01528613484489],[-118.23965234662509,34.01558289141506],[-118.23965644653602,34.01586247875303],[-118.23966682028096,34.01660438181162],[-118.23967059859504,34.01677130640708],[-118.23967082497049,34.01685030737472],[-118.2396807818971,34.01744657467228],[-118.23967501650961,34.0177378584617],[-118.23967201523824,34.01784228298482],[-118.23966112675868,34.01807312575663],[-118.2396343147424,34.01850562432203],[-118.2395444796207,34.01997797032278],[-118.238623665132,34.03498794639032],[-118.2374995978271,34.03491459615897],[-118.23687236534963,34.03487357949663],[-118.23650427886533,34.03484957084142],[-118.2353571068913,34.03477487232387],[-118.23499892612965,34.03475152618554],[-118.23433208154141,34.03470816969244],[-118.23265673431631,34.03460355599121]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000284,"geom:area_square_m":2906114.924242,"geom:bbox":"-118.239720817,34.0147178668,-118.222597036,34.0349879464","geom:latitude":34.024129,"geom:longitude":-118.232074,"iso:country":"US","lbl:latitude":34.036418,"lbl:longitude":-118.232626,"lbl:max_zoom":18,"mps:latitude":34.023758,"mps:longitude":-118.232072,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Wholesale District"],"name:eng_x_variant":["Warehouse District"],"name:ita_x_preferred":["Wholesale District"],"reversegeo:latitude":34.023758,"reversegeo:longitude":-118.232072,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865811,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4274086"},"wof:country":"US","wof:geomhash":"3083705cbd2fa5684c3490dda7c3915f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691525,"neighbourhood_id":85865811,"region_id":85688637}],"wof:id":1108691525,"wof:lastmodified":1566623958,"wof:name":"Wholesale District","wof:parent_id":85865811,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869799],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691527.geojson b/fixtures/microhoods/1108691527.geojson new file mode 100644 index 0000000..c291fcc --- /dev/null +++ b/fixtures/microhoods/1108691527.geojson @@ -0,0 +1 @@ +{"id":1108691527,"type":"Feature","bbox":[-118.314352,34.057665,-118.286785,34.069062],"geometry":{"type":"Polygon","coordinates":[[[-118.29790994461462,34.06847069504241],[-118.29291006292976,34.06845310772229],[-118.29291844907407,34.06904705724204],[-118.291662,34.069052],[-118.289503,34.069062],[-118.289365,34.069056],[-118.287885,34.068974],[-118.287497,34.068976],[-118.286799,34.068982],[-118.286785,34.067716],[-118.287082,34.067714],[-118.287071,34.066671],[-118.2870620104643,34.06567229850531],[-118.28705844043441,34.06527568245055],[-118.287057,34.065188],[-118.28704204738483,34.06370968477957],[-118.287042,34.063705],[-118.287029,34.06237],[-118.28702662399482,34.06215180352346],[-118.287023,34.061819],[-118.287839,34.061814],[-118.287833,34.061312],[-118.28784045691711,34.06078895074494],[-118.28783042722698,34.05979321442315],[-118.28883409333436,34.05978738351808],[-118.28908501557093,34.05978579896526],[-118.289085,34.059781],[-118.289082,34.05871],[-118.28908,34.057718],[-118.290336,34.057712],[-118.291627,34.057755],[-118.292881,34.057748],[-118.294136,34.05774],[-118.29539,34.057733],[-118.296529,34.057726],[-118.297619,34.05772],[-118.29871,34.057713],[-118.2998,34.057707],[-118.300892,34.057701],[-118.301981,34.057694],[-118.303071,34.057687],[-118.304161,34.057681],[-118.305331,34.057681],[-118.306577,34.057673],[-118.307821,34.057665],[-118.308791,34.058036],[-118.309072,34.058038],[-118.310144,34.058038],[-118.311167,34.058038],[-118.312191,34.058039],[-118.313215,34.058043],[-118.314254,34.058052],[-118.314257,34.058974],[-118.314259,34.059427],[-118.314349,34.059882],[-118.314352,34.060678],[-118.314352,34.06076],[-118.314352,34.060925],[-118.314344,34.061084],[-118.314314,34.061289],[-118.314278,34.061436],[-118.31420622172594,34.06169501330377],[-118.31418458568652,34.06176095861414],[-118.31417643078035,34.06178742814525],[-118.31415846267807,34.06183831022904],[-118.3141486908044,34.06187371602064],[-118.31413891174421,34.06190740270954],[-118.31413239267019,34.06192974564082],[-118.31412749505527,34.06194452830375],[-118.3141128345498,34.06199677588764],[-118.31410143672551,34.06203905423354],[-118.31409168641142,34.06208029738676],[-118.31408040536805,34.06215348942248],[-118.31406910815504,34.062222215504],[-118.31406273820137,34.06228440232712],[-118.3140579376045,34.06232494656628],[-118.31405472073745,34.06234762501715],[-118.31404999649737,34.06240843425343],[-118.31404683442759,34.06244553879083],[-118.31404211737402,34.06250840787104],[-118.3140390648987,34.06257470835589],[-118.31404205000038,34.06293020773716],[-118.3140435214408,34.06332211917999],[-118.314062,34.065325],[-118.31407,34.067141],[-118.314078,34.068956],[-118.312831,34.068957],[-118.312331,34.068957],[-118.311601,34.068958],[-118.310361,34.068959],[-118.309114,34.068961],[-118.307898,34.068969],[-118.306692,34.068977],[-118.306619,34.068977],[-118.305482,34.068984],[-118.305373,34.068985],[-118.304107,34.068993],[-118.302852,34.069001],[-118.301869,34.069008],[-118.301597,34.06901],[-118.300358,34.069017],[-118.29953990129904,34.06902057560621],[-118.299214,34.069022],[-118.29912,34.069022],[-118.297942,34.069027],[-118.29792082841095,34.06902708218784],[-118.29790994461462,34.06847069504241]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000296,"geom:area_square_m":3029149.002447,"geom:bbox":"-118.314352,34.057665,-118.286785,34.069062","geom:latitude":34.063415,"geom:longitude":-118.300802,"iso:country":"US","lbl:latitude":34.072047,"lbl:longitude":-118.294809,"lbl:max_zoom":18,"mps:latitude":34.063358,"mps:longitude":-118.300802,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Wilshire Ctr"],"reversegeo:latitude":34.063358,"reversegeo:longitude":-118.300802,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865819,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ee810e66bc6612fcdc4beb8699745948","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108691527,"neighbourhood_id":85865819,"region_id":85688637}],"wof:id":1108691527,"wof:lastmodified":1566623957,"wof:name":"Wilshire Center","wof:parent_id":85865819,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869813],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108691529.geojson b/fixtures/microhoods/1108691529.geojson new file mode 100644 index 0000000..8814072 --- /dev/null +++ b/fixtures/microhoods/1108691529.geojson @@ -0,0 +1 @@ +{"id":1108691529,"type":"Feature","bbox":[-118.32791,34.05468263797577,-118.319083,34.06183898835797],"geometry":{"type":"Polygon","coordinates":[[[-118.32791,34.055256],[-118.3273,34.056368],[-118.32683,34.057231],[-118.326592,34.057667],[-118.32637897176836,34.05759352170233],[-118.32502,34.060065],[-118.324868,34.06034],[-118.324273,34.061425],[-118.32404448861342,34.06183898835797],[-118.322859,34.061812],[-118.321406,34.061779],[-118.320242,34.061753],[-118.319952,34.061746],[-118.319083,34.061726],[-118.319288,34.061353],[-118.320521,34.059108],[-118.322032,34.056356],[-118.322093,34.056243],[-118.32296780049492,34.05468536796354],[-118.3229692921416,34.05468263797577],[-118.32429,34.054834],[-118.325702,34.054997],[-118.32691,34.055136],[-118.32791,34.055256]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000035,"geom:area_square_m":357581.959082,"geom:bbox":"-118.32791,34.054682638,-118.319083,34.0618389884","geom:latitude":34.058334,"geom:longitude":-118.323479,"iso:country":"US","lbl:latitude":34.071156,"lbl:longitude":-118.32413,"lbl:max_zoom":18,"mps:latitude":34.058284,"mps:longitude":-118.323479,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Windsor Sq"],"reversegeo:latitude":34.058284,"reversegeo:longitude":-118.323479,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85886323,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1695139b7b78a111f2fd04411c5196d1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108691529,"neighbourhood_id":85886323,"region_id":85688637}],"wof:id":1108691529,"wof:lastmodified":1566623957,"wof:name":"Windsor Village","wof:parent_id":85886323,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869817],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108692429.geojson b/fixtures/microhoods/1108692429.geojson new file mode 100644 index 0000000..24c2552 --- /dev/null +++ b/fixtures/microhoods/1108692429.geojson @@ -0,0 +1 @@ +{"id":1108692429,"type":"Feature","bbox":[-118.219843,34.018744,-118.20483,34.028086],"geometry":{"type":"Polygon","coordinates":[[[-118.219843,34.024281],[-118.219711,34.025552],[-118.219635,34.026285],[-118.219449,34.028086],[-118.218491,34.027672],[-118.21829,34.027585],[-118.217645,34.027307],[-118.21752,34.027254],[-118.216723,34.026909],[-118.215771,34.026498],[-118.214839,34.026084],[-118.213937,34.025683],[-118.212992,34.025263],[-118.212108,34.02487],[-118.211214,34.02447],[-118.210313,34.024066],[-118.209413,34.023663],[-118.208517,34.023262],[-118.208358,34.023189],[-118.208228,34.023129],[-118.208049,34.023046],[-118.208005,34.023026],[-118.207492,34.02279],[-118.207436,34.022764],[-118.20696,34.022545],[-118.20483,34.021563],[-118.205258,34.020893],[-118.205351,34.020747],[-118.205661,34.020262],[-118.205845,34.019973],[-118.206255,34.019332],[-118.206624,34.018753],[-118.20706,34.018744],[-118.20717,34.018745],[-118.20732,34.018761],[-118.207466,34.018792],[-118.207607,34.018837],[-118.207886,34.018962],[-118.210477,34.020141],[-118.212254,34.020951],[-118.214041,34.021766],[-118.214423,34.02194],[-118.215623,34.02246],[-118.217722,34.023366],[-118.219843,34.024281]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":563708.367298,"geom:bbox":"-118.219843,34.018744,-118.20483,34.028086","geom:latitude":34.023176,"geom:longitude":-118.212719,"iso:country":"US","lbl:latitude":34.023153,"lbl:longitude":-118.212719,"lbl:max_zoom":18,"mps:latitude":34.023153,"mps:longitude":-118.212719,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":34.023153,"reversegeo:longitude":-118.212719,"src:geom":"mz","wof:belongsto":[85806935,102191575,1108692437,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"e5c55107ba8c7aa1e12fbeb98541c36b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692437,"microhood_id":1108692429,"neighbourhood_id":85806935,"region_id":85688637}],"wof:id":1108692429,"wof:lastmodified":1566623953,"wof:name":"Wyvernwood","wof:parent_id":85806935,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551189],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108692431.geojson b/fixtures/microhoods/1108692431.geojson new file mode 100644 index 0000000..f8a3731 --- /dev/null +++ b/fixtures/microhoods/1108692431.geojson @@ -0,0 +1 @@ +{"id":1108692431,"type":"Feature","bbox":[-118.338703,34.10150072109364,-118.32667986167377,34.105448],"geometry":{"type":"Polygon","coordinates":[[[-118.326706,34.105215],[-118.326705,34.105029],[-118.326702,34.10456],[-118.3267,34.104282],[-118.326696,34.103751],[-118.32668,34.101622],[-118.32667986167377,34.10160090525006],[-118.33869455897504,34.10150072109364],[-118.338695,34.101545],[-118.338697,34.102004],[-118.338698,34.10219],[-118.338702,34.102986],[-118.338703,34.103172],[-118.338703,34.103564],[-118.338686,34.103678],[-118.338649,34.103789],[-118.338602,34.103882],[-118.338532,34.103982],[-118.338458,34.104061],[-118.338368,34.104136],[-118.33828381616907,34.10418950000471],[-118.338261,34.104204],[-118.33814,34.104261],[-118.338003,34.104321],[-118.337876,34.104397],[-118.337763,34.104488],[-118.337685,34.104567],[-118.337613,34.104661],[-118.337555,34.104762],[-118.337511,34.10487],[-118.33748,34.104998],[-118.337474,34.10505],[-118.337471,34.105173],[-118.336439,34.105179],[-118.336069,34.105181],[-118.335485,34.105184],[-118.33514,34.105186],[-118.33485,34.105188],[-118.334766,34.105189],[-118.334423,34.10519],[-118.333346,34.105197],[-118.333228,34.105234],[-118.332196,34.10524],[-118.332125,34.105241],[-118.331195,34.105247],[-118.331049,34.105242],[-118.330406,34.105245],[-118.329375,34.105249],[-118.329274,34.105252],[-118.329138,34.105263],[-118.329017,34.10528],[-118.328171,34.105432],[-118.328006,34.105448],[-118.327811,34.105448],[-118.327668,34.105436],[-118.327502,34.105408],[-118.326863,34.105244],[-118.326706,34.105215]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000043,"geom:area_square_m":442391.291177,"geom:bbox":"-118.338703,34.1015007211,-118.326679862,34.105448","geom:latitude":34.103363,"geom:longitude":-118.33253,"iso:country":"US","lbl:latitude":34.104143,"lbl:longitude":-118.326884,"lbl:max_zoom":18,"mps:latitude":34.1034,"mps:longitude":-118.332535,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Yucca Corridor"],"name:hun_x_preferred":["Yucca Corridor"],"name:jpn_x_preferred":["ユッカ街"],"name:urd_x_preferred":["یکا کوریڈور، لوث انگلیس"],"name:urd_x_variant":["یکا کوریڈور"],"reversegeo:latitude":34.1034,"reversegeo:longitude":-118.332535,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85826037,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1466308"},"wof:country":"US","wof:geomhash":"04cdc610483e8a0647e88e6bdce8de20","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108692431,"neighbourhood_id":85826037,"region_id":85688637}],"wof:id":1108692431,"wof:lastmodified":1566623956,"wof:name":"Yucca Corridor","wof:parent_id":85826037,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869831],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108692887.geojson b/fixtures/microhoods/1108692887.geojson new file mode 100644 index 0000000..37718c4 --- /dev/null +++ b/fixtures/microhoods/1108692887.geojson @@ -0,0 +1 @@ +{"id":1108692887,"type":"Feature","bbox":[-118.29793073465804,34.06845310772229,-118.29291006292976,34.06954192320025],"geometry":{"type":"Polygon","coordinates":[[[-118.29291006292976,34.06845310772229],[-118.29790994461462,34.06847069504241],[-118.29793073465804,34.0695334963447],[-118.29292543622903,34.06954192320025],[-118.29291006292976,34.06845310772229]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":55124.56422,"geom:bbox":"-118.297930735,34.0684531077,-118.292910063,34.0695419232","geom:latitude":34.069,"geom:longitude":-118.295409,"iso:country":"US","lbl:latitude":34.069,"lbl:longitude":-118.295409,"lbl:max_zoom":18,"mps:latitude":34.069,"mps:longitude":-118.295409,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ben_x_preferred":["লিটল বাংলাদেশ"],"reversegeo:latitude":34.069,"reversegeo:longitude":-118.295409,"src:geom":"mz","wof:belongsto":[85865819,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"34e21660ca817f643bcfa7c6f704cb5b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108692887,"neighbourhood_id":85865819,"region_id":85688637}],"wof:id":1108692887,"wof:lastmodified":1566623954,"wof:name":"Little Bangladesh","wof:parent_id":85865819,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780793],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108693177.geojson b/fixtures/microhoods/1108693177.geojson new file mode 100644 index 0000000..203413d --- /dev/null +++ b/fixtures/microhoods/1108693177.geojson @@ -0,0 +1 @@ +{"id":1108693177,"type":"Feature","bbox":[-118.240037,34.054517,-118.237478,34.057087],"geometry":{"type":"Polygon","coordinates":[[[-118.238886,34.057087],[-118.23847,34.056835],[-118.238071,34.056592],[-118.237478,34.056195],[-118.237605,34.055597],[-118.237779,34.054775],[-118.237834,34.054517],[-118.238044,34.054615],[-118.238273,34.054736],[-118.239198,34.055312],[-118.23925,34.055344],[-118.240037,34.055835],[-118.2398,34.056092],[-118.23969,34.056212],[-118.238886,34.057087]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":36292.536633,"geom:bbox":"-118.240037,34.054517,-118.237478,34.057087","geom:latitude":34.055851,"geom:longitude":-118.23859,"iso:country":"US","lbl:latitude":34.055909,"lbl:longitude":-118.238572,"lbl:max_zoom":18,"mps:latitude":34.055909,"mps:longitude":-118.238572,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["El Pueblo"],"name:ceb_x_preferred":["El Pueblo"],"name:deu_x_preferred":["El Pueblo"],"name:glg_x_preferred":["El Pueblo"],"name:spa_x_preferred":["El pueblo"],"name:swe_x_preferred":["El Pueblo"],"reversegeo:latitude":34.055909,"reversegeo:longitude":-118.238572,"src:geom":"mz","wof:belongsto":[85865837,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"992fb32a1596c3bb09db956646770fa0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108693177,"neighbourhood_id":85865837,"region_id":85688637}],"wof:id":1108693177,"wof:lastmodified":1566623960,"wof:name":"El Pueblo","wof:parent_id":85865837,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780785],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108693181.geojson b/fixtures/microhoods/1108693181.geojson new file mode 100644 index 0000000..a8efdd2 --- /dev/null +++ b/fixtures/microhoods/1108693181.geojson @@ -0,0 +1 @@ +{"id":1108693181,"type":"Feature","bbox":[-118.238886,34.056195,-118.237074,34.058247],"geometry":{"type":"Polygon","coordinates":[[[-118.237478,34.056195],[-118.238071,34.056592],[-118.23847,34.056835],[-118.238886,34.057087],[-118.23784,34.058247],[-118.237376,34.05818],[-118.237341,34.05817],[-118.237074,34.05809],[-118.237404,34.056544],[-118.237478,34.056195]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":20855.528289,"geom:bbox":"-118.238886,34.056195,-118.237074,34.058247","geom:latitude":34.05731,"geom:longitude":-118.237839,"iso:country":"US","lbl:latitude":34.057247,"lbl:longitude":-118.237897,"lbl:max_zoom":18,"mps:latitude":34.057247,"mps:longitude":-118.237897,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["Olvera Street"],"name:fra_x_preferred":["Olvera Street"],"name:pol_x_preferred":["Olvera Street"],"name:spa_x_preferred":["Placita Olvera"],"reversegeo:latitude":34.057247,"reversegeo:longitude":-118.237897,"src:geom":"mz","wof:belongsto":[85865837,102191575,1108694663,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"46b289c1794f3b2ae7b302bc9ad89918","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108694663,"microhood_id":1108693181,"neighbourhood_id":85865837,"region_id":85688637}],"wof:id":1108693181,"wof:lastmodified":1566623959,"wof:name":"Olvera Street","wof:parent_id":85865837,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108693281.geojson b/fixtures/microhoods/1108693281.geojson new file mode 100644 index 0000000..5727fa7 --- /dev/null +++ b/fixtures/microhoods/1108693281.geojson @@ -0,0 +1 @@ +{"id":1108693281,"type":"Feature","bbox":[-118.206517,34.073788,-118.1963488706062,34.08449876693665],"geometry":{"type":"Polygon","coordinates":[[[-118.1993696452936,34.08424905862029],[-118.19934981588202,34.08424325171819],[-118.1991329490977,34.08401278769219],[-118.19906938224219,34.08394540573821],[-118.19900547905719,34.0838773223407],[-118.19897064198818,34.08384073938026],[-118.19891335604025,34.08378001529573],[-118.1988930843961,34.08375846708815],[-118.1986677673076,34.08351859408572],[-118.19850056747703,34.08334060133483],[-118.19855135642655,34.08317186663515],[-118.19857942938161,34.08307691363163],[-118.19863654186831,34.08288594867178],[-118.19907592372773,34.08139675703533],[-118.1992802916689,34.08070617098106],[-118.19931547377335,34.08058485295508],[-118.19948175593936,34.08002127481547],[-118.19980927450541,34.07888208585312],[-118.1996505987886,34.07812256222804],[-118.19935994008561,34.07673222473435],[-118.19930820591806,34.07648333617073],[-118.19890810886692,34.07626244875813],[-118.19843526804071,34.07600114809767],[-118.1983073382406,34.07593045776734],[-118.19788637943579,34.07569772244786],[-118.19782355575643,34.0756631334724],[-118.19757528836134,34.07540901873119],[-118.19744517089889,34.07527589094645],[-118.19713065609125,34.07495350399553],[-118.19687683744816,34.07469296447291],[-118.1963488706062,34.07415215082336],[-118.196497,34.073918],[-118.197333,34.073906],[-118.198688,34.073886],[-118.199643,34.073871],[-118.200733,34.073855],[-118.202548,34.073828],[-118.202732,34.073825],[-118.203902,34.073808],[-118.205205,34.073788],[-118.205219,34.074312],[-118.205247,34.075567],[-118.205512,34.075562],[-118.205805,34.076415],[-118.205551,34.077237],[-118.205348,34.077894],[-118.205426,34.077974],[-118.205913,34.078471],[-118.206517,34.079088],[-118.205481,34.08044],[-118.204729,34.081421],[-118.204105,34.082235],[-118.203787,34.08265],[-118.20339267932661,34.08378380137041],[-118.20172281721463,34.0842904918408],[-118.20020248686822,34.08449876693665],[-118.19975669052253,34.08436510519555],[-118.19959933642689,34.08431771916214],[-118.19944982417414,34.08427309840634],[-118.1993696452936,34.08424905862029]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000065,"geom:area_square_m":670697.935357,"geom:bbox":"-118.206517,34.073788,-118.196348871,34.0844987669","geom:latitude":34.078552,"geom:longitude":-118.201945,"iso:country":"US","lbl:latitude":34.078353,"lbl:longitude":-118.20255,"lbl:max_zoom":18,"mps:latitude":34.078353,"mps:longitude":-118.20255,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["Happy Valley"],"name:ceb_x_preferred":["Happy Valley"],"name:deu_x_preferred":["Happy Valley"],"name:fra_x_preferred":["Happy Valley"],"name:hun_x_preferred":["Happy Valley"],"name:ita_x_preferred":["Happy Valley"],"name:kor_x_preferred":["해피 밸리"],"name:mlg_x_preferred":["Happy Valley"],"name:nld_x_preferred":["Happy Valley"],"name:pol_x_preferred":["Happy Valley"],"name:rus_x_preferred":["Хэппи-Вэлли"],"name:spa_x_preferred":["Happy Valley"],"name:srp_x_preferred":["Хепи Вали"],"name:swe_x_preferred":["Happy Valley"],"name:ukr_x_preferred":["Геппі-Веллі"],"name:urd_x_preferred":["ہیپی ویلی"],"name:vol_x_preferred":["Happy Valley"],"name:zho_x_preferred":["欢乐谷"],"reversegeo:latitude":34.078353,"reversegeo:longitude":-118.20255,"src:geom":"mz","wof:belongsto":[85830641,102191575,1108692437,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"09c77187cc5ed81a51686cf01929f773","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692437,"microhood_id":1108693281,"neighbourhood_id":85830641,"region_id":85688637}],"wof:id":1108693281,"wof:lastmodified":1566623960,"wof:name":"Happy Valley","wof:parent_id":85830641,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551125],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108693285.geojson b/fixtures/microhoods/1108693285.geojson new file mode 100644 index 0000000..e84437e --- /dev/null +++ b/fixtures/microhoods/1108693285.geojson @@ -0,0 +1 @@ +{"id":1108693285,"type":"Feature","bbox":[-118.482363,34.0585,-118.470066,34.075069],"geometry":{"type":"Polygon","coordinates":[[[-118.4733095653726,34.07113361481625],[-118.47261878424399,34.07010469629572],[-118.47211458352741,34.06940457221477],[-118.47166245879359,34.0687574986453],[-118.47134229425185,34.06837711642629],[-118.47035111886852,34.06736312275746],[-118.470378,34.067107],[-118.470398,34.066948],[-118.470403,34.066749],[-118.470388,34.066551],[-118.470373,34.066457],[-118.470144,34.065435],[-118.470066,34.065088],[-118.470717,34.064559],[-118.471712,34.063753],[-118.472289,34.063285],[-118.472781,34.062886],[-118.474682,34.061345],[-118.475944,34.060321],[-118.476623,34.059771],[-118.477098,34.059386],[-118.478238,34.0585],[-118.478624,34.058989],[-118.47826380946263,34.0594418819465],[-118.47823,34.059494],[-118.47819,34.059579],[-118.478169,34.059642],[-118.478149,34.059759],[-118.47815,34.059877],[-118.478158,34.059929],[-118.478198,34.06009],[-118.478247,34.060224],[-118.47828,34.060288],[-118.47835,34.060396],[-118.478385,34.060439],[-118.478532,34.060598],[-118.478622,34.060708],[-118.478702,34.060822],[-118.478756,34.060911],[-118.478846,34.061096],[-118.478893,34.061223],[-118.479005,34.061644],[-118.479039,34.061749],[-118.479094,34.061876],[-118.479135,34.061954],[-118.479227,34.062096],[-118.47928,34.062165],[-118.479337,34.062231],[-118.479398,34.062294],[-118.479486,34.062374],[-118.479794,34.062625],[-118.479852,34.062679],[-118.479919,34.062757],[-118.479954,34.06281],[-118.479997,34.062899],[-118.480023,34.06298],[-118.480044,34.063144],[-118.480048,34.06325],[-118.480045,34.063356],[-118.480031,34.063496],[-118.479973,34.06379],[-118.479958,34.063837],[-118.47993,34.06387],[-118.47964585259491,34.06402518408188],[-118.479399,34.06416],[-118.479337,34.06421],[-118.479289,34.06427],[-118.479259,34.064331],[-118.479245,34.064381],[-118.479231,34.064463],[-118.479167,34.06483],[-118.479164,34.064916],[-118.479176,34.065002],[-118.479202,34.065085],[-118.479257,34.065203],[-118.479263,34.065227],[-118.47927,34.065294],[-118.47926,34.065362],[-118.479188,34.065561],[-118.478956,34.066197],[-118.478909,34.066375],[-118.47888,34.066556],[-118.478871,34.066701],[-118.478874,34.066847],[-118.478895,34.067028],[-118.478961,34.067382],[-118.47897,34.067524],[-118.478961,34.067667],[-118.478935,34.067807],[-118.47889,34.067945],[-118.478797,34.068167],[-118.478736,34.068365],[-118.478716,34.06845],[-118.47869,34.068608],[-118.478676,34.068772],[-118.478676,34.068936],[-118.47869,34.069099],[-118.478717,34.069262],[-118.478754,34.069414],[-118.479009,34.070381],[-118.479063,34.070517],[-118.479134,34.070649],[-118.479221,34.070773],[-118.479324,34.070889],[-118.47944,34.070995],[-118.479569,34.071091],[-118.479865,34.0713],[-118.480007,34.071419],[-118.480111,34.071521],[-118.480168,34.071585],[-118.480271,34.071714],[-118.480331,34.071801],[-118.480768,34.072475],[-118.480846,34.072571],[-118.480936,34.072659],[-118.480996,34.072709],[-118.481102,34.072781],[-118.481239,34.072854],[-118.481342,34.072896],[-118.482193,34.07322],[-118.482288,34.073273],[-118.482363,34.07333],[-118.481257,34.074157],[-118.481203,34.074117],[-118.48075,34.074539],[-118.480571,34.074667],[-118.48042,34.074733],[-118.479816,34.074937],[-118.479231,34.075069],[-118.478673,34.075059],[-118.478608,34.075045],[-118.478546,34.075016],[-118.478494,34.074971],[-118.478464,34.074925],[-118.478325,34.074415],[-118.477796,34.074442],[-118.477762,34.074439],[-118.477727,34.074424],[-118.4777,34.074394],[-118.477691,34.074362],[-118.477729,34.074193],[-118.477732,34.07415],[-118.477689,34.07403],[-118.477661,34.073994],[-118.477616,34.073964],[-118.477567,34.07395],[-118.477521,34.073949],[-118.477158,34.074028],[-118.477055,34.074038],[-118.476976,34.074033],[-118.476894,34.074015],[-118.47684,34.073989],[-118.476796,34.073953],[-118.476767,34.073912],[-118.476748,34.073857],[-118.476748,34.073609],[-118.4768,34.07347],[-118.476805,34.073417],[-118.476795,34.073369],[-118.47677,34.073322],[-118.476721,34.073275],[-118.476665,34.073246],[-118.476585,34.073225],[-118.476533,34.073225],[-118.476479,34.07324],[-118.476364,34.073317],[-118.476313,34.073338],[-118.47626,34.073344],[-118.47621,34.073339],[-118.476153,34.073316],[-118.475942,34.073137],[-118.475895,34.073103],[-118.475818,34.073065],[-118.475732,34.073043],[-118.47559,34.073033],[-118.475511,34.073015],[-118.475437,34.072985],[-118.475365,34.07294],[-118.475311,34.072888],[-118.475157,34.072675],[-118.475068,34.072548],[-118.475042,34.072483],[-118.475033,34.072415],[-118.475044,34.072347],[-118.475094,34.072233],[-118.475145,34.072091],[-118.475178,34.071945],[-118.475194,34.07179],[-118.475215,34.071717],[-118.475257,34.071651],[-118.47576,34.071161],[-118.475627,34.071031],[-118.47553,34.070923],[-118.475461,34.070826],[-118.475391,34.070705],[-118.475256,34.07039],[-118.475075,34.070504],[-118.474939,34.070577],[-118.474793,34.070636],[-118.474656,34.070676],[-118.474592,34.070683],[-118.474528,34.070677],[-118.474447,34.070652],[-118.474355,34.070604],[-118.474583,34.071271],[-118.474618,34.071421],[-118.474646,34.071641],[-118.474643,34.071698],[-118.474622,34.071758],[-118.474585,34.071811],[-118.474529,34.071858],[-118.474465,34.071889],[-118.4744,34.071906],[-118.474321,34.07191],[-118.474238,34.071896],[-118.474159,34.071871],[-118.47412,34.071853],[-118.47356059775103,34.07149827826383],[-118.4733095653726,34.07113361481625]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000097,"geom:area_square_m":988685.311621,"geom:bbox":"-118.482363,34.0585,-118.470066,34.075069","geom:latitude":34.067135,"geom:longitude":-118.476039,"iso:country":"US","lbl:latitude":34.066427,"lbl:longitude":-118.474921,"lbl:max_zoom":18,"mps:latitude":34.066427,"mps:longitude":-118.474921,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":34.066427,"reversegeo:longitude":-118.474921,"src:geom":"mz","wof:belongsto":[85807211,102191575,1108692797,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"cbc08709baeef8c8a51e443c16d01f92","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692797,"microhood_id":1108693285,"neighbourhood_id":85807211,"region_id":85688637}],"wof:id":1108693285,"wof:lastmodified":1566623960,"wof:name":"Brentwood Heights","wof:parent_id":85807211,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551169],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701979.geojson b/fixtures/microhoods/1108701979.geojson new file mode 100644 index 0000000..ec4e32b --- /dev/null +++ b/fixtures/microhoods/1108701979.geojson @@ -0,0 +1 @@ +{"id":1108701979,"type":"Feature","bbox":[-71.155679,42.33681919784541,-71.13998628925478,42.343794],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.1487418707976,42.33686501345657],[-71.14888755683873,42.33719036770565],[-71.14898354904398,42.33717756874495],[-71.14908594072956,42.33715197082356],[-71.14918833241514,42.33711357394146],[-71.14929712358108,42.33704317965762],[-71.14938671630595,42.33698558433449],[-71.1495083064326,42.33695358693274],[-71.1503466383583,42.33681919784541],[-71.14980268252864,42.33768312769252],[-71.152262,42.337185],[-71.1526897973718,42.33757691759222],[-71.153192,42.338037],[-71.153286,42.338117],[-71.153365,42.338185],[-71.153647,42.338423],[-71.155088,42.339746],[-71.155679,42.34024],[-71.155536,42.340262],[-71.155288,42.340337],[-71.155257,42.340432],[-71.154909,42.340967],[-71.154734,42.341206],[-71.154623,42.341233],[-71.154537,42.341225],[-71.154462,42.341198],[-71.154061,42.340979],[-71.153778,42.340855],[-71.15353,42.340793],[-71.153111,42.340696],[-71.152623,42.340628],[-71.152195,42.340621],[-71.151963,42.340598],[-71.151648,42.340535],[-71.151382,42.340423],[-71.151308,42.340479],[-71.15115,42.340601],[-71.150922,42.340764],[-71.150487,42.341055],[-71.150712,42.3412],[-71.150944,42.341274],[-71.151184,42.341336],[-71.151349,42.341403],[-71.151446,42.341482],[-71.151505,42.341588],[-71.15152649229984,42.34173810675068],[-71.15150632946055,42.34187090654212],[-71.151291,42.341895],[-71.150524,42.342144],[-71.15005,42.342232],[-71.149682,42.342258],[-71.149529,42.342258],[-71.149404,42.342258],[-71.149171,42.342241],[-71.149044,42.342201],[-71.148924,42.342139],[-71.148805,42.342027],[-71.148633,42.341814],[-71.148529,42.341653],[-71.148206,42.341657],[-71.148072,42.341642],[-71.147729,42.341618],[-71.147267,42.3416],[-71.1469730187658,42.34161056592172],[-71.147007,42.341782],[-71.14704,42.341937],[-71.147134,42.342223],[-71.147251,42.342525],[-71.147262,42.34263],[-71.147256,42.34271],[-71.147227,42.342781],[-71.147125,42.342865],[-71.147001,42.342919],[-71.146826,42.34296],[-71.146577,42.34301],[-71.146391,42.343105],[-71.146352,42.343042],[-71.146157,42.342555],[-71.145961,42.34262],[-71.145686,42.342746],[-71.145439,42.342894],[-71.145109,42.343113],[-71.14478,42.343368],[-71.144425,42.343681],[-71.144093,42.343478],[-71.143459,42.343149],[-71.143273,42.343368],[-71.14296,42.343794],[-71.142313,42.343409],[-71.142112,42.343287],[-71.141918,42.343189],[-71.141518,42.342952],[-71.141013,42.342674],[-71.140658,42.342501],[-71.140427,42.342395],[-71.13998628925478,42.34214526391104],[-71.14006978686574,42.3420886584117],[-71.14109501752678,42.34123605767682],[-71.14132625809386,42.34104771209639],[-71.14144934774272,42.34087591286231],[-71.14161886578222,42.3406412523251],[-71.14174976502758,42.34039577125387],[-71.14193928775568,42.34000824747636],[-71.14239482303248,42.34006104302157],[-71.14421148565796,42.34002222554547],[-71.14527538809138,42.33933618695013],[-71.14616151534247,42.33869734647584],[-71.14624486726134,42.33859457196166],[-71.14660567712322,42.33853709520566],[-71.14648931187469,42.33816126689964],[-71.14634210234078,42.33803627519556],[-71.14615600387337,42.33744185302007],[-71.1473223993663,42.33718719050842],[-71.1487418707976,42.33686501345657]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":481424.857436,"geom:bbox":"-71.155679,42.3368191978,-71.1399862893,42.343794","geom:latitude":42.340254,"geom:longitude":-71.147829,"iso:country":"US","lbl:latitude":42.342092,"lbl:longitude":-71.151056,"lbl:max_zoom":18,"mps:latitude":42.33966,"mps:longitude":-71.148363,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:afr_x_preferred":["Aberdeen"],"name:ara_x_preferred":["أبردين"],"name:ast_x_preferred":["Aberdeen"],"name:azb_x_preferred":["ابردین"],"name:aze_x_preferred":["Aberdin"],"name:bak_x_preferred":["Абердин"],"name:bel_x_preferred":["Абердзін"],"name:ben_x_preferred":["অ্যাবরদিন"],"name:bos_x_preferred":["Aberdeen"],"name:bre_x_preferred":["Obar Dheathain"],"name:bul_x_preferred":["Абърдийн"],"name:cat_x_preferred":["Aberdeen"],"name:ces_x_preferred":["Aberdeen"],"name:cos_x_preferred":["Aberdeen"],"name:cym_x_preferred":["Aberdeen"],"name:dan_x_preferred":["Aberdeen"],"name:deu_x_preferred":["Aberdeen"],"name:ell_x_preferred":["Αμπερντίν"],"name:eng_x_variant":["Aberdeen Architectural Conservation District"],"name:epo_x_preferred":["Aberdeen"],"name:est_x_preferred":["Aberdeen"],"name:eus_x_preferred":["Aberdeen"],"name:fao_x_preferred":["Aberdeen"],"name:fas_x_preferred":["ابردین"],"name:fin_x_preferred":["Aberdeen"],"name:fra_x_preferred":["Aberdeen"],"name:fry_x_preferred":["Aberdeen"],"name:gla_x_preferred":["Obar Dheathain"],"name:gle_x_preferred":["Obar Dheathain"],"name:glg_x_preferred":["Aberdeen"],"name:glv_x_preferred":["Aberdon"],"name:hak_x_preferred":["Â-pak-tên"],"name:heb_x_preferred":["אברדין"],"name:hin_x_preferred":["एबरडीन"],"name:hrv_x_preferred":["Aberdeen"],"name:hun_x_preferred":["Aberdeen"],"name:hye_x_preferred":["Աբերդին"],"name:ile_x_preferred":["Aberdeen"],"name:ind_x_preferred":["Aberdeen"],"name:isl_x_preferred":["Aberdeen"],"name:ita_x_preferred":["Aberdeen"],"name:jpn_x_preferred":["アバディーン"],"name:kat_x_preferred":["აბერდინი"],"name:kaz_x_preferred":["Абердин"],"name:kor_x_preferred":["애버딘"],"name:lat_x_preferred":["Aberdonia"],"name:lav_x_preferred":["Aberdīna"],"name:lit_x_preferred":["Aberdynas"],"name:lmo_x_preferred":["Aberdeen"],"name:mal_x_preferred":["അബർഡീൻ"],"name:mar_x_preferred":["अ‍ॅबर्डीन"],"name:mkd_x_preferred":["Абердин"],"name:mon_x_preferred":["Абердин"],"name:msa_x_preferred":["Aberdeen"],"name:mya_x_preferred":["အဘာဒင်းမြို့"],"name:nds_x_preferred":["Aberdeen"],"name:nld_x_preferred":["Aberdeen"],"name:nno_x_preferred":["Aberdeen"],"name:nor_x_preferred":["Aberdeen"],"name:oci_x_preferred":["Aberdeen"],"name:oss_x_preferred":["Абердин"],"name:pms_x_preferred":["Aberdeen"],"name:pnb_x_preferred":["ابردین"],"name:pol_x_preferred":["Aberdeen"],"name:por_x_preferred":["Aberdeen"],"name:que_x_preferred":["Aberdeen"],"name:ron_x_preferred":["Aberdeen"],"name:rus_x_preferred":["Абердин"],"name:sco_x_preferred":["Aiberdeen"],"name:slk_x_preferred":["Aberdeen"],"name:slv_x_preferred":["Aberdeen"],"name:spa_x_preferred":["Aberdeen"],"name:sqi_x_preferred":["Aberdeen"],"name:srp_x_preferred":["Абердин"],"name:swa_x_preferred":["Aberdeen"],"name:swe_x_preferred":["Aberdeen"],"name:tat_x_preferred":["Әбердин"],"name:tel_x_preferred":["అబెర్డీన్"],"name:tgl_x_preferred":["Aberdeen"],"name:tha_x_preferred":["แอเบอร์ดีน"],"name:tur_x_preferred":["Aberdeen"],"name:ukr_x_preferred":["Абердин"],"name:urd_x_preferred":["ابرڈین"],"name:uzb_x_preferred":["Aberdin"],"name:vie_x_preferred":["Aberdeen"],"name:vol_x_preferred":["Aberdeen"],"name:war_x_preferred":["Aberdeen"],"name:wuu_x_preferred":["阿伯丁"],"name:yid_x_preferred":["אבערדין"],"name:yor_x_preferred":["Aberdeen"],"name:zho_x_preferred":["阿伯丁"],"reversegeo:latitude":42.33966,"reversegeo:longitude":-71.148363,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807537,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a42c2ef3197ce6e8af6f481ed2ef2a63","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701979,"neighbourhood_id":85807537,"region_id":85688645}],"wof:id":1108701979,"wof:lastmodified":1566624100,"wof:name":"Aberdeen","wof:parent_id":85807537,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85802329],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701983.geojson b/fixtures/microhoods/1108701983.geojson new file mode 100644 index 0000000..84d7c69 --- /dev/null +++ b/fixtures/microhoods/1108701983.geojson @@ -0,0 +1 @@ +{"id":1108701983,"type":"Feature","bbox":[-71.071571,42.2788247469914,-71.05451,42.288242],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.055347,42.288242],[-71.0551,42.287933],[-71.054877,42.287667],[-71.054725,42.287446],[-71.054654,42.287335],[-71.054537,42.287113],[-71.05451,42.286859],[-71.05451,42.2868],[-71.054528,42.286672],[-71.054547,42.286615],[-71.054685,42.286267],[-71.054776,42.286007],[-71.054963,42.285575],[-71.055009,42.285426],[-71.055148,42.285068],[-71.055211,42.284914],[-71.055427,42.284355],[-71.055664,42.283605],[-71.055787,42.283205],[-71.055869,42.283096],[-71.056001,42.282921],[-71.056154,42.282812],[-71.056536,42.282583],[-71.056631,42.282575],[-71.056972,42.282509],[-71.057275,42.282449],[-71.05779,42.282309],[-71.057963,42.282259],[-71.058462,42.282128],[-71.058601,42.282087],[-71.058904,42.281998],[-71.058932,42.281991],[-71.059245,42.281908],[-71.05989,42.281721],[-71.06071703246535,42.28145596727881],[-71.061318,42.28129],[-71.061475,42.281242],[-71.061691,42.281168],[-71.062214,42.281015],[-71.063384,42.280657],[-71.063784,42.280531],[-71.064106,42.280429],[-71.064778,42.280234],[-71.065507,42.280027],[-71.065635,42.279991],[-71.06591999983635,42.27992799958948],[-71.06616242773984,42.27986297109982],[-71.06638600013612,42.27980300038255],[-71.06723700044942,42.27956100006531],[-71.06756343854371,42.27946141760575],[-71.06785,42.279374],[-71.06795424950421,42.27933829811499],[-71.0681420002205,42.27927400028151],[-71.06863196532214,42.27911301114644],[-71.068632,42.279113],[-71.06863205407409,42.2791129819753],[-71.06950825937672,42.2788247469914],[-71.069556,42.278902],[-71.06964,42.27903],[-71.069804,42.279317],[-71.070174,42.279936],[-71.070346,42.280191],[-71.070613,42.280657],[-71.070838,42.281],[-71.070961,42.281281],[-71.071264,42.282009],[-71.071348,42.282549],[-71.071356,42.282793],[-71.071385,42.28306],[-71.071477,42.283541],[-71.07155,42.283895],[-71.071566,42.284],[-71.071571,42.284185],[-71.071564,42.284348],[-71.071541,42.284497],[-71.071523,42.28456],[-71.071302,42.285065],[-71.071245,42.285165],[-71.071177,42.285348],[-71.070021,42.285288],[-71.069261,42.285248],[-71.068758,42.285229],[-71.068099,42.285227],[-71.066696,42.28513],[-71.066336,42.285154],[-71.066101,42.285195],[-71.065804,42.285269],[-71.065493,42.285368],[-71.064852,42.285555],[-71.064303,42.285699],[-71.064206,42.285754],[-71.064095,42.285827],[-71.063885,42.285883],[-71.063735,42.285923],[-71.063295,42.286028],[-71.063096,42.286087],[-71.062311,42.286353],[-71.062025,42.286456],[-71.06188,42.286514],[-71.061415,42.2866],[-71.061007,42.286668],[-71.060772,42.286714],[-71.060559,42.286754],[-71.060167,42.286836],[-71.059551,42.287],[-71.058958,42.287148],[-71.058146,42.28735],[-71.057692,42.287476],[-71.057336,42.287584],[-71.057034,42.287695],[-71.056053,42.288016],[-71.055347,42.288242]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000087,"geom:area_square_m":796175.505269,"geom:bbox":"-71.071571,42.278824747,-71.05451,42.288242","geom:latitude":42.283575,"geom:longitude":-71.063321,"iso:country":"US","lbl:latitude":42.284345,"lbl:longitude":-71.068633,"lbl:max_zoom":18,"mps:latitude":42.283387,"mps:longitude":-71.063192,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:eng_x_preferred":["Ashmont"],"name:fra_x_preferred":["Ashmont"],"reversegeo:latitude":42.283387,"reversegeo:longitude":-71.063192,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4805681"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"02ad06028a75d567f556f8b06dd193f6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701983,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108701983,"wof:lastmodified":1566624098,"wof:name":"Ashmont","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85803769],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701985.geojson b/fixtures/microhoods/1108701985.geojson new file mode 100644 index 0000000..75d7f6d --- /dev/null +++ b/fixtures/microhoods/1108701985.geojson @@ -0,0 +1 @@ +{"id":1108701985,"type":"Feature","bbox":[-71.11202953643453,42.32609013066075,-71.09935040655068,42.33319209888306],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11128668136637,42.33006782317904],[-71.11198302099378,42.33174930415855],[-71.11202219189127,42.33188640229979],[-71.11202953643453,42.33193087758967],[-71.11202872037418,42.3319712725777],[-71.11201786734219,42.33199157468497],[-71.11199734266854,42.3320128547305],[-71.11195690706211,42.33203655740687],[-71.11150644174089,42.33232381065519],[-71.110794837103,42.33276121901058],[-71.1103965996451,42.33297665894682],[-71.11026058871941,42.33303905837336],[-71.11009628943096,42.33310722860514],[-71.10996474710089,42.33314361038829],[-71.10976986528513,42.33317904191723],[-71.1095935962464,42.33319209888306],[-71.10960012472931,42.33113562676441],[-71.10958706776348,42.331011585589],[-71.10956095383182,42.33094630075984],[-71.10949566900265,42.33090060137943],[-71.10934551389558,42.33085490199901],[-71.10438386687919,42.32945780665491],[-71.09935040655068,42.3280150119304],[-71.09950056165776,42.32759066054084],[-71.09958543193568,42.32730993577543],[-71.099637659799,42.32713366673669],[-71.09965724524776,42.32699004011253],[-71.09966377373067,42.32687252742004],[-71.09970294462818,42.32676154321047],[-71.09976822945734,42.32667667293255],[-71.09984657125233,42.32659833113755],[-71.0999183845644,42.32654610327423],[-71.1000358972569,42.3264938754109],[-71.10029895172735,42.32640769701429],[-71.10074525782117,42.32640691001333],[-71.1012530575952,42.32641044176068],[-71.10133598168554,42.32641101838725],[-71.101405988927,42.32641185986498],[-71.1014062776602,42.32641186356708],[-71.10141618805443,42.3264119825601],[-71.10152714365617,42.32640962315347],[-71.10162887597878,42.32640380155222],[-71.10174333351955,42.32639596587734],[-71.1018721550819,42.32638269164432],[-71.10203934152338,42.32636955009804],[-71.1022151113842,42.32635163584133],[-71.10229652641908,42.32634231501559],[-71.10245703231243,42.32632571782491],[-71.10251905672246,42.32631855710639],[-71.1026647341974,42.32630173909344],[-71.10283446803017,42.32628203484703],[-71.10287706386326,42.32627708995096],[-71.10305100025869,42.32625642398501],[-71.10322929635255,42.32623586013359],[-71.10323580412935,42.32623510924381],[-71.10337879911782,42.32621706296904],[-71.10340512217452,42.32621374077667],[-71.1035753602916,42.32619306125805],[-71.10374607463648,42.32617032505581],[-71.10391006307685,42.32615099554637],[-71.10404066403825,42.32613259603887],[-71.10404404472058,42.32613212062502],[-71.10405256565636,42.32613092017446],[-71.10410161236179,42.32612284241354],[-71.10415111076061,42.32611683866548],[-71.10415764247482,42.32611613642194],[-71.10416039235126,42.32611584069183],[-71.10416098360004,42.32611577790674],[-71.10420060486018,42.32611152090583],[-71.10425032517593,42.32610688992821],[-71.10430004240875,42.32610294494295],[-71.10434998586089,42.32609968673937],[-71.10439992502013,42.32609711452382],[-71.10441080807854,42.3260967027316],[-71.10444985988812,42.3260952282963],[-71.1044773017054,42.32609419645684],[-71.10450002648018,42.32609334284438],[-71.10457952514214,42.32609294923346],[-71.1045818473832,42.32609293831589],[-71.1046169733966,42.32609374516974],[-71.10464975459657,42.32609293242071],[-71.10476283667316,42.32609013066075],[-71.10478557867573,42.326090208856],[-71.10484927569503,42.32609042784552],[-71.10487908961753,42.32609053033325],[-71.10499158300003,42.32609301735582],[-71.10502606627061,42.32609377956203],[-71.10507837494086,42.32609567075165],[-71.1050797334781,42.32609572043393],[-71.10517080908551,42.32609901328174],[-71.10517279716035,42.3260990858321],[-71.105227089671,42.32610270243057],[-71.10523699722812,42.32610346389487],[-71.10531117900715,42.32610916541811],[-71.1053157876278,42.32610944682948],[-71.10533497646541,42.32611061917765],[-71.10535297064186,42.32611172800147],[-71.10535854219766,42.32611207213667],[-71.1053821036539,42.32611421110061],[-71.10540566511177,42.32611635005971],[-71.1054292222946,42.32611917502376],[-71.10545254775242,42.3261219991876],[-71.10546107658081,42.32612303139025],[-71.1054758744256,42.32612482335087],[-71.10549919561176,42.32612833351497],[-71.10552228749977,42.32613184288744],[-71.10554537390182,42.32613603826086],[-71.10556846030693,42.32614023362962],[-71.10631452794095,42.32636855544667],[-71.10666599881677,42.32657746740361],[-71.10711160562806,42.3268423310499],[-71.10732398335942,42.32692316764605],[-71.10826457344925,42.32728117212718],[-71.10827554718473,42.32728534907702],[-71.10832617454788,42.32730461863576],[-71.10836731595303,42.32732947008778],[-71.10836795297055,42.32732985488315],[-71.10839594790018,42.3273467659537],[-71.1084282931859,42.32736630449059],[-71.10859474620021,42.32746685085768],[-71.10860415023055,42.32747334518974],[-71.10860417681089,42.32747336328612],[-71.10899866942795,42.32774579069431],[-71.10901510488041,42.32775714078758],[-71.10923623745487,42.32790984795753],[-71.10942889631791,42.32804289096081],[-71.10988111449016,42.32835517295313],[-71.10997153725077,42.3284200794828],[-71.11006758474998,42.32848621861628],[-71.11056905645462,42.32882862579321],[-71.11062152557236,42.32886695168396],[-71.11065090608953,42.3288884115718],[-71.11078700196254,42.32902136688836],[-71.11086087979744,42.32914659848083],[-71.1109805110948,42.32938391837973],[-71.11105739664211,42.32954306056815],[-71.11110087868455,42.32963800229611],[-71.11118438307041,42.32982032863331],[-71.11128668136637,42.33006782317904]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000037,"geom:area_square_m":338730.537271,"geom:bbox":"-71.1120295364,42.3260901307,-71.0993504066,42.3331920989","geom:latitude":42.328712,"geom:longitude":-71.106199,"iso:country":"US","lbl:latitude":42.331014,"lbl:longitude":-71.106714,"lbl:max_zoom":18,"mps:latitude":42.327969,"mps:longitude":-71.105574,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":42.327969,"reversegeo:longitude":-71.105574,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869493,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"12e36a8eb3c60213a5f80a9d51a2da63","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701985,"neighbourhood_id":85869493,"region_id":85688645}],"wof:id":1108701985,"wof:lastmodified":1566624098,"wof:name":"Back of the Hill","wof:parent_id":85869493,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891253],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701987.geojson b/fixtures/microhoods/1108701987.geojson new file mode 100644 index 0000000..c11fa2f --- /dev/null +++ b/fixtures/microhoods/1108701987.geojson @@ -0,0 +1 @@ +{"id":1108701987,"type":"Feature","bbox":[-71.15820008307674,42.27228702886804,-71.14064645976327,42.28755668332624],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.1425449101541,42.27228702886804],[-71.1427697277311,42.27238208904603],[-71.1428790460483,42.27243416932596],[-71.14294164075547,42.27245619608784],[-71.14302430463414,42.27247295248519],[-71.14312132844101,42.27248146736865],[-71.14324893131327,42.27249733045875],[-71.14347655301479,42.27255051873202],[-71.14352158699427,42.27257171203785],[-71.14356116239726,42.27259816652167],[-71.14359036386556,42.27263473340624],[-71.14361956533384,42.27267739474431],[-71.14387189597007,42.27296715865307],[-71.1452735664479,42.27472233488778],[-71.14538895063382,42.27482510419669],[-71.14557165560558,42.27495412010239],[-71.1457407899405,42.27506693761222],[-71.14624395370178,42.27542261883445],[-71.14646826831718,42.27556869997874],[-71.14667523692572,42.27567081887188],[-71.1467920427989,42.27571181610548],[-71.14691073192638,42.27574327586315],[-71.14707057988103,42.27577608198546],[-71.14723231108998,42.27579713458668],[-71.1476456241796,42.27583037552262],[-71.14787923592593,42.27583813173839],[-71.1483779071536,42.27584256386084],[-71.14943065752315,42.27583037552262],[-71.15032916423971,42.27583037552262],[-71.15097608907564,42.27585696825847],[-71.15115100604332,42.27589651511816],[-71.1513175216279,42.27596112303258],[-71.15159605871007,42.27609519434983],[-71.15194647632951,42.27629131468888],[-71.15333616671778,42.27727523124527],[-71.154270613703,42.27789571126512],[-71.15461803630008,42.27821481289639],[-71.15509723988224,42.27865800692582],[-71.15610356740478,42.27943802084692],[-71.156930193584,42.28004961591796],[-71.15744533743484,42.280368706642],[-71.15776879985279,42.28052825139807],[-71.15800501814235,42.2806149664038],[-71.15820008307674,42.28067893218564],[-71.15816713783047,42.28102461027793],[-71.15806830209164,42.28139687687185],[-71.15772087949456,42.28221231029684],[-71.15736147680795,42.28280615191069],[-71.15714583519599,42.28324931364717],[-71.15696613385266,42.28370133540713],[-71.15692675879718,42.28389387531168],[-71.15689425331534,42.28406472309556],[-71.15678643250936,42.28456991713679],[-71.15670966386364,42.28477536060519],[-71.1565917560541,42.28501085072766],[-71.15650247960187,42.28513655139965],[-71.1563600299614,42.28530457172732],[-71.15602569682268,42.28558915593511],[-71.15555248328529,42.28590821860661],[-71.15529455086461,42.28602135285217],[-71.1550253593449,42.28610320055396],[-71.15455813585228,42.28625386800903],[-71.15438734193205,42.28633778881033],[-71.15422269334478,42.2864311233772],[-71.15350388797154,42.28699833720376],[-71.15307260474759,42.28729966747186],[-71.15288503245591,42.28738903034762],[-71.15266528170275,42.28745919467733],[-71.1524337019158,42.2875153911827],[-71.1521860781206,42.28755668332624],[-71.15188327059705,42.2875564915464],[-71.15157509355333,42.2875212329259],[-71.15079638773231,42.28739715636765],[-71.14962233895602,42.28724649164693],[-71.1474676657133,42.28705545168743],[-71.14747332634012,42.28705175688015],[-71.14748741956873,42.28704255855031],[-71.1475451773866,42.28702380156915],[-71.14764585688252,42.28699584641308],[-71.14768216964067,42.2869789439223],[-71.1476977700225,42.28696472201412],[-71.14770633974243,42.28695212609137],[-71.14771011323816,42.28693814250188],[-71.14772086050168,42.2869100888045],[-71.14772391416717,42.2868666046805],[-71.14772998995241,42.28678007388022],[-71.14773850308399,42.28665883858765],[-71.14773858477727,42.28665766664763],[-71.14774060870154,42.28662884344896],[-71.14774068643676,42.28662772911601],[-71.14774108011324,42.28662213045752],[-71.14774815789525,42.2865213356711],[-71.14775032143913,42.28649051603433],[-71.14776131407984,42.28633395606286],[-71.1477645533637,42.2862878265203],[-71.14777156794075,42.28618791832766],[-71.14778534019057,42.28599177077056],[-71.14777686859617,42.28590978777853],[-71.14777611498286,42.28590249393741],[-71.14775858728824,42.28573288847521],[-71.14775852172802,42.28573224996138],[-71.1477419409954,42.28557181425034],[-71.14774073522004,42.28556014536381],[-71.14771675315447,42.28532807977083],[-71.14771643334402,42.28532497725589],[-71.14770925171541,42.28520402690826],[-71.14770300880873,42.2851410137558],[-71.147696959538,42.28508111893578],[-71.14768585631435,42.28499426892974],[-71.14768359808447,42.28497912255455],[-71.14767836551071,42.28494504364549],[-71.1476729303692,42.28491098122036],[-71.14766729391279,42.28487692808059],[-71.14766145487437,42.28484289412544],[-71.14761346204457,42.28459793274818],[-71.14760111764166,42.28453284187744],[-71.14752683492067,42.28428038851875],[-71.14747881353104,42.28411718865053],[-71.14738283624564,42.28386300213774],[-71.14733618799359,42.2837812457913],[-71.14727785801965,42.28367901853323],[-71.14724374794709,42.28361923646757],[-71.14702831723832,42.28325821678069],[-71.14677517793329,42.28295671842179],[-71.14660539791944,42.2827735639133],[-71.14651073558642,42.28267144412703],[-71.14650262361256,42.28266269344839],[-71.14621456448985,42.28237787874288],[-71.14613577910687,42.282310413298],[-71.14599234219189,42.28218758443164],[-71.14521093168815,42.28155288407643],[-71.14517812548594,42.28152623736644],[-71.14514142497927,42.28149722883037],[-71.14488672761547,42.28129591764511],[-71.14443283469168,42.28093715697829],[-71.14435445688521,42.28086793415468],[-71.14422147873914,42.28075048589335],[-71.14414456355576,42.28068255308293],[-71.1439511109463,42.28051169132191],[-71.14386730546549,42.28043098509539],[-71.14383952156066,42.28040184352532],[-71.1433160542692,42.27985279366685],[-71.14259974394822,42.2790476115635],[-71.14244969769396,42.27890360679832],[-71.14215853984145,42.27862417106089],[-71.14164873120572,42.27807698348414],[-71.14152056180974,42.27789750450248],[-71.14138950042403,42.27771397488484],[-71.14123613777416,42.27749921420246],[-71.1410440558934,42.2771486081831],[-71.14094098420883,42.27687729961566],[-71.14090269014935,42.27677650092142],[-71.14085772841668,42.27666053918289],[-71.14083916546791,42.27661266339376],[-71.14077624702598,42.27642236063981],[-71.14073014126481,42.27628290458071],[-71.14069018917377,42.27600990072219],[-71.14064645976327,42.27567474165435],[-71.14068020004596,42.27524092493],[-71.1407347712795,42.27502474939491],[-71.14077752335547,42.27482552286456],[-71.1407810401853,42.27468720600312],[-71.14078313891365,42.27465380594622],[-71.14078873568515,42.27458801044413],[-71.14079860139167,42.27450480023783],[-71.14081143913927,42.27442251673248],[-71.14082816876044,42.27433650283816],[-71.14084840731094,42.27425015329656],[-71.14087260160173,42.27416227300089],[-71.14090101762005,42.27407683311438],[-71.14093423813135,42.27399431711787],[-71.14095916161365,42.27393687290666],[-71.14100152804545,42.27384629626192],[-71.14104944884433,42.27375251927859],[-71.14110124121096,42.27365942239705],[-71.14115490688773,42.27357029627658],[-71.14121537511285,42.27348231585897],[-71.14127973115728,42.27339534958865],[-71.1413458085654,42.27331028289354],[-71.14144550076328,42.27318910823585],[-71.14189936301274,42.27271703710777],[-71.14204549208755,42.27258027751549],[-71.14207103220988,42.27255952591111],[-71.14208913868553,42.2725463271825],[-71.14210435429713,42.27253607783715],[-71.14212336709829,42.27252423868367],[-71.14213947297107,42.27251497433803],[-71.14215551561664,42.27250638682079],[-71.14217158529308,42.27249837828015],[-71.14220329066143,42.2724804286908],[-71.1425449101541,42.27228702886804]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000138,"geom:area_square_m":1265291.781176,"geom:bbox":"-71.1582000831,42.2722870289,-71.1406464598,42.2875566833","geom:latitude":42.2804,"geom:longitude":-71.149464,"iso:country":"US","lbl:latitude":42.287859,"lbl:longitude":-71.144826,"lbl:max_zoom":18,"mps:latitude":42.279942,"mps:longitude":-71.149598,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:bar_x_preferred":["Bellevue"],"name:bre_x_preferred":["Bellevue"],"name:bul_x_preferred":["Белвю"],"name:cat_x_preferred":["Bellevue"],"name:ceb_x_preferred":["Bellevue"],"name:dan_x_preferred":["Bellevue"],"name:deu_x_preferred":["Bellevue"],"name:eng_x_preferred":["Bellevue Hill"],"name:epo_x_preferred":["Bellevue"],"name:eus_x_preferred":["Bellevue"],"name:fas_x_preferred":["بلویو"],"name:fin_x_preferred":["Bellevue"],"name:fra_x_preferred":["Bellevue"],"name:ita_x_preferred":["Bellevue"],"name:jpn_x_preferred":["ベルビュー"],"name:nld_x_preferred":["Bellevue"],"name:nor_x_preferred":["Bellevue"],"name:pol_x_preferred":["Bellevue"],"name:por_x_preferred":["Bellevue"],"name:rus_x_preferred":["Бельвю"],"name:spa_x_preferred":["Bellevue"],"name:swe_x_preferred":["Bellevue"],"name:ukr_x_preferred":["Бельвю"],"name:vol_x_preferred":["Bellevue"],"name:zho_x_preferred":["贝尔维尤"],"reversegeo:latitude":42.279942,"reversegeo:longitude":-71.149598,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85856255,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e09967db9c949b6dc54e589ea66ece8d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701987,"neighbourhood_id":85856255,"region_id":85688645}],"wof:id":1108701987,"wof:lastmodified":1566624098,"wof:name":"Bellevue","wof:parent_id":85856255,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524053,85805525],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701991.geojson b/fixtures/microhoods/1108701991.geojson new file mode 100644 index 0000000..c2b3237 --- /dev/null +++ b/fixtures/microhoods/1108701991.geojson @@ -0,0 +1 @@ +{"id":1108701991,"type":"Feature","bbox":[-71.08184106054873,42.30386143968718,-71.07160018604824,42.31384577003994],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.07317099983807,42.31222200033748],[-71.07277884625334,42.31214420369212],[-71.0721852144712,42.31203236002303],[-71.07182387338644,42.31195492979057],[-71.07160018604824,42.31188610291728],[-71.07312082978001,42.30884481545374],[-71.07321684500143,42.30864219122605],[-71.0733208578805,42.30847056933022],[-71.0734757183454,42.30827269206951],[-71.07365208720819,42.30803825053241],[-71.07382845607103,42.30781671403395],[-71.07522220025517,42.30652621015975],[-71.07627611175242,42.30557984065201],[-71.0771708611052,42.30479263328876],[-71.07729553782475,42.30467430034678],[-71.07742896188005,42.30453883419349],[-71.07763974417949,42.30430654349614],[-71.07787203487685,42.30403123600297],[-71.0780039164175,42.30386143968718],[-71.07845795198995,42.30432530706828],[-71.08011077912965,42.30581862271388],[-71.08074578180687,42.30638179239241],[-71.08122294026441,42.30682211369607],[-71.08150584102256,42.3071127593662],[-71.08184106054873,42.30751380285943],[-71.07802046280015,42.31274557365413],[-71.07729878378848,42.31380291354774],[-71.07728005106685,42.31384577003994],[-71.07700500029563,42.31371299987956],[-71.0767880004574,42.31362899989458],[-71.07618499988529,42.31342299967248],[-71.075668,42.31322599991942],[-71.07557699962031,42.31319599994308],[-71.07535799967448,42.31312500006277],[-71.07497300052637,42.31298399993904],[-71.07464900032812,42.31284099966464],[-71.07408700058029,42.31260700035758],[-71.07361700000708,42.31239799973495],[-71.07317099983807,42.31222200033748]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":486053.528167,"geom:bbox":"-71.0818410605,42.3038614397,-71.071600186,42.31384577","geom:latitude":42.309128,"geom:longitude":-71.076851,"iso:country":"US","lbl:latitude":42.309112,"lbl:longitude":-71.076929,"lbl:max_zoom":18,"mps:latitude":42.309112,"mps:longitude":-71.076929,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.309112,"reversegeo:longitude":-71.076929,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fd054c762dff1a23154d51203d6b02ee","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701991,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108701991,"wof:lastmodified":1566624100,"wof:name":"Brunswick - King","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524015],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701995.geojson b/fixtures/microhoods/1108701995.geojson new file mode 100644 index 0000000..ef25af6 --- /dev/null +++ b/fixtures/microhoods/1108701995.geojson @@ -0,0 +1 @@ +{"id":1108701995,"type":"Feature","bbox":[-71.061582,42.376377,-71.053239,42.380269],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.061582,42.37864],[-71.061355,42.378952],[-71.061229,42.379127],[-71.060841,42.379598],[-71.060351,42.380269],[-71.059698,42.379983],[-71.059609,42.379944],[-71.058956,42.379668],[-71.058628,42.379539],[-71.05829,42.379391],[-71.058037,42.379289],[-71.05781,42.37922],[-71.05762,42.379179],[-71.057578,42.37917],[-71.057396,42.379161],[-71.057022,42.37915],[-71.056723,42.379132],[-71.056232,42.379138],[-71.055912,42.379115],[-71.055495,42.379106],[-71.05488,42.379092],[-71.054537,42.379071],[-71.054406,42.37906],[-71.054154,42.379039],[-71.053502,42.378689],[-71.053239,42.378573],[-71.054036,42.377764],[-71.054743,42.377046],[-71.0548,42.376993],[-71.055186,42.376637],[-71.055468,42.376377],[-71.05571,42.376509],[-71.055843,42.376583],[-71.056029,42.376674],[-71.056158,42.376737],[-71.05619,42.376757],[-71.056459,42.376924],[-71.057052,42.377073],[-71.057116,42.377089],[-71.057216,42.377129],[-71.05741,42.377206],[-71.058414,42.377542],[-71.058742,42.377667],[-71.059078,42.377795],[-71.059609,42.377969],[-71.059867,42.378054],[-71.060238,42.378172],[-71.060641,42.3783],[-71.060977,42.378421],[-71.061227,42.378511],[-71.061582,42.37864]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":135153.69801,"geom:bbox":"-71.061582,42.376377,-71.053239,42.380269","geom:latitude":42.378366,"geom:longitude":-71.057345,"iso:country":"US","lbl:latitude":42.375725,"lbl:longitude":-71.059378,"lbl:max_zoom":18,"mps:latitude":42.37806,"mps:longitude":-71.056712,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Bunker Hill"],"name:deu_x_preferred":["Bunker Hill"],"name:fra_x_preferred":["Bunker Hill"],"name:hun_x_preferred":["Bunker Hill"],"name:ita_x_preferred":["Bunker Hill"],"name:jpn_x_preferred":["バンカー・ヒル"],"name:nld_x_preferred":["Bunker Hill"],"name:pol_x_preferred":["Bunker Hill"],"name:por_x_preferred":["Bunker Hill"],"name:srp_x_preferred":["Банкер Хил"],"name:swe_x_preferred":["Bunker Hill"],"name:ukr_x_preferred":["Банкер-Гілл"],"name:vol_x_preferred":["Bunker Hill"],"name:zho_x_preferred":["邦克山"],"reversegeo:latitude":42.37806,"reversegeo:longitude":-71.056712,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85810461,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e270017eac7ebcb1b8140591cf8d1f2c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701995,"neighbourhood_id":85810461,"region_id":85688645}],"wof:id":1108701995,"wof:lastmodified":1566624100,"wof:name":"Bunker Hill","wof:parent_id":85810461,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891299],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108701997.geojson b/fixtures/microhoods/1108701997.geojson new file mode 100644 index 0000000..299e3c5 --- /dev/null +++ b/fixtures/microhoods/1108701997.geojson @@ -0,0 +1 @@ +{"id":1108701997,"type":"Feature","bbox":[-71.06820397736301,42.2675478114317,-71.04026355065938,42.28576609048097],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.056536,42.282583],[-71.05523490599181,42.28266940677469],[-71.05440236720689,42.2827495056338],[-71.0535027681633,42.28290889850017],[-71.05288111114345,42.28307053854245],[-71.05231644868589,42.28320408597577],[-71.05169225364496,42.28329688291817],[-71.05099088983319,42.28335446450107],[-71.04872964237859,42.28347142557632],[-71.04828479300227,42.28353309835051],[-71.04790534527697,42.28363015846414],[-71.04763800567638,42.28371648687681],[-71.04596713317298,42.28429572267799],[-71.04527293948107,42.28459264868582],[-71.04289272776673,42.28559900323064],[-71.04251498614055,42.28573212860386],[-71.04242627585957,42.28575216654344],[-71.04233235204912,42.28576300029421],[-71.04226197339673,42.28576609048097],[-71.04219109721757,42.28576584871421],[-71.04210184811512,42.2857563437247],[-71.04200995012748,42.2857298882434],[-71.04190821972993,42.28568183622719],[-71.04102135056293,42.2851868546798],[-71.04026355065938,42.28478089044576],[-71.04041135040957,42.28468278638432],[-71.04042955366819,42.28466968684081],[-71.0404452126088,42.28465081515897],[-71.04045256853146,42.28465550997148],[-71.04045489081781,42.28464124941665],[-71.04045976493087,42.28463139076172],[-71.04046464148031,42.28462153031568],[-71.04047098921875,42.28461277502812],[-71.04047583390229,42.28460730614535],[-71.04048888358555,42.28459144274435],[-71.04049962848535,42.28458709403534],[-71.04051665028956,42.28458442069384],[-71.04052516691752,42.28458170972838],[-71.04053111179407,42.28457734271667],[-71.04054190256359,42.2845675059236],[-71.04054784743767,42.28456313891103],[-71.04055526548703,42.28455960337076],[-71.04056009734859,42.28455523190581],[-71.04056493527159,42.28455086046488],[-71.04057356500799,42.28453305722326],[-71.04058176003203,42.28452403472456],[-71.04060001573394,42.28450352674795],[-71.04061347738046,42.28448217761689],[-71.04063021653025,42.28446715003346],[-71.04064248754635,42.28445649627104],[-71.04065693870476,42.28445134038935],[-71.04066398696393,42.28444780066238],[-71.04067367306132,42.28443713836072],[-71.04068108989608,42.28443360010656],[-71.04069777604462,42.28442570992506],[-71.04071593540972,42.28441864490983],[-71.0407374295902,42.28441050115396],[-71.04075779495714,42.28440536800503],[-71.04077852283004,42.284400237202],[-71.04080222659468,42.28439319613889],[-71.04083481912446,42.28438345007171],[-71.04085521587689,42.28437365074637],[-71.04088778970954,42.28436664872127],[-71.04089519019246,42.28436502893945],[-71.04090818281108,42.28435684937201],[-71.04091301351802,42.28435330076699],[-71.04092159261398,42.28434263402017],[-71.04092384793061,42.28433742936311],[-71.04092537880494,42.28433030055839],[-71.04092662222894,42.28431164309021],[-71.04092666795951,42.28430533393036],[-71.04093161281182,42.28428586927564],[-71.0409424972868,42.28426258675304],[-71.04094734587675,42.2842565695797],[-71.04095960848869,42.28424756420955],[-71.04097258717046,42.2842413031306],[-71.04097889459756,42.28423776042391],[-71.04100046426177,42.28421918777881],[-71.04101235266154,42.28421045460068],[-71.04101976945077,42.28420691632448],[-71.04102682318396,42.28420228002473],[-71.04105471692759,42.28417769428729],[-71.0410922962961,42.28414299449019],[-71.04110086695961,42.28413314877489],[-71.0411079787828,42.28412082769234],[-71.0411128161864,42.28411618343353],[-71.04111875622937,42.28411263925146],[-71.04113320958835,42.28410666133964],[-71.0411369460358,42.28410118620108],[-71.04113818340538,42.28408335518657],[-71.04114676244649,42.28407268572145],[-71.04115871639843,42.28405489751459],[-71.04117325643605,42.28403711963625],[-71.04118783071647,42.28401494840064],[-71.0412012570539,42.28399826444328],[-71.04120614493111,42.28398648275789],[-71.04121584874818,42.28397335184248],[-71.04122445359177,42.28395911636333],[-71.04123645444498,42.28393501449097],[-71.04124876301832,42.28391914714267],[-71.04125586163028,42.28390847535805],[-71.04125964971901,42.28389586729889],[-71.04126344178381,42.28388271006887],[-71.04126356501756,42.28386569568183],[-71.04126850375914,42.28384705566713],[-71.04127089969808,42.28382209435375],[-71.04127690528732,42.28380949514943],[-71.0412865875597,42.28379883097961],[-71.04129143134081,42.28379363575145],[-71.04130116293844,42.28377666243425],[-71.04130488421922,42.28377310938237],[-71.04130972081867,42.28376873790454],[-71.04131455145826,42.28376518928224],[-71.04132161228566,42.28375973101341],[-71.04132792439187,42.28375536542661],[-71.04133613235113,42.28374469536559],[-71.04133991721976,42.28373236098353],[-71.0413447617479,42.2837268938637],[-71.04134959359472,42.28372334524472],[-71.04137256695543,42.28371465628915],[-71.0413870469201,42.28370565792557],[-71.04139077527168,42.28370045733949],[-71.04139196807103,42.28368893818721],[-71.04139423492238,42.28368263429317],[-71.04139796765901,42.28367716273226],[-71.04140391238396,42.28367279657486],[-71.0414195735646,42.2836533737804],[-71.04142220775354,42.28364707405319],[-71.0414244618049,42.2836418675802],[-71.04143077587375,42.28363722830262],[-71.0414367091143,42.28363478244999],[-71.04144632421709,42.28363372336128],[-71.04146182091158,42.28363735223504],[-71.04147619788044,42.2836420741098],[-71.04148360385612,42.28364018422042],[-71.0415062249339,42.28362957167901],[-71.04152331234972,42.28361729038713],[-71.04153410035718,42.28360745619013],[-71.04153783784068,42.28360115906317],[-71.04154868588088,42.28358336550058],[-71.04155357884245,42.28357103553386],[-71.04156078186773,42.28354609339893],[-71.0415634664743,42.28353265804558],[-71.041565868241,42.28350687386871],[-71.04156604899693,42.28348190100627],[-71.04156609466973,42.28347559094482],[-71.04156286083996,42.28346322854329],[-71.04155808663008,42.2834588186976],[-71.04155182743152,42.28345604868407],[-71.04154482734573,42.28345245283362],[-71.04154118717847,42.28344530698234],[-71.04154021412074,42.28342664065859],[-71.04153926997692,42.28340330996542],[-71.04154049814962,42.28338740196116],[-71.04154282368896,42.28337231671473],[-71.04154181286145,42.28335886841276],[-71.04153711139412,42.28334457799943],[-71.04153603503615,42.28334018291167],[-71.04153499839781,42.28333030061813],[-71.04153358160706,42.2833215142801],[-71.04153514736377,42.28330972112061],[-71.04153744707588,42.28329820368314],[-71.04153755035244,42.28328393604772],[-71.04153871013608,42.28327680575254],[-71.04154998186641,42.2832510560762],[-71.0415485429006,42.28324583576133],[-71.04154637463053,42.2832386921832],[-71.04154752734969,42.28323320761892],[-71.04155352365909,42.28322170763555],[-71.04155505080489,42.28321457790604],[-71.04155138717023,42.28321017339248],[-71.04154660106141,42.28320741015801],[-71.04153811645033,42.28320572963465],[-71.04153110456642,42.28320460507569],[-71.0415263315841,42.28320019613357],[-71.04152490167876,42.28319305460174],[-71.041524947375,42.28318674183915],[-71.04152984152293,42.28317441187728],[-71.04153257897143,42.28315384271056],[-71.04153161306988,42.28313435623549],[-71.04153285506641,42.283115700552],[-71.04153879378617,42.28311215544237],[-71.04154619131056,42.28311108929525],[-71.04154636411643,42.28308721567262],[-71.04154867539273,42.28307460170801],[-71.04154873895479,42.28306582037772],[-71.04154991142046,42.28305676978026],[-71.04155145168718,42.28304799434366],[-71.04155258685259,42.28304443186222],[-71.04155371959313,42.28304086937104],[-71.04155374541776,42.28303730156171],[-71.0415537712424,42.28303373375238],[-71.04155380302305,42.28302934308718],[-71.04155163242794,42.2830230241798],[-71.0415453780165,42.28301943130498],[-71.04153954260752,42.28300870517764],[-71.04154220963916,42.28299719280673],[-71.04155307148079,42.2829774780442],[-71.04156874754227,42.28295613673492],[-71.0415724819033,42.28295093526607],[-71.04157478036366,42.28293942052307],[-71.04157482604823,42.2829331086604],[-71.04156900574716,42.28292046314236],[-71.04156794130583,42.2829144223428],[-71.04156693051287,42.2829009695384],[-71.04156813595183,42.28288753008052],[-71.04156933942238,42.28287436250715],[-71.04157050592579,42.282866134765],[-71.04157423673088,42.28286175886239],[-71.04158019527239,42.28285547149773],[-71.04158511276239,42.28283957641435],[-71.04159284515036,42.28279240603185],[-71.0415952853785,42.28276113463925],[-71.04159692658884,42.28273891263436],[-71.04159446126069,42.28272188881338],[-71.04159235424724,42.28270678587457],[-71.0415923661517,42.28270514106308],[-71.04159090455907,42.28270321577772],[-71.04159092443248,42.2827004699238],[-71.04158981982798,42.28269964353614],[-71.04158983175859,42.28269799512349],[-71.04158985159945,42.28269525377093],[-71.0415898714664,42.28269250881726],[-71.0415909879818,42.28269168949312],[-71.04159471744978,42.28268649160501],[-71.04160697492931,42.28267830812343],[-71.04161181142436,42.28267393663192],[-71.04161632856803,42.2826624280405],[-71.04161898731758,42.28265255869255],[-71.04161902504215,42.28264734607139],[-71.04161800231276,42.28263554167939],[-71.04161545158406,42.28263031782841],[-71.04160745751645,42.28261162798537],[-71.04160490083429,42.28260722699007],[-71.04160389003837,42.28259377418521],[-71.04160394166209,42.28258664126673],[-71.04161109293277,42.28256883204225],[-71.04161261771877,42.28256252788231],[-71.04161270709257,42.28255017874143],[-71.04162358980001,42.28252689704168],[-71.04163075176245,42.28250744119875],[-71.04164051010996,42.28248689914328],[-71.04166610519023,42.2824227896487],[-71.04166873246687,42.28241676448032],[-71.04166882978402,42.28240331609711],[-71.04166305198886,42.28238463329969],[-71.04166165395371,42.2823739257833],[-71.04166172543447,42.28236404791066],[-71.04166179692172,42.28235416913765],[-71.04166187437,42.28234346660842],[-71.04166453662228,42.28233277529342],[-71.04166467164127,42.28231411698926],[-71.04166955853427,42.28230260897018],[-71.04167339013189,42.2822839636152],[-71.04167463326932,42.2822653097324],[-71.04167478219392,42.28224472933003],[-71.04167493111193,42.28222414982788],[-71.04167614128964,42.28220988300485],[-71.0416788262529,42.2821967222403],[-71.04169202283812,42.28216027918771],[-71.04170558202533,42.2821246595596],[-71.04170938425698,42.28211040487844],[-71.04170947559808,42.28209778115092],[-71.04170844843614,42.28208625313479],[-71.0417048833774,42.28206840024583],[-71.04170242641861,42.28205055447877],[-71.04170248400433,42.28204259600263],[-71.04170399366134,42.28203821213345],[-71.04170888723473,42.28202560936659],[-71.04171233392728,42.28200888192628],[-71.04171132308554,42.28199543362219],[-71.04170671179719,42.28196852127978],[-71.04170684680949,42.28194986207393],[-71.04170472830543,42.28193668214291],[-71.041701069051,42.28193117837645],[-71.04168784071872,42.2819212474371],[-71.04168787844372,42.28191603391488],[-71.0416891283048,42.28189628168396],[-71.0416918073045,42.28188394287405],[-71.04169779630655,42.28187326393072],[-71.04169784195854,42.28186695476751],[-71.04169220639966,42.28182878811152],[-71.04168860121042,42.2818161487338],[-71.04168028071037,42.28179114374296],[-71.04167706556879,42.28177603998257],[-71.04167347824861,42.28176093203604],[-71.04167246147775,42.28174830478643],[-71.04167250515825,42.2817422684079],[-71.04167592567804,42.28172965976402],[-71.04168076321358,42.28172446359281],[-71.04168817370727,42.28172174992834],[-71.04170370889031,42.28172016435296],[-71.04171111695122,42.28171745157761],[-71.04171338601043,42.28171032570447],[-71.04171237044477,42.28169769845991],[-71.0417135210202,42.2816916664977],[-71.04171357264386,42.28168453177732],[-71.04171252531613,42.2816762942988],[-71.0417126404713,42.28166037914584],[-71.04171383672885,42.28164803351873],[-71.04171501035053,42.2816389838221],[-71.04171876445685,42.28163104099395],[-71.04171989716275,42.28162747850013],[-71.04172140923995,42.28162309373976],[-71.04172254317093,42.28161952945015],[-71.04172368502267,42.28161487041988],[-71.041722628542,42.28160773037805],[-71.04171902257185,42.28159536739157],[-71.0417143529382,42.28157668991511],[-71.04171079507273,42.28155801417327],[-71.04171084668357,42.28155088125325],[-71.04170618500933,42.28153110453417],[-71.04170516029491,42.28151957472581],[-71.04170526951077,42.28150448062793],[-71.0417079845439,42.28148665639486],[-71.0417091700972,42.28147595738464],[-71.04171637039825,42.28145101521987],[-71.0417238972227,42.2814323864041],[-71.04172726842963,42.28142608690719],[-71.04173694793242,42.28141624736551],[-71.04173957405658,42.28141104506981],[-71.0417418371547,42.28140474115148],[-71.04174451248623,42.28139240232464],[-71.04174349327585,42.28137977596531],[-71.04173878163391,42.28136740856768],[-71.04173882728797,42.28136109850356],[-71.0417388670016,42.28135560949497],[-71.04174489961912,42.28133889416908],[-71.04174392408945,42.2813202305303],[-71.04174137782125,42.28131473120469],[-71.0417329672369,42.28130235084993],[-71.04173189885329,42.28129685652002],[-71.04173466792226,42.28127189667397],[-71.04173693575702,42.28126476989463],[-71.04174066402503,42.28126039487581],[-71.04174293901143,42.28125244704559],[-71.04174201512333,42.28122664598462],[-71.04173992916421,42.28120880259574],[-71.04174112858736,42.2811961850874],[-71.04174602727389,42.2811830331507],[-71.04174718700209,42.28117590195016],[-71.04174840750161,42.28116053859166],[-71.04174741334596,42.28114461721083],[-71.04174639655723,42.28113199176084],[-71.04174532970427,42.28112595095108],[-71.04173696845491,42.28110725784529],[-71.04172860434123,42.28108829103436],[-71.04172165977293,42.28107755958595],[-71.0417216657331,42.28107673582951],[-71.04172591614936,42.28100019254244],[-71.0417296089744,42.2809494381039],[-71.04177572914945,42.28090846099798],[-71.0417712414166,42.28086481245082],[-71.04171521362522,42.28079351513992],[-71.0416940949185,42.28075062491264],[-71.04168962592874,42.28070422780017],[-71.04170435046356,42.28066065680576],[-71.0417414861614,42.28063583227236],[-71.04179080972827,42.28061188102826],[-71.04185113721347,42.28059894928947],[-71.04193621939473,42.28058666632936],[-71.04201319531562,42.28057105676375],[-71.04212274845275,42.28054734551387],[-71.04220198728122,42.28052543459555],[-71.04226672801911,42.28051581264876],[-71.04236291117898,42.28050110407057],[-71.04245049032394,42.28050145297349],[-71.0425273265033,42.28050532693695],[-71.04261845659315,42.28052517158294],[-71.04273096765367,42.28055251169791],[-71.04287325462246,42.28060192237621],[-71.04303810554111,42.28069890029749],[-71.04314231482728,42.28075008130013],[-71.04324515295475,42.28078698690079],[-71.04336358533637,42.2808132524646],[-71.04346070988798,42.28082187094302],[-71.0435625718134,42.28083983803782],[-71.0436691849967,42.2808652334381],[-71.04377834711802,42.28089612802989],[-71.04385608172102,42.28092936635585],[-71.04392213010699,42.2809430747017],[-71.04396282239428,42.28093692332194],[-71.04403365761573,42.28095312104863],[-71.04405396309583,42.28095594668628],[-71.04407659463037,42.28094368792035],[-71.04412738586878,42.28092056348208],[-71.0441362044766,42.28087614136297],[-71.0441155644553,42.28086892812028],[-71.0441050162957,42.2808455602219],[-71.04406680770411,42.28081440021815],[-71.04400711177665,42.28079083721342],[-71.04396390112922,42.28078709774956],[-71.04391698379706,42.28078526660549],[-71.04386574828365,42.2807672235862],[-71.04382378726756,42.28074400820626],[-71.04380368039229,42.28071429206992],[-71.04380133983867,42.2806797047129],[-71.04372864261333,42.28061438143678],[-71.04370365525378,42.28059452405492],[-71.04368687604068,42.28061586127789],[-71.04362333918299,42.28061204183372],[-71.04351038119488,42.28059567555226],[-71.04340037852003,42.28057904901491],[-71.04331888768205,42.28055485072172],[-71.04324816267706,42.28052328746138],[-71.04317999798455,42.28049529865238],[-71.04310815238601,42.28046565120154],[-71.04305224983622,42.28042893130389],[-71.04299972780608,42.2803842688217],[-71.04294460209513,42.28034206459427],[-71.04288996459461,42.28028312378703],[-71.04284489985795,42.28022943292682],[-71.04282128807728,42.28017308330479],[-71.04279755154879,42.28013402176404],[-71.0427423920884,42.28009620539502],[-71.04271286463984,42.28004010859251],[-71.04269657094038,42.27999366893955],[-71.04271225182531,42.27997150370484],[-71.04267391886563,42.27995790410937],[-71.04263586927001,42.27990506397318],[-71.04262338459249,42.27984272295776],[-71.04263197819397,42.27977854552088],[-71.04265052357476,42.27971797292251],[-71.04267984814514,42.27964866435037],[-71.04268989970085,42.27958723504546],[-71.0427298429383,42.27953141211295],[-71.04273879657393,42.27946805897818],[-71.04273929776124,42.27939863383705],[-71.04276733244843,42.27930324902766],[-71.04279937971135,42.27921529060527],[-71.04279139979577,42.27914308846707],[-71.04276882401007,42.27909662200813],[-71.04269557021287,42.27910895537541],[-71.042654890437,42.27911318329929],[-71.04262015486889,42.27911304498444],[-71.0425792048498,42.27910382572667],[-71.04252908506666,42.27908496636227],[-71.04247892644936,42.27907131959621],[-71.04241658860192,42.27905597852791],[-71.04224355096689,42.27906955709812],[-71.04219211223388,42.27908005582939],[-71.04208635162212,42.27909033438229],[-71.0420083845355,42.27909002352152],[-71.04197352120345,42.27910772317681],[-71.04195748362741,42.27912824113169],[-71.04192263649402,42.27914319310041],[-71.04184096346056,42.27914451580765],[-71.0421105697372,42.27870460542088],[-71.04222940813418,42.27857226317251],[-71.04233295111517,42.27851038357905],[-71.04245609203637,42.27839589781573],[-71.04252014773304,42.27832672401502],[-71.04258420219031,42.2782583739539],[-71.04266267985965,42.27818816273397],[-71.0427735545668,42.27813427064741],[-71.0428255213894,42.2781015478867],[-71.04285172886914,42.27810604299501],[-71.0428817462024,42.27809381385693],[-71.0428770611,42.27807760409431],[-71.0428638067534,42.27807069190523],[-71.04287632291944,42.27802601267945],[-71.04290903982897,42.2779986997353],[-71.04294596467943,42.27800214179983],[-71.04295826266501,42.27798819456802],[-71.04294132069975,42.27797989564635],[-71.04294773399992,42.27796208248894],[-71.04299443188218,42.27794278656685],[-71.04302436123726,42.27794290564898],[-71.04303665645105,42.27792950668454],[-71.04302721279889,42.27790642035879],[-71.04302730387131,42.27789379661967],[-71.04308255261087,42.27786739795031],[-71.04312345364147,42.27788347627614],[-71.04313646718992,42.27787200231328],[-71.04311409903899,42.27784804080366],[-71.04313205119321,42.27781847591528],[-71.04316694879508,42.27779638524802],[-71.04320401923627,42.27783056158153],[-71.04325588952943,42.27781183261055],[-71.04325715189971,42.27779043463763],[-71.04328531544179,42.27772825440423],[-71.0433157954719,42.27765181261099],[-71.04332942763963,42.27760631399039],[-71.0433775370606,42.27754503681674],[-71.04344510837898,42.27750085188392],[-71.04349118175662,42.27746536035926],[-71.04353302823824,42.27745317716644],[-71.04356442692806,42.27745494770913],[-71.04357520872644,42.27744511238881],[-71.04357064059981,42.27741298749376],[-71.043605634565,42.27737662901334],[-71.04366141369124,42.27732800629844],[-71.04372266616406,42.27728900707232],[-71.0437709063291,42.27726065987491],[-71.04380335914816,42.27726957037191],[-71.04381304482528,42.27725890869535],[-71.0438084836011,42.27722513717517],[-71.04383756741527,42.27718875514921],[-71.04388807611035,42.2771532810802],[-71.04396522956193,42.27711270180905],[-71.04400388307936,42.27708157141397],[-71.04405317614244,42.27706118519017],[-71.04410260576182,42.27702131594656],[-71.04418073145888,42.27699940014996],[-71.0442492940958,42.27697195538261],[-71.04433000898612,42.27694922597799],[-71.04433802758251,42.27696434963408],[-71.04432603045537,42.27698845006816],[-71.04431252987563,42.27701611245205],[-71.0443028032918,42.27703281416714],[-71.04431822504354,42.27704632143573],[-71.04435337935267,42.27703932417047],[-71.0443965315307,42.2769994325983],[-71.044410077468,42.27696545833316],[-71.04443881225124,42.27697737353237],[-71.04444965121856,42.27696040162421],[-71.04447752511031,42.27693828450102],[-71.0445317026344,42.27690639261623],[-71.04454410690117,42.2768770800981],[-71.04460776116468,42.27686388641714],[-71.04467709329195,42.27688282105289],[-71.04467830979917,42.27686773403168],[-71.04466557638827,42.27683996760507],[-71.04475907340246,42.2768386924679],[-71.0448139557001,42.27686305801722],[-71.04481782896265,42.27683810245654],[-71.04490439043954,42.27682499669182],[-71.04495459904882,42.27683150857639],[-71.04500724399327,42.27685833381025],[-71.04506018745754,42.27684427636837],[-71.04513438112699,42.27685527127166],[-71.04515824990035,42.27687594501123],[-71.04517970275631,42.27687328853106],[-71.04518938574246,42.27686262312688],[-71.04525171543004,42.27687906104489],[-71.04529117010455,42.27689074387992],[-71.04532132418888,42.27691116697451],[-71.04539303804516,42.2769070627511],[-71.04546499018834,42.27692161648386],[-71.04554051533677,42.27695319920723],[-71.04562794272994,42.27697385062586],[-71.04571897149809,42.27700741671779],[-71.04580007049074,42.27703435412454],[-71.04588737488335,42.27707202065582],[-71.04597024530585,42.27710994148507],[-71.04605740364036,42.27716818651952],[-71.04613724278414,42.27721652529944],[-71.0462052377044,42.27726756136192],[-71.04628883385207,42.27730713148635],[-71.04637275828141,42.27735301579617],[-71.04643120187254,42.27739605708823],[-71.0465109846372,42.27745235049086],[-71.04660069832593,42.27751499779065],[-71.04668900192891,42.27756803408232],[-71.04677625776718,42.2776128319663],[-71.04688369067404,42.27767829309417],[-71.04698786473281,42.27773413589568],[-71.04709645833395,42.27779246646976],[-71.04717291908321,42.27784792432456],[-71.04726170685416,42.27788559474544],[-71.0473009240263,42.27793047835193],[-71.04729581372807,42.27797326598428],[-71.0472667778662,42.2780033370139],[-71.04722927855502,42.27802816099825],[-71.04722904906082,42.27806026682411],[-71.04727429445391,42.27808898398943],[-71.04733083505344,42.27808838395762],[-71.04738275168269,42.27806251838157],[-71.0474295930905,42.27802346310094],[-71.04747567170654,42.27798714712942],[-71.04750449304429,42.27798726067856],[-71.0475232506001,42.27805154803517],[-71.04754557101224,42.27808209603273],[-71.04761669597752,42.27805740349009],[-71.04767178617018,42.27805295687047],[-71.04773555683744,42.27802302341748],[-71.04779587011305,42.27801173336829],[-71.04785349684857,42.27801470617054],[-71.04791432241446,42.27803525021177],[-71.04796959509261,42.27805687074072],[-71.04810460142163,42.27809033249861],[-71.04835821366082,42.27822853672969],[-71.04841091495948,42.27824850117292],[-71.0484429033102,42.27827085730347],[-71.04847053233958,42.27828331452465],[-71.04853378141196,42.27832637092025],[-71.04854224303737,42.27833189064669],[-71.04854589734221,42.27833712228564],[-71.04855067165896,42.2783415309451],[-71.04856608877708,42.27835585959652],[-71.04858038880228,42.27837128312943],[-71.04859321903093,42.27838642809117],[-71.04859686555423,42.27839275266975],[-71.04860524700378,42.27840952500556],[-71.04860890182461,42.27841502583601],[-71.04861478298726,42.2784194397429],[-71.04862914048239,42.27842663199428],[-71.04864463166328,42.2784310827645],[-71.04866635521871,42.27844187187127],[-71.04867446424936,42.27844464516819],[-71.04870803470703,42.27845273578379],[-71.04872614182814,42.27845280692752],[-71.04874423404355,42.27845480016387],[-71.04875974943754,42.27845568399987],[-71.04877637976126,42.27845492645382],[-71.04878375950993,42.27845660210548],[-71.04879813361136,42.27846214774053],[-71.04880401822832,42.2784657387712],[-71.04881095788089,42.27847728815249],[-71.04881350660473,42.27848251273871],[-71.04881564303781,42.27849404775305],[-71.04881818393915,42.27850037068215],[-71.04882184658798,42.2785047758636],[-71.04882884878988,42.27850754480172],[-71.04883734954267,42.27850757819296],[-71.04884586375947,42.27850487020371],[-71.04885553632458,42.27849612660842],[-71.04886258225702,42.27849258546919],[-71.04887219106352,42.27849262321006],[-71.04889842898326,42.27849190428189],[-71.04891431293858,42.27849278864419],[-71.04893461076924,42.27849643717289],[-71.0489560249741,42.27849926270046],[-71.04896561255399,42.27850177079072],[-71.04897631453187,42.27850373316896],[-71.04898739770479,42.27850460137031],[-71.04899810384805,42.27850546809012],[-71.04900512436407,42.27850549565665],[-71.04901364271838,42.27850305686277],[-71.04904137697997,42.27850042252362],[-71.04905097749204,42.27850128489749],[-71.04907493923153,42.27850933587932],[-71.04908196905178,42.2785077159171],[-71.04909049520306,42.27850418147539],[-71.04909753060114,42.27850228874135],[-71.04911674921257,42.27850154310746],[-71.04913377025562,42.27849886488946],[-71.04914930303835,42.27849645632084],[-71.04916001403818,42.2784973221443],[-71.04916739380829,42.27849899687099],[-71.04917916794096,42.27850617891317],[-71.04918764675837,42.27850895362508],[-71.04919614508694,42.27850898698025],[-71.04921388832463,42.27850823373885],[-71.0492297722821,42.2785091189578],[-71.04923789498599,42.27850997551629],[-71.04924526573764,42.27851274767598],[-71.04925114817246,42.27851716065464],[-71.04926439770577,42.27852434847807],[-71.04927141163984,42.27852547167521],[-71.04928100750958,42.27852715779193],[-71.04930501761663,42.27852807578854],[-71.04932055181284,42.27852649098259],[-71.04932904550796,42.27852734628937],[-71.04934341019457,42.27853371289827],[-71.04936037440892,42.27853817025143],[-71.04936736854117,42.27854258848609],[-71.04937912903684,42.27855169170768],[-71.0493864856544,42.27855611136328],[-71.04939497470659,42.27855779042722],[-71.04941158431048,42.27855977774173],[-71.04942966853405,42.27856341299719],[-71.0494381656577,42.27856344632971],[-71.04946441503681,42.27856163074409],[-71.04948950247265,42.27856721651444],[-71.04951463721495,42.27856649221813],[-71.04954126102109,42.27856385070203],[-71.04955680765097,42.27856034736018],[-71.04957602043604,42.27856042270592],[-71.04959896200594,42.2785561218767],[-71.04962152796556,42.27855264245002],[-71.04964222880174,42.27855162434561],[-71.04966846574264,42.27855172721729],[-71.0496850824159,42.27855289164],[-71.04970317322983,42.27855543120547],[-71.04972013674843,42.27856016129543],[-71.04973451512596,42.27856460845587],[-71.04975849108611,42.27857101539105],[-71.0497809821764,42.27857823938076],[-71.04979057566224,42.27857992274453],[-71.04980609452528,42.27857998357266],[-71.04982046875693,42.27858552727911],[-71.0498363203128,42.27859080488125],[-71.04984444424774,42.27859166140161],[-71.04985882971397,42.27859528389362],[-71.04987583346758,42.27859452585123],[-71.04988287347453,42.27859181200789],[-71.0498866068891,42.27858661116449],[-71.04989143664656,42.2785830630781],[-71.04997042933152,42.27859489652868],[-71.04997892181304,42.2785957544835],[-71.04999551096637,42.27860130684608],[-71.05001248230272,42.27860494125061],[-71.05001837527216,42.27860770937146],[-71.0500231426539,42.27861294082172],[-71.05003051930376,42.27861488917367],[-71.05004972747305,42.27861578730191],[-71.05006523706047,42.27861749651938],[-71.05008187104163,42.27861673969884],[-71.0500974140496,42.27861323176824],[-71.05010481259758,42.27861243876863],[-71.0501118319136,42.27861246626276],[-71.05011811292856,42.27861249086467],[-71.05013955135239,42.2786117483524],[-71.05017800127868,42.27860915660818],[-71.0501961325635,42.27860566060131],[-71.05023685390994,42.27859511722487],[-71.0502635088535,42.27858808757074],[-71.05028610716711,42.27858021824706],[-71.05030315571679,42.27857314917011],[-71.05031984107225,42.27856498299599],[-71.05032726494679,42.27856062126734],[-71.05034026147996,42.27855189146154],[-71.05034657244558,42.27854752537471],[-71.05035478357014,42.27853575810619],[-71.05035864234549,42.27851272087101],[-71.05036353756145,42.27850011774088],[-71.05036726971242,42.27849491777734],[-71.05037332168376,42.27847545794115],[-71.05037340544554,42.27846365795497],[-71.0503819831359,42.27845216851337],[-71.05039501740139,42.27843794788119],[-71.050408397273,42.27842730101554],[-71.05043252739497,42.27841147715113],[-71.0504529277917,42.27840085325771],[-71.05046995557502,42.27839653000878],[-71.05048660553932,42.27839385373947],[-71.05052985852205,42.27839127797436],[-71.0506233482331,42.27839082090669],[-71.0506665841606,42.27839099005714],[-71.05068244500045,42.27839462001853],[-71.05069795457632,42.27839632554954],[-71.05071460018416,42.27839392022238],[-71.05073270486605,42.2783939910403],[-71.05074820980019,42.27839652212715],[-71.05078072646012,42.27839664930711],[-71.05079735575796,42.27839671434448],[-71.05082989529369,42.27839327368638],[-71.05085396543556,42.27838623378729],[-71.05088616171685,42.27837922385731],[-71.05090540457468,42.2783757338858],[-71.05091390631479,42.27837494154645],[-71.0509212931441,42.27837579600899],[-71.05092940105271,42.27837856914199],[-71.05093677306266,42.27838134299849],[-71.05094379477806,42.27838137045126],[-71.0509500699305,42.278382218765],[-71.0509570892214,42.27838224620749],[-71.05097740781812,42.27838314762185],[-71.05100621571759,42.27838518239284],[-71.05103131682428,42.27838884842694],[-71.05103869663127,42.27839052303343],[-71.05104716966329,42.27839412316612],[-71.0510552928682,42.27839525239085],[-71.05106379653604,42.27839418815543],[-71.05107604417722,42.27838710199963],[-71.05108418319257,42.27838548715066],[-71.05111413343072,42.27838286007214],[-71.05113817948559,42.27837938523212],[-71.0511611138344,42.27837590784335],[-71.05120808352918,42.27836978113436],[-71.05125465990042,42.27836749177519],[-71.0512631606357,42.2783675249869],[-71.05127167375622,42.2783656387935],[-71.05127760443756,42.27836291692974],[-71.05128612144101,42.27836048246397],[-71.05130387118673,42.27835862965148],[-71.05131606924068,42.27835785442301],[-71.05133529264423,42.27835710663632],[-71.05135452481218,42.27835443672686],[-71.05137006427552,42.27835175239071],[-71.05138669356212,42.27835181734274],[-71.05141814561598,42.27834563083824],[-71.05143480137956,42.27834212797321],[-71.05145553587357,42.27833617149415],[-71.05146999471636,42.27832909393166],[-71.05147967346382,42.27831925086684],[-71.05148087015371,42.27830690874045],[-71.0514857580916,42.27829512841439],[-71.05149396242626,42.27828445671091],[-71.05149878965237,42.27828090764699],[-71.05151325454567,42.27827382920236],[-71.05152176789753,42.27827139380457],[-71.05154581921377,42.27826682412753],[-71.05155916002063,42.27826166254167],[-71.05157100311797,42.27825896374657],[-71.0515843220896,42.27825654350502],[-71.05160838043292,42.27825115096245],[-71.05163355145523,42.27824493717757],[-71.05166836569973,42.27823355005621],[-71.05170465557607,42.27822298796249],[-71.05173575405716,42.27821432865061],[-71.05175132114285,42.27820807645725],[-71.05176945684296,42.27820375643958],[-71.05180314455572,42.2781956555004],[-71.05186086120736,42.27818545336085],[-71.05188970665856,42.27818199979036],[-71.05191373729662,42.27818017318883],[-71.05193888545399,42.27817752626123],[-71.0519651373055,42.27817515642619],[-71.0519736515852,42.27817327108571],[-71.0519880945613,42.27816893752959],[-71.05201585258668,42.2781627328516],[-71.05203844229312,42.27815568512995],[-71.05210099743667,42.27814083815446],[-71.05212616134258,42.27813544621371],[-71.05215020722255,42.27813197476274],[-71.05216241105299,42.27813037478661],[-71.05217424948205,42.27812850059173],[-71.05218165596457,42.27812605902887],[-71.0522042604147,42.27811709277963],[-71.0522368513845,42.27810651609709],[-71.05226090065835,42.27810221905542],[-71.05228127080748,42.27809598821462],[-71.05228977732294,42.27809519849315],[-71.05232086984562,42.27808736187984],[-71.05235236218425,42.27807595800255],[-71.05236904061402,42.27806888717716],[-71.05237756941621,42.27806425682973],[-71.05238720337219,42.27806072646127],[-71.05241126181652,42.27805478456449],[-71.05242681592996,42.2780501815902],[-71.0524486847235,42.27804065873798],[-71.05246165637084,42.27803522281627],[-71.05248459512994,42.27803092140081],[-71.05249052815245,42.27802819948368],[-71.0524990598623,42.27802384193139],[-71.05249433109354,42.27801312246761],[-71.0525783798882,42.2779893018935],[-71.05271203241745,42.27795332494],[-71.05287048458536,42.2779111341307],[-71.05306892688795,42.27785757209919],[-71.0531592678276,42.27783212712402],[-71.05321076685601,42.27781284573869],[-71.05327340921683,42.27778537257106],[-71.05333824366308,42.27776147580752],[-71.0533938349976,42.27773864324138],[-71.05358536720063,42.27761644921602],[-71.05367878519573,42.27762669042686],[-71.05369204277774,42.27763278029751],[-71.05369940250405,42.27763747428241],[-71.05371592985632,42.27765180835537],[-71.05372179850309,42.27765786681114],[-71.05372654362657,42.27766611854859],[-71.05373129843677,42.27767299555592],[-71.05373972245964,42.27768373202715],[-71.05374814407342,42.27769446668773],[-71.0537624623826,42.27770796839079],[-71.05376945767794,42.27771156348192],[-71.05377534493162,42.27771515426784],[-71.05379932558846,42.2777207338974],[-71.0538078110087,42.27772241262136],[-71.05381854584158,42.27771971289084],[-71.05382816034249,42.27771892555918],[-71.05383888868154,42.27771731967358],[-71.05384851184562,42.27771461382139],[-71.05385702602004,42.27771272654057],[-71.0538725792355,42.27770839616021],[-71.05388592841682,42.27770131308383],[-71.05391110262768,42.27769509971356],[-71.05392663503802,42.27769268959821],[-71.05393404697257,42.27768997335039],[-71.05393888873925,42.27768450568819],[-71.053940003788,42.27768368713873],[-71.05394259299942,42.27768287341408],[-71.05394370104125,42.27768287771725],[-71.0539459219741,42.27768288634243],[-71.05394851117907,42.27768207351791],[-71.05394962043324,42.27768207782572],[-71.05395220748052,42.2776820878726],[-71.05395331552234,42.2776820921757],[-71.05395553281832,42.27768210078655],[-71.05395811865331,42.27768211082858],[-71.05395922332539,42.27768293799839],[-71.05396181037275,42.27768294804503],[-71.05396291261394,42.27768377610566],[-71.05398804453621,42.27768304992061],[-71.05400135289366,42.27768227871905],[-71.05401319698457,42.27767958057679],[-71.054026504135,42.27767880846731],[-71.05403834579961,42.27767611031306],[-71.0540457705199,42.27767174924828],[-71.05405060456181,42.27766737722403],[-71.05405654979002,42.2776627349205],[-71.05407210972888,42.27765675697895],[-71.05408173650436,42.27765405202159],[-71.05409283987821,42.27765135009508],[-71.05411431002436,42.27764621977332],[-71.05413949987562,42.27763726138024],[-71.05416469792965,42.27762748103396],[-71.05418875146992,42.27762236072612],[-71.05421281274256,42.27761614116944],[-71.0542283634854,42.27761181073143],[-71.05424282548356,42.27760473373325],[-71.05426838554331,42.27759605134217],[-71.05430804072228,42.27757919034112],[-71.05432584277231,42.27757020413952],[-71.05434177118869,42.27756422939192],[-71.05435732384177,42.27755962435052],[-71.0543728675469,42.27755611854613],[-71.05440397139732,42.27754745853422],[-71.05444508500389,42.27753334637705],[-71.05448584933512,42.27751649141805],[-71.05450884037259,42.2775050548753],[-71.05452551841132,42.27749798373593],[-71.05455218519648,42.27748930827519],[-71.05456664135039,42.27748305319319],[-71.0545811054624,42.27747514877932],[-71.05459778589716,42.27746807943939],[-71.05463256831683,42.27746108119116],[-71.05464701411053,42.27745647001803],[-71.05465554559501,42.27745211230504],[-71.05466406643764,42.27744857833033],[-71.05468223622,42.27743986809283],[-71.05470372961553,42.27743089614469],[-71.05471225988039,42.27742653842278],[-71.05472042375406,42.27742135639995],[-71.05473637816445,42.27741236297183],[-71.05475083886064,42.27740528410415],[-71.05478194546247,42.27739552472689],[-71.05478787517816,42.27739307817226],[-71.05480975108405,42.2773824601267],[-71.054867616691,42.27735140326417],[-71.05488692482461,42.27733803021873],[-71.05489655608676,42.27733450233073],[-71.05491209444527,42.2773320903049],[-71.05492025442533,42.27732745833985],[-71.05494694737753,42.27731521317494],[-71.05496030335578,42.27730730622005],[-71.05497108363342,42.27729829361104],[-71.05498188007049,42.27728680792248],[-71.0549941472626,42.27727615531271],[-71.05502643290325,42.27725679597088],[-71.05505315278324,42.27724071017933],[-71.05507354839104,42.27723008544862],[-71.05509393990799,42.27722055997239],[-71.05514444472973,42.27718508366409],[-71.05516264351529,42.27717170537527],[-71.05518084226156,42.27715833158496],[-71.0552038809964,42.2771405839414],[-71.05522283657402,42.27712474173475],[-71.05524845168217,42.27710782693903],[-71.0552785309605,42.2770865359286],[-71.05530158332299,42.27706632147907],[-71.05531124727878,42.27705812739573],[-71.05533870672252,42.27704149431398],[-71.05536656072562,42.27702184402634],[-71.05537733655125,42.27701310505495],[-71.05539075504356,42.2769969658918],[-71.05539782305543,42.27698985742482],[-71.05540636597642,42.27698385394059],[-71.05542308565352,42.27697047078524],[-71.05544728235422,42.27694559264792],[-71.05547293390478,42.27692346607025],[-71.05550043175971,42.27690134483159],[-71.05552830126894,42.27687895043113],[-71.05554652661706,42.27686228066445],[-71.05556439445756,42.27684369095886],[-71.05557889100572,42.27683112475909],[-71.05558519929619,42.27682758215487],[-71.05559003316115,42.27682321096535],[-71.05559487474383,42.27681773963127],[-71.05559823326519,42.27681336183262],[-71.05560949813623,42.27678760984354],[-71.05561286768977,42.27678131353447],[-71.05563221905139,42.27676190397726],[-71.05565260984787,42.27675210200505],[-71.05565892390486,42.27674773563883],[-71.05571061111957,42.2767015617146],[-71.05573850356384,42.27667587403128],[-71.05575900592046,42.27665015865792],[-71.05578098724142,42.27662444900101],[-71.05580629818226,42.27659847672319],[-71.05582303619555,42.27658262494039],[-71.0558412166043,42.27657199510772],[-71.05585456654457,42.27656491090536],[-71.05586901587645,42.27655975310661],[-71.05588567091797,42.27655625049518],[-71.05590120275423,42.27655439019858],[-71.05591821935026,42.27655171096009],[-71.05593853955578,42.2765517895257],[-71.05595515370071,42.27655377411291],[-71.05596252693061,42.2765565476525],[-71.05597212604899,42.27655740674273],[-71.05599608336458,42.27656628094662],[-71.05601155991698,42.27657265372231],[-71.05601743778755,42.27657706723767],[-71.05601999401537,42.27658146791272],[-71.05602209780412,42.2765976653525],[-71.05602687129151,42.27660207459832],[-71.05604239088821,42.27660213458855],[-71.0560497900511,42.27660051742905],[-71.056056833234,42.27659779961915],[-71.05607281103917,42.27658523818216],[-71.05608578594494,42.2765792499768],[-71.05609429503838,42.27657736431152],[-71.05612055617348,42.2765738978923],[-71.05614460460203,42.27656960003616],[-71.05615905461677,42.27656416851055],[-71.05617241027906,42.27655626231385],[-71.05618092808896,42.2765538238878],[-71.05618942373431,42.27655385671619],[-71.05619646568114,42.27655114069356],[-71.05620130596579,42.27654567112954],[-71.05620503752871,42.27654047007398],[-71.05620516248096,42.27652263548948],[-71.05622187974582,42.27651007418805],[-71.0562353243027,42.27648982242747],[-71.05624501113323,42.27647833323287],[-71.05626794572558,42.27647485482778],[-71.05628459830444,42.27647135124881],[-71.05628472324045,42.27645351576366],[-71.05627778439566,42.27644168864224],[-71.05624534946364,42.27643003850952],[-71.05620006850266,42.27640599012979],[-71.05616299735368,42.27637017224276],[-71.0561451362352,42.27633525146224],[-71.05614070115647,42.27628254929726],[-71.0561543231184,42.27623732193273],[-71.05617735183067,42.27622039873487],[-71.05620639155876,42.27618922620262],[-71.05622322477473,42.27615992865367],[-71.05622819047935,42.27613689819726],[-71.05622574647774,42.27611630595042],[-71.0562034566683,42.27608054698584],[-71.05637927942317,42.27545665937324],[-71.05625760042003,42.27483958018952],[-71.05626474852355,42.27466316121986],[-71.05636354420673,42.27464323556541],[-71.05646865948962,42.27467108469264],[-71.05655480469137,42.2747161472671],[-71.05665042745872,42.27478045530271],[-71.05668580465499,42.27484672387839],[-71.05671549408095,42.27493410248452],[-71.05681862987002,42.27492736467422],[-71.05682615610297,42.27485522424355],[-71.05683277059333,42.2748080493953],[-71.0568994708673,42.27467466794209],[-71.05684995503317,42.27456937600746],[-71.05678388675736,42.27455924110092],[-71.05665849425446,42.27463093021436],[-71.05647323244244,42.2745456959446],[-71.05641589022024,42.27450266400825],[-71.05632880989512,42.27443262590847],[-71.05627027023588,42.27440221517249],[-71.05603640744572,42.27439774438223],[-71.05554218181629,42.27384782874504],[-71.05545755615556,42.27379673472048],[-71.05502341113804,42.27342624007052],[-71.05470933215587,42.27321729043774],[-71.05464714515729,42.27318055266618],[-71.05464024604227,42.27316351371267],[-71.05464286132148,42.27310671898616],[-71.05459277092761,42.27308402156255],[-71.05450788465994,42.27301783576745],[-71.0543902242236,42.27288291395239],[-71.05433703845641,42.27277486340061],[-71.05440285566489,42.27276798204944],[-71.05452642870357,42.27279782494747],[-71.05462703279231,42.27283553465514],[-71.054676780834,42.27290707779522],[-71.05469940509987,42.27294722918013],[-71.05469921606523,42.27297412061707],[-71.05471097944836,42.27298294692076],[-71.05474681964088,42.27298308587476],[-71.05477231362354,42.27298318470926],[-71.05479638463653,42.27297532020857],[-71.05480833723205,42.27295670767934],[-71.05484437123813,42.2729299542842],[-71.05489240137177,42.27293014044096],[-71.05491770759738,42.27295713158552],[-71.05507473597117,42.27295774002618],[-71.05515990674718,42.27293117687955],[-71.0552798629293,42.27294947832412],[-71.05552092003614,42.27298087248946],[-71.05572226367325,42.27298521765833],[-71.05587352567268,42.27296522258377],[-71.0560323411921,42.27292220325104],[-71.05615613411562,42.27286752532694],[-71.05623246351178,42.272783847758],[-71.0563721059164,42.27273472091385],[-71.05651593576738,42.27272100563751],[-71.05669871406515,42.2726852137478],[-71.05683664282418,42.27266955493794],[-71.05701055267438,42.27268724167476],[-71.05723485690035,42.2726837167444],[-71.05737631160336,42.27269221801149],[-71.05747604626201,42.27269616846216],[-71.0575864853085,42.27270180852377],[-71.05760864892912,42.27275540453931],[-71.05765523041293,42.27280470470343],[-71.05768010219344,42.27284129803584],[-71.05773390121627,42.27286181254363],[-71.05778933847384,42.2728603802519],[-71.05790436360033,42.27284380638787],[-71.058022282024,42.27283630423139],[-71.05812281310399,42.27283230117273],[-71.05821782320602,42.27282470887294],[-71.05829104095267,42.27281675538794],[-71.05837963281724,42.27282889820349],[-71.05846312671558,42.27288355364535],[-71.0585030562597,42.27288013923311],[-71.05848055916725,42.27282105204165],[-71.05841366134466,42.27277085122054],[-71.05832987612382,42.27275818042963],[-71.0580824994919,42.27278494567258],[-71.05798414156128,42.27279527001112],[-71.05784854415836,42.27279474805583],[-71.05773242481686,42.27275588125524],[-71.05766783099577,42.27269334116016],[-71.05767659226156,42.27265577988891],[-71.05764316986294,42.272627112333],[-71.0575989173466,42.2726145932681],[-71.05719593972562,42.27259520337976],[-71.05708798554586,42.27260384238938],[-71.0570052644206,42.27259803597267],[-71.05692008547666,42.27257273557131],[-71.05683624514708,42.27256802128858],[-71.05673526978134,42.27258272615485],[-71.05662245045438,42.27260094862343],[-71.056531245494,42.27259263866997],[-71.05643311363116,42.27257085580634],[-71.05636702008957,42.27256428936698],[-71.05631189754003,42.27257395549444],[-71.05624439041942,42.27261101510031],[-71.0562105611491,42.27264052068823],[-71.05618520632353,42.27267335233781],[-71.05615712813203,42.27272565519918],[-71.05611615337628,42.27277269813277],[-71.05603412418384,42.272825890806],[-71.05586243409948,42.27286089983953],[-71.05574812162759,42.27288104143339],[-71.05559707682075,42.27286975421709],[-71.055493127283,42.27283449925478],[-71.05540444612153,42.27283498247091],[-71.05533225292507,42.27285528399356],[-71.05525299109125,42.27283000436523],[-71.05520882876166,42.27280485972292],[-71.05513593295866,42.27276725965818],[-71.05506283346085,42.27275901776909],[-71.05498502081964,42.27273731328619],[-71.05492428917913,42.27270414741536],[-71.05485105796595,42.27266187597557],[-71.05476715474094,42.27266594153344],[-71.05466151417957,42.27266114114738],[-71.05456613949003,42.27261521934211],[-71.05444378666276,42.27256946829071],[-71.05438326321773,42.27250694122363],[-71.0543441995617,42.27243983020652],[-71.05430257350247,42.27236942130917],[-71.05431638028814,42.27229730176889],[-71.05452239022371,42.27216336287755],[-71.05459637189551,42.27204620205196],[-71.05479885482596,42.27194078782186],[-71.05524146193572,42.27178828281992],[-71.0557143289036,42.27158786899616],[-71.0559942568859,42.27150251127804],[-71.05620303863319,42.27149892746499],[-71.05634599559389,42.27150387060261],[-71.05650377465469,42.27139691040337],[-71.0565525609568,42.27128925459478],[-71.05688241436695,42.27109185158511],[-71.05724691481413,42.27095852012454],[-71.05737006397169,42.27083688075946],[-71.05745377677107,42.27075350541149],[-71.057623319977,42.27065454772093],[-71.0577474902184,42.27059794827732],[-71.05781980002918,42.27056063258333],[-71.05785221737831,42.27052178759536],[-71.05795513403892,42.27038662541474],[-71.05803646477742,42.27027387874963],[-71.05807766930778,42.27019363447129],[-71.05834824969047,42.26996389238771],[-71.05853193363316,42.26990313015465],[-71.05857054308507,42.26987666008115],[-71.0586495431292,42.26956769823506],[-71.05884642822275,42.2693618224697],[-71.05891847301955,42.26936209920098],[-71.05914729029303,42.2693986506907],[-71.05958417630724,42.26937453316823],[-71.059644088893,42.26941921829321],[-71.05972981426251,42.26947113638326],[-71.05974636347888,42.26953541334692],[-71.05978910855721,42.26960500170271],[-71.05982251124712,42.26963641541554],[-71.05998508598086,42.26968862604032],[-71.06015662047443,42.26972770375563],[-71.06029358711241,42.26968980764139],[-71.06031065667256,42.26962593587446],[-71.0602176658978,42.26955587891803],[-71.06009816752416,42.26947254795381],[-71.0599271807161,42.26940795483434],[-71.05976454216412,42.26931183588733],[-71.05976507420597,42.26923527398769],[-71.05973083776631,42.26916461806129],[-71.05976587319226,42.26912029789406],[-71.05995474006654,42.26905763200221],[-71.06008357608457,42.26901998317841],[-71.06024642061155,42.26903295548137],[-71.06052177920178,42.2689645814626],[-71.06053893711234,42.26888808678248],[-71.06072739863768,42.2688833186403],[-71.06101089843322,42.26881332882976],[-71.06121777834743,42.26876308013708],[-71.06129403291085,42.26879547642617],[-71.06137079212328,42.26880839464123],[-71.06143119296183,42.26878283061809],[-71.06147468587554,42.26874457699022],[-71.06153466510074,42.26872614713897],[-71.06154360896608,42.26866196686326],[-71.0614837819259,42.26860465894148],[-71.06150157296021,42.26848975041739],[-71.06137356791898,42.26840748395404],[-71.06130566582227,42.26834301105616],[-71.06130165835418,42.26822801928238],[-71.06142390000498,42.26807536189762],[-71.06150973529076,42.26800434300692],[-71.0617288338123,42.26789650866706],[-71.0618995909896,42.26783377136798],[-71.06208136774869,42.26772662045315],[-71.0623125874429,42.2675752014198],[-71.06239812453602,42.2675478114317],[-71.06251911673915,42.26757516460606],[-71.06256677131556,42.26762968059681],[-71.06266343567964,42.26770222011223],[-71.06277205681853,42.26775614529574],[-71.06284372609872,42.26781075259753],[-71.06288066728271,42.26786522587001],[-71.06295332606818,42.2679368508777],[-71.06307264620409,42.26804597112153],[-71.06309745989131,42.26809134558766],[-71.0630957994359,42.26817146662807],[-71.0630484399058,42.2682346788829],[-71.06299905331763,42.26827016204005],[-71.06291339917959,42.2683151161256],[-71.06288888791785,42.2683871914696],[-71.06288845622625,42.26844975758602],[-71.06291338816392,42.26847729384878],[-71.06296123427335,42.26850436902397],[-71.06299713016406,42.26854895919947],[-71.06309281881003,42.26860365953262],[-71.06312957656566,42.26863069064974],[-71.06326195102488,42.26877635969291],[-71.06332161889134,42.26880320417843],[-71.06344006109026,42.26882615677066],[-71.06351589251256,42.26881299892597],[-71.06360129858474,42.2688042673139],[-71.06390001608277,42.2687768650265],[-71.06397686959534,42.2687763303656],[-71.06403450394819,42.2687765491758],[-71.06409691418547,42.26878117688341],[-71.06416374599276,42.26878692061281],[-71.06424902413127,42.26879712239487],[-71.06428148923735,42.26880438141089],[-71.06431246626842,42.26881245585236],[-71.06435448605069,42.2688268842302],[-71.06439501248991,42.26884377737107],[-71.0644355169842,42.26886368914432],[-71.06447750218646,42.26888333282511],[-71.06450732800273,42.26889771490137],[-71.0645386362521,42.26891210529197],[-71.06459342809565,42.26894990626874],[-71.06466032866709,42.26899982894123],[-71.0646805226851,42.26901774237631],[-71.0647007152283,42.26903675417694],[-71.06470912987216,42.26904913468469],[-71.06471605010162,42.26906342898232],[-71.06472224411947,42.26907580107213],[-71.06472805766848,42.26909009207461],[-71.06473166107018,42.26910355452016],[-71.0647383996538,42.26914446480757],[-71.06474181264063,42.2691856424855],[-71.06474140917946,42.26924436528815],[-71.06473621331378,42.26930142416497],[-71.06473238930167,42.26932006853593],[-71.06472745738449,42.26933870960776],[-71.06472031531818,42.26935652032197],[-71.06471283615011,42.26936993715969],[-71.06470314264557,42.26938225083027],[-71.06469345655971,42.26939401354017],[-71.06468377558708,42.26940467879434],[-71.06467187437914,42.26941615761182],[-71.06465143952123,42.26943309595167],[-71.0646295309869,42.26944892672527],[-71.06460652139171,42.26946393314054],[-71.06458017690902,42.26948002438133],[-71.06456682823162,42.2694871087029],[-71.06455495029861,42.26949501967955],[-71.06454416824359,42.26950485966687],[-71.0645330075992,42.26951634307859],[-71.06452331971852,42.26952783027328],[-71.06451511306257,42.26953932488462],[-71.06450763463124,42.26955191973121],[-71.06450163932587,42.26956424560789],[-71.06449448396937,42.26958397661212],[-71.06448695957341,42.26960343252302],[-71.06448202555377,42.26962289465572],[-71.06447967028478,42.26964264386229],[-71.06447793731982,42.26967995861846],[-71.06448025751608,42.26971838441906],[-71.06449514536476,42.26981009573419],[-71.06450194542536,42.2698422282699],[-71.0645091139867,42.26987436220235],[-71.06450891214925,42.26990372314928],[-71.0645077608463,42.26991003173612],[-71.0645077174746,42.26991634092308],[-71.06450768162857,42.26992155536528],[-71.06450763823827,42.26992786725307],[-71.06450870275499,42.26993418334217],[-71.06451347067443,42.26993941510017],[-71.06451712517574,42.2699449154289],[-71.06452189309043,42.26995014808681],[-71.06453470738805,42.26996720977857],[-71.06454566425263,42.26998591288796],[-71.06454894702064,42.2699922364873],[-71.06455259894688,42.2699982886932],[-71.06455735934367,42.27000461609435],[-71.06456212929184,42.27000902497736],[-71.06456690853922,42.2700126101145],[-71.06457279568322,42.27001620125272],[-71.06457537042624,42.27001813226989],[-71.06457905497145,42.27001979200089],[-71.06458125758985,42.27002172070681],[-71.06458382545931,42.27002447547865],[-71.06458603118362,42.2700261287023],[-71.064588595417,42.27002888346025],[-71.0645896800159,42.2700324554889],[-71.06459075895928,42.27003685037666],[-71.06459072878177,42.27004124105932],[-71.06459180893756,42.27004563595167],[-71.06459066655188,42.27005029521059],[-71.06459063637436,42.27005468589326],[-71.06458949708168,42.27005907147058],[-71.06458835778261,42.27006345794815],[-71.06458685051312,42.27006811942485],[-71.06458459320514,42.27007414742469],[-71.0645808596364,42.27007961973983],[-71.0645786004277,42.27008592412662],[-71.0645748630769,42.27009194651475],[-71.06457002157782,42.27009741732973],[-71.06456518197146,42.27010261265774],[-71.06456034923242,42.27010698513099],[-71.06455439983318,42.27011244994397],[-71.06454809068715,42.27011681681865],[-71.06454214761129,42.27012118508106],[-71.06453621827146,42.27012390763414],[-71.06453027640624,42.27012827590053],[-71.06452545943239,42.27013017798983],[-71.06451916792756,42.27013180169455],[-71.06451212947546,42.27013451824003],[-71.06450620458996,42.27013641612729],[-71.06447627645923,42.27013630263345],[-71.06444599546035,42.27013426743875],[-71.06440759586224,42.27013055388125],[-71.06440279208863,42.27013053566071],[-71.06439688727482,42.27012969038314],[-71.06439098124903,42.27012884510066],[-71.06438617626335,42.27012882687482],[-71.06438026457947,42.27012880445089],[-71.06437546201813,42.27012878623382],[-71.06436954912212,42.27012876380473],[-71.06436473645591,42.27013039131003],[-71.06435844307104,42.2701322877918],[-71.06435362675548,42.27013391708341],[-71.06434880977588,42.2701358191653],[-71.0643454678434,42.27013827693009],[-71.06434065329374,42.27014017812051],[-71.064335830642,42.2701429048615],[-71.06433211145372,42.27014645866902],[-71.06432840224913,42.27014891323942],[-71.06432468184796,42.27015246704205],[-71.06432244148924,42.27015602645935],[-71.06431982899825,42.27015958446488],[-71.06431756410785,42.27016671080521],[-71.06431491954334,42.27017493227901],[-71.06431375689777,42.27018288658175],[-71.064313702182,42.27019084238677],[-71.06431364744763,42.27019880089269],[-71.06431611838745,42.27021582516791],[-71.06431821720848,42.2702328462308],[-71.06432290586427,42.27024960432554],[-71.06432759830554,42.27026581234686],[-71.0643570900609,42.2703290384412],[-71.06436801877695,42.27035130757515],[-71.06437748039018,42.2703727473621],[-71.06438219617618,42.27038538755291],[-71.06438432710074,42.27039774334523],[-71.06438682825907,42.27041037693603],[-71.06438677919813,42.27041751168225],[-71.06438673013102,42.27042464732874],[-71.06438522110213,42.27042903240164],[-71.06438519656848,42.27043260022489],[-71.06438517203482,42.27043616804811],[-71.06438514752593,42.27043973227023],[-71.06438770974556,42.27044330990528],[-71.06438990549006,42.2704460632697],[-71.06439246327042,42.27045046286802],[-71.06439466265188,42.27045321624614],[-71.06439833913518,42.27045569883266],[-71.06440054296301,42.27045762934699],[-71.06440421310046,42.27046121118399],[-71.0644148457423,42.27047277544098],[-71.06442437408928,42.27048433820954],[-71.06443278699584,42.27049699151993],[-71.06444007580015,42.27051128992856],[-71.06444697159222,42.2705291529618],[-71.06444950040454,42.27053794324559],[-71.064452760695,42.27054700999675],[-71.06445750412627,42.27055580957963],[-71.06446224756502,42.27056460826199],[-71.06446847480856,42.27057286698533],[-71.0644754397563,42.2705808494108],[-71.06448277763013,42.27058801307048],[-71.06448755691049,42.27059159911084],[-71.06449233619766,42.27059518425067],[-71.0644982290484,42.27059795253324],[-71.06450411504925,42.27060154096905],[-71.06451000980114,42.27060403286401],[-71.06451590832243,42.27060597648603],[-71.06452216969191,42.27060874346385],[-71.06452917682064,42.27061041489473],[-71.06453768338415,42.27060962516987],[-71.06454469170077,42.27061130020556],[-71.06455207863462,42.27061132821449],[-71.06456758802861,42.27061248269317],[-71.06458199501569,42.27061336019712],[-71.06460707253814,42.2706197682249],[-71.06463103689714,42.27062781778816],[-71.06465499762578,42.27063586733264],[-71.06467305553797,42.27064224513484],[-71.06469111262956,42.27064944851248],[-71.0647028789845,42.27065745182415],[-71.06471354309524,42.27066462537549],[-71.06471832240064,42.27066821050586],[-71.06472309604648,42.27067261939541],[-71.06472898447282,42.27067621052969],[-71.0647352446464,42.27067897749122],[-71.06474224907832,42.27068174907377],[-71.0647496202658,42.27068424655202],[-71.06475662429774,42.27068619435139],[-71.0647640047823,42.27068786808315],[-71.06477211915357,42.27068982098987],[-71.06477950165565,42.2706906718478],[-71.06478910928803,42.27069070825715],[-71.06479723686503,42.27069073905702],[-71.06480574223002,42.27068994840743],[-71.0648190396974,42.27068999879664],[-71.06483234322562,42.27069004920725],[-71.06486594060208,42.27069374172491],[-71.06492574918772,42.27070028127061],[-71.06493413837535,42.27071623047667],[-71.06494583937311,42.27073410988154],[-71.06497343389881,42.27075122841075],[-71.06499733765668,42.27076723457916],[-71.06504289111197,42.27075149149206],[-71.06505969527812,42.2707798211673],[-71.0651648212591,42.27074550612505],[-71.06532627504494,42.27091125249794],[-71.06521567655399,42.27094969378259],[-71.06522517375338,42.27095681875278],[-71.06524903151173,42.27097954818444],[-71.06527288978522,42.27100273496878],[-71.06530257954444,42.27102846017823],[-71.065332259926,42.27105555561114],[-71.065365626826,42.27108403885613],[-71.06539805981674,42.27111366104621],[-71.06543635934429,42.27114124642403],[-71.06546977724211,42.27116195478201],[-71.06550290224696,42.27118083169839],[-71.06556983189661,42.27120875492313],[-71.06560944779592,42.27122399751524],[-71.065613142511,42.2712240114901],[-71.06561775969264,42.27122402895394],[-71.06562146189184,42.27122312824521],[-71.06562515660686,42.2712231422197],[-71.06563008759738,42.27122247483624],[-71.06563132700884,42.27122133613445],[-71.06563225068754,42.27122133962801],[-71.0656350217237,42.27122135010862],[-71.06563595517203,42.27121975199348],[-71.06563811042233,42.27121976014501],[-71.065639651099,42.27121976597209],[-71.0656418114026,42.27121886033135],[-71.06564304297422,42.27121886498931],[-71.06564550732959,42.27121887430977],[-71.06564673263573,42.27121979275528],[-71.06564919577892,42.27121980207108],[-71.06565042735056,42.27121980672895],[-71.06565165300015,42.27122049829845],[-71.06565255907654,42.27122324586006],[-71.06565409226965,42.27122416637026],[-71.06565408600434,42.27122508015786],[-71.0656540734552,42.27122691043396],[-71.06565529875544,42.27122782977966],[-71.06565529405184,42.27122851579561],[-71.06565527994104,42.27123057384333],[-71.06565527524361,42.27123125895897],[-71.06565526426854,42.27123285966277],[-71.06565525642303,42.27123400392293],[-71.06565401857353,42.27123491485327],[-71.06565400761076,42.27123651375655],[-71.06565398251246,42.27124017430867],[-71.06565518273324,42.27124475150565],[-71.06565607541687,42.27124909886162],[-71.06565728311546,42.27125276227556],[-71.06565971525242,42.27125711725429],[-71.0656633801805,42.27126147599501],[-71.06566674191944,42.27126514755528],[-71.06567041311966,42.27126859160789],[-71.0656740761257,42.27127340769676],[-71.06567898517072,42.27127594171884],[-71.06568357221919,42.27128053172372],[-71.06568848631159,42.27128215285345],[-71.06575178378783,42.2713011419963],[-71.06577114344067,42.27130670436659],[-71.0657806721044,42.27130925585094],[-71.06579019207497,42.27131272201319],[-71.06579970506071,42.27131756111595],[-71.06580797743787,42.27132353711641],[-71.0658162529388,42.27132905757291],[-71.06582943159538,42.27133779625513],[-71.06584384738228,42.27134608315719],[-71.06586195825054,42.27135415534771],[-71.06587976243586,42.27136222727635],[-71.06589880084405,42.27136938735526],[-71.06591908543618,42.27137495139595],[-71.06594306004328,42.27138121721377],[-71.0659670447709,42.27138565274139],[-71.06599102914127,42.27139031784081],[-71.06602087760785,42.27139294519312],[-71.06605227023888,42.27139489323896],[-71.06608120598088,42.27139591818216],[-71.06611107167623,42.27139603101958],[-71.06612186013969,42.27139447013268],[-71.06613389183629,42.27139085764114],[-71.06614468691667,42.27138815338768],[-71.06615670730062,42.27138636937383],[-71.06618320338619,42.27138395400652],[-71.06620938687851,42.27138222348607],[-71.0662392537798,42.27138233629474],[-71.06626819108473,42.27138313251886],[-71.0663029502036,42.27138806512247],[-71.06633802538964,42.27139162864225],[-71.06636786256105,42.27139608528476],[-71.06637863257585,42.27139704156149],[-71.06638817102821,42.27139799138666],[-71.06639893478905,42.27139986144908],[-71.06640629919126,42.27140354899981],[-71.06641335727804,42.27140700491509],[-71.06642072168809,42.27141069156458],[-71.06642745935575,42.27141597659269],[-71.06644187402644,42.27142426341491],[-71.06645629651966,42.27143140777579],[-71.06653404070613,42.27145388208977],[-71.06671631341474,42.27149984812492],[-71.06691379359545,42.27152826302218],[-71.06691665227117,42.27147041830032],[-71.06692382607085,42.27145695335795],[-71.06693713898258,42.2714462565997],[-71.06695165725478,42.27143922143033],[-71.06696980893213,42.2714413479745],[-71.06700671522387,42.27144766142828],[-71.06702363219738,42.27145024156484],[-71.06704023348225,42.27145396119722],[-71.0670737564232,42.27145957674094],[-71.06711128512507,42.27146474911794],[-71.06714850281395,42.27147037766613],[-71.06716971157476,42.27147571719092],[-71.06719154237074,42.27148014524478],[-71.06725149426693,42.27149317622535],[-71.06736282548498,42.27151211948559],[-71.0673905219224,42.271514281919],[-71.06741883848564,42.27151598932578],[-71.06746961139838,42.27152052453684],[-71.0674849093195,42.27153476017838],[-71.06751100072914,42.2715465210083],[-71.06755892646943,42.27156202379568],[-71.06757490854899,42.27156642795281],[-71.06758435997631,42.27157995553343],[-71.06758645088712,42.27158956877655],[-71.06758638377434,42.27159940077154],[-71.06758260474115,42.27161173604748],[-71.06765730145739,42.2716298541446],[-71.0679130922639,42.27155077954846],[-71.06794589908974,42.27152597618711],[-71.06799545000578,42.27143880764697],[-71.06803448250032,42.2713589181141],[-71.06807349931734,42.27128131348616],[-71.06807947211237,42.27126349907573],[-71.06808328844652,42.27124567565446],[-71.06808710979037,42.27122693934099],[-71.06808846418919,42.27120910666046],[-71.06808859046879,42.27119058512812],[-71.06808390740964,42.27115489286749],[-71.06807910273858,42.2711370379235],[-71.06803964236136,42.27104806526057],[-71.06804738685025,42.27103530733457],[-71.06820397736301,42.27094722229607],[-71.06820000058678,42.27095000009509],[-71.06813900004451,42.27100299955286],[-71.06816700013603,42.27108400009008],[-71.06817300031742,42.27111800022224],[-71.06818999946397,42.27121699972967],[-71.06817800038029,42.27134300023252],[-71.06809300035152,42.2715589999497],[-71.06802099957412,42.27177499987624],[-71.0679899999588,42.27194700025994],[-71.06798899972752,42.27211499998071],[-71.06801799959393,42.27221600010141],[-71.0680230001597,42.27228299990563],[-71.06799800023805,42.27245900039531],[-71.06787600005262,42.2729579998596],[-71.06779599958195,42.27325700023757],[-71.06771199962921,42.27354900001555],[-71.06762100015568,42.27389700031787],[-71.06743800022169,42.27457599999862],[-71.0671890002682,42.27550400029956],[-71.06697699959507,42.27625400042573],[-71.06681899961667,42.27678799984938],[-71.0666059995334,42.27752900041092],[-71.06650300018005,42.27790400039459],[-71.06623000034556,42.27883200025491],[-71.06604699964545,42.2795179997366],[-71.06591999983635,42.27992799958948],[-71.065635,42.279991],[-71.065507,42.280027],[-71.064778,42.280234],[-71.064106,42.280429],[-71.063784,42.280531],[-71.063384,42.280657],[-71.062214,42.281015],[-71.061691,42.281168],[-71.061475,42.281242],[-71.061318,42.28129],[-71.06071703246535,42.28145596727881],[-71.05989,42.281721],[-71.059245,42.281908],[-71.058932,42.281991],[-71.058904,42.281998],[-71.058601,42.282087],[-71.058462,42.282128],[-71.057963,42.282259],[-71.05779,42.282309],[-71.057275,42.282449],[-71.056972,42.282509],[-71.056631,42.282575],[-71.056536,42.282583]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000215,"geom:area_square_m":1966997.36769,"geom:bbox":"-71.0682039774,42.2675478114,-71.0402635507,42.2857660905","geom:latitude":42.27757,"geom:longitude":-71.05602,"iso:country":"US","lbl:latitude":42.276306,"lbl:longitude":-71.062054,"lbl:max_zoom":18,"mps:latitude":42.276306,"mps:longitude":-71.062054,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Cedar Grove"],"name:deu_x_preferred":["Cedar Grove"],"name:ita_x_preferred":["Cedar Grove"],"name:kor_x_preferred":["시더그로브"],"name:nld_x_preferred":["Cedar Grove"],"name:pol_x_preferred":["Cedar Grove"],"name:por_x_preferred":["Cedar Grove"],"name:spa_x_preferred":["Cedar Grove"],"name:srp_x_preferred":["Сидар Гроув"],"name:swe_x_preferred":["Cedar Grove"],"name:ukr_x_preferred":["Сідар-Гроув"],"name:vol_x_preferred":["Cedar Grove"],"reversegeo:latitude":42.276306,"reversegeo:longitude":-71.062054,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0b67c1d5eae351d0a3ebbf0e8b7dbbe2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108701997,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108701997,"wof:lastmodified":1566624100,"wof:name":"Cedar Grove","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524011,420780913,420523747],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108702003.geojson b/fixtures/microhoods/1108702003.geojson new file mode 100644 index 0000000..ee49e4f --- /dev/null +++ b/fixtures/microhoods/1108702003.geojson @@ -0,0 +1 @@ +{"id":1108702003,"type":"Feature","bbox":[-71.03550219079943,42.32935455607377,-71.02496344888941,42.33833676613131],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.02496344888941,42.33295509775657],[-71.02559237339887,42.33284351485587],[-71.02678347667344,42.3325151854919],[-71.0281562736679,42.33202268823225],[-71.02944831789797,42.33145556539854],[-71.03110374956775,42.33061979611256],[-71.03229485284236,42.3300974346694],[-71.03372821441008,42.32963476805421],[-71.0347981885381,42.32936612136115],[-71.03517364108355,42.32935455607377],[-71.03550219079943,42.33814677263219],[-71.02512451547483,42.33833676613131],[-71.02496344888941,42.33295509775657]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000074,"geom:area_square_m":673232.538314,"geom:bbox":"-71.0355021908,42.3293545561,-71.0249634489,42.3383367661","geom:latitude":42.334591,"geom:longitude":-71.030661,"iso:country":"US","lbl:latitude":42.333463,"lbl:longitude":-71.025913,"lbl:max_zoom":18,"mps:latitude":42.334814,"mps:longitude":-71.030761,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["City Point"],"name:deu_x_preferred":["City Point"],"name:swe_x_preferred":["City Point"],"reversegeo:latitude":42.334814,"reversegeo:longitude":-71.030761,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85849485,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"db3471ab356dfb20ec493af538ff09a0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108702003,"neighbourhood_id":85849485,"region_id":85688645}],"wof:id":1108702003,"wof:lastmodified":1566624101,"wof:name":"City Point","wof:parent_id":85849485,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85811087],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108702009.geojson b/fixtures/microhoods/1108702009.geojson new file mode 100644 index 0000000..2f2882c --- /dev/null +++ b/fixtures/microhoods/1108702009.geojson @@ -0,0 +1 @@ +{"id":1108702009,"type":"Feature","bbox":[-71.152262,42.33531416859165,-71.14829466822967,42.33768312769252],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.152262,42.337185],[-71.14980268252864,42.33768312769252],[-71.1503466383583,42.33681919784541],[-71.1495083064326,42.33695358693274],[-71.14938671630595,42.33698558433449],[-71.14929712358108,42.33704317965762],[-71.14918833241514,42.33711357394146],[-71.14908594072956,42.33715197082356],[-71.14898354904398,42.33717756874495],[-71.14888755683873,42.33719036770565],[-71.1487418707976,42.33686501345657],[-71.14829466822967,42.33580672759312],[-71.15005858742605,42.3353928918141],[-71.15009081019365,42.33531416859165],[-71.150906,42.335983],[-71.15126,42.336341],[-71.152262,42.337185]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":43467.795246,"geom:bbox":"-71.152262,42.3353141686,-71.1482946682,42.3376831277","geom:latitude":42.3365,"geom:longitude":-71.150109,"iso:country":"US","lbl:latitude":42.336951,"lbl:longitude":-71.15147,"lbl:max_zoom":18,"mps:latitude":42.336146,"mps:longitude":-71.149973,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Cleveland Circle"],"name:zho_x_preferred":["邦克山"],"reversegeo:latitude":42.336146,"reversegeo:longitude":-71.149973,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807537,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5132091"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7e854b319fd1402b14ec5dd8c62de4c6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108702009,"neighbourhood_id":85807537,"region_id":85688645}],"wof:id":1108702009,"wof:lastmodified":1566624101,"wof:name":"Cleveland Circle","wof:parent_id":85807537,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891305],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703033.geojson b/fixtures/microhoods/1108703033.geojson new file mode 100644 index 0000000..47e1f0c --- /dev/null +++ b/fixtures/microhoods/1108703033.geojson @@ -0,0 +1 @@ +{"id":1108703033,"type":"Feature","bbox":[-71.07414886665255,42.28738502740819,-71.06825674185708,42.29178921167367],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.07023277415688,42.2881223495068],[-71.07127957435455,42.28787942116256],[-71.07131955000396,42.28764955927623],[-71.07257737534758,42.28738502740819],[-71.07314261726837,42.28932369457517],[-71.0730142518239,42.28939235227052],[-71.07292053128141,42.28947572765714],[-71.07275818611627,42.289664777045],[-71.07414886665255,42.29045338210792],[-71.0717383703917,42.29103763418835],[-71.07148028566081,42.29102503123661],[-71.07123429624397,42.29104940547339],[-71.07091790369334,42.29112345099031],[-71.07071995280593,42.29120554740869],[-71.07053515194238,42.29130443935929],[-71.06890717886928,42.29178921167367],[-71.06825674185708,42.29040717673927],[-71.06934529305649,42.29002839989899],[-71.06966878630452,42.28990154599551],[-71.07056805193756,42.29003485402993],[-71.07116516887078,42.29008894224101],[-71.07023277415688,42.2881223495068]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":102783.892612,"geom:bbox":"-71.0741488667,42.2873850274,-71.0682567419,42.2917892117","geom:latitude":42.289771,"geom:longitude":-71.071244,"iso:country":"US","lbl:latitude":42.291531,"lbl:longitude":-71.073303,"lbl:max_zoom":18,"mps:latitude":42.288987,"mps:longitude":-71.071935,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Codman Square District"],"reversegeo:latitude":42.288987,"reversegeo:longitude":-71.071935,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b43f9039af56d599c5de8e2c9bea26ca","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703033,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108703033,"wof:lastmodified":1566624099,"wof:name":"Codman Sq","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891255],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703035.geojson b/fixtures/microhoods/1108703035.geojson new file mode 100644 index 0000000..a12b71a --- /dev/null +++ b/fixtures/microhoods/1108703035.geojson @@ -0,0 +1 @@ +{"id":1108703035,"type":"Feature","bbox":[-70.96871748942252,42.34388352635519,-70.95296051507167,42.35693643725345],"geometry":{"type":"MultiPolygon","coordinates":[[[[-70.96473690966732,42.35578482504091],[-70.96464199117621,42.35576489898298],[-70.9645616194078,42.35577522752975],[-70.96443960196419,42.35585396470102],[-70.96351239879078,42.35550909932186],[-70.96355319875163,42.35540967809445],[-70.96300260195594,42.35515657009868],[-70.96267899574272,42.35505544696242],[-70.96253121578854,42.35507424060851],[-70.96224765807284,42.35509267291658],[-70.96193608956145,42.35514198150491],[-70.96174673118044,42.3552212227122],[-70.9616791412194,42.35525109239966],[-70.96157154575975,42.35532989405878],[-70.96154337369182,42.3553797043353],[-70.9613938840629,42.35546901239279],[-70.96127176272601,42.35555926773964],[-70.96116277208013,42.35562845721013],[-70.96110849905493,42.35565839075988],[-70.96102805204887,42.3556774961841],[-70.96091959464668,42.35572692910348],[-70.96086478529392,42.35577661524331],[-70.96075734939882,42.35583675733123],[-70.96075709211497,42.35586694128514],[-70.9607213466556,42.35592550544638],[-70.96070357550184,42.35593553604666],[-70.96067017594201,42.35596125305098],[-70.96063307908553,42.355975142608],[-70.96057379881888,42.35598780362951],[-70.96055283149653,42.35598973004534],[-70.96054009908251,42.3559756887056],[-70.96047174704863,42.35596466441776],[-70.96041891751399,42.35595536136576],[-70.96026990566271,42.35594478494623],[-70.96017631480248,42.35594352098629],[-70.96009462510325,42.35593435599886],[-70.9600010306129,42.35593309277948],[-70.95997167575455,42.3559350076134],[-70.95986986587704,42.3559310570343],[-70.95984993416188,42.35592826792814],[-70.95983864488632,42.35584232565594],[-70.95969091520627,42.35581199388438],[-70.95961080380324,42.35579131036295],[-70.95948970857548,42.3557613789758],[-70.95939497700623,42.35571977210195],[-70.95936887712969,42.35570016787442],[-70.95931434412786,42.35576055461252],[-70.95921953064392,42.35572882797025],[-70.95909843450713,42.35569889616497],[-70.95904485508898,42.35564787638103],[-70.95884391236724,42.35556652993033],[-70.95877928812668,42.35553855157053],[-70.95870514333285,42.35548892932961],[-70.95867303829144,42.35546216632105],[-70.95865634503724,42.35543557398565],[-70.95861570295368,42.35538571686006],[-70.95844170909004,42.35522519026706],[-70.9584021563537,42.35525442121266],[-70.95838105272375,42.35523925444473],[-70.95828963147196,42.35517412486464],[-70.9581953640679,42.3551067184531],[-70.95810390956962,42.35504551476205],[-70.95802440729769,42.354984930913],[-70.95796785616464,42.3549424737406],[-70.95790430184744,42.35489996011942],[-70.9578244405501,42.3548602091201],[-70.9577367664454,42.35481927334489],[-70.9576466009908,42.35476369501759],[-70.95757555483344,42.35473243020699],[-70.95749573978895,42.35468365371137],[-70.95742497737496,42.35464111932011],[-70.95736602586253,42.35461552119558],[-70.95730669944743,42.35459104124143],[-70.95723417395419,42.35455468975689],[-70.95714678411632,42.35450533258302],[-70.95706070673465,42.35445934775092],[-70.95700697660129,42.35442139229843],[-70.95695153517947,42.35438455411111],[-70.95688795788433,42.35434486134147],[-70.95681905589778,42.35430570967245],[-70.9567556390613,42.35427109706544],[-70.95667186699745,42.35421949416619],[-70.95661867766336,42.35418603536941],[-70.95655849690226,42.35414805012247],[-70.95650179577773,42.3541044616306],[-70.95644028974104,42.35406534018328],[-70.95640123024428,42.35404152273718],[-70.95633588772938,42.35400915423672],[-70.95625953479467,42.35395702341965],[-70.9562118803464,42.3539179727432],[-70.95614400032137,42.3538512556755],[-70.9560870645178,42.35381102667544],[-70.95604211070435,42.35376805619909],[-70.95599627673819,42.35371551137495],[-70.95592618854693,42.35366115652067],[-70.95586689570739,42.35361191327826],[-70.95586492658994,42.35359671143457],[-70.95582471520565,42.35355432509563],[-70.95576884939047,42.35347809628366],[-70.9557010935755,42.35339394706309],[-70.95567975280072,42.35336289740955],[-70.95565354474691,42.35332112647174],[-70.95562277675548,42.35328497070645],[-70.95559833931613,42.35323534403437],[-70.9555661122878,42.35318961297901],[-70.95556092234615,42.35313331078201],[-70.95555551673206,42.35310009660485],[-70.95549129608776,42.35306883938881],[-70.95541779964587,42.35301503436055],[-70.95532916424804,42.35295553881967],[-70.95524662688806,42.35289437143378],[-70.95516942387076,42.35282930216059],[-70.95509785178294,42.35277155553177],[-70.9550371279949,42.35271105854051],[-70.9549737175052,42.35265233677402],[-70.95409117162679,42.35128081162602],[-70.95398075763732,42.35112881127996],[-70.95390561161298,42.35091990298928],[-70.95389332162554,42.35080047584148],[-70.95373709031938,42.35059449180484],[-70.953779897596,42.35064623364632],[-70.95382442771316,42.3506953898938],[-70.9538550100432,42.35073493221314],[-70.95389054806697,42.3507711057344],[-70.95393005102574,42.35082813818359],[-70.95398030637519,42.35087282186346],[-70.95398529234674,42.35084526669387],[-70.95397695056113,42.35082104596573],[-70.95396369592392,42.35079790747472],[-70.9539454628049,42.35075617398244],[-70.95391922770403,42.35072060644362],[-70.95387893332722,42.35068833744398],[-70.95385096518216,42.35065275715662],[-70.95382515617136,42.35061100656754],[-70.95378083502543,42.35053765218566],[-70.95374141854377,42.35049299199444],[-70.95371727830575,42.3504754484332],[-70.95368528121216,42.35040551697445],[-70.95366789811254,42.35033228602185],[-70.95362311361352,42.35026737417293],[-70.95356542198323,42.3501843814926],[-70.95352909966526,42.35010880706534],[-70.95349589897313,42.35004449309226],[-70.95345810325824,42.34998410417801],[-70.95343220641108,42.3499310867361],[-70.95340139147532,42.34989775164871],[-70.9533713643484,42.34986103697496],[-70.95333249256738,42.34968585120349],[-70.9533121117408,42.34956477305452],[-70.95329581534584,42.34949606399475],[-70.95329554471083,42.34949297108179],[-70.95345224782676,42.34935582893957],[-70.9534635468892,42.34935393349738],[-70.95352214592697,42.34934019795089],[-70.95360668898735,42.34937793510205],[-70.9536836690621,42.34933110359889],[-70.95371268037107,42.34931340290871],[-70.95375988513459,42.34928755900724],[-70.95380340369665,42.34926032282053],[-70.95384098895332,42.34923470778357],[-70.95391461124873,42.34919142716151],[-70.9539392083124,42.34916949025131],[-70.95395712544592,42.34916438871418],[-70.95397580111697,42.34915549331559],[-70.9540212055048,42.3491450052583],[-70.95397477804065,42.34914085770058],[-70.95396852082469,42.34913993579151],[-70.95399961572407,42.34907218740539],[-70.95405588011462,42.34893991345228],[-70.95405645785944,42.34887295826461],[-70.9540662322474,42.34872592013472],[-70.95408837263096,42.34864672241751],[-70.95411528787074,42.3484857687053],[-70.95412166354029,42.34830386384895],[-70.95410903163858,42.34822449923941],[-70.95412264601173,42.34818998968814],[-70.95411799389619,42.34817212817725],[-70.95410516659933,42.34811499192146],[-70.95408526278572,42.34806412956189],[-70.95407585892458,42.34803911421982],[-70.95407245922455,42.34800424840162],[-70.95406784135672,42.34798199899267],[-70.95406430683508,42.34796332171199],[-70.95405643568517,42.34793199984716],[-70.95404347365046,42.34789105302014],[-70.95404012607825,42.3478501491411],[-70.95402230115711,42.34781521302607],[-70.95401554292594,42.34778389914256],[-70.95400155207984,42.34773306844161],[-70.95398986044086,42.34767346353702],[-70.95398210660134,42.34762869715414],[-70.95398245941942,42.34758781354328],[-70.95398262046491,42.34756915200636],[-70.95396945842204,42.34755125457747],[-70.95394491456587,42.34748061398603],[-70.95393292096442,42.34745558632984],[-70.95392346280241,42.34743688001025],[-70.95391178611946,42.34741816495405],[-70.95390825046167,42.34739948766051],[-70.95390361260358,42.34737970676704],[-70.95391597908095,42.34736110679719],[-70.95392100418924,42.34733615996302],[-70.95391737964019,42.34732736033045],[-70.95391268607173,42.34731389387123],[-70.95390439652135,42.34728888110138],[-70.95389626436015,42.34724521217698],[-70.95389194219447,42.34723174477968],[-70.95388357085146,42.34721578862985],[-70.9538752492937,42.34719434629213],[-70.95386357979555,42.34717480568946],[-70.9538456366519,42.34715331764951],[-70.95381725300514,42.34709884886683],[-70.95379939173,42.34706830329687],[-70.95375410744742,42.34704311747552],[-70.95371575062363,42.34702976297076],[-70.95368967025992,42.34700823534509],[-70.95367398963327,42.34698209357597],[-70.95366123468284,42.34695980368169],[-70.95364815579599,42.34693230131421],[-70.9536362252535,42.3469001372498],[-70.95362838054695,42.34686607406091],[-70.95361520338952,42.34685009595391],[-70.95359029400828,42.34682143719569],[-70.95362439321106,42.34677083495318],[-70.9535121651484,42.3465304654582],[-70.953395683518,42.34613969859328],[-70.95337863555618,42.34614318543597],[-70.95332413590754,42.34620000082011],[-70.95331093761374,42.34618649389655],[-70.95328968736897,42.34616251961726],[-70.95327654242283,42.34614270004304],[-70.95326125369947,42.34611408695152],[-70.95323967487617,42.34608544574791],[-70.95322315954822,42.34607027279149],[-70.95321015337308,42.34603454017447],[-70.95319857678344,42.34600429717827],[-70.95319763590564,42.34598481112208],[-70.95319047488589,42.34595706134569],[-70.95318950556697,42.34594086664912],[-70.95318969765161,42.34591864006686],[-70.95318988263281,42.34589723542422],[-70.95319482965121,42.34588134435491],[-70.9532031589205,42.34585915466857],[-70.95322860027879,42.34586888364958],[-70.95325348180033,42.34590028287406],[-70.95326315530411,42.3458940186723],[-70.95327985440304,42.34588805976605],[-70.95330028087433,42.34587827790195],[-70.95331743077465,42.34586326592069],[-70.95333572412501,42.34584359492124],[-70.953339189293,42.34582769770077],[-70.95333460040393,42.34580270427441],[-70.95333623857458,42.34578405065333],[-70.9533434822389,42.34575911438309],[-70.9533366937622,42.34573136548546],[-70.95333202299246,42.34571542868302],[-70.9533236579888,42.34569919972486],[-70.95331055453231,42.34567416671438],[-70.95329888548892,42.34565462604795],[-70.95329429176613,42.34562963349622],[-70.95326460090264,42.34559820690844],[-70.95329464504859,42.34558874626852],[-70.95329113337687,42.34556732584826],[-70.95328654678109,42.34554150955541],[-70.953283335018,42.34548523996188],[-70.95327536380303,42.34546571957545],[-70.95327093492381,42.34542179270324],[-70.95326277974475,42.34538086591629],[-70.95323639172251,42.34535220183828],[-70.95323452660385,42.34531130405897],[-70.95323849713353,42.34528004112732],[-70.95323736864651,42.34523914865089],[-70.95320887376148,42.34519785234482],[-70.95320928164088,42.34515065337163],[-70.95320944288486,42.34513199452666],[-70.95320152870143,42.34510616330353],[-70.95319323485153,42.34508115224772],[-70.9531817307844,42.34504267904743],[-70.95316400557357,42.3449964922002],[-70.9531557117451,42.34497148204137],[-70.95315215509733,42.34495527503552],[-70.95313937456523,42.34493573266387],[-70.95312738298611,42.34491070401521],[-70.9531179515943,42.34488925272927],[-70.95309826296932,42.34481342226371],[-70.95307733229711,42.34475267941135],[-70.95304765363903,42.34467679871349],[-70.9530563553453,42.34465461350505],[-70.95306868361875,42.34464040059585],[-70.95306998735975,42.3446181810958],[-70.95306053228859,42.34459947650565],[-70.95304849331166,42.3445796612573],[-70.95305268685573,42.3445226039967],[-70.95304106674206,42.34449757710324],[-70.95302423270407,42.34447636608419],[-70.95300659437868,42.34446283799641],[-70.95299455082728,42.34444411838479],[-70.95298625713819,42.34441910821074],[-70.95296146296614,42.34437782853925],[-70.95296051507167,42.34435916531445],[-70.95297026656023,42.34434329530747],[-70.95300031616874,42.34433356017902],[-70.95303774934578,42.34432495673234],[-70.95306776689831,42.34431878752167],[-70.95310990859917,42.34432173208809],[-70.95313108816946,42.34435366382795],[-70.95319117542674,42.34433529088801],[-70.95320376444006,42.34429089484989],[-70.95322065043695,42.34426325942046],[-70.95324272771343,42.34423400292639],[-70.95326812546472,42.34420558419101],[-70.95321765688179,42.34418147184582],[-70.9532178276119,42.34416171467614],[-70.95322638217203,42.34415654262075],[-70.95325164829332,42.3441432140897],[-70.95327352755994,42.34413700792646],[-70.95329879491622,42.34412395578298],[-70.95332780151054,42.34410625605836],[-70.9533412316811,42.34409287393313],[-70.95334951213165,42.34407672320859],[-70.95335444702022,42.34406165314281],[-70.95336304185078,42.34405181681483],[-70.95336690319859,42.3440331755566],[-70.95337560108705,42.34401098760276],[-70.95337587130103,42.34397970886679],[-70.95338897877824,42.34396110976415],[-70.95340240185986,42.34394882416318],[-70.95343141544484,42.34393030247166],[-70.95346156896787,42.34390794371134],[-70.95348689311308,42.34388858249449],[-70.95352059745491,42.34388352635519],[-70.95357232910638,42.34388981143118],[-70.9536272285248,42.34391504304387],[-70.95365227179201,42.34392778425104],[-70.9536776034889,42.34395013212296],[-70.95370726659682,42.34398484818207],[-70.95372847945569,42.34401266470072],[-70.95374051852991,42.34403248078053],[-70.95376162481362,42.34407264619978],[-70.95376140215134,42.3440984387335],[-70.9537912584406,42.34411092998415],[-70.9538534458635,42.34414881921236],[-70.9538628964112,42.34416834839151],[-70.95391330008722,42.34419986781131],[-70.95395112994859,42.34423105830483],[-70.95398465456705,42.34424740850512],[-70.95403992216322,42.34427264256528],[-70.95407831527304,42.34428160548734],[-70.95411991296686,42.34430512615371],[-70.95417518186541,42.34433036195482],[-70.95420498027649,42.34434916302302],[-70.95423372515029,42.34436164798101],[-70.95427686502731,42.34437804283469],[-70.95434016820724,42.34441566339937],[-70.95440573587375,42.34444725546308],[-70.95449204896636,42.34447620450288],[-70.95456769079597,42.34449796978109],[-70.95468721076519,42.34453667969094],[-70.95480983258311,42.34455866491078],[-70.95487678417483,42.34455898235177],[-70.95498524616924,42.34454961663644],[-70.9551342926185,42.34451025970076],[-70.95522952429799,42.34449122666139],[-70.95532447901972,42.34446121937857],[-70.95552538953909,42.34441250051665],[-70.95588980945185,42.3442342107009],[-70.95597195843109,42.34391585010296],[-70.95597041826069,42.34393082380359],[-70.95597139640485,42.34401580052312],[-70.95597155389865,42.34408556189383],[-70.95597836276927,42.34415368107751],[-70.95596753006807,42.34422397203905],[-70.95595257236744,42.34428634605139],[-70.95595261106618,42.34432743591231],[-70.95595249517604,42.34432919905103],[-70.95587013194034,42.34458673705299],[-70.95596355021551,42.34460611331091],[-70.95604826801552,42.34464822591245],[-70.95610721338791,42.34467622048336],[-70.95615838484858,42.34470500202813],[-70.95618690857822,42.34474328083213],[-70.9562286558258,42.34479259681891],[-70.9563430449604,42.34486887454092],[-70.95646462613978,42.34501214232088],[-70.95650364658448,42.34500920003209],[-70.95651580026592,42.34503458830741],[-70.95652088621883,42.34505879349182],[-70.95650586662225,42.3450857440866],[-70.95649409573954,42.34510988849728],[-70.9564872363779,42.34513573338152],[-70.9565219976378,42.34514939498293],[-70.95655297535644,42.34514335094209],[-70.95657969642521,42.34512435667398],[-70.95661000020212,42.34510422244657],[-70.95665570403452,42.34508306442108],[-70.95671503764329,42.34506309435326],[-70.95675300821497,42.34503570928974],[-70.95677983887843,42.3450234452317],[-70.9567756476388,42.3450059830278],[-70.95685957450307,42.34496080454949],[-70.95821809586364,42.34643133096221],[-70.95833668326573,42.3472427106782],[-70.95835085559554,42.34725784934452],[-70.95835153362701,42.34726271775398],[-70.95835410763488,42.3472613227119],[-70.95835415213823,42.34726136973709],[-70.95837157312963,42.34728789177859],[-70.95839137802233,42.34732119259317],[-70.95841636491592,42.34734943742482],[-70.95846272192065,42.34740537075827],[-70.9584886076257,42.34746006068488],[-70.95850489291028,42.34750740757135],[-70.9585267606633,42.34756828342588],[-70.95856047973624,42.3476145879257],[-70.95860155180497,42.34766934843159],[-70.95863462368128,42.34772747438571],[-70.95866352933092,42.3477849991222],[-70.95869331842631,42.34782509462327],[-70.95871494064014,42.34782234966554],[-70.95874682668713,42.34793030244073],[-70.95879418469995,42.3480158655732],[-70.95884385175606,42.3480910140915],[-70.95889410266135,42.34814119194756],[-70.95892264730956,42.34817782438133],[-70.95897377709699,42.34821181716512],[-70.95901443228954,42.34825920930742],[-70.9590393529733,42.3482870404462],[-70.95914766031615,42.34838304641674],[-70.95934912561151,42.34857361115537],[-70.95945637516442,42.34866412363072],[-70.95952326765735,42.34871520230347],[-70.9595901742992,42.34876463705751],[-70.95967038903238,42.34881495628027],[-70.95973682965287,42.34887564068811],[-70.95986856216561,42.34895830735814],[-70.95994856064875,42.34899078955326],[-70.96003854424451,42.34902414145375],[-70.96008758892214,42.34904220756192],[-70.96015210660268,42.34906830853285],[-70.96021082468069,42.34908010620946],[-70.96024572423296,42.34908686742118],[-70.96023038691895,42.34908654514349],[-70.96028307350872,42.34911548676275],[-70.96033333428659,42.3491342850139],[-70.9603683336537,42.34914514391475],[-70.96045315657987,42.3491838100384],[-70.96055147885951,42.34921802173221],[-70.96056683528504,42.34922151580789],[-70.96059160666036,42.34924050496868],[-70.96066457756841,42.34927295099276],[-70.96079514122728,42.349319118408],[-70.9608655189906,42.34935237591623],[-70.96098643671178,42.349402063067],[-70.96110873704338,42.34946300759693],[-70.96118858491452,42.3495133240238],[-70.96130983730232,42.34952377019617],[-70.96141760508308,42.34955363643733],[-70.96156625409184,42.34960510130271],[-70.96161872814774,42.34965529014605],[-70.96168579852832,42.34968578845195],[-70.96172734190436,42.34971644091747],[-70.96180765177314,42.34975605902617],[-70.96188724263612,42.34983655895552],[-70.96194073784926,42.34989745517073],[-70.96204912880236,42.34989796230488],[-70.96214263500957,42.3499082777864],[-70.9622243090249,42.34991826326517],[-70.96241283378113,42.3500553238901],[-70.96246675898709,42.35010140475849],[-70.962527572498,42.35015402065073],[-70.96259482221934,42.35020610030204],[-70.96267288729976,42.35025935942553],[-70.96274356004054,42.35031314664273],[-70.96283456284003,42.3503810968442],[-70.96291651877213,42.35044674586918],[-70.96295702570856,42.35047508557554],[-70.96298344296588,42.35049263691871],[-70.9630713342052,42.35048293429939],[-70.96312637473095,42.35049894650417],[-70.96316121147633,42.35050866040822],[-70.96320697202029,42.35052350477742],[-70.96321198607168,42.35052606702401],[-70.96301265352304,42.35070347186664],[-70.96306641602732,42.35073308613377],[-70.96310713646506,42.35077334042373],[-70.963134263377,42.3508028284927],[-70.9631739503158,42.35083429552661],[-70.96325389597364,42.35087391090435],[-70.96342864752108,42.35094497670802],[-70.96348257566267,42.35095510550296],[-70.96354972853878,42.35097599870961],[-70.96364472082777,42.35098604620089],[-70.96376571949352,42.35102694925891],[-70.96394081028595,42.35105794990548],[-70.96406190223513,42.35108787935459],[-70.96425133936904,42.35112882445665],[-70.96438511333088,42.35119009349471],[-70.96454569522575,42.35123090370111],[-70.96466652887779,42.35129128837888],[-70.96472160035675,42.35134121507141],[-70.964827750548,42.35143171550585],[-70.96486784596193,42.35150242602108],[-70.9649212630362,42.35157292211828],[-70.96497468604913,42.3516428735365],[-70.96508032669932,42.35179374171313],[-70.96514834331647,42.35184400119947],[-70.96518864728402,42.35193419410253],[-70.96522772453851,42.3519941979089],[-70.9652273024021,42.35204413905169],[-70.96521348096914,42.35210362045341],[-70.96522627953617,42.35216514958748],[-70.96519968051179,42.35220426805417],[-70.96517151391343,42.35225407835937],[-70.96513133573644,42.35232413989873],[-70.96504873239046,42.35242364276237],[-70.9652105954939,42.35244497733643],[-70.96521017335617,42.35249491667362],[-70.9649399485286,42.35251314208732],[-70.96487210655992,42.3525734713399],[-70.96485828344838,42.35263295448688],[-70.96484343462815,42.35268282848509],[-70.96484412273945,42.3527327756874],[-70.96485718326038,42.35276302163919],[-70.96485692563006,42.35279347930245],[-70.96486991320585,42.35283278190473],[-70.9648827996969,42.35288360694111],[-70.96495056571383,42.35296404873132],[-70.96502991754156,42.35307390847684],[-70.96515050121273,42.3531644766086],[-70.96528430949874,42.35326580973887],[-70.96556650666437,42.35340706828624],[-70.96574092960408,42.3535184667811],[-70.96603619501677,42.35368997363527],[-70.96622402713676,42.35379073091302],[-70.96642653766587,42.35386192090695],[-70.96662756799918,42.35393337646565],[-70.96683016840501,42.35399386522855],[-70.96713943245281,42.35408530317592],[-70.96732740096067,42.35412623902823],[-70.9675826585606,42.35421660633097],[-70.96783772996376,42.35432919512931],[-70.96821447807314,42.35449119529886],[-70.96838970178611,42.35455182837996],[-70.96857700188946,42.35467288370023],[-70.96863034398453,42.35475326020463],[-70.9686709058461,42.35481326783957],[-70.96860179071183,42.35489307759646],[-70.96856170346837,42.35495271256666],[-70.96852131958282,42.35500329186723],[-70.96843959902411,42.35504215629138],[-70.96827685194127,42.35508146621133],[-70.96811455544628,42.35511090353105],[-70.9679669420433,42.35511022070328],[-70.96789943714467,42.3551304882604],[-70.96788467772637,42.35516966030132],[-70.96784466337103,42.35522024017457],[-70.96781642363605,42.35527883314691],[-70.96778833960514,42.35531876728275],[-70.96777479892704,42.35538922845866],[-70.96776233313055,42.35541935591314],[-70.96777523423455,42.35546935958004],[-70.96780116227097,42.35550954277613],[-70.9679364378858,42.35556999164282],[-70.96817819636058,42.35568224433881],[-70.968499924851,42.3558327371235],[-70.96871748942252,42.35594475260881],[-70.96741048782955,42.35693643725345],[-70.9673713076549,42.35690924330444],[-70.96708943514395,42.3567268284361],[-70.96684646201452,42.35662609075082],[-70.96649794173186,42.3564944014173],[-70.96621530368786,42.35640308633365],[-70.96605445859036,42.35639163602217],[-70.96593352474324,42.35634195428327],[-70.96578357312292,42.35631107356187],[-70.96567682702256,42.35628999686058],[-70.96555623090292,42.356200252188],[-70.96540790046673,42.35610873182032],[-70.96530054869639,42.3560281054249],[-70.96520737039293,42.35597772908856],[-70.96511254435728,42.35594710382478],[-70.96499152613723,42.35590729874685],[-70.96489819283867,42.35587558368795],[-70.964790493807,42.35583584037076],[-70.96473690966732,42.35578482504091]]],[[[-70.95338152546859,42.35013148820332],[-70.95339385609181,42.35008958299461],[-70.95344414063766,42.35013147793406],[-70.95346850500009,42.35016478234899],[-70.9534974617498,42.35021611815934],[-70.95352963708105,42.35026523831731],[-70.9535779605619,42.35033635297221],[-70.95361490238008,42.35036185841326],[-70.95364378898302,42.35039969657304],[-70.95366496383436,42.35045043267601],[-70.95369985091322,42.35049505336988],[-70.95370379027048,42.35054626936626],[-70.95372848249671,42.35058408847612],[-70.95373195157684,42.35058828054111],[-70.95359940607594,42.3504782906264],[-70.95338630957959,42.35013673357799],[-70.95338152546859,42.35013148820332]]],[[[-70.96029992966746,42.34908601448285],[-70.9603298949334,42.34908615512248],[-70.96037310279642,42.3490951394125],[-70.96038583427867,42.3491001580034],[-70.96037007785552,42.34909731834369],[-70.96030981297466,42.34909141224426],[-70.96028614989338,42.34908920798606],[-70.96029992966746,42.34908601448285]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000087,"geom:area_square_m":798557.893631,"geom:bbox":"-70.9687174894,42.3438835264,-70.9529605151,42.3569364373","geom:latitude":42.351238,"geom:longitude":-70.959409,"iso:country":"US","lbl:latitude":42.350369,"lbl:longitude":-70.958349,"lbl:max_zoom":18,"mps:latitude":42.352139,"mps:longitude":-70.959295,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Deer Island"],"name:deu_x_preferred":["Deer Island"],"name:eng_x_variant":["Deer Is","Deerisland"],"name:fra_x_preferred":["Île Deer"],"name:hun_x_preferred":["Deer Island"],"name:ita_x_preferred":["Deer Island"],"name:jpn_x_preferred":["ディア島"],"name:kor_x_preferred":["디어섬"],"name:swe_x_preferred":["Deer Island"],"reversegeo:latitude":42.352139,"reversegeo:longitude":-70.959295,"src:geom":"bra","src:lbl_centroid":"mz","wof:belongsto":[85891271,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a50f97e3fd83ecd44167b90801e41fb6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703035,"neighbourhood_id":85891271,"region_id":85688645}],"wof:id":1108703035,"wof:lastmodified":1566624099,"wof:name":"Deer Island","wof:parent_id":85891271,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865507],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703037.geojson b/fixtures/microhoods/1108703037.geojson new file mode 100644 index 0000000..ee378dc --- /dev/null +++ b/fixtures/microhoods/1108703037.geojson @@ -0,0 +1 @@ +{"id":1108703037,"type":"Feature","bbox":[-71.05116173539577,42.33119297850943,-71.03525275536067,42.33562430975389],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.05116173539577,42.33281705426765],[-71.04565327225708,42.33546245601815],[-71.03540793078474,42.33562430975389],[-71.03525275536067,42.33147170858897],[-71.04854981974339,42.33119297850943],[-71.05116173539577,42.33281705426765]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000057,"geom:area_square_m":522809.282808,"geom:bbox":"-71.0511617354,42.3311929785,-71.0352527554,42.3356243098","geom:latitude":42.333321,"geom:longitude":-71.042257,"iso:country":"US","lbl:latitude":42.332039,"lbl:longitude":-71.046081,"lbl:max_zoom":18,"mps:latitude":42.333421,"mps:longitude":-71.042257,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Dorchester North"],"name:eng_x_variant":["Dorchester Hts","Dorchesterheights"],"name:est_x_preferred":["Dorchester Heights"],"name:spa_x_preferred":["Dorchester Heights"],"name:und_x_variant":["Dorchester Hights"],"reversegeo:latitude":42.333421,"reversegeo:longitude":-71.042257,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85849485,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"785ebe807ea7b4a6ed78dd5cb1d54713","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703037,"neighbourhood_id":85849485,"region_id":85688645}],"wof:id":1108703037,"wof:lastmodified":1566624099,"wof:name":"Dorchester Heights","wof:parent_id":85849485,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85814929],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703039.geojson b/fixtures/microhoods/1108703039.geojson new file mode 100644 index 0000000..6f37fdd --- /dev/null +++ b/fixtures/microhoods/1108703039.geojson @@ -0,0 +1 @@ +{"id":1108703039,"type":"Feature","bbox":[-71.06454338443713,42.3523633378981,-71.0572653404996,42.35806005838588],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06202072660278,42.35653451238008],[-71.06098197226079,42.35755387637581],[-71.06048177267567,42.35806005838588],[-71.05835708346208,42.35747204095211],[-71.05814686157981,42.35768422506937],[-71.05812133386563,42.35770677401867],[-71.0578739250967,42.35765158297572],[-71.05778783961505,42.35763730784946],[-71.0575151969715,42.35762032424034],[-71.05726574713803,42.35761579581571],[-71.0572653404996,42.35548396073936],[-71.05727124757833,42.35542120078932],[-71.05728630126349,42.35538189703821],[-71.05730930038288,42.35534021113431],[-71.05745119275205,42.35510759380924],[-71.05746277508361,42.35506228552814],[-71.05746595103776,42.35501269874781],[-71.05741886467452,42.35469677653679],[-71.05741428704097,42.35463111663545],[-71.05743148320465,42.35455249129514],[-71.05747175333379,42.35447122875915],[-71.05797619898007,42.35367780659343],[-71.05766578244665,42.35352156672087],[-71.05790492479626,42.35236995975576],[-71.05810771326534,42.3523633378981],[-71.05840085224226,42.35238864942095],[-71.05852368667746,42.35240599883362],[-71.05863203306265,42.3524227415294],[-71.05875519831926,42.35243809781752],[-71.05876120972373,42.35243884741923],[-71.05887833696485,42.3524534493699],[-71.05939278766478,42.35251758681464],[-71.05939353499889,42.35251763649325],[-71.05951809559663,42.35252596783088],[-71.05981711590343,42.3525459667379],[-71.06015072707841,42.35256289034143],[-71.06018278228844,42.35256451643397],[-71.06037541114577,42.35256079567232],[-71.06052473234412,42.35255818480036],[-71.06068136129494,42.35255544590242],[-71.06108119833358,42.35252145351588],[-71.06111652519719,42.35251845083206],[-71.06112927362024,42.35251736691959],[-71.06139279609891,42.35249436156031],[-71.06176183434596,42.35245755566127],[-71.06176663689459,42.35245707610219],[-71.06176852681625,42.35245688794122],[-71.06194724239961,42.3524390633745],[-71.06238879255653,42.35239455328124],[-71.06246810133817,42.35238662009658],[-71.06253915808806,42.35237951164255],[-71.06258426360749,42.35237499900686],[-71.06258514176399,42.35237491141775],[-71.0626089722847,42.35237252716014],[-71.06454338443713,42.35236776058677],[-71.06454251461074,42.35237104695814],[-71.06453942278833,42.35238273903965],[-71.06444909083719,42.35272425111403],[-71.06442990672957,42.3527967788533],[-71.06441664790599,42.35283550328322],[-71.06422862349753,42.35338462497697],[-71.06415752346284,42.35358340813325],[-71.06415387872245,42.35359358921801],[-71.06415379625349,42.35359375545936],[-71.06398597952311,42.35392483161365],[-71.06387895434439,42.35413597530499],[-71.06387420818977,42.35414533743935],[-71.06374073054172,42.35440866508002],[-71.06356456138523,42.35475621122549],[-71.0635613925567,42.35476195566054],[-71.06355722931055,42.35476950410595],[-71.06346715071703,42.35493283512165],[-71.06337120471107,42.3551150679028],[-71.06336245984319,42.35513167747987],[-71.06334062472338,42.35517314840499],[-71.06333148409587,42.35518554311488],[-71.06331444160692,42.35520865099132],[-71.06329067473752,42.35524087578478],[-71.06304196520286,42.35548980770958],[-71.06289600592709,42.35563589781834],[-71.06280148958109,42.35572854488904],[-71.06280081742676,42.35572920314726],[-71.0627987068482,42.35573127209457],[-71.06254197058048,42.35598293000096],[-71.06227065475552,42.35624887526865],[-71.0620259045563,42.35652859468203],[-71.06202545674884,42.35652910614234],[-71.06202072660278,42.35653451238008]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00003,"geom:area_square_m":270266.146636,"geom:bbox":"-71.0645433844,42.3523633379,-71.0572653405,42.3580600584","geom:latitude":42.354851,"geom:longitude":-71.060414,"iso:country":"US","lbl:latitude":42.355243,"lbl:longitude":-71.061796,"lbl:max_zoom":18,"mps:latitude":42.354876,"mps:longitude":-71.060345,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Downtown Crossing"],"name:fra_x_preferred":["Downtown Boston"],"name:zho_x_preferred":["下城十字"],"reversegeo:latitude":42.354876,"reversegeo:longitude":-71.060345,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815133,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ac3567552125978e08e6f8ce380ac76d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703039,"neighbourhood_id":85815133,"region_id":85688645}],"wof:id":1108703039,"wof:lastmodified":1566624099,"wof:name":"Downtown Crossing","wof:parent_id":85815133,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891261],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703047.geojson b/fixtures/microhoods/1108703047.geojson new file mode 100644 index 0000000..b51ca6c --- /dev/null +++ b/fixtures/microhoods/1108703047.geojson @@ -0,0 +1 @@ +{"id":1108703047,"type":"Feature","bbox":[-71.09530475585598,42.32877034965647,-71.08094777299816,42.33719049332382],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.08869095368476,42.33719049332382],[-71.08731996720608,42.33595660549302],[-71.08688564552338,42.3356329100169],[-71.08656946971735,42.33545285740347],[-71.0862377928449,42.33530015962418],[-71.08453487887556,42.33469864646405],[-71.08402840054374,42.33452399816318],[-71.08356256993176,42.33433059731583],[-71.08276055238491,42.33390761545892],[-71.08180472325371,42.3333637816429],[-71.08135976831333,42.33310559791207],[-71.08094777299816,42.33285840072296],[-71.08138723466769,42.33230907363608],[-71.08166876479974,42.33199458387882],[-71.08198050792153,42.33171580038224],[-71.08261772734232,42.33116647329535],[-71.08321100059617,42.33061714620846],[-71.0833373458262,42.33055122695804],[-71.08345698570243,42.33050922455072],[-71.08386211546798,42.330439822944],[-71.08397266361852,42.3304020789586],[-71.08409111555575,42.33033878794819],[-71.08422500398365,42.33020361406535],[-71.08432727284028,42.33006321682341],[-71.0847930626064,42.32934270736688],[-71.08486658563044,42.32921093844303],[-71.08491611509127,42.32909245435567],[-71.08512595849598,42.32877034965647],[-71.08617684183918,42.32944380547967],[-71.08660904461505,42.32968552146716],[-71.0871304493611,42.32996894024593],[-71.08813655457244,42.33050819497585],[-71.08833072904596,42.33059517312499],[-71.08866845175606,42.33071448493906],[-71.08901835730533,42.33081377299222],[-71.08934603262844,42.33087785996086],[-71.09010177427385,42.33103980070629],[-71.09095695140357,42.33117556617311],[-71.0922012913751,42.33120936113467],[-71.09322302102466,42.33122872828667],[-71.09391801928241,42.33127921282102],[-71.09530475585598,42.33145649884013],[-71.09524624089687,42.33152143294672],[-71.09436725329982,42.33239429283642],[-71.09299971776322,42.33345771556005],[-71.09275332874631,42.33369397855387],[-71.09043371458033,42.33576129552907],[-71.09042822093811,42.3357656675888],[-71.09036068582313,42.33581942836727],[-71.0903553470672,42.33582367853548],[-71.09033996822198,42.33583618462957],[-71.0902477548188,42.33591116914623],[-71.0901799691098,42.33596629016842],[-71.09017450408204,42.33597073524167],[-71.0900937401203,42.33603714284023],[-71.08956033124112,42.33647571546254],[-71.08869095368476,42.33719049332382]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000056,"geom:area_square_m":507483.344858,"geom:bbox":"-71.0953047559,42.3287703497,-71.080947773,42.3371904933","geom:latitude":42.332853,"geom:longitude":-71.087697,"iso:country":"US","lbl:latitude":42.328372,"lbl:longitude":-71.07193,"lbl:max_zoom":18,"mps:latitude":42.332872,"mps:longitude":-71.087099,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Dudley Sq"],"reversegeo:latitude":42.332872,"reversegeo:longitude":-71.087099,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85846283,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8537b25ee4e668ccb966e51272135710","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703047,"neighbourhood_id":85846283,"region_id":85688645}],"wof:id":1108703047,"wof:lastmodified":1566624100,"wof:name":"Dudley Square","wof:parent_id":85846283,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865717],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703107.geojson b/fixtures/microhoods/1108703107.geojson new file mode 100644 index 0000000..7bb2d21 --- /dev/null +++ b/fixtures/microhoods/1108703107.geojson @@ -0,0 +1 @@ +{"id":1108703107,"type":"Feature","bbox":[-71.03936434563187,42.37703075568721,-71.032677241646,42.38059707826925],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.03340219836015,42.3805882948491],[-71.032677241646,42.37944981796841],[-71.0392708073315,42.37703075568721],[-71.03936434563187,42.38059707826925],[-71.03340219836015,42.3805882948491]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":139398.953005,"geom:bbox":"-71.0393643456,42.3770307557,-71.0326772416,42.3805970783","geom:latitude":42.379289,"geom:longitude":-71.03667,"iso:country":"US","lbl:latitude":42.379622,"lbl:longitude":-71.03539,"lbl:max_zoom":18,"mps:latitude":42.379289,"mps:longitude":-71.036669,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":42.379289,"reversegeo:longitude":-71.036669,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815995,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ceadee8ca6c2c4db7da81a353f93b14a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703107,"neighbourhood_id":85815995,"region_id":85688645}],"wof:id":1108703107,"wof:lastmodified":1566624101,"wof:name":"Eagle Hill","wof:parent_id":85815995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891263],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108703311.geojson b/fixtures/microhoods/1108703311.geojson new file mode 100644 index 0000000..0d28eb4 --- /dev/null +++ b/fixtures/microhoods/1108703311.geojson @@ -0,0 +1 @@ +{"id":1108703311,"type":"Feature","bbox":[-71.0938727693418,42.26650368457432,-71.06591999983635,42.28156597040536],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0938727693418,42.26708819852151],[-71.09353486419212,42.27608449739949],[-71.09310158372624,42.27624718995322],[-71.09294148284467,42.27632863293518],[-71.09277610152836,42.27642728505652],[-71.09249376519101,42.27661714611936],[-71.09235135877363,42.27674168959041],[-71.09223803665859,42.27686183998663],[-71.0920885375432,42.27704385459422],[-71.09194438091612,42.2772019243721],[-71.09183420080032,42.2773037028773],[-71.09173388200463,42.27738960360135],[-71.09162414059476,42.27747298917206],[-71.09113819558586,42.27778492187074],[-71.08998181210306,42.27855144742626],[-71.08980799648343,42.27869582100735],[-71.08961075671087,42.27887766587605],[-71.08946910022672,42.27903374876248],[-71.08909902092692,42.2794745045743],[-71.08898299062635,42.27960971786752],[-71.0887832433252,42.2798229323455],[-71.08704949499123,42.28156597040536],[-71.08704799951309,42.28156499958125],[-71.08670300047112,42.28133899970609],[-71.08654100060056,42.28125600017907],[-71.08630199977713,42.28116699988398],[-71.08603399981874,42.28109699992708],[-71.08551400027761,42.28099500007624],[-71.08550399995738,42.28099099995122],[-71.08546299982687,42.28104499986916],[-71.08501199963605,42.28089199963389],[-71.0844889994349,42.28078200038941],[-71.08327599979792,42.28053100010645],[-71.0828130004537,42.28042999964045],[-71.0825700004821,42.28034199975548],[-71.08224499998344,42.2801779999624],[-71.08110199947711,42.27939399980309],[-71.0805329996842,42.27902199981883],[-71.08043800033334,42.27895999998616],[-71.08008170976606,42.27879943048018],[-71.07999199949585,42.27875900020097],[-71.07989599966386,42.27873099986007],[-71.07936800013087,42.27863900007317],[-71.07889099991046,42.27856699964968],[-71.07799999950161,42.27848400030366],[-71.07662900006176,42.27832900016705],[-71.07631600027318,42.27829900024302],[-71.07577899986804,42.27824999969511],[-71.07572400024104,42.27824700019684],[-71.0747279998557,42.27813299965931],[-71.07452599965633,42.27811099985582],[-71.07370200003888,42.27806799977317],[-71.0731659996956,42.2780499999118],[-71.07277399982108,42.27807300017929],[-71.07222300015425,42.27811000008494],[-71.0716760000903,42.27818400040148],[-71.07101499994481,42.27831399991831],[-71.07056700030522,42.27845399962482],[-71.06978599949767,42.27871800033444],[-71.06950500014639,42.27882599964421],[-71.06863199990421,42.27911299978372],[-71.0681420002205,42.27927400028151],[-71.06784999945033,42.27937399998999],[-71.06723700044942,42.27956100006531],[-71.06638600013612,42.27980300038255],[-71.06591999983635,42.27992799958948],[-71.06604699964545,42.2795179997366],[-71.06623000034556,42.27883200025491],[-71.06650300018005,42.27790400039459],[-71.0666059995334,42.27752900041092],[-71.06681899961667,42.27678799984938],[-71.06697699959507,42.27625400042573],[-71.0671890002682,42.27550400029956],[-71.06743800022169,42.27457599999862],[-71.06762100015568,42.27389700031787],[-71.06771199962921,42.27354900001555],[-71.06779599958195,42.27325700023757],[-71.06787600005262,42.2729579998596],[-71.06799800023805,42.27245900039531],[-71.0680230001597,42.27228299990563],[-71.06801799959393,42.27221600010141],[-71.06798899972752,42.27211499998071],[-71.0679899999588,42.27194700025994],[-71.06802099957412,42.27177499987624],[-71.06809300035152,42.2715589999497],[-71.06817800038029,42.27134300023252],[-71.06818999946397,42.27121699972967],[-71.06817300031742,42.27111800022224],[-71.06816700013603,42.27108400009008],[-71.06813900004451,42.27100299955286],[-71.06820000058678,42.27095000009509],[-71.06820397736301,42.27094722229607],[-71.06826300043487,42.27090600038337],[-71.06837499946242,42.27082699992031],[-71.06841399961723,42.2708060000879],[-71.068501999514,42.27077500008838],[-71.06869300035098,42.27073199957801],[-71.06877800037141,42.27071000017045],[-71.06884500051414,42.27069599987254],[-71.06901099989888,42.27066199986703],[-71.06925300044469,42.27064899986111],[-71.06930199992661,42.27064399966844],[-71.06946000043123,42.27063200041957],[-71.06970999984337,42.27061099960363],[-71.06978400031912,42.27060499990282],[-71.07041499961636,42.27061299967357],[-71.07060800058315,42.27062999989386],[-71.07093099956067,42.27070899989269],[-71.07129700009156,42.27078400009193],[-71.07135300008834,42.27079600043528],[-71.07169400056723,42.27081300014065],[-71.07174199954007,42.27081199973907],[-71.07189499971437,42.27078600033636],[-71.07191200047966,42.27078299996605],[-71.07214499958731,42.27074299973651],[-71.07230999983838,42.27071399965143],[-71.0724000005839,42.2706860003433],[-71.07244200038627,42.27066899957419],[-71.07255999957951,42.27060500028531],[-71.07273300046484,42.27048100022479],[-71.07277600027051,42.27044599962583],[-71.07279799983944,42.27042899994877],[-71.07298599987443,42.27033999979572],[-71.0730419995037,42.27033099966705],[-71.07313100018314,42.27032499955926],[-71.07316287648447,42.27032132144572],[-71.0735900005996,42.27029299996005],[-71.0737099999559,42.27028599991762],[-71.07400100042018,42.27029000031627],[-71.07448699986014,42.27031800006797],[-71.07456799972792,42.27031599987421],[-71.07477900054954,42.27030899997578],[-71.0748940000734,42.27030300023116],[-71.0752050002528,42.2702530001081],[-71.07538599996904,42.27027299994559],[-71.0759220000243,42.27033199956768],[-71.07654199961331,42.27019699963811],[-71.07682100046895,42.27005200016973],[-71.07697200017141,42.26997300001418],[-71.07729399943086,42.26992200030602],[-71.07748499947458,42.26989200002316],[-71.07805700026762,42.26980099966171],[-71.07816199978213,42.26978399957818],[-71.07824700012372,42.26976999960019],[-71.07827499959855,42.26976500038778],[-71.07835800041066,42.26975200042784],[-71.0783850004496,42.26974799956015],[-71.07841700009875,42.26974299969356],[-71.07846200033343,42.26973600024198],[-71.07850799939901,42.26972899993723],[-71.07853800014715,42.26972399990304],[-71.07859100011615,42.26971599980877],[-71.0787480004344,42.2696909999072],[-71.078800000303,42.26968299964938],[-71.07899299956708,42.26965200035328],[-71.07927999952663,42.26960600032022],[-71.07956800032589,42.26955999963387],[-71.0797599994275,42.26953000013099],[-71.07980000038059,42.26950600028535],[-71.07992599961305,42.26943199961071],[-71.07995899972236,42.26941299961105],[-71.08031399986149,42.26920300011928],[-71.08080899987911,42.26897400010373],[-71.08083200049168,42.26897000026866],[-71.08109100031977,42.2689209999317],[-71.08232299957504,42.26874500023927],[-71.08261300016406,42.26861199990926],[-71.08283100006636,42.26853200033971],[-71.08292099976242,42.26850500024185],[-71.0829679997106,42.2684960004082],[-71.08321100024249,42.26850799956937],[-71.08355199941371,42.26856600005979],[-71.08369399979601,42.26861600024343],[-71.08399100032327,42.26872099975675],[-71.0841779995867,42.26876300016163],[-71.08436100010847,42.26880999959322],[-71.08464200052519,42.26885700030158],[-71.08481500049038,42.26888599992849],[-71.08534499952621,42.26897499962348],[-71.08540500043645,42.26898499987857],[-71.0855189994439,42.26900800005659],[-71.08555399964304,42.2690530003274],[-71.08560500009573,42.26911900034231],[-71.08565699948106,42.26918500033624],[-71.08569100031745,42.2692290003186],[-71.08594799985752,42.26929199969565],[-71.08609999940175,42.26931100028887],[-71.0866930001843,42.26938200039157],[-71.08681000054914,42.26939700006189],[-71.08734099983442,42.26949300028998],[-71.08775100028063,42.26956699964338],[-71.0881049998941,42.26963099956068],[-71.08867199973422,42.2697329999266],[-71.08915000017495,42.26974199985053],[-71.08917200048076,42.2697380001698],[-71.08940300000738,42.26969000001683],[-71.08955242322469,42.26974753971231],[-71.08958364476835,42.26973864103459],[-71.0896280781311,42.26972370799449],[-71.08968335858101,42.26969783626539],[-71.0897361788669,42.26967149746545],[-71.08980478863157,42.26963172395818],[-71.08986971081882,42.26959102253004],[-71.08992878929239,42.26954915681069],[-71.0899845031528,42.26950384888348],[-71.09002415365006,42.2694667159811],[-71.09006043513241,42.26942682600668],[-71.09009426088585,42.26938578476741],[-71.09013558974088,42.26932716121613],[-71.09017076552996,42.26926760368183],[-71.09022923562713,42.26912969011472],[-71.090274338381,42.26901116732704],[-71.09028430745634,42.26894534372297],[-71.09028967133058,42.26887767336583],[-71.09029039006965,42.26876653857563],[-71.09026479965955,42.2686292397612],[-71.09024159252044,42.26850429983705],[-71.09020631457801,42.26838914817277],[-71.09018843221813,42.26834540691832],[-71.09018538153026,42.2683410511553],[-71.09018047912899,42.26833737481726],[-71.09017557524322,42.26833392805172],[-71.090170974811,42.26833116660144],[-71.09016606649404,42.26832840495256],[-71.09015992639326,42.26832586758513],[-71.09015408730401,42.26832401822505],[-71.09014794155964,42.2683221659697],[-71.09014056429277,42.26832031021898],[-71.09012304920952,42.26831498721926],[-71.09011075501552,42.26831151407378],[-71.09010001152632,42.26830667349537],[-71.09008833901197,42.26830228785561],[-71.09008344106402,42.26829792459586],[-71.09007885220217,42.26829356333948],[-71.0900739616422,42.26828805851774],[-71.0900693659243,42.26828438236929],[-71.09006571401873,42.26827796635752],[-71.09005507317464,42.26825689002369],[-71.09004564556066,42.26823901950781],[-71.09002756089232,42.26822637677314],[-71.09001806251953,42.26821925475512],[-71.09000826340768,42.26821121605145],[-71.09000000247374,42.26820318373882],[-71.08999512969851,42.26819493304384],[-71.08999179927156,42.26818623140018],[-71.08998816244693,42.26817729998471],[-71.08998452441705,42.26816836766451],[-71.0899800702447,42.26814319811287],[-71.08998109034682,42.26812810902558],[-71.08998487664485,42.26811394452543],[-71.0899899240529,42.26809521097323],[-71.08999367752052,42.26808630594304],[-71.08999496675622,42.26807739121453],[-71.08999594070228,42.26806962054952],[-71.08999599397977,42.26806138834179],[-71.08999604577734,42.2680533848064],[-71.08999517394113,42.26804537797346],[-71.08999275679606,42.26803828033425],[-71.08999033844522,42.26803118179031],[-71.08998669127001,42.26802385108161],[-71.08998181110452,42.26801674464826],[-71.08997722819004,42.26801146869784],[-71.08997021508297,42.26800092448261],[-71.0899607229386,42.26799265909299],[-71.08995582770977,42.26798806805971],[-71.08995123767288,42.26798370589334],[-71.08994757247565,42.26797934792939],[-71.08994390633481,42.26797476128422],[-71.08993905578063,42.26796308140019],[-71.08990124235862,42.26796598040313],[-71.08989796991318,42.26788672017983],[-71.08993618152596,42.26788371996503],[-71.08997157817889,42.26779031716062],[-71.0899788443347,42.26776175928747],[-71.09002550076693,42.26764095443716],[-71.09007517363018,42.26752976479843],[-71.09010452845308,42.26746561113268],[-71.09013357897801,42.26740145637277],[-71.09015556540574,42.26733407490559],[-71.09017294968542,42.26726438933185],[-71.09018409091136,42.26720771790828],[-71.09019309422446,42.26714875117592],[-71.09019188202747,42.26709798038711],[-71.09019098013553,42.26704720980484],[-71.09019067804918,42.26695093538703],[-71.09019703472559,42.26687274937353],[-71.09020940116531,42.26681722570464],[-71.09022639427755,42.26676057335388],[-71.09023737563794,42.26672859764941],[-71.09024829755498,42.26670599842092],[-71.09027027030656,42.26668846773103],[-71.090299011765,42.26667164901965],[-71.09032927482555,42.26665757896237],[-71.09037465313308,42.26663898835871],[-71.09041942279177,42.26661948175549],[-71.09045555778779,42.26660177376337],[-71.0904737854663,42.26659223430097],[-71.09049139322939,42.26658314998058],[-71.09058667335859,42.26656039235521],[-71.0907127992884,42.2665288288597],[-71.0908003568508,42.26651038931128],[-71.09083517576218,42.26650593802099],[-71.09087089905908,42.26650446635457],[-71.09090846516455,42.26650368457432],[-71.09094663397451,42.26650473615141],[-71.0909841732411,42.26650829912857],[-71.09103646667059,42.2665155743827],[-71.0910881301393,42.26652467679202],[-71.09118988599604,42.26654836331404],[-71.09131098050239,42.26658081102722],[-71.09142928808942,42.26661576145121],[-71.09149165761848,42.26663587830109],[-71.09155403013573,42.26665553777199],[-71.09163914979113,42.26668076636647],[-71.09171200475727,42.26669817714898],[-71.09176491296364,42.26670545335576],[-71.09181781207523,42.26671433115035],[-71.09187164711751,42.26672092636956],[-71.09192670577661,42.2667291257556],[-71.09204671115656,42.26673938437598],[-71.09219166715536,42.26674790385673],[-71.09225262374954,42.26674880634277],[-71.0922935706787,42.2667489517244],[-71.09233327755784,42.26675023517775],[-71.09235451481074,42.2667512261786],[-71.09237484758219,42.26674924025394],[-71.09239424470836,42.2667493091044],[-71.09245919117598,42.26675159770899],[-71.09252382337613,42.26675525722823],[-71.09259336855472,42.26676076356291],[-71.09266289463757,42.26676924169806],[-71.09272376797604,42.26678272181481],[-71.0927538938461,42.26678991766423],[-71.09278246860482,42.26679893742727],[-71.09281011534661,42.26680863992588],[-71.09284356437932,42.26682590935546],[-71.09287454483268,42.26684385605669],[-71.09293096409075,42.26687972979008],[-71.09296433731028,42.26690843280204],[-71.09299771445333,42.26693690714019],[-71.09303601490869,42.26696562759364],[-71.09307278216647,42.26699319921247],[-71.09310279483041,42.26701823143124],[-71.09313584711043,42.2670489913544],[-71.0931670913245,42.26707402701894],[-71.09319592421355,42.26709082353539],[-71.09321126648922,42.26709888160368],[-71.09323522776174,42.26710719797691],[-71.09327120464586,42.26711441531436],[-71.09329518845811,42.26711884513391],[-71.09333361660083,42.26712790055477],[-71.09337668047608,42.26713422734434],[-71.09340190849501,42.26713706080303],[-71.09342713652192,42.26713989335585],[-71.09345236479489,42.26714249902693],[-71.09347479848617,42.26714898052025],[-71.09350153799981,42.26715616508461],[-71.09352643150112,42.26716334130806],[-71.09354672328365,42.26716775890699],[-71.0935685647126,42.26717058034253],[-71.09360548169404,42.26717505496889],[-71.09361095608901,42.26707483967665],[-71.0938727693418,42.26708819852151]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000254,"geom:area_square_m":2325140.6901,"geom:bbox":"-71.0938727693,42.2665036846,-71.0659199998,42.2815659704","geom:latitude":42.27425,"geom:longitude":-71.081356,"iso:country":"US","lbl:latitude":42.273991,"lbl:longitude":-71.069588,"lbl:max_zoom":18,"mps:latitude":42.274793,"mps:longitude":-71.084418,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Lower Mls"],"reversegeo:latitude":42.274793,"reversegeo:longitude":-71.084418,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85832891,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"37ce29976a000e6193f4630fe6dbae57","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108703311,"neighbourhood_id":85832891,"region_id":85688645}],"wof:id":1108703311,"wof:lastmodified":1566624098,"wof:name":"Lower Mills","wof:parent_id":85832891,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85831585],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108705213.geojson b/fixtures/microhoods/1108705213.geojson new file mode 100644 index 0000000..eb620b8 --- /dev/null +++ b/fixtures/microhoods/1108705213.geojson @@ -0,0 +1 @@ +{"id":1108705213,"type":"Feature","bbox":[-71.1031055340691,42.31106225916723,-71.088605,42.321576],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.09786190420601,42.31106225916723],[-71.10156137639785,42.31247079909109],[-71.1004680009789,42.31357067980343],[-71.10096569192429,42.31383707444582],[-71.10106103556889,42.31389520110827],[-71.1011421915072,42.3139548985939],[-71.1015835151885,42.31442216906601],[-71.10205205895369,42.31499997225162],[-71.10240156711465,42.31539545610066],[-71.10246715026167,42.3154762111382],[-71.10266903268345,42.31573104562744],[-71.10277008956024,42.31588666160526],[-71.1028397327749,42.31604365921944],[-71.10289639042442,42.31619636307301],[-71.10295285258059,42.31637097360691],[-71.10298028467729,42.31644017677468],[-71.10301837012122,42.3165117819468],[-71.1031055340691,42.31662991917231],[-71.102889,42.316807],[-71.10256,42.317077],[-71.102094,42.317484],[-71.10177,42.317751],[-71.101545,42.317914],[-71.101389,42.318036],[-71.101314,42.318127],[-71.10125,42.31825],[-71.101195,42.318431],[-71.101151,42.318554],[-71.101092,42.318673],[-71.101038,42.31876],[-71.100941,42.318872],[-71.10063,42.319156],[-71.100361,42.319446],[-71.100222,42.319576],[-71.100152,42.319623],[-71.10007,42.319661],[-71.099975,42.31971],[-71.099958,42.319715],[-71.099852,42.319746],[-71.099569,42.319814],[-71.099257,42.319718],[-71.099008,42.319669],[-71.098412,42.319572],[-71.098299,42.319556],[-71.097915,42.319509],[-71.097489,42.319484],[-71.096964,42.319514],[-71.096901,42.319516],[-71.096779,42.319507],[-71.096516,42.31947],[-71.096319,42.319424],[-71.095941,42.31933],[-71.095892,42.319314],[-71.095743,42.31925],[-71.095672,42.319197],[-71.095446,42.318986],[-71.095305,42.318825],[-71.095041,42.319094],[-71.094478,42.319637],[-71.094355,42.319756],[-71.09404,42.320071],[-71.09359,42.320456],[-71.093146,42.3208],[-71.092647,42.321182],[-71.092476,42.321307],[-71.092089,42.321576],[-71.092024,42.321532],[-71.091718,42.321387],[-71.090768,42.320965],[-71.090556,42.320871],[-71.090241,42.320723],[-71.090006,42.320614],[-71.089424,42.320359],[-71.088965,42.320152],[-71.088605,42.319974],[-71.089147,42.319793],[-71.089551,42.319643],[-71.089828,42.319488],[-71.090238,42.319213],[-71.090673,42.318874],[-71.090802,42.318749],[-71.090843,42.318673],[-71.090905,42.318506],[-71.091004,42.318268],[-71.091133,42.317954],[-71.091294,42.317605],[-71.091619,42.316997],[-71.091779,42.316963],[-71.091967,42.316941],[-71.092293,42.316916],[-71.09247,42.316895],[-71.092722,42.316843],[-71.092964,42.316751],[-71.09309,42.316675],[-71.093183,42.316543],[-71.093226,42.316443],[-71.093333,42.316152],[-71.093472,42.315789],[-71.093559,42.315515],[-71.093618,42.31524],[-71.093681,42.315016],[-71.093756,42.314785],[-71.093821,42.314541],[-71.093859,42.314457],[-71.093938,42.31432],[-71.094088,42.314142],[-71.094174,42.314061],[-71.094395,42.313876],[-71.09479,42.313574],[-71.095038,42.313382],[-71.09510821433891,42.31333179363628],[-71.0951518391165,42.31329632435477],[-71.09568012880044,42.31289482030729],[-71.09609606004351,42.31259622902631],[-71.09613718485527,42.31256800518042],[-71.09623856213688,42.31249843078778],[-71.0962394040021,42.31249785305364],[-71.09623949781415,42.31249778856181],[-71.09624331484729,42.31249516770169],[-71.09625006926174,42.31249053239207],[-71.09625148373709,42.31248956233924],[-71.09625969202003,42.31248310543306],[-71.09626327621157,42.31248028568878],[-71.096281840844,42.31246568235944],[-71.09634786176443,42.31241374922966],[-71.09644597124608,42.31235646754281],[-71.09660398630761,42.31229047772131],[-71.0969019257134,42.31219856744008],[-71.09692788011012,42.31219056029856],[-71.09696481664474,42.31217916603466],[-71.09696679406194,42.31217855626576],[-71.09700862307271,42.31216403440634],[-71.0970133240934,42.3121624024464],[-71.09711547247304,42.31212693955971],[-71.09723874177317,42.31207386065908],[-71.09727484217952,42.31204839621498],[-71.09727634087912,42.31204733911582],[-71.09728886903646,42.31203850158255],[-71.0973454759843,42.3119985709689],[-71.0973496016698,42.31199566035735],[-71.09735557940202,42.31199144360073],[-71.09735900691153,42.3119890257063],[-71.09739078780902,42.31196660800371],[-71.09739926093182,42.31196063000199],[-71.0974332557249,42.3119366508248],[-71.09744795887443,42.31192073104933],[-71.09745131038197,42.31191710198559],[-71.09750213375872,42.31186207555128],[-71.09751375407289,42.31184949497732],[-71.09752817503723,42.31183388120461],[-71.09755124587747,42.31180890221599],[-71.0976410423161,42.31171167840028],[-71.09771586109777,42.31160903270851],[-71.09776565004904,42.3115193374724],[-71.09778486830267,42.31147201486741],[-71.09780320914693,42.31142685530435],[-71.09781083777604,42.31138958807056],[-71.09781237122809,42.31138210205996],[-71.09782046676253,42.31134255600513],[-71.0978264742601,42.31131320841721],[-71.0978325405563,42.31128357834105],[-71.09784623285843,42.31118061508999],[-71.0978618027405,42.31106352913234],[-71.09786190332652,42.31106277953625],[-71.09786190421804,42.31106244822982],[-71.09786190420601,42.31106225916723]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000071,"geom:area_square_m":653685.566022,"geom:bbox":"-71.1031055341,42.3110622592,-71.088605,42.321576","geom:latitude":42.316556,"geom:longitude":-71.096763,"iso:country":"US","lbl:latitude":42.315726,"lbl:longitude":-71.100534,"lbl:max_zoom":18,"mps:latitude":42.315945,"mps:longitude":-71.097861,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":42.315945,"reversegeo:longitude":-71.097861,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85846283,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"ec299415eb14fe8a6d1826d5e38871df","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108705213,"neighbourhood_id":85846283,"region_id":85688645}],"wof:id":1108705213,"wof:lastmodified":1566624098,"wof:name":"Egleston Square","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891361],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108706651.geojson b/fixtures/microhoods/1108706651.geojson new file mode 100644 index 0000000..dc0569b --- /dev/null +++ b/fixtures/microhoods/1108706651.geojson @@ -0,0 +1 @@ +{"id":1108706651,"type":"Feature","bbox":[-71.122439,42.24426841487923,-71.1093473146534,42.25817642733091],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.122439,42.250058],[-71.122308,42.250164],[-71.121799,42.250467],[-71.121115,42.25085],[-71.120413,42.251261],[-71.1191,42.252017],[-71.11883,42.252179],[-71.118651,42.252298],[-71.118522,42.252405],[-71.118336,42.252595],[-71.117931,42.253056],[-71.117733,42.25331],[-71.11771,42.25334],[-71.116686,42.254466],[-71.115669,42.255624],[-71.115286,42.256052],[-71.114314,42.257032],[-71.11419,42.257146],[-71.114114,42.257216],[-71.113889,42.257394],[-71.113605,42.257604],[-71.113135,42.257881],[-71.11246709911435,42.25817642733091],[-71.10954441147965,42.25541227716445],[-71.1093473146534,42.24799027168467],[-71.11652376800548,42.24426841487923],[-71.116852,42.244613],[-71.117234,42.244915],[-71.117809,42.245523],[-71.118409,42.246119],[-71.118937,42.246634],[-71.119153,42.246846],[-71.119927,42.247586],[-71.12023,42.247891],[-71.121127,42.248754],[-71.122206,42.249806],[-71.122439,42.250058]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000104,"geom:area_square_m":950371.2977,"geom:bbox":"-71.122439,42.2442684149,-71.1093473147,42.2581764273","geom:latitude":42.250858,"geom:longitude":-71.114612,"iso:country":"US","lbl:latitude":42.250734,"lbl:longitude":-71.114166,"lbl:max_zoom":18,"mps:latitude":42.250734,"mps:longitude":-71.114166,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.250734,"reversegeo:longitude":-71.114166,"src:geom":"mz","wof:belongsto":[420524063,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e3d6976a3c807c9c14b4bb514a41092d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108706651,"neighbourhood_id":420524063,"region_id":85688645}],"wof:id":1108706651,"wof:lastmodified":1607100251,"wof:name":"Fairmount Hills","wof:parent_id":420524063,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524035],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711405.geojson b/fixtures/microhoods/1108711405.geojson new file mode 100644 index 0000000..404d927 --- /dev/null +++ b/fixtures/microhoods/1108711405.geojson @@ -0,0 +1 @@ +{"id":1108711405,"type":"Feature","bbox":[-71.0619764293503,42.29690762073938,-71.0588136145654,42.302591488963],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06003685223246,42.29735415264913],[-71.0619764293503,42.29690762073938],[-71.06063846388449,42.3015415678865],[-71.06089717613621,42.30203998116124],[-71.05955370506669,42.30244817492346],[-71.05908202155804,42.302591488963],[-71.0588136145654,42.30204722589985],[-71.06003685223246,42.29735415264913]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":84654.442612,"geom:bbox":"-71.0619764294,42.2969076207,-71.0588136146,42.302591489","geom:latitude":42.299743,"geom:longitude":-71.060309,"iso:country":"US","lbl:latitude":42.300258,"lbl:longitude":-71.058431,"lbl:max_zoom":18,"mps:latitude":42.299761,"mps:longitude":-71.060285,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Fields Corner"],"reversegeo:latitude":42.299761,"reversegeo:longitude":-71.060285,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q17053428"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dfef2ca0d207eaa5a8a3c0af2306a982","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711405,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711405,"wof:lastmodified":1566624150,"wof:name":"Fields Corner","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524065,420524065],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711407.geojson b/fixtures/microhoods/1108711407.geojson new file mode 100644 index 0000000..05e4a5d --- /dev/null +++ b/fixtures/microhoods/1108711407.geojson @@ -0,0 +1 @@ +{"id":1108711407,"type":"Feature","bbox":[-71.05797619898007,42.35236995975576,-71.05116962750601,42.35968632948072],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.05149464032112,42.35516265343326],[-71.05170957847153,42.35498684868539],[-71.05191024902953,42.35485902582769],[-71.05284142828957,42.35433850111108],[-71.05345257703159,42.35403397216769],[-71.05532865766222,42.35319668176581],[-71.05592622887822,42.35295621621838],[-71.05790492479626,42.35236995975576],[-71.05766578244665,42.35352156672087],[-71.05797619898007,42.35367780659343],[-71.05747175333379,42.35447122875915],[-71.05743148320465,42.35455249129514],[-71.05741428704097,42.35463111663545],[-71.05741886467452,42.35469677653679],[-71.05746595103776,42.35501269874781],[-71.05746277508361,42.35506228552814],[-71.05745119275205,42.35510759380924],[-71.05730930038288,42.35534021113431],[-71.05728630126349,42.35538189703821],[-71.05727124757833,42.35542120078932],[-71.0572653404996,42.35548396073936],[-71.05726574713803,42.35761579581571],[-71.0575151969715,42.35762032424034],[-71.05752346285854,42.35762083914363],[-71.05743063039564,42.35820173584408],[-71.0573942862033,42.35848093461922],[-71.05737955852547,42.35855245983043],[-71.0573567705914,42.35862202717229],[-71.05730588808048,42.35868930431376],[-71.05723771292604,42.35874844325001],[-71.05715784298671,42.35879403034927],[-71.0570602254071,42.35883724800126],[-71.05694726573262,42.35886470741396],[-71.05206069150277,42.35968632948072],[-71.0512865012987,42.35711697039006],[-71.05119051774929,42.35669284192099],[-71.05116962750601,42.35647468184038],[-71.05117472234897,42.35625780231173],[-71.05126292842058,42.35560931429963],[-71.05134826733394,42.35538170931729],[-71.05140862582913,42.35527374003266],[-71.05149464032112,42.35516265343326]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000034,"geom:area_square_m":308114.799939,"geom:bbox":"-71.057976199,42.3523699598,-71.0511696275,42.3596863295","geom:latitude":42.356313,"geom:longitude":-71.054627,"iso:country":"US","lbl:latitude":42.35566,"lbl:longitude":-71.055593,"lbl:max_zoom":18,"mps:latitude":42.356382,"mps:longitude":-71.054627,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Financial District"],"name:eng_x_preferred":["Financial District"],"name:eng_x_variant":["Financialdistrict"],"name:jpn_x_preferred":["フィナンシャル・ディストリクト"],"reversegeo:latitude":42.356382,"reversegeo:longitude":-71.054627,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815133,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1381137"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"89f6ed9d37c0758b42e1504b0bc41de0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711407,"neighbourhood_id":85815133,"region_id":85688645}],"wof:id":1108711407,"wof:lastmodified":1566624150,"wof:name":"Financial District","wof:parent_id":85815133,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866973],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711409.geojson b/fixtures/microhoods/1108711409.geojson new file mode 100644 index 0000000..ae75c22 --- /dev/null +++ b/fixtures/microhoods/1108711409.geojson @@ -0,0 +1 @@ +{"id":1108711409,"type":"Feature","bbox":[-71.11956370408625,42.28635268659605,-71.0964590377647,42.30202589750591],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11925841685623,42.29017623098452],[-71.1168955746183,42.28872524692894],[-71.11659998488074,42.28854632171865],[-71.11653511374726,42.288515341084],[-71.11646624391204,42.28850083852296],[-71.116382,42.288498],[-71.115401,42.288553],[-71.114897,42.288603],[-71.114212,42.288688],[-71.113812,42.288727],[-71.113543,42.288748],[-71.113246,42.288773],[-71.113169,42.288792],[-71.113113,42.288849],[-71.11351,42.289066],[-71.113744,42.289222],[-71.113769,42.289238],[-71.11384,42.289308],[-71.113983,42.28948],[-71.11414,42.289803],[-71.114196,42.290039],[-71.114402,42.290649],[-71.114443,42.290818],[-71.114484,42.291188],[-71.114476,42.291346],[-71.114432,42.291572],[-71.114329,42.291834],[-71.11422,42.292022],[-71.1139,42.292482],[-71.113632,42.292824],[-71.113501,42.293],[-71.1134,42.293118],[-71.113758,42.293538],[-71.113969,42.293714],[-71.114,42.29374],[-71.114234,42.293896],[-71.115092,42.294401],[-71.115368,42.294572],[-71.115637,42.294868],[-71.115761,42.295054],[-71.115829,42.29522],[-71.115856,42.295411],[-71.115916,42.295695],[-71.115956,42.295838],[-71.116026,42.295933],[-71.116216,42.296068],[-71.11734101759714,42.2966907110221],[-71.11622292352908,42.29787690999971],[-71.11577592048154,42.29839966717098],[-71.11541587084606,42.29894678779227],[-71.11508404035902,42.29956831713941],[-71.114859146562,42.3001722242313],[-71.11476560503439,42.30048153222157],[-71.11471855404048,42.30075628126699],[-71.11460905705937,42.30202589750591],[-71.11193653020183,42.30185762110305],[-71.10890598826283,42.30174335373668],[-71.10852426814232,42.30169959147688],[-71.10808098755084,42.30159841378413],[-71.10780360911563,42.30151202276382],[-71.10752916570429,42.30140726721655],[-71.1068171488403,42.30105438722767],[-71.10684105115622,42.30101712910854],[-71.10684422725849,42.30098199679674],[-71.10683214917483,42.3009433335321],[-71.10678834854484,42.30092362014304],[-71.10672254457731,42.30091035229372],[-71.10672034329494,42.30091017280205],[-71.10670816958302,42.30090917861646],[-71.10663913226429,42.30090354499281],[-71.10653815088727,42.30089667836948],[-71.10645917049888,42.30088336524688],[-71.10638029270467,42.30085374890209],[-71.10631025851056,42.3008143810531],[-71.10626228860075,42.30075878525321],[-71.1062587613923,42.30075125476682],[-71.10625844661111,42.30075058296513],[-71.10623628035074,42.3007032655982],[-71.10617700001418,42.3005900001393],[-71.10612400024101,42.30050100033739],[-71.10606400019249,42.30044500038892],[-71.10591399985792,42.30040400044557],[-71.10578200003397,42.3003750000365],[-71.10534900053646,42.30031299997191],[-71.10495997643355,42.30026852165306],[-71.10466099945542,42.30027099999757],[-71.10426999955581,42.3002290000688],[-71.10409100006773,42.30018199999417],[-71.10392999940392,42.3001349995645],[-71.10376199965637,42.30007800035257],[-71.10348499950528,42.29993200019401],[-71.10329099980598,42.29980599982666],[-71.10295200043319,42.29949400040339],[-71.10186399990427,42.29850999982065],[-71.10022100054013,42.29696199957327],[-71.09916399957527,42.295940999801],[-71.09885199952701,42.29564000003074],[-71.09740199978197,42.29421899981693],[-71.0968959996904,42.29373500001385],[-71.09661899981006,42.29346099976051],[-71.0964590377647,42.29322448707924],[-71.09657366728307,42.29321480088936],[-71.09671560323474,42.29320274541826],[-71.09882574046836,42.29302349638294],[-71.09913440630945,42.29299727308813],[-71.09952294901267,42.29296426187227],[-71.0995661583107,42.29296235439908],[-71.09960913287561,42.29296113212092],[-71.09965233904455,42.2929599106338],[-71.0996955365389,42.29296006115896],[-71.09973873282081,42.29296021166369],[-71.0997480179367,42.29296039256252],[-71.09976799706777,42.29296078087338],[-71.09978169437436,42.29296104736387],[-71.09981451152876,42.29296220423105],[-71.09982488319966,42.292962569869],[-71.09986807081447,42.29296409235363],[-71.09991101936996,42.29296698604828],[-71.09995396792931,42.29296987972689],[-71.09998531225905,42.29297249260523],[-71.09999691337204,42.29297345940792],[-71.10003962166854,42.29297772427671],[-71.10008233118337,42.29298198913381],[-71.10012503082771,42.29298762599937],[-71.10016726969317,42.29299326124542],[-71.10020973462858,42.29299958329196],[-71.10032624406237,42.29301696565179],[-71.10035097647484,42.29302065559559],[-71.10116223383936,42.2931357306636],[-71.10127809614599,42.2931521644933],[-71.10139304784607,42.29316628397399],[-71.10141820156466,42.29317048742053],[-71.10144406063347,42.29317263522061],[-71.10144711727385,42.29317288980612],[-71.10146991970412,42.2931747830149],[-71.10149578740473,42.29317555967498],[-71.10151942245331,42.29317502044809],[-71.10152189535727,42.29317496330339],[-71.10153321874658,42.2931744029774],[-71.1015477760135,42.29317368100853],[-71.10156948764892,42.29317201512608],[-71.10157342937839,42.29317171189028],[-71.10157598647216,42.29317137954431],[-71.101585815579,42.29317010009231],[-71.10159909258594,42.29316837074187],[-71.10162453281548,42.29316365675599],[-71.10164951104093,42.29315894116252],[-71.10167404020756,42.29315216591883],[-71.1016981073687,42.29314538906809],[-71.1017217211536,42.29313723858208],[-71.10174464564025,42.2931283996724],[-71.10176711796116,42.29311818713222],[-71.10177130878601,42.29311606704554],[-71.10178866937613,42.29310728536632],[-71.10180953391642,42.29309569518644],[-71.10182947755024,42.29308341578177],[-71.10184850149017,42.293070447157],[-71.10185266233294,42.29306730872312],[-71.10186660573613,42.29305678931257],[-71.10188352275274,42.29304179130458],[-71.10188356299484,42.29304175543201],[-71.10188359838091,42.29304172044292],[-71.10188383754972,42.29304148269198],[-71.10190271490171,42.2930227012075],[-71.1020661127911,42.29286012466377],[-71.10207582231291,42.29285046385434],[-71.10210137674763,42.29282503873549],[-71.10215631399126,42.29277126135534],[-71.10240725907632,42.29252561599297],[-71.10264112798473,42.29228974410302],[-71.10266225370093,42.29226776879861],[-71.1026753077519,42.29225418879107],[-71.10269948327405,42.29223026137123],[-71.10272411525511,42.29220702155409],[-71.10274920921134,42.29218378332909],[-71.10277499122942,42.29216123350695],[-71.10280123213178,42.29213937129499],[-71.1028279380987,42.29211682465539],[-71.10292830207113,42.2920326594283],[-71.10299165904215,42.29197952745191],[-71.10307316572171,42.29191117734008],[-71.10315024782878,42.29184624923546],[-71.10333583814305,42.29168992269301],[-71.10392403575638,42.29119446731769],[-71.10402057882423,42.29110925981342],[-71.10404004762862,42.2910920762472],[-71.1040448212448,42.29108786308532],[-71.10405242204499,42.29108160698075],[-71.10438700818975,42.29080620155272],[-71.1043894995129,42.29080415114319],[-71.10465734158451,42.29058368191689],[-71.10499746470596,42.29029687253406],[-71.10514430176606,42.29017305202029],[-71.10517156888488,42.29014989185563],[-71.10533319266366,42.29001261919954],[-71.10549263615098,42.28987719704933],[-71.10572535579242,42.28971129080254],[-71.10572579010739,42.28971106091569],[-71.10587516287609,42.28963214979471],[-71.1058779293286,42.28963068819336],[-71.1058982446175,42.28961995607298],[-71.10594739320773,42.28959131052643],[-71.10596616168824,42.28958401584057],[-71.10599462983127,42.289572949746],[-71.10603676337435,42.28955800159395],[-71.106056348011,42.28955166131081],[-71.10607240913782,42.28954646132776],[-71.1060955060405,42.28953903201319],[-71.10610828405646,42.28953492183625],[-71.10614461788205,42.28952406993653],[-71.10621635180479,42.2895037349612],[-71.10621963857471,42.28950283512265],[-71.10628808141657,42.28948408595601],[-71.10645212549679,42.28943882631345],[-71.10646000362814,42.28943665296536],[-71.10662777087445,42.28938851946067],[-71.10662942248959,42.28938811007725],[-71.10672609408982,42.2893641590351],[-71.10673177083889,42.28936246969675],[-71.10681727308473,42.28933702995538],[-71.10686877045494,42.28932096746333],[-71.10687166192825,42.28932006535312],[-71.1069041811957,42.28930797935093],[-71.10690539533661,42.28930752795304],[-71.10690824291201,42.28930646993955],[-71.10693437484908,42.28929627251187],[-71.10694135543689,42.2892935486766],[-71.10697072190433,42.28928050835237],[-71.10697355130623,42.28927925220879],[-71.10697571025986,42.28927817653254],[-71.10699775709277,42.28926719715729],[-71.10700228297702,42.28926494388103],[-71.10700451049586,42.28926376130291],[-71.10702700585655,42.28925182193463],[-71.1070331068849,42.28924858461414],[-71.10705372266138,42.28923744638133],[-71.10705582012537,42.2892363137743],[-71.1070574721292,42.28923525436849],[-71.1070792427333,42.28922130123769],[-71.10709139409454,42.28921341924644],[-71.1073026319626,42.28907640802855],[-71.10733807051415,42.2890534220308],[-71.10734794062903,42.28904638389993],[-71.10736154370055,42.28903668373172],[-71.10779096327363,42.28873047713678],[-71.1077917117914,42.28873002413987],[-71.10795199693348,42.28863296508806],[-71.10795382380384,42.28863185855018],[-71.10797459606067,42.28861928020371],[-71.10797550351765,42.28861861527682],[-71.10815280223375,42.28848885653548],[-71.10815333990116,42.28848857747546],[-71.10944652390404,42.28781710427324],[-71.10949822894815,42.28779025569814],[-71.10965664195575,42.28769061394041],[-71.10967188787632,42.28768102441578],[-71.1097745801499,42.28761643005234],[-71.10981173749742,42.28759305839835],[-71.10981232221754,42.28759261833639],[-71.10981848613628,42.28758798021239],[-71.10996420049935,42.28747832315753],[-71.11004376014746,42.28740008156361],[-71.11004678916252,42.2873971028448],[-71.11006214771628,42.28738199930359],[-71.11007737940446,42.28736701867099],[-71.11022580557461,42.28722104962144],[-71.11028885089655,42.28715904817965],[-71.11047006586456,42.28698884138655],[-71.11055858242781,42.28690544586786],[-71.11056026558246,42.28690501942923],[-71.11120421494272,42.28674189003156],[-71.11183567346784,42.28658192079732],[-71.11222901143897,42.28651841131812],[-71.11252020147485,42.2865120375386],[-71.11313438578057,42.28649859361094],[-71.11357567131928,42.28648893137485],[-71.11376413341748,42.28648594507961],[-71.11400465302597,42.28648213317511],[-71.1140819482159,42.28648118467085],[-71.11413569616307,42.28648052524401],[-71.11441231405921,42.28647713173608],[-71.11460720249876,42.28646933190993],[-71.11461359876886,42.28646907517574],[-71.11461821282185,42.2864689925224],[-71.11463006749278,42.28646877840741],[-71.11486097158918,42.2864646146459],[-71.11486102130604,42.28646461391229],[-71.11486978497928,42.28646445603152],[-71.11507709840177,42.28646054225215],[-71.11538300875739,42.28645476782889],[-71.1154253576215,42.28645396879814],[-71.11550113141891,42.28645216346088],[-71.1156159693642,42.28644976765384],[-71.1158646523153,42.28644457650163],[-71.11621651713568,42.28643723214537],[-71.11654444539204,42.28643038660599],[-71.11667313050643,42.2864276992518],[-71.11720090317569,42.28641667851772],[-71.11756136472694,42.28641106296075],[-71.11789021591424,42.28640593892967],[-71.1182666750512,42.28639468086695],[-71.11827925332146,42.2863943040249],[-71.11832333546205,42.28639298571025],[-71.11867778370264,42.28638238420999],[-71.11867875993664,42.28638235503976],[-71.11867887394139,42.28638235001637],[-71.11867901704542,42.28638234508961],[-71.11888836739558,42.28637532875689],[-71.1194161938425,42.28635763309561],[-71.11956370408625,42.28635268659605],[-71.11944624912424,42.2883198344958],[-71.11925841685623,42.29017623098452]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00019,"geom:area_square_m":1738858.03574,"geom:bbox":"-71.1195637041,42.2863526866,-71.0964590378,42.3020258975","geom:latitude":42.294475,"geom:longitude":-71.109083,"iso:country":"US","lbl:latitude":42.295954,"lbl:longitude":-71.108063,"lbl:max_zoom":18,"mps:latitude":42.29506,"mps:longitude":-71.108118,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:ces_x_preferred":["Forest Hills"],"name:deu_x_preferred":["Forest Hills"],"name:eng_x_preferred":["Forest Hills"],"name:fra_x_preferred":["Forest Hills"],"name:nld_x_preferred":["Forest Hills"],"name:und_x_variant":["Forest Hill"],"reversegeo:latitude":42.29506,"reversegeo:longitude":-71.108118,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1245759"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0eb6a3a7ad375c2208f28ab31c8bdceb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711409,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108711409,"wof:lastmodified":1566624150,"wof:name":"Forest Hills","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85885311],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711411.geojson b/fixtures/microhoods/1108711411.geojson new file mode 100644 index 0000000..a1f4751 --- /dev/null +++ b/fixtures/microhoods/1108711411.geojson @@ -0,0 +1 @@ +{"id":1108711411,"type":"Feature","bbox":[-71.0527518644417,42.34422999824233,-71.04533672315084,42.35348750831121],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.04758812921403,42.34888918275617],[-71.04865334789609,42.34755240852459],[-71.04870425500826,42.34742724348705],[-71.04874841168312,42.34724603410627],[-71.04875272622654,42.34710666155561],[-71.04873585329729,42.34695122804321],[-71.04871101545982,42.34686702290514],[-71.0486767229992,42.34677754026922],[-71.04863247314057,42.34668011245947],[-71.04856958382506,42.34658643379574],[-71.0484551849496,42.3464631943699],[-71.04829387174951,42.34632309095281],[-71.05060974715798,42.34422999824233],[-71.0527518644417,42.34503067290478],[-71.05034323411545,42.34812554705289],[-71.05132691893748,42.34862952431619],[-71.05048100827729,42.34969535155816],[-71.05108661180519,42.35016464543197],[-71.05113274870115,42.35025639879828],[-71.05113503797384,42.35034713864292],[-71.05109620792395,42.35045260416334],[-71.05126633782581,42.35052399497204],[-71.05087140168035,42.35102393794759],[-71.05039249827222,42.3516751629527],[-71.04913164433415,42.35329280782805],[-71.04898024091628,42.35348750831121],[-71.04533672315084,42.35186220086589],[-71.04758812921403,42.34888918275617]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000029,"geom:area_square_m":266201.663068,"geom:bbox":"-71.0527518644,42.3442299982,-71.0453367232,42.3534875083","geom:latitude":42.349155,"geom:longitude":-71.04919,"iso:country":"US","lbl:latitude":42.351406,"lbl:longitude":-71.048848,"lbl:max_zoom":18,"mps:latitude":42.350817,"mps:longitude":-71.048572,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Fort Point"],"name:eng_x_preferred":["Fort Point"],"name:eng_x_variant":["Fort Point Channel","Fort Point Channel Landmark District"],"name:fra_x_preferred":["Fort Point"],"name:zho_x_preferred":["海角堡"],"reversegeo:latitude":42.350817,"reversegeo:longitude":-71.048572,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420780909,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1400626"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f3e8ed95b3a4e029a352647cec4c359f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711411,"neighbourhood_id":420780909,"region_id":85688645}],"wof:id":1108711411,"wof:lastmodified":1566624149,"wof:name":"Fort Point","wof:parent_id":420780909,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891267],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711415.geojson b/fixtures/microhoods/1108711415.geojson new file mode 100644 index 0000000..be739c0 --- /dev/null +++ b/fixtures/microhoods/1108711415.geojson @@ -0,0 +1 @@ +{"id":1108711415,"type":"Feature","bbox":[-71.0879939093011,42.29196620659524,-71.07809630769168,42.30210902740653],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0879939093011,42.29481832779565],[-71.08699199971156,42.29814200038336],[-71.08693600046306,42.29835699974993],[-71.08679099982635,42.29877399999256],[-71.08669200006982,42.29910500044281],[-71.08654099984261,42.29956199979383],[-71.08640400014842,42.30000299965433],[-71.08625600036983,42.30038899997339],[-71.08616400028394,42.30062999955469],[-71.08591799941665,42.30133399974624],[-71.0859030003825,42.30138099988056],[-71.0857270001512,42.30195299955069],[-71.0856783495661,42.30210902740653],[-71.08291117714717,42.30050793243419],[-71.07908960258065,42.30148855561044],[-71.07916056261179,42.30112824930028],[-71.07922894397548,42.30070697019165],[-71.07926191640051,42.30023216336515],[-71.07925099067864,42.29981375412641],[-71.07912629359885,42.2988574317601],[-71.07898799113208,42.29797456754627],[-71.07876423814707,42.29639325656862],[-71.07856296042563,42.29492631587178],[-71.07809630769168,42.29196620659524],[-71.0879939093011,42.29481832779565]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000064,"geom:area_square_m":589592.560299,"geom:bbox":"-71.0879939093,42.2919662066,-71.0780963077,42.3021090274","geom:latitude":42.296989,"geom:longitude":-71.082738,"iso:country":"US","lbl:latitude":42.298739,"lbl:longitude":-71.083106,"lbl:max_zoom":18,"mps:latitude":42.296927,"mps:longitude":-71.082643,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":42.296927,"reversegeo:longitude":-71.082643,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"554512169cc1956b88a411e76c8cadcc","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711415,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711415,"wof:lastmodified":1566624149,"wof:name":"Franklin Field North","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891363],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711417.geojson b/fixtures/microhoods/1108711417.geojson new file mode 100644 index 0000000..ddaeadf --- /dev/null +++ b/fixtures/microhoods/1108711417.geojson @@ -0,0 +1 @@ +{"id":1108711417,"type":"Feature","bbox":[-71.09150707463259,42.28099099995122,-71.07806970389842,42.29481832779565],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.07901885254415,42.28805436370275],[-71.0795336589718,42.28732299509802],[-71.08009344002016,42.28668997784244],[-71.08124217928041,42.28568831841598],[-71.08271144496399,42.28450608179578],[-71.08382473422024,42.28319926416636],[-71.08537478824047,42.2810150743974],[-71.08546299982687,42.28104499986916],[-71.08550399995738,42.28099099995122],[-71.08551400027761,42.28099500007624],[-71.08603399981874,42.28109699992708],[-71.08630199977713,42.28116699988398],[-71.08654100060056,42.28125600017907],[-71.08670300047112,42.28133899970609],[-71.08704799951309,42.28156499958125],[-71.08740999975956,42.28180000038616],[-71.08797399971219,42.28218999991382],[-71.08820500009485,42.28233100015125],[-71.08854499944766,42.28255299998193],[-71.08877900008498,42.28270399955957],[-71.08892899959457,42.28285000028551],[-71.08901299961182,42.2829710000398],[-71.0891079994712,42.28313400041564],[-71.089147000124,42.28325900028807],[-71.08923999946295,42.28348399997555],[-71.08929800023567,42.28357299977872],[-71.08942900001185,42.2837140000199],[-71.08955600055052,42.28382299984356],[-71.08966799963812,42.28388599986299],[-71.0897849996299,42.28393600014729],[-71.09067799987334,42.28410099991554],[-71.09138200017298,42.28423699972182],[-71.09150707463259,42.2842642888728],[-71.0879939093011,42.29481832779565],[-71.07809630769168,42.29196620659524],[-71.07806970389842,42.29139660832203],[-71.0780950756353,42.29079822306117],[-71.07816689793896,42.29026957737093],[-71.07827790865537,42.28978628256287],[-71.07839699341798,42.28938993749227],[-71.07867488826153,42.28870528401823],[-71.07901885254415,42.28805436370275]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000111,"geom:area_square_m":1019667.663377,"geom:bbox":"-71.0915070746,42.280991,-71.0780697039,42.2948183278","geom:latitude":42.288262,"geom:longitude":-71.08504,"iso:country":"US","lbl:latitude":42.288436,"lbl:longitude":-71.085133,"lbl:max_zoom":18,"mps:latitude":42.288436,"mps:longitude":-71.085133,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.288436,"reversegeo:longitude":-71.085133,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d9fee0d7b6b3298881bf8bbb43ef1803","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711417,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711417,"wof:lastmodified":1566624149,"wof:name":"Franklin Field South","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524021],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711419.geojson b/fixtures/microhoods/1108711419.geojson new file mode 100644 index 0000000..68b4f87 --- /dev/null +++ b/fixtures/microhoods/1108711419.geojson @@ -0,0 +1 @@ +{"id":1108711419,"type":"Feature","bbox":[-71.06386129032869,42.35880150073837,-71.05694726573262,42.36396435970752],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06285362561282,42.36122842525966],[-71.06376946137614,42.36122847613469],[-71.06385993439774,42.36235901039835],[-71.06386129032869,42.36268858717078],[-71.06382540614551,42.3630104922552],[-71.06376106266657,42.36325123968555],[-71.0636583111121,42.36347260027008],[-71.06343292960598,42.36396435970752],[-71.0595085417718,42.36297546874995],[-71.05924304367272,42.36290283177083],[-71.05893397011866,42.36278705280542],[-71.05867450716569,42.36263732265855],[-71.05839063141931,42.36241898422979],[-71.0581580242757,42.36217913452027],[-71.05793487268947,42.36192004276852],[-71.0577395189137,42.36163341411006],[-71.05756549099172,42.36131875218357],[-71.05745030550337,42.36103296306358],[-71.05694726573262,42.35886470741396],[-71.05727404402666,42.35882052419063],[-71.05748930048549,42.35880150073837],[-71.05769928645518,42.35880492337883],[-71.05811614437832,42.35885891342287],[-71.05854984967739,42.35894910976641],[-71.05924404895273,42.35916999160182],[-71.05956492774222,42.35929203904102],[-71.059652624166,42.35934820669158],[-71.05971664837958,42.35942496932072],[-71.05995830851298,42.35996927476133],[-71.06005379709119,42.36014815191497],[-71.06020804202485,42.36033964109014],[-71.06042837952508,42.36053585118777],[-71.06074040610442,42.36073659289553],[-71.06101694158208,42.36087700431331],[-71.0611924890563,42.36095075612571],[-71.06145058244815,42.36103039897147],[-71.06172161833379,42.36109767559502],[-71.06204374655564,42.36115464281334],[-71.06232900991263,42.36118975125558],[-71.06285362561282,42.36122842525966]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":172892.349038,"geom:bbox":"-71.0638612903,42.3588015007,-71.0569472657,42.3639643597","geom:latitude":42.361518,"geom:longitude":-71.060332,"iso:country":"US","lbl:latitude":42.360547,"lbl:longitude":-71.058685,"lbl:max_zoom":18,"mps:latitude":42.361655,"mps:longitude":-71.059808,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Government Center"],"name:eng_x_preferred":["Government Center"],"name:fra_x_preferred":["Government Center"],"name:ukr_x_preferred":["Lower Burnside"],"reversegeo:latitude":42.361655,"reversegeo:longitude":-71.059808,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815133,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1540440"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"95f6eaa002085b2cb27c105dbc0b5f89","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711419,"neighbourhood_id":85815133,"region_id":85688645}],"wof:id":1108711419,"wof:lastmodified":1566624149,"wof:name":"Government Center","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891269],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711421.geojson b/fixtures/microhoods/1108711421.geojson new file mode 100644 index 0000000..5b400eb --- /dev/null +++ b/fixtures/microhoods/1108711421.geojson @@ -0,0 +1 @@ +{"id":1108711421,"type":"Feature","bbox":[-71.08642493253849,42.30491685821089,-71.07620557115465,42.3175644724348],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0836014132343,42.30496689258798],[-71.08446339296223,42.30525871149939],[-71.08525519719497,42.3055709636881],[-71.08577239009404,42.30582837512367],[-71.08642493253849,42.30617937736439],[-71.08603535664203,42.30681056118733],[-71.08565601331483,42.30735010968058],[-71.08362180556692,42.30986025310133],[-71.0838204377855,42.31037742122787],[-71.0838576440123,42.31063685608738],[-71.08384510659866,42.31091002715706],[-71.08377573964972,42.31121640809937],[-71.08368298590423,42.3114523869704],[-71.08362891188311,42.31170053526063],[-71.08359189366656,42.31202337275703],[-71.08361049341578,42.31234409059896],[-71.08369957207175,42.31257806009542],[-71.08407202606918,42.3133227552165],[-71.08276107599796,42.31300389151967],[-71.08263659693289,42.3127427682417],[-71.08255948308557,42.31248848932431],[-71.0824968662269,42.31218786813762],[-71.0824748738666,42.31186130683772],[-71.08250272375864,42.31152864139588],[-71.08080773305272,42.31374043358243],[-71.08018133802803,42.3147646346223],[-71.07969363979176,42.31580866582933],[-71.0794185596598,42.31673765181229],[-71.07923179501009,42.3175644724348],[-71.07620557115465,42.31732716310414],[-71.07654701126027,42.31578905544231],[-71.07682865282293,42.31487847343982],[-71.07729878378848,42.31380291354774],[-71.07802046280015,42.31274557365413],[-71.08184106054873,42.30751380285943],[-71.08150584102256,42.3071127593662],[-71.08122294026441,42.30682211369607],[-71.08074578180687,42.30638179239241],[-71.08011077912965,42.30581862271388],[-71.08113076007517,42.30516005376773],[-71.0817320669262,42.30566574013874],[-71.08194678728375,42.30586604236019],[-71.08214186702041,42.30606260646298],[-71.08254703704532,42.30647485239177],[-71.08347538165526,42.30491685821089],[-71.0836014132343,42.30496689258798]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000047,"geom:area_square_m":431417.700997,"geom:bbox":"-71.0864249325,42.3049168582,-71.0762055712,42.3175644724","geom:latitude":42.311043,"geom:longitude":-71.081159,"iso:country":"US","lbl:latitude":42.310968,"lbl:longitude":-71.081082,"lbl:max_zoom":18,"mps:latitude":42.310968,"mps:longitude":-71.081082,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.310968,"reversegeo:longitude":-71.081082,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"65bb1c65f9764091a5f33ef5f33ca5f3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711421,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711421,"wof:lastmodified":1566624132,"wof:name":"Grove Hall","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524067],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711423.geojson b/fixtures/microhoods/1108711423.geojson new file mode 100644 index 0000000..ed246da --- /dev/null +++ b/fixtures/microhoods/1108711423.geojson @@ -0,0 +1 @@ +{"id":1108711423,"type":"Feature","bbox":[-71.04668843414873,42.31671993035004,-71.03651660976496,42.3221236551145],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.03931374563437,42.31671993035004],[-71.04668843414873,42.31927365975945],[-71.0434415047138,42.3221236551145],[-71.04342490802416,42.32208379945885],[-71.04338111389362,42.32200349800996],[-71.04333521586346,42.3219072709039],[-71.04329268050695,42.32180639089086],[-71.04327613431974,42.32174211404283],[-71.043272686907,42.32170724978285],[-71.04325734481226,42.32168139435994],[-71.04323611549857,42.32165112478232],[-71.04320964042712,42.32163043873904],[-71.04316800718117,42.32160969334288],[-71.04309132585784,42.32157728118617],[-71.04299067099274,42.32153681681762],[-71.04287561658653,42.32149272900835],[-71.04279196423795,42.32145315405731],[-71.04269387511076,42.32141544644398],[-71.04258362176736,42.32137302048695],[-71.04249034651504,42.32133450538173],[-71.04238971103189,42.32129129824879],[-71.04228680166108,42.32125521323832],[-71.04217914835792,42.32121115509879],[-71.04207257579563,42.32117066544634],[-71.04196454319337,42.32112742756548],[-71.04185580019193,42.32108061886601],[-71.04175517274179,42.3210365847295],[-71.04150148908411,42.32093678412888],[-71.04118772357259,42.32081149875589],[-71.04086330972827,42.32067574181806],[-71.04053884064177,42.32054711770393],[-71.04024318170374,42.32042382334574],[-71.03994157323908,42.32030489246272],[-71.0397524328644,42.3202292213304],[-71.0396197063257,42.32017545417137],[-71.03958372057916,42.32014128321497],[-71.03953668794551,42.32015097468066],[-71.03948529082294,42.32015076875668],[-71.03945170185642,42.32014267552444],[-71.03940262735316,42.32012820912827],[-71.03935845348991,42.32010114105788],[-71.03932136750778,42.32006531626037],[-71.03930246324268,42.32002078641327],[-71.03929907844778,42.31997796541881],[-71.0393067120039,42.3199450657722],[-71.03932135309888,42.31991494012533],[-71.03934559486784,42.3198864978029],[-71.03937681334996,42.3198643963344],[-71.03941799656236,42.31984562808461],[-71.0394107160782,42.31982968071807],[-71.0393653593341,42.3198124859908],[-71.0392647132202,42.31977119548501],[-71.0390936941636,42.31969559499166],[-71.03881570129062,42.31958416707806],[-71.03854180135512,42.31946973531461],[-71.03820043850219,42.31932759072108],[-71.03792172406793,42.31921423648546],[-71.03758771045372,42.31907843159982],[-71.03731605050304,42.31896153637598],[-71.0371173248485,42.31888307725581],[-71.03703579871367,42.31885695530335],[-71.0369098991673,42.31883065360958],[-71.03677333554263,42.31879717302251],[-71.03667260356485,42.3187682283879],[-71.03662355446635,42.31875019120859],[-71.03657091598114,42.31871787518806],[-71.0365339392687,42.31866778286351],[-71.03651660976496,42.31861063578462],[-71.03652295592634,42.31855193663149],[-71.03655332715016,42.31849415903226],[-71.0366016839204,42.31845511175297],[-71.03667624904513,42.31842165923708],[-71.03682453429283,42.31836956958757],[-71.03695318548664,42.31832206689838],[-71.03711589132256,42.31827003407169],[-71.03724566050688,42.31822171178429],[-71.03732286543895,42.31818086091255],[-71.0385181226601,42.31782055938067],[-71.03856938654158,42.31780175224949],[-71.03860635982612,42.31777777527303],[-71.03863624450159,42.31774490535101],[-71.03931374563437,42.31671993035004]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":223316.434836,"geom:bbox":"-71.0466884341,42.3167199304,-71.0365166098,42.3221236551","geom:latitude":42.319257,"geom:longitude":-71.041772,"iso:country":"US","lbl:latitude":42.314851,"lbl:longitude":-71.038873,"lbl:max_zoom":18,"mps:latitude":42.319307,"mps:longitude":-71.041771,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:ceb_x_preferred":["Harbor Point"],"name:eng_x_preferred":["Harbor Point on the Bay"],"name:eng_x_variant":["Harbor Point"],"reversegeo:latitude":42.319307,"reversegeo:longitude":-71.041771,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f213f796b91d8a490df3d0417d10604e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711423,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711423,"wof:lastmodified":1566624132,"wof:name":"Harbor Point","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891259],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711425.geojson b/fixtures/microhoods/1108711425.geojson new file mode 100644 index 0000000..7f6423a --- /dev/null +++ b/fixtures/microhoods/1108711425.geojson @@ -0,0 +1 @@ +{"id":1108711425,"type":"Feature","bbox":[-71.02627915094851,42.37835035990678,-70.99445396634272,42.396977502126],"geometry":{"type":"MultiPolygon","coordinates":[[[[-70.99445396634272,42.39331605212679],[-70.994454,42.393316],[-70.994475,42.393284],[-70.994731,42.392888],[-70.99495,42.392549],[-70.995658,42.391462],[-70.995858,42.391169],[-70.996076,42.390898],[-70.996416,42.390559],[-70.996729,42.390291],[-70.997154,42.389942],[-70.998575,42.388875],[-70.998818,42.388769],[-70.998907,42.388712],[-70.999003,42.388674],[-70.999081,42.388644],[-70.999121,42.388629],[-70.999265,42.388587],[-70.999377,42.388565],[-70.999469,42.388554],[-70.99965,42.38854],[-70.999875,42.388531],[-70.999965,42.388525],[-71.00044,42.388497],[-71.000668,42.388477],[-71.00082,42.388443],[-71.001075,42.388364],[-71.001163,42.388331],[-71.001209,42.388314],[-71.002127,42.38801],[-71.002317,42.387941],[-71.002518,42.387884],[-71.002715,42.387842],[-71.002909,42.387807],[-71.003058,42.387793],[-71.003102,42.387792],[-71.003282,42.387787],[-71.00338475666692,42.38776448382212],[-71.003764885499,42.38763690839919],[-71.004217,42.387472],[-71.004385,42.387417],[-71.005145,42.387166],[-71.00579,42.386953],[-71.005972,42.386893],[-71.006199,42.386819],[-71.006519,42.386716],[-71.006795,42.386664],[-71.007148,42.386582],[-71.008644,42.386074],[-71.00921,42.385883],[-71.01008,42.385593],[-71.010399,42.385478],[-71.012591,42.384747],[-71.014031,42.38426],[-71.01413413362039,42.38422126615094],[-71.0115202657092,42.38034591955665],[-71.01152367794624,42.38034635620124],[-71.0115392126686,42.38034806878806],[-71.0115547391927,42.38035005682634],[-71.01157985338277,42.38035729553851],[-71.01160384771511,42.38036535595626],[-71.01162672708207,42.38037423359965],[-71.01166253299965,42.38038700764139],[-71.01169871802486,42.38039786476546],[-71.01174196728473,42.38040518311423],[-71.01175268747158,42.38040687433861],[-71.01176341522607,42.38040774273013],[-71.01177412692746,42.38041053316915],[-71.01178521533336,42.38041250234184],[-71.01179481087308,42.38041610730514],[-71.01180439246033,42.3804213624379],[-71.01181250900574,42.38042496382451],[-71.01182097620152,42.38043048971538],[-71.01182945674138,42.38043491640958],[-71.0118331378494,42.38043767701012],[-71.01183790610563,42.3804429099152],[-71.01184120415967,42.38044731461806],[-71.01184707742831,42.38045364966356],[-71.0118533210355,42.38045998808073],[-71.01186142758742,42.38046441318567],[-71.01186991447908,42.38046801794011],[-71.01187951121851,42.3804716265025],[-71.01188799328987,42.38047522673369],[-71.01189759516825,42.38047801245241],[-71.01194298279542,42.38049604333116],[-71.01197653255747,42.38051292202282],[-71.01201005902313,42.38053282197492],[-71.01204099155473,42.38055353377912],[-71.0120711658271,42.38057589078764],[-71.01210942014721,42.38060705987003],[-71.0121450647821,42.38064013998947],[-71.0121821074029,42.38068420324599],[-71.01221767322423,42.38072798383977],[-71.01223676914528,42.38074754975188],[-71.0122569813044,42.38076629302765],[-71.01228338333405,42.38079851105365],[-71.01230830789386,42.38082989994629],[-71.0123226331456,42.38084422934723],[-71.01232741415708,42.38084781745781],[-71.01233330231304,42.38085223312513],[-71.01233808576124,42.38085582034532],[-71.01234398147136,42.38085941408053],[-71.01234877249411,42.38086217666789],[-71.01235615565409,42.38086467925542],[-71.0123620525942,42.38086827119427],[-71.01236795859603,42.38087021564294],[-71.01237534567409,42.38087189538195],[-71.0123823627448,42.3808738436388],[-71.01238828476178,42.38087386873876],[-71.0123945846845,42.38087307347655],[-71.01239939321165,42.38087309385661],[-71.01240532368328,42.38087202243989],[-71.01241125840978,42.38087039916392],[-71.0124412612034,42.38086778403812],[-71.0126214295535,42.38087842450498],[-71.012634743805,42.38087930377207],[-71.0126465814988,42.38088017678271],[-71.01265881099891,42.38087858286027],[-71.01267065260546,42.38087863302115],[-71.01268177073078,42.38087675980048],[-71.01269251761391,42.3808751577937],[-71.0127561970956,42.3808726843265],[-71.01280062308767,42.38087122584254],[-71.01284175545467,42.38086509079968],[-71.01287767541467,42.38086249701478],[-71.01293543529596,42.38085999748363],[-71.01298838843326,42.38085693020025],[-71.01302690085808,42.38085434734317],[-71.01307355254576,42.38085180072294],[-71.01311576485038,42.38084923439586],[-71.01312763756287,42.38084571679742],[-71.01314692001678,42.3808414103915],[-71.01316138424998,42.38083708089247],[-71.01319140089338,42.38083281810162],[-71.01321698687889,42.38082661353948],[-71.01324445598642,42.38081602713157],[-71.01328308451241,42.3807983549418],[-71.0133109812735,42.38078063734012],[-71.01332924013826,42.38076479837716],[-71.01336283814061,42.38072734624478],[-71.0133800257067,42.38070601638297],[-71.01339680434309,42.38069017024785],[-71.01340658700478,42.38066963192553],[-71.01341301418772,42.38065181988912],[-71.01341425133113,42.38063591161876],[-71.01342038684079,42.38060739841705],[-71.0134253449938,42.38058875910328],[-71.01342923700251,42.38056380425634],[-71.01342566169255,42.3805475992432],[-71.01341990439506,42.38052617052904],[-71.01341737558263,42.38051820308186],[-71.01340788975126,42.38050032644141],[-71.01339620203929,42.38047997009463],[-71.01339635406636,42.38046021300122],[-71.01340248808563,42.38043252355729],[-71.01343036232467,42.38041754991082],[-71.01346639209066,42.38040096321965],[-71.01347884948602,42.38036973266886],[-71.01347479946409,42.38027065406911],[-71.01347492822876,42.38025391734528],[-71.0134750992292,42.380231690839],[-71.01346314162946,42.38019843671956],[-71.01344782767801,42.38016818617183],[-71.0134362096766,42.38013877591779],[-71.01339913060451,42.38009937820432],[-71.01337527851105,42.38007265937684],[-71.01333231980433,42.38002774951033],[-71.01329672859606,42.379987534292],[-71.01326919908078,42.37995805580351],[-71.01324798325115,42.37992503707697],[-71.01323004174628,42.37989999075383],[-71.01322280317542,42.37987855665889],[-71.01321705354874,42.37985630599951],[-71.01321145357393,42.37981429913366],[-71.01320919188672,42.37977147902704],[-71.01321211049833,42.37972895812846],[-71.01321729945668,42.37967986032227],[-71.01322345369418,42.37964970237626],[-71.01323220245037,42.37961928262001],[-71.01324427859963,42.3795891461276],[-71.01325407017832,42.37956696032257],[-71.01326496253631,42.37954642670263],[-71.01327618901915,42.37953028430398],[-71.01328814774864,42.37951524155401],[-71.01330045178175,42.37950376900891],[-71.01331238425738,42.37949229399037],[-71.01332950514863,42.37947974436732],[-71.01334624967791,42.37946828970158],[-71.0133655829835,42.37945684508365],[-71.01338713711945,42.379445412557],[-71.0133945654088,42.37944187613191],[-71.01340310714806,42.37943834621645],[-71.01341126979509,42.37943563576044],[-71.01341979675752,42.37943402609754],[-71.01342832854817,42.37943131540105],[-71.01343795655801,42.37943053505831],[-71.01344648564549,42.37942864901371],[-71.01345611124003,42.37942786685861],[-71.01347757400863,42.37942878049117],[-71.01350049731525,42.37943162061237],[-71.01352193774201,42.37943528092369],[-71.01354966044828,42.37943978795828],[-71.01357699924324,42.37944621547984],[-71.01360359346644,42.3794534609104],[-71.0136238930158,42.3794606824235],[-71.01363127851191,42.37946318223947],[-71.01363717928666,42.37946595216683],[-71.01364419499832,42.37946790394327],[-71.01365640035893,42.37946877840567],[-71.01366934762525,42.3794696560031],[-71.01371044313656,42.3794681839927],[-71.01375266324706,42.37946479460404],[-71.01379342186068,42.37945865404237],[-71.0138341891998,42.3794516933399],[-71.01384379102927,42.37945447619612],[-71.01386555933775,42.37946334960127],[-71.01389291805332,42.37946703305115],[-71.01393284889778,42.37947269082967],[-71.01398061178062,42.37947014854014],[-71.01401690488298,42.37946755687899],[-71.01405763605743,42.3794649839528],[-71.0140939354622,42.37946157123049],[-71.01412134779942,42.37945811916271],[-71.01415177169378,42.37944864426999],[-71.01417068812226,42.37944323509416],[-71.01418778564077,42.37943370391396],[-71.0142093345343,42.3794230913749],[-71.0142275253157,42.37941603519803],[-71.0142467985306,42.37941254873269],[-71.01426127322631,42.37940712078738],[-71.01427686526125,42.37940087649429],[-71.01429880342602,42.37938779789021],[-71.01430362392595,42.37938671898897],[-71.0143069597085,42.379385910208],[-71.0143117780855,42.37938510768613],[-71.01431548664144,42.37938430047868],[-71.01432031856545,42.37938157589686],[-71.01432625519094,42.37937968064313],[-71.0143325723712,42.37937614126753],[-71.01433852164806,42.37937259853786],[-71.01434336863693,42.37936822829057],[-71.0143493242315,42.379363862723],[-71.01436382418282,42.37935514341521],[-71.01437832868787,42.37934614683586],[-71.01438910143636,42.37934097873621],[-71.01439987749194,42.37933553786196],[-71.01441100041258,42.3793328398305],[-71.0144228715541,42.37932932209201],[-71.01443139216536,42.3793285342912],[-71.01443842896208,42.37932774112738],[-71.01444693839127,42.37932777704258],[-71.01445767862808,42.37932700040858],[-71.0144699035798,42.37932595365095],[-71.01447805019566,42.37932516516859],[-71.01448658311284,42.37932245799971],[-71.01449510251507,42.37932166928884],[-71.01450214684844,42.3793200523886],[-71.01451068098511,42.3793173443228],[-71.01451810286588,42.37931463246294],[-71.01452515562947,42.37931191724442],[-71.0145325766085,42.37930948086824],[-71.01453854305123,42.37930401608392],[-71.01454559459161,42.37930130175929],[-71.01455192440527,42.37929611399599],[-71.01455677015937,42.3792917437345],[-71.01456273292791,42.37928628253457],[-71.01456757989473,42.37928191227773],[-71.01509733432566,42.37912114908248],[-71.01521803815811,42.37921166056119],[-71.01518110315878,42.37934679042218],[-71.01585377069077,42.38033968962028],[-71.01625379157095,42.38035015284802],[-71.01772023108957,42.38031367299713],[-71.01910972261653,42.38026828302274],[-71.02071544598063,42.38016029625369],[-71.02134298499112,42.38010715972236],[-71.02198289053459,42.38000911628102],[-71.02258095835617,42.37985844723051],[-71.02313106203327,42.37966535339091],[-71.02346202480253,42.37953816165117],[-71.02386620515767,42.37936224743486],[-71.02439780431061,42.37907193489654],[-71.02552436408648,42.37835035990678],[-71.02627915094851,42.37870456024085],[-71.0196460443502,42.38632752083733],[-71.01977441065195,42.38635249193466],[-71.01976542250475,42.38635437318343],[-71.0197472265041,42.38636225577192],[-71.0197293934277,42.3863709618346],[-71.01971229781188,42.38637994646079],[-71.01969555382003,42.38639140203988],[-71.0196784344066,42.38640367801143],[-71.0196460443502,42.38642769209137],[-71.01961446871158,42.38644265177386],[-71.01959886207229,42.38645081973758],[-71.01958436627355,42.38645871414872],[-71.01956760519838,42.38647209265109],[-71.01955158941162,42.38648519877533],[-71.01953853343969,42.38649858824355],[-71.01952507874428,42.38651554478327],[-71.01951161776849,42.38653332685841],[-71.01949851468729,42.3865527534506],[-71.01945328193166,42.38661128756679],[-71.01943049847901,42.38663808578319],[-71.01940623677079,42.38666460143221],[-71.01938084302137,42.38669385642223],[-71.01935656041294,42.38672311604827],[-71.01932261827294,42.38675700330315],[-71.01929726496118,42.38678076939313],[-71.01927302434513,42.38680481561433],[-71.0192375534588,42.38684473198092],[-71.0192024565805,42.3868846471984],[-71.01914310186446,42.38695053424046],[-71.01911884374478,42.38697622698056],[-71.01909459429906,42.38700109598912],[-71.01906808525709,42.38703117091038],[-71.01904120495306,42.38706151525989],[-71.01901584391939,42.38708610681807],[-71.01898937569167,42.38711096652884],[-71.01896023710057,42.3871456975196],[-71.01892998977482,42.3871804184654],[-71.01887296003933,42.38723259291258],[-71.0188476105467,42.38725580974329],[-71.01882226552631,42.3872787556007],[-71.01880392714658,42.38730529679253],[-71.0187844876855,42.38733018585106],[-71.0187710463499,42.3873454966322],[-71.01876507900535,42.38735150719769],[-71.0187590937064,42.38735971708882],[-71.01875156717767,42.38737559998111],[-71.01874552463538,42.38739148998018],[-71.01873568452447,42.38741998701816],[-71.01873561560636,42.38742904181613],[-71.01874041958577,42.38742988477229],[-71.01874038616856,42.38743427533201],[-71.01871520812578,42.38743526926655],[-71.01869470788513,42.38745384196049],[-71.01870050311102,42.38747060523788],[-71.01869568206983,42.38747168432133],[-71.01868719000753,42.38746890382279],[-71.01867905492206,42.38746804692958],[-71.0186705332737,42.38746883414323],[-71.01866201788897,42.38746879852017],[-71.01865608898802,42.38746959657925],[-71.01865126532549,42.38747149851217],[-71.01864533763855,42.38747229657579],[-71.01863902965167,42.38747391591036],[-71.0186342011307,42.38747581782224],[-71.0186282600388,42.38747853614094],[-71.01862343725072,42.38748016348887],[-71.01861859984332,42.38748371108748],[-71.01861376629155,42.38748643313886],[-71.01860893151127,42.38748915698552],[-71.01859435769161,42.38750693249474],[-71.01858237991868,42.3875244442767],[-71.01856399958183,42.38755647340317],[-71.01855536091819,42.38757262711651],[-71.01854450926109,42.38758849788191],[-71.01852882664932,42.38760626874289],[-71.0185131490869,42.3876232158603],[-71.01849367212141,42.38765332097432],[-71.01847642013671,42.38768261073358],[-71.01847154091918,42.38769164539981],[-71.01846444527243,42.38769957243972],[-71.01845698285953,42.38770749974478],[-71.01844988754003,42.38771570227298],[-71.0184424089469,42.38772527523385],[-71.0184341454877,42.38774142960779],[-71.01842551127193,42.38775731054263],[-71.0184135375943,42.38777427224821],[-71.01840007362283,42.38779205237748],[-71.01838285116057,42.38781777440874],[-71.01835852584183,42.38785252359099],[-71.0182822391979,42.38795373408174],[-71.01823860471146,42.38799636093106],[-71.01820584392712,42.38802119411176],[-71.01817455235837,42.38804685629783],[-71.01814660179983,42.38807171140539],[-71.01813688103832,42.38808401993077],[-71.0181260590054,42.38809550008064],[-71.01807749186437,42.38815429336766],[-71.01805321557812,42.3881827298779],[-71.01802781310653,42.38821280738982],[-71.01798185792566,42.3882685938153],[-71.01793660667053,42.38832904935786],[-71.01793435236834,42.38833370429914],[-71.01793319271269,42.3883397376642],[-71.0179331592321,42.38834412912306],[-71.01793311741221,42.38834961439538],[-71.01793307765828,42.3883548286901],[-71.01793414943982,42.38836032132891],[-71.0179352196648,42.38836554027407],[-71.01793628660276,42.38837103109201],[-71.01793996216618,42.38837461432793],[-71.01794362032595,42.38837984321511],[-71.01794839748926,42.38838453031623],[-71.01795317676032,42.38838894103789],[-71.01795795603202,42.38839335175935],[-71.01796642607376,42.3883988735918],[-71.01797601809892,42.38840330357466],[-71.01798412730523,42.38840772914538],[-71.0179889191326,42.38841049329358],[-71.01799371932607,42.38841216002704],[-71.01799851621226,42.38841410133384],[-71.01800331013384,42.38841659090277],[-71.01800699198292,42.38841935040038],[-71.01801177894764,42.38842211542755],[-71.01801397030368,42.3884265144055],[-71.01801762637956,42.38843201786899],[-71.01802017942663,42.38843724212435],[-71.01802235754035,42.38844274119715],[-71.0180234277946,42.3884479574406],[-71.01802597875667,42.38845345537425],[-71.01802593901718,42.3884586687686],[-71.01802700715156,42.38846416319169],[-71.01802696741214,42.388469376586],[-71.0180258156127,42.38847485810894],[-71.0180257612222,42.38848199355417],[-71.018024604022,42.38848802422937],[-71.01802307430944,42.38849433063249],[-71.01802079995615,42.38850145677845],[-71.01801704909323,42.3885077502761],[-71.01801478309724,42.38851377990764],[-71.0180110384916,42.38851925236971],[-71.01800618248895,42.38852554303813],[-71.01800132877875,42.38853073626633],[-71.01799536421412,42.38853619852799],[-71.01798940173474,42.38854138711094],[-71.01798307512829,42.38854575130604],[-71.01797711559838,42.38855039342658],[-71.01797005689411,42.38855393169185],[-71.01796262781767,42.38855746480391],[-71.01795408717382,42.38856072317255],[-71.01794702725272,42.38856426143132],[-71.01793849565159,42.38856697066177],[-71.01793144587425,42.38856885963672],[-71.01792291513715,42.38857129608272],[-71.0179143924654,42.38857235602344],[-71.01790623599848,42.38857396757309],[-71.01789771419146,42.38857475472933],[-71.01788920351589,42.38857471906943],[-71.01788068919711,42.38857468339365],[-71.01787477273078,42.38857383574062],[-71.01786997252131,42.38857216990256],[-71.01786406443708,42.38857022303396],[-71.01785816138569,42.38856745692517],[-71.01785335733157,42.38856661393242],[-71.01784597635603,42.38856383802878],[-71.01783896127112,42.38856133644485],[-71.01783268903714,42.38855856878767],[-71.01782455139418,42.38855771182409],[-71.01781826698081,42.38855685992537],[-71.01781234424212,42.38855683510494],[-71.01780642150337,42.38855681028424],[-71.01780049876469,42.38855678546321],[-71.01779456345511,42.38855840901427],[-71.01778603658802,42.38856001900314],[-71.01777639499826,42.38856272356968],[-71.01776785225687,42.38856625560292],[-71.01775930954197,42.3885697840345],[-71.01775113335076,42.38857414046491],[-71.01774369584847,42.38857877637886],[-71.01773663206649,42.38858313747069],[-71.01772323680369,42.38859186182222],[-71.01771243224361,42.38860087071857],[-71.01770162016216,42.38861070604558],[-71.01769302786022,42.38862137083769],[-71.01768442441423,42.38863285934481],[-71.0176773208469,42.38864243472717],[-71.01765411109821,42.38867636377049],[-71.0176055415237,42.38873488225637],[-71.01758125730997,42.38876414149393],[-71.01755696711557,42.38879449995125],[-71.01751587343836,42.38884317449887],[-71.01749158914156,42.38887243371678],[-71.01746730394122,42.38890196751303],[-71.01741874272953,42.38895966309153],[-71.01737989220584,42.3890056011232],[-71.01732910632772,42.38906356191929],[-71.01730372145359,42.38909171993071],[-71.01727796162267,42.38912015185112],[-71.0172525587519,42.38915050197366],[-71.01720399713959,42.38920819925867],[-71.0171797188415,42.38923663557255],[-71.01715690713074,42.38926672465995],[-71.0171105754794,42.38932278463814],[-71.01706090482992,42.38938047630686],[-71.01703550769022,42.38940973075577],[-71.01701123044651,42.38943816793811],[-71.01696155597241,42.38949585954713],[-71.01693839616232,42.38952347854293],[-71.01689240938596,42.38958283132731],[-71.01686923065878,42.38961291791503],[-71.01684605367014,42.38964245623075],[-71.01680605544333,42.38969305453078],[-71.01675748793947,42.38975157356046],[-71.01670781298075,42.389809265956],[-71.01669325278375,42.38982511916471],[-71.01661931270195,42.38990960115657],[-71.01660476361508,42.38992463063833],[-71.01660103977552,42.38992735996768],[-71.01659768248746,42.38993091279851],[-71.01659506235573,42.38993447052673],[-71.01659282136423,42.38993720518529],[-71.01659020963596,42.38993966369882],[-71.01658796113176,42.38994322208792],[-71.01658682384826,42.38994678514551],[-71.01658679658496,42.38995035106607],[-71.01658528767287,42.38995391346261],[-71.01658526042324,42.38995747758261],[-71.01658522474197,42.38996214451824],[-71.01658519747167,42.38996571133902],[-71.01658665184364,42.38996928258401],[-71.01658662665207,42.38997257752702],[-71.01658770938198,42.38997614991148],[-71.01658990333355,42.38997972696446],[-71.01659246053059,42.38998440119223],[-71.0165957632755,42.3899879829034],[-71.01659944726077,42.38999046696621],[-71.01660422445302,42.38999515322112],[-71.01660900882833,42.38999874115639],[-71.01661491161525,42.39000123454008],[-71.01662117640646,42.3900048286941],[-71.01662708460711,42.39000677292508],[-71.01663298649706,42.39000954269205],[-71.01664368239052,42.39001480028278],[-71.01665585415248,42.39002034136042],[-71.01666653415627,42.39002751919347],[-71.01667501001891,42.39003277015662],[-71.0166819946635,42.39003911050413],[-71.01668935060832,42.39004517692312],[-71.01669154964324,42.39004793113352],[-71.01669301029207,42.39005068224241],[-71.01669520303774,42.39005425928824],[-71.01669629330675,42.39005700524024],[-71.01669738441895,42.39005948201005],[-71.01669883877875,42.39006305595432],[-71.01669992904806,42.39006580190628],[-71.0166999017842,42.390069368727],[-71.01669874859859,42.39007485383053],[-71.01669722711758,42.39008006099912],[-71.01669607517348,42.39008554250669],[-71.01669382159488,42.39008992373829],[-71.01668147656862,42.39010688819992],[-71.0166695154563,42.39012192765967],[-71.01665606637447,42.39013778913125],[-71.01664041353085,42.39015199021826],[-71.0166258595079,42.39016702328249],[-71.01661020300007,42.39018122525022],[-71.01660648786535,42.39018313175435],[-71.01660166483266,42.39018475721597],[-71.01659794726854,42.3901866637096],[-71.01659312179959,42.39018829006091],[-71.01658830052213,42.39018936815516],[-71.0165834750665,42.39019099270555],[-71.01657865589488,42.39019179532058],[-71.01657384665765,42.39019177511525],[-71.01656902660096,42.39019285231349],[-71.01656088247337,42.39019281809632],[-71.01655348512469,42.39019168956695],[-71.01654497809493,42.39019083096197],[-71.01653684147374,42.39018997391275],[-71.01652095090186,42.39018634020905],[-71.01650654440104,42.39018271183888],[-71.01649103054021,42.3901782559518],[-71.01647663387674,42.39017270640776],[-71.0164600246884,42.39016632650279],[-71.01645892726343,42.39016467616725],[-71.01645746154387,42.39016274789596],[-71.0164563578263,42.3901619203958],[-71.01645414166958,42.39016108822073],[-71.01645266368004,42.39016108200956],[-71.01645155996256,42.39016025450939],[-71.01644934591964,42.39015914595512],[-71.01644787179399,42.39015831689829],[-71.01644565177358,42.39015830756868],[-71.01644454054893,42.39015830289874],[-71.01644195519873,42.39015746917187],[-71.01642859663946,42.3901618037288],[-71.01640929684558,42.39016803542619],[-71.01639035853994,42.3901759107623],[-71.01637431176698,42.3901928587323],[-71.01633053803211,42.39025331803803],[-71.01630883678423,42.39028341072089],[-71.01628713792391,42.39031350611047],[-71.01624823781154,42.39036602643892],[-71.01620075971768,42.39042647282081],[-71.01615330740289,42.39048417341728],[-71.01612901941637,42.39051343232617],[-71.01610473505069,42.39054269124507],[-71.01607932471317,42.39057386843519],[-71.01603075221671,42.39063238713083],[-71.01598255877646,42.39069008363787],[-71.01593398730876,42.39074860319641],[-71.01592427113073,42.39076036147503],[-71.01587570707683,42.39081805727758],[-71.01582603048254,42.39087574837782],[-71.01578344650775,42.39092551167212],[-71.0157337746028,42.39098320275156],[-71.0157083909135,42.39101053664763],[-71.01568262330817,42.39103978743238],[-71.01563441328713,42.39109940763303],[-71.01563293527569,42.39109940141136],[-71.01563180778406,42.39110104238868],[-71.01560642045378,42.39112947369563],[-71.01558212595972,42.39115983350964],[-71.01553355377435,42.39121835109224],[-71.01549839502295,42.39126540056846],[-71.01549460377433,42.39127691007062],[-71.01549229451533,42.3912886994999],[-71.01549074944272,42.39129665152535],[-71.01548958085701,42.39130460513604],[-71.01548582204899,42.39131172227739],[-71.01541462925262,42.39137563450254],[-71.01537697537995,42.39141005051819],[-71.01533821685072,42.39144391359414],[-71.01528965295144,42.39150160914526],[-71.01526573580513,42.3915308694305],[-71.01524255434765,42.39156095927279],[-71.01520481101747,42.39160717400684],[-71.01515512478261,42.39166596132012],[-71.01513084671113,42.3916941244075],[-71.0151054405542,42.39172447493299],[-71.01506433832579,42.3917742442002],[-71.01501798014343,42.3918335973542],[-71.01497310025417,42.39189322770653],[-71.01495851686352,42.39191182646716],[-71.0149195746387,42.39196956331687],[-71.01487952231362,42.39202729367224],[-71.01486120617697,42.39205054016562],[-71.01485412795249,42.39205654854234],[-71.01484814893429,42.39206365720148],[-71.0148417931814,42.39207158713351],[-71.01483839354836,42.39208063057922],[-71.01483462952139,42.39208857053808],[-71.01483196563282,42.39209843904707],[-71.01482967330409,42.39210721077348],[-71.01482849378395,42.39211625997859],[-71.01482841165225,42.39212696313504],[-71.01482833796236,42.39213656617735],[-71.0148304807993,42.39214727601426],[-71.01483298674921,42.39215799008304],[-71.01488484707392,42.39225013425607],[-71.0149492407201,42.39234919321724],[-71.01497416096132,42.39238222712846],[-71.01500166843556,42.39241554562579],[-71.01503141650437,42.3924466804625],[-71.01508995657707,42.39248808735368],[-71.0151522214149,42.39252731591182],[-71.01518797656934,42.39254722424213],[-71.01522520202518,42.39256878537874],[-71.01529706605284,42.3926107974691],[-71.01529705765361,42.3926118930819],[-71.01542851495441,42.39270327660687],[-71.01549069488892,42.39275348090796],[-71.0155502605992,42.39280614455316],[-71.01556459560373,42.3928196506758],[-71.01561821098353,42.39287585436621],[-71.01566700138692,42.39293423622033],[-71.0156717682363,42.39294029270181],[-71.01570874066823,42.39299477967278],[-71.0157408865453,42.39305117022986],[-71.01578670264588,42.3931592055872],[-71.01578924730181,42.39316552639924],[-71.01579381929501,42.39319655418642],[-71.01579579209798,42.39322949224613],[-71.01579553152497,42.3932635165556],[-71.0157887425285,42.39337654409081],[-71.01578366250328,42.393411373681],[-71.01577970095893,42.3934451087283],[-71.01577065939044,42.39351367066319],[-71.01576946104517,42.39352519198027],[-71.0157667491275,42.39358939255632],[-71.01576478437063,42.39365277251408],[-71.01575095325363,42.39376659236343],[-71.01574102251898,42.39380661509062],[-71.01572627740563,42.3938466166551],[-71.01571650607099,42.39386550854229],[-71.0157041549707,42.39388329392339],[-71.01569218027092,42.3938999834389],[-71.01567650160206,42.39391693015009],[-71.01566307404526,42.39393031940189],[-71.01564741638926,42.39394452122615],[-71.01563030432334,42.39395515089424],[-71.01561355757195,42.39396660765958],[-71.0155700874584,42.39398700429784],[-71.01552551565518,42.3940062979327],[-71.01549395749241,42.39401851338089],[-71.01546276400039,42.39403100494309],[-71.01542522422211,42.3940503317504],[-71.01538916527599,42.39406993666813],[-71.01534082447965,42.3940982712335],[-71.0153348465238,42.39410538172017],[-71.01532886859421,42.39411248860549],[-71.0153239944075,42.39412042660179],[-71.0153202441297,42.39412672360942],[-71.01529817184746,42.39415681541958],[-71.01528022536249,42.39417978803964],[-71.01526079501106,42.39420303169405],[-71.015216803147,42.39429175408746],[-71.01517275821023,42.39438706453003],[-71.01516512052092,42.39441721622917],[-71.0151589636665,42.39444764875412],[-71.01515517071331,42.39445998109158],[-71.01515062359704,42.39447341040032],[-71.0151442427154,42.39448490717151],[-71.01513940968643,42.39448762997787],[-71.01513456280799,42.3944920002485],[-71.01512972733514,42.39449472484476],[-71.01512489431173,42.39449744675027],[-71.0151200657951,42.39449989768857],[-71.0151152315356,42.39450262228932],[-71.01508511294101,42.3945195071712],[-71.01504642179658,42.3945443162438],[-71.015040452197,42.39455032750114],[-71.01503560052574,42.39455579609594],[-71.01503185022108,42.39456208949252],[-71.01501727255085,42.39457986451423],[-71.01498216359576,42.39462060391281],[-71.01496168484975,42.39463561088421],[-71.01493862424422,42.39464978140681],[-71.01488323676809,42.3946797326973],[-71.01483121708718,42.3947044846063],[-71.01480855057736,42.39471509163315],[-71.01479630014748,42.39471970435964],[-71.01478551847624,42.39472569801425],[-71.01476838743031,42.39473907064409],[-71.01475383824922,42.39475327701993],[-71.01473966700618,42.39476666482744],[-71.01468246391286,42.39484023710794],[-71.0146618944436,42.39486704368714],[-71.01464244081555,42.39489357858141],[-71.01460096449777,42.39494334787917],[-71.01458155206281,42.39496466938255],[-71.01456104062717,42.39498406503685],[-71.0145405779503,42.39499742537836],[-71.01428591144673,42.39513712299014],[-71.0130780630373,42.39540807029883],[-71.01218135816211,42.39555931247691],[-71.01180979628218,42.39574710464037],[-71.00989454192036,42.39547528501759],[-71.00894536953624,42.39519214448539],[-71.00586191459576,42.39389211548507],[-71.00560045018798,42.3939618773513],[-71.00538520703967,42.39408811781199],[-71.00140724592822,42.39674030657089],[-70.99949453996537,42.39693962741562],[-70.99914580197134,42.396977502126],[-70.99876816117141,42.39697359905493],[-70.99830620035,42.39692939137215],[-70.99767000983783,42.39674148116348],[-70.99647572824593,42.3963080791539],[-70.9955644898334,42.39427338266776],[-70.9954622756755,42.39393024390938],[-70.9952362114364,42.39367717841235],[-70.99493077347825,42.3934974705934],[-70.99457950640237,42.39332880704956],[-70.99445396634272,42.39331605212679]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000237,"geom:area_square_m":2166850.77632,"geom:bbox":"-71.0262791509,42.3783503599,-70.9944539663,42.3969775021","geom:latitude":42.388931,"geom:longitude":-71.00969,"iso:country":"US","lbl:latitude":42.383882,"lbl:longitude":-71.000474,"lbl:max_zoom":18,"mps:latitude":42.390561,"mps:longitude":-71.009934,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":42.390561,"reversegeo:longitude":-71.009934,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815995,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"beee9b8533d0afb2005b607c41a4c4a5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711425,"neighbourhood_id":85815995,"region_id":85688645}],"wof:id":1108711425,"wof:lastmodified":1566624132,"wof:name":"Harbor View","wof:parent_id":85815995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891273],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711427.geojson b/fixtures/microhoods/1108711427.geojson new file mode 100644 index 0000000..9d4be23 --- /dev/null +++ b/fixtures/microhoods/1108711427.geojson @@ -0,0 +1 @@ +{"id":1108711427,"type":"Feature","bbox":[-71.1683081531525,42.28067893218564,-71.15478001341822,42.29347949305533],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.16561911849264,42.28770058546942],[-71.1683081531525,42.29058312894464],[-71.16752946937379,42.29099899860765],[-71.16250414437033,42.29347949305533],[-71.16091241883898,42.2920820605032],[-71.16065308200717,42.29178824563223],[-71.1603610058594,42.29134910699298],[-71.15999727129848,42.29082480614196],[-71.15959442102145,42.29039662324069],[-71.15631020067507,42.28771950785141],[-71.15568520997297,42.28717539626096],[-71.15521120681296,42.28671424656838],[-71.15491456031057,42.28637208723725],[-71.15478001341822,42.28618231825024],[-71.1550253593449,42.28610320055396],[-71.15529455086461,42.28602135285217],[-71.15555248328529,42.28590821860661],[-71.15602569682268,42.28558915593511],[-71.1563600299614,42.28530457172732],[-71.15650247960187,42.28513655139965],[-71.1565917560541,42.28501085072766],[-71.15670966386364,42.28477536060519],[-71.15678643250936,42.28456991713679],[-71.15689425331534,42.28406472309556],[-71.15692675879718,42.28389387531168],[-71.15696613385266,42.28370133540713],[-71.15714583519599,42.28324931364717],[-71.15736147680795,42.28280615191069],[-71.15772087949456,42.28221231029684],[-71.15806830209164,42.28139687687185],[-71.15816713783047,42.28102461027793],[-71.15820008307674,42.28067893218564],[-71.15958411875349,42.28130170757734],[-71.1599317403609,42.28147457767277],[-71.1602062246849,42.28167057497956],[-71.16049773482999,42.28194054939176],[-71.16060870266814,42.28206924279504],[-71.16069082251096,42.28218679069339],[-71.16105236897805,42.28279305051488],[-71.16152112503202,42.28353806468899],[-71.1616546373717,42.28380074465564],[-71.16179165737024,42.28400330627372],[-71.16202297464886,42.28424211330458],[-71.16226550647366,42.28445527246397],[-71.16320935536903,42.28521805358295],[-71.16368508885593,42.28561428756532],[-71.16404653707474,42.28595783659328],[-71.16452771614675,42.28640321580447],[-71.16484630539995,42.28676242088645],[-71.16561911849264,42.28770058546942]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000077,"geom:area_square_m":707686.309844,"geom:bbox":"-71.1683081532,42.2806789322,-71.1547800134,42.2934794931","geom:latitude":42.287579,"geom:longitude":-71.161283,"iso:country":"US","lbl:latitude":42.287657,"lbl:longitude":-71.161181,"lbl:max_zoom":18,"mps:latitude":42.287657,"mps:longitude":-71.161181,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Highland"],"reversegeo:latitude":42.287657,"reversegeo:longitude":-71.161181,"src:geom":"mz","wof:belongsto":[85856255,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8efca18f15d3ea0f3f0b736266f0de60","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711427,"neighbourhood_id":85856255,"region_id":85688645}],"wof:id":1108711427,"wof:lastmodified":1566624131,"wof:name":"Highlands","wof:parent_id":85856255,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524013],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711429.geojson b/fixtures/microhoods/1108711429.geojson new file mode 100644 index 0000000..0e286f4 --- /dev/null +++ b/fixtures/microhoods/1108711429.geojson @@ -0,0 +1 @@ +{"id":1108711429,"type":"Feature","bbox":[-71.1123322373155,42.31687824753438,-71.10274838785651,42.32914659848083],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.10521656934931,42.32610200163816],[-71.10554887508935,42.32519925863845],[-71.10490132415885,42.32507291983666],[-71.10495528673638,42.32460745890405],[-71.10498226802515,42.32445452098882],[-71.10518013080947,42.32436807765489],[-71.10523304216997,42.32433639090529],[-71.10528041615278,42.32429913743037],[-71.10531508754134,42.32425804353749],[-71.1053420185421,42.32420848964944],[-71.1053552978807,42.32416881910584],[-71.1053611919172,42.32412763397554],[-71.10536000606795,42.32404225171329],[-71.10520711209826,42.3226857337383],[-71.10486663451093,42.32269808570125],[-71.10474071776656,42.32125508812657],[-71.10471515150238,42.32102696391198],[-71.10465335500828,42.32084185048231],[-71.10452486948809,42.32062430239223],[-71.10438118704263,42.32041271720946],[-71.10423064611913,42.32020726043342],[-71.10406104393218,42.32003910505249],[-71.10388314735462,42.31989045486581],[-71.10372314121585,42.31977976101599],[-71.10325546554381,42.31948716135984],[-71.10274838785651,42.31916917795212],[-71.10278726365722,42.31911923153605],[-71.10365134679904,42.31788590717978],[-71.10383468586504,42.31759150171803],[-71.10411829429886,42.31694090668966],[-71.10441087104998,42.31695536522231],[-71.10485360041325,42.31699501924355],[-71.10504760222706,42.31698031236705],[-71.10542971060742,42.31690820035164],[-71.1055912774354,42.31687824753438],[-71.10576172629665,42.31687918433343],[-71.10597488328536,42.31692849930258],[-71.10617256176998,42.31699246393917],[-71.10632294054113,42.31704974925749],[-71.10658243662611,42.31716339613017],[-71.10738378097314,42.31757783073285],[-71.10776509763689,42.31773126615875],[-71.10839829597205,42.31792440279126],[-71.10895264564385,42.3181277478123],[-71.1098827944618,42.31851529638003],[-71.11026558386415,42.31868800773797],[-71.11058503469825,42.31884772257034],[-71.1117325655504,42.31950503760875],[-71.11171384103311,42.31962867352269],[-71.11172751362768,42.31975059237842],[-71.11178895780415,42.32002793385811],[-71.11210811813163,42.32141567077141],[-71.11216381706596,42.32178813061176],[-71.11222322141727,42.32250698899418],[-71.1123049534442,42.32353600071685],[-71.1123322373155,42.32449046735783],[-71.11230604480318,42.3247789993888],[-71.11223874475684,42.32506971073766],[-71.11215204073771,42.32533965485866],[-71.1120405426227,42.32557765307482],[-71.11177401756547,42.32602187363135],[-71.1114793731139,42.32650848765859],[-71.11129272006596,42.32685434363992],[-71.1111195967783,42.32724280025383],[-71.11097203516263,42.3276284324143],[-71.11086800246781,42.32798708276525],[-71.11076602540447,42.32850283859934],[-71.11075476405443,42.32866399282177],[-71.11076912994768,42.3288127859725],[-71.1108016455089,42.32897051620666],[-71.11086087979744,42.32914659848083],[-71.11078700196254,42.32902136688836],[-71.11065090608953,42.3288884115718],[-71.11062152557236,42.32886695168396],[-71.11056905645462,42.32882862579321],[-71.11006758474998,42.32848621861628],[-71.10997153725077,42.3284200794828],[-71.10988111449016,42.32835517295313],[-71.10942889631791,42.32804289096081],[-71.10923623745487,42.32790984795753],[-71.10901510488041,42.32775714078758],[-71.10899866942795,42.32774579069431],[-71.10860417681089,42.32747336328612],[-71.10860415023055,42.32747334518974],[-71.10859474620021,42.32746685085768],[-71.1084282931859,42.32736630449059],[-71.10839594790018,42.3273467659537],[-71.10836795297055,42.32732985488315],[-71.10836731595303,42.32732947008778],[-71.10832617454788,42.32730461863576],[-71.10827554718473,42.32728534907702],[-71.10826457344925,42.32728117212718],[-71.10732398335942,42.32692316764605],[-71.10711160562806,42.3268423310499],[-71.10666599881677,42.32657746740361],[-71.10631452794095,42.32636855544667],[-71.10556846030693,42.32614023362962],[-71.10554537390182,42.32613603826086],[-71.10552228749977,42.32613184288744],[-71.10549919561176,42.32612833351497],[-71.1054758744256,42.32612482335087],[-71.10546107658081,42.32612303139025],[-71.10545254775242,42.3261219991876],[-71.1054292222946,42.32611917502376],[-71.10540566511177,42.32611635005971],[-71.1053821036539,42.32611421110061],[-71.10535854219766,42.32611207213667],[-71.10535297064186,42.32611172800147],[-71.10533497646541,42.32611061917765],[-71.1053157876278,42.32610944682948],[-71.10531117900715,42.32610916541811],[-71.10523699722812,42.32610346389487],[-71.105227089671,42.32610270243057],[-71.10521656934931,42.32610200163816]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00007,"geom:area_square_m":636382.404713,"geom:bbox":"-71.1123322373,42.3168782475,-71.1027483879,42.3291465985","geom:latitude":42.322313,"geom:longitude":-71.108168,"iso:country":"US","lbl:latitude":42.322746,"lbl:longitude":-71.105863,"lbl:max_zoom":18,"mps:latitude":42.322212,"mps:longitude":-71.108647,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"reversegeo:latitude":42.322212,"reversegeo:longitude":-71.108647,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"42263487c97297a392da92b8358ac5d8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711429,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108711429,"wof:lastmodified":1566624131,"wof:name":"Hyde Square","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891367],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711433.geojson b/fixtures/microhoods/1108711433.geojson new file mode 100644 index 0000000..dcd251e --- /dev/null +++ b/fixtures/microhoods/1108711433.geojson @@ -0,0 +1 @@ +{"id":1108711433,"type":"Feature","bbox":[-71.14017027413179,42.3001359527229,-71.119515,42.32388273293024],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11953902828239,42.32274657208461],[-71.119607,42.322614],[-71.119575,42.322516],[-71.119525,42.322261],[-71.119515,42.322055],[-71.119549,42.32182],[-71.119608,42.321713],[-71.119699,42.321642],[-71.119817,42.321579],[-71.119924,42.321532],[-71.120214,42.321477],[-71.120518,42.321466],[-71.12074,42.321414],[-71.120974,42.321326],[-71.121132,42.321234],[-71.121257,42.321121],[-71.121404,42.320973],[-71.121551,42.320856],[-71.121687,42.32078],[-71.121839,42.320675],[-71.121948,42.320575],[-71.122041,42.32045],[-71.122199,42.320293],[-71.122363,42.320141],[-71.122564,42.320006],[-71.122869,42.319822],[-71.12327,42.319634],[-71.12357,42.319426],[-71.123726,42.319236],[-71.123817,42.319113],[-71.123918,42.318957],[-71.123909,42.318679],[-71.123889,42.3185],[-71.123815,42.318258],[-71.123699,42.317983],[-71.123642,42.317801],[-71.123595,42.317574],[-71.123575,42.317439],[-71.12352,42.316792],[-71.123452,42.316569],[-71.123362,42.316325],[-71.123231,42.316022],[-71.1232,42.315927],[-71.123189,42.315836],[-71.123185,42.315685],[-71.123207,42.315494],[-71.123285,42.314982],[-71.12328,42.31489],[-71.123265,42.314787],[-71.123197,42.31462],[-71.123059,42.314433],[-71.122709,42.314138],[-71.12240024195101,42.31393034447731],[-71.12223,42.313789],[-71.122166,42.313725],[-71.122114,42.313642],[-71.122077,42.31355],[-71.122244,42.313334],[-71.12246,42.313048],[-71.122706,42.312603],[-71.122776,42.312325],[-71.122787,42.31214],[-71.122788,42.311978],[-71.122738,42.311461],[-71.1226,42.310884],[-71.122435,42.310376],[-71.122285,42.310028],[-71.122141,42.309751],[-71.122093,42.309613],[-71.122083,42.309501],[-71.122102,42.309269],[-71.122144,42.309096],[-71.122365,42.308777],[-71.1225,42.308574],[-71.122631,42.308393],[-71.122915,42.30799],[-71.123294,42.307483],[-71.123578,42.307117],[-71.123927,42.30668],[-71.124146,42.306382],[-71.124271,42.306169],[-71.124348,42.306004],[-71.124409,42.305863],[-71.124551,42.305589],[-71.124634,42.305367],[-71.124672,42.305194],[-71.12474,42.304743],[-71.12478,42.3044],[-71.124826,42.304029],[-71.124876,42.303803],[-71.124992,42.303489],[-71.125161,42.303195],[-71.125399,42.302878],[-71.125661,42.302555],[-71.125816,42.302322],[-71.125983,42.302121],[-71.126158,42.301899],[-71.12625,42.301799],[-71.126448,42.301602],[-71.1267569550119,42.30130769174421],[-71.127123,42.300959],[-71.12807034749662,42.3001359527229],[-71.12815633594721,42.30017596570623],[-71.12816277749843,42.30017854970213],[-71.12816328323755,42.30017875300562],[-71.12816713713794,42.30018003399805],[-71.12816837295645,42.30018044403194],[-71.12817922991447,42.30018410286734],[-71.12817929646158,42.30018412919134],[-71.12818009624533,42.30018444418302],[-71.12818919030485,42.300188026189],[-71.12818925806475,42.30018805251694],[-71.12825927849917,42.30021563014514],[-71.12827084814947,42.30022018707452],[-71.12827409569168,42.30022146520123],[-71.12831627496122,42.30023807801409],[-71.12849359392197,42.30030791323458],[-71.12862736412897,42.30036059719423],[-71.12862932396095,42.30036142280019],[-71.12862955623658,42.30036152078316],[-71.12862985392617,42.30036163158174],[-71.1286299640425,42.30036167335139],[-71.12863001486669,42.30036169242191],[-71.12863008747789,42.30036171876526],[-71.12863077361183,42.30036197486705],[-71.12864390822797,42.30036728226371],[-71.12864837759994,42.30036908470119],[-71.12877353807808,42.30041938548206],[-71.12887490739082,42.30046026598664],[-71.12887494243368,42.30046028770702],[-71.1288756895277,42.30046069615465],[-71.12887643667982,42.30046109469921],[-71.12887722522863,42.30046146546817],[-71.12887800902678,42.30046181911617],[-71.12887881838222,42.30046215754163],[-71.12887965089581,42.30046247623531],[-71.12887992805415,42.30046257256215],[-71.12888048720592,42.3004627679323],[-71.12888133090858,42.30046303984663],[-71.12888220022131,42.30046328753562],[-71.12888279357787,42.30046344070222],[-71.12921679994675,42.30058454590025],[-71.1292314591134,42.30058985184686],[-71.12978582515562,42.30079442345875],[-71.13078713492817,42.30115307676674],[-71.13095943808199,42.30121545017056],[-71.13095982531893,42.30121559636232],[-71.13096017497097,42.30121574063271],[-71.13097401340106,42.30122145875674],[-71.13097984608555,42.30122367331634],[-71.13098848015049,42.30122695202181],[-71.13100320377417,42.30123206978547],[-71.13101815886175,42.30123680206267],[-71.13103332600886,42.30124114879101],[-71.1310486822884,42.30124509009026],[-71.13106421545707,42.30124864572755],[-71.13107990627839,42.30125178683154],[-71.13109573169925,42.30125451512875],[-71.13111168440085,42.30125683779801],[-71.13112772201505,42.30125874119878],[-71.1311438456862,42.30126023703858],[-71.131150931661,42.30126070363286],[-71.1311600300719,42.30126130362883],[-71.13116986191073,42.30126174752593],[-71.13117024987737,42.30126176857788],[-71.13117060031676,42.30126177780544],[-71.13157648810012,42.30127661506567],[-71.13177835529724,42.30128577448483],[-71.13182563908978,42.30128912026282],[-71.13182884921359,42.30128934662047],[-71.13196390230115,42.30129887679767],[-71.13196568435805,42.30129900224538],[-71.13197886308055,42.30129993215084],[-71.13226443597736,42.30133339944701],[-71.13229149651487,42.30133657137129],[-71.13264767956746,42.30137831232429],[-71.13266586113913,42.30138131532626],[-71.13325583169485,42.30148603825849],[-71.13332554272566,42.30150065380544],[-71.13368143865432,42.3015688197746],[-71.13370659663836,42.30157343567915],[-71.13376203845755,42.30158361021659],[-71.1338217508372,42.30159456719143],[-71.13429088890287,42.30168065511307],[-71.13431224649003,42.30168457366199],[-71.13435388237782,42.30168987567592],[-71.13439251034514,42.30169374473302],[-71.1344312739202,42.30169660317412],[-71.13447017069116,42.30169844829059],[-71.13449837428143,42.30169903947579],[-71.13450140466901,42.30169910313329],[-71.13450910614877,42.30169926447658],[-71.13451635277748,42.30169922540667],[-71.13454807298356,42.30169905711058],[-71.13458699960916,42.30169783136667],[-71.13462583271935,42.30169557717222],[-71.13463134508916,42.30169511304152],[-71.13466455277276,42.30169231787281],[-71.13470307258893,42.30168802888341],[-71.13474137016482,42.30168273984415],[-71.1347793921318,42.30167645148582],[-71.13481709236159,42.30166917086454],[-71.13485441385261,42.30166089779949],[-71.13489132859547,42.30165165200852],[-71.13492508525617,42.30164219180401],[-71.13492776377613,42.30164144136339],[-71.13595497474778,42.30136858278359],[-71.13596129206735,42.30136690483729],[-71.13622127484159,42.30129784353058],[-71.13651876483073,42.30121881785995],[-71.13655674560437,42.30121117473612],[-71.13656190951039,42.30121013592107],[-71.13656247774666,42.30121002158001],[-71.13660881328155,42.30120069700058],[-71.13665164104061,42.30119207794689],[-71.13666142853994,42.30119010843575],[-71.1366717381381,42.30118803343929],[-71.13670598649583,42.30118114011578],[-71.1367509307556,42.30117332628123],[-71.13677861024236,42.30116926071106],[-71.13678748433624,42.30116795632271],[-71.13679621762105,42.30116667399601],[-71.13684142594865,42.301161237747],[-71.13684180338385,42.30116119212442],[-71.13684268069089,42.30116111026929],[-71.13688761036302,42.30115689212455],[-71.13693358035393,42.30115377291194],[-71.13695975110365,42.30115267261311],[-71.13697967697655,42.30115183437139],[-71.1370083327048,42.30115136851987],[-71.13702585288962,42.30115108445592],[-71.13707202200555,42.30115152019251],[-71.1371181491262,42.30115314687192],[-71.13716418332872,42.30115596253273],[-71.13721005311994,42.30115995704603],[-71.13722974914533,42.30116219255202],[-71.13725570994056,42.30116513926163],[-71.13728448671273,42.30116916080738],[-71.1373010908846,42.30117148197237],[-71.13734616436616,42.30117899498204],[-71.13739085531532,42.30118765734733],[-71.13749123074422,42.30120991252961],[-71.13751152311784,42.30121602475015],[-71.13921491121522,42.30172907911481],[-71.13934658637264,42.30176733470088],[-71.13937061076153,42.30177431448827],[-71.13943069206897,42.30179373429961],[-71.13943910005656,42.30179697744737],[-71.13961110462239,42.30186331621457],[-71.1396359631916,42.30187290312323],[-71.14008858355025,42.30204746789065],[-71.1401167447347,42.30205832905704],[-71.14013055365673,42.30206365435222],[-71.14017027413179,42.30207897306895],[-71.1400195208,42.30216142096361],[-71.1400959985559,42.30217378304294],[-71.13650173522299,42.30620358419099],[-71.13445166573304,42.30910603301741],[-71.13279606552355,42.31177517724353],[-71.13186272439215,42.31317777989769],[-71.13060713371755,42.3145636805255],[-71.12872929507093,42.31681056559908],[-71.12714038854068,42.31865198284894],[-71.12427585729259,42.32184978048752],[-71.12371197981338,42.32271633910956],[-71.12336752051202,42.32257187414391],[-71.12152860721294,42.32388273293024],[-71.12007029577346,42.32280487451003],[-71.11953902828239,42.32274657208461]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000197,"geom:area_square_m":1803328.090433,"geom:bbox":"-71.1401702741,42.3001359527,-71.119515,42.3238827329","geom:latitude":42.309546,"geom:longitude":-71.128781,"iso:country":"US","lbl:latitude":42.307504,"lbl:longitude":-71.128811,"lbl:max_zoom":18,"mps:latitude":42.30859,"mps:longitude":-71.128771,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Moss Hill"],"reversegeo:latitude":42.30859,"reversegeo:longitude":-71.128771,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8fc6dfa94c8d689fd20c9a76c105b106","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711433,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108711433,"wof:lastmodified":1566624132,"wof:name":"Jamaica Hills","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891371],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711435.geojson b/fixtures/microhoods/1108711435.geojson new file mode 100644 index 0000000..a56412d --- /dev/null +++ b/fixtures/microhoods/1108711435.geojson @@ -0,0 +1 @@ +{"id":1108711435,"type":"Feature","bbox":[-71.04184722163819,42.36047619866363,-71.02768449804881,42.372854],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.04179169104324,42.36628527476141],[-71.040855,42.367488],[-71.039592,42.368808],[-71.039348,42.369122],[-71.03866,42.370009],[-71.038083,42.370502],[-71.037781,42.37076],[-71.037168,42.371284],[-71.036145,42.372157],[-71.035896,42.37237],[-71.03548,42.372728],[-71.035337,42.372854],[-71.034815,42.372509],[-71.034742,42.372461],[-71.034084,42.372036],[-71.033923,42.371932],[-71.033219,42.371469],[-71.032646,42.371099],[-71.03193,42.370666],[-71.031544,42.370408],[-71.03112538907246,42.37007829349997],[-71.0318034654384,42.36944976461897],[-71.03237177090216,42.368905],[-71.0326,42.368673],[-71.032694,42.368595],[-71.032867,42.368434],[-71.033387,42.367734],[-71.032648,42.3674],[-71.032036,42.367122],[-71.031224,42.366783],[-71.030684,42.366557],[-71.03024,42.366349],[-71.028866,42.365751],[-71.02768449804881,42.36514902695042],[-71.0278024033419,42.36511740668648],[-71.02862398384535,42.36405963512527],[-71.02825615080118,42.36391461069854],[-71.02834584614894,42.36379561074115],[-71.0283941554617,42.36376809427217],[-71.02844756244669,42.36370163137651],[-71.02848008849243,42.36365703645562],[-71.02850330537974,42.36361981095986],[-71.02852871715824,42.3635861632112],[-71.02856167757858,42.36353278770563],[-71.02857497279912,42.36353641005561],[-71.02859165104432,42.3635329105613],[-71.02859762097883,42.36352579932127],[-71.02861110106493,42.36350445194554],[-71.02864375669516,42.36349196369661],[-71.02867757298372,42.36347261817452],[-71.02869305579091,42.36348063929586],[-71.02882421551612,42.36345730456436],[-71.02888910122392,42.36343973198959],[-71.0289350352433,42.36343278802335],[-71.02895062925349,42.36342571618199],[-71.02897101207726,42.36342113344971],[-71.0289972106218,42.36343112053664],[-71.02908848164277,42.36344768510865],[-71.02914144682723,42.36344076534657],[-71.02919553460058,42.36343193253499],[-71.02924848544919,42.36342693568716],[-71.02934708660135,42.36340319070472],[-71.02944116537743,42.36339122725327],[-71.02947345914004,42.36337709065617],[-71.02951339672943,42.3633308773307],[-71.02953042921806,42.36332902758295],[-71.02957876095618,42.36329821474249],[-71.02959268786503,42.3631671064655],[-71.0296060822256,42.36315755784035],[-71.02962904116853,42.36315490674939],[-71.02974450322769,42.36315263390713],[-71.02980555448512,42.3631528835103],[-71.02983540133125,42.36317001742922],[-71.02983781077226,42.36319390300368],[-71.0298413122065,42.36322080721705],[-71.02984443482221,42.363248536349],[-71.02983721319278,42.36327430107333],[-71.02983108191548,42.36330281434218],[-71.02982122484043,42.36333460744546],[-71.02981730690938,42.36336422631614],[-71.02982302702692,42.3633908668108],[-71.02982262929395,42.36344437579535],[-71.02982959913165,42.36350230381727],[-71.02981246746297,42.36351732806569],[-71.02981956253916,42.36355824379627],[-71.02982174816549,42.36356291804014],[-71.02986127567864,42.36357186016146],[-71.02988414092925,42.36358183432012],[-71.0299044515412,42.36358712912259],[-71.02990695561287,42.36359894037442],[-71.02992612647995,42.36360862213503],[-71.02992916351765,42.36364787463945],[-71.02996143358682,42.363687247516],[-71.02998763367631,42.36369640881495],[-71.03002386527014,42.363700947591],[-71.03005858570677,42.36370904803503],[-71.03009440629688,42.36371907238414],[-71.03014136191689,42.36372365493669],[-71.03017392482452,42.36372378795798],[-71.03022911040298,42.36371688036623],[-71.03027247553888,42.36370717678471],[-71.03030740097766,42.36368783711632],[-71.03032459858098,42.36366375973638],[-71.03033657916775,42.36364514832483],[-71.03034146337978,42.36363528937451],[-71.03035365776807,42.36363725949021],[-71.03038947674084,42.36364701185302],[-71.03041571311176,42.36365178248252],[-71.03045190600429,42.36366153545208],[-71.03048406728948,42.36366523459994],[-71.030527385499,42.36366184357245],[-71.03055293063674,42.36366030120841],[-71.03058628210927,42.36365330252435],[-71.03060007453112,42.36344041834646],[-71.0306137225541,42.36339601856742],[-71.03067266292459,42.36323216121475],[-71.03067413727618,42.36318332373069],[-71.03067438974233,42.36314929645279],[-71.03068435303103,42.36310296220601],[-71.030697857033,42.36302837776123],[-71.03071769311637,42.36294805908671],[-71.03129914451183,42.36297732087563],[-71.03133280193781,42.36297910556373],[-71.03138475828005,42.36245903623021],[-71.03146769412412,42.36245223841066],[-71.03141504899791,42.36306505387611],[-71.03152251967798,42.36314287711013],[-71.03151761779998,42.36315547922612],[-71.03153094319917,42.36315471063713],[-71.03145703564572,42.36389119973036],[-71.03148897964263,42.36392425890293],[-71.0315143529304,42.36394576667681],[-71.0316212537325,42.36395059277964],[-71.0316766254681,42.36391871027823],[-71.03168522668207,42.36390639690884],[-71.03173451922981,42.36339592279422],[-71.03173462849824,42.36323127619288],[-71.03181381931819,42.3632305029269],[-71.03181084189208,42.36333229573025],[-71.03193921834564,42.36333528774012],[-71.03195777963471,42.36312681263014],[-71.03198370564162,42.36287391379725],[-71.03196681018474,42.36285710592965],[-71.03195849100135,42.36283100144187],[-71.031960185602,42.36280164623955],[-71.03196372898908,42.36277312232697],[-71.03197526972262,42.36271362222641],[-71.03198270357045,42.36235911686525],[-71.03208804523263,42.36237463706475],[-71.03208016820425,42.36263913670846],[-71.03212677408544,42.36269091390029],[-71.03222495254815,42.36272451688999],[-71.03240731755382,42.36273129670385],[-71.03242061360478,42.36258454296676],[-71.03256724939233,42.36126797040793],[-71.03266078506759,42.36127823122295],[-71.03251533009711,42.36258575085952],[-71.03250748381791,42.36269602985229],[-71.03278853563536,42.36271775165464],[-71.0330911167108,42.3627305077439],[-71.03356079999674,42.36276287126821],[-71.03358223109818,42.36276652513423],[-71.03374925425213,42.36048795898389],[-71.03396209515037,42.36047619866363],[-71.03367074893504,42.36330774564913],[-71.03396422680139,42.36345135402688],[-71.0356071488124,42.36138099627732],[-71.03571737219089,42.36143687042237],[-71.03407413301639,42.36349981903221],[-71.03411608590744,42.36353127318743],[-71.03412663937273,42.36370611282521],[-71.03416603019217,42.36378365777943],[-71.03420954531951,42.36390402555226],[-71.03440294030091,42.36407247067048],[-71.03451313734158,42.36393132166454],[-71.03452637684337,42.36394207790408],[-71.034526239538,42.36396073677682],[-71.03454538254088,42.36397398550326],[-71.03456097723806,42.36396691740836],[-71.03460196975271,42.36392701674338],[-71.03461909916356,42.36391281914528],[-71.03468061832386,42.3638998958953],[-71.03471645752387,42.36390717298922],[-71.03472997355867,42.36388033777884],[-71.03492953528571,42.36386440488275],[-71.03504892634679,42.36393156942701],[-71.03504519832602,42.36398588780818],[-71.03510611570853,42.36400479258039],[-71.0351490918823,42.36404777511059],[-71.03518635737503,42.36406219442699],[-71.03523169711524,42.36408570328426],[-71.03527600193547,42.36409905356198],[-71.03531322837813,42.36411896175197],[-71.03534573908429,42.36412622880197],[-71.03537461859591,42.36412360048271],[-71.03539723723172,42.36411737991368],[-71.03541765367714,42.36410868094731],[-71.03542887176644,42.36409253633091],[-71.03545411076087,42.36408193831756],[-71.03551069380661,42.36403578836187],[-71.03552515145304,42.36403228249685],[-71.0355410877191,42.36402877899986],[-71.03555552766059,42.36402718797798],[-71.03557108881407,42.36402450942906],[-71.0355855074153,42.36402648616963],[-71.03560105405731,42.36402545328962],[-71.03561178540151,42.36402549661915],[-71.03562250748841,42.36402663556414],[-71.03563470653383,42.36402833415013],[-71.03564542941011,42.36402920030811],[-71.03565614063145,42.36403198493768],[-71.03566574105356,42.36403476958324],[-71.03566942225392,42.36403752853099],[-71.03567311512921,42.36403836630528],[-71.03567532457677,42.36404002185678],[-71.03567900938998,42.36404195795308],[-71.03568157860344,42.36404471331159],[-71.03568377154119,42.36404828731594],[-71.03568633714312,42.36405186552553],[-71.03568853006155,42.36405544223059],[-71.03569109566399,42.36405902044007],[-71.0356920299745,42.36408289902274],[-71.03569185272897,42.36410704590611],[-71.0356906908175,42.36411417421924],[-71.03615283052122,42.36431910218403],[-71.03641949306207,42.36398265470703],[-71.0365943061305,42.36375861599167],[-71.03652940505393,42.36372816953162],[-71.03651501988267,42.36372180142531],[-71.03655872179743,42.36366599744441],[-71.03657089950067,42.36367043723087],[-71.03685474613168,42.36331155518475],[-71.03684145046455,42.36330793649249],[-71.03688402418628,42.36325459733975],[-71.03689694716556,42.36325821452658],[-71.0369854551017,42.36314716257444],[-71.0369747645085,42.36314190415145],[-71.03701733677897,42.36308856674303],[-71.03702914415304,42.36309300499117],[-71.03712026024904,42.36297949123293],[-71.03710957044197,42.36297396183781],[-71.03714952586262,42.36292417989974],[-71.03716133924912,42.36292779349224],[-71.0372718522175,42.36279295505093],[-71.03739024100007,42.36284584263528],[-71.03739987343414,42.36284423564694],[-71.03740357709036,42.36284342677728],[-71.03740840194612,42.36284152496245],[-71.03741430823527,42.36284346993864],[-71.0374202297879,42.36284349375507],[-71.03742615012656,42.36284351756633],[-71.03743244873252,42.36284244634427],[-71.0374383690711,42.3628424701549],[-71.03744427536783,42.3628444142293],[-71.03745018968966,42.36284526088102],[-71.03745646379483,42.36284720823456],[-71.03746348163284,42.36284888218942],[-71.03746938311501,42.36285165090961],[-71.03747565121796,42.36285441930325],[-71.03748155350814,42.36285691163675],[-71.03748745255746,42.36285968124653],[-71.03749223607133,42.36286326743534],[-71.037497022007,42.36286685453398],[-71.03750181155138,42.36286961608018],[-71.03750658424178,42.36287484885692],[-71.03751025139533,42.36287953071132],[-71.03751391692839,42.36288393616977],[-71.03751721828252,42.36288834016371],[-71.03752088260917,42.3628927447168],[-71.03752306520666,42.36289823986594],[-71.03752562120819,42.3629026408625],[-71.03752668939082,42.3629081351316],[-71.03752776566395,42.36291335304392],[-71.03752772754778,42.36291856647524],[-71.03752916357196,42.36292405952255],[-71.03752912545593,42.36292927295388],[-71.0375276152068,42.36293393218851],[-71.03752646871675,42.36293831829716],[-71.03752532227364,42.36294352817212],[-71.03752270007492,42.36294818113492],[-71.03752155242398,42.36295339010466],[-71.03751781904273,42.36295776581105],[-71.037515567066,42.36296242386356],[-71.03751183246982,42.36296679956485],[-71.03750847415203,42.3629703521127],[-71.03750474562464,42.36297472783816],[-71.03749619340692,42.36298018072041],[-71.03748653365399,42.36298535545978],[-71.03747798707626,42.36299053467499],[-71.03746833374386,42.36299516296208],[-71.03745868482584,42.36299868931008],[-71.03744423916315,42.36300110161238],[-71.03715331874939,42.36336626589091],[-71.03725880474461,42.36341306792607],[-71.03721251429626,42.36346885995682],[-71.03720440090862,42.36346526035826],[-71.03691797466985,42.36382330999783],[-71.03692755943953,42.36382773840596],[-71.03688647844338,42.3638794369481],[-71.03687687798453,42.36387665330459],[-71.03677978187089,42.36399837322773],[-71.03678937029272,42.36400280256217],[-71.03674716745743,42.36405614316705],[-71.03673757421811,42.36405253667548],[-71.03664048919848,42.36417233710333],[-71.03665117874392,42.3641775928505],[-71.03660862715105,42.36422846250102],[-71.03659792189579,42.36422485331838],[-71.03645264701133,42.36440674872759],[-71.03644630037473,42.36441468171812],[-71.03644516345483,42.36441824498785],[-71.03644402774881,42.36442180826241],[-71.03644138970041,42.36442810776731],[-71.03643800873378,42.36443522894413],[-71.0364365216647,42.36443604671658],[-71.036435396811,42.3644379634032],[-71.03643539077413,42.3644387871448],[-71.03643426836815,42.3644407011404],[-71.03643425025089,42.36444317326552],[-71.03643424222152,42.36444426888686],[-71.03643423619123,42.36444509172821],[-71.03643422411746,42.36444673921146],[-71.03643421607488,42.36444783663334],[-71.03643531839109,42.3644486639418],[-71.03643530631734,42.36445031142504],[-71.0364352982748,42.36445140884691],[-71.03643640301908,42.36445223616516],[-71.03643639699541,42.36445305810624],[-71.03643787199785,42.36445388691676],[-71.03643897350932,42.36445498971088],[-71.03644118056354,42.36445664523774],[-71.03644265678012,42.3644574740531],[-71.03644487590142,42.36445748299695],[-71.03644745362978,42.3644594146063],[-71.03638306392101,42.36456068625443],[-71.03644759795684,42.36459113040858],[-71.03645714379311,42.36460104867012],[-71.03647040872971,42.36460906069911],[-71.03648330579834,42.36461624837844],[-71.03649768995588,42.36462261648256],[-71.03655782764501,42.36464700730897],[-71.03661984356307,42.36466674126512],[-71.03729554838203,42.3649660955897],[-71.03729665795167,42.36496610005339],[-71.03731214701567,42.36497329806581],[-71.03731212693727,42.36497604297075],[-71.03731948474876,42.36498155893956],[-71.03732538039834,42.36498515140735],[-71.03733126281041,42.36499038775204],[-71.03734453998297,42.36499675309667],[-71.03735892145299,42.36500284829305],[-71.03737699677808,42.36501115235298],[-71.03739361186578,42.3650156098977],[-71.037411718882,42.36501924967464],[-71.03742353988649,42.36502204310285],[-71.03742612686133,42.36502205350713],[-71.03742835889702,42.36502096322917],[-71.03742946846762,42.3650209676916],[-71.03743429749147,42.3650185185161],[-71.0374380141097,42.36501578847754],[-71.03744173558347,42.36501305845835],[-71.0374454630741,42.36500950559775],[-71.03744770226771,42.36500677231805],[-71.03745142173265,42.36500431687909],[-71.0374600087089,42.36499365055914],[-71.03746710261646,42.36498462216466],[-71.0374817052715,42.3649616316502],[-71.03749520395627,42.36493753743989],[-71.03750497873123,42.36491617413969],[-71.03750725970625,42.36490822384344],[-71.03750990005612,42.36490109965828],[-71.03750992614884,42.36489753101168],[-71.03750993215859,42.36489670907061],[-71.03750846757711,42.36489478376211],[-71.03750847359348,42.36489396092077],[-71.03750737006779,42.36489313001676],[-71.03750626286073,42.36489230449962],[-71.03750516733282,42.3648903797748],[-71.03750370077688,42.36488872454539],[-71.03750260043348,42.36488762446727],[-71.03750038245755,42.36488679268301],[-71.03749927890577,42.36488596537995],[-71.03749780630721,42.36488513659289],[-71.03749670599036,42.36488403291362],[-71.03749560122466,42.36488320560566],[-71.03749449403111,42.36488237828787],[-71.03749303068417,42.36488045028324],[-71.03749303670074,42.36487962744191],[-71.03749193794515,42.36487797819288],[-71.03749195199917,42.36487605612918],[-71.0374919640323,42.36487441044651],[-71.03749197204343,42.36487331482519],[-71.03749198410289,42.36487166554144],[-71.03749310891253,42.36486975154551],[-71.03749573162645,42.36486537137517],[-71.037497988882,42.36486016686961],[-71.03751739839942,42.36483692019031],[-71.03754539046366,42.36480410371707],[-71.03757448166867,42.36477321197565],[-71.03760464145144,42.36474726351655],[-71.03763737819843,42.36472352031707],[-71.03765300321218,42.36471178392028],[-71.03766861581971,42.3647022423798],[-71.03767712693609,42.3647022765915],[-71.03768563441062,42.36470231078795],[-71.03769377289542,42.36470316636615],[-71.03770226953667,42.36470484894978],[-71.03771077264615,42.36470597878039],[-71.03771889543629,42.36470848362597],[-71.03772628175395,42.36471043183229],[-71.03773809068788,42.36471487091112],[-71.03775026065604,42.36472040799362],[-71.03776095280764,42.364725664547],[-71.03777902402986,42.36473369573987],[-71.0377970932568,42.36474200061019],[-71.0378077938563,42.36474643432759],[-71.03781961484039,42.36474922591474],[-71.03783180809177,42.364751744408],[-71.0378425868395,42.36474465201678],[-71.03785226688689,42.36473673234433],[-71.03786195293705,42.36472799072995],[-71.03787873522386,42.36471022160444],[-71.03789330755083,42.36469052237743],[-71.03792502078711,42.36465497577656],[-71.03794291137362,42.36463721289464],[-71.03796117021679,42.36461972427725],[-71.03796376081715,42.36461973468404],[-71.0379670987379,42.36461865063867],[-71.03796968933823,42.36461866104533],[-71.03797190967934,42.36461866996459],[-71.03797560984324,42.36461868482829],[-71.03799260478117,42.36462232094749],[-71.03857579468912,42.36487245171605],[-71.03857798780595,42.36487602746505],[-71.03858054159375,42.3648812521925],[-71.03857941801111,42.36488316890476],[-71.03857940601283,42.36488481368724],[-71.03857790373237,42.36488755264603],[-71.03857678135695,42.36488947026339],[-71.03857565856967,42.36489111148994],[-71.03857305274923,42.3648930195548],[-71.03857193114949,42.36489466438726],[-71.0385708155785,42.36489548277724],[-71.03856821218564,42.36489739085176],[-71.03856597858918,42.36489903122296],[-71.03856486102154,42.36490012329317],[-71.03856225962487,42.36490175768727],[-71.03856003324479,42.36490257522183],[-71.0385551962741,42.3649061209663],[-71.0385503512706,42.36491076773356],[-71.03854662148035,42.36491514438627],[-71.03854288326532,42.36492034297022],[-71.03853915584152,42.36492389586652],[-71.03853801103742,42.36492855477789],[-71.03853689067635,42.36493019601377],[-71.03853575508555,42.36493375840829],[-71.03853572905723,42.36493732615484],[-71.03853570302893,42.36494089390142],[-71.03853678056699,42.36494528894107],[-71.03853897367756,42.36494886559104],[-71.03854153347461,42.3649532665776],[-71.0385451959956,42.36495794477629],[-71.03854850110469,42.36496152588746],[-71.03855217890332,42.36496510849374],[-71.03855585063907,42.36496869017532],[-71.0385628487174,42.36497310896747],[-71.0385702230606,42.36497670640325],[-71.03857722716297,42.36498029965236],[-71.03858460873072,42.36498307335047],[-71.0385931006384,42.36498557961465],[-71.03860122031534,42.36498835447212],[-71.03864548043629,42.36500801610087],[-71.0387162823823,42.36504150278805],[-71.03875462802962,42.36506031778834],[-71.03879408450508,42.36507913452915],[-71.03883244221636,42.36509630111983],[-71.0388696867922,42.36511428790077],[-71.03890656429066,42.36513117304307],[-71.03894381246478,42.36514833874933],[-71.03902163408463,42.36518349821535],[-71.0390360466148,42.36518602547473],[-71.03905046192746,42.36518800446667],[-71.03906488288385,42.36518970889087],[-71.03910812604241,42.36519619501626],[-71.03912955714264,42.36520067160769],[-71.03914653110354,42.36520705065556],[-71.03916202645166,42.36521342287638],[-71.03917751700244,42.36522062064207],[-71.03922435966895,42.36524111525799],[-71.03924206940934,42.36524831830407],[-71.03924467080924,42.36524668299447],[-71.03924689838037,42.36524586905261],[-71.03924949700043,42.36524478200856],[-71.03925172094254,42.36524396625151],[-71.03925431877633,42.36524315379275],[-71.03925654513326,42.36524233984585],[-71.03925915696075,42.36523960622349],[-71.03926137610988,42.36523961511298],[-71.03926286749996,42.36523770166821],[-71.03926510351165,42.36523606219359],[-71.03926621786573,42.36523524379209],[-71.03926771046295,42.36523333125236],[-71.03926883205061,42.36523168641327],[-71.03926995559888,42.36522977239521],[-71.03927107716675,42.36522813025691],[-71.03927257342527,42.36522621503092],[-71.03927368899302,42.36522539663419],[-71.03927371497983,42.36522182888771],[-71.03927372696666,42.36522018320499],[-71.03927484932683,42.36521826558096],[-71.03927486932017,42.36521552067583],[-71.03930654205939,42.36518546350855],[-71.03932070024783,42.36517207438093],[-71.03932441364391,42.36517044352338],[-71.03932701947278,42.36516853274078],[-71.03933036018465,42.36516689949006],[-71.03942882623403,42.36521257212656],[-71.03944927201852,42.36519948184903],[-71.04063052346815,42.36385960040823],[-71.04064131932385,42.36385058930441],[-71.04064355040154,42.36384894888279],[-71.0406472656668,42.36384704520191],[-71.04064986221131,42.36384623270654],[-71.04065319805784,42.36384542226345],[-71.040655802578,42.36384351144531],[-71.04065951221332,42.36384188142992],[-71.04066285170784,42.36384107010078],[-71.04066655616066,42.36383998654076],[-71.0406713670437,42.36384000575377],[-71.04067617792674,42.36384002496658],[-71.04068209714596,42.3638400486054],[-71.04069060814801,42.3638400825941],[-71.04069911793607,42.36384011657736],[-71.04072791982931,42.36384846294733],[-71.04181600286852,42.36438104356766],[-71.0418388385273,42.36439540143586],[-71.04184104372541,42.36439733234003],[-71.0418425080915,42.36439980676937],[-71.04184359776991,42.36440255609527],[-71.04184468744843,42.36440530542119],[-71.04184577835402,42.36440805295142],[-71.04184576046133,42.36441052327685],[-71.04184722163819,42.36441327048136],[-71.04184720175675,42.36441601538746],[-71.04184567700332,42.36442204576056],[-71.04184452051248,42.36442835308942],[-71.0418433791505,42.36443273925893],[-71.04184074161981,42.36443904158847],[-71.04183848276082,42.36444451895975],[-71.04182613160988,42.36446395384252],[-71.04181307296496,42.36447899338889],[-71.04066805731478,42.36577348126939],[-71.04065014724489,42.36579398857543],[-71.04064864390632,42.36579755132167],[-71.04069435478488,42.36582105588428],[-71.04083668852985,42.36589022808592],[-71.04086434471158,42.36590351063239],[-71.04090269751227,42.36592149937081],[-71.04094214122108,42.36594223653446],[-71.04101883253982,42.3659798632202],[-71.04117447178949,42.36605100661111],[-71.04121617230652,42.36606709007996],[-71.04122245604044,42.36606793710889],[-71.0412283766824,42.36606796072441],[-71.04123319126853,42.36606715796319],[-71.04123911787829,42.36606635873684],[-71.04124762796623,42.36606639267949],[-71.0412546569832,42.36606642071436],[-71.04126205869588,42.36606645023527],[-71.04127388805104,42.36606814224428],[-71.04128608445619,42.36607011210491],[-71.04130749490687,42.366077330489],[-71.04132779100054,42.36608536999116],[-71.04134696346914,42.36609450426329],[-71.04137094547096,42.36610420328561],[-71.04139269116595,42.36611608919362],[-71.04141405786136,42.36612934652872],[-71.04143100047743,42.36614011492539],[-71.04144534213044,42.36615279686995],[-71.04146078819814,42.36616603059185],[-71.04147735017379,42.36617789581796],[-71.04149171374547,42.3661875564706],[-71.04150865761092,42.36619832396034],[-71.04152525704761,42.36620552582645],[-71.0415422255427,42.36621272916118],[-71.04154813228679,42.36621467212306],[-71.04155404099527,42.36621634410518],[-71.04155995447341,42.36621719054007],[-71.04156734947719,42.36621831566746],[-71.04157105889013,42.36621723479903],[-71.04157438766576,42.36621724806636],[-71.041578089138,42.366217262819],[-71.04158290848709,42.36621563629678],[-71.04158661472826,42.36621482550223],[-71.04159625198021,42.36621294449306],[-71.04160588360617,42.36621133714884],[-71.04162141799806,42.36621222192296],[-71.04163695360438,42.36621310669981],[-71.0416524764972,42.36621591354304],[-71.04166836483022,42.36621871823922],[-71.04168388297113,42.36622234882459],[-71.04170050586298,42.36622598200922],[-71.0417160084486,42.3662312573581],[-71.0417318817376,42.36623680967055],[-71.04174147561251,42.36624041304298],[-71.04174959082175,42.36624401322434],[-71.04175807155359,42.36624843772643],[-71.04176543066292,42.3662536806244],[-71.04177354034654,42.36625837913576],[-71.04177720040481,42.36626360819659],[-71.04178086213615,42.36626910915147],[-71.04178453655184,42.36627269163885],[-71.04178671919098,42.36627791301299],[-71.04178929118933,42.36628066824338],[-71.04179147856935,42.36628506767154],[-71.04179169104324,42.36628527476141]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000073,"geom:area_square_m":666667.287506,"geom:bbox":"-71.0418472216,42.3604761987,-71.027684498,42.372854","geom:latitude":42.367059,"geom:longitude":-71.035081,"iso:country":"US","lbl:latitude":42.364741,"lbl:longitude":-71.033442,"lbl:max_zoom":18,"mps:latitude":42.368023,"mps:longitude":-71.036353,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Jeffries Point"],"name:eng_x_variant":["Jeffries Pt"],"reversegeo:latitude":42.368023,"reversegeo:longitude":-71.036353,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815995,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6176380"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2bb8ee0ff4d9374e6e9f1ef1ceb6b997","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711435,"neighbourhood_id":85815995,"region_id":85688645}],"wof:id":1108711435,"wof:lastmodified":1566624132,"wof:name":"Jeffries Point","wof:parent_id":85815995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85827413],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711437.geojson b/fixtures/microhoods/1108711437.geojson new file mode 100644 index 0000000..2330878 --- /dev/null +++ b/fixtures/microhoods/1108711437.geojson @@ -0,0 +1 @@ +{"id":1108711437,"type":"Feature","bbox":[-71.13811373229755,42.356336,-71.11718797940858,42.37362103223093],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11718797940858,42.3611236818923],[-71.117558,42.361017],[-71.117655,42.360994],[-71.117798,42.360961],[-71.118165,42.360874],[-71.118448,42.360816],[-71.118719,42.36075],[-71.119171,42.360655],[-71.119583,42.360581],[-71.119861,42.360537],[-71.120029,42.360511],[-71.120483,42.360423],[-71.120568,42.360406],[-71.120599,42.360396],[-71.120736,42.360354],[-71.121009,42.360256],[-71.121141,42.360208],[-71.121374,42.360103],[-71.121578,42.359999],[-71.121884,42.359832],[-71.122234,42.359648],[-71.122594,42.359448],[-71.122956,42.35923],[-71.123245,42.359093],[-71.123451,42.358997],[-71.123932,42.358818],[-71.124707,42.358565],[-71.125147,42.358411],[-71.126487,42.357978],[-71.128124,42.357369],[-71.128632,42.357175],[-71.129266,42.356947],[-71.129707,42.356774],[-71.129871,42.35671],[-71.130404,42.356487],[-71.130802,42.356336],[-71.131457,42.35639],[-71.131934,42.356444],[-71.132019,42.356449],[-71.135065,42.356866],[-71.138042,42.357257],[-71.13811373229755,42.35727237120662],[-71.13809368815014,42.35732816516867],[-71.13796477917116,42.35761369324175],[-71.13736687646474,42.35877721987411],[-71.13715207644623,42.35894146318118],[-71.13693224867619,42.35933729073173],[-71.13661040761667,42.36016471156804],[-71.13628912709929,42.36089444218898],[-71.13583248728783,42.36193190312974],[-71.13530771404677,42.36316782022676],[-71.13536971120993,42.36409551367561],[-71.13538110973825,42.36462131660069],[-71.13568646476033,42.36675518165985],[-71.13568605270198,42.36675526858266],[-71.135682345802,42.36675640110383],[-71.13567863627806,42.36675798916086],[-71.135677397568,42.36675890082723],[-71.13567523378565,42.36675980866323],[-71.1356736867215,42.36676071845263],[-71.13567244407031,42.36676231432315],[-71.13566873190639,42.36676436061661],[-71.13566655758666,42.36676709779833],[-71.1356656035269,42.36677212646971],[-71.13566556665224,42.36677852828024],[-71.13568574977211,42.3668078631786],[-71.13500795325423,42.36702318181564],[-71.13500421202372,42.3670302587884],[-71.13500047079238,42.36703733576104],[-71.13499456575829,42.36704532055662],[-71.13499239667803,42.36704714305259],[-71.13498960438424,42.36704987826043],[-71.13498744179606,42.36705078608723],[-71.1349858947149,42.36705169586731],[-71.1349849684192,42.36705169292777],[-71.1349824909779,42.36705351444498],[-71.13498125347122,42.36705442520741],[-71.13497878262784,42.3670551033834],[-71.13497785226758,42.36705601512055],[-71.13497507702243,42.36705600631326],[-71.13497414412846,42.36705714671473],[-71.13497137009729,42.36705713791117],[-71.13496828131328,42.36705781502614],[-71.13495715647717,42.36706212359537],[-71.13494509346077,42.36706848813784],[-71.1349342757626,42.36707279857992],[-71.13492313660988,42.36707916605233],[-71.13489222530484,42.36709210226331],[-71.13485945590193,42.36710640460189],[-71.13481648538473,42.36712524799203],[-71.1347957644706,42.36713570113378],[-71.1347741317766,42.36714363598017],[-71.13475002932992,42.36715247856976],[-71.1347247108227,42.36715788540587],[-71.13467560612688,42.36717076468062],[-71.13456842382885,42.36720175142465],[-71.13453565032702,42.36721674057548],[-71.13450319046173,42.36723081512373],[-71.13447199310527,42.36723986198172],[-71.13443834073169,42.36724684477774],[-71.13437441616652,42.3672626477634],[-71.13431293972755,42.36728211905594],[-71.13425300517828,42.36730136474561],[-71.13419616743036,42.36731833442911],[-71.13413841250221,42.36733392913276],[-71.13398210624548,42.36738076793611],[-71.13384360392205,42.3674418399935],[-71.1337208635835,42.36749678792315],[-71.13364944107988,42.36752948928739],[-71.1335770987122,42.36756127298732],[-71.13350754214001,42.36759123613894],[-71.13343613410281,42.36762119424837],[-71.1333702459537,42.36765665624496],[-71.13330251152063,42.36769142720078],[-71.13322922778524,42.36772595264979],[-71.13315563694253,42.36776024659967],[-71.13304454025956,42.36782780882402],[-71.13299902772113,42.36785899173464],[-71.13295166881821,42.36788971139052],[-71.13283841313543,42.36795726652561],[-71.13278180180603,42.36798818434874],[-71.13272518377711,42.36802024638479],[-71.1326694310219,42.36806260231368],[-71.13261429360563,42.36810518705262],[-71.13250560553703,42.36818258936027],[-71.1324477045637,42.36822310803831],[-71.13238856750745,42.36826385140898],[-71.13228816890548,42.36834745325641],[-71.13223393480682,42.36839370035783],[-71.13218062706042,42.36843972172332],[-71.1320941456828,42.36851627905957],[-71.13203345153063,42.36855976223486],[-71.13197428982697,42.36860485008731],[-71.13192594366778,42.36864585641653],[-71.13187914837599,42.36868572342654],[-71.13179334293254,42.36875199334207],[-71.13178159696281,42.36875675786082],[-71.13176923159111,42.36876197774017],[-71.13175594643604,42.3687662799841],[-71.13174388688387,42.36877172951218],[-71.13173181389823,42.36877969439187],[-71.13172097693091,42.36878743455533],[-71.13171012421807,42.36879746139094],[-71.13167513059386,42.36882296064565],[-71.13155349407448,42.36889917632332],[-71.13148694948985,42.36894103886193],[-71.13145321727461,42.36896151129842],[-71.13142070385938,42.36898450302627],[-71.13138910086624,42.36901001395859],[-71.13136180049891,42.36903782359438],[-71.13130686574767,42.36909824569543],[-71.13128793238752,42.36911945243462],[-71.13125498393181,42.36916393792093],[-71.13122603201539,42.36921095160631],[-71.13119426083321,42.36926527375944],[-71.13116649321225,42.36932029475796],[-71.13112360617637,42.36942991995079],[-71.13109521383342,42.36953936384083],[-71.13109427925986,42.36954119022209],[-71.13108309154926,42.36960861177571],[-71.13107559882882,42.36967719034048],[-71.13107235690254,42.3698100385569],[-71.13107911887577,42.36991982295211],[-71.1310869273268,42.3699555217752],[-71.13109752426327,42.36998939926176],[-71.13114164129611,42.37009175725795],[-71.13116173937041,42.3701354981129],[-71.13118183201948,42.37018038230789],[-71.13121978701102,42.37028203449412],[-71.13125277609547,42.37038915978081],[-71.13129780400821,42.37049426469339],[-71.13129871726193,42.37049609699884],[-71.13135571596516,42.37061107316271],[-71.13138680668239,42.37067360032658],[-71.13141758908266,42.3707361264931],[-71.13148538559929,42.37085022249465],[-71.13154615489884,42.37095309190378],[-71.13162595860777,42.37107088503131],[-71.1317021328534,42.3711760895059],[-71.13172146097023,42.37119330180602],[-71.13174171678011,42.37121028930082],[-71.13175614689365,42.37122108219145],[-71.13176934469226,42.37123187293597],[-71.13178099127701,42.37124425851864],[-71.13178252374566,42.37124609280203],[-71.13178467187936,42.37124770038396],[-71.1317941583545,42.37126053639501],[-71.1318048798061,42.37127291901385],[-71.13181590831718,42.37128553038639],[-71.13182174759201,42.37128897915988],[-71.13182788858789,42.37129357316021],[-71.13183831631746,42.37130343854093],[-71.13184812739415,42.3713130750754],[-71.13185426428956,42.37131858284975],[-71.13186133710009,42.37132203466877],[-71.13188159177471,42.37133902213451],[-71.1318969336553,42.37135233421959],[-71.13191381079605,42.37136679457638],[-71.13192240954857,42.37137299624138],[-71.13193039020884,42.37137942460019],[-71.13194266958915,42.3713890672238],[-71.13195585680943,42.37140168729018],[-71.13196780652132,42.37141498851199],[-71.13197606375601,42.37142667721342],[-71.13198094718784,42.37143561105372],[-71.1319830727137,42.37144110598712],[-71.13198551570807,42.37144545767485],[-71.13199041255903,42.37145187706354],[-71.1320081816324,42.37147205706486],[-71.13202594273467,42.37149360907107],[-71.13203574843703,42.37150438803253],[-71.13204400824038,42.37151584806478],[-71.13205473909622,42.37152662998392],[-71.13206057175499,42.37153122208485],[-71.13207653580034,42.37154362234664],[-71.13208452315396,42.37154890645449],[-71.13209312061781,42.37155533677442],[-71.1320989439711,42.37156152954906],[-71.13210384749837,42.37156680469277],[-71.13211581189815,42.37157759145148],[-71.13212777631244,42.37158837640839],[-71.13214192068399,42.37159551048041],[-71.13214805641306,42.37160101913513],[-71.13215912361727,42.37160699910325],[-71.13216957671261,42.3716125206624],[-71.1321852324223,42.37162491902249],[-71.1321996519471,42.3716377707722],[-71.13222451128831,42.3716584307537],[-71.13227240884893,42.37169494366249],[-71.1322819328308,42.37170114825768],[-71.13229176398356,42.37170735383398],[-71.13232151630595,42.37173511827299],[-71.1323310243523,42.37174406597912],[-71.13234176182695,42.37175393320304],[-71.13236570275022,42.37177344775703],[-71.1323776713466,42.37178331801185],[-71.13238381896139,42.37178699731404],[-71.1323896569844,42.37179067472628],[-71.13239547917425,42.37179686748171],[-71.13241601197178,42.37181911339921],[-71.1324159588069,42.3718282610172],[-71.1325588115077,42.37202903515288],[-71.1325719524997,42.37204965672391],[-71.13258262110165,42.37207118598535],[-71.13258384135767,42.37207347660471],[-71.132583825417,42.3720762206199],[-71.1325862700289,42.37207988718291],[-71.13258840469912,42.37208423877247],[-71.13259208406075,42.37208791017949],[-71.13259941756266,42.37209959498303],[-71.13261009282381,42.37211998090199],[-71.1326216919196,42.3721405984425],[-71.13262811089228,42.37215045274647],[-71.13263515195588,42.37215939344784],[-71.1326409647976,42.37216741463735],[-71.13264553878088,42.37217634745921],[-71.13264918760362,42.37218527822665],[-71.13265283643261,42.37219420809365],[-71.13265403278707,42.37220061473489],[-71.13265641221545,42.37221571469649],[-71.13265755411756,42.37223149672261],[-71.13266230634414,42.37226283908475],[-71.13266583166119,42.37229303596829],[-71.13266868310664,42.37233306270225],[-71.13266861404604,42.37234495343405],[-71.13266854764159,42.37235638683005],[-71.13267199859968,42.37239938821581],[-71.13267545753091,42.37244101759357],[-71.13267531675586,42.3724652563924],[-71.13267045853742,42.37250525850557],[-71.1326666702376,42.37252033877036],[-71.13265940732718,42.37254958651289],[-71.13264465944079,42.37259321579666],[-71.13261554904079,42.37266721170361],[-71.13260683181878,42.37268136243573],[-71.13259935213522,42.37269483020307],[-71.13259434619509,42.37270716251017],[-71.13258841376538,42.37271971962971],[-71.1325706177697,42.37275716591942],[-71.13254944011273,42.37279277112664],[-71.13253979238382,42.37280783266933],[-71.13252207472887,42.37283178664484],[-71.1325009700984,42.37285481510854],[-71.13248670183037,42.37286894719653],[-71.13239985997495,42.37295327840472],[-71.13237570315026,42.37297103763238],[-71.13233451056048,42.3730013202741],[-71.13232739234412,42.37300564229319],[-71.13231996973063,42.37300927642221],[-71.13231193443524,42.37301199480417],[-71.13230328478836,42.37301471122176],[-71.13229585696466,42.37301903224929],[-71.13228873874367,42.37302335426596],[-71.13228286338685,42.37302607955029],[-71.13227914808655,42.37302858306717],[-71.13227542613834,42.37303222992337],[-71.13227200726122,42.37303679243678],[-71.13226951887097,42.37304044323609],[-71.13226735083089,42.3730420379106],[-71.13226084274223,42.37304750433633],[-71.13225124808501,42.37305342003911],[-71.13224164013484,42.37306162151957],[-71.1322332870216,42.3730661673567],[-71.1322295770305,42.37306775710073],[-71.13222586692889,42.37306957461617],[-71.13222121581644,42.37307390451626],[-71.13221407908338,42.37308119920677],[-71.13220787538147,42.37308735351939],[-71.13219704050957,42.37309440771266],[-71.13218620031591,42.37310237657636],[-71.13217073427404,42.37311032974724],[-71.13214753852104,42.37312168918029],[-71.13212250039399,42.37313167158429],[-71.13209714589301,42.37314302410345],[-71.13206343690976,42.37315915200988],[-71.13204889201323,42.37316779502731],[-71.13204021983876,42.37317416920684],[-71.1320355740275,42.37317758442786],[-71.13203062381129,42.37318031355889],[-71.13202350954539,42.37318394955539],[-71.13201608688821,42.37318758456495],[-71.13199940453386,42.3731925619845],[-71.13198241112524,42.37319799575072],[-71.13196572089812,42.37320411650082],[-71.13194871272911,42.37321229428039],[-71.13193200907061,42.37322093037596],[-71.13190913493332,42.37323000406879],[-71.13188594308227,42.37324067744524],[-71.13186924473169,42.37324839886021],[-71.13185254504597,42.37325634894064],[-71.13183430872657,42.3732633794121],[-71.13182472731361,42.37326700750015],[-71.13181637546923,42.37327132553916],[-71.1318077140187,42.37327564258663],[-71.13179688306376,42.37328201073833],[-71.13178605332074,42.37328837889287],[-71.1317690453403,42.3732960993022],[-71.13174647954345,42.37330517394972],[-71.13172361322084,42.37331310427007],[-71.13170042009386,42.37332377760501],[-71.13167630433146,42.37333421930899],[-71.13161262646484,42.3733598553512],[-71.13158264869318,42.37337050693476],[-71.13155145054952,42.37337909655263],[-71.13153445172344,42.37338544492388],[-71.13151775195422,42.37339339585571],[-71.131500446067,42.37339951366591],[-71.1314800402676,42.37340836650844],[-71.13141267499239,42.37343147523374],[-71.1313552155177,42.37344821374597],[-71.13128139938044,42.37346672737869],[-71.13118533885716,42.3734922593833],[-71.13109609076557,42.37351324061291],[-71.13104452539622,42.37352382192421],[-71.13100994934086,42.3735301147402],[-71.13096489353487,42.37353500009326],[-71.13092198966379,42.37354126616636],[-71.13089636776117,42.37354552872743],[-71.13087135063316,42.37355185037223],[-71.13081826046007,42.37355968352415],[-71.13070435557455,42.37357784125012],[-71.13067535468532,42.37357980529279],[-71.13058493842641,42.37358911919746],[-71.13052756141253,42.37359167989021],[-71.13047110022922,42.37359584240061],[-71.13029277590606,42.373607847288],[-71.13026654651195,42.37361050615139],[-71.13024031844206,42.3736129381415],[-71.13019342273095,42.37361621747397],[-71.13012216801961,42.37361873244991],[-71.13010674839485,42.37361868286877],[-71.13009009520016,42.37361862931883],[-71.130068188633,42.37362038824948],[-71.13004660115784,42.3736203188252],[-71.1299842993126,42.37362103223093],[-71.12993619008209,42.37362087747331],[-71.12975951853173,42.37361413573712],[-71.12967411804983,42.37360951516965],[-71.12958534789557,42.37360122673472],[-71.12956994032936,42.37359911907124],[-71.12955176526914,42.37359563046068],[-71.12953359155557,42.37359191227915],[-71.12943899816487,42.37357743082957],[-71.12940263211995,42.37357296890627],[-71.12936688663302,42.37356828029868],[-71.12929848399621,42.3735575409697],[-71.1292525883937,42.37354824617404],[-71.12908103672162,42.37350950489581],[-71.12901852302986,42.373493981373],[-71.12899943760983,42.3734879743454],[-71.12898282737126,42.37348060416529],[-71.12896465909023,42.37347597122248],[-71.12890494513117,42.37345634146969],[-71.12887815665107,42.37344916621095],[-71.12885198630211,42.37344176426812],[-71.12883290762358,42.37343461387376],[-71.128814758278,42.37342655178629],[-71.12879691438835,42.37341940537028],[-71.1287827646176,42.3734131855612],[-71.12876829584857,42.3734085654259],[-71.1286627310494,42.37337186673003],[-71.12864242543853,42.37336379675422],[-71.12862058739937,42.37335389335053],[-71.1285990565441,42.37334399093437],[-71.12856921512267,42.37333154628674],[-71.12853937639909,42.37331864429568],[-71.12852492365761,42.37331150878759],[-71.12851170448309,42.37330437726138],[-71.12844927844716,42.37327399092027],[-71.1284215904495,42.37326246787804],[-71.12839421891398,42.37324957381835],[-71.1283773084849,42.37324082964698],[-71.12836655646656,42.37323370607416],[-71.12835579504474,42.37322818317511],[-71.12833888059546,42.37322012500146],[-71.12832350810287,42.37321207180747],[-71.1283019879638,42.3732005686646],[-71.12828017153787,42.37318700651066],[-71.12825896652573,42.37317436101708],[-71.1282359098418,42.37316193730718],[-71.12821192677697,42.37314951149877],[-71.12817012821094,42.37312513804748],[-71.12814862023464,42.37311157596497],[-71.12812711750998,42.37309732877911],[-71.12809853015182,42.37308123020755],[-71.12806964102214,42.37306421416375],[-71.12805766088341,42.37305617280237],[-71.1280456819671,42.3730481305433],[-71.12803246168755,42.37304099895766],[-71.12801924263046,42.37303386647412],[-71.12797283855426,42.37300604707411],[-71.12795839670916,42.3729970821517],[-71.12794396024361,42.3729872034564],[-71.12790676621253,42.37296650175483],[-71.12789108006588,42.37295936217639],[-71.1278741657477,42.37295130393392],[-71.1278597239291,42.37294233899903],[-71.12784928579103,42.37293430170369],[-71.12783853926653,42.3729262634097],[-71.12782409207622,42.37291821314162],[-71.12781088382826,42.37290925219153],[-71.12766952835908,42.37282327134691],[-71.12765048634932,42.37280994672379],[-71.12761702414052,42.37278399844638],[-71.1276108819541,42.37277963379097],[-71.1276041351095,42.3727732091279],[-71.12758969875568,42.37276332948739],[-71.12757649474524,42.37275345383483],[-71.12755838871317,42.37273830284882],[-71.12754550630213,42.37272659885622],[-71.12753230769285,42.37271580852712],[-71.1275120482207,42.37269996454427],[-71.12749024829866,42.37268365822489],[-71.1274816634038,42.37267494088027],[-71.1274721518682,42.37266667787841],[-71.12743652826764,42.37264140856418],[-71.12742209345541,42.37263107066243],[-71.12740642482095,42.37262118790742],[-71.127384932132,42.37260488166248],[-71.12736467286011,42.37258880988176],[-71.12734685375597,42.37257731854645],[-71.12732996655721,42.37256468686638],[-71.12730693722754,42.37254768961156],[-71.1272569382883,42.37250202273794],[-71.12724528697245,42.37249055047187],[-71.12723302562044,42.37247793376694],[-71.12721767905724,42.37246553573467],[-71.12720693269267,42.37245749738081],[-71.12719587929196,42.37244922935865],[-71.12717685366991,42.37243316064179],[-71.12716612349183,42.37242237826985],[-71.12715416799324,42.37240999121976],[-71.12713393163148,42.3723902598157],[-71.12712072224339,42.37238152745321],[-71.12710875853817,42.37237074107718],[-71.12709586967814,42.37235995170075],[-71.127083597595,42.37234916432234],[-71.12707285666052,42.37234021128432],[-71.12706210912155,42.37233217291278],[-71.12703235464738,42.37230532179259],[-71.12700229599284,42.37227755498923],[-71.12699032153854,42.37226859794353],[-71.12697712298507,42.37225803622139],[-71.12696761697288,42.37224885850564],[-71.12695596993164,42.37223647243451],[-71.12694525182894,42.37222386070256],[-71.12692838247442,42.3722080276085],[-71.12691275180163,42.3721917402847],[-71.12686619288344,42.37213808086452],[-71.12685181764036,42.37211768150407],[-71.12683651441272,42.37209796604824],[-71.12681141033451,42.37206678608245],[-71.12680190438041,42.37205760745233],[-71.1267933288403,42.37204774672358],[-71.12676486240035,42.37201129547629],[-71.12671713228995,42.37194711236883],[-71.12670890173766,42.37193084992998],[-71.12670066849029,42.37191504482616],[-71.12668720081633,42.37189785070083],[-71.12667558210369,42.37188089124679],[-71.12666825377626,42.37186851916115],[-71.12666123519058,42.37185591850778],[-71.12665514039865,42.371843551325],[-71.12664812721249,42.37183003689948],[-71.1266411032303,42.37181835181653],[-71.12661489813252,42.37176475654948],[-71.12660912794156,42.37174964635043],[-71.12660427751372,42.37173545202519],[-71.12659697081753,42.37171942124847],[-71.12658904330864,42.37170407447277],[-71.12658418613317,42.37169102438619],[-71.12657932760958,42.37167820296723],[-71.12655438585165,42.37161958189586],[-71.12655195659008,42.37161317208599],[-71.12654528694492,42.37159371238935],[-71.1265262639274,42.37152504894603],[-71.1265226524599,42.37150994485025],[-71.12651904774569,42.37149369741488],[-71.12651693093082,42.37148660170136],[-71.12651450168342,42.37148019099021],[-71.12648856420947,42.37138132034701],[-71.12648733473458,42.37138063033792],[-71.12647324594313,42.37131198290398],[-71.12646161896882,42.37124402857808],[-71.126448197727,42.37111478514831],[-71.12644706833544,42.37109694504151],[-71.12644603591177,42.37106309818856],[-71.12644377415818,42.37102833265386],[-71.12644047877399,42.37095972026118],[-71.12643481945241,42.37092585838093],[-71.12642545958724,42.37089198448209],[-71.1264063207562,42.37084298554932],[-71.1263825576204,42.37079374382083],[-71.1263541985647,42.37073945636698],[-71.12632212834903,42.3706867575556],[-71.12624319499947,42.37058039714917],[-71.12617158620829,42.37048663656739],[-71.12609781600815,42.37039378450228],[-71.12605583081125,42.37034905781405],[-71.12601446365103,42.3703043313186],[-71.12593915080097,42.37021147413088],[-71.12590703507584,42.37016677857984],[-71.12587369130502,42.37012116433561],[-71.12583445057741,42.37008193372531],[-71.12579614057915,42.37004156186689],[-71.12572812501581,42.36996656561742],[-71.12570273426452,42.36993195257121],[-71.12555837683401,42.36999002376765],[-71.12564272099858,42.37011972685465],[-71.12558987916718,42.3701380773291],[-71.12525987204273,42.36967622695968],[-71.12545986885172,42.36959592832396],[-71.12545710432924,42.36959408994319],[-71.12542903466527,42.36954323327033],[-71.12539879967407,42.3694935119998],[-71.12533251681371,42.369386277438],[-71.12528329163158,42.3693147712995],[-71.12525509081313,42.3692860953762],[-71.12522256062964,42.36925946339154],[-71.12518818716369,42.3692314533566],[-71.12515349423352,42.36920572899415],[-71.12507799961259,42.36914397006729],[-71.12501358898736,42.36908499129335],[-71.1249859956434,42.36905791798919],[-71.12497741957898,42.36904805711444],[-71.12496914632212,42.36903934058839],[-71.12495840082538,42.36903130201824],[-71.12495256755692,42.36902693822258],[-71.12494642741702,42.36902211608118],[-71.12493904809051,42.36901866193341],[-71.12493228443257,42.36901498112029],[-71.1249248984696,42.36901244163961],[-71.12492243150997,42.3690124335953],[-71.12491996455036,42.36901242555093],[-71.12491780596064,42.36901241851208],[-71.12491503063107,42.36901240946204],[-71.12491286661715,42.36901331709511],[-71.12490700216898,42.36901421176088],[-71.12490083476973,42.36901419164904],[-71.1248959062695,42.36901326178759],[-71.12489005808943,42.36901141333673],[-71.12488512538431,42.3690113972505],[-71.12488052031982,42.36900772347382],[-71.12487559589431,42.36900610670721],[-71.1248706782501,42.36900334660039],[-71.12486606898156,42.3690005865988],[-71.1248623834561,42.36899806008267],[-71.12485746581305,42.36899529997527],[-71.12485409545019,42.36899162932403],[-71.12480735480749,42.36896929564792],[-71.12469102849623,42.36892889847669],[-71.12457100868255,42.36888734666993],[-71.12443435611304,42.36884253721614],[-71.12429399394125,42.36879908841725],[-71.1241763926759,42.36876577540332],[-71.12413327948401,42.36875580161499],[-71.12409015543345,42.36874765715453],[-71.12404454269806,42.36874316330278],[-71.1239976869792,42.36874026607696],[-71.1238943875739,42.36873924233918],[-71.1237824186337,42.36874390696431],[-71.12373922103427,42.36874833911637],[-71.12369602221472,42.36875277124819],[-71.12366209092319,42.36875426094385],[-71.12362754818889,42.36875506261142],[-71.12361182260032,42.36875501115459],[-71.12359517900342,42.36875335598437],[-71.12357946444918,42.36875124650715],[-71.1235637526178,42.36874867969177],[-71.12354927562322,42.3687458882432],[-71.12353512741403,42.36873966778197],[-71.12352221268193,42.36873345135627],[-71.12350869346541,42.36872517489845],[-71.12332179248591,42.36862577649116],[-71.12331223307656,42.36862574518589],[-71.1232944020583,42.36861676856452],[-71.12328611289448,42.36861056726063],[-71.12327627115013,42.36860596067818],[-71.12326892873183,42.36859633328708],[-71.12326219109993,42.36858830678302],[-71.12325484051892,42.36858005049876],[-71.12324995717269,42.36857134585058],[-71.12324292328891,42.36856148899525],[-71.12323836723479,42.36854981267648],[-71.12322646757514,42.36852850715902],[-71.12320970473587,42.36849552251347],[-71.12319434085056,42.36848632618567],[-71.12317713509884,42.36847552131385],[-71.12305290902215,42.36841566033472],[-71.12294031388348,42.36837047058602],[-71.12292708955525,42.3683644817501],[-71.12284432569896,42.36833288227258],[-71.12276278857212,42.36830243012075],[-71.12265601884056,42.36826274823638],[-71.12260307656507,42.36824656746874],[-71.12254919723811,42.3682319843091],[-71.12254088090545,42.36823035631127],[-71.12253256047926,42.36822941431684],[-71.12251070879284,42.36822225375786],[-71.12248792655404,42.3682160048306],[-71.12244511812322,42.36820694609641],[-71.1224016796238,42.36819971465778],[-71.12237148160969,42.36819595585985],[-71.12234313242391,42.36819243269704],[-71.12232957660667,42.36819033103623],[-71.12231633325796,42.36818754348207],[-71.12229723505523,42.36818405068344],[-71.12227689792887,42.36818146850315],[-71.12226457968185,42.36817868398096],[-71.12225287816754,42.36817590148279],[-71.12222885158178,42.36817147779745],[-71.12219527248924,42.36816587936891],[-71.12216260757201,42.36816211331354],[-71.12215458884812,42.36816208697278],[-71.12214101392958,42.36816318484138],[-71.12213515497996,42.36816316559423],[-71.12212929603034,42.3681631463468],[-71.12211974351686,42.36816197250266],[-71.12207014019904,42.36815472068543],[-71.12205351031724,42.36815100638356],[-71.12203811252297,42.36814752660089],[-71.12200667304049,42.36814490789035],[-71.12197647507602,42.36814114898865],[-71.12196477767604,42.36813768135744],[-71.12195860626844,42.36813834619159],[-71.12195245535106,42.36813558280578],[-71.12194290012224,42.36813486448241],[-71.12192532996283,42.36813389204177],[-71.12190806558333,42.36813315017636],[-71.121890195567,42.36813034736462],[-71.12187819118597,42.36812664824233],[-71.12186617585918,42.36812478026341],[-71.1218446053126,42.36812219305144],[-71.12182427505526,42.36811846835132],[-71.12180733546462,42.36811498166797],[-71.1217916306945,42.3681112721704],[-71.12175343576256,42.36810405772757],[-71.12171368533613,42.36809912488149],[-71.12168008308166,42.36809741275842],[-71.12160670304556,42.3680953429032],[-71.1215659975949,42.36809520898697],[-71.12153947254633,42.36809626417712],[-71.12151417700258,42.3680977816522],[-71.12150737654272,42.36810050334514],[-71.12149873819952,42.36810116183759],[-71.121491319799,42.36810388059583],[-71.12148638169184,42.3681047790359],[-71.12148328708957,42.36810659823238],[-71.12147340723232,42.3681083950996],[-71.12146014462469,42.36810903747096],[-71.12144687806024,42.36811013807301],[-71.12143021963472,42.36811099793732],[-71.12138428671349,42.36810878779899],[-71.12133989714128,42.36810612627825],[-71.12130875101404,42.36810602374017],[-71.12126433543162,42.3681077068824],[-71.12125013418263,42.36811040509175],[-71.12124272930814,42.36811106582599],[-71.12123563142433,42.36811195714339],[-71.12122823065219,42.3681119327729],[-71.12122113824562,42.36811190941742],[-71.12120664506693,42.36811186168962],[-71.12116068216636,42.36811445528657],[-71.12111534147752,42.36811613532437],[-71.12107306389274,42.36812125552304],[-71.12104312640416,42.36812550167252],[-71.12101193900747,42.36813248776609],[-71.12098908585901,42.36813789970559],[-71.12095418420247,42.36814738894241],[-71.12094553351366,42.36815010540526],[-71.12093595773237,42.36815281791851],[-71.12092791708304,42.36815645018023],[-71.1209192785805,42.36815733550056],[-71.12090231434885,42.36815796650848],[-71.12087610326243,42.36815788011825],[-71.1208520536396,42.368157113929],[-71.12082677434258,42.3681561168092],[-71.12080271633874,42.3681569512896],[-71.12077865848045,42.36815755889353],[-71.12076539875453,42.36815751517673],[-71.12075213902864,42.36815747145841],[-71.12068736577208,42.3681600019443],[-71.12065713358778,42.36816196029642],[-71.12064757014087,42.3681626138734],[-71.1206380108029,42.36816258234592],[-71.12062721372985,42.36816346142541],[-71.12061889745024,42.36816183418883],[-71.12061027433988,42.36815974769431],[-71.12060226643771,42.36815811967309],[-71.12059240558763,42.36815694468499],[-71.12058408383383,42.36815623031735],[-71.1205745244968,42.36815619878458],[-71.12056959064549,42.36815618250927],[-71.12056373169699,42.3681561631821],[-71.1205550864828,42.36815796404331],[-71.12054551753731,42.36815953408439],[-71.12053686684008,42.36816224871594],[-71.12052512698615,42.36816586964613],[-71.120514313611,42.36816926315866],[-71.12050689087559,42.36817289832992],[-71.1205047268271,42.3681738058802],[-71.12050316853438,42.36817654480917],[-71.12050223932097,42.36817722776095],[-71.1205010003698,42.36817813836336],[-71.12049852658869,42.36817927266382],[-71.12049728351596,42.36818087017046],[-71.1204960459366,42.3681815521048],[-71.12049357900995,42.36818154396549],[-71.12049233868655,42.36818268323579],[-71.1204901801257,42.36818267611383],[-71.12048771319895,42.36818266797442],[-71.12048647973562,42.36818266390468],[-71.12048401280894,42.36818265576517],[-71.12048185424803,42.36818264864306],[-71.12047907774149,42.36818263948199],[-71.12046365396111,42.36818350328017],[-71.1204516193022,42.36818506427713],[-71.12044050166517,42.36818777166144],[-71.12042384441959,42.36818863138406],[-71.12041798546815,42.36818861204945],[-71.12041335998019,42.36818859678507],[-71.12040719266288,42.36818857643227],[-71.12040100888277,42.36819129919476],[-71.12039513894669,42.3681931101032],[-71.12038926490389,42.36819560521474],[-71.12038308539256,42.36819741420059],[-71.12037690967595,42.36819899542638],[-71.12037104386125,42.36820011942934],[-71.12036394595516,42.36820101069294],[-71.12035654517295,42.36820098626637],[-71.1203457578558,42.3682000359715],[-71.1203349748153,42.36819817099961],[-71.12032542218202,42.36819722387791],[-71.12031463348794,42.36819650314837],[-71.1202967482656,42.36819644410902],[-71.12026280620974,42.36819976214604],[-71.12024491138152,42.36820130287426],[-71.12022546906111,42.36820398365354],[-71.12015820012965,42.36821107905206],[-71.12010884218742,42.36821434613481],[-71.12005978468363,42.36821852887892],[-71.12002738427387,42.36822208061136],[-71.12000330683621,42.36822634584856],[-71.11997769475411,42.36822900530289],[-71.11994405674803,42.36823323894055],[-71.11991196469036,42.3682367916593],[-71.11986011108625,42.36824462383914],[-71.11983695064659,42.36825003453451],[-71.11981563627123,42.36825613824482],[-71.1197961720836,42.36826224896719],[-71.11977824423047,42.36826927855461],[-71.1197624955572,42.36827288525514],[-71.11975786335044,42.36827378463231],[-71.11975292520539,42.3682746829979],[-71.11974706624622,42.36827466362912],[-71.11974336585092,42.36827465139606],[-71.1197384319905,42.36827463508511],[-71.11972886592285,42.36827551814997],[-71.11970360859968,42.36827086119542],[-71.1196795821561,42.36826643697766],[-71.11966633890825,42.36826364911841],[-71.11966049095031,42.36826180040143],[-71.1196534040331,42.36826086137708],[-71.11963521333293,42.36826011610751],[-71.11961485825758,42.36826073391205],[-71.11960436708621,42.36826161480749],[-71.11959326590275,42.36826157809416],[-71.11958833325748,42.36826156178079],[-71.11958494552178,42.36826063498627],[-71.11957292045393,42.36826059521544],[-71.119559351127,42.36826055033571],[-71.11954762082692,42.36826257049019],[-71.11953064693031,42.36826480107133],[-71.11952138356386,42.36826682848284],[-71.11951182129798,42.36826748286965],[-71.1195053320127,42.36826951945622],[-71.11950070651902,42.36826950415514],[-71.11949453628127,42.3682701697614],[-71.11948867732254,42.36827015037945],[-71.11948282127683,42.36826944498924],[-71.11947665395195,42.36826942458656],[-71.11947327001586,42.36826827002912],[-71.11946957512387,42.36826734311532],[-71.11946679861371,42.36826733392981],[-71.11946588314517,42.36826573019348],[-71.11946373267432,42.36826457971639],[-71.11946219375643,42.36826388860757],[-71.11946004069593,42.36826296679436],[-71.1194502059961,42.36825744611655],[-71.11942899339513,42.368246628325],[-71.11942036877474,42.36824499908128],[-71.119412973335,42.36824428769383],[-71.11939541175856,42.36824148641515],[-71.11938184915401,42.36824052684661],[-71.11936860042034,42.368238653625],[-71.11935195966053,42.36823676917668],[-71.11933502016912,42.36823328302954],[-71.11931963076732,42.36822842997491],[-71.11931100615222,42.36822680072301],[-71.11930300515121,42.36822403017175],[-71.11928945356283,42.36822124124851],[-71.11927529487856,42.36821684960647],[-71.11925960676018,42.36821039394698],[-71.11924267156762,42.36820599401063],[-71.11921527089505,42.36819881355535],[-71.11918662453188,42.36819345924991],[-71.11917431605065,42.36818907462119],[-71.11916354528063,42.36818537929944],[-71.11914660167727,42.36818258002876],[-71.11911918328248,42.36817814446252],[-71.11910377600913,42.36817626406265],[-71.1190877506335,42.36817460938602],[-71.11907234886519,42.36817181521031],[-71.11905570951443,42.36816970115083],[-71.11903012908803,42.36816710193101],[-71.11900484982117,42.36816610351051],[-71.11896783920915,42.36816689560358],[-71.11893051180625,42.36816928644267],[-71.11891726171775,42.36816764273732],[-71.1189043060597,42.36816851450352],[-71.1188861222895,42.36816662487534],[-71.11887778539183,42.36816842663223],[-71.11886791768808,42.36816839393587],[-71.1188512824735,42.36816559474317],[-71.11883433338804,42.36816370829784],[-71.11882847856806,42.36816300377862],[-71.1188226265152,42.3681618401226],[-71.11881769817074,42.36816091000053],[-71.11880937229674,42.36816088240868],[-71.11878284044239,42.36816285253131],[-71.11876123968143,42.36816529633679],[-71.11875259441467,42.36816709706259],[-71.11874456726264,42.36816867026364],[-71.11874085997654,42.36816980223844],[-71.11873715407411,42.3681707046449],[-71.1187300354724,42.36817502582729],[-71.11871673301255,42.36818207058142],[-71.11871425506394,42.36818389084745],[-71.11871177710975,42.36818571201369],[-71.1187105326133,42.36818753816897],[-71.11870806017276,42.36818844466327],[-71.11870589747647,42.36818912351173],[-71.11870219157784,42.36819002501677],[-71.11870002611899,42.36819116210133],[-71.11869725082636,42.36819115290128],[-71.118693546306,42.36819182573807],[-71.11869138774503,42.36819181858235],[-71.118687691485,42.36819112121169],[-71.11868553292406,42.36819111405585],[-71.11868183253391,42.36819110178866],[-71.11867690557864,42.36818994119206],[-71.11866949376952,42.3681917460007],[-71.1186623958349,42.36819263805958],[-71.11864201749836,42.36819691437548],[-71.11863244160578,42.3681996275972],[-71.1186228700189,42.36820142524193],[-71.11861422595729,42.36820322596131],[-71.11860590007778,42.36820319835473],[-71.1185975741983,42.36820317074755],[-71.11858063062064,42.36820037049326],[-71.11856522749491,42.36819780401736],[-71.11854706286813,42.36819294165601],[-71.11854213315162,42.36819223928984],[-71.11853628264004,42.36819061917958],[-71.11853167491573,42.36818785982797],[-71.11852552967065,42.36818417978651],[-71.11851232510249,42.36817498999148],[-71.1184463576883,42.36811966110125],[-71.11844422104065,42.36811622302513],[-71.11843962192776,42.36811163521817],[-71.11843595586866,42.36810613401548],[-71.11843228169337,42.36810177704881],[-71.11842892691983,42.36809559176115],[-71.11842618214563,42.36809032318715],[-71.11842158287594,42.3680859631512],[-71.11841944208679,42.36808321197874],[-71.11841822517427,42.36808046477144],[-71.11841455531122,42.36807519222793],[-71.11841212701066,42.36806878224102],[-71.1184109307974,42.36806260411375],[-71.11840730077216,42.36805092977108],[-71.11839787649187,42.36802871636759],[-71.11838145104154,42.36799115957452],[-71.1183634770544,42.367954512331],[-71.11837091075381,42.36794927752634],[-71.11836226980488,42.36795016444715],[-71.11835496564026,42.36793413223302],[-71.11834825750105,42.36792153388491],[-71.1183360305506,42.36790365595481],[-71.11832071995808,42.36788576869122],[-71.1183051065296,42.36786696573034],[-71.11828856663794,42.36784838836526],[-71.11828122109812,42.36783921708582],[-71.11827419772487,42.36782776014945],[-71.11826594641833,42.36781538444711],[-71.11824788681407,42.36779314327121],[-71.11823472101821,42.36777754983967],[-71.11822278592336,42.36776241783656],[-71.11817292433305,42.3676957077097],[-71.11815398388063,42.36766614607186],[-71.11813472403843,42.36763841275089],[-71.11811698945566,42.36761342946167],[-71.11809893548954,42.36759027268916],[-71.11808947426867,42.36757400552223],[-71.11808339261107,42.3675598085294],[-71.11807669424171,42.36754560768791],[-71.11806814706951,42.36753117383501],[-71.11805960405448,42.3675160521769],[-71.11804926471598,42.36749200722261],[-71.11804562236256,42.36748239087898],[-71.1180407493227,42.36747231310322],[-71.11803374259898,42.36745811303546],[-71.11802643183678,42.36744299546665],[-71.11802187666476,42.36743154671009],[-71.11801701468023,42.36741963958919],[-71.11801213336392,42.3674109338201],[-71.11800756317287,42.36740177173887],[-71.11797676803535,42.36734381439727],[-71.11796155849864,42.36730923521939],[-71.11795519063797,42.36729137760636],[-71.11794727683046,42.36727420087573],[-71.11793504889903,42.36725632379661],[-71.1179280049395,42.36724829595747],[-71.11792555583352,42.36724554465125],[-71.1179234138804,42.36724279346501],[-71.11792064829858,42.36724118357013],[-71.1179185160204,42.36723683080746],[-71.11791761303238,42.3672331699466],[-71.11791609747151,42.36722882013278],[-71.11791490684777,42.36722172732717],[-71.11791495658068,42.36721349437848],[-71.11791498282572,42.36720914968625],[-71.11791408829893,42.36720388724497],[-71.11791288247593,42.36719931068766],[-71.11791044857262,42.36719404313274],[-71.1179080148425,42.36718854600539],[-71.11790557005654,42.36718487912241],[-71.11789976369099,42.36717617027502],[-71.11789610203367,42.3671697561784],[-71.11789246542054,42.36715899558486],[-71.11788759640682,42.36714846046991],[-71.11788302780162,42.36713884104313],[-71.11787815602814,42.36712876326374],[-71.11787118806032,42.36710816048053],[-71.11786390483991,42.36708869821189],[-71.11785235983514,42.36706007577938],[-71.11784378929839,42.36704952836426],[-71.11784012765958,42.36704311336544],[-71.11783676625966,42.36703784272706],[-71.11783433375051,42.36703234650231],[-71.11782371798901,42.36700304203637],[-71.11781920036321,42.36698518966171],[-71.11781560660017,42.36696734125682],[-71.11781446987806,42.36695133039682],[-71.11781241067304,42.36693508779893],[-71.11780971297807,42.36692204449603],[-71.11779823987837,42.36688153131958],[-71.11778734879977,42.36684696556374],[-71.11778034773485,42.3668318499062],[-71.11777458149166,42.36681650967893],[-71.1177722002918,42.36680232406334],[-71.11777100416496,42.36679614592765],[-71.11777102075236,42.36679340101102],[-71.11777104147437,42.3667899718908],[-71.1177686176071,42.36678264631204],[-71.11776253057562,42.36676936307157],[-71.11775799225026,42.36675494161434],[-71.11775437193135,42.36674189434315],[-71.11775106583066,42.36672747698054],[-71.11773898022714,42.36668627664304],[-71.1177225762521,42.36664528882361],[-71.11772013564388,42.36664093593209],[-71.11771799372016,42.36663818474169],[-71.11771676995586,42.36663658086624],[-71.11771431415151,42.36663474242273],[-71.11771216791409,42.36663290590837],[-71.11770940253231,42.36663106733613],[-71.11770724955295,42.36663014548977],[-71.11770478683336,42.36662945128656],[-71.11770232687799,42.36662829974718],[-71.117698636254,42.36662668677206],[-71.1176961818218,42.36662462146068],[-71.11769402868016,42.36662392738587],[-71.1176912619172,42.36662231748124],[-71.11768911584356,42.36662025319464],[-71.11768665313,42.36661955809078],[-71.1176854418115,42.36661589530235],[-71.11768329988469,42.36661314501153],[-71.1176817802138,42.36660948029787],[-71.11767841868195,42.36660443832644],[-71.1176747736717,42.36659527930522],[-71.11767237176981,42.36658452370749],[-71.11766904479494,42.36657376503471],[-71.11766669541846,42.36655432005121],[-71.11766324928338,42.36651246150333],[-71.11766134942316,42.36646946473168],[-71.1176623448202,42.3664580344084],[-71.11766240978429,42.36644728701016],[-71.11766158578243,42.36643036249552],[-71.11766045878444,42.36641275095568],[-71.11766055692209,42.36639651552416],[-71.1176606481486,42.3663814234328],[-71.11765830569303,42.36636083510806],[-71.11765591469249,42.36634847883708],[-71.11765228922543,42.36633588888949],[-71.11764865805705,42.36632444318635],[-71.11764197909436,42.36630727053512],[-71.11763832597559,42.36629925574867],[-71.1176346727003,42.36629146783358],[-71.11763347797344,42.36628506192795],[-71.11763228325766,42.36627865422179],[-71.11763231919797,42.36627270885233],[-71.11763236757913,42.36626470547034],[-71.11763238831392,42.36626127544952],[-71.11763365491518,42.36625579151647],[-71.1176349159815,42.36625122315589],[-71.11763587423145,42.3662457372975],[-71.11763591016596,42.36623979282825],[-71.1176359322883,42.36623613323904],[-71.11763502380707,42.36623338614713],[-71.1176338332282,42.36622629423724],[-71.11763140370083,42.36622011199896],[-71.11763019792791,42.36621553363714],[-71.1176289852326,42.36621210041613],[-71.11762901149687,42.36620775572298],[-71.11762904467824,42.36620226678928],[-71.1176303168079,42.36619586818399],[-71.11763281545001,42.36619061701931],[-71.11763535141397,42.3661791918169],[-71.11763632486267,42.36617119151],[-71.11763806016407,42.36613918310658],[-71.11763579928073,42.36610510336442],[-71.11763582139758,42.3661014446754],[-71.11762459866907,42.36596854854889],[-71.11762013370296,42.36594200677544],[-71.1176097006996,42.36588251809658],[-71.11759889301582,42.36583400265804],[-71.11758956352034,42.36579601197595],[-71.11757900337977,42.36575756075599],[-71.1175769527431,42.36573971656863],[-71.11757335618559,42.36572255415947],[-71.11755569560657,42.36563445645535],[-71.1175508960649,42.36561225924596],[-71.11754516178878,42.36559165963691],[-71.11754163437992,42.36556306382158],[-71.11753815951471,42.36552577861843],[-71.11753705054166,42.36550519438856],[-71.1175385535677,42.36546060821124],[-71.11754025019083,42.3654350016107],[-71.11754248607919,42.36542220427475],[-71.11755226483882,42.36538587693131],[-71.11756111990292,42.36534931964334],[-71.1175649652991,42.36532532089544],[-71.11756600924753,42.3653056594145],[-71.11756616409716,42.36528004768633],[-71.11756554181834,42.36522996629488],[-71.11756411204736,42.36521143905163],[-71.11756080728392,42.36519702168265],[-71.11755839992428,42.36518718075162],[-71.11755475501306,42.36517802172366],[-71.11755139909782,42.36517206507447],[-71.1175391728986,42.36515418794881],[-71.11752877054123,42.36514066166819],[-71.11752386319688,42.3651363005681],[-71.11752019617047,42.36513080022878],[-71.11751683058739,42.36512644335502],[-71.11751440249103,42.36512003334488],[-71.11751318982843,42.36511659922156],[-71.1175132050384,42.36511408387229],[-71.11751229657868,42.36511133677867],[-71.11751231317142,42.36510859276132],[-71.11751233529506,42.36510493407145],[-71.1175123518878,42.36510219005407],[-71.1175155142103,42.36508916622554],[-71.11752559298294,42.36505421281603],[-71.11753689685551,42.36502063461519],[-71.11754513517697,42.3649840752748],[-71.1175540233816,42.36494202814858],[-71.11756008526109,42.364908434315],[-71.1175626820186,42.36488694771333],[-71.11756410482491,42.36485562428089],[-71.11756521236771,42.36482544316364],[-71.11756812300494,42.36480304201391],[-71.11757040449363,42.36478269772699],[-71.11757170701577,42.36477126842132],[-71.11757177199352,42.36476052101906],[-71.11757660736832,42.3647257788413],[-71.1175805190739,42.36469080491921],[-71.1175857802956,42.36463662697386],[-71.11758471279626,42.36460918269609],[-71.11758251697209,42.36456435553838],[-71.11757785160263,42.36451997751463],[-71.11757454687219,42.3645055601438],[-71.1175708895554,42.36449845912827],[-71.11756723776949,42.36449044344003],[-71.11756357492433,42.36448425709685],[-71.11755898289441,42.36447875278185],[-71.11754703751754,42.36446545094282],[-71.1175292556745,42.3644484691298],[-71.11751944247656,42.36443951825988],[-71.11751147521828,42.36443125954611],[-71.11750658452301,42.36442415442678],[-71.117505393998,42.36441706161241],[-71.1175029700837,42.36440996469627],[-71.11750302815904,42.36440036063394],[-71.11750308899985,42.36439029923527],[-71.11750228840532,42.36436971602524],[-71.11750082133798,42.36435736281778],[-71.11749961422179,42.36435301402108],[-71.1174974889783,42.36434751880729],[-71.11749596383612,42.36434476966218],[-71.1174901702328,42.36433400277517],[-71.11748806988115,42.36432439153437],[-71.11748442917828,42.36431454649793],[-71.1174819886764,42.36431019359911],[-71.11747863004835,42.3643046942829],[-71.11747222390656,42.36429323933943],[-71.11747010419892,42.36428682945238],[-71.11743386190757,42.36411017353797],[-71.11743182104622,42.36409072866424],[-71.117429115084,42.36407928602522],[-71.11742702719175,42.36406761766955],[-71.11742833111353,42.36405595879524],[-71.11742932667836,42.36404430069585],[-71.11743093755634,42.36403287241556],[-71.11743439851224,42.36402144938864],[-71.11743597895776,42.36401505270823],[-71.11743817610471,42.36400865627845],[-71.11744191220149,42.36400272411355],[-71.11744690105108,42.36399359289588],[-71.11744908021262,42.36399017005237],[-71.11745157325096,42.36398583356175],[-71.11745377592153,42.36397852335922],[-71.117460114306,42.36395018901688],[-71.11747489556909,42.36385145153898],[-71.11747777853151,42.36383362465056],[-71.11747881833945,42.36381464826804],[-71.11748762345113,42.36378632212715],[-71.11750110902773,42.36374886463972],[-71.1175142903925,42.36371072012043],[-71.11752687303357,42.3636695999618],[-71.11753884172535,42.36362802221491],[-71.11754541096126,42.36361249340954],[-71.11755353572569,42.3635946848488],[-71.11756227441265,42.36357733477413],[-71.11756822694556,42.36356180481698],[-71.1175741711862,42.36354764596836],[-71.11758289603661,42.36353258257393],[-71.11759039304035,42.36351660040513],[-71.11759509836483,42.36350335302758],[-71.1175985551041,42.36349261779951],[-71.11760108682441,42.36348187769529],[-71.117608286528,42.36346406605463],[-71.11761483637733,42.36345173859954],[-71.11762077091566,42.36343918132587],[-71.11762297216535,42.36343209978738],[-71.11762548313943,42.36342479060581],[-71.1176280286698,42.36341176471903],[-71.11762810469477,42.36339918796781],[-71.1176281862488,42.36338569654373],[-71.11762703305112,42.36337242968747],[-71.11762835903262,42.36335711301805],[-71.11762845579152,42.36334110624357],[-71.11762858434253,42.36331984010022],[-71.11762397985297,42.36326540066467],[-71.1176207124996,42.3632448092494],[-71.11761261812137,42.36320659397931],[-71.11760545015927,42.3631681531156],[-71.11759504528037,42.36310409013362],[-71.11759391421845,42.36308716368438],[-71.11759310255174,42.36306840981474],[-71.11759322143733,42.3630487443477],[-71.11759055833939,42.36303021389519],[-71.1175861060367,42.36300161408891],[-71.11758133295032,42.36297507217135],[-71.11757927272068,42.36295882955074],[-71.11757659442912,42.36294281354775],[-71.11757450655263,42.36293114429151],[-71.1175721103368,42.36291947400989],[-71.11757010264522,42.36289454199619],[-71.11756747827545,42.3628696079318],[-71.11756541667032,42.36285359397874],[-71.11756397312816,42.36283735340795],[-71.11756196958989,42.36281173538895],[-71.1175596646263,42.36278497300331],[-71.1175573057466,42.36276712867864],[-71.11755494133811,42.36275019902683],[-71.11755164638315,42.36273418097196],[-71.11754723144773,42.36269940711981],[-71.11754374014035,42.36266486681199],[-71.11753771991627,42.36264060747173],[-71.11753047049544,42.36261565712459],[-71.11752382669094,42.36259253907379],[-71.1175211664033,42.36257355038104],[-71.11751571585755,42.36250607376567],[-71.1175102654922,42.36243836847682],[-71.11749750457888,42.362356232484],[-71.11749513467083,42.36234021750244],[-71.1174915369461,42.36232328374586],[-71.11748920990605,42.36230018004802],[-71.11748719258752,42.36227684870723],[-71.11748240577504,42.36225259256359],[-71.11747791900082,42.36222971035495],[-71.1174780323895,42.3622109595574],[-71.11747690689513,42.36219312023106],[-71.11746977094064,42.36214941907979],[-71.11746294332669,42.36210571985342],[-71.1174615039765,42.36208879327379],[-71.1174606868304,42.3620709540721],[-71.11745019653972,42.3620210684942],[-71.11744094099053,42.36197095834897],[-71.11741552787177,42.36183915823752],[-71.11741195768812,42.36181787978322],[-71.11740932374417,42.36179454638717],[-71.11740240355122,42.36176616702865],[-71.11739516672085,42.36173916045401],[-71.11738730372642,42.36171352203244],[-71.11738137062068,42.36167508524891],[-71.11737907683452,42.36164649440678],[-71.1173736057784,42.36158244689484],[-71.1173678319273,42.361517484583],[-71.11735868856195,42.36144885139285],[-71.11735421018335,42.36142459806576],[-71.11734123560993,42.36137744827962],[-71.11733637404943,42.36136576978613],[-71.11733058627932,42.36135408821064],[-71.1173232501019,42.36134331617446],[-71.11731013274165,42.36132017656437],[-71.11730221034746,42.36130437087184],[-71.11729367648208,42.36128810669841],[-71.11728054824583,42.36126656775878],[-71.11726738975048,42.361249830848],[-71.1172566851205,42.36123561840422],[-71.11724382113908,42.36122116829964],[-71.11722327775126,42.36120212007719],[-71.1172113066084,42.36119339066354],[-71.11721040669035,42.3611890428829],[-71.11720888285063,42.36118629373609],[-71.11720772009484,42.3611746275472],[-71.11718797940858,42.3611236818923]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000213,"geom:area_square_m":1946723.534622,"geom:bbox":"-71.1381137323,42.356336,-71.1171879794,42.3736210322","geom:latitude":42.363957,"geom:longitude":-71.127777,"iso:country":"US","lbl:latitude":42.359889,"lbl:longitude":-71.131987,"lbl:max_zoom":18,"mps:latitude":42.364027,"mps:longitude":-71.127975,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["North Allston"],"reversegeo:latitude":42.364027,"reversegeo:longitude":-71.127975,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85802869,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1b26a1d59f3503a8b38c588cf77a7f04","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711437,"neighbourhood_id":85802869,"region_id":85688645}],"wof:id":1108711437,"wof:lastmodified":1566624132,"wof:name":"Lower Allston","wof:parent_id":85802869,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891229],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711439.geojson b/fixtures/microhoods/1108711439.geojson new file mode 100644 index 0000000..d75a13b --- /dev/null +++ b/fixtures/microhoods/1108711439.geojson @@ -0,0 +1 @@ +{"id":1108711439,"type":"Feature","bbox":[-71.08869095368476,42.3320142510665,-71.07502311043693,42.34165204368179],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.07502311043693,42.33486708587326],[-71.07598532203667,42.33417184376449],[-71.07931286469648,42.3320142510665],[-71.08094777299816,42.33285840072296],[-71.08135976831333,42.33310559791207],[-71.08180472325371,42.3333637816429],[-71.08276055238491,42.33390761545892],[-71.08356256993176,42.33433059731583],[-71.08402840054374,42.33452399816318],[-71.08453487887556,42.33469864646405],[-71.0862377928449,42.33530015962418],[-71.08656946971735,42.33545285740347],[-71.08688564552338,42.3356329100169],[-71.08731996720608,42.33595660549302],[-71.08869095368476,42.33719049332382],[-71.08769103181658,42.3380126010596],[-71.08765875736,42.33803913488604],[-71.08701843225339,42.33856550034191],[-71.08667937501951,42.33884421092489],[-71.08655552727951,42.33894601459762],[-71.08652908498819,42.33896774980961],[-71.08626290333828,42.33918518979446],[-71.08606051045959,42.33935052031195],[-71.08602628491194,42.33937847811838],[-71.08589663797409,42.33948438263711],[-71.08589660380798,42.33948441132344],[-71.08577459388648,42.33958407717188],[-71.08572112193521,42.33962775578035],[-71.08559858561665,42.3397278516847],[-71.08559289906509,42.3397330402827],[-71.08558666681603,42.33973872567568],[-71.08554494670494,42.33977678912007],[-71.08546682665762,42.3398480618599],[-71.08541914948076,42.33988960501868],[-71.08541149700415,42.3398962738024],[-71.08537661049971,42.33992667242565],[-71.0853061246204,42.33998809097186],[-71.08518382241199,42.3400946594809],[-71.08518157424858,42.34009661940971],[-71.08516252471706,42.34011321779879],[-71.08515497959388,42.34011979242189],[-71.08515336907102,42.34012111454265],[-71.08509834894136,42.3401662808592],[-71.08507550876634,42.34018502985829],[-71.08498311204794,42.340260879148],[-71.08492849675447,42.34030571193516],[-71.08492543683757,42.340308024544],[-71.08490942056783,42.34032228407732],[-71.08487883205514,42.34034951643085],[-71.084878740505,42.34034959802693],[-71.08486649605591,42.34036049957619],[-71.08485027468625,42.34037494202037],[-71.08484358912399,42.34038089402313],[-71.08484345485309,42.34038101327724],[-71.0848431472489,42.3403812867558],[-71.08481045913122,42.34041038952024],[-71.08368231606968,42.341367654341],[-71.08342166837383,42.34156693083571],[-71.08335742300594,42.34161371312485],[-71.08330641242122,42.34165204368179],[-71.0831412015226,42.3415280353842],[-71.08303222304008,42.34146028301461],[-71.08234436217842,42.34101053440045],[-71.0823082689784,42.34098607917011],[-71.08217505994766,42.34089136420106],[-71.08217094593654,42.34088843950374],[-71.08201020504734,42.34077747842941],[-71.08200230573313,42.34077202544619],[-71.08199672060492,42.34076823111288],[-71.08195548633614,42.34074022162797],[-71.08194753692652,42.34073482157601],[-71.0819470705935,42.34073450477786],[-71.08193844469471,42.3407282694946],[-71.08180489571936,42.34063172345608],[-71.08175420579322,42.34059507810495],[-71.08174754497156,42.34059026251509],[-71.0817465171032,42.34058952863833],[-71.0816326551707,42.34050814022074],[-71.08138676172882,42.34033237678096],[-71.08129524118003,42.34024191158363],[-71.08128533681588,42.34023212173886],[-71.08103189724518,42.33998121588732],[-71.08069748726024,42.33965014467535],[-71.08064883373272,42.33960197709625],[-71.08064255854634,42.33959576469197],[-71.08064230658003,42.33959551439169],[-71.0806360121044,42.33958928301053],[-71.0806232870365,42.33957630208204],[-71.08051006588363,42.33943920021472],[-71.08045544129635,42.33938292883148],[-71.08035767084118,42.3392903576739],[-71.08034533551218,42.33927937678693],[-71.08027247929887,42.33921452739203],[-71.08015709482522,42.33911672406909],[-71.08013703090269,42.33909931655133],[-71.08011106812147,42.33907679002575],[-71.0801074146132,42.33907362655618],[-71.07981088759449,42.3388169364105],[-71.07976352144021,42.33877593318163],[-71.07968017566442,42.33870761674063],[-71.07865476015458,42.33786444401839],[-71.0785183562828,42.33775527858747],[-71.07851776007537,42.33775479024315],[-71.07851036061736,42.33774872484619],[-71.07821667192404,42.33751159345325],[-71.07802377622555,42.33735584242138],[-71.07736733905406,42.33682580403444],[-71.07736120723591,42.33682056248899],[-71.07734863352393,42.33680981267042],[-71.07734122757424,42.3368034806853],[-71.07729583383018,42.33676540511554],[-71.07728561668328,42.33675683546339],[-71.07728431345221,42.33675574131593],[-71.07701533921292,42.33652961280353],[-71.07698870168214,42.33650778259821],[-71.07695908102504,42.33648293622819],[-71.07694043991017,42.33646732315631],[-71.07664026352421,42.3362158985936],[-71.07662741588764,42.33620513778192],[-71.0766184972399,42.33619766760823],[-71.07650723832607,42.33610826104963],[-71.07650561858534,42.33610695955984],[-71.07648127663113,42.3360873983283],[-71.07525023651534,42.33510352291028],[-71.07524260130295,42.33509742131474],[-71.07521329136067,42.33506191704556],[-71.0751223815098,42.33495179560104],[-71.07511126228962,42.33493832661539],[-71.07502311043693,42.33486708587326]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000064,"geom:area_square_m":582000.514819,"geom:bbox":"-71.0886909537,42.3320142511,-71.0750231104,42.3416520437","geom:latitude":42.336609,"geom:longitude":-71.0819,"iso:country":"US","lbl:latitude":42.333168,"lbl:longitude":-71.08017,"lbl:max_zoom":18,"mps:latitude":42.336681,"mps:longitude":-71.081796,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":42.336681,"reversegeo:longitude":-71.081796,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85846283,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"040d28129a11d67401091b6fd1cb48d3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711439,"neighbourhood_id":85846283,"region_id":85688645}],"wof:id":1108711439,"wof:lastmodified":1566624132,"wof:name":"Lower Roxbury","wof:parent_id":85846283,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891277],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711441.geojson b/fixtures/microhoods/1108711441.geojson new file mode 100644 index 0000000..ef24c56 --- /dev/null +++ b/fixtures/microhoods/1108711441.geojson @@ -0,0 +1 @@ +{"id":1108711441,"type":"Feature","bbox":[-71.04571771052666,42.36628527476141,-71.0354171658769,42.37639558749954],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.04116166384806,42.37639558749954],[-71.0354171658769,42.37278336433226],[-71.03548,42.372728],[-71.035896,42.37237],[-71.036145,42.372157],[-71.037168,42.371284],[-71.037781,42.37076],[-71.038083,42.370502],[-71.039348,42.369122],[-71.039592,42.368808],[-71.040855,42.367488],[-71.04179169104324,42.36628527476141],[-71.0417951542006,42.36628865016338],[-71.0418058457394,42.36629390633407],[-71.04181542569118,42.36629943356444],[-71.04182613281576,42.36630304136437],[-71.0418368362734,42.36630665274986],[-71.04185382471283,42.36631111113356],[-71.041870446534,42.36631556715419],[-71.04188743972377,42.36631920268678],[-71.04190297457892,42.36632036291328],[-71.04191962576857,42.3663204292299],[-71.04193553641977,42.36632049259492],[-71.04195959487777,42.36631949005113],[-71.04198363864282,42.36632068415123],[-71.04201838555885,42.36632603698994],[-71.04203501326029,42.36632884457921],[-71.04205313601669,42.36633056606689],[-71.04207717859329,42.36633175744184],[-71.04208902664479,42.36633070895844],[-71.04210012072237,42.36633184877797],[-71.0421141705449,42.3663335504402],[-71.04212747187249,42.36633634837514],[-71.04213965400898,42.36633996471836],[-71.04215146356336,42.36634440244218],[-71.0421621555817,42.36634993316989],[-71.04217321742432,42.36635519168046],[-71.04218133035916,42.36635961468705],[-71.04218980628065,42.36636403913783],[-71.04219829180083,42.36636764076118],[-71.0422078881501,42.36637124410431],[-71.04221747963147,42.36637484922775],[-71.04222821137883,42.36637489193995],[-71.04223783231747,42.36637493023026],[-71.0422485640648,42.36637497294054],[-71.04226299960641,42.36637420752461],[-71.04227853647548,42.36637509221964],[-71.04229185094812,42.36637624355751],[-71.04230404226968,42.36637876066578],[-71.0423099549807,42.36637988434824],[-71.0423147588894,42.36638072632897],[-71.0423195513447,42.36638348678175],[-71.04232547201654,42.36638351034082],[-71.04233026752446,42.36638517785327],[-71.04233505755276,42.36638793829575],[-71.04233985669676,42.36638960672264],[-71.0423435383448,42.36639236275449],[-71.04234832834817,42.36639512679749],[-71.04235163727316,42.36639788494725],[-71.04235531294269,42.36640146742111],[-71.0423589965657,42.36640395067251],[-71.04235895089258,42.36641026332367],[-71.04235778969016,42.36641739170046],[-71.04235626889742,42.3664228747171],[-71.04235286024853,42.36643356380112],[-71.04234797493322,42.36644397242112],[-71.04234160656902,42.36645464702747],[-71.04233449764297,42.36646532138764],[-71.04232702805972,42.36647516874642],[-71.04231881669367,42.36648501675417],[-71.0423102405807,42.36649376405598],[-71.0423042742394,42.36650005044642],[-71.04229831505216,42.36650551580053],[-71.04229198041865,42.36651152703666],[-71.04228491284607,42.3665169879794],[-71.0422823209533,42.36651697766509],[-71.0422801005449,42.36651696882904],[-71.04227750390514,42.36651778226103],[-71.04227639430795,42.3665177778454],[-71.04227417389956,42.36651776900924],[-71.04233025897723,42.36654021854454],[-71.0417652249253,42.36725252801791],[-71.04212558818536,42.36741449196973],[-71.04213039093663,42.36741533665393],[-71.04228377596677,42.3673382899437],[-71.04261805444216,42.3671159769096],[-71.04271091887254,42.36706667716162],[-71.04277730412653,42.36704636044614],[-71.04284837534583,42.36699230955329],[-71.04288103471106,42.36697899262548],[-71.04291247583892,42.36698103789328],[-71.04294335743366,42.36700860144298],[-71.0428889051562,42.36706738464323],[-71.04289076907244,42.36711706103601],[-71.04286409955652,42.36717156031825],[-71.04291488647802,42.36726149312847],[-71.04272104876613,42.36750851390617],[-71.0428013473916,42.36755960134602],[-71.04271731732723,42.36766628743763],[-71.04266913157662,42.36772838329895],[-71.0426579345183,42.36774178640488],[-71.04263366873398,42.36777105196469],[-71.04260940536167,42.36780031662853],[-71.04256235600775,42.36785885361668],[-71.04255638360526,42.36786596375953],[-71.04250895473615,42.3679255948685],[-71.04248579964876,42.36795486481412],[-71.04246153735158,42.36798412945039],[-71.0424566804883,42.36799042296121],[-71.04245182483811,42.36799671647666],[-71.04240587887647,42.36805607885266],[-71.04235845930549,42.36811488887098],[-71.04235622451228,42.36811652480846],[-71.04230990256121,42.36817698580308],[-71.04228600794318,42.36820625276488],[-71.04226285265639,42.36823552176349],[-71.04224566308919,42.3682587789579],[-71.04222773969596,42.36828093307543],[-71.04222625139724,42.36828175091718],[-71.0422288373875,42.3682825867745],[-71.0422598230327,42.36829615501123],[-71.04227680608166,42.36830143617139],[-71.04229228738673,42.36830972912371],[-71.04229487461262,42.36831056228355],[-71.0422933724117,42.36831330128872],[-71.04228850955836,42.36832041673267],[-71.04228364559259,42.3683283568372],[-71.04227878154254,42.36833546957507],[-71.04227281500488,42.36834175866201],[-71.04226574205742,42.36834776605653],[-71.04223773100827,42.36838332855598],[-71.04205807859665,42.36861256809529],[-71.04205694423943,42.36861530766144],[-71.04205953026063,42.36861614082169],[-71.04231079418344,42.36871867373889],[-71.04234929801123,42.3687160819593],[-71.04238184718005,42.36871813357715],[-71.04241776144984,42.36871553147222],[-71.04244659831095,42.36871921403271],[-71.0424876154881,42.36872733484549],[-71.04259775696512,42.36859248818974],[-71.04260352185372,42.36861391459563],[-71.04262641992833,42.36862004478989],[-71.04264930215629,42.36862836712135],[-71.04267070765945,42.36863641078918],[-71.0426924683661,42.36864637438196],[-71.04271386197635,42.36865606462379],[-71.04272343885094,42.36866241372584],[-71.04273300490955,42.36866958744927],[-71.04274257111145,42.36867758133606],[-71.04275102996738,42.36868475065641],[-71.04278819447208,42.36871425952739],[-71.04279887612964,42.36872061481507],[-71.04279997553363,42.36872253860204],[-71.04280219480545,42.36872254742322],[-71.04280366280952,42.36872420168816],[-71.04287005707963,42.36865147100569],[-71.04293500514791,42.36867670043247],[-71.04279539918349,42.36884353461314],[-71.04288757312237,42.36889027666043],[-71.04284386769754,42.36894717771023],[-71.04297216590068,42.36901354641701],[-71.04299043253297,42.36899496139785],[-71.04313398864916,42.36904986503915],[-71.04315598023594,42.36902772514183],[-71.0432505064564,42.36905663700379],[-71.04312091668868,42.36921994529181],[-71.04309550721878,42.36925386989653],[-71.04305291454781,42.36931050445431],[-71.0430517802276,42.3693132431296],[-71.04305399049697,42.36931517312743],[-71.04307575820488,42.36932404012047],[-71.04343360874425,42.36947693654827],[-71.04363263358086,42.36922911238268],[-71.04356549355266,42.36920030681198],[-71.04360209194945,42.36915407543156],[-71.04378285413196,42.3692324505724],[-71.04374772266902,42.36928033355659],[-71.04368537402648,42.36925429204368],[-71.0434926297677,42.36950296498948],[-71.0438999863711,42.36966757921897],[-71.0439284079513,42.36967757168576],[-71.04394428900486,42.36968202536239],[-71.0439586924289,42.36968564761332],[-71.04397420913676,42.36968927607671],[-71.04398973298643,42.36969208260231],[-71.04400636878064,42.36969407066957],[-71.04402227677866,42.36969495659628],[-71.04403412467549,42.36969418069798],[-71.04404745328597,42.3696931351794],[-71.04405929997458,42.36969235837338],[-71.0440715216628,42.36969076108855],[-71.04408338341301,42.36968806312276],[-71.04409673939442,42.3696837253495],[-71.044111221163,42.36967664795529],[-71.04412310145321,42.3696712086784],[-71.04414388163543,42.36966333247751],[-71.0441642939518,42.36965545481512],[-71.04418951941433,42.36964650057022],[-71.04419692276142,42.36964652990705],[-71.04420507490326,42.36964491648195],[-71.04421358790235,42.36964495021474],[-71.04422210199415,42.36964415838609],[-71.04423023632746,42.36964501618238],[-71.04423874811253,42.3696450499085],[-71.0442461455368,42.36964590118267],[-71.0442542786696,42.36964675717196],[-71.04426166576518,42.36964870495641],[-71.04427717776022,42.36965315712481],[-71.0442926826148,42.3696584321271],[-71.04430817591017,42.36966480633456],[-71.04432035774046,42.36966924530412],[-71.04433216015026,42.36967478202237],[-71.04434432451457,42.36968114033665],[-71.04435501455966,42.36968721822127],[-71.04436569897355,42.36969357247137],[-71.04437674303134,42.36970157477388],[-71.04438482523557,42.36970983903138],[-71.04438849878457,42.36971342142796],[-71.04439216883489,42.36971782667484],[-71.04439435652132,42.36972222514983],[-71.0443958048372,42.36972662159651],[-71.04439799494584,42.36973102098128],[-71.04439907222198,42.36973568874588],[-71.04440051811032,42.36974008518286],[-71.04439561113267,42.36975351246535],[-71.04438923806113,42.36976501092293],[-71.04438211724077,42.36977733288374],[-71.04432983670972,42.36984325652573],[-71.0442764178025,42.36991247249188],[-71.04421968169558,42.36998002505877],[-71.04416518347512,42.37004566704928],[-71.0441383069022,42.37007766664682],[-71.04411032185574,42.37010966184474],[-71.04406065562563,42.37017175689041],[-71.04402922908169,42.37021882907188],[-71.04401568274429,42.37025005951692],[-71.0440010334476,42.37028018543455],[-71.0439961449257,42.37029086689049],[-71.0439950154721,42.37029360739422],[-71.0439927704223,42.37029716633953],[-71.04399126474337,42.37030072821589],[-71.04399012694167,42.37030428975006],[-71.04399010121232,42.37030785839382],[-71.04399007548949,42.37031142613726],[-71.04399004383409,42.37031581672135],[-71.0439900181372,42.37031938086375],[-71.04398999241435,42.37032294860717],[-71.04399108471632,42.37032569791868],[-71.04399253895045,42.37032927152919],[-71.04399363081713,42.37033174445023],[-71.04399471476525,42.37033531569248],[-71.043996916732,42.37033806940301],[-71.0440031739848,42.37034248491808],[-71.04401016634694,42.37034799989895],[-71.04401604980471,42.37035323679566],[-71.04409646552868,42.37038922949873],[-71.04413003630007,42.37040363032963],[-71.04416471673298,42.37041803824891],[-71.04424991588769,42.3704576158441],[-71.04433729021235,42.37050351571857],[-71.04437305123349,42.3705223158633],[-71.04441029101726,42.37054112275401],[-71.04443056917293,42.37055190570303],[-71.04445344046466,42.37056187605399],[-71.04447595060036,42.37057074571734],[-71.04448076793567,42.37056994012983],[-71.04448557568952,42.37056995916884],[-71.04448928212918,42.37056915098235],[-71.0444941085688,42.37056724977869],[-71.04449892467659,42.37056644598614],[-71.04454853470529,42.37051230728853],[-71.04458022247974,42.37047950648385],[-71.04461045611482,42.37044395223153],[-71.04462982642698,42.37042619329159],[-71.04465030884145,42.37040843604985],[-71.0446540231573,42.37040653223759],[-71.04465736402773,42.37040489613325],[-71.0446610716696,42.37040408794601],[-71.0446658932222,42.37040218851635],[-71.04466960086378,42.37040138032881],[-71.04467552191261,42.37040140376687],[-71.04468033329594,42.37040142281217],[-71.04468625191664,42.37040144624006],[-71.04469255042211,42.37040064470607],[-71.04473684069056,42.37041673621836],[-71.04478001584506,42.37043392075269],[-71.04486597451876,42.37047075771515],[-71.04494048364593,42.37050480433685],[-71.04497884039601,42.37052279169736],[-71.04497993031626,42.37052554098976],[-71.04498100170333,42.37053103518977],[-71.0449809839508,42.37053350281151],[-71.04498094446902,42.37053899081666],[-71.0449809128823,42.37054338140079],[-71.04495044371525,42.3706118637847],[-71.04493465153175,42.37064665239375],[-71.04488486327992,42.37072575916243],[-71.04484428992477,42.37081011504414],[-71.04479786942176,42.37093560987849],[-71.04477702742781,42.37100330834546],[-71.04494842543352,42.37104679345561],[-71.04494355674856,42.37105473184795],[-71.04493866360033,42.37106623888822],[-71.04493970889023,42.37107502354033],[-71.04494224296255,42.37108326490593],[-71.04494588746168,42.37109123787678],[-71.04494696904196,42.37109481000009],[-71.04494805428402,42.37109837943699],[-71.04495061826779,42.37110195742463],[-71.04495280846265,42.37110635679747],[-71.04495537594539,42.37110911103458],[-71.04495868416052,42.37111269286643],[-71.0449612457238,42.37111626994395],[-71.0449671550063,42.37111793814784],[-71.04497305637443,42.37112070647303],[-71.04498044015982,42.37112347886137],[-71.04498524323739,42.37112432252537],[-71.0449863553438,42.37112432692447],[-71.0449889378639,42.37112516000398],[-71.0449900511844,42.37112516440786],[-71.04499115296765,42.37112626621818],[-71.04498022298823,42.37115366558618],[-71.04488392581571,42.37131902598811],[-71.04488391199786,42.37132094624942],[-71.0448816586124,42.37132532804211],[-71.04571771052666,42.37152181683719],[-71.04560835228177,42.37170249507167],[-71.04485684869066,42.37143032868751],[-71.0446744381464,42.37137444969616],[-71.04467107749005,42.37137882710179],[-71.04461827210704,42.37136270366123],[-71.04462053342645,42.37135722265241],[-71.04455592653412,42.37133556430189],[-71.04455480301792,42.37133748106972],[-71.0445533099661,42.37133912178632],[-71.04455218525511,42.37134103584854],[-71.04455217337853,42.37134268513056],[-71.04455105777117,42.37134350357735],[-71.04455104395619,42.37134542203805],[-71.04454992239748,42.37134706692638],[-71.04454843102978,42.3713489795368],[-71.04454730584162,42.37135062261017],[-71.04454618704264,42.37135171563233],[-71.04454506550964,42.37135335691953],[-71.04454247235576,42.37135416861567],[-71.04454024021265,42.37135525993035],[-71.04453764705215,42.37135607252659],[-71.0445354205545,42.37135688567433],[-71.0445328296771,42.37135687541556],[-71.0445306031729,42.37135768946348],[-71.04452690382735,42.37135767481548],[-71.04452430260567,42.37135876376816],[-71.04452207260378,42.37136040066598],[-71.0445183708298,42.3713603860081],[-71.04451613762319,42.37136229928181],[-71.04451353960567,42.37136311185827],[-71.0444989697873,42.3713825364138],[-71.0444615131161,42.3714446781641],[-71.0444247867551,42.37150874671116],[-71.04442477886323,42.37150984233129],[-71.04450264965402,42.37153951183031],[-71.04462151290895,42.37158086996097],[-71.04468978539211,42.37160693439004],[-71.04474848571111,42.37162692445904],[-71.0447665645008,42.37163413169624],[-71.04485254575876,42.37166822466173],[-71.04479427856022,42.37174290711889],[-71.04477374442794,42.37176779536443],[-71.04476179235941,42.37178366606823],[-71.04474720976472,42.37180418805473],[-71.04539160921016,42.37209815730732],[-71.04536232636742,42.37215594183525],[-71.04475517200734,42.37188077831473],[-71.04455252587731,42.37180780809925],[-71.04439798427794,42.37173585092676],[-71.04398199793718,42.3717912772689],[-71.04389483259037,42.37187023811611],[-71.0439326987196,42.37195600120715],[-71.04514712011145,42.37249178908516],[-71.04506947329043,42.37258505711792],[-71.04412427577188,42.37217848369692],[-71.04390962862868,42.37248688917572],[-71.04482418578769,42.37293505704577],[-71.0446692112807,42.3731287241586],[-71.04399113923604,42.3728329699484],[-71.04363529386285,42.37286091986608],[-71.04289592894634,42.37254707944902],[-71.04269490505175,42.37245545033471],[-71.04258937414801,42.37256616778286],[-71.04257496530941,42.37256254264273],[-71.04257269308134,42.37256966929495],[-71.04247442962418,42.37269852394092],[-71.04249103806279,42.37270490012097],[-71.0423868823841,42.37283016701217],[-71.0423499827223,42.37281492597525],[-71.04233883710916,42.37282091806738],[-71.04232918020385,42.3728255467425],[-71.04231844030934,42.37282714973932],[-71.04231361483295,42.37282905265609],[-71.04230768164838,42.37283067477665],[-71.04230173456043,42.37283421805751],[-71.04229541715785,42.37283776076486],[-71.04229057624353,42.37284213221061],[-71.042284622432,42.37284677201532],[-71.04227977908799,42.37285114345093],[-71.04227120806155,42.37285906789712],[-71.04226411948387,42.37286699734138],[-71.04225702296826,42.37287602330512],[-71.04225066429908,42.3728856022809],[-71.04224578597697,42.37289463797111],[-71.04224238291609,42.3729045041961],[-71.04223861639673,42.3729140934863],[-71.04223859058054,42.372917660327],[-71.04223856475132,42.37292122896819],[-71.04223742436245,42.37292479227377],[-71.04223592096993,42.37292835143398],[-71.04223479139948,42.3729310910185],[-71.04223365465262,42.37293465433854],[-71.04223252507545,42.37293739482337],[-71.04222990831049,42.37294095225364],[-71.04222766185327,42.37294451115754],[-71.04222283958627,42.37294613679435],[-71.04221801411096,42.37294803790654],[-71.04221318939568,42.3729496662341],[-71.04221171180582,42.3729496603538],[-71.04221060209579,42.37294965593753],[-71.04220948752926,42.37294965150191],[-71.04220837429148,42.37295046993536],[-71.04220689427339,42.37295046404533],[-71.04220578456334,42.372950459629],[-71.0422046748533,42.37295045521268],[-71.0422035488154,42.37295237104691],[-71.04220206282817,42.37295318979742],[-71.04220095311807,42.37295318538106],[-71.042200947162,42.37295400822113],[-71.04219982952131,42.3729550994244],[-71.04219871981117,42.37295509500802],[-71.04219871385507,42.37295591784809],[-71.04219870788594,42.37295674248865],[-71.04219981165305,42.3729575679446],[-71.0421998036964,42.37295866716529],[-71.04220090148793,42.37296031816206],[-71.04220200524209,42.3729611454185],[-71.04220347731035,42.37296224962903],[-71.04220458349285,42.37296307689513],[-71.04220457753684,42.37296389973518],[-71.0422056872471,42.3729639041515],[-71.0422082630633,42.3729658365186],[-71.04221046704437,42.37296831388105],[-71.04221156284235,42.37297024035809],[-71.04221302852085,42.37297189191851],[-71.04221411957717,42.37297464124043],[-71.04221522333175,42.37297546849673],[-71.04221630721825,42.37297904065384],[-71.04221629332557,42.37298096001381],[-71.04221775591111,42.37298370991395],[-71.04221773803701,42.37298617933439],[-71.04221772413784,42.37298809959464],[-71.04221770425676,42.372990846296],[-71.04221620394834,42.37299330801631],[-71.0422161900361,42.37299523007707],[-71.04221506047664,42.3729979678609],[-71.0422139388344,42.37299961182558],[-71.04221280806716,42.37300234870421],[-71.04221131853814,42.37300399210511],[-71.04221019494078,42.37300590614853],[-71.04220796115895,42.37300754568714],[-71.04220646129053,42.37301028199715],[-71.04220422994324,42.37301192064512],[-71.04220162388464,42.37301383058927],[-71.04219939850623,42.37301464459656],[-71.04219680281928,42.37301545713007],[-71.04219456705579,42.3730173703483],[-71.04219085570122,42.37301900130529],[-71.04218862710775,42.37302009168818],[-71.04218602777806,42.37302090420696],[-71.04218232237946,42.37302171232362],[-71.04217899324556,42.37302169907392],[-71.04217529137495,42.37302168434064],[-71.04217270285801,42.37302167403838],[-71.04216937482407,42.373020837929],[-71.04216567781005,42.37302082321474],[-71.04216198189603,42.37301998564097],[-71.04215977043086,42.37301887758676],[-71.04215607451707,42.37301804001282],[-71.04215386700798,42.37301638549908],[-71.0421475928497,42.37301361554687],[-71.04214167277138,42.37301359198356],[-71.04213575743587,42.37301274557502],[-71.04212984408836,42.37301162458608],[-71.04212356088607,42.37301077491214],[-71.042118749305,42.37301075575992],[-71.04211541420149,42.37301156714891],[-71.04211060262037,42.37301154799633],[-71.04210577713668,42.37301344910379],[-71.04210096434124,42.37301342994598],[-71.042097258942,42.37301423805992],[-71.04209243587287,42.37301614097698],[-71.04209131060435,42.37301778222515],[-71.04208871613,42.37301859476106],[-71.04208759846014,42.37301968956429],[-71.0420864708762,42.37302215366694],[-71.0420849769402,42.37302406983608],[-71.04208385532019,42.37302571019844],[-71.04208272925773,42.37302762873224],[-71.042082717349,42.37302927351207],[-71.0420815877636,42.37303201399533],[-71.04208157387333,42.37303393245499],[-71.042081561932,42.37303558173614],[-71.04208154804171,42.37303750019582],[-71.04208153016882,42.37303996871594],[-71.04208151625247,42.37304189077665],[-71.0420815043307,42.37304353735701],[-71.04208149042086,42.37304545851746],[-71.04208258821731,42.37304710861508],[-71.04208368644105,42.37304903510295],[-71.04208477627897,42.37305178442119],[-71.04208736005367,42.37305261757032],[-71.04208955962324,42.3730553686052],[-71.04209102650167,42.3730570219725],[-71.04209323566484,42.37305895108209],[-71.04209581944001,42.37305978423099],[-71.04209913113745,42.37306254149323],[-71.04210171965605,42.37306255179715],[-71.04210392715885,42.37306420721214],[-71.04210762306161,42.37306504658829],[-71.04211131103233,42.37306698158394],[-71.04211499303304,42.37306974122003],[-71.04211720054296,42.37307139573449],[-71.04212089050874,42.37307305524948],[-71.04212309006094,42.37307580898449],[-71.04212566113628,42.37307856419827],[-71.04212675219716,42.37308131262069],[-71.04212784998893,42.37308296361809],[-71.04212930771646,42.37308571349998],[-71.04213039757656,42.37308846011698],[-71.04213149182026,42.37309093666484],[-71.04213146600448,42.37309450260512],[-71.04213255828653,42.37309725013202],[-71.04213253841473,42.37309999503275],[-71.04213251854294,42.37310273993349],[-71.04213138853103,42.3731052040269],[-71.04213136866571,42.37310794802735],[-71.04213023665272,42.37311068850135],[-71.04212910708749,42.37311342628424],[-71.04212761160315,42.37311589162375],[-71.04212648202467,42.37311863120713],[-71.04212423788957,42.37312136455353],[-71.04212274837501,42.37312300525244],[-71.04212050908306,42.37312574041859],[-71.04211789704705,42.37312847500132],[-71.04211566570633,42.37313011184699],[-71.04211305962716,42.37313202358963],[-71.04210971857293,42.37313365601796],[-71.04210711845074,42.37313474492041],[-71.04210340465882,42.37313637586485],[-71.04210006835386,42.37313718454777],[-71.04209636095935,42.37313826724175],[-71.04209266151015,42.37313825251548],[-71.0420649403076,42.37313347776779],[-71.04203758622245,42.37312897816263],[-71.04197627266856,42.37311281784545],[-71.04195462482798,42.37313770295233],[-71.04199037348543,42.37315815130228],[-71.04198916640264,42.37317159230579],[-71.04201793372323,42.37318515535205],[-71.04206698047399,42.37320922176374],[-71.04208848877761,42.3732032709495],[-71.04210443613731,42.37319867093564],[-71.04212110824965,42.37319626510666],[-71.04213071707169,42.37319795268218],[-71.04213921423106,42.37319990501839],[-71.04214771456031,42.37320158728004],[-71.04215584140469,42.37320353904142],[-71.04216322961169,42.37320521417467],[-71.04217025036529,42.37320716423353],[-71.04217874111713,42.37320966661763],[-71.04218575944341,42.37321161666588],[-71.04219202523856,42.37321520944623],[-71.04219903043953,42.37321880516888],[-71.04220492592647,42.37322239647477],[-71.04221118334607,42.3732268111842],[-71.04221707884747,42.3732304006889],[-71.04217709630556,42.37328375021635],[-71.04215505478253,42.37331220073614],[-71.04213337758,42.37334147736603],[-71.04211990834708,42.37336200344855],[-71.0421079047646,42.37338418469204],[-71.04209443982393,42.3734036124366],[-71.04208847157571,42.37340990150189],[-71.04208472166809,42.37341702136097],[-71.04207986437616,42.37342331124709],[-71.04207869703626,42.37343126515049],[-71.04207716291461,42.3734383947301],[-71.04207710529282,42.37344635305102],[-71.04207706755184,42.37345156557119],[-71.04207592052562,42.37345704916377],[-71.04207476510663,42.3734633564869],[-71.04207361642563,42.37346856548486],[-71.04207098452494,42.37347404136575],[-71.04206725205158,42.37347841721423],[-71.04206389110298,42.3734827945416],[-71.04205904648083,42.37348716596246],[-71.0420553120046,42.37349181819114],[-71.04205047223773,42.37349618963093],[-71.04204563479247,42.37349973731582],[-71.04203968763343,42.37350327968235],[-71.04203374168785,42.37350682205334],[-71.04202742894081,42.37350954280091],[-71.0420203787926,42.3735119833235],[-71.04200107158744,42.37352096335649],[-71.04198396472616,42.37353242073818],[-71.04197690186821,42.37353678332344],[-71.04196835656867,42.37354113730468],[-71.04195759102643,42.37354576063381],[-71.04194572250259,42.37354928121798],[-71.04193349405544,42.37355170111549],[-71.04189975318448,42.37356062185457],[-71.0418058984186,42.3735915312796],[-71.04176732080174,42.37360372686992],[-71.04172983300883,42.37361867086825],[-71.04169974227906,42.3736347408764],[-71.04167185540373,42.37365246628517],[-71.0416078573915,42.37370023086621],[-71.04153674098947,42.37375949523539],[-71.04147973405128,42.37381277846667],[-71.04145549248032,42.37383847510213],[-71.04143493643194,42.37386611034076],[-71.04141919999701,42.37389266373624],[-71.0414034687385,42.37391866887446],[-71.04139485169586,42.37393290409294],[-71.04138402314575,42.3739460339426],[-71.04137282716222,42.37395943421345],[-71.041364653279,42.37396379143121],[-71.0413572108371,42.37396925081681],[-71.04134903936679,42.37397360984366],[-71.04132487529218,42.37398860503158],[-71.04131146647374,42.37400007615793],[-71.04129805454107,42.37401264562215],[-71.04127271259227,42.37403669300384],[-71.04125110760224,42.37405609088839],[-71.04123024922306,42.37407466528168],[-71.04119297728603,42.37411101342265],[-71.04118662783536,42.37411894754791],[-71.04118175888459,42.37412715946492],[-71.04117688108538,42.37413592142263],[-71.04117462977105,42.3741403031496],[-71.04117348145299,42.37414578492696],[-71.04117344363058,42.37415099834625],[-71.04117192254276,42.37415648223786],[-71.04117188472675,42.37416169475688],[-71.04117332617277,42.37416718866436],[-71.04117329432643,42.37417157834359],[-71.04117437099092,42.3741759733445],[-71.04117545727405,42.37417954461988],[-71.04117653071953,42.37418421599645],[-71.0411779753792,42.37418943442839],[-71.04118017492917,42.37419218818074],[-71.0411827388383,42.3741957644493],[-71.04118604457945,42.37419934547718],[-71.04118861643093,42.37420182702661],[-71.04119228453995,42.37420650515058],[-71.04119560058331,42.37420816410355],[-71.04120186884921,42.37421175694671],[-71.04120776437209,42.3742153483029],[-71.04121736062197,42.37421895441815],[-71.04122584350473,42.37422255519207],[-71.04123543975021,42.37422616220611],[-71.04124503246948,42.37423059026823],[-71.04125424206431,42.37423611335295],[-71.04126271110576,42.3742424599485],[-71.04128186219125,42.37425488197264],[-71.04129880937028,42.37426565307946],[-71.04130691121364,42.3742708998556],[-71.04131538381752,42.37427642179721],[-71.04132605322036,42.37428524575229],[-71.04133560969368,42.37429433895657],[-71.04134404804688,42.37430424966523],[-71.04135138226987,42.37431388588448],[-71.04135723205806,42.37432378627131],[-71.04136197087357,42.37433368582956],[-71.04136671048066,42.37434330900224],[-71.0413725602805,42.37435320848797],[-71.04137952941977,42.3743622904727],[-71.04138797451307,42.37437110645418],[-71.04139642922439,42.37437909870946],[-71.04140599290923,42.37438736817251],[-71.04141667063378,42.37439454642492],[-71.04142884124614,42.37440063047519],[-71.04143952736997,42.37440698589538],[-71.04145021228182,42.37441334130973],[-71.04145720808287,42.37441858096528],[-71.04146456258323,42.37442492220251],[-71.0414704450018,42.37443015831946],[-71.04147520617859,42.37443731208245],[-71.04148108183755,42.37444364832423],[-71.04148473562282,42.37444997210843],[-71.04148838341727,42.3744571223333],[-71.04149055601569,42.37446426667816],[-71.04149197595103,42.37447222998624],[-71.04149303396999,42.37447936808796],[-71.04149297628027,42.37448732550642],[-71.04149179491885,42.3744972005617],[-71.04148913108735,42.3745070679075],[-71.04148418056678,42.37452653221501],[-71.0414839796375,42.3745542467896],[-71.04148626706292,42.37459596356298],[-71.0414881821501,42.37463795794121],[-71.0414901994511,42.37471726967527],[-71.04149114208711,42.37474032351295],[-71.04148999255837,42.37474580708837],[-71.0414899547617,42.37475102050703],[-71.04148992094638,42.37475568476577],[-71.04149097896331,42.37476282376725],[-71.04149464910482,42.37476722910156],[-71.04149682282336,42.37477355058675],[-71.04150049297242,42.37477795502055],[-71.04150416190134,42.37478236034966],[-71.04150893581534,42.37478759384648],[-71.04151371129605,42.37479227637294],[-71.04152917020382,42.37480386437554],[-71.04154721296352,42.37481628463668],[-71.04155790162386,42.37482263645391],[-71.04163096220036,42.37485229049433],[-71.0416966003306,42.37488548095867],[-71.04175520841983,42.37491782051757],[-71.04178174983863,42.37493219491019],[-71.04180681837374,42.37494574146684],[-71.04182857040064,42.37495735179327],[-71.04184995684273,42.37496814049694],[-71.04186432401745,42.37497725191422],[-71.04187868841952,42.37498691429503],[-71.04189045981754,42.3749968400354],[-71.04189780724764,42.37500400497917],[-71.04190368302766,42.37501033759751],[-71.04190844307641,42.37501749223708],[-71.0419132043469,42.37502464598099],[-71.041916846263,42.37503261903101],[-71.04192627452238,42.37505927359472],[-71.04193788848924,42.37509060305439],[-71.04193669650031,42.37510212109622],[-71.04193549532874,42.37511473925358],[-71.04193282325039,42.37512625410256],[-71.041916950328,42.37517146908859],[-71.04189356021088,42.37523311680567],[-71.04187893215817,42.37525967557051],[-71.04187069373737,42.37527309126567],[-71.04186429613046,42.37528733355347],[-71.04186090448665,42.37529610055622],[-71.041858244205,42.37530514595972],[-71.0418559575447,42.37531474292719],[-71.0418570533921,42.37531666670577],[-71.04185814282003,42.37531914143515],[-71.04185923755698,42.37532188897291],[-71.04186069775929,42.37532463796621],[-71.04186178762673,42.37532738728515],[-71.04186872821838,42.37533976417834],[-71.04187820861765,42.37535955965657],[-71.04187815694912,42.37536669243353],[-71.04187809930707,42.3753746498506],[-71.04187693069161,42.3753826037436],[-71.04187575060062,42.37539247700509],[-71.04186969390231,42.37541111495678],[-71.04186325852142,42.37543056976182],[-71.04185234797464,42.37545549940129],[-71.04183922146915,42.37547959374959],[-71.04182949577142,42.37549382458054],[-71.04181718256181,42.37550722134117],[-71.04179552201208,42.3755345767479],[-71.04175284674315,42.37560136298459],[-71.04193638263428,42.37565642543363],[-71.04213760719259,42.37572226331737],[-71.04231521273047,42.37577894818082],[-71.0423318326636,42.37578367779522],[-71.04230004059728,42.37588069238272],[-71.04227285519168,42.37595522439215],[-71.04226948496874,42.37596069913763],[-71.04226574520567,42.37596589602425],[-71.04226200828528,42.375971371111],[-71.0422571647004,42.37597574254255],[-71.04225493557593,42.37597655653588],[-71.04225344280896,42.37597847000996],[-71.04225122328259,42.37597846117821],[-71.04225010754415,42.37597928230259],[-71.04224750930784,42.37598009482703],[-71.04224639954464,42.37598009041111],[-71.0422441720815,42.37598117809839],[-71.04224157980087,42.37598116778319],[-71.04223936027441,42.37598115895122],[-71.04223787775702,42.37598115305194],[-71.0422356582305,42.37598114421989],[-71.04223306594987,42.3759811339045],[-71.04222974581138,42.37598002414195],[-71.04139776016329,42.37582880388425],[-71.04127650067818,42.37581048390613],[-71.0412630832755,42.37587464164661],[-71.04123689582512,42.37601530805252],[-71.04121534404366,42.37612937682191],[-71.04120290090954,42.37621219870567],[-71.04118917628224,42.37626730011067],[-71.04118911258311,42.37627608036514],[-71.04117927393145,42.37630567590372],[-71.04117808773155,42.37631637379593],[-71.04116166384806,42.37639558749954]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000043,"geom:area_square_m":389341.010017,"geom:bbox":"-71.0457177105,42.3662852748,-71.0354171659,42.3763955875","geom:latitude":42.371629,"geom:longitude":-71.040567,"iso:country":"US","lbl:latitude":42.368724,"lbl:longitude":-71.039488,"lbl:max_zoom":18,"mps:latitude":42.371186,"mps:longitude":-71.040648,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Maverick Square"],"name:eng_x_variant":["Maverick Sq"],"reversegeo:latitude":42.371186,"reversegeo:longitude":-71.040648,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815995,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6794181"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f58836eafdca93b72d0e5e363d581137","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711441,"neighbourhood_id":85815995,"region_id":85688645}],"wof:id":1108711441,"wof:lastmodified":1566624133,"wof:name":"Maverick Sq","wof:parent_id":85815995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891279],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711925.geojson b/fixtures/microhoods/1108711925.geojson new file mode 100644 index 0000000..00f0872 --- /dev/null +++ b/fixtures/microhoods/1108711925.geojson @@ -0,0 +1 @@ +{"id":1108711925,"type":"Feature","bbox":[-71.137621,42.26936411806565,-71.118911,42.287211],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.13351207370496,42.274430154152],[-71.1357083961563,42.27587142663593],[-71.13507197572622,42.27641471236893],[-71.13464404939688,42.276780015333],[-71.136998,42.278323],[-71.137065,42.278794],[-71.137118,42.279599],[-71.137192,42.280377],[-71.137227,42.280627],[-71.137227,42.280696],[-71.137246,42.281067],[-71.137294,42.281523],[-71.137283,42.281662],[-71.137361,42.282432],[-71.137381,42.282674],[-71.137475,42.28366],[-71.137501,42.284329],[-71.137589,42.285367],[-71.137615,42.285847],[-71.137621,42.286052],[-71.13757,42.286143],[-71.137424,42.286251],[-71.137003,42.286261],[-71.135228,42.286302],[-71.134232,42.286314],[-71.133851,42.286325],[-71.133382,42.286351],[-71.133059,42.286373],[-71.132256,42.286463],[-71.131831,42.286528],[-71.131664,42.286572],[-71.131174,42.286699],[-71.130949,42.286781],[-71.130563,42.286899],[-71.130056,42.287074],[-71.129702,42.28718],[-71.129555,42.287211],[-71.128128,42.286448],[-71.127436,42.286003],[-71.127265,42.285892],[-71.126656,42.285515],[-71.126098,42.285175],[-71.125686,42.284911],[-71.125127,42.28449],[-71.124761,42.284186],[-71.124495,42.283906],[-71.124368,42.283702],[-71.124247,42.28345],[-71.124162,42.283213],[-71.124041,42.282998],[-71.123976,42.282933],[-71.123762,42.282702],[-71.123542,42.282538],[-71.122965,42.282163],[-71.122433,42.281826],[-71.122013,42.281546],[-71.121321,42.281091],[-71.12107,42.280926],[-71.120675,42.280696],[-71.119712,42.280288],[-71.118911,42.279949],[-71.119047,42.279345],[-71.119176,42.278637],[-71.119405,42.277431],[-71.119534,42.276868],[-71.119669,42.276248],[-71.119841,42.27529],[-71.119916,42.274751],[-71.119936,42.27461],[-71.120069,42.273238],[-71.12015680051184,42.27258956260327],[-71.12027841790895,42.27142464842641],[-71.12031586685215,42.27115339722474],[-71.12037417080603,42.27098863627161],[-71.12048338831217,42.27069633812037],[-71.12060018419527,42.27033489002343],[-71.12065628502695,42.27034326001027],[-71.12097078973682,42.27053164810491],[-71.1213203377147,42.27079924528597],[-71.1213931687231,42.27087411790884],[-71.12168097195338,42.27106255374022],[-71.12185106997846,42.27117392155009],[-71.12184717788786,42.27112026142618],[-71.12190178523838,42.27098803442478],[-71.12201104657689,42.27100779203717],[-71.12201726642566,42.27095475849899],[-71.12214005134032,42.2704082720073],[-71.1219278825894,42.27037749007228],[-71.12214684656065,42.26936411806565],[-71.1225197866404,42.26941854258358],[-71.12239257503575,42.27002220052928],[-71.12259027717164,42.27004475390762],[-71.12470188999613,42.27028671355629],[-71.12476268332011,42.27028368551812],[-71.12485094332746,42.27123888381288],[-71.12482407367807,42.27130948608677],[-71.12489472327822,42.27133592650462],[-71.12522377084821,42.27141641925066],[-71.12523615388858,42.27137865950888],[-71.12558981624083,42.2714515240239],[-71.12571653203626,42.27151205033748],[-71.12603127534142,42.27158119713236],[-71.12610872691955,42.2716132750421],[-71.12592656722312,42.27200445346737],[-71.12574734036883,42.27233854028933],[-71.12566364121143,42.27247431507008],[-71.12555022588188,42.27257016708048],[-71.12572827873186,42.27248267618023],[-71.12637716166857,42.27215914109539],[-71.12651460459686,42.27209088328475],[-71.12659547750106,42.2721728019843],[-71.12665777013348,42.27223592040921],[-71.12690977451678,42.27209079924898],[-71.12725672928872,42.27199475698451],[-71.12739754630685,42.27195463455126],[-71.12760296838418,42.27190191373244],[-71.12786708093122,42.27195296265007],[-71.12794575837961,42.27196148504547],[-71.1282650716879,42.2712392097955],[-71.12841131596585,42.27091532439028],[-71.12845615868109,42.27087339018215],[-71.12883927336301,42.27067295737621],[-71.12948439724916,42.27033793261754],[-71.12998068222267,42.27008144713625],[-71.13015944144513,42.27000400983481],[-71.13036499600344,42.27038269742562],[-71.130428337913,42.27036727921137],[-71.13074220791532,42.27027711057961],[-71.1308661313533,42.27052084392525],[-71.13099614221423,42.27077684891285],[-71.13152977171816,42.27064004696768],[-71.13161021913876,42.27062082608277],[-71.1317312784883,42.27087978781513],[-71.13190768682823,42.27117691692087],[-71.13187590664208,42.27131290222019],[-71.13175656686771,42.27201597164602],[-71.13167301220646,42.27225282107904],[-71.13156997067864,42.27238498279308],[-71.13149929052551,42.27245355990271],[-71.13115450956604,42.27269805763387],[-71.13095812304347,42.27283249203557],[-71.13101556848454,42.27287472887147],[-71.13115097761539,42.27295987965969],[-71.13128219201157,42.27304099426438],[-71.1313314369554,42.27307241717963],[-71.13134932742186,42.2730838328314],[-71.13136746250389,42.27309508541035],[-71.13150725889804,42.27318182898524],[-71.1316442701357,42.2732679134356],[-71.1318028227119,42.27336745248736],[-71.13198152851467,42.2734784096179],[-71.1321397801785,42.27357775996975],[-71.13232166809304,42.27369143486612],[-71.13233650435266,42.27370070776617],[-71.13252561708559,42.27381809310361],[-71.13273239525839,42.27394639407006],[-71.13292843713154,42.27406802871378],[-71.13307027554366,42.27415603910679],[-71.1332121156091,42.27424404122443],[-71.13335394394095,42.27433204402695],[-71.13351207370496,42.274430154152]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000221,"geom:area_square_m":2023867.680297,"geom:bbox":"-71.137621,42.2693641181,-71.118911,42.287211","geom:latitude":42.278671,"geom:longitude":-71.128422,"iso:country":"US","lbl:latitude":42.278754,"lbl:longitude":-71.128599,"lbl:max_zoom":18,"mps:latitude":42.278754,"mps:longitude":-71.128599,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.278754,"reversegeo:longitude":-71.128599,"src:geom":"mz","wof:belongsto":[85846101,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0b978f4fc26dffb4cc0574ba53aa34b6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711925,"neighbourhood_id":85846101,"region_id":85688645}],"wof:id":1108711925,"wof:lastmodified":1566624126,"wof:name":"Metropolitan Hill","wof:parent_id":85846101,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524045],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711927.geojson b/fixtures/microhoods/1108711927.geojson new file mode 100644 index 0000000..edb3f8c --- /dev/null +++ b/fixtures/microhoods/1108711927.geojson @@ -0,0 +1 @@ +{"id":1108711927,"type":"Feature","bbox":[-71.0780039164175,42.29966566606019,-71.07144105847172,42.30519801410824],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.07671010039235,42.30519801410824],[-71.07621784550336,42.30504450764091],[-71.07605110081913,42.30501762655114],[-71.07587068228437,42.30500330942397],[-71.07551149285963,42.30500723606071],[-71.075110767308,42.30500407749925],[-71.07455426795005,42.30497091387313],[-71.07412256953404,42.30491060788687],[-71.07358165681048,42.30481234971415],[-71.07313948921076,42.30469374314929],[-71.0727716305993,42.30455971857544],[-71.07261249287195,42.304472640817],[-71.0724845441044,42.30439509568174],[-71.07225697577006,42.30420300867948],[-71.0718306474199,42.30379427816145],[-71.07144105847172,42.30336818133477],[-71.07146758343212,42.30307274871905],[-71.0715234075185,42.30264162168915],[-71.07156556922577,42.30244428994567],[-71.07162024654103,42.30223644057755],[-71.07166371901863,42.3021372978026],[-71.07176907969207,42.30201370442172],[-71.07188604645441,42.30187102136322],[-71.07194755985955,42.30170955909328],[-71.07198066656278,42.30149904102905],[-71.07200093415662,42.3011181991704],[-71.07197672058811,42.3007279074122],[-71.0719862393865,42.30048966752201],[-71.07203582603151,42.30027709034211],[-71.07212943648582,42.30011306655202],[-71.07226194814123,42.29995512616],[-71.0725990555296,42.29971290082469],[-71.07268806831706,42.29966566606019],[-71.07276786665398,42.29975671292251],[-71.07318876328301,42.3001676701409],[-71.07373400623894,42.30065971213816],[-71.0746841246284,42.30133120551942],[-71.0761789199238,42.30226622045275],[-71.07683037463194,42.30271298546501],[-71.07734638316627,42.30318966803369],[-71.0780039164175,42.30386143968718],[-71.07787203487685,42.30403123600297],[-71.07763974417949,42.30430654349614],[-71.07742896188005,42.30453883419349],[-71.07729553782475,42.30467430034678],[-71.0771708611052,42.30479263328876],[-71.07671010039235,42.30519801410824]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":185324.947313,"geom:bbox":"-71.0780039164,42.2996656661,-71.0714410585,42.3051980141","geom:latitude":42.302945,"geom:longitude":-71.07429,"iso:country":"US","lbl:latitude":42.303163,"lbl:longitude":-71.0731,"lbl:max_zoom":18,"mps:latitude":42.303121,"mps:longitude":-71.07424,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Mt Bowdoin","Mt. Bowdoin"],"reversegeo:latitude":42.303121,"reversegeo:longitude":-71.07424,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cb05cc342611d49138cbe7bd462bb485","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711927,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711927,"wof:lastmodified":1566624126,"wof:name":"Mount Bowdoin","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85835473],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711929.geojson b/fixtures/microhoods/1108711929.geojson new file mode 100644 index 0000000..4898fea --- /dev/null +++ b/fixtures/microhoods/1108711929.geojson @@ -0,0 +1 @@ +{"id":1108711929,"type":"Feature","bbox":[-71.07144105847172,42.30102222705914,-71.05594351626797,42.30831286759728],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0605461507069,42.30753711605056],[-71.06014960949008,42.30760481530241],[-71.0598409472184,42.3076191023267],[-71.05925330804641,42.30762033701697],[-71.05852152636874,42.30757350930875],[-71.05842705962797,42.30756053480728],[-71.05832566125521,42.30752678717302],[-71.05817320529825,42.30743073565402],[-71.05793882670622,42.30722142256446],[-71.05769936488998,42.30695066218916],[-71.05763521538621,42.306857349347],[-71.05758715613574,42.30674007629209],[-71.05756826926255,42.30662284279697],[-71.05756423400611,42.30649741513232],[-71.05758264205762,42.30625019768999],[-71.05760565652297,42.30594883891815],[-71.05759604954713,42.30585010583169],[-71.05757688944772,42.30574381006613],[-71.05753984035364,42.30566027931538],[-71.05747694206332,42.30555839766584],[-71.05730009511554,42.3053657668131],[-71.05716385617438,42.30525827595558],[-71.05701782075165,42.3051579858033],[-71.05665415558867,42.30492319803955],[-71.05594351626797,42.30449787448544],[-71.05940843591766,42.30308337661998],[-71.05955370506669,42.30244817492346],[-71.06089717613621,42.30203998116124],[-71.06318546323129,42.30140475134593],[-71.06349524828677,42.30198862403742],[-71.06738739361748,42.30102222705914],[-71.07144105847172,42.30336818133477],[-71.07139542870759,42.30346986606095],[-71.07132861286594,42.30355254031534],[-71.07123776876176,42.30362553668424],[-71.07112562702281,42.30368948931419],[-71.07094384053542,42.3037492259482],[-71.07071513247742,42.30380612196745],[-71.07028860455993,42.30394648637122],[-71.07005122194057,42.30405072894467],[-71.06984972300195,42.30415972438995],[-71.06941325673394,42.30445844456636],[-71.06842924756569,42.305134940864],[-71.0673268420115,42.30596196289716],[-71.066523079562,42.30666568890994],[-71.06499730141005,42.30809049658141],[-71.06473900803714,42.30809746553959],[-71.06451519635777,42.30811684510193],[-71.06432606238576,42.30815615858708],[-71.06387369441282,42.30831286759728],[-71.0636478951546,42.30806449102866],[-71.06353893288428,42.30797303582744],[-71.0634189927517,42.30788383307411],[-71.06326671269522,42.30778532118982],[-71.0630403950251,42.30767363404179],[-71.06285637727639,42.30760042611854],[-71.06263718302692,42.30755595783812],[-71.06245524573828,42.30753865367733],[-71.06206977769075,42.30752954963098],[-71.06131316863276,42.30752022697708],[-71.06096257776625,42.30750546228274],[-71.06079287345058,42.30751091574301],[-71.0605461507069,42.30753711605056]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000064,"geom:area_square_m":589003.206894,"geom:bbox":"-71.0714410585,42.3010222271,-71.0559435163,42.3083128676","geom:latitude":42.304537,"geom:longitude":-71.063533,"iso:country":"US","lbl:latitude":42.307285,"lbl:longitude":-71.060818,"lbl:max_zoom":18,"mps:latitude":42.305048,"mps:longitude":-71.064062,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Meeting House Hl"],"reversegeo:latitude":42.305048,"reversegeo:longitude":-71.064062,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"90c06add5b5a45f694607a79cf76a691","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711929,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711929,"wof:lastmodified":1566624126,"wof:name":"Meeting House Hill","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85833697],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711931.geojson b/fixtures/microhoods/1108711931.geojson new file mode 100644 index 0000000..071a54d --- /dev/null +++ b/fixtures/microhoods/1108711931.geojson @@ -0,0 +1 @@ +{"id":1108711931,"type":"Feature","bbox":[-71.07671010039235,42.30336818133477,-71.06499730141005,42.31188610291728],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.07671010039235,42.30519801410824],[-71.07627611175242,42.30557984065201],[-71.07522220025517,42.30652621015975],[-71.07382845607103,42.30781671403395],[-71.07365208720819,42.30803825053241],[-71.0734757183454,42.30827269206951],[-71.0733208578805,42.30847056933022],[-71.07321684500143,42.30864219122605],[-71.07312082978001,42.30884481545374],[-71.07160018604824,42.31188610291728],[-71.07092283484586,42.31161312343244],[-71.0701166273824,42.31130982398078],[-71.0695548268089,42.31106964128781],[-71.06918675485313,42.31091175542394],[-71.06883248625498,42.31079416946731],[-71.06859149322878,42.31072830148926],[-71.06839544649037,42.31065466288951],[-71.0682366438617,42.31057708244128],[-71.06807812862355,42.3104747293064],[-71.06780918419413,42.31028670617542],[-71.06754352636129,42.31011875777327],[-71.06730372833822,42.30997513065358],[-71.06706224609367,42.30983131589221],[-71.06685944392883,42.30968760222208],[-71.06665198367756,42.3095101789386],[-71.06530582927813,42.30821887409618],[-71.06523685518519,42.30816510930604],[-71.06514869194764,42.30811613787572],[-71.06508044960256,42.3080999041096],[-71.06499730141005,42.30809049658141],[-71.066523079562,42.30666568890994],[-71.0673268420115,42.30596196289716],[-71.06842924756569,42.305134940864],[-71.06941325673394,42.30445844456636],[-71.06984972300195,42.30415972438995],[-71.07005122194057,42.30405072894467],[-71.07028860455993,42.30394648637122],[-71.07071513247742,42.30380612196745],[-71.07094384053542,42.3037492259482],[-71.07112562702281,42.30368948931419],[-71.07123776876176,42.30362553668424],[-71.07132861286594,42.30355254031534],[-71.07139542870759,42.30346986606095],[-71.07144105847172,42.30336818133477],[-71.0718306474199,42.30379427816145],[-71.07225697577006,42.30420300867948],[-71.0724845441044,42.30439509568174],[-71.0727716305993,42.30455971857544],[-71.07310721495679,42.30466646399058],[-71.0735493825565,42.30478848049358],[-71.07412256953404,42.30491060788687],[-71.07455426795005,42.30497091387313],[-71.075110767308,42.30500407749925],[-71.07551149285963,42.30500723606071],[-71.07587068228437,42.30500330942397],[-71.07621784550336,42.30504450764091],[-71.07671010039235,42.30519801410824]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000049,"geom:area_square_m":444131.772851,"geom:bbox":"-71.0767101004,42.3033681813,-71.0649973014,42.3118861029","geom:latitude":42.307479,"geom:longitude":-71.070538,"iso:country":"US","lbl:latitude":42.307665,"lbl:longitude":-71.070138,"lbl:max_zoom":18,"mps:latitude":42.307665,"mps:longitude":-71.070138,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.307665,"reversegeo:longitude":-71.070138,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5d4910d4bf361759e1887096832471af","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711931,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711931,"wof:lastmodified":1566624128,"wof:name":"Bowdoin North","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524003],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711933.geojson b/fixtures/microhoods/1108711933.geojson new file mode 100644 index 0000000..02f134b --- /dev/null +++ b/fixtures/microhoods/1108711933.geojson @@ -0,0 +1 @@ +{"id":1108711933,"type":"Feature","bbox":[-71.0423626161162,42.28478089044576,-71.03735803594485,42.29372805399753],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.04225109135824,42.28626190798827],[-71.04234040641538,42.28714927877456],[-71.0423626161162,42.28739307112848],[-71.04235914951974,42.28744934162646],[-71.04232010388907,42.28751705425611],[-71.04226013107255,42.28756910333139],[-71.0418029715643,42.28782013918271],[-71.04116817913136,42.28809616135675],[-71.04147386806441,42.28835575858869],[-71.04148381659112,42.28838704022584],[-71.0414853598624,42.28841916296516],[-71.04146656011577,42.28875577680719],[-71.04148045351593,42.28878831637306],[-71.04149769964688,42.28881199296818],[-71.04199330603443,42.28929972002703],[-71.0418919312208,42.28936662962804],[-71.04186906859246,42.28935940263919],[-71.04184881927593,42.28934862176147],[-71.04184069406283,42.28934776557772],[-71.04181999277799,42.28934850679342],[-71.04179964146493,42.28935199262992],[-71.04177928177747,42.28935630040761],[-71.04176003075776,42.28936088899773],[-71.04173485512327,42.28936682601508],[-71.04171447004644,42.28937497618085],[-71.04170002501792,42.28937930934047],[-71.0416855894721,42.28938199677901],[-71.04168300316135,42.28938198646071],[-71.04167930739239,42.28938197171604],[-71.04167708616502,42.28938278483242],[-71.041673387971,42.28938277007789],[-71.04167116673703,42.28938358409442],[-71.04166746854295,42.28938356933969],[-71.04166523814094,42.28938548259166],[-71.0416626446623,42.28938629512287],[-71.04166042100304,42.28938710912951],[-71.04165781956873,42.289389020901],[-71.04165297539618,42.2893942152385],[-71.0416528919759,42.28940574150767],[-71.04165063224013,42.28941204272775],[-71.04163828056699,42.28943339639073],[-71.04162740217657,42.28945558331092],[-71.04161763680177,42.28947694729104],[-71.04161015829378,42.28948926693075],[-71.04160790208816,42.28949474438517],[-71.04160398540617,42.2895249141744],[-71.04160269763139,42.28954987988833],[-71.0416025168791,42.28957485182008],[-71.0415974474654,42.28961132904539],[-71.0415923947018,42.28964533770109],[-71.04159111962039,42.28966838131442],[-71.04158933644035,42.28971035900921],[-71.04159181472002,42.2897254634074],[-71.04159542355329,42.28973782638734],[-71.0416001314905,42.28975129032404],[-71.04160704995894,42.28976558866047],[-71.04161068573396,42.28977356006099],[-71.04161432392847,42.28978153237134],[-71.04161526335797,42.28980486121401],[-71.04162100883059,42.28982793374004],[-71.0416220209581,42.28984138653001],[-71.04162452629316,42.28985292222718],[-71.04164084755915,42.28989579503623],[-71.04165175301608,42.28992081029857],[-71.0416564609854,42.28993427333219],[-71.04165858337802,42.28994745415773],[-71.04166104182387,42.28996530260304],[-71.04166091869807,42.28998231516906],[-71.04165933492737,42.28999657777884],[-71.04165702109623,42.29001001549762],[-71.04165580361683,42.29002510244711],[-71.04165678278488,42.29004294318963],[-71.04165776315949,42.29006078483718],[-71.04165870338389,42.29008383908834],[-71.04165742157466,42.29010798194539],[-71.04165356965198,42.29012936951929],[-71.04165240974929,42.29013650070605],[-71.04165591291864,42.29016313308981],[-71.0416547013849,42.29017739808442],[-71.04165199069399,42.29019440122619],[-71.04164817417957,42.29021139815514],[-71.04164812253507,42.29021853376353],[-71.0416480589796,42.29022731508124],[-71.0416552734261,42.29025149183597],[-71.0416658453077,42.29027184128583],[-71.04166801615614,42.29027816108212],[-71.04167159602808,42.29029436464204],[-71.04167150069966,42.29030753661844],[-71.04167029037266,42.29032180251792],[-71.04166760903767,42.29033441409082],[-71.04166424773122,42.29033961434422],[-71.04164973573049,42.29035300249402],[-71.04164599853377,42.29035820124717],[-71.04164595881298,42.2903636893455],[-71.0416469765859,42.29037686666312],[-71.0416446027321,42.29039826013282],[-71.04164180188808,42.29042788518422],[-71.04164312705525,42.29044901971969],[-71.04164296418303,42.2904715230831],[-71.04164135105586,42.29049017455893],[-71.04163403923663,42.29053021073938],[-71.04162635515026,42.29057024633401],[-71.04162395071525,42.29059603046584],[-71.0416225032597,42.29064322315652],[-71.04162446159019,42.29067890553782],[-71.04162551699855,42.29068604556269],[-71.04163499261178,42.2907047412813],[-71.04163861817017,42.29071463478861],[-71.04163851489123,42.29072890420338],[-71.0416346510065,42.29075193838332],[-71.04163122522195,42.29076537346367],[-71.04162370090519,42.29078400135266],[-71.04161008220608,42.29082758027138],[-71.0416066095321,42.29084732449775],[-71.04160392826226,42.29086075984683],[-71.04160633942347,42.29088464104176],[-71.04161206631521,42.29091046121803],[-71.04161183989564,42.29094174229458],[-71.04158160624172,42.2912890284401],[-71.04160802239659,42.29131602864103],[-71.0416626682227,42.2913749699274],[-71.04169484400906,42.29142311962942],[-71.04171110735307,42.29147422636593],[-71.04172050875133,42.29150252712537],[-71.04170945407382,42.29154886130615],[-71.04173064478107,42.29158297104181],[-71.04175212269327,42.29162833662365],[-71.04178076481266,42.29165424458891],[-71.04180453846358,42.29168918839072],[-71.04181022580799,42.29172049574947],[-71.04183146062816,42.29174802081499],[-71.04184351015653,42.29176865162727],[-71.0419223311428,42.29195968280488],[-71.04207014579801,42.29242348132949],[-71.04206875970087,42.29246189358496],[-71.04207124524258,42.29262929614718],[-71.0420716642355,42.29272479307848],[-71.04207282554383,42.29292155107084],[-71.0421745163102,42.29311980898805],[-71.04221795368731,42.29324648740425],[-71.0421839000917,42.29330425385984],[-71.04210343058253,42.29334070337928],[-71.04197365707806,42.29334622260879],[-71.04187644482087,42.29334693157119],[-71.0417814884513,42.29334188840339],[-71.04128992428666,42.29328833843251],[-71.0412051934925,42.29324957961406],[-71.04121943357593,42.2930696233751],[-71.04113092524426,42.29304265330111],[-71.0411472278305,42.29293487368249],[-71.04108625384413,42.29293380455547],[-71.04107307357839,42.29306903880896],[-71.04098800152596,42.293077754202],[-71.04101424672098,42.29292446253711],[-71.04090496696016,42.2929072856362],[-71.04087800407916,42.29315936478267],[-71.04083479676558,42.29315452762688],[-71.04076706310082,42.29372805399753],[-71.04050593353351,42.29365127181213],[-71.04051849150405,42.29360165226264],[-71.04065005831315,42.29365459408564],[-71.04071983597056,42.29361480682604],[-71.04078640748274,42.29304840893334],[-71.0404147997164,42.29301838331291],[-71.03971877192774,42.29297471129914],[-71.03971639609951,42.29299610651348],[-71.03965285312961,42.29299228400657],[-71.0396816225321,42.29279729164887],[-71.03938883389276,42.29280489969938],[-71.03938348417897,42.29272749169518],[-71.03961380926957,42.29271936056853],[-71.03961030093289,42.29254125191411],[-71.03918543651413,42.2925669915895],[-71.03962630165617,42.29217058510936],[-71.03956889706073,42.29213550337342],[-71.03953910023522,42.29211590136216],[-71.03950070274745,42.2921102573993],[-71.03947782541731,42.29210495293271],[-71.03945868036404,42.29209499894636],[-71.0394576499103,42.29208429109644],[-71.03924043003785,42.29227249122881],[-71.03925328796986,42.29228324291459],[-71.03923282696125,42.29230182236194],[-71.03918971378744,42.29228381170761],[-71.03918493428307,42.29228022733101],[-71.03918867138121,42.29227475226487],[-71.03921391665298,42.29225893704267],[-71.03926601155187,42.29221112464252],[-71.03927200315223,42.29220044585272],[-71.03926838507107,42.29218973032463],[-71.03924345244026,42.29216191446028],[-71.03923297050831,42.29212976576464],[-71.03922863226948,42.29206553595301],[-71.03920605327869,42.29201906890958],[-71.03917753386612,42.29197641963187],[-71.0391587371447,42.29191844385255],[-71.0391579236164,42.29187810064732],[-71.03917071226373,42.29179637819259],[-71.03917104972315,42.29175000396221],[-71.03914746287333,42.29169008681315],[-71.03910460176218,42.29163750274012],[-71.03903870028383,42.2916023866434],[-71.03899064640828,42.29160301669704],[-71.03896652516651,42.29161636864762],[-71.03892855937382,42.29160194465363],[-71.03889839201122,42.29158316566409],[-71.03886845136721,42.29158304548767],[-71.03872374225081,42.29171171225916],[-71.03865207472441,42.29165599182714],[-71.03888157930832,42.29145576811039],[-71.03908535137323,42.29128617619263],[-71.03907611853495,42.29123454899604],[-71.0390356764035,42.29120502419451],[-71.03899368871356,42.29118509762567],[-71.03882124045106,42.29131639823715],[-71.03868108167059,42.29142889665059],[-71.03859748243325,42.29138767268692],[-71.03839831986261,42.29122825874754],[-71.03807088807282,42.29102113389267],[-71.03790502209048,42.29090823215253],[-71.03786801208204,42.29086445091038],[-71.03785873023605,42.29081968373226],[-71.0379023201558,42.29077183772306],[-71.03795652125386,42.29073912618356],[-71.03799553636219,42.29065997794968],[-71.03802502723951,42.29056926570013],[-71.0380342642307,42.29046859295243],[-71.03799645119483,42.29038282370406],[-71.0379536627928,42.29032035952768],[-71.03796001879736,42.29025973965837],[-71.03800023437938,42.29016824676322],[-71.0379932894275,42.29015751780981],[-71.03798868033086,42.29013060626751],[-71.03798630097282,42.29010205793499],[-71.03798649515204,42.29007544120288],[-71.03798807855249,42.29006117683858],[-71.03799034231345,42.29005487570601],[-71.03799298191326,42.2900477514056],[-71.03799783925204,42.29004063422347],[-71.0380049559135,42.29002749138367],[-71.03800874500888,42.2900148843475],[-71.0380110335741,42.29000501630634],[-71.0380125792969,42.28999541716983],[-71.03801605303804,42.28997567394905],[-71.03801984250316,42.28996251682759],[-71.03802249132049,42.28995429419156],[-71.03802365040295,42.28994716483684],[-71.03802490679055,42.28992686261242],[-71.03802996749485,42.28989203126103],[-71.03803492766828,42.28987064825943],[-71.03803613520856,42.28985720796206],[-71.03803624530671,42.28984211479324],[-71.0380352399235,42.28982784181792],[-71.03803168626335,42.28980834222852],[-71.03802951578076,42.28980202416344],[-71.03802586360632,42.28979569743898],[-71.03802220585206,42.28979046816362],[-71.03801528938308,42.28977617231707],[-71.03800692568734,42.28975747626168],[-71.03799634424779,42.28973877578814],[-71.03799161707883,42.28972805305179],[-71.03798584770642,42.28970827265744],[-71.03798225480132,42.2896939892748],[-71.03797983906868,42.28967092815182],[-71.03798001524662,42.28964677908084],[-71.03798014535707,42.28962894456332],[-71.03798175233813,42.28961111418483],[-71.0379797778112,42.28952741029433],[-71.0379788280877,42.28950517794526],[-71.03797411857968,42.28949253582847],[-71.03797305194571,42.28948649499382],[-71.03797310399712,42.2894793602863],[-71.03797062177324,42.28946508226996],[-71.03796491049341,42.28943734341101],[-71.03795771874137,42.28940959679657],[-71.03795562436632,42.28939284990271],[-71.03795466148674,42.28937308703647],[-71.03795215681936,42.289361553959],[-71.03794893619882,42.28934727027099],[-71.03794534932601,42.28933216403156],[-71.03794284710021,42.28932062916302],[-71.03794187743125,42.28930196374087],[-71.03794571370659,42.28928222107736],[-71.03794580378519,42.28926987465681],[-71.03794473559573,42.28926438030052],[-71.03794108467984,42.2892580526772],[-71.03793748742783,42.2892448685467],[-71.03792799634567,42.28922863838556],[-71.03792211492411,42.28922422394106],[-71.03790658622815,42.289224987058],[-71.03789918070512,42.2892268767195],[-71.03788367325042,42.28922489488879],[-71.03786335138821,42.28922398755902],[-71.03785484560348,42.28922477892088],[-71.03784783114105,42.2892239251223],[-71.03783344754076,42.28921947646876],[-71.03781906878598,42.2892150287332],[-71.0378165261016,42.28920870916573],[-71.03782136336352,42.28920433693931],[-71.03783578217286,42.289203295676],[-71.03784172766868,42.28919892880756],[-71.03783844898382,42.28919260627958],[-71.03783479006081,42.28918737789299],[-71.03783112877099,42.28918297237556],[-71.03782635881863,42.28917828780465],[-71.03781316757107,42.2891623200411],[-71.03779669290529,42.28914084630438],[-71.03778938192023,42.28913011586312],[-71.03777765917079,42.28911579886111],[-71.03777034334173,42.28910506839909],[-71.03776561988276,42.28909434746722],[-71.03776575006559,42.28907651114744],[-71.03777205815359,42.28907296862028],[-71.03768765919811,42.28893898951298],[-71.03754889812939,42.28870874786037],[-71.03741747702625,42.28848621788617],[-71.03735803594485,42.28837648879891],[-71.0373617432701,42.28837458157776],[-71.03737732265604,42.28836668562121],[-71.03738848072373,42.2883568524071],[-71.03739933555549,42.28833823459313],[-71.03740418799904,42.28833194479468],[-71.03741013945319,42.28832675509303],[-71.03741983272157,42.28831526751846],[-71.03742954360385,42.28830103588368],[-71.03743925688707,42.28828680695864],[-71.03745164425165,42.28826106219227],[-71.03746098652489,42.28824682817023],[-71.03747070903331,42.28823150000692],[-71.0374804567342,42.28821205754927],[-71.03749021851932,42.2881915158748],[-71.03749769407814,42.28818002116518],[-71.03750736363166,42.28817127761789],[-71.03752072291742,42.28816419558258],[-71.03752556811425,42.28815872862874],[-71.03755314202928,42.28812755582795],[-71.03757254288453,42.2881029358533],[-71.03758113222877,42.28809034814957],[-71.0375882519749,42.28807693075024],[-71.03760541709457,42.28805477400854],[-71.03761625777759,42.2880380782682],[-71.03761740608105,42.28803259282881],[-71.03761634393545,42.28802627741378],[-71.03761274319665,42.28801309145463],[-71.0376047103734,42.28799961216204],[-71.03760216297698,42.28799411364742],[-71.03759531451682,42.28797021088562],[-71.037592853685,42.28795318881181],[-71.03758925374099,42.28793972916205],[-71.0375870825939,42.28793368297534],[-71.03758454721785,42.2879265387506],[-71.0375835287448,42.2879139105704],[-71.03758469147682,42.2879067812318],[-71.03759336058043,42.28788376381121],[-71.03759935204029,42.28787308689986],[-71.03761055606971,42.28785694180835],[-71.03761878442207,42.28784380346207],[-71.03762628675656,42.28782846634836],[-71.03762853403565,42.28782408460477],[-71.03764195733662,42.28780822213542],[-71.03764680129642,42.28780275337058],[-71.03765906786086,42.28779319918424],[-71.03766835671509,42.2877861007492],[-71.03767801300779,42.28777982667124],[-71.0376891448745,42.28777356213207],[-71.03771659199143,42.28776022472856],[-71.03773254220435,42.28775233021587],[-71.0377529633129,42.28773924272455],[-71.03776376786224,42.28772748499875],[-71.03777233630514,42.28771791501938],[-71.03777569983977,42.2877132649719],[-71.03777837979102,42.28770010338839],[-71.03778326421214,42.28768942021226],[-71.0377903578319,42.28767957060447],[-71.03779673229123,42.28766724676466],[-71.03780869945831,42.28764753771437],[-71.03783193389579,42.28760399969786],[-71.03783683711255,42.28759057246435],[-71.0378369072051,42.28758096738893],[-71.0378369852799,42.28757026847461],[-71.03783707139598,42.28755846761891],[-71.03783350468902,42.28754061551991],[-71.03783254464447,42.2875203070714],[-71.03783487802141,42.28750412356739],[-71.03783646495175,42.28748903903391],[-71.03783651101874,42.28748272627823],[-71.03783290911672,42.28747036229868],[-71.03782929633506,42.28745882475554],[-71.0378305026802,42.28744538174807],[-71.03783687345104,42.28743306059162],[-71.0378402489949,42.28742676213127],[-71.03785846638064,42.28741174180232],[-71.03786553513586,42.28740545999961],[-71.03787898389415,42.28738575600133],[-71.0378827672221,42.28737342263276],[-71.03789245546736,42.28736275787586],[-71.03790582654716,42.28735403008478],[-71.03791067044287,42.28734856220861],[-71.03791780926585,42.28733267532662],[-71.0379226955797,42.28732089467939],[-71.03792753147108,42.28731652334221],[-71.03794090253629,42.28730779554692],[-71.0379576558444,42.28729085076241],[-71.03797102326257,42.28728212294896],[-71.03800709970976,42.2872509842334],[-71.03802309099689,42.28723760248418],[-71.03802534543577,42.28723239878254],[-71.03802649969144,42.28722609048316],[-71.0380254815636,42.28721373689989],[-71.03802663579265,42.28720743220163],[-71.038030416723,42.2871959207971],[-71.0380341571784,42.28718962559896],[-71.03804009525042,42.28718608246886],[-71.03804750776473,42.28718336724657],[-71.03806414657065,42.28718261127722],[-71.03807116683124,42.28718263950713],[-71.03808708961381,42.28717831364531],[-71.03809304170684,42.28717284751654],[-71.03809418915007,42.28716763846191],[-71.03809326184691,42.2871426638632],[-71.0380944112922,42.28713718022349],[-71.03809703795278,42.28713197801703],[-71.03810187819725,42.28712650741709],[-71.0381233941001,42.28711589019786],[-71.03813564243752,42.28710880722512],[-71.03813676264477,42.2871071659708],[-71.0381475353504,42.28709925148382],[-71.03816091314292,42.28708942441702],[-71.03817172029122,42.28707711837657],[-71.03817883020967,42.28706534845823],[-71.03818257907436,42.28705822950958],[-71.03819336499826,42.28704866661227],[-71.03820451070061,42.28704047992656],[-71.03823085396105,42.28702631688385],[-71.03829097450519,42.28699198321196],[-71.03830692444643,42.28698408951863],[-71.03833100963196,42.28697512834506],[-71.03834766715644,42.28697163007985],[-71.03836213429177,42.28696455329891],[-71.03837658257724,42.28695939679183],[-71.03839477255617,42.28694876615648],[-71.03841031581155,42.28694526250434],[-71.03843077538318,42.28692750786334],[-71.03857487177996,42.28672941096382],[-71.0388342987964,42.28688357578481],[-71.0388234953768,42.28689505902329],[-71.0389033581056,42.28694175524633],[-71.0389299139432,42.28694899675704],[-71.03893470259331,42.28695093452796],[-71.0389417308048,42.28694986706503],[-71.03896726355889,42.28694557875149],[-71.03897430620017,42.28694286198508],[-71.03897913478126,42.28693931435376],[-71.03899959896201,42.28692073765178],[-71.03900444795963,42.28691471786281],[-71.039007066908,42.28691006389062],[-71.039008263779,42.28689772010519],[-71.03901684354041,42.28688705350607],[-71.03902278873737,42.28688268657445],[-71.03903831083686,42.28688274886219],[-71.03904315582436,42.28687727914205],[-71.03904919289025,42.28686028939597],[-71.0390507136111,42.28685425985085],[-71.03905075356771,42.28684876994898],[-71.03904126055428,42.28683281535738],[-71.03903871427943,42.28682731867875],[-71.03903290489268,42.28681302732706],[-71.0390293179245,42.28679791841295],[-71.03902722457154,42.28678117063438],[-71.03903539292622,42.28677571605132],[-71.03900676257682,42.28674898092962],[-71.0389912652682,42.28674535082664],[-71.03902998500892,42.28670626729912],[-71.03909510798249,42.28664505845745],[-71.0390213121263,42.28657780662834],[-71.0388318682915,42.28640526346168],[-71.03869820155982,42.2862878247977],[-71.03855760390454,42.28615801314255],[-71.0384636515104,42.28606762674917],[-71.0385757321571,42.28600304254334],[-71.03868037785433,42.28594391303157],[-71.03871784843695,42.28592430629985],[-71.03874791508622,42.28590659107874],[-71.0389479631506,42.28578912192845],[-71.0390998912735,42.28568271048658],[-71.03928804264798,42.28552485481758],[-71.03951858434894,42.28538143772055],[-71.03977563939515,42.2851497649913],[-71.04013766384426,42.28486444950339],[-71.04026355065938,42.28478089044576],[-71.04102135056293,42.2851868546798],[-71.04190821972993,42.28568183622719],[-71.04204106631016,42.28578012699864],[-71.04209856728383,42.2858327567086],[-71.0421566741989,42.28590828338447],[-71.04218886444173,42.28597830967452],[-71.04225109135824,42.28626190798827]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":249871.032375,"geom:bbox":"-71.0423626161,42.2847808904,-71.0373580359,42.293728054","geom:latitude":42.289007,"geom:longitude":-71.040096,"iso:country":"US","lbl:latitude":42.289342,"lbl:longitude":-71.039798,"lbl:max_zoom":18,"mps:latitude":42.289342,"mps:longitude":-71.039798,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.289342,"reversegeo:longitude":-71.039798,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"51aa971dab4534087463e5a257485e33","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711933,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711933,"wof:lastmodified":1566624128,"wof:name":"Port Norfolk","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711937.geojson b/fixtures/microhoods/1108711937.geojson new file mode 100644 index 0000000..9aa6208 --- /dev/null +++ b/fixtures/microhoods/1108711937.geojson @@ -0,0 +1 @@ +{"id":1108711937,"type":"Feature","bbox":[-71.05735632575546,42.282583,-71.04116817913136,42.29885428474769],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.05681169427784,42.29414087389902],[-71.05652552551736,42.29454177373722],[-71.0563444908458,42.29483781002446],[-71.05623983557523,42.29506881889785],[-71.05619126830807,42.29527110323063],[-71.05621337194475,42.29551560005657],[-71.05625958326202,42.29576084949892],[-71.05446605483388,42.29591538425003],[-71.05346034569887,42.29598586355345],[-71.05316201346434,42.29601170131092],[-71.05289984330282,42.29606582487795],[-71.05265439904788,42.29621977774733],[-71.05151991003818,42.2972689151944],[-71.05139202444124,42.29736035918815],[-71.05122726704273,42.29741453794213],[-71.05104502036087,42.29745500703731],[-71.05040378209313,42.29759629300749],[-71.04981961229714,42.29778171504376],[-71.04860500280121,42.29822890358619],[-71.04700131872912,42.29885428474769],[-71.04666521668054,42.29834295837782],[-71.0466677647436,42.2982968666233],[-71.04658470196084,42.29802377139029],[-71.046566708815,42.2980075102338],[-71.04650412245014,42.29802345336486],[-71.04648380668122,42.29802145462959],[-71.04644667773533,42.29799304215551],[-71.04641960541844,42.2979536955788],[-71.0464278620036,42.29793671244848],[-71.04649990191798,42.29794221047565],[-71.04654202885922,42.29794347511765],[-71.04655758828466,42.29793887295662],[-71.0465614252944,42.29791940284338],[-71.0465393686443,42.29779912354872],[-71.04648547453432,42.29763398792642],[-71.04644225556113,42.29747520733923],[-71.0463917185803,42.29730569503498],[-71.04632574815061,42.29712377230322],[-71.0461819726744,42.29676125471854],[-71.0460017328315,42.29627785046473],[-71.04580228059638,42.29584486073154],[-71.04553663021429,42.29536605881127],[-71.04536951310223,42.29506354207209],[-71.04509475373045,42.29456768904375],[-71.04497747082947,42.29437760443894],[-71.04478664561249,42.29403191063385],[-71.04471663477825,42.29389881859797],[-71.04459076629541,42.29372104810607],[-71.04454200515804,42.29366569769248],[-71.04452070886234,42.29364612978753],[-71.04449788036464,42.29363423899658],[-71.04446055625543,42.29363326902974],[-71.0444247896084,42.29362077683611],[-71.04436831331128,42.29361067563442],[-71.04433469436296,42.29360862014975],[-71.04427216676011,42.29361742828964],[-71.04420626117195,42.293633082409],[-71.04419427142054,42.29360449610872],[-71.04415050072024,42.29352337161922],[-71.04414844530295,42.29350113496081],[-71.04410065748797,42.29346444881607],[-71.0440060620375,42.29340974095498],[-71.04391886547032,42.29335396131594],[-71.04382091135147,42.29330362984837],[-71.04377685393479,42.2932625666958],[-71.04367169396052,42.29318641097427],[-71.04353926725341,42.29309862112982],[-71.04341857234995,42.29302405100373],[-71.04331598108296,42.29295064928503],[-71.04321081624546,42.29287531599113],[-71.04313070105567,42.29281188250373],[-71.0430699875959,42.29277404704692],[-71.0430243942558,42.29274093527698],[-71.04297806843665,42.29270699769667],[-71.04293149681781,42.29265604787334],[-71.04290874731457,42.29263263138264],[-71.04290876515202,42.29263016011883],[-71.04290656955936,42.29262740815656],[-71.04289703949517,42.29261666832357],[-71.04287426227609,42.29259709511379],[-71.04285995371879,42.29258276835857],[-71.04284452606947,42.29256926092659],[-71.04282910559915,42.29255492794217],[-71.04279934961451,42.2925298386915],[-71.04276441119765,42.29250555168504],[-71.04274895949449,42.2924958848416],[-71.0427265050916,42.29248317320415],[-71.04270255870026,42.2924723750718],[-71.04268081151227,42.29246433161649],[-71.0426738103536,42.29246073764195],[-71.04265798288877,42.2924518930686],[-71.04264512315144,42.29244113905857],[-71.04263080873831,42.2924276351287],[-71.04261871202165,42.2924133171482],[-71.04261394862101,42.29240781082991],[-71.04260444440877,42.29239350316932],[-71.04259642415323,42.29237755656047],[-71.04259022624217,42.29236600528925],[-71.04258805524313,42.29235968371252],[-71.04258560587886,42.29234019317843],[-71.04258098795104,42.29231438017661],[-71.0425762796407,42.292300912686],[-71.04256210004323,42.29226875137964],[-71.04255407278318,42.29225444959521],[-71.04254456617578,42.29224014281988],[-71.04253394886507,42.29222582982025],[-71.04252185110184,42.29221233650324],[-71.04249909286735,42.29219084294314],[-71.0424752262683,42.29216851758472],[-71.04246240075395,42.29215337470648],[-71.04244701691438,42.29213382995352],[-71.04242651972076,42.29210603245036],[-71.04241482830366,42.29208732617789],[-71.04240277377573,42.2920675209869],[-71.0423837564037,42.29204000396276],[-71.04237092379144,42.29202568212291],[-71.0423624985497,42.29201494844516],[-71.04235883314371,42.29201054306007],[-71.04235045122405,42.29199431859824],[-71.04234353828434,42.2919791983589],[-71.04234247318912,42.29197288118241],[-71.0423414481769,42.29196135320451],[-71.04234154535284,42.29194790664712],[-71.04234269726712,42.29194187469587],[-71.04234643405279,42.29193640222743],[-71.0423523711225,42.2919328579727],[-71.04236535366682,42.29192659675575],[-71.04236908846538,42.29192139887148],[-71.042369128131,42.29191590987438],[-71.0423669551787,42.29190986377802],[-71.04236069499302,42.2919062709347],[-71.04232749487046,42.29189790719413],[-71.04229243997705,42.29188980884651],[-71.04227215011841,42.29188451524551],[-71.04225075991276,42.29187811888537],[-71.04224338669916,42.2918753462795],[-71.04223640118363,42.29187010388264],[-71.04222796895901,42.291861013222],[-71.0422210151721,42.29185138196725],[-71.04221628238145,42.29184148406915],[-71.04221156028281,42.29182993955686],[-71.04220537867492,42.2918156469015],[-71.0422032065141,42.2918093262122],[-71.04220326404577,42.29180136775144],[-71.042203315629,42.29179423214505],[-71.0422033731411,42.29178627638512],[-71.0422023255891,42.2917780380275],[-71.04219618883847,42.29175770900984],[-71.0421951261868,42.29175139184136],[-71.04219628008345,42.291745087107],[-71.04220269851038,42.2917264511762],[-71.04220510033407,42.29170066612826],[-71.04220524315359,42.29168090951902],[-71.0422053840011,42.29166142569407],[-71.04220657680871,42.29164990565156],[-71.04220561013005,42.2916301446209],[-71.04220832669513,42.29161231681601],[-71.04221178764598,42.2915936708997],[-71.04221441415316,42.29158846860377],[-71.0422240963591,42.29157862724544],[-71.04222635259225,42.29157314888097],[-71.04222528794924,42.29156710719775],[-71.04221209707988,42.29155086536214],[-71.04220735043147,42.29154288775688],[-71.04220259904842,42.29153573301078],[-71.04219458144082,42.29151978458022],[-71.04218250251625,42.2915035462718],[-71.04217773008217,42.29149913646867],[-71.04216926891128,42.29149388998707],[-71.04216228421,42.29148837389585],[-71.04214684551125,42.29147678757105],[-71.04212295593464,42.29145802994927],[-71.04211081950378,42.29144974919415],[-71.04209534784445,42.29144255621618],[-71.04208210237212,42.29143454473],[-71.04207623435471,42.29142820840572],[-71.04206927590741,42.29141939909995],[-71.04206456773993,42.2914059360873],[-71.04206580501709,42.29138810148788],[-71.04206478006468,42.29137657350615],[-71.04205858112944,42.29136502309935],[-71.04204793948763,42.29135427786056],[-71.04203729431103,42.29134435728546],[-71.04202554318385,42.29133360762169],[-71.04200277032676,42.29131403514883],[-71.04199064816792,42.29130328400219],[-71.04198112684769,42.29129171944497],[-71.04196829875178,42.29127630370515],[-71.04195622985523,42.29125869334776],[-71.04194927939399,42.29124878479444],[-71.04194825569712,42.29123725411534],[-71.04194945405615,42.29122463662542],[-71.04195436261229,42.2912103890723],[-71.04195922554656,42.29120244886982],[-71.04196406939967,42.29119697902642],[-71.04197112428798,42.29119261636957],[-71.04198816204081,42.29118747153466],[-71.04199521450124,42.29118310886667],[-71.04199893739734,42.29117955490217],[-71.04199902868078,42.29116693299802],[-71.04199547248643,42.29114743713275],[-71.04198599992509,42.29112846326436],[-71.04197542305234,42.29110893760714],[-71.04196596481772,42.29108831983809],[-71.04196231140234,42.29108226783015],[-71.04195643028787,42.29107758080463],[-71.04194942868077,42.29107508155258],[-71.04192538766455,42.29107745703026],[-71.04191687730294,42.29107851876648],[-71.04190839593471,42.29107573991887],[-71.04190140102313,42.29107214772095],[-71.04189404104892,42.2910677275874],[-71.04188926945456,42.29106304138157],[-71.04188561008252,42.29105781402627],[-71.0418797750943,42.29104708703812],[-71.0418750602619,42.2910347223613],[-71.04187401034642,42.29102648308947],[-71.04187405400761,42.29102044762251],[-71.04187631741625,42.29101414641455],[-71.04188380168954,42.29100155039033],[-71.04188983516809,42.29098483779006],[-71.04189846066906,42.2909678573314],[-71.04190819553398,42.29095005931767],[-71.04191307829655,42.29093937596812],[-71.04191688574366,42.2909242993463],[-71.04191928764678,42.29089851520038],[-71.0419253969992,42.29087164566528],[-71.04193179908943,42.29085493183137],[-71.04193521409793,42.29084314605745],[-71.04194158442499,42.29083082288127],[-71.04195130425309,42.29081576983196],[-71.04195615998685,42.29080865337905],[-71.04196065063076,42.29080071259197],[-71.04196439335304,42.2907944145793],[-71.041970493507,42.29076864517683],[-71.04197201007167,42.29076316476772],[-71.04196952217663,42.29074970700003],[-71.04196267296955,42.29072580631729],[-71.0419532052136,42.29070601048537],[-71.04194850186293,42.29069172460661],[-71.04194743969286,42.2906856820291],[-71.04194608465446,42.2906686626714],[-71.0419476520695,42.29065631944387],[-71.04195254868539,42.29064371669815],[-71.04196195257224,42.29062070459604],[-71.04198418449188,42.29056179267702],[-71.04200124639648,42.29050231365685],[-71.04200402171267,42.29047653099588],[-71.04200643868286,42.29044882385557],[-71.04200915645282,42.2904309978565],[-71.04201150198378,42.29041316857275],[-71.04201470196794,42.2903286625372],[-71.04201246840232,42.29027953481509],[-71.0420114633286,42.29026526188075],[-71.0420078556031,42.29025289801969],[-71.04200568473465,42.29024657642923],[-71.04200327654668,42.29022159598005],[-71.04200344322923,42.29019854794643],[-71.04200502220871,42.29018510549122],[-71.04200744389912,42.29015657638994],[-71.04201132746947,42.29013079634477],[-71.04201045613252,42.2900978633292],[-71.04200797970469,42.29008248705704],[-71.04200692898198,42.29007452687613],[-71.04200698653672,42.29006656841266],[-71.04200705799184,42.29005668785418],[-71.04201424646351,42.29003366781353],[-71.04201577019606,42.29002736095206],[-71.04201448459547,42.29000073922047],[-71.04201236531874,42.28998728472175],[-71.04200510623949,42.28996859426712],[-71.04199935466329,42.28994634461569],[-71.04199834364694,42.28993289453496],[-71.0419958005297,42.28992657326038],[-71.0419925110436,42.28992134648145],[-71.04198627225193,42.28991583155025],[-71.04198297439099,42.28991142761605],[-71.04198306367691,42.28989908209423],[-71.04198425849722,42.28988728476407],[-71.04199291788385,42.28986509166634],[-71.04199411190885,42.28985357162669],[-71.04199163119532,42.28983929280768],[-71.04198951900025,42.28982418987844],[-71.0419848181319,42.28980990400827],[-71.0419812160545,42.28979726647507],[-71.04197765996858,42.28977776700274],[-71.04197077314417,42.28975908163044],[-71.0419638863499,42.28974039265655],[-71.04195923710911,42.28971897027554],[-71.04195311453796,42.28969671914129],[-71.04194987865039,42.28968408396715],[-71.04194628487215,42.28966979800764],[-71.04193332834207,42.28962172499261],[-71.04192982706557,42.28959481892965],[-71.04192405450219,42.28957531151703],[-71.04191938422618,42.28955663317853],[-71.0419183720205,42.28954318309118],[-71.04191737889002,42.28952726354403],[-71.04191749004222,42.28951189668572],[-71.04192248185065,42.28948612195964],[-71.04192269422181,42.28945676116791],[-71.0419203190806,42.28942738825763],[-71.04191930688332,42.28941393726969],[-71.04191574133962,42.28939608621407],[-71.04191213015544,42.28938454521239],[-71.04190995136858,42.28937932375967],[-71.04189930532651,42.2893694040633],[-71.0418919312208,42.28936662962804],[-71.04199330603443,42.28929972002703],[-71.04149769964688,42.28881199296818],[-71.04148045351593,42.28878831637306],[-71.04146656011577,42.28875577680719],[-71.0414853598624,42.28841916296516],[-71.04148381659112,42.28838704022584],[-71.04147386806441,42.28835575858869],[-71.04116817913136,42.28809616135675],[-71.0418029715643,42.28782013918271],[-71.04226013107255,42.28756910333139],[-71.04232010388907,42.28751705425611],[-71.04235914951974,42.28744934162646],[-71.0423626161162,42.28739307112848],[-71.04234040641538,42.28714927877456],[-71.04225109135824,42.28626190798827],[-71.04218886444173,42.28597830967452],[-71.0421566741989,42.28590828338447],[-71.04209856728383,42.2858327567086],[-71.04204106631016,42.28578012699864],[-71.04190821972993,42.28568183622719],[-71.04200995012748,42.2857298882434],[-71.04210184811512,42.2857563437247],[-71.04219109721757,42.28576584871421],[-71.04226197339673,42.28576609048097],[-71.04233235204912,42.28576300029421],[-71.04242627585957,42.28575216654344],[-71.04251498614055,42.28573212860386],[-71.04289272776673,42.28559900323064],[-71.04527293948107,42.28459264868582],[-71.04596713317298,42.28429572267799],[-71.04763800567638,42.28371648687681],[-71.04790534527697,42.28363015846414],[-71.04828479300227,42.28353309835051],[-71.04872964237859,42.28347142557632],[-71.05099088983319,42.28335446450107],[-71.05169225364496,42.28329688291817],[-71.05231644868589,42.28320408597577],[-71.05288111114345,42.28307053854245],[-71.0535027681633,42.28290889850017],[-71.05440236720689,42.2827495056338],[-71.05523490599181,42.28266940677469],[-71.056536,42.282583],[-71.056154,42.282812],[-71.056001,42.282921],[-71.055869,42.283096],[-71.055787,42.283205],[-71.055664,42.283605],[-71.055427,42.284355],[-71.055211,42.284914],[-71.055148,42.285068],[-71.055009,42.285426],[-71.054963,42.285575],[-71.054776,42.286007],[-71.054685,42.286267],[-71.054547,42.286615],[-71.054528,42.286672],[-71.05451,42.2868],[-71.05451,42.286859],[-71.054537,42.287113],[-71.054654,42.287335],[-71.054725,42.287446],[-71.054877,42.287667],[-71.0551,42.287933],[-71.055347,42.288242],[-71.05547051095564,42.28848119137035],[-71.05553140650382,42.28865713056371],[-71.05566359065303,42.28906481956725],[-71.05588498803652,42.28953992687453],[-71.05625045131409,42.29016891617844],[-71.0564869731222,42.29054508822676],[-71.05672450178831,42.29084327883979],[-71.05700705171402,42.29115597962404],[-71.05723786727184,42.29149125854092],[-71.05729850840295,42.29165547274195],[-71.05733381539854,42.29179419157614],[-71.05735632575546,42.29201283473463],[-71.05734845075095,42.29219674728758],[-71.05732476074384,42.2927715445643],[-71.05728174021054,42.29314827182296],[-71.0572182210872,42.29340438534865],[-71.05712601275903,42.29360581343294],[-71.05703820995905,42.29376394593982],[-71.05681169427784,42.29414087389902]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000172,"geom:area_square_m":1575567.276932,"geom:bbox":"-71.0573563258,42.282583,-71.0411681791,42.2988542847","geom:latitude":42.290272,"geom:longitude":-71.049598,"iso:country":"US","lbl:latitude":42.287765,"lbl:longitude":-71.051107,"lbl:max_zoom":18,"mps:latitude":42.290215,"mps:longitude":-71.049442,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:eng_x_preferred":["Neponset"],"name:fra_x_preferred":["Neponset"],"name:und_x_variant":["Naponset"],"reversegeo:latitude":42.290215,"reversegeo:longitude":-71.049442,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q14715757"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dedbf63dc699bc951c929def97805ef7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711937,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711937,"wof:lastmodified":1566624128,"wof:name":"Neponset","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85836487],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711939.geojson b/fixtures/microhoods/1108711939.geojson new file mode 100644 index 0000000..4aced4f --- /dev/null +++ b/fixtures/microhoods/1108711939.geojson @@ -0,0 +1 @@ +{"id":1108711939,"type":"Feature","bbox":[-71.1700600342531,42.35727237120662,-71.13530771404677,42.36675518165985],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.13811373229755,42.35727237120662],[-71.13814,42.357278],[-71.138228,42.357283],[-71.138572,42.35733],[-71.141464,42.357683],[-71.143972,42.357997],[-71.144863,42.358122],[-71.145432,42.358191],[-71.145945,42.358226],[-71.14647,42.358253],[-71.147288,42.358255],[-71.147686,42.35824],[-71.147855,42.358227],[-71.147951,42.358219],[-71.14798,42.358221],[-71.148851,42.358125],[-71.149685,42.35802],[-71.150132,42.35796],[-71.15047,42.357925],[-71.150921,42.35789],[-71.151947,42.357827],[-71.152449,42.357802],[-71.153248,42.357785],[-71.154093,42.35776],[-71.154873,42.357723],[-71.155836,42.3577],[-71.156463,42.357677],[-71.157797,42.357641],[-71.160593,42.357551],[-71.16203,42.357511],[-71.163474,42.357452],[-71.164844,42.35742],[-71.165753,42.357386],[-71.166455,42.357373],[-71.167191,42.35737],[-71.168558,42.357404],[-71.169328,42.357432],[-71.16997,42.357463],[-71.1700600342531,42.35746683124481],[-71.16862475060319,42.35895633175907],[-71.16843794192299,42.35914196063006],[-71.16839751253787,42.35915070017197],[-71.16834193535254,42.35916563319341],[-71.1683156847586,42.35917356012419],[-71.16827119397601,42.35919126915386],[-71.16825203478145,42.35919921742475],[-71.1682421468815,42.35920353367834],[-71.16823256847786,42.35920716390624],[-71.16822422937065,42.35920988391904],[-71.16821218679075,42.35921327926432],[-71.16820756194824,42.35921326592188],[-71.16820385727675,42.35921416992375],[-71.16820015261493,42.35921530349824],[-71.16819150037034,42.35921870862257],[-71.16818438975358,42.35922234686656],[-71.16817232318441,42.35923031468712],[-71.1681661399427,42.35923372783358],[-71.16816026261934,42.35923736873425],[-71.16815191510821,42.35924168942466],[-71.1681481996239,42.3592444227731],[-71.16814357599299,42.35924440943158],[-71.16813523687232,42.35924713033814],[-71.16809665809141,42.35925410785458],[-71.168058079316,42.3592613140306],[-71.16801484928422,42.35927353756102],[-71.16797254420531,42.35928576374559],[-71.16795678852979,42.35929189241371],[-71.16793762926527,42.35929984063204],[-71.16789187497376,42.35932303310524],[-71.16784488495348,42.35934667933621],[-71.16782819706245,42.35935394865658],[-71.16780410459917,42.3593621112766],[-71.16778000851397,42.35937073122604],[-71.16776084562622,42.35937982276667],[-71.16774138040161,42.359387541396],[-71.16766195381014,42.35942298480479],[-71.16763785409066,42.35943251940369],[-71.16761498884871,42.35944160022045],[-71.16760169848999,42.35944796463738],[-71.16758871642806,42.35945387259898],[-71.1675741963607,42.35945931876865],[-71.16755010983313,42.3594663379905],[-71.16752479961843,42.35947152429021],[-71.16749948819769,42.35947693925328],[-71.16748283028195,42.35947849179919],[-71.16745506309213,42.3594820702727],[-71.1674371730678,42.35948316190448],[-71.16742977328843,42.35948314050663],[-71.1673866331578,42.35947821362799],[-71.1673635220757,42.3594756313893],[-71.16735181537948,42.35947376814993],[-71.1673410288462,42.3594728222607],[-71.16733363028193,42.35947280086015],[-71.16731204638202,42.35947273842545],[-71.16729045888526,42.35947359066602],[-71.16728212451322,42.35947539593446],[-71.16727379014071,42.35947720120235],[-71.16726514744362,42.35947900557755],[-71.1672484895216,42.35948055808952],[-71.16723029358675,42.35948142013156],[-71.16721209644844,42.35948251083974],[-71.16719666821174,42.35948475291976],[-71.16718586603932,42.35948677971246],[-71.16717042216024,42.35949199448543],[-71.16715343184501,42.35949811947057],[-71.16712099643584,42.35950968788849],[-71.16710648714542,42.35951307597845],[-71.16709228136419,42.35951737963489],[-71.16707868018486,42.35952374309176],[-71.16706446356795,42.35953010476538],[-71.16704624595238,42.35953508281959],[-71.16703420204381,42.35953870671025],[-71.1670221641622,42.35954141592733],[-71.1669922362199,42.35954498803324],[-71.16695244430959,42.35954830289455],[-71.16691173464595,42.35955024304949],[-71.1668947744023,42.35955087994493],[-71.1668765856577,42.35955014124482],[-71.16685994215813,42.35954894967299],[-71.16682633479289,42.35954885231853],[-71.16678316936992,42.35954872726165],[-71.16673968598532,42.3595504306468],[-71.16672057950684,42.35954854590045],[-71.16669808025586,42.3595468799909],[-71.16667404179367,42.35954475227098],[-71.16665215437422,42.35954400281544],[-71.16662965151149,42.35954302289937],[-71.16658374491936,42.35953648699332],[-71.16656802399145,42.35953575539877],[-71.16656217667588,42.35953368039399],[-71.16655601741184,42.35953206182936],[-71.16655016889166,42.3595302154929],[-71.16654309671272,42.35952653712896],[-71.1665381780012,42.35952400657018],[-71.16653357000352,42.35952056312263],[-71.16652865249354,42.35951780479474],[-71.16652373858716,42.35951413268761],[-71.1665200483442,42.35951229170747],[-71.16651542830208,42.35951136362115],[-71.16651050836583,42.35950860528544],[-71.16650588833247,42.35950790587125],[-71.1665021884415,42.35950789514243],[-71.16649510059217,42.35950695989913],[-71.16648647354958,42.35950602019194],[-71.16647938209209,42.35950599962705],[-71.16647198109652,42.35950597816402],[-71.16646611811348,42.3595068758507],[-71.16645871954553,42.35950685439388],[-71.16645161964809,42.35950843450995],[-71.16644576148737,42.35950841751981],[-71.16642753537602,42.35951476838648],[-71.1664025056517,42.35952544249152],[-71.16639879611257,42.35952726111097],[-71.16639508777921,42.35952885106134],[-71.1663916853581,42.35953089924386],[-71.16638798184799,42.35953157451822],[-71.16638427230018,42.35953316446474],[-71.16638056637797,42.35953429707672],[-71.16637562957796,42.35953519744555],[-71.16637347009345,42.3595351911811],[-71.16637100109432,42.35953587003608],[-71.1663688452278,42.35953517776473],[-71.16636761193026,42.35953517418698],[-71.16636761675429,42.35953425951116],[-71.1663660751324,42.35953425503899],[-71.16636608116247,42.35953311169425],[-71.16636515980743,42.35953242300407],[-71.16636516824954,42.35953082232141],[-71.166363936166,42.35953081874716],[-71.1663639421961,42.3595296754024],[-71.16636271734085,42.35952807114197],[-71.16636149489295,42.35952601044387],[-71.16636026882877,42.35952440527962],[-71.16635535493634,42.35952073226503],[-71.16633876090485,42.35951016519081],[-71.16632186097472,42.35949936855416],[-71.1663148032916,42.35949294524846],[-71.16630743486563,42.35948674971315],[-71.16630160083182,42.35948215933661],[-71.16629944739562,42.35948146707095],[-71.16629699406397,42.35947871588303],[-71.16629453591504,42.35947710804333],[-71.16629208017882,42.3594750428657],[-71.16629086497669,42.35947160925286],[-71.16628994482967,42.35947069189311],[-71.16628841286723,42.35946908674073],[-71.16628842372386,42.35946702872016],[-71.16628719887177,42.35946542445889],[-71.16628720490326,42.35946428111412],[-71.16628628716137,42.35946267774397],[-71.16628629078026,42.35946199173713],[-71.16628352672083,42.35945992566461],[-71.16628261019301,42.35945832229793],[-71.16628045795659,42.35945717269054],[-71.16627768665963,42.35945647863161],[-71.16627400607321,42.35945280919218],[-71.1662681672195,42.35944913348971],[-71.16626233198562,42.35944477178014],[-71.1662393247179,42.35942252378541],[-71.16621693049414,42.35940096358255],[-71.16618836498674,42.35938030015291],[-71.16616072446855,42.359359639401],[-71.16614844704037,42.35934908482874],[-71.16613679591778,42.35933670269357],[-71.16613065720746,42.35933142540625],[-71.16612329124382,42.35932500029323],[-71.16611653709124,42.35931949344628],[-71.1660947258013,42.35930433683994],[-71.16607321800727,42.359290097601],[-71.16606002529467,42.35927771098175],[-71.16604559084487,42.35926692146248],[-71.16602532120508,42.35925176931929],[-71.16601087348695,42.3592434951542],[-71.16599550321853,42.35923476096301],[-71.16598229362447,42.35922557660044],[-71.16596570456252,42.35921409479582],[-71.1659561936475,42.35920514894498],[-71.16594638286352,42.35919437194227],[-71.16593535449367,42.35918107780533],[-71.1659310705797,42.3591746616321],[-71.16592494277685,42.35916755498548],[-71.16591879927007,42.35916319236256],[-71.16591419857971,42.35915860644883],[-71.16589852485214,42.35914872710031],[-71.16587454816637,42.35913516666857],[-71.16585056424238,42.35912274867284],[-71.16583026208106,42.35911377055689],[-71.1658198020739,42.35910939538626],[-71.16580995870689,42.35910479333405],[-71.16579797280194,42.35909766965773],[-71.1657909079625,42.3590923896606],[-71.16578477172663,42.35908688368914],[-71.16577279789794,42.35907701597544],[-71.16573686436827,42.35905038553401],[-71.16572979591508,42.35904602111279],[-71.16571657674176,42.35903866427046],[-71.16570365984664,42.35903245256798],[-71.16569136926537,42.35902441330479],[-71.16567969533087,42.35901637583284],[-71.16566155630993,42.35900649018521],[-71.16563481208473,42.3589913200495],[-71.16560867968072,42.35897706637637],[-71.1655905515614,42.35896512269667],[-71.16557150090209,42.35895271898649],[-71.16555981853365,42.35894628218505],[-71.16554628382093,42.35894029734052],[-71.16553460145734,42.3589338605365],[-71.16552384285134,42.35892765509033],[-71.16551769939551,42.35892329244572],[-71.16551278559875,42.35891961939466],[-71.16550327962852,42.35890975882985],[-71.16549532010418,42.35889898807224],[-71.16548797722498,42.35888821910766],[-71.16548094266948,42.3588774510394],[-71.16547453322313,42.35886508408149],[-71.16546782029522,42.35885180155049],[-71.16546047743094,42.35884103168372],[-71.16545220959686,42.35883026092642],[-71.16544270848689,42.35881948568053],[-71.16542581977428,42.35880640221723],[-71.16540924664619,42.35879194763454],[-71.16539112225095,42.35877931701575],[-71.1653766771428,42.35877058543215],[-71.16536498998936,42.35876506328655],[-71.16536129981431,42.35876322406944],[-71.16535637636187,42.35876138036338],[-71.16535269103545,42.35875862466955],[-71.16534562748494,42.35875334464822],[-71.16534102565619,42.35874898738013],[-71.1653345751243,42.35874439425916],[-71.16532415270632,42.35873270253244],[-71.16530758446883,42.35871756103121],[-71.16528946494994,42.35870401662056],[-71.16527626767333,42.35869254458566],[-71.16526338234773,42.35868015876721],[-71.16523452367827,42.3586567501721],[-71.1652213179542,42.35864710748624],[-71.16521425563727,42.3586415987877],[-71.16514812660859,42.35861122149434],[-71.16512782833439,42.35860132947411],[-71.16510599089547,42.35859143296831],[-71.16508846266915,42.35858246369741],[-71.16507154745834,42.35857441089911],[-71.1650484791774,42.35856382478016],[-71.16502479184334,42.35855369419849],[-71.16501065031322,42.35854587814246],[-71.1649971326913,42.35853669186694],[-71.1649876208041,42.35852797460366],[-71.1649768732199,42.3585197110849],[-71.16496489236386,42.35851167264482],[-71.1649541423604,42.35850363778935],[-71.1649387917961,42.3584912447517],[-71.1649243674114,42.35847862483764],[-71.16491854688962,42.35847151993129],[-71.16491365254255,42.35846418815041],[-71.164900497784,42.35844471175687],[-71.16489469180374,42.35843486282138],[-71.1648873490807,42.35842409381733],[-71.1648812105631,42.35841881646225],[-71.16487538157679,42.35841331133634],[-71.164868019477,42.35840620103486],[-71.16485972273097,42.35840091738945],[-71.16484773100665,42.35839470828539],[-71.16482957775544,42.35838756653307],[-71.16481298185285,42.35837745657399],[-71.16479883675335,42.3583703264986],[-71.1647831646091,42.35836044699981],[-71.1647604096202,42.35834894704531],[-71.16473642621304,42.35833652881509],[-71.16471121923531,42.35832204895978],[-71.1646992336024,42.35831492516771],[-71.16468632180322,42.35830779867397],[-71.16467770221524,42.35830503037205],[-71.16467032318718,42.35830134919595],[-71.16465494484753,42.35829421550676],[-71.16464295437098,42.35828777861246],[-71.16463096511703,42.35828088257487],[-71.16462021155986,42.35827376236728],[-71.16460946528068,42.35826549881725],[-71.16460701692056,42.35826206158907],[-71.16460456249268,42.35825953993354],[-71.1645999643943,42.35825472440064],[-71.16459505313081,42.35825036439898],[-71.16458676612258,42.35824325228198],[-71.16457693511217,42.35823681987817],[-71.1645652602521,42.35822901096067],[-71.16455788002078,42.35822533067404],[-71.16455080810356,42.35822165218652],[-71.16454342302363,42.35821888657495],[-71.16453511057017,42.35821657470259],[-71.16451231929635,42.35821170609609],[-71.16447412547531,42.35820473449656],[-71.164434385216,42.35819844528998],[-71.16442114089142,42.35819566257412],[-71.16440942117985,42.35819631349339],[-71.16439001535383,42.35819282677663],[-71.16436138062122,42.35818542568955],[-71.16433242544423,42.35818031038543],[-71.16430962449212,42.35817749976322],[-71.16428436185436,42.35817376726037],[-71.16426740923447,42.35817280308198],[-71.1642603179272,42.35817278238026],[-71.1642516886723,42.35817207117058],[-71.16424214174641,42.35816998524583],[-71.164203643304,42.35816209797674],[-71.16416422113232,42.35815397932476],[-71.16413156738886,42.35814839582434],[-71.164098292159,42.35814395386213],[-71.16408134076376,42.35814298965985],[-71.16406469647322,42.35814179767961],[-71.16402525125693,42.35813825236344],[-71.16401663051136,42.35813571178061],[-71.16400338864601,42.35813292902368],[-71.16399169444358,42.3581285500792],[-71.16397816248333,42.35812210771105],[-71.16397077865396,42.3581193420662],[-71.16396400781774,42.3581168068845],[-71.16395046614511,42.35811219386508],[-71.16393260317192,42.35810848290664],[-71.16391597225551,42.35810500421844],[-71.16390149470283,42.35810244651118],[-71.1638882370564,42.3581024077654],[-71.1638762138932,42.3581023726261],[-71.16383396469533,42.35810384984505],[-71.16380311837582,42.3581065037461],[-71.16377166149576,42.3581080124911],[-71.16373928209295,42.35810906118508],[-71.16371893314525,42.35810900168547],[-71.16369704868883,42.35810779432933],[-71.16367670338869,42.35810704881529],[-71.16365388790265,42.35810698209098],[-71.1636298391472,42.35810691175503],[-71.1636218228954,42.3581068883086],[-71.16361689954469,42.35810504452773],[-71.16361320460004,42.35810411903002],[-71.16360950965546,42.35810319353213],[-71.16360581835887,42.35810158202715],[-71.16360089622509,42.35809950957668],[-71.16359627997691,42.35809789536583],[-71.16359135541389,42.35809605158038],[-71.16358673673199,42.35809512337968],[-71.16358180730298,42.35809442294236],[-71.16357224946623,42.35809439498293],[-71.16348932670518,42.35809140830605],[-71.16347391084014,42.35809136319742],[-71.16345818179454,42.3580920031879],[-71.16342827623008,42.35809191567074],[-71.16340793580497,42.35809025543318],[-71.16338728463009,42.35808905162759],[-71.16324670412406,42.3580861246732],[-71.16319643501713,42.35808849286438],[-71.16316158055359,42.35809113485506],[-71.16314831803946,42.35809201069996],[-71.16313474233706,42.35809380031616],[-71.16312518450053,42.35809377231959],[-71.16311439339484,42.35809374070961],[-71.16307492025454,42.35809522578167],[-71.16303420775299,42.35809785057166],[-71.16301972049295,42.35809712210528],[-71.16300522957886,42.35809707964405],[-71.16298363274792,42.35809976042842],[-71.16296326918895,42.35810221615044],[-71.16294382813474,42.35810558926274],[-71.16287440798439,42.35811453268807],[-71.16285498398797,42.35811447574702],[-71.16283217216134,42.35811349418015],[-71.16281060090803,42.35811160155586],[-71.1627973383898,42.35811224868775],[-71.16278409048833,42.35811060913534],[-71.16276959348154,42.35811148131679],[-71.16276251071467,42.35810985983981],[-71.16275511719277,42.35810869479621],[-71.16274709484571,42.35810981463376],[-71.16273846317294,42.35810978932102],[-71.1627218055004,42.35811134117782],[-71.16269159039655,42.35811125256132],[-71.16268079807425,42.35811122090709],[-71.16267124511266,42.35811027819687],[-71.1626555209263,42.35811023207422],[-71.16264133344902,42.35811110514743],[-71.16262683887349,42.35811174864551],[-71.16261819988901,42.35811286666508],[-71.16261110371072,42.3581137605376],[-71.16259075597645,42.35811370084196],[-71.16257163054614,42.35811524543693],[-71.16255712987018,42.35811703227109],[-71.16254263407262,42.35811790442753],[-71.16252937642378,42.3581178655251],[-71.16251612365448,42.35811691194521],[-71.16250441125275,42.35811619155677],[-71.16249084528684,42.35811615174512],[-71.16247172106725,42.35811769632702],[-71.16242359426516,42.35812304321122],[-71.16233472805078,42.35813604533521],[-71.16230571324785,42.35814213430075],[-71.1622902741777,42.35814643374406],[-71.16227483876774,42.35815004717834],[-71.1622479858384,42.35815545646022],[-71.16222020917263,42.35816063435016],[-71.16220630436138,42.35816608165127],[-71.16219766413379,42.35816765698078],[-71.16219024985718,42.35817037927352],[-71.16218068224786,42.35817195187773],[-71.16217234668038,42.35817398544535],[-71.1621516661924,42.35817826947332],[-71.1621495043048,42.35817894914005],[-71.16214579350113,42.35818099629186],[-71.16214209002473,42.35818167142965],[-71.16213869852984,42.3581816614662],[-71.16213622710293,42.35818256889591],[-71.16213251751996,42.3581843873783],[-71.16212913579528,42.35818254806277],[-71.1621266692535,42.35818254081637],[-71.16212420392554,42.35818253357345],[-71.16212174226906,42.35818161165103],[-71.16212051266216,42.35818092202085],[-71.16211835322432,42.35818091567651],[-71.16211681652109,42.35817999647144],[-71.16211589278181,42.35817999375751],[-71.16211466561771,42.35817884678928],[-71.16211219907606,42.35817883954257],[-71.16211096580523,42.3581788359192],[-71.16211003963829,42.35817883319809],[-71.16210880758128,42.35817882957824],[-71.1621072647789,42.35817882504539],[-71.16210633493272,42.35817996567629],[-71.16210510166191,42.35817996205282],[-71.16210386350546,42.35818087310528],[-71.16210262535655,42.35818155548514],[-71.16210014781734,42.35818360715921],[-71.16209921553295,42.35818520422767],[-71.1620976629591,42.35818702904653],[-71.16209641625248,42.35818954078169],[-71.16209547664215,42.35819228209173],[-71.16209547175646,42.35819319676763],[-71.1620942323782,42.35819433648893],[-71.16209422870911,42.35819502339614],[-71.16209422382339,42.35819593807204],[-71.16209267978884,42.35819661865278],[-71.16209267368166,42.35819776199764],[-71.1620905056931,42.3581993563356],[-71.16208803915067,42.35819934908836],[-71.16208587603538,42.35820025832315],[-71.16207352866493,42.35820296611356],[-71.16206179914778,42.35820567481796],[-71.1620494517782,42.35820815483353],[-71.16203648777369,42.3582108599077],[-71.16191109685695,42.35825050905436],[-71.16179062420458,42.35829291659898],[-71.16165953892,42.35835953298769],[-71.16160418721768,42.35838955491025],[-71.16155099000564,42.35842072650942],[-71.16154136973508,42.35843213182544],[-71.16153422211103,42.3584428584001],[-71.16152799334354,42.35845427369625],[-71.16152207777722,42.35846500389619],[-71.16149285228484,42.35851042371603],[-71.16146278378095,42.3585405199857],[-71.16143363408813,42.35857176231497],[-71.16141810918229,42.35859206846707],[-71.16140474128129,42.35861260964014],[-71.16139383503501,42.35863407274952],[-71.16139006787705,42.35864663864812],[-71.16138784354177,42.35865898041655],[-71.16138781049405,42.35866515447801],[-71.1613865441659,42.35867132490829],[-71.16138404455702,42.35867749170738],[-71.16138278189548,42.35868297703106],[-71.16136353752262,42.3587069300844],[-71.16133440239432,42.35873542836016],[-71.16131891536318,42.3587486466613],[-71.1613844211493,42.35878016768821],[-71.161433622734,42.3588043231595],[-71.16143144980276,42.35880706083309],[-71.16127907745633,42.35899092222512],[-71.16127628786867,42.35899365807949],[-71.16119755715688,42.35895592387556],[-71.16110990234915,42.35891541925042],[-71.16105114040643,42.35889146413765],[-71.1609596959619,42.35892503813069],[-71.16092481397929,42.35893271015937],[-71.16088900826178,42.35893992210867],[-71.16085258954688,42.35894690356657],[-71.16081770019507,42.35895571890374],[-71.16076361518074,42.35897956999779],[-71.16071075237441,42.35900548272487],[-71.16064582449263,42.35903890602118],[-71.16063467705816,42.35904779225672],[-71.16062383304511,42.35905759227608],[-71.16061514727801,42.35906739956373],[-71.1606080129331,42.35907538204876],[-71.16060118690845,42.35908336544323],[-71.16059252076423,42.3590895140265],[-71.16058384847902,42.35909680685393],[-71.160575496793,42.359101812101],[-71.16056590935328,42.35910727284588],[-71.16055509354057,42.35911181347372],[-71.16054428385193,42.35911521255648],[-71.16053471482338,42.35911724146456],[-71.16052391495448,42.35911881029388],[-71.160514353278,42.35911946898734],[-71.16050355095871,42.35912149425231],[-71.16048165639516,42.35912211563588],[-71.16046128627325,42.35912571425884],[-71.16043627533041,42.35913272926408],[-71.16041063547569,42.3591418004596],[-71.16036028809162,42.35915834487913],[-71.16031675812464,42.3591689648272],[-71.16027353157244,42.35918027077234],[-71.16018706001587,42.35920608307459],[-71.16017872178645,42.35920857473538],[-71.16009776431241,42.35924126433951],[-71.16001955708292,42.3592785354675],[-71.16000502657221,42.35928581003294],[-71.1599979081078,42.35929081888383],[-71.15999202046699,42.35929629051873],[-71.15998459244337,42.35930152802639],[-71.15996539528471,42.3593165636559],[-71.1599459217532,42.35932565297926],[-71.15992551464117,42.35933634024646],[-71.15990512350402,42.35934405481441],[-71.15989060650416,42.35934858533498],[-71.15987514607446,42.35935677182409],[-71.15986062412017,42.35936267436137],[-71.15984608744455,42.35937086267828],[-71.15983494228273,42.35937952017035],[-71.15982533014872,42.35938955333067],[-71.15982067824241,42.35939457036651],[-71.1598157192572,42.35939912914878],[-71.15980983772812,42.35940368520198],[-71.15980488118507,42.3594080153185],[-71.159732636295,42.3594256380506],[-71.15961501606726,42.35945295936862],[-71.15955856449308,42.35945805174463],[-71.15954036846,42.35945891257003],[-71.15952124374554,42.35946068533334],[-71.15950211290982,42.35946314409286],[-71.15948389225673,42.35946857828699],[-71.15946720829665,42.35947493171839],[-71.15943076943672,42.35948534275485],[-71.1593718019746,42.35949957448999],[-71.15936008075077,42.35950022579124],[-71.15934773914931,42.35950201861633],[-71.15933600805587,42.35950472793858],[-71.15932365661871,42.35950812143962],[-71.15931315267977,42.35951174908471],[-71.15930448756565,42.35951789757393],[-71.15929736778322,42.35952313595037],[-71.15929024676811,42.35952860299518],[-71.15928280759228,42.3595356698047],[-71.15927599734428,42.35954090909677],[-71.15926856678708,42.35954637522322],[-71.15925775324693,42.3595506879636],[-71.15924693725488,42.35955523026848],[-71.15923581295961,42.35955954208607],[-71.15922408185556,42.35956225049657],[-71.15921173531063,42.35956495798256],[-71.1592000005039,42.3595683532975],[-71.15918797092307,42.35956923234],[-71.15917594012794,42.35957011137761],[-71.15916391668848,42.35957007574567],[-71.15915189082128,42.3595700401053],[-71.15913986616795,42.35957000446726],[-71.15912661928819,42.35956813582521],[-71.15911337860705,42.35956466649235],[-71.15910013544443,42.35956188316815],[-71.15908813542062,42.35955750281972],[-71.15907490583518,42.35955197546256],[-71.15906783409328,42.35954829573869],[-71.15905952905494,42.3595446123583],[-71.15905090950757,42.35954230098037],[-71.15904136503494,42.35953952771407],[-71.15903305137167,42.35953744501384],[-71.15902350194672,42.35953581599428],[-71.15901516856319,42.35953739199474],[-71.15900652190575,42.3595401104284],[-71.15899787281985,42.3595428288542],[-71.15898983787885,42.35954646379045],[-71.15898118878651,42.35954918311527],[-71.15897438837393,42.35955259303854],[-71.15896696272519,42.3595571435697],[-71.15893915681959,42.35956758004959],[-71.15891012006799,42.35957755642757],[-71.15888265206699,42.35958250485508],[-71.15885395815287,42.35958607940502],[-71.15879717341151,42.35959574296964],[-71.15875518329517,42.35960636599534],[-71.15873449717316,42.35961156408289],[-71.15871318946371,42.35961767501227],[-71.15869499337319,42.3596185357039],[-71.158677105602,42.359619398208],[-71.15865892432188,42.35961751396724],[-71.15864104518805,42.35961677578366],[-71.15856767381685,42.35961449903108],[-71.15847516282089,42.35961696842007],[-71.15842828758963,42.35961865949145],[-71.15838264565944,42.35962035330677],[-71.15834193694786,42.3596218321866],[-71.15818097168892,42.35962501354949],[-71.15808975084104,42.35961673795375],[-71.15804260559898,42.35961133831636],[-71.15799730538993,42.35960663016389],[-71.15798744516164,42.35960568615168],[-71.15784228240129,42.35959450766341],[-71.15775070879798,42.35959423518802],[-71.15765943855136,42.35959510600517],[-71.15756694737252,42.35959368818969],[-71.15747445868382,42.35959181116165],[-71.15743962051339,42.3595910213809],[-71.15726204541302,42.35958683356101],[-71.15724508877948,42.35958678302684],[-71.15706601921315,42.35957367222098],[-71.15701333045041,42.35956711226857],[-71.15695909387668,42.35956169103792],[-71.15692826143953,42.35956159906797],[-71.1568968024318,42.35956333460086],[-71.15683450602181,42.35956589280546],[-71.15675870164787,42.3595576630527],[-71.15668165034037,42.35955194582595],[-71.15660858122791,42.35955081298841],[-71.15658329366872,42.35955165217197],[-71.156559244372,42.35955158035754],[-71.1565352000415,42.35955059386266],[-71.15650747444481,42.35954616627972],[-71.15649454094375,42.3595433826797],[-71.15648007704912,42.35953808000927],[-71.15646808220635,42.3595325560396],[-71.15645516115127,42.35952725797451],[-71.15644069350994,42.35952286997808],[-71.15642745419943,42.35951940033957],[-71.15638152880521,42.3595165190628],[-71.15633497185969,42.35951637995117],[-71.15624246967577,42.35951678951738],[-71.1561965256214,42.35951756687186],[-71.15614996124688,42.35951857102592],[-71.1561126540248,42.35951845947875],[-71.15606456664692,42.35951625762839],[-71.15601648794679,42.35951268374853],[-71.15586512820269,42.35950697146897],[-71.1558086862319,42.35951023265351],[-71.1557522430109,42.35951372247921],[-71.15572604168302,42.35951250068607],[-71.15571617531135,42.35951247115081],[-71.1557078542939,42.35951176022324],[-71.1556983012248,42.3595108169341],[-71.15568967810664,42.35950896173797],[-71.15568105872293,42.35950642053475],[-71.15567305349872,42.35950433851468],[-71.1556706018422,42.35950158710379],[-71.15566721899037,42.35949997626763],[-71.1556644590102,42.35949722393343],[-71.15566231567345,42.35949447434569],[-71.15566078277118,42.35949286814788],[-71.15565863943965,42.35949011765983],[-71.15565772318068,42.3594885142085],[-71.1556549594673,42.35948644788063],[-71.15565281613624,42.35948369739244],[-71.1556512820108,42.35948209299139],[-71.15564912869606,42.35948139962609],[-71.15564173891009,42.35947931944656],[-71.15563588075501,42.3594793019058],[-71.15562879801791,42.35947767998997],[-71.15562139447772,42.35947857251136],[-71.15561553632277,42.35947855496954],[-71.15560813281331,42.35947921881758],[-71.15560226967857,42.35948011595046],[-71.15559517200292,42.35948123805865],[-71.1555886884801,42.35948282025097],[-71.15558282036967,42.35948463115793],[-71.15548189257476,42.35950376603005],[-71.15545442560979,42.3595082571978],[-71.15536281473624,42.35951507155864],[-71.15527027263985,42.35952302641807],[-71.15517897129571,42.35952961288783],[-71.15510093535445,42.35953486703234],[-71.15501581795218,42.35953804182908],[-71.15493039217878,42.35954144521042],[-71.1548606734382,42.35954832485467],[-71.15479218555683,42.35955520725095],[-71.15471043967466,42.35956227937543],[-71.15462870001156,42.35956820899793],[-71.15446267536915,42.35959446409273],[-71.15428615879914,42.3596222890182],[-71.15419816256679,42.35964443437999],[-71.15415492834062,42.35965688226856],[-71.15411262032715,42.3596691033536],[-71.15411046205318,42.35966909686257],[-71.15402491474843,42.35969467954577],[-71.15393967069583,42.35972117776814],[-71.1539368957699,42.35972116941832],[-71.15385288494565,42.35974767128727],[-71.1537682374131,42.35977760126668],[-71.153741977149,42.35978735512779],[-71.15366008941764,42.35982003740749],[-71.15357942985737,42.35985386669112],[-71.15357108627819,42.35985727164737],[-71.1534928857149,42.35989248031272],[-71.15345300769575,42.35991133998106],[-71.153413445457,42.35992905722438],[-71.15338068399201,42.35994313618976],[-71.15334112676476,42.35995971006047],[-71.15330125492422,42.35997742633199],[-71.15322058995717,42.3600121700379],[-71.15321471670576,42.36001489729949],[-71.1530700436676,42.36008306274566],[-71.15301681080453,42.36011926109111],[-71.15300009341055,42.36013155897162],[-71.1529818318655,42.36014430953561],[-71.15296265285832,42.3601556852929],[-71.15293855943135,42.3601636152282],[-71.15291230267889,42.36017245512055],[-71.15288699219585,42.36017763820167],[-71.15280978741599,42.36019958639928],[-71.15274240006639,42.36023071109067],[-71.15267378059512,42.36026160334899],[-71.152608903687,42.36028473200405],[-71.15254370961154,42.36030946037223],[-71.15247605262921,42.36033349524368],[-71.15241024305163,42.36035799300382],[-71.15233799501692,42.36037561108699],[-71.15226452489846,42.3603913960494],[-71.15212507246098,42.36040698140352],[-71.1520180233734,42.36041740606709],[-71.15196873867414,42.3604083378065],[-71.15195704731207,42.36040395764792],[-71.15195212290874,42.36040211336499],[-71.15194627976707,42.36039935161133],[-71.15189073657176,42.36040741571917],[-71.15183549170666,42.36041685363904],[-71.15174536160764,42.36043441631483],[-71.15170091318906,42.36044320084416],[-71.15165646598199,42.36045198355941],[-71.15157221673564,42.36046522093356],[-71.15148088845,42.36047637784101],[-71.15138926571136,42.36048478971271],[-71.15129672170181,42.36049274047283],[-71.1512282386622,42.3604987069743],[-71.15113693422802,42.36050551890247],[-71.1510903614312,42.36050812169261],[-71.15104440528343,42.36051072723519],[-71.15095187128162,42.36051684926817],[-71.1508605579619,42.36052526075779],[-71.15084142641442,42.3605279476488],[-71.15075009285935,42.36054001865065],[-71.15065966910309,42.36055483641435],[-71.15056985443326,42.36057079932048],[-71.15052541081879,42.36057866691979],[-71.15047943059575,42.36058561604213],[-71.15038930492496,42.3606022647802],[-71.15038683829019,42.36060225728203],[-71.15038467492955,42.36060316539592],[-71.1502942510024,42.36061798197187],[-71.15024857272842,42.36062607618327],[-71.15020258738764,42.36063393896944],[-71.15011279140604,42.36064670106019],[-71.15005880216478,42.36065202404066],[-71.14996627418748,42.36065700193689],[-71.1498737689723,42.36065786462202],[-71.14982659454195,42.36065772099844],[-71.14978127008948,42.36065758298892],[-71.14968875727804,42.36065981663727],[-71.14966191740436,42.36066247895271],[-71.14956937924649,42.3606692858793],[-71.14947805918251,42.36067884051479],[-71.14943239090309,42.36068510415197],[-71.14938703733496,42.360689996695],[-71.1492953999557,42.36070137959882],[-71.14925590843589,42.36070560394771],[-71.14916675038593,42.36071447891197],[-71.14907421209875,42.36072128544008],[-71.14898289188493,42.36073083968228],[-71.1489467931694,42.36073507428012],[-71.14885669227392,42.36074714754238],[-71.14876534659675,42.36076127498578],[-71.1486749208454,42.3607760911846],[-71.14865331868265,42.36077945528231],[-71.14856319607127,42.36079541568236],[-71.148474292758,42.36081389513693],[-71.14842612967915,42.36082518154628],[-71.14833934519021,42.36085075622355],[-71.14829855916638,42.36086595256957],[-71.1482562402549,42.36088000085009],[-71.14824172206347,42.36088453079901],[-71.14820001349268,42.36089949471559],[-71.1481576996243,42.36091262828504],[-71.1480733611999,42.36094186900602],[-71.14801094352974,42.36096568861398],[-71.1479287391042,42.36099928053896],[-71.14784961790546,42.36103288184575],[-71.1477701781,42.36106831240321],[-71.14775781427744,42.36107376267898],[-71.1477460696627,42.36107875750474],[-71.14770742887683,42.36109647560988],[-71.14766785676541,42.36111510553931],[-71.14758933277841,42.36115236725767],[-71.14751326394874,42.36119146582759],[-71.1474903773429,42.36120374400074],[-71.14748076807119,42.36121286145045],[-71.14747115624796,42.36122243623671],[-71.14746278157445,42.36123132879658],[-71.14743487872391,42.36125868397185],[-71.14737697708073,42.36130218292001],[-71.14731415605019,42.36134315225555],[-71.14719258968196,42.36141298187969],[-71.14712857980051,42.36144571435428],[-71.1470636460091,42.36147867173021],[-71.14700204906528,42.36152101668652],[-71.1469560264213,42.36159062055191],[-71.14694859826285,42.36159585721865],[-71.14672452666515,42.36174494968814],[-71.14672112093395,42.36174745462488],[-71.14660795100114,42.36180427508489],[-71.14652300972331,42.36188587882929],[-71.14650997528831,42.36190093205675],[-71.14653512726532,42.36192433395794],[-71.14635411926932,42.3620369704339],[-71.14622014036998,42.36212025343918],[-71.14613007540909,42.36218057368412],[-71.14605392511268,42.36223384873266],[-71.14597311634627,42.36229305577717],[-71.14592325897642,42.3623313183822],[-71.1458464340988,42.36239465370723],[-71.14579561313974,42.36243977436541],[-71.1457314631184,42.36249743093348],[-71.14565551277792,42.3625701434966],[-71.14558199579993,42.36264835164781],[-71.14551528766833,42.36272223685958],[-71.14548889810423,42.36275439834498],[-71.14548885838144,42.36276148617006],[-71.14548723210025,42.36277657354292],[-71.14548224483643,42.36278616241567],[-71.14547542162887,42.36279323023142],[-71.14546460409285,42.36279777123677],[-71.14545348975531,42.36280025237337],[-71.14544391968543,42.36280228002412],[-71.14543559450551,42.36280225435954],[-71.14543312778557,42.36280224675511],[-71.14543094505227,42.36280658480377],[-71.14540674967782,42.36283235110438],[-71.14540519772233,42.36283417569966],[-71.14539806103835,42.36284215633405],[-71.1453930635007,42.3628535745512],[-71.14538933906161,42.36285790784568],[-71.14538469344681,42.36286155228232],[-71.14538128118772,42.36286520142183],[-71.14537756572071,42.36286793403606],[-71.14537508874254,42.36286975577881],[-71.14537260791833,42.36287226352717],[-71.14537012196597,42.36287568594967],[-71.14536794307176,42.36287933799138],[-71.14536514749656,42.36288298813161],[-71.14536295449983,42.36288915552733],[-71.14536199871048,42.36289464072028],[-71.14535822426808,42.36290789208722],[-71.14533854880845,42.36295242255493],[-71.14533386343851,42.36296315571441],[-71.14532887613679,42.36297274458008],[-71.14531917781564,42.36299763997528],[-71.14531416749799,42.36301111620181],[-71.14530947314412,42.36302345003997],[-71.14530446525022,42.36303692627347],[-71.14529853503163,42.36304948497228],[-71.14529477588543,42.36306022098645],[-71.14529101552397,42.36307095699671],[-71.14528758530129,42.36307780659256],[-71.14528385058337,42.36308396923175],[-71.14527887608259,42.36309127230988],[-71.14527139125983,42.36310634070971],[-71.1452632692224,42.3631250677041],[-71.14525576387356,42.36314379479941],[-71.14525354014795,42.36315522156528],[-71.1452507060131,42.36316596043085],[-71.14524600521824,42.36317943850895],[-71.14524099102826,42.36319359983707],[-71.14523875946642,42.36320685595824],[-71.14523718062867,42.36321325481831],[-71.14523498369205,42.36322033688898],[-71.14522904055409,42.36323541004109],[-71.14522157884618,42.36324613553183],[-71.14521564595783,42.36325938023515],[-71.14520942004685,42.36327010863688],[-71.14520472950115,42.36328175646442],[-71.14519008221293,42.36330938065055],[-71.14517451116684,42.36333677331233],[-71.14516332489531,42.36335205895777],[-71.14515244823383,42.36336711868537],[-71.14514652943038,42.36337784803098],[-71.1451390343434,42.36339451799741],[-71.14513400200987,42.36341233892425],[-71.14513179621268,42.36342056432779],[-71.14512897622562,42.36342855916372],[-71.14512303425168,42.36344363321361],[-71.14511585383951,42.36345938945934],[-71.14510743627079,42.36347559923212],[-71.14509774163436,42.36349980860029],[-71.14509397223243,42.36351214528266],[-71.14508896425392,42.3635256215053],[-71.14508086142325,42.36354068978507],[-71.14505156403966,42.36359639545749],[-71.14502479495297,42.36364113264659],[-71.14501484325135,42.36365619341463],[-71.14500304660788,42.36367033469772],[-71.14499343146949,42.36368036660863],[-71.14498258038401,42.36369085204864],[-71.14496551106427,42.36371046609205],[-71.14496177628267,42.36371662781965],[-71.14495958192917,42.36372302477529],[-71.14495677852265,42.36372827558813],[-71.14495332647822,42.36373878386534],[-71.1449508032525,42.36374883676443],[-71.14494487154383,42.36376185278378],[-71.1449389577974,42.36377166834401],[-71.1449352319895,42.36377623029138],[-71.1449324312154,42.36378079509434],[-71.14493024327966,42.36378604780656],[-71.14492897909439,42.36379153204293],[-71.14492521863244,42.36380226713922],[-71.14492147869699,42.3638093453399],[-71.14490339058763,42.36384564841784],[-71.1448766315609,42.36388855622199],[-71.14487196786777,42.36389540199602],[-71.14486607849514,42.36390087195053],[-71.14485863840775,42.36390793782377],[-71.14485027841793,42.36391408616616],[-71.14484068504471,42.36392023069936],[-71.14483325393972,42.36392569589147],[-71.14482828574555,42.36393185470602],[-71.14482363103181,42.36393709979851],[-71.14481990648984,42.36394143307353],[-71.14481647873694,42.36394782531702],[-71.14481148100703,42.36395924350607],[-71.14480897828932,42.36396563860602],[-71.1448052486085,42.36397088655445],[-71.14480182598874,42.36397636412351],[-71.144783503896,42.36399940345672],[-71.14477387968368,42.3640110360279],[-71.14474877395384,42.36403405530431],[-71.14473422133538,42.36404475705955],[-71.1447208982383,42.36405614952849],[-71.14469176213484,42.36408304377429],[-71.14465950914928,42.36411587296656],[-71.14464585326958,42.36413160917512],[-71.1446315781257,42.36414779991328],[-71.14460119834791,42.36417629100036],[-71.14455997487002,42.36421435191152],[-71.14453952888648,42.36423121048552],[-71.14451816299132,42.3642471515229],[-71.14449709393719,42.36426492285336],[-71.14449242889008,42.36427199727985],[-71.14448404311243,42.36428271896453],[-71.14448032366774,42.36428613755433],[-71.14447813953267,42.36429070425192],[-71.14447442008719,42.3642941228415],[-71.14447070449711,42.36429685542556],[-71.1444660638648,42.36429958515],[-71.14445739151556,42.36430664628755],[-71.14445150334909,42.36431188845212],[-71.14444654801218,42.36431553189275],[-71.14443569030018,42.36432716062201],[-71.14442361583333,42.36433604151936],[-71.1444177405923,42.36433876742506],[-71.1444106293184,42.3643421755264],[-71.14440413345322,42.36434581420243],[-71.14439825042577,42.36435014079012],[-71.14439236739751,42.36435446737751],[-71.14437563563719,42.36436882200887],[-71.14434994764375,42.3643856643408],[-71.14433541544379,42.36439270824956],[-71.14432243005078,42.36439907092253],[-71.14431407387322,42.3644043045477],[-71.14430540926956,42.36440976679112],[-71.14429704530706,42.36441660019772],[-71.14428495415858,42.36442822509808],[-71.14427162961384,42.36443984618247],[-71.14426450803268,42.36444508362238],[-71.14426079242462,42.36444781619955],[-71.14425615177221,42.36445054591549],[-71.14424750259502,42.36445326323273],[-71.14423203632111,42.36446190494631],[-71.14421749250988,42.36447100775649],[-71.14420079798491,42.36447873007648],[-71.14416803082685,42.36449303507158],[-71.14413681553705,42.3645059737245],[-71.1441043476201,42.36452210900681],[-71.14408857046583,42.36453097751128],[-71.14407157262984,42.36453801375693],[-71.14405488707163,42.36454413627676],[-71.14402339048232,42.36455204323485],[-71.1439922010247,42.36455995023467],[-71.1439307340402,42.36457873977376],[-71.1438970545282,42.36459098291504],[-71.14386214553896,42.36460230845007],[-71.14384454905993,42.36460591272206],[-71.14367474598092,42.36464288997334],[-71.14359017719896,42.36465703430987],[-71.14355808957862,42.36466036405998],[-71.14354575045809,42.36466124140995],[-71.14353402932899,42.36466189110126],[-71.14348342915576,42.36466722240633],[-71.14343282389295,42.36467323969074],[-71.1433125419608,42.36467744018795],[-71.14313032312238,42.36467413088334],[-71.14297649177726,42.36466747932418],[-71.14283352885975,42.36464736963563],[-71.14274481089268,42.36463177304882],[-71.14272787503539,42.36462737476627],[-71.14271247825359,42.36462366908011],[-71.14269061002858,42.36461925637039],[-71.14266905136942,42.36461484461825],[-71.14263917650058,42.36460834807139],[-71.14260931180762,42.36460048131426],[-71.14258651346667,42.36459675081159],[-71.14256340798862,42.36459302025021],[-71.14254801510648,42.36458862763644],[-71.14253230482694,42.36458583564158],[-71.1425024260252,42.3645802546369],[-71.14248671567638,42.36457769040772],[-71.14247100419335,42.36457489750045],[-71.14246146090238,42.36457212286511],[-71.14245346322252,42.36456866881702],[-71.14244484497888,42.36456589705594],[-71.1424220620883,42.36455965207195],[-71.14239435079746,42.36455247707055],[-71.1423669478563,42.36454530392153],[-71.14231154600017,42.36452729429021],[-71.14225644734064,42.36451020206547],[-71.14224197962918,42.36450558271542],[-71.1422275078759,42.36450210761346],[-71.14220842650158,42.36449564542838],[-71.14219180940914,42.36448941957879],[-71.14217582963349,42.36447976562263],[-71.14216782931416,42.36447699756366],[-71.14216044844328,42.36447331584122],[-71.1421509103558,42.36446962650636],[-71.14208719996722,42.36444884774655],[-71.1420668671963,42.36444535438569],[-71.1420456157739,42.36444094347231],[-71.14202744395128,42.36443722815726],[-71.14201297618798,42.36443283835077],[-71.14199850842671,42.36442844854248],[-71.14198066566642,42.36442107548479],[-71.14193514668497,42.36440035326432],[-71.14191978496089,42.36439047252382],[-71.14190380007362,42.36438173320337],[-71.14187182901773,42.36436448322424],[-71.14183706601987,42.36435019728405],[-71.14180937042572,42.3643402781201],[-71.1417899795006,42.36433404357353],[-71.14177089304168,42.36432849598938],[-71.14175642920627,42.36432342014518],[-71.14174319617229,42.36431880547788],[-71.14172165200993,42.36431164952285],[-71.14170009878559,42.3643060942428],[-71.14163916650679,42.36428463787003],[-71.14162931372987,42.36428186310129],[-71.14162346549841,42.36428001549926],[-71.14157342892112,42.36434937601287],[-71.1416097219363,42.36436572485265],[-71.14158295535434,42.36440931788694],[-71.14118136056287,42.36426720348295],[-71.14120105362578,42.36422015838681],[-71.1412453621108,42.36423698969192],[-71.14128148705248,42.36417398876055],[-71.14127933381329,42.36417306735497],[-71.14127194386901,42.36417121492654],[-71.14126487265165,42.36416753321167],[-71.14125164357677,42.3641622324823],[-71.14120609518818,42.36414676934621],[-71.14119039416249,42.36414237558844],[-71.1411783842162,42.3641395940512],[-71.14116514606889,42.36413589489123],[-71.14115222016642,42.36413150978616],[-71.1411389768383,42.36412872439666],[-71.1411195756652,42.36412431908426],[-71.14110047773492,42.36412060073233],[-71.14108816455676,42.36411713222196],[-71.14107646296613,42.36411435163625],[-71.14105735976733,42.36411177662313],[-71.1410225425934,42.36410709361024],[-71.14098771373378,42.3641044704033],[-71.14095874476423,42.36410163500548],[-71.14093099757882,42.36410063369485],[-71.1409177437929,42.36409990719987],[-71.14090479974607,42.36409872252484],[-71.14087705645751,42.3640970351959],[-71.1408508599211,42.36409489624546],[-71.1408348350111,42.3640932445972],[-71.14081727363897,42.36409044658667],[-71.14080033537395,42.36408673492918],[-71.1407763011737,42.36408391489664],[-71.14075226194512,42.36408155308874],[-71.14073192667854,42.36407874640098],[-71.14071159141886,42.36407593880931],[-71.14067306374508,42.36407307347944],[-71.1406129622359,42.3640683122479],[-71.140584289947,42.36406753663541],[-71.14055531710399,42.36406538894179],[-71.1405349792575,42.3640630386558],[-71.14051309838271,42.36406091221586],[-71.14048813795296,42.36405808922812],[-71.14046193122456,42.36405732129186],[-71.14045453213359,42.36405729816219],[-71.14044589333112,42.36405795717404],[-71.14044095450932,42.36405908509708],[-71.14043632411928,42.36405998531165],[-71.14042798967171,42.36406156086392],[-71.14041843094385,42.36406153098029],[-71.14041009520594,42.36406333339917],[-71.14039930309359,42.36406329965785],[-71.14037371305109,42.36406253452984],[-71.14034997690499,42.3640613169479],[-71.14033794612175,42.36406242269004],[-71.14032592062537,42.36406238508498],[-71.14030680316951,42.36406232529995],[-71.14028614276947,42.36406226068618],[-71.14025961712407,42.36406377753108],[-71.1401960575125,42.36407066756308],[-71.1401457555569,42.36407759904037],[-71.1400976015178,42.36408659526938],[-71.14004945917615,42.36409353346232],[-71.14002262394662,42.36409505018404],[-71.13999763228607,42.36409771603246],[-71.13990384035893,42.364107026669],[-71.13988100190012,42.36411061482369],[-71.13983284267827,42.36412029694326],[-71.13980290305174,42.36412569042478],[-71.13977387812456,42.36413268837108],[-71.13975844647958,42.36413515543628],[-71.13973314002217,42.36413873493132],[-71.13970660780876,42.36414139679132],[-71.13963562299182,42.36415260803148],[-71.13961154470033,42.36415710513756],[-71.13956830582289,42.36416931886151],[-71.13952507605585,42.36417993098996],[-71.13949111752649,42.36418691340236],[-71.1394719843991,42.36418959659937],[-71.13945284604623,42.36419319626732],[-71.13943494108311,42.36419679889846],[-71.13942042011597,42.3642017832705],[-71.13940466835643,42.36420630823753],[-71.13938058602743,42.36421171997267],[-71.13935526117062,42.36421873031482],[-71.13933271143492,42.36422574845338],[-71.13932159008671,42.36422937233866],[-71.13931077838801,42.36423276852141],[-71.13929164001799,42.36423636726231],[-71.13927713858577,42.36423792249028],[-71.13927127347444,42.36423904745804],[-71.13926386802247,42.3642397102494],[-71.1392471912066,42.36424423139326],[-71.13921691321195,42.36425465535648],[-71.13918540051488,42.36426530411089],[-71.13917860896339,42.36426688351262],[-71.13917490227689,42.36426801524675],[-71.13917119568073,42.36426891830848],[-71.139164084132,42.36427232608547],[-71.13915696606016,42.36427687720411],[-71.13915449537004,42.36427755547028],[-71.13915202328998,42.36427869017673],[-71.13914954737662,42.36428028401669],[-71.13914584599739,42.36428027240398],[-71.13914368356355,42.3642811803095],[-71.13914090722562,42.36428117159888],[-71.13913782496844,42.36428116192839],[-71.13913504863052,42.36428115321764],[-71.13913134846518,42.36428114160829],[-71.13912333144032,42.36428111645426],[-71.13911376615685,42.36428222980428],[-71.13910389634914,42.36428288485292],[-71.13909278672004,42.36428445070035],[-71.13908321230237,42.36428716472669],[-71.13907240450044,42.36428987398151],[-71.13906560920562,42.3642916829376],[-71.13905819051543,42.36429508974425],[-71.13904241661982,42.36430327245205],[-71.13903159044844,42.36430941263321],[-71.13902107019432,42.36431555377347],[-71.13896294820215,42.36434212602587],[-71.13888598815034,42.36437389857272],[-71.13887146326921,42.36437934110854],[-71.13885694090506,42.36438455497788],[-71.13882447823201,42.36439954542814],[-71.13877130009193,42.3644243037283],[-71.1387171903362,42.36445020244001],[-71.13870049382885,42.3644581544306],[-71.13868226080714,42.36446518600167],[-71.13865473685074,42.36447927632826],[-71.13863647769087,42.3644908812599],[-71.13861853209819,42.36450157248385],[-71.13859069060757,42.36451726430549],[-71.1385678114319,42.36452793911871],[-71.13854368839647,42.36454044029861],[-71.13852946908978,42.36454656976902],[-71.13848333567276,42.36457958318574],[-71.13846754454833,42.36459096717535],[-71.13845206568799,42.36460166612694],[-71.13843659205065,42.36461145040283],[-71.13842916955402,42.36461508582943],[-71.13838929191036,42.36463256824405],[-71.13835808322426,42.36464413151742],[-71.13834968197108,42.36465736900636],[-71.13833637468524,42.36466555937302],[-71.13831692908737,42.36466892831339],[-71.138308885863,42.36467347647022],[-71.13830235038597,42.36468397485275],[-71.13830018671221,42.36468488273851],[-71.13829925120446,42.36468670917652],[-71.13829646560214,42.3646885297964],[-71.13829554055485,42.36468852688732],[-71.13829276149033,42.36468920416519],[-71.13828316334609,42.36469626282768],[-71.13827231760604,42.36470537561814],[-71.13826394640905,42.36471335282768],[-71.13825680860695,42.36472133391582],[-71.13823852446129,42.36473728258254],[-71.13821684322127,42.36475413705148],[-71.13817938644688,42.36477963054506],[-71.13815895820136,42.36479305795706],[-71.13814068839477,42.36480649215614],[-71.13812023004323,42.3648251789337],[-71.13810100115413,42.36484455559351],[-71.13809386200833,42.36485276533965],[-71.13809014217962,42.3648561846226],[-71.13808642105245,42.3648598307733],[-71.13808177094486,42.36486416091836],[-71.13807558301197,42.36486780020682],[-71.13806816298688,42.36487120694531],[-71.13806135835257,42.36487484429236],[-71.13805393701743,42.36487847969833],[-71.13804682010603,42.3648828020793],[-71.13803474341704,42.36489168320123],[-71.13801769256675,42.36490763571377],[-71.1380009552824,42.36492267632131],[-71.13797679020448,42.36494226519636],[-71.13795386617134,42.36496094418317],[-71.13791511817182,42.36499649511498],[-71.13787760353172,42.36503204991666],[-71.13787171999405,42.36503637616985],[-71.13786552165423,42.36504161612148],[-71.1378425870784,42.36506212443254],[-71.13782211162533,42.36508355607273],[-71.1378016177368,42.36510841683795],[-71.1377860679276,42.36513146378964],[-71.13776867323692,42.36515359023906],[-71.13775688386107,42.36516613009569],[-71.13773270139295,42.36518914985156],[-71.13772030456354,42.36519985841135],[-71.13770729747964,42.3652096503577],[-71.1376794279502,42.36523014309122],[-71.13765063587113,42.36525040423911],[-71.13763236592051,42.36526360968392],[-71.13761563762588,42.36527704865552],[-71.13760016500412,42.36528660414908],[-71.13758406912271,42.36529730103905],[-71.13757228361408,42.36530915487136],[-71.13755865584973,42.36531963086239],[-71.13754565002648,42.36532919412185],[-71.13753234370918,42.36533738439802],[-71.1375264588091,42.36534193930161],[-71.13751903345725,42.3653462606777],[-71.13751314986067,42.3653505878125],[-71.13750075024507,42.36536198235707],[-71.13747931929282,42.36538889726263],[-71.13745604475467,42.36541466389094],[-71.13743557158637,42.36543586589581],[-71.13741510233669,42.36545638189195],[-71.13739093414448,42.36547665845093],[-71.13736676342224,42.36549716186871],[-71.13734161376952,42.36552726733836],[-71.13731462960462,42.3655548525209],[-71.13730997283724,42.36556032597579],[-71.13730749552126,42.36556214754368],[-71.13730501296043,42.3655648837848],[-71.1373028387579,42.36556762009794],[-71.13730004924656,42.36556989892642],[-71.13730004269055,42.36557104226804],[-71.13729910966593,42.36557264003303],[-71.1372991044211,42.3655735547063],[-71.13729909393145,42.36557538405288],[-71.13729786051792,42.36557538016342],[-71.13729413283875,42.36557994185758],[-71.1372823602385,42.36558973764836],[-71.13726996053444,42.36560113216745],[-71.13726530910247,42.36560546227501],[-71.13725910128244,42.36561276021585],[-71.1372470139549,42.36562324102778],[-71.13723492128015,42.36563486518379],[-71.13720700550635,42.36566336119201],[-71.1371828004479,42.36569003951888],[-71.13716852041361,42.36570668756195],[-71.13715392545895,42.365724477972],[-71.13714679658496,42.36573085831125],[-71.13713966377424,42.36573792465493],[-71.13713221857442,42.36574590470251],[-71.13712631393001,42.36575388960986],[-71.13712259793671,42.36575662195564],[-71.13712040675827,42.36576210318137],[-71.13711760664408,42.36576643912368],[-71.13711760139661,42.36576735379694],[-71.1371175856542,42.36577009781664],[-71.13711757646597,42.36577169939511],[-71.1371175699118,42.36577284183637],[-71.13711756072873,42.36577444251454],[-71.13711755023378,42.36577627186102],[-71.13711754498631,42.36577718653428],[-71.13711754105071,42.36577787253918],[-71.1371166119541,42.36577878429771],[-71.13711536804162,42.36578060975279],[-71.13711381456058,42.36578243423113],[-71.13711288424987,42.36578334598579],[-71.13711072173547,42.36578425385284],[-71.13710793614854,42.36578584577132],[-71.13710422933597,42.36578697743826],[-71.13710206167157,42.36578857130622],[-71.13709836141844,42.36578855963147],[-71.1370946454219,42.3657912919763],[-71.13709247119215,42.36579403008589],[-71.1370875138125,42.36579835832054],[-71.13708285710555,42.36580360309375],[-71.13707912536339,42.36580907945779],[-71.13707539493258,42.36581432715336],[-71.13706824110655,42.36582505308571],[-71.13705582678666,42.36583919160464],[-71.13704279726018,42.36585264216343],[-71.13702574590066,42.36586859452549],[-71.13701397199121,42.36587839028435],[-71.1370003479434,42.36588818110327],[-71.13698982976098,42.3658940924908],[-71.13697992040197,42.36590137963417],[-71.13696660470418,42.365911170522],[-71.13695203983234,42.36592370153468],[-71.13693777937748,42.36593691862343],[-71.13691486395872,42.36595376894901],[-71.13690527475595,42.36595899814432],[-71.13689568030085,42.365965142012],[-71.13688330014432,42.36597310646395],[-71.13686533808134,42.36598654143036],[-71.13684113800664,42.3660123050102],[-71.13681570974151,42.36603715001705],[-71.13680486477412,42.3660462626702],[-71.13679309736263,42.36605491506455],[-71.13676023175265,42.3660861394015],[-71.13675278131035,42.36609480542489],[-71.1367447155666,42.36610301215969],[-71.13673232213218,42.36611349195014],[-71.13672643184914,42.36611896148516],[-71.13672146794656,42.36612420527329],[-71.13671463289337,42.36613310191026],[-71.1367108958465,42.36613949293506],[-71.13670964797517,42.36614200439047],[-71.1367071653657,42.36614474061833],[-71.13670592143414,42.36614656606881],[-71.13670344417724,42.36614815895133],[-71.13670096550737,42.36615020917419],[-71.13669849067817,42.36615180206427],[-71.13669631521006,42.36615453926203],[-71.13669261614963,42.36615452757807],[-71.13669045371594,42.36615520676499],[-71.13668550698165,42.3661572491917],[-71.13668179872685,42.36615883818537],[-71.13667808794447,42.36616065584337],[-71.13667313201499,42.36616429894758],[-71.13666632443481,42.36616862221968],[-71.13665268582675,42.36618092744764],[-71.13663935951061,42.36619254764322],[-71.13660342605242,42.36622078950152],[-71.13657926641004,42.36623969298038],[-71.13655511220873,42.36625722443669],[-71.13654426716613,42.36626633706481],[-71.13653465817556,42.366274996253],[-71.13650088949255,42.36630255890249],[-71.13648510030453,42.36631325750713],[-71.13646930838766,42.36632464121797],[-71.1364525795705,42.36633807911696],[-71.1364367705552,42.36635243551082],[-71.13641262142345,42.36636928183611],[-71.13638754852654,42.36638589566323],[-71.13637515771234,42.36639568850564],[-71.13636183655326,42.36640639489571],[-71.13634605379364,42.36641617791151],[-71.13633058070143,42.36642573323184],[-71.13630269835666,42.36644828364056],[-71.13628349340037,42.36646331529241],[-71.13626551792122,42.3664790368463],[-71.13622680881095,42.36650749848099],[-71.13615933555373,42.36655096149729],[-71.13614231808,42.3665607405793],[-71.13612653120009,42.36657143824151],[-71.13611198179602,42.36658122512691],[-71.13610609799349,42.36658555128828],[-71.13610144630789,42.36659011001991],[-71.1360977302212,42.36659284233202],[-71.13609433433277,42.36659351760532],[-71.13608691146898,42.36659715287912],[-71.13607980870174,42.36659895978583],[-71.13607116667193,42.36660053314946],[-71.13606745331637,42.36660257945204],[-71.13606375301579,42.366602567744],[-71.1360606654849,42.36660324399195],[-71.13605696113542,42.36660414696057],[-71.13605417943305,42.36660505284846],[-71.1360507769648,42.36660687146176],[-71.13604830088735,42.36660846433386],[-71.1360461278034,42.36661120152669],[-71.13603869440843,42.36661666614341],[-71.13601608818352,42.36663328769459],[-71.13599288760061,42.36664601992921],[-71.135954230904,42.36666533564133],[-71.13591344069121,42.36668029801057],[-71.13587233550798,42.36669640453083],[-71.13586059286015,42.36670071213183],[-71.13584946166253,42.36670593635711],[-71.13582566142203,42.36671569301784],[-71.13580156334314,42.36672362025154],[-71.13577747052521,42.3667306328072],[-71.13576882714794,42.36673243571654],[-71.13576635906189,42.36673242790095],[-71.13576296711278,42.36673241715972],[-71.13576050024072,42.36673240934783],[-71.13575834172767,42.3667324025124],[-71.13575465195927,42.36673056054821],[-71.1357518767283,42.36673055175965],[-71.1357484742394,42.36673237126419],[-71.13574384358691,42.36673327128929],[-71.13574013933334,42.3667339446753],[-71.13573642717323,42.36673599097093],[-71.13573148420537,42.36673757692395],[-71.13572684828453,42.36673939162138],[-71.13572189874188,42.36674211911468],[-71.13571601884856,42.36674575925116],[-71.13571385111632,42.36674735309265],[-71.13571013500365,42.36675008539213],[-71.13570642942662,42.36675098834559],[-71.13570396255385,42.36675098053252],[-71.13570149172482,42.36675165962437],[-71.13569778483573,42.3667527903455],[-71.13568646476033,42.36675518165985],[-71.13538110973825,42.36462131660069],[-71.13536971120993,42.36409551367561],[-71.13530771404677,42.36316782022676],[-71.13583248728783,42.36193190312974],[-71.13628912709929,42.36089444218898],[-71.13661040761667,42.36016471156804],[-71.13693224867619,42.35933729073173],[-71.13715207644623,42.35894146318118],[-71.13736687646474,42.35877721987411],[-71.13796477917116,42.35761369324175],[-71.13809368815014,42.35732816516867],[-71.13811373229755,42.35727237120662]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000112,"geom:area_square_m":1027488.255862,"geom:bbox":"-71.1700600343,42.3572723712,-71.135307714,42.3667551817","geom:latitude":42.360382,"geom:longitude":-71.146818,"iso:country":"US","lbl:latitude":42.358036,"lbl:longitude":-71.141846,"lbl:max_zoom":18,"mps:latitude":42.361191,"mps:longitude":-71.142472,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["N Brighton"],"reversegeo:latitude":42.361191,"reversegeo:longitude":-71.142472,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807537,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f17c78bd1209eb7ccff3eba8b1c8a515","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711939,"neighbourhood_id":85807537,"region_id":85688645}],"wof:id":1108711939,"wof:lastmodified":1566624127,"wof:name":"North Brighton","wof:parent_id":85807537,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85837411],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711941.geojson b/fixtures/microhoods/1108711941.geojson new file mode 100644 index 0000000..90fb949 --- /dev/null +++ b/fixtures/microhoods/1108711941.geojson @@ -0,0 +1 @@ +{"id":1108711941,"type":"Feature","bbox":[-71.17184638055406,42.34634519914921,-71.16283125859786,42.3543878899802],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.16300543476302,42.35316719622022],[-71.16310568640421,42.35246322185307],[-71.16283125859786,42.35248118202306],[-71.1630414712877,42.34902691188299],[-71.16445110042802,42.34634519914921],[-71.16770477519361,42.34657147722397],[-71.1682945329196,42.3469991869279],[-71.16846412411344,42.34712587466797],[-71.1686230146076,42.34726536142132],[-71.16881741802554,42.34744155989827],[-71.16898029516649,42.3476048510867],[-71.1695478924924,42.3481563458726],[-71.16979687587808,42.34840548219014],[-71.17001677521849,42.34857736907939],[-71.1702675825453,42.34873591457995],[-71.17043950363062,42.34882559238576],[-71.17062184959582,42.348911907797],[-71.17084528644958,42.34900357912612],[-71.17105151008195,42.34906921490887],[-71.17172554893665,42.34924424010141],[-71.17147893024571,42.35051798261325],[-71.1705771280833,42.35160841998908],[-71.17184638055406,42.35225344052605],[-71.16977427451552,42.3543878899802],[-71.16958120145397,42.35427979742851],[-71.16930692323339,42.35417981742],[-71.16867868498575,42.35403764541161],[-71.16598393459634,42.35351755632256],[-71.16539383446218,42.35342470979172],[-71.16300543476302,42.35316719622022]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":480070.978357,"geom:bbox":"-71.1718463806,42.3463451991,-71.1628312586,42.35438789","geom:latitude":42.35043,"geom:longitude":-71.167046,"iso:country":"US","lbl:latitude":42.349148,"lbl:longitude":-71.154159,"lbl:max_zoom":18,"mps:latitude":42.350054,"mps:longitude":-71.166509,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":42.350054,"reversegeo:longitude":-71.166509,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807537,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f8809662e03d5ab7aa638e2a4539076c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711941,"neighbourhood_id":85807537,"region_id":85688645}],"wof:id":1108711941,"wof:lastmodified":1566624127,"wof:name":"Oak Square","wof:parent_id":85807537,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891295],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711943.geojson b/fixtures/microhoods/1108711943.geojson new file mode 100644 index 0000000..83e6167 --- /dev/null +++ b/fixtures/microhoods/1108711943.geojson @@ -0,0 +1 @@ +{"id":1108711943,"type":"Feature","bbox":[-71.01413413362039,42.38034436904876,-70.98664285932568,42.39331605212679],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0115202657092,42.38034591955665],[-71.01413413362039,42.38422126615094],[-71.014031,42.38426],[-71.012591,42.384747],[-71.010399,42.385478],[-71.01008,42.385593],[-71.00921,42.385883],[-71.008644,42.386074],[-71.007148,42.386582],[-71.006795,42.386664],[-71.006519,42.386716],[-71.006199,42.386819],[-71.005972,42.386893],[-71.00579,42.386953],[-71.005145,42.387166],[-71.004385,42.387417],[-71.004217,42.387472],[-71.003764885499,42.38763690839919],[-71.00338475666692,42.38776448382212],[-71.003282,42.387787],[-71.003102,42.387792],[-71.003058,42.387793],[-71.002909,42.387807],[-71.002715,42.387842],[-71.002518,42.387884],[-71.002317,42.387941],[-71.002127,42.38801],[-71.001209,42.388314],[-71.001163,42.388331],[-71.001075,42.388364],[-71.00082,42.388443],[-71.000668,42.388477],[-71.00044,42.388497],[-70.999965,42.388525],[-70.999875,42.388531],[-70.99965,42.38854],[-70.999469,42.388554],[-70.999377,42.388565],[-70.999265,42.388587],[-70.999121,42.388629],[-70.999081,42.388644],[-70.999003,42.388674],[-70.998907,42.388712],[-70.998818,42.388769],[-70.998575,42.388875],[-70.997154,42.389942],[-70.996729,42.390291],[-70.996416,42.390559],[-70.996076,42.390898],[-70.995858,42.391169],[-70.995658,42.391462],[-70.99495,42.392549],[-70.994731,42.392888],[-70.994475,42.393284],[-70.994454,42.393316],[-70.99445396634272,42.39331605212679],[-70.99426136209699,42.39329648345455],[-70.99426355476257,42.39329354915227],[-70.99427720147034,42.39327290162301],[-70.99428680930576,42.39325610937755],[-70.99430068233131,42.39323753440098],[-70.99431600170168,42.39320501132661],[-70.99434196653372,42.39317811591142],[-70.99427784957065,42.39314632408499],[-70.99422783343503,42.39311288365589],[-70.99417434591476,42.39308843171801],[-70.99408522027932,42.3930857891824],[-70.9940303587362,42.39311147623751],[-70.99397474675011,42.39310952024653],[-70.99394111505836,42.39309307804388],[-70.9939042123822,42.39307544927077],[-70.99389191481816,42.39304892763675],[-70.99388848365443,42.39302253502764],[-70.99385888122778,42.39296733784845],[-70.9939414053992,42.39298396810108],[-70.9940984327904,42.39302028925211],[-70.99425321607279,42.39306022938258],[-70.99425844120239,42.39306264171021],[-70.99425802332038,42.39305946275977],[-70.99425810232482,42.39304958605529],[-70.99425928262451,42.39304080984071],[-70.99425930458814,42.39303806406106],[-70.9942604365964,42.39303532496071],[-70.99426304666626,42.39303259145629],[-70.99426529138049,42.39303013363453],[-70.99427275087278,42.39302303074224],[-70.99427984113908,42.3930159280273],[-70.99428840652696,42.39300965375718],[-70.99429697849453,42.39300255665275],[-70.99430403363156,42.39299984538332],[-70.99431035452227,42.39299630532323],[-70.9943136978885,42.39299467068984],[-70.99431742284187,42.39299194568484],[-70.99432113783926,42.39299031358478],[-70.99432337452124,42.3929884040015],[-70.99432599602548,42.39298484768332],[-70.99432823809522,42.39298211256023],[-70.99432972930326,42.39298047428846],[-70.99433198939256,42.39297609351932],[-70.99433312140377,42.39297335351799],[-70.9943346213812,42.39297061873479],[-70.9943346345718,42.39296896946646],[-70.99433464333433,42.39296787385533],[-70.99433576655396,42.3929662330661],[-70.9943368856361,42.39296541332071],[-70.99433689441298,42.39296431590907],[-70.99433802006148,42.39296267513048],[-70.99434062354416,42.39296076445792],[-70.99434175212984,42.39295830082965],[-70.99434399368967,42.39295638856658],[-70.99434550685655,42.39295200451487],[-70.99434663886674,42.39294926451339],[-70.99434886920605,42.39294845145169],[-70.99435259589943,42.39294490088974],[-70.99435521201967,42.39294216921039],[-70.99435745287215,42.39293943408131],[-70.99436006559594,42.39293697517397],[-70.99436231422143,42.39293341991729],[-70.99436345280388,42.39292985798219],[-70.99436720631225,42.39292356166136],[-70.99436984488331,42.392917263142],[-70.99437472282246,42.39290932603662],[-70.99437959832409,42.39290138982062],[-70.99438449040974,42.39289153156386],[-70.99438936832347,42.39288359715859],[-70.99439647273128,42.39287457058455],[-70.99440394777223,42.39286582292703],[-70.99440733082051,42.39285952857819],[-70.99441107313018,42.39285432785625],[-70.99441221169404,42.39285076772114],[-70.99441223364377,42.39284802284157],[-70.9944137492323,42.39284363879956],[-70.9944149229123,42.39283568721717],[-70.99441871151897,42.39282500034751],[-70.99442212967236,42.39281431545122],[-70.99442368673604,42.39280444073888],[-70.9944237218447,42.39280005019189],[-70.99442486161416,42.39279649096218],[-70.99442714757105,42.39278826607783],[-70.99442864362994,42.39278662782606],[-70.99442977441909,42.3927838878183],[-70.99442978757837,42.39278224215089],[-70.99442980294766,42.39278032010499],[-70.99443092737597,42.39277867932012],[-70.99443094271645,42.39277676087523],[-70.99442985121514,42.39277428389056],[-70.9944287577157,42.39277236057382],[-70.99442877966466,42.39276961569419],[-70.99442621523268,42.39276603658826],[-70.99442253560046,42.3927635518332],[-70.9944203491673,42.39275887513711],[-70.99441777959707,42.39275639435894],[-70.99441557899488,42.39275364151449],[-70.99441449089035,42.39275089175752],[-70.99441303234151,42.39274814307377],[-70.9944119420487,42.3927456669945],[-70.99441084735021,42.39274374187169],[-70.99441086929274,42.39274099789235],[-70.99441087586543,42.39274017595888],[-70.99441088245251,42.39273935222492],[-70.9944108890324,42.39273852939122],[-70.99441090440224,42.3927366073453],[-70.99441202103593,42.39273578938895],[-70.9944120276158,42.39273496655523],[-70.99441203639854,42.39273386824328],[-70.99441315303216,42.39273305028692],[-70.99441315961921,42.39273222655292],[-70.9944146466755,42.39273141022409],[-70.9944157655191,42.39273031588922],[-70.99441687800181,42.39273032077724],[-70.99441948827123,42.39272786365824],[-70.99442060589301,42.39272677021826],[-70.99442283623073,42.3927259562548],[-70.99442543211867,42.39272514569804],[-70.99442914170365,42.39272434003444],[-70.99443247942516,42.39272325724891],[-70.99443729370563,42.39272327840097],[-70.99444100869135,42.39272164539667],[-70.99444582953676,42.39272084551519],[-70.99444952769105,42.39272086176304],[-70.9944591538227,42.39272090405488],[-70.99446729583468,42.39272093982571],[-70.99447210233583,42.39272178200418],[-70.99447691540179,42.39272180314926],[-70.99448062497872,42.39272099838425],[-70.99448543804456,42.39272101952898],[-70.99448914618758,42.39271993836915],[-70.99449285456416,42.39271913179788],[-70.994496202769,42.39271749718047],[-70.99449991747596,42.3927155949871],[-70.9945036324308,42.39271396558176],[-70.99450735080963,42.39271205980313],[-70.99451069290527,42.39271042965989],[-70.9945144178622,42.39270770104731],[-70.99451702397742,42.39270606677047],[-70.99451815597577,42.39270332676715],[-70.99451928797401,42.39270058676382],[-70.99452040996962,42.39269894596735],[-70.9945219045901,42.39269703131983],[-70.99453013821854,42.39268636667342],[-70.99453649295144,42.39267843604818],[-70.99454247968217,42.39267050470632],[-70.9945496083881,42.39265873685432],[-70.9945522286514,42.39265518052536],[-70.99455336843987,42.39265161769323],[-70.99455561706594,42.39264805973175],[-70.9943897904229,42.39250655957376],[-70.99433685659457,42.39250632696938],[-70.9942949040075,42.39252150870717],[-70.99425257414258,42.39253723974732],[-70.99417928046078,42.39253691758298],[-70.99413720403577,42.39252081553271],[-70.99410500165534,42.39252067395972],[-70.99405298317095,42.39254432087096],[-70.9940202871657,42.39255926772123],[-70.99399967160632,42.39259128311713],[-70.9939670392302,42.39259827529267],[-70.99392520584006,42.39259809131497],[-70.99382044929982,42.39259763054289],[-70.99375683930428,42.39258939306718],[-70.9936837936526,42.39255778759134],[-70.99365288467496,42.39253460242444],[-70.99361074706773,42.392526459353],[-70.99354707707415,42.39252617913731],[-70.99347403278605,42.39249457713422],[-70.99333712811358,42.39248601586041],[-70.99316869816911,42.39248527411183],[-70.99306442596766,42.39246972146447],[-70.99295874839184,42.39244510743806],[-70.99289488602086,42.39246897442473],[-70.99284300504978,42.39247588055128],[-70.99281091230907,42.39246146864225],[-70.99274848891946,42.3924441807462],[-70.99259104140032,42.39241220607508],[-70.99249634313269,42.39240382990751],[-70.99239059319176,42.39238827013038],[-70.99231723336814,42.39239590412893],[-70.99226410990137,42.39241899528376],[-70.9921798938991,42.39244167281156],[-70.99209566779179,42.39246544948438],[-70.99205346528835,42.39246526319656],[-70.99198967530924,42.39248007490977],[-70.99193778882544,42.39248780436743],[-70.99186330875521,42.39249652968117],[-70.99176947666453,42.39251834158168],[-70.991736835043,42.39252615504748],[-70.99165268267328,42.39254087663038],[-70.99158987240739,42.39257188052101],[-70.99153680689703,42.3925875622305],[-70.99147300663965,42.39260347016284],[-70.99143081187911,42.39260246081842],[-70.99137942345496,42.39259400235505],[-70.9913045830245,42.39260190285214],[-70.9912420115373,42.39260244908044],[-70.99120018963202,42.39260144129999],[-70.99111603162889,42.39261698532905],[-70.99107377646399,42.39262393232813],[-70.99097844068379,42.39264765814811],[-70.99092524946431,42.39267952889147],[-70.99087250574661,42.39270152093425],[-70.99083017490244,42.39271725161505],[-70.99078785189317,42.39273215765155],[-70.99074595699147,42.39274020267511],[-70.99068327528249,42.39275501677001],[-70.99061954095541,42.39276269319275],[-70.99056646618747,42.39277947366597],[-70.99049299191584,42.39280137555512],[-70.99041957511032,42.39281614107237],[-70.99033492112136,42.39284704934357],[-70.99022916085033,42.39287868691336],[-70.9901665430347,42.39288554516925],[-70.99010286905133,42.39288526303169],[-70.99000773335887,42.39288484142256],[-70.98992370065727,42.39288446895271],[-70.98961842569682,42.39286774831432],[-70.9895344045507,42.3928665491473],[-70.98947189823262,42.39285913976195],[-70.98940835102253,42.39284376448038],[-70.9893566643852,42.39282652238497],[-70.98925128493308,42.39281096136813],[-70.98917797300166,42.39281255805263],[-70.98913584466001,42.39280331503151],[-70.98907223870415,42.39279507588297],[-70.98903010152792,42.39278692933411],[-70.98898833941176,42.39277851254847],[-70.98883082400782,42.39275476105798],[-70.98873631430844,42.39272306068183],[-70.98868344102901,42.39271486810358],[-70.98861033362945,42.39269148955333],[-70.98854673007573,42.39268297553621],[-70.98849502460435,42.39266765598238],[-70.98845288335171,42.39266033296634],[-70.98838940400088,42.39263617601447],[-70.98834763964062,42.39262775898523],[-70.98832697498877,42.39261970855396],[-70.98820000660011,42.39257276917098],[-70.98815830694633,42.39255666750405],[-70.98809580473939,42.39254925738686],[-70.98802270419144,42.39252478284087],[-70.98800086633396,42.39252468567449],[-70.98794805110413,42.39250935733404],[-70.98781140296292,42.39246951102499],[-70.98770739467507,42.39242184772743],[-70.98762330592143,42.39238305714321],[-70.98758177878481,42.39234555259036],[-70.98757919251875,42.39234471730981],[-70.98754564523284,42.39232755517202],[-70.98752536979913,42.39231676225132],[-70.98750510045207,42.39230596845381],[-70.98749071028597,42.39229986793094],[-70.98747632597728,42.39229349464512],[-70.98746931691122,42.39228989648518],[-70.98746305598007,42.39228630075691],[-70.98745975355115,42.39228271820625],[-70.98745607524685,42.39227995684437],[-70.98745129113907,42.39227636769363],[-70.98744652804731,42.39227003635946],[-70.98743697560508,42.39226121240097],[-70.98742373574996,42.39225045170181],[-70.98741049832104,42.39223969191217],[-70.98740131490524,42.39223059320615],[-70.9873998423195,42.39222976468326],[-70.98739291477256,42.39221656261057],[-70.98737279533053,42.39218683730302],[-70.98734034812237,42.39217077655566],[-70.9873091355855,42.39213935338561],[-70.98728896522722,42.39211621434207],[-70.9872786130848,42.39206897152113],[-70.98726799941065,42.39205383090061],[-70.98725739464122,42.39203759286771],[-70.98725759046971,42.39201344531708],[-70.98724808806467,42.39199830964632],[-70.98724827497493,42.39197526220759],[-70.987237293342,42.39196011904383],[-70.98720651710859,42.3919207428436],[-70.9871854881196,42.39186631584713],[-70.98718568396771,42.39184216919591],[-70.98717495486365,42.39179574664499],[-70.9871750839469,42.39177983192922],[-70.98717520637074,42.39176473824634],[-70.98716589986351,42.39172545771657],[-70.98716603117603,42.3917092684226],[-70.98716640731081,42.3916628953632],[-70.98716659427905,42.39163984432179],[-70.98717647275237,42.39160860514005],[-70.98717679767823,42.39156854467105],[-70.98717697794659,42.3915463191634],[-70.98718859502054,42.3914832553437],[-70.98719951771467,42.39145998115976],[-70.98723111710633,42.39139783014942],[-70.98725353558697,42.39132658222108],[-70.98726352966828,42.39128107577954],[-70.9872853175026,42.39124220749592],[-70.98730606063985,42.39119482502997],[-70.98732827543778,42.39114882745801],[-70.98733944946848,42.39109454215432],[-70.98736006911203,42.39106252974645],[-70.98755274817267,42.39072037642461],[-70.98756300335661,42.39064276503699],[-70.98758515977885,42.39060362374623],[-70.98760583575599,42.39056447495811],[-70.98763843110066,42.39051659963084],[-70.98767026559719,42.39047118679574],[-70.98769198234767,42.39044027666171],[-70.98772389798161,42.3903849898111],[-70.98775555655035,42.39031570412488],[-70.9877776448284,42.39028479562791],[-70.98778746376922,42.39026069180597],[-70.98780918628692,42.39022950348548],[-70.98785182735631,42.39017536179144],[-70.98786274979985,42.39015236032576],[-70.98789441335214,42.39008197626922],[-70.98790570373473,42.390058977337],[-70.98791571168898,42.39001182516302],[-70.98792676520972,42.38997263258855],[-70.98793787648202,42.38992630728526],[-70.98793825870392,42.38987911137021],[-70.98793857649632,42.38983987101605],[-70.98793900982574,42.3897863643061],[-70.98793965206472,42.38970706166211],[-70.98793990316662,42.38967605594749],[-70.9879415431787,42.38947354877102],[-70.98794211205944,42.38940330359684],[-70.98794274761238,42.38932482558023],[-70.98793252312612,42.3892616662555],[-70.98792260312393,42.38916091313695],[-70.98789164412851,42.3890984834893],[-70.98786092667555,42.38905197200827],[-70.98783965880372,42.38898135504164],[-70.98780913482993,42.38891097055456],[-70.98779878039483,42.38886372773431],[-70.98777836257217,42.38882521882729],[-70.98775714859046,42.38879384295934],[-70.9876631596854,42.38865265176261],[-70.98763256915719,42.38859022457657],[-70.98755997271128,42.38850428563058],[-70.98750742478639,42.38845685485518],[-70.98745493114471,42.38840228770837],[-70.9874240252826,42.38837909904008],[-70.98738227609321,42.38832348407165],[-70.9873190533184,42.38826886905903],[-70.98721542716765,42.38817483306759],[-70.98716293522651,42.38812026578942],[-70.98707923074504,42.38803455070258],[-70.9870483998567,42.38800230896016],[-70.98693256002734,42.38790821915361],[-70.98689068143517,42.38786879151385],[-70.98686002988579,42.38781432328752],[-70.98681821478363,42.38776693644947],[-70.9868076687468,42.38774356472824],[-70.98676597985835,42.38768108779085],[-70.98675575134872,42.38761875117712],[-70.98674650363178,42.38757233514416],[-70.98674682213024,42.38753309747303],[-70.9867150676007,42.38747779961776],[-70.98668429995288,42.38739204758024],[-70.98665358178823,42.38734553574764],[-70.98664285932568,42.38729828755809],[-70.98666508217563,42.38725118905893],[-70.9866655878534,42.38718890122097],[-70.98670822665176,42.38713475810657],[-70.98677073055184,42.38709579603317],[-70.98694968879367,42.38712046892236],[-70.98714894641486,42.38715263689193],[-70.98730729625797,42.38720767773907],[-70.9874331408251,42.38725461321009],[-70.98766989733805,42.3872271294235],[-70.98767840902904,42.38722716732401],[-70.98768914427643,42.38722721512458],[-70.98769395692182,42.3872272365534],[-70.98769765961065,42.38722725303988],[-70.98770136229946,42.38722726952625],[-70.98770840031015,42.38722647799887],[-70.98771582185417,42.38722376606189],[-70.98772435052062,42.38722215830646],[-70.98773621917556,42.38721946616804],[-70.98774807873474,42.38721759685198],[-70.9877554871267,42.38721680787098],[-70.9877625196841,42.38721683918008],[-70.98777361987604,42.38721771056132],[-70.987784342567,42.38721885845013],[-70.98779395998407,42.38721972322833],[-70.98780948685507,42.38722253732943],[-70.98781687404443,42.38722421594199],[-70.98782388981957,42.38722616928943],[-70.98783127520237,42.38722867075708],[-70.98783827886315,42.38723226977783],[-70.98784674975445,42.38723779474515],[-70.98785373887347,42.38724303942831],[-70.98786221379116,42.38724746786046],[-70.98786920433182,42.3872529871371],[-70.98788027986413,42.38725660427934],[-70.98788359762136,42.38725826477458],[-70.98788729140944,42.38725938046812],[-70.98789098077188,42.38726104261714],[-70.98789465758884,42.38726380396295],[-70.98789797777557,42.38726546446863],[-70.98790163904857,42.38727014516092],[-70.98790531285303,42.38727372845675],[-70.9879074972098,42.38727812888765],[-70.98791484237739,42.38728529726845],[-70.98792070054171,42.38729328099446],[-70.9879291478142,42.38730127444251],[-70.9879361185519,42.3873095404082],[-70.98794569677894,42.38731479660839],[-70.98794938614621,42.38731645875554],[-70.98795306661214,42.38731922011566],[-70.98795638095118,42.38732115338112],[-70.98795896701675,42.38732198865414],[-70.98796265816851,42.38732283064564],[-70.98796598502332,42.38732366831495],[-70.98797817175357,42.38732728949238],[-70.98801064754446,42.38733923319453],[-70.98802503784621,42.38734533366482],[-70.98803941862654,42.38735171047961],[-70.98805122830603,42.38735615373582],[-70.98805713538769,42.38735809853465],[-70.98806304467091,42.38735977145569],[-70.98807632035695,42.38736614334887],[-70.98808847579632,42.38737333131975],[-70.98810025659996,42.38738134228714],[-70.98810983083222,42.38738769500751],[-70.9881182902274,42.38739404546811],[-70.98813854298662,42.38740730679439],[-70.98814923384738,42.38741284161495],[-70.98816140606961,42.38741810843625],[-70.9881684073414,42.38742170742594],[-70.98819130594394,42.38742812211226],[-70.9882142015344,42.38743535964457],[-70.9882429692856,42.38744810875053],[-70.9882521941296,42.38745171762505],[-70.98826177604766,42.38745697381496],[-70.98827285163817,42.38746059091922],[-70.98829058276444,42.38746506048633],[-70.98831608847696,42.3874695646258],[-70.98837599658185,42.38747696401954],[-70.98839152534207,42.38747895518593],[-70.98840595426475,42.38747984040673],[-70.9884336877706,42.38748353336222],[-70.98845770064085,42.38748912648428],[-70.98846951703199,42.38749274686307],[-70.98848282508435,42.38749527642009],[-70.98850093753266,42.38749809922106],[-70.9885138873077,42.38749897965321],[-70.98852017265017,42.38750010684681],[-70.98852719858354,42.38750096094353],[-70.98853569700033,42.38750264444936],[-70.98854419561084,42.3875046043441],[-70.98855969129902,42.38751098604922],[-70.98857518679696,42.3875170913627],[-70.98859919121828,42.38752433284629],[-70.98861580656697,42.38752907109149],[-70.98863280847179,42.38753271360029],[-70.98864130689572,42.38753439709833],[-70.98864944702208,42.38753443327546],[-70.98865796905245,42.38753364828531],[-70.98867461367571,42.38753536798381],[-70.98868683476974,42.38753459943027],[-70.98869052193434,42.38753653793226],[-70.98869385182059,42.38753655272991],[-70.98869866448985,42.38753657411671],[-70.98870126612347,42.38753548642531],[-70.98870497548418,42.387534680045],[-70.98870719963307,42.38753386706465],[-70.98871091020803,42.38753306068953],[-70.98871462481354,42.38753115507964],[-70.98871796499613,42.38753034705839],[-70.98872167070584,42.38752954156158],[-70.98872538773966,42.3875276359621],[-70.98872909709962,42.38752682958103],[-70.98873501851568,42.38752685589309],[-70.9887409490137,42.38752605938126],[-70.98874687042965,42.38752608569273],[-70.98876018939161,42.38752696773756],[-70.98877202678547,42.38752784319795],[-70.98878053428653,42.38752870476235],[-70.98878793605684,42.38752873764908],[-70.98880088482943,42.38752989353279],[-70.98881309140941,42.38753076972898],[-70.98882161221557,42.38752998562156],[-70.98882975719913,42.38753002180752],[-70.98884308038603,42.38753008099757],[-70.9888489963724,42.38753092924333],[-70.98885491778891,42.38753095554922],[-70.98886343980897,42.3875301714441],[-70.98886714653659,42.38752908955848],[-70.9888719682928,42.3875282872142],[-70.98887567522216,42.38752748081759],[-70.98887900510796,42.38752749560989],[-70.98888531607416,42.38752560422905],[-70.98889123870458,42.38752563053846],[-70.98889716254942,42.38752565685297],[-70.98890308517983,42.38752568316177],[-70.98890788655645,42.38752680104137],[-70.98891269922504,42.38752682241923],[-70.9889141717138,42.3875276518239],[-70.98891528289018,42.38752765675969],[-70.98891639285212,42.38752766169009],[-70.9889174882907,42.3875293131841],[-70.98891897228802,42.38752931977591],[-70.98892008224999,42.38752932470626],[-70.98892007337257,42.38753042301913],[-70.98892117547666,42.38753124987825],[-70.98892227878791,42.38753207764296],[-70.98892227213713,42.38753290047735],[-70.98892374724986,42.38753400628222],[-70.9889237405991,42.38753482911663],[-70.98892482716072,42.38753757892344],[-70.98892702713283,42.38754005728721],[-70.98893328223376,42.38754447667983],[-70.98894026745731,42.38755081963106],[-70.98894763374433,42.38755524305818],[-70.98894984481409,42.38755634853045],[-70.98895205385978,42.38755800497036],[-70.98895573860506,42.38755994345306],[-70.98895942801312,42.38756160556773],[-70.98896423403416,42.3875624497778],[-70.98896902995709,42.38756439319545],[-70.98897272601589,42.38756523247528],[-70.98897752960862,42.38756607667401],[-70.98898233097505,42.38756719635098],[-70.9889871370041,42.38756803965987],[-70.98899195089031,42.38756806103979],[-70.98899528077827,42.38756807582871],[-70.9890000922356,42.38756809719752],[-70.98900639433364,42.38756730322262],[-70.98901233792857,42.38756458553881],[-70.98901826056274,42.38756461184168],[-70.98902418985358,42.38756381440959],[-70.98903159041373,42.38756384727525],[-70.98903862422475,42.38756387851173],[-70.98904490816588,42.38756473018203],[-70.98905785917658,42.38756561055831],[-70.98906637212835,42.38756564836154],[-70.98909266750174,42.38756411849852],[-70.98912044301838,42.38756232061355],[-70.98921782065666,42.38755918510079],[-70.98923595351778,42.38756008846082],[-70.98925371254022,42.38756126654715],[-70.98925852035397,42.38756128788897],[-70.98926111431463,42.38756129940344],[-70.98926333423975,42.38756130925753],[-70.98926592334277,42.38756132075032],[-70.98926814569671,42.38756133061512],[-70.989270731804,42.38756216405816],[-70.98927295294351,42.38756217391747],[-70.98927553660752,42.38756300915009],[-70.98927774101534,42.38756494015121],[-70.98928143707104,42.38756578032142],[-70.98928624066788,42.38756662450726],[-70.98928882433951,42.38756745883934],[-70.98929104547928,42.38756746869829],[-70.98929363944015,42.38756748021203],[-70.98929585815111,42.38756749006011],[-70.98929696689939,42.38756749498143],[-70.98929954535085,42.38756942674206],[-70.9893017807856,42.38756751634839],[-70.9893043735321,42.3875675278565],[-70.9893066001032,42.38756671487536],[-70.989309198281,42.38756590354357],[-70.98931290399983,42.3875650962272],[-70.98931773218763,42.38756319644079],[-70.98931995211281,42.3875632062938],[-70.98932254485914,42.38756321780149],[-70.98932477143713,42.38756240391975],[-70.98932736296904,42.38756241542195],[-70.98932846749325,42.3875632440884],[-70.98933068741843,42.38756325394121],[-70.98933328016477,42.38756326544866],[-70.98933550008995,42.38756327530136],[-70.98933697501393,42.38756410471141],[-70.9893391961536,42.38756411456944],[-70.98934177881542,42.3875652243842],[-70.9893450954055,42.38756688573211],[-70.98934879146942,42.38756772499986],[-70.98935246294442,42.38757130823841],[-70.98935467519985,42.38757241820958],[-70.98935835433811,42.38757490222939],[-70.98936203488792,42.38757766264402],[-70.989364249383,42.38757849533597],[-70.98936792206659,42.38758207947968],[-70.98937272045401,42.38758402019049],[-70.98937862980043,42.38758569214364],[-70.98938342452348,42.38758763553857],[-70.9893893338705,42.38758930749118],[-70.98939414654404,42.38758932884888],[-70.98940042826796,42.38759045597818],[-70.98940634426017,42.38759130509551],[-70.98941115814824,42.38759132645788],[-70.98941707414069,42.38759217557462],[-70.989426704918,42.38759139544772],[-70.98944374513421,42.38758954894602],[-70.98946042422678,42.38758715436415],[-70.98947598951453,42.3875844784492],[-70.98949157173091,42.38758015687943],[-70.98950121920862,42.38757745830515],[-70.98951235791993,42.38757311791764],[-70.98952051721231,42.38757123200172],[-70.98952903925135,42.38757044514654],[-70.98954720390674,42.38756695969104],[-70.98958092197995,42.38756271856669],[-70.98958794129251,42.38756439543306],[-70.98959387057614,42.38756359797166],[-70.98960126270309,42.38756527739132],[-70.98960828522024,42.38756640689514],[-70.98961568699545,42.38756643972861],[-70.98962420237649,42.38756647750133],[-70.98963234493638,42.38756651361969],[-70.98964347400448,42.38756381800425],[-70.98965533113575,42.38756194938122],[-70.98966385736968,42.38756034147137],[-70.98966868674641,42.38755844347614],[-70.98967201541964,42.38755845824009],[-70.98967349941769,42.38755846482216],[-70.98970943740282,42.38755423350633],[-70.98972278760475,42.38755154773403],[-70.98973465280623,42.3875491299625],[-70.98974317217602,42.3875480711925],[-70.98975058423956,42.38754728029875],[-70.9897613116813,42.38754815163529],[-70.98977203570783,42.38754929574314],[-70.98978165196611,42.38755016305055],[-70.98979608997819,42.38755022707384],[-70.98982125843646,42.3875503386754],[-70.98984644482371,42.38754852913487],[-70.98985496441955,42.38754774314503],[-70.98986349307532,42.38754613523118],[-70.98987053996255,42.38754424435841],[-70.98987796286467,42.38754180867704],[-70.98988612878026,42.38753909990077],[-70.98989951195527,42.38753202444643],[-70.98990694493676,42.38752848955539],[-70.98991400508925,42.38752495391131],[-70.98992253351929,42.38752307230431],[-70.98992957817275,42.38752145780666],[-70.98993588791433,42.38751956366205],[-70.98994070722024,42.38751876216241],[-70.98994663648787,42.38751796558306],[-70.98995625818122,42.3875180082355],[-70.98998254686903,42.38751730190383],[-70.99000548333188,42.38751904929918],[-70.99002583490214,42.3875199623691],[-70.99004505858096,42.38752279255282],[-70.99005356732033,42.38752365312825],[-70.99006428592648,42.38752562004871],[-70.99006796407542,42.38752838043004],[-70.9900712897545,42.38752921803304],[-70.99007498217544,42.38753005816157],[-70.99007868488262,42.38753007457144],[-70.9900823875898,42.38753009098117],[-70.99008571747602,42.38753010573854],[-70.99009053014527,42.3875301270671],[-70.99009683224028,42.38752933123202],[-70.99010164668731,42.38752852970415],[-70.99010981622756,42.38752582182835],[-70.99011723889636,42.38752311244281],[-70.99012578304092,42.3875195824618],[-70.99014620841017,42.38751089155763],[-70.99016182396512,42.38750272851322],[-70.99016889195667,42.38749836912412],[-70.99017632612626,42.38749483512128],[-70.99018486297008,42.38749130600382],[-70.99019673157079,42.38748861361177],[-70.99020155088554,42.38748781030075],[-70.99020526684389,42.38748618283807],[-70.99020897841082,42.3874851000305],[-70.99021232576784,42.38748264627001],[-70.99021603733443,42.38748156346222],[-70.99021864755767,42.38747910553528],[-70.99022088539755,42.38747719423419],[-70.99022201746668,42.38747445697056],[-70.99022461441457,42.38747364561271],[-70.99023171116157,42.38746571850304],[-70.99023804078944,42.38746135583833],[-70.99024399881029,42.38745699152695],[-70.99024624084608,42.3874542582804],[-70.99024995904391,42.38745235263703],[-70.99025255356896,42.38745154036747],[-70.99025366474405,42.38745154529034],[-70.99025589494208,42.38745073230695],[-70.99025738070617,42.38744991692576],[-70.99026071423141,42.38744993169421],[-70.9902633109625,42.38744884574643],[-70.9902655320982,42.38744885558658],[-70.99027033470026,42.387449974315],[-70.99027403740277,42.38744999071857],[-70.99027884222576,42.3874508339681],[-70.9902825382953,42.38745167320588],[-70.99028734188958,42.38745251825025],[-70.99029065870677,42.38745445506017],[-70.99029435479119,42.38745529249705],[-70.9902969384571,42.38745612860704],[-70.99030026192206,42.38745724078169],[-70.99030395434905,42.38745808000262],[-70.99030765705206,42.38745809640513],[-70.9903113518935,42.38745893743714],[-70.99031468299046,42.38745895219325],[-70.99031727451826,42.38745896367315],[-70.99032098386839,42.38745815544021],[-70.99032321042263,42.38745734243936],[-70.99032693645067,42.38745461576491],[-70.9903291630119,42.38745380186373],[-70.99033400321106,42.38745025636025],[-70.99033773103473,42.38744670412865],[-70.99034629603759,42.38744043284459],[-70.99035336400942,42.38743607344411],[-70.99035968335069,42.38743253359108],[-70.99037864323196,42.38742273780228],[-70.99040167916574,42.38741213990044],[-70.99041392897502,42.38740780254641],[-70.99042470848967,42.38740236122744],[-70.990439230272,42.38739172470965],[-70.99045485197276,42.38738218781221],[-70.99046081096947,42.38737754890587],[-70.99046824510128,42.38737401578435],[-70.99047905234916,42.38736528222726],[-70.99048388224494,42.38736256133635],[-70.99048760706059,42.38735983285073],[-70.9904909693295,42.38735627989566],[-70.99050433448933,42.3873511255075],[-70.99052624717194,42.38734216653398],[-70.99054182804244,42.38733784481641],[-70.99054664976282,42.38733704240188],[-70.99055146661831,42.38733624086592],[-70.99055368653573,42.38733625069511],[-70.99055739805887,42.38733517147728],[-70.99055999499674,42.38733436011182],[-70.99056703964186,42.38733274197406],[-70.99057670252108,42.3873281212616],[-70.99058636198679,42.38732377332068],[-70.99059490906404,42.38731942045397],[-70.99060197700524,42.38731506103811],[-70.99060793377281,42.38731069670234],[-70.99061907059006,42.38730717906345],[-70.99062984520509,42.38730173860392],[-70.99063579775529,42.3872981989125],[-70.9906417491122,42.38729465651465],[-70.99065400671034,42.38728949810626],[-70.99066589614921,42.38728406077792],[-70.99067183201367,42.3872824413266],[-70.99067814590829,42.38727972429586],[-70.99068409060429,42.38727700833137],[-70.99069003531426,42.38727429056604],[-70.99069488996366,42.38726909758301],[-70.99069601540263,42.38726718044836],[-70.99069861476471,42.38726636909051],[-70.99069973554865,42.38726472832385],[-70.9907082771897,42.38726119918891],[-70.99072016539697,42.38725576274979],[-70.9907335220983,42.3872522567262],[-70.99074094473002,42.38724954459949],[-70.9907479905465,42.38724793005701],[-70.99075281647006,42.38724630298801],[-70.99075764457581,42.38724440494158],[-70.99076247811531,42.38724168135424],[-70.99076842945256,42.38723813985004],[-70.99077327083226,42.38723459343304],[-70.99077811221136,42.38723104701587],[-70.99078407800687,42.38722586074733],[-70.99078781484003,42.38722148657742],[-70.99079154261747,42.38721793523118],[-70.99079379124025,42.3872143800395],[-70.99080240823771,42.38720179342626],[-70.99081473628478,42.3871875811089],[-70.99082928792473,42.38717337322861],[-70.99083413592186,42.38716900397444],[-70.99084009384508,42.38716464323292],[-70.99085459099369,42.38715674883314],[-70.99090888038022,42.38712652868868],[-70.99092558657904,42.38712029248288],[-70.99093784955207,42.38711430850333],[-70.99094973229478,42.38710969578055],[-70.99096423183866,42.38710180227784],[-70.99097761358604,42.38709472669203],[-70.99099321004826,42.3870887583544],[-70.99100546072843,42.38708414905415],[-70.99101734125028,42.38707981090264],[-70.99102700064782,42.38707546292445],[-70.99103182875399,42.38707356216564],[-70.9910377712053,42.38707112076107],[-70.99104259268043,42.38707004373664],[-70.99104741856836,42.38706841845578],[-70.99105223120279,42.38706843974413],[-70.99105704019405,42.38706846101616],[-70.99106075833751,42.38706655624665],[-70.99106927365209,42.38706659391243],[-70.99107520287036,42.38706579637455],[-70.99108113627508,42.3870641768913],[-70.9910870689028,42.38706310658043],[-70.9910944892945,42.3870606681088],[-70.99114977238597,42.38704472272282],[-70.99118135627214,42.38702977086026],[-70.99120301736097,42.3870057191054],[-70.99124540047119,42.38698285462704],[-70.99127668380227,42.38695966736856],[-70.99129716741601,42.38694384533086],[-70.99133986731734,42.38688174223288],[-70.99136182585325,42.38686674596683],[-70.991382362423,42.38684433403426],[-70.9914044031936,42.38677336266959],[-70.99142514320567,42.38672625490661],[-70.99158543849768,42.38653981579901],[-70.9916281287844,42.3864785372128],[-70.99167027112829,42.38643948432053],[-70.99170185461078,42.38642452961219],[-70.99173314586167,42.38639969743585],[-70.99178607821145,42.3863999312544],[-70.99183894296208,42.38640812330321],[-70.99188064435576,42.38642422368082],[-70.99191210528379,42.38642436261601],[-70.99195430011186,42.38642454893986],[-70.99198650545482,42.38642469114175],[-70.99201803274595,42.38641687178792],[-70.99207114541844,42.3863940543765],[-70.99211310109042,42.38637804969282],[-70.99218639005156,42.38637837318439],[-70.99224881512104,42.38639483858027],[-70.99230162263584,42.38641016585265],[-70.99234375842738,42.38641830942579],[-70.99237596430183,42.38641762865708],[-70.99241815616476,42.3864186376617],[-70.99251205409553,42.38638776862751],[-70.99255431276735,42.38637999646021],[-70.99259613961095,42.38638018092585],[-70.99264838379844,42.3864660278743],[-70.99269063711854,42.38645907849723],[-70.99273296184113,42.38644307611576],[-70.99278558890404,42.38643534867548],[-70.99283856484458,42.38642954576574],[-70.99289150722447,42.38642868346843],[-70.9929229669425,42.38642882212186],[-70.99296485763426,42.38642104818215],[-70.9930381466496,42.38642137113118],[-70.99306960341083,42.38642233259541],[-70.9931225387374,42.38642174294823],[-70.99315474286712,42.38642188481777],[-70.99318620258236,42.38642202339922],[-70.9932487576995,42.38642229893176],[-70.99332297196659,42.38644567586665],[-70.99341674099468,42.38643099722105],[-70.99351218253032,42.38639217561685],[-70.99354444674455,42.38638435908962],[-70.99358677020916,42.38636863187778],[-70.9936291554364,42.38634549284517],[-70.99367122813865,42.38631466755713],[-70.99369165065569,42.38630652608888],[-70.99375599134336,42.38626866757141],[-70.99378714916746,42.38626084610824],[-70.99380750576003,42.38626093566926],[-70.9938713026809,42.38624502553494],[-70.99390276109541,42.38624516391514],[-70.99393502100087,42.38623817372475],[-70.99397734550644,42.38622244367324],[-70.99399788873878,42.38619920844091],[-70.99402960009738,42.38616834015449],[-70.99405131933031,42.3861371524319],[-70.99407192617572,42.38610595981368],[-70.99408321897772,42.38608213651354],[-70.99413597092304,42.38605904377805],[-70.99417841232791,42.38602822352659],[-70.99424103289527,42.38602026746906],[-70.99430474464413,42.38601450747633],[-70.99439951204864,42.386013828309],[-70.99447335942024,42.38599027804246],[-70.99453720686036,42.38596723297352],[-70.99458890880308,42.38593645235389],[-70.99462166462823,42.38591327155656],[-70.99463172931553,42.38585815957442],[-70.99464271431569,42.38582692819146],[-70.99464301914935,42.38578878609583],[-70.99465400416784,42.38575755021],[-70.99466554546377,42.38570244560896],[-70.9946755435696,42.38565611204427],[-70.99467610712956,42.38558559219639],[-70.99471953332365,42.38552431569778],[-70.99480418192562,42.38549258311381],[-70.99489807270885,42.38546198489304],[-70.995099437156,42.38536929810777],[-70.99509981402673,42.38532209941847],[-70.99510018430519,42.3852757262646],[-70.99511632084958,42.38520170690443],[-70.9951203023979,42.38516632681846],[-70.99512429855368,42.3851295729554],[-70.99513050358985,42.38509420082496],[-70.99513820107731,42.38505746410291],[-70.99514081865527,42.38500780935117],[-70.99514153068452,42.38491862805514],[-70.99513850509966,42.38483382196598],[-70.99513117349723,42.38473225970768],[-70.99512295645653,42.38469490397146],[-70.99511585420214,42.38465755222596],[-70.99510240190739,42.3845806589296],[-70.99510478385115,42.38456036426437],[-70.99510864412926,42.38454062436245],[-70.99511599627408,42.38450059196447],[-70.99511629423887,42.38446327359142],[-70.99511770551075,42.38442568641573],[-70.99512650700346,42.38438922822159],[-70.99513531213623,42.38435276914223],[-70.9951426303883,42.38431712910253],[-70.99514157086756,42.38431081342704],[-70.9951394068107,42.38430366823999],[-70.99513685703526,42.38429844347746],[-70.99513469417218,42.38429130099638],[-70.99513104205407,42.38428497214352],[-70.99512738772283,42.38427892056985],[-70.99512262277416,42.3842734096976],[-70.99510830842057,42.38425825623681],[-70.99509287519905,42.38424391712709],[-70.9950763189034,42.38423122331629],[-70.99505461514747,42.38421438718905],[-70.99503067841741,42.38419919148696],[-70.99500673392768,42.38418481680934],[-70.99498904706832,42.38417486120421],[-70.99497098086309,42.38416572409448],[-70.99495290828371,42.38415768980807],[-70.994932602787,42.38415128784386],[-70.99492299888372,42.38414877799099],[-70.99491338405105,42.38414763652873],[-70.99490264932105,42.38414758940217],[-70.99489302570858,42.38414754715266],[-70.99488227928256,42.38414942028951],[-70.99487116637813,42.38415019616453],[-70.99486041336355,42.38415289393519],[-70.99484965016055,42.3841564109232],[-70.99483890347506,42.38415801216754],[-70.99482777768534,42.38416070469728],[-70.9948170375651,42.38416148400449],[-70.99480887354,42.38416418953712],[-70.99479924992501,42.38416414727977],[-70.99478961852158,42.38416492785166],[-70.99478000026635,42.38416406275199],[-70.99477038565439,42.38416319766755],[-70.99476076861401,42.38416233257161],[-70.99475115914244,42.3841603682551],[-70.99474266100219,42.38415868610734],[-70.99473786392417,42.38415674562425],[-70.99473195477808,42.38415507124427],[-70.99472827660024,42.38415231371068],[-70.99472348490532,42.38414954768558],[-70.99471869442519,42.38414678166557],[-70.99471501407592,42.38414429600932],[-70.99471134250322,42.38414071203877],[-70.99470803107806,42.38413795341434],[-70.99470547062334,42.38413437432344],[-70.99470216699554,42.38413079196857],[-70.99469960532706,42.3841272128722],[-70.99469850856765,42.3841255632271],[-70.9946959532404,42.38412088670608],[-70.99469486306367,42.38411841332531],[-70.9946937750956,42.38411566356545],[-70.99469380359817,42.38411209674517],[-70.99469271562305,42.38410934788555],[-70.99469273755756,42.38410660300037],[-70.9946927660458,42.38410303798058],[-70.99469279455562,42.38409947026002],[-70.9946939242125,42.38409700302748],[-70.99469394611818,42.38409426174331],[-70.9946950779547,42.38409152173275],[-70.99469620979112,42.38408878172218],[-70.99469772099627,42.3840852214138],[-70.99470589818779,42.38408086751747],[-70.99471334122357,42.3840756857314],[-70.99472151063068,42.38407215376371],[-70.99473115856436,42.38406945475404],[-70.9947397085594,42.3840651015922],[-70.99475416164088,42.38406242008151],[-70.99476864052295,42.38405726918923],[-70.9947830906631,42.38405541142653],[-70.99479755931706,42.38405108425022],[-70.99481201846459,42.38404840275891],[-70.99482648710779,42.38404407647923],[-70.99484692311813,42.38403428733566],[-70.99485287512468,42.38403074742342],[-70.99485918851492,42.38402803016122],[-70.99486624679255,42.38402449330479],[-70.9948736595861,42.38402370298597],[-70.9948818082657,42.38402291589747],[-70.99488921205743,42.38402294840238],[-70.99489772989412,42.38402216293346],[-70.99490475431288,42.38402301663612],[-70.9949132692199,42.38402305401743],[-70.99493584853842,42.38402315313992],[-70.99495880991529,42.38402133451869],[-70.99497214674787,42.38401974463284],[-70.99498548938698,42.3840178837839],[-70.99499846363211,42.38401546943918],[-70.99501069808261,42.38401278085889],[-70.99501786495185,42.38399579685124],[-70.99500975252613,42.38399219699958],[-70.9949868807908,42.38398248872247],[-70.99495438762649,42.38397246901935],[-70.99492813917975,42.38396878594738],[-70.99490521678545,42.38396511837163],[-70.99491005111003,42.38396239461331],[-70.99491873038981,42.38394185210614],[-70.9949102724671,42.3839346819845],[-70.9948959156329,42.3839250146711],[-70.99489227255404,42.38391786388562],[-70.99489235146956,42.38390798445896],[-70.99488762212033,42.38389726285895],[-70.99488286256545,42.38389093093605],[-70.99487004059264,42.38387413376565],[-70.99486530831248,42.38386423591636],[-70.99486060453405,42.38385077034602],[-70.99485587763755,42.38384004695472],[-70.99484971870234,42.38382327993647],[-70.9948463977698,42.38382216880321],[-70.99484270428047,42.383821329722],[-70.99483900595557,42.38382048791854],[-70.994835305893,42.38382047167252],[-70.99483197498672,42.38382045704727],[-70.99482828904328,42.38381852144652],[-70.99482459019521,42.38381850520548],[-70.99482088770414,42.38381848894834],[-70.99481606656286,42.3838195634311],[-70.99481273687094,42.38381954881061],[-70.99480903437976,42.38381953255309],[-70.99480532530762,42.38382034003111],[-70.99480199023458,42.38382115095189],[-70.99479827874077,42.38382195751879],[-70.99478864763158,42.38382301177962],[-70.99477791295685,42.38382296464141],[-70.99476829182248,42.38382292239213],[-70.99475718920586,42.38382287363623],[-70.99474758097872,42.38382091202539],[-70.99472838307953,42.38381451488812],[-70.99471067324114,42.38380730141862],[-70.99469260739414,42.38379844155445],[-70.99466699033326,42.38371545742112],[-70.99466704075107,42.38370914841581],[-70.99466708242775,42.3837039332235],[-70.99466711970872,42.38369926808856],[-70.99466828148468,42.38369323675222],[-70.99466943524332,42.38368775275647],[-70.99467207121184,42.383681727895],[-70.99467430462863,42.38368064025204],[-70.99467690552478,42.38367900414632],[-70.99467914185948,42.3836770954523],[-70.99468285628592,42.38367546513751],[-70.99468509264189,42.38367355374258],[-70.99468880048545,42.3836727471633],[-70.99469251491139,42.38367111684821],[-70.99469622617035,42.38367003479519],[-70.99469845253489,42.38366922170896],[-70.99470327148698,42.38366842000918],[-70.99470809922249,42.38366651909461],[-70.9947118112117,42.38366488966847],[-70.99471515989684,42.38366298225786],[-70.99471999199095,42.38366053578667],[-70.99472370619507,42.38365862908082],[-70.9947263206936,42.38365589828204],[-70.99472745788132,42.38365233543006],[-70.99472858872886,42.38364987000283],[-70.99472861064726,42.38364712691782],[-70.99472974247428,42.38364438690665],[-70.99472977096741,42.38364082098625],[-70.99472979948212,42.38363725236498],[-70.99472871151362,42.38363450350548],[-70.99472873999962,42.38363093848525],[-70.9947276639737,42.38362654304915],[-70.99472768590653,42.38362379816364],[-70.99472771441415,42.38362023044267],[-70.9947277429146,42.38361666362194],[-70.99472777142941,42.38361309500072],[-70.99472890225464,42.38361063227421],[-70.99473004065577,42.38360706942753],[-70.99473748824919,42.38360161397168],[-70.99474603453754,42.3835972607929],[-70.99475421409132,42.38359290690331],[-70.9947627537958,42.38358937745902],[-70.9947712971495,42.38358584712985],[-70.99478094260697,42.38358314450402],[-70.99479057685284,42.38358154108125],[-70.99480022109451,42.38357883844841],[-70.99481098543785,42.38357531876914],[-70.99482174197777,42.38357262371946],[-70.99483396761191,42.38357102897073],[-70.99484582626258,42.383569160722],[-70.994858047715,42.38356839331814],[-70.99486988981086,42.38356844531117],[-70.99488063225834,42.38356766600958],[-70.99489283520644,42.38356936711384],[-70.99490468507496,42.38356859807366],[-70.99491316780947,42.38357219955903],[-70.99492165415913,42.38357580466079],[-70.99492976771914,42.38357940722507],[-70.99493825407072,42.38358301232563],[-70.99497072607436,42.38359550413634],[-70.9950042926636,42.38360991925856],[-70.99503898472503,42.38362269448225],[-70.9950725513299,42.38363711138495],[-70.99510611137302,42.38365235201358],[-70.99513706594924,42.38366950061575],[-70.99514440616211,42.3836774913818],[-70.99514916816298,42.38368382240459],[-70.9951550344469,42.38369070924978],[-70.99515611830871,42.38369427915088],[-70.99515868412601,42.38369703539129],[-70.99515976796654,42.38370060799313],[-70.9951619670574,42.38370336262431],[-70.99516563984449,42.38370694658616],[-70.99516820812016,42.38370969923599],[-70.99517152049911,42.38371218596435],[-70.99520888583194,42.38371426842767],[-70.99524625574448,42.38371608171258],[-70.9953013915544,42.38371824210703],[-70.99538799862475,42.38371862199489],[-70.99543352377295,42.38371882165742],[-70.99546017341044,42.38371893852807],[-70.9955056494106,42.38372545077403],[-70.99553819043757,42.38372916130569],[-70.99555966097071,42.38372925544459],[-70.99557415503601,42.38372218330069],[-70.99558271540079,42.38371590800442],[-70.99559239583715,42.38370881835505],[-70.99561539333776,42.38370260635054],[-70.99563800221358,42.38369913761944],[-70.99565613455061,42.38369921710637],[-70.9956694914557,42.38369570871174],[-70.99568730641978,42.38368975036385],[-70.995705468421,42.38368626212714],[-70.99572837398685,42.38369157609907],[-70.99574610458319,42.38369604452112],[-70.99574633215602,42.38366750635273],[-70.9957223529233,42.38365779786851],[-70.9956987306971,42.38364946298476],[-70.9956865289262,42.38364776197132],[-70.99567580205016,42.38364689298693],[-70.99566359470052,42.38364573932248],[-70.99565174138658,42.38364678751536],[-70.99560624474762,42.38364302021801],[-70.99556777734932,42.38364010748649],[-70.9955293281953,42.38363445164094],[-70.9955267553309,42.38363196816554],[-70.99552455621951,42.38362921444153],[-70.99552197773133,42.38362728371891],[-70.99551978883497,42.38362370627502],[-70.9955187061825,42.3836201345821],[-70.99551724440575,42.38361765867926],[-70.99551616175354,42.38361408698628],[-70.99551397164365,42.38361050953696],[-70.99551142284152,42.38360501019795],[-70.99550923686812,42.38360060990235],[-70.99550556405337,42.38359702775193],[-70.9955019002467,42.38359262097595],[-70.99549710977472,42.38358985498802],[-70.99549231930315,42.3835870889999],[-70.99548641016877,42.3835854173592],[-70.9954805032398,42.38358346933905],[-70.99547422373688,42.38358179607359],[-70.99546131188228,42.38357625218898],[-70.99544692780691,42.38357015086954],[-70.99543736995915,42.38356187760955],[-70.995427808723,42.38355387712153],[-70.9954182499107,42.3835458775436],[-70.99540502364702,42.38353347297029],[-70.99538957080782,42.38352160600556],[-70.99537040408632,42.38351191405309],[-70.99535011698883,42.38350277086096],[-70.99534163426746,42.38349916580673],[-70.9953342577958,42.38349556560436],[-70.99532614541626,42.3834919657746],[-70.99531877138219,42.38348836468165],[-70.99531177840889,42.38348312133167],[-70.99530701884989,42.38347678852542],[-70.99530225151733,42.38347127764893],[-70.99529860501279,42.38346440144883],[-70.99529495291165,42.3834580744005],[-70.99527849535305,42.38343303088136],[-70.9952605030229,42.38341511631893],[-70.99524028728005,42.3833971919989],[-70.99522961984691,42.38338918664069],[-70.9952200674162,42.38338008962116],[-70.99521162390731,42.3833712711542],[-70.99520319281143,42.38336135438814],[-70.99519262907371,42.38333990456176],[-70.99518427854422,42.38331928820996],[-70.99517854032817,42.38329621112549],[-70.99517286902761,42.38326490479003],[-70.99516941652901,42.38323388277822],[-70.99516856052067,42.38320177290601],[-70.99517640560059,42.38310027450381],[-70.9951881564867,42.38301910196304],[-70.99519306202633,42.38300759888364],[-70.99519906310988,42.38299774453923],[-70.99520130258863,42.38299528487164],[-70.99520279573765,42.38299337110593],[-70.99520504882662,42.38298981494558],[-70.9952061718608,42.38298817234358],[-70.99518994884967,42.38293376780128],[-70.99519489698541,42.38291677584444],[-70.995162490984,42.38289605483845],[-70.99513631697641,42.38288249416309],[-70.9950727421497,42.38287151162586],[-70.99497286394562,42.38286421483662],[-70.9948958919606,42.38286195481457],[-70.9948193017768,42.38285887355293],[-70.99474826514097,42.38285499466515],[-70.9946772594383,42.38284754982303],[-70.99466286415715,42.38284227301934],[-70.9946484878815,42.3828350741795],[-70.9946355918466,42.38282788274016],[-70.99463561378315,42.38282513785417],[-70.99464550448849,42.38279142944997],[-70.99467310244735,42.38262663025397],[-70.99467111072728,42.38259808503167],[-70.99469847384121,42.38260094839657],[-70.9947010729601,42.3826001369474],[-70.99470219818015,42.382598221572],[-70.9947033146598,42.38259740000989],[-70.99470481265733,42.38259548807227],[-70.99470481923234,42.38259466523663],[-70.99470482580733,42.38259384240095],[-70.99470334973618,42.38259301035266],[-70.99470335849807,42.38259191383861],[-70.9947033650731,42.38259109100295],[-70.9947022617652,42.38259026419296],[-70.99470226834023,42.38258944135728],[-70.99470007173677,42.3825866867273],[-70.9946986097886,42.38258393532389],[-70.99469863829742,42.38258036760208],[-70.99469866023114,42.38257762271593],[-70.99470017259274,42.38257406511237],[-70.99470017919658,42.38257323867567],[-70.99470018576444,42.38257241674026],[-70.99470130976255,42.3825705022598],[-70.99470131633758,42.38256967942413],[-70.99470132291263,42.38256885658846],[-70.99470132950205,42.38256803195226],[-70.99470022742327,42.38256720334709],[-70.99470023619241,42.38256610593279],[-70.99470024276027,42.38256528399737],[-70.99466770652825,42.38256075038137],[-70.99473923997161,42.38231684033206],[-70.99476106140057,42.38231885648059],[-70.9948324541409,42.38209278408144],[-70.9948412138337,42.38206153838309],[-70.9948219915932,42.38205870989736],[-70.99484166976976,42.38200446382869],[-70.9948800555306,42.38201807639141],[-70.99493503957805,42.38203889930462],[-70.99499956781708,42.38206937017468],[-70.99499953275438,42.38207376073282],[-70.99506784795028,42.38209381743235],[-70.99513874427979,42.38211470918259],[-70.99520972414034,42.38212544689012],[-70.9952156528359,42.38212465003825],[-70.9952215881139,42.38212302854975],[-70.99522159468933,42.38212220481373],[-70.995222721085,42.38212029123886],[-70.99522272765321,42.3821194684031],[-70.99522422443819,42.38211755285216],[-70.99522423757456,42.38211590718058],[-70.99522425291711,42.38211398512983],[-70.99522425948531,42.38211316229405],[-70.9952242726217,42.38211151662246],[-70.99522428796425,42.38210959457171],[-70.99522429453243,42.38210877173591],[-70.99522282843287,42.3821068431853],[-70.9952228415693,42.38210519751374],[-70.99522173705599,42.38210436980305],[-70.99522064909965,42.38210162004695],[-70.9952195545536,42.38209969582731],[-70.99521808210135,42.38209886740259],[-70.99521697640263,42.38209803608552],[-70.99521477076819,42.38209610789119],[-70.99521329954474,42.38209527767116],[-70.99521219623882,42.382094450866],[-70.99521111121574,42.38209087735771],[-70.99521002203144,42.38208812939668],[-70.99521005051115,42.38208456167432],[-70.99521006364792,42.38208291600273],[-70.99521009212764,42.38207934828039],[-70.99521011403898,42.38207660339378],[-70.99521013595032,42.3820738585072],[-70.99521126892103,42.3820711211964],[-70.99521240215716,42.38206865487389],[-70.99521353390622,42.382065918458],[-70.9952150336228,42.38206317915513],[-70.9952161653932,42.38206044003841],[-70.99521840191274,42.38205880322177],[-70.995221006127,42.38205689343005],[-70.9952232402033,42.38205525840316],[-70.99522583809312,42.38205444513622],[-70.99522807195397,42.38205253281913],[-70.99523178332409,42.38205172803853],[-70.99523400719615,42.38205091493099],[-70.9952377207722,42.38204983377105],[-70.99524031744727,42.3820490204984],[-70.99524365483546,42.38204821137581],[-70.99524625270318,42.38204740080916],[-70.99524848776308,42.38204549029752],[-70.99525108322356,42.38204467701933],[-70.99525479874653,42.38204304759103],[-70.99525703259168,42.38204113707391],[-70.99525816047202,42.38203949359205],[-70.9952501804601,42.38201887796345],[-70.99524183251484,42.3819982616202],[-70.99523013186244,42.38198037464893],[-70.99522284757218,42.38196524933522],[-70.99521450208589,42.38194463119987],[-70.9952075840016,42.38193033305733],[-70.9951992599561,42.3819064217556],[-70.99520324050967,42.38187159081326],[-70.99520338289533,42.38185375400106],[-70.99520840760748,42.38182715808678],[-70.99521555346479,42.38181292075087],[-70.99522795833711,42.38178882761105],[-70.99523621284007,42.38177459423759],[-70.99524854370414,42.38176037964816],[-70.99525935203464,42.38175054638912],[-70.99527645132379,42.38174183998165],[-70.99529208497515,42.38173038666052],[-70.99530772229961,42.38171892885197],[-70.99532334231765,42.38170994316052],[-70.99533565298206,42.38169764699016],[-70.99537553268802,42.38166297080795],[-70.99540345674274,42.38164251356583],[-70.99543583992515,42.38161960547873],[-70.9954590940345,42.38158129030426],[-70.99546777061123,42.38156102322341],[-70.9954835487085,42.38153145488221],[-70.99549920807135,42.38151752854999],[-70.99551966504437,42.38150499619478],[-70.99555123615244,42.38149086413827],[-70.99558721015315,42.38148224314387],[-70.99562350686907,42.38147883442927],[-70.99564608528027,42.38147893341245],[-70.99567495247247,42.381479059959],[-70.99571445548743,42.38149157969017],[-70.99573719224993,42.38151857190005],[-70.99577288693607,42.38154452254415],[-70.9958042819996,42.38155261779678],[-70.99582828910916,42.38155903583583],[-70.99585227532937,42.38156792237231],[-70.99587968665801,42.38156529750469],[-70.99591224991583,42.38156653944062],[-70.99594006416733,42.3815595256118],[-70.99597129157232,42.38154264875237],[-70.9960351417407,42.38151878089821],[-70.99611487688696,42.38149882411837],[-70.99614245337253,42.3814756183917],[-70.99621372656581,42.38144931435397],[-70.9962342018474,42.38143431065749],[-70.9962691598754,42.38141388310544],[-70.99629807074542,42.38140852242204],[-70.99638102646638,42.38140284734777],[-70.99642070000444,42.38139396499871],[-70.99644479766917,42.38138885869891],[-70.9964641618147,42.38137384919796],[-70.99648829492617,42.38136489970799],[-70.99650052882201,42.38136220826683],[-70.99652463302655,42.38135627821399],[-70.9965594477157,42.38135368558353],[-70.99659173857681,42.38134230317549],[-70.99662336202049,42.38132186092501],[-70.99665468497547,42.38129263682694],[-70.99668386150097,42.38125434551642],[-70.99671176189189,42.3812366328369],[-70.99672756141509,42.38120459402486],[-70.99676360473573,42.38118691605332],[-70.9968036680895,42.38117556578335],[-70.99684704036291,42.38116697405364],[-70.99689856016927,42.38115814604967],[-70.99692636418717,42.38115222939133],[-70.99698155673332,42.38114698255703],[-70.99703710313804,42.381143657561],[-70.99707670440164,42.3811438306833],[-70.9971163056655,42.38114400379197],[-70.99716437780499,42.38114970297656],[-70.99718842854277,42.38115063185759],[-70.99721095546302,42.38115703953845],[-70.99724716148405,42.38116515632358],[-70.99726744906744,42.38117402550231],[-70.99729032086694,42.38118318325862],[-70.9973224331742,42.38119484637834],[-70.99735705216052,42.38121640111859],[-70.99742080755777,42.38125125707022],[-70.99748433102141,42.3812685482244],[-70.99752746465099,42.38129013920319],[-70.99759098164553,42.38130825313441],[-70.99763636336736,42.38132628874273],[-70.99769880545016,42.38134000720834],[-70.99776236201656,42.38135345681714],[-70.99785470392547,42.38137718459782],[-70.99787277194523,42.3813860448813],[-70.99788934498785,42.38139599428954],[-70.99792287862265,42.38141480183856],[-70.99797932281176,42.38143837105124],[-70.99803800705183,42.38145893403981],[-70.99810041450571,42.38147704284663],[-70.99816245405975,42.38149515091491],[-70.99821189112684,42.38151512430088],[-70.99826095596077,42.38153564251775],[-70.9983185767418,42.38155098714799],[-70.998375817281,42.38156742664377],[-70.99842746113595,42.38158905528721],[-70.99847762845248,42.38161067747058],[-70.99853191491293,42.38162600835826],[-70.99858582984174,42.38164133580032],[-70.99866115059658,42.38166498694371],[-70.99869583798348,42.38167830932771],[-70.99873089354521,42.38169191059442],[-70.99874355176354,42.38172928634151],[-70.99874965692756,42.38175263493697],[-70.99875181357558,42.38176060199081],[-70.99875395862472,42.38177049201213],[-70.99875649964626,42.38177653952302],[-70.99876602285738,42.38178920307022],[-70.99877666583998,42.38180077494258],[-70.99878879436945,42.38181152862069],[-70.99880166359955,42.38182228822519],[-70.9988149056359,42.38183304765169],[-70.9988292666869,42.38184189163407],[-70.998871276079,42.38186539842254],[-70.99891441178211,42.38188699158446],[-70.99900664283733,42.38192471024595],[-70.99907346055015,42.38194723023623],[-70.999140641667,42.38197002275653],[-70.99924028424516,42.38200695333094],[-70.9992808428546,42.38202661481967],[-70.99932028947016,42.38204654334206],[-70.99942100086456,42.38208869288492],[-70.99947855076849,42.38211309082934],[-70.99952761428995,42.38213388488243],[-70.99957073905291,42.38215629791104],[-70.99961015205649,42.38218034230875],[-70.99964732267433,42.38220739651045],[-70.99968301285078,42.38223416787305],[-70.99972721431506,42.38226125442397],[-70.99977514210521,42.38228533758949],[-70.99982680125598,42.3823053199345],[-70.99987956963191,42.38232585355338],[-70.99997760781835,42.38237814354305],[-71.00007194792862,42.38243096475429],[-71.00011651885963,42.38245805095796],[-71.0001607228649,42.38248485916116],[-71.00025024516746,42.38253793568095],[-71.00029594495743,42.38256310460012],[-71.00034238306787,42.38258827850788],[-71.00038326915885,42.38261315189769],[-71.00042378880632,42.38263830007025],[-71.00047169615948,42.38266457865739],[-71.00051962456733,42.38268865790954],[-71.00056127100355,42.38271106774395],[-71.00060438621875,42.38273540065388],[-71.00065009780586,42.38275865006499],[-71.0006954328255,42.38278299527569],[-71.00078163503531,42.38283495771282],[-71.00081881182027,42.38286118869075],[-71.00085562044531,42.38288714257068],[-71.00096479268977,42.38293645863975],[-71.0010665796651,42.38298327758566],[-71.00111565087559,42.38300324812143],[-71.00116471780626,42.38302376509291],[-71.00121633037291,42.38304978484194],[-71.00126534542649,42.38307688805882],[-71.00130696547501,42.38310286354901],[-71.0013478537558,42.38312801118761],[-71.0014277965507,42.38317555709406],[-71.00152470514487,42.38323113230493],[-71.00157741521,42.38325907696058],[-71.00163124793666,42.38328510343776],[-71.00167555694055,42.38329874207803],[-71.00173943574157,42.38331850279231],[-71.00184944740924,42.38335547598547],[-71.00197310099097,42.38339881825007],[-71.00208307378679,42.38344045454565],[-71.00213360892658,42.38346289956961],[-71.00218488118271,42.38348534956116],[-71.00230372934865,42.38352784871072],[-71.00236943358229,42.38355118211239],[-71.00243439994318,42.38357369122175],[-71.0024952654386,42.38359974950524],[-71.00255650905524,42.38362498472655],[-71.00267979045041,42.38366914747922],[-71.00280933323494,42.38371718048952],[-71.00286213461096,42.38373332486],[-71.00291604833231,42.38374947491231],[-71.00296625988273,42.38376588083268],[-71.00301684277346,42.38378201374697],[-71.00306818984662,42.38379486118504],[-71.00311991719833,42.38380660648846],[-71.00314869329696,42.38381908002116],[-71.0031774559416,42.38383264913973],[-71.00323610864517,42.38385787640868],[-71.00330332588737,42.38387682599767],[-71.00337053819399,42.38389687297762],[-71.00342185433799,42.38391383444226],[-71.00344842044304,42.38392382616804],[-71.00347464097072,42.38393189698094],[-71.00351678057417,42.38393921452084],[-71.00355893070687,42.38394488276195],[-71.003601844324,42.38394781290295],[-71.00365475810435,42.38394968691753],[-71.00370879834718,42.38394992003936],[-71.00375953323768,42.38394657193587],[-71.00381098734124,42.38394597009111],[-71.00393015014825,42.38394922892674],[-71.0039745462183,42.38395188983213],[-71.00401893648842,42.3839548261837],[-71.00408258863432,42.38395674629326],[-71.00414771647444,42.38395894731552],[-71.00420653227599,42.3839635914925],[-71.0042653213308,42.38397180336763],[-71.00429043892511,42.3839782217136],[-71.00431554846044,42.38398628844766],[-71.00433954847918,42.38399352753255],[-71.00436353589512,42.38400268507301],[-71.00438160679838,42.38401154343384],[-71.00439928376319,42.38402232311121],[-71.00441625766582,42.3840295319139],[-71.00443543269823,42.38403866870988],[-71.00444612412468,42.3840439292317],[-71.00445830995916,42.38404754776084],[-71.00447012662306,42.38405116649921],[-71.0044834300106,42.3840539687758],[-71.00449526173838,42.38405566546046],[-71.00450857038236,42.3840576421922],[-71.00451820043502,42.38405686080146],[-71.0045278402935,42.38405498290075],[-71.00453858792339,42.38405338165686],[-71.00454821891205,42.38405232567968],[-71.00455786064299,42.3840498986085],[-71.0045674928522,42.38404884173463],[-71.00456860396861,42.38404884651928],[-71.00457880063603,42.38397589863444],[-71.00461571947515,42.38370439192864],[-71.00478147890662,42.38371224121605],[-71.0047540575447,42.38385810767419],[-71.00513612795508,42.38389460094638],[-71.00513110481138,42.38392119907147],[-71.0051322207829,42.38392120387155],[-71.0051429356113,42.38392316847304],[-71.0051551465716,42.38392404385736],[-71.00516588127115,42.38392409002734],[-71.00517402215645,42.38392412504067],[-71.00518141584601,42.38392498150416],[-71.00518992215855,42.38392611553966],[-71.00519805903416,42.38392697339773],[-71.00520766114191,42.38392975967256],[-71.00521615673436,42.38393226389915],[-71.00522574996276,42.38393587479855],[-71.00523423453448,42.38393947732833],[-71.00524122378279,42.3839449973437],[-71.00524970433335,42.38394942451937],[-71.00525559228386,42.38395384054576],[-71.0052618494136,42.3839582554585],[-71.00526662409555,42.38396294218537],[-71.00527251326987,42.38396735731585],[-71.0052758009698,42.38397258502368],[-71.00528057043769,42.38397809369091],[-71.00528423213953,42.38398332480727],[-71.0052878852775,42.38398965063745],[-71.0052900621378,42.3839951490566],[-71.00529149920266,42.38400036790613],[-71.00529257718351,42.38400476324824],[-71.00529254068627,42.38400942838626],[-71.00529251278157,42.38401299520921],[-71.00529248486981,42.38401656293245],[-71.00529356928833,42.38402013543858],[-71.00529465006402,42.384023707929],[-71.00530089430774,42.38402977121228],[-71.00530677369812,42.38403528285019],[-71.00531376512552,42.38404052648177],[-71.00532112719274,42.38404604809508],[-71.0053295964752,42.38405129717957],[-71.00533659312872,42.38405571796854],[-71.00534619003976,42.38405932707293],[-71.00535467704954,42.38406293140471],[-71.00538088443682,42.38407209917677],[-71.00540858069739,42.38408017499128],[-71.00543740216746,42.38408660990862],[-71.00546512997252,42.38409111980246],[-71.0055560919653,42.38410303624534],[-71.00560195346688,42.38410762403522],[-71.0056485447051,42.38411331329422],[-71.00566924955854,42.38411614453451],[-71.00575908885959,42.38412970172003],[-71.00585040630892,42.38414354247264],[-71.00594022088882,42.38416011807719],[-71.00602670917587,42.38417640294156],[-71.0060699034062,42.3841908597578],[-71.00611309404145,42.38420531294112],[-71.00625571750642,42.38423803207787],[-71.00634332750617,42.38425267759035],[-71.00643241783303,42.38426732848607],[-71.0064992688804,42.38428545086533],[-71.00656650618222,42.38430247831082],[-71.00665555901271,42.38432179506671],[-71.00674424608722,42.38434083649766],[-71.00675976063238,42.38434446725222],[-71.00684994545624,42.38436159470731],[-71.00689429336563,42.38437001612282],[-71.00693975055584,42.38437899145089],[-71.0069482590809,42.3843798534783],[-71.00699260545125,42.38438909861296],[-71.00703806266212,42.38439807480238],[-71.00712713838755,42.38441464541048],[-71.00718000069516,42.38442365326596],[-71.00726985115172,42.38443556358838],[-71.00731681437743,42.38444125286247],[-71.00736230068135,42.38444666120551],[-71.00739818014134,42.38444955800806],[-71.00744402948487,42.38445606712504],[-71.00748951459596,42.38446147541259],[-71.00758085429936,42.38447256720261],[-71.00764557822471,42.3844791561191],[-71.00773694573398,42.38448668276249],[-71.00782942441755,42.38449421048541],[-71.00787529917538,42.38449715169662],[-71.0079219058553,42.38450091888336],[-71.00793411696561,42.38450179397262],[-71.00794706518296,42.384502672213],[-71.00811058473289,42.38451325209124],[-71.00820309124755,42.38451721179025],[-71.00829560170848,42.38452035306971],[-71.0083570374936,42.38452143757541],[-71.00842295465971,42.38451732852695],[-71.00848926074713,42.38451130258814],[-71.00866121713612,42.3844843216912],[-71.00875165791287,42.3844679679281],[-71.00884064543405,42.38444859102448],[-71.0088428716441,42.38444777766472],[-71.00887179564465,42.38444076455221],[-71.00889850739033,42.38443292362752],[-71.00892596965714,42.38442398304699],[-71.00895159677796,42.38441256693764],[-71.00897914485854,42.38439210392236],[-71.00900596737299,42.38436999297756],[-71.00905444690532,42.38432382511146],[-71.00911981294206,42.38424754170982],[-71.00915496371454,42.3842013178322],[-71.00917217766933,42.38417751922807],[-71.00919160353517,42.38415427653211],[-71.00921326043117,42.38413022138673],[-71.00923748893706,42.38410809842171],[-71.00926282703604,42.38408680034684],[-71.00929073672326,42.38406743715048],[-71.00943513834765,42.38401372055215],[-71.00947745113197,42.38399880672706],[-71.0095182833103,42.38398361378702],[-71.00960143363909,42.38395296141015],[-71.00961478375224,42.38394945137095],[-71.00972812194196,42.38389203415789],[-71.00980320139001,42.38385228854246],[-71.00987681290852,42.38381061901064],[-71.0099032228711,42.38379371966783],[-71.00996130118183,42.3837503354849],[-71.01001680929751,42.383704196248],[-71.0100764445371,42.38365121616272],[-71.01013201169059,42.38359712037352],[-71.01013574181087,42.38359356841318],[-71.0101891012332,42.38353836394408],[-71.01023989225712,42.38347985706255],[-71.01025333999496,42.38346372442287],[-71.01030042964996,42.38340520085788],[-71.01034530701637,42.38334584589452],[-71.01035017462604,42.38333873092569],[-71.01039173073546,42.38327826345687],[-71.0104329267101,42.38321614871295],[-71.0104437969476,42.38319835845526],[-71.01048166801192,42.38313513209368],[-71.01051805511817,42.38307299595687],[-71.01053155791605,42.38304972963306],[-71.0105646255881,42.382985932731],[-71.01059510670527,42.38292102646423],[-71.01060114783955,42.38290568513955],[-71.01064538276053,42.38278568299489],[-71.01065795515642,42.38273936171309],[-71.01067126220609,42.38269414010544],[-71.01072514115654,42.38257116027579],[-71.01075226590083,42.38250980663184],[-71.01077902140912,42.38244845591214],[-71.0108161257113,42.3823407699268],[-71.01082849220684,42.38227331617524],[-71.01084378957052,42.38216197411336],[-71.01084612605773,42.38214689071021],[-71.01085677153299,42.38201494466738],[-71.0108598558705,42.38195074559908],[-71.01086146027528,42.38188681572601],[-71.01086659088584,42.38184567724511],[-71.0108706158882,42.38180398308649],[-71.01087110616865,42.38174059765053],[-71.01087157523065,42.38167995530286],[-71.0108743107078,42.38161328525443],[-71.01087741471083,42.38154716684808],[-71.01087766940738,42.38151423807266],[-71.01087904668304,42.38147966924216],[-71.01088519675596,42.38145005968636],[-71.01089283494764,42.38141990457956],[-71.0109077357279,42.38135932628168],[-71.01092055821073,42.38123287672487],[-71.01092415661626,42.38110282370791],[-71.01092079808807,42.38105835407228],[-71.01091892430665,42.38101361796046],[-71.01092023486362,42.38098782845809],[-71.01092265282533,42.38096204546387],[-71.01092752018657,42.3809549304667],[-71.01093239511776,42.38094699353783],[-71.01094101903684,42.38093193955766],[-71.01094701989786,42.3809220843976],[-71.01095191360922,42.38091140436777],[-71.01095681491049,42.38089989970545],[-71.01095949015246,42.38088920844433],[-71.01096179896061,42.38087769456214],[-71.01096447298656,42.38086700329571],[-71.01096456423035,42.38085520449866],[-71.01096465336461,42.38084367848006],[-71.01096214485473,42.38083296698434],[-71.01095849771575,42.38082581579205],[-71.01095373222398,42.38081975999856],[-71.01095043755701,42.38081507979647],[-71.01094788146682,42.38081067822231],[-71.01094569573024,42.38080627822239],[-71.01094424312274,42.38080270420291],[-71.01094316722525,42.38079830982112],[-71.01094208010034,42.38079473915581],[-71.0109410063336,42.38079006929466],[-71.01094595038826,42.38077334944118],[-71.01095311258962,42.38075636712932],[-71.01101276856814,42.38065234655156],[-71.0110906588584,42.38053523040642],[-71.01111979110826,42.38050132958917],[-71.01113545405562,42.38048630190389],[-71.01115370459097,42.38047128611181],[-71.0111730522153,42.38045792340721],[-71.01119462194558,42.3804445692404],[-71.01134317023924,42.38038016522879],[-71.01138883841583,42.38036169980859],[-71.01141295568566,42.38035384548175],[-71.01143111829653,42.38035035387008],[-71.01144890418396,42.38034768532035],[-71.0114681654231,42.38034612048497],[-71.01148741635463,42.38034510387856],[-71.01150814898854,42.38034436904876],[-71.0115202657092,42.38034591955665]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00013,"geom:area_square_m":1185002.444899,"geom:bbox":"-71.0141341336,42.380344369,-70.9866428593,42.3933160521","geom:latitude":42.386853,"geom:longitude":-70.998238,"iso:country":"US","lbl:latitude":42.391107,"lbl:longitude":-71.008863,"lbl:max_zoom":18,"mps:latitude":42.385286,"mps:longitude":-70.998446,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Orient Hts","Orientheights"],"name:lat_x_preferred":["Colles Orientales"],"reversegeo:latitude":42.385286,"reversegeo:longitude":-70.998446,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815995,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"025ded38caed5c5564203f9974881317","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711943,"neighbourhood_id":85815995,"region_id":85688645}],"wof:id":1108711943,"wof:lastmodified":1566624127,"wof:name":"Orient Heights","wof:parent_id":85815995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85839765],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711963.geojson b/fixtures/microhoods/1108711963.geojson new file mode 100644 index 0000000..b99be8d --- /dev/null +++ b/fixtures/microhoods/1108711963.geojson @@ -0,0 +1 @@ +{"id":1108711963,"type":"Feature","bbox":[-71.08568020087179,42.34522735446343,-71.07854581369978,42.34958670821143],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.08474147424417,42.34602883388509],[-71.08568020087179,42.34793464733426],[-71.07941621452837,42.34958670821143],[-71.07854581369978,42.34766853621563],[-71.08174111761558,42.34522735446343],[-71.08222804647491,42.34556687692017],[-71.08233761459647,42.34561939906937],[-71.0824608510152,42.34566244301386],[-71.08262856659648,42.34570638966195],[-71.08279765622625,42.34574289952812],[-71.08339939281053,42.34583966519005],[-71.08474147424417,42.34602883388509]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":163792.190984,"geom:bbox":"-71.0856802009,42.3452273545,-71.0785458137,42.3495867082","geom:latitude":42.347443,"geom:longitude":-71.081961,"iso:country":"US","lbl:latitude":42.348532,"lbl:longitude":-71.079862,"lbl:max_zoom":18,"mps:latitude":42.347299,"mps:longitude":-71.081907,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:note":"same as Prudential Center","mz:tier_metro":1,"name:aze_x_preferred":["Prudensial"],"name:deu_x_preferred":["Prudential"],"name:eng_x_preferred":["Prudential Center"],"name:eng_x_variant":["Prudential"],"name:fra_x_preferred":["Prudential"],"name:ind_x_preferred":["Prudential"],"name:jpn_x_preferred":["プルデンシャル"],"name:kor_x_preferred":["푸르덴셜"],"name:lit_x_preferred":["Prudential"],"name:rus_x_preferred":["Prudential"],"name:swe_x_preferred":["Prudential"],"reversegeo:latitude":42.347299,"reversegeo:longitude":-71.081907,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85804161,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fee31467657f07a7c527be76d659b3b1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711963,"neighbourhood_id":85804161,"region_id":85688645}],"wof:id":1108711963,"wof:lastmodified":1566624135,"wof:name":"Prudential","wof:parent_id":85804161,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891281],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711969.geojson b/fixtures/microhoods/1108711969.geojson new file mode 100644 index 0000000..5bbb0ae --- /dev/null +++ b/fixtures/microhoods/1108711969.geojson @@ -0,0 +1 @@ +{"id":1108711969,"type":"Feature","bbox":[-71.14455571530726,42.22809716290507,-71.12246398112516,42.25171347001552],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.14455571530726,42.24520652868149],[-71.14402559956295,42.24512014442333],[-71.1436896212748,42.24501636334084],[-71.14332947188679,42.24487679540781],[-71.14296207116882,42.24471038710923],[-71.1426236757707,42.24452250623133],[-71.14231670280239,42.24432925680453],[-71.14203631804392,42.24417895135737],[-71.14176560172542,42.24409127300126],[-71.14144896031718,42.2440590645949],[-71.14105497138935,42.24406980073637],[-71.14062472581172,42.24409664108224],[-71.14016789202424,42.24414674301272],[-71.1397038069068,42.2442451574015],[-71.13922280201945,42.24442767084314],[-71.13841307017393,42.24481595690226],[-71.13715859009086,42.24541717027668],[-71.13593794954761,42.24596112179098],[-71.13502186486267,42.24629214254897],[-71.13431123452659,42.24649433253648],[-71.13376980188957,42.24662495050841],[-71.1333129681021,42.24672157178973],[-71.13288755674445,42.24683787494885],[-71.13252015602647,42.24699533119323],[-71.13233306367187,42.24711856967016],[-71.13219626328826,42.24728400276178],[-71.13203075784985,42.24747507634474],[-71.13180329448097,42.24760189214064],[-71.13142762231251,42.24771998304098],[-71.13098770829495,42.24779155314513],[-71.13055504560734,42.24786133389524],[-71.13024082130906,42.24799373807738],[-71.13005470384007,42.24825317785193],[-71.12990967724087,42.24867901444858],[-71.1297235597719,42.24921220146378],[-71.12954952785286,42.24967918440571],[-71.12948426588322,42.25000660704915],[-71.12953260808297,42.25024814713468],[-71.12956161340281,42.25047537274092],[-71.12942867235354,42.25072943504331],[-71.1291265336052,42.25098349643444],[-71.12875671577724,42.25121071948512],[-71.12840381771919,42.25136995412805],[-71.12813793562066,42.2513878456695],[-71.12798324058151,42.25129659896311],[-71.12787447063211,42.25121429795994],[-71.12777778623264,42.25121966541833],[-71.12768351894317,42.251305544725],[-71.12755541211388,42.251384267379],[-71.12739588285476,42.2513914239872],[-71.12723635359563,42.25135743014326],[-71.12708649277647,42.25134132779427],[-71.12694146617727,42.25136458674112],[-71.12679402246809,42.25142541779135],[-71.12664899586888,42.25151129683736],[-71.12649671793972,42.25155781462976],[-71.12632510313067,42.2515238208719],[-71.12612206589179,42.25145046586042],[-71.12589244044307,42.25137353247337],[-71.12564589522441,42.2513198579806],[-71.12538001312589,42.25130375562126],[-71.12512621657729,42.25132164713062],[-71.12488208846864,42.25136995418347],[-71.12463312614001,42.25145404413326],[-71.12433582161165,42.25156854945053],[-71.12398534066358,42.25166516319754],[-71.12366144792537,42.25171347001552],[-71.12342215403669,42.25169736773515],[-71.12331338408728,42.2516114889027],[-71.12330371564734,42.25147372469115],[-71.12333755518716,42.25125902652396],[-71.12339073160686,42.25099244218293],[-71.12344149091659,42.25077237522081],[-71.12351883843615,42.25060419334542],[-71.1236541965954,42.25044316770577],[-71.1238209771845,42.25030003349934],[-71.12402401442337,42.25019983937153],[-71.12426814253203,42.25014079632335],[-71.12448568243082,42.25008533156304],[-71.12463554325001,42.25000302892633],[-71.12471289076959,42.24989030991707],[-71.12474673030938,42.24973286077603],[-71.12475156452935,42.24954857330244],[-71.12471289076957,42.24933386863904],[-71.1246887196697,42.24905832996912],[-71.12474914741938,42.24877384418066],[-71.12490625956852,42.24851798475014],[-71.1251431363472,42.24824065324211],[-71.12545494353549,42.24788996128869],[-71.1258320126934,42.24749990393641],[-71.12625742405103,42.24711521197318],[-71.12669250384863,42.24675556771341],[-71.12705990456661,42.24646570379939],[-71.12733062088512,42.24625277816794],[-71.12752157257407,42.24608458426123],[-71.12765693073331,42.24593786153295],[-71.12774394669282,42.24580187430205],[-71.12777536912265,42.24564441496094],[-71.12777536912265,42.24544222230299],[-71.12774636380281,42.24522392515362],[-71.12763034252346,42.24503425658483],[-71.12742730528458,42.24490184613697],[-71.1272436049256,42.24480522207438],[-71.1271517547461,42.2446746003265],[-71.1271493376361,42.24446703646223],[-71.12723151937564,42.24419684460196],[-71.12748773303423,42.24369582177884],[-71.12787205352213,42.24298901769792],[-71.12813793562066,42.24249156794244],[-71.12825153979003,42.24222852547369],[-71.12825395690001,42.24200305957005],[-71.12811859874077,42.2418098024684],[-71.12787447063212,42.24167380641082],[-71.1276061714236,42.24159328227084],[-71.12738379730482,42.24152528399703],[-71.12720251405582,42.24143044416041],[-71.12706715589657,42.24128728939525],[-71.12696080305716,42.24108687218614],[-71.12684719888779,42.24077192923176],[-71.12673359471842,42.24034424899273],[-71.12665624719884,42.2399505664179],[-71.12661032210909,42.23963203937672],[-71.1264628783999,42.23934572157784],[-71.1263766953702,42.239161923256],[-71.12629609498771,42.23906316795053],[-71.12614076346833,42.23891790231788],[-71.12607883810998,42.23879549623128],[-71.12602456215897,42.23869929692458],[-71.12595095140449,42.23856521349156],[-71.12587357608808,42.23840781593046],[-71.1257690575981,42.23820087402491],[-71.12570002753908,42.23795623474768],[-71.12568077063446,42.23790088484888],[-71.1256254353084,42.2378550460896],[-71.12554050391573,42.23778111743329],[-71.12538057541718,42.23767875077727],[-71.12485313765248,42.23747624923686],[-71.12476333197596,42.2374293988813],[-71.1246893119164,42.23736513856633],[-71.12461163093491,42.23726012722046],[-71.1245457146986,42.23714933650142],[-71.12445736610978,42.23686097179923],[-71.12423603252046,42.23654599342497],[-71.12408424168498,42.23638836984192],[-71.12367102025432,42.23607856062656],[-71.1234781262761,42.23592577926167],[-71.12333952113869,42.235853423954],[-71.12326947578593,42.23577753743088],[-71.1229652514141,42.23557575858427],[-71.12275471510598,42.23542375261211],[-71.12267259352096,42.23540603466632],[-71.12263751075459,42.23537971400619],[-71.12261835000577,42.23530981126081],[-71.12251720171965,42.23519892238043],[-71.12247501953141,42.23505037293395],[-71.12246398112516,42.23493102753473],[-71.12248406004979,42.23484671921647],[-71.1225660911856,42.23476596648683],[-71.12259880959458,42.23464339871578],[-71.12260396604621,42.23443681880003],[-71.12263956078743,42.23437583088073],[-71.12273782868476,42.2343150498678],[-71.12293789964595,42.23424878455057],[-71.12311031020128,42.23423188119891],[-71.12337644193742,42.23425312429386],[-71.1236072493169,42.23428879904797],[-71.12381066462167,42.23432147015757],[-71.12405343453781,42.23432226559216],[-71.12423375542919,42.23428503405265],[-71.12439620607321,42.23420269493474],[-71.12446161669664,42.23416065291408],[-71.1245172273373,42.23410574577619],[-71.12458777750349,42.23401267381233],[-71.124678870393,42.23384129247983],[-71.1247185716572,42.23374539971506],[-71.12471529095158,42.2336406315953],[-71.12466172406324,42.23350536758825],[-71.1246079546172,42.23331106324394],[-71.12452984277004,42.23321809108749],[-71.12451062278905,42.23315692325136],[-71.1245031736343,42.2330928760154],[-71.1245238758077,42.23290381735512],[-71.1245833563494,42.23277888409338],[-71.12474480306825,42.23262228539154],[-71.12488062715072,42.23253989543268],[-71.12497282349248,42.23246879850907],[-71.12506352626379,42.23235851962528],[-71.12511909486962,42.23223067970141],[-71.1252297571639,42.23205644299919],[-71.12535184051958,42.2319375315337],[-71.12547746412314,42.2318826543672],[-71.12560671550803,42.23187725915629],[-71.12581426539113,42.23186920029084],[-71.12595163177726,42.23181727879609],[-71.12604986830915,42.23175649393959],[-71.12616413723893,42.23163465264803],[-71.12623932003231,42.2315010393467],[-71.12638887611561,42.2313705860275],[-71.12660876736932,42.23126364518801],[-71.1267812754604,42.2312263617327],[-71.12699659983022,42.2312270617294],[-71.12721990240053,42.23120742581372],[-71.12741978513004,42.23117607062405],[-71.12752977239401,42.23111532354731],[-71.12763238678407,42.2309759805466],[-71.12775491388082,42.23078141126754],[-71.12796178918693,42.23054416238899],[-71.12807836340879,42.23037218745957],[-71.12825176159599,42.23018359488275],[-71.12838158323854,42.23007925786919],[-71.12852305883831,42.22998660664832],[-71.12877511450644,42.22981903440658],[-71.1288297518043,42.2297693492151],[-71.1288635689442,42.22972041685473],[-71.1288891783976,42.22964733141927],[-71.12890565793623,42.22951062751311],[-71.12895375717848,42.22931581624285],[-71.12906834687831,42.22913868949348],[-71.12920247527289,42.22896744356241],[-71.12935581899113,42.22885446372149],[-71.12948544300833,42.2287821245566],[-71.1296735521468,42.22875363184832],[-71.12995559172595,42.22873127214331],[-71.13010081709528,42.22866772280427],[-71.13019128479094,42.22859527464065],[-71.1302661509737,42.22850431527172],[-71.13034690339977,42.22831628259315],[-71.13051966780816,42.22809716290507],[-71.13144507827494,42.2283819235848],[-71.14267659232118,42.23597903894057],[-71.14454273499453,42.24514550191525],[-71.14455571530726,42.24520652868149]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000276,"geom:area_square_m":2525861.397016,"geom:bbox":"-71.1445557153,42.2280971629,-71.1224639811,42.25171347","geom:latitude":42.239246,"geom:longitude":-71.133065,"iso:country":"US","lbl:latitude":42.237297,"lbl:longitude":-71.135168,"lbl:max_zoom":18,"mps:latitude":42.238337,"mps:longitude":-71.133986,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:deu_x_preferred":["Readville"],"name:eng_x_preferred":["Readville"],"name:fra_x_preferred":["Readville"],"name:jpn_x_preferred":["リードビル"],"reversegeo:latitude":42.238337,"reversegeo:longitude":-71.133986,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420524063,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2134571"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8efec2daaec0181d581669e4a0316828","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711969,"neighbourhood_id":420524063,"region_id":85688645}],"wof:id":1108711969,"wof:lastmodified":1566624135,"wof:name":"Readville","wof:parent_id":420524063,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85843927],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711973.geojson b/fixtures/microhoods/1108711973.geojson new file mode 100644 index 0000000..dc0f822 --- /dev/null +++ b/fixtures/microhoods/1108711973.geojson @@ -0,0 +1 @@ +{"id":1108711973,"type":"Feature","bbox":[-71.05381816063675,42.3041930316388,-71.04241932176777,42.31349551747803],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.05311448524738,42.30780142672353],[-71.05381816063675,42.30785114120643],[-71.053725,42.308595],[-71.053569,42.309165],[-71.053359,42.309799],[-71.053183,42.310244],[-71.053056,42.310529],[-71.052828,42.31111],[-71.052788,42.31119],[-71.052683,42.311442],[-71.052588,42.311653],[-71.05241,42.312115],[-71.052165,42.312679],[-71.051943,42.313211],[-71.05181960926215,42.31349551747803],[-71.04623696232723,42.31325617117732],[-71.0462565162033,42.31318239299434],[-71.0462554907022,42.31311899881424],[-71.0462451443796,42.31306627330039],[-71.04623360018272,42.31302616166192],[-71.04623226365322,42.31300667118871],[-71.0462408595063,42.31299408292105],[-71.04625794014666,42.31298372398543],[-71.04626497704817,42.31298182962804],[-71.04619862673722,42.31285067390318],[-71.04614460618076,42.31285649798707],[-71.04607257369484,42.31284743196073],[-71.04599468702047,42.3128301113172],[-71.04593125395145,42.31280763409124],[-71.04587050118957,42.31277254161156],[-71.04581051200789,42.31273416242006],[-71.04576281109047,42.31268320865841],[-71.04571550945259,42.31262868766431],[-71.04568219225023,42.31258300346418],[-71.04565708409434,42.31252692263057],[-71.04565634642366,42.31247505791701],[-71.04567959397332,42.31242987102294],[-71.04571348092027,42.31239597813543],[-71.04574242273492,42.31238182278069],[-71.0457735471475,42.31237234140162],[-71.0457736751156,42.31235450605836],[-71.04574600587128,42.31234616164472],[-71.04572097081217,42.31233179472495],[-71.04569973633156,42.31230234928952],[-71.04569992733589,42.312275732666],[-71.04570237502195,42.31224363583226],[-71.04570257981156,42.312215098022],[-71.04570163659231,42.31219204120318],[-71.04568276486988,42.31214284891331],[-71.04566392940528,42.31208843952256],[-71.04563954982933,42.31198242099731],[-71.04562868276825,42.31200268520662],[-71.04560896852058,42.31207038547083],[-71.04560867504674,42.31211127325147],[-71.045614454742,42.31213023122102],[-71.04563463638635,42.31215171385605],[-71.04564878578124,42.31218908994811],[-71.0456473687048,42.31223189182546],[-71.04564936042924,42.31226400620996],[-71.0456538703164,42.31230491207924],[-71.04563917733815,42.31234327070285],[-71.04559715231207,42.3123776796735],[-71.04553068662612,42.31241748290881],[-71.045452438866,42.31245037741559],[-71.0453704887688,42.31248380370496],[-71.04528897401258,42.31250845373066],[-71.04520357499973,42.31250729292292],[-71.04513420567987,42.31248808325825],[-71.04504786368632,42.31246386911374],[-71.04496041160074,42.31244019789098],[-71.04488969356414,42.31240259770444],[-71.04481943632346,42.31235237618771],[-71.04476909444193,42.31230937019992],[-71.04473102047902,42.31225680388496],[-71.04468383176892,42.31218691747737],[-71.04463363496903,42.31212360392662],[-71.04459552491379,42.31207625466172],[-71.04456364671653,42.31203606316122],[-71.04451911106163,42.31200817090564],[-71.04445848697453,42.3119552423255],[-71.04439525051822,42.31190614763847],[-71.04433534798324,42.31185596776849],[-71.04427582493398,42.31180414092115],[-71.04421859401087,42.31174244503577],[-71.04416982249562,42.3116868218913],[-71.04411518843315,42.31162348960295],[-71.04407458397385,42.31156350624815],[-71.04403662881954,42.31149475455894],[-71.04400865389155,42.31142603795582],[-71.04398254850312,42.31135458824841],[-71.04396503727381,42.31127082411562],[-71.04394625372156,42.31120928065052],[-71.04394082647475,42.31114147817981],[-71.04394104391015,42.3111112946636],[-71.04394234428253,42.31108468153569],[-71.0439539762375,42.31100981368079],[-71.04395893727758,42.31098843052099],[-71.0439649835652,42.31096979128245],[-71.04397213507637,42.31095280668048],[-71.04397961564717,42.31094048874183],[-71.04399046647278,42.31092269504325],[-71.04400015728638,42.31091203072307],[-71.04401095549336,42.31090137259672],[-71.04402433968654,42.31089072292959],[-71.04403623586822,42.31088171490712],[-71.04404960150326,42.31087380927985],[-71.04406407695689,42.31086590985482],[-71.04407742478816,42.31086047547902],[-71.04409298560287,42.31085614644737],[-71.0441159392483,42.31085184674158],[-71.04414001064028,42.31084645219805],[-71.0441566800688,42.31084212755547],[-71.04418076558181,42.31083426533529],[-71.04420114342548,42.31082803505425],[-71.04421078281014,42.31082450719574],[-71.04422040594307,42.31082289961326],[-71.04423487909172,42.31081582123178],[-71.04426159600185,42.31080165652258],[-71.04428681591767,42.31079105556288],[-71.0443302149482,42.31077146965802],[-71.04437359999564,42.31075298024752],[-71.0443913918101,42.31074674148029],[-71.04441695158245,42.31073997982126],[-71.0444491765527,42.31073187612164],[-71.04445880679928,42.31072944567264],[-71.04449032576258,42.31071612282071],[-71.04450479641133,42.31070904709638],[-71.04452151119607,42.31069840967244],[-71.04453823066913,42.31068695119048],[-71.04456607473512,42.31067087143685],[-71.04459391209905,42.31065589001676],[-71.04460947510186,42.31065073894947],[-71.0446287513707,42.31064367955209],[-71.04464802050384,42.31063744299803],[-71.04466727702204,42.31063312853268],[-71.04469023721431,42.31062773307247],[-71.0447250263634,42.31062265636267],[-71.04473315905679,42.31062268858219],[-71.04474902777241,42.31062714311477],[-71.0447741460039,42.3106299876361],[-71.04478744835963,42.31063086230493],[-71.04479926743785,42.31063255577227],[-71.04481365988289,42.3106361806731],[-71.04482804687821,42.31064090121645],[-71.04485568098136,42.31065418206689],[-71.04487964282853,42.31066333129205],[-71.04489402706771,42.31066860550104],[-71.04490841711997,42.31067222767954],[-71.0449228107997,42.31067585167121],[-71.0449320461975,42.31067671201848],[-71.04495496026766,42.31067790112181],[-71.04497900117151,42.31067689794872],[-71.04499823901978,42.3106745045957],[-71.04501748020398,42.31067265953573],[-71.04504151670568,42.31067193092386],[-71.0450570387241,42.3106728161497],[-71.0450740136744,42.31067727411636],[-71.04508691257132,42.31068281341157],[-71.04510860367353,42.31069991315775],[-71.04511226444701,42.31070514038925],[-71.04512175225895,42.31072219182678],[-71.04512392656649,42.31072851334139],[-71.04512493933895,42.31074168874849],[-71.04512263262332,42.31075430183269],[-71.04512475400327,42.31076748342853],[-71.04512610321419,42.31078532372445],[-71.0451304321386,42.3108007080907],[-71.04513769559594,42.31081857449703],[-71.04514349079525,42.31083533852517],[-71.04515071971453,42.31085868852481],[-71.04516592588591,42.31090320555435],[-71.04517429451519,42.31092189740619],[-71.04518222934533,42.31094964546471],[-71.04519408648945,42.31099771622563],[-71.04519762143207,42.31101995593604],[-71.0452008077973,42.31103972654286],[-71.04520325504483,42.31105921783206],[-71.04520786872543,42.31108612986946],[-71.04521365017314,42.3111048141796],[-71.04521842550955,42.31110922384364],[-71.04522105805634,42.31110292135424],[-71.04522109550776,42.31109770786193],[-71.04521859897955,42.31108507576822],[-71.04522344209981,42.31107988039361],[-71.0452293891405,42.31107551316243],[-71.04523312090163,42.31107086257271],[-71.04523685766607,42.31106483994462],[-71.04523688328811,42.31106127305519],[-71.04523690891662,42.31105770526546],[-71.04523804681571,42.311054140977],[-71.04523696805036,42.31104947315109],[-71.04523698578272,42.31104700459712],[-71.04523711391869,42.31102916654871],[-71.04524057745842,42.31101052152545],[-71.04524215732212,42.31099625711295],[-71.04524071937425,42.31099076499089],[-71.0452385533891,42.31098361973682],[-71.04523490167877,42.31097729597951],[-71.04523124680968,42.31097124320001],[-71.04522908080686,42.31096410064652],[-71.04522690769365,42.31095777913903],[-71.04522699638959,42.31094543186748],[-71.04522556787246,42.31093828953154],[-71.04522341096782,42.31093004954751],[-71.04521981521894,42.31091576735383],[-71.04521879530002,42.31090341479461],[-71.04521624512076,42.31089791466932],[-71.04521298581358,42.31088829826416],[-71.04520824642084,42.31087922518478],[-71.04519876674586,42.31086052803782],[-71.04519405345431,42.31084815996086],[-71.04519156044626,42.31083470230415],[-71.04519161168878,42.31082756942518],[-71.0451917082948,42.31081412201726],[-71.04519916889912,42.31080454803712],[-71.0452003336133,42.31079741956485],[-71.0451993049226,42.31078561345288],[-71.04519677019175,42.31077847033954],[-71.04519459754137,42.31077242342464],[-71.0451766450959,42.31074902918536],[-71.04517410373008,42.31074297901014],[-71.04516616056601,42.31071605739277],[-71.04516361205195,42.31071083366492],[-71.04515041765947,42.31069459133515],[-71.04514712334782,42.31069018752981],[-71.04514238157938,42.31068111083663],[-71.04513615576495,42.31067312933678],[-71.04512918293294,42.31066596865481],[-71.04511854344445,42.31065439999144],[-71.04510532147305,42.31064199912989],[-71.0450994395218,42.31063731228894],[-71.04509357533516,42.31063015329235],[-71.04508260579757,42.31061337057817],[-71.04506354179989,42.31059106758582],[-71.0450565862976,42.31058116015053],[-71.04504818740887,42.31056685893503],[-71.04503867036829,42.31055337436624],[-71.04502585554893,42.31053630884871],[-71.04500535398599,42.31050796453879],[-71.04499113388832,42.31048019337948],[-71.04497111518165,42.31043648284199],[-71.04495959320748,42.31039362701993],[-71.04495971548656,42.3103766145216],[-71.0449657906646,42.31035441285391],[-71.0449862696265,42.31033391216776],[-71.04503077946679,42.31031378211367],[-71.04503940675224,42.31029680238684],[-71.04503695126486,42.31027813123206],[-71.04504340544713,42.31025483359385],[-71.04506288343251,42.3102195108812],[-71.0450534117984,42.31019971448378],[-71.04503655453529,42.3101790668708],[-71.04503085481826,42.31014885992194],[-71.0449973217262,42.31013363361293],[-71.04493483235875,42.31013503372426],[-71.04490595572713,42.31014040760343],[-71.04488929366268,42.31014390950866],[-71.04488188666225,42.31014552502349],[-71.04487593056969,42.31015099146863],[-71.04486998723021,42.31015535869678],[-71.04486405208873,42.31015807930702],[-71.04484704451363,42.31015801194579],[-71.04483155267538,42.3101532843269],[-71.04481717566165,42.31014719086394],[-71.04481015997433,42.31014634110004],[-71.04480277149489,42.31014521166613],[-71.04476543294959,42.31014506375764],[-71.04474878271024,42.31014691993956],[-71.04473065939871,42.31014767101595],[-71.04472251493151,42.31014928449912],[-71.04468994249308,42.31015464548253],[-71.04465515831025,42.31015889842568],[-71.04462147135865,42.31016507424727],[-71.04461407388699,42.31016586960862],[-71.04458191436977,42.31016491748817],[-71.0445564180193,42.31016289790134],[-71.04454827037036,42.31016478415073],[-71.0445360206898,42.31017187138443],[-71.04452789945682,42.31016991705401],[-71.04452052446354,42.31016741919819],[-71.04450873311791,42.31016188422822],[-71.0444976749665,42.31015745053016],[-71.04448589668502,42.31015026895945],[-71.0444608823875,42.31013233394437],[-71.04444762085717,42.31012596936481],[-71.0444402375318,42.3101242934454],[-71.04441660156094,42.31012063185141],[-71.04440333882467,42.31011426726198],[-71.04438897811286,42.31010625256796],[-71.04437458701257,42.31010262941887],[-71.04436608201983,42.31010259569756],[-71.04434202126728,42.31010689106301],[-71.04432645398074,42.31011231576868],[-71.04430494042802,42.3101218348686],[-71.044289010304,42.31012643885667],[-71.04426641973775,42.3101315629114],[-71.04424566990568,42.31013861370331],[-71.04422676126931,42.31014567359452],[-71.04421082598648,42.31015082403388],[-71.04419637561799,42.31015543297793],[-71.0441785942713,42.31016057519032],[-71.04415933542471,42.31016489136507],[-71.04413861112671,42.31016755057171],[-71.04412084161581,42.31017104797255],[-71.04410050349624,42.31017179016332],[-71.04408128341149,42.31017089103632],[-71.0440509886469,42.31016802582385],[-71.0440210720271,42.3101635181546],[-71.0439996593496,42.31015986529673],[-71.04398268096848,42.31015540805671],[-71.04395168630889,42.31014732729895],[-71.04392070307803,42.31013732443594],[-71.0439133348186,42.31013372730048],[-71.0438941824031,42.31012377408536],[-71.04387391578729,42.31011408833538],[-71.04385954206597,42.31010772017352],[-71.04383778747322,42.31009967516101],[-71.04381639337453,42.31009328002622],[-71.04379499444795,42.31008688216738],[-71.04378650131672,42.31008520270033],[-71.0437757978129,42.310083238065],[-71.04376472420867,42.31008045268556],[-71.0437539941071,42.310081505751],[-71.04374328816608,42.31007954290357],[-71.0437347856026,42.31007950914519],[-71.04371699982842,42.31008492676073],[-71.04369626014571,42.31009005805259],[-71.04367699109187,42.31009629354752],[-71.04365919937679,42.31010253400556],[-71.04364214829265,42.31010850461086],[-71.04363508944532,42.31011314013672],[-71.04362055915303,42.31012899975067],[-71.04360974594302,42.31014157992441],[-71.04360488178048,42.31014951746502],[-71.04359856126126,42.31015470690502],[-71.0435855446865,42.31016535528303],[-71.04357923832863,42.31016807525305],[-71.0435565974638,42.31018033385276],[-71.04353249111132,42.31019094177728],[-71.04349020679525,42.31020970623504],[-71.04342865177954,42.3102352580085],[-71.04333616499073,42.31024367114867],[-71.04329801403837,42.3102533976359],[-71.04322307108043,42.31028959706787],[-71.04316674765188,42.31030720903617],[-71.04310312007985,42.31031217061935],[-71.0429720420369,42.31034018802759],[-71.04288542048373,42.31035521073265],[-71.04274494861161,42.31035272973678],[-71.04266442720349,42.31034253211225],[-71.04257943998374,42.31033615733874],[-71.0425122489859,42.31032244207449],[-71.0424835477742,42.3103036690749],[-71.04243597202732,42.31023652247564],[-71.04242101858526,42.31015715813022],[-71.04241932176777,42.31008498055261],[-71.04242656516256,42.31005482320538],[-71.04245077949041,42.31002912599832],[-71.04247714172966,42.31001386372269],[-71.04256485201533,42.31000104149354],[-71.04263004782867,42.30998346513232],[-71.04263837592642,42.30995660538942],[-71.04261817266168,42.30993868821751],[-71.04255957505359,42.30991265865317],[-71.04251052923398,42.30989572681381],[-71.04248292616673,42.30987860033232],[-71.04246764189553,42.30984451350567],[-71.04247385992103,42.30980282731917],[-71.0424910850787,42.30977243691616],[-71.04252012390938,42.30974428667459],[-71.04257550815063,42.30970334628646],[-71.04264047326367,42.30966628378719],[-71.04268158224667,42.30965657019025],[-71.04275227037114,42.30964614870166],[-71.04279933235206,42.30963124330597],[-71.04283904950371,42.30960917378653],[-71.04292470562848,42.30957384008934],[-71.04301738208564,42.30953935892208],[-71.04305441964476,42.3095299026927],[-71.04315559495278,42.30949627628296],[-71.04322193157105,42.30947431335421],[-71.0434072465043,42.3094100129746],[-71.04357215669374,42.30935551115637],[-71.04362628768465,42.30933432329013],[-71.04369116872847,42.30930878641762],[-71.04374303105303,42.30929472167237],[-71.04378146108719,42.30929734647485],[-71.04379696056502,42.30930097409985],[-71.04381499147186,42.30931284682491],[-71.04382924791551,42.30933512914887],[-71.04384469368986,42.30934671701534],[-71.04386236733737,42.30935666347123],[-71.04389111398184,42.30936912700145],[-71.04390699768841,42.30937111218694],[-71.04397649125403,42.30937221085841],[-71.04398499022155,42.30937306746011],[-71.04399569253664,42.30937585494704],[-71.04414225820963,42.30935311055702],[-71.04416770082699,42.30931150144021],[-71.04414052507686,42.30923483384574],[-71.04444683441844,42.30920750810762],[-71.04445909425108,42.30919932255575],[-71.04447467072352,42.30919225121801],[-71.04449771971504,42.30917478041189],[-71.04451107901205,42.30916769757976],[-71.04453964845247,42.30915354374812],[-71.04455413137235,42.30914454322188],[-71.04457829802337,42.30912597936234],[-71.04461841333448,42.30909951913917],[-71.04463289271222,42.30909134506523],[-71.04464700959402,42.3090817974944],[-71.04466893048951,42.30906651621716],[-71.04469789544787,42.30904879512036],[-71.04472202924624,42.30903462006766],[-71.04474615983997,42.3090207204893],[-71.04477143452533,42.30900188638699],[-71.04479783006884,42.30898168556067],[-71.04481862377577,42.30896914570783],[-71.0448390557529,42.30895495596737],[-71.04485689635328,42.30894185432673],[-71.04486322103511,42.30893639204238],[-71.0448691691122,42.30893202483269],[-71.04487511006029,42.30892848046956],[-71.04488959044224,42.30891948169153],[-71.04490403620227,42.30891597371031],[-71.04490996927123,42.3089135249805],[-71.0449211435932,42.30890177078877],[-71.0449405210984,42.30888071656076],[-71.04495843932807,42.30885663964237],[-71.04497412413758,42.30883447511977],[-71.04498383418088,42.30882106757289],[-71.0449924415609,42.30880683098343],[-71.04500326836386,42.30879178300681],[-71.04501446996547,42.30877673381222],[-71.04504962362678,42.30872061768437],[-71.045056737424,42.30870829912001],[-71.04506422543037,42.30869488006815],[-71.045076203861,42.30867434750836],[-71.04508965533944,42.30865491824562],[-71.04512113047758,42.30859604341514],[-71.0451297870774,42.30857494761621],[-71.04513845230301,42.30855248159248],[-71.04516282586987,42.30850455420944],[-71.04517367593256,42.30848676219066],[-71.04518453662455,42.30846732086133],[-71.04521005341512,42.30841473443299],[-71.04521981808591,42.30839336842025],[-71.0452247075327,42.30838186391694],[-71.04523330054535,42.30836927390242],[-71.04524189398872,42.3083569611816],[-71.04525269748055,42.30834547738034],[-71.04526461075265,42.30833399886997],[-71.04527799538567,42.30832335175678],[-71.04529843857192,42.30830806451127],[-71.04532033856349,42.30829580353649],[-71.04533856731447,42.30827995743794],[-71.04536723864943,42.30825153223063],[-71.04539779309822,42.30821845000589],[-71.04540746339532,42.30820970762527],[-71.04541570900147,42.30819464669661],[-71.045424299525,42.30818205665769],[-71.04543400148702,42.30816974740715],[-71.04544481277843,42.30815716795199],[-71.04545565484268,42.30814047064038],[-71.0454874480935,42.30808873185025],[-71.0454934401277,42.30807805547165],[-71.04550434594941,42.30805230407914],[-71.04551183074383,42.30803998425191],[-71.04552748956583,42.30802138474125],[-71.04553981325614,42.30800442048987],[-71.04555179140185,42.30798388787755],[-71.04555899911006,42.30795812275466],[-71.04556390225791,42.30794469614752],[-71.04557139597262,42.30793045420864],[-71.04557851549853,42.30791731095751],[-71.04559083916138,42.3079003458],[-71.04560059649924,42.30787980350001],[-71.04560924693573,42.30785953051371],[-71.04561642430788,42.30783815603541],[-71.04562618405357,42.30781761374256],[-71.04564559081435,42.3077918968492],[-71.04566388673823,42.30776699663513],[-71.04568943903992,42.30770919749203],[-71.04569809139495,42.30768864991423],[-71.04570637063496,42.30766837545252],[-71.04573077567927,42.30761578450758],[-71.04575026277529,42.30757936333232],[-71.0457697402809,42.30754376859219],[-71.0457795011314,42.3075232280904],[-71.04579188994579,42.30749665605387],[-71.04580280583174,42.307469809004],[-71.04581743504785,42.30744050530296],[-71.0458320421597,42.30741394292983],[-71.04584775902045,42.30738738674127],[-71.04586726321006,42.30734822509565],[-71.04588083620908,42.30731178052398],[-71.04589402972145,42.30727615822651],[-71.04590753378669,42.3072493204934],[-71.04592210811393,42.30722714874771],[-71.04592701581034,42.30721290016651],[-71.04593192473675,42.30719864888903],[-71.0459406256599,42.30717097019711],[-71.04596621728825,42.3071079565977],[-71.04597970390371,42.30708303552794],[-71.04600634815135,42.3070279856413],[-71.04601615289191,42.30700113327898],[-71.04602703622695,42.30697812406151],[-71.04603453454868,42.30696388570984],[-71.04604165933863,42.30694964138049],[-71.04604655443093,42.30693731308645],[-71.04605294722688,42.30692197019792],[-71.0460552262197,42.30691402413868],[-71.04605787030825,42.30690607592048],[-71.04606123775353,42.30690059918589],[-71.04606871744556,42.3068882802006],[-71.04607842105268,42.3068756963082],[-71.04609518131068,42.30685819943594],[-71.04610114286156,42.30685191367284],[-71.04610862573432,42.30683931830496],[-71.0461183713871,42.30682069805493],[-71.04614015529144,42.30677276292496],[-71.04615745036139,42.3067327660245],[-71.04616123398175,42.30672015874345],[-71.04616580089665,42.30670233820996],[-71.04616963263389,42.30668369459817],[-71.04617454615001,42.30666862045187],[-71.04617834277872,42.30665436657032],[-71.0461821548469,42.30663846609847],[-71.04618332362081,42.30663023745861],[-71.04618559654189,42.30662228867152],[-71.04619198034032,42.30660886878266],[-71.04620763271727,42.30659109112563],[-71.0462136291795,42.30657959094896],[-71.04622340155832,42.30655740109996],[-71.04623095682484,42.30653520429546],[-71.04623437882222,42.30652177270813],[-71.04624086592646,42.30649325877165],[-71.0462469855313,42.3064647433835],[-71.04625306577968,42.30644171877753],[-71.04625797804428,42.30642664462212],[-71.04626288805459,42.30641239243268],[-71.04626786050345,42.3063890888595],[-71.04627179445839,42.30635617496961],[-71.04627306941093,42.30633312778678],[-71.04627441393139,42.30630020367188],[-71.04627464399269,42.30626810073262],[-71.04627754488651,42.30622447907921],[-71.04628377380274,42.3061808732669],[-71.04628764706665,42.30615591780012],[-71.04630895646015,42.30601961797358],[-71.0463113269172,42.30599822176548],[-71.04631406970836,42.30597682792761],[-71.04632133511757,42.30594310431121],[-71.04632776162045,42.30592337256833],[-71.04633271238383,42.30590308671513],[-71.04633880631947,42.30587814001266],[-71.04634490813301,42.3058520931725],[-71.04635854101554,42.30580686903179],[-71.04637180714354,42.30576136884933],[-71.04637673654874,42.30574355243635],[-71.0463805544206,42.30572682730209],[-71.04639792207139,42.30567613056165],[-71.04640621232491,42.30565475861889],[-71.04641485930236,42.30563421275979],[-71.04642089375935,42.30561722178157],[-71.04642582133535,42.30560050372669],[-71.04646997367325,42.30547499500617],[-71.04648351083517,42.30544294098132],[-71.0464955707243,42.30541088562595],[-71.04650425395224,42.30538594733108],[-71.04651293126675,42.30536183368841],[-71.0465287215541,42.30532457580367],[-71.0465433440582,42.30529609304906],[-71.04655796877793,42.30526679102677],[-71.04657263646439,42.30523199553181],[-71.04657867913984,42.30521418440188],[-71.04658620859722,42.30519555176116],[-71.04659442900922,42.30518323746189],[-71.04661384954595,42.30515559830619],[-71.04663325872811,42.3051298812462],[-71.04664075065631,42.30511563922447],[-71.04664787159693,42.30510222311572],[-71.04665646434108,42.30508990758],[-71.04666878352629,42.30507294228261],[-71.04668073520664,42.30505597733465],[-71.0466915889625,42.30503735780122],[-71.04669908100728,42.30502394315317],[-71.04670877861196,42.30501163197203],[-71.04671847274757,42.30500014365203],[-71.04673154592075,42.30498153647098],[-71.04674124200045,42.30496977536529],[-71.04675465002747,42.30495555667225],[-71.04676805381169,42.30494243812942],[-71.04679228649631,42.30491399504773],[-71.04681504662136,42.30488472327749],[-71.04682364715839,42.30487131029198],[-71.04683824023802,42.30484639707808],[-71.04684795048784,42.30483298936742],[-71.04685655204878,42.3048187535077],[-71.04686514350105,42.30480643795088],[-71.04687337755773,42.30479220244116],[-71.04688196900312,42.304779886883],[-71.04690024936113,42.30475663305227],[-71.04691963866186,42.30473366088404],[-71.04694011517311,42.30471315982579],[-71.04695465486279,42.30469620505278],[-71.04697629380678,42.30466884737217],[-71.04698712140816,42.30465352281093],[-71.04703935413693,42.30458704608072],[-71.04705276787678,42.30457200810031],[-71.04706135457728,42.30456051628575],[-71.04706471814681,42.30455504310585],[-71.04711326902863,42.30448662878374],[-71.04716287363532,42.30442535528483],[-71.0471993993312,42.30438351545554],[-71.04722353667565,42.3043685170112],[-71.04725722739892,42.30436151577107],[-71.04727648061773,42.30435720085814],[-71.04728351651714,42.30435530823554],[-71.0472894431639,42.30435368493393],[-71.0472968526144,42.30435179288195],[-71.04730649776879,42.30434661723419],[-71.04731615563202,42.30434034236727],[-71.04732433189628,42.30433433715508],[-71.04737162033274,42.30428704963082],[-71.04741035739784,42.30424631681311],[-71.04742971724235,42.30422690873623],[-71.04743829671402,42.30421624244134],[-71.04744908854457,42.30420640503397],[-71.04746729669695,42.3041930316388],[-71.04748015134639,42.30420460612569],[-71.0477476211883,42.30443643889506],[-71.04775349097889,42.30444277491282],[-71.04776048888671,42.30444637035046],[-71.04776675165755,42.30444913821805],[-71.04777375078604,42.30445273275937],[-71.04778112569362,42.30445550680376],[-71.04778813854523,42.30445718015445],[-71.04779662420243,42.30445913569347],[-71.0478180086717,42.30446717761475],[-71.04783827874692,42.30447603982314],[-71.0478504333691,42.30448239696563],[-71.04786221685387,42.30448875534733],[-71.04787325464302,42.30449593456972],[-71.04788391788315,42.30450393249208],[-71.04789347381498,42.30451192785723],[-71.04790153983626,42.30452101752812],[-71.04790408609635,42.30452706316856],[-71.0479051507642,42.30453337757163],[-71.04790621420008,42.30453969467076],[-71.0479061691311,42.30454600650818],[-71.04790612602274,42.30455204376135],[-71.04790497243555,42.30455835213762],[-71.04790488429006,42.30457069672678],[-71.0479059026511,42.3045833265635],[-71.04790839900043,42.30459568312177],[-71.04792484316351,42.30462264072892],[-71.0479438774621,42.30464933213086],[-71.04796550924347,42.30467438889677],[-71.0479989015362,42.30470937183052],[-71.04801540798877,42.3047272735351],[-71.04803080470995,42.30474517267287],[-71.04804651233076,42.30477185097173],[-71.04805926188797,42.30479851943449],[-71.04806864654279,42.30482984002413],[-71.0480733373859,42.3048460485964],[-71.04807803608387,42.3048611570308],[-71.04808863793447,42.30487793803382],[-71.04809961118836,42.30489417221277],[-71.04812082349693,42.30492636218772],[-71.04815189006412,42.30497642678266],[-71.04815289794273,42.30499070322622],[-71.04815166093364,42.30500853333535],[-71.04814897289535,42.30502251795247],[-71.04814516290551,42.30503787021711],[-71.04813686175343,42.30506171266992],[-71.04812560645644,42.30508499161997],[-71.0481049378051,42.30513211044588],[-71.04808158621445,42.3051926620181],[-71.04808297651185,42.30520501602136],[-71.04808511250073,42.30521655098205],[-71.04808873401839,42.30522726800913],[-71.04809440490708,42.30526131630626],[-71.04810343759257,42.30534230243723],[-71.04810561130859,42.30540021207414],[-71.04810524114362,42.30545207518477],[-71.04809767732363,42.3054759205327],[-71.04809164678397,42.30549208783722],[-71.04809162131859,42.3054956556317],[-71.04809158998003,42.3055000462786],[-71.04809267549435,42.30550361484113],[-71.04809374679182,42.30550883540086],[-71.04809520445477,42.30551158255141],[-71.04809985935691,42.30553300462442],[-71.04809967523562,42.30555880113764],[-71.04809690174056,42.30558458386626],[-71.04809295163511,42.30562024007457],[-71.04808678321825,42.30565589205979],[-71.04807467312958,42.30569508677031],[-71.04806218483081,42.3057351001664],[-71.04805602105912,42.30576992749145],[-71.04805097142567,42.30580448280541],[-71.04805185786812,42.30583576996454],[-71.04805433591426,42.30585087146305],[-71.04805311964179,42.30586596023197],[-71.0480493257241,42.30587939041082],[-71.04804443939665,42.30589089685035],[-71.04804065376871,42.30590350508632],[-71.04803686767373,42.30591583872839],[-71.0480356259464,42.30593449259023],[-71.04803549078156,42.30595342719692],[-71.04803523025222,42.30598992348906],[-71.04802795987648,42.30602447006581],[-71.04801919488435,42.30606093380669],[-71.04801790809,42.30608589950327],[-71.04801782385913,42.30609769852128],[-71.04801514040636,42.30611086027508],[-71.04798212218243,42.30617933245698],[-71.04797012090017,42.30620343402925],[-71.04796637786441,42.30620973221768],[-71.04796301139399,42.30621493081883],[-71.04795927199538,42.30622122902135],[-71.04795663751776,42.30622752886944],[-71.04795654347288,42.30624070080807],[-71.04794814880594,42.30627743879029],[-71.04794058482817,42.30630128412381],[-71.04793192994732,42.30632265383786],[-71.04792364377278,42.30634402410146],[-71.04791490070218,42.3063777429],[-71.04790726178007,42.30641174063364],[-71.04789242773495,42.3064704071225],[-71.04789123688907,42.30648192809407],[-71.04787910693882,42.3065238650179],[-71.04786808552588,42.30656580540158],[-71.04786424961323,42.30658527462833],[-71.04786037916935,42.30660940908001],[-71.04785790732896,42.30664507199032],[-71.0478550663197,42.30668045795553],[-71.04785122375235,42.30670102732331],[-71.04784885380866,42.30672242085923],[-71.04784764681693,42.30673586120848],[-71.0478449520071,42.30675094415489],[-71.04784107566918,42.30677590145734],[-71.0478386743625,42.30680168563836],[-71.04783741883236,42.30682226158375],[-71.0478336801528,42.30682828249159],[-71.04782627750532,42.30682935353038],[-71.04780111315057,42.30683281969826],[-71.0477807423471,42.3068379549775],[-71.04776407003295,42.30684337579945],[-71.04775552944244,42.30684855673174],[-71.04774475093261,42.30685647297373],[-71.04773022513366,42.30687178304467],[-71.0477216485193,42.30688217567639],[-71.04771417847385,42.30689284995566],[-71.04770816265807,42.30690709335054],[-71.0477032541476,42.306921345605],[-71.04769945420762,42.30693559952182],[-71.04768248611784,42.30698190724683],[-71.04767647614582,42.30699533048848],[-71.04767156176194,42.30701040289262],[-71.047667808104,42.30701834677936],[-71.04766553097377,42.30702656926942],[-71.04766276991042,42.30705125726335],[-71.04766036954817,42.30707621856797],[-71.04766016565762,42.30710475641225],[-71.04766120604772,42.307114641313],[-71.04766478009441,42.30713166837309],[-71.04767058742156,42.30714678118072],[-71.04767385986695,42.30715475362476],[-71.04768594980041,42.30716989566319],[-71.04769181986393,42.30717622807938],[-71.04770027349552,42.30718339624062],[-71.04771830873237,42.30719417090791],[-71.04773378018244,42.30720219046366],[-71.04774924017146,42.30721130563866],[-71.04775881609565,42.30721655696978],[-71.04776579228418,42.30722289643622],[-71.04777313739116,42.30723005752844],[-71.04778486573548,42.30724437615812],[-71.0477943733606,42.30725868154595],[-71.04780165573663,42.30727462662757],[-71.04781691434545,42.30731228144671],[-71.04782742396667,42.30734168432269],[-71.04783828634429,42.30737383360366],[-71.04784518268004,42.30739169750526],[-71.04785354919758,42.30741039096665],[-71.04786406248428,42.30743979475326],[-71.04786874637928,42.30745682617247],[-71.04787454079404,42.30747358826926],[-71.04788033447029,42.3074906240543],[-71.04788873133397,42.30750575063914],[-71.047892380677,42.30751207520745],[-71.04790780127362,42.3075272303251],[-71.04790887066152,42.30753272096712],[-71.04793171507937,42.30754351271941],[-71.04794976193898,42.30755318902749],[-71.04796632836634,42.30756313230021],[-71.04797589288147,42.30756948193503],[-71.04800834811238,42.3075803123776],[-71.0480227170158,42.30758750288074],[-71.04804887298779,42.30759995428528],[-71.04810153595976,42.30762870004132],[-71.04813393099492,42.30764831174771],[-71.04815048918415,42.30765907693595],[-71.04818404521897,42.30767101002417],[-71.04820101372553,42.30767628858326],[-71.04824995918462,42.30770776557218],[-71.04833252393622,42.30774266528749],[-71.04844502319473,42.30777878184406],[-71.0485936920433,42.30782299633939],[-71.04877461702146,42.30785499057828],[-71.04891716779073,42.3078761311238],[-71.04905056642839,42.30788461335739],[-71.04909010245389,42.30788751351926],[-71.04912966045671,42.30788766873614],[-71.0491728886988,42.307891405331],[-71.04921502205481,42.30789321637226],[-71.0492508671129,42.30789527732384],[-71.04928819503908,42.30789707128925],[-71.04941168015034,42.30789590800886],[-71.0494512369463,42.30789606311028],[-71.04948969176846,42.30789511641105],[-71.04962426519874,42.30789482104884],[-71.04975736476862,42.30789369687922],[-71.04990043219217,42.30789425734901],[-71.05004424607313,42.30789372129615],[-71.050209872808,42.30789354683776],[-71.0502845219256,42.30789740689796],[-71.05035770082375,42.30790043828178],[-71.05042127668942,42.30790233278145],[-71.05048375203428,42.30790257719091],[-71.05054841262127,42.3079074945722],[-71.05061307879956,42.3079121382475],[-71.0506578039069,42.30791313602008],[-71.05070068422793,42.3079141265623],[-71.0508026910828,42.30791809324933],[-71.05090469015947,42.30792315818241],[-71.0512155464307,42.30793150572082],[-71.0515001730874,42.30793700773121],[-71.05178332954543,42.30794168042696],[-71.05202700130664,42.307935494829],[-71.05212317458847,42.30792791375185],[-71.05215313997158,42.30792528642291],[-71.05218086758812,42.30792539448222],[-71.05220711185426,42.30792549675451],[-71.05224558073031,42.30792290163748],[-71.05228293860654,42.30792030217894],[-71.05231883422343,42.30791522838688],[-71.0523539989447,42.30790905517004],[-71.05237549308215,42.30790200311562],[-71.05238623431876,42.3078993017397],[-71.05239697774596,42.3078957756958],[-71.05243435305722,42.30789070673107],[-71.05250279401406,42.30788384109525],[-71.05253645500538,42.30788122715776],[-71.05257012423482,42.30787779036754],[-71.05262048648335,42.30786563792528],[-71.05266863714535,42.30785320316029],[-71.05269643015973,42.3078437069415],[-71.05272274202116,42.3078347514334],[-71.05274943660929,42.30782415616065],[-71.05276279930428,42.30781624861002],[-71.05277468470621,42.30780833620864],[-71.05279883438023,42.30779141721068],[-71.05282185973638,42.30777723704875],[-71.0528374014885,42.30777455521207],[-71.05285547486707,42.30778093484815],[-71.05288537498372,42.30778736319989],[-71.0528982921342,42.30779015847588],[-71.05291269918283,42.30779186027993],[-71.05292600226113,42.30779273491224],[-71.05293672287269,42.30779277662107],[-71.05294782381911,42.30779117405881],[-71.05296928103898,42.30778933539159],[-71.0529933003516,42.30779052809621],[-71.05301623485283,42.30778869516683],[-71.05304027717673,42.30778714383445],[-71.05306431443529,42.30778613805963],[-71.05308944474284,42.30778733506521],[-71.05311448524738,42.30780142672353]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000052,"geom:area_square_m":473937.823621,"geom:bbox":"-71.0538181606,42.3041930316,-71.0424193218,42.3134955175","geom:latitude":42.309997,"geom:longitude":-71.04857,"iso:country":"US","lbl:latitude":42.311123,"lbl:longitude":-71.054817,"lbl:max_zoom":18,"mps:latitude":42.310572,"mps:longitude":-71.048485,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Savin Hill"],"name:eng_x_variant":["Savin Hl"],"reversegeo:latitude":42.310572,"reversegeo:longitude":-71.048485,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7428250"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"237e88cd108cd313a3129ef639244f87","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711973,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711973,"wof:lastmodified":1566624136,"wof:name":"Savin Hill","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85847213],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711975.geojson b/fixtures/microhoods/1108711975.geojson new file mode 100644 index 0000000..b84833b --- /dev/null +++ b/fixtures/microhoods/1108711975.geojson @@ -0,0 +1 @@ +{"id":1108711975,"type":"Feature","bbox":[-71.15975899591034,42.33816,-71.13972797881547,42.35033795386697],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.15975899591034,42.34005808241216],[-71.1596043037086,42.34032307936024],[-71.159276,42.34089],[-71.15904,42.341336],[-71.158953,42.341507],[-71.158666,42.341982],[-71.158544,42.342155],[-71.158288,42.342567],[-71.158136,42.342806],[-71.15803,42.342974],[-71.157976,42.343089],[-71.157901,42.343248],[-71.157862,42.343398],[-71.157831,42.343571],[-71.15782516458896,42.34385635159969],[-71.157821,42.34406],[-71.157811,42.344132],[-71.15776129399478,42.34440206228648],[-71.157721,42.344589],[-71.157698,42.344691],[-71.157688,42.344807],[-71.157681,42.344897],[-71.157688,42.345121],[-71.157724,42.345317],[-71.157783,42.345554],[-71.157887,42.345772],[-71.158103,42.346091],[-71.158214,42.346388],[-71.158228,42.346522],[-71.158227,42.346634],[-71.158159,42.34679],[-71.158053,42.346912],[-71.15785,42.347106],[-71.157812,42.347154],[-71.157661,42.34734],[-71.1576,42.34743],[-71.157539,42.347614],[-71.157476,42.348111],[-71.157462,42.348191],[-71.157438,42.348328],[-71.157339,42.34858],[-71.157187,42.348912],[-71.157079,42.34909],[-71.156475,42.349105],[-71.155746,42.349114],[-71.155224,42.349125],[-71.154715,42.349129],[-71.154438,42.349138],[-71.15402,42.349137],[-71.153449,42.349146],[-71.15315334204236,42.3491248294302],[-71.152639,42.349088],[-71.152091,42.349049],[-71.151993,42.349042],[-71.151106,42.349009],[-71.150927,42.348988],[-71.150613,42.348976],[-71.150499,42.34897],[-71.150364,42.34897],[-71.150154,42.348986],[-71.149943,42.349036],[-71.149525,42.349178],[-71.149341,42.34924],[-71.14890422589005,42.3494454762989],[-71.14862,42.349579],[-71.14721213606525,42.35012502537063],[-71.14645929449797,42.34986174852722],[-71.144127841299,42.34968168342295],[-71.14136052385935,42.34919095076174],[-71.14112592573755,42.34946187814077],[-71.14107914679272,42.3502745303722],[-71.14003739293997,42.35033795386697],[-71.13992861977924,42.34942959784654],[-71.13972797881547,42.34899952010554],[-71.14036281921442,42.34866837723777],[-71.1402321652982,42.34861040630986],[-71.140233,42.34861],[-71.140491,42.348389],[-71.140557,42.348317],[-71.140651,42.348179],[-71.140705,42.348039],[-71.14072,42.347999],[-71.140766,42.347789],[-71.140813,42.347416],[-71.140848,42.347185],[-71.140883,42.347047],[-71.140923,42.346917],[-71.141009,42.346695],[-71.141083,42.346536],[-71.141209,42.346313],[-71.141451,42.345928],[-71.141516,42.345824],[-71.142103,42.344992],[-71.142451,42.344526],[-71.142792,42.344049],[-71.14296,42.343794],[-71.143273,42.343368],[-71.143459,42.343149],[-71.144093,42.343478],[-71.144425,42.343681],[-71.14478,42.343368],[-71.145109,42.343113],[-71.145439,42.342894],[-71.145686,42.342746],[-71.145961,42.34262],[-71.146157,42.342555],[-71.146352,42.343042],[-71.146391,42.343105],[-71.146577,42.34301],[-71.146826,42.34296],[-71.147001,42.342919],[-71.147125,42.342865],[-71.147227,42.342781],[-71.147256,42.34271],[-71.147262,42.34263],[-71.147251,42.342525],[-71.147134,42.342223],[-71.14704,42.341937],[-71.147007,42.341782],[-71.1469730187658,42.34161056592172],[-71.1470031253879,42.34160948386553],[-71.147267,42.3416],[-71.147729,42.341618],[-71.14788928471015,42.34162921525669],[-71.148072,42.341642],[-71.14814574496548,42.34165025503345],[-71.148206,42.341657],[-71.148529,42.341653],[-71.148633,42.341814],[-71.148805,42.342027],[-71.148924,42.342139],[-71.149044,42.342201],[-71.149171,42.342241],[-71.149404,42.342258],[-71.149529,42.342258],[-71.149682,42.342258],[-71.15005,42.342232],[-71.150524,42.342144],[-71.151291,42.341895],[-71.15150632946055,42.34187090654212],[-71.15152649229984,42.34173810675068],[-71.151505,42.341588],[-71.151446,42.341482],[-71.151349,42.341403],[-71.151184,42.341336],[-71.150944,42.341274],[-71.150712,42.3412],[-71.150487,42.341055],[-71.150922,42.340764],[-71.15115,42.340601],[-71.151308,42.340479],[-71.151382,42.340423],[-71.151648,42.340535],[-71.151963,42.340598],[-71.152195,42.340621],[-71.152623,42.340628],[-71.153111,42.340696],[-71.15353,42.340793],[-71.153778,42.340855],[-71.154061,42.340979],[-71.154462,42.341198],[-71.154537,42.341225],[-71.154623,42.341233],[-71.154734,42.341206],[-71.154909,42.340967],[-71.155257,42.340432],[-71.155288,42.340337],[-71.155536,42.340262],[-71.155679,42.34024],[-71.155088,42.339746],[-71.153647,42.338423],[-71.153365,42.338185],[-71.153503,42.33816],[-71.15371,42.33816],[-71.153929,42.338197],[-71.154259,42.33829],[-71.154678,42.33846],[-71.154726,42.338482],[-71.155193,42.338693],[-71.155406,42.338797],[-71.155852,42.339017],[-71.156236,42.339187],[-71.156547,42.339305],[-71.156655,42.339347],[-71.157033,42.339471],[-71.157623,42.339658],[-71.157878,42.33973],[-71.158964,42.339953],[-71.159758,42.340058],[-71.15975899591034,42.34005808241216]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000132,"geom:area_square_m":1203875.835068,"geom:bbox":"-71.1597589959,42.33816,-71.1397279788,42.3503379539","geom:latitude":42.345313,"geom:longitude":-71.150423,"iso:country":"US","lbl:latitude":42.345567,"lbl:longitude":-71.150427,"lbl:max_zoom":18,"mps:latitude":42.345567,"mps:longitude":-71.150427,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.345567,"reversegeo:longitude":-71.150427,"src:geom":"mz","wof:belongsto":[85807537,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cf2cf83ccc83fd348009971533584d52","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711975,"neighbourhood_id":85807537,"region_id":85688645}],"wof:id":1108711975,"wof:lastmodified":1566624136,"wof:name":"St. Elizabeth's","wof:parent_id":85807537,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524031],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711977.geojson b/fixtures/microhoods/1108711977.geojson new file mode 100644 index 0000000..61537af --- /dev/null +++ b/fixtures/microhoods/1108711977.geojson @@ -0,0 +1 @@ +{"id":1108711977,"type":"Feature","bbox":[-71.06599579361435,42.2907348504806,-71.06175039771911,42.29475375005874],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06547990412798,42.29202527948271],[-71.06599579361435,42.29402903210968],[-71.06491643425876,42.29436831896253],[-71.06453634799855,42.29447589504866],[-71.0641832736081,42.29455392725346],[-71.06312586632527,42.29473975556051],[-71.06295528813189,42.29475375005874],[-71.06280523354849,42.29474917922355],[-71.06175039771911,42.2946058566977],[-71.06224269580086,42.29291198570623],[-71.06274449703253,42.29104966620877],[-71.06326519918613,42.29113195609565],[-71.06330735227378,42.29113661549347],[-71.0633508743255,42.29113488132436],[-71.06339311200388,42.29112837194328],[-71.06401203099306,42.29094988380343],[-71.06468252631596,42.2907348504806],[-71.0650772299545,42.29215019880588],[-71.06547990412798,42.29202527948271]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":104637.132516,"geom:bbox":"-71.0659957936,42.2907348505,-71.0617503977,42.2947537501","geom:latitude":42.292979,"geom:longitude":-71.063841,"iso:country":"US","lbl:latitude":42.293058,"lbl:longitude":-71.063801,"lbl:max_zoom":18,"mps:latitude":42.293058,"mps:longitude":-71.063801,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.293058,"reversegeo:longitude":-71.063801,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"85d7febc3aeaf507c531274f35ef4191","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711977,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108711977,"wof:lastmodified":1566624136,"wof:name":"St. Marks","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420524027],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711979.geojson b/fixtures/microhoods/1108711979.geojson new file mode 100644 index 0000000..4456bee --- /dev/null +++ b/fixtures/microhoods/1108711979.geojson @@ -0,0 +1 @@ +{"id":1108711979,"type":"Feature","bbox":[-71.08097109016927,42.38047254379374,-71.06954436851113,42.39056586146427],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06954436851113,42.38563540062472],[-71.07731190367174,42.38047254379374],[-71.08070165007065,42.38103998159833],[-71.08097109016927,42.38232333239089],[-71.08081241116467,42.38242066389311],[-71.08047573973411,42.38257875828135],[-71.07971270950668,42.38292056720507],[-71.07549313726581,42.38885128989779],[-71.07426323426849,42.39056492753753],[-71.07426381093786,42.39056586146427],[-71.0742623816128,42.39056511974415],[-71.07425870273099,42.39056153831002],[-71.07425539788069,42.39055796186079],[-71.0742517165768,42.39055437951718],[-71.07424692455726,42.39055161772308],[-71.07423843950737,42.39054719564591],[-71.07422884870957,42.39054249579046],[-71.0742144265713,42.39053997204652],[-71.07420741330435,42.39053720113093],[-71.07420002285843,42.3905352534785],[-71.07419411776428,42.39053276124931],[-71.0741893177725,42.39053082318237],[-71.07418452453695,42.3905280622814],[-71.07417862563256,42.3905244708285],[-71.0741749381343,42.39052198950579],[-71.07417126047446,42.3905184080733],[-71.0741679476849,42.39051565084986],[-71.07415951929627,42.39050299768716],[-71.07415364994228,42.39049501926221],[-71.07403901604252,42.39053218717829],[-71.07393904645758,42.39037046559324],[-71.07377177830122,42.39008830682014],[-71.07361106438672,42.38982208367645],[-71.0734434386447,42.38953827463514],[-71.07326771481664,42.38924784971825],[-71.07309310994697,42.38895687948602],[-71.07292772299613,42.38867115582007],[-71.07293043818483,42.3886525066189],[-71.07283306284876,42.38849161826966],[-71.07275546916979,42.38836126168466],[-71.07268676800122,42.38822929054842],[-71.07273327763878,42.38813945649745],[-71.07272112055432,42.38813035719848],[-71.07271141463805,42.3881429431335],[-71.07259773579847,42.38809340233525],[-71.0725656010848,42.38802824916213],[-71.07248580156026,42.38789596387715],[-71.07247885116905,42.38788358885873],[-71.07243387880982,42.38780137347916],[-71.07242041146384,42.38782190482249],[-71.07236507718437,42.38779398213889],[-71.07235315820623,42.38780464131466],[-71.07234716436061,42.38781531981092],[-71.07234347396809,42.38781365947526],[-71.07201953537258,42.38771092547935],[-71.07201621411389,42.38770981387877],[-71.07205743478485,42.38763532916138],[-71.072046730984,42.38763062407875],[-71.0719497505496,42.38757593209223],[-71.07184540135871,42.38751599725758],[-71.07170782186384,42.38744331575428],[-71.07158426320198,42.38737782284213],[-71.07143929992613,42.38730236675324],[-71.07130284555893,42.38722776864356],[-71.07114499649782,42.3871426644377],[-71.07095433774339,42.38703767913599],[-71.07077956204104,42.38693714345153],[-71.0706062174163,42.38684484413606],[-71.07046127272257,42.38676664550074],[-71.07026249176062,42.38665915743226],[-71.07004194969599,42.38653979217374],[-71.06989000739675,42.38645717597196],[-71.06985165070721,42.38643672576707],[-71.06985165816648,42.3864356292487],[-71.07034442749999,42.38609528498816],[-71.07029174874889,42.38605776787069],[-71.07023649283752,42.38601832169602],[-71.07011605705497,42.38592978795305],[-71.07005125144367,42.3858796007248],[-71.07001921162872,42.38585533356383],[-71.06998792184537,42.38583024633694],[-71.0699411473633,42.38579549518853],[-71.06982549696656,42.38571109602134],[-71.06979186881439,42.38570218981206],[-71.06978227162156,42.38569858609924],[-71.06969580902967,42.38567603654212],[-71.06960823779737,42.38565348007171],[-71.06954436851113,42.38563540062472]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":460931.879657,"geom:bbox":"-71.0809710902,42.3804725438,-71.0695443685,42.3905658615","geom:latitude":42.384876,"geom:longitude":-71.075306,"iso:country":"US","lbl:latitude":42.384086,"lbl:longitude":-71.074399,"lbl:max_zoom":18,"mps:latitude":42.384938,"mps:longitude":-71.075307,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Sullivan Square"],"name:eng_x_variant":["Sullivan Sq"],"name:fra_x_preferred":["Sullivan Square"],"reversegeo:latitude":42.384938,"reversegeo:longitude":-71.075307,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85810461,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7636429"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"680a82f7188f6b248cf391582454a884","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711979,"neighbourhood_id":85810461,"region_id":85688645}],"wof:id":1108711979,"wof:lastmodified":1566624136,"wof:name":"Sullivan Square","wof:parent_id":85810461,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85881045],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711981.geojson b/fixtures/microhoods/1108711981.geojson new file mode 100644 index 0000000..402e203 --- /dev/null +++ b/fixtures/microhoods/1108711981.geojson @@ -0,0 +1 @@ +{"id":1108711981,"type":"Feature","bbox":[-71.09832355111958,42.33672170994766,-71.08494746626704,42.34807169066622],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.09721579995659,42.33840011713794],[-71.096678,42.339257],[-71.096336,42.339715],[-71.09621,42.339827],[-71.096019,42.339941],[-71.095718,42.340101],[-71.09528229541829,42.34027879086286],[-71.094973,42.340405],[-71.094553,42.340564],[-71.094041,42.340704],[-71.093746,42.340774],[-71.093217,42.340889],[-71.092991,42.340956],[-71.092795,42.341018],[-71.092669,42.341074],[-71.092452,42.341184],[-71.092205,42.341335],[-71.092148,42.341395],[-71.092029,42.3415],[-71.091989,42.341539],[-71.091721,42.341867],[-71.091667,42.341967],[-71.091595,42.342112],[-71.091531,42.342316],[-71.091518,42.342541],[-71.091524,42.342663],[-71.091519,42.342772],[-71.09151,42.342959],[-71.0915,42.343049],[-71.091453,42.34318],[-71.091354,42.343352],[-71.091223,42.343489],[-71.091019,42.343723],[-71.09092,42.343877],[-71.090877,42.344004],[-71.090844,42.344077],[-71.090796,42.344356],[-71.090784,42.344487],[-71.090799,42.344642],[-71.090756,42.344865],[-71.090645,42.345262],[-71.090632,42.345437],[-71.090636,42.345615],[-71.09067840269309,42.34579548254089],[-71.090824,42.346159],[-71.090891,42.346252],[-71.090953,42.346322],[-71.091043,42.346401],[-71.091146,42.346448],[-71.091287,42.346486],[-71.091819,42.346632],[-71.092111,42.346724],[-71.092176,42.346745],[-71.092244,42.346789],[-71.092279,42.346811],[-71.092356,42.346877],[-71.092388,42.346959],[-71.092402,42.347397],[-71.092402,42.347498],[-71.092402,42.347629],[-71.092399,42.34796114985993],[-71.09165977490971,42.34796213102614],[-71.08813955077252,42.34807169066622],[-71.08797951952796,42.34776460242058],[-71.08774151391012,42.34728133997921],[-71.08774128034253,42.34728086468827],[-71.08774123361492,42.34728077179072],[-71.08754984103983,42.34690564795072],[-71.08740594187907,42.34662360876327],[-71.08734309267554,42.3464879919926],[-71.08732208306449,42.34644298214218],[-71.08728418852786,42.34636179738909],[-71.0872833429356,42.34636007389688],[-71.08726419731424,42.34632105676317],[-71.08718864032684,42.34616707514856],[-71.08707814768891,42.34594189630381],[-71.08705328688107,42.34589104227865],[-71.08702082149055,42.34582475154297],[-71.0869392325323,42.34565815659913],[-71.08686148011569,42.3454993944083],[-71.08683653762488,42.34544846441216],[-71.08681542065067,42.34540606491655],[-71.08681394599836,42.34540310576024],[-71.08681257227146,42.34540030271704],[-71.0868093313761,42.34539369013188],[-71.08680454069012,42.3453839164548],[-71.08678708823834,42.34534831021904],[-71.08677647688639,42.34532666148126],[-71.08676481159277,42.34530286265905],[-71.08669630274579,42.3451630910055],[-71.08663029730224,42.34502842665835],[-71.08663024580002,42.34502832203931],[-71.08659353883512,42.34495343253599],[-71.08619006259146,42.34413024509885],[-71.08618807334976,42.34412618482491],[-71.08618722303949,42.3441244496028],[-71.08618667571886,42.34412333397177],[-71.08618607092386,42.34412209929535],[-71.08618602189738,42.34412198748269],[-71.08616966041275,42.34408427028134],[-71.08615917997592,42.34406011193611],[-71.08612908971115,42.34399075136556],[-71.08604012727868,42.34378568218538],[-71.08586494199338,42.34345138326059],[-71.0858585781949,42.34344522304725],[-71.0858399872824,42.343427225864],[-71.08576891354342,42.34335842428307],[-71.08575927208871,42.34334907782529],[-71.0857297809583,42.34332048812686],[-71.08569930582105,42.34329094326607],[-71.0850842285519,42.34286909097198],[-71.08503162952886,42.34283301549451],[-71.08495726784643,42.34278541151778],[-71.08494746626704,42.34277916416904],[-71.084958,42.34277],[-71.085307,42.342501],[-71.085672,42.342195],[-71.086422,42.341593],[-71.086614,42.341474],[-71.086981,42.341233],[-71.087148,42.341155],[-71.087724,42.34093],[-71.087953,42.340841],[-71.088277,42.340715],[-71.088522,42.340622],[-71.088965,42.340454],[-71.089797,42.340119],[-71.09066,42.339766],[-71.091026,42.339608],[-71.091376,42.339457],[-71.092192,42.339139],[-71.092266,42.339107],[-71.092461,42.339033],[-71.092719,42.338934],[-71.09316809311743,42.33874583959233],[-71.09435556652245,42.33823155242215],[-71.09480325743402,42.33802767527573],[-71.09559822716373,42.33769146314026],[-71.09810833985203,42.33672170994766],[-71.09832355111958,42.33716613356749],[-71.09824253274886,42.33724180637096],[-71.09823831520363,42.33724574481784],[-71.09824613643964,42.33725026641105],[-71.09824990015613,42.33725244296688],[-71.09824697599421,42.33725526236844],[-71.09800079365573,42.33749261387018],[-71.09781503439417,42.33767521606306],[-71.09766115946965,42.33783854983897],[-71.09764738550831,42.33785396596197],[-71.09755892276964,42.33795297751997],[-71.09745613455746,42.33807354407347],[-71.09738499124643,42.33817123418601],[-71.09730063318464,42.33828907783157],[-71.09727655802772,42.33832313079539],[-71.09726302468202,42.33834227492553],[-71.09723103043913,42.33838201519586],[-71.09722050506653,42.33839452569944],[-71.09722047695053,42.33839455801148],[-71.09721835059727,42.33839708578589],[-71.09721579995659,42.33840011713794]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":460122.586331,"geom:bbox":"-71.0983235511,42.3367217099,-71.0849474663,42.3480716907","geom:latitude":42.342684,"geom:longitude":-71.090559,"iso:country":"US","lbl:latitude":42.344522,"lbl:longitude":-71.086765,"lbl:max_zoom":18,"mps:latitude":42.343071,"mps:longitude":-71.088787,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:afr_x_preferred":["Simfonie"],"name:als_x_preferred":["Sinfonie"],"name:ara_x_preferred":["سيمفونية"],"name:arg_x_preferred":["Sinfonía"],"name:arz_x_preferred":["سيمفونيه"],"name:ast_x_preferred":["Sinfonía"],"name:aze_x_preferred":["Simfoniya"],"name:bak_x_preferred":["Симфония"],"name:bel_x_preferred":["Сімфонія"],"name:ben_x_preferred":["সিম্ফনি"],"name:bos_x_preferred":["Simfonija"],"name:bre_x_preferred":["Sinfonienn"],"name:bul_x_preferred":["Симфония"],"name:cat_x_preferred":["Simfonia"],"name:ces_x_preferred":["Symfonie"],"name:ckb_x_preferred":["سیمفۆنی"],"name:cym_x_preferred":["Symffoni"],"name:dan_x_preferred":["Symfoni"],"name:deu_x_preferred":["Sinfonie"],"name:ell_x_preferred":["Συμφωνία"],"name:epo_x_preferred":["Simfonio"],"name:est_x_preferred":["Sümfoonia"],"name:eus_x_preferred":["Sinfonia"],"name:fas_x_preferred":["سمفونی"],"name:fin_x_preferred":["Sinfonia"],"name:fra_x_preferred":["Symphonie"],"name:gle_x_preferred":["Siansa"],"name:glg_x_preferred":["Sinfonía"],"name:heb_x_preferred":["סימפוניה"],"name:hif_x_preferred":["Symphony"],"name:hin_x_preferred":["सिंफनी"],"name:hrv_x_preferred":["Simfonija"],"name:hun_x_preferred":["Szimfónia"],"name:hye_x_preferred":["Սիմֆոնիա"],"name:ido_x_preferred":["Simfonio"],"name:ina_x_preferred":["Symphonia"],"name:ind_x_preferred":["Simfoni"],"name:isl_x_preferred":["Sinfónía"],"name:ita_x_preferred":["Sinfonia"],"name:jpn_x_preferred":["交響曲"],"name:kat_x_preferred":["სიმფონია"],"name:kaz_x_preferred":["Симфония"],"name:kir_x_preferred":["Симфония"],"name:kor_x_preferred":["교향곡"],"name:lat_x_preferred":["Symphonia"],"name:lav_x_preferred":["Simfonija"],"name:lim_x_preferred":["Symfonie"],"name:lit_x_preferred":["Simfonija"],"name:mal_x_preferred":["സിംഫണി"],"name:mar_x_preferred":["सिंफनी"],"name:mkd_x_preferred":["Симфонија"],"name:mya_x_preferred":["ဆင်ဖိုနီ"],"name:new_x_preferred":["सिम्फोनी"],"name:nld_x_preferred":["Symfonie"],"name:nno_x_preferred":["Symfoni"],"name:nor_x_preferred":["Symfoni"],"name:oci_x_preferred":["Sinfonia"],"name:pan_x_preferred":["ਸਿੰਫਨੀ"],"name:pnb_x_preferred":["سمفنی"],"name:pol_x_preferred":["Symfonia"],"name:por_x_preferred":["Sinfonia"],"name:ron_x_preferred":["Simfonie"],"name:rue_x_preferred":["Сімфонія"],"name:rus_x_preferred":["Симфония"],"name:slk_x_preferred":["Symfónia"],"name:slv_x_preferred":["Simfonija"],"name:spa_x_preferred":["Sinfonía"],"name:srp_x_preferred":["Simfonija"],"name:stq_x_preferred":["Sinfonie"],"name:swa_x_preferred":["Simfoni"],"name:swe_x_preferred":["Symfoni"],"name:tam_x_preferred":["ஒத்தின்னியம்"],"name:tat_x_preferred":["Симфония"],"name:tel_x_preferred":["సింఫొనీ"],"name:tha_x_preferred":["ซิมโฟนี"],"name:tur_x_preferred":["Senfoni"],"name:ukr_x_preferred":["Симфонія"],"name:urd_x_preferred":["ہم نوائی"],"name:uzb_x_preferred":["Simfoniya"],"name:vep_x_preferred":["Simfonii"],"name:vie_x_preferred":["Giao hưởng"],"name:war_x_preferred":["Simponiya"],"name:wuu_x_preferred":["交响曲"],"name:yid_x_preferred":["סימפאניע"],"name:zho_x_preferred":["交響曲"],"reversegeo:latitude":42.343071,"reversegeo:longitude":-71.088787,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869235,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"af04ad553ff01489eeb6fc4d67d42e00","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711981,"neighbourhood_id":85869235,"region_id":85688645}],"wof:id":1108711981,"wof:lastmodified":1566624134,"wof:name":"Symphony","wof:parent_id":85869235,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866977],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711983.geojson b/fixtures/microhoods/1108711983.geojson new file mode 100644 index 0000000..df42009 --- /dev/null +++ b/fixtures/microhoods/1108711983.geojson @@ -0,0 +1 @@ +{"id":1108711983,"type":"Feature","bbox":[-71.070681,42.34842,-71.062609,42.352519],"geometry":{"type":"Polygon","coordinates":[[[-71.066628,42.348774],[-71.066627,42.348775],[-71.066618,42.348782],[-71.066573,42.348816],[-71.066573,42.348817],[-71.066567,42.348821],[-71.066518,42.348885],[-71.066516,42.348888],[-71.066512,42.348893],[-71.066458,42.34906],[-71.066458,42.349061],[-71.066456,42.349173],[-71.06646,42.349195],[-71.066471,42.34925],[-71.066487,42.349334],[-71.06649,42.349348],[-71.06649,42.34935],[-71.066502,42.34941],[-71.066507,42.349437],[-71.066511,42.349453],[-71.066512,42.349456],[-71.06652,42.349495],[-71.066552,42.349636],[-71.066561,42.349683],[-71.066566,42.349706],[-71.066569,42.349722],[-71.066684,42.350211],[-71.066688,42.350232],[-71.066691,42.350244],[-71.066703,42.350295],[-71.066853,42.350935],[-71.066856,42.350946],[-71.067091,42.350895],[-71.067571,42.35079],[-71.067668,42.350765],[-71.067749,42.350744],[-71.06799,42.350679],[-71.067991,42.350678],[-71.06813,42.350641],[-71.068131,42.35064],[-71.068138,42.350638],[-71.068659,42.350497],[-71.068661,42.350496],[-71.068905,42.350427],[-71.069379,42.350294],[-71.069388,42.350291],[-71.06939,42.350291],[-71.069766,42.350185],[-71.069825,42.350169],[-71.069895,42.350149],[-71.069896,42.350149],[-71.069898,42.350148],[-71.070681,42.351893],[-71.070289,42.352001],[-71.070234,42.352016],[-71.069484,42.352185],[-71.06926,42.352235],[-71.068726,42.352342],[-71.068445,42.352402],[-71.0675,42.352495],[-71.067418,42.352499],[-71.067417,42.352499],[-71.067398,42.3525],[-71.067384,42.352501],[-71.06717,42.352511],[-71.067036,42.352518],[-71.067035,42.352518],[-71.067009,42.352519],[-71.066884,42.352515],[-71.066774,42.352512],[-71.066733,42.352511],[-71.066661,42.352509],[-71.066563,42.352503],[-71.065967,42.352467],[-71.06572,42.352451],[-71.065296,42.352421],[-71.065181,42.352413],[-71.064677,42.352377],[-71.064552,42.352368],[-71.064543,42.352368],[-71.062609,42.352373],[-71.062659,42.352169],[-71.062665,42.352146],[-71.062686,42.352058],[-71.062714,42.351946],[-71.062714,42.351945],[-71.062721,42.35192],[-71.062726,42.351897],[-71.062749,42.351791],[-71.06275,42.351788],[-71.062754,42.351767],[-71.06277,42.351695],[-71.062793,42.351589],[-71.062822,42.351485],[-71.06285,42.351392],[-71.062923,42.351152],[-71.062988,42.350937],[-71.062991,42.350926],[-71.062996,42.35091],[-71.063119,42.350627],[-71.063522,42.349865],[-71.063723,42.349446],[-71.063903,42.348978],[-71.06406,42.34842],[-71.064125,42.348429],[-71.06472,42.348507],[-71.064732,42.348509],[-71.065038,42.348549],[-71.065543,42.348616],[-71.065561,42.348618],[-71.066011,42.348673],[-71.066293,42.348719],[-71.066601,42.34877],[-71.066602,42.34877],[-71.066607,42.348771],[-71.066626,42.348774],[-71.066628,42.348774]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":178030.547435,"geom:bbox":"-71.070681,42.34842,-71.062609,42.352519","geom:latitude":42.350928,"geom:longitude":-71.066138,"iso:country":"US","lbl:latitude":42.351441,"lbl:longitude":-71.065714,"lbl:max_zoom":18,"mps:latitude":42.350729,"mps:longitude":-71.065254,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":42.350729,"reversegeo:longitude":-71.065254,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[102191575,85633793,102084423,404476573,85950361,85815133,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"483765994e54469b87dfe00c5220d7b9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711983,"neighbourhood_id":85815133,"region_id":85688645}],"wof:id":1108711983,"wof:lastmodified":1613773792,"wof:name":"Theatre District","wof:parent_id":85815133,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891285],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108711985.geojson b/fixtures/microhoods/1108711985.geojson new file mode 100644 index 0000000..f3b41b5 --- /dev/null +++ b/fixtures/microhoods/1108711985.geojson @@ -0,0 +1 @@ +{"id":1108711985,"type":"Feature","bbox":[-71.05387418747581,42.35222868960224,-71.04765503835169,42.36071896509259],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.05216959897848,42.35222868960224],[-71.05387418747581,42.35384580841156],[-71.05345257703159,42.35403397216769],[-71.05284142828957,42.35433850111108],[-71.05191024902953,42.35485902582769],[-71.05170957847153,42.35498684868539],[-71.05149464032112,42.35516265343326],[-71.05140862582913,42.35527374003266],[-71.05134826733394,42.35538170931729],[-71.05126292842058,42.35560931429963],[-71.05117472234897,42.35625780231173],[-71.05116962750601,42.35647468184038],[-71.05119051774929,42.35669284192099],[-71.0512865012987,42.35711697039006],[-71.05206069150277,42.35968632948072],[-71.05219408796523,42.35994793183486],[-71.05230546316714,42.36012219360516],[-71.05245991346494,42.36034060086403],[-71.05077957903326,42.36062159765687],[-71.05077809930283,42.36062159187711],[-71.0507074154734,42.36062323788754],[-71.05070845018086,42.36063394278397],[-71.0505135728855,42.36066967819925],[-71.0504864824304,42.36057682257839],[-71.05033976329923,42.3606047882465],[-71.0499333219337,42.36068167857146],[-71.04986323521696,42.36070363155539],[-71.04971438030509,42.36071896509259],[-71.04958874602889,42.36064383274172],[-71.049307401718,42.36066386039086],[-71.04923972591583,42.36039906454593],[-71.04914343096793,42.36041213203387],[-71.04911619594044,42.36033985705701],[-71.04848454041603,42.36050394535985],[-71.04778185933208,42.36061341750032],[-71.04770262535051,42.3606210635941],[-71.04767180832242,42.36037699239537],[-71.04772366845927,42.3603689640895],[-71.04765503835169,42.3600319952958],[-71.05016574807745,42.35973615005854],[-71.05016102531778,42.35972378229683],[-71.05067814161603,42.3596393650533],[-71.05072145254319,42.35963679287073],[-71.05071375124339,42.35921005552868],[-71.05044551451039,42.35926059398889],[-71.0504380606679,42.35926852432389],[-71.04845754928063,42.35956837686887],[-71.0483753797265,42.35926153935414],[-71.04851395177401,42.35923436977632],[-71.0484378316611,42.35896130794377],[-71.0487360572025,42.35890814594847],[-71.04867271625913,42.35871114417526],[-71.04933758822595,42.35860755403267],[-71.04941019446869,42.35885480817218],[-71.0495838780901,42.35893726376214],[-71.05032247454919,42.35882078538547],[-71.05016797417304,42.35822608450516],[-71.04943933596493,42.35834781537966],[-71.04937468916629,42.35812583748208],[-71.04948548451264,42.35810212395021],[-71.04941487613114,42.35788616096215],[-71.04952306703667,42.35786435841181],[-71.04946580356305,42.35764488166132],[-71.04974494101593,42.35756941499015],[-71.04968186808364,42.35733399843901],[-71.04908627095537,42.35747874981694],[-71.04905055795534,42.35740177442027],[-71.04902330305748,42.35738492842831],[-71.04899090304808,42.35736257407608],[-71.04897446550558,42.35733287201978],[-71.04896729371089,42.35730073770171],[-71.048965288822,42.35727054576945],[-71.04897516391298,42.35723491225274],[-71.04895261954687,42.35717966568164],[-71.04986363558099,42.35695520392241],[-71.04986070563909,42.35684734744633],[-71.04921803147099,42.35684922083264],[-71.04922102480084,42.35679215678783],[-71.04919095628073,42.35675471914065],[-71.04917699112707,42.35668962733947],[-71.04918947806034,42.35665043708439],[-71.04921751250612,42.35661048220429],[-71.04921903105165,42.35655341147545],[-71.0498616915045,42.35655236090793],[-71.04986823170542,42.35630926098582],[-71.04997618332781,42.3563212063045],[-71.05001156120441,42.35608068870785],[-71.04976064502846,42.3560388189787],[-71.04968553685522,42.35614280207134],[-71.049709188706,42.35619887391275],[-71.04967029432589,42.35625744583155],[-71.04958837640513,42.35627852765371],[-71.04950091898237,42.35624635437821],[-71.04948099798267,42.35618645376492],[-71.0495236116973,42.35612515328946],[-71.04960067961173,42.35610926430656],[-71.04992308650345,42.35567147324359],[-71.04994511131927,42.35564384396155],[-71.05032574450517,42.35497714634687],[-71.0504339073416,42.3548027694876],[-71.05068277942875,42.35445469269805],[-71.05086440299813,42.35456297175917],[-71.05098411005679,42.35463835250498],[-71.05106032709598,42.35453355180754],[-71.05112341578348,42.35445367120897],[-71.051185414625,42.35437186509871],[-71.05099675880541,42.35421169416818],[-71.05093784291688,42.35406795038654],[-71.05113079733734,42.35377837756491],[-71.0512752412251,42.35354816223983],[-71.0513529965964,42.35343431309597],[-71.05143068190587,42.35333116179474],[-71.05149723998747,42.35323181218947],[-71.05170369361961,42.35291622126314],[-71.05180457625221,42.35293253166353],[-71.05184758857663,42.35297111566047],[-71.05223279381951,42.35254234410882],[-71.05206184012516,42.35239020236034],[-71.05216959897848,42.35222868960224]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":150537.205932,"geom:bbox":"-71.0538741875,42.3522286896,-71.0476550384,42.3607189651","geom:latitude":42.357162,"geom:longitude":-71.050829,"iso:country":"US","lbl:latitude":42.358013,"lbl:longitude":-71.049652,"lbl:max_zoom":18,"mps:latitude":42.357384,"mps:longitude":-71.050526,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Waterfront"],"name:fra_x_preferred":["Waterfront"],"name:ita_x_preferred":["Waterfront"],"name:nld_x_preferred":["Waterfront"],"name:swe_x_preferred":["Waterfront"],"reversegeo:latitude":42.357384,"reversegeo:longitude":-71.050526,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85815133,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3cc0a80cca2922d4f5e613375ddba7ef","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108711985,"neighbourhood_id":85815133,"region_id":85688645}],"wof:id":1108711985,"wof:lastmodified":1566624134,"wof:name":"Waterfront","wof:parent_id":85815133,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891287],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712091.geojson b/fixtures/microhoods/1108712091.geojson new file mode 100644 index 0000000..ecaa427 --- /dev/null +++ b/fixtures/microhoods/1108712091.geojson @@ -0,0 +1 @@ +{"id":1108712091,"type":"Feature","bbox":[-71.06943564438882,42.3144522438337,-71.061730206706,42.31928923860814],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06943564438882,42.3144522438337],[-71.06663173058146,42.31765036613663],[-71.06634505480274,42.31750519043837],[-71.06503011618682,42.31928923860814],[-71.06362224106483,42.31868663282209],[-71.06341695384316,42.31861026628835],[-71.06318880079222,42.31852989202897],[-71.06272336969012,42.31838391832698],[-71.0625288189334,42.31832882941713],[-71.061730206706,42.3181171922628],[-71.0633364271731,42.31448336941001],[-71.06373343829549,42.31456017866527],[-71.06407144247589,42.31462649329171],[-71.06457535730408,42.314704510283],[-71.06498582015831,42.3147542343283],[-71.06530695851653,42.31478070420881],[-71.06564159383407,42.31479067826032],[-71.0659818548026,42.31476773406408],[-71.06641204054532,42.31470730374411],[-71.06707847183633,42.31459086414957],[-71.06736602645715,42.314561185909],[-71.06763736792243,42.31455862928719],[-71.06805676524966,42.31457395639686],[-71.06835962302101,42.31458602912917],[-71.06869540505991,42.31458626363721],[-71.06890894608692,42.31456404842411],[-71.06943564438882,42.3144522438337]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":185550.57979,"geom:bbox":"-71.0694356444,42.3144522438,-71.0617302067,42.3192892386","geom:latitude":42.31652,"geom:longitude":-71.065089,"iso:country":"US","lbl:latitude":42.320914,"lbl:longitude":-71.057801,"lbl:max_zoom":18,"mps:latitude":42.316586,"mps:longitude":-71.064709,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:eng_x_preferred":["Uphams Corner"],"name:eng_x_variant":["Uphams Cor"],"name:fra_x_preferred":["Uphams Corner"],"name:und_x_variant":["Burying Place Corner"],"reversegeo:latitude":42.316586,"reversegeo:longitude":-71.064709,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7898299"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2c0d2b722e6740aff164452c0964b784","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712091,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108712091,"wof:lastmodified":1566624141,"wof:name":"Uphams Corner","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85853211],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712093.geojson b/fixtures/microhoods/1108712093.geojson new file mode 100644 index 0000000..0034f99 --- /dev/null +++ b/fixtures/microhoods/1108712093.geojson @@ -0,0 +1 @@ +{"id":1108712093,"type":"Feature","bbox":[-71.18529756775669,42.25300273799271,-71.14035972602885,42.28145270872481],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.18529756775669,42.27947887211297],[-71.18321618467728,42.27973297996261],[-71.18001678061259,42.28013613224515],[-71.178861995708,42.28028037876555],[-71.1785570525081,42.28031736499965],[-71.17824711023933,42.2803469539713],[-71.17790717355747,42.28037284431008],[-71.17755223966903,42.28039503602058],[-71.17712981835112,42.28040613187289],[-71.17683237375448,42.28040798118142],[-71.17654242776112,42.28039873463823],[-71.17607251528912,42.28037654292904],[-71.17575507441707,42.28035250190193],[-71.17525516753199,42.2802951732618],[-71.17477025785342,42.28023969388298],[-71.17409538355854,42.28015647472316],[-71.17245818850982,42.27994935100375],[-71.17052104933005,42.2796959933855],[-71.16851142365192,42.27944263474855],[-71.16605438131164,42.27915783623247],[-71.1653845060856,42.27908201303395],[-71.16513455264305,42.27905797151293],[-71.1649045954759,42.27904502607474],[-71.16466214063664,42.27903947802898],[-71.1643546979023,42.27904317672621],[-71.16409974539089,42.27906721825288],[-71.16369981988281,42.2791171506251],[-71.16336238273536,42.27918372705986],[-71.16303744326004,42.27927249553012],[-71.16268750844046,42.27939085329592],[-71.1623975624471,42.27951475884382],[-71.16209761831605,42.27967195209874],[-71.16180267325383,42.27982174765911],[-71.16154022213915,42.28001777587922],[-71.16131026497199,42.28020270760331],[-71.16095533108357,42.28053743264363],[-71.16068288183119,42.2807833896891],[-71.16044042699191,42.28100715428739],[-71.16023546516901,42.28118283667958],[-71.15988776445619,42.28145270872481],[-71.15958411875349,42.28130170757734],[-71.15820008307674,42.28067893218564],[-71.15800501814235,42.2806149664038],[-71.15776879985279,42.28052825139807],[-71.15744533743484,42.280368706642],[-71.156930193584,42.28004961591796],[-71.15610356740478,42.27943802084692],[-71.15509723988224,42.27865800692582],[-71.15461803630008,42.27821481289639],[-71.154270613703,42.27789571126512],[-71.15333616671778,42.27727523124527],[-71.15194647632951,42.27629131468888],[-71.15159605871007,42.27609519434983],[-71.1513175216279,42.27596112303258],[-71.15115100604332,42.27589651511816],[-71.15097608907564,42.27585696825847],[-71.15032916423971,42.27583037552262],[-71.14943065752315,42.27583037552262],[-71.1483779071536,42.27584256386084],[-71.14787923592593,42.27583813173839],[-71.1476456241796,42.27583037552262],[-71.14723231108998,42.27579713458668],[-71.14707057988103,42.27577608198546],[-71.14691073192638,42.27574327586315],[-71.1467920427989,42.27571181610548],[-71.14667523692572,42.27567081887188],[-71.14646826831718,42.27556869997874],[-71.14624395370178,42.27542261883445],[-71.1457407899405,42.27506693761222],[-71.14557165560558,42.27495412010239],[-71.14538895063382,42.27482510419669],[-71.1452735664479,42.27472233488778],[-71.14387189597007,42.27296715865307],[-71.14361956533384,42.27267739474431],[-71.14359036386556,42.27263473340624],[-71.14356116239726,42.27259816652167],[-71.14352158699427,42.27257171203785],[-71.14347655301479,42.27255051873202],[-71.14324893131327,42.27249733045875],[-71.14312132844101,42.27248146736865],[-71.14302430463414,42.27247295248519],[-71.14294164075547,42.27245619608784],[-71.1428790460483,42.27243416932596],[-71.1427697277311,42.27238208904603],[-71.1425449101541,42.27228702886804],[-71.14261088621768,42.2722496780749],[-71.14264983398495,42.2722277130415],[-71.14265005774095,42.27222758769533],[-71.14266978881253,42.27221646102507],[-71.14300099471454,42.27215255221015],[-71.14339830853027,42.2720993776677],[-71.14350264365557,42.2720861367215],[-71.14368104973062,42.2720634949756],[-71.14371508525844,42.27205917557983],[-71.14371581553331,42.27205908331356],[-71.14372229462198,42.27205826072979],[-71.14373379588847,42.27205550637028],[-71.14373487864742,42.27205524684072],[-71.1437996790173,42.27203972675271],[-71.14397549586546,42.271997617376],[-71.14410122231529,42.27195057010779],[-71.14410159403629,42.27195043081252],[-71.14410574369319,42.27194887804535],[-71.14424076816117,42.27189137811301],[-71.14424254939716,42.27189021143652],[-71.14434750209,42.27182150398463],[-71.14443772497235,42.27174631366945],[-71.14455659984375,42.27161855865566],[-71.14465185370175,42.27148897574285],[-71.14471020979717,42.27136073529664],[-71.14473509761642,42.27130604416612],[-71.1447451666303,42.27128391706017],[-71.14476165505395,42.27124370562011],[-71.14488892094411,42.27093333986898],[-71.14492622102556,42.27084583051851],[-71.14492675290633,42.27084458164227],[-71.14498231097353,42.2707142400902],[-71.1450225248358,42.27064664541069],[-71.14502295436888,42.27064592199452],[-71.14508966277049,42.27053379556899],[-71.14519502475073,42.27038127219361],[-71.14524452077916,42.27030962053494],[-71.1453176891032,42.27017242698353],[-71.14533049569164,42.27014841584027],[-71.14541437169146,42.26993981714676],[-71.14543299718693,42.26984423906144],[-71.1454330533464,42.26984395113785],[-71.1454390862653,42.2698129948371],[-71.1454391536767,42.26981264572765],[-71.14545573231628,42.26972757685698],[-71.14546620497373,42.26954507813829],[-71.14544122337503,42.26936422464829],[-71.1453998188982,42.26916225964557],[-71.1453431244896,42.26903023427165],[-71.14534262073569,42.26902906142144],[-71.14529718258039,42.26892324799876],[-71.14518995733313,42.26865965009164],[-71.1451665970459,42.26858600693207],[-71.14516643267619,42.26858548784949],[-71.1451481608922,42.2685278876066],[-71.14510886470516,42.26837156175056],[-71.1451069181136,42.26836007236601],[-71.14507226667033,42.26815557030723],[-71.14505258191846,42.26787293664271],[-71.14506328280207,42.26765007079103],[-71.1450806799395,42.26749743039035],[-71.14512158663914,42.2673659234355],[-71.14513408060469,42.26724485951758],[-71.14513738675534,42.26707637972711],[-71.14510062223064,42.26689022468302],[-71.14508477312434,42.26684966113899],[-71.1450353939889,42.26672328775194],[-71.14488311167676,42.26648938711198],[-71.14467867795214,42.26628516186842],[-71.14463572917138,42.26624996304049],[-71.14463459018296,42.26624902860181],[-71.14458482077103,42.26620823936862],[-71.14438531543031,42.2660447324729],[-71.14438428262237,42.26604388568998],[-71.14435408259703,42.26601913554511],[-71.14404587341129,42.26578124135253],[-71.14392703525098,42.26570409411711],[-71.14372803593444,42.26557490720636],[-71.14356568380434,42.26548127416306],[-71.14356466168871,42.26548068489267],[-71.14340065122518,42.26538609484429],[-71.14303333548963,42.26515503399291],[-71.14299117426306,42.26511502395998],[-71.14298410319067,42.26510831361805],[-71.14298378972796,42.26510801554318],[-71.1429015568258,42.26502997718876],[-71.14277362705272,42.26490857303143],[-71.14274531884217,42.26488170902378],[-71.14261027527417,42.26475355277444],[-71.1423561264152,42.26456847557191],[-71.14208285776952,42.26442194954797],[-71.14191361774502,42.26433028503558],[-71.14191217615557,42.26432950447797],[-71.14184493390556,42.2642930845393],[-71.1418078790409,42.26426532962295],[-71.14180773300399,42.26426521933029],[-71.14165434812539,42.26415032652012],[-71.14162388607593,42.26411503406249],[-71.14160270222342,42.26409049137734],[-71.14156613852342,42.26402909084362],[-71.14156291114443,42.2640236726421],[-71.14152935311827,42.26396211492123],[-71.14152915278032,42.26396174787201],[-71.14150444674983,42.26391642865457],[-71.14148597079475,42.26384090116607],[-71.14148473464309,42.26383230660323],[-71.1414768768446,42.26377768851834],[-71.14147181300335,42.26372454395078],[-71.14147171919997,42.26372355692435],[-71.14146349418365,42.26363723797579],[-71.14145276308294,42.2634458979008],[-71.14143685937695,42.26333352086782],[-71.14142766621715,42.26328785933374],[-71.14142305944176,42.26326169110607],[-71.1414213093746,42.26324453484261],[-71.14141868621697,42.26321845743728],[-71.14141648601745,42.26319924167212],[-71.1414140426738,42.26318208324341],[-71.14141044936386,42.26316423519152],[-71.14139711860687,42.26311274026445],[-71.14138332487262,42.26306124478971],[-71.14137365256961,42.26302701381795],[-71.14137180484731,42.26302047543837],[-71.14137177038144,42.26302035468994],[-71.14136838507962,42.26300837366946],[-71.1413534220115,42.26295961866584],[-71.1412950962606,42.26278038213145],[-71.14123561700475,42.26260114105592],[-71.14118604226945,42.26244939378179],[-71.1411859886619,42.26244922885859],[-71.14117706163456,42.26242190372965],[-71.14112560004735,42.26225453564455],[-71.14112556316852,42.26225441308791],[-71.14112174291222,42.26224199044979],[-71.14111405205037,42.26221383819695],[-71.14110953532892,42.26219598724587],[-71.14110548038535,42.26217813773778],[-71.14110188721926,42.26216028967279],[-71.1410987597164,42.26214175703097],[-71.14109008603127,42.26208341719158],[-71.14108501596132,42.26204086735327],[-71.14108241242306,42.26201135983435],[-71.14108113980168,42.261991460925],[-71.14108056044785,42.26197156418246],[-71.14107864797766,42.26190158292731],[-71.14109170890222,42.26167454620943],[-71.14114723823994,42.26145038723758],[-71.14115476643536,42.26142571360511],[-71.14116181731387,42.2614037826092],[-71.14116909458106,42.26138253835241],[-71.14117919029333,42.26135307051599],[-71.1411890545108,42.26132360105485],[-71.1412012586377,42.26128865154688],[-71.14121346275111,42.26125370203737],[-71.14124045666966,42.26117557870575],[-71.14126932599258,42.26109265900016],[-71.14128364621693,42.26105085577063],[-71.1412981979118,42.2610090532621],[-71.1413120497763,42.26096862062988],[-71.14132590041112,42.26092818799184],[-71.14133881317993,42.26089049565125],[-71.14135126295064,42.2608528027631],[-71.14139067965978,42.2607286225849],[-71.14140929118662,42.26063032510583],[-71.14140937239574,42.26062989591402],[-71.14141257321563,42.26061299098236],[-71.14141134780449,42.26059201815527],[-71.14141133670375,42.26059183805963],[-71.14140611909043,42.26050253042962],[-71.1413926441626,42.26038152968582],[-71.14137867846475,42.26034317719562],[-71.14135902365241,42.26028919924843],[-71.14135430121358,42.26027622821046],[-71.1412903043424,42.26016040484391],[-71.14127954169278,42.26014459247693],[-71.14126831461606,42.26012946469025],[-71.14125294991129,42.2601108938135],[-71.14123596262746,42.26009248982318],[-71.14123491943961,42.26009136028228],[-71.14113545810913,42.2599836097834],[-71.14111615747404,42.25996708468366],[-71.14109592944489,42.25995124271416],[-71.14107569753973,42.25993608676137],[-71.14104696136347,42.25991404389601],[-71.14101822253248,42.25989268704744],[-71.14100075344201,42.25987891178343],[-71.14098328047204,42.25986582253699],[-71.14096580750922,42.25985273328787],[-71.14094833455368,42.25983964403606],[-71.14090925228109,42.25981002242659],[-71.14087017004502,42.25978040080368],[-71.14082901710778,42.25974940062515],[-71.14078809958475,42.25971771513557],[-71.14074718210264,42.25968602963125],[-71.14070649493397,42.25965434483266],[-71.14066787853606,42.25962403856462],[-71.14062949755024,42.25959304698759],[-71.14062221548816,42.25958714880542],[-71.1406213191029,42.25958642305497],[-71.14059548322382,42.25956549922767],[-71.14058406114081,42.25955595175236],[-71.14058351832311,42.25955549810008],[-71.14056170309071,42.25953726615811],[-71.14054585484648,42.25952280896436],[-71.14053047493232,42.25950698206992],[-71.14051602364151,42.25949047204814],[-71.14050296030554,42.2594732803375],[-71.14048739296,42.25944990649296],[-71.1404713794414,42.25942378711918],[-71.14046040631374,42.25940454385063],[-71.14044578197549,42.25937774279035],[-71.14043620191401,42.25935713181651],[-71.14042754536803,42.25933652373374],[-71.1404198123366,42.25931591854233],[-71.14041300671218,42.2592946302221],[-71.14040735097834,42.25927403153502],[-71.14040177432867,42.25923971244499],[-71.14039665433327,42.25920608081717],[-71.14039200120224,42.25917176461845],[-71.14038734686433,42.25913744841556],[-71.14038315549628,42.25910313366222],[-71.14037919440825,42.25906881872939],[-71.1403756950718,42.25903450614271],[-71.14037242600925,42.25900019427693],[-71.14036938843222,42.25896588313578],[-71.14036681261008,42.25893157344061],[-71.14036446437865,42.25889795049053],[-71.14036258058276,42.25886364296228],[-71.1403611558579,42.2588300229042],[-71.14035972602885,42.25879708886249],[-71.14036961748059,42.25876281821483],[-71.1403783101343,42.25866323296938],[-71.14039906162625,42.25858673690368],[-71.14043078447551,42.25852975779674],[-71.14048731818396,42.25846215443858],[-71.14054298950423,42.2584162277033],[-71.14060769885965,42.25836892205317],[-71.14064065828022,42.25834922029615],[-71.14064111431335,42.25834894713026],[-71.14091727320324,42.25818386052572],[-71.1411587053778,42.25802441948421],[-71.14116083182488,42.25802301445108],[-71.14128765548378,42.25793926009379],[-71.14160771606956,42.257727890129],[-71.14183485583803,42.25752430429309],[-71.14184812278054,42.25750782597352],[-71.14203760133965,42.25727247561667],[-71.14226592974701,42.25690547368328],[-71.14252171848874,42.25641781410345],[-71.14261472797328,42.25626814155194],[-71.14261477932988,42.2562680606843],[-71.14274200576726,42.25606332470132],[-71.14296332278154,42.25570717519772],[-71.1429660243778,42.25570282791998],[-71.14296703579853,42.25570119971129],[-71.14296800196352,42.25569964518691],[-71.14306251605603,42.25554754881297],[-71.14311442700505,42.25546401146403],[-71.1433543723264,42.25499962580603],[-71.14355299195158,42.25469907411684],[-71.14356652632112,42.25468032765266],[-71.14360891382518,42.25462162064919],[-71.14360925337675,42.25462114994288],[-71.14361249985507,42.25461665398961],[-71.14361674544566,42.25461077286592],[-71.14364606665913,42.25458088189127],[-71.14364753662187,42.25457938294299],[-71.14390188137862,42.25432009353506],[-71.14427113053372,42.25401458050016],[-71.14464110455572,42.25374405710265],[-71.14474340165157,42.25367841186563],[-71.14510079824505,42.25346486173702],[-71.14562486166237,42.25326781357615],[-71.14595325577244,42.25311996653082],[-71.14598464161094,42.25309589549846],[-71.145984704898,42.25309584707708],[-71.14608840043321,42.25301631863403],[-71.14609621887651,42.25301032238845],[-71.14610168229396,42.25300613209938],[-71.14613411956775,42.25300273799271],[-71.14664274673785,42.25575580889515],[-71.15231237699696,42.2583363660419],[-71.15859343458223,42.25514816784649],[-71.16347681676453,42.25908982289427],[-71.16485739062425,42.26018147664144],[-71.16894907858504,42.26343419833839],[-71.1713241789009,42.26534778519922],[-71.17132312803595,42.26569146555266],[-71.17137900775622,42.26590534292475],[-71.17154134715533,42.2661416227369],[-71.17169459301454,42.26627784909201],[-71.17186728063113,42.2663712340761],[-71.17207855750857,42.2664433080993],[-71.17238609998462,42.26650849899987],[-71.17279483553595,42.26654426746698],[-71.17315523603374,42.26661788067897],[-71.17360675530142,42.26674779469829],[-71.17390436391999,42.26687726458576],[-71.1741537724459,42.26702089644203],[-71.17431652177807,42.26717858511699],[-71.17444073989336,42.26734329562131],[-71.17452597458067,42.26760795419428],[-71.17458244874028,42.26785106979042],[-71.1746004883113,42.26808695505765],[-71.17460863358058,42.26837281145328],[-71.17450138756931,42.26865121854136],[-71.17430788855339,42.26885790595738],[-71.1739409236735,42.2691212824475],[-71.1736221080926,42.26937049061191],[-71.17321592168146,42.26977665372297],[-71.17302219372678,42.27002621607388],[-71.17296391607593,42.27013324007129],[-71.17295342965548,42.27029757291193],[-71.17299123199801,42.27043346407504],[-71.17315358292991,42.27066974588297],[-71.17341210872966,42.27091345478019],[-71.17352653380998,42.27111388116545],[-71.17358271265161,42.27141417260252],[-71.17370637364436,42.27169323126295],[-71.17385880280277,42.27198665565441],[-71.17404019863793,42.2722658589509],[-71.1743273362899,42.27261672242692],[-71.17460251705602,42.27300112711095],[-71.17478486012794,42.27340658738127],[-71.17486336772778,42.27373434912619],[-71.17488669724814,42.27387138788092],[-71.17486999915506,42.27400233982211],[-71.17485326427571,42.27413926425081],[-71.17477208411945,42.27432960202006],[-71.17461043657038,42.27457925858736],[-71.1745131861602,42.27478145711082],[-71.1744155741296,42.2750491739198],[-71.1744383580776,42.27529934749455],[-71.17450963667328,42.27547224162625],[-71.17460486917764,42.27566307904615],[-71.17476431807643,42.27584218726103],[-71.17497199901418,42.27600356528082],[-71.17544388350134,42.27624310666255],[-71.17593188819583,42.27646481610069],[-71.17636399965123,42.27664469555451],[-71.1767813414057,42.27679894886732],[-71.17692433141202,42.27683684058392],[-71.17710873937816,42.27685918513876],[-71.17746143948905,42.27686811408435],[-71.17855280781707,42.27671038813129],[-71.17913875526172,42.27659888577837],[-71.17976481039251,42.27648747336714],[-71.18040690025299,42.27637016558509],[-71.18124169636793,42.27620574890305],[-71.18249526569939,42.27596550980092],[-71.18277962532179,42.27587964612356],[-71.18289535660902,42.27585300441188],[-71.18304770414262,42.27585342493322],[-71.18315967477757,42.27591330225138],[-71.18325752989006,42.27599350622766],[-71.18528786825294,42.2794576692013],[-71.18529756775669,42.27947887211297]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000645,"geom:area_square_m":5898401.749218,"geom:bbox":"-71.1852975678,42.253002738,-71.140359726,42.2814527087","geom:latitude":42.268695,"geom:longitude":-71.159079,"iso:country":"US","lbl:latitude":42.268315,"lbl:longitude":-71.159086,"lbl:max_zoom":18,"mps:latitude":42.268315,"mps:longitude":-71.159086,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Upper Washington"],"reversegeo:latitude":42.268315,"reversegeo:longitude":-71.159086,"src:geom":"mz","wof:belongsto":[85856255,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1ab8480f22f36298bcfec378cfd0c2e7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712093,"neighbourhood_id":85856255,"region_id":85688645}],"wof:id":1108712093,"wof:lastmodified":1566624142,"wof:name":"Upper Washington - Spring Street","wof:parent_id":85856255,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420523795],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712095.geojson b/fixtures/microhoods/1108712095.geojson new file mode 100644 index 0000000..36752b8 --- /dev/null +++ b/fixtures/microhoods/1108712095.geojson @@ -0,0 +1 @@ +{"id":1108712095,"type":"Feature","bbox":[-71.09961427566081,42.27716738326333,-71.09150707463259,42.28766800013997],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.09961427566081,42.28231942903949],[-71.09577940903037,42.28639221996045],[-71.09513466933203,42.28708251593652],[-71.09499381103491,42.28718159925833],[-71.09481490214966,42.28728054338335],[-71.09446357853626,42.28745715496762],[-71.09431693841377,42.28751753281766],[-71.09388700000179,42.28766800013997],[-71.09372299948225,42.28728199990969],[-71.09366300006067,42.28711900041797],[-71.09343399980622,42.28655700012523],[-71.09341499975064,42.2865100001071],[-71.0931959994855,42.285935000068],[-71.09293200021357,42.28532200035178],[-71.09285999969576,42.28512999959408],[-71.09286399967093,42.28495100025967],[-71.09274099968842,42.2848549997969],[-71.09235700039702,42.28462800021467],[-71.0919699995596,42.28444200016836],[-71.09154700023493,42.28427299997012],[-71.09150707463259,42.2842642888728],[-71.09281389304115,42.2801585061454],[-71.09311382443232,42.27928682104189],[-71.093365237321,42.27853924707749],[-71.09341373632229,42.27832079620944],[-71.09344350552554,42.27807708147807],[-71.09350176625874,42.27716738326333],[-71.09453915040052,42.27790178881456],[-71.09488365003749,42.27815722138183],[-71.09515616012169,42.278372228587],[-71.09550508056338,42.27868952586626],[-71.09580042683594,42.27898926253069],[-71.09646485748715,42.27963241048081],[-71.09695342461289,42.28011146167932],[-71.09727584054181,42.28046452708085],[-71.09750698231353,42.28076482563743],[-71.09772916275432,42.28104059300464],[-71.09788321036552,42.28123227610529],[-71.0981065588859,42.28144810348301],[-71.0983494062134,42.28164870497968],[-71.09867599678235,42.28181825935862],[-71.09915344241314,42.28206690328286],[-71.09961427566081,42.28231942903949]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":384886.571298,"geom:bbox":"-71.0996142757,42.2771673833,-71.0915070746,42.2876680001","geom:latitude":42.282628,"geom:longitude":-71.095045,"iso:country":"US","lbl:latitude":42.287368,"lbl:longitude":-71.086621,"lbl:max_zoom":18,"mps:latitude":42.282718,"mps:longitude":-71.095112,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":42.282718,"reversegeo:longitude":-71.095112,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85832891,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2d0370a261873a7dc2995a58ed499b8e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712095,"neighbourhood_id":85832891,"region_id":85688645}],"wof:id":1108712095,"wof:lastmodified":1566624142,"wof:name":"Wellington Hill","wof:parent_id":85832891,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891439],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712099.geojson b/fixtures/microhoods/1108712099.geojson new file mode 100644 index 0000000..32d0787 --- /dev/null +++ b/fixtures/microhoods/1108712099.geojson @@ -0,0 +1 @@ +{"id":1108712099,"type":"Feature","bbox":[-71.102519,42.34061,-71.092399,42.34796114985993],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.092402,42.347397],[-71.092473,42.34722],[-71.092516,42.347149],[-71.092542,42.347105],[-71.09262,42.347012],[-71.092776,42.346878],[-71.093004,42.346743],[-71.093095,42.34667],[-71.093295,42.346511],[-71.094185,42.345701],[-71.094303,42.345577],[-71.094401,42.345325],[-71.094451,42.345189],[-71.094574,42.344854],[-71.094612,42.34469],[-71.094644,42.344549],[-71.094701,42.344246],[-71.094703,42.344039],[-71.094679,42.343802],[-71.094612,42.343513],[-71.094593,42.343271],[-71.094582,42.343129],[-71.094579,42.343087],[-71.094611,42.34294],[-71.094692,42.342756],[-71.094842,42.342559],[-71.095072,42.342353],[-71.095308,42.342217],[-71.095488,42.342135],[-71.095625,42.342085],[-71.095897,42.342012],[-71.096493,42.341843],[-71.097162,42.341667],[-71.097348,42.341585],[-71.097516,42.341465],[-71.097895,42.341154],[-71.098188,42.34092],[-71.098361,42.34081],[-71.098408,42.340791],[-71.098634,42.3407],[-71.098876,42.340628],[-71.099062,42.34061],[-71.09926,42.340629],[-71.099536,42.340704],[-71.099795,42.340804],[-71.099993,42.340881],[-71.10018,42.34097],[-71.100308,42.341046],[-71.100415,42.341131],[-71.100452,42.341161],[-71.100767,42.341441],[-71.10082,42.341493],[-71.101071,42.341738],[-71.101823,42.342503],[-71.102068,42.342752],[-71.102351,42.343056],[-71.102472,42.343194],[-71.102519,42.343375],[-71.102422,42.343518],[-71.101897,42.344013],[-71.101824,42.344082],[-71.101668,42.344221],[-71.100982,42.344881],[-71.100804,42.345036],[-71.100595,42.345223],[-71.100318,42.34547],[-71.099702,42.346067],[-71.099501,42.346273],[-71.099347,42.346439],[-71.098955,42.346815],[-71.098575,42.347173],[-71.098166,42.347599],[-71.098013,42.347754],[-71.09783384038624,42.34789274423079],[-71.09771,42.347891],[-71.096510630312,42.3478982251186],[-71.095718,42.347903],[-71.09316679125382,42.34794779125382],[-71.09288847475229,42.34795573906727],[-71.09254810775532,42.34795952862996],[-71.092399,42.34796114985993],[-71.092402,42.347629],[-71.092402,42.347498],[-71.092402,42.347397]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000043,"geom:area_square_m":389973.309184,"geom:bbox":"-71.102519,42.34061,-71.092399,42.3479611499","geom:latitude":42.344509,"geom:longitude":-71.097573,"iso:country":"US","lbl:latitude":42.346643,"lbl:longitude":-71.094917,"lbl:max_zoom":18,"mps:latitude":42.344456,"mps:longitude":-71.097495,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":42.344456,"reversegeo:longitude":-71.097495,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869235,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fe014f64c0808121ab5784e766b49781","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712099,"neighbourhood_id":85869235,"region_id":85688645}],"wof:id":1108712099,"wof:lastmodified":1566624141,"wof:name":"West Fens","wof:parent_id":85869235,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891291],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712101.geojson b/fixtures/microhoods/1108712101.geojson new file mode 100644 index 0000000..7dc3613 --- /dev/null +++ b/fixtures/microhoods/1108712101.geojson @@ -0,0 +1 @@ +{"id":1108712101,"type":"Feature","bbox":[-71.11925841685623,42.288498,-71.113113,42.2966907110221],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11734101759714,42.2966907110221],[-71.116216,42.296068],[-71.116026,42.295933],[-71.115956,42.295838],[-71.115916,42.295695],[-71.115856,42.295411],[-71.115829,42.29522],[-71.115761,42.295054],[-71.115637,42.294868],[-71.115368,42.294572],[-71.115092,42.294401],[-71.114234,42.293896],[-71.114,42.29374],[-71.113969,42.293714],[-71.113758,42.293538],[-71.1134,42.293118],[-71.113501,42.293],[-71.113632,42.292824],[-71.1139,42.292482],[-71.11422,42.292022],[-71.114329,42.291834],[-71.114432,42.291572],[-71.114476,42.291346],[-71.114484,42.291188],[-71.114443,42.290818],[-71.114402,42.290649],[-71.114196,42.290039],[-71.11414,42.289803],[-71.113983,42.28948],[-71.11384,42.289308],[-71.113769,42.289238],[-71.113744,42.289222],[-71.11351,42.289066],[-71.113113,42.288849],[-71.113169,42.288792],[-71.113246,42.288773],[-71.113543,42.288748],[-71.113812,42.288727],[-71.114212,42.288688],[-71.114897,42.288603],[-71.115401,42.288553],[-71.116382,42.288498],[-71.11646624391204,42.28850083852296],[-71.11653511374726,42.288515341084],[-71.11659998488074,42.28854632171865],[-71.1168955746183,42.28872524692894],[-71.11925841685623,42.29017623098452],[-71.11925057342722,42.29025374968887],[-71.11924813820004,42.29027781475509],[-71.1191800739973,42.29063739606367],[-71.11914035396993,42.29084723427226],[-71.11909314369579,42.29110402080005],[-71.11898428790089,42.29169609078937],[-71.11853577805837,42.2930872390178],[-71.11843378759292,42.29331874110119],[-71.1182781134814,42.29367209949574],[-71.11816416457683,42.29393074074068],[-71.11815322756105,42.29395370345299],[-71.11793282882708,42.29441641990386],[-71.11791738411725,42.29444884685878],[-71.1179168240552,42.29445002258841],[-71.11777394990814,42.29473045440426],[-71.11733468785374,42.29551203601117],[-71.11775582669665,42.29570521797087],[-71.11801013917302,42.29583161328299],[-71.11810349881749,42.29588178584321],[-71.11734101759714,42.2966907110221]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00003,"geom:area_square_m":271292.935807,"geom:bbox":"-71.1192584169,42.288498,-71.113113,42.296690711","geom:latitude":42.292,"geom:longitude":-71.116386,"iso:country":"US","lbl:latitude":42.288253,"lbl:longitude":-71.116408,"lbl:max_zoom":18,"mps:latitude":42.291907,"mps:longitude":-71.116635,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Woodbourne"],"name:deu_x_preferred":["Woodbourne"],"name:eng_x_variant":["Mt Hope","Mt. Hope"],"name:spa_x_preferred":["Woodbourne"],"reversegeo:latitude":42.291907,"reversegeo:longitude":-71.116635,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0b4044e02313021231538a2b84f5a38e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712101,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712101,"wof:lastmodified":1566624129,"wof:name":"Woodbourne","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85835509],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712103.geojson b/fixtures/microhoods/1108712103.geojson new file mode 100644 index 0000000..fe2bcd6 --- /dev/null +++ b/fixtures/microhoods/1108712103.geojson @@ -0,0 +1 @@ +{"id":1108712103,"type":"Feature","bbox":[-71.05606307350565,42.28279281255512,-71.05606307350565,42.28279281255512],"geometry":{"type":"Point","coordinates":[-71.05606307350565,42.28279281255512]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.0560630735,42.2827928126,-71.0560630735,42.2827928126","geom:latitude":42.282793,"geom:longitude":-71.056063,"iso:country":"US","lbl:latitude":42.282793,"lbl:longitude":-71.056063,"lbl:max_zoom":18,"mps:latitude":42.282793,"mps:longitude":-71.056063,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.282793,"reversegeo:longitude":-71.056063,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"edae71ce30059e9b5835224f770c3217","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712103,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108712103,"wof:lastmodified":1613672362,"wof:name":"Adams Village","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780911],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712105.geojson b/fixtures/microhoods/1108712105.geojson new file mode 100644 index 0000000..6d24e2e --- /dev/null +++ b/fixtures/microhoods/1108712105.geojson @@ -0,0 +1 @@ +{"id":1108712105,"type":"Feature","bbox":[-71.05832029050572,42.32799964246156,-71.05512987929532,42.33089830910151],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.05522113622234,42.32854931816298],[-71.05686379715138,42.32853052197046],[-71.05686429977932,42.32799964246156],[-71.05750715343812,42.32800102024817],[-71.05792918158761,42.32811859756318],[-71.05781084035782,42.3283545887964],[-71.05822758333075,42.32848957284087],[-71.05825690696338,42.32850822703781],[-71.05827346305868,42.32853705902495],[-71.05828449144622,42.32857105666139],[-71.05829127113196,42.3286286742558],[-71.05832029050572,42.33089233368904],[-71.05689479164347,42.33089830910151],[-71.05690071839008,42.33042604600672],[-71.05651187378417,42.33043781496892],[-71.05560934069761,42.33087116318248],[-71.05516600475083,42.330399708778],[-71.05584524003793,42.33008785438699],[-71.05512987929532,42.32928286737109],[-71.05522113622234,42.32854931816298]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":64669.270665,"geom:bbox":"-71.0583202905,42.3279996425,-71.0551298793,42.3308983091","geom:latitude":42.329524,"geom:longitude":-71.0569,"iso:country":"US","lbl:latitude":42.329481,"lbl:longitude":-71.05677,"lbl:max_zoom":18,"mps:latitude":42.329481,"mps:longitude":-71.05677,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.329481,"reversegeo:longitude":-71.05677,"src:geom":"mz","wof:belongsto":[85849485,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"16ebb0b1bcf2fc1757857c996c3ffda4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712105,"neighbourhood_id":85849485,"region_id":85688645}],"wof:id":1108712105,"wof:lastmodified":1566624129,"wof:name":"Andrew Square","wof:parent_id":85849485,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780923],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712107.geojson b/fixtures/microhoods/1108712107.geojson new file mode 100644 index 0000000..b41855c --- /dev/null +++ b/fixtures/microhoods/1108712107.geojson @@ -0,0 +1 @@ +{"id":1108712107,"type":"Feature","bbox":[-71.10482855435414,42.33410545068413,-71.10482855435414,42.33410545068413],"geometry":{"type":"Point","coordinates":[-71.10482855435414,42.33410545068413]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1048285544,42.3341054507,-71.1048285544,42.3341054507","geom:latitude":42.334105,"geom:longitude":-71.104829,"iso:country":"US","lbl:latitude":42.334105,"lbl:longitude":-71.104829,"lbl:max_zoom":18,"mps:latitude":42.334105,"mps:longitude":-71.104829,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.334105,"reversegeo:longitude":-71.104829,"src:geom":"mz","wof:belongsto":[85869493,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"94b021e6a7fc6f6664b5889266b49983","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712107,"neighbourhood_id":85869493,"region_id":85688645}],"wof:id":1108712107,"wof:lastmodified":1613672360,"wof:name":"Brigham Circle","wof:parent_id":85869493,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780929],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712109.geojson b/fixtures/microhoods/1108712109.geojson new file mode 100644 index 0000000..ebe6acd --- /dev/null +++ b/fixtures/microhoods/1108712109.geojson @@ -0,0 +1 @@ +{"id":1108712109,"type":"Feature","bbox":[-71.106998,42.30944074561463,-71.1004680009789,42.31662991917231],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.1031055340691,42.31662991917231],[-71.10301837012122,42.3165117819468],[-71.10298028467729,42.31644017677468],[-71.10295285258059,42.31637097360691],[-71.10289639042442,42.31619636307301],[-71.1028397327749,42.31604365921944],[-71.10277008956024,42.31588666160526],[-71.10266903268345,42.31573104562744],[-71.10246715026167,42.3154762111382],[-71.10240156711465,42.31539545610066],[-71.10205205895369,42.31499997225162],[-71.1015835151885,42.31442216906601],[-71.1011421915072,42.3139548985939],[-71.10106103556889,42.31389520110827],[-71.10096569192429,42.31383707444582],[-71.1004680009789,42.31357067980343],[-71.10156137639785,42.31247079909109],[-71.10457350848827,42.30944074561463],[-71.10489,42.309558],[-71.105408,42.309787],[-71.105652,42.309886],[-71.106109,42.310091],[-71.106174,42.31012],[-71.106438,42.310234],[-71.106998,42.310463],[-71.106858,42.310678],[-71.106185,42.311669],[-71.105991,42.311978],[-71.105764,42.312371],[-71.105624,42.312624],[-71.105559,42.312747],[-71.105537,42.312793],[-71.105477,42.312921],[-71.105401,42.313127],[-71.105304,42.313353],[-71.105222,42.313568],[-71.105174,42.313722],[-71.105066,42.31392],[-71.104806,42.314443],[-71.104682,42.314688],[-71.104639,42.314808],[-71.104412,42.315188],[-71.104283,42.315351],[-71.104036,42.315636],[-71.103609,42.31609],[-71.103499,42.316202],[-71.103125,42.316614],[-71.1031055340691,42.31662991917231]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":193442.42478,"geom:bbox":"-71.106998,42.3094407456,-71.100468001,42.3166299192","geom:latitude":42.312748,"geom:longitude":-71.103787,"iso:country":"US","lbl:latitude":42.31305,"lbl:longitude":-71.103514,"lbl:max_zoom":18,"mps:latitude":42.31305,"mps:longitude":-71.103514,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ara_x_preferred":["بروكسايد"],"name:deu_x_preferred":["Brookside"],"name:fra_x_preferred":["Brookside"],"name:ita_x_preferred":["Brookside"],"name:nld_x_preferred":["Brookside"],"name:pol_x_preferred":["Brookside"],"name:rus_x_preferred":["Бруксайд"],"name:zho_x_preferred":["布魯克賽德"],"reversegeo:latitude":42.31305,"reversegeo:longitude":-71.103514,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e69f581751b17588515aa71902ac2dea","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712109,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712109,"wof:lastmodified":1566624129,"wof:name":"Brookside","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780931],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712111.geojson b/fixtures/microhoods/1108712111.geojson new file mode 100644 index 0000000..d154656 --- /dev/null +++ b/fixtures/microhoods/1108712111.geojson @@ -0,0 +1 @@ +{"id":1108712111,"type":"Feature","bbox":[-71.06343292960598,42.36303614199233,-71.0578105255587,42.36684129351843],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06343292960598,42.36396435970752],[-71.06333318035198,42.36416400824159],[-71.06327566092462,42.36429473421287],[-71.06323919897805,42.36435402020739],[-71.063191996303,42.36440977306759],[-71.06313702313994,42.36444979719526],[-71.06304035417634,42.36449866672805],[-71.06169126215283,42.36524119024486],[-71.05994476317667,42.36616150108259],[-71.05854032758326,42.36684129351843],[-71.05838421538981,42.36517684293747],[-71.05832813272752,42.36440301975271],[-71.05815995879901,42.36433513481055],[-71.05788782506939,42.36404526900007],[-71.0578105255587,42.3639605318834],[-71.05920389916847,42.36318766112617],[-71.05928742307567,42.36316479694611],[-71.05949099959501,42.36310399972406],[-71.05960600011919,42.36307000044481],[-71.05974932194322,42.36303614199233],[-71.06343292960598,42.36396435970752]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":102043.549073,"geom:bbox":"-71.0634329296,42.363036142,-71.0578105256,42.3668412935","geom:latitude":42.364624,"geom:longitude":-71.06023,"iso:country":"US","lbl:latitude":42.364622,"lbl:longitude":-71.059955,"lbl:max_zoom":18,"mps:latitude":42.364622,"mps:longitude":-71.059955,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.364622,"reversegeo:longitude":-71.059955,"src:geom":"mz","wof:belongsto":[85869769,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3fe4059affa5fcfa9436d33f2c7e40eb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712111,"neighbourhood_id":85869769,"region_id":85688645}],"wof:id":1108712111,"wof:lastmodified":1566624128,"wof:name":"Bulfinch Triangle","wof:parent_id":85869769,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780921],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712113.geojson b/fixtures/microhoods/1108712113.geojson new file mode 100644 index 0000000..9035749 --- /dev/null +++ b/fixtures/microhoods/1108712113.geojson @@ -0,0 +1 @@ +{"id":1108712113,"type":"Feature","bbox":[-71.0986475467844,42.318825,-71.08512595849598,42.33145649884013],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.08512595849598,42.32877034965647],[-71.0856967087363,42.32861778155221],[-71.08616,42.328461],[-71.086373,42.328372],[-71.086583,42.328268],[-71.086741,42.328148],[-71.08679,42.328098],[-71.086853,42.328035],[-71.086939,42.327891],[-71.086959,42.327857],[-71.086996,42.327782],[-71.087262,42.327159],[-71.087392,42.326875],[-71.087695,42.326184],[-71.08789,42.32571],[-71.087964,42.325553],[-71.088134,42.325194],[-71.088214,42.324993],[-71.088301,42.324819],[-71.08843,42.324619],[-71.088537,42.324482],[-71.088691,42.32432],[-71.088788,42.324218],[-71.089017,42.323965],[-71.08931,42.323654],[-71.0896,42.323394],[-71.089835,42.323228],[-71.091084,42.322318],[-71.091498,42.322007],[-71.091941,42.321692],[-71.092089,42.321576],[-71.092476,42.321307],[-71.092647,42.321182],[-71.093146,42.3208],[-71.09359,42.320456],[-71.09404,42.320071],[-71.094355,42.319756],[-71.094478,42.319637],[-71.095041,42.319094],[-71.095305,42.318825],[-71.095446,42.318986],[-71.095672,42.319197],[-71.095743,42.31925],[-71.095892,42.319314],[-71.095941,42.31933],[-71.096319,42.319424],[-71.096516,42.31947],[-71.096779,42.319507],[-71.096901,42.319516],[-71.096964,42.319514],[-71.097489,42.319484],[-71.097915,42.319509],[-71.098299,42.319556],[-71.09836437199196,42.31956525621126],[-71.09838211928324,42.32059771967281],[-71.09838234599222,42.32060558274949],[-71.09840405322532,42.3213549046301],[-71.09840446019217,42.32136896687185],[-71.09841610926561,42.32157200356489],[-71.09843295608408,42.3219283373525],[-71.09844546618802,42.32213279499165],[-71.09846357017001,42.3223101273495],[-71.09846770024889,42.32239019606322],[-71.09846794875016,42.3223950090113],[-71.09847723944705,42.3225751473991],[-71.09847725992154,42.32257555350395],[-71.09847740037438,42.32257827468781],[-71.0984780726733,42.32258723317662],[-71.09852269784969,42.32318182897117],[-71.09852270347018,42.32318189921381],[-71.0985334829059,42.32332552498345],[-71.09853501657311,42.32334213808979],[-71.09856840705558,42.32370395738258],[-71.09856914610225,42.32371195998812],[-71.09858547770324,42.32392172821582],[-71.0986475467844,42.32481259891662],[-71.09857784120592,42.32525897929157],[-71.09830556545586,42.3263043211883],[-71.09796321697722,42.32726663778192],[-71.0975906699287,42.32800970678584],[-71.0971845181975,42.32877746885577],[-71.09681242851839,42.32944609952846],[-71.09633969583109,42.3301640006808],[-71.09586727051013,42.33083227578553],[-71.09530475585598,42.33145649884013],[-71.09391801928241,42.33127921282102],[-71.09322302102466,42.33122872828667],[-71.0922012913751,42.33120936113467],[-71.09095695140357,42.33117556617311],[-71.09010177427385,42.33103980070629],[-71.08934603262844,42.33087785996086],[-71.08901835730533,42.33081377299222],[-71.08866845175606,42.33071448493906],[-71.08833072904596,42.33059517312499],[-71.08813655457244,42.33050819497585],[-71.0871304493611,42.32996894024593],[-71.08660904461505,42.32968552146716],[-71.08617684183918,42.32944380547967],[-71.08512595849598,42.32877034965647]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000103,"geom:area_square_m":943492.412778,"geom:bbox":"-71.0986475468,42.318825,-71.0851259585,42.3314564988","geom:latitude":42.325887,"geom:longitude":-71.093226,"iso:country":"US","lbl:latitude":42.326325,"lbl:longitude":-71.093353,"lbl:max_zoom":18,"mps:latitude":42.326325,"mps:longitude":-71.093353,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Fort Hill"],"name:swe_x_preferred":["Fort Hill"],"reversegeo:latitude":42.326325,"reversegeo:longitude":-71.093353,"src:geom":"mz","wof:belongsto":[85846283,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"56e4f043c2aed5ff441d4ed508c5e914","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712113,"neighbourhood_id":85846283,"region_id":85688645}],"wof:id":1108712113,"wof:lastmodified":1566624128,"wof:name":"Fort Hill","wof:parent_id":85846283,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780927],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712119.geojson b/fixtures/microhoods/1108712119.geojson new file mode 100644 index 0000000..fb5b594 --- /dev/null +++ b/fixtures/microhoods/1108712119.geojson @@ -0,0 +1 @@ +{"id":1108712119,"type":"Feature","bbox":[-71.08113076007517,42.2965395419716,-71.07115335203927,42.30581862271388],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0761789199238,42.30226622045275],[-71.0746841246284,42.30133120551942],[-71.07373400623894,42.30065971213816],[-71.07318876328301,42.3001676701409],[-71.07276786665398,42.29975671292251],[-71.072396524486,42.29933302565597],[-71.07201146231192,42.29874449790199],[-71.07171481780509,42.29823446307969],[-71.071415546279,42.29753671476998],[-71.07115335203927,42.29675294470228],[-71.07229126965743,42.29665351569936],[-71.07334160707619,42.29657285976409],[-71.07395756685699,42.2965395419716],[-71.07468574056419,42.2981872184663],[-71.07502689895118,42.298878533242],[-71.07544001739014,42.29940635303727],[-71.07588139999247,42.29985193184878],[-71.07657215812617,42.30036925863037],[-71.07789312635451,42.30133474124687],[-71.07841593251275,42.3017670613734],[-71.07889885969843,42.3022474806611],[-71.07982352208967,42.30342246589545],[-71.08113076007517,42.30516005376773],[-71.08011077912965,42.30581862271388],[-71.07845795198995,42.30432530706828],[-71.07734638316627,42.30318966803369],[-71.07683037463194,42.30271298546501],[-71.0761789199238,42.30226622045275]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":218893.706535,"geom:bbox":"-71.0811307601,42.296539542,-71.071153352,42.3058186227","geom:latitude":42.300717,"geom:longitude":-71.075759,"iso:country":"US","lbl:latitude":42.300866,"lbl:longitude":-71.075759,"lbl:max_zoom":18,"mps:latitude":42.300866,"mps:longitude":-71.075759,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ara_x_preferred":["الزوايا الأربع"],"name:ces_x_preferred":["Čtyři rohy"],"name:dan_x_preferred":["Four Corners"],"name:epo_x_preferred":["Kvar Anguloj"],"name:fin_x_preferred":["Four Corners"],"name:fra_x_preferred":["Four Corners"],"name:heb_x_preferred":["ארבע הפינות"],"name:hun_x_preferred":["Négysarok régió"],"name:hye_x_preferred":["Չորս անկյուն"],"name:ita_x_preferred":["Four Corners"],"name:jpn_x_preferred":["フォー・コーナーズ"],"name:kor_x_preferred":["포 코너스"],"name:lit_x_preferred":["Keturi Kampai"],"name:nor_x_preferred":["Hjørnestatene"],"name:pol_x_preferred":["Four Corners"],"name:por_x_preferred":["Quatro Cantos"],"name:ron_x_preferred":["Four Corners"],"name:rus_x_preferred":["Четыре Угла"],"name:slk_x_preferred":["Štyri rohy"],"name:spa_x_preferred":["Cuatro Esquinas"],"name:ukr_x_preferred":["Чотири кути"],"name:urd_x_preferred":["چار کونے"],"name:vie_x_preferred":["Four Corners"],"name:zho_x_preferred":["四角落"],"reversegeo:latitude":42.300866,"reversegeo:longitude":-71.075759,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8443dd5a273b72ac7b0b6ffc57a29cb6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712119,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108712119,"wof:lastmodified":1566624128,"wof:name":"Four Corners","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780917],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712121.geojson b/fixtures/microhoods/1108712121.geojson new file mode 100644 index 0000000..dcd7dc0 --- /dev/null +++ b/fixtures/microhoods/1108712121.geojson @@ -0,0 +1 @@ +{"id":1108712121,"type":"Feature","bbox":[-71.10554887508935,42.31916917795212,-71.09830556545586,42.3264119825601],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.10274838785651,42.31916917795212],[-71.10325546554381,42.31948716135984],[-71.10372314121585,42.31977976101599],[-71.10388314735462,42.31989045486581],[-71.10406104393218,42.32003910505249],[-71.10423064611913,42.32020726043342],[-71.10438118704263,42.32041271720946],[-71.10452486948809,42.32062430239223],[-71.10465335500828,42.32084185048231],[-71.10471515150238,42.32102696391198],[-71.10474071776656,42.32125508812657],[-71.10486663451093,42.32269808570125],[-71.10520711209826,42.3226857337383],[-71.10536000606795,42.32404225171329],[-71.1053611919172,42.32412763397554],[-71.1053552978807,42.32416881910584],[-71.1053420185421,42.32420848964944],[-71.10531508754134,42.32425804353749],[-71.10528041615278,42.32429913743037],[-71.10523304216997,42.32433639090529],[-71.10518013080947,42.32436807765489],[-71.10498226802515,42.32445452098882],[-71.10495528673638,42.32460745890405],[-71.10490132415885,42.32507291983666],[-71.10554887508935,42.32519925863845],[-71.10521656934931,42.32610200163816],[-71.10517279716035,42.3260990858321],[-71.10517080908551,42.32609901328174],[-71.1050797334781,42.32609572043393],[-71.10507837494086,42.32609567075165],[-71.10502606627061,42.32609377956203],[-71.10499158300003,42.32609301735582],[-71.10487908961753,42.32609053033325],[-71.10484927569503,42.32609042784552],[-71.10478557867573,42.326090208856],[-71.10476283667316,42.32609013066075],[-71.10464975459657,42.32609293242071],[-71.1046169733966,42.32609374516974],[-71.1045818473832,42.32609293831589],[-71.10457952514214,42.32609294923346],[-71.10450002648018,42.32609334284438],[-71.1044773017054,42.32609419645684],[-71.10444985988812,42.3260952282963],[-71.10441080807854,42.3260967027316],[-71.10439992502013,42.32609711452382],[-71.10434998586089,42.32609968673937],[-71.10430004240875,42.32610294494295],[-71.10425032517593,42.32610688992821],[-71.10420060486018,42.32611152090583],[-71.10416098360004,42.32611577790674],[-71.10416039235126,42.32611584069183],[-71.10415764247482,42.32611613642194],[-71.10415111076061,42.32611683866548],[-71.10410161236179,42.32612284241354],[-71.10405256565636,42.32613092017446],[-71.10404404472058,42.32613212062502],[-71.10404066403825,42.32613259603887],[-71.10391006307685,42.32615099554637],[-71.10374607463648,42.32617032505581],[-71.1035753602916,42.32619306125805],[-71.10340512217452,42.32621374077667],[-71.10337879911782,42.32621706296904],[-71.10323580412935,42.32623510924381],[-71.10322929635255,42.32623586013359],[-71.10305100025869,42.32625642398501],[-71.10287706386326,42.32627708995096],[-71.10283446803017,42.32628203484703],[-71.1026647341974,42.32630173909344],[-71.10251905672246,42.32631855710639],[-71.10245703231243,42.32632571782491],[-71.10229652641908,42.32634231501559],[-71.1022151113842,42.32635163584133],[-71.10203934152338,42.32636955009804],[-71.1018721550819,42.32638269164432],[-71.10174333351955,42.32639596587734],[-71.10162887597878,42.32640380155222],[-71.10152714365617,42.32640962315347],[-71.10141618805443,42.3264119825601],[-71.1014062776602,42.32641186356708],[-71.101405988927,42.32641185986498],[-71.10133598168554,42.32641101838725],[-71.1012530575952,42.32641044176068],[-71.10074525782117,42.32640691001333],[-71.10029895172735,42.32640769701429],[-71.10012005455216,42.32640679480798],[-71.10009176198727,42.32640648841124],[-71.10002692239257,42.32640578475415],[-71.09997296727448,42.32639985131566],[-71.09996894931895,42.32639940879231],[-71.09988141127516,42.3263901857935],[-71.09978184939422,42.32638160688876],[-71.09965892753425,42.32637569063929],[-71.09957763074321,42.32637142906344],[-71.09953277433908,42.32636907697589],[-71.09948873705535,42.32636574010152],[-71.09940941078011,42.32635972879736],[-71.09929319212098,42.32635383551704],[-71.09914139263216,42.32634575996781],[-71.09903303093178,42.32633989382403],[-71.09895791714291,42.32633963178034],[-71.09891908008434,42.32634086832255],[-71.09855417474223,42.32632000766903],[-71.09849562215256,42.32631666023205],[-71.09834680850976,42.32630650897929],[-71.09830556545586,42.3263043211883],[-71.09857784120592,42.32525897929157],[-71.09878239789658,42.32475566002532],[-71.09913909909575,42.32399400457575],[-71.0996359749788,42.32307364354375],[-71.09979221005571,42.32280898859067],[-71.09998304272263,42.32254069676705],[-71.10086520697452,42.32143262594178],[-71.1024210903008,42.31958967964209],[-71.10274838785651,42.31916917795212]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000033,"geom:area_square_m":305385.206055,"geom:bbox":"-71.1055488751,42.319169178,-71.0983055655,42.3264119826","geom:latitude":42.323543,"geom:longitude":-71.102272,"iso:country":"US","lbl:latitude":42.323627,"lbl:longitude":-71.102344,"lbl:max_zoom":18,"mps:latitude":42.323627,"mps:longitude":-71.102344,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:ceb_x_preferred":["Jackson Square"],"name:fra_x_preferred":["Jackson Square"],"reversegeo:latitude":42.323627,"reversegeo:longitude":-71.102344,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cbc0a944fa3c317a97361befe2527fa1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712121,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712121,"wof:lastmodified":1566624137,"wof:name":"Jackson Square","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780935],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712123.geojson b/fixtures/microhoods/1108712123.geojson new file mode 100644 index 0000000..fbdf9f7 --- /dev/null +++ b/fixtures/microhoods/1108712123.geojson @@ -0,0 +1 @@ +{"id":1108712123,"type":"Feature","bbox":[-71.06584165502765,42.310072,-71.058881,42.31598472817079],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06267279736292,42.31598472817079],[-71.061936,42.315638],[-71.06148,42.315406],[-71.060885,42.315126],[-71.060457,42.31493],[-71.06001995303662,42.31472861996077],[-71.060029,42.314664],[-71.060032,42.314575],[-71.060015,42.314418],[-71.05996,42.314264],[-71.059866,42.314169],[-71.059608,42.313978],[-71.059425,42.313853],[-71.059331,42.31375],[-71.059224,42.313525],[-71.059011,42.313055],[-71.058924,42.312903],[-71.058891,42.312816],[-71.058881,42.312771],[-71.058881,42.312651],[-71.058927,42.312474],[-71.059255,42.311409],[-71.059379,42.311039],[-71.059434,42.310882],[-71.059509,42.310681],[-71.059574,42.310551],[-71.059772,42.310237],[-71.05981,42.31019],[-71.059891,42.310147],[-71.059993,42.3101],[-71.060061,42.31008],[-71.060224,42.310072],[-71.060454,42.310097],[-71.060746,42.310205],[-71.06093,42.310288],[-71.061724,42.310556],[-71.062067,42.310721],[-71.062172,42.310776],[-71.062397,42.311003],[-71.062511,42.311104],[-71.062646,42.311225],[-71.062864,42.311419],[-71.063236,42.311772],[-71.063422,42.311911],[-71.06352,42.311978],[-71.063749,42.312136],[-71.06398797225474,42.31228501165691],[-71.064267,42.312459],[-71.064413,42.312569],[-71.064584,42.312689],[-71.064752,42.312833],[-71.064891,42.312997],[-71.064998,42.313168],[-71.065136,42.313448],[-71.065201,42.313558],[-71.065465,42.31402],[-71.06572,42.31447],[-71.065817,42.314693],[-71.06584165502765,42.31477718789936],[-71.06564159383407,42.31479067826032],[-71.06530695851653,42.31478070420881],[-71.06498582015831,42.3147542343283],[-71.06457535730408,42.314704510283],[-71.06407144247589,42.31462649329171],[-71.06373343829549,42.31456017866527],[-71.0633364271731,42.31448336941001],[-71.06267279736292,42.31598472817079]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":208687.790519,"geom:bbox":"-71.065841655,42.310072,-71.058881,42.3159847282","geom:latitude":42.313022,"geom:longitude":-71.061854,"iso:country":"US","lbl:latitude":42.312975,"lbl:longitude":-71.061564,"lbl:max_zoom":18,"mps:latitude":42.312975,"mps:longitude":-71.061564,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Jones Hill"],"reversegeo:latitude":42.312975,"reversegeo:longitude":-71.061564,"src:geom":"mz","wof:belongsto":[85814925,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9a8f22b5a6f23671926508c33c976d5b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712123,"neighbourhood_id":85814925,"region_id":85688645}],"wof:id":1108712123,"wof:lastmodified":1566624137,"wof:name":"Jones Hill","wof:parent_id":85814925,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780919],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712125.geojson b/fixtures/microhoods/1108712125.geojson new file mode 100644 index 0000000..8020a4b --- /dev/null +++ b/fixtures/microhoods/1108712125.geojson @@ -0,0 +1 @@ +{"id":1108712125,"type":"Feature","bbox":[-71.129555,42.2743354516166,-71.09961427566081,42.29588178584321],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.1149392118031,42.27771609512154],[-71.11615085201393,42.27869170234914],[-71.11633510381355,42.27883260106888],[-71.11650475102452,42.27894467306169],[-71.1166837017201,42.27903817646482],[-71.11688361638544,42.2791319531788],[-71.118911,42.279949],[-71.119712,42.280288],[-71.120675,42.280696],[-71.12107,42.280926],[-71.121321,42.281091],[-71.122013,42.281546],[-71.122433,42.281826],[-71.122965,42.282163],[-71.123542,42.282538],[-71.123762,42.282702],[-71.123976,42.282933],[-71.124041,42.282998],[-71.124162,42.283213],[-71.124247,42.28345],[-71.124368,42.283702],[-71.124495,42.283906],[-71.124761,42.284186],[-71.125127,42.28449],[-71.125686,42.284911],[-71.126098,42.285175],[-71.126656,42.285515],[-71.127265,42.285892],[-71.127436,42.286003],[-71.128128,42.286448],[-71.129555,42.287211],[-71.12915767820031,42.28739266274355],[-71.12886245762232,42.28757154883175],[-71.12606484635741,42.29000412094007],[-71.12604365832189,42.29002542600048],[-71.12600593789658,42.29006607780778],[-71.1259852703291,42.29008999812341],[-71.12597004189585,42.29010762503927],[-71.12593601058573,42.29015002551359],[-71.12590549781966,42.29019001022589],[-71.12581211157992,42.29030787049749],[-71.12572635144868,42.29041598727943],[-71.12564097818645,42.29052363439954],[-71.12555515519422,42.29063182467066],[-71.1253783049194,42.29085480345123],[-71.12528981763863,42.29096636725938],[-71.1252175579208,42.29105746519786],[-71.1251081129332,42.29119545542338],[-71.1250430534298,42.29127747651197],[-71.12497392048641,42.29136464748664],[-71.12491249284248,42.29144208072227],[-71.12485460795689,42.29151505910439],[-71.12479829767075,42.29158606283941],[-71.12473541449832,42.29166533503913],[-71.12468109902235,42.29173382349101],[-71.12464765991629,42.29177769479978],[-71.12464455699632,42.29178176662213],[-71.12455722279203,42.29189638833899],[-71.12448163644132,42.29199559203777],[-71.1244515487412,42.29204149991777],[-71.12441893476968,42.29208890213136],[-71.12439339053853,42.29212603071871],[-71.12439287559927,42.29212677808471],[-71.12438858601989,42.29213301214207],[-71.12429438910779,42.29225881094811],[-71.12422129392807,42.29235145763054],[-71.12419455769059,42.29238180751614],[-71.12410524380145,42.29248319609836],[-71.12400924604398,42.29259208384105],[-71.12397339330333,42.29263282661008],[-71.12391481430927,42.29268694095292],[-71.12379993319585,42.29278477944032],[-71.12368133291352,42.29288175304556],[-71.12358114170763,42.29296433793321],[-71.12348212106046,42.29304559142454],[-71.123355600817,42.29314979335128],[-71.12330195596243,42.29319701645486],[-71.12325170021465,42.2932458873924],[-71.12316124800196,42.29333697927115],[-71.1231328045613,42.29336551370411],[-71.12295191066478,42.29354699229995],[-71.1229518850553,42.29354701652398],[-71.12289779568918,42.29358549156567],[-71.12289533696716,42.29358724088036],[-71.12288642273981,42.29359358124092],[-71.12288528897577,42.29359438778917],[-71.1228763735231,42.29360072994551],[-71.12281101949077,42.29364721574837],[-71.12265239067621,42.29378426874826],[-71.12253343080924,42.29388704691318],[-71.12231127905967,42.29408020986541],[-71.12230649341127,42.29408437062312],[-71.12220254586401,42.2941678890667],[-71.12192506981961,42.29439316217573],[-71.12168231120816,42.29458677646189],[-71.1215778422941,42.29467264420308],[-71.12115229058176,42.29500305976423],[-71.12115201280817,42.29500327492018],[-71.12108799254155,42.29504872519091],[-71.12073744478845,42.29484326442248],[-71.12012154830447,42.29448227380521],[-71.11978272703053,42.29428367942744],[-71.11978222071491,42.29428338245346],[-71.11944241284671,42.29460425589393],[-71.11943072689589,42.29461529087191],[-71.11927451652598,42.2947645678931],[-71.1192347579302,42.29480256292581],[-71.11922674108156,42.2948102231153],[-71.11911461821788,42.29491638392285],[-71.11911082402617,42.29491997704454],[-71.11910822383673,42.29492243794633],[-71.11878233431968,42.29523099354284],[-71.11878133910923,42.29523193645558],[-71.11878034870601,42.2952328865867],[-71.11874980243292,42.29526217100764],[-71.11842816099474,42.2955705326176],[-71.11810349881749,42.29588178584321],[-71.11801013917302,42.29583161328299],[-71.11775582669665,42.29570521797087],[-71.11733468785374,42.29551203601117],[-71.11777394990814,42.29473045440426],[-71.1179168240552,42.29445002258841],[-71.11791738411725,42.29444884685878],[-71.11793282882708,42.29441641990386],[-71.11815322756105,42.29395370345299],[-71.11816416457683,42.29393074074068],[-71.1182781134814,42.29367209949574],[-71.11843378759292,42.29331874110119],[-71.11853577805837,42.2930872390178],[-71.11898428790089,42.29169609078937],[-71.11909314369579,42.29110402080005],[-71.11914035396993,42.29084723427226],[-71.1191800739973,42.29063739606367],[-71.11924813820004,42.29027781475509],[-71.11925057342722,42.29025374968887],[-71.11944624912424,42.2883198344958],[-71.11956370408625,42.28635268659605],[-71.1194161938425,42.28635763309561],[-71.11888836739558,42.28637532875689],[-71.11867901704542,42.28638234508961],[-71.11867887394139,42.28638235001637],[-71.11867875993664,42.28638235503976],[-71.11867778370264,42.28638238420999],[-71.11832333546205,42.28639298571025],[-71.11827925332146,42.2863943040249],[-71.1182666750512,42.28639468086695],[-71.11789021591424,42.28640593892967],[-71.11756136472694,42.28641106296075],[-71.11720090317569,42.28641667851772],[-71.11667313050643,42.2864276992518],[-71.11654444539204,42.28643038660599],[-71.11621651713568,42.28643723214537],[-71.1158646523153,42.28644457650163],[-71.1156159693642,42.28644976765384],[-71.11550113141891,42.28645216346088],[-71.1154253576215,42.28645396879814],[-71.11538300875739,42.28645476782889],[-71.11507709840177,42.28646054225215],[-71.11486978497928,42.28646445603152],[-71.11486102130604,42.28646461391229],[-71.11486097158918,42.2864646146459],[-71.11463006749278,42.28646877840741],[-71.11461821282185,42.2864689925224],[-71.11461359876886,42.28646907517574],[-71.11460720249876,42.28646933190993],[-71.11441231405921,42.28647713173608],[-71.11413569616307,42.28648052524401],[-71.1140819482159,42.28648118467085],[-71.11400465302597,42.28648213317511],[-71.11376413341748,42.28648594507961],[-71.11357567131928,42.28648893137485],[-71.11313438578057,42.28649859361094],[-71.11252020147485,42.2865120375386],[-71.11222901143897,42.28651841131812],[-71.11183567346784,42.28658192079732],[-71.11120421494272,42.28674189003156],[-71.11056026558246,42.28690501942923],[-71.11055858242781,42.28690544586786],[-71.11047006586456,42.28698884138655],[-71.11028885089655,42.28715904817965],[-71.11022580557461,42.28722104962144],[-71.11007737940446,42.28736701867099],[-71.11006214771628,42.28738199930359],[-71.11004678916252,42.2873971028448],[-71.11004376014746,42.28740008156361],[-71.10996420049935,42.28747832315753],[-71.10981848613628,42.28758798021239],[-71.10981232221754,42.28759261833639],[-71.10981173749742,42.28759305839835],[-71.1097745801499,42.28761643005234],[-71.10967188787632,42.28768102441578],[-71.10965664195575,42.28769061394041],[-71.10949822894815,42.28779025569814],[-71.10944652390404,42.28781710427324],[-71.10815333990116,42.28848857747546],[-71.10815280223375,42.28848885653548],[-71.10797550351765,42.28861861527682],[-71.10797459606067,42.28861928020371],[-71.10724654516928,42.28808342505227],[-71.10694171125483,42.2878590590303],[-71.10677147695634,42.287735181923],[-71.10670761587184,42.28768871210657],[-71.1066612496579,42.28765445443037],[-71.10645514694542,42.2874963659011],[-71.10643166248506,42.28747926524066],[-71.10637716157217,42.28743958226831],[-71.10591391142597,42.28710227506276],[-71.10559395256134,42.28686036693611],[-71.10542169467519,42.2867301283075],[-71.10541257522964,42.2867227676251],[-71.10475934069599,42.28619549102374],[-71.10395264191601,42.28554921535179],[-71.10350080796317,42.28518680381634],[-71.10341791367549,42.28512057141901],[-71.10328099552231,42.28501117286358],[-71.10322340534317,42.28496515846999],[-71.10319684218263,42.28494393391804],[-71.10303219392402,42.28481237735713],[-71.10268676848762,42.28453637661384],[-71.10236481303043,42.28429090428311],[-71.10200531454169,42.28401680368057],[-71.10162200334157,42.28372454396824],[-71.10047660700815,42.2828925817339],[-71.10033607467001,42.28279050268202],[-71.09981681446895,42.28243195877795],[-71.09961427566081,42.28231942903949],[-71.09966128705297,42.28227897572859],[-71.09966155280526,42.28227874707751],[-71.09966419813544,42.28227647132828],[-71.09985486404375,42.28211240005145],[-71.10000018769753,42.28203195456627],[-71.10017642054838,42.28195779076877],[-71.10047428888875,42.28186003786038],[-71.10093513450867,42.28174914880479],[-71.10094384673809,42.28174705255697],[-71.10103088643959,42.28172610866238],[-71.10103638455286,42.28172478540759],[-71.10105855314696,42.28172097759715],[-71.10130498789228,42.28167864480319],[-71.10198760608482,42.28156138078974],[-71.10199152759205,42.28156070744679],[-71.10302717913164,42.28138863234141],[-71.10303102038041,42.28138799379748],[-71.10386244609258,42.28124679771803],[-71.10392104308706,42.2812257607436],[-71.1039549572219,42.28121358494678],[-71.10412880978596,42.28115116934807],[-71.10414777419557,42.28114436089341],[-71.10415202955132,42.28114283333953],[-71.10541078812352,42.28047279431262],[-71.10562127157193,42.28038625983172],[-71.10571602157187,42.28034730579649],[-71.10577154517509,42.28032447833044],[-71.10593447239214,42.28022367229539],[-71.10595679453515,42.28020986080105],[-71.10597704735686,42.28019055755762],[-71.10656713611974,42.27962813888786],[-71.10710970236175,42.27913605285369],[-71.10725839452485,42.27899386692283],[-71.10736864590118,42.2788462196042],[-71.10737322782909,42.27884008349496],[-71.10737751771168,42.2788311878582],[-71.10745497853924,42.2786705657286],[-71.10745980283752,42.27864487945886],[-71.10746039336843,42.2786417304157],[-71.10752957432288,42.27827336826059],[-71.10753271613771,42.27825663335458],[-71.10757239711845,42.27809775736362],[-71.10761858962941,42.27791280650608],[-71.10763526174667,42.27784605014696],[-71.10763633799257,42.2778427722177],[-71.1076534750205,42.27779059425551],[-71.10774801307075,42.27750273363353],[-71.10778535260599,42.27740269968837],[-71.10814523162371,42.27653403948965],[-71.1083092869795,42.27616057425171],[-71.1083387163986,42.27609357948229],[-71.10837162278163,42.27600871562917],[-71.10841921250004,42.27588598643811],[-71.10842027482052,42.27588259591506],[-71.10844479232004,42.27580433507404],[-71.10845655700807,42.27576677849844],[-71.10850334597212,42.27561742095531],[-71.10858129903772,42.27536858430037],[-71.10878252188444,42.27502007896211],[-71.10884274974046,42.27492750328723],[-71.1090746602038,42.27457103610477],[-71.10907549092138,42.27456941388377],[-71.10911603415917,42.27449022519863],[-71.10919550881803,42.2743354516166],[-71.10919564732019,42.27433559883743],[-71.10921586221824,42.27435695620781],[-71.10925807458712,42.27440155503609],[-71.10926158546684,42.27440526362852],[-71.10935967442249,42.27449279803358],[-71.10953737039702,42.27461897127183],[-71.10965649506885,42.27468492012185],[-71.10967154016616,42.27469324864793],[-71.10976731756574,42.27474627249691],[-71.11037300236057,42.27506269421322],[-71.11065847789715,42.2752246780304],[-71.11071858417033,42.27525878360655],[-71.11126585096027,42.27556930721299],[-71.11408701824747,42.2770242302566],[-71.11423513667074,42.2771496268986],[-71.11423665273819,42.27715091042111],[-71.11423680953038,42.27715104329229],[-71.11423713035018,42.27715131536107],[-71.1143151988753,42.27721740680859],[-71.11460124535544,42.27744600593864],[-71.11460137565383,42.27744610991069],[-71.11460902459758,42.27745222252566],[-71.11462212552338,42.27746269289427],[-71.11462635295801,42.27746607061093],[-71.1149392118031,42.27771609512154]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000235,"geom:area_square_m":2145215.717508,"geom:bbox":"-71.129555,42.2743354516,-71.0996142757,42.2958817858","geom:latitude":42.284358,"geom:longitude":-71.115161,"iso:country":"US","lbl:latitude":42.281817,"lbl:longitude":-71.111223,"lbl:max_zoom":18,"mps:latitude":42.281817,"mps:longitude":-71.111223,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.281817,"reversegeo:longitude":-71.111223,"src:geom":"mz","wof:belongsto":[85846101,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b05456141bec6578271bcaba2cb9e055","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712125,"neighbourhood_id":85846101,"region_id":85688645}],"wof:id":1108712125,"wof:lastmodified":1566624137,"wof:name":"Lower Washington - Mount Hope","wof:parent_id":85846101,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780941],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712127.geojson b/fixtures/microhoods/1108712127.geojson new file mode 100644 index 0000000..e24df0f --- /dev/null +++ b/fixtures/microhoods/1108712127.geojson @@ -0,0 +1 @@ +{"id":1108712127,"type":"Feature","bbox":[-71.1062114800433,42.30596214795024,-71.09786190420601,42.31247079909109],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.10156137639785,42.31247079909109],[-71.09786190420601,42.31106225916723],[-71.09786274493426,42.31077694603191],[-71.09786370135942,42.31045222094395],[-71.09790757784639,42.31019475152687],[-71.0979078575738,42.31019310586071],[-71.0979248121181,42.31009361743894],[-71.09793450580356,42.31003673541859],[-71.09794437136638,42.30999862521091],[-71.09794514725665,42.30999563173384],[-71.0979527049625,42.30996643630391],[-71.09797650828578,42.30987449112016],[-71.0979833024626,42.30984824869477],[-71.09801007110705,42.30979913114883],[-71.09802211159266,42.30977703673991],[-71.09805326659861,42.30973836087816],[-71.09810653920796,42.3096722285472],[-71.09812002911323,42.30965548246545],[-71.09812295840226,42.30965184650264],[-71.0981263284589,42.30964890080916],[-71.09813446636048,42.30964178720384],[-71.09813991113865,42.30963702836273],[-71.09818060425182,42.309601460338],[-71.09819804728932,42.30958621266114],[-71.09821168360173,42.30957429447844],[-71.09821520245971,42.30957121785908],[-71.09821887762081,42.30956854962115],[-71.0982243148185,42.3095646010177],[-71.09825192117115,42.30954455696627],[-71.09826914056272,42.30953205350536],[-71.09826988875292,42.3095315105403],[-71.09827050290004,42.30953106523917],[-71.09828319657454,42.30952184824795],[-71.0982894855315,42.30951728141334],[-71.0983491315638,42.30948520161383],[-71.09835484824602,42.30948212636991],[-71.09836018397273,42.30947925686276],[-71.09847450768423,42.30941776808952],[-71.09879096133578,42.30930434285919],[-71.09892564702537,42.30925606817802],[-71.09898929270159,42.30923356947344],[-71.09898961120169,42.30923345714731],[-71.09939809854463,42.30908905521297],[-71.09939653381325,42.30908657123759],[-71.09936867971157,42.30904235052348],[-71.09934901486676,42.30901334728335],[-71.09933688236394,42.30899545477236],[-71.09923558784033,42.30884605810056],[-71.0992355181475,42.30884595432323],[-71.09925731904555,42.30882338065188],[-71.09934074612757,42.30873700165841],[-71.09943802554757,42.30863627962442],[-71.09949736768864,42.3085730190429],[-71.09968059772501,42.30833763082828],[-71.0996807224644,42.30833746920916],[-71.09983606545947,42.30813790548628],[-71.09986135710945,42.30807131296883],[-71.09988313957531,42.30801396149179],[-71.09993312190275,42.30791614705366],[-71.09993592631974,42.30791631166845],[-71.09993932969559,42.30791651077918],[-71.09994023903833,42.3079165643617],[-71.09994269183912,42.30791670884602],[-71.10013089945676,42.30792774976014],[-71.1002235311314,42.30787751581156],[-71.10024981874035,42.30786325920901],[-71.10025073989041,42.30786105848329],[-71.1002507780695,42.3078609667857],[-71.100253280404,42.3078549948093],[-71.10025632951046,42.30784771750182],[-71.1002827420156,42.30778466606056],[-71.10029571920867,42.30775368512139],[-71.10031525761418,42.30770704290553],[-71.10035023837924,42.30762432452287],[-71.1003622649385,42.3075948257614],[-71.10039180635515,42.30752430549575],[-71.10042842487,42.30743688962369],[-71.10043382153704,42.30742374512707],[-71.10044274984467,42.30740200245675],[-71.10044952020246,42.30738624916965],[-71.100454190537,42.30737537900096],[-71.10048653523735,42.30729786233367],[-71.10048946501705,42.3072908420898],[-71.10048973842122,42.30729018582255],[-71.10049035048303,42.30728871956388],[-71.10041170251658,42.30726817678608],[-71.10039056867973,42.30726265738933],[-71.10038845082057,42.30726210354327],[-71.1006437390921,42.30670883216774],[-71.10071300153834,42.30655872121602],[-71.1007174549624,42.30655934259145],[-71.10071761492313,42.30655936475447],[-71.10071934176081,42.30655960573265],[-71.10112968003652,42.30661685651926],[-71.10113184606698,42.30660860650049],[-71.10113345910398,42.30660246126057],[-71.10114984407555,42.30654005992839],[-71.10115632918864,42.30654066403076],[-71.10115781894297,42.30654080334606],[-71.10147921038059,42.30657074327271],[-71.10148546878425,42.30656323938273],[-71.1014862790334,42.30656226897013],[-71.10179753631432,42.30618909393608],[-71.10196904760618,42.30598346128044],[-71.1019711801723,42.30598340744712],[-71.1019732181139,42.30598335688714],[-71.1019757133772,42.30598329530701],[-71.10262037281474,42.30596722791859],[-71.10271006447483,42.30596222539521],[-71.10271005889648,42.30596214795024],[-71.1062114800433,42.30775163965528],[-71.104558,42.309435],[-71.10457350848827,42.30944074561463],[-71.10156137639785,42.31247079909109]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000029,"geom:area_square_m":267940.714127,"geom:bbox":"-71.10621148,42.305962148,-71.0978619042,42.3124707991","geom:latitude":42.30915,"geom:longitude":-71.101811,"iso:country":"US","lbl:latitude":42.309127,"lbl:longitude":-71.101873,"lbl:max_zoom":18,"mps:latitude":42.309127,"mps:longitude":-71.101873,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Parkside"],"name:deu_x_preferred":["Parkside"],"name:swe_x_preferred":["Parkside"],"reversegeo:latitude":42.309127,"reversegeo:longitude":-71.101873,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ed418d90baa35670e682fd868b8ec4b2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712127,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712127,"wof:lastmodified":1566624137,"wof:name":"Parkside","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780937],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712129.geojson b/fixtures/microhoods/1108712129.geojson new file mode 100644 index 0000000..9d88dce --- /dev/null +++ b/fixtures/microhoods/1108712129.geojson @@ -0,0 +1 @@ +{"id":1108712129,"type":"Feature","bbox":[-71.123918,42.30874701889712,-71.11171384103311,42.32159491749654],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.120214,42.321477],[-71.119813,42.321475],[-71.119618,42.321455],[-71.119193,42.321385],[-71.118506,42.321257],[-71.117824,42.321134],[-71.117491,42.321088],[-71.117117,42.321055],[-71.11657,42.321021],[-71.116321,42.321012],[-71.11599,42.321031],[-71.115814,42.321048],[-71.115599,42.321066],[-71.115426,42.321095],[-71.115194,42.321133],[-71.114946,42.321173],[-71.114501,42.321235],[-71.114154,42.321283],[-71.113881,42.321321],[-71.113213,42.321425],[-71.112815,42.321496],[-71.112312,42.321567],[-71.11213492330762,42.32159491749654],[-71.11210811813163,42.32141567077141],[-71.11178895780415,42.32002793385811],[-71.11172751362768,42.31975059237842],[-71.11171384103311,42.31962867352269],[-71.1117325655504,42.31950503760875],[-71.111934,42.319106],[-71.112146,42.318805],[-71.112387,42.318464],[-71.112764,42.317917],[-71.113084,42.317484],[-71.113242,42.317252],[-71.113354,42.317087],[-71.113624,42.316697],[-71.113762,42.31648],[-71.113838,42.316378],[-71.113945,42.316206],[-71.114017,42.316022],[-71.114058,42.315879],[-71.114089,42.315707],[-71.114091,42.315499],[-71.114092,42.31532],[-71.114092,42.315213],[-71.114116,42.314638],[-71.114113,42.314136],[-71.114095,42.313669],[-71.114093,42.313444],[-71.1141,42.313229],[-71.114101,42.313027],[-71.114149,42.312522],[-71.114232,42.312157],[-71.114495,42.31123],[-71.114572,42.310982],[-71.114654,42.31075],[-71.114762,42.310548],[-71.114853,42.310394],[-71.11536,42.30986],[-71.115656,42.309667],[-71.116213,42.309313],[-71.116419,42.309212],[-71.117164,42.308985],[-71.117314,42.308954],[-71.117999,42.308805],[-71.118254,42.308767],[-71.118393,42.308751],[-71.1185088299259,42.30874701889712],[-71.1186748771687,42.30875601889713],[-71.11888494330863,42.30877402834568],[-71.11914194330863,42.30879609448561],[-71.11955194330864,42.30883418897121],[-71.12006132125107,42.30889230235395],[-71.12045224566258,42.30895724566258],[-71.120727,42.309009],[-71.121149,42.309129],[-71.1214513103725,42.30923045578085],[-71.1217210839825,42.30935065439346],[-71.12191521330203,42.3094768207191],[-71.122093,42.309613],[-71.122141,42.309751],[-71.122285,42.310028],[-71.122435,42.310376],[-71.1226,42.310884],[-71.122738,42.311461],[-71.122788,42.311978],[-71.122787,42.31214],[-71.122776,42.312325],[-71.122706,42.312603],[-71.12246,42.313048],[-71.122244,42.313334],[-71.122077,42.31355],[-71.122114,42.313642],[-71.122166,42.313725],[-71.12223,42.313789],[-71.12240024195101,42.31393034447731],[-71.122709,42.314138],[-71.123059,42.314433],[-71.123197,42.31462],[-71.123265,42.314787],[-71.12328,42.31489],[-71.123285,42.314982],[-71.123207,42.315494],[-71.123185,42.315685],[-71.123189,42.315836],[-71.1232,42.315927],[-71.123231,42.316022],[-71.123362,42.316325],[-71.123452,42.316569],[-71.12352,42.316792],[-71.123575,42.317439],[-71.123595,42.317574],[-71.123642,42.317801],[-71.123699,42.317983],[-71.123815,42.318258],[-71.123889,42.3185],[-71.123909,42.318679],[-71.123918,42.318957],[-71.123817,42.319113],[-71.123726,42.319236],[-71.12357,42.319426],[-71.12327,42.319634],[-71.122869,42.319822],[-71.122564,42.320006],[-71.122363,42.320141],[-71.122199,42.320293],[-71.122041,42.32045],[-71.121948,42.320575],[-71.121839,42.320675],[-71.121687,42.32078],[-71.121551,42.320856],[-71.121404,42.320973],[-71.121257,42.321121],[-71.121132,42.321234],[-71.120974,42.321326],[-71.12074,42.321414],[-71.120518,42.321466],[-71.120214,42.321477]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000113,"geom:area_square_m":1032217.007221,"geom:bbox":"-71.123918,42.3087470189,-71.111713841,42.3215949175","geom:latitude":42.315642,"geom:longitude":-71.118203,"iso:country":"US","lbl:latitude":42.315688,"lbl:longitude":-71.118319,"lbl:max_zoom":18,"mps:latitude":42.315688,"mps:longitude":-71.118319,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.315688,"reversegeo:longitude":-71.118319,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bb16cd9acb697cf16cecde655b18de60","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712129,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712129,"wof:lastmodified":1566624137,"wof:name":"Pondside","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780939],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712131.geojson b/fixtures/microhoods/1108712131.geojson new file mode 100644 index 0000000..20dfa19 --- /dev/null +++ b/fixtures/microhoods/1108712131.geojson @@ -0,0 +1 @@ +{"id":1108712131,"type":"Feature","bbox":[-71.11193653020183,42.30105438722767,-71.10268605585173,42.30775163965528],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11193653020183,42.30185762110305],[-71.1062114800433,42.30775163965528],[-71.10271005889648,42.30596214795024],[-71.10268985143439,42.30567935373804],[-71.10268605585173,42.30554762333441],[-71.10268645109043,42.30552155565562],[-71.10268775667139,42.30550948626568],[-71.10269381735638,42.30545343302454],[-71.10270437064821,42.30539058545722],[-71.10271194057152,42.30536248450127],[-71.10271550749269,42.3053514825806],[-71.10271971631182,42.30533850042152],[-71.10273707617813,42.30529671276005],[-71.10274738847815,42.30527342347512],[-71.10275101683426,42.30526538644892],[-71.10276285260987,42.30523917555852],[-71.10276555279314,42.30523370477535],[-71.10277690142502,42.30521071076691],[-71.10277752425993,42.3052094489007],[-71.10277806355484,42.30520835690216],[-71.1027932713941,42.30517822426047],[-71.10280496131051,42.30515631178717],[-71.1028171090031,42.30513508692249],[-71.10282995351582,42.30511317843744],[-71.10283883197845,42.30509997203401],[-71.10284697953483,42.30508785426564],[-71.10285910138211,42.30507074547238],[-71.1028849617551,42.30503653346918],[-71.10291176664,42.30500391195051],[-71.10292430988062,42.30498864661755],[-71.10293664921835,42.30497359665024],[-71.10293760805018,42.30497252140571],[-71.10294944754743,42.30495923429517],[-71.10296201422112,42.30494487113819],[-71.10297434923962,42.30493050717942],[-71.10302068927918,42.3048715995882],[-71.10306921873655,42.30479774557978],[-71.10308137917347,42.30477446264737],[-71.10309567119526,42.30474295474514],[-71.10310575162447,42.30471966462525],[-71.10311187202001,42.30470451393154],[-71.10312333669455,42.30467612929931],[-71.10312429268441,42.30467376481563],[-71.10313395830794,42.30464292695652],[-71.10317210758285,42.30445282829003],[-71.10317548657628,42.30443598996793],[-71.1031922125225,42.30435263775026],[-71.10319241532889,42.30435162831542],[-71.10320068312961,42.30431042768439],[-71.10323184845527,42.30403517711441],[-71.10327217719497,42.30391968648203],[-71.10327232292342,42.30391926924653],[-71.10327673802597,42.30390662448795],[-71.10328496760671,42.30389202394529],[-71.10328511477351,42.30389176426706],[-71.1033454298028,42.30378474869865],[-71.10337154742199,42.30375097141164],[-71.10339612680667,42.30371918477181],[-71.103401225609,42.30371258967545],[-71.1034246873911,42.30368224775282],[-71.10342839593288,42.30367745205588],[-71.1034855268561,42.3036078130338],[-71.10349035069812,42.30360193362247],[-71.10352427647135,42.30356058021974],[-71.10356069905512,42.30351618340797],[-71.10374822528316,42.30328760244412],[-71.10374895246744,42.30328671455616],[-71.10382808281575,42.30319368403213],[-71.10396971629774,42.30307045499521],[-71.10404877325814,42.30300167091615],[-71.10409283166379,42.30296628793009],[-71.10434842431336,42.30276101964605],[-71.1045109016189,42.30262457419553],[-71.10465939124599,42.30248691630117],[-71.10485540958835,42.30230519628183],[-71.1050538955135,42.30215311775126],[-71.10517261591349,42.30206215350675],[-71.10538018141227,42.30190311658726],[-71.10555660171312,42.30178219097572],[-71.10560204251591,42.30175104355938],[-71.10568049553011,42.30168598981823],[-71.10578463922059,42.30162048849065],[-71.10582240892964,42.30160278134245],[-71.10610713247965,42.30146729581615],[-71.10612122430187,42.30146059007939],[-71.10628636903067,42.30138200627557],[-71.10629986235284,42.30137558566156],[-71.10643647160931,42.30131057940768],[-71.10653519730022,42.30126152351266],[-71.10656848728837,42.30123843139459],[-71.10657760302792,42.3012321073957],[-71.10665845211575,42.30117602456841],[-71.10665929133782,42.30117544224688],[-71.10670185042254,42.30114591947334],[-71.10670398927626,42.30114443589905],[-71.10674317194935,42.30111725583523],[-71.10674711591628,42.30111451982004],[-71.10675957509386,42.30110587727542],[-71.1068171488403,42.30105438722767],[-71.10752916570429,42.30140726721655],[-71.10780360911563,42.30151202276382],[-71.10808098755084,42.30159841378413],[-71.10852426814232,42.30169959147688],[-71.10890598826283,42.30174335373668],[-71.11193653020183,42.30185762110305]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":294819.357668,"geom:bbox":"-71.1119365302,42.3010543872,-71.1026860559,42.3077516397","geom:latitude":42.304131,"geom:longitude":-71.106675,"iso:country":"US","lbl:latitude":42.304069,"lbl:longitude":-71.106605,"lbl:max_zoom":18,"mps:latitude":42.304069,"mps:longitude":-71.106605,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Stony Brook"],"name:deu_x_preferred":["Stony Brook"],"name:eng_x_variant":["Stonybrook"],"name:fra_x_preferred":["Stony Brook"],"name:kor_x_preferred":["스토니브룩"],"name:pol_x_preferred":["Stony Brook"],"name:rus_x_preferred":["Стоуни-Брук"],"name:swe_x_preferred":["Stony Brook"],"name:ukr_x_preferred":["Стоуні-Брук"],"reversegeo:latitude":42.304069,"reversegeo:longitude":-71.106605,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"227a0c259f22592f6047763939778e0b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712131,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712131,"wof:lastmodified":1566624141,"wof:name":"Stony Brook","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780943,420524041],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712135.geojson b/fixtures/microhoods/1108712135.geojson new file mode 100644 index 0000000..bfa7077 --- /dev/null +++ b/fixtures/microhoods/1108712135.geojson @@ -0,0 +1 @@ +{"id":1108712135,"type":"Feature","bbox":[-71.11564941946904,42.30733665948253,-71.106998,42.31328562374546],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.1090518925667,42.30733665948253],[-71.10955699890695,42.30758323663451],[-71.10991233930234,42.30774993334261],[-71.11007190168584,42.30780948875685],[-71.11021543443601,42.30785704212821],[-71.11038711689815,42.30789455495194],[-71.11063971425008,42.30793358563955],[-71.11081166087772,42.30794680749892],[-71.11102706949656,42.3079585136635],[-71.111309113651,42.30796055133423],[-71.11160893256167,42.30794866747753],[-71.11330495209052,42.30780761947481],[-71.11554513182737,42.30761556798551],[-71.11560718854736,42.30831072147399],[-71.11564941946904,42.30923690997913],[-71.11564269944249,42.30937723700997],[-71.1156271488516,42.3095074863221],[-71.11560019826781,42.30961983330797],[-71.11555075841358,42.30973562035872],[-71.11536,42.30986],[-71.114853,42.310394],[-71.114762,42.310548],[-71.114654,42.31075],[-71.114572,42.310982],[-71.114495,42.31123],[-71.114232,42.312157],[-71.114149,42.312522],[-71.114101,42.313027],[-71.1141,42.313229],[-71.11409815643619,42.31328562374546],[-71.11333643784492,42.31307116942777],[-71.1126056486664,42.31285975471513],[-71.1119903628528,42.31263951944539],[-71.11086483607191,42.31216790594537],[-71.10882490226396,42.31128560599894],[-71.106998,42.310463],[-71.1074421284198,42.30976684287054],[-71.1090518925667,42.30733665948253]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":292410.324014,"geom:bbox":"-71.1156494195,42.3073366595,-71.106998,42.3132856237","geom:latitude":42.309975,"geom:longitude":-71.111724,"iso:country":"US","lbl:latitude":42.31029,"lbl:longitude":-71.112073,"lbl:max_zoom":18,"mps:latitude":42.31029,"mps:longitude":-71.112073,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.31029,"reversegeo:longitude":-71.112073,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2fb3074cf349a65f3f57f6ede4466436","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712135,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712135,"wof:lastmodified":1566624141,"wof:name":"Sumner Hill","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780945],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712141.geojson b/fixtures/microhoods/1108712141.geojson new file mode 100644 index 0000000..e6a5411 --- /dev/null +++ b/fixtures/microhoods/1108712141.geojson @@ -0,0 +1 @@ +{"id":1108712141,"type":"Feature","bbox":[-71.11602303074065,42.32392831476427,-71.11075476405443,42.33006782317904],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.11231616792307,42.32392831476427],[-71.11239795976678,42.32395022803902],[-71.11250164985267,42.32397164590663],[-71.11291443944184,42.32402579351758],[-71.11346704485958,42.32407501857801],[-71.11398636079433,42.324139011099],[-71.1141315966551,42.32416406530788],[-71.11426599245151,42.32419808106059],[-71.11439748590934,42.32424607536355],[-71.11451899252228,42.32429776149474],[-71.1146253263049,42.3243567210577],[-71.11472538731685,42.32441959292262],[-71.11479346079487,42.32448700366064],[-71.11483191366244,42.3245426547312],[-71.11496507159443,42.32482323475466],[-71.115138176906,42.32511858079592],[-71.11532459801079,42.32539915825084],[-71.11539700263631,42.32548591550006],[-71.11547772963257,42.32556651964568],[-71.11566415073735,42.32571911347058],[-71.1157656836605,42.32579048787452],[-71.11587720342852,42.32584709510284],[-71.11594632388585,42.3258707139678],[-71.11594526705689,42.32595434693244],[-71.11602303074065,42.32613489871459],[-71.11601469736415,42.32624601037286],[-71.11596470900001,42.32637932996393],[-71.11581131423016,42.32656117461673],[-71.11576134075223,42.32662757801461],[-71.11568078841401,42.3267118931369],[-71.11556308581662,42.3267801856698],[-71.11544551586765,42.32682560565841],[-71.11534645395521,42.32687565645429],[-71.11527203544385,42.3269349573415],[-71.11504003510288,42.32730813117583],[-71.11403909759971,42.32946752231964],[-71.11395640147023,42.32948559801423],[-71.11394852014908,42.3294873208164],[-71.1124976051526,42.32980444334108],[-71.11249752375112,42.32980446107255],[-71.11227355115437,42.32985333092729],[-71.11220085111,42.32986895066513],[-71.1121605954793,42.32987624767688],[-71.11204348834936,42.3298974766593],[-71.11203818981299,42.32989885063085],[-71.11172439379891,42.3299698569473],[-71.11170745767738,42.32997368900907],[-71.11170090387375,42.32997517216195],[-71.11153029591213,42.3300137774137],[-71.11134005058643,42.33005682559001],[-71.11128668136637,42.33006782317904],[-71.11118438307041,42.32982032863331],[-71.11110087868455,42.32963800229611],[-71.11105739664211,42.32954306056815],[-71.1109805110948,42.32938391837973],[-71.11086087979744,42.32914659848083],[-71.1108016455089,42.32897051620666],[-71.11076912994768,42.3288127859725],[-71.11075476405443,42.32866399282177],[-71.11076602540447,42.32850283859934],[-71.11086800246781,42.32798708276525],[-71.11097203516263,42.3276284324143],[-71.1111195967783,42.32724280025383],[-71.11129272006596,42.32685434363992],[-71.1114793731139,42.32650848765859],[-71.11177401756547,42.32602187363135],[-71.1120405426227,42.32557765307482],[-71.11215204073771,42.32533965485866],[-71.11223874475684,42.32506971073766],[-71.11230604480318,42.3247789993888],[-71.1123322373155,42.32449046735783],[-71.11231616792307,42.32392831476427]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":182823.9019,"geom:bbox":"-71.1160230307,42.3239283148,-71.1107547641,42.3300678232","geom:latitude":42.327028,"geom:longitude":-71.113183,"iso:country":"US","lbl:latitude":42.326999,"lbl:longitude":-71.113234,"lbl:max_zoom":18,"mps:latitude":42.326999,"mps:longitude":-71.113234,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.326999,"reversegeo:longitude":-71.113234,"src:geom":"mz","wof:belongsto":[85827307,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4d040f62ca8770610494cace7ecbc90d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712141,"neighbourhood_id":85827307,"region_id":85688645}],"wof:id":1108712141,"wof:lastmodified":1607094451,"wof:name":"South Huntington","wof:parent_id":85827307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780947],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712143.geojson b/fixtures/microhoods/1108712143.geojson new file mode 100644 index 0000000..70a35b9 --- /dev/null +++ b/fixtures/microhoods/1108712143.geojson @@ -0,0 +1 @@ +{"id":1108712143,"type":"Feature","bbox":[-71.10029895172735,42.3263043211883,-71.09530475585598,42.331782],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.09935040655068,42.3280150119304],[-71.09921,42.328242],[-71.099102,42.328427],[-71.099051,42.328537],[-71.098963,42.328964],[-71.098941,42.329133],[-71.098909,42.329282],[-71.098903,42.329311],[-71.098818,42.329576],[-71.09876,42.329707],[-71.098738,42.329756],[-71.098645,42.329893],[-71.098495,42.330067],[-71.098403,42.330156],[-71.098038,42.330452],[-71.097949,42.330501],[-71.097681,42.330689],[-71.097603,42.330772],[-71.097501,42.330979],[-71.097313,42.33147],[-71.097185,42.331782],[-71.09656138520046,42.33167404203017],[-71.09530475585598,42.33145649884013],[-71.09586727051013,42.33083227578553],[-71.09633969583109,42.3301640006808],[-71.09681242851839,42.32944609952846],[-71.0971845181975,42.32877746885577],[-71.0975906699287,42.32800970678584],[-71.09796321697722,42.32726663778192],[-71.09830556545586,42.3263043211883],[-71.09834680850976,42.32630650897929],[-71.09849562215256,42.32631666023205],[-71.09855417474223,42.32632000766903],[-71.09891908008434,42.32634086832255],[-71.09895791714291,42.32633963178034],[-71.09903303093178,42.32633989382403],[-71.09914139263216,42.32634575996781],[-71.09929319212098,42.32635383551704],[-71.09940941078011,42.32635972879736],[-71.09948873705535,42.32636574010152],[-71.09953277433908,42.32636907697589],[-71.09957763074321,42.32637142906344],[-71.09965892753425,42.32637569063929],[-71.09978184939422,42.32638160688876],[-71.09988141127516,42.3263901857935],[-71.09996894931895,42.32639940879231],[-71.09997296727448,42.32639985131566],[-71.10002692239257,42.32640578475415],[-71.10009176198727,42.32640648841124],[-71.10012005455216,42.32640679480798],[-71.10029895172735,42.32640769701429],[-71.1000358972569,42.3264938754109],[-71.0999183845644,42.32654610327423],[-71.09984657125233,42.32659833113755],[-71.09976822945734,42.32667667293255],[-71.09970294462818,42.32676154321047],[-71.09966377373067,42.32687252742004],[-71.09965724524776,42.32699004011253],[-71.099637659799,42.32713366673669],[-71.09958543193568,42.32730993577543],[-71.09950056165776,42.32759066054084],[-71.09935040655068,42.3280150119304]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":88253.869748,"geom:bbox":"-71.1002989517,42.3263043212,-71.0953047559,42.331782","geom:latitude":42.329071,"geom:longitude":-71.097855,"iso:country":"US","lbl:latitude":42.329117,"lbl:longitude":-71.098025,"lbl:max_zoom":18,"mps:latitude":42.329117,"mps:longitude":-71.098025,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":42.329117,"reversegeo:longitude":-71.098025,"src:geom":"mz","wof:belongsto":[85869493,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a135ad2189bdad07b78a14de47212ed5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712143,"neighbourhood_id":85869493,"region_id":85688645}],"wof:id":1108712143,"wof:lastmodified":1566624141,"wof:name":"Roxbury Crossing","wof:parent_id":85869493,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780925],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712147.geojson b/fixtures/microhoods/1108712147.geojson new file mode 100644 index 0000000..de0a63d --- /dev/null +++ b/fixtures/microhoods/1108712147.geojson @@ -0,0 +1 @@ +{"id":1108712147,"type":"Feature","bbox":[-71.14421973496268,42.3489266019919,-71.130802,42.35732816516867],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.14298889477548,42.35164100027234],[-71.1429923300279,42.35164699482882],[-71.14421973496268,42.35491739780006],[-71.1425868836508,42.3544908434837],[-71.14068809980257,42.35398962430501],[-71.13962103774794,42.35387487111727],[-71.13946563390168,42.35459333555876],[-71.1388326140879,42.35452905833689],[-71.13857907897199,42.35519562231369],[-71.1386603184871,42.35548098507713],[-71.13834738087614,42.3566366344704],[-71.13826098961685,42.35686247254089],[-71.13809368815014,42.35732816516867],[-71.13811373229755,42.35727237120662],[-71.138042,42.357257],[-71.135065,42.356866],[-71.132019,42.356449],[-71.131934,42.356444],[-71.131457,42.35639],[-71.130802,42.356336],[-71.13274023206428,42.35554744293078],[-71.13227838085832,42.35404926807871],[-71.13173158292224,42.35204446913674],[-71.13159268003717,42.35163972739264],[-71.13137663061715,42.35116458087831],[-71.13281965725992,42.35048252905698],[-71.13403490542119,42.34983920103564],[-71.13481983304303,42.34940476307929],[-71.13518904961835,42.34922334916875],[-71.13553834778826,42.34907508304782],[-71.13586733437397,42.34897153290462],[-71.136031315082,42.34893861920992],[-71.13619577645812,42.3489266019919],[-71.13634244419448,42.34892904049083],[-71.13647644289628,42.3489485029734],[-71.13733623714775,42.34928516050653],[-71.14003739293997,42.35033795386697],[-71.1402331117355,42.35258059188705],[-71.14298889477548,42.35164100027234]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":565441.907724,"geom:bbox":"-71.144219735,42.348926602,-71.130802,42.3573281652","geom:latitude":42.3531,"geom:longitude":-71.136702,"iso:country":"US","lbl:latitude":42.352995,"lbl:longitude":-71.135686,"lbl:max_zoom":18,"mps:latitude":42.352995,"mps:longitude":-71.135686,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Union Square"],"name:deu_x_preferred":["Union Square"],"name:eng_x_variant":["Union Sq"],"name:eus_x_preferred":["Union Square"],"name:fra_x_preferred":["Union Square"],"name:ita_x_preferred":["Union Square"],"name:jpn_x_preferred":["ユニオンスクエア"],"name:kor_x_preferred":["유니언 스퀘어"],"name:nld_x_preferred":["Union Square"],"name:rus_x_preferred":["Юнион-сквер"],"name:swe_x_preferred":["Union Square"],"reversegeo:latitude":42.352995,"reversegeo:longitude":-71.135686,"src:geom":"mz","wof:belongsto":[85802869,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7bf7df143f8f67a5637fc2075530b7f5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712147,"neighbourhood_id":85802869,"region_id":85688645}],"wof:id":1108712147,"wof:lastmodified":1566624141,"wof:name":"Union Square","wof:parent_id":85802869,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780949,1108713421],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712161.geojson b/fixtures/microhoods/1108712161.geojson new file mode 100644 index 0000000..017ce1d --- /dev/null +++ b/fixtures/microhoods/1108712161.geojson @@ -0,0 +1 @@ +{"id":1108712161,"type":"Feature","bbox":[-71.15443914775994,42.35259471393321,-71.14534552099792,42.358255],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.15443914775994,42.35563158762289],[-71.15408322912016,42.35671394179008],[-71.15369560396297,42.3577717572792],[-71.153248,42.357785],[-71.152449,42.357802],[-71.151947,42.357827],[-71.150921,42.35789],[-71.15047,42.357925],[-71.150132,42.35796],[-71.149685,42.35802],[-71.148851,42.358125],[-71.14798,42.358221],[-71.147951,42.358219],[-71.147855,42.358227],[-71.147686,42.35824],[-71.147288,42.358255],[-71.14647,42.358253],[-71.145945,42.358226],[-71.145432,42.358191],[-71.14534552099792,42.35818051309113],[-71.14604292122401,42.35575497924994],[-71.14615141960874,42.35537568711548],[-71.14630371337036,42.35538829940042],[-71.14803884160551,42.35259471393321],[-71.15092888689654,42.3533284905875],[-71.15078256218841,42.35357584534501],[-71.15145973362841,42.35377611944897],[-71.15174410223257,42.35387827617662],[-71.15203589182191,42.35400134763563],[-71.15132160779501,42.35527830741145],[-71.15147246929357,42.35532259202345],[-71.1516624142857,42.35537664819453],[-71.1517796156335,42.355401575639],[-71.15189142545064,42.35542081375807],[-71.15201155270209,42.35543738937127],[-71.15213453398178,42.35545146874259],[-71.15443914775994,42.35563158762289]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":294683.120077,"geom:bbox":"-71.1544391478,42.3525947139,-71.145345521,42.358255","geom:latitude":42.355918,"geom:longitude":-71.149531,"iso:country":"US","lbl:latitude":42.350777,"lbl:longitude":-71.168207,"lbl:max_zoom":18,"mps:latitude":42.355732,"mps:longitude":-71.14899,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Faneuil"],"reversegeo:latitude":42.355732,"reversegeo:longitude":-71.14899,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807537,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5423418df6d4b40117696adc90537e05","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712161,"neighbourhood_id":85807537,"region_id":85688645}],"wof:id":1108712161,"wof:lastmodified":1566624128,"wof:name":"Faneuil Square","wof:parent_id":85807537,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85818899],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712227.geojson b/fixtures/microhoods/1108712227.geojson new file mode 100644 index 0000000..11dacfc --- /dev/null +++ b/fixtures/microhoods/1108712227.geojson @@ -0,0 +1 @@ +{"id":1108712227,"type":"Feature","bbox":[-71.029459,42.34667,-70.986259,42.38035],"geometry":{"type":"Polygon","coordinates":[[[-71.026339,42.357134],[-71.026299,42.357203],[-71.026216,42.357343],[-71.025971,42.357841],[-71.025758,42.358341],[-71.025533,42.359007],[-71.02552,42.359043],[-71.025471,42.359224],[-71.025315,42.359977],[-71.024988,42.361807],[-71.02481,42.362849],[-71.024638,42.364054],[-71.024618,42.364432],[-71.024618,42.364784],[-71.024655,42.365185],[-71.024689,42.365433],[-71.024721,42.365621],[-71.024762,42.365839],[-71.024829,42.366091],[-71.024908,42.366333],[-71.025022,42.366675],[-71.02506,42.366775],[-71.025067,42.366791],[-71.025105,42.366889],[-71.025865,42.368843],[-71.025915,42.368971],[-71.025979,42.369135],[-71.02602,42.369232],[-71.026044,42.369316],[-71.026053,42.369347],[-71.026066,42.36939],[-71.026095,42.369568],[-71.026191,42.370069],[-71.026224,42.370199],[-71.026259,42.370332],[-71.026312,42.370486],[-71.026355,42.370577],[-71.026438,42.370755],[-71.026533,42.370903],[-71.026655,42.371049],[-71.026794,42.371193],[-71.028035,42.372324],[-71.02881,42.373054],[-71.028964,42.373211],[-71.029084,42.373361],[-71.029201,42.373526],[-71.029338,42.37381],[-71.02939,42.373992],[-71.029435,42.374152],[-71.029452,42.374327],[-71.029459,42.374534],[-71.029443,42.374838],[-71.029421,42.374933],[-71.029382,42.375073],[-71.0293,42.375281],[-71.029185,42.375484],[-71.029121,42.375583],[-71.029065,42.375672],[-71.02895,42.375807],[-71.028814,42.375951],[-71.02869,42.376059],[-71.028046,42.376727],[-71.027704,42.377062],[-71.026279,42.378705],[-71.025524,42.37835],[-71.024398,42.379072],[-71.023866,42.379362],[-71.023462,42.379538],[-71.023131,42.379665],[-71.022581,42.379858],[-71.021983,42.380009],[-71.021343,42.380107],[-71.020715,42.38016],[-71.01911,42.380268],[-71.01772,42.380314],[-71.016254,42.38035],[-71.016547,42.380244],[-71.019418,42.3777],[-71.019412,42.377692],[-71.019463,42.377652],[-71.019467,42.377649],[-71.019468,42.377624],[-71.0195,42.377603],[-71.019527,42.377588],[-71.019546,42.377593],[-71.019596,42.377559],[-71.019613,42.377509],[-71.019613,42.377445],[-71.019591,42.37739],[-71.019565,42.377332],[-71.01951,42.377225],[-71.019462,42.377133],[-71.019358,42.37704],[-71.019273,42.376945],[-71.019205,42.376892],[-71.019124,42.376812],[-71.01907,42.376746],[-71.018985,42.37668],[-71.018903,42.376624],[-71.018855,42.376626],[-71.018852,42.376578],[-71.018808,42.376535],[-71.018712,42.376469],[-71.018651,42.376434],[-71.018598,42.376427],[-71.018524,42.376381],[-71.018494,42.376368],[-71.018429,42.376368],[-71.018302,42.376312],[-71.018064,42.376219],[-71.017902,42.376158],[-71.01784,42.376124],[-71.017789,42.376091],[-71.017694,42.376046],[-71.017622,42.37603],[-71.017487,42.375998],[-71.01744,42.375988],[-71.017387,42.375957],[-71.017351,42.375933],[-71.017271,42.375879],[-71.017209,42.375825],[-71.017173,42.375797],[-71.017105,42.375747],[-71.017069,42.375747],[-71.017063,42.375774],[-71.01704,42.375781],[-71.016968,42.375752],[-71.016913,42.37572],[-71.016857,42.375705],[-71.016847,42.375674],[-71.016847,42.375647],[-71.016822,42.37562],[-71.016737,42.375596],[-71.016673,42.375562],[-71.016614,42.375549],[-71.016519,42.375549],[-71.016431,42.375548],[-71.016352,42.375544],[-71.016306,42.375534],[-71.016274,42.375509],[-71.016242,42.375477],[-71.016223,42.375442],[-71.01622,42.375388],[-71.016224,42.375342],[-71.016198,42.375305],[-71.016167,42.375291],[-71.016126,42.375293],[-71.016097,42.37531],[-71.016073,42.37533],[-71.016034,42.375327],[-71.016011,42.37531],[-71.015952,42.375307],[-71.015913,42.37529],[-71.015865,42.375263],[-71.015825,42.375236],[-71.015767,42.375202],[-71.015718,42.375173],[-71.015693,42.375141],[-71.01567,42.37511],[-71.015684,42.375063],[-71.015681,42.375025],[-71.015694,42.374995],[-71.015727,42.374967],[-71.015788,42.37496],[-71.015792,42.374938],[-71.015788,42.374903],[-71.015773,42.37488],[-71.01576,42.374827],[-71.015764,42.37479],[-71.01581,42.374708],[-71.015833,42.374684],[-71.015869,42.37466],[-71.015931,42.3746],[-71.016013,42.374544],[-71.016092,42.374518],[-71.016158,42.37448],[-71.0162,42.374456],[-71.016201,42.374393],[-71.016195,42.374344],[-71.016203,42.374273],[-71.013113,42.371974],[-71.012768,42.371949],[-71.012137,42.371729],[-71.012014,42.371574],[-71.011898,42.371565],[-71.011563,42.371707],[-71.011562,42.371741],[-71.011431,42.371779],[-71.011399,42.371808],[-71.011215,42.371879],[-71.011123,42.371966],[-71.010965,42.372058],[-71.010848,42.37211],[-71.010605,42.372294],[-71.010341,42.372535],[-71.010256,42.372655],[-71.010124,42.3728],[-71.010097,42.372887],[-71.010123,42.373018],[-71.010135,42.373096],[-71.010232,42.373183],[-71.010375,42.373281],[-71.01046,42.37333],[-71.010498,42.373393],[-71.010459,42.373513],[-71.010419,42.373562],[-71.010353,42.373687],[-71.010261,42.37376],[-71.010129,42.373851],[-71.010038,42.373914],[-71.009873,42.374049],[-71.009643,42.374237],[-71.009603,42.374284],[-71.009498,42.374332],[-71.009414,42.374409],[-71.009263,42.37453],[-71.009294,42.374574],[-71.009275,42.374637],[-71.00917,42.37469],[-71.009065,42.374728],[-71.009025,42.374791],[-71.009018,42.374844],[-71.00896,42.374858],[-71.008906,42.374902],[-71.008926,42.374979],[-71.008905,42.375027],[-71.008867,42.375066],[-71.008801,42.375075],[-71.008762,42.375085],[-71.008794,42.375153],[-71.008865,42.375202],[-71.008962,42.375275],[-71.00902,42.375414],[-71.009065,42.375517],[-71.008967,42.375614],[-71.008749,42.375715],[-71.008514,42.375771],[-71.008142,42.376458],[-71.007926,42.376894],[-71.007064,42.378439],[-71.006556,42.378834],[-71.00634,42.378876],[-71.006117,42.378866],[-71.005993,42.378952],[-71.005751,42.379033],[-71.005606,42.379202],[-71.005168,42.379244],[-71.004913,42.379146],[-71.004184,42.379028],[-71.003382,42.378608],[-71.000481,42.377753],[-71.000479,42.377753],[-71.000301,42.377805],[-71.000253,42.377792],[-71.000085,42.377769],[-71.006123,42.376052],[-71.006518,42.3751],[-71.01036,42.365039],[-71.000695,42.364641],[-71.000695,42.364625],[-71.000679,42.364624],[-71.000674,42.364607],[-71.000637,42.364588],[-71.00062,42.36458],[-71.001576,42.364616],[-71.001576,42.364614],[-71.001591,42.364205],[-71.001815,42.363983],[-71.001855,42.363751],[-71.001804,42.363635],[-71.001168,42.36303],[-71.000883,42.362836],[-71.000857,42.362758],[-71.000688,42.362748],[-71.000506,42.36265],[-71.000181,42.362465],[-70.999831,42.362192],[-70.999234,42.361705],[-70.998985,42.361714],[-70.998725,42.361703],[-70.998477,42.361566],[-70.998192,42.361274],[-70.998063,42.361002],[-70.997763,42.360952],[-70.997371,42.361038],[-70.997201,42.361182],[-70.996952,42.361162],[-70.996636,42.361509],[-70.996324,42.36145],[-70.996063,42.361314],[-70.995846,42.361338],[-70.994613,42.361462],[-70.994168,42.36145],[-70.993877,42.361672],[-70.993657,42.36187],[-70.99303,42.361506],[-70.991403,42.361499],[-70.989311,42.362093],[-70.988352,42.361972],[-70.987672,42.361627],[-70.987083,42.360949],[-70.986562,42.359573],[-70.986761,42.359373],[-70.986263,42.357965],[-70.986259,42.357934],[-70.986322,42.357641],[-70.98974,42.355136],[-70.991265,42.35399],[-70.991741,42.35383],[-70.992141,42.353859],[-70.992577,42.354041],[-70.993098,42.354115],[-70.994155,42.353949],[-70.994533,42.35404],[-70.995885,42.355037],[-70.996072,42.35516],[-70.996267,42.355288],[-70.996449,42.355434],[-70.996727,42.355635],[-70.996877,42.355716],[-70.997008,42.355727],[-70.997151,42.355717],[-70.997256,42.355681],[-70.997401,42.355631],[-70.997479,42.355564],[-70.997545,42.355526],[-70.997624,42.355439],[-70.99769,42.35541],[-70.997769,42.355245],[-70.997847,42.355227],[-70.997965,42.355208],[-70.998069,42.355228],[-70.998252,42.355229],[-70.998474,42.355248],[-70.998618,42.355317],[-70.99863,42.355385],[-70.99859,42.355433],[-70.998512,42.355452],[-70.998368,42.355422],[-70.998173,42.355402],[-70.998003,42.35545],[-70.997898,42.355527],[-70.997831,42.355623],[-70.997792,42.355701],[-70.997727,42.355759],[-70.997621,42.355826],[-70.99749,42.355874],[-70.99728,42.35595],[-70.997176,42.35598],[-70.997526,42.356311],[-70.997721,42.356408],[-70.99793,42.356525],[-70.998137,42.356642],[-70.998254,42.356692],[-70.998424,42.35676],[-70.998475,42.35676],[-70.998528,42.356731],[-70.998553,42.356741],[-70.998632,42.356819],[-70.999075,42.356956],[-70.999153,42.356957],[-70.999337,42.356939],[-70.999415,42.356939],[-70.999414,42.356968],[-70.999675,42.356969],[-70.999937,42.35697],[-71.000211,42.356971],[-71.000498,42.356962],[-71.000734,42.356935],[-71.000917,42.356887],[-71.001086,42.356869],[-71.001426,42.356821],[-71.001727,42.356765],[-71.002211,42.35667],[-71.002486,42.356603],[-71.002826,42.356537],[-71.002852,42.356557],[-71.002983,42.356557],[-71.003075,42.356528],[-71.003323,42.356433],[-71.003441,42.356394],[-71.003586,42.356308],[-71.003611,42.356308],[-71.003667,42.356361],[-71.003733,42.356304],[-71.003837,42.356227],[-71.004074,42.356063],[-71.004323,42.355919],[-71.004438,42.355837],[-71.004546,42.355804],[-71.004634,42.355731],[-71.004742,42.35578],[-71.004807,42.355751],[-71.004897,42.355665],[-71.004962,42.355635],[-71.005145,42.355608],[-71.005249,42.355589],[-71.005354,42.355589],[-71.005589,42.3556],[-71.005706,42.355639],[-71.005824,42.355659],[-71.005965,42.355693],[-71.006046,42.355612],[-71.006099,42.355544],[-71.006177,42.355496],[-71.006256,42.355418],[-71.006348,42.355341],[-71.006388,42.355283],[-71.006454,42.355148],[-71.006468,42.355041],[-71.006431,42.354916],[-71.006365,42.354857],[-71.00634,42.35475],[-71.006275,42.354674],[-71.006224,42.354556],[-71.006199,42.354479],[-71.006121,42.354401],[-71.005926,42.354274],[-71.005796,42.354167],[-71.005706,42.354089],[-71.005588,42.354069],[-71.005536,42.354079],[-71.005457,42.354068],[-71.005301,42.354038],[-71.005222,42.354086],[-71.005078,42.354144],[-71.004987,42.354154],[-71.004946,42.354309],[-71.004871,42.354464],[-71.004814,42.354521],[-71.004801,42.354559],[-71.004774,42.354627],[-71.004734,42.354704],[-71.004668,42.35478],[-71.00459,42.354801],[-71.004498,42.35484],[-71.004511,42.354878],[-71.004523,42.354946],[-71.004497,42.354985],[-71.004405,42.355052],[-71.004314,42.35508],[-71.00413,42.35507],[-71.003947,42.355091],[-71.00382,42.355115],[-71.00364,42.355114],[-71.00348,42.355057],[-71.003357,42.354945],[-71.003364,42.354866],[-71.003376,42.354773],[-71.00391,42.353577],[-71.004536,42.351939],[-71.004577,42.351666],[-71.004615,42.351058],[-71.00478,42.350358],[-71.004957,42.349278],[-71.005003,42.348925],[-71.004984,42.348088],[-71.004972,42.34786],[-71.00495,42.347736],[-71.004912,42.347586],[-71.004886,42.347484],[-71.004826,42.347363],[-71.004775,42.34727],[-71.004766,42.347125],[-71.004789,42.347071],[-71.004929,42.347114],[-71.005402,42.34706],[-71.00587,42.346972],[-71.007613,42.34667],[-71.007733,42.346699],[-71.011684,42.349237],[-71.014043,42.350752],[-71.014065,42.350868],[-71.015205,42.351607],[-71.015336,42.351578],[-71.016617,42.352403],[-71.016834,42.352525],[-71.020199,42.354154],[-71.024096,42.356054],[-71.026339,42.357134]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000629,"geom:area_square_m":5744288.281962,"geom:bbox":"-71.029459,42.34667,-70.986259,42.38035","geom:latitude":42.36315,"geom:longitude":-71.011893,"iso:country":"US","lbl:latitude":42.361221,"lbl:longitude":-71.016981,"lbl:max_zoom":18,"mps:latitude":42.361221,"mps:longitude":-71.016981,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.361221,"reversegeo:longitude":-71.016981,"src:geom":"mz","wof:belongsto":[102191575,85633793,102084423,404476573,85950361,85815995,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"299da8e446c4637a6ae3a1bff17bb0cf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712227,"neighbourhood_id":85815995,"region_id":85688645}],"wof:id":1108712227,"wof:lastmodified":1613773792,"wof:name":"Logan International Airport District","wof:parent_id":85815995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712229.geojson b/fixtures/microhoods/1108712229.geojson new file mode 100644 index 0000000..713b241 --- /dev/null +++ b/fixtures/microhoods/1108712229.geojson @@ -0,0 +1 @@ +{"id":1108712229,"type":"Feature","bbox":[-71.06944093713987,42.35236776058677,-71.06202072660278,42.35770937076999],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.0673977904493,42.35249987938674],[-71.06944093713987,42.35620089367765],[-71.06319973753065,42.35770937076999],[-71.06314787044408,42.35764676652128],[-71.06300693116646,42.35747665053499],[-71.06299347000638,42.35746040315675],[-71.06297812196742,42.35744441059106],[-71.06278201966992,42.35724007170064],[-71.06277738208696,42.35723577498804],[-71.06261404774376,42.35708446865343],[-71.06238442212128,42.35687174949179],[-71.06227014721166,42.35676588784067],[-71.06217862720932,42.35668110568433],[-71.06202518461802,42.35653895788864],[-71.06202293281126,42.35653687234192],[-71.06202072660278,42.35653451238008],[-71.06202545674884,42.35652910614234],[-71.0620259045563,42.35652859468203],[-71.06227065475552,42.35624887526865],[-71.06254197058048,42.35598293000096],[-71.0627987068482,42.35573127209457],[-71.06280081742676,42.35572920314726],[-71.06280148958109,42.35572854488904],[-71.06289600592709,42.35563589781834],[-71.06304196520286,42.35548980770958],[-71.06329067473752,42.35524087578478],[-71.06331444160692,42.35520865099132],[-71.06333148409587,42.35518554311488],[-71.06334062472338,42.35517314840499],[-71.06336245984319,42.35513167747987],[-71.06337120471107,42.3551150679028],[-71.06346715071703,42.35493283512165],[-71.06355722931055,42.35476950410595],[-71.0635613925567,42.35476195566054],[-71.06356456138523,42.35475621122549],[-71.06374073054172,42.35440866508002],[-71.06387420818977,42.35414533743935],[-71.06387895434439,42.35413597530499],[-71.06398597952311,42.35392483161365],[-71.06415379625349,42.35359375545936],[-71.06415387872245,42.35359358921801],[-71.06415752346284,42.35358340813325],[-71.06422862349753,42.35338462497697],[-71.06441664790599,42.35283550328322],[-71.06442990672957,42.3527967788533],[-71.06444909083719,42.35272425111403],[-71.06453942278833,42.35238273903965],[-71.06454251461074,42.35237104695814],[-71.06454338443713,42.35236776058677],[-71.06455159033074,42.35236834173846],[-71.06467664409973,42.35237719692552],[-71.06518063734977,42.35241288358048],[-71.06529642386013,42.35242108184976],[-71.06572042832785,42.35245110159738],[-71.06596680623205,42.35246674795073],[-71.06656311002077,42.35250298938782],[-71.06666110816971,42.35250884689684],[-71.06673256880222,42.35251094735575],[-71.06677360280933,42.35251215439394],[-71.06688353208219,42.35251538549715],[-71.06700902841091,42.35251907574087],[-71.0670347034308,42.35251780036869],[-71.06703642756224,42.3525177150305],[-71.06716964449666,42.35251114023615],[-71.06738354942404,42.35250058258233],[-71.0673977904493,42.35249987938674]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":213776.818557,"geom:bbox":"-71.0694409371,42.3523677606,-71.0620207266,42.3577093708","geom:latitude":42.355118,"geom:longitude":-71.065744,"iso:country":"US","lbl:latitude":42.354747,"lbl:longitude":-71.066043,"lbl:max_zoom":18,"mps:latitude":42.354747,"mps:longitude":-71.066043,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ast_x_preferred":["Boston Common"],"name:ceb_x_preferred":["Boston Common"],"name:deu_x_preferred":["Boston Common"],"name:fas_x_preferred":["کومون بوستون"],"name:fra_x_preferred":["Boston Common"],"name:gle_x_preferred":["Boston Common"],"name:heb_x_preferred":["בוסטון קומון"],"name:jpn_x_preferred":["ボストンコモン"],"name:kor_x_preferred":["보스턴 코먼"],"name:spa_x_preferred":["Boston Common"],"name:tam_x_preferred":["பாசுடன் காமன்"],"name:urd_x_preferred":["بوسٹن کامن"],"name:zho_x_preferred":["波士顿公园"],"reversegeo:latitude":42.354747,"reversegeo:longitude":-71.066043,"src:geom":"mz","wof:belongsto":[85805015,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"21829961ac67ed5fb35e46904586e78c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712229,"neighbourhood_id":85805015,"region_id":85688645}],"wof:id":1108712229,"wof:lastmodified":1566624140,"wof:name":"Boston Common","wof:parent_id":85805015,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712231.geojson b/fixtures/microhoods/1108712231.geojson new file mode 100644 index 0000000..3c8889e --- /dev/null +++ b/fixtures/microhoods/1108712231.geojson @@ -0,0 +1 @@ +{"id":1108712231,"type":"Feature","bbox":[-71.07251005330028,42.35189278450834,-71.0673977904493,42.35620089367765],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.06944093713987,42.35620089367765],[-71.0673977904493,42.35249987938674],[-71.06741661991838,42.35249894962226],[-71.06741698174042,42.35249893207724],[-71.06741812671034,42.35249887516455],[-71.0674996184977,42.35249485308788],[-71.06844461388684,42.35240211363135],[-71.06872631334436,42.35234235668425],[-71.06925985372274,42.35223526994189],[-71.06948406912709,42.35218480468224],[-71.07023440678995,42.35201591861578],[-71.07028917561286,42.35200083184306],[-71.07068139718203,42.35189278450834],[-71.07251005330028,42.35545909855627],[-71.06944093713987,42.35620089367765]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000013,"geom:area_square_m":115655.270875,"geom:bbox":"-71.0725100533,42.3518927845,-71.0673977904,42.3562008937","geom:latitude":42.35403,"geom:longitude":-71.070005,"iso:country":"US","lbl:latitude":42.354057,"lbl:longitude":-71.070044,"lbl:max_zoom":18,"mps:latitude":42.354057,"mps:longitude":-71.070044,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.354057,"reversegeo:longitude":-71.070044,"src:geom":"mz","wof:belongsto":[85805015,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b1048c28d7e5bd009697d4cfe4eebf6d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712231,"neighbourhood_id":85805015,"region_id":85688645}],"wof:id":1108712231,"wof:lastmodified":1566624137,"wof:name":"Public Garden","wof:parent_id":85805015,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712233.geojson b/fixtures/microhoods/1108712233.geojson new file mode 100644 index 0000000..a96e0d2 --- /dev/null +++ b/fixtures/microhoods/1108712233.geojson @@ -0,0 +1 @@ +{"id":1108712233,"type":"Feature","bbox":[-71.10684422725849,42.29197300022192,-71.0847307476966,42.31332463246549],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.09509938326192,42.31332463246549],[-71.09481051629473,42.31309347284211],[-71.094659,42.312993],[-71.094617,42.312972],[-71.094269,42.312843],[-71.094109,42.312768],[-71.093977,42.312694],[-71.093861,42.312586],[-71.093752,42.31245],[-71.093642,42.31226],[-71.093603,42.31215],[-71.093572,42.312061],[-71.093545,42.31186],[-71.093535,42.311789],[-71.093443,42.31137],[-71.093296,42.310988],[-71.093132,42.31072],[-71.092982,42.310555],[-71.092951,42.310521],[-71.092692,42.310269],[-71.092172,42.309859],[-71.091896,42.309665],[-71.091092,42.309053],[-71.090714,42.30878],[-71.08991,42.308171],[-71.089238,42.30764],[-71.089079,42.30753],[-71.088593,42.307233],[-71.088457,42.30716],[-71.088225,42.307043],[-71.087916,42.306902],[-71.08749231884913,42.30670095654737],[-71.08726,42.30657361597193],[-71.08642493253849,42.30617937736439],[-71.08577239009404,42.30582837512367],[-71.08525519719497,42.3055709636881],[-71.0847307476966,42.3053641442535],[-71.08474024872484,42.30528338743105],[-71.08474100014176,42.30527699982058],[-71.08484999970496,42.30470599965016],[-71.08492299939981,42.30442799965687],[-71.08500000042791,42.30417799987169],[-71.0852459998002,42.30344599995006],[-71.08536200037906,42.30309299959016],[-71.08555800057816,42.30249500004186],[-71.0857270001512,42.30195299955069],[-71.0859030003825,42.30138099988056],[-71.08591799941665,42.30133399974624],[-71.08616400028394,42.30062999955469],[-71.08625600036983,42.30038899997339],[-71.08640400014842,42.30000299965433],[-71.08654099984261,42.29956199979383],[-71.08669200006982,42.29910500044281],[-71.08679099982635,42.29877399999256],[-71.08693600046306,42.29835699974993],[-71.08699199971156,42.29814200038336],[-71.0874199995334,42.29804299972436],[-71.08859800008706,42.29774500009146],[-71.08963500053605,42.29749800008435],[-71.0900590004317,42.2973909995614],[-71.09048000024916,42.29725899983733],[-71.09092099966666,42.29710799961452],[-71.09118199977024,42.29700000033443],[-71.09135000004277,42.29692199994816],[-71.09143700056137,42.29686499981639],[-71.09156799972816,42.29674899997772],[-71.09171500004969,42.29656000014559],[-71.0922079995934,42.29587899981235],[-71.09232899940992,42.29575599977528],[-71.09257599970059,42.29543199967006],[-71.09317300056108,42.29461300020539],[-71.09322600008582,42.29454099992844],[-71.09427299983665,42.29330200032493],[-71.09435099943495,42.29321800036048],[-71.0944409994259,42.29312200027599],[-71.09458299990652,42.29297999998069],[-71.09483800007675,42.29272599996018],[-71.09537700027737,42.29223899994189],[-71.09575900014647,42.29197300022192],[-71.09578699948851,42.29204400017688],[-71.09603199996884,42.29255899972929],[-71.09619999970319,42.2929290001538],[-71.09632999969148,42.29315599979566],[-71.0964590377647,42.29322448707924],[-71.09661899981006,42.29346099976051],[-71.0968959996904,42.29373500001385],[-71.09740199978197,42.29421899981693],[-71.09885199952701,42.29564000003074],[-71.09916399957527,42.295940999801],[-71.10022100054013,42.29696199957327],[-71.10186399990427,42.29850999982065],[-71.10295200043319,42.29949400040339],[-71.10329099980598,42.29980599982666],[-71.10348499950528,42.29993200019401],[-71.10376199965637,42.30007800035257],[-71.10392999940392,42.3001349995645],[-71.10409100006773,42.30018199999417],[-71.10426999955581,42.3002290000688],[-71.10466099945542,42.30027099999757],[-71.10495997643355,42.30026852165306],[-71.10534900053646,42.30031299997191],[-71.10578200003397,42.3003750000365],[-71.10591399985792,42.30040400044557],[-71.10606400019249,42.30044500038892],[-71.10612400024101,42.30050100033739],[-71.10617700001418,42.3005900001393],[-71.10623628035074,42.3007032655982],[-71.10625844661111,42.30075058296513],[-71.1062587613923,42.30075125476682],[-71.10626228860075,42.30075878525321],[-71.10631025851056,42.3008143810531],[-71.10638029270467,42.30085374890209],[-71.10645917049888,42.30088336524688],[-71.10653815088727,42.30089667836948],[-71.10663913226429,42.30090354499281],[-71.10670816958302,42.30090917861646],[-71.10672034329494,42.30091017280205],[-71.10672254457731,42.30091035229372],[-71.10678834854484,42.30092362014304],[-71.10683214917483,42.3009433335321],[-71.10684422725849,42.30098199679674],[-71.10684105115622,42.30101712910854],[-71.1068171488403,42.30105438722767],[-71.10675957509386,42.30110587727542],[-71.10674711591628,42.30111451982004],[-71.10674317194935,42.30111725583523],[-71.10670398927626,42.30114443589905],[-71.10670185042254,42.30114591947334],[-71.10665929133782,42.30117544224688],[-71.10665845211575,42.30117602456841],[-71.10657760302792,42.3012321073957],[-71.10656848728837,42.30123843139459],[-71.10653519730022,42.30126152351266],[-71.10643647160931,42.30131057940768],[-71.10629986235284,42.30137558566156],[-71.10628636903067,42.30138200627557],[-71.10612122430187,42.30146059007939],[-71.10610713247965,42.30146729581615],[-71.10582240892964,42.30160278134245],[-71.10578463922059,42.30162048849065],[-71.10568049553011,42.30168598981823],[-71.10560204251591,42.30175104355938],[-71.10555660171312,42.30178219097572],[-71.10538018141227,42.30190311658726],[-71.10517261591349,42.30206215350675],[-71.1050538955135,42.30215311775126],[-71.10485540958835,42.30230519628183],[-71.10465939124599,42.30248691630117],[-71.1045109016189,42.30262457419553],[-71.10434842431336,42.30276101964605],[-71.10409283166379,42.30296628793009],[-71.10404877325814,42.30300167091615],[-71.10396971629774,42.30307045499521],[-71.10382808281575,42.30319368403213],[-71.10374895246744,42.30328671455616],[-71.10374822528316,42.30328760244412],[-71.10356069905512,42.30351618340797],[-71.10352427647135,42.30356058021974],[-71.10349035069812,42.30360193362247],[-71.1034855268561,42.3036078130338],[-71.10342839593288,42.30367745205588],[-71.1034246873911,42.30368224775282],[-71.103401225609,42.30371258967545],[-71.10339612680667,42.30371918477181],[-71.10337154742199,42.30375097141164],[-71.1033454298028,42.30378474869865],[-71.10328511477351,42.30389176426706],[-71.10328496760671,42.30389202394529],[-71.10327673802597,42.30390662448795],[-71.10327232292342,42.30391926924653],[-71.10327217719497,42.30391968648203],[-71.10323184845527,42.30403517711441],[-71.10320068312961,42.30431042768439],[-71.10319241532889,42.30435162831542],[-71.1031922125225,42.30435263775026],[-71.10317548657628,42.30443598996793],[-71.10317210758285,42.30445282829003],[-71.10313395830794,42.30464292695652],[-71.10312429268441,42.30467376481563],[-71.10312333669455,42.30467612929931],[-71.10311187202001,42.30470451393154],[-71.10310575162447,42.30471966462525],[-71.10309567119526,42.30474295474514],[-71.10308137917347,42.30477446264737],[-71.10306921873655,42.30479774557978],[-71.10302068927918,42.3048715995882],[-71.10297434923962,42.30493050717942],[-71.10296201422112,42.30494487113819],[-71.10294944754743,42.30495923429517],[-71.10293760805018,42.30497252140571],[-71.10293664921835,42.30497359665024],[-71.10292430988062,42.30498864661755],[-71.10291176664,42.30500391195051],[-71.1028849617551,42.30503653346918],[-71.10285910138211,42.30507074547238],[-71.10284697953483,42.30508785426564],[-71.10283883197845,42.30509997203401],[-71.10282995351582,42.30511317843744],[-71.1028171090031,42.30513508692249],[-71.10280496131051,42.30515631178717],[-71.1027932713941,42.30517822426047],[-71.10277806355484,42.30520835690216],[-71.10277752425993,42.3052094489007],[-71.10277690142502,42.30521071076691],[-71.10276555279314,42.30523370477535],[-71.10276285260987,42.30523917555852],[-71.10275101683426,42.30526538644892],[-71.10274738847815,42.30527342347512],[-71.10273707617813,42.30529671276005],[-71.10271971631182,42.30533850042152],[-71.10271550749269,42.3053514825806],[-71.10271194057152,42.30536248450127],[-71.10270437064821,42.30539058545722],[-71.10269381735638,42.30545343302454],[-71.10268775667139,42.30550948626568],[-71.10268645109043,42.30552155565562],[-71.10268605585173,42.30554762333441],[-71.10268985143439,42.30567935373804],[-71.10271005889648,42.30596214795024],[-71.10271006447483,42.30596222539521],[-71.10262037281474,42.30596722791859],[-71.1019757133772,42.30598329530701],[-71.1019732181139,42.30598335688714],[-71.1019711801723,42.30598340744712],[-71.10196904760618,42.30598346128044],[-71.10179753631432,42.30618909393608],[-71.1014862790334,42.30656226897013],[-71.10148546878425,42.30656323938273],[-71.10147921038059,42.30657074327271],[-71.10115781894297,42.30654080334606],[-71.10115632918864,42.30654066403076],[-71.10114984407555,42.30654005992839],[-71.10113345910398,42.30660246126057],[-71.10113184606698,42.30660860650049],[-71.10112968003652,42.30661685651926],[-71.10071934176081,42.30655960573265],[-71.10071761492313,42.30655936475447],[-71.1007174549624,42.30655934259145],[-71.10071300153834,42.30655872121602],[-71.1006437390921,42.30670883216774],[-71.10038845082057,42.30726210354327],[-71.10039056867973,42.30726265738933],[-71.10041170251658,42.30726817678608],[-71.10049035048303,42.30728871956388],[-71.10048973842122,42.30729018582255],[-71.10048946501705,42.3072908420898],[-71.10048653523735,42.30729786233367],[-71.100454190537,42.30737537900096],[-71.10044952020246,42.30738624916965],[-71.10044274984467,42.30740200245675],[-71.10043382153704,42.30742374512707],[-71.10042842487,42.30743688962369],[-71.10039180635515,42.30752430549575],[-71.1003622649385,42.3075948257614],[-71.10035023837924,42.30762432452287],[-71.10031525761418,42.30770704290553],[-71.10029571920867,42.30775368512139],[-71.1002827420156,42.30778466606056],[-71.10025632951046,42.30784771750182],[-71.100253280404,42.3078549948093],[-71.1002507780695,42.3078609667857],[-71.10025073989041,42.30786105848329],[-71.10024981874035,42.30786325920901],[-71.1002235311314,42.30787751581156],[-71.10013089945676,42.30792774976014],[-71.09994269183912,42.30791670884602],[-71.09994023903833,42.3079165643617],[-71.09993932969559,42.30791651077918],[-71.09993592631974,42.30791631166845],[-71.09993312190275,42.30791614705366],[-71.09988313957531,42.30801396149179],[-71.09986135710945,42.30807131296883],[-71.09983606545947,42.30813790548628],[-71.0996807224644,42.30833746920916],[-71.09968059772501,42.30833763082828],[-71.09949736768864,42.3085730190429],[-71.09943802554757,42.30863627962442],[-71.09934074612757,42.30873700165841],[-71.09925731904555,42.30882338065188],[-71.0992355181475,42.30884595432323],[-71.09923558784033,42.30884605810056],[-71.09933688236394,42.30899545477236],[-71.09934901486676,42.30901334728335],[-71.09936867971157,42.30904235052348],[-71.0993888221467,42.30907432832248],[-71.099384,42.309076],[-71.099057,42.309191],[-71.098904,42.309244],[-71.09857523312556,42.30938166546808],[-71.09847450768423,42.30941776808952],[-71.09836018397273,42.30947925686276],[-71.09835484824602,42.30948212636991],[-71.0983491315638,42.30948520161383],[-71.0982894855315,42.30951728141334],[-71.09828319657454,42.30952184824795],[-71.09827050290004,42.30953106523917],[-71.09826988875292,42.3095315105403],[-71.09826914056272,42.30953205350536],[-71.09825192117115,42.30954455696627],[-71.09824159547995,42.30955205410608],[-71.098191,42.309585],[-71.0981624385795,42.30961733813727],[-71.09813991113865,42.30963702836273],[-71.09813446636048,42.30964178720384],[-71.0981263284589,42.30964890080916],[-71.09812295840226,42.30965184650264],[-71.09812002911323,42.30965548246545],[-71.09810653920796,42.3096722285472],[-71.09805326659861,42.30973836087816],[-71.09802211159266,42.30977703673991],[-71.09801007110705,42.30979913114883],[-71.0979833024626,42.30984824869477],[-71.09797650828578,42.30987449112016],[-71.09795463450288,42.3099589830612],[-71.097926,42.310036],[-71.097903,42.310214],[-71.097866,42.310437],[-71.09786598772492,42.310438804437],[-71.09786370135942,42.31045222094395],[-71.09786274493426,42.31077694603191],[-71.09786226576439,42.31093955917153],[-71.097848,42.311067],[-71.097833,42.31126],[-71.097796,42.311419],[-71.097746,42.311545],[-71.097638,42.311685],[-71.097488,42.311857],[-71.097302,42.312015],[-71.09714768634421,42.31211306849153],[-71.09711547247304,42.31212693955971],[-71.0970133240934,42.3121624024464],[-71.09700862307271,42.31216403440634],[-71.09696679406194,42.31217855626576],[-71.09696481664474,42.31217916603466],[-71.09692788011012,42.31219056029856],[-71.0969019257134,42.31219856744008],[-71.09660398630761,42.31229047772131],[-71.09644597124608,42.31235646754281],[-71.09634786176443,42.31241374922966],[-71.096281840844,42.31246568235944],[-71.09626327621157,42.31248028568878],[-71.09625969202003,42.31248310543306],[-71.09625148373709,42.31248956233924],[-71.09625006926174,42.31249053239207],[-71.0962454092549,42.31249373038571],[-71.09598,42.312671],[-71.095542,42.312993],[-71.095359,42.313129],[-71.095145,42.313282],[-71.09509938326192,42.31332463246549]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000231,"geom:area_square_m":2110013.362655,"geom:bbox":"-71.1068442273,42.2919730002,-71.0847307477,42.3133246325","geom:latitude":42.302692,"geom:longitude":-71.094928,"iso:country":"US","lbl:latitude":42.302933,"lbl:longitude":-71.094761,"lbl:max_zoom":18,"mps:latitude":42.302933,"mps:longitude":-71.094761,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["Franklin Park"],"name:ceb_x_preferred":["Franklin Park"],"name:deu_x_preferred":["Franklin Park"],"name:ita_x_preferred":["Franklin Park"],"name:nld_x_preferred":["Franklin Park"],"name:pol_x_preferred":["Franklin Park"],"name:srp_x_preferred":["Франклин Парк"],"name:swe_x_preferred":["Franklin Park"],"name:vol_x_preferred":["Franklin Park"],"reversegeo:latitude":42.302933,"reversegeo:longitude":-71.094761,"src:geom":"mz","wof:belongsto":[85846283,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"34f379a351ab23f2b95383a1db1724cd","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712233,"neighbourhood_id":85846283,"region_id":85688645}],"wof:id":1108712233,"wof:lastmodified":1566624138,"wof:name":"Franklin Park","wof:parent_id":85846283,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712237.geojson b/fixtures/microhoods/1108712237.geojson new file mode 100644 index 0000000..c28cc03 --- /dev/null +++ b/fixtures/microhoods/1108712237.geojson @@ -0,0 +1 @@ +{"id":1108712237,"type":"Feature","bbox":[-71.12697143767812,42.38286766473011,-71.11916345266093,42.38818850424562],"geometry":{"type":"Polygon","coordinates":[[[-71.12437546429224,42.38311268160805],[-71.12489295336296,42.38286766473011],[-71.12563843517425,42.38411376440863],[-71.1261050689013,42.38492776195912],[-71.1265967892908,42.38575682907636],[-71.12697143767812,42.38636101387627],[-71.12635539203423,42.38656498175855],[-71.12524246324372,42.38692579391095],[-71.12421407451981,42.38722642516327],[-71.12343305984767,42.3874350322581],[-71.12173097474671,42.38789314875117],[-71.1215510949423,42.38793088224252],[-71.12134875582048,42.38796452366845],[-71.1205851008678,42.38804897778545],[-71.11941825430854,42.38818850424562],[-71.1194140844357,42.38817298949848],[-71.11935173132879,42.38796217654563],[-71.11922145009571,42.38750623083288],[-71.1191940355102,42.38737168080889],[-71.11916345266093,42.38707179082905],[-71.11918110970734,42.3868289998358],[-71.11921083679347,42.38657938821239],[-71.11924928901864,42.38622553132056],[-71.11928748053002,42.38583805829525],[-71.11931459249853,42.38556168326787],[-71.11936895980456,42.38510017422198],[-71.11939907014842,42.3848251815828],[-71.1194001704521,42.38481517991441],[-71.11993785899806,42.3847251746103],[-71.12072873561007,42.38457789887546],[-71.12096331513045,42.38452980039099],[-71.12149911006203,42.38439881737317],[-71.12165809733204,42.38435098751797],[-71.12178860406534,42.38430152634882],[-71.12220549721543,42.38410475254002],[-71.12330594720723,42.38360985990256],[-71.12437546429224,42.38311268160805]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000025,"geom:area_square_m":228466.337436,"geom:bbox":"-71.1269714377,42.3828676647,-71.1191634527,42.3881885042","geom:latitude":42.385781,"geom:longitude":-71.122776,"iso:country":"US","lbl:latitude":42.38573,"lbl:longitude":-71.122775,"lbl:max_zoom":18,"mps:latitude":42.38573,"mps:longitude":-71.122775,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_variant":["Avon Hl"],"reversegeo:latitude":42.38573,"reversegeo:longitude":-71.122775,"src:geom":"mz","wof:belongsto":[1108712243,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"edf2924ae72ddf0c372c975b0ab7bb72","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108712237,"neighbourhood_id":1108712243,"region_id":85688645}],"wof:id":1108712237,"wof:lastmodified":1566624137,"wof:name":"Avon Hill","wof:parent_id":1108712243,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867959],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712253.geojson b/fixtures/microhoods/1108712253.geojson new file mode 100644 index 0000000..1df6da2 --- /dev/null +++ b/fixtures/microhoods/1108712253.geojson @@ -0,0 +1 @@ +{"id":1108712253,"type":"Feature","bbox":[-71.14144125058343,42.37496786831012,-71.11756785625042,42.38005176943341],"geometry":{"type":"Polygon","coordinates":[[[-71.1245319458055,42.37877099071175],[-71.12404699165012,42.37905940492958],[-71.1234902627713,42.37928958349512],[-71.12290691703738,42.37947987777628],[-71.12237747111392,42.3796268552318],[-71.12184670076313,42.37974703280701],[-71.12117525686766,42.37987368027171],[-71.12066270575446,42.37995095122245],[-71.11993098229794,42.38005176943341],[-71.11998543282404,42.37983497590682],[-71.11998777388446,42.37975334751773],[-71.12000034274438,42.37931708221109],[-71.1200273903847,42.37905031099934],[-71.12003907927358,42.37895293483489],[-71.12004816118518,42.37886584065393],[-71.1201478759988,42.37790025783872],[-71.12016778265036,42.37770549449885],[-71.12007450415328,42.37752270602032],[-71.11982677865024,42.37686674077357],[-71.11979947119225,42.37679187439909],[-71.11963247576094,42.37667469939986],[-71.11954467031302,42.37662089959662],[-71.11942035515101,42.37656080490127],[-71.1191047516716,42.37638482590518],[-71.1190634886501,42.37636136457429],[-71.11874917570469,42.37620185351191],[-71.11859615613854,42.37614577881252],[-71.11844998477801,42.37610481873641],[-71.11820921073084,42.37606354506912],[-71.11804158212115,42.37605201253402],[-71.11781447092476,42.3760464556746],[-71.1176965724883,42.37603508784185],[-71.11756785625042,42.37601476533158],[-71.11763988904072,42.37592239248715],[-71.11771919280108,42.37592814408995],[-71.11780038842417,42.37592704187097],[-71.11788346830342,42.37592045781156],[-71.11797190462393,42.37590771743321],[-71.11804442272685,42.37588806355676],[-71.11810631276288,42.37586631633715],[-71.11817520868988,42.37583361625389],[-71.11823369197491,42.37580156757942],[-71.11828873399912,42.37576470541977],[-71.11834735377803,42.37571001844042],[-71.11839531648546,42.37565804010057],[-71.11846663721433,42.37556840839535],[-71.1184967734388,42.37544228073654],[-71.11854375092918,42.37524692132229],[-71.1185459112107,42.37523389438427],[-71.11855957919133,42.3751536755023],[-71.11856820787764,42.37510362519635],[-71.1185907695573,42.37496786831012],[-71.11917376838359,42.37514130429383],[-71.11942061128453,42.37524982561092],[-71.11942822342378,42.37525328134673],[-71.11971659480008,42.37537977606578],[-71.11993610454248,42.37549506648341],[-71.12014016416786,42.37560275940292],[-71.12085163203234,42.37591655864713],[-71.12098312989397,42.37597461745406],[-71.12117229667996,42.37605893422551],[-71.12139090416953,42.37615580631454],[-71.12294032441494,42.37583552274919],[-71.12418586123673,42.37561153996221],[-71.12460806811158,42.37555357911125],[-71.12508773555112,42.37552990588367],[-71.12534810152778,42.37555452530766],[-71.12561014560453,42.3755984323001],[-71.12616220775381,42.3757214500928],[-71.12663484527424,42.37585346020985],[-71.12707030130082,42.37601777896759],[-71.12742164180435,42.37621651518582],[-71.1278816778335,42.37646739099706],[-71.12854666855844,42.37676306095969],[-71.1289510945103,42.37689514926335],[-71.12936920428598,42.37701524092127],[-71.12983579477435,42.37710707413939],[-71.13021702982392,42.37713804720853],[-71.13061150969261,42.37713721979681],[-71.13214556178707,42.37696638698252],[-71.1346864859229,42.37664982274753],[-71.13624642313195,42.37644193907578],[-71.13775695378234,42.37618630225421],[-71.14093156375294,42.37559312381889],[-71.14144125058343,42.37675236863281],[-71.13785901407908,42.3773863775337],[-71.13647767295686,42.37760769600339],[-71.13563130068215,42.37772618237879],[-71.13470328904555,42.37782496577773],[-71.13199561942277,42.3781181776226],[-71.13055345235293,42.37829891409719],[-71.13012564300135,42.37832372371575],[-71.12972666255637,42.37829423575868],[-71.12931481809477,42.37821247870482],[-71.1288591850575,42.37807309920306],[-71.12839721639726,42.37792036030554],[-71.12803219812899,42.37777152492258],[-71.12770219959985,42.37762155375562],[-71.12717825667795,42.37733734743702],[-71.12682917065717,42.37716979857877],[-71.12636634108271,42.37699904900332],[-71.12591397184947,42.37686784591037],[-71.12545123496055,42.37675616973319],[-71.12516115886118,42.37671718469148],[-71.12494492078748,42.37669814055997],[-71.12449248722014,42.37672178103688],[-71.12407182369269,42.37678180685173],[-71.12288738333903,42.37701780715505],[-71.1226321242706,42.37706220837386],[-71.12286335109484,42.37730686866675],[-71.12295663279994,42.37741282075861],[-71.12308942121652,42.3775655521203],[-71.12316476334678,42.37765429513784],[-71.12322999363596,42.37773202838432],[-71.1235327038421,42.37809523672972],[-71.12368878708284,42.37829880846692],[-71.12370852442938,42.37832494173099],[-71.12393956067933,42.37844986614082],[-71.12439263930527,42.37869556868333],[-71.12449732175307,42.3787521638442],[-71.1245319458055,42.37877099071175]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000037,"geom:area_square_m":334855.411566,"geom:bbox":"-71.1414412506,42.3749678683,-71.1175678563,42.3800517694","geom:latitude":42.377219,"geom:longitude":-71.127744,"iso:country":"US","lbl:latitude":42.378613,"lbl:longitude":-71.118212,"lbl:max_zoom":18,"mps:latitude":42.378281,"mps:longitude":-71.122588,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":42.378281,"reversegeo:longitude":-71.122588,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108712243,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"99f33bba87894743dc943b981967b6fb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108712253,"neighbourhood_id":1108712243,"region_id":85688645}],"wof:id":1108712253,"wof:lastmodified":1566624140,"wof:name":"Old Cambridge","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85839289],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712257.geojson b/fixtures/microhoods/1108712257.geojson new file mode 100644 index 0000000..f9c8a63 --- /dev/null +++ b/fixtures/microhoods/1108712257.geojson @@ -0,0 +1 @@ +{"id":1108712257,"type":"Feature","bbox":[-71.14738629843794,42.37527913124919,-71.14114404546518,42.38026592482368],"geometry":{"type":"Polygon","coordinates":[[[-71.14738629843794,42.37872501691424],[-71.147217028454,42.37872847486926],[-71.14705086412823,42.37874824696244],[-71.14685539142233,42.37879224675502],[-71.14652674801926,42.37890311373089],[-71.14612841977643,42.37905023680715],[-71.14593646887985,42.37917135175005],[-71.14580346778888,42.37931350882008],[-71.14568229969753,42.37941945683954],[-71.14557256360453,42.37947240139869],[-71.1454365865126,42.37952257698522],[-71.1453422456129,42.37957056282459],[-71.14514308149158,42.37974713090574],[-71.14507751796964,42.3797876513575],[-71.14474475324876,42.37992522482342],[-71.14463468886578,42.37996364990632],[-71.14424160178416,42.38008008868908],[-71.14353928619815,42.38026592482368],[-71.1428998645452,42.37879470703308],[-71.14280515983992,42.37862511013902],[-71.14256443023545,42.37824492732717],[-71.14246484817457,42.37815938020115],[-71.14230237218098,42.37805908521128],[-71.1422413509578,42.3779855768547],[-71.14218706663699,42.37780355140389],[-71.14214774318927,42.37758761790819],[-71.14213465502611,42.37755576005213],[-71.14212155212319,42.37753961290227],[-71.14209851287364,42.37752484706281],[-71.14185163232726,42.37746283804314],[-71.14174564782445,42.37741483481805],[-71.14144282176227,42.37719955827097],[-71.14137131475815,42.37710817934382],[-71.14130917215448,42.3769982259357],[-71.14120375327633,42.37679440254276],[-71.14144125058343,42.37675236863281],[-71.14114404546518,42.37607639768086],[-71.14218706663699,42.37583668062807],[-71.14258365332164,42.37576689647754],[-71.14478668253747,42.37542626281606],[-71.14531866038807,42.37534119939767],[-71.14585587939976,42.37527913124919],[-71.14738629843794,42.37872501691424]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":170968.508955,"geom:bbox":"-71.1473862984,42.3752791312,-71.1411440455,42.3802659248","geom:latitude":42.377535,"geom:longitude":-71.144343,"iso:country":"US","lbl:latitude":42.379058,"lbl:longitude":-71.124879,"lbl:max_zoom":18,"mps:latitude":42.377581,"mps:longitude":-71.144401,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":42.377581,"reversegeo:longitude":-71.144401,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85835463,102191575,404476459,85633793,85950335,102084643,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9ef8eb7fba2e46882bcb257f02339e23","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476459,"locality_id":85950335,"microhood_id":1108712257,"neighbourhood_id":85835463,"region_id":85688645}],"wof:id":1108712257,"wof:lastmodified":1566624140,"wof:name":"Larchwood","wof:parent_id":85835463,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867963,420785107],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712261.geojson b/fixtures/microhoods/1108712261.geojson new file mode 100644 index 0000000..7bea3fe --- /dev/null +++ b/fixtures/microhoods/1108712261.geojson @@ -0,0 +1 @@ +{"id":1108712261,"type":"Feature","bbox":[-71.19050593143834,42.27947887211297,-71.1768711599789,42.28516390343722],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.19050593143834,42.28164589436111],[-71.187865679613,42.28243512841762],[-71.18784455116008,42.28243512841777],[-71.18782704472763,42.28242619606323],[-71.18732298020767,42.2819626051251],[-71.18521737895534,42.28360614917897],[-71.1841935544932,42.28312023627193],[-71.18148911251777,42.28516390343722],[-71.17745176699728,42.28444219635284],[-71.1771731973588,42.28066141145485],[-71.1768711599789,42.28040774003501],[-71.17712981835112,42.28040613187289],[-71.17755223966903,42.28039503602058],[-71.17790717355747,42.28037284431008],[-71.17824711023933,42.2803469539713],[-71.1785570525081,42.28031736499965],[-71.178861995708,42.28028037876555],[-71.18001678061259,42.28013613224515],[-71.18321618467728,42.27973297996261],[-71.18529756775669,42.27947887211297],[-71.18531659468711,42.27952046458359],[-71.18535778817481,42.27959125545989],[-71.18542387044768,42.2796412752511],[-71.1855113210505,42.27968219386329],[-71.18599055886821,42.27977158852874],[-71.18706012431957,42.28003475713738],[-71.18780860831536,42.28026451838991],[-71.18819873293165,42.28045519643722],[-71.18842602340278,42.28057102812042],[-71.18866234477676,42.28069963386704],[-71.18908494894737,42.2809087197963],[-71.18952908890724,42.28111785696495],[-71.18993034711927,42.28128957185343],[-71.19025244212364,42.28149837667611],[-71.19050593143834,42.28164589436111]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000045,"geom:area_square_m":412580.02243,"geom:bbox":"-71.1905059314,42.2794788721,-71.17687116,42.2851639034","geom:latitude":42.282012,"geom:longitude":-71.182495,"iso:country":"US","lbl:latitude":42.282542,"lbl:longitude":-71.180894,"lbl:max_zoom":18,"mps:latitude":42.282542,"mps:longitude":-71.180894,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.282542,"reversegeo:longitude":-71.180894,"src:geom":"mz","wof:belongsto":[85856255,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2544fc29b5f02ea291035b6b71881666","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712261,"neighbourhood_id":85856255,"region_id":85688645}],"wof:id":1108712261,"wof:lastmodified":1566624129,"wof:name":"Millenium Park","wof:parent_id":85856255,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108712263.geojson b/fixtures/microhoods/1108712263.geojson new file mode 100644 index 0000000..0fd0862 --- /dev/null +++ b/fixtures/microhoods/1108712263.geojson @@ -0,0 +1 @@ +{"id":1108712263,"type":"Feature","bbox":[-71.19124909972187,42.28164589436111,-71.17176235430404,42.29462321079467],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.1785920358031,42.29462321079467],[-71.17711513491199,42.29392403691767],[-71.17685729332293,42.29378186193448],[-71.17658964852303,42.29360901452386],[-71.17641763657436,42.29345505538049],[-71.17625346778973,42.29326734173996],[-71.17594013429071,42.29288104726042],[-71.17562680079172,42.29255269508997],[-71.17526124504289,42.29224365618935],[-71.17489568929405,42.29199256096607],[-71.17432124454588,42.29162557383909],[-71.17403569521109,42.29138090366074],[-71.17176235430404,42.28847712273364],[-71.17348954775737,42.28672677591048],[-71.17435161206694,42.28596206757648],[-71.1751593980935,42.28534211888638],[-71.17647441365344,42.28430576288744],[-71.17745176699728,42.28444219635284],[-71.18148911251777,42.28516390343722],[-71.1841935544932,42.28312023627193],[-71.18521737895534,42.28360614917897],[-71.18732298020767,42.2819626051251],[-71.18782704472763,42.28242619606323],[-71.18784455116008,42.28243512841777],[-71.187865679613,42.28243512841762],[-71.19050593143834,42.28164589436111],[-71.19051020074102,42.28164837887469],[-71.19075336379437,42.28184097935637],[-71.19097458314201,42.28212415698021],[-71.19113138062704,42.28236452368995],[-71.19123049450293,42.28265271475649],[-71.19124909972187,42.28299133475804],[-71.19090454668087,42.28324818707762],[-71.17861156383402,42.29461026614293],[-71.1785920358031,42.29462321079467]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000112,"geom:area_square_m":1023183.484281,"geom:bbox":"-71.1912490997,42.2816458944,-71.1717623543,42.2946232108","geom:latitude":42.28779,"geom:longitude":-71.180558,"iso:country":"US","lbl:latitude":42.288678,"lbl:longitude":-71.178789,"lbl:max_zoom":18,"mps:latitude":42.288678,"mps:longitude":-71.178789,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Brook Farm"],"name:fra_x_preferred":["Brook Farm"],"name:ita_x_preferred":["Brook Farm"],"name:nor_x_preferred":["Brook Farm"],"name:por_x_preferred":["Fazenda Brook"],"name:rus_x_preferred":["Брукфарм"],"name:spa_x_preferred":["Brook Farm"],"name:srp_x_preferred":["Bruk farma"],"name:swe_x_preferred":["Brook Farm"],"reversegeo:latitude":42.288678,"reversegeo:longitude":-71.178789,"src:geom":"mz","wof:belongsto":[85856255,102191575,404476573,85633793,85950361,102084423,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b9a9a10365ec684f58360cfdb6fca759","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084423,"localadmin_id":404476573,"locality_id":85950361,"microhood_id":1108712263,"neighbourhood_id":85856255,"region_id":85688645}],"wof:id":1108712263,"wof:lastmodified":1566624129,"wof:name":"Brook Farm","wof:parent_id":85856255,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713379.geojson b/fixtures/microhoods/1108713379.geojson new file mode 100644 index 0000000..2ce421f --- /dev/null +++ b/fixtures/microhoods/1108713379.geojson @@ -0,0 +1 @@ +{"id":1108713379,"type":"Feature","bbox":[-71.15843135124656,42.3886222184756,-71.14051472146262,42.40105280021989],"geometry":{"type":"Polygon","coordinates":[[[-71.14290460525723,42.39791827110018],[-71.14167812365004,42.39743817120666],[-71.14139025814096,42.39732251209926],[-71.14134393495559,42.39729929880203],[-71.14129387433303,42.39726891856766],[-71.1412575071223,42.39723424400346],[-71.14123143579111,42.39719870774815],[-71.14092261455532,42.3966057466801],[-71.14071085142221,42.39608445759675],[-71.14067035806389,42.39595582171489],[-71.14060496985564,42.39565439084316],[-71.14059025140612,42.39552640905862],[-71.14056085253625,42.39511354513598],[-71.14051673521685,42.39448798284209],[-71.14051472146262,42.39438023802081],[-71.14052555868074,42.39410351958858],[-71.140531844615,42.39401068316221],[-71.14054681205545,42.39389379454328],[-71.14056305840222,42.39379073418668],[-71.14060386692267,42.3936127553398],[-71.14078143913325,42.39300224740352],[-71.14120496539948,42.39165332555677],[-71.14139025814096,42.39112547868156],[-71.14145410321653,42.39097550952242],[-71.14154466875885,42.39082897015624],[-71.14172113803643,42.39056830216497],[-71.1418865025734,42.39035088954309],[-71.1430667162781,42.38890163060086],[-71.14312737759231,42.38882627905681],[-71.14317517789793,42.38878672351299],[-71.14324318555572,42.38874685435854],[-71.14331464256861,42.38871799283589],[-71.1433909785757,42.38869146066338],[-71.14347525754336,42.38866842026161],[-71.14355310972448,42.38864910074591],[-71.14365663685072,42.3886321551091],[-71.14374502006388,42.3886222184756],[-71.1438299459037,42.38862425501159],[-71.14392038640848,42.38863036461954],[-71.14416964926309,42.38867516839073],[-71.1451225833621,42.38892932736172],[-71.14613728170828,42.38919651901652],[-71.14736374318757,42.38945719270563],[-71.1492254940662,42.3898530887997],[-71.14994240992479,42.39000691277688],[-71.15019904169957,42.39005829088892],[-71.15044313208162,42.3900958386689],[-71.15100783376992,42.39016752301426],[-71.15684014339446,42.39088436196529],[-71.1572706763708,42.39092410889575],[-71.1574998123242,42.39161584070684],[-71.15751359071709,42.39165743425428],[-71.15757210787983,42.3918340843729],[-71.15843135124656,42.39458557570115],[-71.15836957874849,42.39462075819774],[-71.15835021616147,42.394631355295],[-71.1583170361588,42.39464951418798],[-71.1581928060184,42.39471750386852],[-71.1581138310338,42.39476537875267],[-71.15794036904583,42.39487053212108],[-71.15762282196734,42.39506302948485],[-71.15754073009279,42.39511279277662],[-71.15747879900957,42.39515033534304],[-71.15725831441857,42.39528399139742],[-71.15711822895807,42.39536890910571],[-71.15683950242865,42.39553786872013],[-71.1565931757132,42.39568718657087],[-71.15652844501136,42.39572642422389],[-71.15650819755464,42.39573869812426],[-71.15641184356649,42.39585615272102],[-71.15640110808498,42.39586880536806],[-71.15635055856674,42.39593021930866],[-71.15628055197617,42.39601527264971],[-71.156226941454,42.39608040567936],[-71.15604287468265,42.39630403164487],[-71.1553679177461,42.39712403358367],[-71.15521061123174,42.39731514119251],[-71.15286899627871,42.40018960316412],[-71.15259765923415,42.40046631302435],[-71.15239396355346,42.40070790071237],[-71.15221428007324,42.40092100794905],[-71.15210315686635,42.40105280021989],[-71.15076342156955,42.40048637960061],[-71.15035734585602,42.40031469131341],[-71.15008764327673,42.40020066050557],[-71.14879568201668,42.39962209501316],[-71.14871141878552,42.39958435926954],[-71.14863639675522,42.39955076189467],[-71.14796458495823,42.39924989980633],[-71.14695447699104,42.39879752345436],[-71.14686687134424,42.39875828888068],[-71.14652258071796,42.39861343636112],[-71.14638132040852,42.39855400422027],[-71.14633911373107,42.39853624630107],[-71.1436368614465,42.39739927083727],[-71.14355504206027,42.3973648436467],[-71.14335102044056,42.39727899694529],[-71.14332161160536,42.39726729375781],[-71.14331723367548,42.39727889222802],[-71.14329125287631,42.39736947798337],[-71.14327422191312,42.39742990532879],[-71.14321214803982,42.39758503739245],[-71.14315536366716,42.3977316302736],[-71.14297349017116,42.39786700007993],[-71.14290460525723,42.39791827110018]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000144,"geom:area_square_m":1315699.021733,"geom:bbox":"-71.1584313512,42.3886222185,-71.1405147215,42.4010528002","geom:latitude":42.394326,"geom:longitude":-71.148995,"iso:country":"US","lbl:latitude":42.394758,"lbl:longitude":-71.148996,"lbl:max_zoom":18,"mps:latitude":42.394758,"mps:longitude":-71.148996,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:bul_x_preferred":["Alosa pseudoharengus"],"name:cat_x_preferred":["Alosa pseudoharengus"],"name:ceb_x_preferred":["Alosa pseudoharengus"],"name:epo_x_preferred":["Riverharingo"],"name:eus_x_preferred":["Alosa pseudoharengus"],"name:fin_x_preferred":["Harmaasilli"],"name:fra_x_preferred":["Alosa pseudoharengus"],"name:hun_x_preferred":["Alosa pseudoharengus"],"name:ita_x_preferred":["Alosa pseudoharengus"],"name:jpn_x_preferred":["エールワイフ"],"name:nld_x_preferred":["Amerikaanse rivierharing"],"name:pol_x_preferred":["Aloza tęczowa"],"name:rus_x_preferred":["Сероспинка"],"name:spa_x_preferred":["Alosa pseudoharengus"],"name:swe_x_preferred":["Gumsill"],"name:ukr_x_preferred":["Сіроспинка"],"name:war_x_preferred":["Alosa pseudoharengus"],"name:zho_x_preferred":["灰西鯡"],"reversegeo:latitude":42.394758,"reversegeo:longitude":-71.148996,"src:geom":"mz","wof:belongsto":[85815901,102191575,404476319,85633793,85950613,102084643,85688645,85837429,404476475,85950329],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"126fd7707647ff4273fad6b4b2594b95","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476319,"locality_id":85950613,"microhood_id":1108713379,"neighbourhood_id":85815901,"region_id":85688645},{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713379,"neighbourhood_id":85837429,"region_id":85688645}],"wof:id":1108713379,"wof:lastmodified":1566624126,"wof:name":"Alewife","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780895],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713387.geojson b/fixtures/microhoods/1108713387.geojson new file mode 100644 index 0000000..64a301a --- /dev/null +++ b/fixtures/microhoods/1108713387.geojson @@ -0,0 +1 @@ +{"id":1108713387,"type":"Feature","bbox":[-71.14433755000441,42.3647836206838,-71.13015190069903,42.37507219548104],"geometry":{"type":"Polygon","coordinates":[[[-71.14004090900339,42.37356524028176],[-71.13990094811558,42.374986935026],[-71.13948279044453,42.37491525085382],[-71.13913631694565,42.37485402062342],[-71.13884659341645,42.37482116537783],[-71.13856284356822,42.37480324433479],[-71.13830149502382,42.37480324433479],[-71.13812265958349,42.37481744599835],[-71.13795800836544,42.37484207326139],[-71.137684712459,42.37489583639052],[-71.13726058110694,42.37497498766397],[-71.13685735763843,42.37505264551717],[-71.13668277171124,42.37507219548104],[-71.13646757495218,42.37507205998047],[-71.13595831864566,42.37503472447412],[-71.13127495272987,42.37473604042337],[-71.13015190069903,42.37467630361322],[-71.13018249740023,42.37430914319883],[-71.13048872382018,42.37431499389992],[-71.1308667726802,42.37429986588056],[-71.13127790081549,42.37425099071307],[-71.13158821592143,42.37418931486647],[-71.13186860215929,42.37410320129104],[-71.13218206767239,42.37398101293535],[-71.1324388258565,42.37385300583274],[-71.13277906983052,42.37359000833036],[-71.13311458819379,42.37329209887127],[-71.1333429927134,42.37307913910283],[-71.13351468990399,42.37289527169811],[-71.13359817569392,42.37277191729193],[-71.13364858220858,42.37265554496049],[-71.13369426311249,42.37250891550773],[-71.13373994401641,42.37232155514806],[-71.13376042166298,42.37215630526164],[-71.13375997575315,42.3720534800091],[-71.13375045112912,42.3719785638412],[-71.13369099752926,42.37190800533296],[-71.1334154520782,42.37163029522621],[-71.13311616339736,42.37127069761299],[-71.13281529951293,42.37093204543824],[-71.13258059417899,42.37066554487423],[-71.13248923237117,42.37044908487013],[-71.13245930350308,42.37024193439804],[-71.1324561530959,42.37007900652914],[-71.13248765716756,42.36990909557137],[-71.13255224051449,42.36970310698445],[-71.13264990313667,42.36948547996299],[-71.13279482186634,42.36928996412229],[-71.13307993371495,42.3690176372761],[-71.13353674275413,42.36869061103639],[-71.1341494969481,42.36835543629185],[-71.13460788119089,42.36811336485369],[-71.13478902960298,42.3680132772573],[-71.13493079792549,42.36793879336251],[-71.13509619430175,42.36788409419249],[-71.135299395564,42.36784452455155],[-71.13550417202987,42.36781310158101],[-71.13573257654946,42.36776654899842],[-71.13598933473357,42.36767344371596],[-71.13623034088184,42.3675489152184],[-71.13656113363436,42.36737317824566],[-71.13704629633806,42.36706127292594],[-71.13747475171276,42.3667412196218],[-71.1378417741477,42.36640603433304],[-71.1384135730485,42.36588812298706],[-71.13896489430269,42.36542956509685],[-71.13938074804872,42.3651188141903],[-71.13969736396899,42.36491513785349],[-71.13985173392018,42.36484414189661],[-71.13999035183552,42.36480224260069],[-71.14014944739745,42.3647836206838],[-71.14034162223463,42.36479642325237],[-71.14079685607024,42.36489302432634],[-71.14131194764201,42.36500708334331],[-71.14163328917304,42.36507342366783],[-71.14201921405099,42.3651642050384],[-71.14253903123353,42.36529804912629],[-71.14297221221898,42.36540279653555],[-71.1432069175529,42.36544469543716],[-71.14338649076142,42.36546448101969],[-71.14355346234126,42.36547030030716],[-71.14369995627453,42.3654656448771],[-71.14386355628548,42.36544275135468],[-71.14391620109642,42.3655748892595],[-71.1439766326248,42.36568889492431],[-71.14397891159635,42.36569462781332],[-71.14407068507926,42.36587768665385],[-71.14426209611908,42.36619560440876],[-71.14433755000441,42.36638378283143],[-71.14425873000279,42.36640221064285],[-71.14423945241572,42.36640662846898],[-71.14415137677477,42.36641961213083],[-71.14382901544347,42.36646661372637],[-71.14380290936376,42.36647033642817],[-71.14358332569593,42.36650252346333],[-71.14349164250193,42.36651586948322],[-71.14349103256889,42.36651596649539],[-71.14336466571775,42.36654133311039],[-71.14335366795778,42.36654329600241],[-71.1432929958773,42.36655552803705],[-71.14322911022272,42.36656812043093],[-71.14320711922376,42.36657275062056],[-71.14318157508947,42.36657782641927],[-71.1431199603793,42.36659554664158],[-71.14311767749089,42.3665962997412],[-71.14309485763053,42.36660273388979],[-71.14304083191803,42.36661823968176],[-71.1430006662035,42.36662994178459],[-71.14294873378445,42.36664786083767],[-71.14293258536887,42.36665351602495],[-71.1428417864182,42.36668521177181],[-71.14283094253116,42.36668906423812],[-71.142822724193,42.36669191110411],[-71.14278275032734,42.36670994981112],[-71.14276150959545,42.3667195163321],[-71.14271285547272,42.36674141419368],[-71.14269154984476,42.36675254400419],[-71.14267372559651,42.36676186597421],[-71.14264916040575,42.36677471486929],[-71.14263750600311,42.36678076117518],[-71.14260551619786,42.36679747470986],[-71.14258677914059,42.36680713157222],[-71.1425491654691,42.36683117745247],[-71.14251840768367,42.36685118804035],[-71.14248373017422,42.36687988934608],[-71.14247480023337,42.36688763386654],[-71.14244820706796,42.36691661175533],[-71.14243812010623,42.36692798682348],[-71.14240367280111,42.36696602302346],[-71.14239678179332,42.36697588555406],[-71.14238529960527,42.36699224086933],[-71.14237645806014,42.36700454727966],[-71.14235047435905,42.3670470456681],[-71.14232448445065,42.36709013376458],[-71.14230522695061,42.3671217984897],[-71.14229594772094,42.3671377318928],[-71.1422888955301,42.36714911901563],[-71.14225169769271,42.36721071754133],[-71.14222088059425,42.36726173332538],[-71.14218695829157,42.36731789290139],[-71.14216821361116,42.36734892264328],[-71.14214993029192,42.36737928043745],[-71.14211808028308,42.36743164447343],[-71.14209933669595,42.36746284518225],[-71.14208473387968,42.36748704667901],[-71.14204207238947,42.36755754041953],[-71.14201315162038,42.36760573279903],[-71.14198337119255,42.36765464006548],[-71.14195910885157,42.36769486264458],[-71.14195140405369,42.36770759499996],[-71.14191299564348,42.3677712587068],[-71.14186711410096,42.36784706468528],[-71.14185734037164,42.36786334056639],[-71.14182583372826,42.36791536784428],[-71.14178213627612,42.36798754749375],[-71.14175235214374,42.36803704547134],[-71.14172648085611,42.36807971345871],[-71.1416965824203,42.36812921106502],[-71.1416736630294,42.36816786742148],[-71.14165520712993,42.36819779899819],[-71.14153271262809,42.36839589020663],[-71.14142331798335,42.36857443097558],[-71.1412604298503,42.36884036416102],[-71.14121160870451,42.36891946604371],[-71.1411171768019,42.36903894149202],[-71.14111326662224,42.36904402119958],[-71.14104187860062,42.36913259985593],[-71.14103358170813,42.36914384255092],[-71.1409777392223,42.36923084725486],[-71.14090987252487,42.36949173940033],[-71.14070123090379,42.36983012132958],[-71.14053544047029,42.37010192749405],[-71.14044262596101,42.37043517436436],[-71.14038008458797,42.37071838952819],[-71.14032392833818,42.37102347261114],[-71.14024118985297,42.37136137130197],[-71.14020621897237,42.37162011892333],[-71.1401499303297,42.37243711799485],[-71.14004582741433,42.37351434243339],[-71.14004090900339,42.37356524028176]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":626163.976217,"geom:bbox":"-71.14433755,42.3647836207,-71.1301519007,42.3750721955","geom:latitude":42.37032,"geom:longitude":-71.137477,"iso:country":"US","lbl:latitude":42.370739,"lbl:longitude":-71.136993,"lbl:max_zoom":18,"mps:latitude":42.370739,"mps:longitude":-71.136993,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.370739,"reversegeo:longitude":-71.136993,"src:geom":"mz","wof:belongsto":[85688645,102191575,404476475,85633793,85950329,102084643],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"920674a32af87dc93b68b30e76384b51","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713387,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713387,"wof:lastmodified":1607000407,"wof:name":"Coolidge Hill","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420785105],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713389.geojson b/fixtures/microhoods/1108713389.geojson new file mode 100644 index 0000000..7879895 --- /dev/null +++ b/fixtures/microhoods/1108713389.geojson @@ -0,0 +1 @@ +{"id":1108713389,"type":"Feature","bbox":[-71.14158725971402,42.37722825720756,-71.13043392061817,42.3867942095081],"geometry":{"type":"Polygon","coordinates":[[[-71.13100177967013,42.38240746863744],[-71.13213498914409,42.38156273440168],[-71.13206124234213,42.38137132844302],[-71.13201130681848,42.3812230466209],[-71.13190212154475,42.38085100791043],[-71.13178687042246,42.38044661800779],[-71.13174845338173,42.38033338883499],[-71.13169588269436,42.38018983041958],[-71.13163884977362,42.38003518614298],[-71.13157424688393,42.37990684566323],[-71.13149368774305,42.37976724297123],[-71.13130746676563,42.37950117847245],[-71.13109738563843,42.37921727270359],[-71.13043392061817,42.37830584600911],[-71.13055345235293,42.37829891409719],[-71.13199561942277,42.3781181776226],[-71.13470328904555,42.37782496577773],[-71.13563130068215,42.37772618237879],[-71.13647767295686,42.37760769600339],[-71.13785901407908,42.3773863775337],[-71.13875241542345,42.37722825720756],[-71.14117408737707,42.38431617514033],[-71.14121319905405,42.38439952930649],[-71.141263966381,42.3844776749228],[-71.1413284501763,42.38455521941901],[-71.14136990014129,42.38460172425785],[-71.14142270413053,42.38465312843584],[-71.14149728296069,42.38471293148106],[-71.14154352076962,42.38474304728917],[-71.14158725971402,42.38476550216841],[-71.14129314599604,42.38551262157186],[-71.1410904299507,42.38610101941912],[-71.14106910880457,42.38619039408171],[-71.14098304301002,42.3867942095081],[-71.14048457963875,42.38665468809038],[-71.14041437618317,42.3866325160927],[-71.1398861260251,42.38640379281938],[-71.1396754390972,42.38631052124216],[-71.13963228710128,42.38629117801491],[-71.13903138247771,42.38602517798853],[-71.13887146335487,42.38595470280972],[-71.1386910059733,42.38587524434784],[-71.13823294639862,42.38567280244277],[-71.13808180013717,42.38560578375412],[-71.13793757922294,42.38554153067019],[-71.13745206587465,42.38532665064758],[-71.13727946236497,42.3852499592354],[-71.13712485600647,42.38518155583606],[-71.1366785807655,42.38498326086417],[-71.1365313586143,42.38491831051876],[-71.13637975724099,42.38485060213015],[-71.13596255681556,42.38466611630113],[-71.13579272427307,42.38459080340944],[-71.13565820016805,42.38453069415348],[-71.13425018974874,42.38390469615193],[-71.13408936394436,42.38383283936882],[-71.13396961628254,42.38377826313913],[-71.13309769694982,42.38338171251009],[-71.13295326679187,42.38331539443521],[-71.13292488465339,42.38330295529456],[-71.13287228100106,42.38327877679827],[-71.13281137284797,42.38325045575253],[-71.13203270968077,42.38289123980048],[-71.13195611214161,42.38285600807989],[-71.13184605982465,42.38280557665274],[-71.13117652539852,42.38249815479638],[-71.13101622935118,42.38241600531335],[-71.13100177967013,42.38240746863744]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000061,"geom:area_square_m":561670.579252,"geom:bbox":"-71.1415872597,42.3772282572,-71.1304339206,42.3867942095","geom:latitude":42.381539,"geom:longitude":-71.136446,"iso:country":"US","lbl:latitude":42.381259,"lbl:longitude":-71.136531,"lbl:max_zoom":18,"mps:latitude":42.381259,"mps:longitude":-71.136531,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":42.381259,"reversegeo:longitude":-71.136531,"src:geom":"mz","wof:belongsto":[85688645,102191575,404476475,85633793,85950329,102084643],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"533efdb4a604338b6649aa31675ea202","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713389,"region_id":85688645}],"wof:id":1108713389,"wof:lastmodified":1566624125,"wof:name":"Huron Village","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420785111,420785113],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713391.geojson b/fixtures/microhoods/1108713391.geojson new file mode 100644 index 0000000..f28aa84 --- /dev/null +++ b/fixtures/microhoods/1108713391.geojson @@ -0,0 +1 @@ +{"id":1108713391,"type":"Feature","bbox":[-71.07692104776189,42.37061556834166,-71.07692104776189,42.37061556834166],"geometry":{"type":"Point","coordinates":[-71.07692104776189,42.37061556834166]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.0769210478,42.3706155683,-71.0769210478,42.3706155683","geom:latitude":42.370616,"geom:longitude":-71.076921,"iso:country":"US","lbl:latitude":42.370616,"lbl:longitude":-71.076921,"lbl:max_zoom":18,"mps:latitude":42.370616,"mps:longitude":-71.076921,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Lechmere Square"],"reversegeo:latitude":42.370616,"reversegeo:longitude":-71.076921,"src:geom":"mz","wof:belongsto":[85688645,102191575,404476475,85633793,85950329,102084643],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"44cdc52d047b17c276e6c3a41b6d99ae","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713391,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713391,"wof:lastmodified":1613672357,"wof:name":"Lechmere Square","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780893],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713395.geojson b/fixtures/microhoods/1108713395.geojson new file mode 100644 index 0000000..8e90a44 --- /dev/null +++ b/fixtures/microhoods/1108713395.geojson @@ -0,0 +1 @@ +{"id":1108713395,"type":"Feature","bbox":[-71.1026929331,42.3645368004,-71.1026929331,42.3645368004],"geometry":{"type":"Point","coordinates":[-71.1026929331,42.3645368004]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1026929331,42.3645368004,-71.1026929331,42.3645368004","geom:latitude":42.364537,"geom:longitude":-71.102693,"iso:country":"US","lbl:latitude":42.364537,"lbl:longitude":-71.102693,"lbl:max_zoom":18,"mps:latitude":42.365609,"mps:longitude":-71.104065,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:eng_x_variant":["Central Sq"],"name:jpn_x_preferred":["セントラルスクエア"],"reversegeo:latitude":42.365609,"reversegeo:longitude":-71.104065,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85688645,102191575,404476475,85633793,85950329,102084643],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ee51950fc9f2dcdac69bdd0102b6ab42","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713395,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713395,"wof:lastmodified":1613672359,"wof:name":"Central Square","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85810255],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713397.geojson b/fixtures/microhoods/1108713397.geojson new file mode 100644 index 0000000..c6351ca --- /dev/null +++ b/fixtures/microhoods/1108713397.geojson @@ -0,0 +1 @@ +{"id":1108713397,"type":"Feature","bbox":[-71.1000029203,42.373123101,-71.1000029203,42.373123101],"geometry":{"type":"Point","coordinates":[-71.1000029203,42.373123101]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1000029203,42.373123101,-71.1000029203,42.373123101","geom:latitude":42.373123,"geom:longitude":-71.100003,"iso:country":"US","lbl:latitude":42.373123,"lbl:longitude":-71.100003,"lbl:max_zoom":18,"mps:latitude":42.373838,"mps:longitude":-71.101091,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Inman Square"],"name:eng_x_preferred":["Inman Square"],"name:eng_x_variant":["Inman Sq"],"name:fra_x_preferred":["Inman Square"],"reversegeo:latitude":42.373838,"reversegeo:longitude":-71.101091,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85876611,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6035057"},"wof:country":"US","wof:geomhash":"baaded161940bd24291c7340f1d12c51","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713397,"neighbourhood_id":85876611,"region_id":85688645}],"wof:id":1108713397,"wof:lastmodified":1613672355,"wof:name":"Inman Square","wof:parent_id":85876611,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865511],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713403.geojson b/fixtures/microhoods/1108713403.geojson new file mode 100644 index 0000000..a56a4a9 --- /dev/null +++ b/fixtures/microhoods/1108713403.geojson @@ -0,0 +1 @@ +{"id":1108713403,"type":"Feature","bbox":[-71.08906660848497,42.36352294729265,-71.08906660848497,42.36352294729265],"geometry":{"type":"Point","coordinates":[-71.08906660848497,42.36352294729265]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.0890666085,42.3635229473,-71.0890666085,42.3635229473","geom:latitude":42.363523,"geom:longitude":-71.089067,"iso:country":"US","lbl:latitude":42.363523,"lbl:longitude":-71.089067,"lbl:max_zoom":18,"mps:latitude":42.362404,"mps:longitude":-71.084353,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":12,"mz:tier_metro":1,"name:ell_x_preferred":["Πλατεία Κένταλλ"],"name:eng_x_preferred":["Kendall Square"],"name:eng_x_variant":["Kendall Sq","Kendallsquare"],"name:fra_x_preferred":["Kendall Square"],"name:zho_x_preferred":["肯德爾廣場"],"name:zho_x_variant":["哈佛大学"],"reversegeo:latitude":42.362404,"reversegeo:longitude":-71.084353,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108713381,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6388934"},"wof:country":"US","wof:geomhash":"8cc77c870350e433e3d53ae1e8b7f691","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713403,"neighbourhood_id":1108713381,"region_id":85688645}],"wof:id":1108713403,"wof:lastmodified":1613672372,"wof:name":"Kendall Square","wof:parent_id":1108713381,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868529],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713405.geojson b/fixtures/microhoods/1108713405.geojson new file mode 100644 index 0000000..a0bbfd4 --- /dev/null +++ b/fixtures/microhoods/1108713405.geojson @@ -0,0 +1 @@ +{"id":1108713405,"type":"Feature","bbox":[-71.1190351453,42.3886757521,-71.1190351453,42.3886757521],"geometry":{"type":"Point","coordinates":[-71.1190351453,42.3886757521]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1190351453,42.3886757521,-71.1190351453,42.3886757521","geom:latitude":42.388676,"geom:longitude":-71.119035,"iso:country":"US","lbl:latitude":42.388676,"lbl:longitude":-71.119035,"lbl:max_zoom":18,"mps:latitude":42.388718,"mps:longitude":-71.11957,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:ceb_x_preferred":["Porter Square"],"name:eng_x_preferred":["Porter Square"],"name:eng_x_variant":["Porter Sq","Portersquare"],"name:fra_x_preferred":["Porter Square"],"name:jpn_x_preferred":["ポータースクエアー"],"name:zho_x_preferred":["波特廣場"],"reversegeo:latitude":42.388718,"reversegeo:longitude":-71.11957,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85837429,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7231656"},"wof:country":"US","wof:geomhash":"2a1d944200addcf994f5c6b3265655be","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713405,"neighbourhood_id":85837429,"region_id":85688645}],"wof:id":1108713405,"wof:lastmodified":1613672373,"wof:name":"Porter Square","wof:parent_id":85837429,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865513],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713407.geojson b/fixtures/microhoods/1108713407.geojson new file mode 100644 index 0000000..b6ae99c --- /dev/null +++ b/fixtures/microhoods/1108713407.geojson @@ -0,0 +1 @@ +{"id":1108713407,"type":"Feature","bbox":[-71.12016778265036,42.37601476533158,-71.11160883679138,42.38100008654741],"geometry":{"type":"Polygon","coordinates":[[[-71.11993098229794,42.38005176943341],[-71.1163967988029,42.37985762962739],[-71.11629599378055,42.38084327873486],[-71.11450390449426,42.38072007259643],[-71.11410068440483,42.38024964915878],[-71.11291342525266,42.38100008654741],[-71.11227499344442,42.37940960730582],[-71.11160883679138,42.37715996352667],[-71.11224620405142,42.3770246059197],[-71.11233375639858,42.37700569231674],[-71.11250120971367,42.37697058368585],[-71.11259362275338,42.3769510007788],[-71.11266195086827,42.3769361382172],[-71.11273953945103,42.37691993477861],[-71.1137264275602,42.37671195942487],[-71.11381374354121,42.37669372990876],[-71.11391843569284,42.37667075713285],[-71.11394784939225,42.37666468127046],[-71.11408079932237,42.37663562859831],[-71.11423435516176,42.3766032148469],[-71.11476218614214,42.37649247666703],[-71.11562908270572,42.37631083786017],[-71.11564437007861,42.3763074589115],[-71.11565223428735,42.37630748518636],[-71.1156818330925,42.37630895608379],[-71.11756785625042,42.37601476533158],[-71.1176965724883,42.37603508784185],[-71.11781447092476,42.3760464556746],[-71.11804158212115,42.37605201253402],[-71.11820921073084,42.37606354506912],[-71.11844998477801,42.37610481873641],[-71.11859615613854,42.37614577881252],[-71.11874917570469,42.37620185351191],[-71.1190634886501,42.37636136457429],[-71.1191047516716,42.37638482590518],[-71.11942035515101,42.37656080490127],[-71.11954467031302,42.37662089959662],[-71.11963247576094,42.37667469939986],[-71.11979947119225,42.37679187439909],[-71.11982677865024,42.37686674077357],[-71.12007450415328,42.37752270602032],[-71.12016778265036,42.37770549449885],[-71.1201478759988,42.37790025783872],[-71.12004816118518,42.37886584065393],[-71.12003907927358,42.37895293483489],[-71.1200273903847,42.37905031099934],[-71.12000034274438,42.37931708221109],[-71.11998777388446,42.37975334751773],[-71.11998584777521,42.37982050733714],[-71.11993098229794,42.38005176943341]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":281664.394002,"geom:bbox":"-71.1201677827,42.3760147653,-71.1116088368,42.3810000865","geom:latitude":42.378362,"geom:longitude":-71.116017,"iso:country":"US","lbl:latitude":42.378045,"lbl:longitude":-71.116098,"lbl:max_zoom":18,"mps:latitude":42.378045,"mps:longitude":-71.116098,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:afr_x_preferred":["Harvard-universiteit"],"name:als_x_preferred":["Harvard-Universität"],"name:amh_x_preferred":["ሃርቨርድ ዩኒቨርሲቲ"],"name:ara_x_preferred":["جامعة هارفارد"],"name:arz_x_preferred":["جامعة هارفارد"],"name:azb_x_preferred":["هاروارد بیلیم‌یوردو"],"name:aze_x_preferred":["Harvard Universiteti"],"name:bak_x_preferred":["Гарвард университеты"],"name:bel_x_preferred":["Гарвардскі ўніверсітэт"],"name:ben_x_preferred":["হার্ভার্ড বিশ্ববিদ্যালয়"],"name:bos_x_preferred":["Univerzitet Harvard"],"name:bre_x_preferred":["Skol-veur Harvard"],"name:bul_x_preferred":["Харвардски университет"],"name:cat_x_preferred":["Universitat Harvard"],"name:ces_x_preferred":["Harvardova univerzita"],"name:chv_x_preferred":["Харвăрт Университечĕ"],"name:ckb_x_preferred":["زانکۆی ھارڤارد"],"name:csb_x_preferred":["Ùniwersytet Harvarda"],"name:cym_x_preferred":["Prifysgol Harvard"],"name:dan_x_preferred":["Harvard University"],"name:deu_x_preferred":["Harvard University"],"name:ell_x_preferred":["Πανεπιστήμιο Χάρβαρντ"],"name:epo_x_preferred":["Universitato Harvard"],"name:est_x_preferred":["Harvardi ülikool"],"name:eus_x_preferred":["Harvard Unibertsitatea"],"name:fao_x_preferred":["Harvard University"],"name:fas_x_preferred":["دانشگاه هاروارد"],"name:fin_x_preferred":["Harvardin yliopisto"],"name:fra_x_preferred":["Université Harvard"],"name:fry_x_preferred":["Universiteit fan Harvard"],"name:gla_x_preferred":["Oilthigh Harvard"],"name:gle_x_preferred":["Ollscoil Harvard"],"name:glg_x_preferred":["Universidade Harvard"],"name:grn_x_preferred":["Mbo'ehaorusu Harvard"],"name:hak_x_preferred":["Harvard Thai-ho̍k"],"name:heb_x_preferred":["אוניברסיטת הרווארד"],"name:hin_x_preferred":["हार्वर्ड विश्वविद्यालय"],"name:hrv_x_preferred":["Harvardovo sveučilište"],"name:hun_x_preferred":["Harvard Egyetem"],"name:hye_x_preferred":["Հարվարդի համալսարան"],"name:ind_x_preferred":["Universitas Harvard"],"name:isl_x_preferred":["Harvard-háskóli"],"name:jav_x_preferred":["Universitas Harvard"],"name:jpn_x_preferred":["ハーバード大学"],"name:kan_x_preferred":["ಹಾರ್ವರ್ಡ್ ವಿಶ್ವವಿದ್ಯಾನಿಲಯ"],"name:kat_x_preferred":["ჰარვარდის უნივერსიტეტი"],"name:kaz_x_preferred":["Гарвард университеті"],"name:kbp_x_preferred":["Harvard sukulɩ kɩtɛzʊʊ"],"name:khm_x_preferred":["Harvard University"],"name:kir_x_preferred":["Гарвард Университети"],"name:kor_x_preferred":["하버드 대학교"],"name:krc_x_preferred":["Гарвард университет"],"name:kur_x_preferred":["Zanîngeha Harvardê"],"name:lat_x_preferred":["Universitas Harvardiana"],"name:lav_x_preferred":["Hārvarda Universitāte"],"name:lfn_x_preferred":["Universia Harvard"],"name:lit_x_preferred":["Harvardo universitetas"],"name:ltz_x_preferred":["Harvard Universitéit"],"name:mal_x_preferred":["ഹാർവാർഡ് സർവകലാശാല"],"name:mar_x_preferred":["हार्वर्ड विद्यापीठ"],"name:mkd_x_preferred":["Харвард"],"name:msa_x_preferred":["Universiti Harvard"],"name:mya_x_preferred":["ဟားဗတ် တက္ကသိုလ်"],"name:nds_x_preferred":["Harvard University"],"name:nld_x_preferred":["Harvard-universiteit"],"name:nno_x_preferred":["Harvard University"],"name:nor_x_preferred":["Harvard University"],"name:oci_x_preferred":["Universitat Harvard"],"name:pan_x_preferred":["ਹਾਰਵਰਡ ਯੂਨੀਵਰਸਿਟੀ"],"name:pnb_x_preferred":["ہارورڈ یونیورسٹی"],"name:pol_x_preferred":["Uniwersytet Harvarda"],"name:por_x_preferred":["Universidade Harvard"],"name:que_x_preferred":["Harvard Yachay Suntur"],"name:ron_x_preferred":["Universitatea Harvard"],"name:rus_x_preferred":["Гарвардский университет"],"name:san_x_preferred":["हार्वर्ड् विश्वविद्यालयः"],"name:sco_x_preferred":["Harvard Varsity"],"name:slk_x_preferred":["Harvard University"],"name:slv_x_preferred":["Univerza Harvard"],"name:sqi_x_preferred":["Harvard University"],"name:srp_x_preferred":["Универзитет Харвард"],"name:swa_x_preferred":["Chuo Kikuu cha Harvard"],"name:swe_x_preferred":["Harvard University"],"name:tam_x_preferred":["ஆர்வர்டு பல்கலைக்கழகம்"],"name:tat_x_preferred":["Harvard universitetı"],"name:tel_x_preferred":["హార్వర్డ్ విశ్వవిద్యాలయం"],"name:tgl_x_preferred":["Pamantasang Harvard"],"name:tha_x_preferred":["มหาวิทยาลัยฮาร์วาร์ด"],"name:tur_x_preferred":["Harvard Üniversitesi"],"name:uig_x_preferred":["خارۋارد ئۇنىۋېرسىتېتى"],"name:ukr_x_preferred":["Гарвардський університет"],"name:urd_x_preferred":["ہارورڈ یونیورسٹی"],"name:uzb_x_preferred":["Harvard universiteti"],"name:vie_x_preferred":["Đại học Harvard"],"name:war_x_preferred":["Unibersidad Harvard"],"name:wuu_x_preferred":["哈佛大学"],"name:yid_x_preferred":["הארווארד אוניווערסיטעט"],"name:yor_x_preferred":["Yunifásítì Harvard"],"name:zho_x_preferred":["哈佛大学"],"reversegeo:latitude":42.378045,"reversegeo:longitude":-71.116098,"src:geom":"mz","wof:belongsto":[85876607,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"62bc50977e61ddb8f8a1e714fe95069e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108713407,"neighbourhood_id":85876607,"region_id":85688645}],"wof:id":1108713407,"wof:lastmodified":1566624133,"wof:name":"Harvard University","wof:parent_id":85876607,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713413.geojson b/fixtures/microhoods/1108713413.geojson new file mode 100644 index 0000000..fb1c72d --- /dev/null +++ b/fixtures/microhoods/1108713413.geojson @@ -0,0 +1 @@ +{"id":1108713413,"type":"Feature","bbox":[-71.1114797772965,42.39967575192899,-71.1114797772965,42.39967575192899],"geometry":{"type":"Point","coordinates":[-71.1114797772965,42.39967575192899]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1114797773,42.3996757519,-71.1114797773,42.3996757519","geom:latitude":42.399676,"geom:longitude":-71.11148,"iso:country":"US","lbl:latitude":42.399676,"lbl:longitude":-71.11148,"lbl:max_zoom":18,"mps:latitude":42.399676,"mps:longitude":-71.11148,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Ball Square"],"name:eng_x_preferred":["Ball Square"],"name:fra_x_preferred":["Ball Square"],"reversegeo:latitude":42.399676,"reversegeo:longitude":-71.11148,"src:geom":"mz","wof:belongsto":[85688645,102191575,404476445,85633793,85950339,102084643],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4851213"},"wof:country":"US","wof:geomhash":"4a6f59498e0d4fc080ce944348cb37f6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476445,"locality_id":85950339,"microhood_id":1108713413,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713413,"wof:lastmodified":1613672368,"wof:name":"Ball Square","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780899],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713415.geojson b/fixtures/microhoods/1108713415.geojson new file mode 100644 index 0000000..daaca6b --- /dev/null +++ b/fixtures/microhoods/1108713415.geojson @@ -0,0 +1 @@ +{"id":1108713415,"type":"Feature","bbox":[-71.12076301417115,42.39707103182472,-71.12076301417115,42.39707103182472],"geometry":{"type":"Point","coordinates":[-71.12076301417115,42.39707103182472]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1207630142,42.3970710318,-71.1207630142,42.3970710318","geom:latitude":42.397071,"geom:longitude":-71.120763,"iso:country":"US","lbl:latitude":42.397071,"lbl:longitude":-71.120763,"lbl:max_zoom":18,"mps:latitude":42.39632,"mps:longitude":-71.122308,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":12,"mz:tier_metro":1,"name:eng_x_preferred":["Davis Square"],"name:eng_x_variant":["Davis Sq"],"name:fin_x_preferred":["Davis Square"],"name:fra_x_preferred":["Davis Square"],"name:zho_x_preferred":["戴維斯廣場"],"reversegeo:latitude":42.39632,"reversegeo:longitude":-71.122308,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85688645,102191575,404476445,85633793,85950339,102084643],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5241972"},"wof:country":"US","wof:geomhash":"9428283f5eea2a94fd97daa04bf991c4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476445,"locality_id":85950339,"microhood_id":1108713415,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713415,"wof:lastmodified":1613672370,"wof:name":"Davis Square","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85881035],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713417.geojson b/fixtures/microhoods/1108713417.geojson new file mode 100644 index 0000000..539b929 --- /dev/null +++ b/fixtures/microhoods/1108713417.geojson @@ -0,0 +1 @@ +{"id":1108713417,"type":"Feature","bbox":[-71.1038304195,42.3966221921,-71.1038304195,42.3966221921],"geometry":{"type":"Point","coordinates":[-71.1038304195,42.3966221921]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1038304195,42.3966221921,-71.1038304195,42.3966221921","geom:latitude":42.396622,"geom:longitude":-71.10383,"iso:country":"US","lbl:latitude":42.396622,"lbl:longitude":-71.10383,"lbl:max_zoom":18,"mps:latitude":42.39735,"mps:longitude":-71.104329,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Magoun Square"],"name:eng_x_variant":["Magoun Sq"],"name:fra_x_preferred":["Magoun Square"],"reversegeo:latitude":42.39735,"reversegeo:longitude":-71.104329,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85688645,102191575,404476445,85633793,85950339,102084643],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6732388"},"wof:country":"US","wof:geomhash":"5736f6ee389726e0c48045d23b0aaf65","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476445,"locality_id":85950339,"microhood_id":1108713417,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713417,"wof:lastmodified":1613672366,"wof:name":"Magoun Square","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85881037],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713419.geojson b/fixtures/microhoods/1108713419.geojson new file mode 100644 index 0000000..f06eacf --- /dev/null +++ b/fixtures/microhoods/1108713419.geojson @@ -0,0 +1 @@ +{"id":1108713419,"type":"Feature","bbox":[-71.1285940111,42.4008046091,-71.1285940111,42.4008046091],"geometry":{"type":"Point","coordinates":[-71.1285940111,42.4008046091]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1285940111,42.4008046091,-71.1285940111,42.4008046091","geom:latitude":42.400805,"geom:longitude":-71.128594,"iso:country":"US","lbl:latitude":42.400805,"lbl:longitude":-71.128594,"lbl:max_zoom":18,"mps:latitude":42.403073,"mps:longitude":-71.126954,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Teele Square"],"name:eng_x_variant":["Teele Sq"],"name:fra_x_preferred":["Teele Square"],"reversegeo:latitude":42.403073,"reversegeo:longitude":-71.126954,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85688645,102191575,404476445,85633793,85950339,102084643],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7694227"},"wof:country":"US","wof:geomhash":"ce4bea66d7bf51f008d70e542754b8de","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476445,"locality_id":85950339,"microhood_id":1108713419,"neighbourhood_id":-1,"region_id":85688645}],"wof:id":1108713419,"wof:lastmodified":1613672364,"wof:name":"Teele Square","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85881047],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713433.geojson b/fixtures/microhoods/1108713433.geojson new file mode 100644 index 0000000..48a4d90 --- /dev/null +++ b/fixtures/microhoods/1108713433.geojson @@ -0,0 +1 @@ +{"id":1108713433,"type":"Feature","bbox":[-71.08975022831024,42.37513191428646,-71.08280741781593,42.38084294876703],"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.08803428157779,42.38084294876703],[-71.08280741781593,42.37513191428646],[-71.08594000310575,42.37558000339358],[-71.0859683957866,42.37559704514262],[-71.08636140479383,42.37589477923901],[-71.08665790400956,42.37614785333867],[-71.0868752947701,42.37630161646492],[-71.08707001194324,42.37641879124865],[-71.08788580336736,42.37682370961974],[-71.08845745283242,42.37711697768685],[-71.08860928558427,42.37721038448957],[-71.08874327756496,42.37730603886224],[-71.08883056931181,42.37740382758361],[-71.08891000865893,42.37751445272337],[-71.08897561670413,42.37763870701065],[-71.08901719293362,42.37774073063662],[-71.08913628657218,42.37821710519084],[-71.08975022831024,42.38020440998422],[-71.0893440815087,42.38038969130575],[-71.08896235120278,42.38055517714978],[-71.08864857104278,42.38065695382625],[-71.08826021747092,42.38077603127986],[-71.08803428157779,42.38084294876703]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":147849.712774,"geom:bbox":"-71.0897502283,42.3751319143,-71.0828074178,42.3808429488","geom:latitude":42.377859,"geom:longitude":-71.086868,"iso:country":"US","lbl:latitude":42.377974,"lbl:longitude":-71.087105,"lbl:max_zoom":18,"mps:latitude":42.377974,"mps:longitude":-71.087105,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":42.377974,"reversegeo:longitude":-71.087105,"src:geom":"mz","wof:belongsto":[420780901,102191575,404476445,85633793,85950339,102084643,85688645],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"62286570c9339596223c83f97c6b2dc7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476445,"locality_id":85950339,"microhood_id":1108713433,"neighbourhood_id":420780901,"region_id":85688645}],"wof:id":1108713433,"wof:lastmodified":1566624150,"wof:name":"Brickbottom","wof:parent_id":420780901,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780903],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713505.geojson b/fixtures/microhoods/1108713505.geojson new file mode 100644 index 0000000..614d7ab --- /dev/null +++ b/fixtures/microhoods/1108713505.geojson @@ -0,0 +1 @@ +{"id":1108713505,"type":"Feature","bbox":[-122.65855884566659,45.55859979037599,-122.6337665706434,45.559541270813],"geometry":{"type":"Polygon","coordinates":[[[-122.65855884566659,45.55861793957162],[-122.65854887294758,45.559541270813],[-122.6337665706434,45.55951941883696],[-122.63377648700303,45.55859979037599],[-122.65855884566659,45.55861793957162]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":197714.493263,"geom:bbox":"-122.658558846,45.5585997904,-122.633766571,45.5595412708","geom:latitude":45.55907,"geom:longitude":-122.646171,"iso:country":"US","lbl:latitude":45.55907,"lbl:longitude":-122.646172,"lbl:max_zoom":18,"mps:latitude":45.55907,"mps:longitude":-122.646172,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":45.55907,"reversegeo:longitude":-122.646172,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85893257,102191575,1108720843,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"faea7db92412d45da1514249a7a3fb8e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108720843,"microhood_id":1108713505,"neighbourhood_id":85893257,"region_id":85688513}],"wof:id":1108713505,"wof:lastmodified":1566624135,"wof:name":"Alberta Arts District","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893149],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713507.geojson b/fixtures/microhoods/1108713507.geojson new file mode 100644 index 0000000..1a77352 --- /dev/null +++ b/fixtures/microhoods/1108713507.geojson @@ -0,0 +1 @@ +{"id":1108713507,"type":"Feature","bbox":[-122.653653,45.516428,-122.60200352834842,45.51933973206144],"geometry":{"type":"Polygon","coordinates":[[[-122.653653,45.516493],[-122.653644,45.517203],[-122.653639,45.517917],[-122.653635,45.51863],[-122.65363002291683,45.51933973206144],[-122.63732474084323,45.5193138572582],[-122.63707878301676,45.51931174429025],[-122.63196784695387,45.51930672150636],[-122.61730792901523,45.51928097815836],[-122.61300872771103,45.51927369763528],[-122.61300872115591,45.51927431560902],[-122.61255990064899,45.51927354846229],[-122.60207164741371,45.51924783625213],[-122.60200352834842,45.51676496975127],[-122.604199,45.516758],[-122.606447,45.516751],[-122.60682,45.516641],[-122.607097,45.516551],[-122.607861,45.516551],[-122.608836,45.516553],[-122.609892,45.516554],[-122.61043,45.516555],[-122.611239,45.516557],[-122.612566,45.516558],[-122.613501,45.516559],[-122.614425,45.51656],[-122.614619,45.51656],[-122.615212,45.51656],[-122.616148,45.516561],[-122.617081,45.516563],[-122.617783,45.516564],[-122.619462,45.516568],[-122.621169,45.516573],[-122.621736,45.516576],[-122.622842,45.51657],[-122.622954,45.516521],[-122.623067,45.516473],[-122.623344,45.51644],[-122.624416,45.516442],[-122.625852,45.516446],[-122.628193,45.516449],[-122.629558,45.516451],[-122.630943,45.516453],[-122.632328,45.516455],[-122.633694,45.516457],[-122.634666,45.516458],[-122.634783,45.516443],[-122.6349,45.516428],[-122.636086,45.516432],[-122.6371,45.516435],[-122.638115,45.516438],[-122.639129,45.516441],[-122.640143,45.516444],[-122.642495,45.516452],[-122.645557,45.516463],[-122.64655,45.516466],[-122.647516,45.51647],[-122.648577,45.516473],[-122.649592,45.516477],[-122.650606,45.51648],[-122.65162,45.516484],[-122.652635,45.516487],[-122.653653,45.516493]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000144,"geom:area_square_m":1243452.042538,"geom:bbox":"-122.653653,45.516428,-122.602003528,45.5193397321","geom:latitude":45.517905,"geom:longitude":-122.62834,"iso:country":"US","lbl:latitude":45.517875,"lbl:longitude":-122.62834,"lbl:max_zoom":18,"mps:latitude":45.517875,"mps:longitude":-122.62834,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Belmont District"],"reversegeo:latitude":45.517875,"reversegeo:longitude":-122.62834,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85851483,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"3de8b99c39a73e3fe1950084f91f8fb3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108713507,"neighbourhood_id":85851483,"region_id":85688513}],"wof:id":1108713507,"wof:lastmodified":1566624135,"wof:name":"Belmont District","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893157],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713515.geojson b/fixtures/microhoods/1108713515.geojson new file mode 100644 index 0000000..1fac9ed --- /dev/null +++ b/fixtures/microhoods/1108713515.geojson @@ -0,0 +1 @@ +{"id":1108713515,"type":"Feature","bbox":[-122.73295819123129,45.4453640367166,-122.71269775360328,45.45581374284464],"geometry":{"type":"Polygon","coordinates":[[[-122.71284250218923,45.44536425818701],[-122.72664259101617,45.44537250977272],[-122.73107803710457,45.4453640367166],[-122.73104588101063,45.44608421799614],[-122.73295819123129,45.44609383546004],[-122.73217853620967,45.44648918995706],[-122.7307796365301,45.44759384102336],[-122.72846040835039,45.4509775627541],[-122.72760649768907,45.45196749416085],[-122.72581289085007,45.4530032569691],[-122.72414641089513,45.45350355111557],[-122.72329218402686,45.4536410002184],[-122.72104609667755,45.45372564834253],[-122.72013543674481,45.4535662964687],[-122.71763833674893,45.45351220128354],[-122.71636415826511,45.45402760635883],[-122.71478874951369,45.45471686552835],[-122.71281202739223,45.45581374284464],[-122.7128075879181,45.45389697267163],[-122.71269775360328,45.4538294675062],[-122.71275614589337,45.45367709237568],[-122.71281533948068,45.453445132357],[-122.71282132315879,45.45319824981175],[-122.71281554519489,45.44919401953124],[-122.71281708939884,45.44683006951295],[-122.71284250218923,45.44536425818701]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00014,"geom:area_square_m":1213931.671153,"geom:bbox":"-122.732958191,45.4453640367,-122.712697754,45.4558137428","geom:latitude":45.449376,"geom:longitude":-122.720925,"iso:country":"US","lbl:latitude":45.449546,"lbl:longitude":-122.721118,"lbl:max_zoom":18,"mps:latitude":45.449546,"mps:longitude":-122.721118,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ara_x_preferred":["كابيتول هيل"],"name:deu_x_preferred":["Capitol Hill"],"name:fas_x_preferred":["کپیتال هیل"],"name:fra_x_preferred":["Capitol Hill"],"name:kor_x_preferred":["캐피틀힐"],"name:nor_x_preferred":["Capitol Hill"],"name:sco_x_preferred":["Capitol Hill"],"name:tur_x_preferred":["Capitol Hill"],"name:urd_x_preferred":["کیپٹل ہل"],"name:vie_x_preferred":["Capitol Hill"],"name:wuu_x_preferred":["国会山"],"name:zho_x_preferred":["国会山"],"reversegeo:latitude":45.449546,"reversegeo:longitude":-122.721118,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[420781231,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d48c3dbf762c2c66bb9685d1f27c93e1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108713515,"neighbourhood_id":420781231,"region_id":85688513}],"wof:id":1108713515,"wof:lastmodified":1566624136,"wof:name":"Capitol Hill","wof:parent_id":420781231,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85809397],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713517.geojson b/fixtures/microhoods/1108713517.geojson new file mode 100644 index 0000000..a14b9cf --- /dev/null +++ b/fixtures/microhoods/1108713517.geojson @@ -0,0 +1 @@ +{"id":1108713517,"type":"Feature","bbox":[-122.66845120014797,45.50115525228695,-122.653557,45.52854378773314],"geometry":{"type":"Polygon","coordinates":[[[-122.65359608798828,45.5243214528705],[-122.6626906331842,45.52432789909248],[-122.66272594111177,45.52223346427808],[-122.65361102116658,45.52219297741104],[-122.653616,45.521482],[-122.65362,45.520769],[-122.653625,45.520056],[-122.65363,45.519343],[-122.653635,45.51863],[-122.653639,45.517917],[-122.653644,45.517203],[-122.653653,45.516493],[-122.653657,45.515773],[-122.653658,45.515064],[-122.653663,45.514351],[-122.653668,45.513638],[-122.653675,45.512925],[-122.653675,45.51221],[-122.653681,45.511496],[-122.653685,45.510786],[-122.65369,45.510073],[-122.653695,45.50936],[-122.653699,45.508596],[-122.653704,45.507933],[-122.653708,45.50722],[-122.653711,45.506507],[-122.653712,45.506328],[-122.653712,45.505794],[-122.653718,45.505605],[-122.65372,45.504854],[-122.653736,45.504176],[-122.65374,45.5035],[-122.653741,45.503379],[-122.653741,45.503319],[-122.653759,45.503303],[-122.654095,45.503006],[-122.654231,45.50284],[-122.654229,45.502115],[-122.654222,45.501574],[-122.65421304814865,45.50115525228695],[-122.65592188843391,45.50153404300379],[-122.66033506887965,45.50154543724214],[-122.66144350348745,45.50146588448401],[-122.66144729369417,45.50147357675143],[-122.66145169723569,45.50148472859794],[-122.66145480001667,45.50149583133179],[-122.66145685446374,45.50150701528454],[-122.66145806449444,45.50151820112395],[-122.66145856934763,45.50152930888821],[-122.66145845256663,45.5015402510601],[-122.66145775188069,45.50155092878943],[-122.6614541469415,45.50157660973071],[-122.66145425204435,45.50158693738454],[-122.66145627235544,45.50159724048132],[-122.66145992310877,45.50160679936594],[-122.66146954586208,45.5016259297227],[-122.66148177462804,45.50165210928803],[-122.66148631291686,45.50166067651349],[-122.66149547573275,45.50167559407291],[-122.66150095006608,45.50168522094303],[-122.6615161315944,45.50171410846933],[-122.66152149453664,45.50172308493724],[-122.66152940420271,45.501735053349],[-122.66153372689585,45.5017429399448],[-122.66153729859744,45.50175107209049],[-122.66154016871477,45.50175927223373],[-122.66154235701079,45.50176736282226],[-122.66154422550659,45.50177603013943],[-122.66154668599215,45.50178433605474],[-122.66154980853611,45.50179066245158],[-122.66155373866546,45.50179689629388],[-122.6615597762425,45.50180522990932],[-122.66156712805477,45.50181320023437],[-122.66157304705418,45.50181814524784],[-122.66157961194227,45.50182297126329],[-122.66159817922089,45.5018356278252],[-122.66160825831837,45.50184192336499],[-122.66161885843871,45.50184799727896],[-122.661630025396,45.50185368208911],[-122.66164265301396,45.50185922775336],[-122.66167951627995,45.5018736346412],[-122.66169033109765,45.50187766355736],[-122.6617046214972,45.50188234286703],[-122.66171935476618,45.5018866185922],[-122.66176426424217,45.50189880229801],[-122.66177885827229,45.50190321024132],[-122.66179293397448,45.50190809417415],[-122.66180625419348,45.50191366942504],[-122.66181797002143,45.50191968792505],[-122.6618508762086,45.50193939616279],[-122.66186211503113,45.50194542221547],[-122.66187401411538,45.50195058443476],[-122.66188682409134,45.50195458249424],[-122.66190041021169,45.5019575335027],[-122.6619145703555,45.50195961438226],[-122.66192913833449,45.50196094538961],[-122.66194397311307,45.50196159515291],[-122.66195895252044,45.50196158948636],[-122.66197522640013,45.50196090635345],[-122.66200759808969,45.50195885947318],[-122.66202353510116,45.50195831233721],[-122.66203916578709,45.50195866869967],[-122.66205243570049,45.50196002741008],[-122.66206527172758,45.50196231795157],[-122.66207754810425,45.5019654502889],[-122.6620891004388,45.5019693853858],[-122.66209971762716,45.50197413709363],[-122.6621091301747,45.5019797708922],[-122.66211755457543,45.50198667147618],[-122.66212501598217,45.50199428982066],[-122.66213831374333,45.50200911914554],[-122.66214436120184,45.50201616201893],[-122.66215116773674,45.50202508555103],[-122.66215744246901,45.50203441203514],[-122.6621632276194,45.50204402184434],[-122.6621685339678,45.5020538161289],[-122.66217819355205,45.50207333984271],[-122.66218342354364,45.50208287849884],[-122.66219020492572,45.50209313932071],[-122.66219797625122,45.5021028674873],[-122.66220667463814,45.50211194526106],[-122.66221940017245,45.50212330601287],[-122.66222724246488,45.50213064856808],[-122.66223468500704,45.50213835503897],[-122.66224155622062,45.50214641849966],[-122.66224766117129,45.50215485091265],[-122.6622528740949,45.50216365605548],[-122.66227123296436,45.50220143284134],[-122.66228724273934,45.50223187524575],[-122.66229223288076,45.50224219774253],[-122.66229708019003,45.50225341743491],[-122.66230559711724,45.50227618421124],[-122.66232095741027,45.50232197650668],[-122.66232497467622,45.5023332692181],[-122.66232925694518,45.50234440956132],[-122.66233392908296,45.50235533457529],[-122.66233914649811,45.50236596367001],[-122.66234509963353,45.50237619610778],[-122.6623619897575,45.5024008705548],[-122.66238022286281,45.50242942968691],[-122.66238652813779,45.50243860247915],[-122.66239320711195,45.50244736980102],[-122.66240341197357,45.50245958486594],[-122.66240961304399,45.50246807074888],[-122.66241530836288,45.50247701057921],[-122.66242573870163,45.50249577105942],[-122.66244585287917,45.5025349472436],[-122.66245055196643,45.50254529801715],[-122.662454006887,45.50255560786427],[-122.66245645210121,45.50256611666588],[-122.6624580861367,45.50257673438779],[-122.66245905272396,45.50258737792167],[-122.66245944618605,45.50259796667761],[-122.66245931772696,45.5026084143993],[-122.66245868441469,45.50261862853439],[-122.66245537591949,45.50264390037311],[-122.66245530225764,45.5026508109494],[-122.66245604246943,45.50265776685664],[-122.66245835024141,45.50266763406892],[-122.66246405364514,45.50268703416683],[-122.66246648268967,45.50269663630932],[-122.66246857666259,45.50270643425802],[-122.66247024034249,45.5027163820515],[-122.6624714809159,45.50272698589377],[-122.66247333593697,45.50274833586337],[-122.6624745369845,45.50275897180953],[-122.66247634798812,45.50276950197979],[-122.66247913995203,45.5027798577471],[-122.66248373932626,45.50279106662903],[-122.66248973468248,45.5028019726682],[-122.66249689156034,45.50281255949498],[-122.66250508060249,45.50282278114828],[-122.6625142685712,45.5028325564092],[-122.66252451745028,45.5028417650233],[-122.66253559637268,45.50285014381569],[-122.66254736699784,45.50285810265992],[-122.66257136549066,45.50287373261536],[-122.66259495165677,45.50289019175646],[-122.66260689296182,45.5028981594095],[-122.66264044413938,45.50291824569723],[-122.66265095263157,45.50292526012466],[-122.66266085925253,45.50293294822826],[-122.66267983885784,45.50294895907364],[-122.662688905554,45.50295602764321],[-122.66270777556487,45.50296955721156],[-122.66272476091027,45.50298111926369],[-122.66273252594758,45.50298588851505],[-122.66274379531282,45.50299159209844],[-122.66275595401018,45.5029964753072],[-122.66276881788507,45.50300052114233],[-122.6627822503935,45.50300364964426],[-122.66279615182255,45.5030057134859],[-122.66281104229667,45.50300660626422],[-122.66282621574014,45.50300644571518],[-122.6628415427955,45.50300549501335],[-122.66285690937676,45.50300395059497],[-122.66287220588943,45.50300195789855],[-122.66288732363736,45.5029996195495],[-122.66290214673785,45.50299700543378],[-122.66293888423971,45.50298970076782],[-122.6629529536537,45.50298788561926],[-122.66296736891906,45.50298670007475],[-122.66299671148948,45.50298482196568],[-122.6630113881646,45.50298343809578],[-122.66302589685475,45.50298126533185],[-122.66303990697993,45.50297808142349],[-122.66305368713638,45.50297405825251],[-122.66306729032472,45.50296947914063],[-122.66310732015211,45.50295495164922],[-122.66312041309739,45.50295070244855],[-122.66313333895599,45.5029472427717],[-122.66314474756011,45.50294506622873],[-122.66315573665098,45.50294388383135],[-122.66316603942896,45.50294380450114],[-122.66317534597533,45.50294500578669],[-122.66318329337062,45.50294773638162],[-122.66319056343622,45.50295312012982],[-122.66319609436344,45.50296038954265],[-122.6632005005999,45.5029690037894],[-122.66321206012096,45.50299901450007],[-122.66321691821003,45.50300943822241],[-122.66322225869438,45.50301866569567],[-122.66322833130573,45.50302778802362],[-122.66324806280093,45.50305497304324],[-122.66327512993877,45.50309565233],[-122.66328189515116,45.50310487727073],[-122.66329117744299,45.50311673143071],[-122.66329620172037,45.50312433451178],[-122.66330948870176,45.50314737984978],[-122.66331791669572,45.50316002289227],[-122.66332556495207,45.50317213958468],[-122.66333329765003,45.50318251416597],[-122.66334846390698,45.50320504257716],[-122.66335719822646,45.50321636281392],[-122.66336344421265,45.50322561417816],[-122.6633756065033,45.50324462499022],[-122.66338193872772,45.50325392356985],[-122.66339546825422,45.50327265357033],[-122.66340979458637,45.50329098880493],[-122.66341714370373,45.50329976795643],[-122.66342455210984,45.50330813094067],[-122.66343931053166,45.50332326023887],[-122.66344564724767,45.50333029035583],[-122.66344995826273,45.50333747787196],[-122.66345139287222,45.50334452813436],[-122.66345056013395,45.5033518787151],[-122.663447753797,45.50335931617965],[-122.66344315262612,45.50336662835284],[-122.6634368320798,45.50337359550441],[-122.66342779951961,45.50338084156778],[-122.66341743026628,45.50338764816971],[-122.66339576649489,45.50340102275283],[-122.66338597395996,45.50340812337524],[-122.66337795110617,45.50341587752081],[-122.66337266721567,45.50342392065134],[-122.66336939285645,45.50343253671595],[-122.66336788728006,45.50344146631956],[-122.66336803370542,45.50345046140001],[-122.66336983392927,45.50345927389534],[-122.66337341102071,45.50346763874467],[-122.66337784330833,45.50347414501752],[-122.66338322062363,45.50348025023533],[-122.66339065777585,45.50348725640797],[-122.6633991109227,45.50349338554909],[-122.6634089025593,45.50349815034984],[-122.66341991949794,45.50350107546389],[-122.6634321078397,45.50350247254261],[-122.66344505615622,45.50350255124238],[-122.66345918126575,45.50350141985415],[-122.66347354712377,45.50349948132082],[-122.66350225907688,45.50349501494983],[-122.66351624943911,45.50349337484592],[-122.6635297385414,45.5034927672834],[-122.66354249282182,45.50349374945695],[-122.6635550225234,45.50349697488964],[-122.66356680392836,45.50350194305041],[-122.66357816402345,45.50350800608211],[-122.66358923665764,45.5035147194881],[-122.66359955740191,45.50352211978488],[-122.66360844353672,45.5035304235538],[-122.66361443350303,45.50353839048664],[-122.66361899065646,45.50354702605126],[-122.66362223626959,45.50355616214475],[-122.66362421435986,45.50356566718097],[-122.66362501925036,45.50357684253778],[-122.66362480006141,45.50358824832502],[-122.66362362596334,45.5036114269477],[-122.66362378047357,45.50362307764114],[-122.66362495726659,45.50363405151557],[-122.66362706471423,45.5036449662058],[-122.66362995549282,45.50365578330637],[-122.66363353527923,45.50366645685688],[-122.66363776185264,45.50367692956414],[-122.66364264509453,45.50368712776548],[-122.66364824339539,45.50369695765122],[-122.66365467263788,45.50370629896869],[-122.66366210889178,45.50371499683754],[-122.66367139208195,45.50372359648811],[-122.66369120891711,45.50373941634114],[-122.6637160940471,45.5037599669702],[-122.66373344321018,45.50377666446882],[-122.66375669520302,45.50379855423292],[-122.66376388711517,45.50380636687702],[-122.66377010255862,45.5038143948415],[-122.66377566133362,45.50382276152683],[-122.66378555178487,45.50384008041667],[-122.6637953856423,45.50385904191288],[-122.66379983320127,45.50386939622057],[-122.66380299976262,45.50388021642605],[-122.66380500031079,45.50389133379778],[-122.6638061366796,45.50390267089553],[-122.66380663973617,45.50391416601908],[-122.66380668644857,45.50392577509673],[-122.6638059129991,45.50394920478819],[-122.66380145555866,45.50402000629236],[-122.663800376682,45.50404353164259],[-122.66380019162906,45.50406688762278],[-122.663800675821,45.5040784582638],[-122.66380173583302,45.50408992187189],[-122.6638035728878,45.50410124193068],[-122.66380644300513,45.50411237059146],[-122.66381024018384,45.5041226108965],[-122.66381479823558,45.50413270765288],[-122.66382465365257,45.50415274439209],[-122.66382921439926,45.50416281344106],[-122.66383302415437,45.50417300336971],[-122.66383585654249,45.50418364974976],[-122.66383780588664,45.50419443526733],[-122.66383917851239,45.50420530514793],[-122.66384249868568,45.50423790029667],[-122.66384420009481,45.50424858632859],[-122.6638466668686,45.50425908474077],[-122.6638538911201,45.50428015522115],[-122.6638643744595,45.50431472912556],[-122.66386829470737,45.50432638659899],[-122.66387258506117,45.50433716453412],[-122.66387740362435,45.50434789650721],[-122.66388800913461,45.50436927608241],[-122.66390452106785,45.50440129506288],[-122.6639146280131,45.50442272435526],[-122.66391902885967,45.50443349912404],[-122.66392314314368,45.50444515153614],[-122.66393078690845,45.50446833421312],[-122.6639351347544,45.50447969134148],[-122.6639447323549,45.50450070948362],[-122.6639487639939,45.5045105033408],[-122.66395243630679,45.50452046088893],[-122.6639662964133,45.50456103523501],[-122.66397024361066,45.50457117094711],[-122.66397533256675,45.50458272637443],[-122.66398091469792,45.50459420373069],[-122.66399304285257,45.50461700166932],[-122.66402511450484,45.50467366436931],[-122.66403730464323,45.50469637098594],[-122.66404296941943,45.5047077626955],[-122.6640482039026,45.50471919028907],[-122.66406117827025,45.50474988379545],[-122.66406666068843,45.50476082030475],[-122.66407842592369,45.50478240496752],[-122.66408400266499,45.5047932004437],[-122.66409679826789,45.5048210387482],[-122.66410154137257,45.50483009404824],[-122.66410769932385,45.50484008301898],[-122.66412079406574,45.50485989096772],[-122.66413348097252,45.50488160465698],[-122.66414019318431,45.50489248384867],[-122.66415480967233,45.50491421893116],[-122.6641783724822,45.50494678596782],[-122.66420277881016,45.50497930324863],[-122.6642276962795,45.50501165681947],[-122.66424480918567,45.50503296688866],[-122.66425365309962,45.50504346641369],[-122.66426279345767,45.50505380539361],[-122.66427234344744,45.50506392338876],[-122.66428245218934,45.50507374044246],[-122.66429266154255,45.50508272015221],[-122.66430333981633,45.50509144802826],[-122.66433653795596,45.50511700143846],[-122.66434750279232,45.50512557254375],[-122.66435816759137,45.50513430419064],[-122.66436835897827,45.5051432901865],[-122.66437844166903,45.50515311541093],[-122.66438796111609,45.5051632434615],[-122.66439706643982,45.50517359375181],[-122.66440587172625,45.50518410647182],[-122.66442290737727,45.50520544291803],[-122.66448109664812,45.50528092816527],[-122.66449831555548,45.50530216132395],[-122.66450722324984,45.50531259972974],[-122.66451642469328,45.50532285933338],[-122.66452601331063,45.505332879066],[-122.66455470909408,45.50536029843455],[-122.6645638503504,45.50536947074927],[-122.66457216156341,45.50537855429208],[-122.66458812282939,45.50539673396483],[-122.6646022650069,45.50541222219022],[-122.66460879216575,45.50542014226807],[-122.6646151890689,45.50542937941941],[-122.66462084306528,45.50543894457877],[-122.66463633271573,45.50546840813008],[-122.66464190586376,45.50547812689938],[-122.66465488831624,45.5054981600118],[-122.66466098967366,45.50550832325651],[-122.66466609030783,45.50551866215106],[-122.66467037527175,45.50552928813024],[-122.66467402961833,45.50554012753349],[-122.66467718809484,45.50555112055107],[-122.66467994232953,45.50556221933511],[-122.6646844249228,45.50558458436366],[-122.66468615597634,45.50559578765058],[-122.66468748907621,45.50560696638185],[-122.66468833439092,45.50561809222665],[-122.66468855896973,45.5056291318175],[-122.66468798045467,45.50564004926876],[-122.66468635899558,45.50565080051027],[-122.66468389940835,45.50566028567604],[-122.6646777908644,45.50567908790652],[-122.66467512466465,45.50568858188156],[-122.66467312591315,45.50569914361209],[-122.66467196798475,45.50570987091855],[-122.66467142630063,45.50572072036022],[-122.6646713122146,45.50573165542178],[-122.66467197786622,45.50576467779635],[-122.6646718709667,45.50578661400542],[-122.66467121968812,45.5057974772829],[-122.6646699440804,45.50580822597607],[-122.66466478415741,45.50583618150862],[-122.66466373492514,45.50584790854946],[-122.66466378882407,45.5058597092478],[-122.66466496022721,45.50587152001676],[-122.66466735423744,45.50588327664015],[-122.66467096995645,45.50589468699665],[-122.66467558190715,45.50590601235874],[-122.66468089903529,45.50591727790921],[-122.6646866895756,45.50592850694235],[-122.66471127736328,45.50597340668359],[-122.66471708946315,45.50598471440188],[-122.66472248294812,45.50599609640715],[-122.6647272781551,45.50600757788227],[-122.664731298116,45.50601901717379],[-122.664734782681,45.50603052823402],[-122.66474420870327,45.50606493359792],[-122.6647477076413,45.5060761493806],[-122.6647517743146,45.50608710514894],[-122.66475669798064,45.50609769072837],[-122.6647628307791,45.50610777013213],[-122.6647694657358,45.50611617613949],[-122.66477691726108,45.506124235253],[-122.66479259465942,45.50613996188484],[-122.66480002103187,45.50614793474402],[-122.6648078929687,45.50615755077631],[-122.66482657343502,45.50618188800607],[-122.66483271431831,45.50619149081164],[-122.66483817158367,45.50620151920361],[-122.66484313028404,45.50621186489607],[-122.66484774492966,45.50622243911981],[-122.66486514170343,45.50626577100373],[-122.66486976263727,45.50627662033827],[-122.66487472313426,45.50628738908611],[-122.66488016692489,45.50629803128888],[-122.66488648836955,45.50630901975151],[-122.6649067040567,45.50634170308059],[-122.6649128817709,45.50635261283887],[-122.66491871632866,45.5063636365465],[-122.66492969913133,45.5063858967487],[-122.66495602785398,45.5064415554],[-122.66496729721925,45.50646317026699],[-122.66497338689854,45.50647364434266],[-122.66497993022708,45.50648379230174],[-122.66499071989197,45.50649907939685],[-122.66499702876017,45.50650896922978],[-122.66500889281015,45.5065292147682],[-122.66501512262666,45.50653929661294],[-122.66502202528127,45.50654916314497],[-122.66502985320068,45.50655871615227],[-122.66505554771275,45.5065867361572],[-122.66506353014236,45.50659636722408],[-122.66507019474345,45.50660566336143],[-122.66507625298172,45.50661521258178],[-122.66509846921701,45.50665414351753],[-122.66510445648838,45.50666363103247],[-122.66512533333558,45.50669308261067],[-122.66514182909916,45.50671910998391],[-122.66514815144211,45.50672738935792],[-122.66515659201252,45.50673624100272],[-122.66516623991868,45.50674456381403],[-122.66517684902219,45.50675238549273],[-122.66518823966,45.50675969974344],[-122.66520029415278,45.50676646060838],[-122.66521293973705,45.50677258498555],[-122.66524093034296,45.50678414059057],[-122.66525300280207,45.50678960770355],[-122.6652646934772,45.50679553502546],[-122.66527590535026,45.50680188478244],[-122.66528650906388,45.5068086443832],[-122.66529633573475,45.50681582704832],[-122.6653051652757,45.50682347181043],[-122.66531271920893,45.50683164918021],[-122.66531887177031,45.50684051339985],[-122.66532391042072,45.5068498170516],[-122.66533710667225,45.50687860938245],[-122.66534236091833,45.50688796276321],[-122.66534826913798,45.50689640076162],[-122.66535503075711,45.50690450131442],[-122.6653624706043,45.50691226253311],[-122.66537044494905,45.50691966804931],[-122.66538449549843,45.50693155917962],[-122.66539126699904,45.50693759288217],[-122.66541701720665,45.50696429314156],[-122.66544280514351,45.50698943837677],[-122.66545131937578,45.50699803249062],[-122.66545949494319,45.50700681043447],[-122.66546713241974,45.50701583264584],[-122.66547388505572,45.50702483911682],[-122.66549266074348,45.50705261336188],[-122.66549963077176,45.50706234948528],[-122.66550688736264,45.50707200313485],[-122.66553661171706,45.5071101323274],[-122.66555141864788,45.50713003768837],[-122.66555958074055,45.50714020756362],[-122.66556833122974,45.50714935566511],[-122.66557801147526,45.50715811029175],[-122.66558839330499,45.50716653502896],[-122.66559929795422,45.50717466765033],[-122.66561058977733,45.50718251822887],[-122.6656221663664,45.50719007228498],[-122.66563395316123,45.50719728889752],[-122.66564589356798,45.50720409944488],[-122.66566276752232,45.50721322046505],[-122.6656868064393,45.50722748307338],[-122.66569898939119,45.50723435090677],[-122.66570747757231,45.50723862622547],[-122.66573807508922,45.5072531985691],[-122.66574945584556,45.50725806629887],[-122.66576133157359,45.5072623831665],[-122.66577428078841,45.50726607551402],[-122.66578776989073,45.50726913767548],[-122.6658016228107,45.50727179503217],[-122.66584382386613,45.5072793276714],[-122.6658576049209,45.50728234639282],[-122.6658729858752,45.50728652727448],[-122.66588767243178,45.50729147558454],[-122.66590146516465,45.50729720076616],[-122.66591180207863,45.50730238515874],[-122.66592151376518,45.50730791769517],[-122.66593069993725,45.50731361769289],[-122.66593794844329,45.50731842372102],[-122.66594465885846,45.50732347653449],[-122.66595220021529,45.50733054518436],[-122.66595882798545,45.5073381741377],[-122.66596484310456,45.50734613927253],[-122.66597526625682,45.50736135310508],[-122.6659795323561,45.50736861376451],[-122.66598285163109,45.50737572647755],[-122.66598868349391,45.50739057516027],[-122.66599314991751,45.50740088160179],[-122.66599826941629,45.50741129191802],[-122.66600400336276,45.50742172426667],[-122.66601035085857,45.50743210058304],[-122.66601735502283,45.50744234406155],[-122.6660251056871,45.50745236971247],[-122.66603299648855,45.50746139311153],[-122.66604141819437,45.50747022827254],[-122.66606800114022,45.50749629180054],[-122.66607675073111,45.50750504259588],[-122.6660851733352,45.50751393252114],[-122.66609378817877,45.50752374788851],[-122.66611836159336,45.5075535786372],[-122.66612683989302,45.50756329578736],[-122.66613583741892,45.50757270508453],[-122.66614450346648,45.50758083575857],[-122.66617149424748,45.50760455730023],[-122.6661799159533,45.50761272007683],[-122.66618868261212,45.50762239944367],[-122.66619683392503,45.5076323910667],[-122.66621265325716,45.507652678381],[-122.66622097524996,45.50766267692374],[-122.6662296395009,45.50767215230721],[-122.66624769923135,45.50769083802825],[-122.6662564533138,45.50770033355263],[-122.66626383566879,45.50770904339543],[-122.66627089552861,45.50771791062467],[-122.66629175261289,45.50774469613284],[-122.66632138533917,45.50778000637222],[-122.66632816761957,45.50778896235688],[-122.66634257390177,45.50781039161875],[-122.6663493822333,45.50781997840773],[-122.66635655348422,45.50782949279682],[-122.66638626705887,45.50786718645756],[-122.66640872763593,45.50789730724641],[-122.66641692566121,45.50790666864199],[-122.66644346009808,45.5079339979905],[-122.66645168327618,45.50794331531162],[-122.66645890393444,45.50795298454881],[-122.66646450043866,45.50796256942487],[-122.66646909711797,45.50797251251231],[-122.66647297963664,45.50798271937867],[-122.66647639053973,45.50799311133036],[-122.66648579949404,45.50802478703478],[-122.66648928316073,45.50803534077243],[-122.66649326449406,45.50804581266694],[-122.66649791237734,45.50805620082968],[-122.66650310104642,45.50806648952204],[-122.66650867329611,45.50807670833277],[-122.66653224958075,45.50811738965675],[-122.66653789279736,45.50812763301056],[-122.66654319465417,45.50813795820356],[-122.66654825576246,45.5081488147318],[-122.66655296113794,45.50815975058077],[-122.66656642239248,45.50819264058548],[-122.6665711601073,45.50820349647363],[-122.6665762742162,45.50821422204373],[-122.66658194617891,45.50822475874811],[-122.6665875875989,45.508233991662],[-122.66660542454717,45.50826135232887],[-122.6666111279509,45.50827111783184],[-122.66661645226559,45.50828097272846],[-122.66663641462783,45.50831994846893],[-122.66665054692389,45.50834434960682],[-122.6666554966411,45.50835465902148],[-122.66666372071752,45.50837528477007],[-122.66666794549431,45.50838511383719],[-122.66667289251656,45.50839424977506],[-122.66667910436675,45.50840235829636],[-122.66668481226208,45.50840763513005],[-122.66669969734636,45.50841972928849],[-122.66670826278258,45.5084274248258],[-122.66671694769475,45.50843628942371],[-122.6667251448217,45.50844579174729],[-122.66673275355218,45.50845580085137],[-122.66673962476578,45.50846622734056],[-122.66674554107021,45.50847702022168],[-122.66675020691982,45.50848816438548],[-122.66675323783558,45.50849896922371],[-122.66675519885787,45.50851000887915],[-122.66675639900707,45.50852121221335],[-122.6667570943031,45.50853252256751],[-122.66675815072189,45.50856668465816],[-122.66675874450829,45.50857803529387],[-122.66675975151972,45.50858931478908],[-122.66676137208049,45.50860048788956],[-122.66676915688073,45.50863558543678],[-122.6667707289325,45.50864621901162],[-122.66677464199387,45.50868917256464],[-122.66677632184343,45.50869987286058],[-122.66677877244756,45.50871059770659],[-122.66678181863468,45.50872126526239],[-122.66679558890965,45.50876363895226],[-122.66679842219605,45.50877420640123],[-122.66680473555587,45.50880388350925],[-122.66680752751978,45.50881361240483],[-122.66681145764913,45.50882372091064],[-122.66681617200778,45.50883372491118],[-122.66683171555711,45.50886369535269],[-122.66683632121959,45.50887387058057],[-122.66684062145484,45.50888543960399],[-122.6668513922551,45.50892088007165],[-122.66685543287727,45.50893266061007],[-122.66685987504634,45.50894441722362],[-122.66686461365947,45.50895615494861],[-122.6668746658075,45.50897958947135],[-122.66690084271487,45.50903801488887],[-122.66691100445736,45.50906128129134],[-122.66692830241647,45.50910343942405],[-122.66693264307592,45.5091127250748],[-122.66693771765895,45.50912175261446],[-122.66694459965234,45.50913160043728],[-122.66696832685395,45.50916045077732],[-122.66697577748091,45.5091704906015],[-122.66698263252485,45.50918080112389],[-122.6669888937824,45.50919133890644],[-122.66699451454113,45.50920207561993],[-122.66699939957964,45.50921299930313],[-122.66700339708264,45.50922411121498],[-122.66700639386245,45.50923544975691],[-122.6670085668871,45.50924693812571],[-122.66701014432874,45.50925853288341],[-122.66701130764706,45.50927019625788],[-122.66701456224332,45.509316922128],[-122.66701564201827,45.5093284532884],[-122.66701710896714,45.50933983209949],[-122.66701915712599,45.50935099183077],[-122.66702202903997,45.50936184245926],[-122.66702603822108,45.5093722687806],[-122.66703158531796,45.50938212033681],[-122.66703824991905,45.50939049248993],[-122.66704614161883,45.50939838242003],[-122.66705486246359,45.50940591666326],[-122.66706406480534,45.50941319594488],[-122.66708961558699,45.50943264722839],[-122.66709659190349,45.50943783394241],[-122.66711117695044,45.50944779439617],[-122.66712135126936,45.50945523798016],[-122.66713098659908,45.5094632317739],[-122.6671397802074,45.50947180788322],[-122.66714649062259,45.50947966821391],[-122.66715259108167,45.5094878684905],[-122.66718305924117,45.50953301468688],[-122.66718896835911,45.5095431230635],[-122.66719373571833,45.50955374198768],[-122.66719745743853,45.50956470274491],[-122.6672004057093,45.50957591594171],[-122.66720279432963,45.50958731170005],[-122.66720652143975,45.50961045133993],[-122.66721111272918,45.50964553818493],[-122.66721447063169,45.5096689245764],[-122.66721648914614,45.50968056016657],[-122.66721887417323,45.50969212839471],[-122.66722176315517,45.50970360282062],[-122.66722505458236,45.50971436650617],[-122.66722875114975,45.50972503764893],[-122.6672443234452,45.50976701272129],[-122.667252662506,45.50979422659244],[-122.66725642644703,45.50980429148469],[-122.66726079405596,45.50981434315511],[-122.66727478262158,45.50984477011133],[-122.66727880348076,45.50985474119503],[-122.6672936643105,45.50989491194674],[-122.66729783249345,45.5099047810382],[-122.66730251720764,45.50991447008331],[-122.66731971365712,45.50994484914143],[-122.66733490866014,45.50997426249037],[-122.66734533450735,45.50999346995353],[-122.66735097233406,45.51000273783072],[-122.66736096160001,45.51001804285592],[-122.66736629489787,45.51002740767597],[-122.66737621229859,45.51004667240781],[-122.66738773049718,45.51006796420324],[-122.66739317788107,45.51007876810868],[-122.66739784373064,45.51008977975518],[-122.66740139926254,45.51010113323134],[-122.66740398730889,45.51011271522256],[-122.66740586388951,45.5101244646649],[-122.66740723022704,45.51013633371432],[-122.66740824442499,45.51014828522893],[-122.66741106603332,45.51019636762272],[-122.66741315371804,45.51022023096387],[-122.66741479853331,45.51023201060087],[-122.66741709193225,45.51024362655937],[-122.66742028454476,45.51025501399878],[-122.66742470425594,45.51026608856306],[-122.66743044988053,45.51027654745207],[-122.66743729234803,45.51028671424075],[-122.6674448363998,45.51029667643279],[-122.66746843244736,45.51032598635624],[-122.66748399486134,45.51034608321369],[-122.66750552298711,45.51036988542778],[-122.6675120528409,45.51037801255017],[-122.66751767629461,45.51038648150148],[-122.6675226260118,45.51039521925706],[-122.66754240421942,45.51043341040965],[-122.66754650053711,45.51044344245253],[-122.6675498314902,45.51045372944947],[-122.66755247792703,45.51046420655973],[-122.66755447218695,45.51047482342155],[-122.66755580169357,45.51048553911606],[-122.66755640715807,45.51049632090815],[-122.66755621581693,45.51050805327331],[-122.66755249499501,45.51055494430896],[-122.66755238180728,45.51056653564962],[-122.66755328461417,45.51057801493346],[-122.66755551962257,45.5105896245254],[-122.66755864036986,45.51060115605459],[-122.66756896740237,45.51063595333298],[-122.66757294424414,45.51064747163281],[-122.6675778023332,45.51065878030065],[-122.6675835973651,45.51066938075834],[-122.66759022064369,45.51067977221397],[-122.66761153317381,45.51071042847634],[-122.6676255810282,45.51073155382812],[-122.6676477568393,45.5107604241221],[-122.66766216401984,45.510781304573],[-122.66768195660052,45.51080792620814],[-122.6676882151631,45.5108169465512],[-122.66769381526055,45.51082617400376],[-122.6676990892696,45.51083693243847],[-122.66770347304818,45.51084795023182],[-122.66771819733401,45.51089251429433],[-122.66772258111259,45.51090325571943],[-122.66772786949467,45.51091358921651],[-122.66773446223054,45.51092334733464],[-122.66774259018722,45.5109323815086],[-122.66775179971553,45.51094095424647],[-122.66777100749295,45.5109578302859],[-122.66777981906756,45.51096667874739],[-122.66778778712414,45.51097648218139],[-122.66780216106699,45.51099720517352],[-122.66780914097676,45.51100785844663],[-122.6678158208492,45.51101868357513],[-122.66782199047857,45.51102967741133],[-122.66782738486185,45.51104085380445],[-122.66783167521565,45.51105224423013],[-122.66783453994309,45.51106354274444],[-122.66783639226921,45.51107501437271],[-122.6678375843336,45.51108659364551],[-122.66784010949786,45.51112145546363],[-122.66784150368316,45.51113295163115],[-122.66784366323313,45.51114429482467],[-122.66784694298221,45.51115541768649],[-122.66785123513266,45.51116552388316],[-122.66785643997139,45.51117545318505],[-122.66787387806768,45.51120489673696],[-122.66787914668684,45.51121482477286],[-122.66788353226207,45.51122493032938],[-122.6678868784865,45.51123582781],[-122.66788912966457,45.51124694561759],[-122.66789057864712,45.511258227096],[-122.66789145989442,45.51126962566133],[-122.66789314513389,45.5113273134331],[-122.66789389432884,45.51133882970293],[-122.66789511693597,45.51135028994395],[-122.6678969944149,45.51136166897577],[-122.66789948364656,45.51137237631776],[-122.66790807154068,45.51140438879685],[-122.66791028948111,45.51141560225666],[-122.66791194238124,45.51142688873738],[-122.66791312276752,45.51143822305853],[-122.66791388723381,45.51144958255777],[-122.66791426093299,45.51146094520227],[-122.66791423578016,45.51147229021826],[-122.66791377045283,45.5114835930548],[-122.66791278769591,45.51149482727264],[-122.66791117252502,45.51150596076681],[-122.66790877042996,45.51151695513731],[-122.6679053631201,45.51152823215505],[-122.66789780739025,45.51155055767227],[-122.66789488157737,45.51156178117506],[-122.66789334006833,45.51157216365286],[-122.66789289450394,45.51158263363032],[-122.66789349098529,45.51159314704191],[-122.6678952247338,45.51160439571652],[-122.66789782625483,45.51161565005447],[-122.66790102246064,45.51162691194424],[-122.66791568835595,45.5116721149691],[-122.66791897349495,45.51168348889981],[-122.66792955744562,45.51172829717873],[-122.66793262698897,45.51173936830558],[-122.66794415417068,45.51177434680743],[-122.66794693715143,45.51178523033254],[-122.66794921258403,45.51179620450438],[-122.66795664614303,45.51184039137204],[-122.66795887037168,45.5118513680511],[-122.66796157340237,45.51186225533836],[-122.66797248344149,45.51189727782914],[-122.6679753409824,45.51190917797996],[-122.66797760563523,45.51192119395705],[-122.6679794840125,45.51193328799005],[-122.66798456398541,45.51196974381644],[-122.66798662472068,45.51198186679618],[-122.66798916964787,45.51199393122946],[-122.66799179003357,45.51200404545916],[-122.66800056837052,45.51203427986277],[-122.66800313036573,45.51204441108176],[-122.66800550281638,45.51205623880865],[-122.6680073254981,45.51206814144386],[-122.66800983359437,45.51209209778728],[-122.66801190061783,45.51212821609781],[-122.66801257974421,45.51216431298214],[-122.66801199134767,45.51218820192799],[-122.66801118376225,45.5122000340312],[-122.66800988210339,45.51221174904468],[-122.66800793096259,45.51222330542156],[-122.66800150261841,45.51225113501558],[-122.66799992158353,45.51226150981221],[-122.66799728682479,45.51229248059256],[-122.66799619267677,45.51230255196257],[-122.6679945370817,45.51231237656688],[-122.66799083512441,45.51232830479816],[-122.66798937895534,45.51233850961569],[-122.66798894237411,45.51234892783165],[-122.66798952088918,45.51235943921156],[-122.66799118995895,45.51236992226204],[-122.66799410768702,45.51238024982434],[-122.6679972455023,45.51238784284129],[-122.66800117383501,45.51239522749312],[-122.66800586393913,45.51240235404947],[-122.66801233450413,45.51241043681347],[-122.66803377728993,45.51243354885375],[-122.66804692862571,45.51244890043031],[-122.66805383217869,45.51245622967829],[-122.66806164213175,45.51246301818642],[-122.66807087860948,45.5124691620877],[-122.66808122989652,45.51247474132868],[-122.66809235642964,45.51247998504666],[-122.66811578808547,45.51249029936933],[-122.6681290292528,45.51249636835739],[-122.66815037242965,45.51250633442012],[-122.66816907524985,45.51251506758484],[-122.6682055297824,45.51253095547096],[-122.66821716745689,45.51253644342865],[-122.66822820505679,45.51254227383235],[-122.66823839105379,45.51254861601661],[-122.66824883037573,45.51255665658329],[-122.66825833904299,45.51256525425364],[-122.6682765775382,45.51258277000426],[-122.66828625868202,45.5125910327784],[-122.66829652373077,45.51259834941791],[-122.66830756133068,45.51260485400594],[-122.66832943081624,45.5126154138093],[-122.66833994918993,45.51262085517604],[-122.66835010015264,45.51262744285498],[-122.66835888208287,45.51263491749336],[-122.66836592756964,45.51264326020578],[-122.66837097969477,45.51265245273667],[-122.66837454690479,45.51266230623668],[-122.66838238111237,45.51269404981698],[-122.6683857453031,45.51270500555622],[-122.66838967363583,45.512716006617],[-122.66840698417136,45.51276034635922],[-122.66841705698066,45.51278972802106],[-122.66842082002337,45.51279939390773],[-122.66842583082605,45.51281051329497],[-122.66843635818284,45.51283259657777],[-122.66844090006491,45.51284377324238],[-122.66844448164797,45.51285549252839],[-122.66844709305047,45.51286740066001],[-122.66844895256312,45.51287944224173],[-122.66845020840789,45.51289157320889],[-122.66845094772138,45.5129037564214],[-122.66845120014797,45.51291595914558],[-122.66845093963654,45.51292814927722],[-122.66845008174545,45.51294029597123],[-122.66844848184591,45.51295236271707],[-122.66844592524062,45.51296430733876],[-122.66844269220391,45.51297485952072],[-122.66843880699031,45.51298531664742],[-122.66842615332122,45.51301648028347],[-122.66842242710943,45.5130269002624],[-122.66840906197463,45.51306760381774],[-122.66840536720387,45.51307712613268],[-122.6683989577243,45.51309222636677],[-122.66839613431935,45.51310080255264],[-122.66839145050348,45.51311779251178],[-122.66838867470925,45.51312595952476],[-122.66838321115567,45.51313841651492],[-122.66838018203656,45.51314644126008],[-122.66837761195653,45.51315489091009],[-122.66837547755941,45.51316366348735],[-122.66837377165868,45.51317266897459],[-122.66837251132233,45.51318182994448],[-122.6683700759896,45.51321402772334],[-122.66836875546615,45.51322451942749],[-122.66836652405097,45.51323470456833],[-122.66836316884337,45.51324449690597],[-122.66835592123566,45.51326326386965],[-122.66835381378802,45.51327244874536],[-122.66835390451784,45.51328211958506],[-122.66835659676879,45.51329150841207],[-122.66836174860694,45.51330040182987],[-122.66837515057264,45.51331832777824],[-122.66838078570441,45.51332738234085],[-122.66838561504737,45.51333699714665],[-122.66838959368579,45.51334705951691],[-122.66839282672247,45.51335802268287],[-122.66839526295354,45.51336928359454],[-122.66839709012685,45.51338075978877],[-122.66839844927786,45.51339238957566],[-122.66840012104258,45.51341593430007],[-122.66840067170988,45.51343967541465],[-122.66840051899625,45.51345157586882],[-122.66839933950831,45.51347524394792],[-122.66839739645235,45.51349889942729],[-122.66839499076401,45.51352251964547],[-122.66839217993548,45.51354607690519],[-122.66838879418518,45.51356952462451],[-122.6683867612977,45.51358118269925],[-122.66838439423692,45.51359277719353],[-122.6683815780185,45.51360428607548],[-122.66837816531874,45.51361568416562],[-122.66837435376698,45.51362621859987],[-122.6683616587754,45.51365757702131],[-122.66835791010571,45.51366811270675],[-122.66835452615204,45.51367980790062],[-122.66835180156178,45.51369161954672],[-122.6683495701466,45.51370351931813],[-122.66834770793903,45.51371548266491],[-122.66834473631206,45.51373953524764],[-122.66834241237045,45.51376367657727],[-122.66834054567128,45.51378783929896],[-122.6683391541809,45.51381196487076],[-122.66833844361351,45.51383597586639],[-122.66833887031326,45.51386837281692],[-122.66833873287104,45.51387851818383],[-122.6683379603199,45.5138885974533],[-122.66833599390772,45.51390030141416],[-122.6683278946971,45.51393456725872],[-122.66832086807497,45.51396731917995],[-122.66831825218088,45.51397810093449],[-122.66831525180783,45.51398872720517],[-122.66831168729277,45.51399913063759],[-122.66830734214173,45.51400923254677],[-122.66829418541609,45.51403425251551],[-122.66828994177469,45.51404363429278],[-122.6682861625623,45.51405320617152],[-122.66828292772895,45.51406294360197],[-122.66828034597081,45.51407283210594],[-122.66827830859178,45.5140841640058],[-122.66827703208575,45.51409563187098],[-122.66827630984025,45.51410719730324],[-122.66827598195516,45.51411883134639],[-122.66827625773796,45.51416564194782],[-122.66827598914169,45.51418897736174],[-122.66827537649068,45.51420056228866],[-122.66827424551172,45.51421205782717],[-122.6682723994738,45.51422342935616],[-122.66826958684868,45.51423463218266],[-122.66826549412424,45.51424595460774],[-122.66826049769462,45.51425710518303],[-122.66824381238654,45.51429000736174],[-122.66823883212659,45.51430091557948],[-122.668234747487,45.5143118458268],[-122.66823194025173,45.51432209434807],[-122.6682271423498,45.51434251962456],[-122.66822084336304,45.5143634151129],[-122.66821828406277,45.51437404445822],[-122.66821237674147,45.51440696985915],[-122.6682101390381,45.51441810214776],[-122.66820748900803,45.51442892662033],[-122.6682044491091,45.51443975046133],[-122.66819091509102,45.51448306405938],[-122.66818779703868,45.51449391118057],[-122.66818506346527,45.51450477529552],[-122.66818289313552,45.51451566395784],[-122.66818150434011,45.51452658786875],[-122.66818107045383,45.5145380883765],[-122.66818149445866,45.51454962727988],[-122.6681825391993,45.51456119387776],[-122.66818401333468,45.51457277998697],[-122.66819133280762,45.51461919804847],[-122.66819288958804,45.51463079736474],[-122.66819406368612,45.51464238408911],[-122.66819467723545,45.51465395255634],[-122.66819451194543,45.51466549395383],[-122.66819339893279,45.51467699191532],[-122.66819152414877,45.51468846091871],[-122.66818912205372,45.51469990662923],[-122.66817776285696,45.51474548109259],[-122.66817522242131,45.51475680593283],[-122.66816888570533,45.51478970593094],[-122.66816636323601,45.51480033771358],[-122.66816317691168,45.51481068560243],[-122.66815685187377,45.51482678434297],[-122.66815325412105,45.51483733806418],[-122.66815020523899,45.51484819518861],[-122.66814521330095,45.5148705376435],[-122.66813449819624,45.51492791517217],[-122.6681319209297,45.51493939419593],[-122.66812893762463,45.51495080712294],[-122.66812539017756,45.5149621218503],[-122.66812144387852,45.51497265414415],[-122.66810809760835,45.51500398726598],[-122.66810391774733,45.51501448870798],[-122.66809988700666,45.51502602940212],[-122.6680962982371,45.51503764940693],[-122.66808337148017,45.51508416276428],[-122.66807980786342,45.51509559706389],[-122.66807581036042,45.51510685259208],[-122.66807119122322,45.51511786136645],[-122.66806082466485,45.51513854317718],[-122.66805611749277,45.51514893947291],[-122.66805263292777,45.51515898389408],[-122.66804990654087,45.51516923792628],[-122.66804342519609,45.51520069809113],[-122.66804094494762,45.51521126307258],[-122.66803754302762,45.51522301648627],[-122.668033575169,45.51523474220095],[-122.66802920576349,45.51524644839971],[-122.66800570224238,45.51530500957131],[-122.66800147117738,45.51531681080482],[-122.66799771532119,45.51532868253607],[-122.66799467362564,45.51534015518341],[-122.66799208737592,45.5153516945518],[-122.66798780420865,45.51537489980402],[-122.66797846711958,45.51543311148892],[-122.66797379228686,45.51545626635045],[-122.66797089252513,45.51546776729769],[-122.66796754630067,45.51547903156396],[-122.66796380841078,45.51549024295296],[-122.6679430088187,45.51554603234253],[-122.6679390652146,45.51555722924057],[-122.66793541985119,45.51556847208719],[-122.66793197032048,45.51558045014465],[-122.66792887562431,45.51559248296281],[-122.66792339320615,45.51561665811804],[-122.66790648421755,45.51570151090444],[-122.66790119403888,45.51572553431254],[-122.66789826103943,45.51573743176546],[-122.66789503698588,45.51574921402446],[-122.66789142126687,45.51576083828625],[-122.66788728632164,45.5157722535645],[-122.66787860140947,45.515793502279],[-122.66787536927107,45.51580301532025],[-122.66786714609295,45.51583204604304],[-122.66786006736851,45.51585522528931],[-122.66785697626564,45.51586691058683],[-122.66785475024037,45.51587822513],[-122.66785309284865,45.5158896259069],[-122.66784917439736,45.51592394404425],[-122.66784748017474,45.51593529319619],[-122.66784520025055,45.51594652715483],[-122.6678373687379,45.51597449338868],[-122.66783477170843,45.5159854528955],[-122.66782786546051,45.51601862724861],[-122.66782491539313,45.51602963206783],[-122.66782140837026,45.5160400961804],[-122.66780913109528,45.5160713500257],[-122.66780534739128,45.51608186637547],[-122.66780180084253,45.51609361016548],[-122.66779882472403,45.51610547166152],[-122.66779627350861,45.51611742064963],[-122.66779202447732,45.51614149108946],[-122.6677817190044,45.51621419898806],[-122.66777804040329,45.5162384066079],[-122.66777361889545,45.51626250154475],[-122.66777092574623,45.51627447693663],[-122.66776775289665,45.51628637930916],[-122.66776416322878,45.51629774160661],[-122.66774763153262,45.5163428766755],[-122.6677437750651,45.51635420874768],[-122.66773700895436,45.516377648373],[-122.66772522485446,45.51642471076538],[-122.66772203942847,45.51643638965005],[-122.66771853689718,45.51644798292668],[-122.66771458071669,45.51645945786364],[-122.66770358623592,45.51648743769053],[-122.66769987170221,45.51649855446069],[-122.66769665393687,45.51650979334251],[-122.66769381166729,45.51652112412223],[-122.66768887811976,45.51654397199268],[-122.66767592171843,45.51661299582004],[-122.66767106542599,45.51663587827299],[-122.66766525691936,45.51665851837797],[-122.66765814226233,45.51668206803044],[-122.66765505924425,45.5166938607923],[-122.66765278291334,45.51670582161505],[-122.66765116594583,45.51671785671041],[-122.66764768856736,45.51675401485485],[-122.66764618388927,45.5167659517457],[-122.66764407374666,45.51677775141395],[-122.6676410428309,45.51678935217362],[-122.66763765708059,45.51679883860966],[-122.66762613169547,45.51682705368185],[-122.6676224477045,45.51683857763853],[-122.66761294712207,45.51687376887209],[-122.66760080998425,45.51690877817303],[-122.66759713407811,45.51692034806272],[-122.66758396567435,45.51696685231051],[-122.66758041822729,45.51697830699932],[-122.66757649438614,45.51698958166386],[-122.6675720297592,45.51700060077052],[-122.6675668285137,45.51701126990228],[-122.66755695602872,45.51702812272028],[-122.66755237641739,45.51703659822427],[-122.66754802767312,45.51704706340849],[-122.66754485841678,45.51705784772022],[-122.6675427428843,45.51706884415341],[-122.66754164154973,45.51707995766147],[-122.66754160202386,45.51709109760414],[-122.66754276893543,45.51710217208213],[-122.66754538662617,45.51711308416087],[-122.66754937065444,45.51712308354083],[-122.66755469496914,45.51713281288671],[-122.66756119877179,45.51714222499026],[-122.66756879492586,45.51715125250087],[-122.66757708188433,45.51715957440162],[-122.66760357949029,45.51718340017088],[-122.6676115277839,45.51719141993311],[-122.66761824897888,45.51719970783781],[-122.66762320139101,45.51720818016872],[-122.66762645958056,45.51721691938302],[-122.6676279489873,45.51722580147993],[-122.66762749174482,45.517234711271],[-122.66762451472796,45.51724462061875],[-122.66761944283988,45.51725444498975],[-122.66761283932424,45.5172642051557],[-122.66760513986392,45.51727391874108],[-122.6675966804289,45.51728360148201],[-122.66758772242888,45.51729326848514],[-122.66755975697578,45.51732232991132],[-122.66754175833074,45.51734195848226],[-122.667533433643,45.5173519370499],[-122.66752583120075,45.51736208430657],[-122.66751921331205,45.51737246004931],[-122.66751424293358,45.51738208864116],[-122.66751004151301,45.51739187773936],[-122.66750634225068,45.51740175055173],[-122.66749601252322,45.51743114489695],[-122.66749213180118,45.51744062493035],[-122.66748479256532,45.51745665430933],[-122.66748076811282,45.51746724719215],[-122.66747736978613,45.51747814031684],[-122.66746548058332,45.51752312400242],[-122.66746187474578,45.51753440736994],[-122.66745794731136,45.51754487875601],[-122.66744489119702,45.51757617708526],[-122.66744089908389,45.51758670826042],[-122.66743725821205,45.51759792867113],[-122.66743411770183,45.51760925419619],[-122.66742885806583,45.51763211358421],[-122.66741568337386,45.51770114048288],[-122.66741053333234,45.51772389282887],[-122.66740747277218,45.51773512328329],[-122.66740392442681,45.51774620770559],[-122.66739972929442,45.51775709637017],[-122.66739540839791,45.51776653165855],[-122.66738614856396,45.51778513660739],[-122.66738187078658,45.51779446236875],[-122.66737816703267,45.51780388254432],[-122.66736818764818,45.51783223181229],[-122.66735970395865,45.51785331924225],[-122.66735630922518,45.51786349284492],[-122.66735340048027,45.5178738118458],[-122.66734558064574,45.51790495011509],[-122.6673426215952,45.5179151545508],[-122.6673391298437,45.51792513616397],[-122.6673348466764,45.51793479676256],[-122.66732947205604,45.51794401612428],[-122.6673222567877,45.51795337962552],[-122.66730574665107,45.51797120527019],[-122.66729785405303,45.5179801917345],[-122.66729116160414,45.51798957851882],[-122.66728606995311,45.51799998561768],[-122.66728256293023,45.51801094095338],[-122.66728016622505,45.51802228276064],[-122.66727848996875,45.51803387696937],[-122.66727464068774,45.51806908633845],[-122.66727278387005,45.51808062829442],[-122.66727012126356,45.51809188951992],[-122.66726627288088,45.51810273531606],[-122.66726198522204,45.51811138878828],[-122.66725232473947,45.51812821484052],[-122.6672480766065,45.51813672920376],[-122.6672444465144,45.51814665979346],[-122.66723649013596,45.51817730884132],[-122.66723293280742,45.51818736279292],[-122.66722816904148,45.5181971492333],[-122.66721713233989,45.51821628905847],[-122.66721222214854,45.51822587785163],[-122.66720863427729,45.51823531180252],[-122.66720638579413,45.51824475330501],[-122.66720560964973,45.51825405129512],[-122.66720607138377,45.51826063516749],[-122.66720740987355,45.5182669836311],[-122.66721469431221,45.51828633555142],[-122.66721687991328,45.51829384405696],[-122.66721863791632,45.51830394771293],[-122.66721928739825,45.5183144221029],[-122.66721895053003,45.51832511301575],[-122.6672176794139,45.51833587945845],[-122.66721545608355,45.51834658484417],[-122.66721219160581,45.5183570906978],[-122.66720772158898,45.51836724532643],[-122.66720279432963,45.51837571559327],[-122.6671919480709,45.5183921047408],[-122.66718714208413,45.51840032134289],[-122.66718392791202,45.51840738041904],[-122.66718160576701,45.51841452446755],[-122.6671802520059,45.51842168802752],[-122.66717993490057,45.5184284418268],[-122.66718053138196,45.51843508358643],[-122.66718227770686,45.51844286461582],[-122.66718447229108,45.51845055752383],[-122.66718630754923,45.51845834106881],[-122.66718710255826,45.51846723052292],[-122.66718633719364,45.51847627481566],[-122.66718382730073,45.51848529770627],[-122.66717955401491,45.51849394860189],[-122.66717378503417,45.51850242451453],[-122.66716687159973,45.51851073299737],[-122.66715909757927,45.51851887090331],[-122.66715069024653,45.51852682816163],[-122.6671213611508,45.51855201229136],[-122.66711234835357,45.51856120952195],[-122.66710558403949,45.51857019463311],[-122.66709997316221,45.51857971538759],[-122.66709520670132,45.51858963456932],[-122.66709102773864,45.51859984013974],[-122.66707614355268,45.51864189293668],[-122.66707199243774,45.51865239244091],[-122.66705660160198,45.51868588685973],[-122.66705186837875,45.51869710516295],[-122.6670481206074,45.51870747814181],[-122.66704113620607,45.51872839026282],[-122.66703677308874,45.51874003027427],[-122.66703198955983,45.5187516425885],[-122.66702157988232,45.51877480930248],[-122.66699382014342,45.51883261274884],[-122.66698311581848,45.51885577754123],[-122.66697336011448,45.5188790203729],[-122.66696103433047,45.51891216028994],[-122.66695653107597,45.51892299333947],[-122.66695138911926,45.51893360545844],[-122.66694545125524,45.51894395951095],[-122.66693297275765,45.51896454235454],[-122.66692708430095,45.51897575871399],[-122.66692179052896,45.51898721047616],[-122.66691692255846,45.51899882525707],[-122.66689901913483,45.51904570607125],[-122.66689432274252,45.51905722516761],[-122.6668892589393,45.51906851200408],[-122.66688364267213,45.51907945894927],[-122.66687723948077,45.51908993004776],[-122.66687186845371,45.51909737298597],[-122.66685877371181,45.51911435484046],[-122.66685065833153,45.51912381696645],[-122.66684180543439,45.51913229781959],[-122.66683188084713,45.51914032422769],[-122.66682173257938,45.51914756196726],[-122.66680086381702,45.51916171517886],[-122.66679097785732,45.51916907313547],[-122.66678205129833,45.51917693274126],[-122.6667738622562,45.51918624190694],[-122.6667670557213,45.51919624406557],[-122.66676138286029,45.51920677304926],[-122.66675668556965,45.51921770486139],[-122.66675288839096,45.51922894949436],[-122.66675014583438,45.51923949987223],[-122.6667479539451,45.5192502038272],[-122.66674457717794,45.51927190063564],[-122.66673861865267,45.51931570649848],[-122.66673671871584,45.51932664017775],[-122.6667341899583,45.51933885472703],[-122.6667281946021,45.51936318688677],[-122.66671481060268,45.51941164220725],[-122.66670855742998,45.51943583019835],[-122.66670582475487,45.51944792135758],[-122.66670350440653,45.51946001062597],[-122.66669754228798,45.5195027079349],[-122.6666956809787,45.51951315881325],[-122.66669326091734,45.51952344100528],[-122.66668666009662,45.5195448557287],[-122.66668369835112,45.51955638479355],[-122.66667609680722,45.51959163978688],[-122.66667327250391,45.51960218569089],[-122.66666403422958,45.51963358672978],[-122.66665842245399,45.51965501777614],[-122.66665534572411,45.51966544219064],[-122.6666516051393,45.51967553175312],[-122.66664679016937,45.51968515869207],[-122.66664023695937,45.51969484038865],[-122.6666329812668,45.51970429486399],[-122.66662603010316,45.51971398411033],[-122.6666202728005,45.51972406170518],[-122.66661547489856,45.5197346585671],[-122.66661138217414,45.51974564440652],[-122.66660778531973,45.51975691474002],[-122.66660451096052,45.5197683890022],[-122.66659525471984,45.51980345440851],[-122.66658833320058,45.51982707890407],[-122.66657248961391,45.51987426681221],[-122.66656503269873,45.51989761433546],[-122.66656183739126,45.5199091798341],[-122.66655923946347,45.51992063895931],[-122.66655748595201,45.51993195520505],[-122.6665568957589,45.51994308073593],[-122.66655787941411,45.51995395261067],[-122.66656051327455,45.51996410820991],[-122.66656753630345,45.51998442380878],[-122.66657018453688,45.51999487774473],[-122.66657198026914,45.52000561239724],[-122.66657300884012,45.52001654342474],[-122.66657331606397,45.520027599074],[-122.66657290373725,45.52003871199773],[-122.66657182575892,45.5200496184717],[-122.66656704402665,45.52008186078592],[-122.66656584926734,45.52009225994487],[-122.66656536148213,45.52010235257789],[-122.66656595976012,45.5201120253909],[-122.66656810134376,45.52012113424871],[-122.66657234678176,45.5201294959926],[-122.66657894760249,45.52013684438144],[-122.66658743039369,45.52014360426894],[-122.66661813121688,45.52016369887939],[-122.66662858670846,45.52017111461085],[-122.66663836127705,45.52017882050022],[-122.66664705786734,45.52018681717669],[-122.66665420306707,45.52019512226374],[-122.66665921746302,45.52020348084957],[-122.66666222412425,45.52021194202821],[-122.66666310626988,45.52022028991151],[-122.66666239210922,45.52022623407199],[-122.66665764361464,45.52024621598837],[-122.66665614163148,45.52025369465004],[-122.66665453903703,45.5202643776415],[-122.66665339458332,45.52027544520087],[-122.66665257711642,45.52028678906931],[-122.66665015166517,45.52033352530488],[-122.66664909524637,45.52034531856033],[-122.66664752588957,45.52035708915455],[-122.66664540945878,45.52036824481304],[-122.66664273876744,45.52037935137538],[-122.66663959286731,45.52039040443572],[-122.66663600948763,45.52040139581175],[-122.66663199401833,45.520412315433],[-122.66662751412,45.52042314756427],[-122.66662266860736,45.52043363288913],[-122.66661746197197,45.52044404331242],[-122.66658967708024,45.52049571523715],[-122.66657938598034,45.52051655871744],[-122.66657424851523,45.52052832801704],[-122.66656948834255,45.52054017724895],[-122.66656066778476,45.52056400410441],[-122.66654796650496,45.5205997122689],[-122.66653901658981,45.52062317656081],[-122.66653415400916,45.52063469029897],[-122.66652889167821,45.52064598185424],[-122.66651839486413,45.52066677492635],[-122.66650588133223,45.52069635324072],[-122.66649650651391,45.52071702607773],[-122.6664926895723,45.52072694425332],[-122.66647590455118,45.52077423651737],[-122.66647308473952,45.52078443665631],[-122.66646609315166,45.52081508237922],[-122.66646331376417,45.52082507166022],[-122.66645981482614,45.52083481547172],[-122.6664479453863,45.52086032459978],[-122.66643166342176,45.52090044595545],[-122.66642291113594,45.52092081723315],[-122.66641738649696,45.52093226482307],[-122.66639997894337,45.52096642568126],[-122.66639461420452,45.52097786193264],[-122.66638986211665,45.52098938315103],[-122.6663864736714,45.52099912945168],[-122.66637712849749,45.52102849862979],[-122.66637312290965,45.52103892216041],[-122.66635965985849,45.52107008322476],[-122.6663554054373,45.52108056276448],[-122.66635130193306,45.52109196878133],[-122.66634762962019,45.52110347801777],[-122.66634117163161,45.52112670670353],[-122.66633541971883,45.52115010280034],[-122.66631658923387,45.52123230879786],[-122.66631070706539,45.52125569163336],[-122.6663039966502,45.5212788894157],[-122.66630012850459,45.52129037154969],[-122.66629576269231,45.5213017385013],[-122.66629065487162,45.52131332007568],[-122.66627393722418,45.52134760091771],[-122.66626876562307,45.52135901506264],[-122.66626425877531,45.52137048836875],[-122.66626059005569,45.52138211335745],[-122.66625121344075,45.52141680263685],[-122.66624437276985,45.52143809768348],[-122.66624170477346,45.52144961314306],[-122.66623979405684,45.52146131741952],[-122.66623573726501,45.5214968443776],[-122.66623407538177,45.52150859962537],[-122.66623180623736,45.52152019248633],[-122.66622860823495,45.52153153736262],[-122.66621618004298,45.52156272647698],[-122.6662131904497,45.52157311969766],[-122.66621099496717,45.52158373005803],[-122.66620934386366,45.52159448958324],[-122.66620554219338,45.52162709291464],[-122.66620400787089,45.52163789145408],[-122.66620200193286,45.52164856159484],[-122.66619521516088,45.52167590315244],[-122.66619051427702,45.521703213227],[-122.6661886098486,45.52171209776272],[-122.66618596790335,45.52172077459682],[-122.66618243033777,45.52172912162689],[-122.66617443084014,45.5217458150539],[-122.66617049262595,45.52175593634242],[-122.66616722186001,45.5217664107192],[-122.66616445145564,45.52177715006886],[-122.66616204666565,45.52178808389921],[-122.6661539627264,45.52183273622525],[-122.66614957086297,45.52185505010182],[-122.66614694329077,45.52186606762626],[-122.66614385937439,45.52187692780031],[-122.6661401565188,45.52188757209061],[-122.66613623896585,45.52189690157775],[-122.6661279493124,45.52191516717721],[-122.66612431472878,45.52192423797954],[-122.66611910719507,45.52194057070697],[-122.6661085600753,45.5219705322807],[-122.6661053683611,45.52198070954466],[-122.66610287284125,45.52199100827934],[-122.66610131336593,45.52200145617793],[-122.66610046086471,45.52201200729474],[-122.66609900110235,45.52204390924272],[-122.66609788719141,45.52205452266126],[-122.66609583813425,45.52206624254664],[-122.66609100519803,45.52208972888501],[-122.66608929211077,45.52210111833313],[-122.6660880299778,45.52211259211729],[-122.66608409356023,45.52215874339199],[-122.66608259427201,45.52217021149985],[-122.66607702831054,45.52220233301491],[-122.66607581378825,45.52221303325928],[-122.66607541134302,45.52222320229732],[-122.66607627821728,45.52225394290358],[-122.66607617760594,45.52227745119217],[-122.66607489211678,45.52230102115096],[-122.66607244061437,45.52232450550315],[-122.66607068261136,45.52233616302293],[-122.66606846556921,45.52234772927905],[-122.66606567540197,45.52235917028475],[-122.66605731747656,45.5223872994897],[-122.66605478871904,45.52239877321546],[-122.66605294357944,45.52241038162769],[-122.66605161586946,45.52242209136877],[-122.66605067712997,45.52243387789255],[-122.66604958388028,45.52245760576181],[-122.66604847895248,45.5225411000889],[-122.66604764531589,45.5225647347639],[-122.66604685479847,45.52257642307378],[-122.66604566902225,45.52258797732222],[-122.66604393257884,45.52259934841734],[-122.66604144514379,45.52261047027386],[-122.66603794440915,45.52262125981322],[-122.66602638488807,45.52264707212392],[-122.66600986756494,45.52268739046126],[-122.66600531310645,45.52269754242025],[-122.66600028074424,45.52270759241722],[-122.66599392067202,45.5227186166979],[-122.665986837456,45.52272940495774],[-122.66597909577487,45.52273991943377],[-122.66597069383205,45.52275009341164],[-122.66596156155885,45.52275982241394],[-122.6659515552249,45.52276895664779],[-122.6659404466581,45.52277729093467],[-122.66592917819118,45.52278403099406],[-122.66591697906959,45.52279001201724],[-122.66590404063457,45.5227953151948],[-122.66589049673502,45.52279997199602],[-122.6658764345076,45.52280396920407],[-122.66586089994138,45.52280751640338],[-122.66584503120188,45.52281051918676],[-122.66579708901347,45.52281854192327],[-122.66578152659949,45.52282158624529],[-122.66576647083532,45.52282518819978],[-122.66575158305615,45.52282973548601],[-122.66573758820233,45.52283508460471],[-122.66572465875045,45.52284120345715],[-122.66568695645795,45.52286310909435],[-122.66567603833401,45.52286966410524],[-122.66566545168837,45.52287649856076],[-122.6656554857786,45.52288374777794],[-122.66564683590074,45.52289104105093],[-122.66562230830021,45.52291372080764],[-122.66561345719973,45.52292082652108],[-122.66560292624968,45.52292797503161],[-122.66558038482422,45.52294168609623],[-122.66556946310699,45.52294872383308],[-122.66554818291625,45.52296363763912],[-122.6655378127646,45.52297135195731],[-122.66551769948538,45.52298697758662],[-122.66550144364312,45.52300034755967],[-122.66549879983013,45.52300252202149],[-122.66549005652747,45.52301015010931],[-122.66548399020435,45.52301580383079],[-122.66547859582107,45.52302164888324],[-122.6654723543265,45.52303084475378],[-122.6654676300864,45.52304078077348],[-122.66546397394319,45.52305124421159],[-122.66546101848591,45.52306206135908],[-122.66545353911286,45.52309528629607],[-122.66545071121632,45.52310623749284],[-122.66544733355086,45.52311694385904],[-122.6654413346014,45.52313310190232],[-122.6654381716333,45.52314406504995],[-122.66543579379272,45.52315536176597],[-122.66543399895878,45.52316690771365],[-122.66543157171088,45.52319049618112],[-122.66542945348345,45.52322652995508],[-122.66542202980597,45.52342042579051],[-122.66541364313444,45.52361426494339],[-122.66541296131317,45.52363842847035],[-122.66541293705863,45.52366246107736],[-122.66541336735166,45.52367438706206],[-122.66541425488717,45.52368621800895],[-122.66541577034504,45.52369791804391],[-122.66541813740581,45.52370943870532],[-122.66542164442869,45.5237207183148],[-122.66542636956707,45.52373149694186],[-122.6654433845569,45.52376318518719],[-122.66544817078072,45.52377389835144],[-122.66545179997446,45.52378528179432],[-122.66545414996725,45.52379685152876],[-122.66545538335413,45.52380852007215],[-122.66545557020373,45.52382020686486],[-122.66545468985471,45.52383183197677],[-122.6654526309161,45.52384331484851],[-122.66544626994556,45.52386467443122],[-122.66544344294738,45.52387497596794],[-122.66544097976686,45.52388544806206],[-122.66543269370669,45.52392821187269],[-122.66542805750149,45.5239496500944],[-122.66542520894374,45.52396027385266],[-122.66542205945036,45.52397026005776],[-122.6654116821122,45.52399980202014],[-122.66540857034805,45.52400955472233],[-122.66540597691183,45.52401927658379],[-122.66540126973975,45.52404337574119],[-122.66539460154539,45.52407087599449],[-122.66539267286247,45.52408260112419],[-122.66539145744187,45.52409451002688],[-122.66539075855259,45.52410655487046],[-122.66539042348097,45.5241186978929],[-122.66539059146594,45.52418007568915],[-122.66539001564585,45.52420466883058],[-122.66538924129806,45.52421692952333],[-122.66538808336968,45.52422880063562],[-122.66538388554237,45.52426418549744],[-122.66538290548037,45.52427589107646],[-122.66538250483177,45.52428753749269],[-122.66538295668434,45.5242991083826],[-122.6653842825977,45.52430972766933],[-122.6653880734882,45.52433090141223],[-122.66538964464164,45.52434154335011],[-122.66539051780408,45.52435250689156],[-122.66539074058629,45.52436354784277],[-122.66539049085463,45.52437464732281],[-122.66538687693223,45.52443050028069],[-122.66538652209772,45.52444165953704],[-122.66538659665788,45.52445278795237],[-122.66538726859773,45.52446386979255],[-122.66538873734319,45.52447553756821],[-122.66539267735402,45.52449875793877],[-122.66539434732215,45.52451035270103],[-122.66539526001048,45.52452196319501],[-122.66539507765246,45.52453381473261],[-122.66539397182635,45.52454569081292],[-122.66539223178967,45.52455757947795],[-122.66538347770721,45.524605003835],[-122.66538189667232,45.5246167426993],[-122.66538103878119,45.52462838401007],[-122.66538106842562,45.52463809443603],[-122.66538181672225,45.52464766514201],[-122.6653832998408,45.52465704389103],[-122.66538557078184,45.52466617215261],[-122.66539097235162,45.52468207360084],[-122.66539380294309,45.52469215408203],[-122.66539600471386,45.52470255238879],[-122.66539769264827,45.52471319551511],[-122.66539895208629,45.52472402430087],[-122.66539983872349,45.52473499091464],[-122.6654005915117,45.52475720105434],[-122.66540044059471,45.52476839234328],[-122.66539986118136,45.52478048424461],[-122.66539776181854,45.52480473349299],[-122.66539338253155,45.52484117468745],[-122.66538215628542,45.524926233839],[-122.66537949906882,45.52495054533106],[-122.66537844354835,45.52496270768139],[-122.66537766201408,45.52497487695204],[-122.66537704307483,45.52499911667629],[-122.66537750660551,45.52503551557782],[-122.6653786986699,45.52507191760265],[-122.66538032821383,45.52510822897658],[-122.66538182211215,45.52513227165476],[-122.66538400411999,45.52515600782624],[-122.66538553215427,45.52516767797577],[-122.66538749497316,45.52517915050517],[-122.66539003720543,45.52519035618533],[-122.66539334480228,45.52520120942414],[-122.6653994290917,45.52521718057961],[-122.66540269267114,45.52522793752184],[-122.6654051819028,45.52523903494323],[-122.66540706836491,45.52525038158704],[-122.66540848321145,45.52526190255986],[-122.66540951717235,45.52527353177938],[-122.66541023133301,45.5252852107155],[-122.66541078289859,45.52530849179919],[-122.66541058976081,45.52531997248143],[-122.66541001483901,45.52533124925058],[-122.66540896470845,45.52534223210919],[-122.66540731091001,45.52535280903228],[-122.66540488366213,45.52536284093305],[-122.66540068942805,45.52537588366002],[-122.66539850292867,45.52538562164856],[-122.66539723899906,45.52539582598628],[-122.66539676648522,45.52540635506848],[-122.665397008132,45.52541708302433],[-122.66539793699003,45.52542790034627],[-122.66539957192386,45.5254387006736],[-122.66540197851049,45.5254493814218],[-122.66540799632456,45.52547021551467],[-122.66541002472049,45.52548073262524],[-122.66541106137633,45.52549140833066],[-122.66541112695336,45.52550215515083],[-122.66541018372229,45.52551289064066],[-122.66540813197021,45.52552353298432],[-122.6654053409046,45.52553290844055],[-122.66539872840578,45.52555153410737],[-122.6653958843396,45.52556093284497],[-122.66539381192622,45.52557110820075],[-122.66539272316811,45.52558139557922],[-122.66539253811517,45.5255917282691],[-122.66539323700445,45.52560204270587],[-122.66539485846354,45.52561227406647],[-122.66539749951048,45.52562235312224],[-122.6654014143685,45.52563285006518],[-122.66540970581856,45.52565310005273],[-122.66542099315012,45.52568298538599],[-122.66542507689138,45.52569296247437],[-122.66542958733244,45.52570285334004],[-122.66543472210259,45.52571259441868],[-122.66544138221211,45.52572327133881],[-122.66544878433004,45.52573375315851],[-122.66548046072359,45.52577494722593],[-122.66548766072059,45.52578531952923],[-122.66549401809786,45.52579582147653],[-122.6654991744276,45.52580651159719],[-122.66550284494384,45.52581732192139],[-122.66550545365143,45.52582825622522],[-122.66550937659429,45.52584999643939],[-122.66551157656842,45.52586052858333],[-122.66551454370381,45.52587061829358],[-122.66551879093846,45.52588006103222],[-122.66552323490417,45.52588685799053],[-122.66552836608108,45.52589328552084],[-122.66553515195471,45.52590081818511],[-122.66554253790297,45.52590773345833],[-122.66555076197942,45.52591369463963],[-122.66555925555045,45.52591819195776],[-122.6655769631413,45.52592615949789],[-122.6655851090643,45.52593081855734],[-122.66559253094519,45.52593687602634],[-122.6655991964446,45.52594395555473],[-122.66560564006012,45.52595173743376],[-122.66561803591274,45.5259675126492],[-122.66562402587905,45.52597590687952],[-122.6656295352467,45.52598465039616],[-122.6656349493929,45.52599497294239],[-122.66563963680204,45.52600565232632],[-122.66564380229003,45.52601657652397],[-122.66564761114682,45.52602765994416],[-122.66566169313721,45.52607228247281],[-122.665665404976,45.5260832349781],[-122.66567353562762,45.5261045433627],[-122.66567725016132,45.52611508993394],[-122.66567960195073,45.5261243205422],[-122.66568132761438,45.52613369463964],[-122.66568558113727,45.52616232102778],[-122.66568795268961,45.52617383237366],[-122.66569661155064,45.52620856967545],[-122.66569918791886,45.52622025659892],[-122.66570118307713,45.52623156654285],[-122.66570279016317,45.52624292997871],[-122.66570791684849,45.52628848250627],[-122.66570947362887,45.52629978928976],[-122.66571140859999,45.52631101362702],[-122.66571389154345,45.52632212153352],[-122.66571713086836,45.52633307336086],[-122.66572061633165,45.5263423328831],[-122.66572843257295,45.52636074619343],[-122.66573717857055,45.52638351014191],[-122.66575705110128,45.52644088474177],[-122.6657613091157,45.52645208513587],[-122.66576584381126,45.52646306022352],[-122.66577383342741,45.5264812790279],[-122.6657771185664,45.52649028553056],[-122.66577929518434,45.52649933986176],[-122.66578000305677,45.52650865662664],[-122.66577951616988,45.52651809737017],[-122.66577828278301,45.52652764824674],[-122.66577518449358,45.52654706277729],[-122.66577409124389,45.52655693083651],[-122.66577372832451,45.52656775423269],[-122.66577411280348,45.5265786858733],[-122.66577505244123,45.52658969743792],[-122.6657763837445,45.52660076815842],[-122.66578299803993,45.52664538582704],[-122.66578435719097,45.52665658618047],[-122.66578532557483,45.52666779785973],[-122.66578572712177,45.52667902023556],[-122.66578539923668,45.52669070643194],[-122.66578443534439,45.5267024008073],[-122.66578121039251,45.52672580843086],[-122.66577696495447,45.52674923177818],[-122.66576767008624,45.52679603313121],[-122.66576367887143,45.52681929722693],[-122.66576218587143,45.52683084179325],[-122.66576123725048,45.52684229006861],[-122.66576105668912,45.52685360114612],[-122.66576193613979,45.52686471964425],[-122.66576425648817,45.52687557318937],[-122.66576854684196,45.52688651672753],[-122.66577449368914,45.52689707510957],[-122.66578179250084,45.52690722064482],[-122.66578846698337,45.52691509930842],[-122.665802404345,45.52693070496223],[-122.6658098918029,45.52693992284989],[-122.66583143250512,45.52696796480409],[-122.66583924874641,45.52697686298312],[-122.66584793096361,45.52698519790531],[-122.66585682159,45.52699212689054],[-122.66586651800515,45.52699845234223],[-122.66587681898652,45.52700421453795],[-122.66588755654911,45.52700942291789],[-122.66591383676274,45.52702056844668],[-122.66594043677662,45.52703307774247],[-122.66596714907993,45.52704431829612],[-122.66597973088379,45.52705029068495],[-122.66599211326167,45.52705683954396],[-122.66600429711185,45.52706383334187],[-122.66601626985798,45.52707117201437],[-122.66602800095727,45.52707878004107],[-122.66603944369734,45.52708660078187],[-122.66605052980627,45.52709459836455],[-122.66606116406263,45.52710274824495],[-122.66608377555661,45.52712094166878],[-122.66610676344474,45.52713789089351],[-122.66613040261142,45.52715682062645],[-122.6661407260507,45.52716450290299],[-122.666166592141,45.52718304747491],[-122.66617369691656,45.52718881091035],[-122.66618111969576,45.5271958820999],[-122.6662012051272,45.52721821776395],[-122.66620829373309,45.52722538649636],[-122.66621496372406,45.52723127390605],[-122.66624246115494,45.52725367500666],[-122.66625283130658,45.52726124461945],[-122.66626406563752,45.52726847690898],[-122.66627608868927,45.52727528313948],[-122.66628888249556,45.52728154310874],[-122.6663029025022,45.52728735813937],[-122.66631748934576,45.52729266970364],[-122.6663622065823,45.527307629558],[-122.66637667215333,45.52731292790435],[-122.66639050710701,45.5273187284571],[-122.66640340781281,45.52732528357813],[-122.66641426934292,45.52733214644169],[-122.66642445803487,45.52733960654014],[-122.66644434134535,45.52735528696667],[-122.66645445008726,45.52736291761089],[-122.66648592974977,45.52738553955432],[-122.6665065496788,45.52740096320096],[-122.66651631706087,45.5274089808775],[-122.66652577721915,45.52741745985242],[-122.66654406422336,45.52743475260232],[-122.66655347407598,45.52744324856529],[-122.6665628740471,45.527451081842],[-122.66659226871984,45.52747393534346],[-122.66660185733718,45.52748167547505],[-122.66663988931138,45.5275150746435],[-122.66664980311884,45.52752300482697],[-122.66666114524762,45.52753114520539],[-122.66669576811529,45.52755432026164],[-122.66671593888668,45.52756902705609],[-122.66672645366708,45.52757586031142],[-122.66673856116049,45.52758232918445],[-122.66675139449262,45.52758825242858],[-122.66677756062025,45.52759987109788],[-122.66679008133865,45.52760626004341],[-122.66679865306307,45.52761135697642],[-122.66682583518528,45.5276292041051],[-122.66684752590615,45.52764294171444],[-122.66689816483701,45.52767427029822],[-122.66690606731657,45.5276787649583],[-122.66691627756809,45.52768370958744],[-122.66694897534612,45.52769721684948],[-122.6669597299767,45.52770213315726],[-122.66697208091352,45.5277087650116],[-122.66700814647557,45.52773087894882],[-122.66702107502914,45.52773820620634],[-122.66704749537995,45.52775263604884],[-122.6670801060214,45.5277713522331],[-122.66709118135051,45.52777729433711],[-122.66712861774167,45.52779565809026],[-122.66714099562797,45.52780259138098],[-122.66717655723514,45.52782464549528],[-122.66718846081098,45.52783166688808],[-122.66720068059377,45.5278381162226],[-122.66721341241629,45.52784370086235],[-122.66722650715819,45.52784815019739],[-122.66725347907459,45.52785553722563],[-122.66726671305538,45.52785939562277],[-122.66727933708005,45.52786398277897],[-122.66729064327622,45.52786938617036],[-122.66730141317814,45.5278755460107],[-122.66732268348746,45.52788880212578],[-122.66733384505484,45.52789527285079],[-122.66734506411444,45.52790098838457],[-122.66735681946827,45.52790637037531],[-122.66736893684312,45.52791154028289],[-122.66740596360249,45.52792688323169],[-122.6674461775845,45.52794498324884],[-122.66745958583843,45.5279507044415],[-122.6674880669245,45.52796226891402],[-122.66750092720613,45.52796847027961],[-122.66751330239748,45.52797530977968],[-122.66752521495646,45.5279826709889],[-122.66753664871342,45.52799047335363],[-122.6675475560576,45.52799866463963],[-122.66755784805581,45.52800721967393],[-122.66756742769,45.52801604972153],[-122.66758555209917,45.52803388350602],[-122.66759463586331,45.52804243287098],[-122.66760409602158,45.52805039885157],[-122.66761423440785,45.52805747496734],[-122.66762539507695,45.52806329369372],[-122.66763870182128,45.52806781286633],[-122.66765314044282,45.52807097521712],[-122.66766829502166,45.52807326721331],[-122.66769932462822,45.5280768776421],[-122.6677145286144,45.52807895692673],[-122.66772905616916,45.52808174545876],[-122.66774250125403,45.52808569698027],[-122.66775072173718,45.52808917084509],[-122.66775863499652,45.52809317774647],[-122.66776800833038,45.5280983978115],[-122.66737407430824,45.52814164379864],[-122.66693977120772,45.52791045029148],[-122.66651429944476,45.52791058433774],[-122.66486984528224,45.52660215774103],[-122.66359861776415,45.52658425868061],[-122.66352454268582,45.52586955973],[-122.66285809155967,45.52574252188672],[-122.66242125880332,45.5253926962115],[-122.66189128692167,45.52521061199641],[-122.66100873617248,45.52540486475979],[-122.66023949442163,45.52570483956865],[-122.65957020282258,45.52606723511861],[-122.65883459848754,45.52643104498254],[-122.65835019814025,45.52672891358728],[-122.65757739546764,45.52714142586224],[-122.65673706014691,45.52752330690521],[-122.65547058022506,45.52799068228931],[-122.65434092899235,45.52830972306177],[-122.65356080359766,45.52854378773314],[-122.65356,45.528521],[-122.653558,45.528396],[-122.65356,45.528179],[-122.653557,45.527943],[-122.65356911108563,45.52724207091962],[-122.653581,45.526554],[-122.653587,45.52576],[-122.65359,45.525049],[-122.653596,45.524334],[-122.65359608798828,45.5243214528705]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000297,"geom:area_square_m":2573065.484283,"geom:bbox":"-122.6684512,45.5011552523,-122.653557,45.5285437877","geom:latitude":45.514011,"geom:longitude":-122.660094,"iso:country":"US","lbl:latitude":45.513569,"lbl:longitude":-122.660839,"lbl:max_zoom":18,"mps:latitude":45.513569,"mps:longitude":-122.660839,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Central Eastside"],"reversegeo:latitude":45.513569,"reversegeo:longitude":-122.660839,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871515,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"65ac4a425374cc2ae1c2b406de55b694","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108713517,"neighbourhood_id":85871515,"region_id":85688513}],"wof:id":1108713517,"wof:lastmodified":1566624136,"wof:name":"Central Eastside Industrial District","wof:parent_id":85871515,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893163],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713579.geojson b/fixtures/microhoods/1108713579.geojson new file mode 100644 index 0000000..1233faa --- /dev/null +++ b/fixtures/microhoods/1108713579.geojson @@ -0,0 +1 @@ +{"id":1108713579,"type":"Feature","bbox":[-122.64512789241158,45.50549807877516,-122.63572517549552,45.51125152246471],"geometry":{"type":"Polygon","coordinates":[[[-122.63671124924048,45.50549807877516],[-122.63679253715425,45.50549823185975],[-122.63775953715427,45.50549923185975],[-122.63877353715428,45.50550023185974],[-122.63973653715425,45.50550123185975],[-122.64054253715427,45.50550023185974],[-122.64135653715427,45.50550423185975],[-122.64166153715428,45.50550423185975],[-122.64270953715427,45.50550823185974],[-122.64371753715426,45.50551223185975],[-122.64473753715424,45.50551523185975],[-122.64509633837709,45.50551747436739],[-122.645098,45.505611],[-122.645101,45.50632],[-122.645105,45.50703],[-122.645109,45.507749],[-122.645113,45.508494],[-122.645119,45.509716],[-122.645113,45.510719],[-122.645126,45.510948],[-122.64512789241158,45.5112482626373],[-122.6361196598062,45.51125152246471],[-122.63613376791427,45.50845644235565],[-122.63573768723079,45.50845591857593],[-122.63572517549552,45.50677429676396],[-122.63672215274728,45.50677496221072],[-122.63671758661071,45.5061868779648],[-122.63671129570876,45.50550108313316],[-122.63671124924048,45.50549807877516]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000052,"geom:area_square_m":446547.995845,"geom:bbox":"-122.645127892,45.5054980788,-122.635725175,45.5112515225","geom:latitude":45.508401,"geom:longitude":-122.640617,"iso:country":"US","lbl:latitude":45.508375,"lbl:longitude":-122.640617,"lbl:max_zoom":18,"mps:latitude":45.508375,"mps:longitude":-122.640617,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Colonial Heights"],"name:deu_x_preferred":["Colonial Heights"],"name:ita_x_preferred":["Colonial Heights"],"name:nld_x_preferred":["Colonial Heights"],"name:por_x_preferred":["Colonial Heights"],"name:srp_x_preferred":["Колонијал Хајтс"],"name:swe_x_preferred":["Colonial Heights"],"name:vol_x_preferred":["Colonial Heights"],"reversegeo:latitude":45.508375,"reversegeo:longitude":-122.640617,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85893193,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"2c9010dc5e232ade02acc60ffd23f46d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108713579,"neighbourhood_id":85893193,"region_id":85688513}],"wof:id":1108713579,"wof:lastmodified":1566624135,"wof:name":"Colonial Heights","wof:parent_id":85893193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893171],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108713581.geojson b/fixtures/microhoods/1108713581.geojson new file mode 100644 index 0000000..d24a5ff --- /dev/null +++ b/fixtures/microhoods/1108713581.geojson @@ -0,0 +1 @@ +{"id":1108713581,"type":"Feature","bbox":[-122.65372,45.504823,-122.645084,45.51222599816625],"geometry":{"type":"Polygon","coordinates":[[[-122.653675,45.51222599816625],[-122.64537820024744,45.51218546926323],[-122.64523069238619,45.51210282765241],[-122.645131,45.511936],[-122.645129,45.511424],[-122.645126,45.510948],[-122.645113,45.510719],[-122.645119,45.509716],[-122.645113,45.508494],[-122.645109,45.507749],[-122.645105,45.50703],[-122.645101,45.50632],[-122.645098,45.505611],[-122.645084,45.504823],[-122.65372,45.504854],[-122.653718,45.505605],[-122.653712,45.505794],[-122.653712,45.506328],[-122.653711,45.506507],[-122.653708,45.50722],[-122.653704,45.507933],[-122.653699,45.508596],[-122.653695,45.50936],[-122.65369,45.510073],[-122.653685,45.510786],[-122.653681,45.511496],[-122.653675,45.51221],[-122.653675,45.51222599816625]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000063,"geom:area_square_m":548003.875142,"geom:bbox":"-122.65372,45.504823,-122.645084,45.5122259982","geom:latitude":45.508515,"geom:longitude":-122.649408,"iso:country":"US","lbl:latitude":45.508522,"lbl:longitude":-122.649407,"lbl:max_zoom":18,"mps:latitude":45.508522,"mps:longitude":-122.649407,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Ladd's Addition"],"reversegeo:latitude":45.508522,"reversegeo:longitude":-122.649407,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85893193,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"324d0da3456460af8df8b834394a4d91","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108713581,"neighbourhood_id":85893193,"region_id":85688513}],"wof:id":1108713581,"wof:lastmodified":1566624136,"wof:name":"Ladd's Addition","wof:parent_id":85893193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85828991],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108714043.geojson b/fixtures/microhoods/1108714043.geojson new file mode 100644 index 0000000..ff8e9c8 --- /dev/null +++ b/fixtures/microhoods/1108714043.geojson @@ -0,0 +1 @@ +{"id":1108714043,"type":"Feature","bbox":[-122.67782,45.50007,-122.67366787322415,45.50545282719034],"geometry":{"type":"Polygon","coordinates":[[[-122.67366787322415,45.50535404506046],[-122.673818,45.505197],[-122.673875,45.505138],[-122.673943,45.505024],[-122.673994,45.504968],[-122.67429,45.504464],[-122.674462,45.50404],[-122.674511,45.503831],[-122.674548,45.50356],[-122.674539,45.503019],[-122.674516,45.502752],[-122.674387,45.502196],[-122.674238,45.501763],[-122.674162,45.501611],[-122.673905,45.500934],[-122.673764,45.500506],[-122.674017,45.500484],[-122.674228,45.500482],[-122.67433,45.500478],[-122.675244,45.500389],[-122.676247,45.500295],[-122.67663,45.500273],[-122.676783,45.500261],[-122.676947,45.500243],[-122.677537,45.500134],[-122.677683,45.5001],[-122.677787,45.50007],[-122.677812,45.500874],[-122.677819,45.501542],[-122.67782,45.502151],[-122.677795,45.50298],[-122.677787,45.503713],[-122.677705,45.504706],[-122.677694,45.505257],[-122.677669,45.505342],[-122.67766,45.505371],[-122.67765054258606,45.50545282719034],[-122.67522349397207,45.50535922374564],[-122.67366787322415,45.50535404506046]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":155423.417056,"geom:bbox":"-122.67782,45.50007,-122.673667873,45.5054528272","geom:latitude":45.502815,"geom:longitude":-122.676033,"iso:country":"US","lbl:latitude":45.502852,"lbl:longitude":-122.676075,"lbl:max_zoom":18,"mps:latitude":45.502852,"mps:longitude":-122.676075,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:cat_x_preferred":["Corbett"],"name:deu_x_preferred":["Corbett"],"name:epo_x_preferred":["Corbett"],"name:fra_x_preferred":["Corbett"],"name:ita_x_preferred":["Corbett"],"name:lav_x_preferred":["Korbets"],"name:por_x_preferred":["Corbett"],"name:rus_x_preferred":["Корбетт"],"name:ukr_x_preferred":["Корбетт"],"reversegeo:latitude":45.502852,"reversegeo:longitude":-122.676075,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85849969,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b37c7d9b8902177ad16bbc90b61a78a1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108714043,"neighbourhood_id":85849969,"region_id":85688513}],"wof:id":1108714043,"wof:lastmodified":1566624149,"wof:name":"Corbett","wof:parent_id":85849969,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893175],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108714045.geojson b/fixtures/microhoods/1108714045.geojson new file mode 100644 index 0000000..6247a14 --- /dev/null +++ b/fixtures/microhoods/1108714045.geojson @@ -0,0 +1 @@ +{"id":1108714045,"type":"Feature","bbox":[-122.682029,45.49557180070469,-122.67765054258606,45.50628517400177],"geometry":{"type":"Polygon","coordinates":[[[-122.67935232798598,45.49800264230686],[-122.679738,45.49872],[-122.68017,45.499433],[-122.68056,45.500202],[-122.680831,45.500714],[-122.680917,45.50086],[-122.68133,45.501567],[-122.681727,45.502286],[-122.681926,45.502682],[-122.682006,45.502867],[-122.682029,45.503012],[-122.682026,45.50353],[-122.682023,45.504043],[-122.682017,45.505125],[-122.682014,45.505867],[-122.682001,45.506186],[-122.6819951167965,45.50628517400177],[-122.68199376838338,45.50628473734903],[-122.68086130542383,45.5059060079517],[-122.6800102091843,45.50569049263827],[-122.679120381183,45.50553315246555],[-122.67786509786285,45.50546110189603],[-122.67765054258606,45.50545282719034],[-122.67766,45.505371],[-122.677669,45.505342],[-122.677694,45.505257],[-122.677705,45.504706],[-122.677787,45.503713],[-122.677795,45.50298],[-122.67782,45.502151],[-122.677819,45.501542],[-122.677812,45.500874],[-122.677787,45.50007],[-122.677788,45.499969],[-122.677788,45.499395],[-122.677831,45.498682],[-122.677874,45.497977],[-122.677917,45.497264],[-122.677951,45.496704],[-122.677945,45.49638],[-122.677954,45.495996],[-122.67794,45.4958],[-122.67784168488858,45.49557180070469],[-122.67850915578556,45.49651543853524],[-122.67935232798598,45.49800264230686]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":243121.202774,"geom:bbox":"-122.682029,45.4955718007,-122.677650543,45.506285174","geom:latitude":45.502129,"geom:longitude":-122.679575,"iso:country":"US","lbl:latitude":45.50302,"lbl:longitude":-122.679835,"lbl:max_zoom":18,"mps:latitude":45.50302,"mps:longitude":-122.679835,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":45.50302,"reversegeo:longitude":-122.679835,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85849969,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"164887355c7c2af9a9c25e1abdfdf129","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108714045,"neighbourhood_id":85849969,"region_id":85688513}],"wof:id":1108714045,"wof:lastmodified":1566624149,"wof:name":"Lair Hill","wof:parent_id":85849969,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781247],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108714047.geojson b/fixtures/microhoods/1108714047.geojson new file mode 100644 index 0000000..f48ec98 --- /dev/null +++ b/fixtures/microhoods/1108714047.geojson @@ -0,0 +1 @@ +{"id":1108714047,"type":"Feature","bbox":[-122.673764,45.49310072718643,-122.66738275832208,45.50098153705682],"geometry":{"type":"Polygon","coordinates":[[[-122.66898196384322,45.49310072718643],[-122.670438,45.493141],[-122.67366,45.493221],[-122.673637,45.493625],[-122.67356,45.494848],[-122.673513,45.497856],[-122.67357,45.49916],[-122.673586,45.499529],[-122.673764,45.500506],[-122.673482,45.500526],[-122.673274,45.500545],[-122.672973,45.500565],[-122.672787,45.500581],[-122.672506,45.500606],[-122.671642,45.500671],[-122.671484,45.500683],[-122.671389,45.50069],[-122.66831,45.500922],[-122.66757346899064,45.50098153705682],[-122.66757070923572,45.50096106416275],[-122.66756718334821,45.50092446142894],[-122.66753873100824,45.5005695552171],[-122.66753637742218,45.50053284204326],[-122.66753536412254,45.50050840477838],[-122.66753513954373,45.50049621321612],[-122.66753521230724,45.50045138151415],[-122.66753482513336,45.50044035035239],[-122.6675339681406,45.50042944070763],[-122.66753244100461,45.50041869161711],[-122.66753000028199,45.50040815093302],[-122.66751883601962,45.50037606986632],[-122.66751252625309,45.5003536158791],[-122.66750711570012,45.50033067832419],[-122.66749213719108,45.50026091674405],[-122.66748632239624,45.50023773989012],[-122.6674829806634,45.50022622890469],[-122.66746969547866,45.50018597821525],[-122.6674667957169,45.50017587004721],[-122.66746400015974,45.50016397056392],[-122.66746174359176,45.50015199615145],[-122.66745988767236,45.50013996695813],[-122.66745696994434,45.5001157964885],[-122.6674536246182,45.50007939091104],[-122.66744562332399,45.49998205782082],[-122.66744316463505,45.49995772672572],[-122.66744012024454,45.49993343528729],[-122.66743604099484,45.49990923639525],[-122.6674333990496,45.49989720211296],[-122.66742367478665,45.49986190392929],[-122.66742067351528,45.49985013912241],[-122.66741830735282,45.49983833842364],[-122.66741693382876,45.49982745447745],[-122.66741627895689,45.49981655478815],[-122.6674162609906,45.49980567461557],[-122.66741684938711,45.49979485425663],[-122.66741807019758,45.49978414534191],[-122.66742000606702,45.49977361272438],[-122.66742280521746,45.49976333888696],[-122.6674266877361,45.49975343275761],[-122.66743195905018,45.49974403348696],[-122.66743932164225,45.49973479729166],[-122.667448293117,45.49972628832973],[-122.6674586075731,45.49971853052777],[-122.66747010960201,45.49971161266549],[-122.667482751593,45.49970569152377],[-122.66749529297266,45.49970126325988],[-122.66750856558099,45.49969759937967],[-122.66752235831386,45.49969448328683],[-122.66753650588127,45.49969173931161],[-122.6675964863928,45.49968154290515],[-122.6676131375649,45.49967887637516],[-122.6676298938399,45.49967672237291],[-122.66764516160646,45.49967544105321],[-122.66766055783212,45.49967465211287],[-122.66770712829309,45.49967331475509],[-122.66772267902896,45.49967263474262],[-122.6677395143557,45.49967149761065],[-122.66775632722455,45.49967003180596],[-122.66780670923725,45.49966497074981],[-122.66782351581793,45.49966349109285],[-122.66784034575477,45.49966235522],[-122.66785770479932,45.49966168968915],[-122.66787506923374,45.49966154927916],[-122.66789240582042,45.49966194847175],[-122.66790967683008,45.49966294204566],[-122.66792519881987,45.49966438014635],[-122.66798678462081,45.49967178283809],[-122.66800210628631,45.49967308619533],[-122.66801740369726,45.49967373661463],[-122.66803110390369,45.49967359494536],[-122.66804474302462,45.49967281293109],[-122.66805828063598,45.49967146423966],[-122.6680716673303,45.49966959168678],[-122.6680848438189,45.4996672097541],[-122.6681287462835,45.49965735901622],[-122.6681703957733,45.49964879778231],[-122.66818376360305,45.49964566342717],[-122.66819654573122,45.49964212799023],[-122.66820848074808,45.49963799817142],[-122.6682178807192,45.49963380286961],[-122.66822623774632,45.49962899807436],[-122.66823491816689,45.49962231442783],[-122.66824214421504,45.49961511510381],[-122.66824826084382,45.49960779614695],[-122.66825208317536,45.49960254682225],[-122.66825507007367,45.49959719675438],[-122.66825740120184,45.49958866825269],[-122.66825731765852,45.49957981548403],[-122.66825579501412,45.4995727156381],[-122.66825187027463,45.49955823008587],[-122.668250922552,45.49954980609893],[-122.66825132589557,45.49954124862654],[-122.66825318181495,45.49953279063639],[-122.6682568927554,45.49952362681537],[-122.66826122263502,45.49951452406823],[-122.66826479253999,45.49950512286878],[-122.66826632416756,45.49949702754765],[-122.66826663588294,45.49948862370015],[-122.66826591094252,45.49948004355134],[-122.66826427870365,45.49947141051111],[-122.66826181462483,45.49946284987858],[-122.66824763561637,45.49942746327247],[-122.66824394803213,45.49941996169441],[-122.66823934596293,45.49941309353737],[-122.6682333074876,45.49940711254804],[-122.66822450220118,45.49940175427617],[-122.66821382392737,45.4993974626212],[-122.66820176763798,45.49939392402045],[-122.66818872499834,45.49939087780132],[-122.66816088890268,45.49938541941449],[-122.66813503628708,45.49938069834072],[-122.668121801408,45.49937871684967],[-122.6681057485139,45.49937697273449],[-122.66808943151507,45.49937575059456],[-122.6680231421353,45.49937238955221],[-122.66800659606608,45.4993711113738],[-122.66799097885486,45.49936947303873],[-122.66797542811898,45.4993675047698],[-122.66791341831323,45.49935864629952],[-122.6678978415262,45.49935673280934],[-122.66788110591247,45.49935503906506],[-122.66784744334385,45.49935244744734],[-122.66779677566684,45.4993492973346],[-122.66776309782688,45.49934685431277],[-122.66774635502658,45.4993452978308],[-122.66769998578826,45.49934001259187],[-122.66768448266306,45.49933852851888],[-122.66766794198375,45.4993373945284],[-122.66765134201563,45.49933661125008],[-122.66760179363949,45.4993347770944],[-122.66758563564247,45.49933378477396],[-122.66756985942945,45.49933226921853],[-122.66755624546133,45.49933029024434],[-122.66754322707622,45.49932761991989],[-122.66753099920858,45.49932414364959],[-122.66751981248835,45.49931969520703],[-122.66750894107676,45.49931344031214],[-122.66749988246546,45.49930588079158],[-122.66749289357254,45.4992973686166],[-122.66748735725544,45.49928799319638],[-122.66748284861104,45.49927799379582],[-122.66747901999129,45.49926755741939],[-122.66746891394436,45.4992349197253],[-122.66746523713987,45.49922390721459],[-122.66746107255024,45.4992128884053],[-122.66745649024398,45.49920192059523],[-122.66744644797741,45.49918011845374],[-122.66741429996831,45.49911522325232],[-122.66740936911572,45.49910436750046],[-122.66740481286061,45.49909345696717],[-122.66740077583174,45.49908246709612],[-122.6673973415724,45.49907124299394],[-122.66739445977697,45.4990599345167],[-122.66739200378296,45.49904856370201],[-122.66738988286059,45.49903714692067],[-122.66738643602486,45.49901422331138],[-122.6673839710477,45.49899123043138],[-122.66738317424206,45.4989797179318],[-122.66738275832208,45.4989681978741],[-122.66738278796647,45.49895640706485],[-122.66738386324988,45.49893281095711],[-122.66738679355434,45.49889739757256],[-122.66739399444965,45.49882658584828],[-122.6673981707174,45.49879133421726],[-122.667401725351,45.49876805286596],[-122.66740396215604,45.49875653969109],[-122.66740667327157,45.49874515685178],[-122.6674100311741,45.49873395031256],[-122.66741425864583,45.4987229798906],[-122.66741938892443,45.49871242818497],[-122.66744226901471,45.49866930708753],[-122.66744831826982,45.49865850099225],[-122.66745476458031,45.49864786804939],[-122.66746821595336,45.49862770719838],[-122.66747450955026,45.49861757419413],[-122.66747972516882,45.49860774845875],[-122.66749320977952,45.4985778833759],[-122.66749796276568,45.49856813948858],[-122.66750334906415,45.49855868775882],[-122.66750886292336,45.4985505394107],[-122.66752049610626,45.49853453046277],[-122.66753394208945,45.49851402074276],[-122.66754778153472,45.49849465950487],[-122.66755452428924,45.49848479156118],[-122.66756006419959,45.49847566408958],[-122.66756520885124,45.49846637038762],[-122.6675807056882,45.49843725263025],[-122.6675859428663,45.49842678587454],[-122.66759003738738,45.49841699284793],[-122.66759357585128,45.49840701658996],[-122.66760292641506,45.49837654441256],[-122.6676062600631,45.49836636539825],[-122.66761003029234,45.49835624934768],[-122.66761509948547,45.49834471216169],[-122.66762079121112,45.49833328138526],[-122.66764586139408,45.49828796123646],[-122.66765182710587,45.49827658333967],[-122.66765728886281,45.49826512106649],[-122.66766199872983,45.49825353348931],[-122.66766542310769,45.49824299995574],[-122.66766823303792,45.49823236945304],[-122.66767062704814,45.49822168039019],[-122.66767695388269,45.498189621375],[-122.66767927512936,45.49817905823563],[-122.66768195749883,45.49816862480375],[-122.66768517346753,45.49815837145222],[-122.66769331489894,45.49813716015586],[-122.66770579788813,45.4980990204782],[-122.66771917739598,45.4980657895975],[-122.6677229458286,45.49805455647746],[-122.66772564796096,45.49804336050501],[-122.66772753621972,45.4980320071155],[-122.66772886752295,45.49802053912564],[-122.66773268087135,45.49797409478178],[-122.66773602979073,45.49794977793081],[-122.66774037673838,45.49792547555155],[-122.66775268814933,45.49786478756093],[-122.66775728393034,45.49784054118489],[-122.66776100205732,45.49781631935521],[-122.66776228754648,45.49780422228903],[-122.66776300350377,45.49779213907282],[-122.66776309423359,45.49778228926625],[-122.66776255254948,45.49775279020921],[-122.66776280856932,45.49774297061957],[-122.66776371946102,45.49773188162787],[-122.66776514598573,45.497720792634],[-122.66777046401221,45.49768745700602],[-122.66777193185936,45.49767629496242],[-122.66777301792256,45.49766430742766],[-122.66777367548933,45.49765228274015],[-122.6677740150525,45.4976402309745],[-122.66777406266321,45.49761607013608],[-122.66777283466622,45.49756765083011],[-122.66777100479797,45.49753137772376],[-122.66776887668907,45.49750731695544],[-122.66776729206093,45.49749536275697],[-122.66776517203685,45.49748348852346],[-122.66776232258077,45.49747172636796],[-122.66775876525223,45.49746061591422],[-122.66775451981421,45.49744962509485],[-122.66774975155668,45.49743874320555],[-122.66774458175222,45.4974279689871],[-122.6677333734724,45.49740678512093],[-122.6677213351493,45.49738625798914],[-122.66771005859755,45.49736863613322],[-122.6677054080193,45.49736087737674],[-122.66770079247539,45.49735130202961],[-122.6676970213478,45.49734140429124],[-122.66769380358247,45.4973312697962],[-122.66768497943144,45.49730014155254],[-122.6676747089928,45.4972684560355],[-122.66767176701023,45.4972577856797],[-122.66766927059207,45.49724578105479],[-122.66766750540255,45.49723368890337],[-122.66766632771119,45.49722155519124],[-122.66766564948314,45.49720942525451],[-122.66766543029422,45.49719734757769],[-122.66766567463598,45.49718537757165],[-122.66766643101744,45.49717358135175],[-122.6676677919651,45.49716204392345],[-122.66766962901984,45.49715178598095],[-122.66767187390974,45.49714191654261],[-122.66767626577318,45.49712532349041],[-122.66767758539834,45.49711833163818],[-122.66767779470578,45.49711215394812],[-122.66767700688328,45.49710609211664],[-122.66767519048977,45.49709986782968],[-122.66767049140252,45.49708719068343],[-122.66766815757943,45.49707822606984],[-122.66766660349397,45.49706866515706],[-122.66766567643262,45.49705865402831],[-122.66766526141095,45.49704830791307],[-122.66766527398737,45.49703772252113],[-122.66766566026293,45.49702697215342],[-122.66766746587668,45.49700522143247],[-122.66766890946933,45.49699432056715],[-122.66767076898196,45.49698346251741],[-122.66767311987306,45.49697269010085],[-122.66767812348918,45.49695395296715],[-122.66768031448015,45.49694455574787],[-122.66768205541518,45.49693337970427],[-122.66768299595128,45.49692207961304],[-122.66768332742963,45.49691068758747],[-122.66768320256381,45.49689922629561],[-122.66768203655057,45.49687616958473],[-122.66767605197413,45.49680660018255],[-122.66767455717752,45.49678340742423],[-122.66767417988508,45.49677182520915],[-122.66767418437664,45.49676025810388],[-122.66767470629783,45.49674871114576],[-122.66767588668411,45.49673695198516],[-122.66767760426295,45.49672521423105],[-122.66768211650063,45.49670178027392],[-122.66769032440737,45.49666668976877],[-122.66769930396694,45.49663165150475],[-122.66770563169982,45.49660834848119],[-122.66771244901452,45.49658514430709],[-122.66772021584846,45.49656213721196],[-122.66772469574678,45.49655075707738],[-122.66772969037976,45.49653952113641],[-122.66773511979733,45.49652837586652],[-122.66774685448988,45.49650626477799],[-122.66776561760122,45.49647333898033],[-122.66780403854592,45.49640766426673],[-122.66782243514466,45.49637465025651],[-122.66783360839014,45.49635241380166],[-122.66783859583659,45.49634117152427],[-122.66784321677042,45.49632937701657],[-122.66784736608872,45.49631748679523],[-122.66785116596236,45.49630552793639],[-122.66785804256585,45.49628148616431],[-122.66786714878789,45.49624532431245],[-122.6678724272885,45.49622129195984],[-122.66787472607732,45.49620934126641],[-122.66787670686253,45.49619746046494],[-122.66787827352438,45.49618567600201],[-122.66788000188298,45.49616924701461],[-122.66788120382884,45.49616111721112],[-122.66788321695337,45.49615190057789],[-122.66788818733184,45.49613341441368],[-122.66789091821032,45.49612219161266],[-122.66790044035234,45.49607650698782],[-122.66790312721334,45.49606511793954],[-122.6679062272994,45.49605383782391],[-122.66791506672178,45.49602593221611],[-122.6679179179745,45.49601426861627],[-122.66792492124047,45.49597955675149],[-122.66792798898715,45.49596843718778],[-122.66793212393239,45.49595777162314],[-122.66793608729944,45.49595017576009],[-122.66794648170558,45.49593275684234],[-122.66795311037407,45.495922949529],[-122.66795920813821,45.49591534169731],[-122.66797230557508,45.49590039301662],[-122.66799348784946,45.49587478189999],[-122.66800842952756,45.49585781759064],[-122.66801403950652,45.49584937478927],[-122.66801646405949,45.49584353698934],[-122.66801783219366,45.49583761984864],[-122.66801914373397,45.49581575595482],[-122.66802055768221,45.49580704742034],[-122.66802297864193,45.49579827024892],[-122.6680329984506,45.49577432397235],[-122.66803616860524,45.49576417219377],[-122.6680385805818,45.49575361111814],[-122.66804411689887,45.49572072958807],[-122.66804626566902,45.49570971009324],[-122.66804901271718,45.495698815274],[-122.66805590549035,45.49567757597466],[-122.66805879806554,45.4956669090955],[-122.66806583906074,45.49563449159363],[-122.66807428322441,45.49560242858671],[-122.66807606727858,45.49559118301116],[-122.66807685959266,45.49557973845232],[-122.66807688474549,45.49556815724902],[-122.66807630173886,45.49555649607311],[-122.66807521567567,45.4955448071885],[-122.66807367955654,45.49553314222962],[-122.66807170056799,45.49552155849803],[-122.66806923918409,45.49551012085159],[-122.66806620737002,45.49549891052015],[-122.66806246409023,45.49548802825387],[-122.66805780991876,45.49547760124997],[-122.66805375492355,45.49547042910235],[-122.66804912770154,45.49546362846986],[-122.66804395071054,45.49545725917303],[-122.66803313140127,45.49544613069054],[-122.668025828098,45.49543816198295],[-122.66801964679053,45.49542981420167],[-122.66801529265634,45.4954209998198],[-122.66801322742951,45.49541112315155],[-122.668013086394,45.49540070998658],[-122.66801516958716,45.49537928607585],[-122.66802253487415,45.49532364608313],[-122.66802792386756,45.49528955340781],[-122.66803261756492,45.49526703127472],[-122.6680356026666,45.49525593046102],[-122.66803922826709,45.49524499462412],[-122.66804348807817,45.49523463117399],[-122.66804843689707,45.49522448748409],[-122.66805400914676,45.4952145881125],[-122.6680601760812,45.49520497272984],[-122.66807122086762,45.49518944139612],[-122.66807814508182,45.49517884746871],[-122.66808461744345,45.49516801929408],[-122.66810327365526,45.49513529673415],[-122.6681098996288,45.49512471476071],[-122.6681171050157,45.49511453389923],[-122.66814335558496,45.4950826084989],[-122.66815089065354,45.49507429529798],[-122.66816261815957,45.49506277821943],[-122.66818666336478,45.49503752249836],[-122.66819496649295,45.49502967274491],[-122.66822121526555,45.49500602713495],[-122.6682294986308,45.4949977580013],[-122.66823785386126,45.49498825781552],[-122.66824548684622,45.49497838233074],[-122.66825249460375,45.49496821151788],[-122.66825892654118,45.49495780393824],[-122.66826478535346,45.49494719674374],[-122.66827002163325,45.49493641134374],[-122.6682745374642,45.49492545088671],[-122.66827839303339,45.49491385002832],[-122.66828156408636,45.49490210874572],[-122.66828663507613,45.49487838814848],[-122.66829312360744,45.49484271529841],[-122.66829792600092,45.49481922514474],[-122.6683007799486,45.49480767652923],[-122.66830410102021,45.49479632374671],[-122.66831114830357,45.49477481522677],[-122.66831387019889,45.49476321937496],[-122.66831580157678,45.49475144720584],[-122.66831977392697,45.49471575412506],[-122.66832139628437,45.49470395172058],[-122.66832365195403,45.49469232248024],[-122.66832689217726,45.4946809577102],[-122.66833103610567,45.49467053622415],[-122.66834373918209,45.49464264189511],[-122.66834791904311,45.4946339923708],[-122.66835240702626,45.49462556827688],[-122.66835737021823,45.49461746973542],[-122.66837151239575,45.49459745542036],[-122.66837702625496,45.49458747155903],[-122.66838644329407,45.49456650324044],[-122.66839155919963,45.49455593186499],[-122.6683971943314,45.49454609975362],[-122.66840915270446,45.49452643993357],[-122.66841925336152,45.4945074142135],[-122.66842458576106,45.49449791709354],[-122.66843098176587,45.49448799366563],[-122.66844456519127,45.49446816317678],[-122.66845105192594,45.49445769757239],[-122.66847885568232,45.49440762888507],[-122.66848290349095,45.4943997374836],[-122.66848679319617,45.4943900293959],[-122.668489852858,45.49438003101467],[-122.66849714268653,45.49434911460819],[-122.66849986368354,45.49433873147247],[-122.66850310390677,45.49432833511113],[-122.66851011885083,45.49430764439427],[-122.66851324678463,45.49429730218152],[-122.66851565247299,45.4942869316303],[-122.66851702689537,45.49427659004342],[-122.66851743293387,45.49426626230807],[-122.66851695503016,45.49425601769146],[-122.66851562103193,45.49424592923906],[-122.6685134093797,45.49423608133103],[-122.66851024461495,45.49422657031183],[-122.66850278320821,45.49421022576266],[-122.6684994495602,45.49420204530019],[-122.66849710944888,45.49419327543502],[-122.66849600272444,45.49418428391321],[-122.66849613118353,45.49417516456035],[-122.66849756309811,45.49416600616441],[-122.6685008545253,45.49415547249598],[-122.66850543413662,45.49414495016018],[-122.66852186432317,45.49411288819428],[-122.66852682751511,45.4941019206502],[-122.66853137119381,45.49409078308406],[-122.668547985535,45.49404564843199],[-122.66855240973776,45.49403447559124],[-122.6685572534538,45.49402346332289],[-122.66856272329555,45.49401268719156],[-122.66856907168965,45.49400224102337],[-122.66857637589123,45.49399231121109],[-122.66858439964336,45.49398266350482],[-122.66860104452725,45.4939636879774],[-122.66860892275228,45.4939541202388],[-122.66861599159527,45.49394434154728],[-122.66862150635279,45.49393514218295],[-122.66862635456039,45.49392578727988],[-122.66863541496834,45.49390710706528],[-122.66864029821022,45.49389804119249],[-122.6686458920195,45.49388935188234],[-122.66865259614647,45.49388120978532],[-122.6686610555815,45.49387343417599],[-122.66867066306348,45.49386614910667],[-122.66869141773977,45.49385190137475],[-122.66870244905145,45.49384396707541],[-122.66873505250639,45.49381940915242],[-122.66874605686863,45.49381150318526],[-122.6687572831147,45.49380402541763],[-122.66877897203894,45.49379087336013],[-122.66878893884704,45.49378422869213],[-122.66879546600589,45.49377911861952],[-122.66880777831516,45.49376822279706],[-122.66881351315995,45.49376240115377],[-122.6688184359277,45.4937562180579],[-122.66882359135911,45.49374657849737],[-122.66882692500712,45.49373612157479],[-122.66882888423277,45.49372507650331],[-122.66882978793795,45.49371361960078],[-122.66882984812506,45.49370189129175],[-122.66882918157512,45.49369000240477],[-122.6688278224241,45.49367804550678],[-122.66882572575624,45.49366610120043],[-122.66882276940063,45.49365424568041],[-122.66881874943971,45.49364255829012],[-122.66881412131937,45.49363227892609],[-122.66880881676764,45.49362213242875],[-122.66879762286088,45.49360198363189],[-122.6687924341918,45.4935918572798],[-122.66878801088734,45.49358160813256],[-122.66878448320323,45.4935705246185],[-122.66878206853174,45.49355928934222],[-122.6687806195492,45.49354796338559],[-122.66878006618697,45.49353659838462],[-122.66878041114,45.49352524660528],[-122.66878173705338,45.49351395842438],[-122.66878420203054,45.49350278673759],[-122.66878766413764,45.49349242044802],[-122.66879194011838,45.49348215302105],[-122.66880621344994,45.49345141999719],[-122.6688104013958,45.49344102284233],[-122.66881384284163,45.49343051611586],[-122.66881666624658,45.4934198784075],[-122.66881904498545,45.49340914561073],[-122.66882697171953,45.49336581012842],[-122.66882923008416,45.49335499293998],[-122.66883189448727,45.49334423116413],[-122.66883514189703,45.49333340893383],[-122.66883889415999,45.49332266730465],[-122.66884308210582,45.49331200627656],[-122.66884766980199,45.49330143277649],[-122.66885265185854,45.49329095939875],[-122.66885805342835,45.49328060755358],[-122.6688639284103,45.49327040620788],[-122.66886978901924,45.49326114565132],[-122.6688880436841,45.4932336486029],[-122.66891369328042,45.49319052268015],[-122.6689205752738,45.49318007824859],[-122.66894252650609,45.4931509407554],[-122.66895725528347,45.49313062932369],[-122.66897780244899,45.49310602700958],[-122.66898196384322,45.49310072718643]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000043,"geom:area_square_m":371241.163005,"geom:bbox":"-122.673764,45.4931007272,-122.667382758,45.5009815371","geom:latitude":45.497105,"geom:longitude":-122.6707,"iso:country":"US","lbl:latitude":45.497073,"lbl:longitude":-122.670659,"lbl:max_zoom":18,"mps:latitude":45.497073,"mps:longitude":-122.670659,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["South Waterfront"],"name:war_x_preferred":["Johns Landing"],"reversegeo:latitude":45.497073,"reversegeo:longitude":-122.670659,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85849969,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7568812"},"wof:country":"US","wof:geomhash":"a958ab49c14705f63b0a9489db414298","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108714047,"neighbourhood_id":85849969,"region_id":85688513}],"wof:id":1108714047,"wof:lastmodified":1566624148,"wof:name":"South Waterfront","wof:parent_id":85849969,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781249],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108714049.geojson b/fixtures/microhoods/1108714049.geojson new file mode 100644 index 0000000..9ad699f --- /dev/null +++ b/fixtures/microhoods/1108714049.geojson @@ -0,0 +1 @@ +{"id":1108714049,"type":"Feature","bbox":[-122.679302,45.46435558876581,-122.66782297593042,45.493221],"geometry":{"type":"Polygon","coordinates":[[[-122.67845251089268,45.47022405129994],[-122.678451,45.470225],[-122.678084,45.470491],[-122.677854,45.470752],[-122.677686,45.471005],[-122.677559,45.471212],[-122.677469,45.471588],[-122.677428,45.47189],[-122.677447,45.472124],[-122.677502,45.472453],[-122.677627,45.472726],[-122.678164,45.47422],[-122.678246,45.474443],[-122.678322,45.474648],[-122.678736,45.475773],[-122.678771,45.475943],[-122.6789,45.476565],[-122.678936,45.479846],[-122.678955,45.481524],[-122.679268,45.4847],[-122.67929,45.485107],[-122.679302,45.485328],[-122.679302,45.485507],[-122.679302,45.485832],[-122.679273,45.486119],[-122.679214,45.486372],[-122.679189,45.486477],[-122.679133,45.486589],[-122.678936,45.486987],[-122.678788,45.487212],[-122.678154,45.487797],[-122.677662,45.488163],[-122.677604,45.488207],[-122.676246,45.489242],[-122.675845,45.489608],[-122.675708,45.489734],[-122.675462,45.489947],[-122.675177,45.490276],[-122.674949,45.490574],[-122.674791,45.49079],[-122.674662,45.491031],[-122.674561,45.491174],[-122.674494,45.491283],[-122.674427,45.491392],[-122.674179,45.491833],[-122.673711,45.492957],[-122.67366,45.493221],[-122.670438,45.493141],[-122.66898196384322,45.49310072718643],[-122.66898579026848,45.49309585396942],[-122.66899354272941,45.49308546052722],[-122.66900100593277,45.49307487942801],[-122.66900810891173,45.49306412830379],[-122.66901474656335,45.49305321219214],[-122.6690207850387,45.49304212416605],[-122.66902608599717,45.49303097064745],[-122.66904026141238,45.49299726197023],[-122.66904528748638,45.49298623438585],[-122.66905092980468,45.49297547505839],[-122.6690575207439,45.49296510930148],[-122.66906411797137,45.4929565936491],[-122.66908613657732,45.4929317834525],[-122.66909411900693,45.49292208392779],[-122.66911715181082,45.49289242111713],[-122.66912532468326,45.49288277763043],[-122.66913419195343,45.49287349559976],[-122.6691440761165,45.49286456306066],[-122.66917573993365,45.49283876605613],[-122.66918562948659,45.4928297831341],[-122.6691946216226,45.49282028069345],[-122.66920285288553,45.49281035948884],[-122.66921056043066,45.49280015113102],[-122.66923991827247,45.49275857839181],[-122.6692477605649,45.4927485041547],[-122.66925618586397,45.49273878570683],[-122.66926405510586,45.49273073475268],[-122.66928858090975,45.49270760391731],[-122.66930098933874,45.49269534202666],[-122.66931021593503,45.49268691701305],[-122.66931986923107,45.49267876151809],[-122.66934344731234,45.49265982648311],[-122.66935183039057,45.49265175032887],[-122.66935955230875,45.49264311309317],[-122.66936681608615,45.49263406653822],[-122.66939459648628,45.49259610764135],[-122.669401960875,45.49258665239031],[-122.66942656573063,45.49255747806629],[-122.66943414391837,45.49254756563143],[-122.66944054621139,45.49253785974332],[-122.66944614361395,45.49252791833787],[-122.66945095678722,45.49251779242233],[-122.66945495788352,45.49250752229884],[-122.6694581316314,45.49249724965455],[-122.66946619580771,45.49246661055149],[-122.66946960311758,45.49245675351616],[-122.66947401743889,45.492447247864],[-122.66947909920844,45.49243903943763],[-122.66948492568137,45.4924310413373],[-122.66949819739138,45.49241388266574],[-122.66950555818684,45.49240467990285],[-122.66951351815857,45.49239564023653],[-122.66952184823619,45.49238734364153],[-122.66953076671034,45.4923792391107],[-122.66955849680484,45.49235506153138],[-122.66956725178561,45.49234670951473],[-122.66957521355397,45.49233828381924],[-122.66958270101183,45.49232964086793],[-122.66958985429646,45.49232086756261],[-122.66961689717978,45.49228645442921],[-122.66962302548666,45.49227833728936],[-122.66962843693791,45.49227003186093],[-122.66963360853902,45.49225959166675],[-122.66963757729593,45.49224876985775],[-122.66964073667079,45.49223770686231],[-122.66964856279354,45.49220431131315],[-122.66965160898067,45.49219353483372],[-122.66965540076947,45.49218318404631],[-122.66966032263893,45.49217345164693],[-122.66966477379117,45.49216684016358],[-122.66968714184173,45.49213817129157],[-122.66969425200722,45.49213054027846],[-122.66970076658964,45.49212489164043],[-122.66970791897594,45.49211949489213],[-122.6697154567395,45.49211421590194],[-122.66973339070582,45.49210240476581],[-122.6697428526607,45.49209690474024],[-122.66976765963729,45.49208447646896],[-122.66979189169206,45.49207165083772],[-122.66980457320895,45.49206577675182],[-122.66981593420235,45.49206156262375],[-122.66982780633712,45.49205780819561],[-122.66985212552851,45.49205052918866],[-122.66987933100687,45.49204133896091],[-122.66989302312842,45.49203692898606],[-122.6699070161856,45.4920331575536],[-122.66991939137696,45.49203064494448],[-122.66995699036319,45.49202472047612],[-122.6699690816869,45.49202228154463],[-122.6699824935341,45.49201862912959],[-122.66999523074652,45.49201435391453],[-122.67000609407324,45.49201019582831],[-122.67001605099985,45.49200564416246],[-122.67002465955522,45.49200048795838],[-122.67003139242829,45.49199447469538],[-122.67003631339941,45.49198629076237],[-122.67003879813949,45.49197697080034],[-122.67003953206309,45.49196681770746],[-122.67003905326101,45.4919560613339],[-122.67003779202635,45.49194487359486],[-122.67003256832298,45.4919098292443],[-122.67003127654561,45.49189788078456],[-122.67003061448726,45.49188642791839],[-122.6700304527905,45.4918749441932],[-122.67003069264068,45.49186345416842],[-122.67003212186029,45.49184054967917],[-122.6700346317532,45.4918179084074],[-122.67003631339941,45.49180676472199],[-122.6700383471852,45.49179579861799],[-122.67004081934888,45.4917850692901],[-122.67004385565454,45.4917746541952],[-122.67004762498547,45.49176465157126],[-122.67005234832723,45.49175518358605],[-122.67006679413532,45.49173255991236],[-122.67007265923581,45.49172232931864],[-122.67007833209684,45.49171174796337],[-122.67008929783148,45.49168988813528],[-122.67011108557038,45.49164518040578],[-122.67011684377137,45.49163411540255],[-122.67012288943323,45.49162321475701],[-122.67012933843866,45.49161255655587],[-122.67013633990797,45.49160223714822],[-122.67014260745374,45.49159406638261],[-122.67014925858007,45.49158621174108],[-122.67016778004462,45.49156658300409],[-122.67017549926786,45.49155697959322],[-122.67018239114269,45.4915467980867],[-122.6701886739598,45.49153620347404],[-122.67019451660241,45.49152533429617],[-122.67020004752963,45.4915143045344],[-122.67021050481783,45.49149215999053],[-122.67021514731121,45.49148174232249],[-122.67021898042255,45.49147123774942],[-122.6702213645513,45.49146107952754],[-122.67022272909223,45.49145073301362],[-122.6702233920489,45.49144025803222],[-122.67022376574808,45.49140856543961],[-122.67022413226069,45.49139806211233],[-122.67022501350799,45.49138766646762],[-122.67022667449295,45.49137743014365],[-122.67023248749115,45.49135618921444],[-122.6702410906566,45.49132163883923],[-122.67024451952608,45.491310088247],[-122.67024857452127,45.49129895453685],[-122.67025726841658,45.49127672174537],[-122.6702609092884,45.49126546208157],[-122.6702634811651,45.49125417407748],[-122.67026517718436,45.49124272863722],[-122.67026621563681,45.49123116480437],[-122.67026676899903,45.49121951595483],[-122.67026697201828,45.49120780412933],[-122.67026670791357,45.49118426082111],[-122.67026492475775,45.49112513486938],[-122.6702647163486,45.4911014743955],[-122.67026494092744,45.49108965360091],[-122.6702654969846,45.4910778428796],[-122.67026647614826,45.49106584827251],[-122.67026779846834,45.49105386373867],[-122.67027112672648,45.49102990914734],[-122.67028120851889,45.49097001475263],[-122.67029231349245,45.49091017004362],[-122.67029734315972,45.49088644146759],[-122.67030014231014,45.49087470501295],[-122.67030864666094,45.49084435974542],[-122.67031090502557,45.49083504274308],[-122.67031261451956,45.49082500405708],[-122.67031606405024,45.49079549631756],[-122.67031786696901,45.4907862051265],[-122.6703206751026,45.49077741961568],[-122.67032498432103,45.49076933185618],[-122.67033188967059,45.49076152495989],[-122.67034089528133,45.49075494164914],[-122.6703517559131,45.4907497727357],[-122.67036357055572,45.49074632742292],[-122.6703765458217,45.4907440068274],[-122.67039036550405,45.49074247907569],[-122.67040477807443,45.49074146771162],[-122.67044978726344,45.49073925417181],[-122.67046493465577,45.49073809481855],[-122.6704799715553,45.49073636114133],[-122.67049594090611,45.49073366270072],[-122.67051171172922,45.49073023313046],[-122.67052732085563,45.49072625316621],[-122.67054280331952,45.49072186324012],[-122.67055818427383,45.49071717166757],[-122.67058872340023,45.49070719215626],[-122.67063419162834,45.49069144358076],[-122.67072471845276,45.4906593821677],[-122.67075499077953,45.49064900275989],[-122.67078548948174,45.49063916429874],[-122.67080088930065,45.49063459677856],[-122.6708164427315,45.49063038317315],[-122.67083220367314,45.49062664817163],[-122.67084755677968,45.49062360462692],[-122.6708630931425,45.49062097923099],[-122.67087875526948,45.49061862966214],[-122.6709260336029,45.49061210364119],[-122.67094175501867,45.49060976729655],[-122.67095738929788,45.49060718535219],[-122.67097339368298,45.49060419911304],[-122.67102107356332,45.49059461128164],[-122.67103700967645,45.49059176421492],[-122.67105304280766,45.49058941464486],[-122.67106925739853,45.49058773889939],[-122.67108555912598,45.49058670864025],[-122.67110188780289,45.49058627159879],[-122.67111818054721,45.49058642777497],[-122.67113436908694,45.49058723006727],[-122.67115037706533,45.49058878742107],[-122.67116610836257,45.49059126860742],[-122.67118104554912,45.49059469125894],[-122.67119570335961,45.49059891431319],[-122.67121014826937,45.49060369657846],[-122.67122442968574,45.49060883338841],[-122.6712665489945,45.49062458450599],[-122.67128035610043,45.49062933969021],[-122.67129401498431,45.49063348465376],[-122.67130747803546,45.49063672971542],[-122.67132067698194,45.49063871340336],[-122.67133351839892,45.49063897663559],[-122.67134496473226,45.49063735504946],[-122.67135597628102,45.49063418240815],[-122.6713665009429,45.49062977421238],[-122.67137645337792,45.4906243647259],[-122.67138571141523,45.49061812020049],[-122.67139242901693,45.49061275731387],[-122.671415619026,45.49059241347966],[-122.67142373799953,45.4905847129854],[-122.67143137457775,45.49057670391611],[-122.67143847845504,45.49056818097542],[-122.67145846058021,45.49054191564949],[-122.67148016387749,45.49051654139843],[-122.67148662096773,45.49050799829681],[-122.67149193989253,45.49049918440409],[-122.6714960820243,45.49048890950428],[-122.67149855239133,45.49047826620237],[-122.67149964743766,45.4904673936716],[-122.67149954682635,45.49045641345243],[-122.67149832601591,45.49044543763937],[-122.67149596165008,45.49043457643767],[-122.67149233425293,45.49042394446084],[-122.6714874716723,45.49041371236996],[-122.67146722634077,45.49037648122141],[-122.6714580123209,45.49036032447846],[-122.67145416124326,45.49035292056259],[-122.67145127495627,45.49034580506913],[-122.6714489213702,45.49033856929334],[-122.6714443956578,45.49032289681396],[-122.67144232324446,45.49031447459419],[-122.6714410117041,45.49030596546822],[-122.67144075658258,45.49029733605945],[-122.67144172137318,45.49027960177958],[-122.67144200074927,45.49026853776759],[-122.67144187947667,45.49025723948772],[-122.67144065327633,45.49022257697316],[-122.67144048529137,45.49021092350677],[-122.67144074041292,45.49019928452217],[-122.67144164591473,45.49018769402571],[-122.6714434784779,45.49017618980223],[-122.6714461761187,45.49016563334639],[-122.67144956007238,45.49015513608481],[-122.67145697027516,45.49013413525834],[-122.67146031470295,45.49012353660149],[-122.6714631964984,45.4901121054157],[-122.67146545396469,45.49010055961339],[-122.67146722993401,45.49008893005222],[-122.67146862950923,45.49007724129228],[-122.6714705554972,45.49005378000854],[-122.67147140710007,45.49003035901898],[-122.67147133523486,45.49001873196232],[-122.6714708025339,45.49000721133084],[-122.67146964370718,45.48999584939386],[-122.67146763327757,45.4899847147942],[-122.6714644622246,45.48997389569685],[-122.67145972450982,45.48996350860573],[-122.67145288473725,45.48995338474818],[-122.6714444064376,45.48994371934673],[-122.6714347270904,45.48993439463842],[-122.67142417997066,45.48992532623689],[-122.6714130094201,45.48991645431598],[-122.67140139150854,45.48990774297997],[-122.67138944930515,45.48989917522574],[-122.67136487409391,45.48988250069087],[-122.67135230217153,45.48987445625565],[-122.67133953711134,45.48986668324194],[-122.67132654747232,45.48985927044461],[-122.67131328115221,45.48985233562731],[-122.67128799447528,45.48984051583003],[-122.67127571630199,45.48983454327024],[-122.67126304556488,45.4898276254532],[-122.67123833291141,45.4898136267109],[-122.67122117508949,45.48980496636892],[-122.67118899923264,45.48978823260948],[-122.67117805056596,45.489782940176],[-122.67115141192453,45.48977098307827],[-122.67113950655207,45.48976464714422],[-122.67112833959476,45.48975766130535],[-122.67111806376623,45.48975010616972],[-122.67111138748704,45.48974446547973],[-122.67109705307006,45.48973140189899],[-122.67108946050926,45.48972398908391],[-122.67108258839735,45.48971633444283],[-122.67107687690878,45.48970830572772],[-122.67107247067229,45.48969922280548],[-122.67106965086062,45.48968971731762],[-122.6710682027764,45.48967994103443],[-122.67106801143521,45.48967002683364],[-122.67106905348095,45.48966009373853],[-122.67107139718554,45.4896502551046],[-122.67107529048398,45.48963999768302],[-122.6710846608107,45.48961950487558],[-122.67108902033476,45.48960832611873],[-122.67109699647618,45.48958553784669],[-122.67110153117174,45.48957416574855],[-122.67110669828126,45.48956335979722],[-122.67111814012301,45.4895419185517],[-122.67112359379512,45.48953113400582],[-122.67112831084867,45.48952020083578],[-122.6711317397181,45.48950990623497],[-122.6711344822747,45.48949946804812],[-122.67114156908396,45.48946780585115],[-122.67114451196483,45.48945728893715],[-122.67114819415919,45.48944678146744],[-122.67115248541127,45.48943634515823],[-122.67115721414292,45.48942595670844],[-122.67117779813935,45.48938451750598],[-122.67118742987584,45.48936360707708],[-122.6711919528933,45.48935233443572],[-122.67119610580487,45.4893409975569],[-122.67121510786805,45.48928457510765],[-122.67121923562678,45.48927363559217],[-122.67122372360996,45.48926294671804],[-122.67122871375135,45.48925259602182],[-122.67123718576279,45.48923698810528],[-122.6712417060853,45.48922754488548],[-122.67125022570745,45.48920836875239],[-122.67126003261541,45.48918801748357],[-122.67127202512447,45.48915823179259],[-122.67128712490609,45.48912541757441],[-122.67129175302641,45.48911433066434],[-122.67129517201438,45.48910470353423],[-122.67130139374603,45.48908527104717],[-122.6713047866829,45.48907556330285],[-122.67130949654991,45.48906405948198],[-122.67131476966063,45.48905261548598],[-122.67133159420759,45.48901826648045],[-122.6713367909615,45.48900668077904],[-122.67134136608125,45.48899523425234],[-122.67134555133215,45.48898369262945],[-122.67135736866972,45.48894886307416],[-122.67136157368355,45.4889373000299],[-122.67136619731231,45.48892582200101],[-122.67137133837069,45.48891455053153],[-122.67137694745131,45.4889033779324],[-122.67138290956989,45.48889228216196],[-122.67139558479853,45.48887026820739],[-122.67140899215416,45.4888484778098],[-122.67141595230098,45.48883768872282],[-122.67143054183948,45.48881645061439],[-122.67143830957174,45.48880609038961],[-122.67144653634314,45.48879599025499],[-122.67145537666383,45.48878624089647],[-122.6714638145393,45.48877795447573],[-122.67149053492743,45.48875416139533],[-122.67151223463142,45.4887338288553],[-122.67152206579388,45.48872524328915],[-122.67153257159114,45.48871691529499],[-122.671543677463,45.48870886943381],[-122.67155536005329,45.4887011567165],[-122.67156763822658,45.48869385208523],[-122.67158036825248,45.48868709471785],[-122.67159354743599,45.48868070072359],[-122.67160701497875,45.48867455737474],[-122.6716612256112,45.48865083289499],[-122.6716960613796,45.48863432046979],[-122.67170707292834,45.48862946813338],[-122.67171968258002,45.4886246353193],[-122.6717454085331,45.4886154376051],[-122.67175886260111,45.48861006004318],[-122.67178572492305,45.48859869089696],[-122.67183498493998,45.48857895468847],[-122.67184691456694,45.48857366654976],[-122.67187971744785,45.48855755715186],[-122.67189156892138,45.48855222240844],[-122.67192801357245,45.48853712377832],[-122.6719399755388,45.48853200315337],[-122.6719607329101,45.48852271158894],[-122.67197368392154,45.48851740518171],[-122.67198693946185,45.48851237335198],[-122.67202688035603,45.48849781127189],[-122.67203968584039,45.48849278951665],[-122.6720519173013,45.48848750703775],[-122.67207690573757,45.48847536892205],[-122.6720894390324,45.48847006125085],[-122.67210014605227,45.48846656226845],[-122.67213315913897,45.4884577291633],[-122.67214369098737,45.48845416720349],[-122.67215238398438,45.48845043520643],[-122.67218086237551,45.48843622829881],[-122.67223953673661,45.4884084133814],[-122.67225024195984,45.48840346719027],[-122.67226122655912,45.48839897002269],[-122.67227555828117,45.48839422472646],[-122.67230521885521,45.48838611143405],[-122.67231986858087,45.48838180445487],[-122.67235407013871,45.48836972488479],[-122.672384033445,45.48836043581265],[-122.67239913142998,45.48835548898753],[-122.67241412251543,45.48835012147706],[-122.67242888003894,45.48834433391097],[-122.67244324320203,45.48833808535415],[-122.67245700629047,45.48833129015809],[-122.6724699025047,45.48832380914376],[-122.67248008041685,45.48831673118003],[-122.67248941481097,45.48830910531706],[-122.67249789760223,45.48830100271844],[-122.67250546501016,45.48829245991055],[-122.67251199037237,45.4882834831909],[-122.67251811957756,45.48827258126708],[-122.67252304953185,45.48826123661373],[-122.67252712788323,45.48824957581412],[-122.67253061963476,45.48823769522268],[-122.67253658444822,45.48821354294556],[-122.67254734536701,45.48816492095625],[-122.67255770114564,45.48812037542857],[-122.6725592983502,45.48811141946387],[-122.6725598813568,45.48810265557778],[-122.67255891476958,45.48809359317902],[-122.67255629707883,45.48808488470998],[-122.67255204535259,45.48807669076235],[-122.67254606975932,45.48806921097373],[-122.67253845653728,45.48806275519176],[-122.67252936378999,45.48805719683283],[-122.67251906280862,45.4880525648666],[-122.67250774942592,45.48804893990402],[-122.67249591322376,45.48804641830034],[-122.67248346616715,45.48804460770821],[-122.67244415319539,45.48804018356545],[-122.67242779936564,45.48803755867889],[-122.67241142397633,45.48803432039499],[-122.67239503960387,45.48803064945794],[-122.67234579845157,45.48801852698808],[-122.67232929550147,45.48801456194675],[-122.67231269822827,45.48801086077938],[-122.67229596800443,45.48800757966946],[-122.67227971478599,45.48800491447597],[-122.67223108179314,45.487998041148],[-122.67221534151273,45.48799540051519],[-122.67220011237373,45.48799217923266],[-122.67218562344652,45.48798807375034],[-122.67217420496094,45.48798377681705],[-122.67216330570159,45.48797885829855],[-122.67215275678521,45.48797353735536],[-122.67214005820036,45.48796658215318],[-122.67212809892898,45.48795910990723],[-122.67211737843438,45.48795086681908],[-122.67210959992232,45.48794309731851],[-122.67210296586394,45.48793471001012],[-122.67209736396985,45.48792583777562],[-122.67209274842592,45.48791657948914],[-122.67208914528331,45.48790700883389],[-122.67208647459196,45.48789664466322],[-122.67208480372553,45.48788607770374],[-122.67208397997041,45.4878753803793],[-122.672083918885,45.4878646093693],[-122.67208459980797,45.48785381379613],[-122.67208606136693,45.48784303459498],[-122.67208849669966,45.48783157334702],[-122.67209811945301,45.48779739867403],[-122.67210103897769,45.48778601676829],[-122.67210329734229,45.4877746065204],[-122.6721046205607,45.4877638008536],[-122.6721064126997,45.48773131960366],[-122.67210729304868,45.48772054037904],[-122.67210884264253,45.48770982412987],[-122.6721112896534,45.48769920234493],[-122.67212436912394,45.48765679642621],[-122.67212707484956,45.48764554611518],[-122.67212931884114,45.48763424793896],[-122.67213525401021,45.48760081691185],[-122.67213766598675,45.48759016172821],[-122.67214071666544,45.48757998832149],[-122.67214474111792,45.48757050262889],[-122.67215015616246,45.48756197482483],[-122.67215749090677,45.48755475002741],[-122.6721672439158,45.48754908203717],[-122.67217895615047,45.48754482285703],[-122.67219210568959,45.48754171050015],[-122.67220628559635,45.48753957807582],[-122.67222117876544,45.48753833741547],[-122.67223547185995,45.48753791483518],[-122.6722500110928,45.48753796395776],[-122.6722793276121,45.48753847785569],[-122.67229388930285,45.48753847848548],[-122.67230825156764,45.48753799607641],[-122.6723223084052,45.48753677304974],[-122.67233700753818,45.48753447940234],[-122.67236617853041,45.48752881078028],[-122.67238117949735,45.48752653413658],[-122.6723964634336,45.48752490868215],[-122.67241189110027,45.48752398102065],[-122.67242733044506,45.48752384372924],[-122.67244264582233,45.48752463535897],[-122.67245802138673,45.48752646045265],[-122.67248813201675,45.48753133240717],[-122.67250291199812,45.48753326960095],[-122.67251749614677,45.48753408201316],[-122.67253113706435,45.48753331620443],[-122.67254430906135,45.48753102948446],[-122.67255671479545,45.48752724578455],[-122.67256837492783,45.4875217868775],[-122.67257880167332,45.48751496261318],[-122.67258785130149,45.48750697011138],[-122.67259465154818,45.4874989498982],[-122.6726003414772,45.48749027849406],[-122.67260504056446,45.48748111082399],[-122.67260880181054,45.4874715627667],[-122.67261161263907,45.48746171871232],[-122.67261363384847,45.48745032855165],[-122.67261466241948,45.48743874126816],[-122.67261493101574,45.48742703747334],[-122.67261460223233,45.48741527825565],[-122.67261378027385,45.48740351525677],[-122.67261252353077,45.48739179445065],[-122.67261085176605,45.48738015929194],[-122.67260510614149,45.4873473566335],[-122.6726039266535,45.48733675115447],[-122.67260371914266,45.4873263679855],[-122.67260492378347,45.48731626380685],[-122.6726079358346,45.48730618985584],[-122.67261214534003,45.48729631995155],[-122.67262645460418,45.48726567046178],[-122.67263414508135,45.48725041404178],[-122.67263799166737,45.4872407236151],[-122.67264084022516,45.48723077119817],[-122.67264263685571,45.48722066826192],[-122.67264341749171,45.48720991161172],[-122.67264387473418,45.48718863321334],[-122.67264492755972,45.48717832810991],[-122.6726475129111,45.48716841724746],[-122.67265091213613,45.48716113005126],[-122.67265521865959,45.48715398896337],[-122.67266104513254,45.48714543464546],[-122.6726673980182,45.48713696156801],[-122.67267419736662,45.4871286994661],[-122.67268139466866,45.48712079507891],[-122.67268897105977,45.48711341529863],[-122.67269771166748,45.4871058258001],[-122.67270585489553,45.4870982589727],[-122.6727110714124,45.48709219417398],[-122.67273441503337,45.48706153701576],[-122.67274032325297,45.48705280445541],[-122.67274564038114,45.48704371921561],[-122.6727501804666,45.48703416541614],[-122.67275402795097,45.48702430680032],[-122.67276044551535,45.48700399441871],[-122.67276913941066,45.48697292911299],[-122.67277587497867,45.4869502751781],[-122.67277887086014,45.48693906377255],[-122.67278117054728,45.48692795627906],[-122.67278235003525,45.48691698544648],[-122.67278188919948,45.48690620039801],[-122.6727795266303,45.48689623154755],[-122.67277543839744,45.48688654043014],[-122.67276982392693,45.48687720324983],[-122.67276277305024,45.48686832203182],[-122.6727538896104,45.4868595944798],[-122.67274379524157,45.48685147340893],[-122.67273278189617,45.48684395630035],[-122.67272105618676,45.48683709227747],[-122.67268135873606,45.48681706889963],[-122.67267032293279,45.48681174532752],[-122.6726593437234,45.48680693754889],[-122.67264838607355,45.48680292581814],[-122.67263741315237,45.4868000388833],[-122.67262898246341,45.48679877553438],[-122.67262069640321,45.48679830130618],[-122.67261073857833,45.48679859541584],[-122.67260119218176,45.48679926550719],[-122.6725919781619,45.48679959677417],[-122.67258303633156,45.48679885677667],[-122.67257365881831,45.4867962425386],[-122.6725644124591,45.4867920387226],[-122.67255517687968,45.4867867088503],[-122.67252634185735,45.48676769877934],[-122.67250552340063,45.48675500041366],[-122.67249537153963,45.48674850795352],[-122.67248594641565,45.4867416363616],[-122.67247757052395,45.48673432706764],[-122.67246134245835,45.48671932493731],[-122.6724515894493,45.48671187645777],[-122.67244082224232,45.48670504390811],[-122.67242915133015,45.48669896017343],[-122.67241743190894,45.4866939565216],[-122.67239318907438,45.48668448075637],[-122.67238242456233,45.48667973594551],[-122.67234869012846,45.48666408826933],[-122.67231193466027,45.48664776545731],[-122.6723003787325,45.48664216980132],[-122.67228392339311,45.48663369853756],[-122.67225075759282,45.4866186063208],[-122.67223995624984,45.48661308623638],[-122.6722280347077,45.48660580778537],[-122.67221664137494,45.4865978749843],[-122.67218745241642,45.48657604466083],[-122.67217887081051,45.48656898914985],[-122.67217036915464,45.4865612282757],[-122.6721623418093,45.48655325579175],[-122.67213966922981,45.48652946869928],[-122.67212051175808,45.48651096741052],[-122.67209953519787,45.48648768602045],[-122.67208173867381,45.48647092734354],[-122.67207318850893,45.48646222555129],[-122.67206566332177,45.48645283161962],[-122.67205875527726,45.48644297164246],[-122.67205237723874,45.48643343096671],[-122.67204650764668,45.48642356027973],[-122.6720415318783,45.48641307743568],[-122.67203742118757,45.48640220475],[-122.6720339500973,45.48639104613766],[-122.67203094433435,45.48637968158189],[-122.67202583112379,45.48635655821486],[-122.67200860682651,45.48626277232052],[-122.67200132238787,45.48622818544188],[-122.67199548783009,45.48620580201797],[-122.6719920859101,45.4861949588925],[-122.67198823752743,45.48618444451633],[-122.67198189991313,45.4861685359686],[-122.67197901272777,45.48615836356473],[-122.67197704002741,45.48614786996485],[-122.67197575184333,45.4861371301142],[-122.67197495863091,45.48612620636199],[-122.67197450318507,45.48611514846189],[-122.67197356534392,45.48607029586343],[-122.67197296437098,45.48605906790812],[-122.67197195017303,45.48604788403606],[-122.67197034757855,45.48603677258811],[-122.67196794368685,45.48602576568372],[-122.67196490558456,45.48601580108599],[-122.67196125033968,45.486005914581],[-122.67194894162364,45.48597635141411],[-122.67194511659719,45.48596640822068],[-122.67194147303037,45.48595548128644],[-122.67193831185888,45.48594445358291],[-122.67193553696299,45.48593334904228],[-122.67193089087634,45.48591097494815],[-122.67192725180114,45.485888453473],[-122.67192581270004,45.48587715242517],[-122.67192360464108,45.48585307660082],[-122.67192157534683,45.48581688286085],[-122.6719206976928,45.48579275599717],[-122.67192018026321,45.48576867824737],[-122.67192023416212,45.48574471385067],[-122.67192061145452,45.48573280690923],[-122.67192133639497,45.48572097617075],[-122.67192252756104,45.48570924871655],[-122.67192433766634,45.48569765792593],[-122.67193023510619,45.48566957273258],[-122.67193155473133,45.48565852418977],[-122.67193213953458,45.48564737235792],[-122.67193220960317,45.48563615124607],[-122.67193118732037,45.48560238461015],[-122.6719310058607,45.48559119812828],[-122.67193120259175,45.48558010611397],[-122.67193199221087,45.48556915265326],[-122.67193362534807,45.48555839190885],[-122.67193908441003,45.48553716704937],[-122.67194167694795,45.48552579035513],[-122.67194852839862,45.48549143667976],[-122.67195156290765,45.48548024891624],[-122.67195557388538,45.48546938486768],[-122.67196827336856,45.48544415822394],[-122.67197253946786,45.48543340438352],[-122.67197591443838,45.48542227077129],[-122.67197861746905,45.4854108518572],[-122.67198082103647,45.48539922132775],[-122.67198423732947,45.48537554207375],[-122.67199197182408,45.48530322953317],[-122.67199518060627,45.48527909426211],[-122.6719972090022,45.48526706567042],[-122.67199959492758,45.48525521594007],[-122.67200525161891,45.48523160842303],[-122.6720151519517,45.48519637914202],[-122.67202252622184,45.48517304115613],[-122.67202651204673,45.48516144269755],[-122.67203077275616,45.4851499147746],[-122.67203539548662,45.48513848006021],[-122.67204049881573,45.48512717130428],[-122.67204570724775,45.48511686204489],[-122.6720624383699,45.48508627183048],[-122.67206772944694,45.48507603310171],[-122.6720725399253,45.48506569675133],[-122.67207673056608,45.48505523128918],[-122.67208758580797,45.48502348660883],[-122.67209143419065,45.48501296382655],[-122.67209582515574,45.48500256763312],[-122.6721015007117,45.48499139173883],[-122.67210799103965,45.4849804224185],[-122.67211516857878,45.48496965085497],[-122.67212296326049,45.48495908775504],[-122.67213136879661,45.48494876334958],[-122.67214043639108,45.48493873306153],[-122.67215027923166,45.48492907939576],[-122.67216090001325,45.48491994594816],[-122.67217221159932,45.48491116833956],[-122.6721840244453,45.48490264958001],[-122.67219619392245,45.48489431661208],[-122.67222119403682,45.48487800399401],[-122.67229749244548,45.48483006624512],[-122.67233440511882,45.48480619340102],[-122.67235742893956,45.4847902756468],[-122.67238196821818,45.4847715816954],[-122.67239643738243,45.48476140714985],[-122.67240663775249,45.48475391621427],[-122.67241653628861,45.48474604361402],[-122.67242598746371,45.48473783532494],[-122.67243879294809,45.48472584755525],[-122.67244757308167,45.48471808705695],[-122.67247546846617,45.48469494915207],[-122.67248460882419,45.48468708725034],[-122.67249331619425,45.48467903703466],[-122.67250586925202,45.48466628151536],[-122.67253352388806,45.48463891630961],[-122.67254244236219,45.48462953026141],[-122.67255070865944,45.48461985638868],[-122.67255809460772,45.48460974038802],[-122.67256457415586,45.48459930633162],[-122.67257020569437,45.48458862853689],[-122.672574968562,45.48457776242692],[-122.6725787585542,45.48456674767974],[-122.67258138792302,45.4845556101174],[-122.67258269227682,45.48454377220376],[-122.67258258986885,45.4845318946096],[-122.67258115346273,45.48452005039289],[-122.67257833814264,45.48450831450111],[-122.67257414390858,45.48449681289657],[-122.67256897230747,45.48448542843447],[-122.67255751878761,45.48446277349926],[-122.67255204984417,45.48445138714089],[-122.67254728877316,45.48443988048616],[-122.6725437404278,45.48442892617393],[-122.67254092690432,45.48441787234933],[-122.67253860655593,45.48440678136362],[-122.67253249980864,45.48437393162722],[-122.67253006088262,45.48436337786279],[-122.67252703895004,45.4843531868684],[-122.67252315104146,45.48434349027499],[-122.67251806028877,45.48433445309379],[-122.67251355793256,45.48432844216137],[-122.672502287669,45.48431495786914],[-122.6724961225312,45.48430704867845],[-122.6724904029578,45.48429880379621],[-122.6724854379692,45.48429019488076],[-122.67248076672973,45.48427936461263],[-122.67247720401132,45.48426812055504],[-122.6724743518603,45.48425661008403],[-122.67246939944812,45.48423330571878],[-122.67246663712862,45.48422175493258],[-122.67246321185247,45.48421044284351],[-122.67245871039457,45.48419952249664],[-122.67245321989155,45.4841896898369],[-122.67244694875255,45.4841802010541],[-122.67243984218032,45.48417042759353],[-122.67243175824107,45.48416116428113],[-122.6724222307092,45.48415265548523],[-122.67239068097811,45.4841287137042],[-122.67238107798771,45.48412060105707],[-122.67236190434629,45.48410289443378],[-122.67235192226686,45.48409473769586],[-122.6723307193312,45.48407884997172],[-122.67232032312842,45.48407078140449],[-122.67231063928966,45.48406239037045],[-122.6723021547018,45.48405346966008],[-122.67229546764283,45.48404422963161],[-122.67228994659709,45.48403447630161],[-122.67228519091596,45.48402437909027],[-122.67227208449597,45.48399345762901],[-122.67226701081125,45.48398338560298],[-122.6722609947938,45.48397366942162],[-122.67225430414156,45.48396509068773],[-122.67224666846163,45.48395693015094],[-122.67223827011203,45.48394917584489],[-122.6722292519249,45.48394183595743],[-122.67221972349469,45.4839349413497],[-122.67220428055667,45.48392476917227],[-122.6721936696565,45.48391720632632],[-122.67218370464508,45.48390909742761],[-122.67217466220342,45.48390039272036],[-122.67216726188211,45.48389171635357],[-122.67216065656982,45.48388260100248],[-122.67215459743322,45.48387317577956],[-122.67213185837844,45.48383432860292],[-122.67211472660766,45.48380693339154],[-122.67210972658478,45.48379763286005],[-122.67210497719189,45.48378668975968],[-122.67210117462328,45.48377550921541],[-122.67209815358899,45.48376415483889],[-122.67209581257934,45.48375267386645],[-122.67209410937356,45.48374110471692],[-122.67209306014132,45.48372947384274],[-122.67209273764612,45.48371780517697],[-122.67209317332905,45.48370642370658],[-122.67209416237415,45.48369503089713],[-122.6720996007749,45.48364945774681],[-122.67210039668225,45.48363809137827],[-122.67210055568405,45.483626747681],[-122.67209984960824,45.48361492027917],[-122.67209837996444,45.48360313822191],[-122.67209631383926,45.48359141536539],[-122.67209377250533,45.48357977060424],[-122.67209083321772,45.48356823102079],[-122.67208754268884,45.48355683377467],[-122.67208391349509,45.48354562547264],[-122.6720799348567,45.48353466846724],[-122.67206878227245,45.48350823232891],[-122.67206582861179,45.48349847890612],[-122.67206377506305,45.48348842442663],[-122.67206236201311,45.48347814320932],[-122.67205892685548,45.48343582795653],[-122.67205767999386,45.48342516064826],[-122.67205588785485,45.48341452734841],[-122.67205340401311,45.48340388396937],[-122.67204473976217,45.48337194248342],[-122.67204233048061,45.48336022713665],[-122.67204045659491,45.48334841605427],[-122.67203898784942,45.48333653442911],[-122.67203689028324,45.48331263261002],[-122.67203508017792,45.48327661610797],[-122.67203463820682,45.48325259459678],[-122.67203512419538,45.48322864046659],[-122.67203592189935,45.4832167159881],[-122.67203710318395,45.48320580174682],[-122.67203871565988,45.48319494796666],[-122.67204075932715,45.48318417165294],[-122.67204326652511,45.48317349484966],[-122.67204630013585,45.48316294715861],[-122.67204995538073,45.48315256510978],[-122.67206225601191,45.48312426072768],[-122.67206580256065,45.48311475790926],[-122.67206881281516,45.48310369374959],[-122.67207086546561,45.48309243875026],[-122.67207220305704,45.483081040778],[-122.67207302052397,45.48306953636272],[-122.67207347147823,45.48305795573606],[-122.67207401585729,45.48299961987542],[-122.67207507946259,45.48297637734313],[-122.67207618259376,45.48296484330459],[-122.67207784447703,45.4829533980694],[-122.67208275736331,45.48292977321227],[-122.67208485223459,45.48291795196236],[-122.67208594817923,45.48290703388421],[-122.67208631648847,45.48289604778247],[-122.67208610448606,45.4828850182204],[-122.67208542176647,45.48287396598232],[-122.67208433660159,45.48286291311224],[-122.67208288941566,45.48285188354368],[-122.67208108200532,45.4828409037295],[-122.6720788892177,45.48283000327166],[-122.67207624996739,45.48281922058987],[-122.67207306903298,45.48280860229155],[-122.67206921256546,45.48279820506153],[-122.6720650416876,45.48278892262856],[-122.67205620765509,45.48277070668399],[-122.67205234310273,45.48276159744984],[-122.67204919271104,45.48275221738718],[-122.67204393487167,45.48273339742322],[-122.67204094438011,45.48272411057079],[-122.67203246787709,45.48270387788676],[-122.67202377757502,45.48268215816417],[-122.6720190263855,45.48267142898977],[-122.67201333555816,45.48266103299407],[-122.67200784146189,45.48265303035609],[-122.67199574474827,45.48263727386018],[-122.6719781476502,45.4826124320352],[-122.67197191873198,45.48260419572262],[-122.67196508704423,45.48259617607108],[-122.67195704442751,45.48258805816457],[-122.67194835143053,45.48258017392467],[-122.67193020276682,45.48256455030305],[-122.6719213085472,45.48255653946353],[-122.67191201817054,45.48254741570859],[-122.67190313922227,45.48253802742244],[-122.67187737194665,45.48250932530696],[-122.67186857025351,45.48249990930176],[-122.67185940025108,45.482490742709],[-122.67183476305611,45.48246810649647],[-122.67182658569206,45.4824599054335],[-122.67181878202719,45.48245152990535],[-122.67177654593748,45.48240388863317],[-122.67176899020762,45.48239419422359],[-122.67175091340917,45.48236979947403],[-122.67174477791576,45.48236008301436],[-122.67173916703851,45.48234999872945],[-122.67172827406736,45.4823292884961],[-122.67172239189888,45.48231891070252],[-122.67171577850176,45.48230844032122],[-122.67169472917804,45.4822771633206],[-122.6716883565294,45.48226651657754],[-122.67168311845298,45.48225638944705],[-122.6716783996028,45.48224610926459],[-122.67166514675743,45.48221497583211],[-122.67166034256726,45.48220469312274],[-122.67164274097759,45.48217175896388],[-122.67163733401789,45.48216066816579],[-122.67163276608467,45.48214955154226],[-122.67162881619237,45.48213827304832],[-122.67162527413522,45.48212688244109],[-122.67161536302268,45.48209242339958],[-122.67161175808346,45.48208095027434],[-122.67160766805395,45.48206925166474],[-122.67160323037643,45.48205760155024],[-122.67159853218752,45.48204598859384],[-122.67158860939689,45.4820228401439],[-122.67155748097566,45.48195361895986],[-122.67154755279515,45.48193050070427],[-122.67153857323554,45.48190726906802],[-122.67153470149668,45.48189557861033],[-122.67153144869705,45.48188381256935],[-122.6715289837199,45.4818721668254],[-122.67152710085105,45.48186044927726],[-122.67152561863084,45.48184868007972],[-122.67152104979931,45.48180137589251],[-122.67151968346177,45.48178954873727],[-122.67151799552735,45.48177774173446],[-122.67151595724998,45.4817662937388],[-122.6715109751934,45.48174345820524],[-122.67149368801408,45.4816751512091],[-122.67148882273851,45.48165243845791],[-122.67148696861577,45.48164111199643],[-122.67148570558444,45.48162982017402],[-122.67148517018855,45.48161832868915],[-122.67148531302067,45.4816069367171],[-122.67148603077459,45.48159569968423],[-122.67148727044969,45.48158468687333],[-122.67148902665609,45.48157398646269],[-122.67149134071623,45.48156371056465],[-122.67149430336003,45.48155399837484],[-122.67149908329567,45.48154122892122],[-122.67150111169157,45.48153428867098],[-122.6715047211224,45.48151968888584],[-122.67150772868197,45.48150955658237],[-122.67151135068917,45.4814992126494],[-122.67151550360077,45.48148874211576],[-122.67152014609412,45.48147822371198],[-122.67152528266094,45.48146773490897],[-122.67153096630175,45.48145735758649],[-122.67153729762785,45.48144718244234],[-122.67154443653939,45.48143731655029],[-122.67155260761523,45.4814278883989],[-122.67156213963874,45.48141884949031],[-122.67157263106292,45.48141023446616],[-122.67158373603645,45.48140188019676],[-122.67160662241497,45.48138538517185],[-122.67161787561052,45.48137697295292],[-122.67162864461416,45.481368261556],[-122.67163847757325,45.48135937632024],[-122.67164776166173,45.48135016797208],[-122.67165665588135,45.48134073161811],[-122.67169925668708,45.48129265418252],[-122.67172327224787,45.48126742503864],[-122.67173037612514,45.48125932331669],[-122.67173750874849,45.48124982018369],[-122.67174376731109,45.48123996811373],[-122.67174925601745,45.48122984205843],[-122.67175401708847,45.48121950059345],[-122.67175803165948,45.48120898528865],[-122.67176121708547,45.48119832826618],[-122.67176342065287,45.48118754968102],[-122.67176452019076,45.48117646183843],[-122.67176464056502,45.48116530408056],[-122.67176397671003,45.4811541167176],[-122.67176265349163,45.48114293754043],[-122.67176072750365,45.48113181000863],[-122.67175819515286,45.4811207813609],[-122.67175498457402,45.48110991206265],[-122.67175096191818,45.48109927517658],[-122.67174597716668,45.48108900612031],[-122.67173991084357,45.48107914961325],[-122.67173260843862,45.48106982658673],[-122.67172366391335,45.48106090414282],[-122.67171350127252,45.48105262540351],[-122.67170238012932,45.48104494879905],[-122.67169047924844,45.48103787747895],[-122.67165384864609,45.48101911110939],[-122.67164164503295,45.48101197050258],[-122.67162990944209,45.4810044204924],[-122.6715957932242,45.48098145993976],[-122.6715800053331,45.48097141886777],[-122.67156981035292,45.48096429589069],[-122.67154982104125,45.48094942134308],[-122.67153949400873,45.48094213775133],[-122.67152856151172,45.48093528560636],[-122.67151620698164,45.48092877106055],[-122.67150310595152,45.48092284038567],[-122.67148948839011,45.48091733800878],[-122.67146145736,45.48090715268949],[-122.67142247047666,45.48089375260832],[-122.67141143108013,45.4808902701613],[-122.67139786023114,45.48088669512592],[-122.67136990825276,45.4808803355179],[-122.67135656557585,45.48087706910911],[-122.67134335764622,45.48087350037142],[-122.67133038597353,45.48086961355856],[-122.67131776823702,45.48086537213908],[-122.67130564906553,45.48086071942623],[-122.67129420542715,45.48085557227955],[-122.671285304021,45.48085088681362],[-122.67126047458653,45.48083630637685],[-122.67125269607449,45.48083147100458],[-122.67124322603478,45.48082476560165],[-122.67123442164666,45.48081749648038],[-122.67122640148781,45.48080972284668],[-122.67121934162799,45.48080147241381],[-122.67121348640899,45.48079274203231],[-122.6712085564547,45.48078231923618],[-122.67120510782232,45.48077142467858],[-122.67120280184699,45.48076020448505],[-122.67120140766166,45.48074877265881],[-122.67120078512917,45.4807372243074],[-122.67120087675731,45.48072563753265],[-122.67120170500401,45.48071408350788],[-122.67120336868395,45.48070263340648],[-122.67120604386683,45.48069135903189],[-122.67120913766469,45.48068215561338],[-122.67121276326517,45.48067308005359],[-122.67122088942524,45.48065418255297],[-122.67122543759551,45.48064442233753],[-122.67123064153594,45.48063490713358],[-122.6712479880041,45.48060921853135],[-122.67125470021588,45.4805987673578],[-122.67126742036032,45.48057731703135],[-122.67127331330857,45.48056638401298],[-122.67127877147223,45.4805553388783],[-122.67128365381582,45.4805441879258],[-122.67128776630318,45.4805329273763],[-122.67129085111787,45.4805215452625],[-122.67129270613893,45.48050992758048],[-122.67129350833449,45.48049820785943],[-122.67129351013112,45.48048642137127],[-122.67129289388683,45.48047460023854],[-122.67129177548428,45.4804627715451],[-122.67129021690728,45.48045096300451],[-122.67128822983388,45.48043920359028],[-122.67128577563649,45.4804275260549],[-122.67128276538199,45.48041597133912],[-122.67127905444156,45.48040458794196],[-122.67127443889764,45.48039343821936],[-122.67126965087716,45.48038409114482],[-122.67125367972972,45.48035637995703],[-122.67124848207752,45.4803461712316],[-122.67123923751491,45.4803253563352],[-122.67122609336568,45.48029388612703],[-122.67122132780307,45.48028352370497],[-122.6712160924216,45.48027331685595],[-122.67121018150704,45.48026333234502],[-122.67120382682472,45.48025411877882],[-122.67117573021756,45.48021801151149],[-122.67116890571637,45.48020818508527],[-122.67116255822057,45.48019817788787],[-122.67115662394981,45.48018803085998],[-122.67115106158157,45.48017777675421],[-122.67114585404786,45.48016744013499],[-122.6711410076369,45.48015704115782],[-122.67113654929814,45.48014659682888],[-122.67112511823615,45.48011777760086],[-122.67112066169405,45.48010838639041],[-122.67111546583843,45.48009918161692],[-122.67109088074572,45.48006126214182],[-122.67108436706162,45.48005042413227],[-122.67107188317412,45.48002845081257],[-122.67104810746346,45.47998388562365],[-122.67100187566737,45.47989414039453],[-122.67098431180695,45.47986055612642],[-122.67097218994049,45.47983829929434],[-122.670959341337,45.47981627424316],[-122.67095246293688,45.47980540721274],[-122.67094502578463,45.4797944463306],[-122.6709292253171,45.47977281996596],[-122.67087933558115,45.47970875775631],[-122.67086311649871,45.47968733984393],[-122.67084782357931,45.47966575500926],[-122.67082711920862,45.47963383785829],[-122.67082006204377,45.47962350491847],[-122.67081258716229,45.47961350958469],[-122.67080039702387,45.47959874931598],[-122.67079285207383,45.47958900907338],[-122.67077161230723,45.47955975117344],[-122.67076435571636,45.47955053308313],[-122.67075422271998,45.47953832564608],[-122.67074795876748,45.47952928139539],[-122.67074240268747,45.47951967782181],[-122.67073736852859,45.47950965286585],[-122.67073270447565,45.47949931927344],[-122.67072829015434,45.47948876900489],[-122.67071125540161,45.47944575664196],[-122.67070675933361,45.47943508227956],[-122.67069230454237,45.47940338356202],[-122.67068851275356,45.47939242827044],[-122.67068550339737,45.47938125504245],[-122.67067835819759,45.47934715523628],[-122.67067575398158,45.47933582390225],[-122.67067259999662,45.47932463554617],[-122.67066853511994,45.47931318705201],[-122.67066397796653,45.47930196845773],[-122.67065170877636,45.47927328862869],[-122.67064751723724,45.47926505875656],[-122.67064267891112,45.47925747135002],[-122.67063719649296,45.47925096605822],[-122.67063101788042,45.47924536714803],[-122.67062432004167,45.47924082893768],[-122.67061850704347,45.47923794791402],[-122.67061276770713,45.47923574651958],[-122.67060204182263,45.47923218460652],[-122.67059647765775,45.47922973567304],[-122.67059118658072,45.47922657246716],[-122.67058655486713,45.47922261436541],[-122.6705818090675,45.47921599632291],[-122.670578348757,45.47920820483191],[-122.67057562057347,45.47919961529442],[-122.67057037620887,45.47918126150748],[-122.67056547230573,45.47916632098259],[-122.67056342594351,45.47915713747084],[-122.6705620506228,45.47914754706111],[-122.6705587645855,45.47910690779207],[-122.67055748358791,45.47909649224251],[-122.6705553680554,45.47908453791533],[-122.67055272611017,45.47907258673498],[-122.6705439648412,45.47903690324414],[-122.67054156544107,45.47902512715806],[-122.67053990086285,45.47901345373873],[-122.67053934660231,45.47900192518757],[-122.67054036888513,45.47899059567377],[-122.67054326864685,45.47897970013985],[-122.67054765781535,45.47896904080607],[-122.67055304411376,45.47895861137383],[-122.67055901611378,45.47894842947972],[-122.67056556662884,45.47893828285663],[-122.6705730163575,45.47892869303953],[-122.6705808343954,45.47892073774173],[-122.67060569527088,45.47889895609288],[-122.67061230148147,45.47889182340572],[-122.67061684605851,45.47888449104773],[-122.67061864807896,45.47887597830547],[-122.67061692600856,45.47886741580195],[-122.67061212451338,45.47885946490463],[-122.67060505746706,45.47885167210457],[-122.67057840535088,45.47882764744693],[-122.67057004023894,45.47881882542782],[-122.67056352745313,45.47881026858443],[-122.6705578474056,45.47880124311315],[-122.6705527297034,45.47879188506658],[-122.67053835486223,45.47876290956657],[-122.67053312487066,45.47875325736202],[-122.67052667586525,45.47874263766751],[-122.6705129496077,45.47872158849493],[-122.67050639280443,45.47871098013221],[-122.67050054926352,45.47870018343473],[-122.67049570285253,45.47868906927776],[-122.67049171073943,45.4786777277334],[-122.6704883285824,45.47866622241897],[-122.67048535695544,45.47865460057513],[-122.67047453854447,45.4786076275408],[-122.67047144654325,45.47859588663814],[-122.67046459958415,45.47857370741126],[-122.67044939469969,45.47852946167944],[-122.67044581940483,45.47851836449551],[-122.67044256211362,45.4785072345557],[-122.6704397764379,45.4784960605223],[-122.67043756119241,45.47848462886649],[-122.67043591727544,45.47847317075352],[-122.6704347746184,45.47846171641749],[-122.67043411435668,45.47845030365113],[-122.6704339697279,45.47843897717576],[-122.67043442876702,45.4784277943105],[-122.67043564778086,45.47841683001097],[-122.67043785583984,45.47840618442805],[-122.67044137274418,45.47839598479747],[-122.67044662878692,45.47838640118689],[-122.67045340208414,45.47837818315288],[-122.67046176000953,45.47837060759459],[-122.67047139983087,45.47836364301838],[-122.67048210954566,45.47835729824267],[-122.67049375350838,45.47835162869714],[-122.67050626165039,45.47834673390297],[-122.67052035801385,45.47834248158563],[-122.67053512182555,45.47833897945466],[-122.67055031323531,45.47833599508458],[-122.67059644801336,45.47832831118134],[-122.67061136004709,45.47832562852319],[-122.67062566212469,45.47832260446997],[-122.67063906139548,45.47831903871993],[-122.67065119134678,45.47831469002882],[-122.67066159024448,45.47830926361268],[-122.67067058956701,45.47830187511959],[-122.67067782280166,45.47829331063915],[-122.67068357381613,45.47828450932239],[-122.6706879216621,45.47827506426653],[-122.67069035968977,45.47826525702781],[-122.67069129842925,45.47825497107808],[-122.67069110079989,45.47824434688051],[-122.670690032703,45.47823349907324],[-122.67068827380169,45.47822251961874],[-122.67068593279204,45.47821149166128],[-122.67068305099663,45.47820049330605],[-122.67067960595752,45.47818960328828],[-122.67067551053813,45.47817891168109],[-122.67067061022827,45.47816852493453],[-122.67066467326255,45.47815857469409],[-122.67065700793823,45.47814866098506],[-122.67064798256457,45.47813949557399],[-122.67063764205733,45.47813121262616],[-122.67062591005973,45.47812401937314],[-122.67061350881723,45.47811838507752],[-122.67060008349532,45.47811364269459],[-122.6705859413178,45.4781095194855],[-122.67057133111803,45.47810578554338],[-122.6705266399326,45.47809498243105],[-122.67051202074967,45.47809089701356],[-122.67049782646988,45.47808622895445],[-122.67048380376828,45.47808064504567],[-122.67047028771651,45.47807439283086],[-122.6704571606353,45.47806763796896],[-122.67044433179473,45.47806050643631],[-122.67043173651611,45.47805309523476],[-122.6704071020161,45.47803769081684],[-122.67038317269355,45.47802173650658],[-122.67037154220556,45.47801357510892],[-122.670360223433,45.4780052707265],[-122.670349322377,45.47799678556633],[-122.6703389899546,45.47798806482842],[-122.67032942289683,45.47797903040701],[-122.67032088351172,45.47796957711145],[-122.67031349307189,45.47795949393038],[-122.67030712401653,45.47794899376429],[-122.67030147630834,45.47793819692076],[-122.67029630740221,45.47792719851219],[-122.67027675018015,45.47788258756938],[-122.67027133154235,45.47787156773389],[-122.67026535235583,45.47786071733532],[-122.67025909289492,45.47785069901295],[-122.67025237080166,45.47784082493249],[-122.67023140861451,45.4778114899086],[-122.67022479252242,45.47780162463972],[-122.67021870284312,45.47779162016428],[-122.67021328600197,45.47778140341559],[-122.67020841982806,45.47777104997972],[-122.6701908487811,45.47772951716872],[-122.67018610477808,45.47771942827571],[-122.67018087029493,45.47770961275175],[-122.67017493063427,45.47770017137882],[-122.6701689658208,45.47769213843152],[-122.67015652774735,45.47767642338054],[-122.67014939332736,45.47766638234946],[-122.67012869704153,45.47763710392461],[-122.67012244925871,45.47762727263915],[-122.6701168734158,45.47761645179825],[-122.67010728839168,45.4775940737711],[-122.67010218865582,45.47758281641136],[-122.6700967098309,45.47757243522391],[-122.6700905976937,45.47756217686285],[-122.67008400675448,45.47755204321778],[-122.67007706367565,45.47754204562683],[-122.67006251545962,45.47752255561047],[-122.67004176257993,45.47749694558514],[-122.67003633136572,45.47748990090498],[-122.67002069978145,45.47746591975899],[-122.6700075727002,45.47744657900018],[-122.67000148481753,45.4774367306744],[-122.66999626560572,45.47742673306298],[-122.66999299214484,45.47741886447795],[-122.66998341340897,45.47739352462847],[-122.66998059898717,45.47738460979095],[-122.66997834421582,45.47737448619218],[-122.66997696440355,45.4773641711049],[-122.66997637241376,45.47735373318703],[-122.66997653321219,45.47734323353792],[-122.66997746296852,45.47733272758792],[-122.66997923175131,45.47732226824795],[-122.66998187549319,45.47731183095222],[-122.66999132217671,45.47728082707034],[-122.66999360030428,45.47727050314742],[-122.66999475823269,45.47726086139533],[-122.66999497652331,45.47725123601882],[-122.66999428571884,45.47724167677931],[-122.66999267593783,45.47723223658778],[-122.66998676053171,45.47721115724604],[-122.66998414373928,45.47720034010456],[-122.66998204707143,45.47718929619974],[-122.66997890566286,45.4771667510814],[-122.6699739900816,45.47712094210939],[-122.66997070134937,45.47709816327318],[-122.66996845196792,45.47708691211327],[-122.66996559263035,45.47707580519682],[-122.66995659061288,45.47704795947429],[-122.66995370971578,45.47703618927154],[-122.66995159687822,45.47702425718346],[-122.66995009579338,45.47701220541288],[-122.66994909776511,45.47700006923382],[-122.66994853811468,45.47698787762145],[-122.6699483916893,45.47697565325188],[-122.66994866837041,45.47696341754153],[-122.66994941666704,45.4769511893873],[-122.66995061501962,45.47693933538824],[-122.66995504012071,45.47690395478602],[-122.66995604623382,45.47689224313346],[-122.66995639927173,45.47688059131863],[-122.66995578662069,45.4768690176085],[-122.66995416605994,45.47685840070835],[-122.66995181876212,45.47684782726908],[-122.6699464351586,45.47682665329901],[-122.66993724988484,45.47678431730309],[-122.66993457829517,45.47677381880765],[-122.66993138478433,45.47676343243204],[-122.66992066698467,45.47673572954189],[-122.66991693807792,45.47672496899996],[-122.66991359544677,45.47671408184651],[-122.66990127505262,45.47667002677347],[-122.66989773748705,45.47665905898241],[-122.66989367800028,45.47664818441418],[-122.66988877409713,45.47663706796278],[-122.66988327371266,45.47662606300126],[-122.669871062913,45.47660427479627],[-122.66985788193284,45.47658267051344],[-122.66983712905314,45.47655051792326],[-122.66982270749956,45.47652935643949],[-122.6698152335164,45.47651893474438],[-122.66980749453025,45.47650868249048],[-122.66979939172637,45.47649866896693],[-122.66979078945923,45.4764889855094],[-122.66978151076064,45.47647975557852],[-122.66977272793211,45.47647212811317],[-122.66976350133582,45.47646484394264],[-122.66973667314987,45.47644521245589],[-122.66972868263542,45.47643970649222],[-122.66972040466008,45.47643454445394],[-122.66971214644765,45.47643004507109],[-122.66970359807941,45.47642576363362],[-122.66967861593136,45.47641395046761],[-122.66966566042834,45.47640848670427],[-122.66963744344697,45.47639789491342],[-122.6696037440474,45.47638404589985],[-122.66958906827058,45.47637879944963],[-122.66957380499558,45.47637413250847],[-122.66955802878257,45.47637010491717],[-122.66954211872056,45.4763668237591],[-122.66952589155328,45.47636404778212],[-122.66950946585831,45.47636159809407],[-122.66945996868617,45.47635475673029],[-122.66944369839975,45.47635219743893],[-122.66942770748935,45.47634925894651],[-122.66941211992255,45.47634576362059],[-122.66939748995985,45.47634176059344],[-122.66936873758256,45.47633320652341],[-122.66933784362159,45.47632495102575],[-122.66929957988206,45.47631370727029],[-122.66928677978758,45.47631015336123],[-122.66925929044159,45.47630337498145],[-122.66924574923698,45.47629982611096],[-122.66923172563708,45.47629557615875],[-122.66920414466293,45.4762866617774],[-122.66917487216108,45.47627802140237],[-122.66915349405394,45.47627116302102],[-122.66914154556234,45.47626768847708],[-122.66910483141669,45.4762578267173],[-122.66909276614409,45.47625422808161],[-122.66907099277824,45.47624694136331],[-122.66905643108748,45.47624234936968],[-122.66901146501763,45.47622889715691],[-122.66899663652724,45.47622395178608],[-122.66898253297727,45.47621870343127],[-122.66895460884668,45.47620774689063],[-122.66894040109213,45.47620256782371],[-122.66892624633819,45.47619798968435],[-122.66888300413537,45.47618531287256],[-122.66886888621235,45.47618074040094],[-122.6688552291251,45.47617560731449],[-122.66884115432123,45.47616920749082],[-122.66882771103299,45.47616206437962],[-122.66881477708955,45.47615435813328],[-122.66880228332057,45.47614621851179],[-122.66879020816651,45.47613773307163],[-122.66877858486505,45.47612894842567],[-122.66876749965444,45.47611987654184],[-122.66875709985842,45.47611049663321],[-122.66874760825911,45.47610075011851],[-122.66873933028378,45.47609054440149],[-122.66873269442877,45.47608010939722],[-122.66872719763754,45.47606925928356],[-122.6687225335846,45.47605810870308],[-122.6687184723012,45.47604674395256],[-122.66871151754425,45.47602360752567],[-122.6687054772723,45.4760001807027],[-122.66869747957132,45.47596481966782],[-122.66869302302918,45.47594116920362],[-122.66869123358514,45.47592931940142],[-122.66868978729754,45.47591699338724],[-122.66868785052979,45.47589231615444],[-122.66868674380535,45.47586768426422],[-122.66868627308817,45.47584322243826],[-122.66868657132883,45.47581913539686],[-122.66868714355566,45.47580733596165],[-122.66868811732944,45.4757957815582],[-122.6686896202109,45.47578455722435],[-122.66869296104545,45.47576428362385],[-122.66869339313509,45.47575577670936],[-122.66869366532464,45.4757385890216],[-122.66869479360862,45.47572768592988],[-122.66869785955868,45.47570520510737],[-122.66869855934628,45.4756940651633],[-122.66869863749972,45.47568274128346],[-122.6686982485292,45.4756712800811],[-122.66869653005205,45.47564808050909],[-122.66869408663447,45.47562465856927],[-122.66867750014106,45.47548378720358],[-122.66867459049786,45.47546142470723],[-122.66867303102254,45.47545187335296],[-122.66867092447322,45.47544268419653],[-122.66866783516694,45.47543396369321],[-122.66866326903036,45.47542584727443],[-122.66865561448581,45.47541723007414],[-122.66864607437749,45.47540926987121],[-122.66863543023972,45.47540161580462],[-122.66861722049059,45.47538947990866],[-122.66860770194184,45.47538368912125],[-122.66858546324866,45.47537118850185],[-122.66857502662167,45.47536462606925],[-122.6685680503052,45.47535944944449],[-122.6685613875007,45.47535400762587],[-122.66855210520889,45.47534605434307],[-122.6685431373274,45.47533783271608],[-122.6685347910801,45.47532932573716],[-122.6685207549038,45.47531274830559],[-122.66851352256742,45.47530463753853],[-122.66849421507705,45.47528616216938],[-122.66848580415103,45.47527730432063],[-122.6684777857888,45.47526801686912],[-122.66845460835616,45.4752390956194],[-122.66843445195784,45.47521471540949],[-122.66842824819247,45.4752060043196],[-122.6684227549945,45.47519700472741],[-122.66841795799088,45.47518778088407],[-122.66841388502938,45.47517838444254],[-122.66841060438198,45.47516885697706],[-122.66840789326643,45.47515810117523],[-122.66840170926402,45.47512606871604],[-122.66839881309555,45.47511579605143],[-122.66839271353476,45.47509996374755],[-122.66838944097219,45.47509052130744],[-122.6683866265504,45.47508079414373],[-122.66838424331993,45.47507084587772],[-122.66838229397578,45.4750607294223],[-122.66838080995895,45.47505048572189],[-122.6683798559481,45.47504015068178],[-122.66837953345292,45.47502975138826],[-122.66837998710211,45.47501847272897],[-122.66838113514906,45.47500717139039],[-122.66838282308349,45.47499586815981],[-122.66838493861599,45.47498458634414],[-122.66839019106546,45.47496217892555],[-122.66839327049026,45.47495111316486],[-122.66840280520869,45.47492175647927],[-122.66840539594993,45.47491261133061],[-122.66840742165093,45.47490276508167],[-122.66841127093188,45.47487376805427],[-122.66841285556005,45.47486455486663],[-122.66841513638256,45.47485573789631],[-122.66841848260701,45.47484744879652],[-122.66842340447646,45.47483927119114],[-122.66842896055648,45.47483134177261],[-122.66843414203903,45.47482314778696],[-122.66843847641029,45.47481344766361],[-122.66844162500534,45.47480306092661],[-122.66844400015097,45.47479219607897],[-122.66845004581285,45.47475839459722],[-122.66845285035313,45.4747471977732],[-122.66845668795604,45.47473626614326],[-122.66846955991574,45.47470980886872],[-122.668474524006,45.47469893833381],[-122.66848405602947,45.4746766637149],[-122.66850260983335,45.47463158657677],[-122.66850735383638,45.474620513822],[-122.66851699096273,45.47459930058982],[-122.66852126245192,45.4745890391678],[-122.66852416670523,45.47458016861102],[-122.66852906432017,45.47456248670593],[-122.6685318940133,45.47455382338934],[-122.6685355555464,45.47454538810321],[-122.66854063641765,45.47453680919353],[-122.66854663446881,45.47452842807817],[-122.66855945432623,45.47451166206413],[-122.6685653481728,45.47450297795226],[-122.66857043892553,45.47449383273568],[-122.6685748218058,45.4744843807452],[-122.66859031415117,45.47444538158265],[-122.66859486681304,45.47443575698505],[-122.66860003751583,45.47442642026083],[-122.66861688541897,45.47439902740413],[-122.66862189532331,45.47438989602895],[-122.66862632850925,45.47438031362683],[-122.6686371936326,45.47435353240412],[-122.66864003590214,45.47434572890208],[-122.66864261406702,45.47433541389032],[-122.66864427774694,45.47432482800907],[-122.6686467202662,45.47430334316798],[-122.66864840370903,45.47429268420944],[-122.66865103936607,45.47428224824233],[-122.66865518149784,45.47427217762987],[-122.66866067559414,45.47426335237784],[-122.66866745697622,45.47425482822872],[-122.66867506570668,45.474246476048],[-122.66869113836371,45.47422980695863],[-122.6686988315358,45.47422124752863],[-122.66870576922476,45.47421236368551],[-122.66871178703886,45.47420280267066],[-122.66871686431683,45.47419286495838],[-122.66872126516341,45.47418265511631],[-122.66872521056415,45.47417225755432],[-122.66873616641735,45.47414063587681],[-122.66874008397029,45.47413015263704],[-122.6687444165449,45.47411979727047],[-122.6687580880052,45.47409169307692],[-122.66876220408585,45.47408229708252],[-122.66876604079042,45.47407163556249],[-122.66877589171582,45.47403942358623],[-122.66877993772788,45.47402888678374],[-122.66878444906725,45.47401943660509],[-122.6687996458669,45.47399147031578],[-122.66880405659495,45.47398199745343],[-122.66880791665572,45.4739714203248],[-122.66881102302997,45.47396066807402],[-122.66881932705645,45.47392814043992],[-122.66882800029052,45.47390060497697],[-122.66883083357692,45.47388909112802],[-122.66884190710944,45.47383445417232],[-122.66884269942352,45.47382472238227],[-122.66884318451375,45.47380521155234],[-122.6688441726606,45.47379550180479],[-122.66884581388261,45.47378795649706],[-122.66884821777431,45.4737805000085],[-122.66885131157214,45.47377317265477],[-122.66886422036278,45.473748542358],[-122.66886848107215,45.47373776423751],[-122.66887188928035,45.47372659933718],[-122.66888585718472,45.4736723483722],[-122.66888786402106,45.47366190725077],[-122.66888912256077,45.47365203054652],[-122.66889092458123,45.47363243524586],[-122.66889218761251,45.47362279854072],[-122.66889621296332,45.47360172540797],[-122.6688974104176,45.47359162002758],[-122.66889800061071,45.47358141385613],[-122.66889858900724,45.47354115987151],[-122.6688993157443,45.47353169386271],[-122.66890072340433,45.47352269904259],[-122.66890308687185,45.47351432974516],[-122.66891076656924,45.47349711113695],[-122.66891325849582,45.47348857616306],[-122.668918458843,45.47345966344915],[-122.66892468596456,45.47342791979447],[-122.6689264637305,45.47341700302703],[-122.66892779503374,45.47340597286921],[-122.66892855500848,45.47339426867886],[-122.66892876431595,45.47338248637407],[-122.66892856578825,45.4733706511523],[-122.66892734407946,45.47334688432115],[-122.6689254540241,45.47332305889594],[-122.66892314715047,45.47329922968103],[-122.6689204513063,45.47327544077199],[-122.668917182337,45.47325175894215],[-122.66891290096633,45.47322829947002],[-122.66891015032493,45.47321671430081],[-122.66890681218536,45.47320527401479],[-122.66890270868113,45.47319403026682],[-122.66889811559507,45.4731837893768],[-122.66888798978519,45.47316371012132],[-122.66888325656195,45.47315375647738],[-122.66887931475448,45.47314379212276],[-122.66887666023283,45.47313377107199],[-122.66887572149336,45.47312418656638],[-122.66887623982129,45.47311457686167],[-122.66887808316424,45.47310501125099],[-122.6688812012166,45.47309556406711],[-122.66888643120818,45.47308476125414],[-122.66889316677617,45.4730742847473],[-122.66890125969859,45.47306421076927],[-122.66890920619558,45.47305592140597],[-122.66891777792,45.47304787897742],[-122.66894426564448,45.4730241126401],[-122.66896192831958,45.47300672883804],[-122.66897106149109,45.47299825930361],[-122.66898173886656,45.47298947542809],[-122.66900384191412,45.47297208090633],[-122.66901263192918,45.47296436918425],[-122.66902095032872,45.47295633052229],[-122.66902877016325,45.47294799389763],[-122.66903604112717,45.47293937442864],[-122.6690438295207,45.47292895773906],[-122.66907208333299,45.47288638951647],[-122.66907975494554,45.47287627455871],[-122.66908828085589,45.47286674607407],[-122.66909806889923,45.47285806737823],[-122.6691092879588,45.47285055029231],[-122.6691218005924,45.47284393969063],[-122.66913528071154,45.4728380617098],[-122.66914948038125,45.4728328105199],[-122.66916421724349,45.47282813950544],[-122.66917936194088,45.47282406189529],[-122.66919482464185,45.47282064950298],[-122.66921055324416,45.47281803461628],[-122.66922652079835,45.47281641944652],[-122.66924191612567,45.47281595580962],[-122.66925744350534,45.47281630794688],[-122.6692730328688,45.47281718923492],[-122.66931947666731,45.47282055375191],[-122.66933458543207,45.47282111943922],[-122.66934933217578,45.47282095817427],[-122.66936357137133,45.47281973608796],[-122.66937403854101,45.47281787020156],[-122.66938401882383,45.47281518224155],[-122.66939341250676,45.47281168039699],[-122.66940561432327,45.47280541058915],[-122.66941692950259,45.47279803397321],[-122.66943684605076,45.47278309679536],[-122.66944568277819,45.47277600931979],[-122.66945412963679,45.4727687467195],[-122.66946196025114,45.47276127182778],[-122.66947315325959,45.47274892748225],[-122.66948500652978,45.47273503599568],[-122.66949744460317,45.47271787888375],[-122.66950397715193,45.47270941812512],[-122.6695119982091,45.47270062601533],[-122.66952935186374,45.47268363015827],[-122.66953753821095,45.47267505348501],[-122.66954459178253,45.47266616372866],[-122.66954990082588,45.47265726578165],[-122.66955924150821,45.47263873221974],[-122.66956451012734,45.47262987395486],[-122.6695827629956,45.47260300055847],[-122.66958864696072,45.47259378321992],[-122.66959390300343,45.47258433028086],[-122.6695986901256,45.4725735733558],[-122.66960264630609,45.47256254240299],[-122.6696125196894,45.47252867973918],[-122.66961603389876,45.4725173722318],[-122.66962010326704,45.47250616110376],[-122.66962458765693,45.4724957972495],[-122.66964479705588,45.4724547607271],[-122.66964916735971,45.47244435591693],[-122.66965292411423,45.47243340809161],[-122.66965601701376,45.47242232419592],[-122.66965862392473,45.47241114139649],[-122.66966089217081,45.47239989308048],[-122.6696709586919,45.47234356579393],[-122.66967339761788,45.47233246676181],[-122.6696762362942,45.47232150064632],[-122.6696796220445,45.47231071595347],[-122.66968373093862,45.47230017252833],[-122.66969394298674,45.47227941828433],[-122.66969875885498,45.47226900084282],[-122.66970242038808,45.47225891097217],[-122.66970526086101,45.47224861825658],[-122.669707434784,45.47223818317081],[-122.66970905534478,45.47222766115033],[-122.66971019800182,45.47221710070105],[-122.66971090677258,45.47220654906902],[-122.66971119333513,45.47219605539031],[-122.66971104421482,45.47218566880088],[-122.66971041898736,45.47217544725608],[-122.66970870769677,45.47215754159465],[-122.6697086043905,45.47214869081351],[-122.6697096033171,45.47213982302236],[-122.66971143318534,45.47213088845524],[-122.6697192188839,45.47209929209018],[-122.6697242377714,45.47207615656242],[-122.66972633623588,45.47206445083597],[-122.66972800800065,45.47205268022223],[-122.66972910125034,45.4720408585801],[-122.66972949111918,45.47202973051069],[-122.6697293815247,45.47201857787098],[-122.66972823886766,45.47199624297728],[-122.66972589875637,45.47196282975822],[-122.66972509925573,45.47194077013111],[-122.66972526634241,45.47192986315485],[-122.66972600116429,45.47191907712713],[-122.66972917491219,45.47189600452059],[-122.66973034272208,45.47188462066208],[-122.6697304091974,45.47187323554139],[-122.66972927013362,45.4718619915277],[-122.66972519537548,45.47184106766517],[-122.66972387575034,45.47182994081619],[-122.66972336101568,45.47181856513376],[-122.66972343108426,45.47180700361299],[-122.66972390269979,45.47179530476009],[-122.66972681683457,45.47174783086455],[-122.66972708453252,45.47173591592534],[-122.66972683480085,45.47172402303202],[-122.66972584665405,45.47171217486287],[-122.66972398354817,45.4717004652811],[-122.66972149790978,45.47168880168354],[-122.66971597237246,45.4716655399964],[-122.66971355770096,45.4716539154488],[-122.66971186347834,45.47164326984812],[-122.6697106435662,45.47163265637315],[-122.66970983777739,45.4716221178608],[-122.669709409281,45.47161170596738],[-122.66970934370399,45.47160148179867],[-122.66971066871902,45.47157052328159],[-122.66970991862576,45.47156080936933],[-122.6697083995746,45.4715542773608],[-122.66970469761732,45.47154123161024],[-122.66970324144827,45.4715315548603],[-122.6697027788159,45.47152131366823],[-122.66970296207221,45.47151066048305],[-122.66970444698737,45.47147739375594],[-122.66970432930806,45.47146617927123],[-122.66970210687604,45.47143735749348],[-122.66970189487365,45.47142795034724],[-122.6697025937629,45.47141868556978],[-122.66970472366847,45.47140849601367],[-122.66971026627377,45.47138802366221],[-122.66971208715886,45.47137707878154],[-122.66971303308485,45.47136585734732],[-122.66971335827496,45.47135443747418],[-122.66971249679064,45.47130797051054],[-122.66971267465705,45.47129640447534],[-122.66971342475031,45.47128495749988],[-122.66971501297172,45.47127369006034],[-122.66971776361314,45.47126267271216],[-122.66972171170882,45.47125225004304],[-122.66973081703254,45.47123150549253],[-122.66973441568358,45.47122135244022],[-122.66973732622507,45.47121097512057],[-122.66973962052231,45.47120042582001],[-122.66974133630451,45.47118974548592],[-122.66974247267335,45.47117896813601],[-122.66974298920464,45.47116811896862],[-122.66974280954159,45.47115616988899],[-122.66974200914264,45.47114417796958],[-122.66973920011077,45.4711201178979],[-122.66972988368295,45.47105992326147],[-122.66972692463243,45.47103601497445],[-122.66972602092723,45.47102415658131],[-122.66972572358488,45.47101239771958],[-122.66972626526898,45.47100077555713],[-122.66972794332193,45.47098933986094],[-122.66973031487429,45.47098017202547],[-122.66973660487788,45.47096210597392],[-122.66974427828707,45.4709422703523],[-122.66974884622029,45.47093257397069],[-122.66975457208191,45.47092253866752],[-122.66976671640624,45.47090267972334],[-122.66977185836292,45.47089250582305],[-122.66977573549167,45.47088170069792],[-122.66977839180997,45.47087056609995],[-122.66978013543995,45.47085918266433],[-122.66978120443511,45.47084761338717],[-122.66978178295017,45.47083590803553],[-122.66978198686775,45.47081222392064],[-122.6697814613533,45.47078833064771],[-122.66978054417339,45.47076435231948],[-122.66977930898989,45.47074039287997],[-122.66977760398747,45.47071659155147],[-122.66977500516136,45.47069319024079],[-122.66977314025881,45.47068176708152],[-122.66977071301093,45.47067063433398],[-122.66976753297483,45.4706599022423],[-122.66975969607229,45.47064024227478],[-122.66975451189478,45.47062633262944],[-122.66975173340562,45.47061973373621],[-122.66974734333881,45.47061141944469],[-122.66973878149582,45.47059669398597],[-122.66973625094167,45.47059037416437],[-122.66973562122269,45.47058444366129],[-122.66973556642544,45.47057877144383],[-122.6697347579417,45.47057440010657],[-122.66973271607104,45.47057002120938],[-122.66972857932917,45.47056519440563],[-122.66971730457401,45.470555236523],[-122.66971187156318,45.47054953343418],[-122.6697071814591,45.47054229133587],[-122.66970406879662,45.47053437580198],[-122.66970262969555,45.47052618560136],[-122.66970308783634,45.47051810753367],[-122.66970580973164,45.47051053721844],[-122.66970983148917,45.47050518312701],[-122.66971547380749,45.47050060074498],[-122.66972470309871,45.4704960593105],[-122.66973556462881,45.47049245967689],[-122.6697591867275,45.47048573036477],[-122.66977056928049,45.47048143083663],[-122.66978081456631,45.47047582097557],[-122.66978955517402,45.47046895873828],[-122.66979640752301,45.4704609783074],[-122.66980099521915,45.4704522085257],[-122.66980390576066,45.47044269034072],[-122.66980563322095,45.4704326341614],[-122.66980659082508,45.47042220629901],[-122.66980819791111,45.47038993049998],[-122.669809314517,45.47037917189618],[-122.66981125847128,45.47036770835523],[-122.66981560272397,45.4703453331193],[-122.66981874503085,45.4703226655687],[-122.66982248651401,45.47030372931852],[-122.6698231979797,45.47029725701144],[-122.66982339471076,45.47029094597584],[-122.66982304167286,45.47027740666653],[-122.6698241726518,45.47026350953102],[-122.66982443316321,45.470253552855],[-122.66982402442979,45.47024299140585],[-122.66982185499837,45.47022063564943],[-122.66981864531785,45.47019729209014],[-122.66980956874023,45.4701372508111],[-122.66980652075647,45.47011300257801],[-122.66980534486176,45.47010086113333],[-122.66980451122518,45.47008871149641],[-122.66980409350857,45.47007700031742],[-122.66980435402,45.4700188475684],[-122.66980412584792,45.47000745766097],[-122.66980349253565,45.4699962422538],[-122.66980225735215,45.46998526812408],[-122.66980016787079,45.46997462661805],[-122.66979690069809,45.46996443302102],[-122.66979203991407,45.46995483789692],[-122.66978493334187,45.46994548342101],[-122.66976758867037,45.4699274535763],[-122.66976019463726,45.46991943905015],[-122.66973809248802,45.46989434214826],[-122.6697301612624,45.46988602774974],[-122.66972121853371,45.46987751868793],[-122.66971172244287,45.46986924208537],[-122.66970177899098,45.4698611872326],[-122.66969146273827,45.4698533591695],[-122.6696808150072,45.46984577994528],[-122.66966985196744,45.46983848798854],[-122.66965856463594,45.46983154251699],[-122.66964691618162,45.46982502542745],[-122.66961599616955,45.46980915257875],[-122.66960324997397,45.46980215859548],[-122.6695521358343,45.46977288175451],[-122.66953908600816,45.46976560805761],[-122.66952581160324,45.46975850886305],[-122.66951224165254,45.46975167992709],[-122.66949855581919,45.46974528819356],[-122.66944357083895,45.46972112924844],[-122.66943078871078,45.46971492965407],[-122.66941896418669,45.46970845097964],[-122.66940852216983,45.46970156281989],[-122.66940001063254,45.46969411209044],[-122.66939458390992,45.46968706013507],[-122.66939104185272,45.46967967177139],[-122.66938937457958,45.46967216938099],[-122.66938968809158,45.46966477282564],[-122.66939220696764,45.46965770826707],[-122.66939728604228,45.46965100783424],[-122.6694045246668,45.46964493359756],[-122.6694135096163,45.46963953595549],[-122.66942394624327,45.46963490121506],[-122.66943804260673,45.46963039813942],[-122.66945334900082,45.46962668316471],[-122.66948582399665,45.46961992855011],[-122.66953434829337,45.46960909483209],[-122.66955084226032,45.4696060312525],[-122.66956690952746,45.46960375577444],[-122.66958307650764,45.4696020107372],[-122.66964507104201,45.46959683736299],[-122.66965862302638,45.46959518808212],[-122.66967062362028,45.4695930354492],[-122.66968047634232,45.46959014511261],[-122.66968741492957,45.46958623358226],[-122.66969081325628,45.4695807263185],[-122.66969014760468,45.4695744227624],[-122.6696860701516,45.46956833528795],[-122.66967940375389,45.46956240026751],[-122.66966058135375,45.46955001742268],[-122.66962975476645,45.46952740373033],[-122.66962108782059,45.46952059051586],[-122.66961300837292,45.46951350514997],[-122.66960515619901,45.4695053954382],[-122.66959831103654,45.46949718177888],[-122.66959234352811,45.46948915522194],[-122.66958817624352,45.4694829178034],[-122.66958505729285,45.46947687063773],[-122.66958352297034,45.4694715580267],[-122.66958321035662,45.46946643944866],[-122.66958450033736,45.46945987002867],[-122.66958666348057,45.46945359984795],[-122.6695883693813,45.46944729564768],[-122.66958874128382,45.46944151999919],[-122.66958861372306,45.46943540542129],[-122.66958884638672,45.46942888387612],[-122.6695902378771,45.46942154146709],[-122.66959280346553,45.46941387209776],[-122.66959639852332,45.46940607925143],[-122.66960093681213,45.46939836263153],[-122.66960638419602,45.46939092068168],[-122.66961346471707,45.46938314358165],[-122.66962115070265,45.46937603614914],[-122.66962729068761,45.46937084511477],[-122.66963307044817,45.46936555139315],[-122.66963979343974,45.46935758214568],[-122.66964575196504,45.46934882353194],[-122.66965046183205,45.46934118502173],[-122.6696547198465,45.46933334365683],[-122.66965815051255,45.46932535865532],[-122.66966032892712,45.46931727915558],[-122.66966078167803,45.46930756107508],[-122.66965886377491,45.46929808490547],[-122.66965635837359,45.46929199362132],[-122.66964975755288,45.46927861660711],[-122.66964639426044,45.46927099320697],[-122.66964319715633,45.46926232214715],[-122.66964059653361,45.4692533675944],[-122.66963869569844,45.4692442442053],[-122.66963763478812,45.46923506285638],[-122.66963759885549,45.46922593946427],[-122.66963881517441,45.46921664597566],[-122.66964119121832,45.46920769456557],[-122.66964458954504,45.46919925784928],[-122.66964893469607,45.46919155254074],[-122.66965421499332,45.46918484890252],[-122.66966118232665,45.46917892014154],[-122.66966889705832,45.46917501677242],[-122.6696769477599,45.46917363900151],[-122.66968270506256,45.46917443970878],[-122.66968870041873,45.46917645817148],[-122.66969717153187,45.46918039366957],[-122.66970634243262,45.46918538123732],[-122.66973712500244,45.46920330422257],[-122.6697483413671,45.46920937157697],[-122.66977305132559,45.4692215207735],[-122.66978517948027,45.46922775318113],[-122.66979566371792,45.46923379470369],[-122.66980559279679,45.46924009073813],[-122.66981497480161,45.46924647874909],[-122.6698303440778,45.46925777305312],[-122.66983623163617,45.46926284944137],[-122.66984287018613,45.46927028825817],[-122.6698479241079,45.46927804773433],[-122.66985153084379,45.4692857927198],[-122.66985562087326,45.46929785118265],[-122.66985807147736,45.46930308443245],[-122.6698613638029,45.46930810852822],[-122.66986681478002,45.46931400388669],[-122.66988609891425,45.46933021958419],[-122.66989133160077,45.46933577538093],[-122.66989551236007,45.46934272532346],[-122.66989771592749,45.46934959966752],[-122.66989897087394,45.46935805841061],[-122.66990033990642,45.46936270640343],[-122.66990299802136,45.46936718493125],[-122.66990877239199,45.46937225626981],[-122.66991693717962,45.46937635617894],[-122.66992638296483,45.46937911927061],[-122.669936959729,45.46938100921008],[-122.66994811770311,45.46938229436887],[-122.66996010392396,45.46938339179371],[-122.66997208205996,45.46938513431777],[-122.6699839559914,45.46938835351432],[-122.66999557839453,45.46939290196786],[-122.67000676870803,45.4693984489387],[-122.67001729875977,45.46940472605536],[-122.67002687929228,45.46941151597457],[-122.67003513480975,45.46941864041201],[-122.6700415784253,45.46942594502269],[-122.67004557952157,45.46943329058105],[-122.67004647154863,45.46944090387958],[-122.67004381882361,45.46944781223053],[-122.67003779921288,45.4694535929182],[-122.67002965688316,45.46945862078045],[-122.67002080578264,45.46946344011923],[-122.67001260506244,45.4694685706671],[-122.67000679655582,45.46947372767364],[-122.67000283768033,45.46947907619326],[-122.67000104015145,45.46948413240229],[-122.67000184953353,45.46948839294782],[-122.67000614348059,45.46949182948111],[-122.67002189813405,45.46949786971543],[-122.67004230246741,45.46950715748787],[-122.67005403446501,45.46951210974792],[-122.67006551673099,45.46951608428123],[-122.6700898341257,45.46952356338319],[-122.67011242316184,45.46953092089844],[-122.67012364222144,45.46953404684987],[-122.67013492595972,45.46953621775439],[-122.67014599050907,45.46953704806552],[-122.67015690234484,45.46953665810911],[-122.67016735244655,45.46953514616168],[-122.67017699945438,45.46953254561205],[-122.67018545529615,45.46952883000094],[-122.67019263014029,45.46952379143533],[-122.67019822484788,45.4695178986187],[-122.6702023445218,45.46951154780724],[-122.67020501161986,45.46950509682844],[-122.6702061695483,45.46949888902063],[-122.67020522362228,45.46948536968038],[-122.67020620817583,45.46947820934254],[-122.67020936575406,45.46947097088646],[-122.67021383577092,45.46946514484208],[-122.6702251967643,45.46945385120959],[-122.67023060372401,45.46944802264353],[-122.67023482041594,45.46944181545939],[-122.67023686408322,45.46943653938386],[-122.67023775521197,45.46943103084549],[-122.6702375854304,45.46942470270346],[-122.67023459763377,45.4694004025055],[-122.67023287556337,45.46939112542513],[-122.67022831212171,45.46937409140127],[-122.670226389727,45.46936547957543],[-122.67022552644602,45.4693567593917],[-122.670226290014,45.46934722905209],[-122.67022845764878,45.46933754688562],[-122.67023150922581,45.46932772486182],[-122.67023840649057,45.46930764864236],[-122.67024135206637,45.46929735727772],[-122.67024349005676,45.4692866242946],[-122.67024479351221,45.46927573318417],[-122.67024538550201,45.46926474127471],[-122.67024533789129,45.46925369455472],[-122.67024467583293,45.4692426358629],[-122.67024337417409,45.46923160488809],[-122.67024136284617,45.46922064131918],[-122.67023851967828,45.46920978610498],[-122.67023487521317,45.46919932525735],[-122.67022193677815,45.46916821170516],[-122.67021811354829,45.4691577281704],[-122.6702147098317,45.469145836623],[-122.67021207507295,45.46913379450722],[-122.67020997571012,45.46912164655178],[-122.670203345245,45.4690726981333],[-122.67020134110363,45.46906054827475],[-122.6701988644484,45.46904852189033],[-122.67019570956512,45.46903668323851],[-122.67019240196824,45.4690268989613],[-122.6701886263491,45.46901732383704],[-122.67018455518424,45.46900798810509],[-122.67017278815231,45.46898285425831],[-122.67017015519022,45.46897559746905],[-122.67016872327564,45.46896691061418],[-122.67016930987552,45.46895830817587],[-122.6701720470422,45.468950004349],[-122.67017579481357,45.46894375301109],[-122.67018060169866,45.46893765664878],[-122.67018606345557,45.46893154516615],[-122.67020285476487,45.46891391818748],[-122.67021195290206,45.46890517714436],[-122.67022157296044,45.46889684244037],[-122.67023183800922,45.46888923662818],[-122.67024293579622,45.46888274840904],[-122.67025513042621,45.46887785720228],[-122.67026769695873,45.46887506447673],[-122.67028112317895,45.46887363881958],[-122.67029505604903,45.46887311656164],[-122.67033664355507,45.46887305230311],[-122.6703492747663,45.46887228813071],[-122.67036058365741,45.46887047440242],[-122.67037001147632,45.4688671184694],[-122.67037663116164,45.46886228018008],[-122.67038130599438,45.46885603954223],[-122.67038418509486,45.46884875123733],[-122.67038530349738,45.46884070883841],[-122.6703844689625,45.46883065048333],[-122.67038201027356,45.46882008813756],[-122.67037545616526,45.46879950333837],[-122.67037199944804,45.46878980973805],[-122.67036820316763,45.46878024087341],[-122.67036393078016,45.46877096180096],[-122.67035899813092,45.46876215836701],[-122.67035316357318,45.46875404854718],[-122.67034611808641,45.46874689630626],[-122.67033672799674,45.46874049563896],[-122.67032573800755,45.46873580034581],[-122.67031302504964,45.46873285074646],[-122.67029932574155,45.46873124616936],[-122.67027058773732,45.46872942361674],[-122.67025625601526,45.46872797590635],[-122.67024273187864,45.4687256172345],[-122.67022963174688,45.46872261345575],[-122.67021772906936,45.46871947422955],[-122.67020660253627,45.4687158259735],[-122.67019669771193,45.4687113083347],[-122.67018880062226,45.46870605424035],[-122.67018184945857,45.46870009266962],[-122.67016868105485,45.46868755591836],[-122.67016062855663,45.46868093663856],[-122.67015220864748,45.46867503932393],[-122.67014380850125,45.4686701084099],[-122.67013583325816,45.46866644125103],[-122.67012430248317,45.46866276401208],[-122.67011982348315,45.46866071466157],[-122.6701167862792,45.4686580983219],[-122.6701146527804,45.46865482931461],[-122.67011350024188,45.46865115522484],[-122.67011330800239,45.46863865437202],[-122.67011261090975,45.46863352500856],[-122.67011103526475,45.46862819530834],[-122.67010840230266,45.46862278307918],[-122.67010144215583,45.46861126122209],[-122.67008746886158,45.46858547830999],[-122.67006167104324,45.46854512814863],[-122.67005487618644,45.46853484609458],[-122.67004774356309,45.46852506047033],[-122.67004002523817,45.46851609887057],[-122.67003140769965,45.46850836952905],[-122.67002149838375,45.46850238651778],[-122.67000994065928,45.46849857382035],[-122.66999724387108,45.46849670905083],[-122.66998466296552,45.46849630963736],[-122.6699715017483,45.46849639153605],[-122.66994173337642,45.46849610804067],[-122.66992606136795,45.46849645894491],[-122.6699124456032,45.46849744550882],[-122.66989859537816,45.46849893228445],[-122.66985597031791,45.46850425569701],[-122.6698393946043,45.46850586154049],[-122.66982271378778,45.46850708624029],[-122.66980601231002,45.46850794932602],[-122.66978937730758,45.4685084400879],[-122.66977290400192,45.4685085100167],[-122.66975670468237,45.468508069024],[-122.66974092038453,45.46850697536212],[-122.66972572807646,45.46850502554431],[-122.66971135772684,45.46850194237507],[-122.66970097140553,45.46849858768012],[-122.66969134685557,45.468494371159],[-122.6696805931233,45.46848809079104],[-122.66967055265337,45.46848097946576],[-122.66962134653538,45.4684443329426],[-122.66961186032599,45.46843686629722],[-122.6696029113091,45.46842925097307],[-122.66957772883676,45.46840503287473],[-122.66956570219173,45.46839424113253],[-122.66954824433252,45.46837664485541],[-122.66954216543299,45.46837010869794],[-122.66951564806409,45.46833733277055],[-122.66950952065555,45.4683288682043],[-122.66950382174338,45.46832007289119],[-122.66949849473376,45.46831103691985],[-122.66949350638896,45.46830183714918],[-122.66947951423012,45.46827295453399],[-122.6694743821549,45.46826340448137],[-122.66946816760976,45.46825358731036],[-122.669455133055,45.46823437820818],[-122.6694494628889,45.46822464923111],[-122.66944503868615,45.46821494104208],[-122.66943710476555,45.46819510634363],[-122.66943200772462,45.46818457411842],[-122.66941448069511,45.46815288923196],[-122.66940990467705,45.46814396285269],[-122.66939704170052,45.46811741806425],[-122.66938480125644,45.46809364901779],[-122.66938182603623,45.46808630832479],[-122.66937313034428,45.4680619036007],[-122.66936194811561,45.46803340704945],[-122.66935867734966,45.46802369819754],[-122.66935602552296,45.46801386775486],[-122.66935414445076,45.4680037153829],[-122.66935291375881,45.4679934622099],[-122.66935072546276,45.46796249919102],[-122.66934975977382,45.46795223404058],[-122.66934829462161,45.46794206149769],[-122.66934616920766,45.46793216993115],[-122.66934338443026,45.46792244531186],[-122.6693399834086,45.46791292984966],[-122.66933597692243,45.46790367457434],[-122.66932814271483,45.46788785662421],[-122.66932387122567,45.46787762044005],[-122.66932023754035,45.46786707240562],[-122.66931704762277,45.46785630198031],[-122.66930846422024,45.46782341298461],[-122.66930539377857,45.46781248757162],[-122.66930192448497,45.46780170075596],[-122.66929784343861,45.46779113632739],[-122.66929289641637,45.46778089256565],[-122.669286892077,45.46777095876102],[-122.66927378475869,45.46775163735474],[-122.66926091010404,45.46773114099506],[-122.66925109960283,45.46771605820474],[-122.66924608790185,45.4677069591367],[-122.66924160710522,45.46769754758788],[-122.66922927323637,45.46766833706364],[-122.66922486879653,45.46765853490895],[-122.66921997028328,45.46764882284241],[-122.66921417704802,45.46763885877454],[-122.66920785470504,45.46762901629474],[-122.66918803786987,45.467599712495],[-122.66918188890175,45.46758985677842],[-122.66917635797454,45.4675798744301],[-122.6691710956436,45.46756858230985],[-122.66916158338309,45.46754586513251],[-122.66915621684757,45.46753471853557],[-122.66914983341916,45.46752396190681],[-122.66914242950459,45.46751357760634],[-122.66913409942696,45.46750362359456],[-122.66912679163212,45.46749593128423],[-122.66911182839442,45.46748085473096],[-122.66908960227765,45.46745653290496],[-122.66908173842567,45.46744883050815],[-122.66907174107489,45.46744037651855],[-122.66905129272406,45.46742413444733],[-122.66903251523966,45.46740739340991],[-122.66901269301464,45.46739171014098],[-122.66900338287502,45.46738381495469],[-122.66899592236658,45.46737623728844],[-122.66898948683587,45.46736857709087],[-122.66898393165415,45.46736112920306],[-122.66898046954705,45.46735595058311],[-122.66897784556812,45.46735077448274],[-122.66897640826367,45.46734539615102],[-122.66897617829494,45.46733987921826],[-122.66897739461383,45.46733293028879],[-122.66898185834249,45.46731875522604],[-122.66898345464874,45.4673114043521],[-122.66898376726249,45.46730276134095],[-122.66898262011387,45.46727669747885],[-122.66898276204766,45.46724979569989],[-122.66898184935934,45.46724041242491],[-122.66897906188701,45.46723112490894],[-122.66897492604345,45.46722182479137],[-122.66896975264572,45.46721189214819],[-122.66896355606691,45.46720210251424],[-122.66895740081057,45.46719421297144],[-122.66894408059154,45.46717878605498],[-122.66893796845434,45.46717098344955],[-122.6689324123743,45.46716219614583],[-122.66892821364868,45.46715334584027],[-122.6689254899567,45.46714465807455],[-122.66892446318236,45.46713637288063],[-122.668925476482,45.46712876179085],[-122.66892901404758,45.46712213791798],[-122.66893554659633,45.46711661844331],[-122.6689442539664,45.4671119463251],[-122.6689643789237,45.46710311554181],[-122.66897402593153,45.4670979608384],[-122.66898234792433,45.46709166330471],[-122.66898862535152,45.46708430610107],[-122.66899207128897,45.46707703961732],[-122.6689936145946,45.46706926975809],[-122.66899336755792,45.46706121324517],[-122.66899133916199,45.46705306916028],[-122.66898696436655,45.46704392777485],[-122.66898102470593,45.46703483552839],[-122.66896729665174,45.46701676002213],[-122.66896000502656,45.46700788764352],[-122.6689521717173,45.46699928490624],[-122.66893282110777,45.46698024358842],[-122.6689255285843,45.46697177440835],[-122.66891882355901,45.46696289761264],[-122.66889996881952,45.46693523400524],[-122.6688933805752,45.46692609449071],[-122.6688862605283,45.46691720697763],[-122.66887869581525,45.4669088870999],[-122.66886290702583,45.46689269212606],[-122.66885546178875,45.46688449635622],[-122.66884885917143,45.46687601393162],[-122.66884295005349,45.46686627022984],[-122.66883807309982,45.46685613151142],[-122.6688252316828,45.4668246859114],[-122.66880944199507,45.46679199665659],[-122.66880473841626,45.46678095764209],[-122.66880121881697,45.46677070235661],[-122.6687982831226,45.46676034311778],[-122.66879058186568,45.46672929815037],[-122.66878763808649,45.46671918334761],[-122.66878068871947,45.4666981681145],[-122.66877828662439,45.46668843005212],[-122.66877290302088,45.46665888761954],[-122.66877066801248,45.46664918546097],[-122.66876765057143,45.46663969750424],[-122.66876345454072,45.46663052644129],[-122.66875718968993,45.46662094586988],[-122.66874955670497,45.46661172314297],[-122.66874106043899,45.46660271902832],[-122.66872321899915,45.46658488341774],[-122.6687150048042,45.46657630392633],[-122.66868600089862,45.46654524940737],[-122.66868075922893,45.46653928445804],[-122.6686759262927,45.46653262586524],[-122.66867186051773,45.46652558107449],[-122.66866858256526,45.46651820300661],[-122.66866546002134,45.46650806737561],[-122.66866341635405,45.46649755373554],[-122.66866215332276,45.46648676540824],[-122.6686610448017,45.46646468347745],[-122.66866026147078,45.46643118003738],[-122.668659586836,45.46642011512167],[-122.66865840016152,45.46640919321679],[-122.6686564705803,45.46639848047413],[-122.66865351242804,45.46638805816559],[-122.6686491717686,45.46637802646336],[-122.6686430659196,45.46636826692523],[-122.66863569793763,45.46635884948277],[-122.66861934680283,45.46634036614086],[-122.66861135808502,45.46633097830437],[-122.6686041571897,45.46632127041923],[-122.66859808637504,45.46631102009027],[-122.66859304143638,45.46630037852055],[-122.66858875467585,45.46628944777225],[-122.66858500690451,45.46627830974709],[-122.66858162025586,45.46626702933639],[-122.66857213494478,45.46623285670285],[-122.66856873841469,45.46622150635142],[-122.66856497357531,45.46621025365003],[-122.6685606526788,45.46619915341012],[-122.66855555204464,45.46618827367342],[-122.66854985762404,45.4661782431957],[-122.66854349845013,45.46616841369122],[-122.66853671527142,45.4661587271986],[-122.66851587615349,45.46613010872215],[-122.66850941008005,45.46612060366765],[-122.66849609525093,45.46609959829163],[-122.66848568557342,45.46608433740001],[-122.66848043492057,45.46607575972251],[-122.6684608309861,45.46603986450612],[-122.66845453649093,45.46602952340351],[-122.66844775960041,45.46601927806158],[-122.66844055511184,45.46600914612099],[-122.66843294458475,45.4659991584526],[-122.66842491005288,45.46598936167782],[-122.66841639582059,45.46597981879849],[-122.66840730486994,45.46597061801731],[-122.66839748987712,45.46596187651781],[-122.6683866804493,45.46595361824082],[-122.66837505445291,45.46594597171028],[-122.66836268285482,45.46593896653739],[-122.66835104338368,45.46593325353125],[-122.6683149454823,45.46591731847477],[-122.6683032251628,45.46591172958012],[-122.66829052298468,45.46590493230909],[-122.6682542265556,45.46588351230029],[-122.66824208312961,45.46587692230209],[-122.66822958217412,45.46587112360707],[-122.66821648922884,45.46586650934739],[-122.66820347623363,45.46586352242679],[-122.66818993952063,45.46586157692765],[-122.66817609019391,45.46586031373925],[-122.66813452514569,45.46585765757838],[-122.6681122729778,45.46585576752073],[-122.66809702138089,45.46585537753884],[-122.66808155239171,45.46585592439554],[-122.66806844776835,45.46585706977046],[-122.66805555245244,45.46585871223048],[-122.66804303892052,45.46586072451176],[-122.66801332175262,45.46586640665427],[-122.66799949039219,45.46586766039226],[-122.66798526377302,45.46586743358539],[-122.66797325778926,45.46586602990285],[-122.66796154196133,45.46586361944973],[-122.66795038039392,45.46586030050887],[-122.66794008210752,45.46585611214125],[-122.66793102259786,45.46585103481617],[-122.66792365910747,45.46584499167097],[-122.66791794851721,45.46583715485986],[-122.66791451335956,45.46582839569909],[-122.66791305090227,45.46581906510917],[-122.66791341382165,45.46580946549926],[-122.66791560481262,45.46579986903783],[-122.6679199688283,45.4657899273238],[-122.66792607108401,45.46578048521395],[-122.66793356303346,45.46577176132549],[-122.66795051064965,45.46575587599497],[-122.66795555918155,45.46575029968469],[-122.66796020526819,45.46574449089633],[-122.6679650265263,45.46573780511879],[-122.66796909140297,45.46573081000034],[-122.66797227233741,45.46572248616737],[-122.66797408064605,45.46571371879847],[-122.6679746591611,45.46570463452773],[-122.66797408513766,45.46569534297862],[-122.66797213669176,45.46568460993966],[-122.667969205489,45.46567376790496],[-122.66795848050282,45.46564079069284],[-122.6679554280275,45.46562966766],[-122.66795309689934,45.46561856163556],[-122.66794929163578,45.46559638108125],[-122.66794701440654,45.4655854287757],[-122.66794392240534,45.46557465791444],[-122.66794026446551,45.46556532287232],[-122.66792753623625,45.46553752249419],[-122.66792332044263,45.46552609829],[-122.6679128469847,45.46549101041354],[-122.66790284963392,45.46545945127778],[-122.66790011785714,45.46544888578021],[-122.6678980643084,45.46543828625934],[-122.6678932619149,45.46540653682676],[-122.6678910349913,45.46539613197547],[-122.66788791424399,45.46538591234949],[-122.66788362838179,45.46537589369943],[-122.66787846666216,45.46536606279503],[-122.66786152084264,45.46533713268373],[-122.66785661963446,45.46532752102131],[-122.6678527676585,45.46531785391499],[-122.66785034939377,45.46530821767826],[-122.66784928039858,45.46529859530044],[-122.66784948521448,45.46528909766603],[-122.66785175346055,45.46527338041639],[-122.66785282155743,45.46526332772497],[-122.66785340007247,45.46525295938876],[-122.66785421574276,45.46522080600491],[-122.66785486791964,45.46520997144132],[-122.66785609591665,45.46519918664778],[-122.66785817551653,45.46518851903711],[-122.66786152084264,45.46517734488284],[-122.66787390681378,45.46514491361391],[-122.66787698264532,45.46513447217274],[-122.66787850888298,45.46512425942961],[-122.66787772465372,45.46511433019696],[-122.6678742544618,45.46510508391256],[-122.66786871994132,45.46509603419524],[-122.66786191340641,45.46508705881979],[-122.66784729332517,45.46506887369414],[-122.66784084162481,45.46505942957344],[-122.66783599341721,45.4650501303576],[-122.6678324594449,45.4650406295312],[-122.66783024779266,45.46503108586127],[-122.66782946625837,45.46502166189512],[-122.66783032235283,45.46501253215082],[-122.66783314306281,45.46500389067728],[-122.66783758882517,45.46499674615094],[-122.6678437270135,45.46499026819424],[-122.6678514031176,45.46498458281322],[-122.66786084980112,45.46497957534287],[-122.66787135649668,45.46497518278044],[-122.66789374970008,45.46496670384866],[-122.66790691271395,45.46496092774107],[-122.66791926454911,45.46495428597264],[-122.66793026352143,45.46494661095527],[-122.66793910563881,45.46493817738134],[-122.6679465176382,45.46492886554494],[-122.66795278608225,45.46491890288635],[-122.66795810051546,45.46490846707364],[-122.66796256604076,45.46489769419291],[-122.66796620601427,45.46488669197925],[-122.66796895935062,45.46487554422644],[-122.66797067872608,45.46486432086779],[-122.66797119615566,45.46485328399596],[-122.66797056553835,45.46484231453516],[-122.6679687707044,45.46483149942978],[-122.66796569846613,45.46482093318451],[-122.6679611350245,45.46481072479477],[-122.66795486568215,45.46480084968959],[-122.66794740876698,45.46479128014778],[-122.6679312004643,45.4647723615703],[-122.66792347944443,45.4647626773579],[-122.66791654894202,45.46475266363738],[-122.66791021222598,45.46474240420275],[-122.6678980643084,45.46472163583518],[-122.66789164225241,45.4647113606441],[-122.66787247669585,45.46468414199465],[-122.66786649211943,45.46467502794649],[-122.66786127111098,45.46466574000785],[-122.66785680738235,45.46465549819827],[-122.6678533129359,45.46464504028565],[-122.66785048773434,45.46463445762453],[-122.66784128090097,45.46459251821097],[-122.6678385311579,45.46458256494341],[-122.66783372606945,45.46456690293974],[-122.66783193932034,45.46455735351932],[-122.66783123414284,45.46454758988576],[-122.66783156921443,45.46453770906418],[-122.66783268043044,45.46452875817116],[-122.66783547419098,45.46451061192754],[-122.66783629255619,45.46450095791184],[-122.66783648210071,45.46449117473744],[-122.6678360634858,45.4644813052466],[-122.66783503042325,45.46447138913148],[-122.6678330891639,45.46445981665308],[-122.66782572477521,45.46442495114536],[-122.66782395599242,45.46441325013026],[-122.66782307025353,45.46440141806532],[-122.66782297593042,45.46438956142648],[-122.66782351222466,45.46437771738588],[-122.66782457133837,45.46436592815595],[-122.6678259217871,45.46435558876581],[-122.66884094501376,45.46435968387011],[-122.66889790808425,45.4646262911379],[-122.66901340987022,45.46504749620955],[-122.66912119782283,45.46541980450564],[-122.66932111699101,45.46590732133986],[-122.6694971104299,45.46632978442803],[-122.67000938639876,45.46728760094557],[-122.67009623911369,45.4674687580794],[-122.67030707640582,45.46768015332289],[-122.67044168176463,45.46783537159072],[-122.67069643409774,45.46802244198751],[-122.67090309691874,45.46822654109929],[-122.67105010890994,45.46840021533546],[-122.6712049425323,45.46862552919805],[-122.67131414263653,45.46883009861562],[-122.67138266163485,45.46899051045658],[-122.67144675104048,45.46918804480121],[-122.67151924688054,45.46960560349793],[-122.67244775364303,45.46987200956268],[-122.67274013909835,45.46849307842009],[-122.67278001621213,45.46836319832498],[-122.67435360677341,45.46836821305465],[-122.67453313777787,45.4683214280033],[-122.67845230500451,45.46832908807138],[-122.67845547965072,45.46978525321082],[-122.67845251089268,45.47022405129994]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000184,"geom:area_square_m":1595948.443684,"geom:bbox":"-122.679302,45.4643555888,-122.667822976,45.493221","geom:latitude":45.479116,"geom:longitude":-122.674243,"iso:country":"US","lbl:latitude":45.478238,"lbl:longitude":-122.674811,"lbl:max_zoom":18,"mps:latitude":45.478238,"mps:longitude":-122.674811,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Fulton"],"reversegeo:latitude":45.478238,"reversegeo:longitude":-122.674811,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85849969,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"bcd36e65c769330afa3beb958df86fc1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108714049,"neighbourhood_id":85849969,"region_id":85688513}],"wof:id":1108714049,"wof:lastmodified":1566624148,"wof:name":"Johns Landing","wof:parent_id":85849969,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85885301],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108714051.geojson b/fixtures/microhoods/1108714051.geojson new file mode 100644 index 0000000..8390620 --- /dev/null +++ b/fixtures/microhoods/1108714051.geojson @@ -0,0 +1 @@ +{"id":1108714051,"type":"Feature","bbox":[-122.68275443122327,45.48519840619092,-122.673513,45.500506],"geometry":{"type":"Polygon","coordinates":[[[-122.679302,45.48556289339874],[-122.67932618694071,45.48551425608221],[-122.67939570517379,45.48541449016718],[-122.67944702452687,45.48536328898326],[-122.67949634061269,45.4853270724162],[-122.67956979826658,45.48529463639967],[-122.67964631866414,45.48526919859165],[-122.67973003332054,45.48524991398324],[-122.67994983214423,45.48521197203479],[-122.68019472491886,45.48519840619092],[-122.68058080895993,45.48520179765356],[-122.68085170269586,45.48522214641122],[-122.68114436467843,45.48526453963918],[-122.68141283972028,45.48531032429952],[-122.68164019696295,45.48535610891393],[-122.68185546073524,45.48541376356017],[-122.6819876797247,45.48547672053066],[-122.68210443902977,45.48555281188959],[-122.68217597097753,45.48579032687257],[-122.68256733460746,45.48699200398229],[-122.6827024070902,45.4874111103832],[-122.68272557464138,45.48786183710765],[-122.68275443122327,45.48830834077843],[-122.68270624469311,45.48878014479136],[-122.6825644743716,45.48910059372469],[-122.68238316919445,45.48940739024665],[-122.68205059131668,45.48968585063535],[-122.68162000724143,45.48995176818029],[-122.68134553419289,45.49011817492725],[-122.68103889696562,45.49020888186709],[-122.68056282849257,45.49035716504624],[-122.67999346458741,45.49046314730699],[-122.67979830828688,45.49051109411646],[-122.6795915762956,45.49056234640649],[-122.67874019439182,45.49079096722421],[-122.67823878893621,45.49104175262503],[-122.67793603063433,45.49123389470798],[-122.67755000299717,45.4915435360747],[-122.67725591882763,45.49186034960688],[-122.676999882802,45.49225395122809],[-122.67695052576704,45.49254383138677],[-122.67692150479346,45.49280451822526],[-122.67696498325321,45.4931247062305],[-122.67702996019433,45.49364957765136],[-122.67717392240515,45.49419953089869],[-122.67735831509194,45.49473551400075],[-122.67759857220962,45.49520218760593],[-122.67780586205468,45.49552115612765],[-122.67784168488858,45.49557180070469],[-122.67794,45.4958],[-122.677954,45.495996],[-122.677945,45.49638],[-122.677951,45.496704],[-122.677917,45.497264],[-122.677874,45.497977],[-122.677831,45.498682],[-122.677788,45.499395],[-122.677788,45.499969],[-122.677787,45.50007],[-122.677683,45.5001],[-122.677537,45.500134],[-122.676947,45.500243],[-122.676783,45.500261],[-122.67663,45.500273],[-122.676247,45.500295],[-122.675244,45.500389],[-122.67433,45.500478],[-122.674228,45.500482],[-122.674017,45.500484],[-122.673764,45.500506],[-122.673586,45.499529],[-122.67357,45.49916],[-122.673513,45.497856],[-122.67356,45.494848],[-122.673637,45.493625],[-122.67366,45.493221],[-122.673711,45.492957],[-122.674179,45.491833],[-122.674427,45.491392],[-122.674494,45.491283],[-122.674561,45.491174],[-122.674662,45.491031],[-122.674791,45.49079],[-122.674949,45.490574],[-122.675177,45.490276],[-122.675462,45.489947],[-122.675708,45.489734],[-122.675845,45.489608],[-122.676246,45.489242],[-122.677604,45.488207],[-122.677662,45.488163],[-122.678154,45.487797],[-122.678788,45.487212],[-122.678936,45.486987],[-122.679133,45.486589],[-122.679189,45.486477],[-122.679214,45.486372],[-122.679273,45.486119],[-122.679302,45.485832],[-122.679302,45.48556289339874]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":541232.377512,"geom:bbox":"-122.682754431,45.4851984062,-122.673513,45.500506","geom:latitude":45.492827,"geom:longitude":-122.677276,"iso:country":"US","lbl:latitude":45.496706,"lbl:longitude":-122.675736,"lbl:max_zoom":18,"mps:latitude":45.496706,"mps:longitude":-122.675736,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Terwilliger"],"reversegeo:latitude":45.496706,"reversegeo:longitude":-122.675736,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85849969,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b40b72fd041abbb15dd2f0d659a51470","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108714051,"neighbourhood_id":85849969,"region_id":85688513}],"wof:id":1108714051,"wof:lastmodified":1566624145,"wof:name":"Terwilliger","wof:parent_id":85849969,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108714053.geojson b/fixtures/microhoods/1108714053.geojson new file mode 100644 index 0000000..8e85655 --- /dev/null +++ b/fixtures/microhoods/1108714053.geojson @@ -0,0 +1 @@ +{"id":1108714053,"type":"Feature","bbox":[-122.65373618151908,45.50406738912487,-122.611002,45.5059975293146],"geometry":{"type":"Polygon","coordinates":[[[-122.63671124924048,45.50549807877516],[-122.63573053715426,45.50549623185975],[-122.63477853715426,45.50549523185975],[-122.63370153715427,45.50549423185974],[-122.63274053715426,45.50549223185975],[-122.63167253715426,45.50549123185974],[-122.63128353715425,45.50549423185974],[-122.63065753715428,45.50549023185975],[-122.62969853715424,45.50548823185974],[-122.62870653715427,45.50548723185975],[-122.62771753715427,45.50548723185975],[-122.62738553715425,45.50548523185974],[-122.62636853715426,45.50548423185975],[-122.62583753715424,45.50548423185975],[-122.62533653715425,45.50547723185974],[-122.62439053715426,45.50548123185975],[-122.62400653715426,45.50547123185975],[-122.62278853715425,45.50549623185975],[-122.62160153715423,45.50548323185976],[-122.62050053715426,45.50547923185975],[-122.61997853715425,45.50548123185975],[-122.61970153715426,45.50549023185975],[-122.61958153715426,45.50550623185975],[-122.61948753715426,45.50553423185975],[-122.61940553715426,45.50556823185975],[-122.61901853715426,45.50582523185975],[-122.61889453715428,45.50588623185975],[-122.61879153715425,45.50591523185976],[-122.61866553715426,45.50594023185975],[-122.61850153715427,45.50595823185976],[-122.61817253715424,45.50597123185975],[-122.61725253715427,45.50597523185975],[-122.61627653715425,45.50597923185975],[-122.61530253715425,45.50598323185975],[-122.61423553715424,45.50598723185975],[-122.61334353715426,45.50599023185975],[-122.61310053715427,45.50599023185975],[-122.61215653715425,45.50599623185975],[-122.61125753715426,45.50599723185975],[-122.61122075190461,45.5059975293146],[-122.61118076948755,45.50530146375611],[-122.611124,45.505302],[-122.611077,45.50524],[-122.611033,45.50517],[-122.611015,45.50513],[-122.611002,45.505071],[-122.61100333424824,45.50459467337736],[-122.61116215347265,45.50459338912487],[-122.61206115347264,45.50459238912487],[-122.61300515347266,45.50458638912487],[-122.61324815347265,45.50458638912487],[-122.61414015347263,45.50458338912487],[-122.61520715347264,45.50457938912487],[-122.61618115347264,45.50457538912487],[-122.61715715347266,45.50457138912487],[-122.61807715347263,45.50456738912487],[-122.61840615347266,45.50455438912488],[-122.61857015347265,45.50453638912487],[-122.61869615347264,45.50451138912488],[-122.61879915347266,45.50448238912487],[-122.61892315347265,45.50442138912487],[-122.61931015347265,45.50416438912487],[-122.61939215347265,45.50413038912487],[-122.61948615347265,45.50410238912487],[-122.61960615347265,45.50408638912487],[-122.61988315347264,45.50407738912487],[-122.62040515347265,45.50407538912487],[-122.62150615347262,45.50407938912488],[-122.62269315347264,45.50409238912487],[-122.62391115347265,45.50406738912487],[-122.62429515347264,45.50407738912487],[-122.62524115347264,45.50407338912486],[-122.62574215347263,45.50408038912487],[-122.62627315347265,45.50408038912487],[-122.62729015347264,45.50408138912486],[-122.62762215347266,45.50408338912487],[-122.62861115347266,45.50408338912487],[-122.62960315347263,45.50408438912486],[-122.63056215347267,45.50408638912487],[-122.63118815347264,45.50409038912486],[-122.63157715347265,45.50408738912486],[-122.63264515347265,45.50408838912487],[-122.63360615347266,45.50409038912486],[-122.63468315347265,45.50409138912487],[-122.63563515347265,45.50409238912487],[-122.63669715347264,45.50409438912487],[-122.63766415347266,45.50409538912487],[-122.63867815347267,45.50409638912486],[-122.63964115347264,45.50409738912487],[-122.64044715347266,45.50409638912486],[-122.64126115347266,45.50410038912486],[-122.64156615347267,45.50410038912486],[-122.64261415347266,45.50410438912486],[-122.64362215347265,45.50410838912487],[-122.64464215347263,45.50411138912487],[-122.64512215347266,45.50411438912487],[-122.64539015347265,45.50411438912487],[-122.64567015347265,45.50410738912487],[-122.64599915347266,45.50411438912487],[-122.64693215347266,45.50411138912487],[-122.64768515347265,45.50412238912487],[-122.64869915347265,45.50412638912487],[-122.64946315347264,45.50412838912487],[-122.64971315347266,45.50412938912487],[-122.65072715347264,45.50413438912487],[-122.65174015347263,45.50413638912487],[-122.65204115347265,45.50413838912487],[-122.65275715347263,45.50414238912487],[-122.65373618151908,45.50414532327486],[-122.653736,45.504176],[-122.65372,45.504854],[-122.645084,45.504823],[-122.64509633837709,45.50551747436739],[-122.64473753715424,45.50551523185975],[-122.64371753715426,45.50551223185975],[-122.64270953715427,45.50550823185974],[-122.64166153715428,45.50550423185975],[-122.64135653715427,45.50550423185975],[-122.64054253715427,45.50550023185974],[-122.63973653715425,45.50550123185975],[-122.63877353715428,45.50550023185974],[-122.63775953715427,45.50549923185975],[-122.63679253715425,45.50549823185975],[-122.63671124924048,45.50549807877516]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000054,"geom:area_square_m":467022.078292,"geom:bbox":"-122.653736182,45.5040673891,-122.611002,45.5059975293","geom:latitude":45.504858,"geom:longitude":-122.630518,"iso:country":"US","lbl:latitude":45.504788,"lbl:longitude":-122.630522,"lbl:max_zoom":18,"mps:latitude":45.504788,"mps:longitude":-122.630522,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Linnton"],"name:fra_x_preferred":["Linnton"],"name:und_x_variant":["Linton"],"reversegeo:latitude":45.504788,"reversegeo:longitude":-122.630522,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871465,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6554632"},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"705ab135a507a78c9d2cf2734c310842","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108714053,"neighbourhood_id":85871465,"region_id":85688513}],"wof:id":1108714053,"wof:lastmodified":1566624145,"wof:name":"Division/Clinton","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893169],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108715775.geojson b/fixtures/microhoods/1108715775.geojson new file mode 100644 index 0000000..fbd50d4 --- /dev/null +++ b/fixtures/microhoods/1108715775.geojson @@ -0,0 +1 @@ +{"id":1108715775,"type":"Feature","bbox":[-122.71552962365527,45.48717940647876,-122.71552962365527,45.48717940647876],"geometry":{"type":"Point","coordinates":[-122.71552962365527,45.48717940647876]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-122.715529624,45.4871794065,-122.715529624,45.4871794065","geom:latitude":45.487179,"geom:longitude":-122.71553,"iso:country":"US","lbl:latitude":45.487179,"lbl:longitude":-122.71553,"lbl:max_zoom":18,"mps:latitude":45.491397,"mps:longitude":-122.727065,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Glencullen"],"name:eng_x_preferred":["Glencullen"],"name:eus_x_preferred":["Glencullen"],"name:fas_x_preferred":["گلنکالن"],"name:fra_x_preferred":["Glencullen"],"name:gle_x_preferred":["Gleann Cuilinn"],"name:ita_x_preferred":["Glencullen"],"name:nld_x_preferred":["Glencullen"],"name:pol_x_preferred":["Glencullen"],"name:rus_x_preferred":["Гленкаллен"],"name:swe_x_preferred":["Glencullen"],"name:und_x_variant":["Pine"],"reversegeo:latitude":45.491397,"reversegeo:longitude":-122.727065,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807447,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b842cefab5d6bd0c23b539d0ab8b1e13","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108715775,"neighbourhood_id":85807447,"region_id":85688513}],"wof:id":1108715775,"wof:lastmodified":1566624150,"wof:name":"Glencullen","wof:parent_id":85807447,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85821817],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108715777.geojson b/fixtures/microhoods/1108715777.geojson new file mode 100644 index 0000000..90a091f --- /dev/null +++ b/fixtures/microhoods/1108715777.geojson @@ -0,0 +1 @@ +{"id":1108715777,"type":"Feature","bbox":[-122.653675,45.5112350096833,-122.60827295683387,45.512925],"geometry":{"type":"Polygon","coordinates":[[[-122.653675,45.51222599816625],[-122.653675,45.512925],[-122.60830919371243,45.51287691083287],[-122.60827295683387,45.5112350096833],[-122.61654028569023,45.51125860769255],[-122.64512789241158,45.5112482626373],[-122.645129,45.511424],[-122.645131,45.511936],[-122.64523069238619,45.51210282765241],[-122.64537820024744,45.51218546926323],[-122.653675,45.51222599816625]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000067,"geom:area_square_m":578088.435652,"geom:bbox":"-122.653675,45.5112350097,-122.608272957,45.512925","geom:latitude":45.512119,"geom:longitude":-122.628856,"iso:country":"US","lbl:latitude":45.512076,"lbl:longitude":-122.628856,"lbl:max_zoom":18,"mps:latitude":45.512076,"mps:longitude":-122.628856,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Hawthorne District"],"reversegeo:latitude":45.512076,"reversegeo:longitude":-122.628856,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85851483,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"3efe9da72f893147f7eb7b7451adfc65","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108715777,"neighbourhood_id":85851483,"region_id":85688513}],"wof:id":1108715777,"wof:lastmodified":1566624150,"wof:name":"Hawthorne District","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867133],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108717055.geojson b/fixtures/microhoods/1108717055.geojson new file mode 100644 index 0000000..e5bfd30 --- /dev/null +++ b/fixtures/microhoods/1108717055.geojson @@ -0,0 +1 @@ +{"id":1108717055,"type":"Feature","bbox":[-122.71715786383608,45.52259066112311,-122.69830040513735,45.53317544026779],"geometry":{"type":"Polygon","coordinates":[[[-122.71491530715757,45.52259066112311],[-122.71505063811419,45.52982788142975],[-122.71670179088228,45.52986046437857],[-122.71709838148175,45.53034665791326],[-122.71706070385159,45.53036274857357],[-122.71696068991942,45.53040068955914],[-122.7168601369981,45.53047482326748],[-122.71683724433139,45.53053837023393],[-122.7168442565805,45.53061797296408],[-122.71694504486042,45.53074978431569],[-122.71712641561462,45.53099579098701],[-122.71715786383608,45.53110133050575],[-122.71712381499187,45.53122905601513],[-122.71702112677511,45.53134850107867],[-122.71690221498434,45.53140241142787],[-122.71669548209472,45.53145664266106],[-122.71615613898804,45.53159068285952],[-122.7154718033029,45.53176061197453],[-122.71503467949239,45.53191325298404],[-122.71488634158784,45.53196344060101],[-122.71464849734502,45.5320208409733],[-122.7144869137816,45.53208174385204],[-122.7144781857503,45.53215822066298],[-122.71453652503978,45.5324028292174],[-122.71419926154951,45.53256366099303],[-122.71406896990071,45.53262618932425],[-122.71392759034634,45.53270470801076],[-122.7137483315314,45.53296315306909],[-122.71375635079194,45.53316877570687],[-122.71356129689934,45.53317236189642],[-122.71336602830944,45.53317046339956],[-122.71317097441683,45.53317404895973],[-122.71316776743129,45.5330917993733],[-122.71108846309426,45.53312925020673],[-122.71090042145077,45.53316253464153],[-122.71022945718865,45.53317544026779],[-122.70943126453285,45.53307898308385],[-122.7091053755107,45.53288049981231],[-122.70827248632534,45.53239372549449],[-122.70822253819895,45.53236416151072],[-122.70726207207358,45.53180866646278],[-122.70654100607311,45.53128543580326],[-122.705550199349,45.53055096936598],[-122.70437483464812,45.52968730903694],[-122.70264658743255,45.52971461711036],[-122.70254817429823,45.52828481264913],[-122.70187649497714,45.52752293497142],[-122.70107108166309,45.5265329737282],[-122.70063569070275,45.52587425340826],[-122.70050306073927,45.5255743015301],[-122.70032469844297,45.52535324895067],[-122.69958626261818,45.52468009237101],[-122.69909798693875,45.52421718001128],[-122.69830040513735,45.52347741257061],[-122.7004740226977,45.52376762288696],[-122.70061565557698,45.52379646320665],[-122.7018717240247,45.52412890875412],[-122.70193680427208,45.52414635356313],[-122.70232482257589,45.52423786099506],[-122.70422110505524,45.5241696055379],[-122.70430881566125,45.52416672303622],[-122.70594133480687,45.52409097990159],[-122.70732287813684,45.52388490932107],[-122.70811450500624,45.5237657819748],[-122.70970951499716,45.5234286825677],[-122.71166070250663,45.52286692503594],[-122.71216663996289,45.52277898963868],[-122.71279348257151,45.52268872412543],[-122.7134460430484,45.52265746388545],[-122.71491530715757,45.52259066112311]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000116,"geom:area_square_m":1003809.873954,"geom:bbox":"-122.717157864,45.5225906611,-122.698300405,45.5331754403","geom:latitude":45.527694,"geom:longitude":-122.709124,"iso:country":"US","lbl:latitude":45.528242,"lbl:longitude":-122.710055,"lbl:max_zoom":18,"mps:latitude":45.528242,"mps:longitude":-122.710055,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":45.528242,"reversegeo:longitude":-122.710055,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85871503,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"3184d8c88a1a0bb3f472dbcd94a944d7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108717055,"neighbourhood_id":85871503,"region_id":85688513}],"wof:id":1108717055,"wof:lastmodified":1566624135,"wof:name":"Kings Heights","wof:parent_id":85871503,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420536099],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108717057.geojson b/fixtures/microhoods/1108717057.geojson new file mode 100644 index 0000000..393b825 --- /dev/null +++ b/fixtures/microhoods/1108717057.geojson @@ -0,0 +1 @@ +{"id":1108717057,"type":"Feature","bbox":[-122.73332384867105,45.54648944920253,-122.70842828362834,45.557858],"geometry":{"type":"Polygon","coordinates":[[[-122.70842828362834,45.54961643924949],[-122.7106031161516,45.54648944920253],[-122.710768,45.546541],[-122.711989,45.546889],[-122.713371,45.547347],[-122.717795,45.548946],[-122.718137,45.54907],[-122.718337,45.549142],[-122.718909,45.549347],[-122.719214,45.549456],[-122.720226,45.549842],[-122.720819,45.550067],[-122.721674,45.550393],[-122.722567,45.550721],[-122.723004,45.550876],[-122.723783,45.551111],[-122.724766,45.55147],[-122.725024,45.551574],[-122.726721,45.552259],[-122.726943,45.552351],[-122.728294,45.552912],[-122.73134,45.554157],[-122.73332384867105,45.55497973921857],[-122.733185,45.555153],[-122.732218,45.556371],[-122.732025,45.556614],[-122.73195,45.556702],[-122.731373,45.557376],[-122.730969,45.557858],[-122.730195,45.557576],[-122.729733,45.557408],[-122.728607,45.556998],[-122.724921,45.555636],[-122.718108,45.553147],[-122.716838,45.552683],[-122.713977,45.551627],[-122.712121,45.550942],[-122.711622,45.550796],[-122.70842828362834,45.54961643924949]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000091,"geom:area_square_m":789257.108751,"geom:bbox":"-122.733323849,45.5464894492,-122.708428284,45.557858","geom:latitude":45.552119,"geom:longitude":-122.720796,"iso:country":"US","lbl:latitude":45.552094,"lbl:longitude":-122.720796,"lbl:max_zoom":18,"mps:latitude":45.552094,"mps:longitude":-122.720796,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"rail yard","mz:tier_metro":1,"reversegeo:latitude":45.552094,"reversegeo:longitude":-122.720796,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871505,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"5314db86d40dee1ceeac25b5d22aa25e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108717057,"neighbourhood_id":85871505,"region_id":85688513}],"wof:id":1108717057,"wof:lastmodified":1566624135,"wof:name":"Lake Yard","wof:parent_id":85871505,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868951],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108717813.geojson b/fixtures/microhoods/1108717813.geojson new file mode 100644 index 0000000..cbe0734 --- /dev/null +++ b/fixtures/microhoods/1108717813.geojson @@ -0,0 +1 @@ +{"id":1108717813,"type":"Feature","bbox":[-122.66272594111177,45.52219297741104,-122.65359608798828,45.52432789909248],"geometry":{"type":"Polygon","coordinates":[[[-122.65361102116658,45.52219297741104],[-122.66272594111177,45.52223346427808],[-122.6626906331842,45.52432789909248],[-122.65359608798828,45.5243214528705],[-122.653601,45.523621],[-122.653606,45.522908],[-122.653603,45.522739],[-122.653611,45.522196],[-122.65361102116658,45.52219297741104]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":166563.341343,"geom:bbox":"-122.662725941,45.5221929774,-122.653596088,45.5243278991","geom:latitude":45.523268,"geom:longitude":-122.658143,"iso:country":"US","lbl:latitude":45.523269,"lbl:longitude":-122.658144,"lbl:max_zoom":18,"mps:latitude":45.523269,"mps:longitude":-122.658144,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":45.523269,"reversegeo:longitude":-122.658144,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871495,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ac70ab947c8ccef7d53ef87e9d210b74","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108717813,"neighbourhood_id":85871495,"region_id":85688513}],"wof:id":1108717813,"wof:lastmodified":1566624149,"wof:name":"Lower Burnside","wof:parent_id":85871495,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893203],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108718535.geojson b/fixtures/microhoods/1108718535.geojson new file mode 100644 index 0000000..390d1dc --- /dev/null +++ b/fixtures/microhoods/1108718535.geojson @@ -0,0 +1 @@ +{"id":1108718535,"type":"Feature","bbox":[-122.69601015459402,45.491442,-122.680379,45.50301502469708],"geometry":{"type":"Polygon","coordinates":[[[-122.68742101270958,45.50287879156318],[-122.687426,45.502797],[-122.687439,45.502696],[-122.687414,45.50261],[-122.687305,45.502507],[-122.68712,45.502453],[-122.686844,45.502405],[-122.686577,45.502406],[-122.686332,45.502439],[-122.685906,45.50251],[-122.685447,45.502614],[-122.68470211243678,45.50287282248734],[-122.68436830044524,45.50299193460302],[-122.68431015968343,45.50300195726893],[-122.68416622262545,45.50301309747984],[-122.68406485044059,45.50301502469708],[-122.68391426135794,45.50300536972217],[-122.68376886813088,45.50297863925282],[-122.68368406626978,45.50295487231904],[-122.68358611846277,45.50289362940068],[-122.68348784187236,45.50282381873883],[-122.6834188135293,45.5027536239304],[-122.68336001969227,45.50264516462585],[-122.68320686861442,45.50236581822984],[-122.682296,45.500469],[-122.682265,45.500333],[-122.682254,45.500247],[-122.682253,45.500157],[-122.682268,45.500083],[-122.6823,45.500013],[-122.682351,45.499922],[-122.682429,45.499825],[-122.682617,45.499631],[-122.682687,45.49952],[-122.682702,45.499448],[-122.682697,45.49938],[-122.682659,45.499295],[-122.682566,45.499218],[-122.682456,45.499163],[-122.682336,45.499131],[-122.682167,45.499094],[-122.682117,45.499083],[-122.681876,45.499038],[-122.681672,45.498981],[-122.681586,45.498938],[-122.681505,45.498879],[-122.681399,45.498789],[-122.681314,45.498699],[-122.681189,45.498488],[-122.680413,45.497113],[-122.680391,45.496966],[-122.680379,45.496778],[-122.680392,45.496656],[-122.680413,45.496569],[-122.680448,45.496462],[-122.680489,45.496374],[-122.680611,45.496191],[-122.680689,45.4961],[-122.680773,45.496029],[-122.680943,45.495914],[-122.681194,45.495801],[-122.682046,45.495483],[-122.682201,45.495401],[-122.682323,45.495314],[-122.682379,45.495249],[-122.682445,45.495115],[-122.68246,45.494979],[-122.682454,45.494887],[-122.682429,45.494778],[-122.682365,45.494672],[-122.682227,45.494561],[-122.682057,45.494448],[-122.681838,45.494316],[-122.68166,45.494192],[-122.681609,45.494139],[-122.681543,45.49407],[-122.681455,45.493944],[-122.681413,45.493838],[-122.681349,45.493702],[-122.681313,45.493564],[-122.681304,45.493493],[-122.681284,45.493172],[-122.681375,45.492508],[-122.681441,45.492393],[-122.681556,45.492186],[-122.68167,45.492066],[-122.681823,45.491932],[-122.682022,45.4918],[-122.682284,45.491683],[-122.682471,45.491607],[-122.682804,45.491521],[-122.683006,45.491476],[-122.683263,45.491442],[-122.683488,45.491445],[-122.68376,45.491467],[-122.683897,45.491484],[-122.68401,45.491506],[-122.684143,45.491546],[-122.684297,45.491598],[-122.68462,45.491712],[-122.685268,45.491876],[-122.685473,45.491924],[-122.685703,45.491963],[-122.68594,45.491992],[-122.686112,45.492004],[-122.686255,45.492009],[-122.68647145697196,45.49225371809604],[-122.68668933875114,45.49250425874126],[-122.68687974633661,45.49275393679535],[-122.68695460308395,45.49287711679733],[-122.68700994974628,45.49298217736425],[-122.68705629753713,45.49308371381414],[-122.68707723591979,45.49317796507171],[-122.68709520444679,45.49351883078083],[-122.68710471011345,45.49364439471879],[-122.68712501925812,45.49379488635164],[-122.68714078615571,45.49391647947557],[-122.68716502523066,45.49400953236238],[-122.68720807358122,45.49411285632436],[-122.68726595587536,45.4941987427087],[-122.68732769209188,45.49427935235811],[-122.68752184910596,45.49446527415197],[-122.68768955335068,45.49459035096557],[-122.68785097896254,45.49468519014405],[-122.6884553279086,45.49499084771355],[-122.68917825905582,45.49531888299668],[-122.68971771081004,45.49555045711534],[-122.69017097603573,45.49572677756723],[-122.69045990229827,45.49582450736951],[-122.69074656085678,45.49590309749694],[-122.69111351978052,45.49599120169065],[-122.69151123243776,45.4960699395286],[-122.69264885936822,45.49627800917986],[-122.69330033062953,45.49641830994467],[-122.69387136253208,45.49656172185267],[-122.69430188562033,45.49669682451387],[-122.69466205190183,45.4968417564715],[-122.6951251366739,45.49711176888452],[-122.6953319826581,45.49726231059557],[-122.6955011295681,45.49739564397314],[-122.69601015459402,45.49795173751293],[-122.69598122636495,45.49797827887338],[-122.69594747755805,45.49801356312604],[-122.69589623675591,45.49810096990167],[-122.69578766098077,45.49826955511028],[-122.6957463375794,45.49836122992553],[-122.6957145884223,45.49844826403548],[-122.69567226519604,45.49851406418892],[-122.69563238808226,45.49859267896973],[-122.69559702051119,45.49863656830222],[-122.69551010760914,45.49870956641701],[-122.6954486224195,45.4987843079411],[-122.69540144379911,45.4988759227312],[-122.69531617750897,45.49904200402726],[-122.69527665882299,45.49923087424918],[-122.69527061585607,45.49927643290439],[-122.69523749946313,45.49937858273543],[-122.69520021668392,45.49952436853461],[-122.69519217227054,45.49956859274025],[-122.69517506924582,45.49963082466478],[-122.69514754217057,45.49972618003155],[-122.69512852483602,45.49989030882853],[-122.69512922731857,45.49990847264375],[-122.69513199772288,45.49992968327284],[-122.69504289203324,45.50004696461593],[-122.69495623245608,45.50017706005838],[-122.69491773695121,45.50029148801347],[-122.69486203152213,45.50046540594574],[-122.69484863943788,45.50057318063308],[-122.6948458726268,45.5006025573234],[-122.69484296478024,45.50067875077981],[-122.69483441820861,45.500911957032],[-122.69477778392152,45.50121330341008],[-122.69473731841123,45.50132725452367],[-122.69472595651953,45.5013866323168],[-122.69456003678825,45.50143455975252],[-122.69449077847648,45.50145971816132],[-122.69441947200583,45.50148234422352],[-122.6943502271688,45.50150784638384],[-122.69428913005139,45.50154228095587],[-122.69424402564096,45.50158669938828],[-122.69420488873897,45.50163408958849],[-122.69419173291166,45.50164703078072],[-122.69416923999523,45.50167078189649],[-122.69415980409151,45.50167902108778],[-122.6941026990872,45.501715780106],[-122.69403756404257,45.50174669120882],[-122.69397235713274,45.50177571658983],[-122.69390722208811,45.50180662703013],[-122.69385012966023,45.50184372847661],[-122.69380505130096,45.50188883169385],[-122.69375199680029,45.50192945767627],[-122.69370089074543,45.50197004522278],[-122.69364782905826,45.50201049926169],[-122.6935947745576,45.50205112515631],[-122.69354367568927,45.5020918844998],[-122.69349064005323,45.50213302410045],[-122.69343957442256,45.50217464028818],[-122.6933885016054,45.50221608519049],[-122.69333742878825,45.50225753006234],[-122.69328632273341,45.50229811863159],[-122.6932312847526,45.50233792393506],[-122.69319708768636,45.50236172638751],[-122.69317619377117,45.50237635917701],[-122.69311909954665,45.50241346024807],[-122.69306000387569,45.50244922778047],[-122.69299891843636,45.50248400428447],[-122.69293780065767,45.50251792386865],[-122.6928766694043,45.5025515009251],[-122.69285755145842,45.50256164014705],[-122.69281359419662,45.50258528699159],[-122.69275246923142,45.50261903526133],[-122.69268737281435,45.50265097275864],[-122.69267011168617,45.50265867601026],[-122.6926201608648,45.50267866353506],[-122.69255078128046,45.50270073757144],[-122.69247736376892,45.50271928705873],[-122.69243673656187,45.50272812170479],[-122.69240386091744,45.50273560836107],[-122.69232835482285,45.50275059741085],[-122.69225283615185,45.50276524206181],[-122.69212314906923,45.50279172456762],[-122.69203044832182,45.50281612936114],[-122.69189361154784,45.50285955327105],[-122.69163098458294,45.50287879779031],[-122.69155085755456,45.50282459504294],[-122.69137607414636,45.50279466231048],[-122.69123204635854,45.50275282495945],[-122.69102540509711,45.50275676692701],[-122.69092049175337,45.50276802807088],[-122.69086552473948,45.50280971808277],[-122.69072778785358,45.50282983588236],[-122.6904528431895,45.50278260597908],[-122.69006380619615,45.50271097120761],[-122.68958772604503,45.50265865712204],[-122.68913935442883,45.5026672034173],[-122.68864198690044,45.50272058090129],[-122.68826350870494,45.50277100548019],[-122.68742101270958,45.50287879156318]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000112,"geom:area_square_m":971669.947082,"geom:bbox":"-122.696010155,45.491442,-122.680379,45.5030150247","geom:latitude":45.49801,"geom:longitude":-122.687448,"iso:country":"US","lbl:latitude":45.498632,"lbl:longitude":-122.687449,"lbl:max_zoom":18,"mps:latitude":45.498632,"mps:longitude":-122.687449,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Marquam Hl"],"reversegeo:latitude":45.498632,"reversegeo:longitude":-122.687449,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[420781235,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"9a084b4a92537076b833b0a45a138d26","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108718535,"neighbourhood_id":420781235,"region_id":85688513}],"wof:id":1108718535,"wof:lastmodified":1566624148,"wof:name":"Marquam Hill","wof:parent_id":420781235,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85832591],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108718537.geojson b/fixtures/microhoods/1108718537.geojson new file mode 100644 index 0000000..51dae87 --- /dev/null +++ b/fixtures/microhoods/1108718537.geojson @@ -0,0 +1 @@ +{"id":1108718537,"type":"Feature","bbox":[-122.676098,45.547835,-122.67497510484102,45.55462405118203],"geometry":{"type":"Polygon","coordinates":[[[-122.67497510484102,45.55462026576988],[-122.674984,45.553359],[-122.674993,45.552101],[-122.675003,45.550841],[-122.675012,45.549583],[-122.675025,45.547837],[-122.675386,45.547835],[-122.675561,45.547837],[-122.676098,45.547837],[-122.676085,45.549587],[-122.676076,45.550845],[-122.676066,45.552105],[-122.676057,45.553364],[-122.67604812264454,45.55462405118203],[-122.67497510484102,45.55462026576988]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":63047.883773,"geom:bbox":"-122.676098,45.547835,-122.674975105,45.5546240512","geom:latitude":45.551229,"geom:longitude":-122.675536,"iso:country":"US","lbl:latitude":45.551229,"lbl:longitude":-122.675538,"lbl:max_zoom":18,"mps:latitude":45.551229,"mps:longitude":-122.675538,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["North Mississippi Ave\"","\"Mississippi Avenue\""],"reversegeo:latitude":45.551229,"reversegeo:longitude":-122.675538,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85893159,102191575,1108720843,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"7a4a5baea15388e6149309dddd532917","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108720843,"microhood_id":1108718537,"neighbourhood_id":85893159,"region_id":85688513}],"wof:id":1108718537,"wof:lastmodified":1566624148,"wof:name":"Mississippi Ave","wof:parent_id":85893159,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893207],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108718923.geojson b/fixtures/microhoods/1108718923.geojson new file mode 100644 index 0000000..f12c5c0 --- /dev/null +++ b/fixtures/microhoods/1108718923.geojson @@ -0,0 +1 @@ +{"id":1108718923,"type":"Feature","bbox":[-122.69933864341344,45.52318935573036,-122.69382596457015,45.536917],"geometry":{"type":"Polygon","coordinates":[[[-122.69889296961972,45.52402702379516],[-122.69933864341344,45.53691053961852],[-122.698873,45.536917],[-122.698615,45.536854],[-122.698423,45.536826],[-122.697682,45.536717],[-122.696861,45.536597],[-122.696594,45.536524],[-122.696104,45.536421],[-122.695662,45.536322],[-122.694777,45.536092],[-122.694398,45.535987],[-122.69421202054004,45.53593708637131],[-122.69382596457015,45.52318935573036],[-122.69412904757279,45.52320423361567],[-122.69763149711889,45.52338920560778],[-122.69830040513735,45.52347741257061],[-122.69889296961972,45.52402702379516]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000067,"geom:area_square_m":577596.347618,"geom:bbox":"-122.699338643,45.5231893557,-122.693825965,45.536917","geom:latitude":45.529955,"geom:longitude":-122.696582,"iso:country":"US","lbl:latitude":45.529928,"lbl:longitude":-122.696582,"lbl:max_zoom":18,"mps:latitude":45.529928,"mps:longitude":-122.696582,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Nob Hl","Nobhill"],"reversegeo:latitude":45.529928,"reversegeo:longitude":-122.696582,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871509,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ad730d8fc98fc0be5683f8be6ac90080","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108718923,"neighbourhood_id":85871509,"region_id":85688513}],"wof:id":1108718923,"wof:lastmodified":1566624129,"wof:name":"Nob Hill","wof:parent_id":85871509,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867141],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108719767.geojson b/fixtures/microhoods/1108719767.geojson new file mode 100644 index 0000000..445b626 --- /dev/null +++ b/fixtures/microhoods/1108719767.geojson @@ -0,0 +1 @@ +{"id":1108719767,"type":"Feature","bbox":[-122.71344043676608,45.502544,-122.68508349146376,45.51944304272305],"geometry":{"type":"Polygon","coordinates":[[[-122.68538660010861,45.50451143387046],[-122.685508,45.504438],[-122.685817,45.504255],[-122.686469,45.50387],[-122.686577,45.503815],[-122.686675,45.503779],[-122.686829,45.503748],[-122.687213,45.503701],[-122.687315,45.503693],[-122.687959,45.503643],[-122.688655,45.503609],[-122.689189,45.503622],[-122.68961,45.503653],[-122.690329,45.503705],[-122.690898,45.503757],[-122.691044,45.503781],[-122.691156,45.50382],[-122.691297,45.5039],[-122.692484,45.504752],[-122.692577,45.504891],[-122.692751,45.505189],[-122.692812,45.505259],[-122.692873,45.505295],[-122.692969,45.50531],[-122.693024,45.505308],[-122.693092,45.505306],[-122.693527,45.505205],[-122.693685,45.50519],[-122.693776,45.505192],[-122.693871,45.5052],[-122.693957,45.505216],[-122.694026,45.505237],[-122.694118,45.505276],[-122.694304,45.50541],[-122.694519,45.505562],[-122.694839,45.505829],[-122.694893,45.505866],[-122.694938,45.505889],[-122.694985,45.505907],[-122.695126,45.505939],[-122.695697,45.506015],[-122.69625,45.506098],[-122.696616,45.506151],[-122.696661,45.506153],[-122.696755,45.506142],[-122.696872,45.506094],[-122.696922,45.506061],[-122.697056,45.505919],[-122.697119,45.505864],[-122.697172,45.505835],[-122.697264,45.505798],[-122.697337,45.50578],[-122.697435,45.505768],[-122.697574,45.505771],[-122.698217,45.505831],[-122.699022,45.505925],[-122.699374,45.506016],[-122.699939,45.506241],[-122.700149,45.506247],[-122.700309,45.50623],[-122.700462,45.506172],[-122.700587,45.506044],[-122.700851,45.505465],[-122.700982,45.505345],[-122.70113,45.505332],[-122.701347,45.505336],[-122.70157,45.505359],[-122.702208,45.50541],[-122.702456,45.505442],[-122.702734,45.505499],[-122.703018,45.505569],[-122.703286,45.50557],[-122.703482,45.505548],[-122.703753,45.505467],[-122.70432,45.505253],[-122.704573,45.505187],[-122.704793,45.505142],[-122.704976,45.505118],[-122.705212,45.505106],[-122.70535,45.505107],[-122.705497,45.505124],[-122.705599,45.505146],[-122.705675,45.505148],[-122.705792,45.505131],[-122.705856,45.505088],[-122.705938,45.504997],[-122.706191,45.504729],[-122.706297,45.504629],[-122.706445,45.504506],[-122.707052,45.504075],[-122.707792,45.503559],[-122.708181,45.503236],[-122.708276,45.503148],[-122.708365,45.503097],[-122.708471,45.503062],[-122.708599,45.503059],[-122.708744,45.503088],[-122.710004,45.503505],[-122.710271,45.503529],[-122.710465,45.503503],[-122.710653,45.503443],[-122.710818,45.50335],[-122.710919,45.503277],[-122.711008,45.503222],[-122.711125,45.503193],[-122.7113,45.503185],[-122.71155,45.50322],[-122.711941,45.503317],[-122.712298,45.503346],[-122.712453,45.503316],[-122.712582,45.503265],[-122.712684,45.503207],[-122.71276,45.503122],[-122.712998,45.502544],[-122.71305774991183,45.50256241042748],[-122.7131459424951,45.50261586784322],[-122.71324514419699,45.50269625699335],[-122.7133266732175,45.50279494543117],[-122.71339001223262,45.50290426623923],[-122.71343031722198,45.50305758312086],[-122.71344043676608,45.50323277521407],[-122.71342690310045,45.50338213573743],[-122.71334437713777,45.50387016747798],[-122.71322646674005,45.50469843399722],[-122.71312527100687,45.50543150994201],[-122.71297697713445,45.50677442290376],[-122.71085124857045,45.50709109134276],[-122.71028335341077,45.50723783424334],[-122.70980576498827,45.50749927210752],[-122.70913143473877,45.50796958511241],[-122.70872169337474,45.50837050086624],[-122.70794568551321,45.50948804727739],[-122.70724509032144,45.51068919295102],[-122.70699890252624,45.51098166938267],[-122.70654080574877,45.51129399152692],[-122.70571690420786,45.51168295759599],[-122.7048434246464,45.51195111743027],[-122.70462168450165,45.5120193348321],[-122.70378101231267,45.51232869823543],[-122.70313479663663,45.51262112208251],[-122.70248472179816,45.51291481598616],[-122.70197461795564,45.51334626636172],[-122.70139057917198,45.51398473755411],[-122.70023855539714,45.51522380898554],[-122.69954147531305,45.51626981518912],[-122.69945215762098,45.51648278980859],[-122.69947869565112,45.51656339185696],[-122.69944477077442,45.51679588334358],[-122.69945358504397,45.51702344152235],[-122.69964077328792,45.51747308274999],[-122.69979936725808,45.51763792583564],[-122.69996523848035,45.51778908255778],[-122.70005182619225,45.51795890545008],[-122.70025025864864,45.51814459273038],[-122.70032470293455,45.51830315840421],[-122.70035056812654,45.51841669852406],[-122.70036043342498,45.51846983951422],[-122.70014088067795,45.51894784621405],[-122.69969034412195,45.51930680773707],[-122.6993821986233,45.51941233771678],[-122.69925787627952,45.51942706363417],[-122.69913337337441,45.51943716331012],[-122.69900674236041,45.51944267325351],[-122.69887991192036,45.51944304272305],[-122.69875290271561,45.51943878658459],[-122.69862571384782,45.51942990231928],[-122.69849833902872,45.51941622061098],[-122.69837273568739,45.51939787426388],[-122.69824695268301,45.51937490166803],[-122.69815051314733,45.51935376823112],[-122.69785154483762,45.51929312536942],[-122.69772378014972,45.51906767046388],[-122.69727051900344,45.51829764583155],[-122.6971624139455,45.51837842278012],[-122.69708165540149,45.51840946131997],[-122.6970095063111,45.51841084103403],[-122.69694561453485,45.51837348048021],[-122.69679490687457,45.51816012402613],[-122.69671781794848,45.51808426076532],[-122.69664972924318,45.51803926242191],[-122.69655733841452,45.51802182327241],[-122.69632815842262,45.51799945311465],[-122.69624356766558,45.51798186477645],[-122.69613475563354,45.51794347480864],[-122.69598820717303,45.51783755748745],[-122.69589592593883,45.51772202842972],[-122.69579363747238,45.51760000204872],[-122.69579112847777,45.51491105983678],[-122.69565785082897,45.51484535816076],[-122.6955793416664,45.51478306751783],[-122.69551430992803,45.51471606079504],[-122.69549429636184,45.51465265206386],[-122.69521632168029,45.51341815702027],[-122.69517866789685,45.51335268525297],[-122.6951280083047,45.51330409441077],[-122.6950383465579,45.51325607825036],[-122.69492976898614,45.51322351350309],[-122.69481888274409,45.51323214821147],[-122.69472882484024,45.51327485339354],[-122.69465122028116,45.5133368681015],[-122.69458897960837,45.51344300351336],[-122.69414186383696,45.51404178047285],[-122.69397576084933,45.51428794141596],[-122.69378026498563,45.51458147743577],[-122.69370968255714,45.51462329466516],[-122.6936209559565,45.51465002464086],[-122.6935217190671,45.51465723526112],[-122.69342786128959,45.51465216799861],[-122.69212049634419,45.51429832024339],[-122.6895278389583,45.51360507796804],[-122.68954731533196,45.51284504796743],[-122.68924214864681,45.51226817244375],[-122.68893368873782,45.51170696383439],[-122.68848947632138,45.51091392663678],[-122.68804689165225,45.51036538812583],[-122.68751745426822,45.50989189525405],[-122.68690324017584,45.50939532100391],[-122.68609059722037,45.50886290780016],[-122.68534532252131,45.50845833224351],[-122.6853769710671,45.50781039161875],[-122.68563262081717,45.5075078371841],[-122.68582380746246,45.50735535407345],[-122.68594561542173,45.5071745247408],[-122.6859668093742,45.50701550212737],[-122.68594896074785,45.50690660782311],[-122.68590264001853,45.50681831948135],[-122.6857826924702,45.50664191928972],[-122.6854815376611,45.50596464179959],[-122.68529444463856,45.50561495127852],[-122.68518541880749,45.50536734907321],[-122.68511865421894,45.50520399803352],[-122.68510194196139,45.5051245765479],[-122.68508349146376,45.5050506770056],[-122.68509581724777,45.50496538822954],[-122.68510579214072,45.50486968350327],[-122.6851773267834,45.50475137276247],[-122.68531567093042,45.50459475084105],[-122.68533055511637,45.5045759476188],[-122.68538660010861,45.50451143387046]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000218,"geom:area_square_m":1891687.539574,"geom:bbox":"-122.713440437,45.502544,-122.685083491,45.5194430427","geom:latitude":45.509308,"geom:longitude":-122.698109,"iso:country":"US","lbl:latitude":45.510039,"lbl:longitude":-122.698323,"lbl:max_zoom":18,"mps:latitude":45.510039,"mps:longitude":-122.698323,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Portland Hts"],"reversegeo:latitude":45.510039,"reversegeo:longitude":-122.698323,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85867153,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"0d3b68d6d2fb487b5bb6ad639cc2dc4b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108719767,"neighbourhood_id":85867153,"region_id":85688513}],"wof:id":1108719767,"wof:lastmodified":1566624134,"wof:name":"Portland Heights","wof:parent_id":85867153,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85842887],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108719769.geojson b/fixtures/microhoods/1108719769.geojson new file mode 100644 index 0000000..c77686c --- /dev/null +++ b/fixtures/microhoods/1108719769.geojson @@ -0,0 +1 @@ +{"id":1108719769,"type":"Feature","bbox":[-122.78741834063365,45.61341300102325,-122.70333399576312,45.6507006357079],"geometry":{"type":"Polygon","coordinates":[[[-122.70361770982046,45.61341300102325],[-122.704918,45.6139515],[-122.7070495,45.6147565],[-122.7087185,45.6153935],[-122.709156,45.615619],[-122.710278,45.6162375],[-122.711505,45.616884],[-122.712099,45.61714],[-122.7125945,45.617313],[-122.7129935,45.6174195],[-122.71342250000001,45.617507],[-122.713915,45.6175835],[-122.71445,45.617629],[-122.7149505,45.617643],[-122.715368,45.617635],[-122.715801,45.617606],[-122.7163835,45.61754],[-122.716981,45.617458],[-122.717606,45.6173755],[-122.7180895,45.617318],[-122.7183125,45.617301],[-122.718649,45.6172915],[-122.7190525,45.617299],[-122.719439,45.617332],[-122.7198845,45.6173995],[-122.7203135,45.617493],[-122.720734,45.6176205],[-122.7215285,45.6179375],[-122.722507,45.6183775],[-122.7252325,45.6195815],[-122.72696336802098,45.62034533925764],[-122.72813550000001,45.620902],[-122.72978803207965,45.62180040292456],[-122.73119088420124,45.62250108909564],[-122.73162194338485,45.62267516838849],[-122.73205350961972,45.62281755562122],[-122.73248160833487,45.62293960686025],[-122.73296251069877,45.62303072659452],[-122.73353132065347,45.62307676247933],[-122.7399536016267,45.62362417351928],[-122.74136355905286,45.6237403251976],[-122.74268368185278,45.62388224172222],[-122.74297443429342,45.62392482715055],[-122.74313234620959,45.62396270897244],[-122.74326384889405,45.62401053250418],[-122.7433425033051,45.6240741524227],[-122.7434099871382,45.62414366294341],[-122.74345085831175,45.62423131651416],[-122.74361462994673,45.6249243070426],[-122.74378340657887,45.62521094801308],[-122.74397523983178,45.62542267953209],[-122.74422855837236,45.62556182906199],[-122.74451210911315,45.62562170992114],[-122.74484716872368,45.62566967510507],[-122.74518262255772,45.62569164722989],[-122.74556803857368,45.62569193429812],[-122.74713076547522,45.62561060080564],[-122.74810029799767,45.62558354181127],[-122.74855256834103,45.62559036040835],[-122.74884637530558,45.62561154535717],[-122.74909797901678,45.6256562757531],[-122.74942011336448,45.62573955927043],[-122.74973175618712,45.6258359436622],[-122.74998578754963,45.62596050180704],[-122.75011206222163,45.6260465563181],[-122.75021733840993,45.62614387210665],[-122.75031472089941,45.62625317450879],[-122.75039320440574,45.62636370350506],[-122.75047246140302,45.62649581646193],[-122.750628297112,45.62679781305798],[-122.7511408917083,45.6279427024658],[-122.75118654898313,45.62803090805426],[-122.75123768622304,45.62811673352332],[-122.75129166974781,45.62819095921135],[-122.75134390295086,45.62826506629145],[-122.75141778008673,45.6283471163237],[-122.7515066651092,45.62842042176892],[-122.75161913388493,45.62848175844168],[-122.7517445306131,45.62852815143367],[-122.75187014317099,45.62854174672636],[-122.7523473074145,45.62855743043103],[-122.75304680303105,45.62854116127183],[-122.7542894721975,45.62844372563263],[-122.75438845828701,45.62840591455655],[-122.7544793026908,45.62835902290345],[-122.7545680186636,45.62830200167329],[-122.75463599712916,45.62823329450506],[-122.75468804899201,45.6281680616391],[-122.75473486568339,45.62809637737018],[-122.75476154505877,45.62801383433116],[-122.75477956646763,45.62791908545334],[-122.75479430743475,45.62773709050125],[-122.75483277663281,45.62729219611793],[-122.75449790658249,45.62578300410132],[-122.7544661766819,45.62555269683794],[-122.75449446064944,45.62532828090014],[-122.75458249456389,45.62512117728004],[-122.75473975717438,45.62492430914426],[-122.75565134786694,45.62423473746929],[-122.75636957257942,45.62376029338569],[-122.75646866880653,45.62369323245772],[-122.75652573077613,45.62366225954964],[-122.75658986622298,45.62364618702001],[-122.7566524439282,45.62364026581571],[-122.7567239199927,45.62364148068259],[-122.75680610968621,45.62364883006396],[-122.75702966717525,45.62370225244855],[-122.75733247241853,45.62378429828575],[-122.7575635984107,45.62386200353978],[-122.75934572320809,45.62451843662105],[-122.7595790749547,45.6246299894769],[-122.75979615666891,45.62477544548921],[-122.75994966220733,45.62491384939337],[-122.7600803867129,45.62504474553862],[-122.76019606040447,45.62522931185534],[-122.76024094980697,45.62533973654608],[-122.76026511300483,45.62544473347076],[-122.760237257915,45.62625319837662],[-122.7601872996236,45.62653135748039],[-122.76006045200691,45.62689828114822],[-122.75978141182102,45.62756541018381],[-122.7592205938736,45.62882083378931],[-122.7590247758937,45.62932585375381],[-122.75877680167002,45.6299462036465],[-122.75836481485605,45.6314613129089],[-122.75826702676923,45.63180300583499],[-122.7582368783505,45.63194354911131],[-122.75821147567893,45.63211449583967],[-122.75821036432013,45.63222355066397],[-122.75822049310754,45.63236436598417],[-122.75824212411631,45.63249440957392],[-122.75829337339401,45.63262970001922],[-122.75852606928662,45.63303155008733],[-122.7586837822116,45.63331556194837],[-122.7593388687204,45.63451235788256],[-122.75946443450675,45.6347034796653],[-122.75963236569736,45.63477234662975],[-122.75983695220822,45.63479554270756],[-122.76012958486479,45.6347176605411],[-122.7605648616753,45.63450969471389],[-122.76098391178836,45.6342763163002],[-122.76206969049827,45.63361476757201],[-122.76318127302645,45.63286817992232],[-122.76381711875932,45.63244876843682],[-122.76393782610906,45.63233888291141],[-122.76402434829787,45.63219840783758],[-122.76407690362342,45.632041604113],[-122.76409751469193,45.63191060589806],[-122.76415332636698,45.62686268207464],[-122.76371121238041,45.61665882512061],[-122.763673,45.61576],[-122.763902,45.6159605],[-122.764135,45.616132],[-122.7643405,45.6162595],[-122.76455250000001,45.6163705],[-122.76479,45.6164745],[-122.76507,45.616577],[-122.765446,45.616681],[-122.7657065,45.6167395],[-122.7684705,45.617101],[-122.771678,45.617532],[-122.7724395,45.61765],[-122.77280314398232,45.61770655799726],[-122.77301314398233,45.61773905799726],[-122.77394050000001,45.6178805],[-122.776071,45.6182045],[-122.77989862741103,45.61859150490117],[-122.78485396796455,45.61909253096124],[-122.78720783320729,45.61930909980305],[-122.78720817977293,45.6193145724549],[-122.78720954431387,45.61932561234605],[-122.78721172362673,45.61933636447292],[-122.78721809986861,45.61935676919306],[-122.78722328314781,45.61937507223826],[-122.78722613619715,45.61938411474838],[-122.78722973394987,45.61939296499695],[-122.78723373055458,45.61940054230648],[-122.787243929128,45.61941833767043],[-122.78724958222607,45.61942887678562],[-122.78726042848483,45.61945066624607],[-122.78726554259374,45.61946180977998],[-122.78727036744512,45.61947307080383],[-122.78727480332599,45.61948442732699],[-122.7872787118958,45.61949586741172],[-122.78728190810159,45.61950738791655],[-122.7872841422117,45.61951899261108],[-122.78728519503721,45.61953034786836],[-122.78728532169967,45.61954176720988],[-122.78728473959134,45.61955322801678],[-122.78728360861241,45.61956471206847],[-122.78728203656067,45.61957620302901],[-122.78727779920746,45.61959914850181],[-122.7872751554656,45.61961057222739],[-122.7872721227532,45.61962194128869],[-122.78726863189999,45.61963323369525],[-122.7872650718765,45.61964329212195],[-122.78725361296675,45.61967326884903],[-122.78725015175796,45.61968328705746],[-122.78724720079225,45.61969336620901],[-122.78724463071222,45.61970505380032],[-122.78724279994569,45.61971683437723],[-122.78724151715144,45.61972868406437],[-122.78724004660934,45.61975252102818],[-122.78723942228021,45.61977646604887],[-122.7872391968031,45.61980046320792],[-122.78723929382113,45.61990858223862],[-122.78723966482534,45.61993258373921],[-122.78724058110693,45.61995654250548],[-122.78724140126877,45.61996849266905],[-122.78724258794327,45.61998041267199],[-122.78724402345111,45.61999094916835],[-122.78724579492885,45.62000145110654],[-122.7872502236232,45.62002233183142],[-122.78725582282235,45.62004298510623],[-122.78725912143607,45.62005319110838],[-122.78726752068398,45.62007645241754],[-122.78727120467497,45.62008812673486],[-122.78727386907809,45.62009950449543],[-122.78727576991324,45.62011100225762],[-122.7872770958266,45.62012259174823],[-122.78727799504018,45.62013424909201],[-122.78727893827126,45.62015770136845],[-122.78727921764731,45.62019306730983],[-122.78727870381094,45.62026400709007],[-122.78727872896378,45.62029947286264],[-122.78727923202034,45.62032307020507],[-122.78728056601854,45.62034657455057],[-122.78728174909976,45.62035826389062],[-122.78728321335369,45.62036874628306],[-122.7872850297472,45.62037916710106],[-122.78728959408714,45.62039976683979],[-122.78729232676224,45.62040990240858],[-122.78729537744094,45.62041988907094],[-122.78730639258296,45.62045065262913],[-122.78730864825262,45.62046006251487],[-122.78730998674243,45.62046960685289],[-122.7873104682394,45.62047923475168],[-122.78731011340486,45.62048890034615],[-122.78730870304987,45.62050043572584],[-122.78730514122975,45.62052368805336],[-122.78730425998245,45.62053520771866],[-122.78730406504806,45.62054684298663],[-122.78730439293312,45.62055856307104],[-122.78730613207155,45.62058216972871],[-122.78730875155887,45.62060590329053],[-122.78732161363712,45.62070116477445],[-122.7873245035174,45.62072499567026],[-122.78732675020393,45.62074883723674],[-122.78732746885616,45.62076076586975],[-122.78732782908057,45.62077273408222],[-122.78732773475748,45.62079668683496],[-122.78732698556253,45.62082065277139],[-122.78732151033087,45.62092853171526],[-122.78732015117986,45.6209644500598],[-122.78731999217806,45.62098834115888],[-122.78732033623281,45.62100025529041],[-122.787321106089,45.62101213926189],[-122.78732244817202,45.62102398113588],[-122.78732425198913,45.6210346405795],[-122.7873264896925,45.62104526986355],[-122.78733671970696,45.62108773231911],[-122.78733889452826,45.62109839489204],[-122.78734087980504,45.62111058795731],[-122.78734242670394,45.62112282499965],[-122.78734465362754,45.62114738263769],[-122.78734779683272,45.62119658521259],[-122.78734970036281,45.62122109318421],[-122.78735098046208,45.62123328245311],[-122.78735261539592,45.62124540449336],[-122.78735473811493,45.62125743417383],[-122.78735751929904,45.62126934133713],[-122.78736826943803,45.62130438050022],[-122.78737105241878,45.62131628639701],[-122.78737317783273,45.62132831669053],[-122.78737481635983,45.62134043871028],[-122.78737610274733,45.62135262795324],[-122.78737802604036,45.62137713774143],[-122.78738128512819,45.62142637278519],[-122.78738363961256,45.6214509843222],[-122.78738522244412,45.62146312327889],[-122.7873912294784,45.62149947919033],[-122.78740779441223,45.62158419416519],[-122.78741227700549,45.62160836898099],[-122.78741602837012,45.62163248724152],[-122.78741739740263,45.62164450427341],[-122.78741823642909,45.62165647481038],[-122.78741834063365,45.62166838063235],[-122.7874174423184,45.62168019535191],[-122.78741535283702,45.62169197048759],[-122.78740151159515,45.62174798747967],[-122.78739864417277,45.62175867442976],[-122.78739535364386,45.62176915216244],[-122.7873914064465,45.62177932518013],[-122.78738651601809,45.62178907411091],[-122.78738033830389,45.62179825319547],[-122.78737286791399,45.6218065426426],[-122.78736439859748,45.62181437973133],[-122.78734671615942,45.62182962102493],[-122.78733861066063,45.62183747130422],[-122.78733177897288,45.6218457852482],[-122.78732627589345,45.62185566359179],[-122.78732253980019,45.62186620224884],[-122.78732011345059,45.62187723095693],[-122.78731864560343,45.6218886190351],[-122.78731787035736,45.62190026721591],[-122.78731763859199,45.62192406241876],[-122.78731835454929,45.62194821886808],[-122.78732052308237,45.62199685843693],[-122.78732133875265,45.62202114616368],[-122.78732152111067,45.6220453088539],[-122.787321205802,45.62205731009055],[-122.78732048894639,45.62206923279072],[-122.78731923399995,45.62208105119545],[-122.78731726938443,45.62209273263461],[-122.78731051046024,45.62212088543962],[-122.78730849823398,45.62213274844061],[-122.7873072001684,45.62214474714546],[-122.78730642941389,45.62215684637096],[-122.78730603864675,45.62216901784485],[-122.78730608356251,45.62224248830594],[-122.78730571615155,45.62225465599166],[-122.78730498582121,45.6222667501673],[-122.78730375153603,45.62227874193249],[-122.78730183992108,45.62229059484781],[-122.78729557417198,45.62231870734427],[-122.78729400840845,45.62232993323961],[-122.78729318106008,45.62234128227318],[-122.78729291336212,45.62235272491638],[-122.78729352691145,45.62237580307387],[-122.78729504775922,45.62239903451911],[-122.78730074217982,45.62246892355968],[-122.78730185519247,45.62249208899838],[-122.7873019863465,45.62250360072007],[-122.7873016934957,45.62251504144529],[-122.7873008347063,45.62252638792835],[-122.78729923211185,45.62253761189726],[-122.78729285137835,45.62256571987203],[-122.78729088316959,45.62257757272668],[-122.7872895922905,45.62258956631021],[-122.78728880895959,45.62260166481144],[-122.78728839842952,45.62261384247142],[-122.7872885035324,45.6226506638089],[-122.78729039897765,45.62271242154624],[-122.78729144641326,45.62273713869528],[-122.7872928486834,45.62276179552009],[-122.78729504057272,45.62278629526833],[-122.78729667370992,45.62279843330768],[-122.78729886649751,45.62281045260271],[-122.78730183363291,45.62282230603388],[-122.78730585449212,45.62283393014672],[-122.7873105320198,45.62284410422775],[-122.78731598928513,45.62285409359781],[-122.78733408135498,45.62288344474421],[-122.78733978925027,45.62289314070905],[-122.78735487376052,45.62292145143404],[-122.78736584129183,45.62294002158314],[-122.78737021249401,45.62294903775959],[-122.78737276011614,45.6229580608455],[-122.78737291462639,45.62296722277562],[-122.78737147372867,45.62297663475204],[-122.78736950911313,45.62298641740076],[-122.78736789214562,45.62299637596068],[-122.78736662821602,45.62300670016651],[-122.78736279600304,45.62304994646152],[-122.7873615320734,45.62306093598469],[-122.78735986030868,45.62307189974705],[-122.78735308251986,45.62310379962792],[-122.78735115204032,45.62311437386114],[-122.78734849751864,45.62313592629216],[-122.78734688504271,45.62314666575141],[-122.78734428082669,45.62315828162967],[-122.78733787763534,45.62318160510466],[-122.78733505872198,45.62319297846791],[-122.78732507754086,45.62323891481967],[-122.7873222927635,45.62325033026458],[-122.78731913428696,45.62326164455764],[-122.78731319103305,45.62328037417147],[-122.78731055986759,45.6232897703889],[-122.78730815687418,45.62330164382293],[-122.7873066072803,45.6233136586123],[-122.78730569908357,45.62332577454843],[-122.78730527418043,45.62333795896197],[-122.78730547719971,45.62336242327608],[-122.78730679143496,45.62338683794727],[-122.7873078819897,45.6233989507263],[-122.78730933905709,45.62341094664713],[-122.78731126774001,45.62342277293631],[-122.78731381895541,45.6234343586011],[-122.7873165866648,45.62344395206495],[-122.78731987539707,45.62345325841446],[-122.78732364023641,45.62346221293933],[-122.7873278605216,45.62347073396667],[-122.78733481977012,45.6234835151911],[-122.7873389861564,45.62349365836975],[-122.78734214373465,45.62350441597984],[-122.7873445458297,45.62351563598346],[-122.78734639366427,45.62352720089658],[-122.78734783995186,45.62353901836572],[-122.7873499590776,45.62356314898904],[-122.78735271331227,45.6236123155182],[-122.78735360893262,45.6236370071403],[-122.78735389998678,45.62366161456561],[-122.78735362689892,45.6236738441404],[-122.78735290285678,45.62368599078309],[-122.7873515392142,45.62369802119639],[-122.78734928174791,45.62370989077446],[-122.78734579718288,45.62372153920511],[-122.78734123643619,45.62373207751143],[-122.78733562016905,45.62374242734009],[-122.78732924482547,45.62375264272089],[-122.78732234845904,45.62376276763155],[-122.7872931711786,45.6238030486242],[-122.78728626852396,45.62381322252936],[-122.78727985724778,45.62382350951791],[-122.78727414755583,45.62383395356738],[-122.7872694314006,45.62384424934765],[-122.78726532609974,45.62385467957172],[-122.78725433161898,45.62388624100834],[-122.78725040508289,45.62389668630259],[-122.78723629344809,45.62393024555109],[-122.78723241542099,45.62394153143573],[-122.78722970879704,45.62395233230916],[-122.78722775945286,45.62396326071521],[-122.78722631316529,45.62397427581755],[-122.78722286722785,45.6240075215232],[-122.78722136344807,45.62401857179884],[-122.7872193440353,45.62402955799089],[-122.78721689702448,45.62403962191134],[-122.78720819055275,45.62406956738851],[-122.78720561957438,45.624079543347],[-122.78720362711108,45.62408955322915],[-122.78720229221456,45.62410093331896],[-122.7872016939366,45.62411234921655],[-122.78720122321938,45.62414644988549],[-122.78720053780484,45.62415763457872],[-122.78719907355092,45.62416864650168],[-122.78719420288544,45.62418998429507],[-122.7871922319817,45.6242005313088],[-122.7871907210154,45.62421123412577],[-122.78718710978795,45.62424374087289],[-122.78718562038122,45.62425454859878],[-122.78718367013872,45.6242652602009],[-122.7871810335834,45.6242758229066],[-122.78717382550155,45.62429722662508],[-122.78717052239624,45.62430839997979],[-122.78716772863571,45.62431977122972],[-122.787165324744,45.62433129262803],[-122.78716132544437,45.6243546388601],[-122.7871579899997,45.62437822758512],[-122.78715500579634,45.62440194006437],[-122.78714115287634,45.62452089810382],[-122.78713803302736,45.6245446400502],[-122.78713438766393,45.62456828963478],[-122.78712974067896,45.62459175199307],[-122.7871239420538,45.62461370970078],[-122.78711704568737,45.62463527600499],[-122.78711327006823,45.62464585811649],[-122.78710511875535,45.62466677857563],[-122.78710148866328,45.6246772764968],[-122.78709915484019,45.62468686911971],[-122.78709423117412,45.62471625134688],[-122.787091697925,45.62472731153471],[-122.78708210481608,45.62476075531788],[-122.78707909635818,45.62477202030335],[-122.78707663227937,45.62478337072729],[-122.787074859005,45.62479543545835],[-122.78707378551823,45.62480759002514],[-122.78707321149477,45.62481980741335],[-122.78707297703448,45.62483206689096],[-122.78707295727153,45.6248812216272],[-122.78707261052185,45.62489347103956],[-122.78707186042858,45.6249056733313],[-122.78707052283713,45.62491780777058],[-122.78706836777876,45.62492984797134],[-122.78706558389968,45.62494055567502],[-122.78706216221677,45.62495118861625],[-122.78704612549231,45.62499342383244],[-122.78704241455188,45.62500400210693],[-122.78703918600674,45.62501462561254],[-122.7870364739929,45.6250257309746],[-122.78702992886777,45.62505907154879],[-122.78702737765234,45.62507005690868],[-122.78701960453017,45.62509805430054],[-122.78701743060721,45.62510886688766],[-122.78701583430095,45.62511978376],[-122.78701149184485,45.62516379047567],[-122.78701009047302,45.62517471361965],[-122.78700822736711,45.62518553687199],[-122.78700400528527,45.62520423066186],[-122.78700216373895,45.62521360079916],[-122.78700082794413,45.62522453335698],[-122.78700023954761,45.62523558402098],[-122.78700020541163,45.6252467220075],[-122.78700118727023,45.62526916948209],[-122.78700411757468,45.62531428742759],[-122.78700442390021,45.62532553282657],[-122.78700430622091,45.62533673550337],[-122.78700359385688,45.62534787786741],[-122.78700207839898,45.62535893793059],[-122.7869994157925,45.62537072548655],[-122.78698941934003,45.62540588207901],[-122.78698651418837,45.62541760177588],[-122.78698139199463,45.62544121706763],[-122.78697711331894,45.62546498186884],[-122.78697533106141,45.62547690195969],[-122.7869738506378,45.62548884277961],[-122.78697274930327,45.62550080307224],[-122.78697209712638,45.62551264399811],[-122.78697180158066,45.62552449874264],[-122.78697191925994,45.62554823712281],[-122.78697258670823,45.62557199559637],[-122.78697629046214,45.6256670614296],[-122.78697674950125,45.62569082110928],[-122.78697655456683,45.62571457261184],[-122.78697544514748,45.62573768645102],[-122.78697371050063,45.62576079399837],[-122.78696537503312,45.62585323225945],[-122.78696396827137,45.62587634478503],[-122.78696355953794,45.62589918716297],[-122.78696434107222,45.62592173049514],[-122.78696517740376,45.62593296823355],[-122.78696635689172,45.62594417016072],[-122.78696794780808,45.62595532245565],[-122.78697004986586,45.62596640627164],[-122.78697279781233,45.62597739899245],[-122.7869764171246,45.62598866938749],[-122.78698940406865,45.6260221155593],[-122.78699348331835,45.62603325590246],[-122.78699693644232,45.62604444461685],[-122.78699950921727,45.62605573384519],[-122.78700125284725,45.62606705134145],[-122.78700226075698,45.62607834433462],[-122.78700257067578,45.62608955628434],[-122.78700216014569,45.62610062499635],[-122.78700094921669,45.62611147571185],[-122.78699879505665,45.62612202173584],[-122.7869939675103,45.62613804651194],[-122.78699132197178,45.62614851525922],[-122.78698530415772,45.62618092036694],[-122.7869830538779,45.62619171829602],[-122.78698019813363,45.62620234471768],[-122.78697639017516,45.62621268403869],[-122.7869726019796,45.62622054061464],[-122.78696347689292,45.62623817801436],[-122.78694873104753,45.62626834659304],[-122.7869435333953,45.62627834540456],[-122.78693798360348,45.62628816391408],[-122.78692851176712,45.62630386762044],[-122.78692329345364,45.62631400903232],[-122.78691869946928,45.62632445764358],[-122.78691452948972,45.62633512613103],[-122.78689872363229,45.62637868648275],[-122.78689419163167,45.62638952332354],[-122.78687793571831,45.62642300066732],[-122.7868728808982,45.62643425338253],[-122.78686866600289,45.62644524349871],[-122.78686500716474,45.62645636553935],[-122.78685881148421,45.62647887472348],[-122.78684557211356,45.62653570173522],[-122.7868396495209,45.62655832019792],[-122.78683622065147,45.62656953644917],[-122.78683232286146,45.62658065783693],[-122.78682808191498,45.62659118304136],[-122.78681414634998,45.62662252180395],[-122.78680978053771,45.62663302878215],[-122.78680546053951,45.6266447205808],[-122.78679795242036,45.62666831085505],[-122.78678749603044,45.62670362682955],[-122.786783702445,45.62671519673903],[-122.78677949832947,45.62672655996211],[-122.7867746797663,45.62673762792014],[-122.78676899702381,45.62674828690568],[-122.7867621320984,45.62675839242871],[-122.78675402929454,45.62676771770272],[-122.78673615371872,45.62678555219075],[-122.7867277598607,45.6267946833409],[-122.78672021760556,45.62680457023572],[-122.78669988693406,45.62683500927141],[-122.78669365621924,45.62684533842422],[-122.786688176496,45.62685586546363],[-122.78668386188771,45.62686664253155],[-122.78668100614341,45.62687791651707],[-122.78667943588829,45.62688943738968],[-122.78667880886422,45.62690113918634],[-122.78667886096649,45.6269129703932],[-122.78668024706698,45.62693687529096],[-122.78668487249239,45.62698507140878],[-122.78668682003992,45.6270091685098],[-122.78668741562295,45.6270211843892],[-122.78668760696412,45.62703316257313],[-122.78668724045149,45.62704508861264],[-122.78668622715185,45.62705650893644],[-122.78668459221802,45.6270678450771],[-122.78668236978602,45.62707907064964],[-122.7866795535676,45.62709015549984],[-122.78667609685039,45.62710105816561],[-122.78666810723423,45.62712250540858],[-122.78666481760368,45.62713356512165],[-122.78666222057419,45.62714482083532],[-122.78666014995744,45.62715622543342],[-122.78665847459945,45.62716774310775],[-122.78665709029559,45.62717934496033],[-122.78665490110123,45.6272027189041],[-122.78665170759042,45.62724979154859],[-122.78665003762231,45.62728513982382],[-122.7866496136175,45.62730861486569],[-122.78664979956875,45.62732028893351],[-122.78665039515178,45.62733189515198],[-122.78665155487683,45.62734340587985],[-122.78665348176308,45.62735478405268],[-122.78665643632208,45.62736598318291],[-122.78666049850379,45.62737670487008],[-122.786665448221,45.62738725316888],[-122.78668227546291,45.62741824408567],[-122.78668752162417,45.6274284386939],[-122.78669205721805,45.62743858869728],[-122.78669550944367,45.62744869849337],[-122.78669778577462,45.6274594333572],[-122.78669939106403,45.6274700846669],[-122.78670132962839,45.6274806046787],[-122.78670707345634,45.62750032042931],[-122.78670949351769,45.6275103403802],[-122.78671107006102,45.6275204262914],[-122.78671161713503,45.62753043555914],[-122.78671086794007,45.62754022181062],[-122.7867084649467,45.62754962233978],[-122.78670544481072,45.62755632219468],[-122.78669783787686,45.62756963835022],[-122.7866935295568,45.62757773659659],[-122.78666744158264,45.62763295993406],[-122.78666318805973,45.6276441985858],[-122.7866557392294,45.62766714955158],[-122.78665150996106,45.62767862880024],[-122.78664639046224,45.62768990953277],[-122.78664044900498,45.62770104514703],[-122.786633861659,45.62771202810453],[-122.78662675418846,45.62772284144391],[-122.78661921372995,45.62773345626757],[-122.78659926035087,45.62775914618048],[-122.7865926909712,45.62776878790438],[-122.78658678993808,45.62777873430709],[-122.78658143867395,45.6277889156574],[-122.78657655273712,45.62779927541659],[-122.7865720845169,45.62780976835368],[-122.78656801335202,45.62782035803261],[-122.78656435181891,45.62783101681231],[-122.78656114303672,45.62784172082075],[-122.78655846336224,45.62785244995545],[-122.78655641969496,45.62786318725477],[-122.78655320462458,45.62789184161122],[-122.78655182481229,45.62790124961986],[-122.7865497209579,45.62791053072936],[-122.7865459713899,45.62792133837654],[-122.78654119414921,45.6279319864575],[-122.78652510532248,45.62796361030372],[-122.78651280648792,45.62799098244322],[-122.78650808404448,45.62799982191009],[-122.78650281991692,45.62800808908131],[-122.78649162062027,45.62802457567655],[-122.78648711916237,45.62803207580679],[-122.78648301026826,45.62803978073062],[-122.78647928315816,45.62804766280687],[-122.78647481493792,45.62805855523516],[-122.78647087133382,45.62806965810955],[-122.786467313107,45.62808091300708],[-122.78646094944152,45.62810370548678],[-122.78644653327784,45.62816093352928],[-122.78644050917555,45.62818332769611],[-122.78643388410032,45.62820493785757],[-122.78642459911353,45.62823095296299],[-122.78642268210872,45.62823892296066],[-122.78640665975732,45.62832634283603],[-122.7864030206821,45.62834972321176],[-122.78640156271639,45.62836143538298],[-122.78640047305996,45.62837314755176],[-122.78639987657861,45.62838484841048],[-122.78639985142578,45.62839650215174],[-122.78640101923565,45.62843112664601],[-122.78640097611654,45.6284424612523],[-122.78640025117608,45.62845362435779],[-122.78639850215623,45.62846455879655],[-122.78639559430965,45.62847508239083],[-122.78638601737039,45.62850412843063],[-122.78638258490771,45.62851339813277],[-122.78637852182767,45.62852254847559],[-122.78637294239145,45.62853270833207],[-122.7863605204877,45.62855299034757],[-122.78635452962307,45.62856374258944],[-122.78634366809298,45.62858585893181],[-122.78632322603038,45.62863091075991],[-122.78631772205262,45.62864204932823],[-122.78631178598522,45.62865302707579],[-122.78630523367353,45.62866377301653],[-122.78629818189857,45.62867395294967],[-122.78628349803691,45.62869412372324],[-122.78627690440274,45.62870398264238],[-122.7862522106139,45.62874413758635],[-122.7862456933365,45.62875403858589],[-122.7862387044436,45.62876374672744],[-122.78623079477754,45.62877362385204],[-122.78621424780998,45.62879306713917],[-122.78620631658436,45.62880291536159],[-122.78619928996218,45.6288125751237],[-122.78619271429432,45.62882240198402],[-122.78617392962342,45.62885210430764],[-122.78616743660052,45.62886182499612],[-122.78616054921724,45.62887131953281],[-122.78614746974671,45.6288876532229],[-122.78614118782794,45.62889591272486],[-122.78613450436221,45.62890605743697],[-122.78612853236221,45.62891653760297],[-122.7861230598255,45.62892726087819],[-122.7861028414434,45.62897125455379],[-122.78609747760284,45.62898226490298],[-122.7860851320559,45.62900505701617],[-122.78605892999569,45.6290502002235],[-122.7860527244337,45.62906150769231],[-122.78604691233382,45.62907286352966],[-122.78604165898604,45.62908429097863],[-122.78602924606544,45.62911514149851],[-122.7860241669908,45.62912574412285],[-122.78601851928262,45.62913625251646],[-122.78601247272243,45.62914669746069],[-122.7859869785347,45.62918828122255],[-122.78598088077052,45.62919872804169],[-122.78597514502745,45.62920923516521],[-122.78596151488965,45.62923691388166],[-122.78595677807314,45.62924600505646],[-122.78595158670912,45.62925492661835],[-122.78594481161525,45.62926503922781],[-122.7859303029251,45.62928495788441],[-122.78592406322711,45.62929397052765],[-122.78590599900508,45.62932110456175],[-122.78588854114585,45.6293453595905],[-122.78588207237749,45.62935550736223],[-122.785876190209,45.62936595603475],[-122.78587069251947,45.62937660949499],[-122.78585479144064,45.62940899828827],[-122.78584915002065,45.62941969320073],[-122.78584305405312,45.62943021159023],[-122.78582977335995,45.62945058059913],[-122.78582343305068,45.62946082446459],[-122.78581768922275,45.62947162050551],[-122.78581260565656,45.62948260814164],[-122.7857989719255,45.62951578022352],[-122.7857942764315,45.62952659824041],[-122.78578916142428,45.62953712414808],[-122.78578071456565,45.62955279993218],[-122.7857765032636,45.62956172395798],[-122.78576862503856,45.62957993007189],[-122.7857642655145,45.62958903438297],[-122.78575913254096,45.62959826747087],[-122.78574220917933,45.62962592463687],[-122.78573711662997,45.62963536753283],[-122.78573249928941,45.62964574453999],[-122.78572875870458,45.62965633450026],[-122.78572585714622,45.62966708087679],[-122.78572358710348,45.62967892469178],[-122.78571915751083,45.62971433362549],[-122.78571734381224,45.62972576785375],[-122.78571475756254,45.62973681072034],[-122.78571095409565,45.62974729261559],[-122.7857053917274,45.62975699932876],[-122.7856985744127,45.6297649276492],[-122.78569052550776,45.62977236221543],[-122.78567329312568,45.62978700394203],[-122.7856461711906,45.62981292471375],[-122.78563899005822,45.62982046920578],[-122.78563155470262,45.62982942397003],[-122.78562469876037,45.62983875878407],[-122.78559929530246,45.62987746432395],[-122.78559260105696,45.62988695366313],[-122.78558103794265,45.62990229138686],[-122.78557448113935,45.62991182406646],[-122.78556248773201,45.62993144410635],[-122.78554538021575,45.62996096241294],[-122.78552957705325,45.62998579069521],[-122.78552471716758,45.62999451112105],[-122.78551555704662,45.63001221266423],[-122.78551043036128,45.63002096763594],[-122.7855036660472,45.63003065608447],[-122.78548060539553,45.63005928169297],[-122.78547336946593,45.63006907755387],[-122.78546777924993,45.63007774268682],[-122.78545262197612,45.6301043555795],[-122.78544731652606,45.63011315074044],[-122.7854411522866,45.63012238876743],[-122.78542188432203,45.63014949224783],[-122.78541614947727,45.63015851040569],[-122.7854112779135,45.63016761336645],[-122.78540725974923,45.63017735204401],[-122.78540010287135,45.63019688969938],[-122.7853954864291,45.63020680049317],[-122.78538554567218,45.63022672949415],[-122.78538174579855,45.63023579852213],[-122.78537467066735,45.63025424438152],[-122.78537072796158,45.63026344532266],[-122.78536555007226,45.63027374306298],[-122.78534500739836,45.63031238045917],[-122.78533939831772,45.63032174785808],[-122.78533238966187,45.63033206443303],[-122.78532479530448,45.63034222521785],[-122.78530086149034,45.63037228479751],[-122.78529322042054,45.63038230674773],[-122.78528612193318,45.63039239277028],[-122.78527029182123,45.63041814051325],[-122.78526494774361,45.6304263759189],[-122.7852591329488,45.63043423755791],[-122.78525358405525,45.63044068893804],[-122.78524211167078,45.63045321478979],[-122.78522686726039,45.63047156446662],[-122.78520663899681,45.63049329561214],[-122.78518365021039,45.63051959673204],[-122.78516540093538,45.63054215391049],[-122.78514110060864,45.63057127488837],[-122.78513333018144,45.63058121576839],[-122.78512608616698,45.6305913212286],[-122.78511963266999,45.63060163963844],[-122.78511446466216,45.63061148817129],[-122.78510499462242,45.63063148298674],[-122.78509979697019,45.63064152938943],[-122.7850773157319,45.63068137702437],[-122.78507215041901,45.63069132542293],[-122.78506177577579,45.63071343087505],[-122.78505174428899,45.63073377366248],[-122.78504767671741,45.63074405875288],[-122.7850449323642,45.6307547804221],[-122.78504328036242,45.63076573451348],[-122.78504041832991,45.63079917846316],[-122.78503876812474,45.6308102763975],[-122.78503602826311,45.63082122545266],[-122.78503212957477,45.63083134845846],[-122.78502720231543,45.63084132698268],[-122.78502160042132,45.63085121442011],[-122.78500378143937,45.63088081202018],[-122.7849984697011,45.63089081440613],[-122.78499398890445,45.63090097132061],[-122.78499052320407,45.63091149634204],[-122.78498791090324,45.63092216207193],[-122.7849819371066,45.63095424844981],[-122.78497954579132,45.63096471252858],[-122.78497641246761,45.630974910889],[-122.7849721562498,45.63098473046037],[-122.78496730355063,45.63099294630947],[-122.78493780646994,45.63103443447605],[-122.7849316197726,45.63104274077445],[-122.7849251483093,45.63105075811321],[-122.78491452034115,45.6310630168563],[-122.78490722512272,45.63107270449652],[-122.78490051380925,45.63108294052748],[-122.78488151533931,45.63111532330935],[-122.7848748022292,45.63112622644857],[-122.78486748545119,45.63113697694048],[-122.78486036540426,45.63114626568042],[-122.78485278182664,45.6311554042864],[-122.78482936184884,45.63118254370107],[-122.78482201542646,45.6311917011462],[-122.78481526728206,45.63120102002916],[-122.7848097040155,45.63120980936447],[-122.78479477491379,45.63123652662374],[-122.78478957097336,45.63124527072537],[-122.78476956908524,45.63127467275715],[-122.784756573158,45.63129528042761],[-122.78474606017424,45.63131027164567],[-122.78472882958877,45.63133686824897],[-122.78472261594196,45.63134572289234],[-122.78471501080476,45.63135535017968],[-122.78469064040941,45.63138385890079],[-122.78466867210915,45.63141207927906],[-122.78465510754835,45.63142805605852],[-122.7846486037457,45.63143616254176],[-122.78464185200804,45.63144575337993],[-122.78463565453087,45.63145561432779],[-122.78462379856576,45.63147567165865],[-122.78461759480042,45.63148564504286],[-122.78461083048632,45.63149543123196],[-122.78460307443216,45.63150522181656],[-122.78457774194115,45.63153389001532],[-122.78456969123957,45.63154360709792],[-122.78456206454281,45.63155386000329],[-122.78454042143267,45.63158498304361],[-122.78453247224071,45.63159500414881],[-122.78452497130809,45.6316033084796],[-122.78450119559747,45.63162778426261],[-122.78449285923162,45.63163732104587],[-122.78448495495545,45.63164708899182],[-122.78445466556069,45.63168659042203],[-122.78444673613168,45.6316961108631],[-122.78443266312445,45.63171181556707],[-122.78442596438737,45.63171968079472],[-122.78441079094391,45.63173987057339],[-122.78440318401007,45.63174935205933],[-122.78438728472787,45.63176832130798],[-122.78437967330247,45.63177801133894],[-122.78436089851304,45.63180502105078],[-122.78435421953887,45.63181391016911],[-122.7843465146887,45.63182291989307],[-122.7843381280172,45.63183167269748],[-122.78432919786496,45.63184019119629],[-122.78431983202982,45.63184848104308],[-122.78431010866517,45.63185653344366],[-122.78430008526324,45.63186432578429],[-122.78428980045155,45.63187181786282],[-122.78427927848463,45.63187895502937],[-122.78426330194732,45.63188925749815],[-122.7842525455201,45.6318969556101],[-122.78424252930465,45.63190517697898],[-122.7842334446422,45.63191392474526],[-122.78422507773365,45.63192371337222],[-122.78421792175409,45.63193396872074],[-122.78421195694061,45.63194456829923],[-122.78420738092255,45.63195473193253],[-122.78419925386417,45.63197504348962],[-122.78419459789605,45.63198485660415],[-122.78418877860962,45.63199419734086],[-122.7841808581638,45.6320035003864],[-122.78413301479006,45.63204928692635],[-122.78411575456019,45.63206516741585],[-122.78410740561795,45.63207317141708],[-122.78409963519073,45.63208136198027],[-122.78409277206198,45.63208986096821],[-122.78408700487785,45.63209884803409],[-122.78408215756858,45.63210814792151],[-122.78406983627612,45.63213672472893],[-122.78406546327732,45.63214610501426],[-122.78406044708478,45.6321552220998],[-122.78405543807877,45.63216283914289],[-122.78403648093132,45.63218901007892],[-122.78402897191384,45.63219817426932],[-122.78402124999566,45.63220646971656],[-122.78399639720504,45.63223092953221],[-122.7839885486244,45.63223935500307],[-122.78398093630065,45.63224861340877],[-122.78397388632233,45.63225814631748],[-122.78395386377295,45.63228730660581],[-122.78394686140533,45.63229687782552],[-122.78393932903167,45.63230620029368],[-122.78393159453705,45.6323147180922],[-122.78391533862369,45.63233135731896],[-122.78390744961885,45.63233976141743],[-122.7839001579937,45.63234841614881],[-122.78389299303099,45.63235856086421],[-122.78388673536672,45.63236909252161],[-122.78388114245577,45.63237990559067],[-122.7838711999022,45.63240204680982],[-122.78385727871023,45.63243558589076],[-122.78385240804477,45.63244661503222],[-122.78384719871443,45.63245745635324],[-122.78384148183596,45.63246802254058],[-122.78383505169515,45.63247820492357],[-122.78382765047553,45.63248786970561],[-122.78381880745988,45.63249727882727],[-122.78379999494119,45.6325155807233],[-122.78379192717163,45.63252441947662],[-122.78377633690987,45.6325426723678],[-122.78375089662104,45.63257092608288],[-122.78374293036107,45.63258062916628],[-122.78373546715771,45.63259092334008],[-122.78371510504515,45.63262258287507],[-122.78370802362576,45.63263297880188],[-122.78368578672924,45.63266230849627],[-122.78367911045007,45.63267218367755],[-122.78367366486279,45.63268171023273],[-122.7836636270878,45.63270103532792],[-122.78365193731102,45.63272147036039],[-122.78363676386755,45.63274986155046],[-122.78363131917861,45.63275933218692],[-122.78362480369785,45.63276951891408],[-122.78361776360097,45.63277959759736],[-122.78361034710998,45.63278959713185],[-122.78357147700765,45.63283923296297],[-122.78356405512679,45.63284924630617],[-122.78355702401302,45.63285935135745],[-122.78355054536321,45.63286958706206],[-122.78354481770498,45.63287999864684],[-122.78354012131264,45.63289028711226],[-122.7835360528427,45.63290072507546],[-122.78352501793778,45.63293234737461],[-122.78352092341669,45.63294280857145],[-122.78351588027469,45.63295402982672],[-122.78349955698768,45.63298744106317],[-122.7834806573324,45.63303223746595],[-122.7834754489004,45.63304308369892],[-122.78346951103639,45.63305357502619],[-122.78346250327883,45.63306356634588],[-122.78345428638896,45.63307286795764],[-122.78342687250142,45.63309938709048],[-122.78341866639128,45.63310856620758],[-122.78341213474087,45.63311756944196],[-122.78340639091294,45.63312690056766],[-122.78339560484133,45.63314590012922],[-122.78338974243577,45.63315525637609],[-122.78338299339303,45.63316429917622],[-122.78337451599172,45.63317339536729],[-122.783364929171,45.63318208828689],[-122.7833545958503,45.63319050858964],[-122.78332216217697,45.6332152066713],[-122.78331182346635,45.63322358488328],[-122.78330223035742,45.63323221435238],[-122.78329375205779,45.6332412219639],[-122.78328703086282,45.6332500857286],[-122.78326213225809,45.63328822609451],[-122.78325603808722,45.63329834739841],[-122.78325081348551,45.6333086621692],[-122.78324622938263,45.63331921437681],[-122.78323390719186,45.633351267347],[-122.78322953868464,45.63336175170703],[-122.78322465364612,45.63337195340011],[-122.78321898437837,45.63338173737544],[-122.78321376965816,45.63338920475351],[-122.7832082423242,45.63339649310954],[-122.78319439928566,45.63341408867824],[-122.78318689296316,45.63342239211134],[-122.78317499298058,45.63343377972861],[-122.78316625866107,45.63344252411563],[-122.78315783965024,45.63345152352749],[-122.78314336689269,45.63346775286728],[-122.78313760330181,45.63347493254432],[-122.78313281887463,45.63348220330121],[-122.78312866326812,45.63349147532075],[-122.7831261632567,45.6335007115346],[-122.78312352131144,45.63351408155449],[-122.78312127911649,45.63352043144911],[-122.78311805775786,45.63352678322747],[-122.78311384645583,45.63353302822086],[-122.7831065503391,45.63354126756585],[-122.7830980172422,45.63354923932098],[-122.78307964938958,45.6335648844603],[-122.78307093573132,45.63357279088527],[-122.7830547930057,45.63358931604483],[-122.78304648538592,45.63359707485301],[-122.78303853799062,45.6336050629319],[-122.78303238632755,45.63361296997937],[-122.78302694163861,45.63362149009185],[-122.78301656160549,45.63363942541437],[-122.78301082855735,45.6336484090911],[-122.78300416036299,45.63365711638424],[-122.78299575213195,45.63366578033435],[-122.78298605571678,45.63367389026274],[-122.78297528132325,45.63368142041596],[-122.78296489679857,45.63368766978912],[-122.78294327973956,45.63369961451328],[-122.78293271106024,45.63370578348238],[-122.7829227586252,45.6337124109934],[-122.78291217018297,45.63372105923143],[-122.7829026803803,45.63373048573396],[-122.78289409158785,45.63374050833998],[-122.78288628073648,45.63375099576789],[-122.7828791939272,45.63376185568083],[-122.78287284193982,45.63377303217412],[-122.78286754996451,45.63378380791208],[-122.78286278530021,45.63379476769281],[-122.78285839703007,45.63380585309937],[-122.78283850743136,45.63386172042438],[-122.78282993660522,45.63388355892342],[-122.78282512253361,45.63389416441459],[-122.78281975689644,45.63390445143758],[-122.78281363936935,45.63391431006844],[-122.78280651483084,45.63392359897622],[-122.78280038742227,45.63393014417537],[-122.78277008904436,45.63395933185996],[-122.78276127028323,45.6339675799362],[-122.7827518712104,45.63397556419343],[-122.78274170767128,45.63398313701948],[-122.7827090646905,45.63400485172814],[-122.78269845738362,45.63401231336995],[-122.78268849506709,45.63402018078735],[-122.782679425676,45.63402858526072],[-122.78267109919165,45.63403744387581],[-122.78266331169644,45.63404662912059],[-122.78265588891726,45.63405603232733],[-122.78263438055438,45.63408463829207],[-122.78262703233537,45.6340940232765],[-122.78261937779084,45.63410318589909],[-122.78259800058203,45.63412691373681],[-122.78257751629859,45.63415247634853],[-122.78257014382507,45.63416064964818],[-122.78256097921252,45.6341691973154],[-122.78255085699591,45.63417715202152],[-122.78253992090565,45.63418446979746],[-122.78252826346818,45.63419106458883],[-122.78249357053193,45.63420748718006],[-122.78248210892721,45.63421412216938],[-122.7824714881456,45.63422150024138],[-122.78246182227316,45.63422953345698],[-122.78245328468468,45.63423817344945],[-122.78244596431344,45.63424735928947],[-122.78243305372618,45.63426642882224],[-122.7824263487009,45.63427579807288],[-122.78241872110583,45.63428470438706],[-122.78240969663048,45.63429290153655],[-122.782399335462,45.63430030283915],[-122.78238901741264,45.63430629272398],[-122.78235594503714,45.63432310409623],[-122.78234525867852,45.63432927425298],[-122.78233496488366,45.63433580558581],[-122.78231536633912,45.63434942854425],[-122.7822989855599,45.63436161558678],[-122.78229238563755,45.63436713436521],[-122.78228374833608,45.63437608965923],[-122.78227654115254,45.63438582195236],[-122.78227073983246,45.63439615473883],[-122.78226670280355,45.63440578275841],[-122.78225702076142,45.63443538287829],[-122.7822531337512,45.63444500837861],[-122.78224814091483,45.63445425762612],[-122.78224122119221,45.63446350687207],[-122.78223284530048,45.63447218514451],[-122.78222331597196,45.63448031128768],[-122.78221285598877,45.63448786457344],[-122.78218673477697,45.63450434298139],[-122.78215576176429,45.63452438728672],[-122.78214517422033,45.63453081621144],[-122.78212220250191,45.63454398372733],[-122.7821113715145,45.63455088437627],[-122.7821036819357,45.63455659031909],[-122.78209640468356,45.63456258771413],[-122.78208140461496,45.63457589341133],[-122.78207375995186,45.63458320611012],[-122.78206667943083,45.63459080397929],[-122.78206027534115,45.63459886603594],[-122.78204296300899,45.63462418094903],[-122.78203675744702,45.63463257402548],[-122.78202870944038,45.63464208454414],[-122.78201994547648,45.63465137772823],[-122.78199208243132,45.63467875790806],[-122.78198312443129,45.63468797633864],[-122.78197478626883,45.63469738006584],[-122.78196739133742,45.63470706896227],[-122.78196146335485,45.63471652796166],[-122.7819507994541,45.63473597107158],[-122.78194451124712,45.63474663230491],[-122.7819377577128,45.63475725333599],[-122.78192340622783,45.63477836222876],[-122.78190147386019,45.63480955948192],[-122.78188744397208,45.63483005153333],[-122.78187989632704,45.63483994329211],[-122.78187126800874,45.63484922953395],[-122.78185272678128,45.63486742199582],[-122.78184531747682,45.63487552107221],[-122.78182391421686,45.6349006643816],[-122.78181626596053,45.63490888279734],[-122.78180699624511,45.634917734992],[-122.78179709501403,45.63492623354981],[-122.78178675091355,45.63493439857097],[-122.78177108160006,45.63494618536961],[-122.78176359144722,45.63495223485745],[-122.78175472238041,45.63496038542794],[-122.78174646776128,45.63496890533556],[-122.78172441591767,45.63499365602421],[-122.78171825437315,45.63500101703423],[-122.78171132836229,45.63501038490573],[-122.78169217987369,45.63503937919314],[-122.78168520445551,45.63504880798641],[-122.78167731814565,45.63505783477785],[-122.78166835385741,45.635066215855],[-122.78165842118533,45.63507416415257],[-122.7816478057936,45.63508181094893],[-122.78160304813288,45.63511144086168],[-122.78159228990904,45.63511907194984],[-122.78158212187836,45.63512698632117],[-122.78157275424655,45.63513518209123],[-122.78154622340296,45.63516014689684],[-122.78152566455937,45.6351774014685],[-122.78151589987223,45.63518610726785],[-122.78149797848232,45.63520449936379],[-122.78148946963995,45.63521251547908],[-122.78148037958756,45.63522042292787],[-122.78144199098226,45.63525202067758],[-122.78143274641965,45.63526018313878],[-122.78140588409772,45.63528579422715],[-122.78139641315967,45.63529396736156],[-122.78138623434917,45.63530168950266],[-122.78137552014279,45.63530909255639],[-122.78135358777513,45.63532360532777],[-122.78134290411145,45.63533103664412],[-122.78133277919989,45.63533880902985],[-122.78132339090685,45.63534705941556],[-122.78129705679429,45.63537314658063],[-122.78128743943087,45.63538219404782],[-122.78123779224006,45.6354259998735],[-122.78119715604987,45.6354656519018],[-122.78118918978991,45.6354749242213],[-122.78118183797764,45.63548461612386],[-122.78116747571286,45.63550438873053],[-122.78115972594692,45.63551405110636],[-122.78115276130853,45.63552175060479],[-122.78112624843124,45.63554928613313],[-122.78111801088008,45.63555711125067],[-122.78109163275006,45.63558005834826],[-122.78108305024584,45.63558776725944],[-122.78107011091248,45.63559993958592],[-122.78106136940649,45.63560757626064],[-122.78102444056346,45.63563724735125],[-122.7810099094154,45.63564935936757],[-122.78100253873849,45.63565516883816],[-122.78098253864702,45.63566933919525],[-122.78097301291176,45.63567656821158],[-122.78096494873546,45.63568373064643],[-122.78094973127452,45.63569870561582],[-122.78094170482746,45.63570605083024],[-122.78093244140024,45.63571345445867],[-122.78091283836413,45.6357279953906],[-122.78090339078229,45.63573568543787],[-122.78089428905183,45.63574434781037],[-122.78088583141341,45.63575353780036],[-122.78087776993206,45.63576307765029],[-122.78086192724373,45.63578258634946],[-122.7808536923875,45.63579226123964],[-122.7808449185421,45.63580167734393],[-122.7808353425012,45.63581074044487],[-122.7808250702659,45.63581937642486],[-122.78081419256613,45.6358275633],[-122.78080275431763,45.63583524202749],[-122.78079075013048,45.63584230896834],[-122.78077812969907,45.63584861149042],[-122.78076479151375,45.63585393791877],[-122.78075149195594,45.63585792771471],[-122.78073766778205,45.63586117005188],[-122.78069509751903,45.63586950766884],[-122.78068116824225,45.6358727820392],[-122.78066816602683,45.63587653691836],[-122.78065549079815,45.63588075974386],[-122.780643073386,45.63588525391519],[-122.78060646074996,45.63589886456276],[-122.78059457424213,45.6359035063399],[-122.78058348903151,45.63590867573402],[-122.78057583358866,45.63591309578545],[-122.78056844494546,45.63591787197824],[-122.78052522160725,45.63594689154881],[-122.78049883898568,45.63596390342574],[-122.7804882451535,45.63597181704967],[-122.78047826756564,45.63598011131023],[-122.78046227935022,45.63599406111681],[-122.78045623548498,45.63599980962448],[-122.78044832492058,45.6360088607592],[-122.78044122463658,45.63601859151257],[-122.78042137007218,45.63604983581195],[-122.78040686856856,45.63607085690999],[-122.78039135196865,45.63609173541832],[-122.78034477342284,45.63615315047274],[-122.78033640561596,45.63616293647501],[-122.7803270442724,45.6361716973952],[-122.7803165061358,45.63617996901409],[-122.78030511100643,45.63618788826049],[-122.78029311670076,45.6361955656824],[-122.78024306167481,45.63622555805522],[-122.78023089040103,45.63623326562135],[-122.78021923116694,45.63624123322487],[-122.78020832561941,45.63624957643828],[-122.78019847020244,45.63625844098343],[-122.78019005029326,45.63626774520543],[-122.78018262122586,45.63627754249366],[-122.78017587487808,45.6362876858697],[-122.78015088284855,45.63632946156034],[-122.78014404307599,45.63633971610265],[-122.78013649543095,45.63634969050558],[-122.78012799377511,45.63635936027297],[-122.78011875909401,45.63636872791746],[-122.7801090312378,45.63637788388706],[-122.7800690481228,45.63641370628186],[-122.78005970294892,45.63642272720045],[-122.78005102971484,45.63643186934281],[-122.78004329072866,45.6364411829577],[-122.7800373447798,45.63644956508415],[-122.78002622363658,45.63646615220642],[-122.78001999022682,45.63647398347704],[-122.78001166464078,45.63648217339706],[-122.7800020742268,45.63648955619536],[-122.77999140044459,45.63649602320932],[-122.77998051376166,45.63650123902885],[-122.7799579876076,45.63651060225283],[-122.77992386060995,45.63652576543392],[-122.77990848774049,45.63653288442072],[-122.77989703422062,45.6365375085583],[-122.77987361244624,45.63654630710648],[-122.77986267635595,45.63655108198905],[-122.77985300239867,45.63655654025338],[-122.77984684444739,45.6365612133815],[-122.77983537835111,45.63657160606527],[-122.7798266152855,45.6365790510345],[-122.77980727276082,45.63659464068257],[-122.77979759071867,45.63660297442171],[-122.77978851144611,45.63661184896067],[-122.77978015531731,45.63662168010656],[-122.7797726427066,45.63663205393586],[-122.77976569962779,45.63664278138788],[-122.77974609838827,45.63667554410274],[-122.77973930353146,45.63668618109897],[-122.77973201999114,45.63669641422038],[-122.7797239836626,45.63670604561342],[-122.77971487833888,45.63671483220109],[-122.77970605418786,45.63672156864683],[-122.77968709344717,45.63673398129188],[-122.77967785517278,45.63674034149947],[-122.77966930680454,45.63674710495075],[-122.7796449435957,45.63676832175638],[-122.77963620119137,45.63677492943393],[-122.77962490308003,45.6367821206213],[-122.7796131055054,45.63678919749243],[-122.77960280182909,45.63679582149826],[-122.77959263649332,45.6368028267636],[-122.77957270197888,45.63681752946415],[-122.77953664719664,45.63684565100624],[-122.77952973645715,45.63685145281551],[-122.77952348058952,45.63685742609692],[-122.77951594372428,45.63686638350546],[-122.77950268459067,45.63688467706552],[-122.77949511897934,45.63689320421788],[-122.7794867763253,45.63690027856256],[-122.77947745630425,45.63690688119968],[-122.77945265381923,45.63692331995389],[-122.77944469744077,45.63692802571284],[-122.77943253335351,45.63693412963182],[-122.77940040780231,45.63694908039908],[-122.77938735078968,45.63695462153445],[-122.7793465349364,45.63697039762489],[-122.77933326592135,45.63697575723608],[-122.77932063560846,45.63698136746023],[-122.77931131828232,45.63698598842026],[-122.77929087532141,45.63699672082936],[-122.7792804063551,45.63700312999924],[-122.77927142410057,45.6370103349756],[-122.77925764574074,45.63702317278268],[-122.77925227022207,45.63702855876919],[-122.77924545111075,45.63703659849151],[-122.77922619931589,45.63706304414492],[-122.77921899033575,45.63707177980031],[-122.77921073212333,45.63708005128635],[-122.77920133484716,45.63708752696502],[-122.7791909395427,45.6370945535494],[-122.77916872600235,45.63710822043245],[-122.77914544526345,45.63712321449231],[-122.77912291641442,45.63713856468209],[-122.77909423141077,45.6371585132018],[-122.7790868032417,45.63716319632933],[-122.77907557430065,45.63716910111442],[-122.77905207347449,45.63717962998354],[-122.77904086070309,45.63718502914512],[-122.77903076184269,45.63719104258944],[-122.77902454819588,45.63719584379737],[-122.77901889869105,45.63720100553502],[-122.77901300664111,45.6372070692258],[-122.77900777664951,45.63721349156175],[-122.77900269667657,45.63722169079522],[-122.77899850603579,45.63723027442537],[-122.77899077064288,45.63724754720268],[-122.77898623684563,45.63725571376995],[-122.77898056578124,45.63726319068146],[-122.77897241446836,45.63727059096365],[-122.77895337287927,45.63728436332464],[-122.77894317430587,45.63729101679266],[-122.77893220497792,45.63729696867181],[-122.7789212491247,45.63730157892816],[-122.77890984052061,45.63730585315044],[-122.77889844269627,45.63731047722428],[-122.7788869415657,45.63731622810933],[-122.77887578269326,45.63732274213534],[-122.77884286842124,45.63734356992924],[-122.77883160534418,45.63734989740645],[-122.77880207951745,45.63736422498803],[-122.77879346197894,45.63736942188378],[-122.77878598709744,45.63737533858106],[-122.77877250248672,45.63738838797396],[-122.778765271947,45.63739490450401],[-122.77875737306071,45.63740083250439],[-122.77874863874118,45.63740638804132],[-122.77873927021109,45.63741156609019],[-122.77871741240361,45.63742231097979],[-122.7787067907237,45.63742817365495],[-122.7786958950576,45.63743564991533],[-122.77868571624711,45.63744402309963],[-122.77867600276396,45.63745302312508],[-122.77864746957557,45.63748168576895],[-122.77863744886858,45.63749120082885],[-122.77862726376989,45.63750009469818],[-122.77861658190285,45.63750871974015],[-122.77860547692931,45.63751707218633],[-122.77859399196839,45.63752513193766],[-122.77858214768138,45.63753286005229],[-122.77854755355979,45.63755353702473],[-122.77853651506157,45.63756052272431],[-122.77852616107961,45.63756783880218],[-122.77851641885036,45.63757578548876],[-122.77849763777272,45.63759213485694],[-122.77848705292371,45.63760041757191],[-122.77847594615353,45.63760847228649],[-122.77845325381115,45.63762435999408],[-122.77844219016012,45.63763240842427],[-122.77842661067812,45.63764435293569],[-122.77841866148619,45.63765016219946],[-122.77840802543322,45.63765718996941],[-122.77839697705356,45.63766389803757],[-122.77837467637661,45.63767690088418],[-122.77836392803424,45.63768344438885],[-122.77834845185853,45.63769330800772],[-122.77833806284228,45.63769928371178],[-122.7782936672026,45.63772224751879],[-122.77828289370741,45.63772835260747],[-122.77825896168994,45.63774367562335],[-122.77824682814538,45.6377511706845],[-122.77823601063271,45.63775711183717],[-122.77820240735291,45.63777394415747],[-122.77819158265372,45.63777979988682],[-122.77816567703756,45.63779540992793],[-122.77815272153454,45.63780244961354],[-122.77813913451585,45.63780916708569],[-122.77808274007896,45.63783497611499],[-122.77806913239903,45.63784167725281],[-122.77805617599769,45.63784871567638],[-122.77804416552232,45.63785624652483],[-122.77803673106506,45.63786163494363],[-122.77800039870337,45.63788933011421],[-122.77798133914798,45.63790458462389],[-122.77797238114799,45.63791245840385],[-122.77795476428696,45.63792948915496],[-122.77794571555711,45.63793776679533],[-122.77793621856792,45.63794545025839],[-122.77791640442767,45.6379603077981],[-122.77790688587893,45.63796793158927],[-122.77789819198362,45.63797600258147],[-122.77789006492524,45.63798547735949],[-122.77788306435421,45.63799557143517],[-122.77787685699562,45.63800610580176],[-122.77787116976157,45.63801693411363],[-122.7778549803235,45.63805000881478],[-122.7778491852916,45.63806087731601],[-122.77784281893119,45.63807148264473],[-122.7778356072561,45.63808169038944],[-122.77782888156956,45.6380897488034],[-122.77782169864054,45.63809759178086],[-122.7777904219973,45.63813142139984],[-122.77778231829511,45.63813974800146],[-122.77777393431856,45.63814765943381],[-122.77776101025657,45.63815876721863],[-122.77774836287568,45.63817018841846],[-122.77773880030949,45.63817829643884],[-122.77772859814282,45.63818630961637],[-122.77771787585158,45.63819418586912],[-122.77770671338588,45.63820187055322],[-122.77769515925466,45.63820929709127],[-122.7776832296277,45.63821638383156],[-122.77766593077027,45.63822599360831],[-122.77765359510481,45.63823332341732],[-122.77764149120466,45.6382410614837],[-122.77761779095252,45.63825739432744],[-122.77758300908303,45.63828311144925],[-122.7774800819144,45.63836214261252],[-122.77745694310933,45.63837923666387],[-122.77744523536623,45.63838756385676],[-122.77743339197751,45.63839567372992],[-122.77742136712911,45.63840349468149],[-122.77740910332888,45.63841093815119],[-122.77739187364172,45.63842077086571],[-122.77737947868744,45.63842836695837],[-122.77736736490581,45.63843636879461],[-122.77734370507785,45.63845318834916],[-122.77728557958739,45.63849673739893],[-122.77726186316559,45.63851351673781],[-122.77724969818,45.63852148276092],[-122.77723722776722,45.63852902608071],[-122.7772198408749,45.63853875074363],[-122.77720730129185,45.63854614960118],[-122.777194967423,45.63855390772313],[-122.77718279075933,45.63856194031763],[-122.77715876621536,45.63857857015253],[-122.77713500847105,45.63859565848507],[-122.77709961305224,45.63862169703141],[-122.77694673236728,45.63873547271878],[-122.77692309589554,45.63875276324652],[-122.77689931479502,45.6387697265373],[-122.77687527408138,45.63878604603719],[-122.77686310101096,45.63879380475397],[-122.7768507833118,45.63880117091751],[-122.77682760677746,45.63881414649268],[-122.77681671470465,45.63882080229139],[-122.77679140826478,45.63883870077721],[-122.77678032395248,45.6388460763561],[-122.77676877700782,45.63885321765913],[-122.77675674587121,45.63885998713618],[-122.77672014311665,45.63887812679327],[-122.77668950787051,45.63889476721167],[-122.77667237250645,45.63890361375204],[-122.77664181721039,45.63892028305468],[-122.77662414734874,45.63892918611842],[-122.77661155027351,45.63893581740826],[-122.7765864863788,45.63894998379534],[-122.77653638194549,45.63897968514834],[-122.77651091650384,45.63899403555217],[-122.77649792327155,45.63900075916231],[-122.77648465964639,45.63900700103336],[-122.776471025017,45.63901257713775],[-122.77645614981422,45.63901763570279],[-122.77642667069986,45.63902637859042],[-122.77641204702535,45.63903011944043],[-122.7763967388346,45.63903313171646],[-122.77638097789291,45.63903547383003],[-122.77636488457462,45.63903732666848],[-122.77634855410105,45.6390388328063],[-122.77626560995593,45.63904462119885],[-122.77624913395532,45.63904601239766],[-122.77623283312616,45.63904770130674],[-122.77621679191012,45.63904982421953],[-122.77620111630841,45.63905255197395],[-122.77618594466158,45.63905610439807],[-122.77617136230957,45.63906067180014],[-122.77615735218441,45.63906608585444],[-122.77614384870907,45.63907214620298],[-122.77613082583238,45.63907870210625],[-122.77611829702911,45.63908564553435],[-122.77610631350322,45.63909289923318],[-122.77608262403086,45.63910824260253],[-122.77607039885817,45.63911523313297],[-122.77605874860724,45.63912072380768],[-122.77603429287197,45.63913091000659],[-122.77602127448687,45.63913670592654],[-122.77599500505299,45.63914886429244],[-122.77598288408488,45.6391542111337],[-122.77594602441212,45.63917003999163],[-122.77593396093617,45.63917550239744],[-122.77592221366723,45.63918119907625],[-122.77589023094816,45.63919823949104],[-122.77585310088251,45.63921675337357],[-122.77584097542282,45.6392236088535],[-122.77582932696852,45.63923079784234],[-122.77581810072242,45.63923816520461],[-122.77579975532767,45.63925070793253],[-122.77579202532466,45.639255629555],[-122.77578067870431,45.63926173698891],[-122.77576844365015,45.63926730050636],[-122.77575555552075,45.63927247775518],[-122.77574221374216,45.63927739937575],[-122.7757010367662,45.63929171076249],[-122.77567198794482,45.63930210042754],[-122.77565751967887,45.6393070798286],[-122.77564300919208,45.63931164721026],[-122.77562838821251,45.6393155682996],[-122.77559598238696,45.63932230443267],[-122.77556697668474,45.63932912912388],[-122.77555269706498,45.63933222491811],[-122.7754940182123,45.6393435058175],[-122.77547956072613,45.63934654319972],[-122.7754654580745,45.6393498933643],[-122.7754518818356,45.63935370390935],[-122.77543903952028,45.63935815383675],[-122.7754290772038,45.63936240717562],[-122.77541115761052,45.63937126557564],[-122.77540307367127,45.63937581096938],[-122.77539281760566,45.6393825803833],[-122.77538307627472,45.6393899320237],[-122.7753544757127,45.63941303959549],[-122.77534437236069,45.63942034475419],[-122.77531681743768,45.63943783291467],[-122.77527020565422,45.63946791022661],[-122.77525842604591,45.63947511865447],[-122.77524658894542,45.63948197598705],[-122.77522398912949,45.63949438739253],[-122.775213693538,45.63950070960228],[-122.77520690586775,45.63950556713908],[-122.77519413541764,45.63951555605228],[-122.77518807089115,45.63952077787152],[-122.77518098048864,45.63952799759798],[-122.77516099387188,45.63955171622988],[-122.77515361061855,45.63955967959309],[-122.7751306038658,45.6395834176819],[-122.77512365988866,45.6395915380593],[-122.77510589660224,45.63961583826112],[-122.77509917540729,45.6396235296591],[-122.7750897673513,45.63963197411691],[-122.77507906033144,45.63963991360192],[-122.77506753135306,45.63964755977524],[-122.7750436577261,45.63966273278476],[-122.77503208383196,45.63967063458096],[-122.77502127620079,45.63967901622433],[-122.7750128194607,45.63968672582774],[-122.77500491159125,45.63969477333363],[-122.77498946595826,45.6397111930558],[-122.77498129488245,45.63971922799673],[-122.7749713658036,45.63972783008647],[-122.77496061566458,45.63973598121853],[-122.77494910555085,45.63974363994017],[-122.77493750740221,45.63975046206777],[-122.77490144992501,45.63977010755473],[-122.77489018415307,45.6397767877347],[-122.77485729503388,45.63979742870702],[-122.77484622778957,45.63980405298533],[-122.77483489913553,45.63981030293183],[-122.77482348963312,45.63981597567939],[-122.77480063739061,45.63982688152239],[-122.77478975609756,45.63983266292471],[-122.77477785521668,45.63984005281844],[-122.7747552751637,45.63985568866459],[-122.77473251454936,45.63987068764195],[-122.7747217087148,45.63987811395875],[-122.77470818637481,45.63988811411087],[-122.77469435501436,45.6398976947096],[-122.77467242624,45.63991336257131],[-122.77462768744388,45.63994142163686],[-122.77461723195229,45.63994745928019],[-122.77458070106294,45.63996622414333],[-122.77456980899014,45.63997230260853],[-122.77454822696541,45.63998493938264],[-122.77453717858575,45.6399911610458],[-122.7745243928643,45.63999782486964],[-122.77451125320665,45.64000424437339],[-122.77447125661693,45.64002308898242],[-122.77445823284194,45.64002957882712],[-122.77444564025829,45.64003636449185],[-122.77443368098693,45.64004358477991],[-122.77442288772876,45.64005105001416],[-122.77441264244297,45.64005886633817],[-122.77438294952955,45.64008257909271],[-122.77437269885384,45.6400899601605],[-122.77436190559571,45.6400967433057],[-122.77435157227501,45.64010223262812],[-122.77431943235077,45.64011728680948],[-122.77430922120095,45.64012269134064],[-122.77430086237723,45.640127818893],[-122.77425066631578,45.64016190919067],[-122.77423935652635,45.64016976443948],[-122.77422838989335,45.64017778424099],[-122.774217989199,45.64018603391419],[-122.77420841225975,45.64019459510788],[-122.77419032018992,45.64021338563903],[-122.77418109449198,45.64022209128409],[-122.77417109085295,45.64023054695691],[-122.77416041617245,45.64023873004725],[-122.77414912973921,45.64024660098691],[-122.77413725401115,45.64025410073778],[-122.77412413770969,45.64026156720009],[-122.77408362728363,45.64028294722855],[-122.77407063944126,45.64029035653296],[-122.77405839091237,45.64029823877062],[-122.77405029709165,45.6403041878181],[-122.77402373750198,45.64032532665278],[-122.7740124483738,45.64033398580349],[-122.77398925477145,45.64035122873305],[-122.7738943774061,45.64041955600308],[-122.77387151168887,45.64043637559034],[-122.7738426793615,45.64045833274374],[-122.77383539851611,45.64046360157998],[-122.77382466185183,45.64047034448377],[-122.77378138641134,45.64049473725805],[-122.77377088959724,45.64050043568695],[-122.7737586491532,45.64050648520323],[-122.77374596853464,45.64051225146191],[-122.77369373060256,45.64053424061683],[-122.77368094038955,45.64053985425305],[-122.77366852836725,45.6405456726376],[-122.77365665533415,45.64055178746766],[-122.77363011191413,45.64056690747492],[-122.77361892699052,45.64057255690749],[-122.77357146899405,45.64059398455012],[-122.77355837694712,45.64060046365161],[-122.77351946282734,45.6406206960795],[-122.77348154404086,45.64063929742082],[-122.77346927305408,45.64064585125655],[-122.77345626365212,45.64065359841072],[-122.77344373125563,45.64066179148825],[-122.77343154201552,45.64067029985198],[-122.77341959442224,45.64067901673116],[-122.77336110331747,45.6407230043224],[-122.77333270307975,45.64074294968184],[-122.77332476287096,45.64074887795608],[-122.77331525061044,45.64075682984404],[-122.77328794002914,45.64078156667119],[-122.7732773282307,45.64079011521262],[-122.77325533118433,45.64080680719229],[-122.773244648419,45.64081533249164],[-122.77321672428837,45.64083980111104],[-122.77320676646345,45.64084752060371],[-122.77319591571312,45.64085464971849],[-122.77318424480094,45.6408612387004],[-122.77317191452536,45.64086735726439],[-122.77315903807408,45.64087304058194],[-122.77314569360054,45.64087829493378],[-122.77313192422388,45.64088309456963],[-122.77311744158486,45.64088752176539],[-122.77310267417991,45.64089158594211],[-122.77305787699332,45.640903007841],[-122.77304315719906,45.64090698911271],[-122.77302875001854,45.64091128755434],[-122.77301480726702,45.6409160708578],[-122.77300151130248,45.64092153811785],[-122.77298862137647,45.64092805800534],[-122.77297642854313,45.64093531963047],[-122.7729647486478,45.64094312892248],[-122.77295343616342,45.64095133200661],[-122.77293148223622,45.64096846169548],[-122.7728880657602,45.64100334409191],[-122.77287690958268,45.64101178708568],[-122.7728654722325,45.64101996001294],[-122.77285364411514,45.64102775610394],[-122.77284129138167,45.64103504535067],[-122.77282975072524,45.64104104770488],[-122.77279385224982,45.64105788029479],[-122.77278208791287,45.64106373065649],[-122.7727693812432,45.64107073538825],[-122.77275710306988,45.64107816719858],[-122.77274517973112,45.64108592182961],[-122.77273356002291,45.64109391449351],[-122.77272221609752,45.64110207547573],[-122.77270034840853,45.64111866938548],[-122.77267913020152,45.64113566587503],[-122.77266837197769,45.64114395246264],[-122.7726571690878,45.64115150108184],[-122.77264923426888,45.64115600864771],[-122.7726410721762,45.64116021097751],[-122.77263181413889,45.64116470849378],[-122.77262226055585,45.64116884927333],[-122.77261104598783,45.64117287700235],[-122.77257618326998,45.64118363247566],[-122.77256617154613,45.64118725950342],[-122.77255659730183,45.64119124703551],[-122.77254027131987,45.64119898029697],[-122.77250714235052,45.64121382880924],[-122.77249620805686,45.64121940595009],[-122.77248446617779,45.64122645651053],[-122.77247318782939,45.64123415962045],[-122.7724401576747,45.6412589634388],[-122.77242880925772,45.64126716396451],[-122.7723920735525,45.64129185346212],[-122.77238090030698,45.64130012872163],[-122.77237014387977,45.641308643897],[-122.77232945289235,45.64134247911393],[-122.7723061335259,45.64136031022047],[-122.77228784292839,45.64137572205497],[-122.77228186284356,45.64138096191441],[-122.77226195078696,45.64140071673918],[-122.77225291193858,45.64140919610017],[-122.77224335296563,45.64141755424549],[-122.7722332361389,45.64142560778333],[-122.77222247971169,45.64143314819989],[-122.77221094803838,45.64143992238967],[-122.77219844438795,45.6414456226066],[-122.77218410997096,45.64145021242388],[-122.77216881615325,45.64145371884804],[-122.77215289351483,45.64145658277305],[-122.77212024065258,45.64146193002215],[-122.77210398653581,45.6414651588459],[-122.77208972218745,45.6414687293306],[-122.77207577045274,45.64147292724059],[-122.77206217445091,45.6414776935386],[-122.77204899796234,45.64148300687079],[-122.77203633710671,45.64148888356632],[-122.7720236394202,45.64149569794479],[-122.77201154270658,45.64150301853333],[-122.77199997869391,45.6415107059039],[-122.77198891953444,45.64151865014711],[-122.77197837960122,45.6415267664757],[-122.77195492997903,45.64154653569427],[-122.77193213612703,45.64156386178161],[-122.77191087480087,45.64158076518439],[-122.77189991984598,45.64158906238299],[-122.77186859738865,45.64161034581295],[-122.77185882641331,45.64161784663741],[-122.7718504613014,45.64162542408312],[-122.77184268907756,45.6416334085054],[-122.77182007848185,45.64165822973245],[-122.77179557872911,45.6416822815858],[-122.7717876493001,45.64169052161675],[-122.77177925184881,45.64170025766394],[-122.77177142842099,45.64171032783251],[-122.77176403528621,45.64172064607931],[-122.77175011229764,45.64174177307472],[-122.77171726450095,45.64179545692314],[-122.77170394428191,45.64181645262794],[-122.77169704881379,45.64182662263551],[-122.77168989912246,45.64183644658597],[-122.77168239639322,45.64184579321722],[-122.7716744139636,45.64185449170007],[-122.7716657919335,45.64186232221761],[-122.77165707827524,45.64186877102613],[-122.77164824064947,45.64187477266292],[-122.77163988362237,45.6418808559455],[-122.77163284352548,45.64188697251397],[-122.77161922955739,45.64189953286232],[-122.77161143038408,45.64190533226417],[-122.77160174834194,45.64191070396433],[-122.77159078979378,45.64191543882271],[-122.7715789122691,45.64191973404672],[-122.77156641939845,45.64192375669738],[-122.77152770380634,45.64193560734287],[-122.7715060085939,45.64194266534975],[-122.77149245571121,45.64194642987091],[-122.77147849499337,45.64194982949585],[-122.77143586094999,45.64195957115042],[-122.77142191909678,45.64196322387794],[-122.77137921857808,45.64197609948924],[-122.77136484463522,45.64197970008766],[-122.77133587756053,45.64198630212631],[-122.7713217138235,45.64198997306544],[-122.77130807110926,45.64199436939943],[-122.77129619717783,45.64199926565895],[-122.77128474096301,45.64200482262414],[-122.77125072266152,45.64202302532389],[-122.77123736291661,45.64202961730864],[-122.77122358096352,45.64203595556159],[-122.77119516186119,45.64204810073741],[-122.7711225222907,45.64207740603478],[-122.7710941651721,45.64208957255519],[-122.7710804640674,45.64209597046576],[-122.77106724895124,45.64210269181949],[-122.77105468511371,45.64210984715252],[-122.77104242311007,45.64211778126204],[-122.77101836982001,45.64213397857385],[-122.77100645546442,45.6421410974762],[-122.77099404793371,45.64214788162914],[-122.77098131161961,45.64215442084334],[-122.77094257087467,45.64217330869232],[-122.77091772347389,45.64218590791531],[-122.77090608130784,45.64219239060101],[-122.77089013710984,45.64220183075162],[-122.77087864765734,45.64220799376044],[-122.77085470306346,45.64222021991681],[-122.77084251831494,45.64222700531623],[-122.77081868780708,45.64224148175344],[-122.77077557496165,45.64226873261575],[-122.77076764283771,45.6422739416175],[-122.77075674806996,45.64228204590385],[-122.77074642103742,45.64229070098392],[-122.77070683228285,45.64232711686849],[-122.7706964199104,45.64233579455119],[-122.77068536614082,45.64234390259683],[-122.77067338171662,45.64235117973949],[-122.77066059240192,45.64235727113486],[-122.77064689309383,45.64236254984126],[-122.77063253352402,45.64236724132645],[-122.77061771132183,45.64237152709516],[-122.77055676422307,45.64238737388546],[-122.77054174439152,45.64239161254942],[-122.7705270740046,45.64239621861832],[-122.77051291835238,45.64240135349913],[-122.77049937804611,45.64240714217231],[-122.77048636235595,45.64241339810889],[-122.77047371767001,45.64241989144498],[-122.77044949819164,45.64243267337296],[-122.77043816235106,45.64243906684803],[-122.77042769338472,45.64244590246437],[-122.77041897433658,45.6424528297741],[-122.77040271842318,45.64246750901066],[-122.77039414310549,45.64247470511983],[-122.7703830219623,45.64248261154378],[-122.77037093782508,45.64249006326418],[-122.7703582446301,45.64249722043181],[-122.77031950029189,45.64251822717837],[-122.7703071394736,45.64252534665996],[-122.77029473104457,45.64253216028432],[-122.77028168032012,45.64253815556966],[-122.77026793519799,45.64254281375396],[-122.77025330343864,45.64254652296715],[-122.77023805453669,45.64254958655351],[-122.7701907303892,45.64255734035287],[-122.77017504580434,45.64256017909981],[-122.77015971515567,45.64256352718809],[-122.77014495403893,45.64256765718756],[-122.77013125203591,45.64257263692652],[-122.77011811956478,45.64257833074778],[-122.77010537965742,45.6425844472401],[-122.77006753543112,45.64260331798705],[-122.77005506052677,45.64261001415828],[-122.77004463917118,45.64261668206691],[-122.77001471628905,45.64263834946726],[-122.7700040038793,45.64264515491336],[-122.76999228176314,45.64265139575037],[-122.76997980506216,45.64265711028898],[-122.7699668055417,45.64266247375249],[-122.76992654933888,45.6426779593375],[-122.76991326415413,45.64268338246288],[-122.76987283008488,45.6427015416074],[-122.76985912089532,45.64270723541556],[-122.76984700531708,45.64271171333845],[-122.76980996418467,45.64272429171503],[-122.76979783962327,45.64272880480676],[-122.76978494340904,45.64273420845795],[-122.76977233735069,45.64273999898084],[-122.7697351821322,45.64275808588256],[-122.76972268476997,45.64276383432435],[-122.76970995474406,45.64276916009538],[-122.76969687347689,45.64277386285119],[-122.76968159493057,45.64277827168443],[-122.76963470107609,45.64278950353099],[-122.76962200967776,45.64279310344914],[-122.76958497393524,45.64280462105026],[-122.76955935577996,45.64281201683239],[-122.76954723930339,45.64281590753088],[-122.76952030601456,45.64282598252322],[-122.76948281213123,45.6428370774479],[-122.76947063636588,45.64284162570062],[-122.76945855043202,45.64284684469774],[-122.7694097719121,45.64287035781238],[-122.76939708320873,45.64287596807439],[-122.76938400373817,45.6428810790458],[-122.76937021998846,45.64288560154544],[-122.76935608499747,45.64288955190236],[-122.76934176495354,45.6428930821019],[-122.76932742245171,45.64289631272732],[-122.76927328009121,45.6429078177465],[-122.76925374532703,45.64291252614301],[-122.76924617163087,45.64291414459537],[-122.76923768794134,45.64291517143645],[-122.76922923120127,45.64291511428507],[-122.76922136375599,45.64291393797104],[-122.7692134361236,45.64291195462899],[-122.76919529374814,45.64290661505477],[-122.76918481669698,45.64290378448986],[-122.76917389947133,45.6429012434501],[-122.76913783929919,45.64289467668937],[-122.76912612077629,45.64289185366034],[-122.76911622044355,45.64288867390574],[-122.76909790289662,45.64288152934886],[-122.76908942549527,45.64287770648301],[-122.76907722547539,45.64287118996255],[-122.7690530275566,45.64285673001704],[-122.76900642026469,45.64283106335336],[-122.76899523983266,45.64282422464381],[-122.76898466486516,45.64281698838509],[-122.76896446085611,45.64280213213326],[-122.76895428474054,45.64279501645509],[-122.76894369270502,45.64278846412682],[-122.76893115581694,45.64278197397363],[-122.76889766123323,45.64276562988803],[-122.76888715094444,45.64276070606172],[-122.76887479192274,45.64275549584914],[-122.76883069901534,45.64273792268278],[-122.76880512936908,45.64272900766348],[-122.76879650644068,45.64272645531106],[-122.76878313771262,45.64272363666982],[-122.76876885000803,45.64272164578453],[-122.7687539487541,45.64272018182437],[-122.76872335483047,45.64271778271325],[-122.76870814814934,45.64271634450258],[-122.76869333403197,45.64271439129942],[-122.76867919544772,45.64271161096799],[-122.76866606117997,45.64270763359273],[-122.76865554460294,45.64270292203879],[-122.76864575027138,45.64269733374084],[-122.76861758898555,45.64267867279096],[-122.76860762756736,45.6426728470915],[-122.76859643006735,45.64266735362462],[-122.76857290947827,45.64265675984252],[-122.76855983000772,45.64265003918327],[-122.76854694816655,45.64264271874462],[-122.76850887217493,45.64261939583074],[-122.76849620592942,45.6426118869759],[-122.76848348488666,45.6426049194912],[-122.76847067940228,45.64259880865348],[-122.76845776342513,45.64259394824464],[-122.7684472109155,45.64259118674845],[-122.76843688208635,45.64258949292186],[-122.76842710482279,45.64258883536293],[-122.76841823665434,45.64258923730915],[-122.76841068631438,45.64259077789377],[-122.76840523443892,45.64259321657693],[-122.76840125939376,45.64259629648979],[-122.76839808115429,45.64260051378452],[-122.7683956125839,45.64260454141061],[-122.76839219988415,45.64260780408274],[-122.76838651893829,45.64260967250411],[-122.76837911771864,45.6426096681078],[-122.7683702693131,45.64260813631633],[-122.76836043276074,45.64260539240595],[-122.76835000691354,45.64260167314801],[-122.7683393421145,45.64259714748525],[-122.76832876624867,45.6425919240686],[-122.76831322000436,45.64258325521817],[-122.76830206472512,45.64257741569183],[-122.76825398778945,45.64255427299867],[-122.76823301122924,45.64254353348953],[-122.76822257909386,45.64253843944444],[-122.76819660340912,45.64252673463213],[-122.76817088643915,45.64251339188422],[-122.7681456734241,45.64250110361571],[-122.76813386776462,45.64249438859016],[-122.76812233159974,45.64248710267351],[-122.76809936437287,45.64247185380768],[-122.76808759913759,45.64246436691454],[-122.7680540228072,45.64244470667122],[-122.76804357001055,45.64243803246168],[-122.76803407302137,45.64243099021832],[-122.76802483295037,45.64242255183468],[-122.7680029814311,45.64239992281689],[-122.76799697709173,45.64239283660567],[-122.76798332000448,45.6423736297846],[-122.76797777560255,45.64236697880427],[-122.76796431165305,45.64235228258419],[-122.76795653763257,45.64234424299651],[-122.76794829558986,45.64233645902155],[-122.76793939328537,45.64232917057219],[-122.76793187528476,45.64232393456966],[-122.76791614129256,45.64231429409357],[-122.76790867629255,45.6423099178821],[-122.76790099479857,45.64230577781488],[-122.76788861062404,45.64230019575782],[-122.76787557247602,45.64229487182639],[-122.76783814596634,45.64227889751688],[-122.76782567465526,45.64227389325809],[-122.76780422468292,45.64226582665326],[-122.76779445460586,45.6422614969133],[-122.76778585233869,45.6422564424094],[-122.76777792829957,45.64224956845923],[-122.76777129513953,45.64224167581933],[-122.76775922088379,45.64222428588099],[-122.76775251136692,45.64221541976745],[-122.76774517213107,45.64220727088028],[-122.76773705046259,45.64219927523502],[-122.76771983784343,45.64218336747104],[-122.76771140715448,45.64217526003022],[-122.76770354689573,45.64216690388211],[-122.767696632563,45.64215817090523],[-122.76769020691378,45.64214765930085],[-122.76768483049679,45.64213670555006],[-122.7676746094655,45.64211429748907],[-122.76766957530663,45.64210490442719],[-122.7676639186153,45.6420956759119],[-122.76765762681505,45.64208667286386],[-122.76765064960024,45.64207797316096],[-122.76764289354608,45.64206967603476],[-122.76763421671875,45.64206190521062],[-122.76762383848227,45.64205432217147],[-122.76761247928549,45.64204738099544],[-122.76760035741906,45.64204099250004],[-122.76758763727463,45.64203511146611],[-122.76757443563322,45.64202973098521],[-122.7675608279533,45.64202488622821],[-122.76754685825232,45.64202065004869],[-122.76753254359828,45.64201714051977],[-122.76751629576972,45.6420141692273],[-122.76746743550311,45.64200736810087],[-122.76745197190381,45.64200441878955],[-122.76743743806081,45.6420003766752],[-122.76742488500301,45.64199520533087],[-122.76741351322984,45.64198883127464],[-122.7674033955048,45.64198143287169],[-122.76739538073583,45.64197401751043],[-122.76738810078878,45.64196613550853],[-122.76737428829297,45.64194994694088],[-122.76736099412507,45.64193514321514],[-122.76735478047826,45.64192780258556],[-122.76734134168161,45.64190971792799],[-122.76733436267018,45.6419016280329],[-122.76732609367798,45.64189489786236],[-122.76731754171647,45.64189062775841],[-122.7673078569794,45.64188762380066],[-122.76729745538672,45.64188575723937],[-122.76728671243426,45.64188496275748],[-122.76725618049436,45.64188542939782],[-122.76724459582047,45.64188499353189],[-122.76723300485835,45.64188392082433],[-122.76722167350934,45.64188205426288],[-122.76721244601474,45.641879797683],[-122.76719406109414,45.64187441279086],[-122.76717084683057,45.64186823027583],[-122.76715898188229,45.64186486958501],[-122.76714726964764,45.64186093360092],[-122.76713519269695,45.64185586461576],[-122.76712345890269,45.64185002689773],[-122.76711197573843,45.64184363272738],[-122.7671006641524,45.64183685858642],[-122.76705584720285,45.64180867611623],[-122.76703061622146,45.64179354011479],[-122.7670186407804,45.64178581635611],[-122.76700345565884,45.64177502331538],[-122.7669923084645,45.64176750115826],[-122.76698057467024,45.64176025094595],[-122.76696827134413,45.64175336311778],[-122.76695472834288,45.64174655881943],[-122.76691296836027,45.64172750502119],[-122.76689954303836,45.6417210737819],[-122.76688683547036,45.64171433416889],[-122.76684480778978,45.64168962161953],[-122.76683323209903,45.64168221501237],[-122.76682188188542,45.64167444539063],[-122.76678817619764,45.6416505386138],[-122.76677673974574,45.64164286633567],[-122.76676503559592,45.64163560605837],[-122.76674826135464,45.64162605778742],[-122.7667379289322,45.64161989345851],[-122.76669913159341,45.64159536614289],[-122.76669081678713,45.64159000257718],[-122.76668285681544,45.64158443363789],[-122.76667318555307,45.64157670105764],[-122.7666546560037,45.64156051237742],[-122.76661876022325,45.64153173311802],[-122.76660478962397,45.64152001741854],[-122.76659419758846,45.64151190988168],[-122.76658295157941,45.6415040102293],[-122.76655915161427,45.64148862669251],[-122.76648479446496,45.64144335596026],[-122.76647279926094,45.64143568051347],[-122.76644424181809,45.64141633644845],[-122.76643554163454,45.64141080077877],[-122.76642315027352,45.64140386957186],[-122.7664100717013,45.641397433899],[-122.76639649456408,45.64139136500925],[-122.76636844466934,45.64137992562438],[-122.76631211311451,45.64135789786197],[-122.76629867252123,45.6413522378316],[-122.7662857816969,45.641346398177],[-122.7662736391692,45.64134030541559],[-122.76625759166498,45.64133139142996],[-122.76624112195256,45.64132272866505],[-122.76620960815409,45.64130519838514],[-122.7661986307413,45.64129940897004],[-122.76618636334779,45.64129346379659],[-122.76616118177371,45.64128191762228],[-122.76614872034412,45.64127594418446],[-122.76613600289464,45.64126930437879],[-122.76612367261903,45.64126236498964],[-122.7661117034662,45.64125524409148],[-122.76608108169478,45.64123592634254],[-122.7660731360961,45.64123119770731],[-122.76606073665022,45.64122493473009],[-122.76604756644986,45.64121917859372],[-122.76602039061589,45.64120787169362],[-122.76600708297325,45.64120166712305],[-122.7659945775262,45.64119486841027],[-122.76598251494856,45.64118750067721],[-122.76593540100686,45.64115612986276],[-122.76592313002007,45.64114866728797],[-122.76591118422341,45.64114206703483],[-122.76587465872396,45.64112338546908],[-122.76586295637075,45.6411170489971],[-122.76583844763485,45.64110250255493],[-122.76582621617396,45.64109568875671],[-122.76581542830571,45.64109044007776],[-122.76579390736646,45.64108071146127],[-122.76578383365886,45.64107568385734],[-122.76577647286341,45.6410714752406],[-122.76575505882367,45.64105840911979],[-122.76573074861545,45.64104163305527],[-122.76571962837055,45.64103460947813],[-122.76570789906789,45.64102775421973],[-122.76569559933502,45.64102119352005],[-122.76568411796737,45.64101562829254],[-122.76564906570498,45.6409996303801],[-122.76563786640833,45.64099407833973],[-122.76562727527114,45.64098817898216],[-122.7655820343168,45.64095881282138],[-122.76554903560316,45.6409368960599],[-122.76553704668737,45.64092993276334],[-122.76552430498337,45.64092376207728],[-122.76549178866505,45.64090876526603],[-122.76546703468907,45.64089765928246],[-122.76545483466919,45.64089165942517],[-122.76544262386955,45.64088470491578],[-122.76543084156629,45.64087717384634],[-122.7653963839886,45.64085308898818],[-122.76538467355056,45.64084513648582],[-122.76534794054027,45.64082191833787],[-122.76533620225447,45.6408139846729],[-122.76530559844936,45.64079114648907],[-122.76529479800469,45.64078406384275],[-122.7652823365751,45.64077725251803],[-122.76526900827122,45.64077107930287],[-122.76525502868874,45.64076538278569],[-122.76524056760933,45.64076003798237],[-122.76522575439026,45.64075495005576],[-122.76519544343597,45.6407452741382],[-122.7650872476482,45.64071305644848],[-122.76505679565838,45.64070366440777],[-122.76504186026847,45.64069882267643],[-122.76502722311922,45.64069382895356],[-122.76501299560175,45.64068862420133],[-122.76499932054817,45.64068313179605],[-122.76496566696271,45.64066813994488],[-122.76495268810348,45.64066179211633],[-122.76494137831405,45.6406550617968],[-122.76493064973462,45.64064758219762],[-122.76492034516,45.64063954676179],[-122.76491033882604,45.64063110810839],[-122.7649005274265,45.64062239122175],[-122.76486154593306,45.64058663746417],[-122.76485145246252,45.64057789796031],[-122.7648410185305,45.64056942224185],[-122.76483010669475,45.64056133089714],[-122.76481854447874,45.64055376963716],[-122.7648053715834,45.64054642882654],[-122.76479146925607,45.64053969849321],[-122.76477703153282,45.64053342853],[-122.76476221202557,45.64052750776977],[-122.76474712841363,45.64052185707649],[-122.7647165219136,45.64051117181934],[-122.76468579324268,45.64050117554684],[-122.76465527567585,45.64049171752389],[-122.76464049749109,45.64048657430317],[-122.76462812679131,45.6404813104936],[-122.76461624477506,45.64047543620464],[-122.7646047220849,45.64046913608714],[-122.76459345451629,45.64046257092557],[-122.76454401124306,45.64043286910251],[-122.76453356293798,45.64042576945313],[-122.7645235197731,45.64041825465169],[-122.76449404065875,45.6403951135789],[-122.76448387262806,45.64038781294373],[-122.76447272812865,45.6403806812573],[-122.76446118118399,45.64037422411265],[-122.76443911406903,45.64036341761066],[-122.76442876727357,45.64035769906968],[-122.76441973651005,45.64035148435593],[-122.76441125102386,45.64034469621709],[-122.7643942450172,45.64033047428473],[-122.76438377245762,45.64032257509381],[-122.76436187871751,45.64030687971161],[-122.76435133249608,45.64029871986972],[-122.76434169357309,45.64029007578713],[-122.76433390967114,45.64028141160505],[-122.76432732861339,45.64027224119965],[-122.76432195309472,45.64026266694563],[-122.76431787115007,45.64025276358272],[-122.76431509176257,45.64024218755798],[-122.76431363110194,45.64023143818461],[-122.76431331758988,45.64022062851473],[-122.76431406319158,45.64020986155134],[-122.7643158571272,45.64019924155371],[-122.76432142847858,45.64017828606734],[-122.76432324217714,45.64016926700951],[-122.76432423481553,45.64016025109053],[-122.76432424200203,45.64015131681901],[-122.76432304993767,45.64014254898422],[-122.76432038373792,45.64013403991226],[-122.76431519776376,45.64012455670454],[-122.76430825378664,45.64011541390853],[-122.76430013660973,45.64010648214212],[-122.76427351413795,45.64007982752187],[-122.7642653107228,45.64007062567999],[-122.76425817181124,45.64006106583713],[-122.76425210279318,45.640050442671],[-122.76424714768608,45.64003947280841],[-122.7642382462799,45.64001729629447],[-122.76423315732382,45.64000649349204],[-122.7642268206078,45.63999618121021],[-122.76421923882683,45.63998709554763],[-122.76421031226782,45.63997861031873],[-122.76420035623954,45.63997069349225],[-122.76418961149041,45.6399633538614],[-122.7641736053087,45.63995369602122],[-122.7641389222539,45.63993222228458],[-122.7641269378297,45.6399256193758],[-122.76411438028033,45.63991985054452],[-122.76410211109017,45.63991548984782],[-122.76408941250533,45.6399117961622],[-122.76407655222374,45.63990841211536],[-122.76406575537231,45.63990566053592],[-122.764054739332,45.63990322299194],[-122.76403946348059,45.6399008733778],[-122.76402352197755,45.63989937982457],[-122.76400709628258,45.6398985080618],[-122.76399032473623,45.63989808097337],[-122.76397330884812,45.63989796540829],[-122.76395612767,45.63989806401545],[-122.7639214688697,45.63989863932866],[-122.76374715168711,45.639902817258],[-122.76355574495462,45.63990672448841],[-122.76341598955426,45.63990914821467],[-122.76327491991869,45.63991102803132],[-122.76324013715087,45.63991171702526],[-122.76322316797516,45.63991224334876],[-122.76320669646611,45.63991298258838],[-122.76319096786379,45.63991403774767],[-122.76317631813815,45.63991554888648],[-122.76316320453164,45.63991770693838],[-122.76315223789864,45.63992076627196],[-122.76314422582463,45.6399250610208],[-122.76314017532103,45.63993018482285],[-122.76313895001897,45.63993613642168],[-122.7631403154582,45.63994245230087],[-122.76314289991126,45.63994723819932],[-122.76315633152139,45.63996641068026],[-122.76316102701537,45.63997432436697],[-122.76316489785594,45.63998272355086],[-122.76316780749914,45.63999247371237],[-122.7631696194011,45.64000262583701],[-122.76317284525125,45.64003416750423],[-122.76317455115199,45.64004467699286],[-122.76317703319711,45.64005478263092],[-122.7631828390088,45.6400744160778],[-122.76318512791616,45.64008387354316],[-122.76318625350522,45.64009301320401],[-122.76318567409184,45.64010167553098],[-122.76318314802926,45.64010970727556],[-122.76317840402623,45.64011683962456],[-122.76317076834633,45.64012321766219],[-122.76316116086437,45.64012869756097],[-122.76313933809116,45.64013860722652],[-122.7631286193932,45.64014380009652],[-122.76312123883481,45.64014802322848],[-122.76310781620785,45.64015681178869],[-122.76310126659111,45.64016137407656],[-122.76309541137209,45.64016625919108],[-122.7630906107752,45.64017190489563],[-122.76308701931072,45.6401782873235],[-122.7630844447391,45.64018642520056],[-122.76308330477701,45.64019517858291],[-122.76308331286185,45.64020436909912],[-122.76308425788953,45.64021384852487],[-122.7630859952313,45.64022348873435],[-122.76308843775053,45.64023317416305],[-122.76309154861637,45.6402427967833],[-122.76310215143168,45.6402700492458],[-122.76310466761278,45.64027908650138],[-122.76310612378185,45.64028943453093],[-122.76310715774272,45.64031985933454],[-122.76310874596419,45.64032934376532],[-122.76311226376681,45.64033820703693],[-122.76311748387695,45.64034533810073],[-122.76312441887094,45.64035190201989],[-122.76313265013387,45.6403579597171],[-122.76314183540765,45.64036354699223],[-122.76316570005147,45.64037613280475],[-122.76317618339087,45.64038242665204],[-122.76320750405154,45.64040293676365],[-122.76321874107744,45.64040942656435],[-122.76323152410393,45.64041571349919],[-122.76324497098541,45.64042154006144],[-122.76327270018162,45.64043273532461],[-122.76328645967682,45.64043854743963],[-122.763299805947,45.64044481113279],[-122.76331258627856,45.64045172110411],[-122.76332489319795,45.6404591140565],[-122.76336089497958,45.64048220548575],[-122.76337320189896,45.64048958712892],[-122.76338599031536,45.64049648076509],[-122.76339783819564,45.64050205734929],[-122.76343483171735,45.64051745560245],[-122.7634470586867,45.64052278409921],[-122.76346036902424,45.64052918156062],[-122.76347333890033,45.64053596904908],[-122.76348604557,45.64054302597613],[-122.76354707800876,45.6405790190538],[-122.76357505783488,45.64059490780328],[-122.76360154645768,45.64061180521775],[-122.76362484516287,45.64062620293637],[-122.76363628700464,45.64063366934909],[-122.76364720333201,45.64064146486577],[-122.7636719016124,45.6406608895903],[-122.7636827631425,45.64066884211881],[-122.76370539529778,45.64068431569364],[-122.76371700871779,45.64069175509195],[-122.76372873532549,45.64069891939801],[-122.76375697566307,45.64071494942746],[-122.76378150056865,45.64073042424565],[-122.76381673429074,45.64075145803325],[-122.76383141006752,45.64076103283185],[-122.76384657812109,45.6407703777583],[-122.76385723303866,45.64077746543083],[-122.76386754569815,45.64078508695453],[-122.76387735440272,45.64079320338939],[-122.7639041906735,45.64081843008792],[-122.7639126231591,45.64082559186554],[-122.76394135577347,45.6408484149619],[-122.76395261076566,45.64085709161748],[-122.76396442540826,45.64086541216156],[-122.76397578101178,45.64087243952824],[-122.76398766841793,45.64087910952789],[-122.76402454156539,45.64089834512396],[-122.76403663648237,45.64090491274671],[-122.76404784296555,45.64091139683676],[-122.76408031436813,45.64093118134588],[-122.76410780551079,45.64094694878004],[-122.76414394922622,45.64096958717754],[-122.7641554386787,45.64097601473477],[-122.76419111077864,45.64099432328268],[-122.76420265951994,45.64100055425465],[-122.76422892536053,45.64101556423055],[-122.76424095649713,45.64102153958034],[-122.76426582276251,45.64103309774138],[-122.76429934429565,45.64105010933032],[-122.76431081218857,45.64105561991335],[-122.76432278223973,45.64106086859555],[-122.76435938140102,45.64107614799219],[-122.76437118885711,45.64108172263452],[-122.76438430426029,45.64108885234756],[-122.76439688067424,45.6410965805987],[-122.76440905823624,45.64110475037335],[-122.76442094474409,45.64111324045616],[-122.7644441733807,45.6411308216688],[-122.76449004135911,45.64116666112294],[-122.76451349637118,45.64118406960318],[-122.76452558859322,45.64119241082454],[-122.76453805810766,45.64120037583876],[-122.76455104415342,45.6412078271016],[-122.76456348941338,45.64121412713604],[-122.76460219332739,45.64123177489098],[-122.76464225818906,45.64125116800805],[-122.76465574998633,45.64125747054982],[-122.76466954451581,45.6412634107027],[-122.76468223052424,45.6412683070261],[-122.76469516446771,45.64127291067513],[-122.7647343310141,45.64128634101823],[-122.76478594731199,45.64130588987415],[-122.76479889562852,45.64131052806312],[-122.76483778908705,45.64132337807414],[-122.76485036729764,45.64132799490779],[-122.76486187291982,45.64133276875484],[-122.76488463802575,45.64134283584917],[-122.764898511607,45.64134860516202],[-122.76491272834468,45.64135416281981],[-122.7649418328616,45.64136487806282],[-122.7649860973472,45.64138071571702],[-122.76501524138996,45.64139173618943],[-122.76502946890743,45.64139759028458],[-122.76504332542068,45.64140380048589],[-122.76505664384308,45.64141039882404],[-122.76506958317644,45.64141732123738],[-122.76508224133713,45.64142444148688],[-122.76511917287509,45.64144587131592],[-122.76513127677521,45.64145267502271],[-122.76514332048824,45.64145910754895],[-122.76516007047503,45.64146766352368],[-122.76517622667541,45.64147644685244],[-122.76518770983968,45.64148217407199],[-122.7652243269673,45.64149937582469],[-122.76523708663758,45.64150603130442],[-122.76524966215325,45.6415130717799],[-122.76526209214182,45.64152040178698],[-122.7652744089427,45.64152794784327],[-122.76529878293132,45.64154347393721],[-122.76532288203542,45.64155934294356],[-122.76534669367868,45.64157538403184],[-122.76538156448136,45.64159957095195],[-122.76541984079729,45.64162747278814],[-122.76542811428105,45.64163302664993],[-122.76543948964752,45.64163975810806],[-122.76546305425404,45.64165278389802],[-122.76547499016922,45.64166005610604],[-122.765486662878,45.64166772900988],[-122.76552123094847,45.64169174380417],[-122.76553298001407,45.64169964405813],[-122.76554505426982,45.64170726231613],[-122.76555761181916,45.64171443842531],[-122.76557001755323,45.64172071014049],[-122.76560863433068,45.64173832758945],[-122.76566161337286,45.64176424408971],[-122.7656750036605,45.64177036506724],[-122.76570141412984,45.64178141812161],[-122.76571434537836,45.64178706868785],[-122.76572569918524,45.64179256286906],[-122.76575857123642,45.64180970674588],[-122.76578244576174,45.64182160263508],[-122.76579370524551,45.64182786994194],[-122.76580139841761,45.64183279385018],[-122.76584006011079,45.64185883403244],[-122.76586098097546,45.64187331056477],[-122.76587110858198,45.64188077492717],[-122.7658808202685,45.64188843900813],[-122.76589999390994,45.64190484803867],[-122.7659099652096,45.64191276647598],[-122.76592172146171,45.64192081114996],[-122.7659961235268,45.64196574423464],[-122.76602078317967,45.64198041920245],[-122.76603319879521,45.64198748976461],[-122.76606337949381,45.64200355585217],[-122.76607557771705,45.64201062327121],[-122.76608746063161,45.6420181008043],[-122.76612259104745,45.64204131531631],[-122.7661345781666,45.6420487727478],[-122.76614695335796,45.6420557918015],[-122.76615989897951,45.64206215642939],[-122.76617304223042,45.64206753062669],[-122.76618664541877,45.64207235967884],[-122.7662142524441,45.64208146133254],[-122.766227777479,45.64208624956042],[-122.76624078059274,45.64209155341421],[-122.76625337587134,45.64209778175199],[-122.76626514739483,45.64210472166567],[-122.76627608258677,45.64211226324694],[-122.7663009928696,45.64213181809517],[-122.76631190111209,45.64213993747511],[-122.76633467699781,45.64215596960451],[-122.76635836108028,45.64217155581679],[-122.76638268206828,45.64218638397384],[-122.76639503480175,45.64219336155929],[-122.76640749982464,45.64219993279853],[-122.76643151448711,45.64221173502609],[-122.76644268234274,45.64221778938199],[-122.766450566856,45.64222275282282],[-122.7664579725672,45.64222789588415],[-122.76647161348478,45.64223790943382],[-122.76647778401247,45.64224288983014],[-122.7664852103849,45.64225002316365],[-122.76649933279953,45.64226507174359],[-122.76651795757027,45.64228291197713],[-122.76652609181518,45.6422918842195],[-122.76654988459381,45.64232065806404],[-122.76655883989886,45.64233005234587],[-122.76656859111127,45.64233872940004],[-122.76657930082611,45.64234694484075],[-122.76659083968592,45.6423546980401],[-122.76660314301206,45.64236195571205],[-122.76661595119138,45.64236858973584],[-122.76662928219018,45.64237482620737],[-122.76664296982018,45.64238078508303],[-122.766698754301,45.64240364774061],[-122.76671241677815,45.64240949042529],[-122.76672573969213,45.64241552717459],[-122.7667601307945,45.64243226263301],[-122.76677164180653,45.64243739060201],[-122.76678307286852,45.64244191690573],[-122.76680593499248,45.64245035717055],[-122.76681691869345,45.6424547547245],[-122.76682728165859,45.64245960321259],[-122.76683523264717,45.64246406105785],[-122.76685322320735,45.6424753595399],[-122.7668739141033,45.64248907221367],[-122.76688403631994,45.64249624885078],[-122.76689378663401,45.64250366351487],[-122.7669029656196,45.64251135451637],[-122.76691134061298,45.64251937963509],[-122.76691928531336,45.64252838952207],[-122.76693369159557,45.64254671075156],[-122.76694121408775,45.64255547632602],[-122.76694967172614,45.64256359313246],[-122.7669564629897,45.64256883225276],[-122.76696378425926,45.64257385846665],[-122.76700513820337,45.6426009848152],[-122.76701548050725,45.64260824559541],[-122.76702550121423,45.64261580155385],[-122.76703537639415,45.6426239365647],[-122.76706393293873,45.64264926543758],[-122.76707376499951,45.64265757880698],[-122.76708372192613,45.6426654123525],[-122.7671249626825,45.64269598596741],[-122.76713482708264,45.64270390743312],[-122.76714451451467,45.64271236147534],[-122.76718163919041,45.64274730496188],[-122.7671924126856,45.64275670670862],[-122.7672149109919,45.64277502786344],[-122.76726116344925,45.6428108568452],[-122.7672836671454,45.64282883381734],[-122.76729444692883,45.6428379353481],[-122.76730475150346,45.64284715494858],[-122.76731814718099,45.64285972638635],[-122.76732815441325,45.64286841717533],[-122.76733871410941,45.64287691703947],[-122.76736094651436,45.64289352926472],[-122.76741846474371,45.64293424304388],[-122.76744041956923,45.64295069887089],[-122.767450733127,45.64295906306658],[-122.76746039001634,45.64296756417306],[-122.76747948640264,45.64298568993952],[-122.76748960502599,45.64299401770391],[-122.7675110532017,45.64301022669509],[-122.76752145838766,45.64301862416782],[-122.76753064455974,45.6430269663721],[-122.76754852552548,45.64304422291767],[-122.7675582533817,45.64305299846289],[-122.76758859218376,45.64307901358457],[-122.76759829668381,45.64308784313538],[-122.76760735260018,45.64309690254572],[-122.76761543204785,45.6431063042338],[-122.76762198076625,45.64311562929997],[-122.76762768686496,45.64312523384022],[-122.76764301571697,45.64315440291863],[-122.7676485196947,45.64316382971844],[-122.7676585889107,45.64317905390254],[-122.76767164412675,45.64320010561192],[-122.76767865996912,45.64321049015597],[-122.76768621929223,45.64322086339347],[-122.76769415500945,45.64323123223281],[-122.76771886227303,45.64326241096323],[-122.76773479119963,45.64328341114255],[-122.76774214211359,45.64329404814047],[-122.76774881030795,45.64330482518771],[-122.76775453167801,45.64331579378293],[-122.76775921279895,45.64332724910138],[-122.76776305040185,45.64333886079758],[-122.7677699126323,45.64336215891869],[-122.76777373137058,45.64337365379365],[-122.76777834960946,45.64338490875801],[-122.76778313942654,45.64339427083177],[-122.7677937638014,45.64341265897746],[-122.76779877909564,45.6434218973243],[-122.76780302722861,45.64343130900632],[-122.76780652526834,45.64344233347158],[-122.76780882765041,45.64345363678058],[-122.76781026675148,45.64346513728911],[-122.76781110847291,45.64347676654162],[-122.7678115711053,45.64348846550313],[-122.76781247930202,45.64352340913364],[-122.76781318088626,45.64353479658232],[-122.76781439091697,45.64354592276811],[-122.7678163375662,45.6435566784139],[-122.7678216753556,45.64357643309954],[-122.76782625766187,45.64359645971507],[-122.76782983475333,45.64360604470392],[-122.76783441795791,45.64361377009573],[-122.76784010249705,45.64362132277841],[-122.76785261243568,45.64363649596784],[-122.76785737799825,45.64364277060801],[-122.7678684650055,45.64365815857755],[-122.767874330106,45.64366729953941],[-122.76787889983581,45.64367667601061],[-122.76788160825642,45.64368636712261],[-122.76788266826844,45.64369624098926],[-122.76788241494353,45.64370612176252],[-122.7678810899285,45.64371583359434],[-122.76787886569986,45.64372519624079],[-122.76787506582622,45.64373797284676],[-122.76787343358731,45.6437476758807],[-122.76787293053079,45.64375792152907],[-122.76787336890862,45.64376856157703],[-122.76787462475342,45.64377947418699],[-122.76787663608131,45.6437905569903],[-122.76787940109575,45.64380172143497],[-122.76788297998385,45.64381288587741],[-122.76788712211562,45.6438232985691],[-122.76789186701697,45.64383364720007],[-122.76790248061204,45.64385416232852],[-122.76793515233892,45.64391319556419],[-122.76794094287926,45.64392212421163],[-122.76795561416448,45.64394079605181],[-122.76796200927096,45.64395034078812],[-122.7679663939479,45.64396006011395],[-122.76796932425233,45.64397035533748],[-122.76797116490035,45.64398109017696],[-122.76797219796293,45.6439921559837],[-122.76797264173067,45.64400346609001],[-122.76797265430709,45.64401494952899],[-122.76797180360252,45.64403820026701],[-122.76797011387147,45.64406145853172],[-122.76796895863801,45.64407292939831],[-122.76796753121502,45.6440841766859],[-122.76796573997436,45.64409508044207],[-122.7679634447788,45.64410547926477],[-122.76796045249058,45.64411516213828],[-122.76795650169996,45.64412384708031],[-122.76795124835219,45.64413116920948],[-122.76794556650802,45.6441360106442],[-122.76793903934914,45.64413945975018],[-122.76793202799836,45.64414137333815],[-122.76792283194482,45.64414162077948],[-122.76790115469868,45.64413976559767],[-122.76788846240203,45.64413906472326],[-122.7678603253707,45.64413825896894],[-122.76783039889534,45.64413827278548],[-122.7678153224699,45.64413861694241],[-122.76780043379239,45.64413922298524],[-122.76776949581402,45.6441408753154],[-122.76775490447886,45.64414094628211],[-122.76773266309073,45.64413941453245],[-122.76772180245895,45.64413891085749],[-122.76771081965627,45.6441392725991],[-122.76770002819478,45.64414057888828],[-122.76768969217912,45.64414282595678],[-122.76768010625672,45.64414606027825],[-122.76767160460088,45.64415038108022],[-122.7676637371556,45.64415647604812],[-122.76765705009666,45.64416360474185],[-122.76763877117723,45.64418723537217],[-122.76763159273979,45.64419469126195],[-122.76762214964955,45.64420228719987],[-122.76760299846599,45.64421616587705],[-122.76756849776919,45.6442424059187],[-122.76756098426014,45.64424823145496],[-122.76755384894186,45.64425428370672],[-122.76754486668732,45.64426319031903],[-122.76751990789548,45.64429142368033],[-122.76751058967105,45.64430042511799],[-122.76750089505249,45.64430820505194],[-122.76749033176307,45.64431557677077],[-122.76747917917879,45.64432269413985],[-122.76744452307345,45.64434388735229],[-122.76743328065768,45.64435127665095],[-122.76741139140914,45.64436659283147],[-122.7673684699049,45.64439747764434],[-122.76735764879899,45.64440487384422],[-122.76733029689518,45.64442232779179],[-122.7673185083037,45.64443059568066],[-122.7673072110907,45.64443939236141],[-122.76729630913641,45.64444859285769],[-122.7672857404571,45.64445810547848],[-122.76727547989994,45.64446786616554],[-122.767265539143,45.64447783535346],[-122.767255965797,45.64448799734168],[-122.76724685059182,45.64449835652621],[-122.76723833007136,45.6445089392838],[-122.76723060096666,45.64451979397175],[-122.7672241339949,45.64453039493778],[-122.76721834525124,45.64454121194044],[-122.7672130128517,45.64455216584914],[-122.76719297862425,45.64459609701796],[-122.76718761568199,45.64460681603704],[-122.76717661491303,45.64462768131654],[-122.76716346088232,45.64465753603618],[-122.76715350485401,45.64467857274558],[-122.76714922887327,45.64468923397128],[-122.76714556554354,45.64470010055664],[-122.7671424304232,45.64471111221186],[-122.76713978578299,45.64472221681146],[-122.7671376352162,45.64473336662606],[-122.76713603262175,45.64474451518242],[-122.76713507950923,45.64475561349519],[-122.76713493308381,45.644766605043],[-122.76713563287144,45.6447762903143],[-122.76713716539732,45.64478577210664],[-122.76713958905194,45.64479497003398],[-122.76714300893822,45.64480378863807],[-122.76714724898638,45.64481185487747],[-122.76715645222644,45.64482739387772],[-122.76716929723672,45.64485367885023],[-122.76717668587992,45.64486612674673],[-122.76717984345815,45.64487239559703],[-122.76718233179146,45.64488013023446],[-122.76718338282036,45.64488805515944],[-122.76718297857848,45.6448959480545],[-122.7671810166579,45.64490357655411],[-122.76717790579208,45.64491001684832],[-122.76717391457727,45.6449161324581],[-122.76716770272708,45.64492382501249],[-122.76716004009769,45.64493044742865],[-122.76715042812415,45.64493538236854],[-122.76713924589554,45.64493841630753],[-122.7671270602487,45.64493925282307],[-122.7671149536536,45.64493781090138],[-122.76710244730823,45.64493472923321],[-122.76706266811081,45.64492176512374],[-122.7670484980855,45.64491803031918],[-122.76703286290798,45.64491526140138],[-122.76701684774311,45.64491368194375],[-122.76700075442481,45.6449131914641],[-122.76698488478698,45.64491378619427],[-122.76696956042656,45.64491556284855],[-122.76695514965274,45.64491872553171],[-122.76694518733625,45.64492209357552],[-122.76693573705948,45.64492610596238],[-122.76692759742468,45.64493007815599],[-122.76691988359134,45.64493452387239],[-122.76691043690779,45.64494145150242],[-122.76690197477782,45.64494930608107],[-122.7668944073699,45.64495786905901],[-122.76688770773451,45.64496697840806],[-122.7668819136009,45.64497651543338],[-122.76687712378381,45.64498639786486],[-122.76687301039811,45.64499774859135],[-122.76686336788187,45.64503211664799],[-122.76685918442759,45.64504309558124],[-122.76685352234635,45.64505351809246],[-122.76684625587401,45.64506288051535],[-122.76683765181023,45.6450717687867],[-122.7668188294101,45.64508901716626],[-122.76680972678129,45.64509779678726],[-122.76679818612484,45.64511044119752],[-122.76678234343652,45.64512862153583],[-122.76677520452495,45.64513789414035],[-122.76676867017954,45.64514791282201],[-122.76676272153574,45.64515791894164],[-122.76675808892384,45.64516580300655],[-122.76675395218194,45.64517366885796],[-122.76675087814705,45.64518167161491],[-122.76674920817895,45.64519140956746],[-122.7667494480291,45.64520138553476],[-122.76675130035522,45.64521143686171],[-122.76675458998581,45.64522140403329],[-122.76675924415727,45.64523112502261],[-122.76676439150387,45.64523942607671],[-122.76677537250988,45.64525578514093],[-122.7667799512229,45.64526420676948],[-122.76678353639919,45.6452740495855],[-122.76678575793291,45.64528425664606],[-122.76678702455746,45.64529469041665],[-122.76678768212423,45.64530522529495],[-122.76678882208633,45.6453361686233],[-122.76679154847322,45.6453601253242],[-122.76679119813026,45.64536842070711],[-122.76678917692087,45.64537641213205],[-122.76678520726563,45.64538382264688],[-122.76678081360556,45.64538887686862],[-122.766775466833,45.64539366418585],[-122.76676786439076,45.64539951283875],[-122.76675939866752,45.64540510714723],[-122.76675012535884,45.64541023924026],[-122.76674003997314,45.64541467173037],[-122.76672804656577,45.64541858988055],[-122.76670264490448,45.64542546846598],[-122.76668956004406,45.64542962274683],[-122.76666290074138,45.64543917853366],[-122.76664974850732,45.64544478916639],[-122.76663871899223,45.64545064911812],[-122.76660683598618,45.64547016323655],[-122.76659536270337,45.64547613622723],[-122.76658204697591,45.64548165705102],[-122.76656781766181,45.64548644373235],[-122.76655296222197,45.64549072298233],[-122.76650711670142,45.64550241649925],[-122.76649222353235,45.64550652053373],[-122.7664779978115,45.64551104470543],[-122.76646481144147,45.64551622012132],[-122.76645313154613,45.64552232687279],[-122.76644303987223,45.64552989813839],[-122.76643504037462,45.64553844155927],[-122.76642913754489,45.6455476186388],[-122.76642595661048,45.64555536574314],[-122.76642421657377,45.64556314047875],[-122.76642392372297,45.64557074439522],[-122.76642517238123,45.64557797590221],[-122.7664281449065,45.64558461896532],[-122.76643424716222,45.64559187370676],[-122.7664495562513,45.64560549141668],[-122.76645681104554,45.64561257345346],[-122.76646730965625,45.6456241495076],[-122.76647761962076,45.6456346573197],[-122.76648328529525,45.64564111511407],[-122.76648862937289,45.64564806149692],[-122.76649504783559,45.64565770767942],[-122.76650100636088,45.64566782235314],[-122.76651805907991,45.64569906378409],[-122.76652406521589,45.64570920985061],[-122.76653053578089,45.64571893640739],[-122.76654048282604,45.64573229472],[-122.7665449582328,45.64573908723011],[-122.76654967708298,45.64574863417206],[-122.76655317242775,45.64575870486898],[-122.76655572813472,45.64576915236729],[-122.76655756698612,45.64577985294978],[-122.76655885247528,45.6457906985994],[-122.7665597067731,45.64580159323134],[-122.76656042003546,45.64582315138308],[-122.76656035984831,45.64583361456946],[-122.76655962772138,45.64585344569674],[-122.7665600750824,45.64586279605385],[-122.76656159413355,45.64587001810306],[-122.76656621955894,45.6458857734712],[-122.76656843121114,45.64589450900706],[-122.76657008950116,45.64590341159055],[-122.76657088810346,45.64591240774518],[-122.76657047757335,45.64592142650651],[-122.766568604586,45.64593052690687],[-122.76656571740067,45.64593962290971],[-122.76655926120876,45.6459579700278],[-122.76655685192716,45.64596730843537],[-122.76655556464134,45.64597810694851],[-122.76655560237057,45.64598897956386],[-122.76655661746685,45.64599977304876],[-122.76655833953727,45.64601031470251],[-122.76656056646084,45.64602040105244],[-122.76656315271053,45.6460297802698],[-122.76656600845483,45.64603813458577],[-122.76656850127975,45.64604365095818],[-122.76657200830262,45.64604838483925],[-122.76657806294763,45.64605289263913],[-122.76658592320635,45.64605663050806],[-122.7665949647497,45.64605976612271],[-122.76660462613059,45.64606242194358],[-122.76661422822265,45.64606458478268],[-122.766623634482,45.64606608382359],[-122.76663255026119,45.64606659313326],[-122.76664066384483,45.64606573088646],[-122.76664823484607,45.64606303738559],[-122.76665516534847,45.64605911362851],[-122.76666208507112,45.64605473896555],[-122.76666820888639,45.64605122529333],[-122.7666744090585,45.64604808465419],[-122.76667981511984,45.64604576858187],[-122.7666852526223,45.64604424379231],[-122.76669087338101,45.64604382428679],[-122.76669644024084,45.64604460552167],[-122.76670287127993,45.64604727139128],[-122.76670839502063,45.64605151417432],[-122.7667126665098,45.64605700982136],[-122.7667152698275,45.64606350775916],[-122.76671584474927,45.64607170695361],[-122.76671445595386,45.64608059694893],[-122.76671172777034,45.64608990896],[-122.7667081875098,45.64609940999802],[-122.76670047547307,45.64611812946863],[-122.76669713913012,45.64612690830032],[-122.76669471188224,45.64613496555718],[-122.76669374888824,45.64614011202735],[-122.76669342190146,45.64614456141574],[-122.76669384231303,45.6461520471891],[-122.7666933644093,45.64615523806251],[-122.76669170791591,45.64615801633905],[-122.76668879378114,45.64616002280225],[-122.76668490138101,45.64616135479232],[-122.76668049424623,45.64616195704524],[-122.76667595685574,45.64616184902908],[-122.76666687848146,45.64616117141603],[-122.76666081126002,45.64616185028505],[-122.76665636819264,45.6461640451484],[-122.76665479254763,45.64616781629395],[-122.76665621008915,45.64617246036043],[-122.7666595751782,45.64617657502183],[-122.76666875416376,45.64618562702466],[-122.76667265464873,45.64619101150242],[-122.76667462555245,45.64619581382313],[-122.76667555800374,45.64620100864377],[-122.76667518340625,45.646209149414],[-122.76667330502897,45.64621741264317],[-122.76666871463789,45.64623055982887],[-122.76666724858737,45.64623564851424],[-122.76666663773295,45.64624087473116],[-122.76666694046523,45.64624615997961],[-122.76667112571614,45.64626408121338],[-122.76667230969566,45.64627176039468],[-122.76667289000733,45.64627975797072],[-122.76667266273357,45.64628791317355],[-122.76667138802419,45.64629607402719],[-122.76666843705848,45.6463054174024],[-122.76666052110419,45.64632369343673],[-122.7666571479303,45.6463326964319],[-122.7666535510759,45.64634779289912],[-122.76665152537493,45.64635513985753],[-122.76664860046037,45.64636229087943],[-122.76664172745012,45.64637624438128],[-122.76663557309213,45.64639058409865],[-122.76663217566373,45.64639706441383],[-122.76662781793627,45.64640266992666],[-122.76662286732075,45.64640670921139],[-122.76661713966251,45.64641028817314],[-122.76659968359988,45.64642032735119],[-122.76659447067631,45.64642307421467],[-122.76658913648014,45.64642534003154],[-122.7665743475156,45.64643052541091],[-122.76656922532186,45.6464332057061],[-122.76656448221718,45.6464366653466],[-122.76655981906252,45.64644141363841],[-122.76655069846743,45.64645182018955],[-122.76654482438379,45.64645654775619],[-122.76653828375024,45.64645996155139],[-122.76653058069665,45.64646254827355],[-122.76651888642829,45.64646460873359],[-122.76650626959012,45.64646518146739],[-122.76647518338972,45.64646366485326],[-122.76643991104008,45.64646290874413],[-122.76641866678195,45.64646212249117],[-122.76640910960562,45.64646202201153],[-122.76639674519406,45.64646313921927],[-122.76638541923495,45.64646598028028],[-122.76637556741122,45.64647061615808],[-122.76636643154478,45.64647637740693],[-122.76634070559169,45.64649385080501],[-122.76633392600623,45.64649996435786],[-122.76633067679987,45.64650493621128],[-122.7663292682415,45.64651014105118],[-122.76632976590815,45.64651507208391],[-122.76633189401707,45.64651983795301],[-122.7663354881765,45.64652425088747],[-122.76634037231672,45.64652821354778],[-122.76635242770783,45.64653605408801],[-122.76636096709292,45.64654234284735],[-122.76636907349004,45.64654963388863],[-122.76637614323131,45.64655785247977],[-122.76638175231196,45.64656702060034],[-122.76638601661462,45.64657679913187],[-122.76638923258332,45.64658690673165],[-122.76639162030536,45.6465970846652],[-122.76639332710438,45.64660707733804],[-122.76639443562547,45.64661661659611],[-122.76639495934326,45.64662539974569],[-122.76639466469587,45.64663306066556],[-122.7663924979594,45.64663957549242],[-122.76638716286492,45.64664523059263],[-122.76637961701651,45.64665008437002],[-122.76637114680173,45.64665471144063],[-122.76636295686126,45.64665966067248],[-122.76635755169819,45.64666380983784],[-122.7663315544539,45.64668499400068],[-122.76631944426555,45.64669376269563],[-122.76631533267648,45.64669796335406],[-122.76631363036901,45.64670289688222],[-122.76631505060548,45.64670745361307],[-122.76631848306818,45.64671057663137],[-122.76632789561575,45.64671603453403],[-122.7663319254581,45.64671926305498],[-122.76633432845148,45.64672318864984],[-122.76633504440876,45.64672754756072],[-122.76633401943103,45.64673187883948],[-122.76633110978783,45.64673572405015],[-122.76632513239791,45.64673932497069],[-122.76631730897012,45.64674258363402],[-122.76630867346528,45.64674651927514],[-122.766302532582,45.64675018299446],[-122.76629638630882,45.64675448412775],[-122.76629015289906,45.64675921166879],[-122.76628120747547,45.64676635887113],[-122.7662727812781,45.64677411145892],[-122.76626578340202,45.64678266536594],[-122.76626120109577,45.64679143781354],[-122.76625811807774,45.6468008401376],[-122.76625603757952,45.64681063244412],[-122.76625166008914,45.64684028629851],[-122.76624956162466,45.64684959378737],[-122.76624650196278,45.64685824376586],[-122.7662372636884,45.64687515059517],[-122.76623389141282,45.64688344449772],[-122.76623171479488,45.64689198645621],[-122.76623074641103,45.64690042919057],[-122.76623107878765,45.64690840281315],[-122.76623288979127,45.64691550101304],[-122.76623637705121,45.64692177528595],[-122.76624013470403,45.64692725075184],[-122.76624564047843,45.64693650421889],[-122.7662523931144,45.64694297128304],[-122.76625452481657,45.64694583304349],[-122.76625464968241,45.64694809318728],[-122.76625338934609,45.64695009836621],[-122.76625087226664,45.6469515019286],[-122.76624746675341,45.64695200369427],[-122.7662434458942,45.64695165829861],[-122.7662389318599,45.64695045506575],[-122.76622940342966,45.64694691319001],[-122.76621932073893,45.64694347116482],[-122.76621153054876,45.64694017734563],[-122.76620771809873,45.6469392240534],[-122.76620234707163,45.64693942438295],[-122.76619726170881,45.64694123614054],[-122.76619351753071,45.64694457894311],[-122.76619181073166,45.64694955829295],[-122.76619138223526,45.64695583570202],[-122.76619131126837,45.6469669210169],[-122.76619172359507,45.64697285051648],[-122.76619480930808,45.64699272080394],[-122.76619525577078,45.6470042563814],[-122.76619627535862,45.64700932678476],[-122.76619886071,45.64701419120645],[-122.7662056968893,45.6470231884387],[-122.76620799927139,45.64702780731461],[-122.76620856610835,45.6470326723627],[-122.76620738751869,45.64704317488662],[-122.7662074306378,45.64704863652484],[-122.76620860653253,45.64705357504604],[-122.76621253037368,45.64706374033495],[-122.76621510943687,45.6470688320846],[-122.7662317740837,45.64709256887586],[-122.76623514096937,45.64709799596977],[-122.76623733735023,45.647103304373],[-122.76623787903435,45.64710810724347],[-122.76623718284004,45.64711260679421],[-122.76623416270404,45.64712024315584],[-122.76623299758913,45.64712428929675],[-122.76623276672207,45.64712863750053],[-122.76623348088273,45.64713339578155],[-122.76623548412583,45.64713948226105],[-122.76624076172813,45.64715298906849],[-122.76624297158371,45.64716146379097],[-122.76624450770284,45.64717042771611],[-122.76624560813909,45.64717964409164],[-122.76624733649768,45.64719794872825],[-122.76624929033342,45.64721332630143],[-122.76624977183042,45.6472197550263],[-122.76624930290984,45.64722531900951],[-122.76624784314751,45.64723061107293],[-122.76624440170164,45.64723714404199],[-122.76623591082559,45.64724865696158],[-122.76623287541821,45.64725391825134],[-122.76623167706565,45.64725861183887],[-122.76623089373474,45.64726722407487],[-122.76622931808974,45.64727095809481],[-122.76622654499045,45.64727376771546],[-122.7662183784062,45.64727955400119],[-122.76621329933158,45.64728366795332],[-122.76620864875335,45.6472884990678],[-122.76620499081349,45.64729400464128],[-122.76620305674071,45.64729906497056],[-122.766202128781,45.6473044279897],[-122.76620207937366,45.64731065951588],[-122.76620258512516,45.64732505111705],[-122.76620225274851,45.64733326205859],[-122.76620136790798,45.64734165637135],[-122.76619983897534,45.64735005193887],[-122.76619610647535,45.64736489882083],[-122.7661947095951,45.6473735405559],[-122.7661943349976,45.64738225136821],[-122.7661951874988,45.64739085730535],[-122.76619754018655,45.64739917687901],[-122.76620149187546,45.64740689044398],[-122.76620675061315,45.6474140808948],[-122.76621290407284,45.64742066408138],[-122.76621958394529,45.64742652508242],[-122.76623329403316,45.64743688058361],[-122.7662380515109,45.64744186491363],[-122.76624028382439,45.64744790740055],[-122.76623902528468,45.64745396809841],[-122.76623443399525,45.64745959925293],[-122.76622212977082,45.64746962317123],[-122.76620543458127,45.64748218666389],[-122.7662005459495,45.64748644503791],[-122.76619157357642,45.64749504153922],[-122.76618766680325,45.64749938092246],[-122.7661845370728,45.6475039206329],[-122.76618211251984,45.64750854009712],[-122.76617757063778,45.64751863245714],[-122.76617402408904,45.64752394772835],[-122.76616949208844,45.64752901054879],[-122.76616421089285,45.64753357914415],[-122.76615130659381,45.64754217752223],[-122.76614620865459,45.64754663433506],[-122.76614333404565,45.6475513624373],[-122.76614209796384,45.64755647486611],[-122.76614233152581,45.6475615590351],[-122.76614393052704,45.64756620173009],[-122.76614698479898,45.64757049777686],[-122.76615026095483,45.64757443335981],[-122.76615238547048,45.64757868607494],[-122.76615247260706,45.64758228945323],[-122.76615111076107,45.647586199916],[-122.76614666499874,45.64759187941203],[-122.76613972461485,45.6475974251467],[-122.76613076571651,45.64760251621984],[-122.76612011798547,45.64760680472802],[-122.7661086950083,45.64760991136858],[-122.76609644378445,45.64761235108921],[-122.76607123615926,45.64761673316634],[-122.76605911698778,45.64761942031262],[-122.76604789613157,45.6476229665417],[-122.76603995412613,45.64762656175334],[-122.76603264992457,45.64763072026684],[-122.76602579847388,45.64763522103159],[-122.76601962884452,45.64763968034901],[-122.76601398383127,45.64764446307797],[-122.76600680539383,45.64765250064909],[-122.76599436372715,45.64767023554963],[-122.76598742154665,45.64767905746897],[-122.76598204243471,45.64768470430045],[-122.76596772328911,45.64769879060545],[-122.7659505744503,45.64771684073914],[-122.76594226683055,45.64772629691441],[-122.76593437333415,45.64773597476617],[-122.76592710596351,45.64774584666313],[-122.76592071894184,45.64775589878947],[-122.76591569017289,45.6477654121046],[-122.76590672408803,45.64778421830805],[-122.76589234565361,45.64781139551221],[-122.76588767800739,45.64781935393357],[-122.76588187039906,45.64782646143778],[-122.7658744655862,45.64783239335834],[-122.76586582289484,45.64783759870284],[-122.76584760775582,45.64784728093128],[-122.76583939984906,45.64785244608363],[-122.76583275051934,45.64785829699174],[-122.76582810173774,45.64786525440334],[-122.76582506183881,45.64787295660044],[-122.76582070231474,45.64788925021346],[-122.76581790136768,45.64789719543615],[-122.76581366670943,45.64790455914685],[-122.76580744946935,45.64791108198964],[-122.76579980480628,45.64791693163565],[-122.76578509579181,45.64792628353229],[-122.76577860726053,45.64792984104561],[-122.76577191750661,45.64793276241383],[-122.76576533105894,45.64793475185795],[-122.76575872215341,45.64793601975175],[-122.76574582863412,45.64793725185059],[-122.7657369811269,45.64793835772524],[-122.76572833574059,45.64794016128682],[-122.76572059855104,45.64794284904554],[-122.76571495982603,45.64794611957051],[-122.76571084374538,45.64794992073918],[-122.76570848297283,45.64795390402202],[-122.7657080410017,45.64795839031724],[-122.7657090812508,45.64796226809872],[-122.76571008377064,45.64796473606314],[-122.7657104565715,45.6479669779544],[-122.76570967054563,45.64796914134796],[-122.76570774006609,45.64797114209445],[-122.76570472981156,45.647972652388],[-122.76570047000048,45.64797346059908],[-122.76568566217134,45.64797380473251],[-122.76567717039697,45.64797527546317],[-122.76566854567193,45.64797855603393],[-122.76566124147034,45.6479835378038],[-122.76565535301367,45.64799016425414],[-122.76565133754433,45.64799797193477],[-122.76564868392097,45.64800676365945],[-122.76564691962979,45.64801622794952],[-122.76564292931326,45.64804625292978],[-122.76564076437343,45.64805612791196],[-122.76563751157381,45.64806561103308],[-122.76563254838184,45.64807527815057],[-122.7656269788271,45.64808462499695],[-122.76562197970253,45.64809401580027],[-122.76561883470072,45.64810240371922],[-122.76561662664174,45.64811088708978],[-122.7656121521333,45.64813472203213],[-122.76561031328193,45.64814128943457],[-122.76560777104969,45.64814665174509],[-122.76560384361527,45.64815113048908],[-122.76559991887578,45.648154632726],[-122.76559741257614,45.6481582410911],[-122.76559718799733,45.64816116370334],[-122.76559824800937,45.64816439088506],[-122.76560050727231,45.64816777254925],[-122.76560829207256,45.64817735550004],[-122.76561269202081,45.64818406356461],[-122.76561579570011,45.64819142472573],[-122.76561672096487,45.64819695344567],[-122.76561648470795,45.6482026171803],[-122.76561460902562,45.64820969826084],[-122.76561137778555,45.64821664432517],[-122.76560724463695,45.64822332538195],[-122.76559840341791,45.64823487012573],[-122.76559461432404,45.64824026445413],[-122.76559093123139,45.64824802939746],[-122.76558825964172,45.64825656047221],[-122.7655839028126,45.64827451936945],[-122.76558120966337,45.64828328216375],[-122.76557745650213,45.64829144272669],[-122.76557202438958,45.6482986173645],[-122.76556471839139,45.64830441924384],[-122.76555611253096,45.64830944871097],[-122.76554711770001,45.64831424833817],[-122.76553862502732,45.64831935316164],[-122.7655315597776,45.64832532019668],[-122.76552658490756,45.64833266438388],[-122.76552338690517,45.6483411401838],[-122.7655213674924,45.6483504518191],[-122.76551778680768,45.64838014190898],[-122.76551609078842,45.64839940946834],[-122.76551602610971,45.6484091186026],[-122.76551690017048,45.64841882145543],[-122.76551908936484,45.64842907818107],[-122.7655222146037,45.64843931983335],[-122.76552935800684,45.64845990046852],[-122.76553245629626,45.64847032297201],[-122.76553457632035,45.64848015517711],[-122.7655359264882,45.64849007592495],[-122.76553652746112,45.64850004565304],[-122.76553635767957,45.64851002605492],[-122.76553531653214,45.64852051574238],[-122.76553349205378,45.64853094765418],[-122.76553097677099,45.64854128787983],[-122.76552781380289,45.64855149748499],[-122.76552399775954,45.64856152874357],[-122.76551947564042,45.64857132451016],[-122.76551414683414,45.64858081256784],[-122.76549673928056,45.64860634409483],[-122.76549013306997,45.64861650659006],[-122.76547088486838,45.64864710772789],[-122.76545946817942,45.64866473807005],[-122.76545482748269,45.64867245334469],[-122.76544965498327,45.64868312825367],[-122.76543677763368,45.64871629713398],[-122.76542710457468,45.64873713074016],[-122.76542243513185,45.64874810894727],[-122.76540553961796,45.64879298317852],[-122.76540091958245,45.64880404489489],[-122.76539577043927,45.64881487174784],[-122.76537266127858,45.64885638691015],[-122.765362835506,45.64887179919439],[-122.7653569174049,45.6488819308709],[-122.7653513936642,45.64889234324836],[-122.76533568572319,45.64892426988015],[-122.76533026618706,45.64893483359047],[-122.76532450798608,45.64894519760441],[-122.76531824223697,45.64895524888752],[-122.7653067249367,45.64897147938879],[-122.76530131168883,45.64897956763499],[-122.76529610954502,45.64898873410323],[-122.76527715329588,45.64902644427355],[-122.76527332198123,45.64903600258665],[-122.76527104834521,45.64904462145699],[-122.76526789975014,45.64906177253413],[-122.76526582104859,45.64907011007074],[-122.76526257902871,45.64907814618129],[-122.76525672111477,45.64908716506091],[-122.76524148389089,45.6491049911906],[-122.7652353232447,45.64911260844158],[-122.76522957133193,45.64912056291024],[-122.76522438984935,45.64912883324549],[-122.76521940509785,45.64913834318765],[-122.76521036714777,45.64915797596321],[-122.76519432503342,45.64919065474805],[-122.76518950647026,45.64920171826977],[-122.76518548381442,45.64921273971557],[-122.76517554575243,45.64924572554403],[-122.76517207735711,45.64925635575815],[-122.76516809512545,45.64926660667873],[-122.7651633008168,45.64927632822198],[-122.7651553210821,45.64928916196271],[-122.76515041538232,45.64929759177642],[-122.76514586631374,45.64930638832087],[-122.76514167657128,45.6493154712162],[-122.76513786591782,45.64932477327006],[-122.76513447118435,45.64933423670948],[-122.76512399862479,45.64936827556373],[-122.76511958699842,45.64937934721395],[-122.76511442078724,45.64938950705709],[-122.76510315411693,45.64940955671307],[-122.76509831668913,45.64941978751069],[-122.7650946470712,45.64943057342695],[-122.76509203746528,45.64944164004111],[-122.76509012674869,45.64945289253046],[-122.76508550491654,45.64948694136006],[-122.76508334177333,45.64949812350836],[-122.76508031624746,45.64950907519188],[-122.76507602050378,45.64951968714507],[-122.76507030452362,45.64952967238895],[-122.76506349798869,45.64953936500032],[-122.76504868836295,45.6495584255611],[-122.76504165814752,45.64956805097545],[-122.76503553702717,45.64957791313007],[-122.76503092956808,45.64958751405049],[-122.76502716472874,45.64959732784855],[-122.76502053965352,45.64961713503674],[-122.76501689429008,45.64962690173245],[-122.76501248356203,45.64963641472986],[-122.76500756977744,45.64964467682543],[-122.76500184571243,45.64965261175171],[-122.76499545599582,45.64966019564625],[-122.76497748519859,45.64967921220865],[-122.76496992587545,45.6496886931711],[-122.76494863580324,45.6497173231812],[-122.76494209696628,45.64972705783345],[-122.76493638188444,45.64973711211612],[-122.7649214339181,45.64976794938284],[-122.7649160718742,45.64977797163212],[-122.7649059640306,45.6497944260768],[-122.76490126404502,45.64980269631259],[-122.76489670419666,45.64981260740676],[-122.76488519498123,45.64984299815255],[-122.76488050038556,45.64985284393181],[-122.76487556504138,45.6498609910789],[-122.76486986882416,45.64986881859348],[-122.76486356265087,45.64987629947345],[-122.76485239210031,45.64988829977485],[-122.76484456238433,45.64989776814271],[-122.76483745850702,45.64990781925494],[-122.76483114604554,45.64991834510219],[-122.76482591066407,45.64992868444381],[-122.7648116606887,45.64996050310398],[-122.7648063121195,45.64997096363374],[-122.76480082161648,45.64998021973778],[-122.76478286519227,45.65000707185019],[-122.764777271383,45.65001583625734],[-122.76476693626567,45.65003367465061],[-122.76476156883184,45.65004204971998],[-122.7647474904347,45.6500602673911],[-122.7647352068715,45.65007849321973],[-122.76473034159595,45.65008442552972],[-122.7647197603402,45.65009649737365],[-122.76471279300684,45.65010547401618],[-122.76469273272825,45.65013405922834],[-122.76468545727278,45.65014337684515],[-122.76467408370294,45.65015632718708],[-122.7646686282342,45.65016291193523],[-122.76466210466863,45.65017219752152],[-122.76464458033406,45.65020164111506],[-122.76463797322516,45.65021135810036],[-122.76463158530515,45.65021938902353],[-122.76461773957169,45.6502353296711],[-122.76460928013667,45.65024552578038],[-122.76460104617877,45.65025597683752],[-122.7645685639964,45.65029870351207],[-122.7645600533574,45.65030923933318],[-122.76455112769675,45.65031954783281],[-122.76454160735136,45.65032951535142],[-122.76453259275749,45.65033796447513],[-122.76452316583689,45.65034613604186],[-122.7644852281858,45.65037744519445],[-122.76447664029169,45.65038518283947],[-122.76446758168038,45.65039397481741],[-122.76445843683078,45.65040242330348],[-122.7644492820997,45.65040962781266],[-122.76443020906962,45.65042368329065],[-122.7644070873325,45.65044255202487],[-122.76439660129822,45.65045037255067],[-122.7643855816646,45.65045803797107],[-122.76437405807613,45.65046544781366],[-122.76436202514292,45.65047248151163],[-122.76434943705085,45.65047899212421],[-122.76433760174697,45.65048433034876],[-122.76430138796292,45.65049936980928],[-122.76426862820115,45.65051463721242],[-122.76425501602961,45.65052035032097],[-122.76422748086955,45.65053108202143],[-122.76421413909094,45.65053651254992],[-122.764201494405,45.65054226207744],[-122.76418517560954,45.65055072247215],[-122.76414959334117,45.6505679823517],[-122.76411811906856,45.65058434111566],[-122.76410567470691,45.65058999832942],[-122.76409271111905,45.65059521283695],[-122.76407930735668,45.65059996266014],[-122.76406551192886,45.650604196935],[-122.76405134729347,45.65060783088826],[-122.76403692843485,45.65061079795721],[-122.76402227511593,45.65061331604104],[-122.76399272952622,45.65061794027247],[-122.76397805015618,45.65062048975354],[-122.76396357739866,45.65062350015047],[-122.76394923759177,45.65062718182676],[-122.7639351295502,45.65063136774732],[-122.76389336417773,45.65064502002527],[-122.76387937022223,45.65064932148746],[-122.76386520738345,45.65065317208077],[-122.76384919132026,45.65065676333025],[-122.76380100029853,45.65066565699352],[-122.76377512253015,45.65067074653187],[-122.7637622838081,45.65067280432537],[-122.7637493534579,45.65067406399384],[-122.76373521577196,45.65067421846963],[-122.76372087596506,45.65067334059501],[-122.76370636817322,45.65067172990225],[-122.76369171665094,45.65066964008325],[-122.76364699402451,45.65066259447897],[-122.7636318106996,45.65066062711],[-122.76361552514183,45.65065904216281],[-122.76359910214178,45.65065788171019],[-122.76358258481865,45.65065700634711],[-122.76353282444015,45.65065492971451],[-122.76351626579451,45.65065406942218],[-122.76346878444184,45.65065084740755],[-122.76345305583953,45.65064999213879],[-122.7634373784412,45.65064952243166],[-122.76342175853503,45.65064963483486],[-122.76340743310118,45.65065037895639],[-122.76339313012522,45.65065157645822],[-122.76335002446633,45.65065580382175],[-122.76333347570217,45.65065692157376],[-122.76331681285194,45.65065768013806],[-122.76328326526767,45.6506584594247],[-122.76321598684277,45.65065876649253],[-122.76318273390591,45.65065910935353],[-122.76316636929639,45.65065953635988],[-122.7631502840629,45.65066024782786],[-122.7631345860033,45.65066135992826],[-122.76311941974636,45.65066302085737],[-122.76310496585344,45.65066542088412],[-122.76309146058145,45.6506687992576],[-122.76308268763441,45.65067181279169],[-122.76306070496108,45.65068029388922],[-122.76304679544721,45.65068535454055],[-122.76303245743696,45.65069012821819],[-122.76301780411805,45.65069436939367],[-122.76300293610178,45.65069778230263],[-122.7629879432197,45.6506999964547],[-122.76297285421789,45.6507006357079],[-122.76295804369379,45.65069956944866],[-122.76294731780929,45.65069766424802],[-122.76293667097656,45.65069512293387],[-122.76292343609745,45.650691542362],[-122.76291019672679,45.65068747701236],[-122.76289722864738,45.65068281196992],[-122.76288702019247,45.65067852181341],[-122.7628636002147,45.65066783409775],[-122.76285049648965,45.6506615891302],[-122.76283806380611,45.65065514070593],[-122.76282678096617,45.65064835130369],[-122.76281723546792,45.65064104007356],[-122.76281016213339,45.6506329740456],[-122.76280622212256,45.65062439058487],[-122.7628043437453,45.65061512579601],[-122.76280249501245,45.65058534144222],[-122.76280050883734,45.65057530489446],[-122.76279718327416,45.6505664118448],[-122.7627926656466,45.65055762428956],[-122.76278737187462,45.65054889701636],[-122.76276270413695,45.65051095301693],[-122.76275092991852,45.65049505200886],[-122.7627453630587,45.65048695393428],[-122.76273985099611,45.65047726525464],[-122.76273511597626,45.65046724564225],[-122.76272280726022,45.65043652869957],[-122.76271848456707,45.65042648961335],[-122.76271361300327,45.65041677266538],[-122.76270788983662,45.65040753610004],[-122.76270282603335,45.6504008640951],[-122.7626921127253,45.65038774489018],[-122.76268529900385,45.65037820690228],[-122.76267899911876,45.6503682921405],[-122.76266687994725,45.6503481103294],[-122.76266053334979,45.65033822758788],[-122.76265361542377,45.65032875929447],[-122.76264580097913,45.65031994156016],[-122.76263744934194,45.65031233703249],[-122.7626286961578,45.65030504145734],[-122.76262026097729,45.65029755561105],[-122.76261197222217,45.65028874540726],[-122.7625904512829,45.65026316064305],[-122.76258386753018,45.65025482642386],[-122.76257780749529,45.65024634400598],[-122.76257257480873,45.65023768199161],[-122.76256836620163,45.6502288717784],[-122.7625611581198,45.65021113203636],[-122.76255707168355,45.65020246059719],[-122.7625524238003,45.65019451570153],[-122.76254229799041,45.65017869058622],[-122.76253747942722,45.65017014724507],[-122.76252819983034,45.65015262287341],[-122.76252305248376,45.65014389428117],[-122.76251694483814,45.65013497541679],[-122.76249659260708,45.65010882353742],[-122.76249016516121,45.65010011628887],[-122.7624844473844,45.65009132112501],[-122.76247462161184,45.6500725075327],[-122.76246943024782,45.65006326211917],[-122.76246298303903,45.65005404621815],[-122.76245571027847,45.65004506517165],[-122.76244067517558,45.65002739067896],[-122.7624338830137,45.65001850444982],[-122.7624245252634,45.65000425106344],[-122.76240487012497,45.64997704415328],[-122.76238910918333,45.64995232268956],[-122.76238317491254,45.64994445813708],[-122.76237749486502,45.64993813271015],[-122.76236530742156,45.64992564009975],[-122.76235823498531,45.64991775921659],[-122.76235142934873,45.64990957942391],[-122.76231974397203,45.64986983337588],[-122.76231320603338,45.64986021178116],[-122.7622959269389,45.64983059406326],[-122.76228985702251,45.64982109616994],[-122.76228422189075,45.64981341307951],[-122.76227825078905,45.64980614444165],[-122.76226225359046,45.64978880269256],[-122.76224933761331,45.64977168637584],[-122.762240145153,45.64976082956579],[-122.76223331885515,45.6497519231996],[-122.76220607924081,45.64971142348632],[-122.76219835911927,45.64970105207859],[-122.76218979458133,45.64969092996968],[-122.76218069824077,45.64968168198133],[-122.76217085180694,45.64967270715475],[-122.76216051489295,45.64966390124844],[-122.76212873339654,45.64963757583156],[-122.7621185465012,45.6496285206188],[-122.7621084144031,45.64961874827167],[-122.76209873864919,45.64960872285409],[-122.76208939617024,45.64959851846537],[-122.7620446600691,45.6495468088744],[-122.76203559876284,45.64953671813575],[-122.7620263119794,45.6495268766967],[-122.76201668922607,45.64951739193909],[-122.76200659306062,45.64950840013117],[-122.76199584831149,45.64950007584707],[-122.76196912253349,45.649482459583],[-122.76195811008641,45.64947485808144],[-122.76194736084572,45.64946702737197],[-122.76193700686376,45.64945898440959],[-122.76191767691546,45.6494431659941],[-122.7619074567825,45.64943571519861],[-122.76189716927585,45.64942939787772],[-122.76188621252433,45.64942350631603],[-122.76185170823427,45.64940666179637],[-122.76184038407179,45.64940078655938],[-122.76182797294783,45.6493936993498],[-122.76180386306392,45.64937903009165],[-122.76179167382385,45.64937197239372],[-122.76177906147726,45.64936546856004],[-122.76176795830033,45.64936056226887],[-122.76173398850784,45.64934684688127],[-122.76172321052108,45.64934173461587],[-122.76171079760049,45.64933460595311],[-122.76169894792358,45.64932678275966],[-122.76167594476411,45.64931086383231],[-122.76165280236575,45.64929565073405],[-122.76164102275743,45.6492883682138],[-122.7616291371479,45.64928143923745],[-122.76161716170685,45.64927499881783],[-122.76160510811235,45.64926921901785],[-122.76159298085602,45.6492643127183],[-122.76156623621338,45.64925580565968],[-122.7615245301297,45.64924083117373],[-122.76149258424155,45.64922750132834],[-122.76144399346951,45.64920890158254],[-122.76143200994365,45.64920376544182],[-122.76142055103386,45.64919824435685],[-122.76140937419513,45.64919240740396],[-122.7613635125049,45.64916789533504],[-122.76135212276542,45.64916133558856],[-122.76134149749224,45.64915425525637],[-122.76133135641099,45.64914598680871],[-122.76132208489896,45.64913707846086],[-122.76131333530809,45.64912775816477],[-122.76129617119794,45.64910865349965],[-122.76128716918049,45.6490992182807],[-122.76127764164859,45.64909011085951],[-122.76126766046747,45.64908122448167],[-122.76123694527125,45.64905518012088],[-122.7612134318687,45.6490342028282],[-122.76120373904678,45.64902622762427],[-122.76119351352392,45.64901846592867],[-122.76118292148841,45.6490108530607],[-122.76113969186198,45.64898087632314],[-122.76112933787999,45.64897327035769],[-122.76111946000516,45.64896552372604],[-122.76110542113388,45.64895374678412],[-122.76109612446902,45.64894634678905],[-122.76106733436247,45.64892452546393],[-122.76105810596957,45.64891711478951],[-122.76104427101585,45.64890530518297],[-122.76103489529923,45.648897725582],[-122.76100563986539,45.64887524989263],[-122.76099621204648,45.64886758613955],[-122.7609873205218,45.6488596969439],[-122.76097867693213,45.6488510730213],[-122.76096243449349,45.64883363740883],[-122.76094920230933,45.64881988170203],[-122.76093233913483,45.6488012968922],[-122.76092353744167,45.64879293419676],[-122.7609140871649,45.6487849570746],[-122.76090425869737,45.64877736678182],[-122.76088070576894,45.64876048124969],[-122.7608715465463,45.64875279612987],[-122.7608626783778,45.64874496029569],[-122.76084971568825,45.64873417864325],[-122.76084346341389,45.64872863113717],[-122.76082160650472,45.64870618238276],[-122.76081225953418,45.6486982222035],[-122.7607923546641,45.64868273765464],[-122.76078273730067,45.6486747259783],[-122.76077275791617,45.64866686689817],[-122.76076282973565,45.64866024052789],[-122.76073040145224,45.64864092030855],[-122.76071878533727,45.64863314537209],[-122.76069588099247,45.6486170667424],[-122.76067220319821,45.64860154951648],[-122.76066080088233,45.6485935849265],[-122.7606358142427,45.6485742703359],[-122.76062481976193,45.64856629129869],[-122.76061346775171,45.64855839012912],[-122.76058994626432,45.64854292124095],[-122.76057785314393,45.64853542322763],[-122.76056556239422,45.64852814688828],[-122.76055307132019,45.64852115627637],[-122.76054036824375,45.64851453428471],[-122.76052219173228,45.64850561767276],[-122.76050960094527,45.64849895109303],[-122.76049732726355,45.64849187381693],[-122.76048537517869,45.64848445743355],[-122.76047377164018,45.64847675029669],[-122.76046256785195,45.64846878003724],[-122.76045184286576,45.64846055544665],[-122.76044170537777,45.64845206647733],[-122.76042813273216,45.64843971859776],[-122.76041791798909,45.64843086351553],[-122.76040721096919,45.64842212837521],[-122.76038475488373,45.64840491995642],[-122.76034956248415,45.64837950890907],[-122.76024128854296,45.64830407134461],[-122.76020590120896,45.64827876072783],[-122.76018322054468,45.64826167534856],[-122.76017236440445,45.64825302621483],[-122.76016197179494,45.64824427848724],[-122.76014314310659,45.64822763833373],[-122.76013327870645,45.64821977353908],[-122.76012514356324,45.64821412236572],[-122.7600961881667,45.64819585887975],[-122.76007302061552,45.6481803679122],[-122.7600617575385,45.64817229964592],[-122.76005085468587,45.64816399274667],[-122.76004045578817,45.64815540765164],[-122.76003073781338,45.64814648407474],[-122.7600220439181,45.648137455624],[-122.76000554905286,45.64811893715353],[-122.75997311717613,45.64808433738237],[-122.75996543208888,45.64807562730719],[-122.75995827700764,45.64806679226271],[-122.75994508704433,45.64804836419801],[-122.75993820864419,45.64803927230544],[-122.75993001870377,45.64802990724009],[-122.75992109124647,45.64802074815068],[-122.75990230388062,45.64800254363178],[-122.7598930404534,45.64799324575421],[-122.75988440584686,45.64798391522012],[-122.75986810501774,45.64796464312195],[-122.75982955651227,45.64791509227844],[-122.75981383240153,45.64789547476676],[-122.75980567569876,45.64788585911271],[-122.75979722614521,45.64787644064329],[-122.75977040604407,45.64784839183154],[-122.75976225383286,45.6478389042778],[-122.75975595125283,45.64783053076294],[-122.75973901351816,45.64780505100493],[-122.7597332400458,45.64779677921823],[-122.75972202547781,45.64778200592466],[-122.75970759853436,45.64776169884103],[-122.75970086745792,45.64775304711816],[-122.75967918122863,45.64772716667144],[-122.75967216538626,45.64771840127818],[-122.75965269260587,45.6476918243814],[-122.75964590583389,45.64768318395146],[-122.7596251053435,45.64765885522137],[-122.75960176172254,45.64762931860545],[-122.75959370473272,45.64761957668078],[-122.75958524619604,45.64761007087669],[-122.75956282244991,45.64758671925957],[-122.75955445733797,45.64757663319168],[-122.75954675069114,45.64756623815325],[-122.7595253177868,45.64753464546371],[-122.75951809802686,45.64752444320908],[-122.75951054229701,45.6475146591911],[-122.75949950110385,45.64750149095531],[-122.75949449658937,45.6474947689933],[-122.75948880666037,45.64748489516816],[-122.75948430789742,45.64747444170997],[-122.75948064726265,45.64746357943071],[-122.75947752471872,45.64745245276699],[-122.7594688416032,45.64741875374533],[-122.7594653444618,45.64740784121631],[-122.75946106758272,45.64739733813276],[-122.75945564355504,45.64738743979894],[-122.75944862052614,45.6473783892463],[-122.75944092645572,45.64737134511196],[-122.75943211488111,45.64736490384477],[-122.75940344964039,45.64734694779583],[-122.75939453296289,45.64734074076526],[-122.75938607352785,45.6473338360395],[-122.75936985624203,45.64731993489918],[-122.7593468207432,45.64730321346062],[-122.75933756001095,45.64729586725446],[-122.7593282534646,45.64728790624682],[-122.75931877623836,45.64728020082929],[-122.75929523408969,45.6472638750117],[-122.75928592933998,45.64725690056972],[-122.75927751661736,45.64724988342365],[-122.75927048909688,45.64724294728722],[-122.75926545583633,45.64723622780615],[-122.7592631732172,45.64722988197772],[-122.75926389186945,45.64722494033212],[-122.75926674671541,45.64722065367871],[-122.75927130836041,45.64721730147281],[-122.7592785362052,45.64721467647813],[-122.75929467443927,45.64721103100091],[-122.75930151780513,45.6472081070831],[-122.75930518382977,45.64720487607838],[-122.75930758502655,45.64720081801153],[-122.75930860012282,45.64719615895859],[-122.75930812311739,45.64719110175991],[-122.75930627707949,45.64718582853243],[-122.75930320124793,45.64718050883324],[-122.75929905642123,45.64717525507245],[-122.75928915519016,45.647164523985],[-122.75927454139712,45.64714791616623],[-122.75926305374128,45.64713617526555],[-122.75925748688145,45.64713003101061],[-122.75925151577978,45.64712225146856],[-122.75923452953606,45.64709712745892],[-122.75922692439887,45.64708751606379],[-122.75921855569368,45.64707799886558],[-122.75920967405047,45.64706855074472],[-122.75918201851611,45.64704037593024],[-122.7591730712959,45.64703096108664],[-122.75916456335183,45.64702149223411],[-122.75914748188671,45.64700166654431],[-122.75913942579525,45.64699358240847],[-122.759113508501,45.64696998812945],[-122.7591052511869,45.64696190273304],[-122.75909759754067,45.6469535699066],[-122.75908290828914,45.64693651740672],[-122.75907517828612,45.64692809728559],[-122.75906585107853,45.64691903033088],[-122.75905587349067,45.64691020515188],[-122.7590454665081,45.64690153822561],[-122.75901357002729,45.64687579805593],[-122.75900330497855,45.64686709218876],[-122.75897541049237,45.64684206540371],[-122.75896577516262,45.64683419601858],[-122.7589556763022,45.64682681709526],[-122.75893528544354,45.64681264453588],[-122.75892582977687,45.6468053491329],[-122.7589174781397,45.64679756703379],[-122.75891039851692,45.64678884482662],[-122.75890453521306,45.64677954549163],[-122.75889944356203,45.64676988066245],[-122.75889001214985,45.6467502099982],[-122.75888492139714,45.64674056839976],[-122.75887905809329,45.64673131050436],[-122.75887197487727,45.64672265234239],[-122.75886552138027,45.6467165444658],[-122.75885834923105,45.6467107317461],[-122.7588507243309,45.64670502327293],[-122.75882055620872,45.64668324629026],[-122.75879979793915,45.64666876786087],[-122.75876342066172,45.64664455047344],[-122.75875426413403,45.64663747359105],[-122.75874558551006,45.64662994141088],[-122.75872048298775,45.64660609012834],[-122.7587118160419,45.64659816230647],[-122.75868469410686,45.646575404352],[-122.75867587624403,45.64656764985278],[-122.75866738087637,45.64655950097066],[-122.75865924752978,45.64655114045246],[-122.75863547810737,45.64652576373196],[-122.75862727648881,45.64651751750423],[-122.75860318996112,45.64649476579699],[-122.75859531173607,45.64648652333266],[-122.75857281253147,45.64646132430622],[-122.75856499898512,45.64645316975665],[-122.75855685845202,45.64644539640054],[-122.7585402414159,45.64643029053967],[-122.75853234163131,45.64642270055582],[-122.7585147274652,45.64640420287039],[-122.75850718431174,45.64639704368987],[-122.75847846337548,45.64637120029658],[-122.75846976139532,45.64636400594393],[-122.75844201962275,45.64634279088776],[-122.75842036752944,45.64632561825413],[-122.7584093694554,45.64631733054896],[-122.7583854598958,45.64630068856703],[-122.75836113711117,45.64628238426518],[-122.75831878783373,45.6462531960914],[-122.75830826137523,45.64624574738358],[-122.758298037649,45.64623815549075],[-122.75828827386017,45.6462303657768],[-122.75827427631141,45.64621831696366],[-122.75826396275362,45.64620986973052],[-122.75825316141066,45.64620154370019],[-122.75824198906346,45.64619331061275],[-122.75821888888592,45.64617703911441],[-122.75814797408077,45.64612862714001],[-122.75812536618002,45.64611215780242],[-122.75811465017699,45.64610373504537],[-122.75810452526542,45.64609512137448],[-122.75809519176963,45.64608625022152],[-122.75807745273771,45.6460667356897],[-122.75806872111316,45.6460576139594],[-122.75805059131409,45.64603944711067],[-122.75804184531648,45.6460301646073],[-122.75803378653008,45.64602057186917],[-122.75802637992054,45.64601006852546],[-122.75801985455833,45.64599919654222],[-122.75801395352524,45.6459880771237],[-122.75800847020874,45.64597681012224],[-122.7579878098555,45.64593195561495],[-122.75797431805826,45.64590539545471],[-122.75797029180916,45.64589482363704],[-122.7579672016046,45.6458839239992],[-122.75795792649927,45.64583932627146],[-122.75795490007506,45.64582849633136],[-122.75795091874173,45.64581806454424],[-122.75794553962982,45.64580821303172],[-122.7579385866695,45.6457992897089],[-122.7579302754565,45.64579104902629],[-122.75792101202931,45.64578344827972],[-122.75790712497334,45.64577342091964],[-122.7578932702567,45.64576305255081],[-122.7578827734426,45.64575573251891],[-122.75787160468869,45.64574857262755],[-122.75785990143716,45.64574163567722],[-122.75784776429936,45.6457349970288],[-122.7578236642969,45.64572265671441],[-122.75781213082698,45.64571606139614],[-122.75780052279688,45.64570810016394],[-122.75778966755497,45.64569945628794],[-122.75777928033536,45.64569038034231],[-122.7577589173245,45.6456717907261],[-122.7577484789009,45.64566267458355],[-122.7577381985808,45.64565434595988],[-122.75772766942734,45.6456463363624],[-122.75770967078229,45.64563331150095],[-122.75770255073537,45.64562785977283],[-122.75769339151273,45.64561966993355],[-122.75768497070524,45.64561087281016],[-122.75767706463243,45.64560164675645],[-122.75764702496932,45.64556329182863],[-122.75763910182852,45.64555398538203],[-122.75763066395307,45.64554506767085],[-122.75762149484895,45.64553670888531],[-122.75761182807818,45.64552925568613],[-122.75759169773099,45.64551510729078],[-122.75758218996201,45.64550775645408],[-122.75757399193672,45.6455003045071],[-122.75755129959434,45.64547657206522],[-122.75752777990357,45.64545368177323],[-122.75752052690596,45.64544582475327],[-122.75751358292881,45.64543712054792],[-122.75750033547331,45.64541931899934],[-122.75749259019895,45.64541002948513],[-122.75747623457256,45.64539161499058],[-122.75746841024642,45.64538225576264],[-122.75746219390469,45.64537403197495],[-122.75745044304246,45.64535749019436],[-122.75744440277047,45.64534941775344],[-122.75743791154424,45.64534165115226],[-122.75741916550086,45.64532249872305],[-122.75741099801833,45.6453131966326],[-122.7573878169924,45.64528358027842],[-122.75737953811874,45.64527372929994],[-122.75737082985039,45.64526440019687],[-122.75734327941895,45.64523692533563],[-122.75732621322518,45.64521883546613],[-122.75731733068365,45.64520998489881],[-122.75730846161684,45.64520202610672],[-122.75728031739898,45.64517883739691],[-122.75727122195673,45.64517093009737],[-122.75726177886648,45.64516194952395],[-122.7572266035349,45.64512528490503],[-122.75721754941516,45.64511664407916],[-122.75720801559503,45.64510853831882],[-122.75718355087658,45.64509009295252],[-122.75717392453001,45.64508192878316],[-122.75716500605586,45.64507333002749],[-122.75715802794275,45.6450655803444],[-122.75713822009072,45.64504177172874],[-122.7571309140925,45.64503417150853],[-122.75712120959251,45.64502566380752],[-122.75711066247274,45.64501756117409],[-122.757088635782,45.64500179865362],[-122.75707789103286,45.64499377954262],[-122.75706355302262,45.64498231640075],[-122.75705349638301,45.64497471994057],[-122.75703208234327,45.64495982218394],[-122.75697610652128,45.64492287922211],[-122.75694138753386,45.64489846199915],[-122.75692898898632,45.64489050630289],[-122.75691579992129,45.64488317862082],[-122.75690199730697,45.64487632822946],[-122.75685954472327,45.64485649298821],[-122.75684589122929,45.64484943158035],[-122.75683354658062,45.64484222572793],[-122.756821848719,45.64483453755847],[-122.75681084525507,45.6448263959604],[-122.75680062871537,45.64481780156161],[-122.75679220072138,45.64480974160323],[-122.75676845016359,45.64478484892253],[-122.75676012188258,45.64477682287227],[-122.7567500894975,45.6447682900115],[-122.756739363613,45.64476023946628],[-122.75672806819662,45.64475268002899],[-122.75671628589336,45.64474565063689],[-122.75668817581148,45.64473028243459],[-122.75665572866342,45.64471147332174],[-122.75664476113211,45.64470550213361],[-122.75662743712184,45.64469662259641],[-122.75661658098164,45.64469069662397],[-122.75658508335283,45.64467232522617],[-122.75657473476076,45.64466652736675],[-122.75655879774932,45.64465800830558],[-122.75654353716926,45.64464931151407],[-122.7565213874093,45.64463777670767],[-122.75651034082624,45.64463170126069],[-122.75650217783524,45.64462666643915],[-122.75648604319447,45.64461609061203],[-122.75646221178827,45.64460117957165],[-122.75645049326539,45.64459341851889],[-122.75642049222985,45.64457100641638],[-122.7564099747545,45.64456390729142],[-122.75639935487123,45.64455773386545],[-122.75638820408359,45.64455196174297],[-122.75635384891386,45.64453549256987],[-122.75634282209376,45.64452980020358],[-122.75631672064485,45.64451496136243],[-122.75630524826035,45.64450905609539],[-122.75628194955516,45.64449790184003],[-122.75627072510568,45.64449230241677],[-122.7562547746195,45.64448381535814],[-122.75622282962966,45.64446836795346],[-122.7562126319546,45.64446257949325],[-122.75620318976263,45.64445606001709],[-122.75619431171266,45.64444891628808],[-122.75618576963264,45.64444134738846],[-122.7561600894936,45.64441776585095],[-122.75615081887987,45.64441001230907],[-122.75612215992737,45.64438702549409],[-122.75611302765418,45.64437911933886],[-122.75610358186897,45.64437013173025],[-122.75607721541706,45.64434256348327],[-122.7560684119273,45.64433369205277],[-122.75605926617938,45.6443252665162],[-122.75604955179789,45.64431749160878],[-122.75602716308609,45.64430259367737],[-122.7560173382118,45.64429549137824],[-122.7559881851859,45.64427251707669],[-122.75597786174666,45.64426495066537],[-122.75596679360405,45.64425763043773],[-122.7559552250998,45.64425059281922],[-122.75590758654198,45.64422368456527],[-122.7558962048873,45.64421693583295],[-122.7558854242056,45.64421004893479],[-122.75587549063519,45.64420295416024],[-122.75585599539687,45.64418690942819],[-122.75583487510625,45.64417128483908],[-122.75580925605266,45.64415154794786],[-122.75578303063624,45.64412928890638],[-122.75576046765129,45.6441123938088],[-122.75575103084918,45.64410474133654],[-122.75572321990633,45.64408065535377],[-122.75571354594902,45.64407284963922],[-122.75570413968968,45.6440659175056],[-122.75568480614812,45.64405292744605],[-122.75566780193812,45.64404206261927],[-122.75566021566556,45.64403763190462],[-122.75564953379852,45.64403232760706],[-122.75562753495551,45.64402213350691],[-122.75561645962637,45.64401594432063],[-122.75560616133994,45.64400907749458],[-122.75559684401384,45.64400164042081],[-122.75558972127193,45.64399487784523],[-122.75557064285194,45.64397478354535],[-122.75556406089585,45.6439689560966],[-122.75554562387296,45.64395586176232],[-122.75553748423819,45.6439487217377],[-122.75551651306787,45.64392838123507],[-122.75550896991442,45.64392021878048],[-122.75550177351069,45.64391158530503],[-122.75549494990778,45.64390259699341],[-122.7554885494114,45.64389334930548],[-122.75548264298838,45.64388391697619],[-122.75547198447755,45.64386501337521],[-122.75546634665082,45.6438557958263],[-122.75546110138788,45.64384830283782],[-122.75543487507316,45.64381141566548],[-122.75542755021031,45.64380200404727],[-122.75541961539143,45.64379316330458],[-122.75539549562608,45.64377052165177],[-122.75538688976563,45.64376313792871],[-122.75537765598283,45.64375592628434],[-122.75536788410916,45.64374896333815],[-122.75535762804355,45.6437423414103],[-122.75534691473548,45.64373617417414],[-122.75533574508324,45.64373060168],[-122.75532315699117,45.64372529986549],[-122.75529821975887,45.6437155974557],[-122.75528686774862,45.64371032578512],[-122.75527700604346,45.64370416356961],[-122.75526860949047,45.64369627364675],[-122.75526171941227,45.64368727713622],[-122.75524925169442,45.64366751934956],[-122.7552435437991,45.64365906168327],[-122.75521756541941,45.6436232684136],[-122.75520956053191,45.64361324945929],[-122.7552008558568,45.64360423221042],[-122.7551911226107,45.64359562443551],[-122.75518058088083,45.64358738656884],[-122.75516938966905,45.64357950667804],[-122.75515765407818,45.64357200109198],[-122.75514543339705,45.64356491565704],[-122.75513274559198,45.64355832510898],[-122.75510166208649,45.64354376548404],[-122.75508919077541,45.64353762020703],[-122.75505172833313,45.64351857204216],[-122.75502638326569,45.64350606104317],[-122.75501345830541,45.64350009600688],[-122.75500027463028,45.64349445503385],[-122.75498670378127,45.64348917769023],[-122.75497292182818,45.64348420305699],[-122.7549315454262,45.64346984689486],[-122.75491816142676,45.64346485655913],[-122.75490521939851,45.64345955534751],[-122.7548928954111,45.64345379441644],[-122.75488374427333,45.64344889954008],[-122.75486584174801,45.64343867079202],[-122.75485402261383,45.64343228685151],[-122.7548045452046,45.64340730751834],[-122.75479231374369,45.64340075400564],[-122.75478060420399,45.64339405730087],[-122.75474620771176,45.64337336741097],[-122.75473460237659,45.64336668263552],[-122.75472272305525,45.64336032443612],[-122.75471042871227,45.64335445044902],[-122.7546962407207,45.64334863863653],[-122.75468160536808,45.64334332422519],[-122.75465189987827,45.64333305526378],[-122.75463726003407,45.64332755746543],[-122.75462262198653,45.64332134873339],[-122.75460831811226,45.64331466457978],[-122.75459424061343,45.64330765887252],[-122.75455248422409,45.64328598670678],[-122.75453844894608,45.64327894456999],[-122.75452420885222,45.64327221268078],[-122.75450965434797,45.64326595369991],[-122.75449474680582,45.64326033154435],[-122.75447951946343,45.64325532172092],[-122.75446407023719,45.64325090790096],[-122.75442526122029,45.64324110931987],[-122.75441286267272,45.64323724000405],[-122.75439869264744,45.64323161784561],[-122.75438509844224,45.64322511204289],[-122.75437189230925,45.6432180096072],[-122.75433308149574,45.64319547699988],[-122.75431995710942,45.64318827533098],[-122.7543064967532,45.64318160937451],[-122.7542925270522,45.64317575295365],[-122.75428036386326,45.64317161671863],[-122.75424281338607,45.64316046973333],[-122.75422974020375,45.64315584739841],[-122.75421687004068,45.64315076031737],[-122.7541660730063,45.64312896562414],[-122.75415323428427,45.64312391873487],[-122.754140206916,45.64311936485274],[-122.75412691993463,45.64311538813448],[-122.75410042322702,45.64310796664297],[-122.75407881245621,45.64310113173546],[-122.75404258879072,45.64309051228591],[-122.75403066814688,45.64308666682502],[-122.7540191238972,45.64308234656906],[-122.75400779973471,45.64307726450561],[-122.75399692742484,45.64307167875718],[-122.75397601374668,45.64305980385862],[-122.75395902390973,45.64304964600754],[-122.75395106842957,45.64304433156789],[-122.75394214007397,45.64303754187117],[-122.75392504154084,45.64302375333924],[-122.75391592992892,45.64301738191217],[-122.75390445844275,45.64301095019289],[-122.75389216230313,45.64300522689791],[-122.7538549037784,45.642989667295],[-122.75383394967608,45.64298010481001],[-122.75382331901302,45.64297646345346],[-122.75381287789448,45.64297435576236],[-122.75380193910927,45.64297314804777],[-122.753779537821,45.64297172994085],[-122.75376853974699,45.64297071189328],[-122.75375147085826,45.64296810742485],[-122.75371368861576,45.64296302472304],[-122.75370073041776,45.64296084543518],[-122.75368809291835,45.6429579840992],[-122.75367610490088,45.64295411601993],[-122.75366375755732,45.64294831923879],[-122.75365227978293,45.64294132667444],[-122.75364134369266,45.64293359051327],[-122.75363245755786,45.64292676940129],[-122.75362401159755,45.64291965436702],[-122.75361628878105,45.64291218197854],[-122.75360961519682,45.64290426305444],[-122.75360328207405,45.64289410140697],[-122.75359827935625,45.64288344486394],[-122.75358977141218,45.64286174113217],[-122.75358511274914,45.64285121144672],[-122.75357939497232,45.64284126332259],[-122.7535741667774,45.64283436243851],[-122.75356836455897,45.64282779378584],[-122.7535629010054,45.64282211255068],[-122.75355701614197,45.64281670074347],[-122.7535505347972,45.64281162619243],[-122.75352559486997,45.64279418430379],[-122.75351629730679,45.64278801821926],[-122.75350685331821,45.64278210963003],[-122.75349547435849,45.64277541473542],[-122.75348466403237,45.64276856408633],[-122.75347594139097,45.64276188991542],[-122.75346756100767,45.64275490926055],[-122.75345881770501,45.64274803976779],[-122.75344956056601,45.64274189879979],[-122.75343954794386,45.64273635509653],[-122.7534289945359,45.64273154368674],[-122.75341809886983,45.64272765109826],[-122.75340705408341,45.64272492666296],[-122.75339635694499,45.6427236215969],[-122.75338613501539,45.64272362787727],[-122.75337685811346,45.64272491347413],[-122.75336905624519,45.64272752109408],[-122.7533623736778,45.64273233690053],[-122.75335886306168,45.64273838491976],[-122.75335896007971,45.64274494667445],[-122.75336272491907,45.64275108889821],[-122.75336938592692,45.6427567965182],[-122.75337807353401,45.6427618629097],[-122.75339745199132,45.64277095314667],[-122.75340610097088,45.64277554097123],[-122.75341262543478,45.64278052948426],[-122.75341594560808,45.64278572462156],[-122.75341639207079,45.64279096309308],[-122.75341389834755,45.64279566207886],[-122.75340865128797,45.64279924189936],[-122.7534012824077,45.6428018501439],[-122.75339253641009,45.64280355087246],[-122.7533830672687,45.64280435162173],[-122.75337347505808,45.64280420214853],[-122.75336433200512,45.64280299443028],[-122.75335621123494,45.64280055889645],[-122.75334985834925,45.64279707390984],[-122.75334433820186,45.64279285725795],[-122.75333906598942,45.64278843712115],[-122.7533334569088,45.6427843353997],[-122.7533269036988,45.64278108969492],[-122.75332046098157,45.64277939964228],[-122.75331319001768,45.64277862213017],[-122.75330224224932,45.64277895813095],[-122.75329060906638,45.64278074427354],[-122.75327869830404,45.6427838474135],[-122.75326827425347,45.64278753588549],[-122.7532468691969,45.64279633973263],[-122.75323271354462,45.64280188342995],[-122.75321788056266,45.64280718093556],[-122.7532024834387,45.64281211480638],[-122.75318697851688,45.64281651107587],[-122.75312358889886,45.64283263533325],[-122.75310816033387,45.64283711450212],[-122.75309323302879,45.64284215136859],[-122.75307934776944,45.64284771453057],[-122.75306590897279,45.64285373867187],[-122.7530396089962,45.64286612672112],[-122.75301430165804,45.64287768261753],[-122.75300222919893,45.64288366467712],[-122.75299225161108,45.64288921653029],[-122.7529658923457,45.64290521892747],[-122.75295861778851,45.64290987519711],[-122.75293017263505,45.64293004461538],[-122.75292285855201,45.64293538481541],[-122.75290929219457,45.64294596661215],[-122.75289894989072,45.64295336425972],[-122.7528877182547,45.64296043783929],[-122.75287557842198,45.64296701652498],[-122.75286252590087,45.64297295838066],[-122.7528487322697,45.64297837394101],[-122.75283439336114,45.64298339760602],[-122.75281966009214,45.64298813802606],[-122.75278946142724,45.64299708754613],[-122.75274350631227,45.64301005084489],[-122.7527131513405,45.64301893944199],[-122.75269825367982,45.6430236132872],[-122.75268365605645,45.64302853081003],[-122.75266946806487,45.64303377993545],[-122.75265582984223,45.64303947182576],[-122.75264429188071,45.64304492631791],[-122.7526219283217,45.64305622907904],[-122.7526106427868,45.6430616107174],[-122.75258264589267,45.64307341213545],[-122.75257042161826,45.64307884087482],[-122.75253424376682,45.64309583990993],[-122.75252216412119,45.64310121966039],[-122.75250998386429,45.64310617171837],[-122.75249764460551,45.64311049888086],[-122.75246348526852,45.64312038917792],[-122.75245084866742,45.64312460957338],[-122.75243861002,45.64312923379506],[-122.75242698582022,45.64313429073235],[-122.75241791463247,45.64313880881532],[-122.75240163087132,45.64314748700028],[-122.75239435811079,45.64315161695671],[-122.75237375165648,45.64316447282583],[-122.75236359530386,45.64316962145303],[-122.75234156681648,45.64317963295029],[-122.75231062254989,45.64319495510345],[-122.75229674986696,45.6432009879999],[-122.75228214595539,45.64320654107771],[-122.75226692040962,45.6432115515335],[-122.7522521601912,45.6432157110028],[-122.75223707118937,45.64321946350582],[-122.75222179264303,45.64322294092971],[-122.75216122553162,45.64323592176119],[-122.75213573224218,45.64324191571514],[-122.75212466499788,45.64324427084146],[-122.75211121003156,45.64324624286719],[-122.75209756911397,45.64324728037879],[-122.75208394616267,45.6432474059855],[-122.7520705531801,45.64324657823718],[-122.7520576228299,45.64324468345961],[-122.7520454156235,45.64324153575477],[-122.75203405193515,45.6432369768579],[-122.75202337096644,45.64323138735717],[-122.75199236381778,45.64321264117257],[-122.75196815961075,45.64319964526285],[-122.75195697917871,45.64319283737198],[-122.75194623263297,45.6431856488915],[-122.75192565043321,45.64317131400598],[-122.7519008425583,45.64315533429406],[-122.75189176957394,45.64314819919173],[-122.75188270826766,45.64314048566834],[-122.75187345651855,45.64313310186225],[-122.75186355888077,45.6431257576214],[-122.75185322196678,45.64311853396231],[-122.7518277259824,45.64310172522878],[-122.75181808346613,45.6430944588602],[-122.7517989628253,45.64307922900075],[-122.75178810668511,45.64307147150544],[-122.7517539177037,45.64304885217025],[-122.75174308761463,45.64304110157905],[-122.75171996228427,45.64302318685064],[-122.75170166899181,45.64300979523415],[-122.75167921110972,45.64299251041632],[-122.7516650446777,45.6429823217793],[-122.75165558541775,45.64297510249795],[-122.75162738819928,45.64295219485494],[-122.75161765854646,45.64294472121471],[-122.75160754800793,45.64293762439581],[-122.75159181760898,45.64292772338981],[-122.7515807737209,45.64292048777251],[-122.75157006400609,45.64291289731312],[-122.75155983399162,45.6429049884377],[-122.7515459972413,45.64289345641234],[-122.75153676525514,45.64288616552329],[-122.75150795179236,45.64286465208806],[-122.75149865512752,45.64285739887752],[-122.75148466386696,45.64284597046868],[-122.75147417783265,45.64283804462677],[-122.75144220230013,45.64281514697627],[-122.7514326217676,45.64280745790058],[-122.75142429528323,45.64279957350377],[-122.75141772051367,45.64279180466503],[-122.75141177905638,45.64278409297668],[-122.75140550432413,45.64277678134809],[-122.75139791805154,45.6427700117162],[-122.7513893274625,45.64276417974584],[-122.75136876682225,45.64275336365615],[-122.75135030823981,45.64274126259597],[-122.75133674817059,45.64273289962382],[-122.7513157132199,45.64271908338317],[-122.75130461183963,45.64271220132523],[-122.75127786001046,45.64269716102992],[-122.75126714490574,45.64269062062296],[-122.75125694812895,45.64268403562441],[-122.75123534723964,45.64266906000968],[-122.7512230097775,45.64266152289962],[-122.7512174312396,45.64265764349515],[-122.75121111787978,45.64265186678062],[-122.75120517911745,45.64264555183487],[-122.75119865555186,45.64263913514585],[-122.75119085098866,45.64263291189263],[-122.75117327814509,45.64262000377412],[-122.75116462647057,45.64261269463633],[-122.75114694403251,45.64259708782133],[-122.75113687481648,45.64258916068816],[-122.75112611120277,45.64258148539835],[-122.75111481398977,45.64257411282333],[-122.75110310445004,45.64256710827952],[-122.75108001774723,45.64255422777973],[-122.75106915172553,45.64254744304792],[-122.75105997633322,45.64254062377305],[-122.7510514046088,45.64253338936182],[-122.75103493220143,45.64251855501619],[-122.75102648983439,45.64251138403436],[-122.75101654548418,45.64250387893326],[-122.75100618072246,45.64249701380599],[-122.75098435884757,45.64248377090972],[-122.75097464087281,45.64247661813666],[-122.75096515556174,45.64246924491978],[-122.75094413318747,45.6424539401533],[-122.75091868571208,45.6424329603885],[-122.7509122681477,45.64242833108506],[-122.75089310618436,45.64241476284627],[-122.75087962157365,45.64240609334038],[-122.75086533836063,45.64239654017641],[-122.75085799103992,45.64239183048041],[-122.75083624911511,45.64237884380097],[-122.75082682578777,45.64237211934015],[-122.75080817047429,45.64235766931452],[-122.7507861860043,45.6423422728232],[-122.75077536040682,45.64233434942221],[-122.75076620387912,45.64232683048047],[-122.75074067016551,45.64230420016786],[-122.75072828688931,45.6422939894241],[-122.75071119823767,45.64227833353291],[-122.75069903145544,45.64226829675282],[-122.75068667333207,45.64225770226715],[-122.75067717813951,45.64225012867519],[-122.75066703885491,45.64224265619741],[-122.75065646658236,45.64223535643104],[-122.75064565086632,45.64222831541826],[-122.7506347641834,45.64222163678664],[-122.75060945235364,45.64220746808653],[-122.75058968133256,45.64219543159707],[-122.75058304817249,45.6421910811262],[-122.75057636919834,45.64218566297757],[-122.75055733030423,45.64216717456982],[-122.75055033602143,45.64216120436662],[-122.75054225567543,45.64215545146664],[-122.75052546167119,45.64214454293666],[-122.75051779275361,45.64213876742534],[-122.75051219984266,45.64213358227672],[-122.75050143892386,45.64212257765141],[-122.75049314477886,45.64211519810751],[-122.7504838975213,45.64210801514118],[-122.75047397652732,45.64210113049594],[-122.75046361805377,45.6420946609887],[-122.75044883358082,45.64208611829869],[-122.75043466355554,45.64207741922375],[-122.7504145421915,45.64206590838162],[-122.75040500747308,45.64205985714955],[-122.75039559762048,45.64205266538345],[-122.75037398056146,45.64203543553849],[-122.75036626672812,45.64202875688388],[-122.75035104387734,45.64201472504931],[-122.75034308929547,45.64200785358165],[-122.75033459033457,45.64200140478919],[-122.75032365065104,45.64199445230173],[-122.75031233547173,45.64198764552048],[-122.75030154490852,45.64198058061076],[-122.75028049378817,45.64196578631387],[-122.75027000685554,45.6419586422673],[-122.75025575418525,45.64194937792922],[-122.7502281741094,45.64192981422464],[-122.75022136128628,45.64192466987988],[-122.75020359889818,45.64190923935493],[-122.75018509719656,45.64189476031969],[-122.75017648504796,45.64188765583117],[-122.75016506476575,45.64187692247473],[-122.75014232750756,45.64185772238532],[-122.75013323565858,45.6418506825812],[-122.75012343593716,45.64184382177026],[-122.75011316729513,45.64183725048925],[-122.75009845109416,45.64182832088152],[-122.75008426489919,45.64181887564353],[-122.75006202710435,45.6418046779513],[-122.75005115569274,45.64179725126173],[-122.75001212119872,45.64176749110948],[-122.74999855124803,45.64175661516257],[-122.74997579782021,45.64173974195927],[-122.74996638617095,45.64173205399211],[-122.74994778924794,45.64171603304633],[-122.74993803354397,45.641708136563],[-122.74992700852049,45.64170010630367],[-122.74991546427077,45.64169239006871],[-122.74986904652341,45.64166317375327],[-122.74985864942232,45.64165601333883],[-122.74984540466176,45.64164616925906],[-122.74983250575261,45.6416370216869],[-122.74981426276582,45.64162328493858],[-122.74979399856964,45.64161087463274],[-122.74975756020677,45.64158681081572],[-122.74974718646186,45.64157892875935],[-122.74973717473804,45.64157054740019],[-122.74970809357733,45.64154486507402],[-122.7496983594329,45.64153692083455],[-122.74968842855743,45.6415297233488],[-122.74967308084082,45.64151995210099],[-122.74966418123131,45.64151353214284],[-122.74963775099901,45.64149250680603],[-122.74961587163195,45.64147665787843],[-122.74957548247846,45.64144389734268],[-122.7495537621132,45.64142759054994],[-122.74954033589297,45.64141660839592],[-122.74953031608429,45.64140876211469],[-122.7495197716595,45.64140097863782],[-122.74949772790072,45.64138573324473],[-122.74945981450418,45.64136118949718],[-122.7494500004097,45.64135373260224],[-122.74943094624419,45.64133789996481],[-122.74942116987894,45.64133030929101],[-122.74941097759374,45.64132284548334],[-122.74936935056178,45.64129362834712],[-122.7493595427555,45.64128635295125],[-122.74935033951543,45.64127904363941],[-122.74933112095822,45.64126295222187],[-122.74931020278855,45.64124852891661],[-122.7493009672091,45.64124150724955],[-122.74928263349246,45.6412264552544],[-122.74927299007788,45.64121891857838],[-122.74926188061276,45.64121103772637],[-122.74923882804595,45.64119560323653],[-122.74922767815664,45.6411876652281],[-122.74921797275833,45.64118003999081],[-122.74919943153085,45.64116470786571],[-122.74919004593275,45.64115749337464],[-122.7491540764905,45.64113329119028],[-122.74913408628046,45.64112073129822],[-122.74910389749702,45.64109726957807],[-122.74908699120337,45.64108298879927],[-122.74907802062695,45.64107577366961],[-122.74907062120394,45.64107045276212],[-122.74905518006253,45.6410599528868],[-122.74903377770087,45.64104448067184],[-122.74902299701915,45.64103700363682],[-122.74900291697762,45.64102427163512],[-122.74899375236508,45.64101776306389],[-122.74897157026577,45.64099854132607],[-122.74895157915742,45.64098297300114],[-122.74889839619766,45.64094397931498],[-122.7488753409359,45.64092629315775],[-122.7488551980123,45.64091264855998],[-122.74883663342864,45.64089783827954],[-122.74881524184676,45.64088217132121],[-122.7488017248967,45.64087151627966],[-122.74879214346586,45.64086435764821],[-122.74877156935091,45.640850128311],[-122.74872933954941,45.64082187625783],[-122.7487052287672,45.64080442558491],[-122.74868490887546,45.6407912155758],[-122.7486751486799,45.64078442372186],[-122.74866533548372,45.64077640086686],[-122.74865563457699,45.6407680482785],[-122.74864680054448,45.64076094364711],[-122.74861850540965,45.64073968062055],[-122.74860919347341,45.64073244095227],[-122.7485905372616,45.6407170126112],[-122.74858121364726,45.64070961780867],[-122.74857152441861,45.64070277381567],[-122.74854864702327,45.64068930188058],[-122.74853830292278,45.64068264065127],[-122.7485287062206,45.64067554103354],[-122.74852009317365,45.6406680827912],[-122.74850881033368,45.6406565986662],[-122.74850288953763,45.64065097373654],[-122.74849424325303,45.64064414732216],[-122.74848459804184,45.6406375733882],[-122.74846395745153,45.64062445064052],[-122.74845373282699,45.64061753252562],[-122.74844398341119,45.64061018418666],[-122.7484163584196,45.6405872265877],[-122.74840713811152,45.64057993916688],[-122.74839322051282,45.64056964960091],[-122.7483709908028,45.64055223716137],[-122.7483527720705,45.64053874383591],[-122.74832961709575,45.64052062983905],[-122.74831880766793,45.64051282300041],[-122.74830738828405,45.64050521148869],[-122.74827186620274,45.64048270730938],[-122.74826034351261,45.6404750436642],[-122.74824936250656,45.64046715203046],[-122.7482348169855,45.64045574448823],[-122.74822492563591,45.64044831510761],[-122.74817339377964,45.64041224720624],[-122.74816375665328,45.64040502570954],[-122.74814983186805,45.64039410427745],[-122.7481270766436,45.64037765209594],[-122.74811317701119,45.64036676771443],[-122.74810368990349,45.64035966994086],[-122.74806352622711,45.64033142015264],[-122.74805381274396,45.64032421120682],[-122.74803138360794,45.64030669568807],[-122.74801699439372,45.64029622644487],[-122.74800759891417,45.64028883347098],[-122.747988927431,45.64027349419329],[-122.74797906303085,45.6402660151712],[-122.74796855543698,45.6402589249217],[-122.7479354552137,45.64023866975278],[-122.7479248577883,45.64023173337633],[-122.74791498081173,45.64022443146371],[-122.74790495920644,45.64021573586815],[-122.74789516756984,45.64020676643365],[-122.74788535886525,45.64019835472197],[-122.74787497523889,45.64019003031049],[-122.74786416850601,45.64018177435715],[-122.7477967535372,45.64013295775014],[-122.74778601417799,45.64012487073889],[-122.74776169139335,45.64010554757566],[-122.74775069511595,45.64009766970737],[-122.7477282812513,45.64008248425431],[-122.74771391269832,45.64007211860059],[-122.74768994025666,45.64005603311711],[-122.74767995907553,45.64004872678512],[-122.74765075304903,45.64002575451049],[-122.74764076917296,45.64001833323779],[-122.74763040171626,45.64001133716744],[-122.74760278121622,45.63999476428411],[-122.7475915594617,45.63998759611957],[-122.74758066738886,45.63998026779621],[-122.74755603019389,45.63996246514174],[-122.74753545158737,45.63994916574808],[-122.74752542459215,45.63994226639198],[-122.74751683849466,45.63993537896834],[-122.74750871323292,45.63992810276802],[-122.74749280317093,45.63991321434657],[-122.74748451082255,45.63990600597503],[-122.74746246347051,45.63988901162472],[-122.74744890429965,45.63987793118997],[-122.74743881262573,45.63987014373199],[-122.74742821430202,45.63986251894351],[-122.74740083544879,45.63984421128188],[-122.74739297968162,45.63983855109865],[-122.74738416092045,45.63983133266836],[-122.74735945006364,45.63980840301353],[-122.74735089001729,45.63980095721719],[-122.7473401515564,45.63979261955712],[-122.74731827129101,45.63977634745584],[-122.74730438692997,45.63976499064686],[-122.74729416410204,45.63975702605666],[-122.74728349391309,45.63974923544151],[-122.74727252189022,45.63974165334552],[-122.74726137918744,45.63973432875839],[-122.74725018438237,45.6397273295122],[-122.7472238799142,45.63971198819659],[-122.74720311266148,45.63969847457042],[-122.74719629714343,45.63969389968342],[-122.74717334339127,45.63967685313869],[-122.74716315559765,45.63966972827055],[-122.74715273064876,45.63966273906547],[-122.74712786258674,45.63964664781179],[-122.74710819038036,45.63963142141164],[-122.74708579538031,45.63961524661509],[-122.74707643942664,45.63960783847757],[-122.74704893211432,45.63958447347547],[-122.74703940368411,45.63957694160317],[-122.74701616786095,45.63956013243514],[-122.74699289161363,45.6395420181219],[-122.74696412845655,45.6395207784996],[-122.74695491892824,45.6395135016174],[-122.74694113338191,45.63950190985482],[-122.74693195709126,45.63949462606132],[-122.74690348947992,45.63947334057148],[-122.74689439044441,45.6394662439409],[-122.7468808195954,45.63945516719102],[-122.74685981967903,45.63943954316652],[-122.74684978370067,45.63943169786459],[-122.74683343346418,45.63941717673602],[-122.74682478628127,45.63941025470366],[-122.74681473592986,45.63940370323569],[-122.74679254125414,45.63939119822663],[-122.74678094130886,45.63938435532877],[-122.74676951114517,45.63937713118728],[-122.74675834688284,45.63936959237824],[-122.74674755901458,45.6393617885196],[-122.74673727689783,45.63935375227128],[-122.74672337906209,45.63934218811107],[-122.74671409587195,45.63933497526958],[-122.7467044659321,45.63932794959423],[-122.74666807158668,45.63930234286558],[-122.74666068743504,45.63929730065626],[-122.74663348554994,45.63928078157642],[-122.7466219754362,45.63927348582072],[-122.74659913936334,45.63925812930694],[-122.74658799755888,45.6392501294723],[-122.74657718274118,45.63924192927946],[-122.74656682786089,45.63923352558795],[-122.74653929539575,45.63920921203064],[-122.74652993764545,45.6392016468197],[-122.74650995013036,45.63918747609967],[-122.74650045044623,45.63918024942048],[-122.74649103161047,45.63917171696345],[-122.7464733114432,45.63915475693477],[-122.74645498670971,45.63913876414377],[-122.74642614090762,45.63911517911806],[-122.746400008916,45.63909470810413],[-122.74639275861334,45.63908958548185],[-122.74638207315303,45.63908315456786],[-122.74634986675348,45.6390659231816],[-122.74631960251155,45.63904911825685],[-122.7463089502889,45.63904261636504],[-122.7463005384646,45.63903613457104],[-122.74628449724857,45.63902216793552],[-122.74627457086467,45.63901449780975],[-122.74625371737366,45.63899904450047],[-122.74623116966002,45.6389808803874],[-122.7462028862033,45.6389594414505],[-122.74619379704927,45.63895206777079],[-122.74618018487779,45.63894028809558],[-122.74617012823818,45.63893210293138],[-122.74615961615272,45.63892413508238],[-122.7461488067249,45.63891639836645],[-122.7461378391936,45.63890891979136],[-122.74611171079523,45.63889184662832],[-122.74607889803285,45.63886668626718],[-122.74605910814714,45.63885245076992],[-122.74604891496362,45.63884561848363],[-122.74603854571029,45.63883910149424],[-122.74601673102194,45.63882615795711],[-122.74600674804418,45.63881938910402],[-122.74599707139194,45.63881130253124],[-122.74597904040758,45.63879469349218],[-122.74594855428175,45.63876736745434],[-122.74593509841714,45.63875670824215],[-122.74590400323356,45.63873077778904],[-122.74589339143513,45.63872244373825],[-122.74588234844533,45.63871418945293],[-122.74587098385867,45.63870599985908],[-122.74584760700002,45.63868977768902],[-122.74582372528819,45.6386737414274],[-122.74579961181104,45.6386579243629],[-122.74577543814674,45.63864244583186],[-122.74575134982238,45.63862755204407],[-122.74573939414428,45.63862044776935],[-122.74571123285841,45.63860442970235],[-122.74570316329222,45.63859930326678],[-122.7456720923632,45.63857827118359],[-122.74566466239746,45.63857287529669],[-122.74564477279876,45.63855644267919],[-122.74563444576627,45.63854868330144],[-122.7456233875051,45.63854107152289],[-122.745588404413,45.63851823492494],[-122.74557692214704,45.63851030784276],[-122.74556592497132,45.63850203782398],[-122.74555615130106,45.63849385824855],[-122.74553731632446,45.63847696647619],[-122.74552763428234,45.63846860789226],[-122.7455175686596,45.63846060417637],[-122.74549629206209,45.63844515699521],[-122.7454634262991,45.63842243906675],[-122.74545268334663,45.63841475629714],[-122.7454422503129,45.63840691838877],[-122.74543210294345,45.63839880098013],[-122.74540272444042,45.63837438970697],[-122.74539276032726,45.63836668117913],[-122.74538244227791,45.63835943931998],[-122.74535510744214,45.63834225670206],[-122.74534408870687,45.63833477176943],[-122.74533347062021,45.63832704941819],[-122.74532339870925,45.63831912042467],[-122.74530991050524,45.63830776708884],[-122.74530121481331,45.63830090019125],[-122.74526158653285,45.63827161992646],[-122.74524096929875,45.63825849536843],[-122.74523392291367,45.63825424445811],[-122.74521083710918,45.63824199608126],[-122.74519973123732,45.63823540113847],[-122.74518879335044,45.6382282069972],[-122.74517799380409,45.63822061653017],[-122.74514622218913,45.63819716741364],[-122.74512168470716,45.63817942009263],[-122.74510231702962,45.6381627989326],[-122.74509347491227,45.63815565063256],[-122.74505529920764,45.63812718743834],[-122.74503391660893,45.63811015800348],[-122.74502323833514,45.63810197271798],[-122.74500871976352,45.63809148798862],[-122.74499932967385,45.63808409346766],[-122.74498092229535,45.63806875861111],[-122.74497133996624,45.63806128055093],[-122.7449473702195,45.63804459277809],[-122.74492368793366,45.63802711423222],[-122.74491237904256,45.63801936671494],[-122.74487690457198,45.63799675036482],[-122.74486531540651,45.63798912155279],[-122.74485423738243,45.63798128860965],[-122.74484394448591,45.6379731397347],[-122.74482434324642,45.63795514361798],[-122.74481548136612,45.63794756441968],[-122.7447775302403,45.63791744672173],[-122.74473949736782,45.63788398001178],[-122.74472947486422,45.6378759360144],[-122.74471815070173,45.6378677532071],[-122.74470638007654,45.63785989700749],[-122.74468251363608,45.63784460856855],[-122.74467091369084,45.63783692195113],[-122.74465988507409,45.63782903873916],[-122.7446359422768,45.63781049048099],[-122.74460692669315,45.63778911516194],[-122.7445977153682,45.63778185124484],[-122.74458401067024,45.6377703257021],[-122.74457517484112,45.63776327659106],[-122.74455712858534,45.63774948110824],[-122.74454839426585,45.63774258022507],[-122.74453503721588,45.63773151569637],[-122.74452054739037,45.63772025519961],[-122.74451349292043,45.63771449995936],[-122.74450715350947,45.63770879308187],[-122.74448331401844,45.637685912178],[-122.74447496058464,45.63767715903169],[-122.74446743449919,45.63766817160415],[-122.74446119300458,45.63765888206084],[-122.74445650110385,45.63764912144372],[-122.74445300935236,45.63763923457748],[-122.74444724216825,45.63762018377916],[-122.74444382857016,45.63761163726642],[-122.74443926153525,45.63760424079786],[-122.74443285475066,45.63759846481847],[-122.74442395154787,45.63759458820387],[-122.74441313313689,45.63759210408017],[-122.74438837466934,45.63758825070475],[-122.74437557187991,45.63758541233395],[-122.7443652439491,45.63758200113845],[-122.74435515047857,45.63757776336683],[-122.74434524745087,45.63757294837355],[-122.74433329087445,45.63756641741795],[-122.74432220027394,45.63755918864541],[-122.74431268172518,45.63755105038677],[-122.74430619229557,45.63754311751488],[-122.74430124257837,45.6375345477508],[-122.7442976591987,45.63752556469705],[-122.74429536400314,45.63751636934479],[-122.74429438034791,45.6375071526357],[-122.74429482950556,45.63749810488348],[-122.74429694144479,45.63748942959202],[-122.74430172317705,45.6374801739364],[-122.74430886747851,45.63747201493901],[-122.74431827643276,45.63746533888094],[-122.74432890709586,45.63746073052238],[-122.74434096158863,45.63745712774922],[-122.74436839613745,45.63745048686293],[-122.74438330457791,45.63744713281618],[-122.74439859480233,45.63744416253752],[-122.74441422189503,45.63744191520036],[-122.7444305954877,45.63744065774672],[-122.74444703735236,45.63744039959813],[-122.74447304986802,45.63744127328346],[-122.74448587421702,45.63744149625854],[-122.74449990949503,45.63744096802751],[-122.74451354142944,45.63743943735089],[-122.74452649244091,45.6374367283609],[-122.74453920270388,45.63743242337176],[-122.74455080893733,45.6374269136886],[-122.74456124736093,45.63742050896386],[-122.74456790926709,45.63741559094881],[-122.74457422711846,45.63741052218957],[-122.74458040123943,45.63740540318194],[-122.74458622681405,45.63740007187627],[-122.74459238656196,45.63739314080131],[-122.74459741622923,45.63738568463444],[-122.74460108584717,45.63737779947471],[-122.7446034511113,45.63736750492396],[-122.74460346458605,45.63735697357782],[-122.74460116579722,45.63734649750241],[-122.74459637867506,45.63733636813623],[-122.7445898506179,45.63732782158026],[-122.7445815807274,45.6373197040153],[-122.74457200019489,45.6373119457225],[-122.74456143690546,45.63730449771013],[-122.74455013340425,45.63729733359811],[-122.7445382648627,45.63729044396507],[-122.7445259507568,45.63728384137315],[-122.74451326744331,45.63727755471499],[-122.74450025265146,45.63727163486689],[-122.74447290523926,45.6372603504099],[-122.74445945117127,45.63725454173383],[-122.74444688553704,45.63724846485808],[-122.74443471067003,45.6372419973029],[-122.74441118738598,45.63722837693197],[-122.744377127762,45.63720774820334],[-122.74434968333173,45.63719152559956],[-122.7443391074659,45.63718410395143],[-122.74432967515541,45.6371759913905],[-122.74432168284433,45.63716715337081],[-122.74431522934734,45.63715732169249],[-122.74431018800196,45.63714686316664],[-122.74430614558317,45.63713595428962],[-122.74430276881603,45.63712473135934],[-122.74429406054766,45.63709015683094],[-122.74429089039302,45.6370785790134],[-122.74428721269025,45.63706708159065],[-122.74428342898628,45.63705715253884],[-122.74427913054767,45.6370473371719],[-122.74427436229014,45.63703764616773],[-122.74426914307833,45.63702809334458],[-122.74426346482741,45.63701870068623],[-122.7442389560915,45.63698253133671],[-122.74422567450004,45.63696049556442],[-122.74421908535743,45.6369503114834],[-122.74421208209148,45.63694019209525],[-122.74419730121178,45.63692007390957],[-122.74416715734411,45.63687996062515],[-122.74413839508534,45.63683870227572],[-122.74413081959257,45.63682879077038],[-122.74412263773692,45.6368193622766],[-122.74410329611057,45.63680006937874],[-122.74409508640717,45.63679067793835],[-122.74408746150706,45.63678083300376],[-122.74406558214,45.6367501273992],[-122.7440458335768,45.63672392781591],[-122.74403960376029,45.63671516635394],[-122.74402570592453,45.63669408143067],[-122.74401935842876,45.6366853187078],[-122.74399972484987,45.63665992809669],[-122.74399382471509,45.6366516615735],[-122.74398509488717,45.63663831240161],[-122.74398036885046,45.63663192203322],[-122.74397247445573,45.63662333454275],[-122.74395482076378,45.63660648303358],[-122.74393752639793,45.63658835960006],[-122.74392842556578,45.63657980727698],[-122.74391860608141,45.6365713347224],[-122.74388720547064,45.63654581906594],[-122.74387677962348,45.63653706699778],[-122.74386671040743,45.63652806054412],[-122.74385665017456,45.63651822372881],[-122.74384705347242,45.63650810677511],[-122.743837766689,45.63649780201485],[-122.74381052168475,45.63646650834458],[-122.74380126454572,45.63645617593986],[-122.74379171994585,45.63644601123858],[-122.74378174684956,45.63643610154809],[-122.74377180429599,45.63642699269626],[-122.74374111874418,45.63640053480856],[-122.74373138190484,45.6363916947822],[-122.74372232329351,45.63638269395817],[-122.74371490141263,45.63637440226964],[-122.74369440545111,45.63634986323612],[-122.74368287916771,45.63633733556163],[-122.74367760156541,45.63633099980463],[-122.74367164753171,45.63632216604842],[-122.74366656037225,45.63631300504483],[-122.74365705619654,45.63629466042112],[-122.74365172739029,45.63628596233131],[-122.74363799933612,45.63626773138697],[-122.74363256902022,45.63625884611563],[-122.74362794089988,45.63624984715458],[-122.7436248515936,45.63624321931556],[-122.7436224710581,45.63623654625165],[-122.74362090439625,45.63622781863151],[-122.74361997553827,45.63621869592734],[-122.74361864064173,45.63620972208436],[-122.7436164981598,45.6362005315411],[-122.7436133199203,45.63619129954085],[-122.74360869000334,45.63618159582636],[-122.74359818510439,45.63616307717233],[-122.74359284641668,45.63615427730778],[-122.7435871052837,45.63614562944524],[-122.74358077216093,45.63613727679463],[-122.74357416056046,45.63612976393048],[-122.74355206110613,45.63610641946204],[-122.74354359089132,45.63609781870066],[-122.74350520048934,45.63606368824347],[-122.7434957933317,45.63605599886935],[-122.7434848500549,45.63604804066117],[-122.74346194840507,45.6360326342705],[-122.74345080480394,45.63602476839187],[-122.74343618112945,45.63601356157003],[-122.74342616581235,45.63600621890838],[-122.74341575343988,45.63599895978506],[-122.743383628787,45.6359773067762],[-122.74336287950055,45.63596261013636],[-122.74333044223397,45.63593760611694],[-122.7433161437496,45.63592733077325],[-122.74330248935729,45.63591659062196],[-122.74327553091558,45.6358960104035],[-122.74326669957804,45.63588887814536],[-122.74325763018693,45.63588094817874],[-122.74324013729341,45.63586500407447],[-122.74323124127713,45.63585741454357],[-122.74321763180059,45.63584674284358],[-122.74318104970726,45.63581571764379],[-122.74317345175659,45.63580902442922],[-122.74315772495093,45.63579414810373],[-122.74314924485462,45.63578726707951],[-122.74314004790276,45.63578135021456],[-122.74310909195808,45.6357648162796],[-122.74309736445203,45.63575781842195],[-122.74307420139243,45.63574288869283],[-122.74306229422334,45.6357355378302],[-122.74305093682322,45.6357291128124],[-122.7430168763009,45.63571070392949],[-122.74300648548801,45.63570438003585],[-122.74297846254271,45.63568476829807],[-122.74295102260403,45.63566226909197],[-122.74294053836638,45.63565477877641],[-122.74292920072915,45.63564775829269],[-122.74291706808293,45.63564132635555],[-122.74290414402094,45.63563563999482],[-122.74289045369602,45.6356307928006],[-122.74284753039511,45.63561811798545],[-122.74283356967727,45.63561331789867],[-122.742820211729,45.63560770062825],[-122.74280744397389,45.63560135976376],[-122.74279522419107,45.63559444793803],[-122.74278354519406,45.63558707884047],[-122.74277244111883,45.63557932972955],[-122.74276198562723,45.63557125085472],[-122.74274800784141,45.63555946607196],[-122.74273858631071,45.6355518840371],[-122.74269934879742,45.63552193401592],[-122.74269002248812,45.63551421755825],[-122.74267630072215,45.63550206531298],[-122.74266552543035,45.63549305994923],[-122.74265418150493,45.63548419465487],[-122.74264241267639,45.63547543739595],[-122.74261802072148,45.6354581427163],[-122.74254247689765,45.6354069018417],[-122.74251766363291,45.63538974281519],[-122.74250555434284,45.63538109483467],[-122.7424937540733,45.63537237713128],[-122.74248237421524,45.63536356772075],[-122.74247155760095,45.63535463708124],[-122.74245777834278,45.635342626757],[-122.74244841520259,45.6353350371554],[-122.74243868644804,45.63532764289877],[-122.74240914534992,45.63530603799599],[-122.74238605056229,45.63528787833889],[-122.74236345254302,45.63527128647102],[-122.74234956279207,45.63526024657922],[-122.74233875695754,45.63525207783679],[-122.74232733308207,45.63524395808678],[-122.74230326002909,45.63522781845487],[-122.74224080286233,45.63518765119665],[-122.74221671094472,45.63517150526727],[-122.74220527179787,45.63516338236495],[-122.74219444170883,45.63515521046777],[-122.74218050434719,45.6351441667844],[-122.74215776888566,45.63512757738647],[-122.74214388003307,45.63511661158513],[-122.74213427434773,45.63510936804968],[-122.74209323571229,45.63508047995166],[-122.74208313685187,45.63507309508334],[-122.74207343235186,45.63506555820771],[-122.74205931712379,45.63505389517495],[-122.74204974377781,45.63504645063122],[-122.74200962052564,45.63501753235073],[-122.74200003909483,45.63501023980866],[-122.74198594003643,45.63499893982124],[-122.74196399778732,45.63498257901831],[-122.74195339587031,45.63497405660026],[-122.74194420700327,45.63496544310252],[-122.74193575385645,45.63495636227734],[-122.74192789269942,45.63494696550295],[-122.7419205211242,45.63493738280145],[-122.74191356996052,45.63492773351685],[-122.74189599981187,45.63490138861226],[-122.74189076263377,45.63489434165283],[-122.74188267869452,45.63488580100568],[-122.74187324818067,45.6348776472837],[-122.74186289869029,45.63486973978654],[-122.74182989458676,45.63484628989585],[-122.74181933309393,45.63483817511206],[-122.7418095630169,45.63482969538478],[-122.74180170904638,45.63482172883678],[-122.74178047017813,45.63479714641061],[-122.74176694604152,45.63478233828248],[-122.7417606614278,45.63477494269671],[-122.74175449988326,45.63476657602296],[-122.74174317931404,45.63475002294479],[-122.74173434528156,45.63473812932298],[-122.741728964373,45.63472970422773],[-122.74171842803304,45.63471176360101],[-122.74171236350654,45.63470255648068],[-122.74170562344696,45.63469337636839],[-122.7416982321088,45.63468429801164],[-122.74169017511903,45.63467540306726],[-122.74168139049388,45.63466678324236],[-122.74167229325496,45.63465887320293],[-122.74166268936628,45.63465118928922],[-122.74163296950341,45.63462842773784],[-122.7416030295533,45.63460381570469],[-122.7415929360828,45.63459581583372],[-122.74158248867603,45.63458816206158],[-122.74157147622896,45.6345810321495],[-122.74155972626504,45.63457454230188],[-122.74154745617658,45.63456854490813],[-122.74150017065665,45.63454724875321],[-122.7414888482908,45.63454268223948],[-122.74147509418549,45.63453792351718],[-122.74144714580038,45.63452924337054],[-122.74143358123959,45.6345245889169],[-122.74142074431418,45.63451921273986],[-122.74140844637795,45.63451254826445],[-122.7413970054345,45.63450502764491],[-122.7413861268364,45.63449698504685],[-122.74136509727559,45.6344804965866],[-122.74135453218952,45.63447259971164],[-122.7413436796426,45.63446531086746],[-122.74132353132907,45.63445357170575],[-122.74131417627369,45.63444739716573],[-122.74130503861065,45.63443948897972],[-122.74129735172674,45.63443063922208],[-122.74129112280858,45.63442108469821],[-122.74128659440123,45.63441183167646],[-122.74127810442347,45.63439287211641],[-122.74127276573576,45.63438375853554],[-122.74126641734163,45.63437490876906],[-122.74125916434403,45.6343664208059],[-122.74125105525196,45.63435841838846],[-122.74124208198057,45.63435105540971],[-122.74123218254616,45.63434452470675],[-122.74122142971218,45.63433896509743],[-122.7411986673012,45.63432885026278],[-122.74118851005029,45.63432395082038],[-122.74115175637877,45.63430508105377],[-122.74113977554782,45.63429808992325],[-122.74111597468438,45.63428347450048],[-122.74108192134857,45.63426487858676],[-122.74107101220777,45.63425843392817],[-122.74104508054046,45.63424152894452],[-122.74103405731361,45.63423495488752],[-122.74102260109879,45.63422857241081],[-122.74101074333704,45.63422244495617],[-122.7409984921132,45.63421665166855],[-122.74098582766432,45.63421129493415],[-122.74097270148138,45.63420650414884],[-122.74095761247956,45.63420196587339],[-122.74094208420155,45.63419802118525],[-122.74089464596803,45.63418727881815],[-122.74087908445236,45.63418329581268],[-122.74086392717858,45.63417870037505],[-122.74084893339815,45.63417314451811],[-122.74083439865687,45.63416689268654],[-122.74082018012255,45.63416015530555],[-122.74076419980898,45.63413153995735],[-122.74074990222294,45.63412466375406],[-122.74073524441245,45.63411819646646],[-122.74072021469942,45.63411229764124],[-122.74070480230411,45.63410684165133],[-122.74068910514282,45.63410171229169],[-122.74065714577996,45.63409210243579],[-122.74062475432744,45.63408298503718],[-122.74054344421782,45.63406071382975],[-122.74051143724424,45.63405151665261],[-122.74049575984591,45.63404672334111],[-122.7404804309939,45.63404172525659],[-122.74046559531696,45.63403644199747],[-122.74045144056305,45.63403076929295],[-122.74043821466711,45.63402457083716],[-122.74042672970621,45.6340180846939],[-122.74041639818212,45.63401114315045],[-122.74039918286802,45.63399772551069],[-122.74039023295285,45.63399163697528],[-122.74038020056776,45.63398637569624],[-122.74034587055085,45.63397148192718],[-122.74031289070186,45.63395606868421],[-122.74030442497859,45.63395190161801],[-122.74029226089134,45.63394514913584],[-122.74026828305979,45.63393095824234],[-122.74025149085217,45.63392177172231],[-122.74023894138764,45.633914462706],[-122.74022649972093,45.6339067114794],[-122.74021413441106,45.63389865560458],[-122.74015267167933,45.63385733915577],[-122.74012312249637,45.63383875566345],[-122.74011493255593,45.63383325253647],[-122.74010756277735,45.63382779086617],[-122.74008981116901,45.63381417217793],[-122.74004572454982,45.63378171118164],[-122.74002393501429,45.63376507050108],[-122.74001349838731,45.63375656611391],[-122.74000355583374,45.63374788584624],[-122.73999014578317,45.6337353720373],[-122.73997999482047,45.63372644930413],[-122.7399693228349,45.63371767481073],[-122.739946888309,45.63370043800568],[-122.7399116842313,45.63367503347929],[-122.7398034381379,45.63359950513365],[-122.73977971902114,45.6335825698004],[-122.73975653799525,45.63356544978823],[-122.739734336133,45.63354802763438],[-122.73972381326774,45.63353915449463],[-122.73970518580202,45.63352251122947],[-122.73969579032246,45.6335144898473],[-122.73968591514252,45.63350694962134],[-122.73967472932064,45.6334997743454],[-122.73966270537055,45.63349347155916],[-122.73965068950531,45.63348832518351],[-122.73962589959673,45.63347857263396],[-122.73961300517915,45.63347268881684],[-122.73960042517189,45.63346618313726],[-122.73958815149017,45.63345916614823],[-122.73957619671039,45.63345171448305],[-122.73956459946005,45.6334438727398],[-122.73955342531623,45.63343565473736],[-122.73954277219529,45.63342704351579],[-122.73953286916759,45.63341816972879],[-122.73952342877227,45.63340898626538],[-122.73951430997381,45.63339958734711],[-122.73947894869096,45.63336121087466],[-122.73946070300924,45.63334234141199],[-122.739451607567,45.63333358256205],[-122.73941483053926,45.633299479316],[-122.73940622647545,45.6332909861648],[-122.73939817936713,45.63328243773552],[-122.73939089223356,45.63327380073643],[-122.73937688659997,45.63325428865132],[-122.73936970097603,45.63324510516109],[-122.73936125950729,45.6332367853699],[-122.73935258357825,45.63323060001738],[-122.73934279463661,45.6332249699452],[-122.73932151893743,45.63321397990197],[-122.73930885359025,45.63320693964],[-122.739296256515,45.63319939246303],[-122.73928372681343,45.63319146085951],[-122.7392588452767,45.6331748105815],[-122.7392219236202,45.63314873181525],[-122.73918569456481,45.63312198468837],[-122.73916240035116,45.63310382997681],[-122.73915124776688,45.63309460940122],[-122.73914060452742,45.63308525000354],[-122.73913066556712,45.63307570404437],[-122.73912168780417,45.6330659080808],[-122.73911400271692,45.633055778569],[-122.7391084367554,45.6330464229337],[-122.73910371970186,45.63303689141538],[-122.73909496651773,45.63301795525979],[-122.73909002219038,45.63300889296348],[-122.7390840636651,45.63300035642596],[-122.73907622137267,45.63299207114662],[-122.73906702082755,45.63298459743415],[-122.73904502467951,45.63297026370764],[-122.73903521597491,45.6329633031899],[-122.73902562735758,45.63295585083068],[-122.73899716423779,45.63293219222173],[-122.73898742560179,45.63292437867246],[-122.73895959938757,45.632903704389],[-122.73893748915347,45.63288640012157],[-122.73892396232192,45.63287635537755],[-122.73891058730567,45.63286585522299],[-122.73890129603069,45.63285897760814],[-122.7388813794825,45.63284536245334],[-122.73884298458897,45.63282005427451],[-122.73883510366895,45.63281511575487],[-122.73882320188976,45.63280865396955],[-122.7388105131864,45.63280263942673],[-122.7387705246815,45.63278549781917],[-122.73875741376993,45.63277952221928],[-122.7387448589155,45.63277311696337],[-122.73873306403584,45.63276608669641],[-122.73872220070912,45.63275849925841],[-122.73871238302137,45.63275041306728],[-122.73870481830836,45.63274311520498],[-122.73869085309894,45.63272832726314],[-122.7386837195773,45.63272125741699],[-122.73867599586245,45.632714697001],[-122.73866699474333,45.632708524782],[-122.73863780488648,45.63269149244412],[-122.73861240771679,45.63267462844579],[-122.73860105840149,45.63266765344387],[-122.7385892293858,45.63266087568091],[-122.73857696917881,45.63265441010883],[-122.73856430023835,45.63264838801163],[-122.73853675789174,45.63263651341653],[-122.73852422819016,45.63263024005637],[-122.7385122213081,45.63262332849234],[-122.73850079743261,45.63261585787145],[-122.73849006615822,45.63260786713896],[-122.73848018648673,45.6325993562947],[-122.73847138120033,45.63259028450839],[-122.73846360268827,45.63258032576829],[-122.73845681142471,45.63256990533374],[-122.73843856664132,45.63253762389684],[-122.73843205385548,45.63252704139069],[-122.73842473348422,45.63251681441763],[-122.73841756672489,45.63250844112521],[-122.73840963460096,45.63250045917157],[-122.73840103682537,45.63249287797917],[-122.73839184167011,45.63248572707144],[-122.73838141492462,45.6324785315638],[-122.73836025241314,45.63246478880125],[-122.73835031974104,45.63245775912377],[-122.73834139138545,45.63245029664682],[-122.73833424349073,45.63244279208251],[-122.73832786275726,45.63243488361366],[-122.73831545971814,45.63241859053105],[-122.73830767761282,45.63240945527183],[-122.7382911144756,45.6323912607557],[-122.73828310689318,45.63238198101624],[-122.73827581886128,45.63237241672084],[-122.73826985225115,45.63236306034329],[-122.7382589745514,45.63234382621417],[-122.7382534463191,45.63233468152038],[-122.738247496777,45.63232564675246],[-122.73824111155196,45.63231677718812],[-122.7382342547114,45.63230813878393],[-122.73822686696649,45.63229980817498],[-122.7382188557908,45.63229187707228],[-122.7382117025062,45.63228562565902],[-122.73819692611808,45.63227332886579],[-122.73818748482445,45.63226476960264],[-122.7381783893822,45.63225585354508],[-122.73814300294653,45.63221892733272],[-122.73813377635024,45.6322099283511],[-122.73812410059632,45.63220126794488],[-122.7381137259531,45.63219296998423],[-122.73810286711793,45.63218514879402],[-122.73809166422804,45.63217780625892],[-122.73807565624966,45.63216793036236],[-122.73805115200535,45.63215126156367],[-122.73803957541628,45.63214376198457],[-122.73799082204918,45.6321143685748],[-122.7379788681677,45.63210688029761],[-122.73796736524046,45.63209920608451],[-122.73795653155817,45.63209126113397],[-122.73791533032765,45.63205782612136],[-122.73790667416158,45.63205025177881],[-122.73789840786434,45.63204229551446],[-122.73787447045694,45.63201790722668],[-122.7378659220887,45.63201009669075],[-122.73785539922349,45.63200163286764],[-122.73782192350441,45.63197735574648],[-122.73781134763857,45.63196895473446],[-122.73780273099837,45.63196122899332],[-122.73777847019747,45.63193729420208],[-122.7377700601698,45.63192957411002],[-122.73775976547665,45.63192108326385],[-122.7377387565771,45.63190454819001],[-122.73772901614447,45.63189595620617],[-122.73771998627923,45.63188659723644],[-122.7377112501631,45.63187693172254],[-122.73770209543203,45.63186727939835],[-122.73769244393262,45.63185763649493],[-122.73767217434656,45.63183838397563],[-122.73762020680735,45.6317905808632],[-122.73758807945954,45.6317595885949],[-122.73758007277542,45.63175266687286],[-122.73755650996551,45.63173426045271],[-122.73754941956297,45.63172916102773],[-122.73752273331083,45.63171258129768],[-122.73749975530416,45.63169775413777],[-122.7374769165364,45.63168202932867],[-122.7374657675454,45.63167387514056],[-122.73745493206644,45.63166552559244],[-122.73744453047377,45.63165696560829],[-122.73741653447792,45.6316321066581],[-122.73740681560487,45.63162431240071],[-122.73739535220354,45.63161629765658],[-122.73735513911986,45.63159107875026],[-122.73734668866798,45.63158629716342],[-122.73733402152412,45.63158012356384],[-122.73732096630812,45.63157413715659],[-122.73728917133695,45.63155865980967],[-122.73725096688622,45.63154190728388],[-122.7372381928429,45.63153603394223],[-122.7372244863483,45.63152910842363],[-122.73721108348425,45.63152175826457],[-122.73719791058892,45.63151409276567],[-122.7371849083735,45.6315061954727],[-122.73715924979403,45.63148994986071],[-122.73713385711591,45.63147336377824],[-122.73704544492564,45.63141479672641],[-122.73702003068794,45.63139832243531],[-122.7369943846849,45.63138225707588],[-122.73698142648693,45.63137448100055],[-122.73696834252482,45.63136695807536],[-122.73695509866258,45.63135977121842],[-122.7369308261836,45.63134746291505],[-122.73691910137252,45.63134127358496],[-122.73690803143326,45.63133475069748],[-122.73689757684,45.63132759398845],[-122.73687736564442,45.63131283205612],[-122.73685224695242,45.63129664041051],[-122.7368408661961,45.63128898932865],[-122.73680697815031,45.63126501656022],[-122.73679540515452,45.63125716634481],[-122.73678348361237,45.63124963712217],[-122.73677105721706,45.63124260477962],[-122.7367585356003,45.63123639973375],[-122.73673283390173,45.63122444192125],[-122.73671922083189,45.63121752578665],[-122.73670586198533,45.63121020259801],[-122.73667967878973,45.63119471761257],[-122.73665393936189,45.6311785498032],[-122.73661574748759,45.63115369315354],[-122.7365778376843,45.63112853371509],[-122.73654034290263,45.63110320654409],[-122.7365158844724,45.63108618628173],[-122.73649233783217,45.63106895871805],[-122.73648112775574,45.63106022338326],[-122.736470463855,45.63105137309196],[-122.73645671424127,45.63103935493562],[-122.7364475136961,45.63103188661627],[-122.73638605725259,45.6309859051403],[-122.73637086314785,45.63097583806966],[-122.73634804234639,45.6309602248725],[-122.73633603546429,45.63095253479812],[-122.73632340155814,45.63094537175854],[-122.73631016667906,45.63093854039271],[-122.73626942358935,45.63091846779348],[-122.73625630728789,45.63091140588525],[-122.73624386202795,45.63090387284716],[-122.73623326909413,45.63089647989042],[-122.73622320975956,45.63088873641265],[-122.73620367769036,45.63087297494253],[-122.73619372615364,45.63086533134093],[-122.73616949499717,45.63084808674869],[-122.73614631576785,45.63082976232209],[-122.73613553328951,45.63082158728026],[-122.73612432411142,45.63081357807495],[-122.73611276009875,45.63080575417956],[-122.7361008861673,45.63079814825917],[-122.73608872567331,45.63079080931136],[-122.7360762804134,45.63078380706355],[-122.73606353331951,45.63077723260095],[-122.73604511605954,45.63076852046313],[-122.73603219648913,45.63076213382263],[-122.73598153330374,45.63073533781547],[-122.73596893263526,45.63072896436288],[-122.73595630142403,45.6307230023635],[-122.73593004276997,45.63071123415004],[-122.73591873387883,45.63070504851876],[-122.73590841493119,45.63069829062005],[-122.73588874631804,45.63068313214387],[-122.73587491675424,45.6306734450645],[-122.73586510086314,45.63066622733806],[-122.73585561734869,45.63065856549122],[-122.73584669977285,45.63065050286774],[-122.73582911974273,45.63063269473642],[-122.73582149574094,45.63062577224703],[-122.73579860936242,45.6306067234616],[-122.73579162855437,45.63060125707961],[-122.7357803591891,45.63059347524236],[-122.73574557103142,45.63057173471302],[-122.7357143599652,45.63055150431026],[-122.73568771503555,45.63053516293873],[-122.73567733859572,45.63052809784134],[-122.73564711298135,45.63050565749811],[-122.73563653531887,45.63049846676165],[-122.73562411611006,45.6304909839222],[-122.7355984745986,45.63047683738277],[-122.73558608772916,45.63046966862884],[-122.73557459827666,45.63046208653359],[-122.73556454253537,45.63045379145635],[-122.73555731199566,45.6304458305681],[-122.7355511908753,45.63043729489655],[-122.73554578840718,45.63042837980465],[-122.735535761412,45.63041009167509],[-122.73553048830128,45.6304010377516],[-122.73552460164122,45.63039225959665],[-122.73551838619774,45.6303844526032],[-122.73549082498653,45.63035359398746],[-122.73548337615618,45.63034612557673],[-122.73547519699551,45.63033925267808],[-122.73546656149068,45.6303335136406],[-122.7354571624179,45.63032850580223],[-122.73544720189801,45.6303242209969],[-122.73542344415368,45.63031619978511],[-122.7354117965977,45.63031178808674],[-122.73539978612239,45.63030578960861],[-122.73538817899058,45.63029876594209],[-122.73534214931541,45.63026818179345],[-122.73531822538278,45.63025259227],[-122.7352936483749,45.63023720815687],[-122.73528107016432,45.63022971900069],[-122.73526824132377,45.63022244782188],[-122.7352550971745,45.63021547377115],[-122.73524104572682,45.63020859394648],[-122.73518357959979,45.63018253704267],[-122.73516962247524,45.63017575269737],[-122.73515615403416,45.63016858767399],[-122.73514366745172,45.63016116509581],[-122.73513163362018,45.63015341460643],[-122.73509655979822,45.63012988170701],[-122.7350847164095,45.63012249932724],[-122.73507255411886,45.63011565781018],[-122.73506137368686,45.63011010783224],[-122.73503908558634,45.63009956193041],[-122.73502859955202,45.63009394787638],[-122.7350181242975,45.63008728852842],[-122.73499798406883,45.6300732097307],[-122.73498763278181,45.63006658430204],[-122.73496646577877,45.63005364753313],[-122.73495634356215,45.63004699320582],[-122.73494702174445,45.6300399720196],[-122.734937786165,45.63003156506354],[-122.7349223459219,45.63001651947979],[-122.73491530582501,45.63001035575824],[-122.73490205926785,45.62999977277484],[-122.73487547901692,45.62997695719517],[-122.73486601167212,45.62996950255427],[-122.73485813883696,45.62996393937002],[-122.7348418236348,45.62995304040201],[-122.73481893006978,45.62993703493386],[-122.73480705793497,45.62992923604343],[-122.73479826432666,45.62992399825396],[-122.73478017225682,45.62991377457503],[-122.73473646382838,45.62988807371412],[-122.73472526004015,45.62988199980867],[-122.73470737548115,45.6298729709272],[-122.73469484308463,45.62986626695189],[-122.73468250562252,45.62985919297563],[-122.73467035411167,45.6298518256366],[-122.7346466529612,45.62983643261893],[-122.73463515901716,45.62982847604026],[-122.73462396870366,45.62982036869634],[-122.7346131574792,45.62981211498428],[-122.73460282146357,45.62980370610946],[-122.73458873138831,45.62979168077555],[-122.73457815642078,45.62978339062458],[-122.73456697149719,45.62977532661883],[-122.73455532663617,45.62976743347819],[-122.73453111075106,45.62975198892614],[-122.73448123269323,45.62972159921654],[-122.734456623346,45.62970624511062],[-122.73444466048134,45.62969842922702],[-122.73443306143442,45.62969046885967],[-122.73442196185074,45.62968231438187],[-122.73441152971536,45.62967390611577],[-122.73440287265097,45.62966616875092],[-122.73438642719309,45.62965063810947],[-122.73437805848789,45.62964321232176],[-122.73436920289582,45.62963627589013],[-122.73435881747284,45.62962943180098],[-122.73433715459976,45.62961660046651],[-122.7343129665624,45.62960128653573],[-122.73429695229582,45.62959196047672],[-122.73428563981146,45.62958494802811],[-122.73427455909243,45.62957745815663],[-122.73426381344498,45.6295695404888],[-122.73425397779094,45.62956168877952],[-122.73423460831678,45.6295456580721],[-122.73422461905083,45.62953784593531],[-122.73421410337211,45.62953042515809],[-122.7342016069082,45.62952279833448],[-122.7341885175562,45.62951564641961],[-122.7341619759328,45.62950180556139],[-122.73414922075408,45.62949466243847],[-122.7341373081951,45.62948705571197],[-122.7341272919797,45.62947949609853],[-122.73410837256151,45.62946379705095],[-122.7340982692095,45.62945601442757],[-122.73408782359937,45.62944861499795],[-122.73407718485149,45.62944166346568],[-122.73406229527562,45.62943239203256],[-122.73403299043443,45.62941261414261],[-122.73402546075572,45.62940733358804],[-122.73400138141453,45.62938891634661],[-122.73399058546144,45.62938121537739],[-122.73397936730015,45.62937358476432],[-122.73396781855888,45.62936607664707],[-122.7339560057129,45.62935875196011],[-122.73394397816956,45.62935168231711],[-122.73393177006486,45.62934495440832],[-122.73391444964784,45.62933585319849],[-122.73390265117492,45.6293290385976],[-122.73389139528442,45.62932180750607],[-122.73388076012974,45.62931424284483],[-122.73386647062853,45.62930326899588],[-122.73385592081384,45.62929576338203],[-122.7338448284167,45.62928864912957],[-122.73383328237034,45.62928202737732],[-122.73382134645517,45.62927602690442],[-122.73379841965249,45.62926611280515],[-122.7337874880538,45.62926094468285],[-122.73377976883054,45.62925662901456],[-122.7337722014226,45.62925203505751],[-122.73374302414219,45.62923375847976],[-122.73373348313554,45.62922730821711],[-122.73371187236476,45.62921150984474],[-122.73370121565054,45.62920398977018],[-122.73369040622272,45.62919694272254],[-122.73368009086832,45.62918978385597],[-122.7336707429995,45.62918189440198],[-122.73365261140378,45.62916556833596],[-122.73361744505534,45.62913634800159],[-122.73361067265643,45.62913103475504],[-122.73358560786336,45.6291135747875],[-122.73357521435553,45.62910582038414],[-122.73356513076646,45.62909771670481],[-122.73353952249266,45.6290750062943],[-122.73353089866595,45.62906771046615],[-122.73352190563162,45.62906086191025],[-122.73351232869238,45.62905467421226],[-122.73350083295169,45.62904870763745],[-122.73347697549437,45.62903814143373],[-122.73346569534937,45.62903259260545],[-122.73345562164175,45.6290262126773],[-122.73344754668567,45.62901897777756],[-122.73344072667602,45.62901079807428],[-122.73343477982884,45.6290019323827],[-122.73342937556411,45.62899259554469],[-122.7334190368535,45.62897322582545],[-122.73341355084206,45.62896350641265],[-122.73340747104423,45.62895396352062],[-122.73340047586309,45.62894475105703],[-122.7333924772638,45.62893612783794],[-122.73338359741722,45.62892784761153],[-122.73337415522528,45.62891978473908],[-122.73335471658083,45.62890385498738],[-122.73334526989731,45.62889576258635],[-122.73333639184735,45.62888742581645],[-122.73332840851943,45.62887870710297],[-122.73332086177274,45.6288684248112],[-122.73331448014096,45.62885765064097],[-122.73330893304406,45.62884652970497],[-122.73330395278414,45.62883518010374],[-122.73328564152537,45.62878939722001],[-122.73328054987434,45.62877831961602],[-122.73327484108073,45.62876761515818],[-122.73326824295496,45.62875743838303],[-122.73326255841583,45.62875016575681],[-122.73324910524614,45.62873449100459],[-122.73324143632856,45.62872609830127],[-122.73323323650666,45.62871814219319],[-122.73319887325208,45.6286896691798],[-122.73316199651137,45.6286620743715],[-122.73314766209437,45.62865078064249],[-122.73313682661541,45.62864290744577],[-122.73310253432777,45.62861976590744],[-122.73309147696492,45.62861181732267],[-122.73308113016948,45.62860353076637],[-122.73307187033554,45.62859474290692],[-122.73306413224766,45.628585545461],[-122.73305741195104,45.62857589948018],[-122.7330396477663,45.62854611094706],[-122.73303340267843,45.62853647877976],[-122.73302641827712,45.62852730708045],[-122.73301829301536,45.62851881760349],[-122.73300967098527,45.62851183643057],[-122.73300015333483,45.62850536786705],[-122.7329699825177,45.62848668146002],[-122.73296057446171,45.62847993020401],[-122.73295078372347,45.62847146647601],[-122.73294176463799,45.62846242040595],[-122.73292435259283,45.62844359766534],[-122.73291514935276,45.62843428774689],[-122.7329062766927,45.62842622480345],[-122.73287802827028,45.62840265474319],[-122.73286891665835,45.62839461692321],[-122.73286040601934,45.62838628007877],[-122.73285183878646,45.62837648643661],[-122.73284405668117,45.62836631084681],[-122.73283676056442,45.62835590156454],[-122.73280884721359,45.62831462500368],[-122.73280251498916,45.62830394809814],[-122.73278521523342,45.62827166294778],[-122.7327790662653,45.62826127814783],[-122.73277221122136,45.62825135381781],[-122.73276427370753,45.628242101662],[-122.73275477132844,45.62823347833481],[-122.73274436344757,45.62822543986236],[-122.73271928068819,45.62820729989798],[-122.73271113925678,45.62820211094736],[-122.73268330585603,45.62818535364909],[-122.73264078769532,45.62815812043732],[-122.73261382566037,45.62814159681736],[-122.73260342227105,45.62813439761103],[-122.73259342222532,45.62812675175132],[-122.73256421979207,45.62810276004068],[-122.73255423861093,45.62809491440799],[-122.73254336540276,45.62808698962052],[-122.73253218227576,45.62807944992078],[-122.73252079612956,45.6280723317447],[-122.73250474054045,45.62806272525241],[-122.73249337954708,45.62805516419045],[-122.73246430287796,45.62803433105979],[-122.73245715498325,45.62802904974718],[-122.73244852486829,45.62802185869303],[-122.7324402837239,45.62801419522824],[-122.73241611185622,45.62798983031586],[-122.73240766230268,45.62798167998805],[-122.73239772873227,45.62797278963372],[-122.73238737025869,45.62796406952154],[-122.73234502457453,45.62792977643122],[-122.73233499488438,45.62792110656874],[-122.7323163934698,45.62790421537864],[-122.73230666561359,45.62789619696157],[-122.73229638888674,45.62788889909542],[-122.73228554891618,45.62788197563898],[-122.73226348000462,45.6278683938265],[-122.73225288168089,45.62786132336729],[-122.7322428609739,45.62785383766291],[-122.73222367206114,45.62783844346832],[-122.7322138543734,45.62783102686359],[-122.7322024358878,45.6278233407573],[-122.73216426467475,45.62779960271234],[-122.73215638285645,45.62779527562381],[-122.73213828629504,45.62778591785394],[-122.73212806346712,45.62778082498003],[-122.73211742651584,45.62777598778594],[-122.73210558133049,45.62777129759186],[-122.7320684665362,45.62775809833079],[-122.7320549055687,45.62775277176119],[-122.7320281528412,45.6277417630551],[-122.73201471943445,45.62773660233078],[-122.73198607126174,45.62772675392101],[-122.73196386760284,45.62771846409282],[-122.73195270154386,45.62771456794853],[-122.73193840305949,45.62771034199486],[-122.73191317117977,45.62770366477387],[-122.7319022216148,45.62770109917289],[-122.73188764914424,45.6276985436231],[-122.73187254307442,45.62769661439655],[-122.73184155928196,45.62769346079261],[-122.73182606693659,45.62769167228442],[-122.73181083869589,45.62768934226091],[-122.73179609734207,45.62768612457933],[-122.73178311758454,45.62768211912455],[-122.73177073071508,45.62767722726785],[-122.73175893583539,45.62767160920199],[-122.73174777157304,45.62766537863245],[-122.73173732147133,45.62765860340556],[-122.73172771937926,45.62765131304697],[-122.7317191512481,45.62764350001792],[-122.73171161528117,45.62763507259969],[-122.73169777853084,45.62761753678119],[-122.73168988593278,45.62760834231597],[-122.73166522987319,45.62758158626291],[-122.73165709023837,45.62757313119415],[-122.73164843137737,45.62756515921725],[-122.73163901703316,45.62755781230763],[-122.73161974996697,45.62754351865503],[-122.73161149175455,45.62753636334656],[-122.73159547479304,45.62752138179866],[-122.73158691744165,45.62751401478061],[-122.73157696141335,45.62750656295319],[-122.73156628044462,45.6274994164349],[-122.73153258823157,45.62747860131578],[-122.7315216458531,45.62747148871735],[-122.73151128378628,45.62746408462826],[-122.73150180206846,45.62745624581647],[-122.73149419513464,45.62744873744244],[-122.73148720175017,45.62744092312872],[-122.73147364886745,45.62742504761111],[-122.7314663994631,45.62741731119227],[-122.73145823647214,45.6274096865939],[-122.73144950125433,45.6274023270997],[-122.73144043365984,45.62739513156765],[-122.73141568507377,45.62737613571044],[-122.73140752028614,45.62737048557563],[-122.73139642878733,45.62736371847986],[-122.7313613316092,45.62734424642738],[-122.73134926274332,45.62733676002576],[-122.73133749930471,45.62732891428581],[-122.73130249555135,45.62730482234797],[-122.7312904033293,45.62729711795134],[-122.73127868480641,45.62729023965314],[-122.73124305313065,45.62727037619858],[-122.73123173435808,45.62726352239738],[-122.73122109291522,45.62725629166761],[-122.73121105693689,45.62724840194154],[-122.73119183837969,45.62723199867032],[-122.73118228300002,45.62722438221358],[-122.73114247685314,45.62719465201425],[-122.73113302118647,45.62718706821954],[-122.731119141317,45.62717518932627],[-122.7311099255005,45.62716769410703],[-122.73108143543126,45.62714537303552],[-122.73107238131152,45.62713769186092],[-122.73106343588792,45.62712936362455],[-122.7310383908578,45.62710428404758],[-122.73102371058943,45.62709042940147],[-122.73101695346185,45.6270836949391],[-122.73100631651059,45.62707204720701],[-122.73100067419229,45.62706653085131],[-122.73099461236075,45.62706159119653],[-122.73096787670126,45.62704226604148],[-122.73094716604238,45.62702673153193],[-122.73093711209772,45.62701860305162],[-122.73092755042984,45.62701021951457],[-122.73090035034134,45.62698432885752],[-122.73089238318309,45.62697623303829],[-122.73086122960905,45.62694262347126],[-122.7308529219893,45.62693443027243],[-122.73082778712762,45.62691202492702],[-122.73081771791165,45.62690256586681],[-122.73078853973288,45.62687406366138],[-122.73077853878883,45.62686510339925],[-122.73076806263596,45.62685675816049],[-122.73073106282607,45.62683119787507],[-122.73071957696683,45.62682391054997],[-122.73068636355583,45.62680569097653],[-122.73067127365569,45.62679633052858],[-122.73064792464481,45.62678238974048],[-122.73063644237887,45.62677517967987],[-122.73061357037344,45.62675916827848],[-122.73059905539506,45.62674937246734],[-122.73057090219406,45.62672810789328],[-122.7305610189293,45.62672133443776],[-122.73055324131555,45.62671664541189],[-122.73053544389315,45.62670649527778],[-122.73052547528845,45.62670090915378],[-122.73051519676498,45.62669548071228],[-122.73049059819755,45.62668377573158],[-122.73047836134674,45.62667770147889],[-122.73046626553143,45.62667088090082],[-122.73045476979075,45.62666349618083],[-122.73044394419327,45.62665561579459],[-122.73043428460902,45.62664772347105],[-122.73041580267036,45.62663162031319],[-122.73040637934302,45.62662385739961],[-122.73039547828706,45.626615752105],[-122.73037382080389,45.62660021307973],[-122.7303637731474,45.6265923031582],[-122.7303535512178,45.62658464892133],[-122.73034617784595,45.62657987381782],[-122.7303155291251,45.62656142235166],[-122.73029164292167,45.62654733261675],[-122.73027939888436,45.62654043726457],[-122.73026695452273,45.62653380136679],[-122.73025429007384,45.62652756627326],[-122.73021738548533,45.62651116153469],[-122.7302006319053,45.62650294816972],[-122.73018958442393,45.62649798207995],[-122.7301548887927,45.62648346451028],[-122.73014352330773,45.62647823205281],[-122.73011775962539,45.62646472968436],[-122.73010451127158,45.62645816225378],[-122.73009069787746,45.6264523336114],[-122.73007620984856,45.62644701885397],[-122.73001574334846,45.6264273573882],[-122.73000096516374,45.62642199802461],[-122.72998675291761,45.62641607263224],[-122.72997375339713,45.62640963900735],[-122.72996149139352,45.62640258030039],[-122.72994997139831,45.6263949913727],[-122.72993925809021,45.62638692939238],[-122.72992947723343,45.62637841320588],[-122.72992046174123,45.62636920974229],[-122.72989627460221,45.62634133423239],[-122.72988792386333,45.62633282683404],[-122.72986972040242,45.62631664066024],[-122.7298621619776,45.62630852338498],[-122.72985516769481,45.62629981180905],[-122.72983465915685,45.62627218881062],[-122.7298270153921,45.62626311034617],[-122.729819356356,45.62625512875954],[-122.72979478294141,45.62623167526434],[-122.72977752630482,45.62621390782013],[-122.72976852428731,45.62620515790778],[-122.72975846944436,45.62619652044624],[-122.72974765283003,45.62618828127797],[-122.72973617775057,45.62618044668532],[-122.72972409451168,45.62617305938783],[-122.72971140131672,45.62616619979844],[-122.72969804516507,45.62615999042126],[-122.72968407097252,45.6261545612991],[-122.72966954521438,45.62614972647757],[-122.72965462779077,45.62614531445123],[-122.72963944985574,45.62614118701067],[-122.7295779404116,45.62612553979906],[-122.72952259520693,45.62611033862329],[-122.7295090405276,45.62610713278738],[-122.72949283581822,45.62610403186493],[-122.72947636341085,45.62610151079478],[-122.7294597221202,45.62609938487856],[-122.72940965361954,45.62609387533762],[-122.7293932243313,45.62609186124536],[-122.72937711484329,45.62608950351336],[-122.72936147786918,45.62608660739166],[-122.72934650654665,45.6260829347824],[-122.72933245060737,45.6260781847652],[-122.72932049942082,45.62607266391409],[-122.72930927317475,45.62606626919982],[-122.72929850237449,45.6260593034271],[-122.729277391067,45.62604469653566],[-122.72926660858863,45.62603753161245],[-122.729255375156,45.62603077503564],[-122.72924427826733,45.62602496016981],[-122.72919825398203,45.62600367584587],[-122.72917265648802,45.625990361203],[-122.72915953210172,45.62598419955162],[-122.72914553185801,45.62597881564481],[-122.72906345458715,45.62595034626575],[-122.72903625719357,45.62594170373918],[-122.72900665501002,45.62593297325937],[-122.72899616717909,45.62592938796372],[-122.72897194859904,45.62592087673352],[-122.72895830678313,45.62591574599644],[-122.72894777673139,45.6259111002509],[-122.72890969175658,45.62589202850345],[-122.72890120177883,45.62588739971811],[-122.72888577501045,45.62587822884177],[-122.72885298829921,45.62586013586318],[-122.72884237290752,45.62585373986818],[-122.72881627505187,45.62583628390566],[-122.7288045744953,45.62582920439493],[-122.72879226577926,45.62582242203563],[-122.72877866528586,45.62581568302328],[-122.72876463539775,45.62580925686822],[-122.72872228073045,45.62579045710937],[-122.72870882217084,45.62578391975482],[-122.72869061781161,45.62577434742294],[-122.72868138762206,45.62576976386043],[-122.7286680179957,45.62576398100722],[-122.72862595707748,45.62574823945583],[-122.72861229819357,45.6257426205684],[-122.7285996463211,45.62573661469078],[-122.72858761698113,45.62573017973148],[-122.72856061182708,45.6257140423856],[-122.72855020933606,45.62570851521636],[-122.72851747382882,45.62569298850418],[-122.72850691952253,45.62568756624735],[-122.72849092322225,45.62567840539003],[-122.72847971763743,45.62567228014171],[-122.72843233599775,45.62564800153546],[-122.72842081061266,45.62564163253023],[-122.72839641057291,45.62562709275066],[-122.72838403088997,45.62562034931724],[-122.72833787814561,45.62559949266532],[-122.72832625664081,45.62559449696861],[-122.7282907282713,45.62557988178904],[-122.72827926037839,45.62557482263922],[-122.72826829554205,45.62556950591385],[-122.72825188960998,45.62556065978146],[-122.72824048100588,45.62555483984096],[-122.72821693795892,45.62554333314347],[-122.72820534250523,45.62553731342339],[-122.72818063613997,45.62552317819838],[-122.72816797528435,45.62551646804872],[-122.72815567195823,45.62551091824367],[-122.72814294911885,45.62550581825247],[-122.72811968095637,45.62549695891711],[-122.72810911587032,45.62549321904832],[-122.72809608760375,45.62548924547679],[-122.72806932768977,45.62548167401598],[-122.72805655723967,45.62547755846295],[-122.72804392153688,45.62547309989452],[-122.72799485106451,45.62545435844858],[-122.727983361612,45.62544963476393],[-122.72797265189719,45.62544453539541],[-122.727963089331,45.62543877072743],[-122.72795458048863,45.62543172069346],[-122.7279476320199,45.62542385269873],[-122.727942136127,45.62541540924098],[-122.72793807394527,45.62540659323947],[-122.72793534037187,45.62539758939466],[-122.72793085688026,45.62537975069562],[-122.72792738758666,45.62537129215363],[-122.72792279989052,45.62536418117251],[-122.72791704887605,45.6253574245145],[-122.72791053609023,45.62535092857295],[-122.72790471680382,45.62534569600977],[-122.72789834415518,45.62534073672807],[-122.72789121243017,45.62533613742421],[-122.727883456376,45.62533172596208],[-122.72785925037235,45.62531906578009],[-122.72783306448183,45.62530639617169],[-122.72781947746316,45.62530019863571],[-122.72780561735662,45.62529418831306],[-122.7277914922471,45.62528845504134],[-122.72777708057501,45.62528310939004],[-122.72773754751599,45.62527022051948],[-122.72772459650452,45.62526568026397],[-122.72771062051535,45.62526012917755],[-122.72769695444491,45.62525417350707],[-122.72766996635883,45.62524185695232],[-122.72765637305196,45.62523587677872],[-122.72762961134133,45.6252248644372],[-122.72761649054829,45.62521914309488],[-122.7276034667733,45.62521275770676],[-122.72759091191888,45.62520594134811],[-122.72757877747603,45.62519882657658],[-122.72756704278346,45.6251915296157],[-122.7275557177227,45.62518415600908],[-122.72753737681953,45.62517170185522],[-122.72752980402167,45.62516682548529],[-122.72751966204211,45.62516115753715],[-122.72750904126055,45.62515592872569],[-122.72747703788019,45.62514113815376],[-122.72746121854806,45.62513317776745],[-122.72745301872614,45.62512942970731],[-122.72742515657929,45.62511746870724],[-122.72741334014006,45.62511308926801],[-122.72738857268935,45.62510465141757],[-122.72737604208943,45.62510015072759],[-122.72736223498353,45.62509462349782],[-122.72734858957438,45.62508863325669],[-122.72733506364114,45.62508230690802],[-122.72726795769277,45.62504885954723],[-122.72725438504716,45.62504234597925],[-122.72724065878961,45.62503607930793],[-122.72722671873304,45.6250301613079],[-122.72718557229976,45.62501430772411],[-122.72717181999107,45.62500850908703],[-122.72713115505479,45.62499062503106],[-122.72710433136041,45.62497993744059],[-122.72709111444763,45.6249744422391],[-122.72705738091207,45.62495879407356],[-122.72704297283326,45.62495257074139],[-122.7270281883603,45.62494661064054],[-122.72696794284576,45.62492338904632],[-122.72695325898412,45.62491721534111],[-122.72693903865319,45.62491063327973],[-122.7269254974486,45.62490346004445],[-122.72691284288119,45.62489557312843],[-122.72690088450811,45.62488708121668],[-122.72688943547983,45.62487814765123],[-122.72687835026925,45.6248688980799],[-122.7268675174852,45.62485942611011],[-122.72680403534072,45.62480113234254],[-122.72678220538099,45.62478214879933],[-122.72677087762526,45.62477296769034],[-122.72675975199046,45.62476450403087],[-122.72674833799647,45.62475629606419],[-122.72673670391521,45.62474833311023],[-122.72672489735744,45.62474062333632],[-122.72671295335742,45.62473319815463],[-122.72670089527136,45.62472610908095],[-122.72668873387906,45.62471943464569],[-122.7266715751588,45.62471053309386],[-122.72664512426527,45.62469596354545],[-122.72663257569906,45.62468989347509],[-122.72661948275379,45.62468412433179],[-122.72659265726277,45.62467280467163],[-122.72657940531572,45.62466691050641],[-122.72656659533976,45.62466061112454],[-122.72655451569413,45.62465368538467],[-122.72654290766404,45.62464559299831],[-122.72653216740649,45.62463677938866],[-122.72652206135953,45.62462744119529],[-122.72651240536857,45.62461773422207],[-122.72650305300813,45.62460778474552],[-122.72646646821985,45.62456752380657],[-122.72645702153636,45.62455782122066],[-122.7264472200183,45.6245484999767],[-122.72643690017229,45.62453972593114],[-122.72642585538588,45.62453171268698],[-122.72641382245266,45.62452473101749],[-122.72640113913916,45.6245191723188],[-122.72638764374862,45.62451442531032],[-122.72635960463367,45.62450575994555],[-122.72634569601813,45.62450108518397],[-122.72633347803195,45.62449629042741],[-122.7263216840506,45.62449097988221],[-122.72631035000664,45.62448522202688],[-122.72629953698556,45.6244790639795],[-122.72628933032732,45.62447253338272],[-122.72627429432609,45.62446180988356],[-122.72626328906556,45.62445429922368],[-122.72625172954447,45.62444703923227],[-122.72623964001735,45.62444012540268],[-122.72622768433925,45.62443391332129],[-122.72620337413103,45.62442188683534],[-122.72619152714907,45.62441566155886],[-122.72616649739031,45.62440099015815],[-122.72615377005937,45.62439387339968],[-122.7261414523602,45.62438779827062],[-122.72611597703704,45.62437605574163],[-122.72610296943172,45.62436962565206],[-122.72606432211157,45.62434922526927],[-122.72605125611578,45.62434253131352],[-122.72603792152368,45.62433614519729],[-122.726024186283,45.62433024722724],[-122.72601004410548,45.62432500577339],[-122.72599553002546,45.62432026377443],[-122.7259807985531,45.62431586165605],[-122.72593672271368,45.62430339851385],[-122.72592255717996,45.62429910193948],[-122.7259089360253,45.62429453521896],[-122.72589607574369,45.62428955825337],[-122.72587889546391,45.62428182014531],[-122.72584190463712,45.62426586583042],[-122.72583074576465,45.62426049495179],[-122.72580841454501,45.62424929268816],[-122.72579689544811,45.62424387406114],[-122.72578325902212,45.62423811680865],[-122.72572651963215,45.62421668416827],[-122.72571270983127,45.62421086346003],[-122.72570096346061,45.62420535750302],[-122.72566618069281,45.62418822268977],[-122.725653943842,45.62418281159585],[-122.72564143390336,45.62417763546591],[-122.7256034387601,45.62416238789989],[-122.72559100338164,45.62415702517857],[-122.72557829850858,45.6241510800711],[-122.72556590355428,45.62414484282777],[-122.72555379336595,45.62413838381229],[-122.7255304218972,45.62412501909481],[-122.72550836286706,45.62411133710883],[-122.72548282466187,45.62409436812445],[-122.72547487457162,45.62408967510933],[-122.72543043311785,45.62406495101764],[-122.7254178629921,45.62405839587093],[-122.72540497216778,45.62405219002974],[-122.7253916797965,45.6240465332774],[-122.72537788347037,45.62404166309208],[-122.72536386436205,45.62403783391489],[-122.7253494850293,45.62403469581131],[-122.72530650962611,45.62402659014233],[-122.72529305825304,45.62402342565169],[-122.72528052944978,45.62401954370027],[-122.72526929511882,45.62401459372497],[-122.72526068656347,45.62400912921312],[-122.72525297452674,45.62400283855284],[-122.72523115983839,45.62398172622979],[-122.7252229204906,45.62397450889819],[-122.7252142095273,45.62396742663935],[-122.7251812727974,45.62394174692548],[-122.72517351045505,45.62393620387522],[-122.72514673706628,45.62391931776686],[-122.72510861436227,45.62389386922715],[-122.72510024655539,45.62388884699192],[-122.7250876512768,45.62388251548186],[-122.72507437956679,45.62387704090511],[-122.72506074493741,45.62387235164132],[-122.72504142487058,45.62386655288611],[-122.72503200693315,45.62386335006309],[-122.72501957335132,45.62385802752119],[-122.7250074766377,45.62385184741613],[-122.72498325715932,45.62383834818459],[-122.72497059989696,45.62383168620863],[-122.72495761654615,45.62382558086258],[-122.72494414361353,45.62381978398728],[-122.72490275194019,45.62380278727157],[-122.72488924127832,45.62379676296685],[-122.72487619774039,45.62379028317896],[-122.72486358090222,45.62378310728732],[-122.72485145274757,45.62377547214264],[-122.72481611931251,45.62375162872193],[-122.72480411153211,45.62374392823475],[-122.72479168603509,45.62373664616253],[-122.72477947793038,45.62373028008136],[-122.7247417819261,45.62371234033139],[-122.72470767558973,45.62369511112958],[-122.72469604600005,45.62368973391367],[-122.7246820421631,45.62368400864519],[-122.72465341554992,45.62367337483536],[-122.724639343441,45.62366788327533],[-122.7246258184061,45.62366187466242],[-122.72461317282182,45.62365519570271],[-122.72460108598968,45.62364798900936],[-122.72457754473936,45.62363307929968],[-122.72456560702754,45.62362588893808],[-122.72454859473268,45.62361639728245],[-122.72453745113158,45.62360987349594],[-122.72449301506774,45.62358220142472],[-122.72448154268326,45.62357546151485],[-122.72446973432884,45.62356903573121],[-122.72445725044135,45.62356287695496],[-122.7244189938883,45.62354526635672],[-122.72438434137624,45.62352821050184],[-122.72437242702061,45.62352292059735],[-122.72435764973419,45.62351725373955],[-122.72434232986534,45.62351214351492],[-122.7243266407889,45.6235074152688],[-122.7242787686691,45.62349410568733],[-122.72426298796451,45.62348952947743],[-122.72424754233151,45.62348465170469],[-122.72423262221297,45.62347929771406],[-122.72421846386577,45.62347325327039],[-122.72420591440124,45.62346669051539],[-122.72419428840483,45.62345940023987],[-122.724183612826,45.62345147102751],[-122.72417412392166,45.6234432427644],[-122.72415601119059,45.62342623965197],[-122.72414718703955,45.62341849325738],[-122.72412017020739,45.62339576421126],[-122.72411173323023,45.62338808629239],[-122.72409318212128,45.62336991272154],[-122.72408356475788,45.62336183145843],[-122.72407314160561,45.62335423960607],[-122.72406206986975,45.62334718051438],[-122.72403959761459,45.62333465056164],[-122.72402872440641,45.62332828946088],[-122.72400407643163,45.62331182787118],[-122.72395653848513,45.62328097855511],[-122.72394885968608,45.6232761485118],[-122.72393762266019,45.62326995766222],[-122.72391382359334,45.62325807354109],[-122.72388121564686,45.62324070598291],[-122.72387002353675,45.62323507616375],[-122.72383172116966,45.62321764137484],[-122.72381994695121,45.62321168171781],[-122.72378552620448,45.62319281826201],[-122.72377394512384,45.6231867624788],[-122.72376210083681,45.62318112008909],[-122.72374922887711,45.62317574910649],[-122.72371289112554,45.62316212468863],[-122.72370254433011,45.62315844497697],[-122.72366718753885,45.62314775892195],[-122.7236558588848,45.62314378455586],[-122.72364671942509,45.62313992201961],[-122.7236174684828,45.62312633277561],[-122.72359423894788,45.62311614743712],[-122.72358264888409,45.62311084806986],[-122.72357133729803,45.62310524776588],[-122.72356051529378,45.62309920265362],[-122.72355200195986,45.62309376946551],[-122.72352491865234,45.62307491853521],[-122.72347042505058,45.6230385146411],[-122.72345987703252,45.62303122116856],[-122.72343474935737,45.62301299533637],[-122.7234240764735,45.62300610583207],[-122.72341285471896,45.62299955370281],[-122.72337819412205,45.62298077184953],[-122.72335087096438,45.62296499998835],[-122.72333935186748,45.62295897936314],[-122.72330243021099,45.62294159097969],[-122.72328945674165,45.62293513685168],[-122.72325081211645,45.62291511353209],[-122.72323776947685,45.62290869960975],[-122.72322450495334,45.62290267583717],[-122.72318808994666,45.62288793241866],[-122.72317648550982,45.62288268454733],[-122.72316362432991,45.62287588361191],[-122.72313859996105,45.62286146813917],[-122.72312557708436,45.62285460563152],[-122.72308823142306,45.62283646392909],[-122.7230775531493,45.62283156348207],[-122.72306667814446,45.62282710847274],[-122.72305267879905,45.62282235378181],[-122.72302458129361,45.62281361025095],[-122.72301133922801,45.62280842205764],[-122.72300262467144,45.62280405625976],[-122.72299423081341,45.62279920230139],[-122.72295109281517,45.62277243704198],[-122.72293899071168,45.62276531379418],[-122.72292663079166,45.62275841483548],[-122.7229139843091,45.62275186267727],[-122.7228957242543,45.62274308206791],[-122.72288291607498,45.62273659461907],[-122.72283252148586,45.6227090383456],[-122.72281987141002,45.62270237812022],[-122.7228070919768,45.62269608165893],[-122.72279412120241,45.62269031482354],[-122.7227693762096,45.62268069798494],[-122.72275741424326,45.62267565239525],[-122.72274472104829,45.62266922964986],[-122.7227200056999,45.62265518228695],[-122.72269267266073,45.62264048717972],[-122.72268173028226,45.62263423343348],[-122.72264934871122,45.6226150814098],[-122.72263839465465,45.62260908147972],[-122.72261458031647,45.62259728580389],[-122.72260315105109,45.62259139833142],[-122.72258737214314,45.62258242984561],[-122.7225757784861,45.62257633504402],[-122.72256353534708,45.62257077489557],[-122.72255061757329,45.62256599253926],[-122.72253717967496,45.62256217582656],[-122.72250946215685,45.62255589945403],[-122.72249581135782,45.62255260734241],[-122.7224827336839,45.62254864675601],[-122.72247217488606,45.62254445559577],[-122.72246215867064,45.6225396788916],[-122.72245256017183,45.62253453842111],[-122.7224448580166,45.62253007333589],[-122.7224375663914,45.62252526710198],[-122.7224285553908,45.62251793712328],[-122.72242031424638,45.62250984380034],[-122.72241252046298,45.62250125100462],[-122.72239710177944,45.62248347106928],[-122.72238889477102,45.6224747042397],[-122.72237993497437,45.62246630180339],[-122.72237053769817,45.62245886124205],[-122.72236033014161,45.62245189564936],[-122.72234945244182,45.62244537172734],[-122.72233801060005,45.62243927879563],[-122.7223260755832,45.62243363130456],[-122.72231387376667,45.62242848579817],[-122.72227655954643,45.62241402748825],[-122.72226449247721,45.62240895737214],[-122.72225300032976,45.62240359825266],[-122.72221990369975,45.62238696801578],[-122.72220675595726,45.6223807060738],[-122.72219397652404,45.62237417083468],[-122.72218199748973,45.62236683204047],[-122.72217047839283,45.62235882916627],[-122.72213661280492,45.62233459184726],[-122.7221135350853,45.62231893037951],[-122.72210186686804,45.62231130006157],[-122.72207846934816,45.62229673805711],[-122.72205068086316,45.62228089815048],[-122.72203534841789,45.62227147600497],[-122.72202400000093,45.62226497216658],[-122.72201197425422,45.62225887104777],[-122.72199927117776,45.62225335421843],[-122.72198592760255,45.62224852848446],[-122.7219585119184,45.622239723922],[-122.7219451189358,45.62223500059473],[-122.72193240777455,45.62222954470515],[-122.72192020056815,45.62222277824532],[-122.72190880903203,45.62221512592487],[-122.72189793312889,45.62220691130222],[-122.72187668797241,45.62218990216039],[-122.72186584081534,45.6221816196809],[-122.72185452204279,45.62217383227681],[-122.72184429382494,45.62216767397553],[-122.72182350411435,45.62215608490767],[-122.7218135921035,45.62215017162981],[-122.72180445893201,45.62214385123221],[-122.72179588900418,45.62213656518255],[-122.72177964297227,45.62212102994182],[-122.7217707056335,45.6221133524767],[-122.72176108198187,45.62210581260173],[-122.72175096785008,45.62209837387734],[-122.72170876769299,45.62206903111573],[-122.72168265726094,45.62205003408196],[-122.72167459847452,45.62204448267718],[-122.72164718099374,45.62202729882659],[-122.72163590084871,45.62201972501342],[-122.72162482911283,45.62201186847696],[-122.72161405112607,45.622003761259],[-122.72159430076621,45.62198802116483],[-122.7215843132969,45.62198035499034],[-122.72157389194128,45.62197311603985],[-122.72156273935705,45.6219665549941],[-122.72155044950563,45.62196079122499],[-122.72153734218732,45.62195576064906],[-122.72152365725228,45.62195124588429],[-122.72150959771977,45.6219470615904],[-122.7214668936078,45.62193491205782],[-122.72145303350128,45.62193048776261],[-122.72143965938332,45.62192559728878],[-122.72142698774793,45.62192003707585],[-122.72141528359808,45.62191372042196],[-122.72140424959146,45.62190677926417],[-122.72139365306437,45.62189944920461],[-122.72137295677854,45.62188445609786],[-122.72136247972735,45.62187719011919],[-122.72135166311305,45.62187035073718],[-122.72132425371709,45.62185518547572],[-122.72130260431875,45.62184363089828],[-122.72129130980068,45.62183826230068],[-122.72127933346133,45.62183324365092],[-122.7212547474703,45.62182371085402],[-122.72124259865441,45.62181864696727],[-122.72122954613332,45.62181243271059],[-122.72121693737999,45.62180565237841],[-122.72120473915673,45.62179842031635],[-122.7211929460737,45.62179082196956],[-122.72118158058872,45.62178291451085],[-122.72117069839736,45.62177473249513],[-122.72116038483959,45.62176629225742],[-122.72114155165966,45.62174951418694],[-122.72113178427757,45.6217414427427],[-122.72112028853687,45.62173325192508],[-122.72110811007659,45.62172545691943],[-122.7210742516752,45.62170449515304],[-122.72106346201032,45.62169800569921],[-122.7210524935807,45.6216918014816],[-122.72104124846999,45.62168604019735],[-122.72103223387612,45.62168191368499],[-122.72099737115823,45.62166690732629],[-122.7209844444013,45.62166182709023],[-122.72097139277855,45.62165738581002],[-122.72094199990245,45.62164921759805],[-122.7209311177111,45.62164559181877],[-122.72089567108831,45.62163259342017],[-122.72088192955941,45.62162727255131],[-122.72086937829825,45.62162147105077],[-122.7208572851779,45.62161496022591],[-122.72084567175789,45.62160788772144],[-122.72083459642874,45.62160035971575],[-122.72082415620851,45.6215924459474],[-122.72081449572595,45.62158418725413],[-122.72079574878428,45.62156611739243],[-122.72078608291184,45.62155776508205],[-122.7207658321904,45.62154153543495],[-122.72075613038533,45.62153329558252],[-122.72074733318374,45.6215247202289],[-122.72074069373548,45.62151691514185],[-122.72072855480106,45.62150091543244],[-122.72072204830344,45.62149313233173],[-122.72071500551162,45.62148599886896],[-122.72070735995021,45.62147914938676],[-122.72069261140992,45.62146704121911],[-122.72068546351517,45.62146180452378],[-122.72067442861022,45.62145500530086],[-122.72066236872755,45.62144870053186],[-122.72064958210778,45.62144273189089],[-122.72059566881771,45.62141967533904],[-122.72058242944705,45.6214135402012],[-122.72054830514435,45.62139599301226],[-122.72053688037057,45.621390327196],[-122.72049845852754,45.621372796335],[-122.72048728977363,45.62136703941595],[-122.72042794796425,45.62133394670116],[-122.72039276903944,45.62131188278619],[-122.7203597361898,45.62129369409187],[-122.72035086712297,45.62128929613378],[-122.72033852786426,45.6212841228781],[-122.7203255121741,45.62127941015107],[-122.72029863278416,45.62127033464778],[-122.72028533053144,45.621265463593],[-122.72027250528411,45.62126000509596],[-122.7202610248148,45.62125408669732],[-122.72025018214931,45.6212475192846],[-122.72023993327024,45.6212404260005],[-122.72023027099104,45.62123289920206],[-122.72022122675277,45.6212250023454],[-122.72021286792905,45.62121677501205],[-122.72020536609813,45.62120844652433],[-122.72019116642842,45.62119163059008],[-122.72018376970036,45.62118349937881],[-122.72016491945244,45.62116553808062],[-122.72015582760346,45.62115643240136],[-122.7201491019169,45.6211486247499],[-122.72013031185611,45.62112435486533],[-122.72012345860881,45.62111652521955],[-122.7201155947568,45.62110889725108],[-122.72010687391206,45.62110178572929],[-122.72009729876942,45.62109528929457],[-122.72008682710816,45.62108954114298],[-122.72007479956481,45.62108439739811],[-122.72006197072423,45.62107999439736],[-122.72004858852145,45.62107609527856],[-122.72000708096544,45.62106546725689],[-122.71999335201295,45.62106170321776],[-122.71995032989736,45.62104845588394],[-122.71992311723244,45.62104111377478],[-122.71990973413138,45.62103719266337],[-122.71989594768671,45.62103240200853],[-122.71988250170354,45.62102712317765],[-122.7198600069905,45.62101765935477],[-122.71985091873476,45.6210135045205],[-122.71983841777926,45.62100696723717],[-122.71982633004883,45.62099985444587],[-122.71979090139233,45.6209772695526],[-122.71977887025572,45.62096999654527],[-122.71976646991152,45.6209631991476],[-122.71975352159502,45.62095712050534],[-122.71974002350957,45.6209519547584],[-122.71969842702036,45.6209383159779],[-122.71968531161718,45.62093309117054],[-122.71967313136024,45.62092693336128],[-122.71966199494568,45.62091988213165],[-122.71965201376455,45.62091202732591],[-122.71964338364961,45.62090340161457],[-122.71963679001544,45.62089486448993],[-122.71963112613759,45.62088587688417],[-122.71961598413515,45.6208579873385],[-122.71961038134272,45.62084893689838],[-122.71960388562489,45.6208403023813],[-122.71959541181683,45.62083152587054],[-122.7195856534179,45.62082346811639],[-122.71957481973557,45.62081615362231],[-122.71956304731376,45.62080966218083],[-122.71955421867116,45.62080559529105],[-122.71953196740156,45.62079659699014],[-122.71951850614704,45.62079176547619],[-122.71950464783713,45.62078757795439],[-122.71949049847308,45.62078425369639],[-122.71946184670712,45.62077881839904],[-122.71944790395557,45.62077594650611],[-122.71943461427928,45.62077245700834],[-122.71942462950489,45.62076902845403],[-122.71941506065048,45.62076520093816],[-122.71940673865768,45.62076158264113],[-122.71939875353313,45.62075765208587],[-122.71938847051807,45.62075153635249],[-122.71936852073223,45.6207381500942],[-122.71933687398308,45.62071879951264],[-122.71932677602099,45.62071182427949],[-122.71931724579414,45.62070408442098],[-122.71929909263888,45.62068760698191],[-122.71927260850768,45.62066444708049],[-122.71926416434401,45.62065647914734],[-122.71925636696734,45.62064820460909],[-122.71924973829886,45.62063998535881],[-122.71923191752026,45.6206143631798],[-122.7192256778223,45.6206059478989],[-122.71921739984695,45.62059624274252],[-122.7192081750473,45.62058707791179],[-122.71919793784632,45.62057861110722],[-122.71918654451356,45.62057105720356],[-122.7191735692476,45.62056447965821],[-122.71915948007066,45.62055899219165],[-122.7191445276128,45.62055451626827],[-122.71913147149846,45.62055148226552],[-122.71909107066685,45.62054361170097],[-122.71907509592617,45.62053985202486],[-122.71905937630702,45.62053550050095],[-122.71904399355608,45.62053058791535],[-122.71902905996279,45.62052510044549],[-122.71901472015591,45.62051897714731],[-122.71900116457827,45.62051210681341],[-122.71898970926178,45.6205051767913],[-122.7189788369519,45.62049772843025],[-122.71894753785077,45.62047415503629],[-122.71893688562811,45.62046644781604],[-122.71892579053605,45.62045909557804],[-122.71891416004806,45.62045224722694],[-122.71890209747045,45.62044574820381],[-122.71886535457868,45.62042667459703],[-122.71885405556904,45.62042028426503],[-122.71882099756658,45.62040073314937],[-122.7188098907964,45.62039451433749],[-122.71879231346122,45.62038518486185],[-122.71878082580538,45.62037864939013],[-122.71875834636373,45.62036467245012],[-122.7187249020857,45.62034291036134],[-122.71871357522828,45.62033580753847],[-122.71870204355498,45.62032894283675],[-122.71863699025702,45.62029332503642],[-122.71862370776725,45.62028713762723],[-122.71861040012462,45.62028229915816],[-122.71859641694893,45.62027821024],[-122.71858201246333,45.62027459505299],[-122.7185528531492,45.62026781139336],[-122.71853854568168,45.62026417798528],[-122.71852473767746,45.62026005576634],[-122.71851170941088,45.62025516326191],[-122.71849887877369,45.62024888600281],[-122.71848680721288,45.62024185039517],[-122.71846677568038,45.62022925943239],[-122.71845863694392,45.62022392712112],[-122.71845083417736,45.62021834726234],[-122.71844208907804,45.62021119101887],[-122.71841743212013,45.62018846318562],[-122.71840876247933,45.62018116305943],[-122.71839775721877,45.62017309830059],[-122.71835867152079,45.6201472591473],[-122.71835045732581,45.62014223217842],[-122.71832564226439,45.62012898588392],[-122.7183139102668,45.62012215445642],[-122.71830235703393,45.62011481725228],[-122.71825621506936,45.62008361496116],[-122.71824420728893,45.62007609680348],[-122.71823175753741,45.62006902033511],[-122.71821868884668,45.62006259352133],[-122.71820418554641,45.6200567158354],[-122.71818905432376,45.62005151042299],[-122.7181422296396,45.62003735936401],[-122.71812684149876,45.62003235877365],[-122.7181119258718,45.62002681408028],[-122.71809838915875,45.62002087481774],[-122.7180853833501,45.62001438391243],[-122.7180728186142,45.62000750346408],[-122.71806063835729,45.62000036729907],[-122.71803733785543,45.61998578458896],[-122.71801856576093,45.61997354981168],[-122.7180107288584,45.61996880555974],[-122.71800008202564,45.61996328159384],[-122.71796583824701,45.6199478550742],[-122.7179533292067,45.61994155390551],[-122.7179411390683,45.6199348066467],[-122.71792927052674,45.61992774335468],[-122.71791774334503,45.61992047775075],[-122.71790660154056,45.61991311036206],[-122.71788122862536,45.61989566323081],[-122.71787051980887,45.61988939472757],[-122.71784834669269,45.61987762298307],[-122.71783182397965,45.61986842222202],[-122.7178233923924,45.6198640612216],[-122.71777870390198,45.61984450488563],[-122.71775427331951,45.61983447790985],[-122.7177422403863,45.61982931268778],[-122.71772445913354,45.61982091048327],[-122.71771542477674,45.61981687807809],[-122.71770453360222,45.61981265467054],[-122.71767056470809,45.61980122847295],[-122.71765952710817,45.61979719103999],[-122.71763186528564,45.61978577803347],[-122.71758915219048,45.6197712687783],[-122.7175747512982,45.61976586102785],[-122.71756058845942,45.61975998833714],[-122.71752708668922,45.61974461893663],[-122.71751339366935,45.61973889829164],[-122.71747157349961,45.61972246706286],[-122.71745813560126,45.61971660693362],[-122.71744536874445,45.6197102058396],[-122.71743291090812,45.61970277245205],[-122.7173994450705,45.61968024169825],[-122.71736265726297,45.61965630920241],[-122.7173551302792,45.61965163592135],[-122.71734319346571,45.61964519083904],[-122.71733085420699,45.61963886387608],[-122.7173193072623,45.61963245837516],[-122.71730798309984,45.61962562688716],[-122.71729695538141,45.61961849569998],[-122.71728630675203,45.61961117539401],[-122.71726580809556,45.61959601014978],[-122.71725498698966,45.61958882680999],[-122.71724384698183,45.61958312625468],[-122.71723168469117,45.61957811054457],[-122.7172188441725,45.61957351830756],[-122.71719230614237,45.61956468002519],[-122.71717914312853,45.61955999668371],[-122.71715821507736,45.61955174900045],[-122.71713199235589,45.61954180616445],[-122.71711899642868,45.61953661515513],[-122.71708469605616,45.61952125323297],[-122.71707307994126,45.6195164743863],[-122.71705869701525,45.61951136128381],[-122.71701641331482,45.61949699709486],[-122.71700228640864,45.61949258014685],[-122.71698851972693,45.61948889768114],[-122.7169467121336,45.61947893158688],[-122.71693323021782,45.61947516052991],[-122.71692031513898,45.61947073038589],[-122.71690709373465,45.61946497389985],[-122.7168688003507,45.61944539354924],[-122.71685705128509,45.61944013907265],[-122.71680781821763,45.61942033629496],[-122.71679425186021,45.61941432911176],[-122.71676739762312,45.61940185985351],[-122.71675381240108,45.6193957923514],[-122.71673991187038,45.61939011188205],[-122.71672515165193,45.61938481970225],[-122.7166796465929,45.61937040144695],[-122.71666465910069,45.6193653210028],[-122.71665155088407,45.61936038758071],[-122.716625973153,45.61934974226973],[-122.71656925532258,45.61932521086127],[-122.71655613722446,45.61931889391503],[-122.7165433362317,45.61931209380393],[-122.71653076969916,45.61930493430327],[-122.71651837384657,45.61929751217144],[-122.71649389924664,45.61928217594413],[-122.71644531566116,45.61925097947264],[-122.71642078895891,45.61923581915745],[-122.71640836436023,45.61922852896004],[-122.71639577806481,45.61922152715275],[-122.71638297886865,45.61921490735277],[-122.71636459394803,45.61920604388177],[-122.71635174624284,45.61919947497253],[-122.71633906742092,45.6191925711769],[-122.71628890549545,45.6191635020915],[-122.71626340591779,45.61914924839489],[-122.71625033992198,45.61914249538601],[-122.71621231064275,45.61912430912945],[-122.7162000782835,45.61911792744524],[-122.71618769231239,45.61911063911745],[-122.71617580760116,45.61910293108144],[-122.71613039057704,45.6190711018075],[-122.7161189738881,45.61906365765405],[-122.7161028302641,45.61905376436754],[-122.71606767110222,45.61903051708512],[-122.71605648348367,45.61902395695164],[-122.71602211214426,45.61900535032032],[-122.71601123085122,45.6189990710364],[-122.71599029741014,45.61898606008637],[-122.71597943588006,45.61898026082582],[-122.71596800122482,45.61897553031255],[-122.71595585869713,45.61897139794596],[-122.71592978868928,45.61896318975944],[-122.71591598248166,45.61895905110886],[-122.71590172981138,45.61895540881967],[-122.7158859922259,45.61895237598701],[-122.71583666483534,45.61894523214806],[-122.7158209479111,45.61894246320337],[-122.71580534866622,45.61893922428564],[-122.71578993088099,45.61893552670422],[-122.71577477360721,45.61893134595513],[-122.71575997386289,45.6189266198359],[-122.71574565561559,45.61892124279096],[-122.71573200840979,45.61891517523684],[-122.7157188319212,45.61890851895895],[-122.71570599948735,45.61890143668846],[-122.71568098230502,45.61888647796516],[-122.71563166299927,45.61885571983179],[-122.71561915845054,45.61884825303068],[-122.71560646525556,45.61884102058719],[-122.71559350705759,45.6188341161191],[-122.71558019043182,45.61882765272198],[-122.71556793022485,45.61882230582629],[-122.71553054503764,45.61880708193609],[-122.71551841778131,45.61880164707544],[-122.71550473913447,45.61879471181541],[-122.71549151862845,45.61878725505913],[-122.71547862421086,45.61877942697185],[-122.71546594718555,45.61877135133021],[-122.71542833741958,45.61874663871591],[-122.71541567566565,45.61873854924672],[-122.71540280909582,45.61873070167512],[-122.71538963260724,45.61872322040626],[-122.71537602133405,45.61871625874759],[-122.71536397851936,45.6187108025156],[-122.71532708381231,45.61869555974587],[-122.7153151101679,45.61869024488138],[-122.71530321827017,45.61868439721042],[-122.71525794856974,45.61866007536614],[-122.71524664057695,45.61865465180077],[-122.71522329785428,45.61864488221907],[-122.71521213359192,45.61863985385884],[-122.71518466041557,45.61862514199145],[-122.71517236786923,45.61861912467006],[-122.7151593521791,45.61861350632469],[-122.71514534474886,45.61860837743212],[-122.71513072017603,45.61860373359426],[-122.71511566980176,45.61859942653015],[-122.71505417922225,45.6185832085929],[-122.71503916298396,45.61857885314731],[-122.715024595005,45.6185741219719],[-122.71501067471138,45.61856884793605],[-122.71499764734311,45.61856282118395],[-122.71498876480157,45.61855782611688],[-122.71498025955246,45.61855246788587],[-122.71496049931118,45.61853938457654],[-122.71493716736829,45.61852446911012],[-122.71492524402952,45.61851724793442],[-122.71489601464681,45.61850076105628],[-122.71488411646087,45.61849344123269],[-122.71487252010888,45.61848570169632],[-122.71483796910643,45.61846179759297],[-122.71482601522493,45.61845418999764],[-122.71481442605945,45.61844745701097],[-122.71476804154975,45.61842254005262],[-122.71475757168511,45.61841632102132],[-122.71473603996608,45.61840258863385],[-122.71472579917184,45.61839725740547],[-122.71470447316699,45.61838675705174],[-122.71469361163687,45.61838025716087],[-122.71468339060559,45.61837295554261],[-122.71467410382219,45.61836521347635],[-122.71465579076678,45.61834893829491],[-122.714646323422,45.61834126533975],[-122.7146363664954,45.61833375762981],[-122.71462608437866,45.61832637809466],[-122.71457683154829,45.61829230718629],[-122.71456902608675,45.61828714182216],[-122.71455732642849,45.61828040190401],[-122.7145448245747,45.61827412505215],[-122.71453175678225,45.61826816612627],[-122.71447749314922,45.61824519874614],[-122.71446421425269,45.61823916693277],[-122.71442977553964,45.61822232623201],[-122.71441810911902,45.61821712316259],[-122.71440585609854,45.61821231153245],[-122.71436851043724,45.61819895608361],[-122.71433436816825,45.61818553591522],[-122.71432247806715,45.61818147009175],[-122.71428623823194,45.61816987768667],[-122.71427452599728,45.61816553414697],[-122.71426292784864,45.61816052270827],[-122.71419340363556,45.61812632603605],[-122.71418215403324,45.61812014655582],[-122.71416079838399,45.61810669055459],[-122.71414981468301,45.61810026037429],[-122.71413719245496,45.61809414749259],[-122.71412374557349,45.61808856553698],[-122.71409568579726,45.61807781002924],[-122.71408166129905,45.61807205842671],[-122.71406834197833,45.61806592983406],[-122.71405527508422,45.6180593620479],[-122.71400353302217,45.61803156848531],[-122.7139902280745,45.61802488822648],[-122.7139758460468,45.61801820419698],[-122.71391724085596,45.61799277559806],[-122.71390304298289,45.61798609219306],[-122.71386851174336,45.6179684270645],[-122.71385673932157,45.61796286960067],[-122.71384260073731,45.61795701305741],[-122.71382796807967,45.6179517012645],[-122.7138129662144,45.61794683494799],[-122.71379769485459,45.61794235316117],[-122.71378223125527,45.61793822762994],[-122.71376663829858,45.61793446212425],[-122.71375096629014,45.61793109371489],[-122.71373526104401,45.61792818900354],[-122.71371956388275,45.61792585103439],[-122.71368047728642,45.61792170853737],[-122.71366791973708,45.6179199825492],[-122.71365577181948,45.61791758803116],[-122.713643783802,45.61791420768277],[-122.7136321281612,45.61791012424672],[-122.71360893545717,45.617901117313],[-122.71356936826218,45.61788661259667],[-122.71354799554494,45.61787832319827],[-122.71353420460869,45.6178735329019],[-122.71351994654852,45.61786908252515],[-122.71349048629878,45.61786086475242],[-122.71343008896895,45.61784534843317],[-122.713415073629,45.6178413177709],[-122.71340023166385,45.61783709044462],[-122.71338565021018,45.61783257786146],[-122.71337143526911,45.61782767006559],[-122.71335771889305,45.61782223008342],[-122.713345378736,45.61781655448121],[-122.71333341856628,45.61781048178101],[-122.71330992582497,45.61779793299792],[-122.71329805997837,45.61779183390629],[-122.71328589139954,45.61778610929214],[-122.71327277509808,45.61778070197851],[-122.71325932911493,45.61777574705417],[-122.7132188088074,45.61776206163376],[-122.71320585150774,45.61775743971698],[-122.71319351584226,45.61775256835702],[-122.71316679545413,45.61774077605769],[-122.71315607855279,45.61773678560029],[-122.71313465283495,45.61772943740264],[-122.71312452433013,45.61772544003293],[-122.7131016487314,45.61771434264958],[-122.71308942535535,45.61770927525009],[-122.71307628300272,45.61770455845269],[-122.71303468202193,45.61769071656317],[-122.7130120157307,45.61768255279987],[-122.71300044812476,45.61767882623287],[-122.71298545434435,45.61767491556777],[-122.71295446606031,45.61766808384126],[-122.71293902042731,45.61766420710472],[-122.71292588256631,45.61766016323466],[-122.71291296569083,45.61765558277863],[-122.71290020512221,45.61765063852467],[-122.71284902091395,45.61762971356246],[-122.71283591898553,45.61762429115402],[-122.71282327340126,45.61761851688541],[-122.71281054427371,45.61761180327641],[-122.71278603643613,45.61759767987616],[-122.71277353817557,45.61759098511429],[-122.71276217628385,45.61758563056083],[-122.71273901142762,45.61757548442837],[-122.71272771780788,45.6175701462098],[-122.71271506324047,45.61756333771844],[-122.71268996520975,45.61754925514688],[-122.7126779673108,45.6175433614894],[-122.71266557235651,45.61753777570901],[-122.71261969180168,45.61751795717974],[-122.71260744956102,45.61751326361414],[-122.71258235692017,45.61750429620093],[-122.71256987842257,45.61749956179324],[-122.71255631476009,45.61749383086607],[-122.71251628852598,45.61747534939146],[-122.71250267455785,45.61746949028399],[-122.71248865005964,45.61746417718822],[-122.71247336971663,45.61745939690962],[-122.71245762045308,45.61745527259948],[-122.71244156845727,45.61745159691149],[-122.71237709187776,45.61743826201614],[-122.71236158426099,45.61743459700852],[-122.71234664078624,45.61743052107746],[-122.71232511086384,45.61742372262234],[-122.71229622373924,45.61741509386103],[-122.71227339125966,45.61740774122288],[-122.71226165746545,45.61740443121593],[-122.71224732035348,45.61740134866185],[-122.71223238945515,45.61739899370599],[-122.71221701389074,45.61739716968332],[-122.71220131313622,45.61739571574306],[-122.71218538420959,45.6173944967957],[-122.71213694076128,45.61739109065445],[-122.71212077018784,45.61738966624522],[-122.71210467866615,45.61738788557655],[-122.71208926088094,45.61738572037385],[-122.71207397514807,45.61738314864574],[-122.71205883045069,45.61738021500317],[-122.71204385104332,45.61737693641074],[-122.712029068367,45.61737330470032],[-122.71201453272738,45.61736928280061],[-122.7120003105998,45.61736480725088],[-122.71198698768585,45.61736004078692],[-122.7119739145035,45.6173549438242],[-122.71193519531813,45.61733916661048],[-122.71192215627178,45.61733420724882],[-122.71188332569533,45.61732078059021],[-122.71187066483971,45.61731599464445],[-122.71185703649853,45.61731012672374],[-122.7118437459239,45.61730379886902],[-122.71180450212239,45.61728389983145],[-122.71179119178483,45.61727753301759],[-122.71177753379926,45.61727160037542],[-122.71176300714279,45.61726607928543],[-122.71171826116017,45.61725098063773],[-122.71170360245137,45.6172456216535],[-122.71168974054822,45.61723994096634],[-122.71164903428944,45.61722182132349],[-122.71163521191214,45.61721612743909],[-122.71162061788205,45.61721074708854],[-122.7115762932093,45.61719550453932],[-122.71156202077606,45.61718989673288],[-122.71155019355703,45.61718459492049],[-122.71151534790717,45.61716765776921],[-122.71150161266647,45.61716156929055],[-122.71148751720135,45.61715576607132],[-122.71147317290288,45.61715016203082],[-122.71141523156705,45.61712827742744],[-122.71140109118619,45.61712258416188],[-122.71138732270782,45.6171166364235],[-122.71137408423547,45.61711032488339],[-122.71136157160187,45.61710351696454],[-122.71135055645986,45.61709657206961],[-122.71131930586776,45.61707495071431],[-122.71130844433766,45.61706836898888],[-122.71129752801033,45.61706274546157],[-122.71126357618418,45.61704723080643],[-122.71122671112153,45.61702816923837],[-122.71121399816364,45.61702267200085],[-122.71120021171897,45.6170180764129],[-122.7111717719554,45.61701044914354],[-122.71115793430674,45.61700638511983],[-122.71113002275256,45.61699637711468],[-122.71111690645112,45.61699236461288],[-122.71107626397269,45.61698144804289],[-122.71106338033488,45.61697730421947],[-122.71103660694617,45.61696664777443],[-122.7110151740418,45.61695901735641],[-122.71100472304178,45.61695505197655],[-122.71099488828605,45.61695051733093],[-122.71098761732216,45.61694628805252],[-122.71098063022588,45.61694163905038],[-122.71097226780888,45.61693569192111],[-122.71096406080045,45.6169293571125],[-122.71095624815244,45.61692257995978],[-122.71094856037023,45.61691487979127],[-122.71093381542315,45.61689867204841],[-122.71092598570712,45.61689060493247],[-122.71091642942913,45.61688198111575],[-122.7109060305314,45.61687374120684],[-122.71089493364272,45.61686590154253],[-122.71088323218783,45.6168585054777],[-122.71087097916735,45.61685162715536],[-122.71083375118535,45.61683348036886],[-122.71082124034837,45.61682677671912],[-122.7107968268339,45.61681317777661],[-122.71078439145543,45.61680693846029],[-122.71077142427431,45.61680155995544],[-122.71075813459797,45.61679741360538],[-122.71074436611961,45.61679401622449],[-122.71071656505822,45.61678779638432],[-122.71070310739692,45.61678416903399],[-122.71069277856782,45.61678072766924],[-122.71068264826636,45.61677697653739],[-122.71066467477415,45.61676982048303],[-122.7106535168,45.61676457518065],[-122.71064261304906,45.61675888878978],[-122.71061032041123,45.6167412823377],[-122.7105933197945,45.61673271693278],[-122.71056838076558,45.61671963571217],[-122.71055525727759,45.6167137218609],[-122.71054187687142,45.61670900874975],[-122.71052774996528,45.61670497235077],[-122.71048331030815,45.61669397655512],[-122.71046923909756,45.61669002937811],[-122.71045534305841,45.6166856920071],[-122.71044168147961,45.6166809757519],[-122.71042832802289,45.61667587055914],[-122.71041537072323,45.61667034375551],[-122.71040369801442,45.61666481255298],[-122.71038084217864,45.61665335932397],[-122.71036926379294,45.61664784885475],[-122.71035618611904,45.61664219261196],[-122.71032963102093,45.61663130110708],[-122.71028941344566,45.61661362612671],[-122.71027582732532,45.61660814644186],[-122.71026188367547,45.61660329446035],[-122.71024916263272,45.61659967526646],[-122.71020993320427,45.61659007371978],[-122.7101958700785,45.61658605741889],[-122.71018192553035,45.61658162830325],[-122.71016806272888,45.61657691957931],[-122.71012663781787,45.61656227377392],[-122.71011278130462,45.61655758892499],[-122.71009884843457,45.61655319939208],[-122.71006126112646,45.61654269240967],[-122.71004913746336,45.61653912599184],[-122.71003744858488,45.61653525797392],[-122.71001039492181,45.61652470763314],[-122.7099966300367,45.61651996937278],[-122.70998292713533,45.61651648149512],[-122.70996857385374,45.61651372122716],[-122.70992357274957,45.61650651110251],[-122.70990908741564,45.6165036169991],[-122.70989469820138,45.6165002924871],[-122.70988044642944,45.6164966016565],[-122.70986638420194,45.61649258597726],[-122.70985257529942,45.61648826367096],[-122.70983910416342,45.61648362971088],[-122.70982607679515,45.61647865896354],[-122.70981362614532,45.61647330116224],[-122.70980192109715,45.61646748279172],[-122.70977991327102,45.61645447565267],[-122.70976868702489,45.61644822938474],[-122.70975548897674,45.61644220240478],[-122.709741391715,45.6164368106699],[-122.70972670426013,45.61643180033338],[-122.70969661249472,45.61642200523102],[-122.70968169327449,45.61641676492281],[-122.70966718638097,45.61641096665313],[-122.7096550097173,45.61640529781977],[-122.70964317351509,45.61639919229335],[-122.70960810238812,45.61638005950319],[-122.709596029929,45.61637397910742],[-122.70958250848734,45.61636784718749],[-122.70956859358361,45.61636208535618],[-122.70951161703837,45.61634032108561],[-122.70949762128623,45.61633467549349],[-122.70945659432891,45.61631699916298],[-122.70944278003648,45.61631162312448],[-122.70942859204486,45.61630694767962],[-122.70941424864475,45.61630326060636],[-122.70939953603701,45.61630024710862],[-122.70935480173249,45.61629272341702],[-122.70934021668555,45.61628994240295],[-122.70932608259285,45.61628661850663],[-122.70931261055854,45.61628246772015],[-122.70929924272879,45.61627697920623],[-122.70928642466802,45.61627069898844],[-122.7092607328509,45.61625752906465],[-122.70924761026122,45.61625159380122],[-122.70923400976781,45.61624600223711],[-122.70922010474553,45.61624065069692],[-122.70917815162511,45.61622513392933],[-122.70914384226947,45.61621140414689],[-122.70911018598906,45.61619896622152],[-122.70909970803959,45.61619456095214],[-122.70909005115028,45.61618962850776],[-122.70908286193306,45.61618504730327],[-122.70907610390718,45.61618010480468],[-122.70906822658043,45.61617386416123],[-122.70906075798717,45.61616728421505],[-122.7090539775034,45.61616029396391],[-122.70904669935298,45.61615095750036],[-122.70903331445525,45.61613154878534],[-122.70902549462069,45.61612224938889],[-122.70901744481742,45.61611488275785],[-122.70900821911945,45.61610806654974],[-122.70899802144434,45.61610178882637],[-122.70898699911582,45.61609606780967],[-122.70897525094855,45.61609095313864],[-122.70896350098461,45.61608667729838],[-122.70895135576198,45.61608279228412],[-122.70892661346409,45.61607535653064],[-122.70891435325711,45.61607140616843],[-122.70890041050559,45.61606637192239],[-122.70887310890748,45.61605570964919],[-122.70885946080335,45.6160506301614],[-122.70883037425277,45.61604079163711],[-122.70879511807281,45.61602776492055],[-122.70878303663056,45.61602406149208],[-122.70876964454632,45.61602093236506],[-122.70875585899995,45.61601845482514],[-122.70871403433861,45.61601213687807],[-122.7087005605077,45.61600951481985],[-122.70868962801067,45.61600685003449],[-122.70865138313579,45.61599674760004],[-122.70863809795107,45.61599272560164],[-122.70862556465619,45.61598803505007],[-122.70861419467965,45.61598231590682],[-122.7086037885954,45.61597488076837],[-122.70859461769467,45.61596632341483],[-122.7085861690394,45.61595706420475],[-122.70856960590223,45.61593786088967],[-122.70856059130833,45.61592858093969],[-122.70855043046414,45.61591997456854],[-122.70853947281434,45.61591275117244],[-122.70852735274451,45.61590624722473],[-122.70851436041056,45.61590028490551],[-122.70850072488285,45.61589472409505],[-122.70848662492614,45.61588945169219],[-122.70847219977932,45.61588438035777],[-122.70841318136348,45.61586478870338],[-122.70838391694645,45.61585462403769],[-122.70836960319073,45.61584922784795],[-122.7083556263032,45.61584350492048],[-122.70834210575987,45.61583734278219],[-122.70833003330077,45.61583115362458],[-122.70831830669304,45.61582463018888],[-122.70828368562199,45.61580450316693],[-122.70827185301307,45.61579806392585],[-122.70825788241378,45.61579108431049],[-122.70821484053528,45.61577126642054],[-122.70820073968024,45.61576447907437],[-122.70818709516941,45.61575731472232],[-122.7081746184684,45.61574999831068],[-122.70816256756888,45.61574236521374],[-122.70813902542024,45.61572692873607],[-122.70812719640456,45.61571952749425],[-122.70811509519937,45.61571264086375],[-122.70810252148034,45.61570654657203],[-122.70808924168549,45.61570158078258],[-122.70807533037502,45.61569805829521],[-122.70806070939543,45.61569563100844],[-122.70804557637615,45.61569397909619],[-122.70803009301392,45.6156928355129],[-122.70798280479907,45.61569025930879],[-122.70796713009565,45.61568900513714],[-122.7079516808694,45.61568718608558],[-122.70793658378275,45.61568453322338],[-122.70792099891088,45.61568056398333],[-122.70790583445057,45.6156756252103],[-122.7078909727225,45.6156699839497],[-122.70787632389516,45.61566385006778],[-122.70786181251009,45.61565738881855],[-122.70780404904066,45.61563063711504],[-122.70778943704428,45.61562421481926],[-122.707774651673,45.61561809978268],[-122.70773341540819,45.61560214048898],[-122.70771971250686,45.61559618693425],[-122.70767933592978,45.6155774698337],[-122.70766559979076,45.61557159796102],[-122.70765191485575,45.61556632050103],[-122.70762413086231,45.61555623369586],[-122.70757301312938,45.61553654076342],[-122.70756014116968,45.61553194128361],[-122.70752149384953,45.61551951200443],[-122.70750903601316,45.61551519025142],[-122.70747537613946,45.61550192464185],[-122.70744704956361,45.6154918648439],[-122.70742612420737,45.61548382705782],[-122.70741235123742,45.61547886690371],[-122.70735556693171,45.6154599392684],[-122.70734185864048,45.61545493198633],[-122.70732112821865,45.61544676789753],[-122.70728594570056,45.61543400683307],[-122.70727493774505,45.61542954683755],[-122.70722251296338,45.61540555346292],[-122.70721088696699,45.61540059267359],[-122.70716137991336,45.61538111583747],[-122.70714890770397,45.61537590559259],[-122.70713603933753,45.61537013234917],[-122.70712333356614,45.61536410462492],[-122.70707302431697,45.61533932201924],[-122.707060314054,45.61533340173897],[-122.70704743850104,45.61532778494944],[-122.70703500312257,45.61532278393901],[-122.70699793863393,45.61530851732754],[-122.7069861814835,45.61530351443037],[-122.70695795551896,45.61529036250148],[-122.70694419602377,45.61528492290151],[-122.70692982208091,45.61527991120536],[-122.70690021899901,45.61527021078223],[-122.70688544889911,45.61526505016649],[-122.70687232810607,45.61525998003226],[-122.70684668120471,45.61524903484943],[-122.70680927086471,45.61523222403969],[-122.70678352425034,45.61522105076119],[-122.70677077086826,45.61521483828671],[-122.70675997671181,45.61520807914886],[-122.70675064321601,45.61520038628507],[-122.7067430668249,45.61519178482895],[-122.70673719992779,45.61518169230131],[-122.70673312067807,45.61517082753174],[-122.70673030625629,45.61515942426548],[-122.70672834703066,45.61514766912173],[-122.70672449056315,45.61511177784006],[-122.70672298768167,45.61510007106918],[-122.70672091167503,45.61508875827079],[-122.7067179175902,45.6150780505706],[-122.7067135751341,45.61506821564573],[-122.70670733813111,45.61505960034565],[-122.70670188176406,45.61505468162514],[-122.70669557648908,45.61505025238854],[-122.70668778001074,45.61504568554302],[-122.70667917504865,45.61504165342278],[-122.70666854348725,45.61503795307095],[-122.70665710164548,45.61503488546719],[-122.70664515045893,45.61503215842885],[-122.70661908763758,45.61502641593915],[-122.70660509188546,45.61502355694692],[-122.70659082304549,45.61502141364518],[-122.70657572685714,45.61502031403267],[-122.70652915549786,45.61501955498589],[-122.70651362093164,45.6150184635419],[-122.70650039952731,45.61501661619282],[-122.70648722842861,45.61501409525244],[-122.70640125606266,45.61499456487235],[-122.70637160896335,45.61498735518074],[-122.70635709757825,45.61498339405988],[-122.70634294192601,45.61497905341508],[-122.70632928304211,45.61497419061071],[-122.70631629789466,45.61496862468158],[-122.70630412302764,45.6149622161337],[-122.706292607524,45.61495512393954],[-122.70628155824599,45.61494754979935],[-122.70627081529352,45.6149396633678],[-122.70623911015387,45.61491552966128],[-122.70622831779407,45.61490776324032],[-122.70621720832892,45.61490037005895],[-122.70620563802808,45.61489351537376],[-122.70619438662914,45.61488773077034],[-122.70618283609123,45.61488236653351],[-122.70615976645641,45.61487213068599],[-122.70614871089022,45.6148669021716],[-122.70612451656467,45.6148540731132],[-122.70611266868437,45.61484823258239],[-122.70609444725716,45.61484066219789],[-122.70608292995689,45.61483549463077],[-122.70605242316987,45.61482021687655],[-122.7060442565856,45.61481648509248],[-122.70603172508737,45.61481190691757],[-122.7060182368834,45.61480794201425],[-122.70598968842367,45.61480064998449],[-122.70597520578467,45.61479674163206],[-122.70596163224072,45.61479255303412],[-122.70594836771724,45.6147878912864],[-122.70593553438508,45.61478278026613],[-122.70592328495786,45.61477720991954],[-122.70591181257336,45.61477114066032],[-122.70590136426829,45.61476449708591],[-122.7058943529175,45.61475915043114],[-122.70588004365334,45.61474670904195],[-122.70587275382483,45.61473962247567],[-122.7058661880384,45.61473220853649],[-122.7058603444975,45.6147240801586],[-122.7058451755456,45.61469878641861],[-122.70582293056421,45.61466592163077],[-122.70581638094747,45.61465731318074],[-122.70580893032053,45.61464955614932],[-122.70580003250764,45.61464309855336],[-122.70579086969173,45.61463889360678],[-122.7057805130148,45.61463585928392],[-122.70576925532767,45.61463386551569],[-122.70575734187035,45.61463284129812],[-122.70574497476387,45.614632768409],[-122.70573175964772,45.61463366821242],[-122.70571831456284,45.61463528245465],[-122.70567704146714,45.61464134733011],[-122.70566304661332,45.61464281516562],[-122.70564813457959,45.61464359306812],[-122.70563321895263,45.61464357735928],[-122.70561841381843,45.61464280134184],[-122.70560384044958,45.6146412486785],[-122.70558963359335,45.61463884899362],[-122.70557595135325,45.61463547535946],[-122.70556349800846,45.61463127166894],[-122.70555146058366,45.61462634662731],[-122.70551584058602,45.61461003265942],[-122.70547593203119,45.61459333978886],[-122.70546167576767,45.61458676091394],[-122.70544765126944,45.61457980879539],[-122.70539255579644,45.61455088623883],[-122.70537878013154,45.61454395045312],[-122.70536491643176,45.61453737597088],[-122.70535092427292,45.61453131171255],[-122.7053259385316,45.61452147920522],[-122.70531398105683,45.61451614697947],[-122.70530182774938,45.61450944933627],[-122.70529034728003,45.61450192351932],[-122.705279332138,45.61449381521545],[-122.70526860715185,45.6144853330386],[-122.70523665856878,45.61445943219874],[-122.705225581443,45.61445123340543],[-122.705214002159,45.6144435856795],[-122.70520169973116,45.61443674162053],[-122.70519008990445,45.61443151809243],[-122.70517796174977,45.61442688521907],[-122.7051392704122,45.61441380848747],[-122.70512549923887,45.61440938674053],[-122.70509952175749,45.61440188792952],[-122.70508694803846,45.61439791922705],[-122.70506012973397,45.6143877417283],[-122.7050463441876,45.61438308937227],[-122.70503205288975,45.61437954920805],[-122.7050169908374,45.61437684098856],[-122.70500136913459,45.61437471022926],[-122.70493642812609,45.61436796984086],[-122.70492021533184,45.61436581269019],[-122.7049042621507,45.61436305671486],[-122.70488982802074,45.61435979805353],[-122.70487576040337,45.61435590160914],[-122.70486209792621,45.61435142833238],[-122.70484890886122,45.614346404614],[-122.70483629112474,45.61434081600173],[-122.70482371021917,45.61433430998665],[-122.70481182999954,45.6143273201354],[-122.70480061093997,45.61432001296254],[-122.70478534856329,45.61430958222136],[-122.7047752452113,45.61430345070407],[-122.70476453639478,45.61429775652335],[-122.70475328589414,45.61429254994799],[-122.70474153413362,45.6142879057527],[-122.70472684578041,45.61428308561674],[-122.70468638206675,45.61427121781311],[-122.70467349124243,45.61426773356575],[-122.7046603956022,45.61426463575862],[-122.70464544404263,45.61426176227529],[-122.7046151573428,45.61425685165347],[-122.70460012852811,45.61425416290716],[-122.70458538537767,45.61425087156482],[-122.70457188100401,45.61424699019349],[-122.70455865331147,45.61424249365876],[-122.70450629051355,45.61422242953321],[-122.70449279063145,45.61421782806055],[-122.70447831607726,45.61421355333417],[-122.70446352262115,45.61420971908724],[-122.70444851626436,45.61420618331058],[-122.70440315583409,45.61419614213101],[-122.70438822583407,45.61419259692813],[-122.70437355993873,45.61418874508565],[-122.7043592830139,45.61418443768242],[-122.70434509232739,45.61417943531334],[-122.70430404111553,45.61416340837577],[-122.70429033012933,45.61415866677403],[-122.70424670973578,45.61414618252314],[-122.7042333679572,45.61414120402829],[-122.70422245701972,45.6141357197033],[-122.70421233120985,45.61412947443384],[-122.70420273181273,45.61412279245345],[-122.70417409441977,45.61410210369496],[-122.70416464773625,45.61409460547119],[-122.7041573219751,45.61408713426592],[-122.7041437969402,45.61407062157921],[-122.70413593847809,45.61406148081629],[-122.70412750239926,45.614052319316],[-122.70411864321393,45.61404319425911],[-122.70410013612242,45.61402529602317],[-122.70409067506587,45.61401667113743],[-122.70408117089016,45.61400839184913],[-122.70407446406824,45.61400288426175],[-122.70406743744608,45.61399774992059],[-122.70405984668194,45.61399307365443],[-122.70405179598036,45.61398868454915],[-122.70403990587928,45.61398265541971],[-122.70402749655193,45.6139769159644],[-122.70401456889667,45.61397166600226],[-122.70400304800317,45.61396765454072],[-122.70396821133644,45.61395669276825],[-122.7039572231439,45.61395272152083],[-122.70391542004212,45.61393523797499],[-122.70390295591757,45.61392970021909],[-122.70389041094462,45.61392337009774],[-122.70387818217866,45.61391647256451],[-122.70386625524665,45.61390912889313],[-122.70385463464012,45.61390142956756],[-122.70384334371532,45.61389344056574],[-122.70383242289641,45.61388520461627],[-122.70381662692046,45.61387268637288],[-122.70380852681154,45.61386656046309],[-122.70379692596796,45.61385863052248],[-122.7037846738458,45.61385111027345],[-122.70377189171764,45.61384395824424],[-122.70375866133011,45.61383715935426],[-122.70374502849737,45.61383072931274],[-122.70373100399915,45.61382471399032],[-122.70371656717421,45.61381919256091],[-122.70370194709295,45.6138143013796],[-122.70368701709293,45.61380983057304],[-122.70361141667526,45.61378948164391],[-122.7035967786277,45.61378509189432],[-122.70358255560183,45.61378034460537],[-122.70356063940383,45.61377215073968],[-122.70354645410718,45.61376709052429],[-122.70350299271541,45.61375258222517],[-122.70348866907823,45.61374760055357],[-122.70347467422441,45.61374234931326],[-122.70345328084592,45.61373363515628],[-122.70344096314673,45.61372889037639],[-122.70340344860215,45.61371501922913],[-122.70339121624293,45.61371008342479],[-122.70335731651905,45.61369497816434],[-122.7033442720828,45.61368969173068],[-122.70333399576312,45.61368583659313],[-122.70361770982046,45.61341300102325]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000978,"geom:area_square_m":8458224.527625,"geom:bbox":"-122.787418341,45.613413001,-122.703333996,45.6507006357","geom:latitude":45.630666,"geom:longitude":-122.760135,"iso:country":"US","lbl:latitude":45.629237,"lbl:longitude":-122.773494,"lbl:max_zoom":18,"mps:latitude":45.629237,"mps:longitude":-122.773494,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Rivergate"],"reversegeo:latitude":45.629237,"reversegeo:longitude":-122.773494,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85846673,102191575,1108714605,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"f703d4bd54941bc3ea922689513570b9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714605,"microhood_id":1108719769,"neighbourhood_id":85846673,"region_id":85688513}],"wof:id":1108719769,"wof:lastmodified":1566624133,"wof:name":"Rivergate Industrial District","wof:parent_id":85846673,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85844911],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108719771.geojson b/fixtures/microhoods/1108719771.geojson new file mode 100644 index 0000000..5473da7 --- /dev/null +++ b/fixtures/microhoods/1108719771.geojson @@ -0,0 +1 @@ +{"id":1108719771,"type":"Feature","bbox":[-122.641300723,45.503655985,-122.641300723,45.503655985],"geometry":{"type":"Point","coordinates":[-122.641300723,45.503655985]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-122.641300723,45.503655985,-122.641300723,45.503655985","geom:latitude":45.503656,"geom:longitude":-122.641301,"iso:country":"US","lbl:latitude":45.503656,"lbl:longitude":-122.641301,"lbl:max_zoom":18,"mps:latitude":45.504823,"mps:longitude":-122.645084,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":45.504823,"reversegeo:longitude":-122.645084,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85893193,102191575,1108715281,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"c7ff7544fdf591550ebc0cc66e50ac8c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108715281,"microhood_id":1108719771,"neighbourhood_id":85893193,"region_id":85688513}],"wof:id":1108719771,"wof:lastmodified":1566624130,"wof:name":"Seven Corners","wof:parent_id":85893193,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893239],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108719773.geojson b/fixtures/microhoods/1108719773.geojson new file mode 100644 index 0000000..4a9def9 --- /dev/null +++ b/fixtures/microhoods/1108719773.geojson @@ -0,0 +1 @@ +{"id":1108719773,"type":"Feature","bbox":[-122.78195742632595,45.58086041034257,-122.77053329663458,45.58725228190532],"geometry":{"type":"Polygon","coordinates":[[[-122.7743395186805,45.58725228190532],[-122.77380008639547,45.58704747875958],[-122.773392,45.586864],[-122.773234,45.586774],[-122.7730305868511,45.58660672866451],[-122.772767,45.586395],[-122.772626,45.586327],[-122.772485,45.586276],[-122.77126686815325,45.58502154692068],[-122.77053329663458,45.58441828365518],[-122.77059757199147,45.58436454108335],[-122.7706756310981,45.58445988801412],[-122.77073512741768,45.58443316229687],[-122.77083373818135,45.58455382588581],[-122.77090931434452,45.58458714399877],[-122.77120538379081,45.58446709157032],[-122.7711683094207,45.58441946559763],[-122.77112928929972,45.58437205019675],[-122.77146767388747,45.58423538530693],[-122.77139151112442,45.584138629716],[-122.7715908670489,45.5840429509163],[-122.77218881804136,45.5838018689906],[-122.77230993789114,45.58375283353632],[-122.77226264877793,45.58369409215546],[-122.7720552035243,45.5834414814499],[-122.77198943965898,45.58336046914319],[-122.77207403041602,45.58332621667522],[-122.77275273276602,45.58305284186243],[-122.7728373369978,45.58301893185288],[-122.77298732870078,45.5832028834752],[-122.77304897019728,45.58327848914176],[-122.77309001152766,45.58332757907901],[-122.7731578460097,45.58341146523953],[-122.77358080967637,45.58324054109016],[-122.7735520231631,45.58320475576288],[-122.77341649164126,45.58304041104478],[-122.77309798227918,45.58264903881079],[-122.77307133465457,45.58261784145382],[-122.77238514664333,45.58177776211875],[-122.77272351955297,45.58164126444129],[-122.77280810671677,45.58160701155315],[-122.77329495676985,45.58220169354794],[-122.77339154183255,45.58232050784878],[-122.77348808557277,45.5824382939492],[-122.77357032633701,45.58254041539977],[-122.77359496083706,45.58257010954585],[-122.77380034176215,45.5828198434199],[-122.77385581093432,45.58288768252026],[-122.77398117801876,45.58304210981437],[-122.77400377064814,45.58306961516291],[-122.77442668850074,45.58289765951736],[-122.7743979567847,45.58286324518848],[-122.77429515538023,45.58273563761853],[-122.77410622889617,45.58250650005105],[-122.7739109935439,45.58226616975998],[-122.7738145037026,45.58214975453285],[-122.77371791145337,45.58203076823021],[-122.77323106589188,45.58143625983957],[-122.77356943430995,45.58129976007443],[-122.77365402776194,45.58126567799197],[-122.77383273501131,45.58148370035412],[-122.77397036769263,45.58165177544637],[-122.77410809110376,45.58182207759708],[-122.77433398775332,45.58209627070768],[-122.77434640157223,45.58211351583292],[-122.774356649553,45.58212548852001],[-122.77447167163861,45.58226554418667],[-122.77464633646919,45.58248004437982],[-122.77472639342899,45.58257637719029],[-122.77484969977814,45.58272810125164],[-122.77569757735401,45.58238671352086],[-122.77537515223563,45.58199542537937],[-122.77529248297496,45.58202878462007],[-122.77495212029696,45.58216430055523],[-122.77485553253928,45.58204548718123],[-122.77519588803077,45.58190980057594],[-122.77527036375771,45.58186699975661],[-122.77547518233744,45.58166437192578],[-122.77555115645427,45.58161022433411],[-122.77563281421192,45.58155167687357],[-122.77588133223696,45.5818538839987],[-122.77625429836986,45.58170331631164],[-122.77652416395931,45.58205054334216],[-122.77671834199451,45.58197227653559],[-122.77689523285038,45.58190138200263],[-122.77707213718095,45.58183083129098],[-122.77724901995198,45.58175976493815],[-122.77727593707117,45.58174894336432],[-122.7774270498716,45.58166861266656],[-122.77746692518875,45.58154264083867],[-122.77759360561012,45.58138905694368],[-122.7777979929985,45.5812732032381],[-122.77801000798199,45.58115273944997],[-122.77807495438037,45.58111595562653],[-122.77829326385906,45.58086041034257],[-122.77903438205328,45.58102355490774],[-122.77956013814129,45.58166116920753],[-122.7778946292652,45.58231733157402],[-122.77819669137273,45.58268758139526],[-122.77865649764419,45.58260748026333],[-122.77901080397201,45.58252740919544],[-122.779261099763,45.58248438062356],[-122.7792999078816,45.58247778100758],[-122.7796100781829,45.58232038713523],[-122.77974028808501,45.58225470070523],[-122.78000378551742,45.5821999193068],[-122.78007742850608,45.58218508408348],[-122.78022470729691,45.58215524198502],[-122.7805176964201,45.58215371985838],[-122.78104702241305,45.582150769284],[-122.78129980743567,45.58246111315432],[-122.78191643979281,45.58321986734749],[-122.78195742632595,45.58326741197744],[-122.78156369024536,45.5833386713204],[-122.78132747195319,45.58314889517281],[-122.7808954218274,45.58328761794573],[-122.78100432279265,45.58342075874233],[-122.78079315671712,45.58395105420098],[-122.78034715844993,45.58393743157048],[-122.78029995737164,45.58388109264099],[-122.77993830012981,45.58343829140707],[-122.77917503307394,45.5837457958653],[-122.77909237728802,45.58377949985092],[-122.77896094567713,45.58362039641579],[-122.77891567148512,45.58356333290302],[-122.77889314443274,45.58353754163981],[-122.77871635688315,45.58331931789457],[-122.77868145553771,45.58327730969011],[-122.77856706317114,45.58329912451182],[-122.77817539141904,45.58337324693488],[-122.77809482780943,45.58345903988501],[-122.77789951789698,45.58350920788999],[-122.77775770086306,45.58343193458289],[-122.77771239702666,45.58347141465536],[-122.77743686306779,45.58371317259598],[-122.77743300749857,45.58371445011575],[-122.7776176615951,45.58393406363423],[-122.77789294851729,45.58426986229282],[-122.77746653082836,45.58440331573513],[-122.77737195350028,45.58443211175149],[-122.77768023194959,45.58481098454772],[-122.77786920784096,45.58504080174927],[-122.7779924593929,45.58519080912956],[-122.77835409148189,45.58563310114128],[-122.77826949443663,45.58566718748788],[-122.77792726146622,45.58580514836797],[-122.77761692767153,45.58542391529542],[-122.77734804304237,45.58524763900385],[-122.7771057988513,45.58534555008772],[-122.77693467158629,45.58541427194857],[-122.77715863685799,45.58568832555145],[-122.77742161775909,45.58600944987487],[-122.77741391919709,45.58601234618044],[-122.7768428853238,45.58624263248273],[-122.77472221716124,45.58709981190376],[-122.7747125521871,45.58710240388026],[-122.77461831262556,45.58713976466547],[-122.77454140336253,45.58717078034093],[-122.77437220567877,45.58723911648395],[-122.7743395186805,45.58725228190532]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":277722.695234,"geom:bbox":"-122.781957426,45.5808604103,-122.770533297,45.5872522819","geom:latitude":45.584043,"geom:longitude":-122.775709,"iso:country":"US","lbl:latitude":45.584886,"lbl:longitude":-122.774845,"lbl:max_zoom":18,"mps:latitude":45.584886,"mps:longitude":-122.774845,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Whitwood Ct"],"reversegeo:latitude":45.584886,"reversegeo:longitude":-122.774845,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85830793,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"00373c33cf68ab88fd74a82ad450c3a0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108719773,"neighbourhood_id":85830793,"region_id":85688513}],"wof:id":1108719773,"wof:lastmodified":1566624130,"wof:name":"Whitwood Court","wof:parent_id":85830793,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857649],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108719775.geojson b/fixtures/microhoods/1108719775.geojson new file mode 100644 index 0000000..2520c1b --- /dev/null +++ b/fixtures/microhoods/1108719775.geojson @@ -0,0 +1 @@ +{"id":1108719775,"type":"Feature","bbox":[-122.74750175847599,45.47616355851194,-122.72314,45.48720730117143],"geometry":{"type":"Polygon","coordinates":[[[-122.72318332414665,45.48578081222909],[-122.723199,45.483484],[-122.723204,45.483028],[-122.723204,45.482815],[-122.723178,45.482749],[-122.723174,45.482126],[-122.723152,45.481186],[-122.723164,45.480262],[-122.723147,45.479112],[-122.723155,45.478649],[-122.72314,45.477607],[-122.72314078196888,45.47623602703168],[-122.7249684978392,45.47625069432569],[-122.72524706361217,45.47634304118422],[-122.72812042386313,45.476368939599],[-122.72844422699715,45.47632184182837],[-122.72974230605745,45.47630607033395],[-122.73103770544324,45.4763213750708],[-122.74367323215988,45.47635825646499],[-122.74400876729153,45.47636164470679],[-122.74400133732583,45.47617349902622],[-122.74442214593415,45.47616355851194],[-122.74441264175844,45.47631790997846],[-122.74426590914331,45.47635507546064],[-122.74426848910478,45.47651913631242],[-122.74427011954704,45.47656043317329],[-122.74427567113548,45.47684910595869],[-122.74428055258075,45.47712081487095],[-122.74463461097356,45.47719809264839],[-122.74467198538098,45.47720627935986],[-122.74473493392618,45.47722013950947],[-122.74507523282382,45.47729459775702],[-122.74544110046935,45.47737455736984],[-122.74544243985741,45.47716171823775],[-122.74544620739174,45.47691161809697],[-122.74544867775876,45.47653001405502],[-122.74544981772085,45.47641080978011],[-122.74583407208364,45.47641341127219],[-122.74583546447232,45.47654731425341],[-122.74583459939473,45.47657476905579],[-122.74583835974249,45.47686725011992],[-122.74584066302289,45.47712288973943],[-122.74621708138143,45.47712444305626],[-122.74637506090392,45.47712512460076],[-122.74658765440245,45.47712610912392],[-122.74659906839643,45.47687225905386],[-122.74660148845783,45.47683482809646],[-122.746612942876,45.47658200470985],[-122.74661511949394,45.47653840495111],[-122.74662013927976,45.47641878180969],[-122.74750175847599,45.47642416242508],[-122.74745238796629,45.47650709892148],[-122.74740129987778,45.47659589965749],[-122.74729721388242,45.47697177624843],[-122.74722571696897,45.47723486260772],[-122.74715769653565,45.47748724907149],[-122.74713332614031,45.4778078894825],[-122.74718173635097,45.47804582134675],[-122.74703681114617,45.47803013788857],[-122.74713193015836,45.47821639528552],[-122.74719568988229,45.47839863721809],[-122.74737774694935,45.47861354586182],[-122.74716851315,45.4786483377161],[-122.74687577914835,45.47864274882402],[-122.74672858479916,45.47861904846374],[-122.74639494870601,45.47856538610476],[-122.74628896636712,45.47854825344345],[-122.7459984979166,45.47850128976866],[-122.74594551348451,45.47849289475571],[-122.74568668639328,45.47855574772368],[-122.74556020988948,45.47851346404688],[-122.7454013140854,45.47834165644325],[-122.74532594004317,45.47826013168986],[-122.74507838231717,45.47821335547947],[-122.74490745537649,45.47818120067033],[-122.7447738498426,45.47815586053375],[-122.74453022404259,45.47810986403106],[-122.7437482199265,45.47796103777587],[-122.74376779241994,45.48003700054247],[-122.7437835641414,45.48255992607298],[-122.74379402412454,45.48445446125005],[-122.74379826956257,45.48515455201793],[-122.74375061663171,45.48720730117143],[-122.74268676879018,45.4870859234359],[-122.74147934681007,45.48708240421453],[-122.74030873150207,45.48707249459478],[-122.73908914453635,45.48705718333138],[-122.73745617443649,45.48704425641997],[-122.73626196487757,45.48707900843019],[-122.73490330073959,45.48704835630304],[-122.73357872586998,45.48704137453574],[-122.73194954306734,45.48707511007957],[-122.73122037695792,45.48703234786388],[-122.72981638203409,45.4870392137523],[-122.72918263317757,45.48704225812047],[-122.72855373498062,45.48704502915107],[-122.72780789093217,45.48700808351951],[-122.72775318269349,45.48699677521776],[-122.7274447703952,45.48689077950699],[-122.72718313876366,45.48678404674801],[-122.72680226026972,45.48657073303192],[-122.72653020189264,45.48644670944057],[-122.7262224139235,45.48630674494817],[-122.72586747248675,45.48615791830155],[-122.72567561479991,45.48608961350873],[-122.72533934754131,45.48601913395505],[-122.72499434416655,45.48597454642358],[-122.72318332414665,45.48578081222909]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000223,"geom:area_square_m":1929199.775985,"geom:bbox":"-122.747501758,45.4761635585,-122.72314,45.4872073012","geom:latitude":45.481509,"geom:longitude":-122.733911,"iso:country":"US","lbl:latitude":45.481686,"lbl:longitude":-122.733906,"lbl:max_zoom":18,"mps:latitude":45.481686,"mps:longitude":-122.733906,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Vermont Hls"],"reversegeo:latitude":45.481686,"reversegeo:longitude":-122.733906,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871499,102191575,1108714057,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"c59bb24b831dcb0523117769a1263a9c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714057,"microhood_id":1108719775,"neighbourhood_id":85871499,"region_id":85688513}],"wof:id":1108719775,"wof:lastmodified":1566624130,"wof:name":"Vermont Hills","wof:parent_id":85871499,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85853645],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108720529.geojson b/fixtures/microhoods/1108720529.geojson new file mode 100644 index 0000000..ee8382c --- /dev/null +++ b/fixtures/microhoods/1108720529.geojson @@ -0,0 +1 @@ +{"id":1108720529,"type":"Feature","bbox":[-122.72524383237209,45.53322420335908,-122.71255250590326,45.54418166223358],"geometry":{"type":"Polygon","coordinates":[[[-122.71256164702272,45.53841113485429],[-122.71255250590326,45.53658710848793],[-122.71294264423118,45.53658011146958],[-122.71293925129434,45.53644299238581],[-122.71293390721672,45.5363059107216],[-122.71305094871508,45.53630382859494],[-122.71304560373915,45.53616674722072],[-122.71304025966154,45.5360296655123],[-122.71311828283552,45.53602816290038],[-122.71331335289777,45.53602474930322],[-122.71330291716913,45.53575709746863],[-122.71333751847725,45.53559318085578],[-122.71332799094534,45.53534883284044],[-122.71332545230634,45.53528371883142],[-122.71332032112946,45.53515212072245],[-122.71351733245105,45.5351484975337],[-122.71363259438682,45.53515090753944],[-122.71359673813225,45.53418135893034],[-122.71410605505059,45.53417754941955],[-122.71409429251025,45.53387596924951],[-122.71460126752062,45.53386225770359],[-122.71517529727538,45.53356602142401],[-122.71610088810648,45.5332753506943],[-122.71873401549425,45.53322420335908],[-122.71879115553284,45.53388707566211],[-122.71874876403459,45.53619843223628],[-122.71886692573212,45.53637483416771],[-122.71893185506254,45.53648778724065],[-122.71899427000847,45.53663628454049],[-122.71904284281419,45.536780249133],[-122.7191578693914,45.53697626026326],[-122.71924381480788,45.53707748970962],[-122.71938768718715,45.53721241000568],[-122.7194560912011,45.53731432110152],[-122.71947890122279,45.53734851983248],[-122.71948474656034,45.53734823605441],[-122.72051987885548,45.53731177968146],[-122.7205258912797,45.53731577900443],[-122.72052986003662,45.53751702084367],[-122.720533821607,45.53766819085259],[-122.72100996104696,45.53766379263168],[-122.7200370065425,45.53794255547452],[-122.72013606646382,45.53797973943755],[-122.72066827515054,45.5381610020961],[-122.72079416235951,45.5382352218443],[-122.72087021103653,45.53828296752134],[-122.72094487900294,45.53834531520274],[-122.7210223892389,45.53843041622505],[-122.72107537906088,45.53848752370758],[-122.7211232215363,45.53856273717047],[-122.72121972305568,45.53863426590652],[-122.72133864652457,45.53868015446134],[-122.72263101140132,45.53893073975273],[-122.72273471920592,45.53893696507703],[-122.72285860856171,45.53891021895473],[-122.72297397110881,45.53886511772026],[-122.72303460739049,45.53881833081416],[-122.72313509922638,45.53874247905097],[-122.7232196468643,45.53870809051884],[-122.72334385152874,45.53868939747923],[-122.72345129812153,45.53869143421485],[-122.72354617189366,45.53872132268788],[-122.72359164102008,45.53873587618259],[-122.72364558395458,45.53876741440447],[-122.72369027783492,45.53881199284929],[-122.72373734506422,45.53886732810946],[-122.72378192755345,45.5389588933895],[-122.72381512479478,45.53900900928193],[-122.72386733308247,45.53904606795798],[-122.72391112056266,45.53906751363111],[-122.72396086027994,45.53909141632295],[-122.7240223517578,45.53911629174769],[-122.72406566313089,45.53912557055833],[-122.72411081066043,45.53913189904984],[-122.72417732102575,45.53913541375958],[-122.72424351608241,45.53913087471263],[-122.72430172152293,45.53912168839528],[-122.7245572958145,45.53906787038778],[-122.7249445415672,45.53898663740208],[-122.72496774145772,45.53898087202948],[-122.72501017248187,45.53896770410008],[-122.72505042419311,45.53894874814048],[-122.72507332224971,45.53893527189458],[-122.72513561951632,45.53898070906632],[-122.72520627470837,45.53908994714042],[-122.72524383237209,45.53915163893033],[-122.72513348062765,45.53922493999919],[-122.72456799474956,45.53954009405602],[-122.72418774148306,45.53970024350842],[-122.72402589740823,45.53975481908795],[-122.72405026241366,45.53982859881475],[-122.72421080932122,45.54033873590378],[-122.72414819494931,45.54028524498001],[-122.72345510697836,45.54038336595443],[-122.7231744068083,45.5401447782111],[-122.72297367825804,45.54015363340827],[-122.72278204155678,45.54019523721231],[-122.722625254997,45.54022947886347],[-122.72293712670744,45.5406658690181],[-122.72428823242062,45.54241404643025],[-122.7238763925921,45.54271524798521],[-122.72381947353908,45.5427573337172],[-122.72376441759191,45.54279715381708],[-122.72340951298614,45.54305678249237],[-122.7233525723735,45.54309835331961],[-122.72294255971826,45.54339660048547],[-122.72285909994015,45.54345891858878],[-122.72250413963881,45.54371734568021],[-122.72239025661698,45.54380048632704],[-122.7218682932161,45.54418166223358],[-122.72073830421681,45.5429446567444],[-122.72011246233144,45.54226739274144],[-122.7198126289441,45.54193879606235],[-122.71931130523518,45.54139990953339],[-122.71774798241756,45.53971167343451],[-122.71731373591092,45.53933970635693],[-122.71678317922601,45.53900080512781],[-122.71614111646154,45.53870572219305],[-122.71554413654789,45.53851522705431],[-122.71514050732105,45.5384269776054],[-122.71459836955553,45.53834105231458],[-122.71435889307384,45.53830725499338],[-122.71402470272012,45.53829757398312],[-122.71256164702272,45.53841113485429]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":475429.904002,"geom:bbox":"-122.725243832,45.5332242034,-122.712552506,45.5441816622","geom:latitude":45.538163,"geom:longitude":-122.71843,"iso:country":"US","lbl:latitude":45.536008,"lbl:longitude":-122.716221,"lbl:max_zoom":18,"mps:latitude":45.536008,"mps:longitude":-122.716221,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Willamette Hts"],"reversegeo:latitude":45.536008,"reversegeo:longitude":-122.716221,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871509,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ac5a60c5adc1d133b43bd2408f2045d2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108720529,"neighbourhood_id":85871509,"region_id":85688513}],"wof:id":1108720529,"wof:lastmodified":1566623894,"wof:name":"Willamette Heights","wof:parent_id":85871509,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857791],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108720531.geojson b/fixtures/microhoods/1108720531.geojson new file mode 100644 index 0000000..b88ba81 --- /dev/null +++ b/fixtures/microhoods/1108720531.geojson @@ -0,0 +1 @@ +{"id":1108720531,"type":"Feature","bbox":[-122.75478883007703,45.55797035288673,-122.73936886294689,45.5695079834529],"geometry":{"type":"Polygon","coordinates":[[[-122.73936886294689,45.5586012620881],[-122.7394896943384,45.55852195521737],[-122.74035840474401,45.55797035288673],[-122.7405699094844,45.55813394008574],[-122.74062030946342,45.5581739411341],[-122.74068676053992,45.55822477644003],[-122.74107766692738,45.55853011186498],[-122.74133956985015,45.55873352763052],[-122.74173243546325,45.55903882192327],[-122.74186339545865,45.55914070100217],[-122.74208699601434,45.55931365273162],[-122.74219584308067,45.55939949942384],[-122.74343091969682,45.56035988317224],[-122.74351545924989,45.56042356744241],[-122.74380054499518,45.56022508824171],[-122.74380428647837,45.56071476640653],[-122.74365186752746,45.56081119756514],[-122.74336231356193,45.56099553075601],[-122.74348374063551,45.56110308196682],[-122.74360321746663,45.56121066945096],[-122.74369024535304,45.56128785257941],[-122.7437284884313,45.56131660132892],[-122.74385945022333,45.56141830646113],[-122.74399041381197,45.56152001140929],[-122.74427998215054,45.56133601894391],[-122.74452179155702,45.56152455871166],[-122.74465275604398,45.56162626283852],[-122.74478372142927,45.56172796741018],[-122.74506519774376,45.56153692888174],[-122.74519616941724,45.56163880280214],[-122.74532713570082,45.56174050672215],[-122.74545810198441,45.56184220982914],[-122.74558906826799,45.56194391275201],[-122.74572004263642,45.56204578719232],[-122.74585101071663,45.56214749037559],[-122.74593764963252,45.5622147336859],[-122.74598197879686,45.56224919274584],[-122.74570246080968,45.56244036596103],[-122.7458334288899,45.56254206905902],[-122.74596439786842,45.5626437713439],[-122.74609536774527,45.56274547407367],[-122.74622634480865,45.56284734831835],[-122.74635329023302,45.56294604249207],[-122.7465852774602,45.56278751965137],[-122.74762480790699,45.56354075670646],[-122.74786608191758,45.56371523953053],[-122.74858897868457,45.56347594956079],[-122.74859264381094,45.56346987663862],[-122.74863825217624,45.56338873111527],[-122.74840957074927,45.56333489923293],[-122.74850086563332,45.56287885854792],[-122.74887540112303,45.56296636394953],[-122.74930603909718,45.56220290644161],[-122.74991352570639,45.56112234744877],[-122.75028871786459,45.56122664044316],[-122.74989996114562,45.56186375687141],[-122.74986450643799,45.56220089760232],[-122.749781106847,45.5630527358794],[-122.75117212650488,45.56350806069195],[-122.7505235743108,45.56419347868259],[-122.75021552762682,45.56450234385117],[-122.75084548379621,45.56443102475494],[-122.7508877764798,45.56461093863619],[-122.75110537539106,45.5645821563532],[-122.75134665748651,45.56475645984725],[-122.75091229869044,45.56503213121238],[-122.75157284698683,45.5655346732259],[-122.75181812568692,45.56566191110009],[-122.75175177342513,45.56571242580902],[-122.75134700243954,45.56599557889815],[-122.75119688048083,45.56610072129175],[-122.75146807557692,45.56629038651549],[-122.75162391621073,45.56618170252911],[-122.75176237085053,45.56627467795462],[-122.7518988734512,45.5663676915888],[-122.75203528891531,45.56645847752688],[-122.75245309445563,45.56615929052254],[-122.75259867632892,45.56623497699698],[-122.75263057460633,45.5662513283009],[-122.75280602905605,45.56634152012104],[-122.75235238882071,45.56667279220805],[-122.7526614667706,45.56688177560731],[-122.75281795868301,45.56698622959657],[-122.7529724994546,45.56709072049588],[-122.7531270402262,45.56719521182973],[-122.7532815818961,45.5672997023403],[-122.7534401498151,45.5674072012342],[-122.75312142306072,45.56764391805902],[-122.75382586124529,45.56811917937197],[-122.75478883007703,45.56920172808965],[-122.75444422285932,45.56942626575504],[-122.7543127508352,45.5695079834529],[-122.75183073444026,45.56780021102703],[-122.74777277211238,45.56505719074917],[-122.74502598897655,45.56301380623163],[-122.74275554201168,45.56125738740489],[-122.73936886294689,45.5586012620881]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000026,"geom:area_square_m":223720.974181,"geom:bbox":"-122.75478883,45.5579703529,-122.739368863,45.5695079835","geom:latitude":45.563814,"geom:longitude":-122.747808,"iso:country":"US","lbl:latitude":45.564553,"lbl:longitude":-122.749206,"lbl:max_zoom":18,"mps:latitude":45.564553,"mps:longitude":-122.749206,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"ship terminal","mz:tier_metro":1,"reversegeo:latitude":45.564553,"reversegeo:longitude":-122.749206,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85830793,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1d8a6192f9049c430048761ef0a4a798","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108720531,"neighbourhood_id":85830793,"region_id":85688513}],"wof:id":1108720531,"wof:lastmodified":1566623893,"wof:name":"Willbridge","wof:parent_id":85830793,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857801],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108720799.geojson b/fixtures/microhoods/1108720799.geojson new file mode 100644 index 0000000..65b76f4 --- /dev/null +++ b/fixtures/microhoods/1108720799.geojson @@ -0,0 +1 @@ +{"id":1108720799,"type":"Feature","bbox":[-122.78592944593233,45.59187494433388,-122.78084358005233,45.59539062707123],"geometry":{"type":"Polygon","coordinates":[[[-122.78357675640657,45.59539062707123],[-122.78084358005233,45.59234616610335],[-122.78113401885842,45.59223134454982],[-122.78122517450358,45.59231150549643],[-122.78133033129073,45.59230256108382],[-122.78139579691536,45.59232698550607],[-122.78149680797748,45.59231212090014],[-122.7815010570088,45.5923206102017],[-122.7815094670365,45.59233536291387],[-122.7815139927489,45.59235070650985],[-122.78151852474947,45.59236622108191],[-122.78151916614662,45.59238215681406],[-122.78151784113156,45.59239778766906],[-122.78155590993669,45.59242121194222],[-122.78176806326071,45.59254612970972],[-122.78202143308658,45.5923356690441],[-122.78204598763656,45.59231460388739],[-122.78212803795797,45.59236270592945],[-122.78222822975656,45.59227892177828],[-122.78256854751879,45.59199556929664],[-122.78271669857376,45.59208385846838],[-122.78276873079164,45.59211437858436],[-122.78280210949266,45.59206981664474],[-122.7828414619903,45.5920280519735],[-122.78288680355598,45.59198942653963],[-122.78293814676604,45.59195428231256],[-122.78299356114096,45.59192317373176],[-122.78305500410977,45.5918962321832],[-122.78311667525067,45.59187494433388],[-122.7831305497302,45.59187981354116],[-122.78338046283888,45.5919719122608],[-122.78368982735141,45.59208460902504],[-122.78424512094423,45.59228742302836],[-122.78433042316702,45.59231916881205],[-122.78432128191066,45.59233478334089],[-122.78431418971151,45.59235275827315],[-122.78431089199611,45.59236791454047],[-122.7843095400316,45.59238285959288],[-122.78430992720548,45.59239245522593],[-122.78431442507012,45.5924071130001],[-122.78431889598528,45.59242108622161],[-122.7843252785154,45.5924339920717],[-122.78433361308458,45.59244685894543],[-122.78434585173201,45.59245964849813],[-122.78435804995527,45.59247141028265],[-122.78437214542038,45.59248176210932],[-122.7843881444156,45.59249087621602],[-122.78440606221224,45.592499094563],[-122.78441995016655,45.59250430630435],[-122.78443777094513,45.59251012590349],[-122.7844574683044,45.59251402135104],[-122.78446733450114,45.59251639809558],[-122.78449098444764,45.59252141622593],[-122.784528543908,45.59253215903378],[-122.78456622104761,45.59254581540885],[-122.78459813010484,45.59256181583599],[-122.78462611352427,45.59257737938059],[-122.78465428289492,45.59259756879717],[-122.78467863083237,45.59261989293537],[-122.78470110218922,45.59264414058273],[-122.78471971707852,45.59266966427838],[-122.78473447550034,45.59269646527782],[-122.78474532175909,45.59272317260311],[-122.78474776427832,45.59273529892018],[-122.78475277328435,45.59276263671217],[-122.78475393390771,45.59279142278292],[-122.78475086346609,45.59281223380673],[-122.78474915307378,45.59281826898334],[-122.78474743549496,45.59282413318044],[-122.78469514546056,45.59307827943979],[-122.78468858506403,45.59310944835408],[-122.78468530890821,45.59312511797938],[-122.7846845435436,45.59315462800564],[-122.78468768315551,45.59318406069924],[-122.78469015352253,45.5931968733419],[-122.78469237505622,45.59320351632794],[-122.7847033111465,45.59323245114939],[-122.78471612381738,45.59325946308761],[-122.78473474589323,45.59328515873803],[-122.78475716963936,45.59330820611352],[-122.78476543503828,45.59331935924209],[-122.78478150410209,45.59333018738585],[-122.78480168475494,45.59334607695702],[-122.78483371867797,45.59336516165992],[-122.78486565558298,45.59338184639057],[-122.78490139415824,45.59339588411438],[-122.78493897517815,45.5934071415718],[-122.7849784049309,45.59341579037013],[-122.78504915085277,45.59342570326547],[-122.7850905461194,45.59343465504221],[-122.78512614006588,45.59344509469403],[-122.7851579188674,45.59345783876064],[-122.78518783456299,45.59347284952494],[-122.78521392882534,45.59348999435235],[-122.78524009854621,45.59350902306171],[-122.78526047952337,45.59352988222092],[-122.78527896325866,45.59355215067227],[-122.78530623161912,45.59359842308542],[-122.78541698940205,45.59367990651656],[-122.7854124367402,45.59371240770482],[-122.78540201358797,45.59374468132525],[-122.78538960246401,45.59377613776274],[-122.78536933377625,45.59380655009855],[-122.78534704298079,45.59383528660405],[-122.78531881162634,45.59386208516111],[-122.78528854468946,45.59388686468473],[-122.78525426946983,45.59390915248062],[-122.78521597878085,45.59392877569051],[-122.78517561837344,45.59394552562654],[-122.7851331810611,45.59395922943023],[-122.78509466220004,45.59397319912237],[-122.78527484268645,45.59408022580688],[-122.78542495566202,45.59416847209834],[-122.78557311749675,45.59425675785175],[-122.78572323765883,45.59434517546843],[-122.78587335243101,45.59443342134332],[-122.78592944593233,45.59446763246201],[-122.78574863662517,45.59453895993115],[-122.7853831310007,45.59468220671773],[-122.78501761639306,45.59482528090881],[-122.78483485864007,45.59489681723898],[-122.78482908426943,45.59489898959565],[-122.78448667972079,45.59503371451607],[-122.78436162075852,45.5950823258863],[-122.78431930651537,45.5950991144496],[-122.784307777537,45.59510397269141],[-122.78406537883568,45.59519881423716],[-122.78397687950886,45.59523332346084],[-122.7838903250346,45.59526762334903],[-122.78359982154981,45.59538108035071],[-122.78357675640657,45.59539062707123]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":76683.13568,"geom:bbox":"-122.785929446,45.5918749443,-122.78084358,45.5953906271","geom:latitude":45.593534,"geom:longitude":-122.783493,"iso:country":"US","lbl:latitude":45.593402,"lbl:longitude":-122.783464,"lbl:max_zoom":18,"mps:latitude":45.593402,"mps:longitude":-122.783464,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":45.593402,"reversegeo:longitude":-122.783464,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85830793,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"2cc358d83e308d1c47ce908ba9eaa570","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108720799,"neighbourhood_id":85830793,"region_id":85688513}],"wof:id":1108720799,"wof:lastmodified":1566623890,"wof:name":"Waldemere","wof:parent_id":85830793,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781241],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108720801.geojson b/fixtures/microhoods/1108720801.geojson new file mode 100644 index 0000000..0377be2 --- /dev/null +++ b/fixtures/microhoods/1108720801.geojson @@ -0,0 +1 @@ +{"id":1108720801,"type":"Feature","bbox":[-122.78508325718919,45.586276,-122.772485,45.59229070560183],"geometry":{"type":"Polygon","coordinates":[[[-122.7807866367448,45.59229070560183],[-122.77986968593153,45.59136731406846],[-122.77937468593153,45.59089231406846],[-122.77888368593155,45.59047231406846],[-122.77865068593151,45.59029531406846],[-122.77819368593154,45.58997831406845],[-122.77789068593154,45.58980131406846],[-122.77755168593153,45.58961031406847],[-122.77638168593153,45.58896931406846],[-122.77541768593153,45.58844031406846],[-122.77403568593154,45.58769831406846],[-122.77375709422763,45.58753304780344],[-122.772485,45.586276],[-122.772626,45.586327],[-122.772767,45.586395],[-122.7730305868511,45.58660672866451],[-122.773234,45.586774],[-122.773392,45.586864],[-122.77380008639547,45.58704747875958],[-122.7743395186805,45.58725228190532],[-122.77443709817825,45.58729819551809],[-122.77459623742578,45.58736878587992],[-122.77472753518772,45.58742723737583],[-122.77485884103447,45.58748586043458],[-122.774866794718,45.58748930359676],[-122.77499200998716,45.58754221649213],[-122.77513278138207,45.58759327794208],[-122.7752792319262,45.58763976775413],[-122.77528475926016,45.58763142736485],[-122.7755161059885,45.58740769739035],[-122.77566045896647,45.58745062726125],[-122.77580481284272,45.58749355772797],[-122.775949166719,45.58753648690454],[-122.77571898330892,45.58774047469775],[-122.77571722350929,45.58774531094497],[-122.7759893447684,45.58780731960665],[-122.77599525658128,45.58780857440167],[-122.7760011818689,45.58781017181357],[-122.77603473574139,45.58781859704467],[-122.77611386024994,45.5878427537255],[-122.77618735411828,45.5878726801836],[-122.77625116953774,45.5879048572062],[-122.77625714962258,45.58790782570912],[-122.77627118040901,45.58791663566157],[-122.77630120120749,45.58793439072281],[-122.77635553041755,45.58797361365308],[-122.77635959978579,45.58797764834775],[-122.77636562209148,45.58798164532293],[-122.77647873435876,45.58807372152118],[-122.77648475666443,45.58807771786091],[-122.77648882603269,45.58808175317674],[-122.77652702060193,45.58810843440865],[-122.77657306644676,45.58813598945297],[-122.77662483096668,45.58816000140749],[-122.77667838942224,45.58818003399316],[-122.77673374271173,45.58819608658559],[-122.77673964733809,45.58819716975039],[-122.77674556633751,45.58819859615826],[-122.77675147815039,45.58819985094459],[-122.77733321455199,45.58833289522347],[-122.77726250905427,45.58827513367064],[-122.77765264468721,45.58811324736405],[-122.7772530462011,45.58779620058738],[-122.7768705911638,45.58795467547893],[-122.77673930867324,45.58784803882315],[-122.7766099719336,45.58774119325108],[-122.77661542291072,45.58773096816716],[-122.7771613470752,45.58750752525754],[-122.77722651895071,45.5876221571908],[-122.77727277949293,45.58770372348003],[-122.77734002288352,45.58767529816316],[-122.77736523949186,45.58771938455612],[-122.77737935292326,45.58773025149966],[-122.77751255421529,45.58783599128925],[-122.77784881338908,45.5876948914912],[-122.77811313457659,45.58790315229722],[-122.77818235066754,45.58787520234385],[-122.77834847611304,45.58811953199189],[-122.77838173084656,45.58816911747329],[-122.77855151063861,45.58811533888726],[-122.77855729848397,45.58811350951172],[-122.77888953140865,45.58801810026337],[-122.77890491595622,45.58801196524348],[-122.77925691451209,45.58787363636651],[-122.77942808040464,45.58780576745783],[-122.77955501774417,45.5877555800322],[-122.77966127676422,45.58787145430807],[-122.77975596009348,45.58799098710406],[-122.77980330130893,45.58805075372094],[-122.77985259546183,45.58811048129778],[-122.77994728687594,45.5882301858349],[-122.7794298941032,45.58843421385519],[-122.77941258446599,45.58844107303113],[-122.77925295204338,45.58850425523683],[-122.77914715026584,45.58854562019643],[-122.77918585597651,45.58858497974442],[-122.7792027074729,45.58861534208701],[-122.77922573309026,45.58865346881259],[-122.77924248038212,45.58868125995992],[-122.77925884678827,45.58874815655455],[-122.77926205916371,45.58877947497631],[-122.77927572613247,45.58887643379246],[-122.77928710599048,45.58891650724629],[-122.77931014508256,45.58895497637718],[-122.77933686906397,45.58898788640415],[-122.77936722134079,45.58901386438434],[-122.77940539704542,45.58904003094482],[-122.77945317663874,45.58906206292279],[-122.77957210819245,45.58900706059885],[-122.7797029253557,45.58895611044731],[-122.78032993055943,45.58870823888445],[-122.78042657580924,45.58882790379957],[-122.77986492304248,45.58904892998659],[-122.77978606802854,45.5890801596022],[-122.77979240743947,45.58909203776479],[-122.77979764910916,45.58912520168199],[-122.77984276609601,45.58912962290749],[-122.77999408281403,45.58915114628071],[-122.78007683292306,45.58916819750377],[-122.78015108407118,45.58916826979734],[-122.78024238973498,45.58915514191507],[-122.7803258800558,45.58914199705649],[-122.7803684386407,45.58913137932769],[-122.78041872453369,45.58911855004091],[-122.78047457818478,45.58909840903539],[-122.78049766848083,45.58908954771991],[-122.7805596962529,45.58907717230209],[-122.78060866341903,45.58908014514347],[-122.7806497864961,45.58908241642185],[-122.78070562128259,45.58901323197118],[-122.78094165721677,45.58880928966511],[-122.78101891861941,45.58873847920334],[-122.7810642583884,45.58869985402013],[-122.78112321661713,45.58865975778045],[-122.78151114958102,45.5884919004353],[-122.78152070496068,45.58848656636381],[-122.78153023159429,45.58848054706626],[-122.7815377792393,45.58847388088989],[-122.78154530622307,45.58846670110777],[-122.78155085960815,45.58845904606716],[-122.7815544474794,45.58845108676012],[-122.78155802097758,45.58844278483889],[-122.78155963525015,45.58843434964313],[-122.78156124323453,45.58842574345384],[-122.78156089828144,45.5884171762394],[-122.78155860128928,45.58840864799991],[-122.7815563114836,45.58840029075135],[-122.78155013017614,45.58839235343866],[-122.7815459089926,45.5883845487696],[-122.78153975553293,45.58837729793879],[-122.78153167069536,45.58837059906045],[-122.78152360562075,45.58836441378719],[-122.78151361635477,45.58835895334521],[-122.7815036549366,45.58835417750112],[-122.78149176932708,45.58835012648866],[-122.78148186899433,45.58834689334797],[-122.78146809961764,45.58834459375066],[-122.78146023486734,45.58834337731515],[-122.78104804828911,45.58829684910958],[-122.7809572762246,45.58827464143801],[-122.78089147103677,45.58824164989699],[-122.78086322890256,45.58821957422014],[-122.7808430302834,45.5882031695902],[-122.780822611577,45.58818128186472],[-122.78080811097168,45.58816081928227],[-122.78079086691149,45.58812069122495],[-122.78077296708113,45.58806428608467],[-122.78077948076526,45.58803191804314],[-122.78078627023218,45.58800640418278],[-122.78079503958598,45.58798153719463],[-122.78080774715397,45.58795744846809],[-122.78082445671657,45.5879356826056],[-122.78113526122847,45.58755054369282],[-122.78114079395232,45.58754237428524],[-122.78114443033257,45.58753561495605],[-122.78115705525556,45.58750947032596],[-122.78112490185661,45.58748730069102],[-122.78111689247754,45.58748248642461],[-122.78111081537463,45.58747711956696],[-122.78110279970737,45.58747213367587],[-122.78109474900579,45.58746629217992],[-122.78104452150332,45.58743196300605],[-122.78101410724274,45.58740444282103],[-122.7809877695369,45.58738112835547],[-122.78098635648698,45.58734600324593],[-122.7809971677114,45.58732332433162],[-122.7810388432524,45.58729077417991],[-122.78109303142698,45.58727786651849],[-122.78114996485306,45.58728462587867],[-122.78144274287213,45.58737433568795],[-122.7814805331995,45.58739090526889],[-122.7815129830425,45.58742044282787],[-122.78153092419537,45.58747787710048],[-122.78150756260808,45.5875771139049],[-122.78165593105535,45.58757399953594],[-122.7817340090266,45.58757210790565],[-122.78184178530111,45.58757991583093],[-122.78189090338422,45.58758665880963],[-122.7827844261563,45.58871820541743],[-122.78281944338438,45.58876295295358],[-122.78286674058242,45.58882151929672],[-122.78292678038274,45.58885685282108],[-122.78297870659942,45.58893333285805],[-122.783095936744,45.58907882374096],[-122.78319063624295,45.58919852558436],[-122.78320295034885,45.58921319990863],[-122.78329764355956,45.58933272984734],[-122.78339429599596,45.58945239280243],[-122.78389071759835,45.58926145296749],[-122.78401388111541,45.58921459360146],[-122.78430537005204,45.58893237606459],[-122.78461607754589,45.58898176594903],[-122.78496415495553,45.58903727246789],[-122.78508325718919,45.58908360769572],[-122.78504498446652,45.58915210432775],[-122.78499202608555,45.58924404156273],[-122.78493999746094,45.58931058167759],[-122.78491027849638,45.58934889777946],[-122.78486934226889,45.58939978345347],[-122.78465549921381,45.58962078475772],[-122.78458359356692,45.5896789730255],[-122.7845684713274,45.5896916198804],[-122.78449658005351,45.58975015130841],[-122.78456028587854,45.58982793956909],[-122.78455460852595,45.58983251035369],[-122.78452031444165,45.58985428428155],[-122.78439811661357,45.58992513231079],[-122.78439240422668,45.58992884689194],[-122.78426383824153,45.5899871310208],[-122.78425807734561,45.58998964617108],[-122.78425231734799,45.58999216132125],[-122.78420426017526,45.59001180790278],[-122.7841984920928,45.59001415080728],[-122.78419273928172,45.59001683820102],[-122.78401239620025,45.59009947156594],[-122.78398370401004,45.59011478874215],[-122.78381385414939,45.59021539192206],[-122.78380621038464,45.59021965904788],[-122.78380244374867,45.59022316364786],[-122.78379479279738,45.59022725915772],[-122.78347705778307,45.59044020262779],[-122.78347135258271,45.5904440887896],[-122.78346563300929,45.59044763172172],[-122.7834351190357,45.59046624279834],[-122.7833853299111,45.59049141042561],[-122.78333342974555,45.59051267554057],[-122.78331797602772,45.590517097914],[-122.78327746470336,45.59053007649377],[-122.78321937604382,45.59054323297114],[-122.78314167985658,45.59055472107719],[-122.78316399849983,45.59057519913109],[-122.78325863781164,45.59069335828677],[-122.78326889657217,45.5907055013866],[-122.78302456918793,45.59094613877516],[-122.78288992160833,45.59099905469808],[-122.7828553086221,45.59101294592105],[-122.7826168023209,45.59110702055197],[-122.78234945740417,45.59121281307034],[-122.78236213083618,45.59123639813525],[-122.78237672127304,45.59125908741226],[-122.78239516907568,45.59128049933251],[-122.78241745987117,45.59130029193049],[-122.78244164072198,45.59131850418215],[-122.78246965019254,45.59133475389086],[-122.78249952995553,45.59134890842051],[-122.78252335956506,45.59135838165038],[-122.78252930641227,45.59136049253974],[-122.7825352388864,45.59136226146246],[-122.78254315214572,45.59136467597269],[-122.7825589094941,45.59136779327437],[-122.78257266629439,45.59136974952411],[-122.78258832752306,45.59137046803101],[-122.78260395371741,45.5913703291071],[-122.78261952511455,45.59136881980259],[-122.78263505429085,45.59136628208402],[-122.78264859010557,45.59136275618247],[-122.78270944647448,45.59141830875006],[-122.78222473620842,45.59160952538041],[-122.78211148110898,45.5916114288183],[-122.78214423098929,45.59164833337319],[-122.78214830125584,45.5916523684323],[-122.7821523715224,45.59165640286254],[-122.78216256829919,45.59166700439835],[-122.78218069181004,45.59168036365075],[-122.7821987739984,45.59169269449181],[-122.78222271320239,45.59170490966572],[-122.78224456921328,45.5917139069769],[-122.78226830899128,45.59172115297643],[-122.78229591242334,45.59172729261978],[-122.78232466030906,45.59176187689698],[-122.78206304484718,45.59186446855925],[-122.78205308971718,45.59185986462381],[-122.78196099263764,45.59190198898451],[-122.78193324457682,45.59189225057336],[-122.78189966644982,45.59188331363723],[-122.78186423958995,45.59187698605679],[-122.78182890974814,45.5918730566202],[-122.781799553703,45.59187192386621],[-122.78176441699895,45.59187279260428],[-122.7817507841662,45.59187391970077],[-122.78173519929436,45.59187508702821],[-122.78169030688633,45.5918763203596],[-122.78164332409865,45.59187416548699],[-122.78159816219608,45.59186871607276],[-122.78155482207688,45.59185997211602],[-122.78151135170197,45.59184797384614],[-122.78110550633134,45.5920082973486],[-122.78120713363774,45.5921059131386],[-122.78113477344327,45.5921529618156],[-122.78107783013571,45.59209750238038],[-122.78096199148152,45.59198662106207],[-122.78090504817399,45.59193116083387],[-122.78076656029653,45.59198586610377],[-122.78082349641753,45.59204115403952],[-122.78087093914263,45.59210331887872],[-122.78091239279973,45.5921623450191],[-122.78095782150197,45.59222300547142],[-122.7807866367448,45.59229070560183]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":188156.495566,"geom:bbox":"-122.785083257,45.586276,-122.772485,45.5922907056","geom:latitude":45.589446,"geom:longitude":-122.780002,"iso:country":"US","lbl:latitude":45.590393,"lbl:longitude":-122.781048,"lbl:max_zoom":18,"mps:latitude":45.590393,"mps:longitude":-122.781048,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":45.590393,"reversegeo:longitude":-122.781048,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85830793,102191575,1108714055,85633793,101715829,102081631,85688513],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"834b040bfbd46e0f77a4179712883b02","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081631,"locality_id":101715829,"macrohood_id":1108714055,"microhood_id":1108720801,"neighbourhood_id":85830793,"region_id":85688513}],"wof:id":1108720801,"wof:lastmodified":1566623916,"wof:name":"Glen Harbor","wof:parent_id":85830793,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781243],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721785.geojson b/fixtures/microhoods/1108721785.geojson new file mode 100644 index 0000000..5a2b96b --- /dev/null +++ b/fixtures/microhoods/1108721785.geojson @@ -0,0 +1 @@ +{"id":1108721785,"type":"Feature","bbox":[-75.2264045346729,39.95679680521155,-75.2235884601045,39.9617064315544],"geometry":{"type":"Polygon","coordinates":[[[-75.2235884601045,39.96147339977576],[-75.2246395245105,39.95679680521155],[-75.2264045346729,39.95702319180774],[-75.22536215748701,39.9617064315544],[-75.2235884601045,39.96147339977576]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":80760.304124,"geom:bbox":"-75.2264045347,39.9567968052,-75.2235884601,39.9617064316","geom:latitude":39.959252,"geom:longitude":-75.224998,"iso:country":"US","lbl:latitude":39.959718,"lbl:longitude":-75.224764,"lbl:max_zoom":18,"mps:latitude":39.959251,"mps:longitude":-75.224999,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"name:eng_x_preferred":["52nd Street"],"name:eng_x_variant":["52nd St Discount Shopping","The Strip"],"reversegeo:latitude":39.959251,"reversegeo:longitude":-75.224999,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85854345,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"e459648e9395bf448bee9534b110b3b2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108721785,"neighbourhood_id":85854345,"region_id":85688481}],"wof:id":1108721785,"wof:lastmodified":1566623925,"wof:name":"52nd St Discount Shopping","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893313],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721787.geojson b/fixtures/microhoods/1108721787.geojson new file mode 100644 index 0000000..93142eb --- /dev/null +++ b/fixtures/microhoods/1108721787.geojson @@ -0,0 +1 @@ +{"id":1108721787,"type":"Feature","bbox":[-75.25151200039994,39.939718,-75.2268073647732,39.95035876694286],"geometry":{"type":"Polygon","coordinates":[[[-75.2268073647732,39.94726619389012],[-75.226833,39.947248],[-75.228202,39.94627],[-75.228342,39.946167],[-75.228686,39.945913],[-75.229574,39.945303],[-75.230104,39.944932],[-75.2305,39.944656],[-75.230947,39.944336],[-75.232319,39.94337],[-75.233074,39.942849],[-75.233829,39.942316],[-75.235033,39.941474],[-75.236606,39.940365],[-75.236759,39.940262],[-75.236929,39.940184],[-75.23708,39.940154],[-75.237199,39.940153],[-75.237585,39.940186],[-75.237736,39.940174],[-75.23787,39.940144],[-75.238079,39.940063],[-75.238451,39.939828],[-75.238731,39.939737],[-75.239,39.939718],[-75.239205,39.939735],[-75.239438,39.939819],[-75.239848,39.94001],[-75.23989974939012,39.9400400114484],[-75.23987899976576,39.94007200001467],[-75.239836000129,39.94012100016172],[-75.23979600018512,39.94016499965439],[-75.2396359995486,39.94030199974664],[-75.23960190610967,39.94034266142697],[-75.23952700047974,39.94043199980653],[-75.23948279806937,39.94049906546913],[-75.23941100041063,39.94060799995736],[-75.23939800036804,39.94074399978904],[-75.23943099942363,39.9408900002132],[-75.23946099984933,39.94102699982961],[-75.23949399952475,39.94115999979709],[-75.23956099956845,39.94129800023357],[-75.23963100039597,39.94142099987755],[-75.23973500007958,39.94159299991549],[-75.23984500053108,39.94172700020142],[-75.23998499960663,39.94189000032284],[-75.24007399943977,39.94199500001092],[-75.24008834070061,39.94201240118737],[-75.2401489996649,39.94208599997799],[-75.24025100001468,39.94214000031783],[-75.24036699968883,39.94217099995944],[-75.24051899995759,39.94218800002373],[-75.24056504951038,39.94219396929525],[-75.24069816093005,39.94221122439892],[-75.24078899959818,39.94222300005512],[-75.24095299953454,39.94224500037463],[-75.24117899995719,39.94226400030526],[-75.24140000039425,39.94227300022596],[-75.2414460005752,39.94227399998222],[-75.24158000007611,39.94225099996498],[-75.24182300043393,39.94223399999613],[-75.24202900027764,39.94223000000994],[-75.24228300054736,39.94223099997137],[-75.24259899942615,39.94224700025779],[-75.24295299997307,39.94225300036067],[-75.2430259998775,39.94221099957743],[-75.24311299985487,39.94223200034604],[-75.24320399986048,39.94227599982334],[-75.24334099951828,39.94232599962213],[-75.24336399952284,39.94235499977404],[-75.24354200024649,39.94230600045406],[-75.24342400047502,39.94240499977634],[-75.24353100041826,39.94244200013657],[-75.2437607811037,39.94246777644177],[-75.24384300003769,39.9424769998134],[-75.24406800042087,39.9425009997082],[-75.24440999965474,39.94255099975733],[-75.24465900004515,39.94258899980242],[-75.24501200036539,39.94259699979614],[-75.24522600009396,39.94261599991316],[-75.24540799991655,39.94261000021566],[-75.24546881815165,39.94260960282499],[-75.24556100032102,39.94260900004634],[-75.24573999943026,39.94260400017772],[-75.24588500020532,39.94259700000436],[-75.24605099961525,39.94260600017552],[-75.24619000057312,39.94261299980126],[-75.24634799952436,39.94264500021868],[-75.24646899993216,39.9426670000418],[-75.24656599953998,39.94270199979205],[-75.2466609997503,39.94276500010148],[-75.24674299997393,39.94285599965625],[-75.24682200055761,39.9429699999824],[-75.24687200000974,39.94313100010437],[-75.24696399968255,39.94326500040702],[-75.24697799995707,39.94329199961307],[-75.24698382153242,39.94330377828034],[-75.24702099947353,39.9433789997975],[-75.24702800017681,39.94341400023137],[-75.2470410005698,39.94347800027104],[-75.24704800026576,39.94352999969698],[-75.24705100033562,39.94355800041892],[-75.24707599988942,39.94361600039617],[-75.2471059998086,39.94368100026563],[-75.24719099948592,39.943866999729],[-75.24720800052212,39.94390399961663],[-75.24722131516359,39.94391901414954],[-75.24730199997215,39.94400999987092],[-75.24737700012386,39.94413800038604],[-75.24739700009175,39.94420799962909],[-75.2474210004379,39.94428999996283],[-75.24746599979127,39.94435000031455],[-75.24750799944641,39.94440499956889],[-75.24763500016842,39.94452299992694],[-75.24764700025105,39.94451100012223],[-75.24776699948305,39.94463699975437],[-75.24790700030668,39.9447769999875],[-75.2480999999097,39.94492299977686],[-75.24817600046535,39.94501000028539],[-75.24822200004822,39.94509999992376],[-75.24824000047492,39.94522799996427],[-75.24832700022618,39.94534199970722],[-75.24842100024371,39.94545399957629],[-75.24846999992693,39.94548500002922],[-75.24850699960176,39.94551000034953],[-75.2485690005759,39.9455509996813],[-75.24871300037667,39.94566799995441],[-75.2489020005421,39.94582799988942],[-75.24908399959952,39.9459869999175],[-75.24924900052112,39.94615199996639],[-75.2494309995421,39.94631200040688],[-75.24949700018662,39.94635600020555],[-75.24955800050482,39.94638999988313],[-75.24961800008369,39.94640999973553],[-75.24971400030525,39.94645099981305],[-75.24981399982128,39.94653300008368],[-75.24992100013836,39.94662599987846],[-75.24996999966235,39.94670700015318],[-75.24999961575944,39.9467527303205],[-75.25003800032768,39.94681199976444],[-75.25007925420317,39.9468934771861],[-75.25011800037183,39.94697000034981],[-75.25015600014333,39.94711200026909],[-75.25019799965081,39.94722900014359],[-75.25020499948366,39.94724400011942],[-75.25021700055748,39.9473170004591],[-75.25022999988771,39.94738599962643],[-75.25023499983985,39.94740900006526],[-75.25027100044274,39.94757500021311],[-75.25030799949528,39.94771799998208],[-75.25033799994614,39.94784599979707],[-75.25036500051787,39.94797800040306],[-75.25041500014855,39.94809200031575],[-75.25047299986186,39.94817799963833],[-75.25051989536584,39.94821924531974],[-75.250556000285,39.94825099998305],[-75.25072100006385,39.9483770000987],[-75.25065800050925,39.94844500015171],[-75.25099200016822,39.94873699994138],[-75.25112499975332,39.94886599996015],[-75.2512509999444,39.94897200002467],[-75.25137600001271,39.94906500028863],[-75.25144199951444,39.94913900004055],[-75.25149600051911,39.94925099988195],[-75.25151200039994,39.94945500017243],[-75.25146800030053,39.94965499966039],[-75.25136799970701,39.94985600030743],[-75.251301295014,39.94994788907699],[-75.25126999945869,39.94999100003611],[-75.25120899944731,39.95014899977281],[-75.25116500008193,39.95028900041646],[-75.25114732588113,39.95035876694286],[-75.247333,39.949905],[-75.245356,39.949658],[-75.243381,39.949411],[-75.241405,39.949171],[-75.23943,39.948931],[-75.238769,39.948844],[-75.238195,39.948767],[-75.237481,39.948686],[-75.236783,39.948599],[-75.235479,39.948433],[-75.234771,39.948344],[-75.234139,39.948262],[-75.233413,39.948175],[-75.231936,39.947991],[-75.2312581098372,39.9479207244183],[-75.22954597233695,39.9478497323861],[-75.2294324058973,39.94784502232308],[-75.22838827839767,39.94780171444024],[-75.22761796626396,39.94779556319838],[-75.22741872373929,39.94781301836185],[-75.22738132859816,39.9477706798229],[-75.2268073647732,39.94726619389012]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000137,"geom:area_square_m":1294645.456238,"geom:bbox":"-75.2515120004,39.939718,-75.2268073648,39.9503587669","geom:latitude":39.945718,"geom:longitude":-75.239916,"iso:country":"US","lbl:latitude":39.945856,"lbl:longitude":-75.239813,"lbl:max_zoom":18,"mps:latitude":39.945656,"mps:longitude":-75.240759,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Angora"],"name:fra_x_preferred":["Angora"],"reversegeo:latitude":39.945656,"reversegeo:longitude":-75.240759,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85811587,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4763845"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"717e6a1534fab81e908c2e7ec6c2b64a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108721787,"neighbourhood_id":85811587,"region_id":85688481}],"wof:id":1108721787,"wof:lastmodified":1566623925,"wof:name":"Angora","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85803155],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721789.geojson b/fixtures/microhoods/1108721789.geojson new file mode 100644 index 0000000..32a1cb5 --- /dev/null +++ b/fixtures/microhoods/1108721789.geojson @@ -0,0 +1 @@ +{"id":1108721789,"type":"Feature","bbox":[-75.16849345076378,39.93772991130973,-75.15269427942046,39.9972465233544],"geometry":{"type":"Polygon","coordinates":[[[-75.15269427942046,39.9972465233544],[-75.15343574196783,39.99382717461239],[-75.15442606711981,39.98926016435045],[-75.16201150879301,39.95427893632347],[-75.16243642547423,39.95219237312313],[-75.16311335562817,39.94919762965049],[-75.16393414951142,39.94541243437379],[-75.16560005245117,39.93772991130973],[-75.16687169126064,39.93788948161849],[-75.16844686336158,39.93808617728254],[-75.16849345076378,39.93809163499039],[-75.15589177498799,39.99604469923337],[-75.15550441467236,39.9961793438859],[-75.15399505718301,39.99678238011308],[-75.15389835242836,39.99681652481421],[-75.15341832793875,39.99697608878618],[-75.15269427942046,39.9972465233544]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000174,"geom:area_square_m":1644822.432105,"geom:bbox":"-75.1684934508,39.9377299113,-75.1526942794,39.9972465234","geom:latitude":39.967217,"geom:longitude":-75.160676,"iso:country":"US","lbl:latitude":39.966295,"lbl:longitude":-75.160605,"lbl:max_zoom":18,"mps:latitude":39.967333,"mps:longitude":-75.160647,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":18,"mz:tier_metro":1,"name:eng_x_preferred":["Avenue of the Arts"],"name:eng_x_variant":["Avenue Of The Arts - North"],"name:nld_x_preferred":["Avenue of the Arts"],"reversegeo:latitude":39.967333,"reversegeo:longitude":-75.160647,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85820539,102191575,1108721811,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4828224"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"02f439e89548974fa66c47ccb1fd9a7b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721811,"microhood_id":1108721789,"neighbourhood_id":85820539,"region_id":85688481}],"wof:id":1108721789,"wof:lastmodified":1566623925,"wof:name":"Avenue of the Arts","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871447,85893317,85893315],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721821.geojson b/fixtures/microhoods/1108721821.geojson new file mode 100644 index 0000000..2892b06 --- /dev/null +++ b/fixtures/microhoods/1108721821.geojson @@ -0,0 +1 @@ +{"id":1108721821,"type":"Feature","bbox":[-75.1927715269162,39.94010006130485,-75.1806165796596,39.9465675404453],"geometry":{"type":"Polygon","coordinates":[[[-75.1806165796596,39.94462940243211],[-75.181005,39.944394],[-75.181285,39.944217],[-75.181962,39.943809],[-75.182169,39.943695],[-75.182198,39.943679],[-75.182279,39.943635],[-75.182867,39.943269],[-75.182949,39.943217],[-75.183366,39.942946],[-75.183854,39.94264],[-75.184474,39.942274],[-75.185374,39.941742],[-75.185811,39.94147],[-75.186106,39.941287],[-75.186849,39.940815],[-75.18757929942662,39.94038060598665],[-75.18805074966005,39.94010006130485],[-75.1888921750018,39.94060683795812],[-75.1897180399416,39.94110423000173],[-75.19118873343282,39.94192491491266],[-75.1917252875842,39.94213809057722],[-75.1927715269162,39.94262669842465],[-75.19151040130035,39.94316498162625],[-75.18875133700709,39.94591514041631],[-75.18780277038567,39.9465675404453],[-75.1857033141655,39.94527728025879],[-75.18500788476395,39.94517971673572],[-75.1827811660629,39.94490703884711],[-75.1806165796596,39.94462940243211]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000035,"geom:area_square_m":335008.265613,"geom:bbox":"-75.1927715269,39.9401000613,-75.1806165797,39.9465675404","geom:latitude":39.943373,"geom:longitude":-75.187157,"iso:country":"US","lbl:latitude":39.943091,"lbl:longitude":-75.187188,"lbl:max_zoom":18,"mps:latitude":39.943405,"mps:longitude":-75.187571,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Devil's Pocket"],"reversegeo:latitude":39.943405,"reversegeo:longitude":-75.187571,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85847359,102191575,1108721801,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5267207"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"76ad3de705245a585dec69a39437d6c6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721801,"microhood_id":1108721821,"neighbourhood_id":85847359,"region_id":85688481}],"wof:id":1108721821,"wof:lastmodified":1566623926,"wof:name":"Devil's Pocket","wof:parent_id":85847359,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871435],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721877.geojson b/fixtures/microhoods/1108721877.geojson new file mode 100644 index 0000000..ac59e78 --- /dev/null +++ b/fixtures/microhoods/1108721877.geojson @@ -0,0 +1 @@ +{"id":1108721877,"type":"Feature","bbox":[-75.1431030918653,39.95252290577668,-75.14168703259631,39.95304972958564],"geometry":{"type":"Polygon","coordinates":[[[-75.1431030918653,39.95270596986359],[-75.14302940328768,39.95304972958564],[-75.14171072016764,39.95288134425713],[-75.14168703259631,39.95252290577668],[-75.1431030918653,39.95270596986359]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":4592.268747,"geom:bbox":"-75.1431030919,39.9525229058,-75.1416870326,39.9530497296","geom:latitude":39.952788,"geom:longitude":-75.142382,"iso:country":"US","lbl:latitude":39.952722,"lbl:longitude":-75.142406,"lbl:max_zoom":18,"mps:latitude":39.952791,"mps:longitude":-75.142394,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"name:eng_x_preferred":["Elfreth's Alley"],"name:eng_x_variant":["Elfreth's Aly"],"name:fra_x_preferred":["Elfreth's Alley"],"name:kor_x_preferred":["엘프레스 앨리"],"name:nld_x_preferred":["Elfreth's Alley"],"reversegeo:latitude":39.952791,"reversegeo:longitude":-75.142394,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85839299,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3050836"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"26e7116c79ac32e8054ea1f536da5322","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108721877,"neighbourhood_id":85839299,"region_id":85688481}],"wof:id":1108721877,"wof:lastmodified":1566623898,"wof:name":"Elfreth's Alley","wof:parent_id":85839299,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871417],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721879.geojson b/fixtures/microhoods/1108721879.geojson new file mode 100644 index 0000000..9e8d383 --- /dev/null +++ b/fixtures/microhoods/1108721879.geojson @@ -0,0 +1 @@ +{"id":1108721879,"type":"Feature","bbox":[-75.15041904610163,39.93756670826983,-75.14913713564228,39.94058373202788],"geometry":{"type":"Polygon","coordinates":[[[-75.14980681402125,39.93756670826983],[-75.15041904610163,39.93766193877539],[-75.14971778483176,39.94058373202788],[-75.14913713564228,39.94050652056341],[-75.14980681402125,39.93756670826983]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":17133.129675,"geom:bbox":"-75.1504190461,39.9375667083,-75.1491371356,39.940583732","geom:latitude":39.939066,"geom:longitude":-75.149773,"iso:country":"US","lbl:latitude":39.940362,"lbl:longitude":-75.149469,"lbl:max_zoom":18,"mps:latitude":39.939028,"mps:longitude":-75.149781,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:tier_metro":1,"name:eng_x_preferred":["Fabric Row"],"reversegeo:latitude":39.939028,"reversegeo:longitude":-75.149781,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420539461,102191575,1108721801,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0d0a9838fac7e19fef8a4d83ffdb8e79","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721801,"microhood_id":1108721879,"neighbourhood_id":420539461,"region_id":85688481}],"wof:id":1108721879,"wof:lastmodified":1566623897,"wof:name":"Tattoo Alley","wof:parent_id":420539461,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893307,85893311],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721881.geojson b/fixtures/microhoods/1108721881.geojson new file mode 100644 index 0000000..e94c208 --- /dev/null +++ b/fixtures/microhoods/1108721881.geojson @@ -0,0 +1 @@ +{"id":1108721881,"type":"Feature","bbox":[-75.16872533294105,39.95853279018639,-75.16532849815862,39.96037572650464],"geometry":{"type":"Polygon","coordinates":[[[-75.16872533294105,39.95892366372965],[-75.16840220469648,39.96037572650464],[-75.16532849815862,39.95999234415955],[-75.16562656237579,39.95853279018639],[-75.16872533294105,39.95892366372965]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":43723.622486,"geom:bbox":"-75.1687253329,39.9585327902,-75.1653284982,39.9603757265","geom:latitude":39.959455,"geom:longitude":-75.16702,"iso:country":"US","lbl:latitude":39.960021,"lbl:longitude":-75.166175,"lbl:max_zoom":18,"mps:latitude":39.959456,"mps:longitude":-75.16702,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Franklintown"],"name:eng_x_variant":["Franklin Town"],"name:fra_x_preferred":["Franklintown"],"reversegeo:latitude":39.959456,"reversegeo:longitude":-75.16702,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85871427,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5492157"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"485f3447411050d267426b9c37066308","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108721881,"neighbourhood_id":85871427,"region_id":85688481}],"wof:id":1108721881,"wof:lastmodified":1566623902,"wof:name":"Franklintown","wof:parent_id":85871427,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871423],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721883.geojson b/fixtures/microhoods/1108721883.geojson new file mode 100644 index 0000000..dbdc9cb --- /dev/null +++ b/fixtures/microhoods/1108721883.geojson @@ -0,0 +1 @@ +{"id":1108721883,"type":"Feature","bbox":[-75.16393414951142,39.94490665928802,-75.15894345009802,39.94919762965049],"geometry":{"type":"Polygon","coordinates":[[[-75.15978362950096,39.94490665928802],[-75.16393414951142,39.94541243437379],[-75.16311335562817,39.94919762965049],[-75.15894345009802,39.94868320689722],[-75.15978362950096,39.94490665928802]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":153123.159043,"geom:bbox":"-75.1639341495,39.9449066593,-75.1589434501,39.9491976297","geom:latitude":39.947052,"geom:longitude":-75.161444,"iso:country":"US","lbl:latitude":39.947383,"lbl:longitude":-75.162087,"lbl:max_zoom":18,"mps:latitude":39.94705,"mps:longitude":-75.161444,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":39.94705,"reversegeo:longitude":-75.161444,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85871431,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"df04db0563e153aa44971b566196904f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108721883,"neighbourhood_id":85871431,"region_id":85688481}],"wof:id":1108721883,"wof:lastmodified":1566623902,"wof:name":"Gayborhood","wof:parent_id":85871431,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893343],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721885.geojson b/fixtures/microhoods/1108721885.geojson new file mode 100644 index 0000000..c2283c4 --- /dev/null +++ b/fixtures/microhoods/1108721885.geojson @@ -0,0 +1 @@ +{"id":1108721885,"type":"Feature","bbox":[-75.15994895074522,39.93574278128526,-75.15558304558843,39.93918119075858],"geometry":{"type":"Polygon","coordinates":[[[-75.15941757583177,39.93918119075858],[-75.159416,39.939181],[-75.159046,39.939138],[-75.158633,39.939091],[-75.158294,39.939043],[-75.157848,39.938982],[-75.157171,39.938792],[-75.156781,39.938682],[-75.156317,39.938569],[-75.15558304558843,39.93836533980235],[-75.15610680337517,39.93574278128526],[-75.15625421767317,39.93578284394334],[-75.15932183943046,39.93660327766165],[-75.15994895074522,39.93677094991532],[-75.15968367180726,39.93799500116798],[-75.15941757583177,39.93918119075858]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":98695.502514,"geom:bbox":"-75.1599489507,39.9357427813,-75.1555830456,39.9391811908","geom:latitude":39.93754,"geom:longitude":-75.157738,"iso:country":"US","lbl:latitude":39.935568,"lbl:longitude":-75.158664,"lbl:max_zoom":18,"mps:latitude":39.937566,"mps:longitude":-75.157739,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Italian Market"],"name:eng_x_variant":["South 9th Street Curb Market"],"name:fra_x_preferred":["marché italien de Philadelphie"],"name:jpn_x_preferred":["イタリアン・マーケット地区"],"reversegeo:latitude":39.937566,"reversegeo:longitude":-75.157739,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85805405,102191575,1108721801,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6092834"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8833f495a079cef6795dba2b1d484191","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721801,"microhood_id":1108721885,"neighbourhood_id":85805405,"region_id":85688481}],"wof:id":1108721885,"wof:lastmodified":1566623902,"wof:name":"Italian Market","wof:parent_id":85805405,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871441],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721887.geojson b/fixtures/microhoods/1108721887.geojson new file mode 100644 index 0000000..465b283 --- /dev/null +++ b/fixtures/microhoods/1108721887.geojson @@ -0,0 +1 @@ +{"id":1108721887,"type":"Feature","bbox":[-75.18193576800738,39.91086075312879,-75.15985280559613,39.9180185188075],"geometry":{"type":"Polygon","coordinates":[[[-75.15985280559613,39.9153244634194],[-75.16081808962058,39.91086075312879],[-75.1723051871535,39.91234894672695],[-75.17267655191138,39.91239618084741],[-75.17334814341122,39.91249004679879],[-75.17395646814732,39.91257833536721],[-75.1746021357283,39.91266253549217],[-75.1751996774214,39.91274045498569],[-75.17579867350273,39.9128185616677],[-75.17644703987564,39.91290310202513],[-75.17703663701779,39.91297997665455],[-75.1776372860008,39.91305828823242],[-75.17844485599201,39.91316230550184],[-75.17916801512175,39.91317852086019],[-75.17941932562147,39.91318415495082],[-75.18101876223491,39.91323976176029],[-75.18193576800738,39.91328797041691],[-75.18097336769733,39.9180185188075],[-75.17126634331676,39.91673693998956],[-75.17126634331679,39.91673693998945],[-75.17126634331657,39.91673693998953],[-75.17067178712045,39.91667033054157],[-75.17017252449632,39.91660765793846],[-75.16929749691117,39.91650657608592],[-75.16872895083992,39.91643427716564],[-75.1684167593327,39.91639193199835],[-75.16822545658728,39.91636979151127],[-75.16769206021908,39.91630507795902],[-75.16754939642055,39.91628659338877],[-75.16715410640683,39.9162371200967],[-75.1669347659428,39.91620947312406],[-75.16665126328465,39.91617373776845],[-75.16629508238701,39.91612884044767],[-75.16609518915637,39.9161036429636],[-75.16556558013721,39.91603688108698],[-75.16523104926952,39.9159947092751],[-75.16509218510235,39.91597720288853],[-75.16454700250328,39.91590847323035],[-75.16396448874538,39.91583503358309],[-75.16385073930651,39.91582069248155],[-75.1635213495791,39.91577916410072],[-75.16294817978277,39.91570689772606],[-75.162803331143,39.91568863450753],[-75.16256449322813,39.91565851994524],[-75.1624170351188,39.91563992703934],[-75.16194631002409,39.91558057169949],[-75.16148599763186,39.91552252801561],[-75.16087405162892,39.91544536168261],[-75.16050898618778,39.91539932474412],[-75.160447501347,39.91539157036259],[-75.15988229872252,39.91532769205688],[-75.15985280559613,39.9153244634194]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000096,"geom:area_square_m":913694.054998,"geom:bbox":"-75.181935768,39.9108607531,-75.1598528056,39.9180185188","geom:latitude":39.914433,"geom:longitude":-75.170914,"iso:country":"US","lbl:latitude":39.915398,"lbl:longitude":-75.17086,"lbl:max_zoom":18,"mps:latitude":39.914433,"mps:longitude":-75.170914,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Marconi Plaza"],"name:eng_x_preferred":["Marconi Plaza"],"name:eng_x_variant":["Marconi Plz"],"name:fra_x_preferred":["Marconi Plaza"],"reversegeo:latitude":39.914433,"reversegeo:longitude":-75.170914,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85893371,102191575,1108721801,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6757790"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"39e69394cb90a8d26eb56915d6b7dfc3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721801,"microhood_id":1108721887,"neighbourhood_id":85893371,"region_id":85688481}],"wof:id":1108721887,"wof:lastmodified":1566623902,"wof:name":"Marconi Plaza","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871395],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721891.geojson b/fixtures/microhoods/1108721891.geojson new file mode 100644 index 0000000..e99f0a1 --- /dev/null +++ b/fixtures/microhoods/1108721891.geojson @@ -0,0 +1 @@ +{"id":1108721891,"type":"Feature","bbox":[-75.16243642547423,39.95132607528503,-75.15471593642906,39.95427893632347],"geometry":{"type":"Polygon","coordinates":[[[-75.16229918558719,39.95221725574984],[-75.16241403424604,39.95220075928428],[-75.16243642547423,39.95219237312313],[-75.16201150879301,39.95427893632347],[-75.15786229632556,39.95374932094017],[-75.15471593642906,39.9533495432305],[-75.1551577578121,39.95132607528503],[-75.16229918558719,39.95221725574984]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":144174.511196,"geom:bbox":"-75.1624364255,39.9513260753,-75.1547159364,39.9542789363","geom:latitude":39.952798,"geom:longitude":-75.158584,"iso:country":"US","lbl:latitude":39.951319,"lbl:longitude":-75.156613,"lbl:max_zoom":18,"mps:latitude":39.952798,"mps:longitude":-75.158584,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Market East"],"name:fra_x_preferred":["Market East"],"reversegeo:latitude":39.952798,"reversegeo:longitude":-75.158584,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85893325,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6770674"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9fd1ced5a324edc5c2f366baf242659f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108721891,"neighbourhood_id":85893325,"region_id":85688481}],"wof:id":1108721891,"wof:lastmodified":1566623899,"wof:name":"Market East","wof:parent_id":85893325,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871425],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721899.geojson b/fixtures/microhoods/1108721899.geojson new file mode 100644 index 0000000..319c515 --- /dev/null +++ b/fixtures/microhoods/1108721899.geojson @@ -0,0 +1 @@ +{"id":1108721899,"type":"Feature","bbox":[-75.25860616975022,39.98203769061173,-75.24239952594611,39.99221685116942],"geometry":{"type":"Polygon","coordinates":[[[-75.25567767050073,39.98203769061173],[-75.25860616975022,39.98548915109257],[-75.25854500006314,39.98552699977123],[-75.25695000037285,39.98670999996371],[-75.25687399999052,39.9867710002308],[-75.25628699947872,39.98718999979234],[-75.25611899961895,39.98730100033376],[-75.25567599994767,39.98749900035924],[-75.25399899959868,39.98830399954451],[-75.25159999981305,39.98942899999896],[-75.25154599949838,39.98945400011382],[-75.2514379999201,39.98950400029266],[-75.25078599940375,39.98980300033968],[-75.25033600017802,39.99001699989724],[-75.25012999989984,39.9901160002921],[-75.25000000014877,39.99017999981776],[-75.24976799971198,39.99029000019204],[-75.24921399940888,39.9905470002843],[-75.24794799956706,39.99113799996807],[-75.24568899976671,39.9921910000502],[-75.24563496123383,39.99221685116942],[-75.24239952594611,39.98806309959937],[-75.24544550480918,39.98663148024296],[-75.24547547656613,39.9866173931469],[-75.24669637137536,39.98607073106117],[-75.25567767050073,39.98203769061173]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000073,"geom:area_square_m":694789.95317,"geom:bbox":"-75.2586061698,39.9820376906,-75.2423995259,39.9922168512","geom:latitude":39.987097,"geom:longitude":-75.250538,"iso:country":"US","lbl:latitude":39.989367,"lbl:longitude":-75.245534,"lbl:max_zoom":18,"mps:latitude":39.987127,"mps:longitude":-75.250551,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Overbrook Farms"],"reversegeo:latitude":39.987127,"reversegeo:longitude":-75.250551,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85839965,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7113567"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e782dabfeb0a61ddb9e9e9d8c3c480d4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108721899,"neighbourhood_id":85839965,"region_id":85688481}],"wof:id":1108721899,"wof:lastmodified":1566623899,"wof:name":"Overbrook Farms","wof:parent_id":85839965,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871453],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721901.geojson b/fixtures/microhoods/1108721901.geojson new file mode 100644 index 0000000..6c48bcb --- /dev/null +++ b/fixtures/microhoods/1108721901.geojson @@ -0,0 +1 @@ +{"id":1108721901,"type":"Feature","bbox":[-75.18264031188865,39.95367045719527,-75.16469610108291,39.96713232870245],"geometry":{"type":"Polygon","coordinates":[[[-75.18016052025025,39.96713232870245],[-75.16469610108291,39.95555503064696],[-75.16510589448941,39.95367045719527],[-75.16701065864518,39.95391036541088],[-75.18264031188865,39.96558102794009],[-75.18016052025025,39.96713232870245]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":517038.640188,"geom:bbox":"-75.1826403119,39.9536704572,-75.1646961011,39.9671323287","geom:latitude":39.960343,"geom:longitude":-75.173369,"iso:country":"US","lbl:latitude":39.961542,"lbl:longitude":-75.17537,"lbl:max_zoom":18,"mps:latitude":39.960353,"mps:longitude":-75.173369,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":39.960353,"reversegeo:longitude":-75.173369,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85871427,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"502b318d823c71dba394e8db3e3e7961","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108721901,"neighbourhood_id":85871427,"region_id":85688481}],"wof:id":1108721901,"wof:lastmodified":1566623909,"wof:name":"Parkway Museums District","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893359],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721903.geojson b/fixtures/microhoods/1108721903.geojson new file mode 100644 index 0000000..d449c70 --- /dev/null +++ b/fixtures/microhoods/1108721903.geojson @@ -0,0 +1 @@ +{"id":1108721903,"type":"Feature","bbox":[-75.17325591830611,39.95259202521503,-75.16510589448941,39.95467043093906],"geometry":{"type":"Polygon","coordinates":[[[-75.17325591830611,39.95358202758035],[-75.17304523970533,39.95467043093906],[-75.16510589448941,39.95367045719527],[-75.165340395466,39.95259202521503],[-75.17317748972151,39.9535726286552],[-75.17325591830611,39.95358202758035]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":83493.987708,"geom:bbox":"-75.1732559183,39.9525920252,-75.1651058945,39.9546704309","geom:latitude":39.95363,"geom:longitude":-75.169191,"iso:country":"US","lbl:latitude":39.952265,"lbl:longitude":-75.168158,"lbl:max_zoom":18,"mps:latitude":39.953629,"mps:longitude":-75.169192,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Penn Center"],"name:eng_x_variant":["Penn Ctr"],"name:fra_x_preferred":["Penn Center"],"reversegeo:latitude":39.953629,"reversegeo:longitude":-75.169192,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85871427,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7163164"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4d34388db224f1768d5f722d393eb415","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108721903,"neighbourhood_id":85871427,"region_id":85688481}],"wof:id":1108721903,"wof:lastmodified":1566623909,"wof:name":"Penn Center","wof:parent_id":85871427,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871429],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108721905.geojson b/fixtures/microhoods/1108721905.geojson new file mode 100644 index 0000000..5bc3aff --- /dev/null +++ b/fixtures/microhoods/1108721905.geojson @@ -0,0 +1 @@ +{"id":1108721905,"type":"Feature","bbox":[-75.14529953011733,39.93258589435414,-75.13139536538092,39.96043808840775],"geometry":{"type":"Polygon","coordinates":[[[-75.13608724555128,39.93258589435414],[-75.14529953011733,39.9334547981892],[-75.14480966949802,39.93540161256193],[-75.14376594039489,39.93825487442981],[-75.14423042120663,39.93832536350688],[-75.14465707808817,39.93831637637274],[-75.1445923842194,39.93860786694416],[-75.14454803056589,39.93880771345672],[-75.14447555788882,39.93913424733129],[-75.14439043047501,39.93954402205738],[-75.14427284782235,39.94005557861833],[-75.14406093503005,39.94097303880968],[-75.14393213512612,39.94153250531501],[-75.14385021975227,39.94188747957688],[-75.14362679040073,39.94285250739537],[-75.14351258164557,39.94342867130742],[-75.14337256430217,39.94420056252871],[-75.1430884042142,39.94531864112326],[-75.14288043955095,39.94630672426522],[-75.14280944446499,39.94664403117831],[-75.14280708220126,39.94665525648708],[-75.14267802480728,39.94726856847446],[-75.14263456594722,39.94747488252756],[-75.14258044142485,39.94773387029077],[-75.14248381381407,39.94819110078984],[-75.14178500366508,39.95142031056321],[-75.14167496923214,39.95160152453699],[-75.14168324433689,39.95160843793029],[-75.14093032540323,39.9536391638619],[-75.14074371761846,39.95410442652391],[-75.14037966010903,39.95553179353644],[-75.13993019024039,39.95690303524655],[-75.13965496519468,39.95765301026724],[-75.1391996933075,39.95930080849766],[-75.13898939754614,39.96031106534338],[-75.13898810232467,39.96031728626669],[-75.13898425183233,39.96032842268635],[-75.13894633901509,39.96043808840775],[-75.13886543001253,39.96042866488116],[-75.13717105696503,39.96021089823675],[-75.13139536538092,39.95773378651592],[-75.13177700051452,39.95731900033329],[-75.13246300055204,39.95635499984305],[-75.13369800005844,39.95462000039317],[-75.13375999941724,39.95446000018737],[-75.13385500014459,39.95421699956039],[-75.13417000003915,39.95340900006438],[-75.13427000012695,39.95315499991001],[-75.13430700054323,39.953058999601],[-75.13437000020214,39.95289800017105],[-75.13438599994129,39.95285699982011],[-75.13443200032043,39.95274100009879],[-75.13463599980356,39.95221700001859],[-75.13502453532546,39.95122472877976],[-75.13523900004395,39.95067700002313],[-75.13534152734393,39.95001448427023],[-75.13543600038683,39.94940400017358],[-75.13546999948036,39.94918299955333],[-75.13560600025909,39.94831199980158],[-75.13581600017991,39.94696800044863],[-75.13595499965304,39.94606200000196],[-75.13600299987664,39.94564099983513],[-75.13626800040201,39.94328200021175],[-75.13625700059362,39.94292499961482],[-75.1362569994289,39.94263699964176],[-75.13626499969169,39.94047800043881],[-75.1362480004386,39.9402070001596],[-75.13622099981409,39.93976399967826],[-75.13620400021291,39.93866299962935],[-75.13623000058213,39.93769699976126],[-75.13619500044014,39.93679300036501],[-75.13617700009361,39.9365479997137],[-75.13618599961188,39.93589599976335],[-75.13606199945556,39.93449500005726],[-75.13606300048261,39.93436099991786],[-75.13607099985659,39.9338289999685],[-75.13608900026071,39.93364600030998],[-75.13615100033218,39.93297400001561],[-75.13608724555128,39.93258589435414]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000199,"geom:area_square_m":1882214.912476,"geom:bbox":"-75.1452995301,39.9325858944,-75.1313953654,39.9604380884","geom:latitude":39.945769,"geom:longitude":-75.13897,"iso:country":"US","lbl:latitude":39.947069,"lbl:longitude":-75.140785,"lbl:max_zoom":18,"mps:latitude":39.945976,"mps:longitude":-75.139444,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Penn's Landing"],"name:eng_x_variant":["Penn's Lndg"],"name:fra_x_preferred":["Penn's Landing"],"reversegeo:latitude":39.945976,"reversegeo:longitude":-75.139444,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85893367,102191575,1108721801,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7163122"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"da37c8a4ec082714b85c33ba19689494","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721801,"microhood_id":1108721905,"neighbourhood_id":85893367,"region_id":85688481}],"wof:id":1108721905,"wof:lastmodified":1566623909,"wof:name":"Penn's Landing","wof:parent_id":85893367,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871405],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108722073.geojson b/fixtures/microhoods/1108722073.geojson new file mode 100644 index 0000000..ba55f20 --- /dev/null +++ b/fixtures/microhoods/1108722073.geojson @@ -0,0 +1 @@ +{"id":1108722073,"type":"Feature","bbox":[-75.09673300009527,40.0613327975381,-75.08341142352025,40.07188703409072],"geometry":{"type":"Polygon","coordinates":[[[-75.08354429669991,40.0613327975381],[-75.08742500042021,40.06359899981758],[-75.08787500009858,40.06385000039791],[-75.0880640001649,40.06395599969682],[-75.08876000055074,40.06434200036112],[-75.08891200018616,40.06443200024052],[-75.08927200034091,40.06464399981893],[-75.08937799954171,40.06470499995933],[-75.08975199971131,40.06492200030935],[-75.09036999970688,40.06528499974614],[-75.09178299962986,40.06610999974354],[-75.09191899995511,40.06618900033249],[-75.09322300040557,40.06693500033473],[-75.0949480004246,40.06794700028178],[-75.09663400052054,40.06893200029034],[-75.09671355479934,40.06897780400435],[-75.09673300009527,40.0689889996079],[-75.09621400026295,40.06949199996519],[-75.09518399997373,40.07049899978806],[-75.09400200051273,40.07168600043159],[-75.09381900000098,40.07184999984707],[-75.09373082378852,40.07188703409072],[-75.09391509471581,40.07170731321252],[-75.09383743259124,40.07166925066294],[-75.09268991832275,40.0710848291222],[-75.09207203296167,40.07077013554103],[-75.09126807823007,40.070360666163],[-75.08983587063835,40.06963119007665],[-75.08910691725058,40.06925989343454],[-75.08839603165357,40.06889779195945],[-75.08730537442376,40.06834223096059],[-75.08636559443205,40.06789051944782],[-75.08551166815015,40.06746945271616],[-75.08402522396977,40.06668976146501],[-75.08341142352025,40.06553858904378],[-75.08348948690644,40.06456871819028],[-75.08355698522352,40.0636399083319],[-75.08355433183667,40.06279178106692],[-75.08355175774417,40.06196863684569],[-75.08354429669991,40.0613327975381]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":523264.404774,"geom:bbox":"-75.0967330001,40.0613327975,-75.0834114235,40.0718870341","geom:latitude":40.06694,"geom:longitude":-75.089301,"iso:country":"US","lbl:latitude":40.064951,"lbl:longitude":-75.085832,"lbl:max_zoom":18,"mps:latitude":40.067006,"mps:longitude":-75.089295,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Ryers"],"reversegeo:latitude":40.067006,"reversegeo:longitude":-75.089295,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85808477,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q15273922"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"55a5e09994e3b52f615e7b6a08a5b352","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108722073,"neighbourhood_id":85808477,"region_id":85688481}],"wof:id":1108722073,"wof:lastmodified":1566623918,"wof:name":"Ryers","wof:parent_id":85808477,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85846529],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108722077.geojson b/fixtures/microhoods/1108722077.geojson new file mode 100644 index 0000000..c02b0a6 --- /dev/null +++ b/fixtures/microhoods/1108722077.geojson @@ -0,0 +1 @@ +{"id":1108722077,"type":"Feature","bbox":[-75.16037406697308,39.94032427163911,-75.14380344786896,39.94407535442726],"geometry":{"type":"Polygon","coordinates":[[[-75.14417406715899,39.94048324192895],[-75.14766034699225,39.940921530907],[-75.1477886816204,39.94032427163911],[-75.14913713564228,39.94050652056341],[-75.14971778483176,39.94058373202788],[-75.1510543384845,39.94076349572757],[-75.15091868989066,39.94133068273504],[-75.16037406697308,39.94251987745525],[-75.16000973787928,39.94407535442726],[-75.14380344786896,39.94208949497104],[-75.14385021975227,39.94188747957688],[-75.14393213512612,39.94153250531501],[-75.14406093503005,39.94097303880968],[-75.14417406715899,39.94048324192895]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":268400.266267,"geom:bbox":"-75.160374067,39.9403242716,-75.1438034479,39.9440753544","geom:latitude":39.942186,"geom:longitude":-75.151861,"iso:country":"US","lbl:latitude":39.941604,"lbl:longitude":-75.148938,"lbl:max_zoom":18,"mps:latitude":39.941708,"mps:longitude":-75.14979,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["S St","S Street","South St","Southstreet"],"reversegeo:latitude":39.941708,"reversegeo:longitude":-75.14979,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85849249,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"3d7756eaf1091fd0cb6459bdb4cbe032","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108722077,"neighbourhood_id":85849249,"region_id":85688481}],"wof:id":1108722077,"wof:lastmodified":1566623918,"wof:name":"South Street","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867161],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108722081.geojson b/fixtures/microhoods/1108722081.geojson new file mode 100644 index 0000000..7291333 --- /dev/null +++ b/fixtures/microhoods/1108722081.geojson @@ -0,0 +1 @@ +{"id":1108722081,"type":"Feature","bbox":[-75.21787885087261,39.94308012645784,-75.2113720456138,39.94794580447653],"geometry":{"type":"Polygon","coordinates":[[[-75.21573765320039,39.94345370744942],[-75.21787885087261,39.94521034983202],[-75.21394610772116,39.94794580447653],[-75.2113720456138,39.94579055302743],[-75.21139918413299,39.94576958005016],[-75.21503099981079,39.94329201906237],[-75.2152460353316,39.94308012645784],[-75.21573765320039,39.94345370744942]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":145706.880982,"geom:bbox":"-75.2178788509,39.9430801265,-75.2113720456,39.9479458045","geom:latitude":39.945516,"geom:longitude":-75.214623,"iso:country":"US","lbl:latitude":39.94664,"lbl:longitude":-75.216259,"lbl:max_zoom":18,"mps:latitude":39.945522,"mps:longitude":-75.214624,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Squirrel Hill"],"name:fra_x_preferred":["Squirrel Hill"],"reversegeo:latitude":39.945522,"reversegeo:longitude":-75.214624,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420539465,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7582328"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9745918a42b7aed9ef281054335de9d8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108722081,"neighbourhood_id":420539465,"region_id":85688481}],"wof:id":1108722081,"wof:lastmodified":1566623920,"wof:name":"Squirrel Hill","wof:parent_id":420539465,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893369],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108722089.geojson b/fixtures/microhoods/1108722089.geojson new file mode 100644 index 0000000..c9e48ed --- /dev/null +++ b/fixtures/microhoods/1108722089.geojson @@ -0,0 +1 @@ +{"id":1108722089,"type":"Feature","bbox":[-75.18711748570007,40.03358803799176,-75.1799482817207,40.04039672473743],"geometry":{"type":"Polygon","coordinates":[[[-75.18562791181353,40.03358803799176],[-75.18711748570007,40.03529236226533],[-75.18192729819867,40.04039672473743],[-75.1799482817207,40.03912938761467],[-75.18562791181353,40.03358803799176]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":163846.002435,"geom:bbox":"-75.1871174857,40.033588038,-75.1799482817,40.0403967247","geom:latitude":40.037097,"geom:longitude":-75.183637,"iso:country":"US","lbl:latitude":40.037385,"lbl:longitude":-75.192375,"lbl:max_zoom":18,"mps:latitude":40.037123,"mps:longitude":-75.183637,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Tulpohocken"],"name:eng_x_variant":["Tulpehocken Station Historic District"],"name:und_x_variant":["Tulpenhocken"],"reversegeo:latitude":40.037123,"reversegeo:longitude":-75.183637,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108722085,102191575,1108721809,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4b39efb81356bd4fdb68da6be06bf243","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721809,"microhood_id":1108722089,"neighbourhood_id":1108722085,"region_id":85688481}],"wof:id":1108722089,"wof:lastmodified":1566623920,"wof:name":"Tulpehocken","wof:parent_id":1108722085,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85852797],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108722091.geojson b/fixtures/microhoods/1108722091.geojson new file mode 100644 index 0000000..d9ac03f --- /dev/null +++ b/fixtures/microhoods/1108722091.geojson @@ -0,0 +1 @@ +{"id":1108722091,"type":"Feature","bbox":[-75.02208177517545,40.03370542207951,-75.00555790509414,40.04747148811106],"geometry":{"type":"Polygon","coordinates":[[[-75.00555790509414,40.04069834174971],[-75.00592,40.040435],[-75.006305,40.040185],[-75.006715,40.039922],[-75.0071,40.039709],[-75.007568,40.039467],[-75.008144,40.039208],[-75.008829,40.038937],[-75.011042,40.038131],[-75.012161,40.037722],[-75.014944,40.036701],[-75.015918,40.036325],[-75.01696,40.035854],[-75.017528,40.035575],[-75.018112,40.035259],[-75.018474,40.035047],[-75.018668,40.034931],[-75.018901,40.034787],[-75.019151,40.034613],[-75.019336,40.034473],[-75.019504,40.034344],[-75.019721,40.034157],[-75.019914,40.033981],[-75.020012,40.033877],[-75.02012898886906,40.03375569675387],[-75.02033705867639,40.03377854886642],[-75.02055365593483,40.03378507803986],[-75.02072591044744,40.03376810218737],[-75.02088111005781,40.03372500961891],[-75.02101925476595,40.03370542207951],[-75.0212443794755,40.03370542207951],[-75.02135353084982,40.03372239794751],[-75.02146268222417,40.03374720882449],[-75.02159912144207,40.03380466555703],[-75.0217219167382,40.03386734557368],[-75.0218719998779,40.03397181214009],[-75.02192487007483,40.03403057451328],[-75.02195386340864,40.0340815018626],[-75.02196950725417,40.0341574525464],[-75.02197432929134,40.03421730794128],[-75.02196068536954,40.0344001233894],[-75.02192657556506,40.0345359288336],[-75.02183789007341,40.03475530628761],[-75.02173556065999,40.0349642365401],[-75.02160594340297,40.03516794292001],[-75.02150361398954,40.03532986294179],[-75.02146974099635,40.03542489145705],[-75.02145586026327,40.03550222899413],[-75.02144903830236,40.03566414822222],[-75.02145244928283,40.03588874522469],[-75.02146268222417,40.03603499403796],[-75.02147964378472,40.0361267111311],[-75.02149679202864,40.03620735830809],[-75.0215513677158,40.03640583783706],[-75.02169633438484,40.03681324137616],[-75.02171680026753,40.03692162075385],[-75.02174238262089,40.0370117191417],[-75.0218788218388,40.0372924597315],[-75.0219756038225,40.03748970216775],[-75.02200843909581,40.03758103373785],[-75.0220493708612,40.03776384016885],[-75.0220715422341,40.0378774410613],[-75.02208177517545,40.03802629711662],[-75.02208006968522,40.03852248162074],[-75.02207432005288,40.03871444830076],[-75.02206301478299,40.03884499961203],[-75.02202890497851,40.0390225797173],[-75.02198115125223,40.03922627397444],[-75.02193339752597,40.03938818436017],[-75.02181060222983,40.03971722686271],[-75.02167416301194,40.04005149063629],[-75.02150361398955,40.04049020935233],[-75.02127848927998,40.04114305935876],[-75.02121932014056,40.04130526004374],[-75.02114887202296,40.04146164789235],[-75.02101243280505,40.04171756219362],[-75.02089645946985,40.0419264711152],[-75.02083040412805,40.04208079084459],[-75.02077878064439,40.04225550136817],[-75.02074801448609,40.04240859691161],[-75.02072591044745,40.04256363937259],[-75.02068497868207,40.04295011557826],[-75.02067133476027,40.04307545874205],[-75.0206508688776,40.04317991120252],[-75.02060311515132,40.04334703480641],[-75.0205502642609,40.04357968159479],[-75.01947603113977,40.04362566264782],[-75.0184621164921,40.04415025515546],[-75.01830128387112,40.04426839402809],[-75.01752841863323,40.04483608864044],[-75.01738256506475,40.04493931418871],[-75.01645793888558,40.04571115406367],[-75.01577951812119,40.0462212142256],[-75.01490660397627,40.04688417288817],[-75.01410835052543,40.04747148811106],[-75.014103441931,40.04746327879099],[-75.01348690254667,40.04705271081103],[-75.01224446782662,40.04604607537255],[-75.01092157737996,40.04499227476487],[-75.00959321339799,40.04392927975552],[-75.00867228278808,40.04319034239604],[-75.00786176506986,40.0425399799369],[-75.00687413049135,40.04174747232237],[-75.00633356879372,40.04123111827907],[-75.00555824238833,40.04069861078499],[-75.00555790509414,40.04069834174971]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000118,"geom:area_square_m":1120131.107731,"geom:bbox":"-75.0220817752,40.0337054221,-75.0055579051,40.0474714881","geom:latitude":40.04066,"geom:longitude":-75.015182,"iso:country":"US","lbl:latitude":40.044913,"lbl:longitude":-75.009053,"lbl:max_zoom":18,"mps:latitude":40.041195,"mps:longitude":-75.015306,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Upper Holmesburg"],"name:fra_x_preferred":["Upper Holmesburg"],"reversegeo:latitude":40.041195,"reversegeo:longitude":-75.015306,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85826057,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7898692"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3ae21052205c90a2ef2ec1b670bb05a1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108722091,"neighbourhood_id":85826057,"region_id":85688481}],"wof:id":1108722091,"wof:lastmodified":1566623918,"wof:name":"Upper Holmesburg","wof:parent_id":85826057,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85853249],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723353.geojson b/fixtures/microhoods/1108723353.geojson new file mode 100644 index 0000000..a9156a3 --- /dev/null +++ b/fixtures/microhoods/1108723353.geojson @@ -0,0 +1 @@ +{"id":1108723353,"type":"Feature","bbox":[-75.16796533541111,39.93019211483777,-75.15576249006999,39.93569903975016],"geometry":{"type":"Polygon","coordinates":[[[-75.15656986128333,39.93019211483777],[-75.157139,39.930268],[-75.157564,39.930326],[-75.158121,39.930394],[-75.15968,39.930596],[-75.161251,39.930814],[-75.162042,39.930912],[-75.162153,39.930929],[-75.162919,39.931026],[-75.163419,39.931087],[-75.163539,39.931113],[-75.16409,39.931181],[-75.164216,39.931207],[-75.164407,39.931227],[-75.164843,39.931282],[-75.165311,39.931341],[-75.165968,39.931427],[-75.166548,39.931502],[-75.167118,39.931572],[-75.167441,39.93162],[-75.16796533541111,39.93169908009478],[-75.16772311227426,39.93291668777801],[-75.16765044263425,39.93411538788093],[-75.16759511577276,39.93440392125932],[-75.16733655292619,39.93565517044085],[-75.16732755742862,39.93569903975016],[-75.167303,39.935695],[-75.167236,39.935685],[-75.167168,39.935676],[-75.167046,39.935649],[-75.166251,39.935525],[-75.165598,39.935414],[-75.165115,39.935334],[-75.16471,39.935264],[-75.16355,39.935065],[-75.161919,39.934802],[-75.160932,39.934628],[-75.160437,39.934549],[-75.158869,39.93429],[-75.1584,39.934209],[-75.158209,39.934175],[-75.157302,39.934057],[-75.15576249006999,39.93385020015865],[-75.15647216957431,39.93062763543737],[-75.15656986128333,39.93019211483777]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000045,"geom:area_square_m":425769.251519,"geom:bbox":"-75.1679653354,39.9301921148,-75.1557624901,39.9356990398","geom:latitude":39.932865,"geom:longitude":-75.162002,"iso:country":"US","lbl:latitude":39.93292,"lbl:longitude":-75.15824,"lbl:max_zoom":18,"mps:latitude":39.932861,"mps:longitude":-75.162002,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Wharton"],"name:fra_x_preferred":["Wharton"],"reversegeo:latitude":39.932861,"reversegeo:longitude":-75.162002,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85893365,102191575,1108721801,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7990695"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cb34a164a4eee48526d70e9f34d673cf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721801,"microhood_id":1108723353,"neighbourhood_id":85893365,"region_id":85688481}],"wof:id":1108723353,"wof:lastmodified":1566623908,"wof:name":"Wharton","wof:parent_id":85893365,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857335],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723359.geojson b/fixtures/microhoods/1108723359.geojson new file mode 100644 index 0000000..72c442e --- /dev/null +++ b/fixtures/microhoods/1108723359.geojson @@ -0,0 +1 @@ +{"id":1108723359,"type":"Feature","bbox":[-75.15831599719372,39.97038172112357,-75.14316973044585,39.98926016435045],"geometry":{"type":"Polygon","coordinates":[[[-75.15442606711981,39.98926016435045],[-75.14316973044585,39.98776778253766],[-75.14350127762062,39.98627679106881],[-75.14350282921659,39.98626966048167],[-75.14384521061001,39.98468401064034],[-75.1440518347196,39.98372278403923],[-75.14406112786577,39.98372149755495],[-75.1440490900946,39.98361500730709],[-75.14424522283676,39.98306688040796],[-75.14451146611297,39.98156880513597],[-75.14479379711572,39.98006572546767],[-75.14494773725937,39.97917620245674],[-75.14496932522438,39.97900384958675],[-75.14504313993984,39.97858040438818],[-75.14532626917587,39.97707527049409],[-75.14532826836755,39.977064642373],[-75.14551102082284,39.97620457936064],[-75.14560769439196,39.97563639368442],[-75.1458553585603,39.97418248166009],[-75.14608455945593,39.9729179359931],[-75.14610527975297,39.97280361879331],[-75.14629414229637,39.97156053974695],[-75.14654716912347,39.97038172112357],[-75.15043258254778,39.97049972290485],[-75.15097468678928,39.97051794350995],[-75.15257454601789,39.97057170008362],[-75.15831599719372,39.97132125758839],[-75.15442606711981,39.98926016435045]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000208,"geom:area_square_m":1973005.058891,"geom:bbox":"-75.1583159972,39.9703817211,-75.1431697304,39.9892601644","geom:latitude":39.979558,"geom:longitude":-75.150708,"iso:country":"US","lbl:latitude":39.982612,"lbl:longitude":-75.152832,"lbl:max_zoom":18,"mps:latitude":39.979638,"mps:longitude":-75.150709,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:note":"don't use this name for the hood.","mz:tier_metro":1,"name:eng_x_preferred":["Cecil B. Moore"],"name:eng_x_variant":["Templetown"],"name:fra_x_preferred":["Templetown"],"reversegeo:latitude":39.979638,"reversegeo:longitude":-75.150709,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85824155,102191575,1108721811,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7698839"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"f1924538019decce64229ac9a6e36eee","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721811,"microhood_id":1108723359,"neighbourhood_id":85824155,"region_id":85688481}],"wof:id":1108723359,"wof:lastmodified":1566623908,"wof:name":"Templetown","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871433,420782591],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723361.geojson b/fixtures/microhoods/1108723361.geojson new file mode 100644 index 0000000..6abfc23 --- /dev/null +++ b/fixtures/microhoods/1108723361.geojson @@ -0,0 +1 @@ +{"id":1108723361,"type":"Feature","bbox":[-75.163612,40.01934375296068,-75.15705046786445,40.02395908594964],"geometry":{"type":"Polygon","coordinates":[[[-75.16351806949785,40.01942790172009],[-75.1635,40.019444],[-75.163161,40.019706],[-75.163035,40.019869],[-75.162902,40.020107],[-75.162782,40.020368],[-75.162726,40.020597],[-75.162691,40.020821],[-75.162675,40.021086],[-75.162666,40.021327],[-75.162601,40.021604],[-75.162462,40.021954],[-75.162024,40.022286],[-75.160339,40.023469],[-75.15988,40.023793],[-75.159707,40.023878],[-75.15962013205608,40.02392805589098],[-75.15960259644547,40.02395908594964],[-75.1590454368137,40.02280825811329],[-75.158272,40.021859],[-75.158022,40.02154],[-75.157703,40.02126],[-75.15755,40.0211],[-75.157135,40.020684],[-75.15705046786445,40.02059774271882],[-75.15929346938871,40.02044748263339],[-75.16070350728718,40.02019593944573],[-75.16079815665407,40.020167453561],[-75.16079815665412,40.020167453561],[-75.16154360578612,40.01994311026068],[-75.16353502970857,40.01934375296068],[-75.16358920160687,40.01934487164974],[-75.163612,40.019346],[-75.163555,40.019395],[-75.16351806949785,40.01942790172009]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000013,"geom:area_square_m":122788.960042,"geom:bbox":"-75.163612,40.019343753,-75.1570504679,40.0239590859","geom:latitude":40.021488,"geom:longitude":-75.160404,"iso:country":"US","lbl:latitude":40.022894,"lbl:longitude":-75.158829,"lbl:max_zoom":18,"mps:latitude":40.021786,"mps:longitude":-75.160181,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:note":"Philly.com \"WJ is not a neighborhood\"","mz:tier_metro":1,"reversegeo:latitude":40.021786,"reversegeo:longitude":-75.160181,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108723471,102191575,1108721809,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"fab43d15e1a34ea168186f6a6df1b77c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721809,"microhood_id":1108723361,"neighbourhood_id":1108723471,"region_id":85688481}],"wof:id":1108723361,"wof:lastmodified":1566623881,"wof:name":"Wayne Junction","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85885405],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723363.geojson b/fixtures/microhoods/1108723363.geojson new file mode 100644 index 0000000..fb64d46 --- /dev/null +++ b/fixtures/microhoods/1108723363.geojson @@ -0,0 +1 @@ +{"id":1108723363,"type":"Feature","bbox":[-75.15442606711981,39.98631500458396,-75.12549225633947,39.99382717461239],"geometry":{"type":"Polygon","coordinates":[[[-75.15442606711981,39.98926016435045],[-75.15343574196783,39.99382717461239],[-75.14216638486913,39.99233362422322],[-75.14153194967682,39.99224241944626],[-75.14088854490319,39.99218003456582],[-75.14025718555679,39.99212747166398],[-75.13976249765771,39.99207323887341],[-75.13926762941864,39.9920237761525],[-75.13836769529594,39.99190566489327],[-75.13789530028815,39.99184366253038],[-75.13736210456598,39.99177367698218],[-75.13616815430251,39.99161695570444],[-75.1361474031575,39.99161423058887],[-75.13550017414839,39.9915292674541],[-75.13490320437982,39.99145089872563],[-75.13436321160006,39.99138000720996],[-75.13382491813391,39.99130933567016],[-75.13338208209359,39.99125119412698],[-75.13292351573517,39.99119098655449],[-75.13245001670009,39.99112826151897],[-75.13194047906646,39.99106191030619],[-75.1314523182352,39.9909978096051],[-75.13091620566725,39.99092741011214],[-75.12899911026614,39.99072117861047],[-75.12704828772546,39.99041498253343],[-75.12598966543139,39.99027056853354],[-75.12549225633947,39.9898383182852],[-75.12551367102986,39.98982663182391],[-75.1259990400355,39.98957671505494],[-75.12645567835263,39.98932923845948],[-75.12695027250427,39.98906352219323],[-75.12744070148068,39.98881720061268],[-75.12799092473988,39.98848549672522],[-75.12840117434982,39.98825085859668],[-75.12865998694177,39.98810961894842],[-75.12974074239955,39.98755111009838],[-75.13000967078435,39.98737306718425],[-75.13194850260246,39.98631500458396],[-75.14316973044585,39.98776778253766],[-75.15442606711981,39.98926016435045]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00012,"geom:area_square_m":1138756.58046,"geom:bbox":"-75.1544260671,39.9863150046,-75.1254922563,39.9938271746","geom:latitude":39.98996,"geom:longitude":-75.141099,"iso:country":"US","lbl:latitude":39.999216,"lbl:longitude":-75.130531,"lbl:max_zoom":18,"mps:latitude":39.98985,"mps:longitude":-75.141099,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":15,"mz:min_zoom":13,"mz:tier_metro":1,"reversegeo:latitude":39.98985,"reversegeo:longitude":-75.141099,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85855755,102191575,1108721813,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"56c3367963095697040cb66e7c303573","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721813,"microhood_id":1108723363,"neighbourhood_id":85855755,"region_id":85688481}],"wof:id":1108723363,"wof:lastmodified":1566623881,"wof:name":"The Badlands","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893373],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723367.geojson b/fixtures/microhoods/1108723367.geojson new file mode 100644 index 0000000..8c5721b --- /dev/null +++ b/fixtures/microhoods/1108723367.geojson @@ -0,0 +1 @@ +{"id":1108723367,"type":"Feature","bbox":[-75.15355547322427,39.94606779481197,-75.15107061822913,39.94796430627971],"geometry":{"type":"Polygon","coordinates":[[[-75.15355547322427,39.94636284532824],[-75.15323438023917,39.94796430627971],[-75.15107061822913,39.94769266618653],[-75.1514248993396,39.94606779481197],[-75.15355547322427,39.94636284532824]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":33742.011589,"geom:bbox":"-75.1535554732,39.9460677948,-75.1510706182,39.9479643063","geom:latitude":39.947023,"geom:longitude":-75.152318,"iso:country":"US","lbl:latitude":39.946018,"lbl:longitude":-75.153279,"lbl:max_zoom":18,"mps:latitude":39.94702,"mps:longitude":-75.152316,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Washington Square"],"name:deu_x_preferred":["Washington Square"],"name:fra_x_preferred":["Washington Square"],"name:ita_x_preferred":["Washington Square"],"name:jpn_x_preferred":["ワシントン・スクエア"],"name:nld_x_preferred":["Washington Square"],"name:zho_x_preferred":["华盛顿广场"],"reversegeo:latitude":39.94702,"reversegeo:longitude":-75.152316,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85849249,102191575,1108721797,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0765e9570fe17c950c4370a0b7d162c0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721797,"microhood_id":1108723367,"neighbourhood_id":85849249,"region_id":85688481}],"wof:id":1108723367,"wof:lastmodified":1566623880,"wof:name":"Washington Square","wof:parent_id":85849249,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85893375],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723369.geojson b/fixtures/microhoods/1108723369.geojson new file mode 100644 index 0000000..9ed2fc4 --- /dev/null +++ b/fixtures/microhoods/1108723369.geojson @@ -0,0 +1 @@ +{"id":1108723369,"type":"Feature","bbox":[-75.07041720669987,40.05662346679149,-75.04170469086675,40.07677761777729],"geometry":{"type":"Polygon","coordinates":[[[-75.04666746459446,40.05662346679149],[-75.05486913031338,40.06102247846942],[-75.05557887961115,40.06144331800744],[-75.05643121748737,40.06199321341145],[-75.06299798416565,40.06615033292406],[-75.06411519623883,40.06683706048172],[-75.06732812993424,40.0687437041695],[-75.06777035858802,40.06898988414805],[-75.06884515846242,40.069512117378],[-75.07041720669987,40.07027512322],[-75.06978127672865,40.0708785730581],[-75.06930422286553,40.07147701830441],[-75.06928688031338,40.07162900675583],[-75.06937300544125,40.07174422169304],[-75.06951760705557,40.07178225417002],[-75.06902280740935,40.0720667223004],[-75.06888442590882,40.07180706475912],[-75.06864026300853,40.0716692518247],[-75.06870077022779,40.07166214251178],[-75.06759165503364,40.07117640185189],[-75.06550373272303,40.07023715771627],[-75.06332300124012,40.07138289662184],[-75.06095565042077,40.07283592692313],[-75.05840702380341,40.07474783409189],[-75.05722185693483,40.07372385778712],[-75.05631948631668,40.07301632449725],[-75.0560697179626,40.07325495454403],[-75.05577254859425,40.07344206382987],[-75.05039190463064,40.07624747749055],[-75.04975010875077,40.07657014135191],[-75.04903586996387,40.07677761777729],[-75.04818659263145,40.07671075053084],[-75.04742078784221,40.07653419032237],[-75.04677453360904,40.07608672318808],[-75.0460767355329,40.07525522573137],[-75.04526465582717,40.0741445725429],[-75.04434245790414,40.07308726817679],[-75.04416005761273,40.072761399203],[-75.04403877230556,40.07233798072151],[-75.04407605808264,40.07199586196425],[-75.04486248278859,40.07050031530034],[-75.04510364431468,40.07012476859756],[-75.04529560892618,40.06996905728551],[-75.04547445583431,40.06987196819268],[-75.04577431695505,40.06976068343414],[-75.04594600130848,40.06978335817958],[-75.04736924305475,40.07062013373283],[-75.04791412808757,40.07002818353669],[-75.04762621381317,40.06929608052655],[-75.04738449861861,40.06879640810858],[-75.04731506760552,40.06822895497867],[-75.04750017781461,40.06766493863238],[-75.04821791178549,40.06691475143633],[-75.04638880124811,40.0658734847949],[-75.04497490666839,40.06508318314378],[-75.04471769882753,40.06500394181902],[-75.04448552201583,40.06498836180603],[-75.04411593983356,40.0650602532797],[-75.04369077358547,40.0651172547124],[-75.04346127281241,40.06517747154207],[-75.04301599458026,40.06514882689271],[-75.04242467876217,40.06507070835011],[-75.04202143652027,40.06494198953779],[-75.04199231487704,40.06493122046069],[-75.04170469086675,40.06482485469173],[-75.04183879617544,40.06464322467685],[-75.0421394129504,40.06397775903677],[-75.04237629462838,40.06345337199076],[-75.04289474801135,40.06230564121952],[-75.04332539619378,40.06135225704129],[-75.04383391212808,40.06022645075645],[-75.04421420448509,40.05938449079793],[-75.04464405241953,40.05873648511611],[-75.04523992155687,40.05811424603632],[-75.04593511799682,40.05738826507108],[-75.04666746459446,40.05662346679149]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00027,"geom:area_square_m":2556068.162937,"geom:bbox":"-75.0704172067,40.0566234668,-75.0417046909,40.0767776178","geom:latitude":40.067441,"geom:longitude":-75.053296,"iso:country":"US","lbl:latitude":40.067463,"lbl:longitude":-75.054275,"lbl:max_zoom":18,"mps:latitude":40.067463,"mps:longitude":-75.054275,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["Bells Corner"],"reversegeo:latitude":40.067463,"reversegeo:longitude":-75.054275,"src:geom":"mz","wof:belongsto":[85844347,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"41893c87149335950b852ccdaa4ce0f3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108723369,"neighbourhood_id":85844347,"region_id":85688481}],"wof:id":1108723369,"wof:lastmodified":1566623880,"wof:name":"Bell's Corner","wof:parent_id":85844347,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782519],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723371.geojson b/fixtures/microhoods/1108723371.geojson new file mode 100644 index 0000000..f26c29f --- /dev/null +++ b/fixtures/microhoods/1108723371.geojson @@ -0,0 +1 @@ +{"id":1108723371,"type":"Feature","bbox":[-75.19766025936632,40.03109741929773,-75.18912052938109,40.03616981987052],"geometry":{"type":"Polygon","coordinates":[[[-75.193981,40.03616981987052],[-75.19311202424277,40.03541530935028],[-75.1926732358559,40.03503433976132],[-75.19191146208478,40.03440670868007],[-75.1911717409607,40.03371356757283],[-75.190417145064,40.03310838481697],[-75.18975823582245,40.03258491662758],[-75.18912052938109,40.03199401195195],[-75.19082309303586,40.03109741929773],[-75.19184479484404,40.03210028793603],[-75.19247724004596,40.03205265608864],[-75.19321022398333,40.03206163196359],[-75.19390579733066,40.03223954780781],[-75.19689741027709,40.03328274628165],[-75.19713147617905,40.03338955024869],[-75.19756495957229,40.03358734815797],[-75.19764160905075,40.03424924072839],[-75.19766025936632,40.03441029212185],[-75.19727,40.034589],[-75.193981,40.03616981987052]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":187150.018145,"geom:bbox":"-75.1976602594,40.0310974193,-75.1891205294,40.0361698199","geom:latitude":40.033624,"geom:longitude":-75.193583,"iso:country":"US","lbl:latitude":40.034201,"lbl:longitude":-75.19423,"lbl:max_zoom":18,"mps:latitude":40.034201,"mps:longitude":-75.19423,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Blue Bell Hill"],"name:fin_x_preferred":["Blue Bell Hill"],"name:nno_x_preferred":["Blue Bell Hill"],"name:swe_x_preferred":["Blue Bell Hill"],"reversegeo:latitude":40.034201,"reversegeo:longitude":-75.19423,"src:geom":"mz","wof:belongsto":[85855969,102191575,1108721809,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7e4c520e218b2218c57296bf562ab40c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721809,"microhood_id":1108723371,"neighbourhood_id":85855969,"region_id":85688481}],"wof:id":1108723371,"wof:lastmodified":1566623884,"wof:name":"Blue Bell Hill","wof:parent_id":85855969,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782561],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723373.geojson b/fixtures/microhoods/1108723373.geojson new file mode 100644 index 0000000..5587320 --- /dev/null +++ b/fixtures/microhoods/1108723373.geojson @@ -0,0 +1 @@ +{"id":1108723373,"type":"Feature","bbox":[-75.16939848252878,39.97169233158101,-75.16023284932056,39.97725984179772],"geometry":{"type":"Polygon","coordinates":[[[-75.16939848252878,39.97725984179772],[-75.169382,39.977258],[-75.168987,39.97721],[-75.168528,39.977146],[-75.168038,39.977084],[-75.167473,39.977016],[-75.167253,39.976985],[-75.167043,39.976955],[-75.166463,39.976877],[-75.165677,39.976786],[-75.164888,39.976668],[-75.164107,39.976573],[-75.163325,39.976471],[-75.162529,39.976374],[-75.16175,39.976262],[-75.160962,39.976164],[-75.16023284932056,39.97608080203786],[-75.16118710571013,39.97169233158101],[-75.16270394803894,39.97187996003125],[-75.1663376492605,39.97235629574329],[-75.16653967505727,39.97238159652829],[-75.16722015021664,39.97339870539037],[-75.16773195823569,39.97432080822901],[-75.16854948232834,39.97574651893439],[-75.16939848252878,39.97725984179772]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000033,"geom:area_square_m":312007.59809,"geom:bbox":"-75.1693984825,39.9716923316,-75.1602328493,39.9772598418","geom:latitude":39.974552,"geom:longitude":-75.164403,"iso:country":"US","lbl:latitude":39.974356,"lbl:longitude":-75.164403,"lbl:max_zoom":18,"mps:latitude":39.974356,"mps:longitude":-75.164403,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Cabot"],"name:ceb_x_preferred":["Cabot"],"name:ces_x_preferred":["Cabot"],"name:deu_x_preferred":["Cabot"],"name:fra_x_preferred":["Cabot"],"name:heb_x_preferred":["קבוט"],"name:hun_x_preferred":["Cabot"],"name:ita_x_preferred":["Cabot"],"name:nld_x_preferred":["Cabot"],"name:nrm_x_preferred":["Cabot"],"name:pol_x_preferred":["Cabot"],"name:por_x_preferred":["Cabot"],"name:rus_x_preferred":["Кабот"],"name:spa_x_preferred":["Cabot"],"name:srp_x_preferred":["Кабот"],"name:swe_x_preferred":["Cabot"],"name:ukr_x_preferred":["Кабот"],"name:vol_x_preferred":["Cabot"],"reversegeo:latitude":39.974356,"reversegeo:longitude":-75.164403,"src:geom":"mz","wof:belongsto":[85837447,102191575,1108721811,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7c182523beba8ae97d9660d34b1715ed","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721811,"microhood_id":1108723373,"neighbourhood_id":85837447,"region_id":85688481}],"wof:id":1108723373,"wof:lastmodified":1566623885,"wof:name":"Cabot","wof:parent_id":85837447,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782593],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723375.geojson b/fixtures/microhoods/1108723375.geojson new file mode 100644 index 0000000..457476b --- /dev/null +++ b/fixtures/microhoods/1108723375.geojson @@ -0,0 +1 @@ +{"id":1108723375,"type":"Feature","bbox":[-75.0809596903455,40.03518731350928,-75.05441582815104,40.0532978672704],"geometry":{"type":"Polygon","coordinates":[[[-75.0809596903455,40.04138640989394],[-75.06969016779769,40.0532978672704],[-75.06610616837911,40.0512735310971],[-75.06539152664766,40.05089641127099],[-75.06485426463725,40.05055203749864],[-75.06415406267477,40.05018668768345],[-75.06348474800691,40.04979345212313],[-75.06245081270448,40.04920861130309],[-75.06143222321518,40.04861267754259],[-75.05991834142156,40.04774197134527],[-75.05839143783021,40.04682517054012],[-75.05773660942178,40.04644368168456],[-75.05708178723914,40.04606218816225],[-75.05641255305085,40.04566891130003],[-75.05575774578531,40.04528741021741],[-75.05441582815104,40.0445064399938],[-75.06132086600324,40.03801507745673],[-75.0618163378868,40.03749329695074],[-75.0621525121625,40.0373046557297],[-75.06245219724299,40.03711516064995],[-75.06282596796996,40.03689932613266],[-75.0632317793708,40.03679652811172],[-75.0636033241661,40.03663678315164],[-75.06426228170304,40.03645184141616],[-75.06433565353974,40.03647456404487],[-75.06518713368614,40.0362762807647],[-75.0669559120298,40.03586436294994],[-75.0682812075249,40.03555570291461],[-75.06944610788868,40.03528438465398],[-75.06986285358019,40.03518731350928],[-75.0809596903455,40.04138640989394]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000262,"geom:area_square_m":2476871.154168,"geom:bbox":"-75.0809596903,40.0351873135,-75.0544158282,40.0532978673","geom:latitude":40.043503,"geom:longitude":-75.067875,"iso:country":"US","lbl:latitude":40.043392,"lbl:longitude":-75.068076,"lbl:max_zoom":18,"mps:latitude":40.043392,"mps:longitude":-75.068076,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Castor Gardens"],"name:fra_x_preferred":["Castor Gardens"],"reversegeo:latitude":40.043392,"reversegeo:longitude":-75.068076,"src:geom":"mz","wof:belongsto":[85840075,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5050688"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"266f5075a3769318b0c4359e119aca10","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108723375,"neighbourhood_id":85840075,"region_id":85688481}],"wof:id":1108723375,"wof:lastmodified":1566623885,"wof:name":"Castor Gardens","wof:parent_id":85840075,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782525],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723377.geojson b/fixtures/microhoods/1108723377.geojson new file mode 100644 index 0000000..63fbb38 --- /dev/null +++ b/fixtures/microhoods/1108723377.geojson @@ -0,0 +1 @@ +{"id":1108723377,"type":"Feature","bbox":[-75.22680906585579,39.97142898317096,-75.21847339513096,39.9772217844453],"geometry":{"type":"Polygon","coordinates":[[[-75.2258142094613,39.97142898317106],[-75.22581420946251,39.97142898317096],[-75.22680906585579,39.9772217844453],[-75.2260297027106,39.97685433907047],[-75.22357518793658,39.97569520559437],[-75.22049737271483,39.97424848900941],[-75.21965163065857,39.97367728105923],[-75.21847339513096,39.97300853551906],[-75.22205491804682,39.97223819600533],[-75.22580338088737,39.97143024242609],[-75.2258142094613,39.97142898317106]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":216901.003674,"geom:bbox":"-75.2268090659,39.9714289832,-75.2184733951,39.9772217844","geom:latitude":39.973923,"geom:longitude":-75.223639,"iso:country":"US","lbl:latitude":39.973864,"lbl:longitude":-75.224049,"lbl:max_zoom":18,"mps:latitude":39.973864,"mps:longitude":-75.224049,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Cathedral Park"],"reversegeo:latitude":39.973864,"reversegeo:longitude":-75.224049,"src:geom":"mz","wof:belongsto":[420782491,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5052258"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7e6b2525da31c571b3628b4f3c1f3792","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108723377,"neighbourhood_id":420782491,"region_id":85688481}],"wof:id":1108723377,"wof:lastmodified":1566623884,"wof:name":"Cathedral Park","wof:parent_id":420782491,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782493],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723379.geojson b/fixtures/microhoods/1108723379.geojson new file mode 100644 index 0000000..d98e5ac --- /dev/null +++ b/fixtures/microhoods/1108723379.geojson @@ -0,0 +1 @@ +{"id":1108723379,"type":"Feature","bbox":[-75.17076555805151,39.9946323273712,-75.158581,40.000622],"geometry":{"type":"Polygon","coordinates":[[[-75.17076555805151,39.99604257395534],[-75.17042,39.997618],[-75.170087,39.999116],[-75.169754,40.000622],[-75.1692,40.000546],[-75.168724,40.000485],[-75.168179,40.000409],[-75.16761,40.000342],[-75.167375,40.00031],[-75.167134,40.000282],[-75.166562,40.000199],[-75.165754,40.000098],[-75.165357,40.00005],[-75.164968,39.999997],[-75.164459,39.999933],[-75.163993,39.999876],[-75.163093,39.999752],[-75.161973,39.999607],[-75.16153,39.999549],[-75.159931,39.999351],[-75.159551,39.999291],[-75.159541,39.999285],[-75.159412,39.999221],[-75.158996,39.998827],[-75.158599,39.998327],[-75.158581,39.998205],[-75.158713,39.997651],[-75.158754,39.997454],[-75.158926,39.996639],[-75.159049,39.99607],[-75.159113,39.995773],[-75.159178,39.99547],[-75.15931973534416,39.99480856839402],[-75.15979706373821,39.9946323273712],[-75.1598068422377,39.99463361032565],[-75.16418917605407,39.99520862732883],[-75.16504761531122,39.99532698640701],[-75.16607197620445,39.99545719764667],[-75.16758409202124,39.99564493195355],[-75.16760701164733,39.9956477767014],[-75.16820247147619,39.99572186444624],[-75.16869337895194,39.99578352736537],[-75.16926313698306,39.99585457451931],[-75.16983467645993,39.99592599944472],[-75.17028861706856,39.99598300064671],[-75.17076555805151,39.99604257395534]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":501069.996681,"geom:bbox":"-75.1707655581,39.9946323274,-75.158581,40.000622","geom:latitude":39.997591,"geom:longitude":-75.164625,"iso:country":"US","lbl:latitude":39.997611,"lbl:longitude":-75.164625,"lbl:max_zoom":18,"mps:latitude":39.997611,"mps:longitude":-75.164625,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":39.997611,"reversegeo:longitude":-75.164625,"src:geom":"mz","wof:belongsto":[85893347,102191575,1108721811,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"42c586562dea33d7a59892218d1a5749","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721811,"microhood_id":1108723379,"neighbourhood_id":85893347,"region_id":85688481}],"wof:id":1108723379,"wof:lastmodified":1566623884,"wof:name":"Forgotten Blocks","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782587],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723381.geojson b/fixtures/microhoods/1108723381.geojson new file mode 100644 index 0000000..7cfae11 --- /dev/null +++ b/fixtures/microhoods/1108723381.geojson @@ -0,0 +1 @@ +{"id":1108723381,"type":"Feature","bbox":[-75.09023087713378,39.99893550601496,-75.06884824216564,40.01079529159739],"geometry":{"type":"Polygon","coordinates":[[[-75.09023087713378,40.00420964826237],[-75.08947170575608,40.00475000306466],[-75.08916865094248,40.00498718642143],[-75.08888865464728,40.00520166001873],[-75.08850654205622,40.00546155065899],[-75.08797619613235,40.00579208974937],[-75.08745243835665,40.00606207088308],[-75.08691879835877,40.00631691189459],[-75.08640821687932,40.0065086728253],[-75.08600963391793,40.00665501633023],[-75.08559458058623,40.00679631320973],[-75.08506752873646,40.00695022554926],[-75.08426706873962,40.00716469298469],[-75.08356543096463,40.00734383585546],[-75.0823663880064,40.00763904209574],[-75.08126946134406,40.0079140621453],[-75.07930948727774,40.00839345224322],[-75.07750433469229,40.00882994661464],[-75.07648975988148,40.00908225422688],[-75.07496789766527,40.00946323695405],[-75.07415096729814,40.00966508124581],[-75.07184182138133,40.0102251960292],[-75.06953020995037,40.01079529159739],[-75.06928546784236,40.01009408069942],[-75.06905667120954,40.00927702329392],[-75.06884824216564,40.00859325116128],[-75.06886816026031,40.00855145646943],[-75.0688760025756,40.0085812785421],[-75.07259909928835,40.00811727519246],[-75.07487209606339,40.00632901820406],[-75.07573362381348,40.0056043638843],[-75.07643901513457,40.00503716641231],[-75.07690544319227,40.00475621396603],[-75.07751157408006,40.00413023978626],[-75.07955601932602,40.00252427346042],[-75.08605545859751,39.99910632274817],[-75.0863819863052,39.99893550601496],[-75.08711022804135,39.9998386594714],[-75.0874812744197,40.00060540596595],[-75.0874770921279,40.00129952641102],[-75.0875472902086,40.00179505046035],[-75.0879902236011,40.00277967066898],[-75.08841645273921,40.00329897147561],[-75.0892430096515,40.0037784171039],[-75.09020660304247,40.00419905191256],[-75.09023087713378,40.00420964826237]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000092,"geom:area_square_m":875315.865824,"geom:bbox":"-75.0902308771,39.998935506,-75.0688482422,40.0107952916","geom:latitude":40.005231,"geom:longitude":-75.080859,"iso:country":"US","lbl:latitude":40.004644,"lbl:longitude":-75.08159,"lbl:max_zoom":18,"mps:latitude":40.004644,"mps:longitude":-75.08159,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":40.004644,"reversegeo:longitude":-75.08159,"src:geom":"mz","wof:belongsto":[85820547,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a1e094c6400ac104582f743e0fdba486","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108723381,"neighbourhood_id":85820547,"region_id":85688481}],"wof:id":1108723381,"wof:lastmodified":1566623880,"wof:name":"Frankford Valley","wof:parent_id":85820547,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782529],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723385.geojson b/fixtures/microhoods/1108723385.geojson new file mode 100644 index 0000000..c0bf7b7 --- /dev/null +++ b/fixtures/microhoods/1108723385.geojson @@ -0,0 +1 @@ +{"id":1108723385,"type":"Feature","bbox":[-75.2656444136922,39.9784515545306,-75.25871137465275,39.98502062936536],"geometry":{"type":"Polygon","coordinates":[[[-75.25936921269204,39.98502062936536],[-75.25916706274492,39.98473478624096],[-75.2590421246772,39.98455485597294],[-75.25896957999271,39.98444574482721],[-75.25891987344963,39.98436566123871],[-75.25889300504798,39.98431460520746],[-75.25886855480246,39.98425922582351],[-75.2588465227131,39.98419952308687],[-75.2588269087799,39.98413549699753],[-75.25880971300282,39.98406714755549],[-75.25879278590978,39.98400044502915],[-75.25877612750075,39.98393538941852],[-75.25875973777573,39.98387198072357],[-75.25874361673475,39.98381021894433],[-75.25873071990195,39.98374248676737],[-75.25872104727735,39.98366878419269],[-75.25871459886095,39.9835891112203],[-75.25871137465275,39.9835034678502],[-75.25871325544087,39.98341700087251],[-75.25872024122529,39.98332971028726],[-75.25873233200605,39.98324159609444],[-75.25874952778311,39.98315265829405],[-75.25876323066797,39.98307957281169],[-75.25877344066059,39.98302233964736],[-75.25878015776101,39.98298095880108],[-75.2587833819692,39.98295543027284],[-75.25879224854174,39.98293175461585],[-75.25880675747865,39.98290993183014],[-75.2588269087799,39.98288996191569],[-75.25885270244548,39.98287184487249],[-75.25887983953116,39.982853110197],[-75.25890832003692,39.9828337578892],[-75.25893814396277,39.9828137879491],[-75.2589693113087,39.98279320037669],[-75.25900155339069,39.98277261279808],[-75.25903487020875,39.98275202521327],[-75.25906926176287,39.98273143762225],[-75.25910472805306,39.98271085002503],[-75.2591490609158,39.98268676252232],[-75.25920226035109,39.98265917511411],[-75.25926432635893,39.98262808780041],[-75.2593352589393,39.98259350058122],[-75.2594000117873,39.98256035448279],[-75.25945858490294,39.98252864950511],[-75.25951097828617,39.9824983856482],[-75.25955719193703,39.98246956291204],[-75.25961683978872,39.98243662261758],[-75.25968992184123,39.98239956476483],[-75.25977643809458,39.98235838935376],[-75.25987638854878,39.98231309638439],[-75.25996236743408,39.98227500910724],[-75.26003437475053,39.98224412752234],[-75.26009241049812,39.98222045162965],[-75.26013647467683,39.98220398142919],[-75.26015501387397,39.98217495266029],[-75.26014802808955,39.98213336532294],[-75.26011551732353,39.98207921941714],[-75.26005748157596,39.98201251494289],[-75.26000589424476,39.98195178089652],[-75.25996075532998,39.98189701727803],[-75.25992206483158,39.98184822408741],[-75.25988982274959,39.98180540132469],[-75.25986134224382,39.98176546084632],[-75.2598366233143,39.98172840265231],[-75.25981566596101,39.98169422674268],[-75.25979847018394,39.9816629331174],[-75.2597815430909,39.98162855128149],[-75.25976488468187,39.98159108123494],[-75.25974849495685,39.98155052297774],[-75.25973237391587,39.98150687650991],[-75.25971947708307,39.98145334774575],[-75.25970980445847,39.98138993668528],[-75.25970335604207,39.98131664332847],[-75.25970013183387,39.98123346767535],[-75.2596990570978,39.98114988015729],[-75.25970013183385,39.9810658807743],[-75.25970335604205,39.98098146952636],[-75.2597087297224,39.9808966464135],[-75.2597119539306,39.98080173492252],[-75.25971302866665,39.98069673505344],[-75.25971195393059,39.98058164680624],[-75.25970872972239,39.98045647018093],[-75.25970362472607,39.98035044057634],[-75.25969663894165,39.98026355799245],[-75.25968777236909,39.98019582242927],[-75.25967702500843,39.9801472338868],[-75.25966896448793,39.98010008650125],[-75.25966359080759,39.98005438027266],[-75.25966090396743,39.980010115201],[-75.25966090396743,39.97996729128627],[-75.25966090396743,39.97993043800494],[-75.25966090396743,39.97989955535701],[-75.25966090396743,39.97987464334247],[-75.25966090396743,39.97985570196134],[-75.25966493422769,39.9798322311043],[-75.25967299474817,39.97980423077138],[-75.25968508552893,39.97977170096256],[-75.25970120656993,39.97973464167784],[-75.25971947708305,39.9796992294574],[-75.25973989706833,39.97966546430121],[-75.25976246652571,39.97963334620929],[-75.25978718545525,39.97960287518163],[-75.25981244175281,39.97957240414038],[-75.2598382354184,39.97954193308554],[-75.25986456645202,39.97951146201713],[-75.2598914348537,39.97948099093512],[-75.2599223335156,39.97945072572575],[-75.25995726243775,39.97942066638905],[-75.25999622162016,39.97939081292498],[-75.26003921106283,39.97936116533355],[-75.26008031971736,39.97933707666351],[-75.2601195475838,39.97931854691486],[-75.26015689466209,39.97930557608758],[-75.26019236095229,39.97929816418169],[-75.2602264838224,39.97929178170691],[-75.26025926327242,39.97928642866324],[-75.26029069930237,39.9792821050507],[-75.26032079191222,39.97927881086927],[-75.26034900373398,39.97927016363796],[-75.2603753347676,39.97925616335676],[-75.2603997850131,39.97923681002568],[-75.2604223544705,39.9792121036447],[-75.26044949155617,39.97918348540087],[-75.26048119627013,39.97915095529416],[-75.26051746861238,39.9791145133246],[-75.26055830858292,39.97907415949217],[-75.26061688169854,39.97901671692847],[-75.26069318795925,39.97894218563347],[-75.26078722736506,39.9788505656072],[-75.26089899991598,39.97874185684965],[-75.26098900906153,39.97865497217835],[-75.26105725480176,39.97858991159328],[-75.26110373713662,39.97854667509446],[-75.26112845606615,39.97852526268187],[-75.26115102552353,39.97850776215121],[-75.26117144550881,39.97849417350248],[-75.26118971602193,39.97848449673566],[-75.26120583706292,39.97847873185076],[-75.2612249136281,39.97847317285422],[-75.26124694571746,39.97846781974605],[-75.261271933331,39.97846267252623],[-75.26129987646874,39.97845773119477],[-75.26132755092245,39.97845423108502],[-75.26135495669214,39.97845217219696],[-75.26138209377783,39.9784515545306],[-75.26140896217949,39.97845237808595],[-75.26143717400123,39.9784538193077],[-75.26146672924307,39.97845587819585],[-75.26149762790497,39.97845855475042],[-75.26152986998696,39.97846184897138],[-75.26156318680502,39.97846720207922],[-75.26159757835914,39.9784746140739],[-75.26163304464933,39.97848408495545],[-75.26166958567559,39.97849561472385],[-75.26171284380226,39.97851208581176],[-75.26176281902936,39.97853349821918],[-75.26181951135686,39.9785598519461],[-75.26188292078477,39.97859114699254],[-75.26195519678524,39.9786288245447],[-75.26203633935826,39.97867288460259],[-75.26212634850383,39.97872332716621],[-75.26222522422194,39.97878015223554],[-75.26234048966506,39.9788456244989],[-75.26247214483321,39.97891974395624],[-75.26262018972636,39.97900251060759],[-75.2627846243445,39.97909392445295],[-75.2629415358102,39.97918472051982],[-75.26309092412345,39.97927489880819],[-75.2632327892842,39.97936445931806],[-75.26336713129251,39.97945340204944],[-75.2634834714717,39.97953307985951],[-75.26358180982177,39.97960349274827],[-75.26366214634274,39.9796646407157],[-75.26372448103459,39.97971652376182],[-75.26378278546619,39.97976470085196],[-75.26383705963755,39.97980917198612],[-75.26388730354866,39.97984993716428],[-75.2639335171995,39.97988699638647],[-75.26398671663479,39.97993167328598],[-75.26404690185451,39.97998396786279],[-75.26411407285866,39.98004388011694],[-75.26418822964726,39.98011141004842],[-75.26425325117927,39.9801729693102],[-75.26430913745473,39.98022855790228],[-75.26435588847362,39.98027817582468],[-75.26439350423594,39.98032182307738],[-75.26444562893516,39.98038132322361],[-75.26451226257127,39.98045667626337],[-75.2645934051443,39.98054788219666],[-75.2646890566542,39.98065494102347],[-75.26481426340595,39.98079988151252],[-75.26496902539951,39.98098270366378],[-75.26520681075421,39.98126805384619],[-75.2656444136922,39.98179714372893],[-75.26551099943092,39.98185699970801],[-75.26474799969624,39.98219300035636],[-75.26435100034108,39.98237199980873],[-75.26368700017231,39.98265800036054],[-75.26294600046299,39.98304499964116],[-75.26279399950023,39.98312399997462],[-75.26251199991496,39.9832800001242],[-75.26077999959705,39.984241000304],[-75.26068899951954,39.9842950004288],[-75.2594759996473,39.98495500029071],[-75.25936921269204,39.98502062936536]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":224378.351134,"geom:bbox":"-75.2656444137,39.9784515545,-75.2587113747,39.9850206294","geom:latitude":39.98157,"geom:longitude":-75.261727,"iso:country":"US","lbl:latitude":39.981109,"lbl:longitude":-75.262016,"lbl:max_zoom":18,"mps:latitude":39.981109,"mps:longitude":-75.262016,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":39.981109,"reversegeo:longitude":-75.262016,"src:geom":"mz","wof:belongsto":[85839965,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ad33a41bb8cbab95ea3eea1af8dca011","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108723385,"neighbourhood_id":85839965,"region_id":85688481}],"wof:id":1108723385,"wof:lastmodified":1566623880,"wof:name":"Green Hill Farms","wof:parent_id":85839965,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782615],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723387.geojson b/fixtures/microhoods/1108723387.geojson new file mode 100644 index 0000000..1772337 --- /dev/null +++ b/fixtures/microhoods/1108723387.geojson @@ -0,0 +1 @@ +{"id":1108723387,"type":"Feature","bbox":[-75.13683040935543,40.00350447131861,-75.11223852325274,40.01507403734762],"geometry":{"type":"Polygon","coordinates":[[[-75.13683040935543,40.00748636870554],[-75.1351765180123,40.01507403734759],[-75.13517651801219,40.01507403734762],[-75.13232380480966,40.01469547914937],[-75.12989905880309,40.01438612882713],[-75.12597818947052,40.0138610815579],[-75.12233857032395,40.01338770269746],[-75.11943196329216,40.01303080708234],[-75.11732238526156,40.0127518348155],[-75.11586316879037,40.01255884269776],[-75.11300413978806,40.01219380188166],[-75.11223852325274,40.0120834342126],[-75.11248282822277,40.01120549922526],[-75.11266033293835,40.01056760095525],[-75.11269651038137,40.01040899380589],[-75.1129540623902,40.00908480282646],[-75.11359830300988,40.00602845968417],[-75.11382654962026,40.00491228636077],[-75.1140793170234,40.00360659446221],[-75.11410017569324,40.00350447131861],[-75.1156857147365,40.00368827222584],[-75.11680364322021,40.00381785260258],[-75.11844450430144,40.00400802706383],[-75.12004628902267,40.00421107742289],[-75.12232951662597,40.00450047222478],[-75.12400776709016,40.00471315591233],[-75.12397129380328,40.00488266074185],[-75.12784831702896,40.00531480625705],[-75.12997095492156,40.00521921076335],[-75.13193118973797,40.00519745181234],[-75.13194862290453,40.00532555066174],[-75.13165366649011,40.00681568957747],[-75.13406011060383,40.00707702326529],[-75.13683040935543,40.00748636870554]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000198,"geom:area_square_m":1878949.605415,"geom:bbox":"-75.1368304094,40.0035044713,-75.1122385233,40.0150740373","geom:latitude":40.009324,"geom:longitude":-75.124436,"iso:country":"US","lbl:latitude":40.009298,"lbl:longitude":-75.124439,"lbl:max_zoom":18,"mps:latitude":40.009298,"mps:longitude":-75.124439,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":40.009298,"reversegeo:longitude":-75.124439,"src:geom":"mz","wof:belongsto":[420539527,102191575,1108721811,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6edc51760022d184cb11216e2d7d6937","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721811,"microhood_id":1108723387,"neighbourhood_id":420539527,"region_id":85688481}],"wof:id":1108723387,"wof:lastmodified":1566623880,"wof:name":"Hunting Park Industrial","wof:parent_id":420539527,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782565],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723393.geojson b/fixtures/microhoods/1108723393.geojson new file mode 100644 index 0000000..0a5eaff --- /dev/null +++ b/fixtures/microhoods/1108723393.geojson @@ -0,0 +1 @@ +{"id":1108723393,"type":"Feature","bbox":[-75.255918,39.96592246288465,-75.24548641421414,39.9856938705129],"geometry":{"type":"Polygon","coordinates":[[[-75.2475356134695,39.9856938705129],[-75.247521,39.985665],[-75.24737,39.985053],[-75.247094,39.983595],[-75.246576,39.980887],[-75.24654,39.980645],[-75.246354,39.979649],[-75.246221,39.978983],[-75.24609,39.9783],[-75.24548641421414,39.97533142032614],[-75.24653796415005,39.97517965319039],[-75.24681118858383,39.97515375077577],[-75.24751080766895,39.9750749686748],[-75.2472483212634,39.97357403038579],[-75.2468759315006,39.97207069473299],[-75.24695025175777,39.97169210474815],[-75.24717076214296,39.97056880221925],[-75.24749040745097,39.96906772696742],[-75.24649165902103,39.96894187696856],[-75.24681675811613,39.96740895427812],[-75.2469764782537,39.966649647453],[-75.24713197015858,39.96592246288465],[-75.247169,39.965927],[-75.248157,39.966051],[-75.248752,39.966126],[-75.249291,39.966192],[-75.250133,39.966299],[-75.250218,39.966292],[-75.250397,39.966307],[-75.250601,39.966326],[-75.250935,39.966366],[-75.251119,39.966398],[-75.250985,39.967115],[-75.250918,39.967427],[-75.250828,39.967794],[-75.250801,39.967937],[-75.25048419324841,39.96946032156515],[-75.250941,39.969512],[-75.251468,39.969578],[-75.252566,39.969716],[-75.253441,39.969822],[-75.255104,39.970034],[-75.25500212722102,39.97136034363234],[-75.2549,39.97269],[-75.255007,39.973273],[-75.255196,39.97426],[-75.255325,39.974946],[-75.255432,39.975523],[-75.255491,39.975854],[-75.255661,39.976755],[-75.255918,39.978122],[-75.255457,39.978297],[-75.255023,39.978468],[-75.25567767050073,39.98203769061173],[-75.2475356134695,39.9856938705129]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000137,"geom:area_square_m":1299501.553956,"geom:bbox":"-75.255918,39.9659224629,-75.2454864142,39.9856938705","geom:latitude":39.976106,"geom:longitude":-75.250599,"iso:country":"US","lbl:latitude":39.978071,"lbl:longitude":-75.250698,"lbl:max_zoom":18,"mps:latitude":39.978071,"mps:longitude":-75.250698,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Morris Park"],"name:pol_x_preferred":["Morris Park"],"name:swe_x_preferred":["Morris Park"],"reversegeo:latitude":39.978071,"reversegeo:longitude":-75.250698,"src:geom":"mz","wof:belongsto":[85839965,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fcff515c06733a24132a0e00947c7222","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108723393,"neighbourhood_id":85839965,"region_id":85688481}],"wof:id":1108723393,"wof:lastmodified":1566623886,"wof:name":"Morris Park","wof:parent_id":85839965,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782495],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723395.geojson b/fixtures/microhoods/1108723395.geojson new file mode 100644 index 0000000..b0df3a1 --- /dev/null +++ b/fixtures/microhoods/1108723395.geojson @@ -0,0 +1 @@ +{"id":1108723395,"type":"Feature","bbox":[-75.13584466148536,39.9817218769527,-75.13350781834204,39.98363696071648],"geometry":{"type":"Polygon","coordinates":[[[-75.13386533206686,39.9817218769527],[-75.13584466148536,39.9819814407691],[-75.13549948829471,39.98363696071648],[-75.13350781834204,39.98337796891843],[-75.13386533206686,39.9817218769527]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":32012.122458,"geom:bbox":"-75.1358446615,39.981721877,-75.1335078183,39.9836369607","geom:latitude":39.98268,"geom:longitude":-75.134679,"iso:country":"US","lbl:latitude":39.982679,"lbl:longitude":-75.134679,"lbl:max_zoom":18,"mps:latitude":39.982679,"mps:longitude":-75.134679,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":39.982679,"reversegeo:longitude":-75.134679,"src:geom":"mz","wof:belongsto":[85855755,102191575,1108721813,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a0ccd6faa52c35aa254e04649dcd2fbb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721813,"microhood_id":1108723395,"neighbourhood_id":85855755,"region_id":85688481}],"wof:id":1108723395,"wof:lastmodified":1566623886,"wof:name":"Norris Square","wof:parent_id":85855755,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782575],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723397.geojson b/fixtures/microhoods/1108723397.geojson new file mode 100644 index 0000000..1d040a9 --- /dev/null +++ b/fixtures/microhoods/1108723397.geojson @@ -0,0 +1 @@ +{"id":1108723397,"type":"Feature","bbox":[-75.12758059593655,39.97453844564558,-75.11344855998676,39.98475670333241],"geometry":{"type":"Polygon","coordinates":[[[-75.11830927739283,39.97453844564558],[-75.118328,39.974586],[-75.118465,39.974902],[-75.118743,39.975212],[-75.119034,39.975541],[-75.119273,39.97582],[-75.119518,39.976095],[-75.1199,39.975913],[-75.119959,39.975915],[-75.119984,39.975892],[-75.120431,39.975697],[-75.120562,39.975592],[-75.12105,39.975264],[-75.12119,39.97533],[-75.121552,39.975563],[-75.121906,39.975798],[-75.122369,39.976086],[-75.122831,39.976378],[-75.12364,39.9769],[-75.12391,39.977217],[-75.12477,39.978196],[-75.125593,39.979124],[-75.126185,39.979789],[-75.126736,39.98043],[-75.127187,39.980926],[-75.12757913177354,39.98137928994008],[-75.12758059593655,39.98138434160965],[-75.1243939149117,39.98267579330127],[-75.12153917227923,39.98406330512253],[-75.12025206106694,39.98475670333241],[-75.11969085296039,39.98411339915449],[-75.11919036415733,39.98355014190223],[-75.11740914050212,39.98146894323783],[-75.11739675199212,39.9814552283049],[-75.1168907214467,39.98089499558259],[-75.11619079464074,39.98010329788607],[-75.11586851122956,39.97974742747542],[-75.11554623126436,39.97939155435562],[-75.11519736942405,39.97896762512251],[-75.1148193151889,39.97854302348154],[-75.1146099155476,39.97829090990172],[-75.11435715665867,39.97802655971319],[-75.11406365439687,39.97768258604761],[-75.11344855998676,39.97705301290423],[-75.1146294574029,39.97642996113483],[-75.11589493432845,39.97576226046212],[-75.11691266237615,39.97524383357585],[-75.11830927739283,39.97453844564558]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000074,"geom:area_square_m":699262.937771,"geom:bbox":"-75.1275805959,39.9745384456,-75.11344856,39.9847567033","geom:latitude":39.979443,"geom:longitude":-75.12046,"iso:country":"US","lbl:latitude":39.979797,"lbl:longitude":-75.121048,"lbl:max_zoom":18,"mps:latitude":39.979797,"mps:longitude":-75.121048,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Olde Richmond"],"reversegeo:latitude":39.979797,"reversegeo:longitude":-75.121048,"src:geom":"mz","wof:belongsto":[85819391,102191575,1108721813,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q28175124"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8c4e9c3c1958bf98ab6e9998a66c0c87","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721813,"microhood_id":1108723397,"neighbourhood_id":85819391,"region_id":85688481}],"wof:id":1108723397,"wof:lastmodified":1566623886,"wof:name":"Olde Richmond","wof:parent_id":85819391,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782567],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723399.geojson b/fixtures/microhoods/1108723399.geojson new file mode 100644 index 0000000..01e2ab0 --- /dev/null +++ b/fixtures/microhoods/1108723399.geojson @@ -0,0 +1 @@ +{"id":1108723399,"type":"Feature","bbox":[-75.27570076126808,39.97006250284613,-75.25967593965919,39.98071415132892],"geometry":{"type":"Polygon","coordinates":[[[-75.26806935280896,39.98071415132892],[-75.26793024718926,39.98059894663324],[-75.26778994734455,39.98049382911518],[-75.26763561751538,39.98038632240124],[-75.26746725770172,39.98027642649142],[-75.26731292787255,39.98016891946877],[-75.26717262802785,39.98006380133326],[-75.26704635816762,39.97996107208492],[-75.26693411829186,39.97986073172373],[-75.26682655507759,39.97977114204937],[-75.2667236685248,39.97969230306184],[-75.26662545863351,39.97962421476115],[-75.26653192540371,39.97956687714728],[-75.26643839217391,39.97950834494549],[-75.26634485894411,39.97944861815579],[-75.26625132571431,39.97938769677818],[-75.26615779248449,39.97932558081266],[-75.26605802370604,39.97926346479066],[-75.26595201937893,39.97920134871219],[-75.26583977950317,39.97913923257727],[-75.26572130407875,39.97907711638588],[-75.26539393777445,39.97893257548532],[-75.26485768059024,39.9787056098756],[-75.26411253252616,39.9783962195567],[-75.26315849358217,39.97800440452864],[-75.26241334551808,39.97769859752378],[-75.26187708833388,39.97747879854212],[-75.26154972202957,39.97734500758366],[-75.26143124660516,39.9772972246484],[-75.26132524227805,39.97725063625796],[-75.26123170904825,39.97720524241232],[-75.26115064691575,39.97716104311151],[-75.26108205588055,39.97711803835552],[-75.26102125928118,39.97706906066296],[-75.26096825711763,39.97701411003382],[-75.26092304938989,39.97695318646812],[-75.26088563609797,39.97688628996585],[-75.2608419872574,39.97679789077051],[-75.26079210286817,39.97668798888212],[-75.26073598293029,39.97655658430067],[-75.26067362744375,39.97640367702615],[-75.2605910064241,39.97623165570084],[-75.26048811987131,39.97604052032472],[-75.2603649677854,39.97583027089782],[-75.26022155016638,39.9756009074201],[-75.26009528030615,39.97540738178733],[-75.25998615820471,39.97524969399949],[-75.25989418386207,39.97512784405659],[-75.25981935727823,39.97504183195861],[-75.25976011956602,39.97496298747534],[-75.25971647072545,39.97489131060674],[-75.25968841075651,39.97482680135285],[-75.25967593965919,39.97476945971364],[-75.25968061632068,39.97470375565366],[-75.25970244074097,39.9746296891729],[-75.25974141292005,39.97454726027137],[-75.25979753285795,39.97445646894906],[-75.26017634243864,39.97411957618735],[-75.26087784166216,39.97353658198623],[-75.26190203052849,39.97270748634572],[-75.26324890903766,39.97163228926581],[-75.26427153901682,39.9708330596559],[-75.26496992046602,39.97030979751601],[-75.26534405338522,39.97006250284613],[-75.26539393777445,39.97009117564627],[-75.26545317548666,39.97012104313121],[-75.26552176652184,39.97015210530095],[-75.26559971088001,39.97018436215551],[-75.26568700856116,39.97021781369486],[-75.26578054179096,39.97025604399248],[-75.26588031056941,39.97029905304835],[-75.26598631489652,39.97034684086249],[-75.2660985547723,39.97039940743488],[-75.26619988243792,39.97045077927738],[-75.26629029789339,39.97050095638996],[-75.26636980113872,39.97054993877263],[-75.26643839217391,39.97059772642541],[-75.26650854209626,39.97065148747213],[-75.26658025090578,39.97071122191281],[-75.26665351860245,39.97077692974744],[-75.2667283451863,39.97084861097602],[-75.2668047306573,39.97091909744964],[-75.26688267501547,39.97098838916829],[-75.2669621782608,39.97105648613199],[-75.2670432403933,39.97112338834071],[-75.26711027254133,39.97118192774879],[-75.26716327470488,39.97123210435623],[-75.26720224688397,39.97127391816301],[-75.26722718907858,39.97130736916915],[-75.26725369016036,39.97134798820459],[-75.2672817501293,39.97139577526936],[-75.2673113689854,39.97145073036343],[-75.26734254672867,39.97151285348681],[-75.26737060669761,39.97157019787532],[-75.26739554889222,39.97162276352896],[-75.26741737331251,39.97167055044771],[-75.26743607995847,39.97171355863161],[-75.26745322771727,39.97175417745324],[-75.2674688165889,39.9717924069126],[-75.26748284657337,39.97182824700971],[-75.26749531767068,39.97186169774456],[-75.26750467099366,39.97189873245832],[-75.26751090654231,39.97193935115099],[-75.26751402431664,39.97198355382257],[-75.26751402431664,39.97203134047305],[-75.26750934765515,39.97207554310487],[-75.26749999433217,39.97211616171802],[-75.2674859643477,39.9721531963125],[-75.26746725770172,39.97218664688833],[-75.26743140329697,39.97222368142602],[-75.26737840113341,39.97226429992558],[-75.26730825121106,39.972308502387],[-75.26722095352991,39.9723562888103],[-75.26717418691501,39.97240646451066],[-75.26716795136636,39.97245902948809],[-75.26720224688395,39.97251398374257],[-75.26727707346781,39.97257132727412],[-75.26737996002059,39.97259402574117],[-75.26751090654231,39.97258207914369],[-75.26766991303298,39.97253548748171],[-75.26785697949258,39.97245425075522],[-75.26800819154742,39.97239332321035],[-75.26812354919751,39.9723527048471],[-75.26820305244284,39.97233239566548],[-75.26824670128342,39.97233239566548],[-75.26829970344697,39.97233478498597],[-75.2683620589335,39.97233956362696],[-75.26843376774302,39.97234673158845],[-75.26851482987551,39.97235628887044],[-75.26858809757219,39.97237301410055],[-75.26865357083305,39.97239690727879],[-75.2687112496581,39.97242796840516],[-75.26876113404734,39.97246619747964],[-75.26881101843657,39.97250562118715],[-75.26886090282579,39.97254623952767],[-75.26891078721502,39.97258805250122],[-75.26896067160423,39.97263106010779],[-75.26903082152658,39.97269557135527],[-75.26912123698206,39.97278158624366],[-75.26923191797066,39.97288910477295],[-75.2693628644924,39.97301812694317],[-75.26952810653171,39.97308383268234],[-75.26972764408862,39.97308622199047],[-75.26996147716312,39.97302529486757],[-75.27022960575523,39.97290105131363],[-75.27045408550676,39.97279831140629],[-75.2706349164177,39.97271707514552],[-75.27077209848808,39.97265734253136],[-75.27086563171788,39.97261911356378],[-75.27095292939903,39.97257849525566],[-75.27103399153152,39.97253548760699],[-75.27110881811537,39.97249009061779],[-75.27117740915055,39.97244230428804],[-75.27124132352425,39.97240526988065],[-75.27130056123646,39.97237898739562],[-75.27135512228718,39.97236345683293],[-75.27140500667642,39.97235867819261],[-75.27145021440415,39.97235987285068],[-75.2714907454704,39.97236704080716],[-75.27152659987516,39.97238018206204],[-75.27155777761843,39.97239929661532],[-75.27185708395379,39.97274334566469],[-75.27242451888127,39.97341232921015],[-75.27353600542875,39.9747359603861],[-75.27570076126808,39.97732272684196],[-75.27546799954875,39.97742899972099],[-75.2752840001241,39.97751200034318],[-75.27355200038579,39.97827900003347],[-75.27315400050325,39.97845499988124],[-75.27302600028383,39.97851200038967],[-75.27225499966835,39.97885499984453],[-75.27153000056026,39.97917600005594],[-75.27130899966043,39.97927499965762],[-75.26925699964032,39.98018599989651],[-75.26806935280896,39.98071415132892]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000093,"geom:area_square_m":878621.113345,"geom:bbox":"-75.2757007613,39.9700625028,-75.2596759397,39.9807141513","geom:latitude":39.975598,"geom:longitude":-75.267357,"iso:country":"US","lbl:latitude":39.976143,"lbl:longitude":-75.267903,"lbl:max_zoom":18,"mps:latitude":39.976143,"mps:longitude":-75.267903,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Overbrook Park"],"name:fra_x_preferred":["Overbrook Park"],"name:zho_x_preferred":["歐佛布魯克公園"],"reversegeo:latitude":39.976143,"reversegeo:longitude":-75.267903,"src:geom":"mz","wof:belongsto":[85839965,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7113573"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"acf96ab11e38b1f3a94e3864d7b52f00","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108723399,"neighbourhood_id":85839965,"region_id":85688481}],"wof:id":1108723399,"wof:lastmodified":1566623886,"wof:name":"Overbrook Park","wof:parent_id":85839965,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782613],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723403.geojson b/fixtures/microhoods/1108723403.geojson new file mode 100644 index 0000000..0b0cba4 --- /dev/null +++ b/fixtures/microhoods/1108723403.geojson @@ -0,0 +1 @@ +{"id":1108723403,"type":"Feature","bbox":[-75.187821,40.00027030624614,-75.17882708155976,40.006102],"geometry":{"type":"Polygon","coordinates":[[[-75.18713191102242,40.00027030624614],[-75.186787,40.000589],[-75.18675029856367,40.00068344502949],[-75.186712,40.000782],[-75.186681,40.000876],[-75.186666,40.000946],[-75.186661,40.001009],[-75.18667,40.001107],[-75.186688,40.00117],[-75.187163,40.002633],[-75.18728,40.002961],[-75.187302,40.003034],[-75.187334,40.003214],[-75.187347,40.003326],[-75.187431,40.004641],[-75.187454,40.004966],[-75.187821,40.006102],[-75.186477,40.005921],[-75.1857,40.005821],[-75.18530154018983,40.0057722289094],[-75.184883,40.005721],[-75.184122,40.005623],[-75.18335,40.005521],[-75.182543,40.005413],[-75.181711,40.005313],[-75.181,40.005215],[-75.18037,40.005138],[-75.17882708155976,40.00492745695456],[-75.179277,40.00469],[-75.179738,40.004439],[-75.180347,40.004125],[-75.180611,40.004002],[-75.180978,40.00379],[-75.181141,40.003697],[-75.182351,40.003311],[-75.183953,40.002838],[-75.184126,40.002771],[-75.18431,40.002675],[-75.184419,40.002605],[-75.184564,40.002493],[-75.184617,40.002447],[-75.184695,40.002361],[-75.185212,40.001842],[-75.185643,40.0014],[-75.185802,40.001233],[-75.185911,40.001131],[-75.186012,40.001052],[-75.186397,40.000735],[-75.186584,40.000594],[-75.186707,40.000511],[-75.186812,40.000434],[-75.18713191102242,40.00027030624614]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":207131.388283,"geom:bbox":"-75.187821,40.0002703062,-75.1788270816,40.006102","geom:latitude":40.004006,"geom:longitude":-75.184502,"iso:country":"US","lbl:latitude":40.004023,"lbl:longitude":-75.185627,"lbl:max_zoom":18,"mps:latitude":40.004023,"mps:longitude":-75.185627,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ara_x_preferred":["فردوس"],"name:arg_x_preferred":["Paradiso"],"name:aze_x_preferred":["Cənnət"],"name:bak_x_preferred":["Ожмах"],"name:bel_x_preferred":["Рай"],"name:bos_x_preferred":["Raj"],"name:bre_x_preferred":["Baradoz"],"name:bul_x_preferred":["Рай"],"name:cat_x_preferred":["Paradís"],"name:ces_x_preferred":["Ráj"],"name:ckb_x_preferred":["پاردێز"],"name:cos_x_preferred":["Paradisu"],"name:dan_x_preferred":["Paradis"],"name:deu_x_preferred":["Paradies"],"name:ell_x_preferred":["Παράδεισος"],"name:epo_x_preferred":["Paradizo"],"name:eus_x_preferred":["Paradisu"],"name:fas_x_preferred":["پردیس"],"name:fin_x_preferred":["Paratiisi"],"name:fra_x_preferred":["Paradis"],"name:fry_x_preferred":["Paradys"],"name:fur_x_preferred":["Paradîs"],"name:gla_x_preferred":["Pàrras"],"name:hin_x_preferred":["पैराडाइज"],"name:hrv_x_preferred":["Raj"],"name:hye_x_preferred":["Դրախտ"],"name:ido_x_preferred":["Paradizo"],"name:ind_x_preferred":["Firdaus"],"name:ita_x_preferred":["Paradiso"],"name:jav_x_preferred":["Swarga"],"name:jpn_x_preferred":["楽園"],"name:kat_x_preferred":["სამოთხე"],"name:kaz_x_preferred":["Жәннәт"],"name:lav_x_preferred":["Paradīze"],"name:lit_x_preferred":["Rojus"],"name:mlg_x_preferred":["Paradisa"],"name:msa_x_preferred":["Firdaus"],"name:nau_x_preferred":["Paradis"],"name:nld_x_preferred":["Paradijs"],"name:nno_x_preferred":["Paradis"],"name:nor_x_preferred":["Paradis"],"name:nrm_x_preferred":["Paradis"],"name:oci_x_preferred":["Paradís"],"name:por_x_preferred":["Paraíso"],"name:ron_x_preferred":["Rai"],"name:rus_x_preferred":["Рай"],"name:slk_x_preferred":["Raj"],"name:slv_x_preferred":["Raj"],"name:som_x_preferred":["Jano"],"name:spa_x_preferred":["Paraíso"],"name:sqi_x_preferred":["Parajsa"],"name:srp_x_preferred":["Рај"],"name:swa_x_preferred":["Paradiso"],"name:swe_x_preferred":["Paradis"],"name:tat_x_preferred":["Җәннәт"],"name:tgl_x_preferred":["Paraiso"],"name:ukr_x_preferred":["Рай"],"name:urd_x_preferred":["فردوس"],"name:zho_x_preferred":["樂園"],"reversegeo:latitude":40.004023,"reversegeo:longitude":-75.185627,"src:geom":"mz","wof:belongsto":[85802763,102191575,1108721811,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"57b003461ce969de951a942ec18aff70","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721811,"microhood_id":1108723403,"neighbourhood_id":85802763,"region_id":85688481}],"wof:id":1108723403,"wof:lastmodified":1566623903,"wof:name":"Paradise","wof:parent_id":85802763,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782563],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723405.geojson b/fixtures/microhoods/1108723405.geojson new file mode 100644 index 0000000..804b147 --- /dev/null +++ b/fixtures/microhoods/1108723405.geojson @@ -0,0 +1 @@ +{"id":1108723405,"type":"Feature","bbox":[-75.20235645602736,39.95916786020504,-75.1958534147382,39.96290987188888],"geometry":{"type":"Polygon","coordinates":[[[-75.20085944152557,39.95925131368625],[-75.20196717404129,39.95916786020504],[-75.20235645602736,39.96287401870796],[-75.20193573513093,39.96290987188888],[-75.20013230255789,39.96192842570689],[-75.19888877480086,39.96126270964615],[-75.19783495942579,39.9607173017137],[-75.1958534147382,39.95969169439898],[-75.19585976191655,39.95968260038603],[-75.19867733516136,39.95942835265342],[-75.20085944152557,39.95925131368625]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000012,"geom:area_square_m":115488.847479,"geom:bbox":"-75.202356456,39.9591678602,-75.1958534147,39.9629098719","geom:latitude":39.960643,"geom:longitude":-75.200059,"iso:country":"US","lbl:latitude":39.960592,"lbl:longitude":-75.200654,"lbl:max_zoom":18,"mps:latitude":39.960592,"mps:longitude":-75.200654,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Saunders Park"],"name:fra_x_preferred":["Saunders Park"],"reversegeo:latitude":39.960592,"reversegeo:longitude":-75.200654,"src:geom":"mz","wof:belongsto":[85871455,102191575,1108721805,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7427460"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"83173d8d2f741b2e8e2a6ddcfafd259b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721805,"microhood_id":1108723405,"neighbourhood_id":85871455,"region_id":85688481}],"wof:id":1108723405,"wof:lastmodified":1566623904,"wof:name":"Saunders Park","wof:parent_id":85871455,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782611],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723407.geojson b/fixtures/microhoods/1108723407.geojson new file mode 100644 index 0000000..034d872 --- /dev/null +++ b/fixtures/microhoods/1108723407.geojson @@ -0,0 +1 @@ +{"id":1108723407,"type":"Feature","bbox":[-75.25417859529873,40.04464197141726,-75.23859795511353,40.05615562750225],"geometry":{"type":"Polygon","coordinates":[[[-75.2500065104832,40.04464197141726],[-75.2505322183058,40.04497621001416],[-75.25101026131733,40.04528780672071],[-75.25135320521693,40.04552117187892],[-75.25166324035847,40.04574127686462],[-75.25194036674196,40.04594812167781],[-75.25222095720525,40.04616026947669],[-75.25250501174835,40.04637772026127],[-75.25279253037122,40.04660047403154],[-75.2530835130739,40.04682853078751],[-75.25331781166969,40.04701277012551],[-75.2534954261586,40.04715319204551],[-75.25361635654062,40.04724979654753],[-75.25368060281573,40.04730258363156],[-75.25374087160164,40.04735632382498],[-75.25379716289828,40.04741101712777],[-75.2538494767057,40.04746666353995],[-75.25389781302385,40.04752326306151],[-75.25393969439214,40.04758195487256],[-75.25397512081057,40.0476427389731],[-75.2540040922791,40.04770561536313],[-75.25402660879776,40.04777058404265],[-75.25404717677154,40.04783273515551],[-75.25406579620044,40.0478920687017],[-75.25408246708444,40.04794858468124],[-75.25409718942356,40.0480022830941],[-75.25411104574275,40.04805681014511],[-75.25412403604196,40.04811216583427],[-75.25413616032125,40.04816835016157],[-75.25414741858057,40.048225363127],[-75.254157161305,40.04828171310277],[-75.2541653884945,40.04833740008886],[-75.2541721001491,40.04839242408527],[-75.2541772962688,40.04844678509201],[-75.25417859529873,40.04849567682619],[-75.25417599723887,40.04853909928784],[-75.25416950208927,40.04857705247692],[-75.25415910984988,40.04860953639344],[-75.2541437379958,40.04864235176903],[-75.25412338652701,40.04867549860369],[-75.25409805544352,40.04870897689741],[-75.25406774474533,40.04874278665019],[-75.25403440297731,40.04877808798419],[-75.25399803013946,40.04881488089939],[-75.2539586262318,40.0488531653958],[-75.25391619125433,40.04889294147344],[-75.2532313859801,40.04937221901872],[-75.25190421040911,40.05029099803165],[-75.24993466454137,40.05164927851224],[-75.24732274837686,40.05344706046048],[-75.2434118022897,40.05615562750225],[-75.2411861310222,40.0542505337606],[-75.23859795511353,40.05204210609941],[-75.23860120907821,40.05204087468319],[-75.2410841497832,40.05094232151613],[-75.24375035487779,40.04991440585821],[-75.24558066793294,40.04936362914252],[-75.24680424579724,40.04845662201041],[-75.24771406065686,40.04698065983584],[-75.24870262423273,40.0459534907146],[-75.24990537726826,40.04470371477954],[-75.2500065104832,40.04464197141726]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000071,"geom:area_square_m":671839.950957,"geom:bbox":"-75.2541785953,40.0446419714,-75.2385979551,40.0561556275","geom:latitude":40.050562,"geom:longitude":-75.2469,"iso:country":"US","lbl:latitude":40.051147,"lbl:longitude":-75.246782,"lbl:max_zoom":18,"mps:latitude":40.051147,"mps:longitude":-75.246782,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Shawmont"],"name:und_x_variant":["Roxboro"],"reversegeo:latitude":40.051147,"reversegeo:longitude":-75.246782,"src:geom":"mz","wof:belongsto":[85853279,102191575,1108721809,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e9325e24beeb65fbb68408b429e6e18b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721809,"microhood_id":1108723407,"neighbourhood_id":85853279,"region_id":85688481}],"wof:id":1108723407,"wof:lastmodified":1566623903,"wof:name":"Shawmont Valley","wof:parent_id":85853279,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782557],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723409.geojson b/fixtures/microhoods/1108723409.geojson new file mode 100644 index 0000000..abea8ce --- /dev/null +++ b/fixtures/microhoods/1108723409.geojson @@ -0,0 +1 @@ +{"id":1108723409,"type":"Feature","bbox":[-75.140586554493,39.99798080107378,-75.12397129380328,40.00531480625705],"geometry":{"type":"Polygon","coordinates":[[[-75.12552572047744,39.99798080107378],[-75.13443275222045,39.99913125870008],[-75.140586554493,39.99992992369202],[-75.1405756590097,39.9999833294382],[-75.14005645234671,40.00196753782853],[-75.13987525635316,40.00293213769767],[-75.1398828098497,40.00296133225935],[-75.13946422378424,40.00310478005017],[-75.13907252263951,40.00324227836531],[-75.13833977782278,40.00349948764866],[-75.13768333187545,40.00372990942805],[-75.13560200043688,40.00454224358749],[-75.13473678307113,40.00479476294077],[-75.1341694697313,40.00491461991991],[-75.1341694697313,40.00491461991995],[-75.13274855284486,40.00521480386238],[-75.13197780313911,40.0051969335156],[-75.13193118973797,40.00519745181234],[-75.12997095492156,40.00521921076335],[-75.12784831702896,40.00531480625705],[-75.12397129380328,40.00488266074185],[-75.12400776709016,40.00471315591233],[-75.12552572047744,39.99798080107378]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00009,"geom:area_square_m":850818.636695,"geom:bbox":"-75.1405865545,39.9979808011,-75.1239712938,40.0053148063","geom:latitude":40.001867,"geom:longitude":-75.131559,"iso:country":"US","lbl:latitude":40.001981,"lbl:longitude":-75.131558,"lbl:max_zoom":18,"mps:latitude":40.001981,"mps:longitude":-75.131558,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":40.001981,"reversegeo:longitude":-75.131558,"src:geom":"mz","wof:belongsto":[1108723479,102191575,1108721813,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"3eb77ca64530b129f157c57cc12b8273","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721813,"microhood_id":1108723409,"neighbourhood_id":1108723479,"region_id":85688481}],"wof:id":1108723409,"wof:lastmodified":1566623903,"wof:name":"St. Hugh","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782583],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723451.geojson b/fixtures/microhoods/1108723451.geojson new file mode 100644 index 0000000..92b2878 --- /dev/null +++ b/fixtures/microhoods/1108723451.geojson @@ -0,0 +1 @@ +{"id":1108723451,"type":"Feature","bbox":[-75.08837491656685,40.04138640989394,-75.06969016779769,40.06132356084387],"geometry":{"type":"Polygon","coordinates":[[[-75.06969016779769,40.0532978672704],[-75.0809596903455,40.04138640989394],[-75.08837491656685,40.04552882480301],[-75.08835519621648,40.04557184242797],[-75.08797565281348,40.04639498231241],[-75.08768473660523,40.04714849324899],[-75.0869998636037,40.04862504207946],[-75.08668764552067,40.04929305149054],[-75.08622983722098,40.05006798924189],[-75.08605766022488,40.05088070978957],[-75.08670748596107,40.05224159345799],[-75.08693427503931,40.05278729778642],[-75.08695476352689,40.05296792139431],[-75.08694561844817,40.05320084260959],[-75.08641421031041,40.05387288631566],[-75.08640330249571,40.05388668057518],[-75.08587535706013,40.05446886624344],[-75.08590795463972,40.05550345422262],[-75.08585202265554,40.05611615946001],[-75.08580793859716,40.0572384186797],[-75.08578209910564,40.05754513234575],[-75.0849791841965,40.05895138462041],[-75.08383383251548,40.06084776849759],[-75.08352355678606,40.06132356084387],[-75.08312573376614,40.06103338345444],[-75.08229413017807,40.06056140414593],[-75.08134389019787,40.06002506991962],[-75.08052368551873,40.05954199879692],[-75.07964767469403,40.05901639209611],[-75.07881088182559,40.058515505539],[-75.07804645023208,40.058096635682],[-75.07775566858312,40.05791824384401],[-75.0767194594036,40.05738497350011],[-75.0750307267905,40.05640743017914],[-75.0740709744172,40.05582442598851],[-75.07330102138842,40.05533737137923],[-75.06969016779769,40.0532978672704]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000199,"geom:area_square_m":1886840.990469,"geom:bbox":"-75.0883749166,40.0413864099,-75.0696901678,40.0613235608","geom:latitude":40.051259,"geom:longitude":-75.080314,"iso:country":"US","lbl:latitude":40.051737,"lbl:longitude":-75.079678,"lbl:max_zoom":18,"mps:latitude":40.051737,"mps:longitude":-75.079678,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":40.051737,"reversegeo:longitude":-75.079678,"src:geom":"mz","wof:belongsto":[85840075,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bb75453f4a1d918bf066d85cda5f9849","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108723451,"neighbourhood_id":85840075,"region_id":85688481}],"wof:id":1108723451,"wof:lastmodified":1566623923,"wof:name":"Upper Northwood","wof:parent_id":85840075,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782523],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723453.geojson b/fixtures/microhoods/1108723453.geojson new file mode 100644 index 0000000..a85ba95 --- /dev/null +++ b/fixtures/microhoods/1108723453.geojson @@ -0,0 +1 @@ +{"id":1108723453,"type":"Feature","bbox":[-74.9913012694466,40.08998625987466,-74.97992043177918,40.09929756157101],"geometry":{"type":"Polygon","coordinates":[[[-74.98665039789033,40.09929756157101],[-74.98662528957036,40.09927703457192],[-74.97992043177918,40.0937962308893],[-74.97996267496518,40.0937645211886],[-74.98039514781216,40.09340379052789],[-74.98070723148918,40.09314347352731],[-74.98092729481023,40.09295991217061],[-74.9811694931794,40.09275788550049],[-74.98157014902694,40.09242367942722],[-74.98188574435373,40.09215069030099],[-74.98247793131054,40.09181421202378],[-74.98307869045296,40.0912674948375],[-74.98323838904597,40.09108428017761],[-74.98361921663023,40.0906327425196],[-74.98371798619216,40.0905156336384],[-74.98386972036224,40.09033416379516],[-74.98415776967795,40.08998625987466],[-74.98416192607206,40.08998925591612],[-74.98471628580576,40.09038881166307],[-74.98520885046575,40.0907438225743],[-74.98573159944911,40.0911427821701],[-74.98605985222218,40.09139329848229],[-74.98645559378026,40.09169531847801],[-74.98696606898893,40.09214065669576],[-74.98738665528384,40.0925075686879],[-74.98772719421717,40.0927893484067],[-74.98808850039686,40.0930883101479],[-74.98859347851649,40.09350614317124],[-74.9891174072329,40.09393965066013],[-74.9896252406091,40.09436293126233],[-74.99015202865687,40.09480200245406],[-74.99051097726912,40.09510117695579],[-74.99125193627081,40.09571873504188],[-74.9913012694466,40.09575956037516],[-74.99126578921432,40.09577920179648],[-74.98996324781363,40.09671520055458],[-74.98845261601922,40.09780068053812],[-74.98781255018108,40.09840343327017],[-74.98686286145829,40.09914759519523],[-74.98665039789033,40.09929756157101]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":474633.869132,"geom:bbox":"-74.9913012694,40.0899862599,-74.9799204318,40.0992975616","geom:latitude":40.094701,"geom:longitude":-74.985568,"iso:country":"US","lbl:latitude":40.094711,"lbl:longitude":-74.985563,"lbl:max_zoom":18,"mps:latitude":40.094711,"mps:longitude":-74.985563,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":40.094711,"reversegeo:longitude":-74.985563,"src:geom":"mz","wof:belongsto":[85840807,102191575,1108721807,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b24a89b21f51c0c45625c45e46028073","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721807,"microhood_id":1108723453,"neighbourhood_id":85840807,"region_id":85688481}],"wof:id":1108723453,"wof:lastmodified":1566623923,"wof:name":"Walton Park","wof:parent_id":85840807,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782497],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723457.geojson b/fixtures/microhoods/1108723457.geojson new file mode 100644 index 0000000..aeb0246 --- /dev/null +++ b/fixtures/microhoods/1108723457.geojson @@ -0,0 +1 @@ +{"id":1108723457,"type":"Feature","bbox":[-75.21088985904204,39.94128513765327,-75.2039446517294,39.9457608171429],"geometry":{"type":"Polygon","coordinates":[[[-75.2081209554461,39.94128513765327],[-75.20821171650107,39.94128541911167],[-75.20831016263584,39.94129408498552],[-75.20842559748922,39.94133317571833],[-75.20852445571911,39.94138776138023],[-75.20860812905316,39.9414453387412],[-75.21088985904204,39.94333645341491],[-75.210795027703,39.94349169552553],[-75.21071316967698,39.94361137208323],[-75.21063435657496,39.94370070747392],[-75.21056356424631,39.94377153873964],[-75.21040235578943,39.94391619194924],[-75.20860929680936,39.94546284382747],[-75.20823701122875,39.9457608171429],[-75.20744863686,39.94528090181261],[-75.20549382823165,39.944117047688],[-75.20516374836959,39.94374301252076],[-75.2039446517294,39.9429131002051],[-75.2046522096624,39.94251511604794],[-75.20525224557207,39.94131511992043],[-75.20601168980701,39.94132589599359],[-75.20710671203383,39.9413047408076],[-75.207962930915,39.94128819295842],[-75.2081209554461,39.94128513765327]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":172988.164392,"geom:bbox":"-75.210889859,39.9412851377,-75.2039446517,39.9457608171","geom:latitude":39.943211,"geom:longitude":-75.207518,"iso:country":"US","lbl:latitude":39.943167,"lbl:longitude":-75.20757,"lbl:max_zoom":18,"mps:latitude":39.943167,"mps:longitude":-75.20757,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":39.943167,"reversegeo:longitude":-75.20757,"src:geom":"mz","wof:belongsto":[85850351,102191575,1108721803,404483701,85633793,101718083,102081353,85688481],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e802cad4ed8033fb4fa78796bbd80ad5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081353,"localadmin_id":404483701,"locality_id":101718083,"macrohood_id":1108721803,"microhood_id":1108723457,"neighbourhood_id":85850351,"region_id":85688481}],"wof:id":1108723457,"wof:lastmodified":1566623923,"wof:name":"West Shore","wof:parent_id":85850351,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782609],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723521.geojson b/fixtures/microhoods/1108723521.geojson new file mode 100644 index 0000000..e58ab05 --- /dev/null +++ b/fixtures/microhoods/1108723521.geojson @@ -0,0 +1 @@ +{"id":1108723521,"type":"Feature","bbox":[-77.04631519488322,38.91437958887371,-77.041634133182,38.92266113433171],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.0428077879197,38.92255935554292],[-77.04293770023445,38.92245757660775],[-77.04300294277898,38.92245755261779],[-77.04306789881109,38.92240676299156],[-77.04306786803114,38.9223557974319],[-77.04313285462976,38.92235577346376],[-77.04313282392431,38.92230500776863],[-77.04319777960389,38.92225401820378],[-77.04319774909439,38.92220365223763],[-77.04326270475647,38.92215286250069],[-77.0432626738374,38.92210189693871],[-77.04326264303964,38.92205113124123],[-77.04332788521224,38.92205110706988],[-77.04332785436806,38.92200034137192],[-77.0434576411762,38.92169549904778],[-77.0435874267526,38.92139045669728],[-77.043652288172,38.92118736962092],[-77.0437172114637,38.92108581391532],[-77.0437171802203,38.9210348483434],[-77.04384718836357,38.92067943959097],[-77.04391211079228,38.92057768390249],[-77.0439120794098,38.92052671832577],[-77.04404195534072,38.9203745721416],[-77.04423694513068,38.92001913840216],[-77.0443015473612,38.91981565128061],[-77.0443667241985,38.9197138952263],[-77.04436669261582,38.91966312950664],[-77.04443164500687,38.91961213923099],[-77.0444316136271,38.91956177324046],[-77.04469155079133,38.91915494864285],[-77.0447564708783,38.91905359218666],[-77.04482139052949,38.91895183596237],[-77.0448863420734,38.91890104529234],[-77.04508135571695,38.91859637577708],[-77.04508129140892,38.9184946444516],[-77.04521119307455,38.91839286291236],[-77.04527611147546,38.91829110642301],[-77.04527607949986,38.91824074042044],[-77.04534103007232,38.91818994949102],[-77.04540588333265,38.91798646159089],[-77.04547083358108,38.91793567058693],[-77.04553575119535,38.91783391394478],[-77.04560092471613,38.91773255689502],[-77.0456655861241,38.91763080027677],[-77.04566555361778,38.91758003453792],[-77.04573075914655,38.91752924328567],[-77.04579567602,38.91742748649152],[-77.04586062573881,38.91737709499591],[-77.04586059296527,38.91732612938961],[-77.04592550946856,38.91722437251948],[-77.04599045865288,38.91717358121956],[-77.04599039304931,38.91707184986785],[-77.04605559788213,38.9170210584296],[-77.0460555649694,38.91697009282002],[-77.04605553244392,38.91691972680539],[-77.04612051408802,38.91691970117573],[-77.04612048125817,38.91686893543032],[-77.0462503125056,38.91666542134625],[-77.04625027958353,38.91661465559849],[-77.04625024653187,38.91656368998516],[-77.04631519488322,38.91651289849855],[-77.04631516217461,38.91646253247971],[-77.04631509610853,38.9163608011149],[-77.04631506301067,38.91630983549921],[-77.04631503004263,38.91625906974816],[-77.04631496397695,38.91615733837948],[-77.04631486520324,38.91600524098592],[-77.04631463404067,38.91564928110323],[-77.0463144362369,38.91534468655293],[-77.04624925850338,38.91504011772297],[-77.04624912656209,38.91483665493811],[-77.0462490609805,38.91473552313853],[-77.0462490279306,38.91468455750753],[-77.04618398244567,38.91458285181051],[-77.04618391669788,38.91448132027569],[-77.04618385082085,38.91437958887371],[-77.04605392494268,38.91443040593599],[-77.04598872260608,38.91448139726275],[-77.04592377587225,38.91453218858685],[-77.04572890269377,38.9146339964386],[-77.04553377313353,38.91473580406313],[-77.04527395106723,38.9148880024898],[-77.04501387231778,38.91504060016346],[-77.04488394440179,38.91509141591866],[-77.04481899645123,38.91514240648819],[-77.04468906796046,38.91519282229535],[-77.04462386382595,38.91524361298816],[-77.04449396705826,38.91534539393352],[-77.04436403834087,38.91539640897291],[-77.04423410931366,38.91544722400226],[-77.04410392427314,38.91549803898316],[-77.04403897539463,38.91554902911531],[-77.04390904585777,38.91559984378175],[-77.04390907686677,38.91565020980921],[-77.0438440963786,38.9156502342091],[-77.04358401191227,38.915803028544],[-77.04351903128476,38.91580305276311],[-77.0434540815885,38.91585384270216],[-77.04345411251988,38.91590460845777],[-77.04338913179976,38.91590463260461],[-77.0433241510796,38.91590465671536],[-77.04319399542305,38.91600643629805],[-77.0427390260134,38.91626043241534],[-77.0421540908107,38.91651447370555],[-77.04176406646955,38.91671807652535],[-77.041634133182,38.9167688886513],[-77.04163419257128,38.916870620011],[-77.04163425161067,38.91697175177336],[-77.04163431100027,38.9170734831293],[-77.04163434075346,38.91712444873907],[-77.04163437039003,38.91717521448328],[-77.0416344891701,38.91737867718552],[-77.04163469662844,38.91773403736825],[-77.04163475578595,38.91783536897962],[-77.0416347854231,38.91788613471716],[-77.04163481517698,38.91793710031934],[-77.04163484481424,38.91798786605592],[-77.04163487456819,38.91803883165709],[-77.04163490420552,38.91808959739275],[-77.04163493384287,38.91814036312788],[-77.04169994640124,38.91819130555632],[-77.04169997608496,38.91824207129049],[-77.04170021367302,38.91864839701193],[-77.04170027292439,38.91874972860616],[-77.04170033240963,38.91885145992865],[-77.0417006888573,38.91946104836317],[-77.04170071865896,38.91951201395049],[-77.04170074834377,38.91956277967228],[-77.04170077779487,38.91961314566349],[-77.04170080759665,38.91966411124936],[-77.04170083728158,38.91971487696975],[-77.04170086708345,38.91976584255466],[-77.04196150805812,38.92052743501892],[-77.04202626717951,38.92057837733512],[-77.04202632713138,38.920680108623],[-77.04222183887464,38.92118789520538],[-77.04241709767068,38.92169588137063],[-77.04254765869074,38.92225425671364],[-77.04261276677666,38.92245769554465],[-77.04261279711197,38.92250846123846],[-77.04267784473276,38.92261016877445],[-77.04267787523406,38.92266113433171],[-77.0428077879197,38.92255935554292]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":196129.760421,"geom:bbox":"-77.0463151949,38.9143795889,-77.0416341332,38.9226611343","geom:latitude":38.91809,"geom:longitude":-77.043734,"iso:country":"US","lbl:latitude":38.917855,"lbl:longitude":-77.043504,"lbl:max_zoom":18,"mps:latitude":38.917855,"mps:longitude":-77.043504,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Washington Heights"],"name:ita_x_preferred":["Washington Heights"],"name:jpn_x_preferred":["ワシントンハイツ"],"name:kor_x_preferred":["워싱턴하이츠"],"name:vol_x_preferred":["Washington Heights"],"reversegeo:latitude":38.917855,"reversegeo:longitude":-77.043504,"src:geom":"wapo","wapo:quadrant":"NW","wapo:subhood":"Washington Heights","wof:belongsto":[85802425,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3f1da228563a338b71b4f1bd9aba1bc3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723521,"neighbourhood_id":85802425,"region_id":85688741}],"wof:id":1108723521,"wof:lastmodified":1566623887,"wof:name":"Washington Heights","wof:parent_id":85802425,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723523.geojson b/fixtures/microhoods/1108723523.geojson new file mode 100644 index 0000000..a9550f6 --- /dev/null +++ b/fixtures/microhoods/1108723523.geojson @@ -0,0 +1 @@ +{"id":1108723523,"type":"Feature","bbox":[-77.04267787523406,38.9167688886513,-77.03649874562576,38.92652341700292],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.04267784473276,38.92261016877445],[-77.04261279711197,38.92250846123846],[-77.04261276677666,38.92245769554465],[-77.04254765869074,38.92225425671364],[-77.04241709767068,38.92169588137063],[-77.04222183887464,38.92118789520538],[-77.04202632713138,38.920680108623],[-77.04202626717951,38.92057837733512],[-77.04196150805812,38.92052743501892],[-77.04170086708345,38.91976584255466],[-77.04170083728158,38.91971487696975],[-77.04170080759665,38.91966411124936],[-77.04170077779487,38.91961314566349],[-77.04170074834377,38.91956277967228],[-77.04170071865896,38.91951201395049],[-77.0417006888573,38.91946104836317],[-77.04170033240963,38.91885145992865],[-77.04170027292439,38.91874972860616],[-77.04170021367302,38.91864839701193],[-77.04169997608496,38.91824207129049],[-77.04169994640124,38.91819130555632],[-77.04163493384287,38.91814036312788],[-77.04163490420552,38.91808959739275],[-77.04163487456819,38.91803883165709],[-77.04163484481424,38.91798786605592],[-77.04163481517698,38.91793710031934],[-77.0416347854231,38.91788613471716],[-77.04163475578595,38.91783536897962],[-77.04163469662844,38.91773403736825],[-77.0416344891701,38.91737867718552],[-77.04163437039003,38.91717521448328],[-77.04163434075346,38.91712444873907],[-77.04163431100027,38.9170734831293],[-77.04163425161067,38.91697175177336],[-77.04163419257128,38.916870620011],[-77.041634133182,38.9167688886513],[-77.04150394387642,38.91681970072313],[-77.04143899193538,38.91687068939773],[-77.04130908731157,38.91697186717665],[-77.04124413509264,38.91702285574149],[-77.04117889751929,38.91702287874953],[-77.04111420087939,38.91707366728643],[-77.04104899259441,38.91712465583189],[-77.04098401076186,38.91712467864125],[-77.04091905805667,38.91717546715888],[-77.04085407617777,38.91717548989597],[-77.04085410525893,38.9172262556399],[-77.04059435104945,38.91753114054602],[-77.04052914186093,38.91758192893196],[-77.04052917071098,38.91763269467213],[-77.04046424613644,38.91773444853651],[-77.04039929261894,38.91778543662462],[-77.04033408283293,38.91783582516911],[-77.04033411154423,38.91788659090697],[-77.04026944229732,38.91798834457002],[-77.04020420384046,38.91798836703389],[-77.04020423257204,38.91803933263547],[-77.04013924990578,38.91803935497508],[-77.0400742957659,38.91809014301454],[-77.0399443303407,38.9180901875131],[-77.03981413741913,38.9181409976898],[-77.03968420026105,38.91819200749926],[-77.03961921745554,38.91819202954971],[-77.0394892799544,38.91824283927677],[-77.03916413751556,38.91829331471536],[-77.03896898857192,38.91839511130824],[-77.03890426141966,38.91839513287574],[-77.03877406730905,38.91844614175594],[-77.03857914565909,38.9184969720129],[-77.03851416257532,38.91849699344876],[-77.03844892365265,38.9184970149327],[-77.03649874562576,38.91915779478757],[-77.0364987716074,38.91920856051391],[-77.03649879769138,38.91925952610486],[-77.0364989278049,38.91951375445718],[-77.03649910967893,38.91986911450821],[-77.03649931763951,38.92027544011729],[-77.03649934372427,38.92032640569817],[-77.03649936970677,38.92037717141352],[-77.03649939579158,38.92042813699344],[-77.03649962973829,38.92088522827094],[-77.03649965551658,38.92093559425109],[-77.0364997075848,38.92103732553485],[-77.03649973367011,38.92108829110857],[-77.03650001969021,38.92164711360237],[-77.0365004356345,38.92245976452176],[-77.03650051368906,38.92261226147107],[-77.03650056555509,38.92271359299333],[-77.03650059153932,38.92276435868617],[-77.03650079951677,38.92317068407679],[-77.03650082560365,38.92322164963025],[-77.0365008776752,38.92332338087084],[-77.03650092964459,38.92342491224458],[-77.03650134571191,38.92423776275997],[-77.03650157968362,38.92469485371365],[-77.03650160566929,38.92474561938779],[-77.03650163175729,38.92479658492631],[-77.03650204773831,38.92560923536885],[-77.03650215158157,38.92581209816293],[-77.03650217756807,38.92586286382648],[-77.03650222964347,38.92596459501691],[-77.0365023337947,38.92616805739198],[-77.03650238566593,38.926269388847],[-77.03650241165275,38.9263201545062],[-77.03650251570271,38.92652341700292],[-77.03656748006831,38.92647263102849],[-77.0366324443414,38.92642184501749],[-77.03669743464764,38.92642182462804],[-77.03682761858732,38.92632005247857],[-77.03695757270322,38.92626924578744],[-77.03702253651318,38.92621845955766],[-77.03715271972173,38.92611688690697],[-77.03734760993595,38.92596432791321],[-77.0378676231612,38.92565956654052],[-77.03793258576759,38.92560877979906],[-77.03806279366421,38.92555797178914],[-77.03838765905502,38.92540516877442],[-77.03845262105925,38.92535438174149],[-77.0385178388343,38.9253035945876],[-77.03858282812082,38.92530357314971],[-77.03864779000183,38.92525298587218],[-77.03884270230887,38.92515119003035],[-77.03890791962026,38.92510040265688],[-77.0389726251139,38.92504961541722],[-77.03903784213047,38.92499862810541],[-77.03910280330129,38.9249478407072],[-77.0391677922634,38.92494781894401],[-77.03916776426979,38.92489685340758],[-77.03923272547532,38.92484646566588],[-77.039297714345,38.92484644383039],[-77.03936293105362,38.92479565620017],[-77.03942789169751,38.92474466875442],[-77.03949288047437,38.92474464681045],[-77.03955784108972,38.92469385915693],[-77.03968779029678,38.9246430494144],[-77.03994791535294,38.924490264002],[-77.04007783560417,38.92438908787732],[-77.04014279536652,38.92433810003038],[-77.04033770315179,38.92423650154267],[-77.04040291844865,38.92418551346135],[-77.04046787790652,38.92413472529668],[-77.0409228763969,38.92382977284655],[-77.04131291262577,38.92357540741899],[-77.04137787111172,38.9235250184725],[-77.04150778722656,38.92342324114524],[-77.04157277479848,38.92342321804465],[-77.04183286170311,38.9232198625799],[-77.04189784908961,38.92321983929848],[-77.04209297732586,38.92306767194712],[-77.04209294724241,38.92301670639355],[-77.0422228614106,38.9229149282617],[-77.04228784851907,38.92291490476342],[-77.04267787523406,38.92266113433171],[-77.04267784473276,38.92261016877445]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000037,"geom:area_square_m":354536.640976,"geom:bbox":"-77.0426778752,38.9167688887,-77.0364987456,38.926523417","geom:latitude":38.92162,"geom:longitude":-77.039185,"iso:country":"US","lbl:latitude":38.922069,"lbl:longitude":-77.03805,"lbl:max_zoom":18,"mps:latitude":38.921574,"mps:longitude":-77.039244,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Reed-Cooke"],"name:eng_x_variant":["Cooke","Reed"],"reversegeo:latitude":38.921574,"reversegeo:longitude":-77.039244,"src:geom":"wapo","src:lbl_centroid":"mz","wapo:quadrant":"NW","wapo:subhood":"Reed-Cooke","wof:belongsto":[85802425,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7306609"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3db061c1c5906bbf5f682362900bb629","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723523,"neighbourhood_id":85802425,"region_id":85688741}],"wof:id":1108723523,"wof:lastmodified":1566623887,"wof:name":"Reed-Cooke","wof:parent_id":85802425,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869619],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723525.geojson b/fixtures/microhoods/1108723525.geojson new file mode 100644 index 0000000..f476883 --- /dev/null +++ b/fixtures/microhoods/1108723525.geojson @@ -0,0 +1 @@ +{"id":1108723525,"type":"Feature","bbox":[-77.04482554133169,38.92266113433171,-77.03650251570271,38.92789253271468],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.04326335176319,38.92321934175679],[-77.04319836437762,38.92321936579752],[-77.0431333461649,38.92316842425031],[-77.0430683588257,38.92316844821877],[-77.04306832816579,38.92311768253123],[-77.0430033408728,38.92311770646357],[-77.04293806739784,38.92306736449562],[-77.04287304950967,38.92301642280211],[-77.0428080623089,38.92301644662582],[-77.04280803183437,38.92296568093685],[-77.04274301413179,38.92291473917],[-77.0427429837036,38.92286397348003],[-77.04274295327544,38.92281320778962],[-77.04267787523406,38.92266113433171],[-77.04228784851907,38.92291490476342],[-77.0422228614106,38.9229149282617],[-77.04209294724241,38.92301670639355],[-77.04209297732586,38.92306767194712],[-77.04189784908961,38.92321983929848],[-77.04183286170311,38.9232198625799],[-77.04157277479848,38.92342321804465],[-77.04150778722656,38.92342324114524],[-77.04137787111172,38.9235250184725],[-77.04131291262577,38.92357540741899],[-77.0409228763969,38.92382977284655],[-77.04046787790652,38.92413472529668],[-77.04040291844865,38.92418551346135],[-77.04033770315179,38.92423650154267],[-77.04014279536652,38.92433810003038],[-77.04007783560417,38.92438908787732],[-77.03994791535294,38.924490264002],[-77.03968779029678,38.9246430494144],[-77.03955784108972,38.92469385915693],[-77.03949288047437,38.92474464681045],[-77.03942789169751,38.92474466875442],[-77.03936293105362,38.92479565620017],[-77.039297714345,38.92484644383039],[-77.03923272547532,38.92484646566588],[-77.03916776426979,38.92489685340758],[-77.0391677922634,38.92494781894401],[-77.03910280330129,38.9249478407072],[-77.03903784213047,38.92499862810541],[-77.0389726251139,38.92504961541722],[-77.03890791962026,38.92510040265688],[-77.03884270230887,38.92515119003035],[-77.03864779000183,38.92525298587218],[-77.03858282812082,38.92530357314971],[-77.0385178388343,38.9253035945876],[-77.03845262105925,38.92535438174149],[-77.03838765905502,38.92540516877442],[-77.03806279366421,38.92555797178914],[-77.03793258576759,38.92560877979906],[-77.0378676231612,38.92565956654052],[-77.03734760993595,38.92596432791321],[-77.03715271972173,38.92611688690697],[-77.03702253651318,38.92621845955766],[-77.03695757270322,38.92626924578744],[-77.03682761858732,38.92632005247857],[-77.03669743464764,38.92642182462804],[-77.0366324443414,38.92642184501749],[-77.03656748006831,38.92647263102849],[-77.03650251570271,38.92652341700292],[-77.03650256767676,38.92662494831599],[-77.03650267172762,38.92682821080112],[-77.03650269771485,38.926878976455],[-77.03650274968942,38.92698050776132],[-77.03663273132025,38.92698046709057],[-77.03702290572366,38.92692957847713],[-77.0374131062055,38.92692945421373],[-77.03773836975728,38.92703108082154],[-77.0385838176265,38.92713233607844],[-77.04020935905461,38.92713178810737],[-77.04105478239808,38.92718225983737],[-77.04157496625055,38.92718207594486],[-77.04216048701358,38.92733416316356],[-77.04242051207734,38.92743580025198],[-77.04281086783138,38.92768968605989],[-77.04307118153406,38.92784188737859],[-77.043396426294,38.92789253271468],[-77.04339636450305,38.9277910014291],[-77.04346135605505,38.92779097727822],[-77.04352634760701,38.92779095309125],[-77.04359130812472,38.92774016322466],[-77.04359127709054,38.92768939758069],[-77.04352622353349,38.92758769064964],[-77.043526161558,38.92748615935831],[-77.04346110827927,38.92738445238711],[-77.04352603760753,38.92728309676981],[-77.04352597551059,38.92718136560791],[-77.04359090443958,38.92707981008596],[-77.04372085512087,38.92702899588156],[-77.04391592711434,38.9267748945603],[-77.04404584552755,38.92667311447334],[-77.04424101000185,38.9265715094236],[-77.04437092770485,38.92646992883614],[-77.04443588641756,38.92641913848753],[-77.04450081323188,38.92631738258079],[-77.04443579138854,38.92626664165241],[-77.04456570838352,38.92616526070738],[-77.04456567653143,38.92611429518394],[-77.044630602883,38.92601253919926],[-77.04463057110968,38.92596177353914],[-77.04463050743811,38.9258600423527],[-77.04469572127546,38.92580925175618],[-77.04469568945589,38.92575848609414],[-77.04476064754012,38.92570809528785],[-77.04476058368319,38.92560636409667],[-77.04482554133169,38.92555557352323],[-77.04482550929416,38.92550460799404],[-77.04482547738232,38.92545384232917],[-77.04482544534488,38.92540287679901],[-77.04482541343313,38.92535211113314],[-77.04482538152142,38.92530134546683],[-77.0448253497354,38.92525077966484],[-77.0448253178238,38.92520001399761],[-77.04482525387505,38.92509828279675],[-77.04476023291245,38.92504754203732],[-77.04469524386127,38.9250475669105],[-77.04462999894767,38.92504759184519],[-77.04462990338025,38.9248948951063],[-77.04462987185812,38.92484452916533],[-77.04462984008585,38.92479376349414],[-77.04469508476724,38.92479373855952],[-77.04469505282329,38.92474277302297],[-77.04469502100466,38.92469200735083],[-77.04469498918607,38.9246412416782],[-77.04475991401193,38.92453948559376],[-77.04469479815027,38.92433644776761],[-77.0446947345138,38.92423491641517],[-77.04482464718787,38.9241331354141],[-77.04482458324104,38.92403140419301],[-77.04449922836176,38.92377770007442],[-77.0441089508127,38.92362535108643],[-77.04371864393082,38.92342243497124],[-77.04345863177282,38.92332100055977],[-77.04332859500455,38.92321931758505],[-77.04326335176319,38.92321934175679]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":221265.0754,"geom:bbox":"-77.0448255413,38.9226611343,-77.0365025157,38.9278925327","geom:latitude":38.925534,"geom:longitude":-77.041482,"iso:country":"US","lbl:latitude":38.925202,"lbl:longitude":-77.043201,"lbl:max_zoom":18,"mps:latitude":38.925311,"mps:longitude":-77.042457,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Lanier Heights"],"name:eng_x_variant":["Lanier Hts"],"reversegeo:latitude":38.925311,"reversegeo:longitude":-77.042457,"src:geom":"wapo","src:lbl_centroid":"mz","wapo:quadrant":"NW","wapo:subhood":"Lanier Heights","wof:belongsto":[85802425,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6487061"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9dfb73d10bceabba7b6f63069cc7cc36","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723525,"neighbourhood_id":85802425,"region_id":85688741}],"wof:id":1108723525,"wof:lastmodified":1566623887,"wof:name":"Lanier Heights","wof:parent_id":85802425,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829771],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723531.geojson b/fixtures/microhoods/1108723531.geojson new file mode 100644 index 0000000..c39bdb5 --- /dev/null +++ b/fixtures/microhoods/1108723531.geojson @@ -0,0 +1 @@ +{"id":1108723531,"type":"Feature","bbox":[-76.9834457717888,38.9001139472986,-76.97023817925057,38.90732592972474],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.97137079080456,38.90505549004971],[-76.9834457717888,38.9001139472986],[-76.98331607108415,38.9002156605276],[-76.98325059310262,38.90021565115818],[-76.98325058127658,38.90026601733129],[-76.98325056935666,38.90031678323545],[-76.9831858586035,38.90031677393976],[-76.98318584659042,38.90036773970925],[-76.98312086800487,38.90041849624402],[-76.98312085599262,38.90046926214679],[-76.98305587722092,38.90052021851024],[-76.98305585305637,38.9006219501792],[-76.98299061837179,38.90067270660207],[-76.98292561511491,38.90082479495918],[-76.98286038015213,38.9008755513075],[-76.98286036790641,38.90092651707187],[-76.98279590013249,38.90097727349581],[-76.9824054229816,38.90163737186342],[-76.9823401868561,38.90168832777959],[-76.98234017428804,38.90173909367072],[-76.98227519385159,38.9017898497226],[-76.9819502259529,38.90229785859889],[-76.98175498722023,38.90260262345544],[-76.98169051714497,38.90265337925416],[-76.98162475493764,38.9027551005631],[-76.9815602453136,38.90295795406401],[-76.98110452046066,38.90361843726662],[-76.98103953737983,38.90366939247975],[-76.98103952388574,38.90372015835262],[-76.98084480262952,38.90397395595731],[-76.98084478899679,38.90402472182742],[-76.98071453850072,38.90422776388395],[-76.98064928502635,38.90432948469944],[-76.98058430102692,38.90438023978713],[-76.98051981459331,38.90448196065498],[-76.98032429403297,38.90483728895496],[-76.98025929523476,38.90493900958448],[-76.98019431034707,38.90498996431531],[-76.98012905560056,38.90509108522944],[-76.97999905679936,38.90529452622389],[-76.97999904256446,38.90534529208176],[-76.97993431291263,38.905396246708],[-76.97986931304894,38.90549796711031],[-76.97980405737695,38.90559908783358],[-76.97973907156268,38.90565004230514],[-76.97967407124622,38.90575156272857],[-76.9795437850889,38.90605633498512],[-76.97921880793808,38.90646260431334],[-76.97921879314762,38.90651337016039],[-76.97908853336135,38.90671681004385],[-76.97902351627611,38.90686889606398],[-76.9789582730089,38.90691965017802],[-76.97889379698243,38.90697060425933],[-76.97882879425948,38.90707212418823],[-76.9787635354937,38.90717384389809],[-76.97876352031955,38.90722480960402],[-76.97869853245982,38.90727516388525],[-76.97869851729891,38.90732592972474],[-76.97746342494722,38.90681823943537],[-76.97687822728041,38.90661466196725],[-76.97570811491593,38.90615713215006],[-76.97492855983934,38.90585237233767],[-76.97434339559183,38.90559801628325],[-76.97414822579259,38.90559797326087],[-76.9740832544571,38.90559795886658],[-76.97382336911545,38.90559790092793],[-76.97356297218892,38.90559784229546],[-76.97330334264079,38.90559778325797],[-76.97317314417788,38.90559775343475],[-76.97310817284279,38.90559773849817],[-76.97284828750277,38.90559767839058],[-76.972522919243,38.90559760232283],[-76.9721980625693,38.9055975254707],[-76.97180772297644,38.90559743193236],[-76.97148286630427,38.90559735309159],[-76.97115800963282,38.90559727334758],[-76.97109303829862,38.90559725729038],[-76.97076818162806,38.90559717646244],[-76.97057301183341,38.90559712746767],[-76.97044281337291,38.9055970946018],[-76.97023817925057,38.90559704265296],[-76.97137079080456,38.90505549004971]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":300767.172135,"geom:bbox":"-76.9834457718,38.9001139473,-76.9702381793,38.9073259297","geom:latitude":38.904143,"geom:longitude":-76.977725,"iso:country":"US","lbl:latitude":38.904683,"lbl:longitude":-76.97783,"lbl:max_zoom":18,"mps:latitude":38.904683,"mps:longitude":-76.97783,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["Carver"],"name:ceb_x_preferred":["Carver"],"name:deu_x_preferred":["Carver"],"name:fas_x_preferred":["کارور"],"name:fra_x_preferred":["Carver"],"name:ido_x_preferred":["Carver"],"name:ita_x_preferred":["Carver"],"name:jpn_x_preferred":["カーヴァー"],"name:nld_x_preferred":["Carver"],"name:pol_x_preferred":["Carver"],"name:por_x_preferred":["Carver"],"name:rus_x_preferred":["Карвер"],"name:spa_x_preferred":["Carver"],"name:srp_x_preferred":["Карвер"],"name:ukr_x_preferred":["Карвер"],"name:vol_x_preferred":["Carver"],"reversegeo:latitude":38.904683,"reversegeo:longitude":-76.97783,"src:geom":"mz","wof:belongsto":[1108723529,102191575,1108723667,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f898ee95ce85f875732d02c16443d08b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723667,"microhood_id":1108723531,"neighbourhood_id":1108723529,"region_id":85688741}],"wof:id":1108723531,"wof:lastmodified":1566623884,"wof:name":"Carver","wof:parent_id":1108723529,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420510937,420781817],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723535.geojson b/fixtures/microhoods/1108723535.geojson new file mode 100644 index 0000000..a1d8056 --- /dev/null +++ b/fixtures/microhoods/1108723535.geojson @@ -0,0 +1 @@ +{"id":1108723535,"type":"Feature","bbox":[-76.9834457717888,38.89762168259523,-76.96879746999403,38.90505549004971],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.9834457717888,38.9001139472986],[-76.97137079080456,38.90505549004971],[-76.97161346890726,38.90458186775793],[-76.97186400125261,38.90364216012171],[-76.96879746999403,38.9034521085856],[-76.96901639661453,38.89762168259523],[-76.96921101114955,38.89767249998177],[-76.96934093938191,38.89767253415327],[-76.96947112337861,38.89767256824716],[-76.96960128565746,38.89772356798751],[-76.9696657382914,38.89772358474147],[-76.96979592238142,38.89772361847336],[-76.96986114230869,38.8977236353179],[-76.96999104927903,38.89777443469172],[-76.97005626925282,38.89777445142733],[-76.97018566492508,38.89782525045312],[-76.97031584920086,38.8978252836056],[-76.97038106922123,38.89782530015988],[-76.97064116103344,38.89787633161043],[-76.97083577742055,38.89792714628785],[-76.9709659618826,38.89792717871587],[-76.97116109008967,38.89797819284383],[-76.97122631024999,38.8979782089262],[-76.9713557275094,38.89797824073089],[-76.9718756585651,38.89807949918467],[-76.97207104360523,38.89813051185292],[-76.97213600813912,38.89813052736627],[-76.97226617323642,38.89818132426736],[-76.97265594125905,38.89823218207616],[-76.97291578041558,38.89828320839881],[-76.97304570976192,38.89828323844985],[-76.9731758757856,38.89833403433595],[-76.97343571568506,38.89838505950124],[-76.97389096200098,38.89843592805804],[-76.97402112905074,38.89848632326932],[-76.9741508030003,38.8984863520344],[-76.97441115568657,38.89853737514181],[-76.97460577656241,38.8985881835326],[-76.97486587417801,38.89863920557015],[-76.97493109494349,38.89863921958414],[-76.97525564655568,38.89869005470094],[-76.97545103575376,38.89874086184467],[-76.97558045439852,38.89874088896904],[-76.97571064034759,38.89874091610962],[-76.9761011641134,38.89884272836041],[-76.97616561775986,38.89884274152819],[-76.9762305829432,38.89884275476457],[-76.97642571748527,38.89889356022469],[-76.97655590371329,38.89889358642329],[-76.9766855618778,38.89894417842471],[-76.97733569385319,38.89904603806644],[-76.9774006592219,38.89904605065209],[-76.97753082973838,38.8990968416788],[-76.97759579515339,38.89909685415589],[-76.9780507775266,38.89919867222603],[-76.9786356923999,38.89930051235616],[-76.97909069249505,38.89935136059474],[-76.97928583058135,38.89940176154119],[-76.97941549149022,38.89945275023974],[-76.98019580534022,38.89960538273223],[-76.98091091432485,38.8997072334604],[-76.98130069684632,38.89975806241228],[-76.98136591863583,38.89975807283375],[-76.98149583760656,38.89980845966353],[-76.98156105944219,38.89980846997604],[-76.98208101816994,38.89991028257272],[-76.98247080258551,38.89996130748442],[-76.982536024561,38.89996131725268],[-76.98266594463122,38.90001210251084],[-76.98299076377336,38.90006291616341],[-76.98305598584184,38.9000629256413],[-76.9831209521375,38.9000629350459],[-76.98318591843318,38.90006294441433],[-76.9834457717888,38.9001139472986]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000056,"geom:area_square_m":539923.026926,"geom:bbox":"-76.9834457718,38.8976216826,-76.96879747,38.90505549","geom:latitude":38.900953,"geom:longitude":-76.974083,"iso:country":"US","lbl:latitude":38.901306,"lbl:longitude":-76.973361,"lbl:max_zoom":18,"mps:latitude":38.901306,"mps:longitude":-76.973361,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":38.901306,"reversegeo:longitude":-76.973361,"src:geom":"mz","wof:belongsto":[1108723529,102191575,1108723667,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9d304877b977812bd37e4fc0b7e8e45d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723667,"microhood_id":1108723535,"neighbourhood_id":1108723529,"region_id":85688741}],"wof:id":1108723535,"wof:lastmodified":1566623884,"wof:name":"Langston","wof:parent_id":1108723529,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420510941,420781813],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723539.geojson b/fixtures/microhoods/1108723539.geojson new file mode 100644 index 0000000..db1c161 --- /dev/null +++ b/fixtures/microhoods/1108723539.geojson @@ -0,0 +1 @@ +{"id":1108723539,"type":"Feature","bbox":[-77.02302609835205,38.89974029022419,-77.018848834331,38.9009463050841],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.02302394672137,38.89974029022419],[-77.02302609835205,38.9009463050841],[-77.02006660500636,38.90093183540675],[-77.01884950160202,38.90092588469442],[-77.018848834331,38.89974267307977],[-77.02007436564256,38.89974197363414],[-77.02302394672137,38.89974029022419]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":48004.930393,"geom:bbox":"-77.0230260984,38.8997402902,-77.0188488343,38.9009463051","geom:latitude":38.900339,"geom:longitude":-77.020944,"iso:country":"US","lbl:latitude":38.900285,"lbl:longitude":-77.020487,"lbl:max_zoom":18,"mps:latitude":38.900339,"mps:longitude":-77.020944,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:ara_x_preferred":["الحي الصيني"],"name:ast_x_preferred":["Barriu chinu"],"name:aze_x_preferred":["Çin qəsəbəsi"],"name:cat_x_preferred":["Barri xinès"],"name:cdo_x_preferred":["Dòng-ìng-gă̤"],"name:dan_x_preferred":["Chinatown"],"name:deu_x_preferred":["Chinatown"],"name:est_x_preferred":["Hiinalinn"],"name:eus_x_preferred":["Chinatown"],"name:fas_x_preferred":["محله چینی‌ها"],"name:fin_x_preferred":["Chinatown"],"name:fra_x_preferred":["Quartier chinois"],"name:fry_x_preferred":["Chinatown"],"name:heb_x_preferred":["צ'יינטאון"],"name:hun_x_preferred":["Kínai negyed"],"name:ind_x_preferred":["Pecinan"],"name:isl_x_preferred":["Kínahverfi"],"name:ita_x_preferred":["Chinatown"],"name:jpn_x_preferred":["中華街"],"name:kaz_x_preferred":["Чайнатаун"],"name:kor_x_preferred":["차이나타운"],"name:lit_x_preferred":["Kinų kvartalas"],"name:msa_x_preferred":["Pekan Cina"],"name:nld_x_preferred":["Chinatown"],"name:nno_x_preferred":["Chinatown"],"name:nor_x_preferred":["Chinatown"],"name:pol_x_preferred":["Chinatown"],"name:por_x_preferred":["Chinatown"],"name:ron_x_preferred":["Chinatown"],"name:rus_x_preferred":["Китайский квартал"],"name:sah_x_preferred":["Чайнатаун"],"name:sco_x_preferred":["Chinatown"],"name:spa_x_preferred":["Barrio chino"],"name:swe_x_preferred":["Chinatown"],"name:tam_x_preferred":["சீன நகர்"],"name:tgl_x_preferred":["China Town"],"name:tur_x_preferred":["Çin mahallesi"],"name:ukr_x_preferred":["Китайський квартал"],"name:zho_x_preferred":["唐人街"],"reversegeo:latitude":38.900339,"reversegeo:longitude":-77.020944,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2da03700715f2e3025183533c51477f4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723539,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723539,"wof:lastmodified":1566623884,"wof:name":"Chinatown","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85810891],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723541.geojson b/fixtures/microhoods/1108723541.geojson new file mode 100644 index 0000000..aabf081 --- /dev/null +++ b/fixtures/microhoods/1108723541.geojson @@ -0,0 +1 @@ +{"id":1108723541,"type":"Feature","bbox":[-77.03362806765197,38.89208822557948,-77.00905645183062,38.90622182536342],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.01432838182943,38.89208822557948],[-77.01430243550061,38.89951945943196],[-77.01425760093286,38.89950445964354],[-77.01412740353344,38.89945370954781],[-77.01406269356286,38.89945371735529],[-77.01367235842253,38.89930166581428],[-77.01341247688374,38.89919996424464],[-77.01243767646609,38.89884451081011],[-77.01191715371121,38.89864130152495],[-77.01120197929562,38.89833657689539],[-77.01107229773454,38.89828582333519],[-77.0105517829162,38.89808240808027],[-77.00977216727752,38.89777788033677],[-77.009317135483,38.89757485379851],[-77.00925216486826,38.89752409303212],[-77.0090567549426,38.89747334241457],[-77.00905658080171,38.89610166279816],[-77.00905656791204,38.8960001309117],[-77.00905649694343,38.89544110590582],[-77.00905648410476,38.89533997373933],[-77.00905645183062,38.89508574425359],[-77.00951191080361,38.8947809124661],[-77.009901637445,38.89447628434221],[-77.01022641432345,38.89427279279392],[-77.01055118192966,38.89401913397205],[-77.01068135163517,38.89396815631364],[-77.01081151346123,38.89386641254715],[-77.0108764586354,38.89376487459026],[-77.01100661987398,38.89366353033472],[-77.01113678068036,38.89356178620028],[-77.01321600704382,38.89208835691706],[-77.01354105795927,38.8920883196884],[-77.01360601699346,38.89208831214012],[-77.01373593506182,38.89208829693511],[-77.01412594501078,38.89208825042224],[-77.01419115978908,38.89208824251761],[-77.01432838182943,38.89208822557948]]],[[[-77.01486331026518,38.89970710488554],[-77.018848834331,38.89974267307977],[-77.01884950160202,38.90092588469442],[-77.02006660500636,38.90093183540675],[-77.02302609835205,38.9009463050841],[-77.02302394672137,38.89974029022419],[-77.02590777668073,38.89972206656086],[-77.02588831066012,38.89738614408804],[-77.02427688914177,38.89738979396691],[-77.02420449987764,38.89738614408804],[-77.0241071697746,38.89734721204683],[-77.02401957268187,38.89729854699531],[-77.02393197558914,38.89723041592319],[-77.02385411150671,38.89720121689228],[-77.02371784936247,38.89719148388198],[-77.02199510653877,38.89719148388198],[-77.02191724245634,38.89720060857913],[-77.02189908188616,38.89721421509704],[-77.02187283559684,38.89725961495409],[-77.0218460698185,38.89729854699531],[-77.021810179343,38.89732774602622],[-77.02174204827088,38.89733747903652],[-77.02158632010602,38.89733747903652],[-77.02009004847919,38.89733747903652],[-77.02011954032588,38.89281578518257],[-77.02069090872386,38.89300165921121],[-77.02075612433624,38.89300164764143],[-77.02192600700897,38.89330602973543],[-77.02309617204321,38.89366176560751],[-77.02335628614436,38.89371208012291],[-77.02387627702169,38.89386447275869],[-77.02394123767164,38.89386445946293],[-77.02602120536082,38.89442303983888],[-77.0270614666879,38.89472739923617],[-77.0281014811363,38.89503174941475],[-77.02881665366245,38.89523503873073],[-77.02959679209762,38.89543770762224],[-77.02985666175275,38.89548860730959],[-77.02998658600796,38.89548857403049],[-77.03018172814693,38.89548852377481],[-77.0307666430494,38.89548837118662],[-77.0319367286031,38.89548805715403],[-77.03356155231867,38.89549459694773],[-77.03356155409033,38.8954983628311],[-77.03356155625028,38.89550295408399],[-77.03356155921111,38.89550924767648],[-77.03356156293637,38.89551716620771],[-77.03356156738971,38.8955266322768],[-77.03356157253465,38.8955375684829],[-77.03356157833481,38.89554989742508],[-77.03356158475378,38.89556354170239],[-77.03356159175512,38.8955784239141],[-77.03356159930246,38.89559446665919],[-77.03356160735936,38.89561159253682],[-77.03356161588941,38.89562972414612],[-77.03356162485622,38.89564878408619],[-77.03356163422333,38.89566869495614],[-77.03356164395437,38.89568937935513],[-77.0335616540129,38.89571075988216],[-77.03356166436252,38.89573275913646],[-77.03356167496683,38.89575529971718],[-77.03356168578938,38.89577830422332],[-77.0335616967938,38.89580169525404],[-77.03356170794365,38.89582539540852],[-77.03356171920251,38.8958493272858],[-77.03356173053398,38.89587341348503],[-77.03356174190165,38.89589757660537],[-77.0335617532691,38.89592173924598],[-77.03356176459994,38.89594582400589],[-77.03356177585772,38.89596975348429],[-77.03356178700604,38.89599345028025],[-77.03356179800848,38.89601683699298],[-77.03356180882864,38.89603983622162],[-77.03356181943008,38.89606237056525],[-77.03356182977643,38.89608436262303],[-77.03356183983124,38.89610573499406],[-77.03356184955813,38.89612641027755],[-77.0335618589206,38.89614631107256],[-77.03356186788234,38.89616535997825],[-77.03356187640688,38.89618347959382],[-77.03356188445782,38.89620059251838],[-77.03356189199876,38.89621662135099],[-77.03356189899324,38.89623148869096],[-77.03356190540487,38.89624511713725],[-77.03356191119725,38.89625742928914],[-77.03356191633395,38.89626834774568],[-77.03356192077857,38.89627779510606],[-77.03356192449468,38.89628569396946],[-77.03356192744586,38.89629196693492],[-77.03356192959569,38.89629653660161],[-77.03356193090781,38.89629932556871],[-77.03356193134574,38.89630025643533],[-77.03356197920664,38.89640198817585],[-77.03362694216507,38.89640196949383],[-77.0336270140485,38.8965544671682],[-77.03362706200238,38.89665619890411],[-77.03362720558218,38.89696079450309],[-77.03362732523294,38.89721462415636],[-77.03362737318768,38.89731635588028],[-77.03362744507297,38.89746885352979],[-77.03362778019626,38.89817977633133],[-77.03362785208327,38.89833227395734],[-77.03362790003952,38.898434005661],[-77.03362794780749,38.89853533763117],[-77.03362799576401,38.89863706933112],[-77.03362804362646,38.89873860116342],[-77.03362806765197,38.8987895669447],[-77.03361059085242,38.90622182536342],[-77.03356659216982,38.90620580136412],[-77.03233143053613,38.90579982298488],[-77.03226622618925,38.90585060686838],[-77.03220130037128,38.90595195662928],[-77.03213632871476,38.90595197451845],[-77.03207135705824,38.90595199237153],[-77.032071379884,38.90600275822145],[-77.0320064081812,38.90600277603836],[-77.03194143647835,38.90600279381918],[-77.03187620898137,38.90600281163365],[-77.03181149307255,38.90600282927242],[-77.03181147043176,38.90595206342246],[-77.03174624298114,38.90595208116439],[-77.0316812713244,38.90595209880048],[-77.03161627734295,38.90590175028112],[-77.03155130573201,38.90590176784495],[-77.03155128318802,38.90585080212847],[-77.03155126073246,38.90580003627706],[-77.03148628921417,38.90580005380477],[-77.03148626671666,38.90574908808732],[-77.0314862443074,38.90569832223495],[-77.03148622189815,38.90564755638211],[-77.03148619940075,38.90559659066327],[-77.03155112599974,38.90549544115878],[-77.02999057942674,38.90498779381058],[-77.02960069138634,38.90483519591574],[-77.02888540005706,38.90458174548274],[-77.02836530008369,38.90437840970633],[-77.02804015318343,38.90427675658912],[-77.02771500744285,38.90417570216205],[-77.02752007766068,38.90412478250356],[-77.0270649547953,38.90392162546517],[-77.02699998498696,38.90392164049803],[-77.02680480062304,38.90387071970292],[-77.02660985338593,38.90376903265211],[-77.02628471198607,38.90366797423515],[-77.02595957128929,38.90356631531459],[-77.02569940091168,38.90346464121385],[-77.02524456119441,38.90331224287922],[-77.02485443689096,38.90316022875165],[-77.02452930054697,38.90305856584132],[-77.0243341203767,38.9030078407763],[-77.02413919619956,38.90295691546625],[-77.02413893837337,38.90219502749845],[-77.02192870820944,38.90209393149024],[-77.02166883563062,38.90209397997977],[-77.02166882014866,38.90204301422664],[-77.02160359627041,38.90204302630602],[-77.02153862817205,38.90204303830178],[-77.02121350182446,38.9019419657403],[-77.0208886170774,38.90178932687375],[-77.02075866656908,38.9017385841437],[-77.02069344296902,38.90173859571492],[-77.02043354254258,38.90163690980891],[-77.02023836917489,38.9015861778884],[-77.02006263316666,38.90154079839853],[-77.02004345197524,38.90153584532892],[-77.01997847006442,38.90148489069868],[-77.01991350247411,38.9014849017907],[-77.01978329743632,38.90143415801651],[-77.01971831580398,38.90138320324063],[-77.01952339941651,38.90133247008016],[-77.01945843196496,38.90133248091917],[-77.01913329802609,38.90118003706287],[-77.01906833071332,38.90118004768493],[-77.01893812678016,38.90112910310026],[-77.01880817896749,38.90107875792607],[-77.01874321174691,38.90107876836728],[-77.01861326405921,38.90102802324434],[-77.01848306072853,38.90097707815115],[-77.01815819919211,38.90087539742983],[-77.01815818626953,38.90082463153091],[-77.01770313632197,38.90072296970427],[-77.01653287067975,38.9003168140835],[-77.01640292595252,38.90026606649508],[-77.01620774771321,38.9001647617891],[-77.01594785941545,38.90006306587533],[-77.0155577837231,38.89996158665746],[-77.01516769826141,38.89980894049523],[-77.01486331026518,38.89970710488554]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000139,"geom:area_square_m":1336844.46063,"geom:bbox":"-77.0336280677,38.8920882256,-77.0090564518,38.9062218254","geom:latitude":38.898645,"geom:longitude":-77.024468,"iso:country":"US","lbl:latitude":38.898049,"lbl:longitude":-77.020289,"lbl:max_zoom":18,"mps:latitude":38.899323,"mps:longitude":-77.029735,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["E End"],"reversegeo:latitude":38.899323,"reversegeo:longitude":-77.029735,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"43e18facd98bfbe8a8e1c71ca204e296","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723541,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723541,"wof:lastmodified":1566623883,"wof:name":"East End","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85816283],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723543.geojson b/fixtures/microhoods/1108723543.geojson new file mode 100644 index 0000000..d87b57b --- /dev/null +++ b/fixtures/microhoods/1108723543.geojson @@ -0,0 +1 @@ +{"id":1108723543,"type":"Feature","bbox":[-77.00200543756952,38.88270806382553,-76.99142890183346,38.88994689298294],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.00200543756952,38.88703783938288],[-77.0019968934135,38.88760069360506],[-77.00199694080085,38.88929376008088],[-77.00199804276613,38.88988725109062],[-76.99264542528275,38.88994002811464],[-76.99218650679367,38.88994261780166],[-76.99142890183346,38.88994689298294],[-76.99142893192976,38.88919027407184],[-76.99142918977503,38.88270806382553],[-77.00200543756952,38.88703783938288]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":513268.373433,"geom:bbox":"-77.0020054376,38.8827080638,-76.9914289018,38.889946893","geom:latitude":38.88724,"geom:longitude":-76.995948,"iso:country":"US","lbl:latitude":38.882305,"lbl:longitude":-76.994224,"lbl:max_zoom":18,"mps:latitude":38.88724,"mps:longitude":-76.995948,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Easternmarket"],"name:rus_x_preferred":["Истерн-Маркет"],"reversegeo:latitude":38.88724,"reversegeo:longitude":-76.995948,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85809405,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"805e35de7cc0f5cdedfc568ae5288ef5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723543,"neighbourhood_id":85809405,"region_id":85688741}],"wof:id":1108723543,"wof:lastmodified":1566623883,"wof:name":"Eastern Market","wof:parent_id":85809405,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866873],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723547.geojson b/fixtures/microhoods/1108723547.geojson new file mode 100644 index 0000000..1241b71 --- /dev/null +++ b/fixtures/microhoods/1108723547.geojson @@ -0,0 +1 @@ +{"id":1108723547,"type":"Feature","bbox":[-77.00051320955012,38.92234795950802,-76.99616152899304,38.92510357961294],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.00051067328151,38.92237041343894],[-77.00051320955012,38.92303133577649],[-76.99616628266112,38.92510357961294],[-76.99616152899304,38.92291847929184],[-76.99714206518128,38.92242241933388],[-76.99720039091699,38.92240049321579],[-76.99728439235747,38.92237807833889],[-76.99741476890719,38.92235904136791],[-76.99754887483937,38.92235146847062],[-76.99769662502727,38.92234795950802],[-76.99810021408479,38.92234854018456],[-76.99883581510652,38.92235475842527],[-77.00051067328151,38.92237041343894]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":68560.349429,"geom:bbox":"-77.0005132096,38.9223479595,-76.996161529,38.9251035796","geom:latitude":38.923351,"geom:longitude":-76.997956,"iso:country":"US","lbl:latitude":38.923452,"lbl:longitude":-76.997674,"lbl:max_zoom":18,"mps:latitude":38.923341,"mps:longitude":-76.997779,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"name:eng_x_variant":["Edgewood Ter"],"reversegeo:latitude":38.923341,"reversegeo:longitude":-76.997779,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85817535,102191575,1108723667,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4ce61ac9ecd3e10007d0eceacc0d5e27","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723667,"microhood_id":1108723547,"neighbourhood_id":85817535,"region_id":85688741}],"wof:id":1108723547,"wof:lastmodified":1566623883,"wof:name":"Edgewood Terrace","wof:parent_id":85817535,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85817573],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723549.geojson b/fixtures/microhoods/1108723549.geojson new file mode 100644 index 0000000..2adc4ff --- /dev/null +++ b/fixtures/microhoods/1108723549.geojson @@ -0,0 +1 @@ +{"id":1108723549,"type":"Feature","bbox":[-77.08624697654427,38.90933555606961,-77.04362115734266,38.93832090981076],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08624697654427,38.93728906150152],[-77.08542521255826,38.93832090981076],[-77.08493915734266,38.93797769517644],[-77.08484315734266,38.93791569517644],[-77.08480615734265,38.93789369517644],[-77.08434815734266,38.93756769517645],[-77.08417015734265,38.93743969517644],[-77.08408815734266,38.93738069517644],[-77.08374515734266,38.93712869517644],[-77.08371015734267,38.93710269517644],[-77.08368115734265,38.93708269517644],[-77.08350515734266,38.93695369517644],[-77.08308415734265,38.93664769517644],[-77.08283215734266,38.93646169517644],[-77.08146715734266,38.93546669517644],[-77.08128215734266,38.93533069517644],[-77.08121715734266,38.93528269517644],[-77.08103915734266,38.93515369517644],[-77.08082815734267,38.93499869517644],[-77.08035215734266,38.93465169517644],[-77.07967815734266,38.93415869517644],[-77.07957415734266,38.93408369517644],[-77.07937415734266,38.93393869517644],[-77.07933115734266,38.93390569517644],[-77.07921715734265,38.93382269517645],[-77.07860715734266,38.93337569517644],[-77.07824215734266,38.93310969517644],[-77.07774315734265,38.93274369517644],[-77.07754815734266,38.93260069517644],[-77.07712315734265,38.93229169517645],[-77.07670115734265,38.93198269517644],[-77.07662715734266,38.93192969517644],[-77.07646115734266,38.93180269517645],[-77.07632215734266,38.93170669517644],[-77.07580315734266,38.93132569517644],[-77.07436115734266,38.93027369517644],[-77.07418815734266,38.93013869517644],[-77.07405215734266,38.93004769517644],[-77.07358915734265,38.92970869517644],[-77.07332215734266,38.92951569517644],[-77.07318815734267,38.92941669517644],[-77.07297515734265,38.92925769517644],[-77.07278415734265,38.92912069517644],[-77.07261415734266,38.92900169517644],[-77.07241515734266,38.92886269517644],[-77.07227715734267,38.92875369517644],[-77.07213615734265,38.92864569517644],[-77.07206515734266,38.92859269517644],[-77.07184915734265,38.92843469517644],[-77.07170315734265,38.92833169517644],[-77.07147515734266,38.92816869517645],[-77.07113115734266,38.92791669517644],[-77.07100815734266,38.92782669517644],[-77.07059215734266,38.92751669517644],[-77.06566708692591,38.92751324376125],[-77.06563565812448,38.92475428279339],[-77.06562662374803,38.9246865022912],[-77.06554215734266,38.92466369517644],[-77.06546015734266,38.92464469517644],[-77.06538415734268,38.92462869517644],[-77.06534815734265,38.92461869517644],[-77.06530815734266,38.92460969517644],[-77.06522315734266,38.92458869517644],[-77.06519315734266,38.92457869517644],[-77.06512115734266,38.92455769517644],[-77.06509415734266,38.92454769517644],[-77.06502715734266,38.92452569517645],[-77.06500015734267,38.92451569517644],[-77.06496915734266,38.92450569517644],[-77.06493015734266,38.92448969517644],[-77.06488015734266,38.92447569517644],[-77.06469915734266,38.92439969517644],[-77.06457615734266,38.92434969517645],[-77.06448515734266,38.92430569517644],[-77.06438115734267,38.92425269517644],[-77.06427315734265,38.92419169517644],[-77.06416315734266,38.92412669517644],[-77.06411415734266,38.92409569517644],[-77.06406115734266,38.92406369517644],[-77.06397215734266,38.92400269517644],[-77.06392615734266,38.92396969517644],[-77.06379715734266,38.92387169517644],[-77.06368515734266,38.92377869517644],[-77.06355215734266,38.92365769517645],[-77.06351715734266,38.92362269517644],[-77.06348115734266,38.92358869517644],[-77.06335415734266,38.92344469517644],[-77.06330915734266,38.92339069517644],[-77.06327315734266,38.92334269517644],[-77.06324015734266,38.92330269517644],[-77.06320215734266,38.92324969517644],[-77.06316915734266,38.92320569517644],[-77.06311215734266,38.92311569517644],[-77.06304815734266,38.92300869517645],[-77.06302015734266,38.92295969517644],[-77.06300015734266,38.92291669517644],[-77.06297815734266,38.92288069517645],[-77.06296415734266,38.92284669517644],[-77.06291615734266,38.92274869517644],[-77.06288415734267,38.92267169517644],[-77.06285215734266,38.92258669517644],[-77.06282515734266,38.92250669517644],[-77.06279815734266,38.92241369517645],[-77.06277415734266,38.92231069517644],[-77.06274815734265,38.92218269517645],[-77.06270815734266,38.92204969517644],[-77.06268315734266,38.92198669517644],[-77.06265215734265,38.92192769517644],[-77.06258615734266,38.92179669517644],[-77.06256115734266,38.92174669517645],[-77.06247115734266,38.92163469517644],[-77.06238015734266,38.92153869517644],[-77.06235215734267,38.92151169517644],[-77.06228415734266,38.92145369517644],[-77.06224415734266,38.92142169517644],[-77.06165715734267,38.92098869517644],[-77.06094515734266,38.92047069517644],[-77.06080315734266,38.92036569517645],[-77.06067415734266,38.92027169517644],[-77.06022715734268,38.91994269517645],[-77.05996315734266,38.91975169517644],[-77.05955115734265,38.91944769517644],[-77.05942415734266,38.91935669517644],[-77.05928215734266,38.91925269517644],[-77.05915615734266,38.91916169517644],[-77.05903315734265,38.91907769517644],[-77.05898015734266,38.91903569517644],[-77.05888715734265,38.91896369517644],[-77.05879115734265,38.91889669517644],[-77.05870015734266,38.91882969517644],[-77.05853615734266,38.91870369517644],[-77.05834615734265,38.91857469517644],[-77.05824815734266,38.91850369517644],[-77.05794315734266,38.91827669517644],[-77.05781215734265,38.91818069517644],[-77.05777215734265,38.91815269517645],[-77.05771015734265,38.91810669517644],[-77.05765315734266,38.91806569517644],[-77.05753015734265,38.91797869517644],[-77.05750849233483,38.91795669517644],[-77.05713557613883,38.91772191157173],[-77.05538217942964,38.91798175098362],[-77.05523703545406,38.91790804151032],[-77.05594864300666,38.91728483038073],[-77.05497520926907,38.91659115786428],[-77.0546192510063,38.91633292854532],[-77.0545468334835,38.91630288824977],[-77.05446168876867,38.91628734842487],[-77.05261713402354,38.91626762176229],[-77.05265793111465,38.91409197336226],[-77.04800036682038,38.91410819341641],[-77.04789863529984,38.9141015477242],[-77.04780199090014,38.91408472257441],[-77.04771333156836,38.91404910415708],[-77.0476189037204,38.91400074703175],[-77.0474306365307,38.91388778738462],[-77.04693139436753,38.91360714925248],[-77.04755164126561,38.91262714449085],[-77.04761358200562,38.91254775927305],[-77.04768283616214,38.91246840016152],[-77.0478856020157,38.91227197004199],[-77.04827149731138,38.91190311007702],[-77.04800815734266,38.91180969517644],[-77.04787815734268,38.91176569517644],[-77.04717715734266,38.91151969517644],[-77.04619415734265,38.91117769517644],[-77.04608315734266,38.91113969517644],[-77.04520115734266,38.91083269517645],[-77.04456715734266,38.91061069517644],[-77.04433915734266,38.91053269517645],[-77.04393615734266,38.91039469517644],[-77.04362115734266,38.91028569517644],[-77.04377814153057,38.91024542138343],[-77.0439151021949,38.91021118121735],[-77.04407488963663,38.91014270088518],[-77.04422326368966,38.91003998038693],[-77.04429745071617,38.90994581993019],[-77.0443373975766,38.90983453939043],[-77.0443488109653,38.90967475194871],[-77.0443373975766,38.90952637789568],[-77.04429454727564,38.90933555606961],[-77.04514597654428,38.90963106150151],[-77.04554897654428,38.90976906150151],[-77.04577697654427,38.90984706150152],[-77.04641097654428,38.91006906150152],[-77.04729297654428,38.91037606150152],[-77.04740397654427,38.91041406150151],[-77.0483869765443,38.91075606150152],[-77.04908797654429,38.91100206150152],[-77.04921797654428,38.91104606150152],[-77.04945197654428,38.91112806150151],[-77.05004097654428,38.91133106150151],[-77.05022597654428,38.91139706150151],[-77.05095497654428,38.91165006150151],[-77.05116899165023,38.91174121801161],[-77.05137554269872,38.91185426081698],[-77.05160097654428,38.91200506150151],[-77.05193897654428,38.91223606150152],[-77.05209197654428,38.91234106150151],[-77.05229597654429,38.91249106150151],[-77.0525449765443,38.91267206150151],[-77.05287597654429,38.91291506150151],[-77.05301897654428,38.91302006150151],[-77.05323997654428,38.91317906150152],[-77.05333197654429,38.91324706150152],[-77.05389297654428,38.91366006150152],[-77.05408997654428,38.91380606150151],[-77.05434697654428,38.91399206150152],[-77.05461097654428,38.91418506150151],[-77.05489497654428,38.91438906150152],[-77.05540397654428,38.91476206150151],[-77.05563697654428,38.91493006150152],[-77.05581197654428,38.91506406150151],[-77.05591397654428,38.91513806150152],[-77.05603597654428,38.91522706150151],[-77.05607697654428,38.91525606150152],[-77.05645197654428,38.91553206150152],[-77.05684297654427,38.91581806150151],[-77.05714097654429,38.91603406150151],[-77.05742897654427,38.91624906150151],[-77.05751597654428,38.91631006150151],[-77.05758797654428,38.91636206150152],[-77.05787897654427,38.91657906150152],[-77.05801697654428,38.91668706150151],[-77.05814997654429,38.91679306150152],[-77.05831397654428,38.91691406150152],[-77.05844697654427,38.91700406150152],[-77.05855097654428,38.91707806150151],[-77.05866297654428,38.91715906150151],[-77.05871097654428,38.91719306150151],[-77.05873997654427,38.91721506150152],[-77.05886297654428,38.91730206150152],[-77.05891997654429,38.91734306150151],[-77.05898197654427,38.91738906150152],[-77.05902197654427,38.91741706150151],[-77.05915297654428,38.91751306150152],[-77.05928561483192,38.91761177917789],[-77.0599541835461,38.91659031192798],[-77.061259874456,38.91677561577571],[-77.06379215635833,38.91716232832372],[-77.06390121044193,38.91852442011638],[-77.06456648692719,38.91855782690381],[-77.064678115962,38.91857069328554],[-77.06472485898784,38.91858632096967],[-77.06476834671848,38.91860427307491],[-77.06487989583268,38.91868126125554],[-77.06493770234425,38.91872595202834],[-77.06497616873372,38.91876794502796],[-77.065000870451,38.91882437748365],[-77.0650029201941,38.91885162390235],[-77.06499857773,38.91888260611977],[-77.06498802099121,38.91890690939306],[-77.06497053480702,38.9189273340514],[-77.06467580352584,38.91909174328573],[-77.06449661500535,38.91922270742234],[-77.06432417982049,38.91937950034397],[-77.06410501197239,38.91962480772168],[-77.06387694474738,38.91990417854451],[-77.06366198781572,38.92020479658564],[-77.06356577582133,38.92036351712422],[-77.06349693218779,38.9205273800658],[-77.06345397654428,38.92065806150151],[-77.06349397654428,38.92069006150151],[-77.06356197654428,38.92074806150151],[-77.06358997654428,38.92077506150152],[-77.06368097654428,38.92087106150151],[-77.06377097654428,38.92098306150152],[-77.06379597654428,38.92103306150151],[-77.06386197654427,38.92116406150151],[-77.06389297654428,38.92122306150151],[-77.06391797654427,38.92128606150151],[-77.06395797654427,38.92141906150152],[-77.06398397654428,38.92154706150151],[-77.06400797654427,38.92165006150152],[-77.06403497654428,38.92174306150152],[-77.06406197654428,38.92182306150151],[-77.06409397654429,38.92190806150151],[-77.06412597654428,38.92198506150152],[-77.06417397654428,38.92208306150151],[-77.06418797654428,38.92211706150152],[-77.06420997654428,38.92215306150151],[-77.06422997654428,38.92219606150152],[-77.06425797654428,38.92224506150151],[-77.06432197654428,38.92235206150152],[-77.06437897654428,38.92244206150151],[-77.06441197654428,38.92248606150152],[-77.06444997654428,38.92253906150151],[-77.06448297654428,38.92257906150152],[-77.06451897654428,38.92262706150152],[-77.06456397654428,38.92268106150151],[-77.06469097654428,38.92282506150151],[-77.06472697654428,38.92285906150151],[-77.06476197654428,38.92289406150152],[-77.06489497654428,38.92301506150152],[-77.06500697654428,38.92310806150152],[-77.06513597654428,38.92320606150151],[-77.06518197654428,38.92323906150151],[-77.06527097654428,38.92330006150151],[-77.06532397654428,38.92333206150151],[-77.06537297654428,38.92336306150151],[-77.06548297654427,38.92342806150151],[-77.06559097654429,38.92348906150151],[-77.06569497654428,38.92354206150151],[-77.06578597654428,38.92358606150152],[-77.06590897654428,38.92363606150151],[-77.06608997654428,38.92371206150151],[-77.06613997654428,38.92372606150151],[-77.06617897654428,38.92374206150151],[-77.06620997654429,38.92375206150151],[-77.06623697654427,38.92376206150151],[-77.06630397654428,38.92378406150151],[-77.06633097654428,38.92379406150151],[-77.06640297654428,38.92381506150151],[-77.06643297654428,38.92382506150151],[-77.06651797654428,38.92384606150151],[-77.06655797654427,38.92385506150151],[-77.06659397654428,38.92386506150152],[-77.06666997654428,38.92388106150151],[-77.06675197654428,38.92390006150151],[-77.06688697654428,38.92392406150152],[-77.0670149765443,38.92395006150151],[-77.06715097654428,38.92396506150151],[-77.06729397654428,38.92397506150152],[-77.06750797654428,38.92399306150151],[-77.06757897654428,38.92400206150151],[-77.06769797654428,38.92402106150151],[-77.06774297654428,38.92403006150151],[-77.06783197654428,38.92405106150152],[-77.06788597654428,38.92406606150151],[-77.06803397654429,38.92411206150151],[-77.06824097654427,38.92420106150151],[-77.06828197654428,38.92422106150151],[-77.06835497654428,38.92425906150152],[-77.06845997654428,38.92432106150152],[-77.06849297654429,38.92434306150151],[-77.06854197654428,38.92437906150151],[-77.06935597654427,38.92496806150152],[-77.06973497654428,38.92524406150152],[-77.07005697654428,38.92548006150151],[-77.07036097654428,38.92570706150151],[-77.07050897654428,38.92580806150151],[-77.07079597654428,38.92602306150151],[-77.07154697654428,38.92657006150151],[-77.07180197654428,38.92675306150151],[-77.07221797654428,38.92706306150151],[-77.07234097654428,38.92715306150151],[-77.07268497654428,38.92740506150152],[-77.07291297654429,38.92756806150151],[-77.07305897654427,38.92767106150151],[-77.07327497654428,38.92782906150151],[-77.07334597654427,38.92788206150151],[-77.07348697654427,38.92799006150151],[-77.07362497654428,38.92809906150151],[-77.07382397654429,38.92823806150151],[-77.07399397654427,38.92835706150152],[-77.07418497654427,38.92849406150151],[-77.07439797654428,38.92865306150151],[-77.07453197654428,38.92875206150151],[-77.07479897654427,38.92894506150152],[-77.07526197654428,38.92928406150152],[-77.07539797654428,38.92937506150151],[-77.07557097654428,38.92951006150151],[-77.07701297654428,38.93056206150151],[-77.07753197654428,38.93094306150152],[-77.0776709765443,38.93103906150152],[-77.07783697654428,38.93116606150151],[-77.07791097654427,38.93121906150152],[-77.07833297654427,38.93152806150152],[-77.0787579765443,38.93183706150151],[-77.07895297654427,38.93198006150151],[-77.07945197654429,38.93234606150151],[-77.07981697654428,38.93261206150152],[-77.08042697654427,38.93305906150152],[-77.08054097654428,38.93314206150151],[-77.08058397654428,38.93317506150152],[-77.08078397654428,38.93332006150151],[-77.08088797654428,38.93339506150151],[-77.08156197654428,38.93388806150151],[-77.08203797654429,38.93423506150151],[-77.08224897654428,38.93439006150151],[-77.08242697654428,38.93451906150151],[-77.08249197654428,38.93456706150151],[-77.08267697654428,38.93470306150152],[-77.0840419765443,38.93569806150151],[-77.08429397654427,38.93588406150151],[-77.08471497654428,38.93619006150151],[-77.08489097654427,38.93631906150151],[-77.08491997654428,38.93633906150151],[-77.08495497654428,38.93636506150151],[-77.08529797654428,38.93661706150152],[-77.08537997654427,38.93667606150152],[-77.08555797654428,38.93680406150151],[-77.08601597654427,38.93713006150151],[-77.08605297654428,38.93715206150151],[-77.08614897654428,38.93721406150151],[-77.08624697654427,38.93728906150152]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000096,"geom:area_square_m":924026.677294,"geom:bbox":"-77.0862469765,38.9093355561,-77.0436211573,38.9383209098","geom:latitude":38.922043,"geom:longitude":-77.063832,"iso:country":"US","lbl:latitude":38.91599,"lbl:longitude":-77.056121,"lbl:max_zoom":18,"mps:latitude":38.919103,"mps:longitude":-77.062075,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:nor_x_preferred":["Embassy Row"],"name:por_x_preferred":["Embassy Row"],"reversegeo:latitude":38.919103,"reversegeo:longitude":-77.062075,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869563,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"3ac7906b3ecbb38b96d0814c8438fc20","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723549,"neighbourhood_id":85869563,"region_id":85688741}],"wof:id":1108723549,"wof:lastmodified":1566623883,"wof:name":"Embassy Row","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85888509],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723605.geojson b/fixtures/microhoods/1108723605.geojson new file mode 100644 index 0000000..925e5c4 --- /dev/null +++ b/fixtures/microhoods/1108723605.geojson @@ -0,0 +1 @@ +{"id":1108723605,"type":"Feature","bbox":[-77.03950314074102,38.90129130341575,-77.03846168649122,38.9025656898424],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.03950314074102,38.90129602570021],[-77.03949285232883,38.90256207404118],[-77.03846168649122,38.9025656898424],[-77.03847598854298,38.90129130341575],[-77.03950314074102,38.90129602570021]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":12579.614539,"geom:bbox":"-77.0395031407,38.9012913034,-77.0384616865,38.9025656898","geom:latitude":38.901929,"geom:longitude":-77.038983,"iso:country":"US","lbl:latitude":38.901767,"lbl:longitude":-77.045101,"lbl:max_zoom":18,"mps:latitude":38.901929,"mps:longitude":-77.038984,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"name:ceb_x_preferred":["Farragut Square"],"name:eng_x_variant":["Farragut Sq"],"name:nld_x_preferred":["Farragut Square"],"name:zho_x_preferred":["法拉格特广场"],"reversegeo:latitude":38.901929,"reversegeo:longitude":-77.038984,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e88eb05fd5c51cb76182663d28ca8627","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723605,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723605,"wof:lastmodified":1566623911,"wof:name":"Farragut Square","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85819011],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723607.geojson b/fixtures/microhoods/1108723607.geojson new file mode 100644 index 0000000..84a6f55 --- /dev/null +++ b/fixtures/microhoods/1108723607.geojson @@ -0,0 +1 @@ +{"id":1108723607,"type":"Feature","bbox":[-76.93057828992893,38.89186341478749,-76.9256592572682,38.89836660672969],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.93035377810125,38.89226611483794],[-76.93038678667385,38.89279031747147],[-76.93039392492548,38.89297432357925],[-76.93040621592571,38.89419880365716],[-76.93043079792618,38.89469624265868],[-76.93043387067618,38.89484571283177],[-76.93043694342627,38.8949043050536],[-76.93045537992664,38.89498322511315],[-76.93049071655228,38.89509921352614],[-76.93054141692824,38.89521281024182],[-76.93056868814062,38.89529332824927],[-76.93057828992893,38.89548065862051],[-76.9305659989287,38.89628419769551],[-76.92993608516697,38.89629137211059],[-76.9299330124169,38.89690836909647],[-76.92992686691679,38.89720251693417],[-76.92992686691679,38.89753731786934],[-76.92991841685405,38.89774357837393],[-76.9298930666661,38.8979271198266],[-76.92983350372337,38.89812692766729],[-76.92976202754745,38.89831599889667],[-76.92975464315808,38.89831599445843],[-76.92968916693854,38.89831595506878],[-76.929624713785,38.8983159162587],[-76.92955949333208,38.89831587695043],[-76.92949452864572,38.89831583776009],[-76.92942930819294,38.89831579837916],[-76.9293643435067,38.89831575911644],[-76.92929937882056,38.89831571981756],[-76.92916919368197,38.8983156409564],[-76.92916914307735,38.89836660672969],[-76.92877909891766,38.89836636958742],[-76.92851949575707,38.89836621102993],[-76.92832434579573,38.89836609145866],[-76.92793455740835,38.89836585165357],[-76.92754400172362,38.89836561007201],[-76.92747954852638,38.8983655700784],[-76.92741432802927,38.89836552957252],[-76.92734936329887,38.89836548918922],[-76.92728439856859,38.89836544876984],[-76.92702453964804,38.89836528673101],[-76.92682938969176,38.89836516466242],[-76.9265045660439,38.89836496075836],[-76.92617923086458,38.89836475562802],[-76.92585440722043,38.89836454991621],[-76.92578944249183,38.89836450866544],[-76.9256592572682,38.89836442589286],[-76.92572438098583,38.89821176976515],[-76.92572443384334,38.89816100385788],[-76.92578986518821,38.89795818153894],[-76.92591985507238,38.897653068779],[-76.92598513518263,38.89734851447527],[-76.92605020444336,38.89724682392029],[-76.92611552928086,38.89714513348901],[-76.92611563402353,38.89704400138584],[-76.92611568680873,38.89699303560193],[-76.92624623692716,38.89663775642605],[-76.92624628961876,38.89658679063838],[-76.9263113051674,38.89653606571276],[-76.92631135781245,38.89648509992413],[-76.92631141025096,38.8964343340009],[-76.92637647821279,38.89633264324765],[-76.9264412898179,38.89623135202696],[-76.92650697352491,38.89602812966598],[-76.92650713062753,38.89587563201643],[-76.92657163403321,38.89582470675186],[-76.92657173812734,38.89572357462451],[-76.92663700862042,38.89567264980471],[-76.92670223210793,38.89541846119407],[-76.9267675537263,38.89531736996276],[-76.92676765815744,38.89521563822845],[-76.92683272435733,38.89511394719905],[-76.92689784239188,38.89496149019475],[-76.92696275616333,38.89475846691739],[-76.92702843702875,38.89455524421005],[-76.9270285406779,38.89445391219355],[-76.92709304222166,38.89440318649412],[-76.92709319827216,38.89425048893384],[-76.92722358293737,38.89404770619656],[-76.92728911034038,38.89374275139639],[-76.92735417404661,38.89364145978181],[-76.9273542259445,38.89359049396652],[-76.927419341474,38.89343803663037],[-76.92748476366857,38.89323521319184],[-76.92754941885745,38.89303178963569],[-76.92761473769845,38.89293009828994],[-76.92761484071525,38.89282856637778],[-76.9276798520685,38.89277764079071],[-76.92774512020425,38.89247308523978],[-76.9278756541392,38.89211760409206],[-76.92794097147629,38.89201611241344],[-76.9279410229538,38.89196514658324],[-76.92794107422937,38.89191438061861],[-76.92794112570675,38.89186341478749],[-76.92807048045509,38.89191446037601],[-76.92813620654213,38.89191450083033],[-76.92820065391166,38.89191454046167],[-76.92826556172366,38.89196534633638],[-76.928265510478,38.89201631216669],[-76.92852585776357,38.89201647175823],[-76.9285907658999,38.89206727745132],[-76.92891556088024,38.89206747555485],[-76.92917534646844,38.89211839935128],[-76.92924030551123,38.89211843871914],[-76.92937042888487,38.89216948333056],[-76.92963077673184,38.89216964045947],[-76.92969522433265,38.89216967926619],[-76.92976069491131,38.89216971865257],[-76.92982534832181,38.89222052350445],[-76.92989030745795,38.89222056251085],[-76.92995526659416,38.89222060148108],[-76.93002048147507,38.89222064056845],[-76.9300854406114,38.89222067946633],[-76.93015065549247,38.89222071848104],[-76.93035377810125,38.89226611483794]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":210410.473689,"geom:bbox":"-76.9305782899,38.8918634148,-76.9256592573,38.8983666067","geom:latitude":38.895471,"geom:longitude":-76.928461,"iso:country":"US","lbl:latitude":38.895466,"lbl:longitude":-76.928461,"lbl:max_zoom":18,"mps:latitude":38.895466,"mps:longitude":-76.928461,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Lincoln Heights"],"reversegeo:latitude":38.895466,"reversegeo:longitude":-76.928461,"src:geom":"mz","wof:belongsto":[85869341,102191575,1108723667,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6550702"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a512464ed3df1bb9e1bfafed43b7d531","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723667,"microhood_id":1108723607,"neighbourhood_id":85869341,"region_id":85688741}],"wof:id":1108723607,"wof:lastmodified":1566623911,"wof:name":"Lincoln Heights","wof:parent_id":85869341,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420510995,420781755],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723609.geojson b/fixtures/microhoods/1108723609.geojson new file mode 100644 index 0000000..7dbab0d --- /dev/null +++ b/fixtures/microhoods/1108723609.geojson @@ -0,0 +1 @@ +{"id":1108723609,"type":"Feature","bbox":[-77.0346442188336,38.90129021865514,-77.03361917459364,38.90257146691302],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.0346442188336,38.90129021865514],[-77.03463938055323,38.90256405028019],[-77.03361917459364,38.90257146691302],[-77.03362218105237,38.90129292743642],[-77.0346442188336,38.90129021865514]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":12539.76263,"geom:bbox":"-77.0346442188,38.9012902187,-77.0336191746,38.9025714669","geom:latitude":38.901929,"geom:longitude":-77.034131,"iso:country":"US","lbl:latitude":38.897924,"lbl:longitude":-77.035678,"lbl:max_zoom":18,"mps:latitude":38.90193,"mps:longitude":-77.034128,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["McPherson Square"],"name:eng_x_variant":["Franklin Mcpherson Sq"],"reversegeo:latitude":38.90193,"reversegeo:longitude":-77.034128,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d65531c5269332262f6a5ec42d2afd81","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723609,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723609,"wof:lastmodified":1566623911,"wof:name":"Franklin Mcpherson Square","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85820595],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723611.geojson b/fixtures/microhoods/1108723611.geojson new file mode 100644 index 0000000..d4caadc --- /dev/null +++ b/fixtures/microhoods/1108723611.geojson @@ -0,0 +1 @@ +{"id":1108723611,"type":"Feature","bbox":[-77.07138985105931,38.8996946179024,-77.05573429473539,38.90523217851597],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.05592920771355,38.90523208537128],[-77.0560591496987,38.90523202309418],[-77.05631928945958,38.90523189798306],[-77.0565142024362,38.90523180386239],[-77.05664440021162,38.90523174081062],[-77.05677434219552,38.90523167773807],[-77.05690428417917,38.90523161452096],[-77.05696925517091,38.90523158285821],[-77.05709945294552,38.90523151929933],[-77.05807452939555,38.90523103868227],[-77.05820447137688,38.90523097401911],[-77.05826944236746,38.90523094163333],[-77.05839938434843,38.90523087675339],[-77.05865952410097,38.90523074643148],[-77.05885469286257,38.90523064827779],[-77.05904960583233,38.90523054992727],[-77.0591795478119,38.90523048417962],[-77.05924451880156,38.9052304512516],[-77.05937471657205,38.90523038515719],[-77.0596346005297,38.90523025279419],[-77.05982972653949,38.9051791872968],[-77.06002463936728,38.90517908731961],[-77.06008961030975,38.90517905392165],[-77.06015458125216,38.90517902048755],[-77.06028477892792,38.90517895337895],[-77.06034974987017,38.9051789198363],[-77.06047969175442,38.90517885264261],[-77.06073983131336,38.90517871768873],[-77.06093474413858,38.90517861619323],[-77.06106494181286,38.90517854821525],[-77.06112991275432,38.90517851423875],[-77.06119488369576,38.90517848022612],[-77.06125985463713,38.90517844617735],[-77.06145476746087,38.90517834381431],[-77.06171490701607,38.90517820668929],[-77.06190981983849,38.9051781035671],[-77.06197504657027,38.90517806898507],[-77.06216995939194,38.90517796542883],[-77.06249506988456,38.90517779197574],[-77.06262501176471,38.905177722396],[-77.06268998270471,38.90517768755195],[-77.06282018037558,38.90517761761793],[-77.06288489552426,38.90517758280302],[-77.0629501222551,38.9051775476766],[-77.06308006413438,38.90517747759078],[-77.06340491883144,38.90517730174393],[-77.06366531417014,38.90517716013732],[-77.06392515242942,38.90512625238203],[-77.06412006510661,38.90512614557247],[-77.06438020446619,38.9051260025129],[-77.06464008803383,38.90512585901561],[-77.06483525649978,38.90512575087136],[-77.06503042496514,38.90512564240104],[-77.06509539585649,38.9051256062193],[-77.06516036674778,38.90512557000147],[-77.06529030853015,38.90512549745743],[-77.06535527942124,38.90512546113116],[-77.06568038966658,38.90512527881424],[-77.06594052901984,38.90512513228042],[-77.06600524411935,38.90512509573713],[-77.0661354416909,38.90512502210854],[-77.06626538347128,38.90512494848004],[-77.06646050444543,38.90507387190747],[-77.0667856144528,38.90507368651505],[-77.06704549782488,38.90507353766711],[-77.0671754395105,38.90507346302638],[-77.06756552035651,38.90507323808911],[-77.06769546204104,38.90507316287],[-77.06782565951602,38.90507308735788],[-77.06795560120004,38.90507301184945],[-77.06828071119952,38.90507282229659],[-77.06841065288255,38.90507274628204],[-77.06860556540657,38.90507263198926],[-77.06880073372068,38.90507251722062],[-77.06893062673034,38.9050220745117],[-77.07138985105931,38.905074761288],[-77.07120512250764,38.90425842275211],[-77.07114010177891,38.90420769647781],[-77.07107513172686,38.90420773602101],[-77.0710101616747,38.90420777552809],[-77.07094519162247,38.90420781499904],[-77.07088022157019,38.90420785443381],[-77.07081494572805,38.90415752786446],[-77.0707499757215,38.90415756722682],[-77.07068500571485,38.90415760655308],[-77.07062003570819,38.90415764584321],[-77.07055506570141,38.90415768509721],[-77.07049009569455,38.90415772431508],[-77.07049004532931,38.90410675859464],[-77.0704250753688,38.90410679777637],[-77.07036010540821,38.90410683692194],[-77.07029487966035,38.90410687618525],[-77.07029482963158,38.9040561103299],[-77.0702298597171,38.90405614940304],[-77.07016488980256,38.90405618844005],[-77.07009986980154,38.90400526171941],[-77.07009981991158,38.90395449586301],[-77.07003485008958,38.90395453482773],[-77.06996962448079,38.9039545739095],[-77.06990465465863,38.90395461280179],[-77.0698396848364,38.90395465165795],[-77.06983963513169,38.90390388580099],[-77.0697746653556,38.90390392462098],[-77.06970969557948,38.90390396340484],[-77.06964472580326,38.9039040021526],[-77.06957975602701,38.90390404086423],[-77.06951478625065,38.9039040795397],[-77.0694495606877,38.90390411833111],[-77.06944951106607,38.90385315260794],[-77.069384541336,38.90385319121098],[-77.06931957160586,38.90385322977794],[-77.06918963214538,38.9038533068034],[-77.06899467385082,38.90380265621236],[-77.06892944838035,38.90380269471341],[-77.06892939913041,38.90375172898908],[-77.06886442949246,38.90375176730291],[-77.0687994598544,38.90375180558061],[-77.0687344902163,38.90375184382214],[-77.06873444168346,38.90370147769404],[-77.06866947209116,38.90370151589948],[-77.068604246713,38.90370155421894],[-77.06853922834149,38.90365082649213],[-77.06847425879523,38.90365086458893],[-77.06840928924886,38.90365090264969],[-77.06840924037068,38.90359993692373],[-77.06834427087071,38.90359997494831],[-77.06827930137064,38.90360001293672],[-77.06827925277668,38.90354924707584],[-77.06821402753755,38.90354928517749],[-77.06814931386882,38.90354932294428],[-77.06808403998379,38.90349839524634],[-77.06801907057609,38.90349843309006],[-77.06795410116835,38.90349847089767],[-77.06788913176054,38.90349850866913],[-77.06788908344433,38.90344774280714],[-77.06782411408268,38.90344778054243],[-77.06775914472097,38.90344781824163],[-77.06769387139704,38.90339709019035],[-77.0676938230302,38.9033461244618],[-77.06762906141448,38.90329539607698],[-77.06730386390376,38.90319425195359],[-77.06684847307872,38.90309278176018],[-77.06678380753989,38.90314378450189],[-77.0667185826707,38.9031438217686],[-77.0665236278836,38.90309296718202],[-77.06639364255341,38.90304227523154],[-77.06626340162472,38.90299158328106],[-77.06613336941263,38.90288992530675],[-77.06606835390835,38.90283959592864],[-77.06606830670329,38.90278863019429],[-77.0660030821585,38.90278866706156],[-77.0659383691787,38.90278870360368],[-77.06587309775277,38.90273797452915],[-77.0657431133476,38.902687081986],[-77.06567814467762,38.90268711852794],[-77.06554816068787,38.90263642563309],[-77.06548293628195,38.90263646220995],[-77.06548288967879,38.90258569633913],[-77.06541792110106,38.90258573273637],[-77.06535295252324,38.90258576909745],[-77.06528793729804,38.9025348396854],[-77.06522296876652,38.90253487597421],[-77.06515795386308,38.90248414635499],[-77.06509298537767,38.90248418257153],[-77.06509293886974,38.90243321683351],[-77.06502797043065,38.90243325301388],[-77.06496274621026,38.90243328930034],[-77.06489777777107,38.9024333254083],[-77.06489773194815,38.90238295926672],[-77.06483276355476,38.9023829953385],[-77.06483280933182,38.90243336148016],[-77.0647678408925,38.90243339751586],[-77.06444269741198,38.90238321115175],[-77.06366268479924,38.90223114124316],[-77.06320730530274,38.90212965683929],[-77.0628821639523,38.90207906639801],[-77.06275222771703,38.90207913626376],[-77.06255727866763,38.90202827504872],[-77.06229706227951,38.9019272820251],[-77.06177688645394,38.90172409490425],[-77.06177684248887,38.90167332902367],[-77.06171187474024,38.90167336335996],[-77.06164690699156,38.90167339766013],[-77.06164686294629,38.90162243191335],[-77.06158189524398,38.90162246617734],[-77.06151667176321,38.90162250053989],[-77.06138673635829,38.90162256888694],[-77.0613217686557,38.90162260300628],[-77.0613217250146,38.90157183712462],[-77.06125680095307,38.9016226370895],[-77.0612567573582,38.9015718712078],[-77.06119178970175,38.90157190525485],[-77.06119174649605,38.901521539104],[-77.06112673521186,38.90147060736653],[-77.06106176764756,38.90147064134127],[-77.06060635357458,38.90131838090126],[-77.0606063104428,38.90126761501656],[-77.06054134306314,38.9012676487019],[-77.06054129980802,38.901216682951],[-77.0604763324747,38.9012167166002],[-77.06047628943551,38.9011659507145],[-77.06041132214838,38.90116598432753],[-77.0603463548612,38.90116601790444],[-77.06034631174543,38.90111505215258],[-77.06028134450459,38.90111508569331],[-77.0602163772637,38.9011151191979],[-77.06015115424621,38.90111515279811],[-77.0600861870052,38.90111518623036],[-77.06002121976411,38.90111521962645],[-77.05976101029734,38.9010142209376],[-77.05950105684308,38.90091262193994],[-77.05924084835385,38.90081102249173],[-77.05911091442486,38.90081108830761],[-77.05904594746029,38.90081112116133],[-77.0590459054393,38.90076035527143],[-77.05898089638094,38.90070942233292],[-77.0589808547368,38.90065905617348],[-77.05891563213572,38.90065908908387],[-77.05891559020756,38.90060832319254],[-77.05885087920228,38.90060835580881],[-77.05878561464715,38.90055742288914],[-77.05878557281157,38.90050665699684],[-77.05872060612411,38.90050668966967],[-77.0586555975292,38.90045575654783],[-77.05859058919125,38.90040502325506],[-77.05852562259625,38.90040505581949],[-77.05839535035292,38.90030338931383],[-77.05839530879523,38.90025262341907],[-77.05833059811239,38.90025265574717],[-77.05833055692767,38.90020228958341],[-77.05826529311557,38.90015135636929],[-77.0582002437508,38.90004965709416],[-77.05813523610679,38.89999892354432],[-77.05807026988145,38.89999895585552],[-77.0580702285553,38.89994818995787],[-77.05794004042453,38.89994825459864],[-77.05787503289584,38.89989732103735],[-77.05781006676288,38.89989735320383],[-77.05774514188643,38.89994835109813],[-77.05768021675554,38.89999914909014],[-77.05768017570696,38.89994838319238],[-77.05768013449682,38.89989741742841],[-77.0577451006299,38.8998973853342],[-77.05781002562193,38.89984658730513],[-77.05780998431912,38.89979562154029],[-77.0577450595352,38.89984661943548],[-77.05774501827875,38.89979565367059],[-77.05768005223834,38.89979568576476],[-77.05761504551859,38.89974535165464],[-77.05754978279668,38.8996946179024],[-77.05748507261966,38.89969464976219],[-77.05741989176283,38.89974544773766],[-77.05741993230431,38.8997958139059],[-77.05741997332848,38.89984677967094],[-77.05735504805847,38.89989757748318],[-77.05735508903635,38.89994854324723],[-77.05735512985359,38.89999930914512],[-77.05735517067087,38.90005007504256],[-77.05735521164894,38.90010104080529],[-77.05742021883123,38.90015177478822],[-77.05742025985579,38.90020274054999],[-77.05748548204033,38.90020270847445],[-77.05748552262835,38.90025307463849],[-77.05755027426825,38.90030380867354],[-77.0576155377093,38.90035474228575],[-77.05768054530795,38.90040547612153],[-77.05774555299905,38.90045620992065],[-77.05781051964098,38.90045617779007],[-77.0578105609446,38.90050714354892],[-77.05787552763289,38.90050711138217],[-77.05787556882083,38.90055787727478],[-77.0579405355553,38.9005578450719],[-77.05794057695186,38.90060881082975],[-77.05800579950743,38.90060877846368],[-77.05800584078813,38.90065954435538],[-77.05807080761514,38.90065951208],[-77.05813581548952,38.90070984592828],[-77.05820082394489,38.90076077933701],[-77.05826579086398,38.90076074695328],[-77.05826583232981,38.90081151284345],[-77.05826587379569,38.90086227873318],[-77.05833109658286,38.9008622461855],[-77.05839584954069,38.90091317961209],[-77.05852612289837,38.90101484610604],[-77.05859121497716,38.90116691133748],[-77.05852624768828,38.90116694390223],[-77.05859125667479,38.9012176772239],[-77.05859129853665,38.90126864297548],[-77.05859134023443,38.90131940886094],[-77.05859138193225,38.90137017474591],[-77.05859142379431,38.90142114049609],[-77.05852645627387,38.90142117306096],[-77.05852649792558,38.90147193894506],[-77.05852653974134,38.90152290469432],[-77.05846161340618,38.9015733033749],[-77.05846165501184,38.9016240692576],[-77.05846169678135,38.90167503500555],[-77.05839647325108,38.90167506762613],[-77.05839651481043,38.90172583350791],[-77.05839655636984,38.90177659938925],[-77.05833188598136,38.90182759746461],[-77.05833192749482,38.90187836334503],[-77.05826670377859,38.90187839589316],[-77.05826674540894,38.90192936163882],[-77.05826678654962,38.90197972778703],[-77.05820185994129,38.90203052605042],[-77.0581369747783,38.90213229002116],[-77.05807204793864,38.90218308821105],[-77.05800712116908,38.90223408623002],[-77.05800716245167,38.90228485210688],[-77.05794197976218,38.9023358502157],[-77.05794202099845,38.90238661609168],[-77.0578771348165,38.90248798018028],[-77.0578121663241,38.90248801234787],[-77.05774723892937,38.902538810354],[-77.05768235265543,38.90264057406297],[-77.05768239370713,38.9026913399362],[-77.05761746619635,38.90274233773398],[-77.05761750720193,38.90279310360633],[-77.05755232376941,38.90284410149308],[-77.05755236440615,38.90289446763326],[-77.05748769223958,38.9029452653654],[-77.0574225085752,38.90299626317833],[-77.05729269314821,38.90314882444648],[-77.05729273392286,38.90319959031522],[-77.05716287684561,38.90330098583492],[-77.05703280452384,38.90345354693108],[-77.0570328451137,38.90350431279711],[-77.05696787569525,38.90350434449523],[-77.05696791639856,38.90355531022643],[-77.05696795694229,38.90360607609158],[-77.05696799764573,38.90365704182182],[-77.0569680381896,38.90370780768605],[-77.05690306858578,38.90370783934812],[-77.05683809898188,38.90370787097406],[-77.05683813911483,38.90375823710661],[-77.056773169465,38.90375826869646],[-77.05670819981512,38.90375830025017],[-77.05651315605638,38.90391109213836],[-77.05651319627668,38.90396185800035],[-77.05651323649704,38.90401262386195],[-77.05651327687579,38.90406358958862],[-77.05644834712194,38.9041143868585],[-77.05644842731242,38.90421571871285],[-77.05638349737391,38.90426651594522],[-77.05638353766012,38.90431748166962],[-77.05638357778838,38.90436824752798],[-77.05618861164574,38.90462257057009],[-77.05605883020318,38.90482549654551],[-77.05592900868716,38.90497825611363],[-77.05579914627693,38.9050794502194],[-77.05573429473539,38.90523217851597],[-77.05586423672088,38.90523211645566],[-77.05592920771355,38.90523208537128]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000039,"geom:area_square_m":374508.447576,"geom:bbox":"-77.0713898511,38.8996946179,-77.0557342947,38.9052321785","geom:latitude":38.903606,"geom:longitude":-77.06244,"iso:country":"US","lbl:latitude":38.903134,"lbl:longitude":-77.059954,"lbl:max_zoom":18,"mps:latitude":38.903134,"mps:longitude":-77.059954,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.903134,"reversegeo:longitude":-77.059954,"src:geom":"wapo","wapo:quadrant":"NW","wapo:subhood":"Waterfront Georgetown","wof:belongsto":[85821305,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"574dbfbfce5842b2df4a9532831f2b07","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723611,"neighbourhood_id":85821305,"region_id":85688741}],"wof:id":1108723611,"wof:lastmodified":1566623905,"wof:name":"Waterfront Georgetown","wof:parent_id":85821305,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723615.geojson b/fixtures/microhoods/1108723615.geojson new file mode 100644 index 0000000..9321667 --- /dev/null +++ b/fixtures/microhoods/1108723615.geojson @@ -0,0 +1 @@ +{"id":1108723615,"type":"Feature","bbox":[-77.0730338379287,38.9050220745117,-77.06282018037558,38.91670546992219],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.06295146740933,38.9067017221095],[-77.06301652961484,38.90680341861712],[-77.06308163654928,38.90695548118777],[-77.06314674411517,38.90710794344891],[-77.06327682444162,38.90725997076824],[-77.06334223358454,38.90746319860093],[-77.06340699611319,38.90751412918923],[-77.06340708654875,38.90761586070708],[-77.06347236068454,38.90766659111468],[-77.06347240550436,38.90771695720878],[-77.06353742415675,38.90776788758345],[-77.06353751477866,38.90786961909654],[-77.06373270711872,38.90817410786494],[-77.06379802758339,38.9082758037706],[-77.06386309225279,38.90837729991225],[-77.06386318333999,38.90847903141383],[-77.06392820296608,38.90852996156401],[-77.06405837891755,38.90878371946986],[-77.06405842451088,38.90883448528433],[-77.06412349024014,38.90893618113607],[-77.0641888572865,38.90908824289046],[-77.06425366762775,38.90918993880559],[-77.06431898958529,38.90929143453585],[-77.06444921436938,38.9095961576438],[-77.06457930237184,38.90974858317503],[-77.06457934833657,38.90979934898043],[-77.06464446133764,38.90995141059737],[-77.06483992045493,38.91025649685527],[-77.06490498805006,38.91035759264944],[-77.06497005637587,38.91045928800154],[-77.0649701490446,38.91056101946371],[-77.06510049573112,38.91071344424563],[-77.06510058822137,38.91081477597228],[-77.06516565724314,38.91091647120695],[-77.06536091139428,38.91127172287788],[-77.06549109781427,38.91152587879127],[-77.06568656449974,38.9118305638146],[-77.06581675310028,38.91208471933923],[-77.06594719789102,38.91233827496676],[-77.06601206086394,38.91249093549134],[-77.06601210748028,38.91254130154024],[-77.06607734094393,38.91254126466793],[-77.06614241293353,38.91264295932663],[-77.06614250727732,38.91274469074727],[-77.06620757935993,38.91284618550063],[-77.06640309998973,38.91320163502489],[-77.06653324572915,38.91340442432097],[-77.06659841415158,38.91360785011386],[-77.06666348785734,38.91370954446251],[-77.0667285617486,38.91381123877296],[-77.06685875730318,38.91406499331403],[-77.06711940720457,38.91457270164365],[-77.06718448253353,38.91467439568412],[-77.06724955767115,38.91477568995612],[-77.0673797572177,38.91502984360206],[-77.0675101648975,38.91523263159449],[-77.0675752413858,38.91533432540503],[-77.067705490927,38.91563884468154],[-77.06770553931054,38.91568981029611],[-77.06777077565317,38.91568977247844],[-77.06777082389345,38.91574053822733],[-77.06777087232373,38.91579150384089],[-77.06783585293022,38.9157914661353],[-77.0678359012169,38.91584223188322],[-77.06790093020254,38.91589295988882],[-77.06790097872592,38.9159439255009],[-77.0679660564205,38.91604561908046],[-77.06816144864736,38.91624836849404],[-77.0684216649607,38.9165528110393],[-77.06842171385665,38.91660377664499],[-77.06848679289591,38.91670546992219],[-77.06861670673811,38.91665442807393],[-77.06861665789508,38.91660366233395],[-77.06868189507315,38.91660362400761],[-77.06900705763418,38.91660343243401],[-77.06926698301609,38.91660327864499],[-77.0693319643614,38.91660324010738],[-77.06939694570663,38.91660320153363],[-77.06939684671545,38.91650147018773],[-77.06939669871542,38.91634937282814],[-77.06939645133698,38.91609514438053],[-77.06939620434926,38.91584131565125],[-77.06939600637143,38.91563785292898],[-77.06939595736334,38.91558748691014],[-77.06939585837497,38.91548575554525],[-77.06939575958137,38.91538422404356],[-77.06933063090712,38.91523156563017],[-77.06933053259529,38.9151304338541],[-77.06933028545696,38.91487620534933],[-77.06933003870896,38.9146223765631],[-77.0693299891653,38.91457141093922],[-77.06932989046672,38.91446987942047],[-77.06932974203082,38.9143171824084],[-77.06932959417841,38.91416508498766],[-77.06932939658954,38.91396182206788],[-77.0692642204424,38.91375879754185],[-77.06926417114046,38.9137080317751],[-77.06926412164448,38.91365706614267],[-77.06926402304094,38.91355553460681],[-77.06926382583474,38.91335247152949],[-77.06926352963931,38.91304747716881],[-77.06926328313523,38.91279364829732],[-77.06926323383463,38.91274288252158],[-77.06926318433997,38.91269191688016],[-77.06939309051026,38.91264107399637],[-77.07004337949546,38.91264068598607],[-77.07082331751391,38.91258925017182],[-77.07095352870604,38.91258917117413],[-77.07108348408022,38.912589092187],[-77.07114846176721,38.91258905263919],[-77.07179875026839,38.9125886548595],[-77.07257873831544,38.91258817296917],[-77.07264397181841,38.9125881324308],[-77.07277392718882,38.91258805156353],[-77.0730338379287,38.91258788939533],[-77.07303378594443,38.91253712361934],[-77.0729690125941,38.91248679800982],[-77.07303274586498,38.91152140827],[-77.07303269388224,38.91147064248414],[-77.0729679730289,38.91147068292004],[-77.06932702658209,38.91152366576703],[-77.06932707612154,38.91157463141933],[-77.06919712259389,38.91157470845302],[-77.0691970731473,38.91152374280069],[-77.06919682649716,38.91126951412773],[-77.06913155477628,38.9109649578437],[-77.06913135814808,38.91076209453531],[-77.06913130874908,38.91071112887538],[-77.06913121014495,38.9106093974194],[-77.06913116093985,38.91055863162335],[-77.06913086571076,38.9102540368374],[-77.0691304718822,38.90984771056441],[-77.06913042248443,38.90979674489596],[-77.06913032388285,38.90969501342304],[-77.069130274679,38.90964424761856],[-77.06913012687423,38.90949175033695],[-77.06906465041634,38.90923795987695],[-77.06906420781438,38.9087808677161],[-77.0690641584647,38.90872990203775],[-77.0691943626132,38.90872982500041],[-77.06945420986797,38.90867890498129],[-77.06997425867526,38.90867859468222],[-77.07023441097903,38.90867843858777],[-77.07036461503232,38.90867836024627],[-77.07042958915702,38.90867832109827],[-77.07049456328166,38.90867828191405],[-77.07114456032774,38.90867788792917],[-77.07153466087341,38.9086776497399],[-77.0715995838355,38.90862664426298],[-77.07159953287494,38.90857587844967],[-77.07159897231342,38.90801745447264],[-77.07159887019344,38.90791572296894],[-77.07159871711438,38.90776322564258],[-77.07159861539638,38.90766189386505],[-77.07159856443718,38.9076111280429],[-77.07159841115877,38.90745843084262],[-77.07159795233062,38.90700133854389],[-77.071532776287,38.90679851489117],[-77.07153272517482,38.90674754919559],[-77.0715326742632,38.90669678336493],[-77.07153257223968,38.90659505183685],[-77.07153211363854,38.90613775960081],[-77.07153190979547,38.90593449638763],[-77.07153180817497,38.90583316457645],[-77.07138985105931,38.905074761288],[-77.06893062673034,38.9050220745117],[-77.06880073372068,38.90507251722062],[-77.06860556540657,38.90507263198926],[-77.06841065288255,38.90507274628204],[-77.06828071119952,38.90507282229659],[-77.06795560120004,38.90507301184945],[-77.06782565951602,38.90507308735788],[-77.06769546204104,38.90507316287],[-77.06756552035651,38.90507323808911],[-77.0671754395105,38.90507346302638],[-77.06704549782488,38.90507353766711],[-77.0667856144528,38.90507368651505],[-77.06646050444543,38.90507387190747],[-77.06626538347128,38.90512494848004],[-77.0661354416909,38.90512502210854],[-77.06600524411935,38.90512509573713],[-77.06594052901984,38.90512513228042],[-77.06568038966658,38.90512527881424],[-77.06535527942124,38.90512546113116],[-77.06529030853015,38.90512549745743],[-77.06516036674778,38.90512557000147],[-77.06509539585649,38.9051256062193],[-77.06503042496514,38.90512564240104],[-77.06483525649978,38.90512575087136],[-77.06464008803383,38.90512585901561],[-77.06438020446619,38.9051260025129],[-77.06412006510661,38.90512614557247],[-77.06392515242942,38.90512625238203],[-77.06366531417014,38.90517716013732],[-77.06340491883144,38.90517730174393],[-77.06308006413438,38.90517747759078],[-77.0629501222551,38.9051775476766],[-77.06288489552426,38.90517758280302],[-77.06282018037558,38.90517761761793],[-77.06282026997125,38.90527934917931],[-77.06282035956718,38.90538108073876],[-77.06282044916335,38.90548281229638],[-77.06282058311805,38.90563490996548],[-77.06282067253882,38.9057364416529],[-77.06282085138118,38.90593950502214],[-77.06282094097872,38.90604123656949],[-77.06282098568963,38.90609200240969],[-77.06282103040056,38.90614276824942],[-77.06282120959699,38.90634623133473],[-77.06282125395619,38.90639659744117],[-77.06282129884353,38.90644756314363],[-77.06288614959318,38.90660002570153],[-77.06295146740933,38.9067017221095]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000059,"geom:area_square_m":567526.629099,"geom:bbox":"-77.0730338379,38.9050220745,-77.0628201804,38.9167054699","geom:latitude":38.909302,"geom:longitude":-77.067671,"iso:country":"US","lbl:latitude":38.908751,"lbl:longitude":-77.066734,"lbl:max_zoom":18,"mps:latitude":38.908751,"mps:longitude":-77.066734,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.908751,"reversegeo:longitude":-77.066734,"src:geom":"wapo","wapo:quadrant":"NW","wapo:subhood":"West Village Georgetown","wof:belongsto":[85821305,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"74a0022d3dc377882536ab94a2ae221f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723615,"neighbourhood_id":85821305,"region_id":85688741}],"wof:id":1108723615,"wof:lastmodified":1566623905,"wof:name":"West Village Georgetown","wof:parent_id":85821305,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723619.geojson b/fixtures/microhoods/1108723619.geojson new file mode 100644 index 0000000..a752b31 --- /dev/null +++ b/fixtures/microhoods/1108723619.geojson @@ -0,0 +1 @@ +{"id":1108723619,"type":"Feature","bbox":[-77.06855182313166,38.90517761761793,-77.05034160341164,38.91767152257954],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.0504070137686,38.91006015184102],[-77.05060208429663,38.91026353054146],[-77.05066709593757,38.91031426818894],[-77.0507321073867,38.91036460606897],[-77.05073214363804,38.91041557173889],[-77.05079711935457,38.91041554350851],[-77.05079715551008,38.91046630931255],[-77.05086216761715,38.91051724671497],[-77.05092743548481,38.91056798410386],[-77.05092747173315,38.91061874990646],[-77.05099244763471,38.91061872156745],[-77.05105746002016,38.91066965885975],[-77.0510574963611,38.9107204246614],[-77.05112247235523,38.91072039625008],[-77.05112250888571,38.91077136191661],[-77.05118755750647,38.9108724653392],[-77.05125253363904,38.91087243685559],[-77.05125257026255,38.91092340252064],[-77.0513175829677,38.91097413980002],[-77.05131761949394,38.91102490559874],[-77.05138285157744,38.91102487693031],[-77.05138288829416,38.91107584259388],[-77.05144790123097,38.91112657979936],[-77.0514479379942,38.91117754546197],[-77.05151291440461,38.91117751683355],[-77.05157792723753,38.91122785423504],[-77.05157796394919,38.91127862003133],[-77.05164297735432,38.91132955699173],[-77.05170799070743,38.91138029405013],[-77.0517732231158,38.91138026516376],[-77.05177326011162,38.91143123082389],[-77.05183823675303,38.91143120201457],[-77.05190325033766,38.91148193896338],[-77.05190328728104,38.91153270475722],[-77.0519682640148,38.91153267587561],[-77.05203327793026,38.91158361261647],[-77.05203331496624,38.91163437840932],[-77.05209829179259,38.91163434945536],[-77.05209832858286,38.91168471551704],[-77.05216330545504,38.91168468652695],[-77.05216334272978,38.91173565218413],[-77.05222831964835,38.91173562315787],[-77.05229358960281,38.91178635977234],[-77.05229362697071,38.91183732542855],[-77.05235860398183,38.91183729632986],[-77.05235864124951,38.91188806212024],[-77.05242365562079,38.91193879877524],[-77.05248863272433,38.91193876960425],[-77.05248867023168,38.91198973525895],[-77.05255364738159,38.91198970605175],[-77.05255368478817,38.91204047184068],[-77.05261866198425,38.91204044259736],[-77.05268393264299,38.91209137885625],[-77.05274890988541,38.9120913495405],[-77.05281392442365,38.9121416862459],[-77.05287893935,38.91219242264522],[-77.05294391668443,38.91219239322104],[-77.05300893189802,38.9122433294129],[-77.05307390927874,38.91224329991645],[-77.05313914247587,38.91224327026745],[-77.05313918029933,38.91229403605383],[-77.0532041577262,38.91229400648488],[-77.05326913515302,38.91229397687984],[-77.05333415054201,38.91234471302453],[-77.05339912801497,38.91234468334715],[-77.05346414369251,38.9123956192843],[-77.05352937702878,38.91239558941747],[-77.053594098731,38.91239555974892],[-77.0536593320672,38.91239552980955],[-77.05365937026096,38.91244629559432],[-77.05372434782635,38.91244626573617],[-77.05378932539166,38.9124462358418],[-77.05378936382874,38.91249720149134],[-77.05385434144043,38.91249717156089],[-77.05391931905208,38.91249714159426],[-77.05398455248101,38.91249711147331],[-77.05398459060378,38.91254747752648],[-77.05404956826119,38.91254744748743],[-77.05411454591857,38.91254741741224],[-77.05411458443643,38.91259818319546],[-77.05417956213999,38.91259815308415],[-77.0542445398435,38.91259812293666],[-77.0543095563558,38.91264905840099],[-77.05437478992356,38.91264902806222],[-77.05450478421871,38.91269973329615],[-77.05456976201461,38.91269970296781],[-77.05463477885178,38.91275063825024],[-77.05469979562855,38.91280137363082],[-77.05476477351698,38.912801343194],[-77.05482975140535,38.9128013127211],[-77.05489502418564,38.91285204787251],[-77.05495978557515,38.91290298309282],[-77.05502501937488,38.91290295239102],[-77.05509003656807,38.91295368755297],[-77.0551550145951,38.91295365689921],[-77.0551550535447,38.91300402294775],[-77.05522003161754,38.91300399225781],[-77.05522007107727,38.91305495790168],[-77.05528504919651,38.91305492717558],[-77.05528508854779,38.91310569295372],[-77.05528512805408,38.91315665859663],[-77.05535036208568,38.91315662771313],[-77.05535040148351,38.91320739349031],[-77.05541537974159,38.91320736269171],[-77.05541541918574,38.91325812846837],[-77.05541545878525,38.91330909410983],[-77.05548043713593,38.91330906327507],[-77.05548047662646,38.91335982905077],[-77.05554545502332,38.91335979817982],[-77.05554549424882,38.91341016422452],[-77.05561051243049,38.91346109895743],[-77.05567553054905,38.91351183378841],[-77.05574080473745,38.91356276832595],[-77.05580582304134,38.91361350308347],[-77.05587080166919,38.91361347203166],[-77.05593578029699,38.91361344094369],[-77.05593582011178,38.9136642067164],[-77.05600079878577,38.91366417559225],[-77.05600083880383,38.91371514122972],[-77.05606581752417,38.91371511006941],[-77.05606585743158,38.91376587584111],[-77.05613083619812,38.91376584464467],[-77.05613087630917,38.91381681028114],[-77.05613091594833,38.9138671763214],[-77.05619589480717,38.91386714508879],[-77.05619593480728,38.91391791085901],[-77.05626116953475,38.91391787946709],[-77.05632618869039,38.913968813797],[-77.05639120778085,38.91401954822506],[-77.05645618677839,38.91401951684764],[-77.05652120616595,38.91407045106816],[-77.05658622548782,38.91412118538666],[-77.05665146040107,38.91412115377683],[-77.05665150072556,38.91417191954458],[-77.05671647986182,38.91417188802243],[-77.05671652039155,38.91422285365491],[-77.05678149957419,38.91422282209663],[-77.05684647875674,38.91422279050222],[-77.05684651922012,38.91427355626894],[-77.05691149844887,38.91427352463835],[-77.05697651791414,38.91432385900747],[-77.0570415379508,38.9143747929355],[-77.05710681374453,38.91442552683667],[-77.05717179311164,38.91442549506137],[-77.05717183396689,38.91447646069128],[-77.05723681338037,38.91447642887981],[-77.05730183358139,38.91452716279643],[-77.05736685387492,38.91457789667633],[-77.05743187442192,38.91462883038482],[-77.0574971097991,38.91462879830289],[-77.05749715072585,38.91467956406559],[-77.05756187449903,38.91467953219921],[-77.05756191563319,38.91473049782665],[-77.0576271511033,38.91473046567209],[-77.05762719179968,38.9147808317034],[-77.05769217149026,38.91478079963868],[-77.05769221255592,38.91483156539991],[-77.05775719229271,38.91483153329907],[-77.05775723356653,38.914882498925],[-77.05782221334968,38.91488246678798],[-77.05782225450797,38.91493323254821],[-77.05788723433734,38.91493320037503],[-77.05788727554194,38.91498396613475],[-77.05795225541746,38.91498393392543],[-77.05801753257916,38.91503486717733],[-77.05801757387655,38.91508563293608],[-77.05808255384467,38.91508560065431],[-77.05814757536565,38.9151365339598],[-77.0582125964901,38.91518686763307],[-77.05821263792643,38.91523763339031],[-77.05827761803295,38.91523760100006],[-77.05827765967892,38.91528856662198],[-77.05834293718833,38.9153392998241],[-77.05840770329881,38.91539023311021],[-77.05847293937204,38.91539020048343],[-77.05853796128544,38.91544093370365],[-77.05860294157705,38.91544090113247],[-77.0586679218686,38.91544086852515],[-77.05866796362919,38.91549163427987],[-77.0587329859384,38.91554256725583],[-77.05873302774538,38.91559333300955],[-77.05879804969948,38.91564366635284],[-77.05879809171758,38.91569463197077],[-77.05879813357097,38.91574539772309],[-77.0587981755892,38.91579636334009],[-77.05879821744273,38.91584712909146],[-77.05879825929631,38.9158978948423],[-77.05873327858842,38.91589792752212],[-77.0587333205604,38.91594889313773],[-77.05873336236785,38.91599965888765],[-77.05879834316842,38.91599962620779],[-77.05879838518698,38.91605059182244],[-77.0587984267112,38.91610095784112],[-77.05899358355775,38.9160504934369],[-77.05925342242305,38.91594863055769],[-77.05970901186782,38.91620222749738],[-77.05970896919847,38.91615126188453],[-77.06029388196659,38.91594809832072],[-77.0608137670352,38.91569360031117],[-77.06139884754856,38.91569329434508],[-77.06165902545776,38.91569315734478],[-77.06464998695755,38.91604750081847],[-77.06556104623112,38.91665618244445],[-77.06692737657981,38.91767152257954],[-77.06855182313166,38.91675619755753],[-77.06848679289591,38.91670546992219],[-77.06842171385665,38.91660377664499],[-77.0684216649607,38.9165528110393],[-77.06816144864736,38.91624836849404],[-77.0679660564205,38.91604561908046],[-77.06790097872592,38.9159439255009],[-77.06790093020254,38.91589295988882],[-77.0678359012169,38.91584223188322],[-77.06783585293022,38.9157914661353],[-77.06777087232373,38.91579150384089],[-77.06777082389345,38.91574053822733],[-77.06777077565317,38.91568977247844],[-77.06770553931054,38.91568981029611],[-77.067705490927,38.91563884468154],[-77.0675752413858,38.91533432540503],[-77.0675101648975,38.91523263159449],[-77.0673797572177,38.91502984360206],[-77.06724955767115,38.91477568995612],[-77.06718448253353,38.91467439568412],[-77.06711940720457,38.91457270164365],[-77.06685875730318,38.91406499331403],[-77.0667285617486,38.91381123877296],[-77.06666348785734,38.91370954446251],[-77.06659841415158,38.91360785011386],[-77.06653324572915,38.91340442432097],[-77.06640309998973,38.91320163502489],[-77.06620757935993,38.91284618550063],[-77.06614250727732,38.91274469074727],[-77.06614241293353,38.91264295932663],[-77.06607734094393,38.91254126466793],[-77.06601210748028,38.91254130154024],[-77.06601206086394,38.91249093549134],[-77.06594719789102,38.91233827496676],[-77.06581675310028,38.91208471933923],[-77.06568656449974,38.9118305638146],[-77.06549109781427,38.91152587879127],[-77.06536091139428,38.91127172287788],[-77.06516565724314,38.91091647120695],[-77.06510058822137,38.91081477597228],[-77.06510049573112,38.91071344424563],[-77.0649701490446,38.91056101946371],[-77.06497005637587,38.91045928800154],[-77.06490498805006,38.91035759264944],[-77.06483992045493,38.91025649685527],[-77.06464446133764,38.90995141059737],[-77.06457934833657,38.90979934898043],[-77.06457930237184,38.90974858317503],[-77.06444921436938,38.9095961576438],[-77.06431898958529,38.90929143453585],[-77.06425366762775,38.90918993880559],[-77.0641888572865,38.90908824289046],[-77.06412349024014,38.90893618113607],[-77.06405842451088,38.90883448528433],[-77.06405837891755,38.90878371946986],[-77.06392820296608,38.90852996156401],[-77.06386318333999,38.90847903141383],[-77.06386309225279,38.90837729991225],[-77.06379802758339,38.9082758037706],[-77.06373270711872,38.90817410786494],[-77.06353751477866,38.90786961909654],[-77.06353742415675,38.90776788758345],[-77.06347240550436,38.90771695720878],[-77.06347236068454,38.90766659111468],[-77.06340708654875,38.90761586070708],[-77.06340699611319,38.90751412918923],[-77.06334223358454,38.90746319860093],[-77.06327682444162,38.90725997076824],[-77.06314674411517,38.90710794344891],[-77.06308163654928,38.90695548118777],[-77.06301652961484,38.90680341861712],[-77.06295146740933,38.9067017221095],[-77.06288614959318,38.90660002570153],[-77.06282129884353,38.90644756314363],[-77.06282125395619,38.90639659744117],[-77.06282120959699,38.90634623133473],[-77.06282103040056,38.90614276824942],[-77.06282098568963,38.90609200240969],[-77.06282094097872,38.90604123656949],[-77.06282085138118,38.90593950502214],[-77.06282067253882,38.9057364416529],[-77.06282058311805,38.90563490996548],[-77.06282044916335,38.90548281229638],[-77.06282035956718,38.90538108073876],[-77.06282026997125,38.90527934917931],[-77.06282018037558,38.90517761761793],[-77.06268998270471,38.90517768755195],[-77.06262501176471,38.905177722396],[-77.06249506988456,38.90517779197574],[-77.06216995939194,38.90517796542883],[-77.06197504657027,38.90517806898507],[-77.06190981983849,38.9051781035671],[-77.06171490701607,38.90517820668929],[-77.06145476746087,38.90517834381431],[-77.06125985463713,38.90517844617735],[-77.06119488369576,38.90517848022612],[-77.06112991275432,38.90517851423875],[-77.06106494181286,38.90517854821525],[-77.06093474413858,38.90517861619323],[-77.06073983131336,38.90517871768873],[-77.06047969175442,38.90517885264261],[-77.06034974987017,38.9051789198363],[-77.06028477892792,38.90517895337895],[-77.06015458125216,38.90517902048755],[-77.06008961030975,38.90517905392165],[-77.06002463936728,38.90517908731961],[-77.05982972653949,38.9051791872968],[-77.0596346005297,38.90523025279419],[-77.05937471657205,38.90523038515719],[-77.05924451880156,38.9052304512516],[-77.0591795478119,38.90523048417962],[-77.05904960583233,38.90523054992727],[-77.05885469286257,38.90523064827779],[-77.05865952410097,38.90523074643148],[-77.05839938434843,38.90523087675339],[-77.05826944236746,38.90523094163333],[-77.05820447137688,38.90523097401911],[-77.05807452939555,38.90523103868227],[-77.05709945294552,38.90523151929933],[-77.05696925517091,38.90523158285821],[-77.05690428417917,38.90523161452096],[-77.05677434219552,38.90523167773807],[-77.05664440021162,38.90523174081062],[-77.0565142024362,38.90523180386239],[-77.05631928945958,38.90523189798306],[-77.0560591496987,38.90523202309418],[-77.05592920771355,38.90523208537128],[-77.05586423672088,38.90523211645566],[-77.05573429473539,38.90523217851597],[-77.05560421583652,38.9053847379684],[-77.05553936313316,38.90553686655169],[-77.0554745104641,38.90568939482586],[-77.05540961808168,38.90579115721466],[-77.05534476459378,38.90594328567872],[-77.05521472286233,38.90614661052029],[-77.05514994729289,38.90640047041263],[-77.05502019928224,38.90665476060346],[-77.05489045003878,38.90690865090744],[-77.05476044438032,38.9071629409065],[-77.05463065440546,38.90736606506771],[-77.054501019005,38.90777245225637],[-77.05443578989731,38.90777248266568],[-77.05443582864123,38.90782324849299],[-77.05443586753778,38.90787421418521],[-77.05437118863657,38.90792501014645],[-77.0543712273346,38.9079757759724],[-77.0543059980409,38.90797580630921],[-77.05430603684475,38.90802677200016],[-77.05430607549648,38.9080775378251],[-77.05424110191122,38.90807756800684],[-77.054176167037,38.90812856384243],[-77.05417620529273,38.90817892993561],[-77.05411127012822,38.90822972586874],[-77.05476157512878,38.90863574946373],[-77.05476161425852,38.90868671514836],[-77.05476180944767,38.90894094396824],[-77.05476200433131,38.90919477304556],[-77.05476208228515,38.90929630467318],[-77.0547621603927,38.90939803616433],[-77.05463217193213,38.9093473311862],[-77.05424210628108,38.90939827875413],[-77.05398220712706,38.90939839912188],[-77.05391697653216,38.90939842924151],[-77.05385200174346,38.90939845920686],[-77.05378702695472,38.90939848913603],[-77.05346197315747,38.90949997011641],[-77.05294199380988,38.90960193840763],[-77.05281208145007,38.9096527630287],[-77.05274710642922,38.90965279237957],[-77.05268213140833,38.90965282169437],[-77.05229202547464,38.90965299693863],[-77.05216181962489,38.90965305514007],[-77.05060165167592,38.90965374124252],[-77.05040672660789,38.90965382549916],[-77.05040676248515,38.90970459131036],[-77.05040679850372,38.90975555698644],[-77.05034160341164,38.9098063509203],[-77.0503416393837,38.90985731659554],[-77.05034167493258,38.90990768267405],[-77.05034171076366,38.90995844848293],[-77.050406977891,38.91000938603314],[-77.0504070137686,38.91006015184102]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000116,"geom:area_square_m":1116397.416244,"geom:bbox":"-77.0685518231,38.9051776176,-77.0503416034,38.9176715226","geom:latitude":38.911002,"geom:longitude":-77.059919,"iso:country":"US","lbl:latitude":38.910661,"lbl:longitude":-77.059774,"lbl:max_zoom":18,"mps:latitude":38.910661,"mps:longitude":-77.059774,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.910661,"reversegeo:longitude":-77.059774,"src:geom":"wapo","wapo:quadrant":"NW","wapo:subhood":"East Village Georgetown","wof:belongsto":[85821305,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f120acca6b8bbd5e0ddf3121111cc146","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723619,"neighbourhood_id":85821305,"region_id":85688741}],"wof:id":1108723619,"wof:lastmodified":1566623905,"wof:name":"East Village Georgetown","wof:parent_id":85821305,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723621.geojson b/fixtures/microhoods/1108723621.geojson new file mode 100644 index 0000000..b414ab1 --- /dev/null +++ b/fixtures/microhoods/1108723621.geojson @@ -0,0 +1 @@ +{"id":1108723621,"type":"Feature","bbox":[-77.07953476395595,38.90583248263403,-77.0690641584647,38.91268677362574],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.07774201535287,38.90658329031425],[-77.07762800837092,38.90642007591034],[-77.07732426663128,38.90631654707256],[-77.07692596145671,38.90628703002551],[-77.07656548272622,38.90622810659106],[-77.07616682759152,38.9061096469817],[-77.07549764231823,38.90608449852258],[-77.07536769879998,38.90608458241928],[-77.07504258420873,38.90608479169315],[-77.07484761565917,38.9060341508896],[-77.07458747301017,38.90603431725596],[-77.07452250129629,38.9060343587162],[-77.07445727378814,38.90603440030337],[-77.0743922489193,38.90598347598984],[-77.07432753304556,38.90598351717885],[-77.0742623055838,38.90598355865716],[-77.07387216720541,38.90593304011708],[-77.07328716681033,38.9059334085393],[-77.07322219518761,38.90593344927647],[-77.0731572235648,38.90593348997756],[-77.07315717190754,38.90588312387115],[-77.07309220033052,38.90588316453602],[-77.07302697295984,38.90588320532467],[-77.07296225717627,38.90588324575741],[-77.0726370915952,38.90583248263403],[-77.0725718642706,38.9058325231686],[-77.0716617512396,38.90583308494602],[-77.07159677970732,38.90583312477932],[-77.07153180817497,38.90583316457645],[-77.07153190979547,38.90593449638763],[-77.07153211363854,38.90613775960081],[-77.07153257223968,38.90659505183685],[-77.0715326742632,38.90669678336493],[-77.07153272517482,38.90674754919559],[-77.071532776287,38.90679851489117],[-77.07159795233062,38.90700133854389],[-77.07159841115877,38.90745843084262],[-77.07159856443718,38.9076111280429],[-77.07159861539638,38.90766189386505],[-77.07159871711438,38.90776322564258],[-77.07159887019344,38.90791572296894],[-77.07159897231342,38.90801745447264],[-77.07159953287494,38.90857587844967],[-77.0715995838355,38.90862664426298],[-77.07153466087341,38.9086776497399],[-77.07114456032774,38.90867788792917],[-77.07049456328166,38.90867828191405],[-77.07042958915702,38.90867832109827],[-77.07036461503232,38.90867836024627],[-77.07023441097903,38.90867843858777],[-77.06997425867526,38.90867859468222],[-77.06945420986797,38.90867890498129],[-77.0691943626132,38.90872982500041],[-77.0690641584647,38.90872990203775],[-77.06906420781438,38.9087808677161],[-77.06906465041634,38.90923795987695],[-77.06913012687423,38.90949175033695],[-77.069130274679,38.90964424761856],[-77.06913032388285,38.90969501342304],[-77.06913042248443,38.90979674489596],[-77.0691304718822,38.90984771056441],[-77.06913086571076,38.9102540368374],[-77.06913116093985,38.91055863162335],[-77.06913121014495,38.9106093974194],[-77.06913130874908,38.91071112887538],[-77.06913135814808,38.91076209453531],[-77.06913155477628,38.9109649578437],[-77.06919682649716,38.91126951412773],[-77.0691970731473,38.91152374280069],[-77.06919712259389,38.91157470845302],[-77.06932707612154,38.91157463141933],[-77.06932702658209,38.91152366576703],[-77.0729679730289,38.91147068292004],[-77.07303269388224,38.91147064248414],[-77.07303274586498,38.91152140827],[-77.0729690125941,38.91248679800982],[-77.07303378594443,38.91253712361934],[-77.0730338379287,38.91258788939533],[-77.07329400448508,38.91258772648852],[-77.07355391522259,38.91258756316348],[-77.07361914872446,38.91258752208067],[-77.07368412640857,38.91258748112279],[-77.07374910409263,38.91258744012879],[-77.07381408177659,38.91258739909861],[-77.0738790594605,38.91258735803233],[-77.0739440371443,38.91258731692994],[-77.0740092706457,38.91258727562937],[-77.07407424832938,38.91258723445451],[-77.07413922601297,38.91258719324355],[-77.07420420369651,38.9125871519965],[-77.07426918137993,38.91258711071325],[-77.07433441488095,38.91258706923115],[-77.07439913674659,38.91258702803838],[-77.07446411442982,38.91258698664673],[-77.07478925866243,38.91258677898285],[-77.07517963639317,38.91258652846017],[-77.07543960103007,38.91263732658039],[-77.07556955648687,38.91263724260377],[-77.07563453421515,38.91263720056128],[-77.0760896341288,38.91263690508539],[-77.07647975631149,38.91263665038557],[-77.07732497839469,38.91263609409584],[-77.07745524479625,38.91268677362574],[-77.07856037855032,38.91268603581812],[-77.0790154787632,38.91268572894639],[-77.07921041207409,38.91268559696157],[-77.07927522034132,38.91253305571118],[-77.07940509230555,38.9122283726464],[-77.07953476395595,38.91197445537311],[-77.07953470712202,38.9119234897292],[-77.07946973004633,38.9119235339406],[-77.07940469645207,38.91187281233668],[-77.0793396629503,38.91182209069608],[-77.07914436329686,38.91172049164351],[-77.07907932989751,38.91166956999133],[-77.07894926426242,38.91156852603812],[-77.07888417499328,38.9114668384927],[-77.07881883009648,38.91136515108173],[-77.07875374119894,38.91126346345989],[-77.07868859691978,38.91111140974391],[-77.07855836422947,38.91085726851856],[-77.07842818894893,38.91065449252369],[-77.07829795802077,38.91040035098691],[-77.0781675282864,38.91019737499087],[-77.078102330203,38.90999415539056],[-77.07803724357805,38.90989246734417],[-77.0779721020786,38.9097404131907],[-77.07790707132162,38.90968949086771],[-77.0779069047514,38.90953699359913],[-77.07790673861852,38.90938489605709],[-77.0779066274998,38.90928316458441],[-77.07790646093147,38.90913066730456],[-77.07784111956889,38.9090289793035],[-77.07784100919869,38.90892784742035],[-77.07784089817443,38.90882611593919],[-77.07784073174771,38.90867361864656],[-77.07784062072426,38.90857188716065],[-77.07784051013734,38.9084705554037],[-77.07784034371228,38.90831805810127],[-77.07784028831013,38.90826729228796],[-77.07784012232224,38.90811519471067],[-77.07783990027912,38.90791173171637],[-77.07783951225197,38.90755617112189],[-77.07777462867092,38.90740371689249],[-77.07777435189833,38.90714988777908],[-77.07777413026375,38.90694662461446],[-77.07777396442,38.90679452700068],[-77.07777390884834,38.90674356130789],[-77.07774201535287,38.90658329031425]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000049,"geom:area_square_m":473234.647724,"geom:bbox":"-77.079534764,38.9058324826,-77.0690641585,38.9126867736","geom:latitude":38.90948,"geom:longitude":-77.074344,"iso:country":"US","lbl:latitude":38.909013,"lbl:longitude":-77.074758,"lbl:max_zoom":18,"mps:latitude":38.909013,"mps:longitude":-77.074758,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["جامعة جورجتاون"],"name:arz_x_preferred":["جامعة جورجتاون"],"name:azb_x_preferred":["جورج‌تاون بیلیم‌یوردو"],"name:bel_x_preferred":["Джорджтаўнскі ўніверсітэт"],"name:bul_x_preferred":["Джорджтаунски университет"],"name:ces_x_preferred":["Georgetownská univerzita"],"name:dan_x_preferred":["Georgetown University"],"name:deu_x_preferred":["Georgetown University"],"name:epo_x_preferred":["Universitato Georgetown"],"name:est_x_preferred":["Georgetowni Ülikool"],"name:eus_x_preferred":["Georgetown Unibertsitatea"],"name:fas_x_preferred":["دانشگاه جرج‌تاون"],"name:fin_x_preferred":["Georgetownin yliopisto"],"name:heb_x_preferred":["אוניברסיטת ג'ורג'טאון"],"name:hrv_x_preferred":["Sveučilište Georgetown"],"name:hun_x_preferred":["Georgetowni Egyetem"],"name:hye_x_preferred":["Ջորջթաունի համալսարան"],"name:ind_x_preferred":["Universitas Georgetown"],"name:jpn_x_preferred":["ジョージタウン大学"],"name:kor_x_preferred":["조지타운 대학교"],"name:lat_x_preferred":["Universitas Georgiopolitana"],"name:lav_x_preferred":["Džordžtaunas Universitāte"],"name:lit_x_preferred":["Džordžtauno universitetas"],"name:mya_x_preferred":["ဂျော့ဂျ်တောင်း တက္ကသိုလ်"],"name:nld_x_preferred":["Universiteit van Georgetown"],"name:nor_x_preferred":["Georgetown University"],"name:pol_x_preferred":["Georgetown University"],"name:ron_x_preferred":["Universitatea Georgetown"],"name:rus_x_preferred":["Джорджтаунский университет"],"name:swe_x_preferred":["Georgetown University"],"name:tam_x_preferred":["ஜார்ஜ்டவுன் பல்கலைக்கழகம்"],"name:tgl_x_preferred":["Unibersidad ng Georgetown"],"name:tur_x_preferred":["Georgetown Üniversitesi"],"name:ukr_x_preferred":["Джорджтаунський університет"],"name:vie_x_preferred":["Đại học Georgetown"],"name:wuu_x_preferred":["乔治城大学"],"name:zho_x_preferred":["乔治城大学"],"reversegeo:latitude":38.909013,"reversegeo:longitude":-77.074758,"src:geom":"wapo","wapo:quadrant":"NW","wapo:subhood":"Georgetown University","wof:belongsto":[85821305,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1d47191c5ff85d87782e01628c5ba3f5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723621,"neighbourhood_id":85821305,"region_id":85688741}],"wof:id":1108723621,"wof:lastmodified":1566623882,"wof:name":"Georgetown University","wof:parent_id":85821305,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723623.geojson b/fixtures/microhoods/1108723623.geojson new file mode 100644 index 0000000..e344e74 --- /dev/null +++ b/fixtures/microhoods/1108723623.geojson @@ -0,0 +1 @@ +{"id":1108723623,"type":"Feature","bbox":[-76.98558184463457,38.87677945317493,-76.9772746414623,38.88756851453203],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.98558173147852,38.87733947933462],[-76.98555010861952,38.88756851453203],[-76.9772746414623,38.88756592174718],[-76.97727467373835,38.88746458957657],[-76.9772747385448,38.88726112576505],[-76.97727480328724,38.88705786181254],[-76.97727483556282,38.8869565296329],[-76.97727486796562,38.886854797719],[-76.97727488413518,38.8868040316945],[-76.97727490036837,38.88675306580331],[-76.977274997385,38.88644846964402],[-76.97727506199864,38.8862456053951],[-76.97727509440078,38.88614387346853],[-76.97727512680288,38.88604214154017],[-76.97727520777582,38.88578791164448],[-76.97727532102239,38.88543234953084],[-76.97727535336017,38.88533081745609],[-76.97727536959269,38.88527985155176],[-76.9772754666053,38.88497525531409],[-76.97727556361713,38.88467065906019],[-76.97727559601785,38.88456892710565],[-76.97727562841851,38.88446719514931],[-76.97727566069175,38.88436586292381],[-76.97727570926055,38.88421336491636],[-76.97727572542891,38.88416259886843],[-76.97727574166088,38.8841116329537],[-76.97727577399745,38.88401010085558],[-76.97727583867034,38.88380703665392],[-76.97727585483848,38.88375627060243],[-76.9772758872384,38.88365453863167],[-76.97727591951092,38.88355320639179],[-76.97727595191061,38.88345147441746],[-76.97727612988467,38.88289264805864],[-76.97727614605245,38.88284188199908],[-76.97903056487729,38.88289297622649],[-76.98078544704344,38.8821823533344],[-76.98083827209841,38.88257949655755],[-76.983356997263,38.88156835870981],[-76.9831471397211,38.88124014792746],[-76.98346219399994,38.88113106588538],[-76.98202108368059,38.87893132226849],[-76.98163094227584,38.87872799729966],[-76.98098155480335,38.87842309688887],[-76.9805914190307,38.87822016816268],[-76.98039686344715,38.87811840359423],[-76.98002310002691,38.87789888678086],[-76.98084316795949,38.87767817162559],[-76.9818585971817,38.87738732804701],[-76.98300954037154,38.87707011303051],[-76.98416017655659,38.8769379630797],[-76.98497252573056,38.87683234100741],[-76.98558184463457,38.87677945317493],[-76.98558173147852,38.87733947933462]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00006,"geom:area_square_m":578676.727195,"geom:bbox":"-76.9855818446,38.8767794532,-76.9772746415,38.8875685145","geom:latitude":38.883321,"geom:longitude":-76.982193,"iso:country":"US","lbl:latitude":38.883576,"lbl:longitude":-76.980121,"lbl:max_zoom":18,"mps:latitude":38.884702,"mps:longitude":-76.98269,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":38.884702,"reversegeo:longitude":-76.98269,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85809405,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"908d3373f7ef33ca124bb6677d7248c6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723623,"neighbourhood_id":85809405,"region_id":85688741}],"wof:id":1108723623,"wof:lastmodified":1566623882,"wof:name":"Hill East","wof:parent_id":85809405,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869337],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723637.geojson b/fixtures/microhoods/1108723637.geojson new file mode 100644 index 0000000..1f51ecb --- /dev/null +++ b/fixtures/microhoods/1108723637.geojson @@ -0,0 +1 @@ +{"id":1108723637,"type":"Feature","bbox":[-76.99378465356948,38.85520324264771,-76.98455985881208,38.86333177186127],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.98691406489351,38.85621423518158],[-76.98699468739804,38.85619563293073],[-76.98707055760316,38.85617113555589],[-76.98712237140178,38.85614519714647],[-76.98716678322917,38.85611397497908],[-76.98720379308534,38.85607746905374],[-76.9872408029415,38.85603856139601],[-76.98727781279766,38.85599725200586],[-76.98731482265381,38.85595354088333],[-76.98735183250999,38.85590742802841],[-76.9873845245496,38.85585939376674],[-76.98741289877265,38.85580943809831],[-76.98743695517916,38.85575756102315],[-76.9874566937691,38.85570376254123],[-76.98748013334469,38.8556514050557],[-76.98750727390586,38.85560048856654],[-76.98753811545268,38.85555101307376],[-76.9875726579851,38.85550297857737],[-76.98760411636285,38.85546070820772],[-76.9876324905859,38.8554242019648],[-76.98765778065427,38.85539345984864],[-76.98767998656795,38.85536848185922],[-76.98770034198884,38.85534446455486],[-76.98771884691692,38.85532140793553],[-76.98773550135219,38.85529931200126],[-76.98775030529467,38.85527817675205],[-76.98777559536305,38.85525944323305],[-76.98781137155733,38.85524311144427],[-76.98785763387752,38.8552291813857],[-76.98791438232365,38.85521765305737],[-76.98799457034532,38.85520948715825],[-76.98809819794258,38.85520468368837],[-76.98822526511539,38.85520324264771],[-76.98837577186379,38.85520516403629],[-76.98855465283523,38.85520708542482],[-76.98876190802973,38.85520900681328],[-76.98899753744729,38.8552109282017],[-76.98926154108791,38.85521284959006],[-76.9894737309299,38.85521477097837],[-76.98963410697327,38.85521669236664],[-76.98974266921802,38.85521861375485],[-76.98979941766413,38.85522053514301],[-76.989858633434,38.85522341722494],[-76.9899203165276,38.85522726000065],[-76.98998446694495,38.85523206347011],[-76.99005108468603,38.85523782763336],[-76.99011276777964,38.85524455248943],[-76.99016951622575,38.85525223803834],[-76.99022133002438,38.85526088428009],[-76.99026820917551,38.85527049121467],[-76.99031693881946,38.85528201953289],[-76.99036751895622,38.85529546923476],[-76.99041994958579,38.85531084032027],[-76.99047423070814,38.85532813278944],[-76.99052419401397,38.8553449449087],[-76.99056983950322,38.85536127667807],[-76.99061116717594,38.85537712809754],[-76.9906481770321,38.85539249916712],[-76.99068642055013,38.85540738988804],[-76.99072589773003,38.85542180026033],[-76.99076660857182,38.85543573028396],[-76.99080855307547,38.85544917995893],[-76.99085604905756,38.85546262963137],[-76.99090909651804,38.85547607930126],[-76.99096769545696,38.85548952896861],[-76.99103184587432,38.85550297863342],[-76.99110833291037,38.85551498726157],[-76.99119715656516,38.85552555485307],[-76.99129831683867,38.8555346814079],[-76.9914118137309,38.85554236692608],[-76.99154751653683,38.85555149347692],[-76.99170542525646,38.85556206106042],[-76.99188553988978,38.85557406967658],[-76.99208786043678,38.8555875193254],[-76.99230066710972,38.85560144931571],[-76.99252395990855,38.8556158596475],[-76.99281880509596,38.85563459307447],[-76.99319695200661,38.85565838895411],[-76.99333042442402,38.8558197060292],[-76.99346046225607,38.85658200722257],[-76.99333026300964,38.85754715885367],[-76.99333018707138,38.85835981900672],[-76.99372033626396,38.86049342279944],[-76.99378465356948,38.86166144972442],[-76.9934596924385,38.86211702344681],[-76.99341252922606,38.86217066722043],[-76.99336005141778,38.86221976812968],[-76.99329347526786,38.86227118754627],[-76.99323269865404,38.86230914336805],[-76.9927885803801,38.86253968658832],[-76.99263543113936,38.8626155955017],[-76.99119051695456,38.86333177186127],[-76.99049119314462,38.86250246855268],[-76.98965689734459,38.86176169018823],[-76.98931872843342,38.86151482386377],[-76.98848397355772,38.86059755426701],[-76.98825829456965,38.86033290768668],[-76.98800294407656,38.86018817790852],[-76.98642456402685,38.85912205996658],[-76.98514463636656,38.85825753190613],[-76.98482003841285,38.85805402531887],[-76.98468995929522,38.85790190937083],[-76.98455985881208,38.85785112596052],[-76.98468999200529,38.8577494106736],[-76.9847551862947,38.85769845305819],[-76.98488455202698,38.85759693731898],[-76.98501469491022,38.85744465525342],[-76.98520975408597,38.85734314756293],[-76.98533988542697,38.85724143154308],[-76.98540507878842,38.85719047356049],[-76.98546950507769,38.85714011504737],[-76.98559963567838,38.85703839873456],[-76.98559964592036,38.85698763245098],[-76.98566457301035,38.85698764044107],[-76.98566458320613,38.85693687415705],[-76.98572951024995,38.85693688211105],[-76.98585963005259,38.85688593178989],[-76.98592483272894,38.85678420722875],[-76.98605469645724,38.85673345652539],[-76.9861193775708,38.85668269794581],[-76.98618431417088,38.85663213922752],[-76.98631443305501,38.85658138826421],[-76.98637936946292,38.85653062956932],[-76.98650897682779,38.85647967846139],[-76.98657442423773,38.85642891971622],[-76.9867040312787,38.85637796839094],[-76.9867040407351,38.85632720210169],[-76.98676922284059,38.85632720950661],[-76.98683415869384,38.85627645055661],[-76.98689908513707,38.8562764578602],[-76.98689909441804,38.85622589143735],[-76.98691406489351,38.85621423518158]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000045,"geom:area_square_m":437989.695975,"geom:bbox":"-76.9937846536,38.8552032426,-76.9845598588,38.8633317719","geom:latitude":38.858674,"geom:longitude":-76.990131,"iso:country":"US","lbl:latitude":38.858233,"lbl:longitude":-76.990218,"lbl:max_zoom":18,"mps:latitude":38.858233,"mps:longitude":-76.990218,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["Hillsdale"],"name:ceb_x_preferred":["Hillsdale"],"name:deu_x_preferred":["Hillsdale"],"name:fas_x_preferred":["هیلزدیل"],"name:ita_x_preferred":["Hillsdale"],"name:nld_x_preferred":["Hillsdale"],"name:pol_x_preferred":["Hillsdale"],"name:por_x_preferred":["Hillsdale"],"name:rus_x_preferred":["Хилсдейл"],"name:spa_x_preferred":["Hillsdale"],"name:srp_x_preferred":["Хилсдејл"],"name:swe_x_preferred":["Hillsdale"],"name:ukr_x_preferred":["Гіллсдейл"],"name:urd_x_preferred":["ہلزڈیل"],"name:vol_x_preferred":["Hillsdale"],"reversegeo:latitude":38.858233,"reversegeo:longitude":-76.990218,"src:geom":"mz","wof:belongsto":[420510991,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a05f6e6a6d3359adfbca099f9d3eef38","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723637,"neighbourhood_id":420510991,"region_id":85688741}],"wof:id":1108723637,"wof:lastmodified":1566623888,"wof:name":"Hillsdale","wof:parent_id":420510991,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420510967,420781791],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723641.geojson b/fixtures/microhoods/1108723641.geojson new file mode 100644 index 0000000..c3c431d --- /dev/null +++ b/fixtures/microhoods/1108723641.geojson @@ -0,0 +1 @@ +{"id":1108723641,"type":"Feature","bbox":[-77.02011954032588,38.89178335726009,-77.01430243550061,38.89974267307977],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.018848834331,38.89974267307977],[-77.01486331026518,38.89970710488554],[-77.01430243550061,38.89951945943196],[-77.01432838182943,38.89208822557948],[-77.0146461287714,38.89208818635809],[-77.01497092394105,38.89208814518263],[-77.01503588297491,38.89208813683918],[-77.0152310158207,38.89208811155869],[-77.01555605566448,38.89203730274425],[-77.01581589161445,38.89203726785207],[-77.01627082544525,38.89188450769383],[-77.01640097563609,38.89178335726009],[-77.01724575656674,38.8920370655003],[-77.01757081974907,38.89208778303647],[-77.01854605176399,38.89239262787481],[-77.01991106375391,38.89274796487531],[-77.02011954032588,38.89281578518257],[-77.02007436564256,38.89974197363414],[-77.018848834331,38.89974267307977]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000043,"geom:area_square_m":418153.435328,"geom:bbox":"-77.0201195403,38.8917833573,-77.0143024355,38.8997426731","geom:latitude":38.895954,"geom:longitude":-77.017164,"iso:country":"US","lbl:latitude":38.895663,"lbl:longitude":-77.016057,"lbl:max_zoom":18,"mps:latitude":38.895992,"mps:longitude":-77.017203,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Judiciary Square"],"name:eng_x_preferred":["Judiciary Square"],"name:eng_x_variant":["Judiciary Sq","Judiciarysquare"],"name:zho_x_preferred":["司法廣場"],"reversegeo:latitude":38.895992,"reversegeo:longitude":-77.017203,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6303071"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6dd3b869b434ef3742fcb7e607801f0d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723641,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723641,"wof:lastmodified":1566623888,"wof:name":"Judiciary Square","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85827673],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723659.geojson b/fixtures/microhoods/1108723659.geojson new file mode 100644 index 0000000..0dea471 --- /dev/null +++ b/fixtures/microhoods/1108723659.geojson @@ -0,0 +1 @@ +{"id":1108723659,"type":"Feature","bbox":[-77.07050746850061,38.91879955398111,-77.06345397654428,38.92416538733092],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.07037829846574,38.92254600382494],[-77.07033,38.922714],[-77.070276,38.922799],[-77.070247,38.922841],[-77.070186,38.922923],[-77.070122,38.923004],[-77.070053,38.923082],[-77.069979,38.923161],[-77.0699,38.923241],[-77.06986,38.92328],[-77.069775,38.923356],[-77.069732,38.923393],[-77.069643,38.923465],[-77.069547,38.923537],[-77.069493,38.923575],[-77.069339,38.923675],[-77.069229,38.923739],[-77.069117,38.923799],[-77.069003,38.923857],[-77.068889,38.923912],[-77.068831,38.923938],[-77.068712,38.923987],[-77.068591,38.924032],[-77.068467,38.924074],[-77.068317,38.924122],[-77.068215,38.924151],[-77.06815800403515,38.92416538733092],[-77.06803397654429,38.92411206150151],[-77.06788597654428,38.92406606150151],[-77.06783197654428,38.92405106150152],[-77.06774297654428,38.92403006150151],[-77.06769797654428,38.92402106150151],[-77.06757897654428,38.92400206150151],[-77.06750797654428,38.92399306150151],[-77.06729397654428,38.92397506150152],[-77.06715097654428,38.92396506150151],[-77.0670149765443,38.92395006150151],[-77.06688697654428,38.92392406150152],[-77.06675197654428,38.92390006150151],[-77.06666997654428,38.92388106150151],[-77.06659397654428,38.92386506150152],[-77.06655797654427,38.92385506150151],[-77.06651797654428,38.92384606150151],[-77.06643297654428,38.92382506150151],[-77.06640297654428,38.92381506150151],[-77.06633097654428,38.92379406150151],[-77.06630397654428,38.92378406150151],[-77.06623697654427,38.92376206150151],[-77.06620997654429,38.92375206150151],[-77.06617897654428,38.92374206150151],[-77.06613997654428,38.92372606150151],[-77.06608997654428,38.92371206150151],[-77.06590897654428,38.92363606150151],[-77.06578597654428,38.92358606150152],[-77.06569497654428,38.92354206150151],[-77.06559097654429,38.92348906150151],[-77.06548297654427,38.92342806150151],[-77.06537297654428,38.92336306150151],[-77.06532397654428,38.92333206150151],[-77.06527097654428,38.92330006150151],[-77.06518197654428,38.92323906150151],[-77.06513597654428,38.92320606150151],[-77.06500697654428,38.92310806150152],[-77.06489497654428,38.92301506150152],[-77.06476197654428,38.92289406150152],[-77.06472697654428,38.92285906150151],[-77.06469097654428,38.92282506150151],[-77.06456397654428,38.92268106150151],[-77.06451897654428,38.92262706150152],[-77.06448297654428,38.92257906150152],[-77.06444997654428,38.92253906150151],[-77.06441197654428,38.92248606150152],[-77.06437897654428,38.92244206150151],[-77.06432197654428,38.92235206150152],[-77.06425797654428,38.92224506150151],[-77.06422997654428,38.92219606150152],[-77.06420997654428,38.92215306150151],[-77.06418797654428,38.92211706150152],[-77.06417397654428,38.92208306150151],[-77.06412597654428,38.92198506150152],[-77.06409397654429,38.92190806150151],[-77.06406197654428,38.92182306150151],[-77.06403497654428,38.92174306150152],[-77.06400797654427,38.92165006150152],[-77.06398397654428,38.92154706150151],[-77.06395797654427,38.92141906150152],[-77.06391797654427,38.92128606150151],[-77.06389297654428,38.92122306150151],[-77.06386197654427,38.92116406150151],[-77.06379597654428,38.92103306150151],[-77.06377097654428,38.92098306150152],[-77.06368097654428,38.92087106150151],[-77.06358997654428,38.92077506150152],[-77.06356197654428,38.92074806150151],[-77.06349397654428,38.92069006150151],[-77.06345397654428,38.92065806150151],[-77.06349693218779,38.9205273800658],[-77.06356577582133,38.92036351712422],[-77.06366198781572,38.92020479658564],[-77.06387694474738,38.91990417854451],[-77.06410501197239,38.91962480772168],[-77.06432417982049,38.91937950034397],[-77.06449661500535,38.91922270742234],[-77.06467580352584,38.91909174328573],[-77.06496113150388,38.91893257947314],[-77.06502026929691,38.91895893149769],[-77.06552824700877,38.91882633702186],[-77.06623920200174,38.91879955398111],[-77.06701828442746,38.91885207402582],[-77.06781085584942,38.91909825037237],[-77.06783904170976,38.91914380326427],[-77.06894452139595,38.91939738471378],[-77.06979042041544,38.92000667105557],[-77.07018143263582,38.92086985407926],[-77.07050746850061,38.92173327474875],[-77.07037829846574,38.92254600382494]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":265509.818,"geom:bbox":"-77.0705074685,38.918799554,-77.0634539765,38.9241653873","geom:latitude":38.921391,"geom:longitude":-77.067095,"iso:country":"US","lbl:latitude":38.921417,"lbl:longitude":-77.067094,"lbl:max_zoom":18,"mps:latitude":38.921417,"mps:longitude":-77.067094,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.921417,"reversegeo:longitude":-77.067094,"src:geom":"mz","wof:belongsto":[85869563,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ac77d11b085bc6855e8cb4a784164c13","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723659,"neighbourhood_id":85869563,"region_id":85688741}],"wof:id":1108723659,"wof:lastmodified":1566623881,"wof:name":"Naval Observatory","wof:parent_id":85869563,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420510989],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723805.geojson b/fixtures/microhoods/1108723805.geojson new file mode 100644 index 0000000..7281ceb --- /dev/null +++ b/fixtures/microhoods/1108723805.geojson @@ -0,0 +1 @@ +{"id":1108723805,"type":"Feature","bbox":[-77.02590777668073,38.89719148388198,-77.02007436564256,38.89974197363414],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.02009004847919,38.89733747903652],[-77.02158632010602,38.89733747903652],[-77.02174204827088,38.89733747903652],[-77.021810179343,38.89732774602622],[-77.0218460698185,38.89729854699531],[-77.02187283559684,38.89725961495409],[-77.02189908188616,38.89721421509704],[-77.02191724245634,38.89720060857913],[-77.02199510653877,38.89719148388198],[-77.02371784936247,38.89719148388198],[-77.02385411150671,38.89720121689228],[-77.02393197558914,38.89723041592319],[-77.02401957268187,38.89729854699531],[-77.0241071697746,38.89734721204683],[-77.02420449987764,38.89738614408804],[-77.02427688914177,38.89738979396691],[-77.02588831066012,38.89738614408804],[-77.02590777668073,38.89972206656086],[-77.02302394672137,38.89974029022419],[-77.02007436564256,38.89974197363414],[-77.02009004847919,38.89733747903652]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":136353.615893,"geom:bbox":"-77.0259077767,38.8971914839,-77.0200743656,38.8997419736","geom:latitude":38.898518,"geom:longitude":-77.022972,"iso:country":"US","lbl:latitude":38.895086,"lbl:longitude":-77.022647,"lbl:max_zoom":18,"mps:latitude":38.898466,"mps:longitude":-77.022972,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Penn Quarter"],"name:eng_x_variant":["Pennquarter"],"name:urd_x_preferred":["پین کوارٹر"],"name:zho_x_preferred":["潘恩區"],"reversegeo:latitude":38.898466,"reversegeo:longitude":-77.022972,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q12065534"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"62974770cc40f967c3bbe4715abf1c9f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723805,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723805,"wof:lastmodified":1566623924,"wof:name":"Penn Quarter","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869581],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723807.geojson b/fixtures/microhoods/1108723807.geojson new file mode 100644 index 0000000..082b210 --- /dev/null +++ b/fixtures/microhoods/1108723807.geojson @@ -0,0 +1 @@ +{"id":1108723807,"type":"Feature","bbox":[-77.0346793511,38.9104834804,-77.0346793511,38.9104834804],"geometry":{"type":"Point","coordinates":[-77.0346793511,38.9104834804]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-77.0346793511,38.9104834804,-77.0346793511,38.9104834804","geom:latitude":38.910483,"geom:longitude":-77.034679,"iso:country":"US","lbl:latitude":38.910483,"lbl:longitude":-77.034679,"lbl:max_zoom":18,"mps:latitude":38.907247,"mps:longitude":-77.036545,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Scott Cir"],"name:nld_x_preferred":["Scott Circle"],"name:zho_x_preferred":["斯科特圆环"],"reversegeo:latitude":38.907247,"reversegeo:longitude":-77.036545,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866031,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b8fde1a6c1bad25abe89f107dd9e0080","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723807,"neighbourhood_id":85866031,"region_id":85688741}],"wof:id":1108723807,"wof:lastmodified":1566623924,"wof:name":"Scott Circle","wof:parent_id":85866031,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85847421],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723809.geojson b/fixtures/microhoods/1108723809.geojson new file mode 100644 index 0000000..1a28276 --- /dev/null +++ b/fixtures/microhoods/1108723809.geojson @@ -0,0 +1 @@ +{"id":1108723809,"type":"Feature","bbox":[-77.00632276399281,38.84850527981114,-76.99586093131997,38.86054432995957],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.99610971964529,38.85579964512254],[-76.99618895897359,38.85581983433341],[-76.99625414061637,38.85581983644288],[-76.99625413792079,38.85587120233882],[-76.9965135816676,38.85597234322692],[-76.99670860875221,38.85612484763239],[-76.99709841394872,38.85632792313437],[-76.99742354845782,38.85658216194137],[-76.99774817566767,38.85678503393466],[-76.99813773179822,38.856988505674],[-76.99839769122909,38.85719137479817],[-76.99865739746134,38.85734407665425],[-76.99878750618639,38.85744561064003],[-76.99898254287851,38.8575473449301],[-76.99937210624516,38.85780117906837],[-77.00015200805309,38.85825847687312],[-77.00106126819512,38.85886806713698],[-77.00242531188648,38.85968070674711],[-77.00268554894534,38.8598837660948],[-77.00268555659335,38.86008703099832],[-77.00268556232375,38.8602393297711],[-77.00262037850871,38.86029009750896],[-77.0025554575161,38.86054432995957],[-77.00268557188954,38.86049356078467],[-77.00281568808055,38.86049355771936],[-77.0028806183605,38.86049355613547],[-77.00301073669291,38.86054431910737],[-77.00301073455151,38.86049355285281],[-77.00307514918634,38.86039181879635],[-77.00307514699048,38.86034085267339],[-77.0031400726647,38.86023931843221],[-77.00314007044007,38.86018875204222],[-77.00314006820668,38.86013798578462],[-77.00320524922442,38.86003625162972],[-77.00320524694466,38.85998548537088],[-77.00320524237615,38.85988375298469],[-77.0032701721014,38.85988375118417],[-77.00327016979378,38.85983338465834],[-77.00340026297698,38.85937568511211],[-77.00340025814963,38.85927435244997],[-77.00346518239127,38.85917281800992],[-77.00346517745233,38.85907108561001],[-77.00346517251342,38.85896935320831],[-77.00352984076997,38.85886801860197],[-77.00352983573889,38.85876628619683],[-77.00359475933405,38.85866475167616],[-77.00359475421048,38.85856301926758],[-77.0036599331419,38.85846128483218],[-77.00365992794596,38.85835995215461],[-77.00372485363572,38.85830918382815],[-77.00372484832674,38.85820745141358],[-77.00378977112558,38.85810571690784],[-77.00378976573472,38.85800418435703],[-77.00385494389946,38.85790284953777],[-77.0038549384051,38.85780111711633],[-77.00391986064892,38.85769938253129],[-77.00391985507304,38.85759784997369],[-77.00398503268207,38.8574965150749],[-77.00398502700233,38.85739478264658],[-77.00404944034346,38.85734401414901],[-77.00404943457195,38.85724228171813],[-77.0041143560533,38.85714094675004],[-77.00411435312706,38.85709018046674],[-77.00417952997299,38.85698844571631],[-77.00417952700036,38.85693767943174],[-77.00424444799621,38.85683594465166],[-77.00424444496556,38.85678497849852],[-77.00430936574207,38.85668344354703],[-77.0043093626892,38.85663287712714],[-77.00437453572832,38.85648037597172],[-77.00443945603031,38.85637864107549],[-77.00450462858458,38.85622653957562],[-77.0045046221644,38.85612480712587],[-77.00456903074036,38.85602327203861],[-77.00463445830852,38.85587117044729],[-77.00469912207184,38.85576943540654],[-77.00476403787634,38.85561693402214],[-77.0047640310865,38.85551520156221],[-77.00482894995551,38.85541346643312],[-77.00489412079857,38.85526136469148],[-77.00495903925133,38.85515962948578],[-77.00502421313058,38.85505789423132],[-77.00502420601218,38.85495676136392],[-77.0050891240025,38.85485502608076],[-77.00515353058682,38.85475329078241],[-77.00521870381787,38.85465155541253],[-77.0052836212534,38.8545498200161],[-77.00534879033913,38.85439771799896],[-77.00534878273098,38.85429618538584],[-77.00547862420794,38.85419444688246],[-77.00554379252267,38.85404194501281],[-77.00560870897189,38.8539406091601],[-77.0056731099559,38.85378810724872],[-77.0057387928106,38.85368677128214],[-77.00580319741489,38.85358503560578],[-77.00586836447984,38.8534325335396],[-77.00593328833688,38.8534325302581],[-77.00593328411715,38.85338176394367],[-77.00599820364532,38.85333079444389],[-77.00606337009546,38.85317869199721],[-77.0061282849877,38.85307695610643],[-77.00632276399281,38.85267061531557],[-77.0052185069949,38.8519593417636],[-77.00424412483406,38.85140095163342],[-77.00372447458801,38.85104500543642],[-77.00294462870461,38.85058773095074],[-77.00190536093598,38.84997855645146],[-77.00132081232137,38.84962300024874],[-77.0008661102815,38.84931800668861],[-77.00054150816564,38.84911494324771],[-77.00015198815026,38.84891167913257],[-76.99995697341566,38.84875958003322],[-76.99989179821941,38.84875957999101],[-76.99956720141668,38.8485561140874],[-76.99612443009102,38.84850528420258],[-76.99599433575104,38.84850527981114],[-76.99586093131997,38.85269689578845],[-76.99610971964529,38.85579964512254]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000077,"geom:area_square_m":742965.626133,"geom:bbox":"-77.006322764,38.8485052798,-76.9958609313,38.86054433","geom:latitude":38.8537,"geom:longitude":-77.00049,"iso:country":"US","lbl:latitude":38.853785,"lbl:longitude":-77.000487,"lbl:max_zoom":18,"mps:latitude":38.853785,"mps:longitude":-77.000487,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.853785,"reversegeo:longitude":-77.000487,"src:geom":"wapo","wapo:quadrant":"SE","wapo:subhood":"St. Elizabeths Hospital West","wof:belongsto":[85869701,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"57ef640b390355626e4495ee867953d9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723809,"neighbourhood_id":85869701,"region_id":85688741}],"wof:id":1108723809,"wof:lastmodified":1566623923,"wof:name":"St. Elizabeths Hospital West","wof:parent_id":85869701,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723811.geojson b/fixtures/microhoods/1108723811.geojson new file mode 100644 index 0000000..5c8eaaa --- /dev/null +++ b/fixtures/microhoods/1108723811.geojson @@ -0,0 +1 @@ +{"id":1108723811,"type":"Feature","bbox":[-76.99618944708578,38.84403484636336,-76.98508166167477,38.85579964512254],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.99599433575104,38.84850527981114],[-76.99599435285383,38.84820048180406],[-76.99599435570241,38.84814971544603],[-76.99599436141078,38.84804798286111],[-76.99599436708549,38.84794684987712],[-76.99599437565357,38.84779415106025],[-76.99599438705897,38.84759088574447],[-76.99599438991872,38.84753991951379],[-76.99599439276726,38.84748915315028],[-76.99599439845308,38.84738782028954],[-76.99599440416132,38.84728608769196],[-76.99605958081442,38.84723532354447],[-76.9960595836166,38.84718455717839],[-76.99605958642977,38.84713359094432],[-76.99605958923193,38.84708282457741],[-76.99605959203407,38.8470320582101],[-76.99605959482517,38.84698149171],[-76.9961245155714,38.84693072751507],[-76.9961245183382,38.84687976127892],[-76.99612452109417,38.84682899490989],[-76.99612452385013,38.84677822854046],[-76.99618944165552,38.84677823067763],[-76.99618944437599,38.84672726444016],[-76.99618944708578,38.84667649806993],[-76.99612453762988,38.84652439668709],[-76.99553978736506,38.84621917796819],[-76.99553979051184,38.84616881132897],[-76.99547487326065,38.84616880883057],[-76.99547487647855,38.8461180424557],[-76.99540995927354,38.84611803992117],[-76.99476030591693,38.8457112819509],[-76.99456582258271,38.84555897392175],[-76.99450065030855,38.84555897086967],[-76.99404625883528,38.84525435029219],[-76.99398108683926,38.84525434695003],[-76.99398109111937,38.84520358056769],[-76.99339662110826,38.84484758467561],[-76.9933314494836,38.84484758097073],[-76.99235752383595,38.84418735835243],[-76.99229235281405,38.84418735406746],[-76.99216228308508,38.84403484636336],[-76.99177278537137,38.84408558595372],[-76.99164269311942,38.84413654297189],[-76.9915128623134,38.8441365336045],[-76.9909937818534,38.84423802749244],[-76.99066868656996,38.84428896821596],[-76.9906035154554,38.8442889629881],[-76.99047342202496,38.84433971883378],[-76.99034359084962,38.84433970816595],[-76.98988891181124,38.84444100257969],[-76.98982450727858,38.84444099698329],[-76.98975933602532,38.84444099128417],[-76.98969442034559,38.84444098557118],[-76.98962924909235,38.84444097979939],[-76.9894342389664,38.8444917287004],[-76.98930491866221,38.84449171692358],[-76.98917483163689,38.84449170493245],[-76.98859006269855,38.8445933818837],[-76.98852513872052,38.84464414190761],[-76.98839505141758,38.84464412904742],[-76.98820055097525,38.84469507580427],[-76.98800553913964,38.84474582231643],[-76.98768095056138,38.84479675476744],[-76.98748593814872,38.8448471006754],[-76.98742056060583,38.84601571975599],[-76.9871604904221,38.84682835314597],[-76.9852115222375,38.84880900995889],[-76.98508166167477,38.84891072600967],[-76.98514657085562,38.84896150063897],[-76.98527664504319,38.84906324968776],[-76.9853415545014,38.84911402420739],[-76.98527662406089,38.84916498225461],[-76.98540669892716,38.84926613155255],[-76.98560117273777,38.84941885448333],[-76.98586107894883,38.84957138516189],[-76.98618564141478,38.84977428953732],[-76.98638063918627,38.84987604500673],[-76.98657565664494,38.84987606759522],[-76.98664032167387,38.84987607501328],[-76.98735487869689,38.85033345141751],[-76.98832910579267,38.8509431486696],[-76.989952762293,38.85200979238247],[-76.99092754563632,38.85261966769365],[-76.991706825545,38.85307682239378],[-76.99287613992412,38.85383879404979],[-76.99456511487706,38.85485501049699],[-76.99573449194268,38.85556598713691],[-76.99599392810056,38.85576946124427],[-76.99610971964529,38.85579964512254],[-76.99586093131997,38.85269689578845],[-76.99599433575104,38.84850527981114]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000075,"geom:area_square_m":725740.039813,"geom:bbox":"-76.9961894471,38.8440348464,-76.9850816617,38.8557996451","geom:latitude":38.849029,"geom:longitude":-76.991694,"iso:country":"US","lbl:latitude":38.848604,"lbl:longitude":-76.991778,"lbl:max_zoom":18,"mps:latitude":38.848604,"mps:longitude":-76.991778,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.848604,"reversegeo:longitude":-76.991778,"src:geom":"wapo","wapo:quadrant":"SE","wapo:subhood":"St. Elizabeths Hospital East","wof:belongsto":[85869701,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7119ef618c4638f4a0fd5844c17171c2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723811,"neighbourhood_id":85869701,"region_id":85688741}],"wof:id":1108723811,"wof:lastmodified":1566623924,"wof:name":"St. Elizabeths Hospital East","wof:parent_id":85869701,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723817.geojson b/fixtures/microhoods/1108723817.geojson new file mode 100644 index 0000000..92003e6 --- /dev/null +++ b/fixtures/microhoods/1108723817.geojson @@ -0,0 +1 @@ +{"id":1108723817,"type":"Feature","bbox":[-77.01477879324646,38.90243109421532,-77.00905738440791,38.90732752043978],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.00905738440791,38.90243109421532],[-77.01370556365598,38.90245102959537],[-77.01373794026067,38.90250150874907],[-77.01373796963041,38.9026540062656],[-77.01380320389197,38.90270476446029],[-77.01386820228117,38.90285745414279],[-77.0139332206638,38.90311107594631],[-77.01399822958557,38.90331413169108],[-77.0141282184536,38.9035683451596],[-77.01412822850858,38.9036191110339],[-77.01412824865817,38.90372084264676],[-77.01419349423475,38.90382216662053],[-77.01425848428997,38.90392389031847],[-77.01432350515273,38.90417811145294],[-77.01438851611766,38.90438096707588],[-77.01445352757385,38.90458442225206],[-77.01451851857233,38.90468554619456],[-77.01451852894594,38.90473651192424],[-77.01458378646709,38.90488900125528],[-77.01464879882015,38.90509185670736],[-77.01471379068153,38.90519358012877],[-77.01477879324646,38.90534606937052],[-77.0090580061731,38.90732752043978],[-77.00905799333015,38.90722638848913],[-77.00905796104524,38.90697215954559],[-77.0090579352581,38.90676909616724],[-77.00905786429342,38.90621027210713],[-77.00905780622304,38.90575297970111],[-77.00905772234208,38.90509242395173],[-77.00905763851343,38.90443226785474],[-77.00905758047129,38.90397517516756],[-77.00905749659454,38.90331461920619],[-77.00905742568749,38.90275619452889],[-77.00905738440791,38.90243109421532]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":198940.278654,"geom:bbox":"-77.0147787932,38.9024310942,-77.0090573844,38.9073275204","geom:latitude":38.904509,"geom:longitude":-77.01146,"iso:country":"US","lbl:latitude":38.904587,"lbl:longitude":-77.01111,"lbl:max_zoom":18,"mps:latitude":38.904469,"mps:longitude":-77.01146,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Sursum Corda Cooperative"],"reversegeo:latitude":38.904469,"reversegeo:longitude":-77.01146,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108723813,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7646941"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e962701b501e55eb667053b9edc55e38","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723817,"neighbourhood_id":1108723813,"region_id":85688741}],"wof:id":1108723817,"wof:lastmodified":1566623924,"wof:name":"Sursum Corda","wof:parent_id":1108723813,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869719],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723819.geojson b/fixtures/microhoods/1108723819.geojson new file mode 100644 index 0000000..dde9eb9 --- /dev/null +++ b/fixtures/microhoods/1108723819.geojson @@ -0,0 +1 @@ +{"id":1108723819,"type":"Feature","bbox":[-77.0313416906,38.9058096427,-77.0313416906,38.9058096427],"geometry":{"type":"Point","coordinates":[-77.0313416906,38.9058096427]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-77.0313416906,38.9058096427,-77.0313416906,38.9058096427","geom:latitude":38.90581,"geom:longitude":-77.031342,"iso:country":"US","lbl:latitude":38.90581,"lbl:longitude":-77.031342,"lbl:max_zoom":18,"mps:latitude":38.905668,"mps:longitude":-77.03199,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"name:ceb_x_preferred":["Thomas Circle"],"name:eng_x_variant":["Thomas Cir","Thomascircle"],"name:fra_x_preferred":["Rond-point Thomas"],"name:nld_x_preferred":["Thomas Circle"],"name:zho_x_preferred":["托马斯圆环"],"reversegeo:latitude":38.905668,"reversegeo:longitude":-77.03199,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"3f93fe06d916c41aafc9c2c776449b84","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723819,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723819,"wof:lastmodified":1566623924,"wof:name":"Thomas Circle","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85852157],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723821.geojson b/fixtures/microhoods/1108723821.geojson new file mode 100644 index 0000000..8d1ea99 --- /dev/null +++ b/fixtures/microhoods/1108723821.geojson @@ -0,0 +1 @@ +{"id":1108723821,"type":"Feature","bbox":[-77.08107362153068,38.92695437206747,-77.07703524332535,38.93026865651068],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08040834172238,38.93026865651068],[-77.08032946985534,38.93023057388546],[-77.08023036895057,38.93018410012559],[-77.08015446187454,38.93015020160111],[-77.08008136617173,38.93011903681283],[-77.0800110818421,38.93009060576075],[-77.07994360888566,38.93006272144955],[-77.07987894730238,38.93003538387924],[-77.0798170970923,38.93000859304983],[-77.07975805825542,38.92998234896129],[-77.0797039393216,38.92995610486305],[-77.07965474029085,38.9299298607551],[-77.07961046116318,38.92990361663743],[-77.07957110193858,38.92987737251006],[-77.07952822849751,38.92984948811107],[-77.07948184083995,38.92981996344047],[-77.07943193896591,38.92978879849824],[-77.07937852287537,38.9297559932844],[-77.07932510678486,38.92972373481044],[-77.07927169069433,38.92969202307636],[-77.07921827460382,38.92966085808214],[-77.0791648585133,38.92963023982782],[-77.07911355095267,38.92960016831618],[-77.07906435192191,38.92957064354727],[-77.07901726142106,38.92954166552105],[-77.07897227945011,38.92951323423755],[-77.07892308041937,38.92948425618584],[-77.07886966432883,38.92945473136594],[-77.07881203117853,38.92942465977785],[-77.07875018096846,38.92939404142157],[-77.07868481654188,38.92936232953637],[-77.07861593789885,38.92932952412226],[-77.07854354503932,38.92929562517924],[-77.07846763796331,38.92926063270732],[-77.0783945422605,38.92923001428791],[-77.07832425793086,38.92920376992102],[-77.07825678497441,38.92918189960665],[-77.07819212339115,38.92916440334479],[-77.07812324474811,38.92914636031959],[-77.07805014904528,38.92912777053105],[-77.07797283628268,38.92910863397918],[-77.07789130646032,38.92908895066395],[-77.07780907379464,38.92907200114076],[-77.07772613828567,38.9290577854096],[-77.0776424999334,38.92904630347046],[-77.07755815873786,38.92903755532334],[-77.07747944028867,38.92903044745365],[-77.07740634458585,38.92902497986137],[-77.0773388716294,38.9290211525465],[-77.07727702141932,38.92901896550905],[-77.0772221996422,38.92901623171203],[-77.07717440629804,38.92901295115546],[-77.07713364138685,38.92900912383931],[-77.07709990490864,38.92900474976359],[-77.07707319686337,38.92890961265391],[-77.07705351725107,38.92872371251028],[-77.07704086607174,38.92844704933268],[-77.07703524332535,38.92807962312113],[-77.07705492293766,38.92780295992061],[-77.07709990490862,38.92761705973112],[-77.07717018923826,38.92752192255267],[-77.07726577592656,38.92751754838525],[-77.07734871143553,38.92751153390387],[-77.07741899576516,38.92750387910853],[-77.07747662891546,38.92749458399923],[-77.07752161088644,38.92748364857596],[-77.0776256316943,38.92750770639973],[-77.07778869133904,38.92756675747054],[-77.0780107898207,38.92766080178838],[-77.07821614033297,38.92776234831627],[-77.07829192713923,38.92778983935327],[-77.0784300548924,38.92781796341551],[-77.0785512763156,38.92782537916042],[-77.0786791937955,38.92780405578193],[-77.07878883734975,38.92776742120982],[-77.07885631030618,38.9277280548869],[-77.07892546000168,38.92768433716883],[-77.07900461024173,38.92761596550149],[-77.079081510446,38.92752705371864],[-77.07919859499152,38.92737101203542],[-77.07934900345694,38.92718237595898],[-77.07945583563797,38.92705005727217],[-77.07951909153465,38.92697405597501],[-77.07953877114696,38.92695437206747],[-77.07966036303722,38.92699537988834],[-77.07988386720547,38.92709707943759],[-77.08031611583272,38.92731524146676],[-77.08107362153068,38.9277106903066],[-77.08098313832518,38.92792329747114],[-77.08065878599153,38.92868540646406],[-77.08046421039711,38.92904129992755],[-77.08059450900016,38.92909197580345],[-77.0809195302088,38.92914251687462],[-77.08098458063134,38.92919323747306],[-77.08098463828836,38.92924400308849],[-77.08059571465829,38.93015865324382],[-77.08040834172238,38.93026865651068]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":75473.127171,"geom:bbox":"-77.0810736215,38.9269543721,-77.0770352433,38.9302686565","geom:latitude":38.928528,"geom:longitude":-77.079223,"iso:country":"US","lbl:latitude":38.923074,"lbl:longitude":-77.081616,"lbl:max_zoom":18,"mps:latitude":38.928562,"mps:longitude":-77.079393,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":19,"mz:note":"condos?","mz:tier_metro":1,"name:bul_x_preferred":["Уестчестър"],"name:cat_x_preferred":["Westchester"],"name:ceb_x_preferred":["Westchester"],"name:ces_x_preferred":["Westchester"],"name:deu_x_preferred":["Westchester"],"name:eng_x_preferred":["The Westchester"],"name:eng_x_variant":["Westchester"],"name:fra_x_preferred":["Westchester"],"name:ita_x_preferred":["Westchester"],"name:jpn_x_preferred":["ウエストチェスター"],"name:kor_x_preferred":["웨스트체스터"],"name:nld_x_preferred":["Westchester"],"name:pol_x_preferred":["Westchester"],"name:por_x_preferred":["Westchester"],"name:rus_x_preferred":["Уэстчестер"],"name:sco_x_preferred":["Westchester"],"name:spa_x_preferred":["Westchester"],"name:srp_x_preferred":["Вестчестер"],"name:vol_x_preferred":["Westchester"],"reversegeo:latitude":38.928562,"reversegeo:longitude":-77.079393,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85809813,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"95e6e4e1c57f7154c6c93665d75b6bbf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723821,"neighbourhood_id":85809813,"region_id":85688741}],"wof:id":1108723821,"wof:lastmodified":1566623902,"wof:name":"Westchester","wof:parent_id":85809813,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85856725],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723825.geojson b/fixtures/microhoods/1108723825.geojson new file mode 100644 index 0000000..21eda6e --- /dev/null +++ b/fixtures/microhoods/1108723825.geojson @@ -0,0 +1 @@ +{"id":1108723825,"type":"Feature","bbox":[-77.02603252580012,38.91407654803778,-77.02391802837046,38.91561710371968],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.02602952942856,38.91407959497478],[-77.02603252580012,38.91560478507911],[-77.02392430459919,38.91561710371968],[-77.02391802837046,38.91407654803778],[-77.02602952942856,38.91407959497478]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":31116.33373,"geom:bbox":"-77.0260325258,38.914076548,-77.0239180284,38.9156171037","geom:latitude":38.914844,"geom:longitude":-77.024974,"iso:country":"US","lbl:latitude":38.914798,"lbl:longitude":-77.025154,"lbl:max_zoom":18,"mps:latitude":38.914845,"mps:longitude":-77.024972,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"name:ang_x_preferred":["Westmynster"],"name:ara_x_preferred":["وستمنستر"],"name:azb_x_preferred":["وست‌مینستر"],"name:bel_x_preferred":["Вэстмінстэр"],"name:bul_x_preferred":["Уестминстър"],"name:ces_x_preferred":["Westminster"],"name:cor_x_preferred":["Westminster"],"name:cym_x_preferred":["Westminster"],"name:dan_x_preferred":["Westminster"],"name:deu_x_preferred":["Westminster"],"name:ell_x_preferred":["Ουέστμινστερ"],"name:epo_x_preferred":["Westminster"],"name:eus_x_preferred":["Westminster"],"name:fas_x_preferred":["وست‌مینستر"],"name:fin_x_preferred":["Westminster"],"name:fra_x_preferred":["Westminster"],"name:fry_x_preferred":["Westminster"],"name:gle_x_preferred":["Westminster"],"name:heb_x_preferred":["וסטמינסטר"],"name:hin_x_preferred":["वेस्टमिंस्टर"],"name:hye_x_preferred":["Վեսթմինսթեր"],"name:isl_x_preferred":["Westminster"],"name:ita_x_preferred":["Westminster"],"name:jpn_x_preferred":["ウェストミンスター"],"name:kab_x_preferred":["Westminster"],"name:kat_x_preferred":["ვესტმინსტერი"],"name:kir_x_preferred":["Вестминстер"],"name:kor_x_preferred":["웨스트민스터"],"name:mkd_x_preferred":["Вестминстер"],"name:mlg_x_preferred":["Westminster"],"name:nld_x_preferred":["Westminster"],"name:nno_x_preferred":["Westminster"],"name:nor_x_preferred":["Westminster"],"name:pan_x_preferred":["ਵੈਸਟਮਿੰਸਟਰ"],"name:pol_x_preferred":["Westminster"],"name:por_x_preferred":["Westminster"],"name:rus_x_preferred":["Вестминстер"],"name:sco_x_preferred":["Wastmeenster"],"name:slk_x_preferred":["Westminster"],"name:spa_x_preferred":["Westminster"],"name:srp_x_preferred":["Вестминстер"],"name:tam_x_preferred":["வெஸ்ட்மின்ஸ்டர்"],"name:tha_x_preferred":["เวสต์มินสเตอร์"],"name:tur_x_preferred":["Westminster"],"name:ukr_x_preferred":["Вестмінстер"],"name:urd_x_preferred":["ویسٹ منسٹر"],"name:vie_x_preferred":["Westminster"],"name:xmf_x_preferred":["ვესტმინსტერი"],"name:yor_x_preferred":["Westminster"],"name:zho_x_preferred":["西敏"],"reversegeo:latitude":38.914845,"reversegeo:longitude":-77.024972,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866875,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"57f3c4b8efbe0b8e5c4186b1a4bdf4c6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723825,"neighbourhood_id":85866875,"region_id":85688741}],"wof:id":1108723825,"wof:lastmodified":1566623902,"wof:name":"Westminster","wof:parent_id":85866875,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857005],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723831.geojson b/fixtures/microhoods/1108723831.geojson new file mode 100644 index 0000000..efb1325 --- /dev/null +++ b/fixtures/microhoods/1108723831.geojson @@ -0,0 +1 @@ +{"id":1108723831,"type":"Feature","bbox":[-77.08670207248704,38.93454705724228,-77.0836965059213,38.93653181946449],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.0836965059213,38.93544623493017],[-77.08501662640857,38.93456049324557],[-77.08643824681428,38.93454705724228],[-77.08654893349954,38.93475416518335],[-77.08670207248704,38.93501219346711],[-77.08518195266056,38.93653181946449],[-77.08495497654428,38.93636506150151],[-77.08491997654428,38.93633906150151],[-77.08489097654427,38.93631906150151],[-77.08471497654428,38.93619006150151],[-77.08429397654427,38.93588406150151],[-77.0840419765443,38.93569806150151],[-77.0836965059213,38.93544623493017]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":32020.044539,"geom:bbox":"-77.0867020725,38.9345470572,-77.0836965059,38.9365318195","geom:latitude":38.935362,"geom:longitude":-77.085261,"iso:country":"US","lbl:latitude":38.937899,"lbl:longitude":-77.086884,"lbl:max_zoom":18,"mps:latitude":38.93538,"mps:longitude":-77.085239,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"no ref","mz:tier_metro":1,"name:eng_x_variant":["Westover Pl"],"reversegeo:latitude":38.93538,"reversegeo:longitude":-77.085239,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420510947,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"973871076cdef651f9f7a3e887fcc4fc","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723831,"neighbourhood_id":420510947,"region_id":85688741}],"wof:id":1108723831,"wof:lastmodified":1566623898,"wof:name":"Westover Place","wof:parent_id":420510947,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857115],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723835.geojson b/fixtures/microhoods/1108723835.geojson new file mode 100644 index 0000000..2facc4a --- /dev/null +++ b/fixtures/microhoods/1108723835.geojson @@ -0,0 +1 @@ +{"id":1108723835,"type":"Feature","bbox":[-77.04666927871884,38.89873685818846,-77.03649183173314,38.90564610015446],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.04666763891088,38.90133931563076],[-77.04666927871884,38.9055788478441],[-77.0466009903675,38.90559813512982],[-77.04351282751222,38.90563490216168],[-77.04351280178625,38.90559273052985],[-77.04117232868686,38.9056445444891],[-77.03649183173314,38.90564610015446],[-77.0365166975459,38.90021114467701],[-77.0365540178576,38.9002111330307],[-77.03798430232608,38.90021067674266],[-77.0379835177777,38.89873726621423],[-77.03921836590041,38.89873685818846],[-77.039478510206,38.89878773635498],[-77.03960849683916,38.89888922420126],[-77.03967346206092,38.89888920215678],[-77.04025877519224,38.89909206560178],[-77.04116872243183,38.89939634399443],[-77.04155886114305,38.89954870347597],[-77.04168907834239,38.89959962286236],[-77.04181901007846,38.89959957642315],[-77.04188400575336,38.89965031905513],[-77.04194925740977,38.89970126142437],[-77.0423391131968,38.89980225288257],[-77.04279422293858,38.89995478453024],[-77.0428592196308,38.90000552661637],[-77.04305440475531,38.90005622075874],[-77.04318436817567,38.90010713856802],[-77.04331458743336,38.90015785627166],[-77.0434445512246,38.90020877379062],[-77.04357451483513,38.90025909156725],[-77.04363948130315,38.90025906731721],[-77.04435478207182,38.90051302721056],[-77.0448099005327,38.90066535112057],[-77.04487489905472,38.90071569234735],[-77.0450048328215,38.90071564236485],[-77.04500486497601,38.90076660812539],[-77.04526502068359,38.9008172735219],[-77.04585011001645,38.9010205087129],[-77.04611029980721,38.90112153838469],[-77.04617526705981,38.90112151272454],[-77.04637023494784,38.90122316717383],[-77.04663042660643,38.90132479528064],[-77.04666763891088,38.90133931563076]],[[-77.03950314074102,38.90129602570021],[-77.03847598854298,38.90129130341575],[-77.03846168649122,38.9025656898424],[-77.03949285232883,38.90256207404118],[-77.03950314074102,38.90129602570021]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000057,"geom:area_square_m":548568.255571,"geom:bbox":"-77.0466692787,38.8987368582,-77.0364918317,38.9056461002","geom:latitude":38.902728,"geom:longitude":-77.041367,"iso:country":"US","lbl:latitude":38.902708,"lbl:longitude":-77.042238,"lbl:max_zoom":18,"mps:latitude":38.902708,"mps:longitude":-77.042238,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["Golden Triangle"],"name:eng_x_preferred":["Golden Triangle"],"reversegeo:latitude":38.902708,"reversegeo:longitude":-77.042238,"src:geom":"mz","wof:belongsto":[85866033,102191575,1108723661,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5579914"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"69c6cd3896e16f60112ff05237f5a986","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723661,"microhood_id":1108723835,"neighbourhood_id":85866033,"region_id":85688741}],"wof:id":1108723835,"wof:lastmodified":1566623898,"wof:name":"Golden Triangle","wof:parent_id":85866033,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781819],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723837.geojson b/fixtures/microhoods/1108723837.geojson new file mode 100644 index 0000000..5b02060 --- /dev/null +++ b/fixtures/microhoods/1108723837.geojson @@ -0,0 +1 @@ +{"id":1108723837,"type":"Feature","bbox":[-76.99143376708425,38.88916484045394,-76.98820873050086,38.89044133137615],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.99142893192976,38.88919027407184],[-76.99142890183346,38.88994689298294],[-76.99143376708425,38.89043642264937],[-76.98820873050086,38.89044133137615],[-76.98822980427552,38.88916484045394],[-76.99142893192976,38.88919027407184]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":38976.361632,"geom:bbox":"-76.9914337671,38.8891648405,-76.9882087305,38.8904413314","geom:latitude":38.889809,"geom:longitude":-76.989818,"iso:country":"US","lbl:latitude":38.889808,"lbl:longitude":-76.989818,"lbl:max_zoom":18,"mps:latitude":38.889808,"mps:longitude":-76.989818,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Lincoln Park"],"name:fra_x_preferred":["Lincoln Park"],"reversegeo:latitude":38.889808,"reversegeo:longitude":-76.989818,"src:geom":"mz","wof:belongsto":[85809405,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6550911"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c3603691a0712414d0c92fd904f099bf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723837,"neighbourhood_id":85809405,"region_id":85688741}],"wof:id":1108723837,"wof:lastmodified":1566623898,"wof:name":"Lincoln Park","wof:parent_id":85809405,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781809],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108723839.geojson b/fixtures/microhoods/1108723839.geojson new file mode 100644 index 0000000..28c4abc --- /dev/null +++ b/fixtures/microhoods/1108723839.geojson @@ -0,0 +1 @@ +{"id":1108723839,"type":"Feature","bbox":[-77.0035316378362,38.88988725109062,-76.99264542528275,38.8973211954352],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.99264542528275,38.89732096430533],[-76.99264542528275,38.88994002811464],[-77.00199804276613,38.88988725109062],[-77.00353137553972,38.88988875056492],[-77.00353161772124,38.89478124634434],[-77.00353162275736,38.89488297811915],[-77.0035316328099,38.89508604193131],[-77.0035316378362,38.89518757383468],[-77.00351,38.896118],[-77.003509,38.896801],[-77.003509,38.89732114311752],[-77.0034020716243,38.89732114629091],[-77.00333710782444,38.89732114816469],[-77.00327188826164,38.89732115000957],[-77.0032069244618,38.89732115181101],[-77.00314170489897,38.89732115358323],[-77.00307674109912,38.89732115531229],[-77.00301228882526,38.89732115699203],[-77.00294655773644,38.89732115866845],[-77.00288210546255,38.89732116027636],[-77.00281714166272,38.89732116186109],[-77.0022969197378,38.89732117324806],[-77.0022319559379,38.89732117450733],[-77.00216699213802,38.89732117573048],[-77.00203680877527,38.8973211780728],[-77.0019066254125,38.89732118027008],[-77.00158180641301,38.89732118511996],[-77.00073702125124,38.8973211935043],[-77.0006720574513,38.8973211938961],[-77.00054187408847,38.89732119457248],[-77.00047691028857,38.89732119485578],[-76.99969657740056,38.8973211954352],[-76.99963161360064,38.89732119524838],[-76.99950194176381,38.89732119476753],[-76.99937175840098,38.89732119413995],[-76.99885179223868,38.89732119018643],[-76.99852646171318,38.89732118653579],[-76.99846200943927,38.89732118570502],[-76.99833182607647,38.89732118391853],[-76.99761671275174,38.89732117151797],[-76.99683689139043,38.89732115300566],[-76.996251961429,38.89732113570314],[-76.99618674186621,38.89732113359243],[-76.9961217780664,38.89732113145377],[-76.99605681426661,38.89732112927904],[-76.99592663090402,38.89732112481225],[-76.99586192286723,38.89732112253802],[-76.99573199526768,38.89732111786336],[-76.99560181190512,38.89732111303455],[-76.99553659234238,38.89732111056089],[-76.99540666474286,38.8973211055244],[-76.99527648138036,38.89732110033303],[-76.99521202910661,38.89732109770917],[-76.99508184574415,38.89732109230093],[-76.99495166238171,38.89732108674762],[-76.99482147901928,38.89732108104921],[-76.99462684338317,38.897321072259],[-76.99443169622111,38.89732106312016],[-76.99436673242144,38.89732106000552],[-76.9942370605851,38.89732105368051],[-76.99384651049827,38.89732103376104],[-76.99378154669866,38.897321030321],[-76.99365136333645,38.89732102331863],[-76.99306694490325,38.89732099009613],[-76.99274161437964,38.89732097033526],[-76.99264542528275,38.89732096430533]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000081,"geom:area_square_m":776091.101443,"geom:bbox":"-77.0035316378,38.8898872511,-76.9926454253,38.8973211954","geom:latitude":38.893614,"geom:longitude":-76.998093,"iso:country":"US","lbl:latitude":38.893615,"lbl:longitude":-76.998093,"lbl:max_zoom":18,"mps:latitude":38.893615,"mps:longitude":-76.998093,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:zho_x_preferred":["斯坦顿公园"],"reversegeo:latitude":38.893615,"reversegeo:longitude":-76.998093,"src:geom":"mz","wof:belongsto":[85809405,102191575,1108723665,85633793,85931779,102084889,85688741],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"526f1e575079ea38b397eda67465c57e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084889,"locality_id":85931779,"macrohood_id":1108723665,"microhood_id":1108723839,"neighbourhood_id":85809405,"region_id":85688741}],"wof:id":1108723839,"wof:lastmodified":1566623898,"wof:name":"Stanton Park","wof:parent_id":85809405,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781811],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108724971.geojson b/fixtures/microhoods/1108724971.geojson new file mode 100644 index 0000000..638ce49 --- /dev/null +++ b/fixtures/microhoods/1108724971.geojson @@ -0,0 +1 @@ +{"id":1108724971,"type":"Feature","bbox":[-77.0857313071169,38.82926,-77.064325,38.8441977730954],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08534716601783,38.83392146125546],[-77.08517640663386,38.83383187903063],[-77.0848514352797,38.8336184547165],[-77.08442524333984,38.83330898816811],[-77.0838605390195,38.83288391570547],[-77.08315732231873,38.83234323732859],[-77.08259109588433,38.83196855706052],[-77.08216185971631,38.83175987490127],[-77.08186961381469,38.83171719085085],[-77.08171435817945,38.83184050490924],[-77.08158497848342,38.83193891898904],[-77.0814814747266,38.83201243309026],[-77.08140384690898,38.83206104721287],[-77.08135209503057,38.8320847613569],[-77.08130414843734,38.83210313981809],[-77.08126000712927,38.83211618259644],[-77.0812196711064,38.83212388969195],[-77.08118314036868,38.83212626110462],[-77.08113671588951,38.83212744681095],[-77.0810803976689,38.83212744681095],[-77.0810141857068,38.83212626110462],[-77.08093808000326,38.83212388969195],[-77.08086730169896,38.83211736830427],[-77.08080185079392,38.83210669694159],[-77.08074172728811,38.8320918756039],[-77.08068693118155,38.83207290429121],[-77.08063517930313,38.83205452582789],[-77.08058647165286,38.83203674021394],[-77.08054080823074,38.83201954744936],[-77.08049818903675,38.83200294753416],[-77.08043958764502,38.83198516190504],[-77.08036500405554,38.83196619056201],[-77.08027443826832,38.83194603350506],[-77.08016789028335,38.83192469073418],[-77.08007808555317,38.83190690509037],[-77.08000502407776,38.83189267657362],[-77.07994870585713,38.83188200518391],[-77.0799091308913,38.83187489092127],[-77.0798665116973,38.83191461200187],[-77.07982084827518,38.83200116842573],[-77.0797721406249,38.83213456019284],[-77.0797203887465,38.8323147873032],[-77.07955447831276,38.83245173618361],[-77.07927440932369,38.83254540683409],[-77.07888018177931,38.83259579925462],[-77.07837179567963,38.83260291344521],[-77.07798365659153,38.83297224354135],[-77.07771576451505,38.83370378954302],[-77.07756811945016,38.83479755145024],[-77.07754072139689,38.83625352926299],[-77.07751332334361,38.8375458747077],[-77.07748592529033,38.83867458778435],[-77.07745852723706,38.83963966849296],[-77.07743112918378,38.84044111683353],[-77.07741058064383,38.84105583686732],[-77.07739688161718,38.84148382859435],[-77.07739003210386,38.84172509201461],[-77.07739003210386,38.84177962712809],[-77.07745396089484,38.84183416219979],[-77.0775818184768,38.84188869722968],[-77.07777360484974,38.84194323221778],[-77.07802932001367,38.84199776716409],[-77.07825078761098,38.84204222499388],[-77.07843800764172,38.84207660570713],[-77.07859098010584,38.84210090930389],[-77.07870970500339,38.84211513578412],[-77.07883299624314,38.84212876949217],[-77.0789608538251,38.84214181042804],[-77.07909327774927,38.84215425859173],[-77.07923026801565,38.84216611398323],[-77.07937791308053,38.84217441275744],[-77.0795362129439,38.84217915491435],[-77.07970516760578,38.84218034045398],[-77.07988477706616,38.84217796937632],[-77.08006514758355,38.84217144890989],[-77.08024627915802,38.84216077905469],[-77.08042817178949,38.84214595981072],[-77.080610825478,38.84212699117799],[-77.08078130225395,38.84210505868561],[-77.08093960211734,38.84208016233359],[-77.08108572506815,38.84205230212191],[-77.0812196711064,38.84202147805058],[-77.08135209503057,38.84198591178624],[-77.08148299684066,38.84194560332886],[-77.0816123765367,38.84190055267846],[-77.08174023411867,38.84185075983503],[-77.08186276430138,38.84179622475876],[-77.08197996708485,38.84173694744964],[-77.08209184246905,38.84167292790767],[-77.08219839045401,38.84160416613285],[-77.08229656681158,38.8415371826233],[-77.08238637154179,38.84147197737902],[-77.08246780464458,38.84140855040001],[-77.08254086611998,38.84134690168626],[-77.08261316653835,38.8412846601399],[-77.08268470589971,38.8412218257609],[-77.082755484204,38.84115839854928],[-77.08282550145125,38.84109437850505],[-77.08289019129927,38.84102917284027],[-77.08294955374802,38.84096278155496],[-77.08300358879755,38.84089520464912],[-77.08305229644783,38.84082644212275],[-77.08310633149736,38.84074167433754],[-77.08316569394611,38.84064090129349],[-77.08323038379413,38.8405241229906],[-77.0833004010414,38.84039133942887],[-77.08335824137609,38.84027396814292],[-77.08340390479823,38.84017200913274],[-77.0834373913078,38.84008546239835],[-77.08345870090477,38.84001432793973],[-77.08348001050177,38.83993074478767],[-77.08350132009876,38.83983471294214],[-77.08352262969576,38.83972623240316],[-77.08354393929275,38.83960530317072],[-77.08355839937643,38.83945295541265],[-77.08356600994678,38.83926918912894],[-77.08356677100382,38.83905400431959],[-77.08356068254753,38.83880740098461],[-77.08355307197718,38.83857561699046],[-77.08354393929275,38.83835865233715],[-77.08353328449425,38.83815650702469],[-77.0835211075817,38.83796918105305],[-77.0835104527832,38.83780023175554],[-77.08350132009878,38.83764965913215],[-77.08349370952843,38.83751746318288],[-77.08348762107214,38.83740364390773],[-77.08348533790104,38.83729634540431],[-77.0834868600151,38.83719556767262],[-77.08349218741435,38.83710131071265],[-77.08350132009878,38.83701357452443],[-77.08351349701134,38.83691991005941],[-77.08352871815205,38.83682031731761],[-77.0835469835209,38.83671479629902],[-77.08356829311789,38.83660334700363],[-77.0835896027149,38.83649604727859],[-77.08361091231188,38.83639289712386],[-77.08363222190889,38.83629389653949],[-77.08365353150586,38.83619904552543],[-77.08375094680642,38.83613976365746],[-77.0839244678105,38.83611605093554],[-77.08425552762095,38.83613976375226],[-77.08482113132212,38.8362221137952],[-77.0847753061924,38.8366647711049],[-77.0847503064757,38.8369717711941],[-77.0847203056778,38.8373697715261],[-77.0846953062384,38.8376797717164],[-77.0846973061647,38.8377847715311],[-77.0846983055983,38.8378767712201],[-77.0846983058316,38.8378837715846],[-77.0846953058191,38.8379217716084],[-77.0846673057534,38.8381837718362],[-77.0846873061223,38.8383237715744],[-77.084732306183,38.8385357719451],[-77.0847493060086,38.8386217714381],[-77.084799306184,38.8388587720758],[-77.0848333064424,38.8390197713636],[-77.0848853062162,38.8392177715196],[-77.0849343057953,38.8393127716302],[-77.0849523059076,38.8393717718376],[-77.084985306422,38.8395267722083],[-77.0850213067638,38.8397097723201],[-77.0850623063339,38.8399247721477],[-77.085063306532,38.8399317719498],[-77.085113306833,38.8401927717809],[-77.0851323062565,38.8402967718713],[-77.0851603068528,38.8404327721734],[-77.0851963061975,38.8406217724747],[-77.0852753060643,38.8410287723805],[-77.085311306624,38.8412127723731],[-77.0854383068421,38.84186377195],[-77.085614306679,38.8425477723545],[-77.0856493068019,38.8426807728491],[-77.0855983064784,38.8426827728511],[-77.0856383071463,38.8427507726679],[-77.0857003071588,38.8428567727761],[-77.0857003062144,38.8428847723716],[-77.085702306844,38.842967772723],[-77.0857073067467,38.8431057723337],[-77.0857103065913,38.8431357730476],[-77.0856983073112,38.84331177245],[-77.0857203064763,38.8435407724172],[-77.0857313071169,38.8436017728782],[-77.0857123069373,38.8439257728032],[-77.0856993068221,38.8440187730806],[-77.085611306398,38.8441977730954],[-77.0823763054152,38.8437497730988],[-77.0823423053723,38.8437417728915],[-77.0822263056816,38.8437177724939],[-77.0822083055272,38.8437147729532],[-77.0820563059784,38.8436827732004],[-77.0820333051879,38.8436777725856],[-77.0819053050542,38.8436527728018],[-77.081860305595,38.8436437728548],[-77.0802543054216,38.8433197728031],[-77.0800993051823,38.8433537727104],[-77.0800363045396,38.8433677726058],[-77.0797173044035,38.8434267731061],[-77.079136305188,38.8435347726945],[-77.0787653042967,38.8436027731719],[-77.0786573041319,38.8436237728974],[-77.0784503042118,38.8436617727356],[-77.0783013046197,38.8436897732764],[-77.0781633043453,38.8437137733212],[-77.0778803048842,38.8437667730771],[-77.0776673038177,38.8438067728161],[-77.0772683037539,38.8438717733186],[-77.07726704279301,38.84387175297677],[-77.077172,38.843656],[-77.077129,38.843532],[-77.077098,38.843449],[-77.077047,38.843327],[-77.077006,38.843243],[-77.076928,38.843139],[-77.076845,38.843056],[-77.076738,38.842975],[-77.076634,38.842909],[-77.076505,38.842842],[-77.076296,38.842773],[-77.07603,38.842718],[-77.075719,38.842652],[-77.075428,38.842598],[-77.074722,38.842451],[-77.073579,38.84218],[-77.073335,38.842117],[-77.073122,38.842058],[-77.072828,38.841981],[-77.072451,38.841875],[-77.071893,38.841704],[-77.070979,38.841404],[-77.070609,38.841271],[-77.070504,38.841236],[-77.070417,38.841213],[-77.070295,38.841187],[-77.070172,38.841166],[-77.069857,38.841123],[-77.069567,38.841077],[-77.069357,38.841031],[-77.06914,38.840967],[-77.068931,38.840897],[-77.068903,38.840887],[-77.068656,38.840799],[-77.068426,38.840706],[-77.068203,38.8406],[-77.06796,38.840461],[-77.067738,38.840328],[-77.067728,38.840321],[-77.067534,38.840166],[-77.067282,38.839956],[-77.067064,38.839802],[-77.066866,38.839673],[-77.066637,38.839548],[-77.066251,38.839376],[-77.066233,38.839369],[-77.065301,38.838957],[-77.065088,38.838853],[-77.064949,38.838784],[-77.064599,38.838565],[-77.064325,38.83838],[-77.064527,38.8381],[-77.064647,38.837934],[-77.064859,38.837681],[-77.065013,38.837518],[-77.065146,38.837396],[-77.065396,38.837181],[-77.065646,38.836982],[-77.065831,38.836828],[-77.066381,38.836376],[-77.066499,38.836258],[-77.066599,38.836155],[-77.066718,38.836017],[-77.066801,38.835904],[-77.066903,38.835729],[-77.067306,38.835036],[-77.067398,38.834873],[-77.067496,38.834708],[-77.067554,38.834604],[-77.067589,38.834429],[-77.067588,38.834307],[-77.067547,38.834091],[-77.067289,38.833168],[-77.067078,38.832403],[-77.066987,38.832061],[-77.066869,38.831645],[-77.066989,38.831616],[-77.067282,38.83152],[-77.067409,38.831498],[-77.067493,38.831491],[-77.067841,38.831494],[-77.068774,38.831515],[-77.069006,38.83152],[-77.069347,38.831504],[-77.069674,38.83146],[-77.069857,38.831429],[-77.070033,38.831405],[-77.070269,38.83136],[-77.070375,38.831325],[-77.070481,38.831287],[-77.070588,38.831244],[-77.070789,38.831156],[-77.070914,38.831083],[-77.071145,38.830917],[-77.071281,38.830808],[-77.071403,38.830672],[-77.071571,38.830511],[-77.07166,38.830444],[-77.071816,38.830354],[-77.071877,38.830321],[-77.072177,38.830211],[-77.072509,38.830142],[-77.07265,38.830109],[-77.072869,38.830049],[-77.073347,38.829849],[-77.073651,38.82972],[-77.073917,38.829612],[-77.074352,38.829616],[-77.075251,38.829587],[-77.076238,38.829557],[-77.076295,38.829555],[-77.077204,38.82954],[-77.078297,38.829502],[-77.078767,38.829485],[-77.079386,38.829477],[-77.079797,38.829459],[-77.079902,38.82946],[-77.07999,38.829453],[-77.080061,38.829423],[-77.080178,38.829346],[-77.080282,38.82926],[-77.081883,38.830465],[-77.082679,38.831072],[-77.083236,38.831479],[-77.084879,38.832711],[-77.085032,38.832824],[-77.085104,38.832867],[-77.085209,38.832899],[-77.0853299648704,38.83290678136592],[-77.0853303058057,38.8329177701924],[-77.0853413061927,38.833420770726],[-77.0853373055939,38.8338207705651],[-77.085343306592,38.8338707707473],[-77.08534716601783,38.83392146125546]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000163,"geom:area_square_m":1565546.769022,"geom:bbox":"-77.0857313071,38.82926,-77.064325,38.8441977731","geom:latitude":38.836516,"geom:longitude":-77.074705,"iso:country":"US","lbl:latitude":38.836089,"lbl:longitude":-77.073921,"lbl:max_zoom":18,"mps:latitude":38.836506,"mps:longitude":-77.072753,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Beverley Hills"],"name:eng_x_variant":["Beverley Hls"],"name:und_x_variant":["Beverly Hills"],"reversegeo:latitude":38.836506,"reversegeo:longitude":-77.072753,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420547829,102191575,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6e941a5d160138a53e2a2c6cc56ef043","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108724971,"neighbourhood_id":420547829,"region_id":85688747}],"wof:id":1108724971,"wof:lastmodified":1566623894,"wof:name":"Beverley Hills","wof:parent_id":420547829,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85805965],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108724979.geojson b/fixtures/microhoods/1108724979.geojson new file mode 100644 index 0000000..8f7aebf --- /dev/null +++ b/fixtures/microhoods/1108724979.geojson @@ -0,0 +1 @@ +{"id":1108724979,"type":"Feature","bbox":[-77.048468,38.807913,-77.040832,38.813303],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.046241,38.808472],[-77.047386,38.808616],[-77.048468,38.808754],[-77.048223,38.809896],[-77.048058,38.810685],[-77.047986,38.811026],[-77.047746,38.812163],[-77.047488,38.813303],[-77.04642,38.813164],[-77.045265,38.813019],[-77.044116,38.812875],[-77.043034,38.812733],[-77.041921,38.812591],[-77.040832,38.812458],[-77.041077,38.811315],[-77.041328,38.81018],[-77.04139,38.809885],[-77.041448,38.809613],[-77.041572,38.80904],[-77.041692,38.80848],[-77.041813,38.807913],[-77.042894,38.808049],[-77.044015,38.808184],[-77.0451,38.808324],[-77.046241,38.808472]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":299727.766013,"geom:bbox":"-77.048468,38.807913,-77.040832,38.813303","geom:latitude":38.810606,"geom:longitude":-77.044654,"iso:country":"US","lbl:latitude":38.810604,"lbl:longitude":-77.044654,"lbl:max_zoom":18,"mps:latitude":38.810604,"mps:longitude":-77.044654,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.810604,"reversegeo:longitude":-77.044654,"src:geom":"mz","wof:belongsto":[102191575,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"c1819c4c52782d2add06106bac7c77e9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108724979,"neighbourhood_id":-1,"region_id":85688747}],"wof:id":1108724979,"wof:lastmodified":1566623894,"wof:name":"The Berg","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781831],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108724987.geojson b/fixtures/microhoods/1108724987.geojson new file mode 100644 index 0000000..8072e85 --- /dev/null +++ b/fixtures/microhoods/1108724987.geojson @@ -0,0 +1 @@ +{"id":1108724987,"type":"Feature","bbox":[-77.12742632259835,38.80388052490205,-77.1159134512925,38.8122109394222],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.12647081242285,38.80388052490205],[-77.12742632259835,38.80625610636537],[-77.12158646034177,38.80792038931183],[-77.12058534109778,38.8122109394222],[-77.1159134512925,38.81165188239994],[-77.11694794117795,38.80639913225389],[-77.11961759249525,38.80568400017727],[-77.12647081242285,38.80388052490205]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000044,"geom:area_square_m":425230.568334,"geom:bbox":"-77.1274263226,38.8038805249,-77.1159134513,38.8122109394","geom:latitude":38.807876,"geom:longitude":-77.120707,"iso:country":"US","lbl:latitude":38.808137,"lbl:longitude":-77.119181,"lbl:max_zoom":18,"mps:latitude":38.808137,"mps:longitude":-77.119181,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_variant":["Cameron"],"reversegeo:latitude":38.808137,"reversegeo:longitude":-77.119181,"src:geom":"mz","wof:belongsto":[1108724983,102191575,1108724981,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1ef887768889d7e27c17424749af0b11","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"macrohood_id":1108724981,"microhood_id":1108724987,"neighbourhood_id":1108724983,"region_id":85688747}],"wof:id":1108724987,"wof:lastmodified":1566623895,"wof:name":"Cameron Station","wof:parent_id":1108724983,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781835],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108724989.geojson b/fixtures/microhoods/1108724989.geojson new file mode 100644 index 0000000..1d9d55a --- /dev/null +++ b/fixtures/microhoods/1108724989.geojson @@ -0,0 +1 @@ +{"id":1108724989,"type":"Feature","bbox":[-77.054382,38.80647346658009,-77.04725272544607,38.81618093213974],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.04725272544607,38.81444046615945],[-77.047488,38.813303],[-77.047986,38.811026],[-77.048058,38.810685],[-77.048223,38.809896],[-77.048468,38.808754],[-77.04895761093778,38.80647346658009],[-77.054382,38.807175],[-77.054141,38.80832],[-77.053886,38.809457],[-77.053639,38.8106],[-77.053402,38.811715],[-77.053205,38.812632],[-77.053158,38.812861],[-77.052918,38.813995],[-77.05283883293978,38.81437821446536],[-77.05288477449503,38.81440044186353],[-77.05305891645861,38.81448905902334],[-77.05309988157387,38.81451864426823],[-77.05312438257913,38.8145457815032],[-77.05313928237543,38.81457082370814],[-77.05313978816787,38.8145941007636],[-77.05313608771586,38.81461661382888],[-77.05311532242848,38.81465015775454],[-77.05308923270857,38.81468157190714],[-77.05233103350004,38.81579757298936],[-77.0521521325632,38.81607018394075],[-77.05210368022612,38.81612875269983],[-77.0520488385699,38.8161665561716],[-77.05200784043845,38.81617773748015],[-77.05195619344188,38.81618093213974],[-77.049176,38.815841],[-77.049309,38.815259],[-77.049411,38.814711],[-77.04725272544607,38.81444046615945]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":463468.382295,"geom:bbox":"-77.054382,38.8064734666,-77.0472527254,38.8161809321","geom:latitude":38.811164,"geom:longitude":-77.050825,"iso:country":"US","lbl:latitude":38.805681,"lbl:longitude":-77.051336,"lbl:max_zoom":18,"mps:latitude":38.811167,"mps:longitude":-77.050757,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Parker-Gray"],"reversegeo:latitude":38.811167,"reversegeo:longitude":-77.050757,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85875827,102191575,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b971a6ef950f91c733d266b768d951de","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108724989,"neighbourhood_id":85875827,"region_id":85688747}],"wof:id":1108724989,"wof:lastmodified":1566623895,"wof:name":"Parker-Gray Historic District","wof:parent_id":85875827,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85875843],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108724993.geojson b/fixtures/microhoods/1108724993.geojson new file mode 100644 index 0000000..0d53f2d --- /dev/null +++ b/fixtures/microhoods/1108724993.geojson @@ -0,0 +1 @@ +{"id":1108724993,"type":"Feature","bbox":[-77.089639,38.80670074641811,-77.07523,38.817416],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.089551,38.817416],[-77.089488,38.817407],[-77.089232,38.817362],[-77.089173,38.817346],[-77.089103,38.817331],[-77.089012,38.817307],[-77.088915,38.81728],[-77.088893,38.817273],[-77.088817,38.81725],[-77.088343,38.817083],[-77.087855,38.816906],[-77.087235,38.81668],[-77.087123,38.816642],[-77.086715,38.816484],[-77.085712,38.816085],[-77.085563,38.816026],[-77.084727,38.815689],[-77.084479,38.815592],[-77.084215,38.815477],[-77.083923,38.815333],[-77.083631,38.815166],[-77.083441,38.815046],[-77.083351,38.814992],[-77.08309,38.814851],[-77.082927,38.814772],[-77.082708,38.81467],[-77.082596,38.814624],[-77.082495,38.814585],[-77.082293,38.814507],[-77.081892,38.814378],[-77.081641,38.814303],[-77.081466,38.814258],[-77.081281,38.814225],[-77.081078,38.814195],[-77.080822,38.814168],[-77.080587,38.814174],[-77.080165,38.814188],[-77.07927,38.814213],[-77.078863,38.814217],[-77.07862,38.814213],[-77.078445,38.814215],[-77.078259,38.814205],[-77.078227,38.814204],[-77.077015,38.814125],[-77.076973,38.814122],[-77.07693,38.814123],[-77.076835,38.813959],[-77.076657,38.813731],[-77.076405,38.813369],[-77.076316,38.813238],[-77.076197,38.813059],[-77.076108,38.812934],[-77.076074,38.812863],[-77.076048,38.812792],[-77.076008,38.812659],[-77.075986,38.812557],[-77.075951,38.812333],[-77.075894,38.812041],[-77.075841,38.811862],[-77.075738,38.811593],[-77.0755,38.811038],[-77.075435,38.810935],[-77.07536,38.810822],[-77.075265,38.810645],[-77.075236,38.810558],[-77.07523,38.810477],[-77.075263,38.810225],[-77.075433,38.809292],[-77.075611,38.808285],[-77.075634,38.808141],[-77.075776,38.807368],[-77.07582601821595,38.80705182166939],[-77.0758957285752,38.80670074641811],[-77.07834475355712,38.80699974831342],[-77.081492,38.807433],[-77.08271,38.807585],[-77.083956,38.807771],[-77.0872792506103,38.80828880140915],[-77.088669,38.808513],[-77.088669,38.808976],[-77.088739,38.809499],[-77.088741,38.809514],[-77.088744,38.809546],[-77.088912,38.810961],[-77.088919,38.811005],[-77.089068,38.812166],[-77.089236,38.813439],[-77.089403,38.814666],[-77.089423,38.814805],[-77.089586,38.815972],[-77.089609,38.816229],[-77.089633,38.816452],[-77.089639,38.816662],[-77.089624,38.816926],[-77.08959,38.817193],[-77.089551,38.817416]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000101,"geom:area_square_m":976077.258415,"geom:bbox":"-77.089639,38.8067007464,-77.07523,38.817416","geom:latitude":38.811458,"geom:longitude":-77.082712,"iso:country":"US","lbl:latitude":38.811588,"lbl:longitude":-77.081143,"lbl:max_zoom":18,"mps:latitude":38.811171,"mps:longitude":-77.08285,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":38.811171,"reversegeo:longitude":-77.08285,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108724991,102191575,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c92847068263310c2a0a961b50910e0f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108724993,"neighbourhood_id":1108724991,"region_id":85688747}],"wof:id":1108724993,"wof:lastmodified":1566623894,"wof:name":"Clover-College Park","wof:parent_id":1108724991,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85811479],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108724997.geojson b/fixtures/microhoods/1108724997.geojson new file mode 100644 index 0000000..390f835 --- /dev/null +++ b/fixtures/microhoods/1108724997.geojson @@ -0,0 +1 @@ +{"id":1108724997,"type":"Feature","bbox":[-77.12813465944632,38.81175985930844,-77.10892120843089,38.82470742852363],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.10893981129375,38.81542360707136],[-77.108963,38.815358],[-77.109012,38.815177],[-77.109039,38.815064],[-77.109051,38.815001],[-77.10912,38.814492],[-77.109161,38.81421],[-77.109192,38.814063],[-77.109222,38.813932],[-77.109249,38.813832],[-77.109256,38.813804],[-77.109294,38.813691],[-77.109312,38.813635],[-77.109508,38.813135],[-77.109545,38.813029],[-77.109572,38.812936],[-77.109591,38.812851],[-77.109607,38.812755],[-77.10962,38.812588],[-77.109625,38.81254],[-77.109631,38.812423],[-77.109626,38.812323],[-77.109627,38.812223],[-77.10962,38.812111],[-77.111589,38.811948],[-77.112625,38.811841],[-77.113417,38.811768],[-77.11348298244738,38.81175985930844],[-77.1134881242303,38.81177017611527],[-77.11352644390595,38.81184549794254],[-77.11356352746303,38.81191677428535],[-77.11359937490154,38.81198400514372],[-77.11363398622149,38.81204719051763],[-77.11366711419915,38.81210979792353],[-77.11369875883452,38.81217182736141],[-77.11372892012761,38.81223327883127],[-77.11375759807844,38.81229415233313],[-77.11378405101581,38.81235040250031],[-77.11380827893979,38.81240202933286],[-77.11383028185031,38.81244903283075],[-77.11385005974742,38.81249141299399],[-77.11387033209195,38.81253205940391],[-77.1138910988839,38.81257097206051],[-77.11391236012331,38.8126081509638],[-77.11393411581014,38.81264359611376],[-77.11396106319495,38.81267904124609],[-77.11399320227775,38.81271448636079],[-77.11403053305855,38.81274993145784],[-77.11407305553732,38.81278537653728],[-77.1141205224904,38.81282082159906],[-77.11417293391773,38.8128562666432],[-77.11423028981935,38.81289171166971],[-77.11429259019525,38.81292715667858],[-77.1143598350454,38.81296375748171],[-77.11443202436988,38.81300151407911],[-77.1145091581686,38.81304042647078],[-77.1145912364416,38.81308049465672],[-77.11467628139917,38.81312287443783],[-77.11476429304132,38.81316756581411],[-77.11485527136801,38.81321456878555],[-77.11494921637927,38.81326388335218],[-77.11504810586482,38.81331300525042],[-77.11515193982464,38.81336193448028],[-77.11526071825875,38.81341067104179],[-77.11537444116713,38.81345921493492],[-77.1154913779838,38.81350775879496],[-77.11561152870874,38.81355630262192],[-77.11573489334197,38.81360484641579],[-77.11586147188346,38.81365339017658],[-77.11601277279635,38.81371021712347],[-77.11618879608064,38.81377532725647],[-77.1163895417363,38.81384872057558],[-77.11661500976334,38.8139303970808],[-77.11687756134747,38.81403229980027],[-77.11717719648868,38.81415442873401],[-77.11751391518698,38.81429678388201],[-77.11788771744234,38.81445936524427],[-77.11823061673348,38.81460576534417],[-77.1185426130604,38.81473598418172],[-77.11882370642307,38.8148500217569],[-77.1190738968215,38.81494787806973],[-77.11930455654655,38.81503745119559],[-77.1195156855982,38.81511874113448],[-77.11970728397645,38.81519174788642],[-77.1198793516813,38.81525647145139],[-77.12003164148905,38.81531387506444],[-77.12016415339968,38.81536395872558],[-77.12027688741321,38.8154067224348],[-77.12036984352964,38.81544216619211],[-77.12048183587203,38.81549032339731],[-77.12061286444039,38.81555119405039],[-77.1207629292347,38.81562477815136],[-77.12093203025498,38.81571107570021],[-77.12112387585694,38.81580796762003],[-77.12133846604057,38.81591545391081],[-77.12157580080589,38.81603353457253],[-77.12183588015289,38.81616220960521],[-77.12205071756024,38.81626776932064],[-77.12222031302795,38.81635021371882],[-77.12234466655602,38.81640954279974],[-77.12242377814448,38.81644575656341],[-77.12250387862777,38.81648177768285],[-77.12258496800592,38.81651760615804],[-77.12266704627892,38.81655324198901],[-77.12275011344678,38.81658868517576],[-77.12282947225893,38.81662432097029],[-77.12290512271538,38.81666014937261],[-77.12297706481611,38.81669617038275],[-77.12304529856115,38.81673238400066],[-77.12312688238673,38.81677533947146],[-77.12322181629285,38.81682503679511],[-77.12333010027953,38.81688147597163],[-77.12345173434674,38.816944657001],[-77.12357064895312,38.81700957159058],[-77.12368684409864,38.81707621974035],[-77.12380031978331,38.81714460145031],[-77.12391107600712,38.81721471672044],[-77.12401144883495,38.81727635649134],[-77.1241014382668,38.817329520763],[-77.12418104430267,38.81737420953539],[-77.12425026694255,38.81741042280855],[-77.12431108397617,38.81744316884424],[-77.12436349540351,38.81747244764246],[-77.12440750122458,38.81749825920321],[-77.12444310143937,38.81752060352648],[-77.12447721831188,38.81754198472709],[-77.12450985184212,38.817562402805],[-77.12454100203007,38.81758185776023],[-77.12457066887572,38.81760034959277],[-77.12459934682653,38.81762134551824],[-77.1246270358825,38.81764484553662],[-77.12465373604358,38.81767084964792],[-77.12467944730983,38.81769935785213],[-77.12470491135235,38.81772748079983],[-77.12473012817118,38.81775521849104],[-77.12475509776628,38.81778257092574],[-77.12477982013766,38.81780953810392],[-77.12480157582448,38.8178343864265],[-77.12482036482675,38.81785711589345],[-77.12483618714442,38.81787772650479],[-77.12484904277756,38.8178962182605],[-77.12486659566123,38.81791567312209],[-77.12488884579548,38.81793609108956],[-77.12491579318029,38.8179574721629],[-77.12494743781566,38.81797981634211],[-77.12498229635932,38.81800119740484],[-77.12502036881126,38.81802161535109],[-77.12506165517148,38.81804107018088],[-77.12510615543997,38.81805956189417],[-77.12514917236618,38.8180774757375],[-77.12519070595012,38.81809481171085],[-77.12523075619177,38.81811156981422],[-77.12526932309112,38.81812775004761],[-77.12531036222762,38.81814431552043],[-77.12535387360127,38.81816126623269],[-77.12539985721205,38.81817860218439],[-77.12544831305998,38.81819632337552],[-77.1255111078833,38.81821905271465],[-77.12558824168202,38.8182467902018],[-77.12567971445615,38.81827953583694],[-77.12578552620568,38.81831728962007],[-77.12588342679636,38.81835215407132],[-77.12597341622822,38.81838412919066],[-77.12605549450123,38.8184132149781],[-77.12612966161538,38.81843941143364],[-77.12620630096669,38.81846714884385],[-77.12628541255513,38.81849642720874],[-77.12636699638071,38.81852724652828],[-77.12645105244341,38.8185596068025],[-77.12653585017728,38.8185962047034],[-77.12662138958227,38.81863704023098],[-77.12670767065842,38.81868211338525],[-77.12679469340569,38.81873142416619],[-77.12687924391584,38.81877957919622],[-77.12696132218883,38.81882657847531],[-77.1270409282247,38.81887242200349],[-77.12711806202343,38.81891710978075],[-77.1271853068736,38.81895678943303],[-77.12724266277522,38.81899146096035],[-77.12729012972828,38.81902112436268],[-77.1273277077328,38.81904577964005],[-77.12736256627646,38.81907139800355],[-77.12739470535925,38.81909797945318],[-77.1274241249812,38.81912552398894],[-77.1274508251423,38.81915403161084],[-77.12747628918484,38.81918080565354],[-77.12750051710879,38.81920584611706],[-77.12752350891418,38.81922915300139],[-77.12754526460101,38.81925072630653],[-77.12756553694554,38.81927229960514],[-77.1275843259478,38.81929387289721],[-77.12760163160777,38.81931544618275],[-77.12761745392547,38.81933701946176],[-77.12763327624315,38.81936148200647],[-77.12764909856084,38.81938883381689],[-77.12766492087852,38.81941907489303],[-77.12768074319622,38.8194522052349],[-77.12770670168615,38.81952405155645],[-77.12774279634839,38.81963461385771],[-77.12778902718287,38.81978389213868],[-77.12784539418963,38.81997188639936],[-77.1279054695521,38.82018414946399],[-77.12796925327027,38.82042068133259],[-77.12805454545156,38.82075274937428],[-77.12813465944632,38.82107350663202],[-77.127514,38.821564],[-77.127137,38.821844],[-77.126556,38.822273],[-77.125937,38.822747],[-77.125526,38.823082],[-77.125209,38.823328],[-77.12486,38.823595],[-77.124568,38.823808],[-77.124234,38.824036],[-77.12325981298352,38.82470742852363],[-77.12045946356668,38.82328399509912],[-77.12038215857977,38.82345793131964],[-77.12028552734616,38.82364153066353],[-77.12020822235925,38.82375748814388],[-77.1201574909616,38.82381667477448],[-77.12010675956394,38.82384747598019],[-77.120063,38.823859],[-77.120049,38.823862],[-77.120004,38.823861],[-77.119937,38.823852],[-77.119878,38.823835],[-77.119836,38.823819],[-77.119062,38.823538],[-77.118351,38.823292],[-77.118068,38.823197],[-77.117939,38.823159],[-77.117837,38.823145],[-77.117739,38.823158],[-77.117682,38.823191],[-77.11758,38.823209],[-77.117482,38.823196],[-77.117136,38.823104],[-77.116654,38.822979],[-77.116301,38.822889],[-77.116179,38.822854],[-77.116071,38.822814],[-77.115991,38.822783],[-77.115855,38.822714],[-77.115821,38.822694],[-77.115793,38.822679],[-77.115734,38.822641],[-77.115651,38.82258],[-77.115585,38.822525],[-77.11552,38.822461],[-77.11541,38.822326],[-77.115328,38.822197],[-77.11522,38.821961],[-77.114913,38.82132],[-77.114859,38.821221],[-77.11478,38.821117],[-77.114712,38.821044],[-77.114577,38.820933],[-77.114446,38.820819],[-77.114328,38.820731],[-77.11401,38.820487],[-77.113346,38.819948],[-77.112668,38.819418],[-77.112603,38.819369],[-77.112478,38.819266],[-77.112018,38.818901],[-77.112309,38.818578],[-77.112494,38.818375],[-77.112517,38.818351],[-77.112836,38.818007],[-77.113321,38.817438],[-77.113054,38.81727],[-77.112919,38.817142],[-77.11239,38.816564],[-77.112225,38.816389],[-77.112149,38.816322],[-77.112076,38.816265],[-77.111969,38.816202],[-77.111844,38.81614],[-77.111708,38.816081],[-77.111663,38.816065],[-77.111569,38.81603],[-77.111411,38.815984],[-77.111304,38.81596],[-77.111275,38.815954],[-77.11067,38.815857],[-77.110341,38.815807],[-77.110026,38.815762],[-77.109833,38.815729],[-77.109441,38.815673],[-77.109259,38.815644],[-77.108958,38.815601],[-77.10892120843089,38.81559293609444],[-77.10893981129375,38.81542360707136]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000124,"geom:area_square_m":1197020.36926,"geom:bbox":"-77.1281346594,38.8117598593,-77.1089212084,38.8247074285","geom:latitude":38.818477,"geom:longitude":-77.118483,"iso:country":"US","lbl:latitude":38.818971,"lbl:longitude":-77.118344,"lbl:max_zoom":18,"mps:latitude":38.818971,"mps:longitude":-77.118344,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Brookville","Seminary Valley"],"reversegeo:latitude":38.818971,"reversegeo:longitude":-77.118344,"src:geom":"mz","wof:belongsto":[85875847,102191575,1108724981,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"27be999253caa8ff2be63b96cc0a0c7a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"macrohood_id":1108724981,"microhood_id":1108724997,"neighbourhood_id":85875847,"region_id":85688747}],"wof:id":1108724997,"wof:lastmodified":1566623894,"wof:name":"Brookville-Seminary Valley","wof:parent_id":85875847,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420547847],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108725005.geojson b/fixtures/microhoods/1108725005.geojson new file mode 100644 index 0000000..023109a --- /dev/null +++ b/fixtures/microhoods/1108725005.geojson @@ -0,0 +1 @@ +{"id":1108725005,"type":"Feature","bbox":[-77.0853843062224,38.83171719085085,-77.07739003210386,38.84218034045398],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08482113132212,38.8362221137952],[-77.08425552762095,38.83613976375226],[-77.0839244678105,38.83611605093554],[-77.08375094680642,38.83613976365746],[-77.08365353150586,38.83619904552543],[-77.08363222190889,38.83629389653949],[-77.08361091231188,38.83639289712386],[-77.0835896027149,38.83649604727859],[-77.08356829311789,38.83660334700363],[-77.0835469835209,38.83671479629902],[-77.08352871815205,38.83682031731761],[-77.08351349701134,38.83691991005941],[-77.08350132009878,38.83701357452443],[-77.08349218741435,38.83710131071265],[-77.0834868600151,38.83719556767262],[-77.08348533790104,38.83729634540431],[-77.08348762107214,38.83740364390773],[-77.08349370952843,38.83751746318288],[-77.08350132009878,38.83764965913215],[-77.0835104527832,38.83780023175554],[-77.0835211075817,38.83796918105305],[-77.08353328449425,38.83815650702469],[-77.08354393929275,38.83835865233715],[-77.08355307197718,38.83857561699046],[-77.08356068254753,38.83880740098461],[-77.08356677100382,38.83905400431959],[-77.08356600994678,38.83926918912894],[-77.08355839937643,38.83945295541265],[-77.08354393929275,38.83960530317072],[-77.08352262969576,38.83972623240316],[-77.08350132009876,38.83983471294214],[-77.08348001050177,38.83993074478767],[-77.08345870090477,38.84001432793973],[-77.0834373913078,38.84008546239835],[-77.08340390479823,38.84017200913274],[-77.08335824137609,38.84027396814292],[-77.0833004010414,38.84039133942887],[-77.08323038379413,38.8405241229906],[-77.08316569394611,38.84064090129349],[-77.08310633149736,38.84074167433754],[-77.08305229644783,38.84082644212275],[-77.08300358879755,38.84089520464912],[-77.08294955374802,38.84096278155496],[-77.08289019129927,38.84102917284027],[-77.08282550145125,38.84109437850505],[-77.082755484204,38.84115839854928],[-77.08268470589971,38.8412218257609],[-77.08261316653835,38.8412846601399],[-77.08254086611998,38.84134690168626],[-77.08246780464458,38.84140855040001],[-77.08238637154179,38.84147197737902],[-77.08229656681158,38.8415371826233],[-77.08219839045401,38.84160416613285],[-77.08209184246905,38.84167292790767],[-77.08197996708485,38.84173694744964],[-77.08186276430138,38.84179622475876],[-77.08174023411867,38.84185075983503],[-77.0816123765367,38.84190055267846],[-77.08148299684066,38.84194560332886],[-77.08135209503057,38.84198591178624],[-77.0812196711064,38.84202147805058],[-77.08108572506815,38.84205230212191],[-77.08093960211734,38.84208016233359],[-77.08078130225395,38.84210505868561],[-77.080610825478,38.84212699117799],[-77.08042817178949,38.84214595981072],[-77.08024627915802,38.84216077905469],[-77.08006514758355,38.84217144890989],[-77.07988477706616,38.84217796937632],[-77.07970516760578,38.84218034045398],[-77.0795362129439,38.84217915491435],[-77.07937791308053,38.84217441275744],[-77.07923026801565,38.84216611398323],[-77.07909327774927,38.84215425859173],[-77.0789608538251,38.84214181042804],[-77.07883299624314,38.84212876949217],[-77.07870970500339,38.84211513578412],[-77.07859098010584,38.84210090930389],[-77.07843800764172,38.84207660570713],[-77.07825078761098,38.84204222499388],[-77.07802932001367,38.84199776716409],[-77.07777360484974,38.84194323221778],[-77.0775818184768,38.84188869722968],[-77.07745396089484,38.84183416219979],[-77.07739003210386,38.84177962712809],[-77.07739003210386,38.84172509201461],[-77.07739688161718,38.84148382859435],[-77.07741058064383,38.84105583686732],[-77.07743112918378,38.84044111683353],[-77.07745852723706,38.83963966849296],[-77.07748592529033,38.83867458778435],[-77.07751332334361,38.8375458747077],[-77.07754072139689,38.83625352926299],[-77.07756811945016,38.83479755145024],[-77.07771576451505,38.83370378954302],[-77.07798365659153,38.83297224354135],[-77.07837179567963,38.83260291344521],[-77.07888018177931,38.83259579925462],[-77.07927440932369,38.83254540683409],[-77.07955447831276,38.83245173618361],[-77.0797203887465,38.8323147873032],[-77.0797721406249,38.83213456019284],[-77.07982084827518,38.83200116842573],[-77.0798665116973,38.83191461200187],[-77.0799091308913,38.83187489092127],[-77.07994870585713,38.83188200518391],[-77.08000502407776,38.83189267657362],[-77.08007808555317,38.83190690509037],[-77.08016789028335,38.83192469073418],[-77.08027443826832,38.83194603350506],[-77.08036500405554,38.83196619056201],[-77.08043958764502,38.83198516190504],[-77.08049818903675,38.83200294753416],[-77.08054080823074,38.83201954744936],[-77.08058647165286,38.83203674021394],[-77.08063517930313,38.83205452582789],[-77.08068693118155,38.83207290429121],[-77.08074172728811,38.8320918756039],[-77.08080185079392,38.83210669694159],[-77.08086730169896,38.83211736830427],[-77.08093808000326,38.83212388969195],[-77.0810141857068,38.83212626110462],[-77.0810803976689,38.83212744681095],[-77.08113671588951,38.83212744681095],[-77.08118314036868,38.83212626110462],[-77.0812196711064,38.83212388969195],[-77.08126000712927,38.83211618259644],[-77.08130414843734,38.83210313981809],[-77.08135209503057,38.8320847613569],[-77.08140384690898,38.83206104721287],[-77.0814814747266,38.83201243309026],[-77.08158497848342,38.83193891898904],[-77.08171435817945,38.83184050490924],[-77.08186961381469,38.83171719085085],[-77.08216185971631,38.83175987490127],[-77.08259109588433,38.83196855706052],[-77.08315732231873,38.83234323732859],[-77.0838605390195,38.83288391570547],[-77.08442524333984,38.83330898816811],[-77.0848514352797,38.8336184547165],[-77.08517640663386,38.83383187903063],[-77.08534716601783,38.83392146125546],[-77.0853583056013,38.8340677708807],[-77.0853843062224,38.8346097712212],[-77.0853503063929,38.8347947711094],[-77.0852693057491,38.8350617709136],[-77.0851643058741,38.8352807707454],[-77.0850453060418,38.8355377712566],[-77.0849763059766,38.835725770846],[-77.0848223055666,38.8362107709379],[-77.08482113132212,38.8362221137952]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":597262.505852,"geom:bbox":"-77.0853843062,38.8317171909,-77.0773900321,38.8421803405","geom:latitude":38.836893,"geom:longitude":-77.080807,"iso:country":"US","lbl:latitude":38.836841,"lbl:longitude":-77.080483,"lbl:max_zoom":18,"mps:latitude":38.836841,"mps:longitude":-77.080483,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.836841,"reversegeo:longitude":-77.080483,"src:geom":"mz","wof:belongsto":[420547829,102191575,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0d8626583b7104a752bbb0a402cc0c80","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108725005,"neighbourhood_id":420547829,"region_id":85688747}],"wof:id":1108725005,"wof:lastmodified":1566623909,"wof:name":"Parkfairfax","wof:parent_id":420547829,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420547845],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108725007.geojson b/fixtures/microhoods/1108725007.geojson new file mode 100644 index 0000000..04f2be3 --- /dev/null +++ b/fixtures/microhoods/1108725007.geojson @@ -0,0 +1 @@ +{"id":1108725007,"type":"Feature","bbox":[-77.085358,38.833871,-77.085343,38.834068],"geometry":{"type":"Polygon","coordinates":[[[-77.085343,38.833871],[-77.085347,38.833921],[-77.085358,38.834068],[-77.085343,38.833871]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":1155165.3687,"geom:bbox":"-77.085358,38.833871,-77.085343,38.834068","geom:latitude":38.833953,"geom:longitude":-77.085349,"iso:country":"US","lbl:latitude":38.826355,"lbl:longitude":-77.069907,"lbl:max_zoom":18,"mps:latitude":38.826355,"mps:longitude":-77.069907,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.826355,"reversegeo:longitude":-77.069907,"src:geom":"mz","wof:belongsto":[102191575,85633793,102080641,101728581,420547829,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ea2a43181476ce8ec92765843b4d1c68","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108725007,"neighbourhood_id":420547829,"region_id":85688747}],"wof:id":1108725007,"wof:lastmodified":1613774418,"wof:name":"Braddock Heights","wof:parent_id":420547829,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420547831],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108725009.geojson b/fixtures/microhoods/1108725009.geojson new file mode 100644 index 0000000..35ee3af --- /dev/null +++ b/fixtures/microhoods/1108725009.geojson @@ -0,0 +1 @@ +{"id":1108725009,"type":"Feature","bbox":[-77.089551,38.813736,-77.071551,38.8267167526492],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.071551,38.814045],[-77.071697,38.813953],[-77.071761,38.81392],[-77.07181,38.813902],[-77.071863,38.813891],[-77.072412,38.813845],[-77.072998,38.813798],[-77.073055,38.813794],[-77.073357,38.813773],[-77.0736,38.813755],[-77.074088,38.813736],[-77.07434,38.813757],[-77.074536,38.813782],[-77.074781,38.813822],[-77.075628,38.813974],[-77.07623,38.814062],[-77.076399,38.814077],[-77.076482,38.814084],[-77.07655,38.814091],[-77.07658,38.814094],[-77.076608,38.814097],[-77.076718,38.814105],[-77.07681,38.814113],[-77.07693,38.814123],[-77.076973,38.814122],[-77.077015,38.814125],[-77.078227,38.814204],[-77.078259,38.814205],[-77.078445,38.814215],[-77.07862,38.814213],[-77.078863,38.814217],[-77.07927,38.814213],[-77.080165,38.814188],[-77.080587,38.814174],[-77.080822,38.814168],[-77.081078,38.814195],[-77.081281,38.814225],[-77.081466,38.814258],[-77.081641,38.814303],[-77.081892,38.814378],[-77.082293,38.814507],[-77.082495,38.814585],[-77.082596,38.814624],[-77.082708,38.81467],[-77.082927,38.814772],[-77.08309,38.814851],[-77.083351,38.814992],[-77.083441,38.815046],[-77.083631,38.815166],[-77.083923,38.815333],[-77.084215,38.815477],[-77.084479,38.815592],[-77.084727,38.815689],[-77.085563,38.816026],[-77.085712,38.816085],[-77.086715,38.816484],[-77.087123,38.816642],[-77.087235,38.81668],[-77.087855,38.816906],[-77.088343,38.817083],[-77.088817,38.81725],[-77.088893,38.817273],[-77.088915,38.81728],[-77.089012,38.817307],[-77.089103,38.817331],[-77.089173,38.817346],[-77.089232,38.817362],[-77.089488,38.817407],[-77.089551,38.817416],[-77.08944,38.818431],[-77.089402,38.818742],[-77.089355,38.819169],[-77.089253,38.820031],[-77.089233,38.820201],[-77.08915,38.820998],[-77.08905,38.821843],[-77.089029,38.822],[-77.089012,38.822128],[-77.088974,38.822462],[-77.088767,38.824238],[-77.088707,38.824788],[-77.088703,38.824845],[-77.088687,38.824954],[-77.088682,38.824995],[-77.08859727361012,38.82565722925425],[-77.08744588676103,38.82555928133431],[-77.08735643242795,38.82555758157459],[-77.08731552343419,38.82555715663454],[-77.08729620783603,38.82556446061873],[-77.08728879622491,38.82557967844738],[-77.08728006897289,38.82568166392511],[-77.08717556806721,38.8267167526492],[-77.086831,38.82646],[-77.086385,38.826155],[-77.085089,38.825277],[-77.08469,38.825011],[-77.084531,38.824906],[-77.083602,38.824294],[-77.083332,38.824124],[-77.082243,38.823426],[-77.081602,38.823011],[-77.081225,38.82274],[-77.080844,38.822455],[-77.08033,38.822013],[-77.080092,38.82179],[-77.079937,38.821656],[-77.079827,38.821557],[-77.079627,38.821375],[-77.079564,38.821318],[-77.079223,38.820994],[-77.07881,38.820606],[-77.07851,38.820329],[-77.078393,38.820222],[-77.078315,38.820151],[-77.077896,38.819766],[-77.077455,38.819362],[-77.076803,38.818767],[-77.076793,38.818759],[-77.0766,38.818581],[-77.07581,38.81787],[-77.075327,38.817426],[-77.074752,38.816907],[-77.074714,38.816875],[-77.073817,38.816076],[-77.073245,38.815552],[-77.072372,38.814769],[-77.072139,38.814558],[-77.071748,38.814202],[-77.071551,38.814045]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000114,"geom:area_square_m":1100755.357821,"geom:bbox":"-77.089551,38.813736,-77.071551,38.8267167526","geom:latitude":38.819054,"geom:longitude":-77.082465,"iso:country":"US","lbl:latitude":38.819598,"lbl:longitude":-77.089153,"lbl:max_zoom":18,"mps:latitude":38.81914,"mps:longitude":-77.082599,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Chapel Hill"],"name:deu_x_preferred":["Chapel Hill"],"name:eng_x_variant":["Chapel Hl"],"name:fra_x_preferred":["Chapel Hill"],"name:ita_x_preferred":["Chapel Hill"],"name:jpn_x_preferred":["チャペルヒル"],"name:kor_x_preferred":["채플힐"],"name:nld_x_preferred":["Chapel Hill"],"name:pol_x_preferred":["Chapel Hill"],"name:por_x_preferred":["Chapel Hill"],"name:srp_x_preferred":["Чапел Хил"],"name:swe_x_preferred":["Chapel Hill"],"name:ukr_x_preferred":["Чапел-Гілл"],"name:vol_x_preferred":["Chapel Hill"],"name:wuu_x_preferred":["教堂山"],"name:zho_x_preferred":["教堂山"],"reversegeo:latitude":38.81914,"reversegeo:longitude":-77.082599,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108724991,102191575,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e7f396769e916c8057bcad378bce6cf0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"microhood_id":1108725009,"neighbourhood_id":1108724991,"region_id":85688747}],"wof:id":1108725009,"wof:lastmodified":1566623909,"wof:name":"Chapel Hill","wof:parent_id":1108724991,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85810399],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108725011.geojson b/fixtures/microhoods/1108725011.geojson new file mode 100644 index 0000000..19b4441 --- /dev/null +++ b/fixtures/microhoods/1108725011.geojson @@ -0,0 +1 @@ +{"id":1108725011,"type":"Feature","bbox":[-77.10411534583929,38.80986329602753,-77.09489337587532,38.81499441233135],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.10411534583929,38.81162741156461],[-77.10403369178619,38.81175906171615],[-77.10395256680897,38.8118942832971],[-77.10390459725724,38.81198003348841],[-77.10387073639718,38.81204709445184],[-77.10385098422881,38.81209546618741],[-77.1038333483642,38.81214328821351],[-77.10381782880334,38.81219056053016],[-77.10380442554623,38.81223728313736],[-77.10379313859289,38.81228345603509],[-77.1037832625087,38.81232688052597],[-77.1037747972937,38.81236755660999],[-77.10376774294784,38.81240548428715],[-77.10376209947117,38.81244066355745],[-77.10375927773282,38.81247859118188],[-77.10375927773282,38.81251926716043],[-77.10376209947117,38.81256269149311],[-77.10376774294784,38.81260886417991],[-77.1037747972937,38.81265283814542],[-77.1037832625087,38.81269461338963],[-77.10379313859289,38.81273418991255],[-77.10380442554623,38.81277156771419],[-77.10381006902291,38.8128127931973],[-77.10381006902291,38.81285786636189],[-77.10380442554623,38.81290678720796],[-77.10379313859289,38.81295955573552],[-77.10375786686366,38.81307993308599],[-77.10369861035856,38.81326791925936],[-77.1036153690776,38.81352351425566],[-77.10350814302076,38.81384671807487],[-77.10341855282854,38.81411385563225],[-77.10334659850092,38.81432492692779],[-77.10329228003792,38.81447993196149],[-77.10325559743953,38.81457887073336],[-77.10320339528027,38.81466351830803],[-77.10313567356017,38.81473387468549],[-77.10305243227921,38.81478993986576],[-77.10295367143738,38.81483171384882],[-77.10286055407224,38.81486744159017],[-77.10277308018377,38.81489712308978],[-77.10269124977196,38.81492075834768],[-77.10261506283683,38.81493834736386],[-77.10253746503254,38.8149537377514],[-77.10245845635907,38.81496692951027],[-77.10237803681645,38.81497792264049],[-77.10229620640466,38.81498671714207],[-77.10221014338535,38.81499221370569],[-77.10211984775854,38.81499441233135],[-77.10202531952422,38.81499331301906],[-77.10192655868241,38.81498891576882],[-77.10183061957892,38.81498177023504],[-77.10173750221377,38.81497187641771],[-77.10164720658696,38.81495923431685],[-77.10155973269848,38.81494384393243],[-77.10147437511375,38.8149268045725],[-77.1013911338328,38.81490811623704],[-77.10131000885559,38.81488777892606],[-77.10123100018212,38.81486579263954],[-77.10115269694325,38.81484215737139],[-77.10107509913897,38.81481687312161],[-77.10099820676925,38.81478993989019],[-77.10092201983414,38.81476135767714],[-77.10084583289901,38.81473112647451],[-77.1007696459639,38.8146992462823],[-77.10069345902876,38.81466571710052],[-77.10061727209364,38.81463053892916],[-77.10041057976039,38.81447883117731],[-77.10007338202902,38.81421059384499],[-77.09960567889952,38.81382582693217],[-77.09900747037189,38.81332453043886],[-77.09855317049949,38.81294471034261],[-77.09824277928233,38.81268636664341],[-77.09801986195365,38.81251102207851],[-77.09765585770806,38.81276167289388],[-77.09741318821101,38.81292877343747],[-77.09721637196193,38.81305629752566],[-77.09706540896087,38.81314424515845],[-77.09696029920778,38.81319261633587],[-77.09690104270268,38.81320141105788],[-77.09684178619759,38.81320360973729],[-77.09678252969249,38.81319921237412],[-77.0967232731874,38.81318821896834],[-77.09666401668231,38.81317062951997],[-77.09659911670055,38.81314149695969],[-77.0965285732421,38.81310082128749],[-77.09645238630698,38.8130486025034],[-77.09637055589518,38.81298484060738],[-77.09628237657212,38.81291887995589],[-77.0961878483378,38.81285072054888],[-77.09608697119222,38.81278036238638],[-77.0959797451354,38.81270780546838],[-77.09586193755979,38.81262645363608],[-77.0957335484654,38.8125363068895],[-77.09559457785227,38.81243736522863],[-77.09544502572037,38.81232962865349],[-77.09532157466808,38.81224003136437],[-77.09522422469543,38.81216857336128],[-77.09515297580239,38.81211525464423],[-77.095107827989,38.81208007521322],[-77.0950669127831,38.81204599512517],[-77.09503023018469,38.81201301438008],[-77.09499778019381,38.81198113297798],[-77.09496956281043,38.81195035091883],[-77.09494628346914,38.81191627075884],[-77.09492794216996,38.81187889249801],[-77.09491453891285,38.81183821613634],[-77.09490607369783,38.81179424167382],[-77.09489972478657,38.81174971750131],[-77.09489549217906,38.8117046436188],[-77.09489337587532,38.81165902002629],[-77.09489337587532,38.81161284672378],[-77.09489619761365,38.81156557402259],[-77.09490184109033,38.81151720192271],[-77.09491030630534,38.81146773042414],[-77.0949215932587,38.81141715952689],[-77.09494134542706,38.81135394579761],[-77.09496956281045,38.81127808923632],[-77.09500624540884,38.81118958984301],[-77.09505139322223,38.81108844761766],[-77.09510994429274,38.81094113099131],[-77.09518189862037,38.81074763996394],[-77.09529194641554,38.81043651457819],[-77.0954898208165,38.80986329602753],[-77.095717,38.809911],[-77.096259,38.810021],[-77.097,38.810172],[-77.097346,38.810243],[-77.097546,38.810285],[-77.097682,38.810308],[-77.097906,38.810357],[-77.09813,38.810403],[-77.099375,38.810626],[-77.099564,38.810659],[-77.100326,38.81079],[-77.100627,38.810842],[-77.101075,38.810918],[-77.101403,38.810979],[-77.102082,38.811123],[-77.102459,38.811216],[-77.102812,38.811304],[-77.103458,38.81146],[-77.103475,38.811465],[-77.104087,38.81162],[-77.10411534583929,38.81162741156461]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":258156.636477,"geom:bbox":"-77.1041153458,38.809863296,-77.0948933759,38.8149944123","geom:latitude":38.812294,"geom:longitude":-77.099727,"iso:country":"US","lbl:latitude":38.813008,"lbl:longitude":-77.101718,"lbl:max_zoom":18,"mps:latitude":38.813008,"mps:longitude":-77.101718,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.813008,"reversegeo:longitude":-77.101718,"src:geom":"mz","wof:belongsto":[85875847,102191575,1108724981,85633793,101728581,102080641,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"351f3559eaa76b99c88d850170a83453","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102080641,"locality_id":101728581,"macrohood_id":1108724981,"microhood_id":1108725011,"neighbourhood_id":85875847,"region_id":85688747}],"wof:id":1108725011,"wof:lastmodified":1566623908,"wof:name":"Dalecrest","wof:parent_id":85875847,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420547825],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108725077.geojson b/fixtures/microhoods/1108725077.geojson new file mode 100644 index 0000000..58fc882 --- /dev/null +++ b/fixtures/microhoods/1108725077.geojson @@ -0,0 +1 @@ +{"id":1108725077,"type":"Feature","bbox":[-77.1050203128498,38.834775,-77.08803415053076,38.84324976448299],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08803415053076,38.8382923064129],[-77.088048,38.838285],[-77.08837,38.838114],[-77.088526,38.838033],[-77.089345,38.837621],[-77.089532,38.837529],[-77.089673,38.83746],[-77.090123,38.837241],[-77.09015,38.837227],[-77.090919,38.836877],[-77.091198,38.836764],[-77.091608,38.836589],[-77.091857,38.836491],[-77.092103,38.836401],[-77.092549,38.836237],[-77.092608,38.836216],[-77.093088,38.83605],[-77.093537,38.835911],[-77.094151,38.83574],[-77.09467,38.835597],[-77.09487,38.835541],[-77.095473,38.835373],[-77.095621,38.835333],[-77.095674,38.835315],[-77.095729,38.835303],[-77.096097,38.835201],[-77.097094,38.834925],[-77.097365,38.834852],[-77.097662,38.834775],[-77.09783,38.834874],[-77.09793,38.834932],[-77.098033,38.834989],[-77.09926382635132,38.83559081288448],[-77.0994833101744,38.8357047708248],[-77.1006753109625,38.8363247709941],[-77.10071845074638,38.83634766117516],[-77.100323,38.836867],[-77.100302,38.836861],[-77.100236,38.836855],[-77.100197,38.83686],[-77.100162,38.836864],[-77.100127,38.836873],[-77.100088,38.83689],[-77.100061,38.836907],[-77.10005,38.836914],[-77.100024,38.83694],[-77.100005,38.836977],[-77.100001,38.837003],[-77.099997,38.837026],[-77.099997,38.837048],[-77.1,38.837068],[-77.100003,38.837091],[-77.10000492494815,38.83709581237039],[-77.1000053108927,38.8370987708969],[-77.1000153105867,38.8371237706807],[-77.10004231085212,38.8371667705191],[-77.1000663104735,38.8371837711184],[-77.1000773110324,38.8371927712344],[-77.1001123105042,38.8372097705861],[-77.1001333106634,38.8372147708424],[-77.1001923110527,38.8372227712868],[-77.1002483103399,38.8372267708498],[-77.1003403105727,38.8372127708797],[-77.1004043111776,38.8371777710696],[-77.1007193113462,38.8373967708696],[-77.1008953114431,38.8375217705499],[-77.10093431058,38.8375487709705],[-77.1011493106831,38.8376887709848],[-77.101315311499,38.8378067712181],[-77.1015263114669,38.8379487706937],[-77.1017103119393,38.8380707705829],[-77.1017723119183,38.8381127706762],[-77.1022423116751,38.8384317714674],[-77.1022893115463,38.8384637714426],[-77.102327311371,38.8385067710702],[-77.102333733337,38.83851337634822],[-77.102352,38.838534],[-77.102409,38.838607],[-77.102465,38.838681],[-77.10259,38.838852],[-77.102647,38.83896],[-77.102714,38.839082],[-77.102773,38.839251],[-77.102802,38.839363],[-77.102802,38.839513],[-77.102884,38.839543],[-77.10288595663792,38.83954374538587],[-77.1028863123868,38.8395507711901],[-77.1029073114878,38.839558771069],[-77.1029823121785,38.8395907715894],[-77.1031253123532,38.839656771243],[-77.1032223119443,38.8397117714495],[-77.1034503120011,38.8398297711351],[-77.1035713117057,38.8398887711981],[-77.1039403119617,38.8400607714852],[-77.1039583125856,38.8400677714974],[-77.1040153124855,38.840092771328],[-77.1040443117537,38.8401047717416],[-77.10437831229372,38.840251771193],[-77.1044233119967,38.8402747712875],[-77.1044283128919,38.8402757713337],[-77.1050203128498,38.8407367717854],[-77.10408132720227,38.84141360597084],[-77.10359471713984,38.8418147786257],[-77.10327308554038,38.84207637190928],[-77.10300783431632,38.84228851115927],[-77.10279896346765,38.84245119637566],[-77.10261027363185,38.8425944693377],[-77.10244176480896,38.84271833004537],[-77.1022934369989,38.84282277849869],[-77.10216529020175,38.84290781469763],[-77.10204525796328,38.84298345256862],[-77.10193334028354,38.84304969211168],[-77.10182953716247,38.84310653332678],[-77.10173384860012,38.84315397621391],[-77.10164627459646,38.84319202077311],[-77.10156681515151,38.84322066700435],[-77.10149547026526,38.84323991490764],[-77.10143223993771,38.84324976448299],[-77.10135905083357,38.84324795852049],[-77.10127590295285,38.84323449702013],[-77.10118279629553,38.84320937998194],[-77.10107973086164,38.84317260740592],[-77.10096670665115,38.84312417929203],[-77.10084372366407,38.84306409564032],[-77.1007107819004,38.84299235645074],[-77.10056788136012,38.84290896172334],[-77.10041502204328,38.84281391145808],[-77.10025220394985,38.84270720565499],[-77.10007942707983,38.84258884431404],[-77.0998966914332,38.84245882743527],[-77.09970399701001,38.84231715501863],[-77.09950134381022,38.84216382706417],[-77.09928873183384,38.84199884357185],[-77.09906616108087,38.84182220454169],[-77.09885660523699,38.84165660545091],[-77.09866006430218,38.84150204629952],[-77.09847653827649,38.84135852708752],[-77.09830602715986,38.8412260478149],[-77.09814853095233,38.84110460848166],[-77.0980040496539,38.84099420908782],[-77.09787258326452,38.84089484963336],[-77.09775413178426,38.84080653011827],[-77.09764869521307,38.84072925054258],[-77.09755627355096,38.84066301090627],[-77.09747686679796,38.84060781120935],[-77.09741047495402,38.84056365145181],[-77.09735709801919,38.84053053163365],[-77.09731673599345,38.84050845175489],[-77.09728938887679,38.8404974118155],[-77.0972750566692,38.8404974118155],[-77.09726072446163,38.84049778118859],[-77.09724639225405,38.84049851993478],[-77.09723206004648,38.84049962805405],[-77.09721772783891,38.84050110554642],[-77.09720339563134,38.84050295241187],[-77.09718906342374,38.84050516865042],[-77.09717473121617,38.84050775426207],[-77.0971603990086,38.8405107092468],[-77.09714606680103,38.84051403360463],[-77.09713173459343,38.84051772733554],[-77.09711740238586,38.84052179043955],[-77.09710307017829,38.84052622291666],[-77.09708873797072,38.84053102476685],[-77.09707440576312,38.84053619599013],[-77.09706007355555,38.84054173658651],[-77.09704574134797,38.84054764655598],[-77.09703156721622,38.84055343340081],[-77.09701755116026,38.840559097121],[-77.09700369318014,38.84056463771656],[-77.09698999327586,38.84057005518748],[-77.09697645144736,38.84057534953376],[-77.0969630676947,38.84058052075542],[-77.09694984201785,38.84058556885243],[-77.09693677441683,38.84059049382481],[-77.09692386489162,38.84059529567254],[-77.09691111344223,38.84059997439564],[-77.09689852006866,38.84060452999411],[-77.0968860847709,38.84060896246794],[-77.09687380754897,38.84061327181713],[-77.09686168840287,38.84061745804168],[-77.09684972733257,38.84062152114161],[-77.0968379243381,38.84062546111689],[-77.09682612134363,38.84062919588511],[-77.09681431834915,38.84063272544626],[-77.09680251535468,38.84063604980034],[-77.09679071236019,38.84063916894735],[-77.09677890936572,38.84064208288729],[-77.09676710637125,38.84064479162018],[-77.09675530337677,38.84064729514599],[-77.0967435003823,38.84064959346473],[-77.09673169738782,38.84065168657641],[-77.09671989439335,38.84065357448102],[-77.09670809139888,38.84065525717857],[-77.09669628840439,38.84065673466905],[-77.09668448540992,38.84065800695245],[-77.09667268241543,38.8406590740288],[-77.09666087942097,38.84065993589807],[-77.09664907642649,38.84066059256028],[-77.09663722074008,38.84066124922248],[-77.09662531236172,38.84066190588467],[-77.09661335129142,38.84066256254687],[-77.0966013375292,38.84066321920905],[-77.09658927107502,38.84066387587123],[-77.0965771519289,38.8406645325334],[-77.09656498009085,38.84066518919556],[-77.09655275556085,38.84066584585773],[-77.09654047833891,38.84066650251988],[-77.09652814842505,38.84066715918203],[-77.09651576581923,38.84066781584417],[-77.09650333052149,38.84066847250629],[-77.0964908425318,38.84066912916843],[-77.09647830185017,38.84066978583055],[-77.0964657084766,38.84067044249267],[-77.09645306241109,38.84067109915478],[-77.09644025826977,38.84067167373412],[-77.09642729605261,38.8406721662307],[-77.09641417575965,38.84067257664452],[-77.09640089739086,38.84067290497558],[-77.09638746094626,38.84067315122387],[-77.09637386642585,38.8406733153894],[-77.0963601138296,38.84067339747216],[-77.09634620315754,38.84067339747216],[-77.09633213440966,38.8406733153894],[-77.09631790758596,38.84067315122387],[-77.09630352268644,38.84067290497558],[-77.09628897971112,38.84067257664452],[-77.09627427865996,38.8406721662307],[-77.09625941953297,38.84067167373412],[-77.09624440233019,38.84067109915478],[-77.09622922705158,38.84067044249267],[-77.0962139463891,38.84066892396],[-77.09619856034271,38.84066654355679],[-77.09618306891247,38.84066330128302],[-77.09616747209834,38.84065919713869],[-77.09615176990033,38.84065423112381],[-77.09613596231846,38.84064840323838],[-77.09612004935269,38.8406417134824],[-77.09610403100302,38.84063416185586],[-77.0960879072695,38.84062574835877],[-77.0960716781521,38.84061647299112],[-77.09605534365082,38.84060633575292],[-77.09603890376566,38.84059533664417],[-77.09602235849661,38.84058347566486],[-77.09600570784369,38.840570752815],[-77.09598895180689,38.84055716809459],[-77.09597209038621,38.84054272150362],[-77.0959500124635,38.84052421175652],[-77.09592271803878,38.84050163885328],[-77.09589020711202,38.84047500279391],[-77.09585247968326,38.8404443035784],[-77.09580953575247,38.84040954120675],[-77.09576137531964,38.84037071567897],[-77.09570799838481,38.84032782699506],[-77.09564940494795,38.84028087515501],[-77.09558559500907,38.84022986015882],[-77.09551656856817,38.8401747820065],[-77.09544232562524,38.84011564069804],[-77.09536286618028,38.84005243623345],[-77.0952781902333,38.83998516861271],[-77.09518829778432,38.83991383783585],[-77.09509318883329,38.83983844390285],[-77.09499286338026,38.83975898681371],[-77.09489754366147,38.83968683519113],[-77.09480722967696,38.83962198903512],[-77.09472192142671,38.83956444834567],[-77.09464161891071,38.83951421312278],[-77.094566322129,38.83947128336646],[-77.09449603108155,38.8394356590767],[-77.09443074576836,38.8394073402535],[-77.09437046618942,38.83938632689686],[-77.09431519234477,38.83937261900679],[-77.09426492423435,38.83936621658327],[-77.09421966185823,38.83936711962632],[-77.09417940521635,38.83937532813594],[-77.09414415430875,38.83939084211211],[-77.0941139091354,38.83941366155485],[-77.09408866969632,38.83944378646415],[-77.09406843599152,38.83948121684001],[-77.09403713697938,38.83951400946114],[-77.09399477265991,38.83954216432754],[-77.09394134303314,38.8395656814392],[-77.09387684809904,38.83958456079612],[-77.09380128785762,38.83959880239831],[-77.09371466230888,38.83960840624577],[-77.09361697145282,38.83961337233849],[-77.09350821528943,38.83961370067648],[-77.09338839381874,38.83960939125974],[-77.0932575070407,38.83960044408825],[-77.09311555495536,38.83958685916204],[-77.0929625375627,38.83956863648109],[-77.0927984548627,38.83954577604541],[-77.09262330685542,38.83951827785499],[-77.09243709354078,38.83948614190983],[-77.09223981491883,38.83944936820994],[-77.09205455005912,38.83941542641497],[-77.09188129896162,38.83938431652493],[-77.09172006162639,38.8393560385398],[-77.09157083805339,38.8393305924596],[-77.09143362824261,38.83930797828432],[-77.09130843219405,38.83928819601397],[-77.09119524990774,38.83927124564853],[-77.09109408138367,38.83925712718802],[-77.09100492662182,38.83924584063243],[-77.09092778562223,38.83923738598176],[-77.09086265838485,38.83923176323601],[-77.09080954490969,38.83922897239518],[-77.09076844519679,38.83922901345927],[-77.09073935924611,38.83923188642829],[-77.09072228705767,38.83923759130222],[-77.09071722863149,38.83924612808109],[-77.09070663755162,38.83925392610035],[-77.09069051381809,38.83926098536003],[-77.0906688574309,38.83926730586013],[-77.09064166839006,38.83927288760064],[-77.09060894669555,38.83927773058156],[-77.09057069234738,38.8392818348029],[-77.09052690534556,38.83928520026464],[-77.09047758569008,38.8392878269668],[-77.09042273338093,38.83928971490936],[-77.09036234841813,38.83929086409235],[-77.09029643080166,38.83929127451574],[-77.09022498053152,38.83929094617955],[-77.09014799760773,38.83928987908376],[-77.09006548203028,38.83928807322839],[-77.08997743379918,38.83928552861344],[-77.0898838529144,38.83928224523889],[-77.08979612083493,38.8392783462301],[-77.08971423756076,38.83927383158708],[-77.08963820309188,38.83926870130981],[-77.0895680174283,38.83926295539829],[-77.08950368057002,38.83925659385254],[-77.08944519251705,38.83924961667253],[-77.08939255326936,38.8392420238583],[-77.08934576282697,38.83923381540981],[-77.08930482118988,38.83922499132709],[-77.08926972835809,38.83921555161012],[-77.08924048433161,38.83920549625891],[-77.0892170891104,38.83919482527347],[-77.08919954269452,38.83918353865377],[-77.08918784508393,38.83917163639984],[-77.08918199627863,38.83915911851166],[-77.08918199627863,38.83914598498924],[-77.08918178551087,38.83913293354927],[-77.08918136397534,38.83911996419173],[-77.08918073167207,38.83910707691664],[-77.08917988860104,38.83909427172399],[-77.08917883476224,38.83908154861378],[-77.0891775701557,38.83906890758603],[-77.08917609478138,38.8390563486407],[-77.08917440863932,38.83904387177783],[-77.08917251172949,38.83903147699739],[-77.08917040405191,38.83901916429939],[-77.08916808560656,38.83900693368385],[-77.08916555639347,38.83899478515074],[-77.0891628164126,38.83898271870008],[-77.08915986566399,38.83897073433185],[-77.0891567041476,38.83895883204607],[-77.08915333186347,38.83894701184274],[-77.08914964342769,38.83893547893504],[-77.08914563884028,38.838924233323],[-77.08914131810123,38.83891327500659],[-77.08913668121055,38.83890260398582],[-77.08913172816823,38.83889222026069],[-77.08912645897426,38.83888212383121],[-77.08912087362866,38.83887231469737],[-77.08911497213141,38.83886279285917],[-77.08910875448254,38.83885355831662],[-77.08910222068202,38.8388446110697],[-77.08909537072988,38.83883595111843],[-77.08908820462608,38.8388275784628],[-77.08908072237065,38.83881949310282],[-77.0890729239636,38.83881169503847],[-77.0890648094049,38.83880418426977],[-77.08905637869455,38.83879696079671],[-77.08904810606003,38.83878977836548],[-77.08903999150134,38.83878263697606],[-77.08903203501845,38.83877553662848],[-77.08902423661141,38.83876847732272],[-77.08901659628016,38.83876145905877],[-77.08900911402473,38.83875448183667],[-77.08900178984513,38.83874754565637],[-77.08899462374131,38.83874065051791],[-77.08898761571335,38.83873379642127],[-77.08898076576119,38.83872698336646],[-77.08897407388487,38.83872021135347],[-77.08896754008435,38.8387134803823],[-77.08896116435966,38.83870679045295],[-77.0889549467108,38.83870014156544],[-77.08894888713773,38.83869353371974],[-77.08894298564049,38.83868696691587],[-77.08893692606742,38.83868023594088],[-77.08893070841856,38.83867334079478],[-77.08892433269386,38.83866628147757],[-77.08891779889335,38.83865905798925],[-77.08891110701703,38.8386516703298],[-77.08890425706487,38.83864411849925],[-77.0888972490369,38.83863640249757],[-77.08889008293309,38.83862852232478],[-77.08888275875348,38.83862047798087],[-77.08887527649806,38.83861226946586],[-77.08886763616681,38.83860389677972],[-77.08885983775977,38.83859535992248],[-77.08885188127688,38.83858665889412],[-77.08884376671818,38.83857779369463],[-77.08883549408365,38.83856876432404],[-77.08882706337332,38.83855957078234],[-77.08881884343073,38.83855078766638],[-77.08881083425591,38.83854241497617],[-77.08880303584884,38.83853445271171],[-77.08879544820954,38.83852690087302],[-77.08878807133799,38.83851975946007],[-77.0887809052342,38.83851302847286],[-77.08877394989817,38.83850670791141],[-77.0887672053299,38.83850079777571],[-77.08876067152939,38.83849529806575],[-77.08875434849664,38.83849020878156],[-77.08874823623164,38.83848552992311],[-77.08874233473439,38.83848126149041],[-77.08873664400491,38.83847740348347],[-77.0887311640432,38.83847395590228],[-77.08872589484923,38.83847091874684],[-77.08872083642304,38.83846829201715],[-77.08871098303032,38.83846459817543],[-77.08869633467111,38.83845983722168],[-77.08867689134539,38.8384540091559],[-77.08865265305317,38.8384471139781],[-77.08862361979443,38.83843915168826],[-77.08858979156919,38.83843012228641],[-77.08855116837745,38.83842002577252],[-77.0885077502192,38.8384088621466],[-77.08845953709444,38.83839663140866],[-77.08840652900318,38.83838333355869],[-77.08834872594541,38.83836896859668],[-77.08828612792114,38.83835353652266],[-77.08821873493036,38.8383370373366],[-77.08814654697308,38.83831947103852],[-77.08806956404929,38.8383008376284],[-77.08803415053076,38.8382923064129]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000064,"geom:area_square_m":618943.145378,"geom:bbox":"-77.1050203128,38.834775,-77.0880341505,38.8432497645","geom:latitude":38.838708,"geom:longitude":-77.097327,"iso:country":"US","lbl:latitude":38.837693,"lbl:longitude":-77.097325,"lbl:max_zoom":18,"mps:latitude":38.837693,"mps:longitude":-77.097325,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["N Fairlington"],"reversegeo:latitude":38.837693,"reversegeo:longitude":-77.097325,"src:geom":"mz","wof:belongsto":[85875983,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"51e6c39fcf0a5c843b48f79c52f09dad","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108725077,"neighbourhood_id":85875983,"region_id":85688747}],"wof:id":1108725077,"wof:lastmodified":1566623909,"wof:name":"North Fairlington","wof:parent_id":85875983,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108725079.geojson b/fixtures/microhoods/1108725079.geojson new file mode 100644 index 0000000..8dcfb33 --- /dev/null +++ b/fixtures/microhoods/1108725079.geojson @@ -0,0 +1 @@ +{"id":1108725079,"type":"Feature","bbox":[-77.097662,38.82736315632507,-77.0846673057534,38.83880163966025],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.097662,38.834775],[-77.097365,38.834852],[-77.097094,38.834925],[-77.096097,38.835201],[-77.095729,38.835303],[-77.095674,38.835315],[-77.095621,38.835333],[-77.095473,38.835373],[-77.09487,38.835541],[-77.09467,38.835597],[-77.094151,38.83574],[-77.093537,38.835911],[-77.093088,38.83605],[-77.092608,38.836216],[-77.092549,38.836237],[-77.092103,38.836401],[-77.091857,38.836491],[-77.091608,38.836589],[-77.091198,38.836764],[-77.090919,38.836877],[-77.09015,38.837227],[-77.090123,38.837241],[-77.089673,38.83746],[-77.089532,38.837529],[-77.089345,38.837621],[-77.088526,38.838033],[-77.08837,38.838114],[-77.088048,38.838285],[-77.08803415053076,38.8382923064129],[-77.08798778615899,38.83828113710626],[-77.08791022362387,38.83826357080789],[-77.08783687644392,38.83824813873328],[-77.08776774461913,38.83823484088244],[-77.08770282814952,38.83822367725535],[-77.08764212703507,38.83821464785203],[-77.0875856412758,38.83820775267249],[-77.08753337087168,38.83820299171671],[-77.08748531582275,38.83820036498469],[-77.08744147612897,38.83819987247644],[-77.08740185179037,38.83820151419194],[-77.08736644280695,38.83820529013122],[-77.0873352491787,38.83821120029426],[-77.08730827090561,38.83821924468107],[-77.0872855079877,38.83822942329164],[-77.08726696042496,38.83824173612598],[-77.08725262821737,38.83825618318407],[-77.0872380325501,38.83827042502627],[-77.08722317342313,38.83828446165257],[-77.08720805083647,38.83829829306296],[-77.0871926647901,38.83831191925746],[-77.08717701528403,38.83832534023605],[-77.08716110231826,38.83833855599873],[-77.0871449258928,38.83835156654552],[-77.08712848600763,38.83836437187641],[-77.08711178266277,38.83837697199139],[-77.08709481585821,38.83838936689047],[-77.08707758559396,38.83840155657364],[-77.08706009187,38.83841354104092],[-77.08704233468636,38.83842532029229],[-77.087024314043,38.83843689432776],[-77.08700602993994,38.83844826314733],[-77.0869874823772,38.83845942675099],[-77.08696930365801,38.83847034409776],[-77.08695149378244,38.83848101518763],[-77.08693405275042,38.8384914400206],[-77.08691698056197,38.83850161859669],[-77.08690027721711,38.83851155091588],[-77.08688394271583,38.83852123697816],[-77.08686797705812,38.83853067678355],[-77.08685238024401,38.83853987033204],[-77.08683715227346,38.83854881762364],[-77.08682229314647,38.83855751865834],[-77.08680780286308,38.83856597343615],[-77.08679368142326,38.83857418195705],[-77.08677992882701,38.83858214422106],[-77.08676654507437,38.83858986022818],[-77.08675353016528,38.8385973299784],[-77.08674088409975,38.83860455347173],[-77.08672760573097,38.83861173592184],[-77.08671369505893,38.83861887732873],[-77.08669915208358,38.83862597769242],[-77.08668397680498,38.8386330370129],[-77.08666816922309,38.83864005529016],[-77.08665172933792,38.83864703252421],[-77.08663465714949,38.83865396871505],[-77.08661695265776,38.83866086386267],[-77.08659861586278,38.83866771796708],[-77.0865796467645,38.83867453102829],[-77.08656004536297,38.83868130304627],[-77.08653981165817,38.83868803402106],[-77.08651894565008,38.83869472395263],[-77.0864974473387,38.83870137284097],[-77.08647531672406,38.83870798068612],[-77.08645255380615,38.83871454748805],[-77.08643031780763,38.83872086803475],[-77.0864086087285,38.83872694232619],[-77.08638742656878,38.8387327703624],[-77.08636677132844,38.83873835214335],[-77.08634664300752,38.83874368766907],[-77.08632704160597,38.83874877693955],[-77.08630796712383,38.83875361995479],[-77.08628941956107,38.83875821671479],[-77.08627139891772,38.83876256721954],[-77.08625390519377,38.83876667146905],[-77.0862369383892,38.83877052946332],[-77.08622049850405,38.83877414120234],[-77.08620458553828,38.83877750668612],[-77.08618919949191,38.83878062591467],[-77.08617434036495,38.83878349888796],[-77.08616000815735,38.83878612560602],[-77.08614499095457,38.83878854711174],[-77.08612928875655,38.83879076340511],[-77.08611290156334,38.83879277448616],[-77.0860958293749,38.83879458035486],[-77.08607807219124,38.83879618101122],[-77.08605963001239,38.83879757645524],[-77.0860405028383,38.83879876668692],[-77.08602069066899,38.83879975170628],[-77.08600019350447,38.83880053151328],[-77.08597901134476,38.83880110610794],[-77.0859571441898,38.83880147549027],[-77.08593459203965,38.83880163966025],[-77.08591135489428,38.83880159861791],[-77.08588743275368,38.83880135236321],[-77.08586282561788,38.83880090089619],[-77.08583753348687,38.83880024421682],[-77.08581224135585,38.83879934128252],[-77.08578694922483,38.83879819209329],[-77.08576165709381,38.83879679664912],[-77.08573636496278,38.83879515495002],[-77.08571107283177,38.83879326699599],[-77.08568578070074,38.83879113278702],[-77.08566048856973,38.83878875232311],[-77.08563519643872,38.83878612560429],[-77.08560990430769,38.83878325263052],[-77.08558461217667,38.83878013340181],[-77.08555932004566,38.83877676791818],[-77.08553402791463,38.83877315617961],[-77.08550873578362,38.83876929818612],[-77.0854834436526,38.83876519393769],[-77.08545815152158,38.83876084343432],[-77.08543285939056,38.83875624667603],[-77.0854083049467,38.83875173200251],[-77.08538448818999,38.8387472994138],[-77.08536140912044,38.83874294890986],[-77.08533906773803,38.83873868049071],[-77.08531746404279,38.83873449415636],[-77.0852965980347,38.83873038990679],[-77.08527646971376,38.838726367742],[-77.08525707907998,38.83872242766201],[-77.08523842613336,38.8387185696668],[-77.08522051087388,38.83871479375637],[-77.08520333330156,38.83871109993075],[-77.0851868934164,38.8387074881899],[-77.0851711912184,38.83870395853384],[-77.08515622670754,38.83870051096257],[-77.08514199988385,38.83869714547609],[-77.08512851074731,38.83869386207441],[-77.0851141258478,38.83869037345966],[-77.0850988451853,38.83868667963183],[-77.08508266875984,38.83868278059096],[-77.0850655965714,38.83867867633703],[-77.08504762861999,38.83867436687003],[-77.0850287649056,38.83866985218998],[-77.08500900542825,38.83866513229687],[-77.0849883501879,38.83866020719069],[-77.08496506035058,38.83865466644579],[-77.0849391359163,38.83864851006217],[-77.08491057688502,38.83864173803981],[-77.08487938325676,38.83863435037873],[-77.0848403385295,38.83862511580192],[-77.08479344270324,38.83861403430939],[-77.08474554074272,38.83860272353932],[-77.084732306183,38.8385357719451],[-77.0846873061223,38.8383237715744],[-77.0846673057534,38.8381837718362],[-77.08467584066103,38.83810390960408],[-77.084725,38.837777],[-77.084725,38.837672],[-77.084757,38.837364],[-77.084796,38.836968],[-77.084828,38.836662],[-77.084884,38.836211],[-77.085032,38.835725],[-77.085099,38.835537],[-77.085214,38.835279],[-77.085316,38.83506],[-77.085394,38.834792],[-77.085432,38.834606],[-77.085418,38.83406],[-77.085407,38.833862],[-77.085401,38.833812],[-77.085399,38.833412],[-77.08538,38.83291],[-77.085366,38.832492],[-77.085343,38.832012],[-77.085335,38.831876],[-77.085328,38.831539],[-77.085325,38.831346],[-77.085313,38.831056],[-77.085319,38.830954],[-77.085346,38.830722],[-77.085351,38.830682],[-77.085419,38.830421],[-77.085471,38.830263],[-77.085555,38.830087],[-77.085654,38.829878],[-77.085661,38.829869],[-77.085718,38.829764],[-77.085789,38.829634],[-77.085872,38.829455],[-77.085947,38.829312],[-77.086004,38.829204],[-77.086054,38.829115],[-77.086091,38.829043],[-77.086129,38.828968],[-77.08626,38.828737],[-77.086281,38.828699],[-77.086535,38.82834],[-77.086728,38.828112],[-77.08693,38.827942],[-77.086986,38.827891],[-77.087295,38.827656],[-77.087489,38.827531],[-77.08769397575492,38.82741813360331],[-77.08781334082751,38.82736315632507],[-77.087931,38.82745],[-77.08793406289148,38.82745226914641],[-77.0879333066124,38.8274577693806],[-77.0902833071438,38.8291987693796],[-77.090298307686,38.8292097699622],[-77.09040673775084,38.82929241217772],[-77.092715,38.831177],[-77.092728,38.831188],[-77.095008,38.832961],[-77.095319,38.833202],[-77.095707,38.83349],[-77.096526,38.834045],[-77.096947,38.834324],[-77.097259,38.834533],[-77.097379,38.83461],[-77.09745,38.834655],[-77.097662,38.834775]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000077,"geom:area_square_m":745513.533773,"geom:bbox":"-77.097662,38.8273631563,-77.0846673058,38.8388016397","geom:latitude":38.833506,"geom:longitude":-77.08946,"iso:country":"US","lbl:latitude":38.832173,"lbl:longitude":-77.089106,"lbl:max_zoom":18,"mps:latitude":38.833359,"mps:longitude":-77.089362,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["S Fairlington"],"reversegeo:latitude":38.833359,"reversegeo:longitude":-77.089362,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85875983,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"535dba42ea0c72269fd20fd5d4763833","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108725079,"neighbourhood_id":85875983,"region_id":85688747}],"wof:id":1108725079,"wof:lastmodified":1566623909,"wof:name":"South Fairlington","wof:parent_id":85875983,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85849647],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726413.geojson b/fixtures/microhoods/1108726413.geojson new file mode 100644 index 0000000..bbc4985 --- /dev/null +++ b/fixtures/microhoods/1108726413.geojson @@ -0,0 +1 @@ +{"id":1108726413,"type":"Feature","bbox":[-77.06839235374943,38.8427198888839,-77.05601682407215,38.85320940352571],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.06742951214184,38.8491002824955],[-77.0674168105644,38.84937058062748],[-77.0673841462571,38.84957119517653],[-77.06729189197677,38.84988424367725],[-77.06725235442804,38.85011004788253],[-77.06723258565368,38.8503255876383],[-77.06723258565368,38.85053086294455],[-77.0672853023853,38.85074126949591],[-77.06739073584856,38.85095680729238],[-77.06752252767762,38.85116849557184],[-77.0676806778725,38.8513763343343],[-77.06782260156496,38.85154637685317],[-77.06794829875496,38.85167862312846],[-77.06806032180965,38.85181076667074],[-77.06815867072905,38.85194280747999],[-77.06822835238079,38.85206972289993],[-77.06826936676487,38.85219151293059],[-77.0683089043136,38.85232365548302],[-77.06834696502695,38.85246615055723],[-77.06837258497508,38.8526926322626],[-77.06839235374943,38.8531583347674],[-77.0668240309836,38.8531737298178],[-77.06318988320271,38.85320940352571],[-77.06318164258195,38.85276089686272],[-77.06317540778703,38.85230610507632],[-77.06315358600476,38.85195610949519],[-77.06311617723516,38.85171091011932],[-77.06306318147823,38.8515705069487],[-77.06299459873398,38.85153489998333],[-77.06292653555596,38.85149726987058],[-77.0628589919442,38.85145761661042],[-77.06279196789868,38.85141594020288],[-77.0627254634194,38.85137224064795],[-77.06263350019415,38.85131235595671],[-77.06251607822293,38.85123628612914],[-77.06237319750574,38.85114403116526],[-77.06220485804255,38.85103559106506],[-77.06206353602408,38.85094535915459],[-77.06194923145033,38.85087333543385],[-77.06186194432127,38.85081951990283],[-77.06180167463694,38.85078391256154],[-77.0617403658201,38.85075194687177],[-77.06167801787078,38.85072362283353],[-77.06161463078897,38.85069894044681],[-77.06155020457464,38.85067789971163],[-77.06147954356541,38.85065645433995],[-77.06140264776126,38.8506346043318],[-77.06131951716216,38.85061234968717],[-77.06123015176813,38.85058969040605],[-77.06114442333782,38.85057026816288],[-77.0610623318712,38.85055408295767],[-77.0609838773683,38.8505411347904],[-77.06090905982913,38.85053142366107],[-77.0608373596874,38.85052333105301],[-77.06076877694315,38.85051685696622],[-77.06070331159636,38.85051200140067],[-77.06064096364702,38.85050876435639],[-77.06056822437282,38.85050674120373],[-77.0604850937737,38.8505059319427],[-77.06039157184972,38.85050633657329],[-77.06028765860086,38.85050795509551],[-77.06012919089632,38.85050997824817],[-77.05991616873614,38.85051240603127],[-77.05964859212028,38.85051523844481],[-77.05932646104878,38.8505184754888],[-77.0590105647722,38.85052130790224],[-77.05870090329057,38.85052373568512],[-77.05839747660386,38.85052575883745],[-77.05810028471205,38.85052737735921],[-77.05785504944471,38.850505931889],[-77.05766177080181,38.85046142242679],[-77.05752044878335,38.85039384897259],[-77.05743108338932,38.85030321152639],[-77.05733080710417,38.85020974152197],[-77.05721961992786,38.85011343895929],[-77.05709752186044,38.85001430383838],[-77.05696451290189,38.84991233615923],[-77.05683721917201,38.84981481934008],[-77.05671564067083,38.84972175338095],[-77.05659977739833,38.84963313828183],[-77.05648962935453,38.84954897404272],[-77.05639454873182,38.84947209319353],[-77.05631453553016,38.84940249573428],[-77.05624958974963,38.84934018166496],[-77.05619971139016,38.84928515098555],[-77.05615658739188,38.84923295273727],[-77.05612021775478,38.84918358692011],[-77.05609060247885,38.84913705353404],[-77.0560677415641,38.8490933525791],[-77.05605059587805,38.8490488423173],[-77.05603916542066,38.84900352274867],[-77.05603345019198,38.84895739387319],[-77.05603345019198,38.84891045569086],[-77.0560360480232,38.84886149427157],[-77.05604124368564,38.84881050961533],[-77.0560490371793,38.84875750172213],[-77.0560594285042,38.84870247059197],[-77.05606930026283,38.84864743941925],[-77.05607865245524,38.84859240820395],[-77.05608748508139,38.84853737694608],[-77.0560957981413,38.84848234564564],[-77.05610359163497,38.84842812359015],[-77.05611086556239,38.84837471077959],[-77.05611761992357,38.84832210721397],[-77.0561238547185,38.8482703128933],[-77.05612749168222,38.8482189231798],[-77.05612853081472,38.84816793807346],[-77.05612697211598,38.8481173575743],[-77.05612281558602,38.8480671816823],[-77.05611346339361,38.84801457787823],[-77.05609891553877,38.84795954616209],[-77.05607917202148,38.84790208653389],[-77.05605423284175,38.84784219899362],[-77.05601682407215,38.84775236768321],[-77.05639714656303,38.84773051677819],[-77.05665069489028,38.84771594950816],[-77.05703101738116,38.84769409860314],[-77.05702166518877,38.8476503967394],[-77.05701543039383,38.84762126216356],[-77.05701543039383,38.84758929503974],[-77.05702166518877,38.8475544953679],[-77.05703413477863,38.84751686314807],[-77.05705283916342,38.84747639838024],[-77.0570715435482,38.84743633823843],[-77.05709024793302,38.84739668272265],[-77.0571089523178,38.8473574318329],[-77.05712765670262,38.84731858556916],[-77.05714064585872,38.84727447883233],[-77.05714791978615,38.84722511162239],[-77.05714947848487,38.84717048393934],[-77.05714532195492,38.84711059578319],[-77.05713648932876,38.84705232618331],[-77.05712298060641,38.84699567513972],[-77.05710479578785,38.84694064265241],[-77.05708193487311,38.84688722872138],[-77.05706219135583,38.84682774495387],[-77.057045565236,38.84676219134989],[-77.05703205651365,38.84669056790942],[-77.05702166518877,38.84661287463248],[-77.05701750865882,38.84653437196035],[-77.05701958692379,38.84645505989302],[-77.0570278999837,38.8463749384305],[-77.05704244783854,38.84629400757278],[-77.05706219135583,38.84621671853497],[-77.05708713053555,38.84614307131706],[-77.05711726537773,38.84607306591904],[-77.05715259588234,38.84600670234092],[-77.05718896551946,38.84594155267543],[-77.05722637428904,38.84587761692254],[-77.05726482219113,38.84581489508227],[-77.0573043092257,38.84575338715463],[-77.05734899192271,38.8456922838333],[-77.05739887028219,38.8456315851183],[-77.05745394430409,38.84557129100962],[-77.05751421398841,38.84551140150726],[-77.05757240540778,38.84545272593686],[-77.05762851856218,38.8453952642984],[-77.0576825534516,38.8453390165919],[-77.05773451007603,38.84528398281735],[-77.05778334930301,38.84523906553834],[-77.0578290711325,38.84520426475489],[-77.05787167556454,38.84517958046698],[-77.05791116259913,38.84516501267463],[-77.05800260625813,38.84515530081339],[-77.05814600654158,38.84515044488326],[-77.05834136344944,38.84515044488425],[-77.05858867698177,38.84515530081637],[-77.05895964728023,38.84516258471454],[-77.05901420173589,38.84398985517895],[-77.05907327956912,38.8427198888839],[-77.0593502985628,38.8428797733005],[-77.0598272988137,38.84313777397951],[-77.0603032990722,38.8433687733407],[-77.0606562992453,38.8435737737912],[-77.0611572989536,38.8438367733614],[-77.0616142994187,38.8441207732726],[-77.0621472995461,38.8443927737021],[-77.0624332994545,38.8445397736428],[-77.0627902999666,38.84473377352991],[-77.0630642993059,38.8448617734911],[-77.0632583001714,38.8449307734169],[-77.0635823002549,38.8449947734745],[-77.06387329948981,38.8450187739675],[-77.06420829968312,38.8449847736966],[-77.0642962997821,38.8449717736433],[-77.0643322998344,38.8449987739368],[-77.0647032997626,38.844918774044],[-77.0648093006158,38.8448917740366],[-77.0649333001969,38.8448587738317],[-77.065755300784,38.844430773761],[-77.066420300448,38.8442397732665],[-77.06645709268707,38.84422903562159],[-77.06647380909442,38.84432518057558],[-77.06649929990388,38.84447360970293],[-77.06651872147302,38.84458894931696],[-77.06653733381009,38.84470145252444],[-77.06655513691513,38.84481111932539],[-77.06657091694004,38.84490534448349],[-77.06658467388485,38.84498412799878],[-77.06659640774953,38.84504746987123],[-77.06660611853408,38.84509537010085],[-77.06662311240709,38.84515587555303],[-77.06664738936848,38.84522898622775],[-77.06667894941832,38.84531470212502],[-77.06671779255656,38.84541302324484],[-77.06675420799867,38.84550472651105],[-77.06678819574464,38.84558981192366],[-77.06681975579447,38.84566827948266],[-77.06684888814817,38.84574012918806],[-77.06687761588583,38.84582174778986],[-77.06690593900748,38.84591313528805],[-77.06693385751309,38.84601429168265],[-77.0669613714027,38.84612521697366],[-77.06699009914036,38.84624370510255],[-77.0670200407261,38.84636975606933],[-77.06705119615991,38.846503369874],[-77.06708356544178,38.84664454651656],[-77.0671147208756,38.84678509263356],[-77.06714466246132,38.846925008225],[-77.067173390199,38.84706429329087],[-77.0672009040886,38.84720294783119],[-77.06723165490638,38.84734191722152],[-77.06726564265236,38.84748120146187],[-77.0673028673265,38.84762080055226],[-77.06734332892887,38.84776071449267],[-77.06737812590688,38.84788203617066],[-77.06740725826057,38.84798476558625],[-77.06743072598994,38.84806890273943],[-77.06744852909495,38.84813444763021],[-77.06746390450384,38.84819621104388],[-77.0674768522166,38.84825419298045],[-77.06748737223322,38.84830839343992],[-77.06749546455369,38.8483588124223],[-77.06750031994598,38.84840324413621],[-77.06750193841006,38.84844168858166],[-77.06750031994596,38.84847414575865],[-77.06749546455369,38.84850061566718],[-77.06748939531333,38.8485283460347],[-77.06748211222491,38.84855733686122],[-77.0674736152884,38.84858758814672],[-77.06746390450385,38.84861909989122],[-77.06745500295133,38.84865502325207],[-77.06744691063086,38.84869535822929],[-77.06743962754244,38.84874010482285],[-77.06743315368607,38.84878926303278],[-77.06742748906174,38.84884188747705],[-77.06742263366945,38.84889797815565],[-77.06741858750922,38.8489575350686],[-77.06741535058103,38.84902055821589],[-77.06741899212524,38.84906814069153],[-77.06742951214184,38.8491002824955]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000076,"geom:area_square_m":736383.307878,"geom:bbox":"-77.0683923537,38.8427198889,-77.0560168241,38.8532094035","geom:latitude":38.848295,"geom:longitude":-77.062557,"iso:country":"US","lbl:latitude":38.856852,"lbl:longitude":-77.056883,"lbl:max_zoom":18,"mps:latitude":38.847865,"mps:longitude":-77.062439,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:tier_metro":1,"name:eng_x_variant":["Aurora Hls"],"reversegeo:latitude":38.847865,"reversegeo:longitude":-77.062439,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420546571,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"701049b8b2823b2763cb4a0b2293fbe4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726413,"neighbourhood_id":420546571,"region_id":85688747}],"wof:id":1108726413,"wof:lastmodified":1566623917,"wof:name":"Aurora Hills","wof:parent_id":420546571,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85803979],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726419.geojson b/fixtures/microhoods/1108726419.geojson new file mode 100644 index 0000000..6a29e99 --- /dev/null +++ b/fixtures/microhoods/1108726419.geojson @@ -0,0 +1 @@ +{"id":1108726419,"type":"Feature","bbox":[-77.07522443983386,38.84971485463635,-77.07155564543932,38.85313439960155],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.0743677470067,38.85312740586601],[-77.07342777290398,38.85313439960155],[-77.07287858070026,38.85312355489934],[-77.07260006801376,38.85309576536304],[-77.07245558955762,38.85305204768128],[-77.07244514533188,38.85299240185408],[-77.07243470110613,38.85292801139602],[-77.0724242568804,38.8528588763071],[-77.07241381265464,38.85278499658732],[-77.07240336842891,38.85270637223668],[-77.0723955352596,38.85263215350099],[-77.07239031314671,38.85256234038025],[-77.07238770209028,38.85249693287444],[-77.07238770209028,38.85243593098359],[-77.07238944279457,38.85236510089656],[-77.07239292420316,38.85228444261337],[-77.07239814631603,38.85219395613401],[-77.07240510913319,38.85209364145848],[-77.07241076642214,38.85199298773766],[-77.07241511818286,38.85189199497155],[-77.07241816441538,38.85179066316016],[-77.07241990511966,38.85168899230348],[-77.0724194699436,38.85160019970178],[-77.07241685888715,38.85152428535507],[-77.07241207195035,38.85146124926332],[-77.07240510913319,38.85141109142657],[-77.07239510008351,38.85136127246017],[-77.07238204480133,38.85131179236411],[-77.07236594328664,38.85126265113843],[-77.07234679553945,38.85121384878309],[-77.07232808296833,38.85117046889721],[-77.07230980557327,38.85113251148079],[-77.07229196335429,38.85109997653383],[-77.07227455631137,38.85107286405633],[-77.07225366785988,38.85104405703445],[-77.0722292979998,38.85101355546819],[-77.07220144673116,38.85098135935756],[-77.07217011405393,38.85094746870255],[-77.0721357351442,38.85091561147605],[-77.07209831000193,38.85088578767804],[-77.07205783862719,38.85085799730854],[-77.07201432101992,38.85083224036753],[-77.0719686275323,38.85080207761291],[-77.0719207581643,38.85076750904466],[-77.07187071291594,38.85072853466279],[-77.07181849178723,38.85068515446731],[-77.0717710575953,38.85064143533633],[-77.07172841034017,38.85059737726986],[-77.07169055002184,38.85055298026792],[-77.07165747664033,38.85050824433048],[-77.07162875501953,38.85046215272513],[-77.07160438515945,38.85041470545185],[-77.07158436706011,38.85036590251065],[-77.07156870072149,38.85031574390151],[-77.07155912684789,38.85026660198977],[-77.07155564543932,38.8502184767754],[-77.07155825649575,38.85017136825841],[-77.07156696001721,38.8501252764388],[-77.07157566353865,38.85008359043997],[-77.07158436706011,38.85004631026192],[-77.07159307058157,38.85001343590464],[-77.07160177410302,38.84998496736814],[-77.0716165700895,38.84995378752372],[-77.07163745854098,38.84991989637139],[-77.07166443945749,38.84988329391113],[-77.071697512839,38.84984398014295],[-77.07173493798125,38.84981144460625],[-77.07177671488424,38.84978568730102],[-77.07182284354795,38.84976670822726],[-77.07187332397237,38.84975450738499],[-77.07192641545325,38.84974366219095],[-77.07198211799054,38.84973417264514],[-77.07204043158428,38.84972603874758],[-77.07210135623447,38.84971926049825],[-77.07217925275148,38.84971553246118],[-77.07227412113531,38.84971485463635],[-77.07241816441537,38.84971858267368],[-77.07250248731751,38.84972213241225],[-77.07251836786894,38.849728934635],[-77.07257339564813,38.84975666452598],[-77.07261871264275,38.84978439440615],[-77.0726713127258,38.84981653583485],[-77.07273119589728,38.84985308881208],[-77.07279836215717,38.84989405333783],[-77.07287281150549,38.84993942941212],[-77.07295535317428,38.84998480545745],[-77.07304598716354,38.85003018147385],[-77.07314471347325,38.8500755574613],[-77.07325153210346,38.85012093341981],[-77.07337939076686,38.85017072088182],[-77.0735282894635,38.85022491984733],[-77.07369822819335,38.85028353031635],[-77.07388920695642,38.85034655228885],[-77.07417567510103,38.85044108524763],[-77.07415625353191,38.85048267964336],[-77.07414330581916,38.85051040924051],[-77.07412631194617,38.85054381077303],[-77.07410527191297,38.85058288424089],[-77.07408018571951,38.85062762964412],[-77.07405105336582,38.85067804698271],[-77.0740300133326,38.85073161535472],[-77.07401706561986,38.85078833476013],[-77.07401221022758,38.85084820519895],[-77.07401544715576,38.85091122667118],[-77.0740211117801,38.85097172724137],[-77.07402920410055,38.85102970690953],[-77.07403972411717,38.85108516567564],[-77.07405267182992,38.85113810353972],[-77.07406804723881,38.85118852052426],[-77.07408585034383,38.85123641662929],[-77.074106081145,38.85128179185479],[-77.07412873964233,38.85132464620075],[-77.0741611089242,38.85136813072955],[-77.07420318899064,38.85141224544118],[-77.07425497984164,38.85145699033563],[-77.07431648147721,38.85150236541293],[-77.07437717388073,38.85154458942517],[-77.0744370570522,38.85158366237238],[-77.07449613099162,38.85161958425456],[-77.074554395699,38.85165235507171],[-77.07463450967164,38.85168890710983],[-77.07473647290956,38.85172924036892],[-77.07486028541274,38.85177335484899],[-77.07500594718118,38.85182125055002],[-77.07522443983386,38.85189309410158],[-77.0743677470067,38.85312740586601]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":68246.148557,"geom:bbox":"-77.0752244398,38.8497148546,-77.0715556454,38.8531343996","geom:latitude":38.851541,"geom:longitude":-77.073272,"iso:country":"US","lbl:latitude":38.851636,"lbl:longitude":-77.073302,"lbl:max_zoom":18,"mps:latitude":38.851636,"mps:longitude":-77.073302,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Forest Hills"],"name:urd_x_preferred":["فارسٹ ہلز"],"reversegeo:latitude":38.851636,"reversegeo:longitude":-77.073302,"src:geom":"mz","wof:belongsto":[420546571,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5468954"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ca22a1a7971d04c3e3f01f2761ab2077","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726419,"neighbourhood_id":420546571,"region_id":85688747}],"wof:id":1108726419,"wof:lastmodified":1566623917,"wof:name":"Forest Hills","wof:parent_id":420546571,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420546581],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726421.geojson b/fixtures/microhoods/1108726421.geojson new file mode 100644 index 0000000..70fc217 --- /dev/null +++ b/fixtures/microhoods/1108726421.geojson @@ -0,0 +1 @@ +{"id":1108726421,"type":"Feature","bbox":[-77.09668675167961,38.84190859672946,-77.08330204065503,38.85513136911608],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08851380580732,38.85513136911608],[-77.08821111016933,38.85475421630017],[-77.08782016452332,38.8542703215638],[-77.08751503621424,38.85389656939772],[-77.08721626474494,38.85353395358415],[-77.0869238501154,38.8531824741231],[-77.08665050600518,38.85286812198305],[-77.08639623241427,38.85259089716398],[-77.0861610293427,38.85235079966591],[-77.08594489679044,38.85214782948883],[-77.08576531606687,38.85195723515754],[-77.08562228717199,38.85177901667205],[-77.08551581010579,38.85161317403235],[-77.0854458848683,38.85145970723843],[-77.08535212148166,38.85126415976476],[-77.08523451994586,38.85102653161132],[-77.08509308026093,38.85074682277811],[-77.08492780242685,38.85042503326514],[-77.08476888143254,38.85011190608698],[-77.08461631727799,38.84980744124366],[-77.08447010996322,38.84951163873514],[-77.08433025948823,38.84922449856145],[-77.0842078903226,38.84893116870874],[-77.08410300246635,38.84863164917699],[-77.08401559591948,38.84832593996622],[-77.08394567068197,38.84801404107642],[-77.08387892386438,38.84770709172265],[-77.08381535546664,38.84740509190493],[-77.08375496548881,38.84710804162324],[-77.08369775393086,38.84681594087758],[-77.0836325963232,38.84655478246281],[-77.08355949266581,38.84632456637894],[-77.08347844295872,38.84612529262596],[-77.0833894472019,38.84595696120385],[-77.083330646434,38.84580595783034],[-77.08330204065503,38.8456722825054],[-77.08330362986497,38.84555593522904],[-77.08333541406382,38.84545691600126],[-77.08340533930132,38.84535789663567],[-77.08351340557745,38.84525887713227],[-77.08365961289222,38.84515985749105],[-77.08384396124562,38.84506083771203],[-77.08405373695811,38.84496058003744],[-77.0842889400297,38.84485908446729],[-77.08454957046037,38.84475635100159],[-77.08483562825013,38.84465237964033],[-77.08506606369188,38.84456821232548],[-77.08524087678563,38.84450384905706],[-77.08536006753137,38.84445928983505],[-77.08542363592909,38.84443453465946],[-77.08547607985722,38.84439740184439],[-77.08551739931573,38.84434789138984],[-77.08556348640408,38.84428491817182],[-77.085611306398,38.8441977730954],[-77.0856993068221,38.8440187730806],[-77.0857123069373,38.8439257728032],[-77.0857313071169,38.8436017728782],[-77.0857203064763,38.8435407724172],[-77.0856983073112,38.84331177245],[-77.0857103065913,38.8431357730476],[-77.0857073067467,38.8431057723337],[-77.08570438487752,38.84302512740246],[-77.08571538329113,38.84301370565208],[-77.08574578238147,38.84298231686564],[-77.08577948194448,38.84294768095551],[-77.08581648198015,38.84290979792168],[-77.08585678248849,38.84286866776417],[-77.08589673557864,38.84282956704367],[-77.08593634125063,38.84279249576016],[-77.08597559950444,38.84275745391368],[-77.08601451034008,38.84272444150421],[-77.08605307375754,38.84269345853175],[-77.08609128975681,38.8426645049963],[-77.08612915833793,38.84263758089786],[-77.08616667950085,38.84261268623644],[-77.08620524291831,38.84258752097099],[-77.0862448485903,38.84256208510151],[-77.08628549651681,38.84253637862801],[-77.08632718669784,38.84251040155049],[-77.0863699191334,38.84248415386894],[-77.0864136938235,38.84245763558337],[-77.08645851076813,38.84243084669376],[-77.08650436996726,38.84240378720013],[-77.08654953433006,38.84237794537832],[-77.0865940038565,38.84235332122832],[-77.08663777854659,38.84232991475013],[-77.08668085840034,38.84230772594375],[-77.08672324341772,38.84228675480919],[-77.08676493359876,38.84226700134645],[-77.08680592894345,38.84224846555551],[-77.08684622945178,38.84223114743638],[-77.08688566141468,38.84221423520757],[-77.08692422483215,38.84219772886907],[-77.08696191970417,38.84218162842089],[-77.08699874603074,38.84216593386302],[-77.0870347038119,38.84215064519546],[-77.08706979304759,38.84213576241822],[-77.08710401373787,38.84212128553128],[-77.0871373658827,38.84210721453466],[-77.08717262882749,38.84209395532516],[-77.08720980257226,38.84208150790277],[-77.08724888711697,38.84206987226749],[-77.08728988246166,38.84205904841933],[-77.0873327886063,38.84204903635828],[-77.08737760555093,38.84203983608435],[-77.0874243332955,38.84203144759752],[-77.08747297184006,38.84202387089782],[-77.08751865733011,38.84201656479404],[-77.08756138976567,38.84200952928617],[-77.08760116914674,38.84200276437424],[-77.08763799547333,38.84199627005823],[-77.08767186874542,38.84199004633815],[-77.08770278896303,38.84198409321398],[-77.08773075612613,38.84197841068574],[-77.08775577023476,38.84197299875343],[-77.08778460594331,38.84196745152227],[-77.0878172632518,38.84196176899225],[-77.0878537421602,38.84195595116338],[-77.08789404266854,38.84194999803566],[-77.0879381647768,38.84194390960909],[-77.087986108485,38.84193768588367],[-77.08803787379311,38.8419313268594],[-77.08809346070117,38.84192483253628],[-77.08814748422743,38.84191942060041],[-77.08819994437191,38.8419150910518],[-77.0882508411346,38.84191184389043],[-77.08830017451547,38.84190967911632],[-77.08834794451458,38.84190859672946],[-77.0883941511319,38.84190859672986],[-77.08843879436743,38.84190967911751],[-77.08848187422117,38.84191184389241],[-77.08852443294765,38.84191400866725],[-77.08856647054688,38.84191617344202],[-77.08860798701882,38.84191833821672],[-77.08864898236351,38.84192050299136],[-77.08868945658092,38.84192266776593],[-77.08872940967109,38.84192483254044],[-77.08876884163399,38.84192699731487],[-77.08880775246962,38.84192916208925],[-77.08884857410523,38.8419328151444],[-77.08889130654079,38.84193795648032],[-77.08893594977631,38.84194458609703],[-77.0889825038118,38.84195270399452],[-77.08903096864726,38.84196231017278],[-77.08908134428268,38.84197340463181],[-77.08913363071807,38.84198598737162],[-77.08918782795341,38.84200005839222],[-77.08924080922515,38.8420150764953],[-77.08929257453327,38.84203104168087],[-77.08934312387778,38.84204795394893],[-77.08939245725867,38.84206581329949],[-77.08944057467596,38.84208461973253],[-77.08948747612962,38.84210437324808],[-77.08953316161968,38.8421250738461],[-77.08957763114611,38.84214672152662],[-77.08962244809074,38.84216836920055],[-77.08966761245352,38.84219001686789],[-77.08971312423449,38.84221166452866],[-77.08975898343364,38.84223331218283],[-77.08980519005095,38.84225495983042],[-77.08985174408645,38.84227660747142],[-77.08989864554012,38.84229825510584],[-77.08994589441195,38.84231990273367],[-77.08999227473836,38.84234263273183],[-77.09003778651933,38.84236644510032],[-77.09008242975486,38.84239133983912],[-77.09012620444494,38.84241731694826],[-77.09016911058958,38.84244437642773],[-77.09021114818881,38.84247251827752],[-77.09025231724259,38.84250174249764],[-77.09029261775092,38.84253204908809],[-77.09033048633204,38.84256154388581],[-77.09036592298591,38.8425902268908],[-77.09039892771257,38.84261809810306],[-77.09042950051199,38.84264515752259],[-77.09045764138419,38.8426714051494],[-77.09048335032917,38.84269684098347],[-77.09050662734691,38.84272146502482],[-77.09052747243744,38.84274527727344],[-77.09054953349158,38.84276949540298],[-77.09057281050931,38.84279411941345],[-77.09059730349068,38.84281914930486],[-77.09062301243564,38.8428445850772],[-77.09064993734424,38.84287042673046],[-77.09067807821643,38.84289667426464],[-77.09070743505225,38.84292332767976],[-77.09073800785167,38.84295038697581],[-77.09077170741467,38.84297852862794],[-77.09080853374127,38.84300775263615],[-77.09084848683142,38.84303805900045],[-77.09089156668517,38.84306944772084],[-77.09093777330249,38.8431019187973],[-77.09098710668337,38.84313547222985],[-77.09103956682785,38.8431701080185],[-77.09109515373589,38.84320582616321],[-77.09115021951668,38.84324100310913],[-77.0912047641702,38.84327563885622],[-77.09125878769646,38.8433097334045],[-77.09131229009547,38.84334328675398],[-77.09136527136721,38.84337629890463],[-77.09141773151168,38.84340876985648],[-77.0914696705289,38.84344069960951],[-77.09152108841884,38.84347208816372],[-77.09157337485424,38.84350361199886],[-77.09162652983505,38.84353527111492],[-77.09168055336131,38.84356706551191],[-77.09173544543302,38.84359899518979],[-77.09179120605015,38.84363106014862],[-77.09184783521273,38.84366326038836],[-77.09190533292075,38.84369559590903],[-77.0919636991742,38.84372806671061],[-77.09202050204587,38.84375986102584],[-77.09207574153574,38.84379097885472],[-77.09212941764383,38.84382142019724],[-77.09218153037011,38.84385118505342],[-77.09223207971462,38.84388027342323],[-77.09228106567735,38.8439086853067],[-77.09232848825827,38.84393642070381],[-77.09237434745742,38.84396347961458],[-77.09242020665656,38.84398972675113],[-77.09246606585572,38.84401516211349],[-77.09251192505485,38.84403978570163],[-77.09255778425398,38.84406359751557],[-77.09260364345312,38.8440865975553],[-77.09264950265228,38.84410878582083],[-77.09269536185141,38.84413016231215],[-77.09274122105056,38.84415072702927],[-77.09279333377685,38.84417277997039],[-77.09285170003031,38.84419632113553],[-77.09291631981091,38.84422135052466],[-77.09298719311869,38.8442478681378],[-77.0930643199536,38.84427587397495],[-77.09314770031568,38.8443053680361],[-77.09323733420491,38.84433635032125],[-77.09333322162131,38.84436882083041],[-77.0934235503469,38.84439926192719],[-77.09350832038166,38.84442767361159],[-77.09358753172563,38.84445405588361],[-77.09366118437882,38.84447840874326],[-77.09372927834117,38.84450073219052],[-77.09379181361273,38.8445210262254],[-77.09384879019348,38.84453929084791],[-77.09390020808343,38.84455552605803],[-77.09395145226429,38.84457149067832],[-77.09400252273605,38.84458718470879],[-77.09405341949874,38.84460260814941],[-77.09410414255234,38.84461776100021],[-77.09415469189685,38.84463264326117],[-77.09420506753226,38.8446472549323],[-77.09425526945859,38.84466159601359],[-77.09430529767585,38.84467566650507],[-77.09435584702035,38.84469000757944],[-77.09440691749211,38.84470461923675],[-77.09445850909115,38.84471950147697],[-77.09451062181745,38.8447346543001],[-77.094563255671,38.84475007770616],[-77.09461641065184,38.84476577169512],[-77.09467008675992,38.84478173626701],[-77.09472428399526,38.84479797142181],[-77.0947784812306,38.84481474774311],[-77.09483267846596,38.84483206523093],[-77.0948868757013,38.84484992388526],[-77.09494107293666,38.84486832370609],[-77.09499527017202,38.84488726469344],[-77.09504946740736,38.84490674684729],[-77.09510366464272,38.84492677016765],[-77.09515786187806,38.84494733465452],[-77.09521049573164,38.84496803442764],[-77.0952615662034,38.84498886948703],[-77.09531107329339,38.84500983983266],[-77.09535901700158,38.84503094546455],[-77.09540539732798,38.84505218638269],[-77.0954502142726,38.84507356258709],[-77.09549346783542,38.84509507407775],[-77.09553515801646,38.84511672085465],[-77.09557893270654,38.84513917937585],[-77.09562479190569,38.84516244964133],[-77.09567273561387,38.84518653165111],[-77.09572276383113,38.84521142540517],[-77.09577487655743,38.84523713090352],[-77.09582907379277,38.84526364814616],[-77.09588535553718,38.84529097713308],[-77.09594372179062,38.84531911786429],[-77.09601702702561,38.8453551054541],[-77.09610527124215,38.8453989399025],[-77.09620845444022,38.8454506212095],[-77.09632657661983,38.84551014937509],[-77.09645963778098,38.84557752439928],[-77.09660763792365,38.84565274628207],[-77.09668675167961,38.84569307962843],[-77.0966446561383,38.84571766881583],[-77.09651623039996,38.84579298649891],[-77.09643117466506,38.84584327114963],[-77.09636085630997,38.84588524788721],[-77.09630527533469,38.84591891671167],[-77.09625488753134,38.84594985266273],[-77.09620969289992,38.84597805574043],[-77.09616969144044,38.84600352594474],[-77.09613488315289,38.84602626327567],[-77.09610168895931,38.84604850868769],[-77.09607010885972,38.84607026218082],[-77.09604014285411,38.84609152375504],[-77.09601179094247,38.84611229341036],[-77.09598505312482,38.84613257114678],[-77.09595992940115,38.84615235696431],[-77.09593641977145,38.84617165086293],[-77.09591452423572,38.84619045284264],[-77.09588125986414,38.84622335616804],[-77.09583662665673,38.84627036083911],[-77.09578062461345,38.84633146685587],[-77.09571325373433,38.8464066742183],[-77.09563451401935,38.84649598292641],[-77.09554440546852,38.8465993929802],[-77.09544292808182,38.84671690437966],[-77.09533008185927,38.84684851712481],[-77.09520523519888,38.84699745520323],[-77.09506838810066,38.84716371861492],[-77.09491954056458,38.8473473073599],[-77.09475869259066,38.84754822143816],[-77.0945858441789,38.84776646084968],[-77.09440099532928,38.84800202559449],[-77.09420414604182,38.84825491567257],[-77.09399529631652,38.84852513108392],[-77.09379163976315,38.84878780336661],[-77.09359317638172,38.84904293252065],[-77.09339990617221,38.84929051854601],[-77.09321182913465,38.84953056144273],[-77.093028945269,38.84976306121078],[-77.09285125457531,38.84998801785016],[-77.09267875705353,38.85020543136088],[-77.0925114527037,38.85041530174294],[-77.0923484993898,38.85062047144017],[-77.09218989711187,38.85082094045258],[-77.09203564586986,38.85101670878016],[-77.09188574566379,38.85120777642292],[-77.09174019649367,38.85139414338086],[-77.09159899835949,38.85157580965397],[-77.09146215126125,38.85175277524225],[-77.09132965519898,38.85192504014571],[-77.09120922975254,38.85207894175011],[-77.09110087492192,38.85221448005548],[-77.09100459070717,38.85233165506179],[-77.09092037710825,38.85243046676905],[-77.09084823412519,38.85251091517726],[-77.09078816175796,38.85257300028643],[-77.09074016000659,38.85261672209655],[-77.09070422887103,38.85264208060762],[-77.09066605203952,38.85266711119922],[-77.09062562951206,38.85269181387136],[-77.09058296128862,38.85271618862403],[-77.0905380473692,38.85274023545722],[-77.09049088775382,38.85276395437096],[-77.09044148244244,38.85278734536522],[-77.09038983143512,38.85281040844002],[-77.09033593473181,38.85283314359536],[-77.09028105553652,38.85285620665302],[-77.09022519384925,38.85287959761298],[-77.09016834966998,38.85290331647528],[-77.09011052299873,38.8529273632399],[-77.09005171383549,38.85295173790684],[-77.08999192218026,38.85297644047608],[-77.08993114803305,38.85300147094767],[-77.08986939139383,38.85302682932156],[-77.08981072258659,38.85305295280624],[-77.0897551416113,38.85307984140168],[-77.08970264846799,38.8531074951079],[-77.08965324315662,38.85313591392489],[-77.08960692567722,38.85316509785265],[-77.08956369602978,38.85319504689119],[-77.0895235542143,38.8532257610405],[-77.08948650023078,38.85325724030058],[-77.0894462180593,38.85329473116279],[-77.08940270769986,38.85333823362714],[-77.08935596915246,38.85338774769362],[-77.0893060024171,38.85344327336222],[-77.08925280749379,38.85350481063297],[-77.08919638438252,38.85357235950583],[-77.0891367330833,38.85364591998083],[-77.08907385359612,38.85372549205798],[-77.08901476372088,38.85380134781143],[-77.0889594634576,38.85387348724122],[-77.08890795280627,38.85394191034734],[-77.08886023176687,38.85400661712978],[-77.08881630033945,38.85406760758856],[-77.08877615852396,38.85412488172366],[-77.08873980632043,38.85417843953509],[-77.08870724372885,38.85422828102286],[-77.08867734790124,38.85427724807062],[-77.08865011883758,38.85432534067841],[-77.08862555653789,38.85437255884622],[-77.0886036610022,38.85441890257404],[-77.08858443223045,38.85446437186187],[-77.08856787022265,38.85450896670972],[-77.08855397497884,38.85455268711759],[-77.08854274649897,38.85459553308547],[-77.0885332022911,38.85464307892398],[-77.0885253423552,38.85469532463312],[-77.08851916669128,38.85475227021289],[-77.08851467529934,38.85481391566329],[-77.08851186817938,38.85488026098431],[-77.08851074533139,38.85495130617596],[-77.08851130675538,38.85502705123824],[-77.08851355245136,38.85510749617116],[-77.08851380580732,38.85513136911608]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000094,"geom:area_square_m":901936.076731,"geom:bbox":"-77.0966867517,38.8419085967,-77.0833020407,38.8551313691","geom:latitude":38.847582,"geom:longitude":-77.089113,"iso:country":"US","lbl:latitude":38.84758,"lbl:longitude":-77.089013,"lbl:max_zoom":18,"mps:latitude":38.84758,"mps:longitude":-77.089013,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.84758,"reversegeo:longitude":-77.089013,"src:geom":"mz","wof:belongsto":[85875989,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8bbff0eb23945e19d8274c7508b81c10","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726421,"neighbourhood_id":85875989,"region_id":85688747}],"wof:id":1108726421,"wof:lastmodified":1566623891,"wof:name":"Fort Barnard Heights","wof:parent_id":85875989,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420546593,420547823],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726423.geojson b/fixtures/microhoods/1108726423.geojson new file mode 100644 index 0000000..9183155 --- /dev/null +++ b/fixtures/microhoods/1108726423.geojson @@ -0,0 +1 @@ +{"id":1108726423,"type":"Feature","bbox":[-77.12258383532597,38.89686026021236,-77.11221564108023,38.90572437733559],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.11649376647998,38.8993437604955],[-77.11688293736749,38.89912491020732],[-77.11714039027362,38.89898307323345],[-77.1172984686601,38.89890006122487],[-77.11741664376456,38.89884243052507],[-77.11749491558697,38.89881018113405],[-77.11756819949916,38.89877763312208],[-77.11763649550109,38.89874478648916],[-77.11769980359276,38.89871164123531],[-77.1177581237742,38.89867819736052],[-77.11781145604536,38.898638184114],[-77.11785980040626,38.89859160149575],[-77.11790315685693,38.89853844950578],[-77.11794152539733,38.89847872814408],[-77.11798833501662,38.89840288185384],[-77.1180435857148,38.89831091063505],[-77.11810727749187,38.89820281448772],[-77.11817941034785,38.89807859341185],[-77.11825768217028,38.89792092750585],[-77.11834209295917,38.8977298167697],[-77.11843264271452,38.89750526120341],[-77.11852933143635,38.89724726080699],[-77.11867436451908,38.89686026021236],[-77.1188930651994,38.89692834405798],[-77.11903886565295,38.89697373328839],[-77.1191658655217,38.89701494191684],[-77.11927406480565,38.89705196994334],[-77.1193634635048,38.89708481736788],[-77.11943406161915,38.89711348419046],[-77.11951617029561,38.89714424128505],[-77.11960978953421,38.89717708865167],[-77.11971491933492,38.8972120262903],[-77.11983155969777,38.89724905420096],[-77.11995318797086,38.89728638070354],[-77.1200798041542,38.89732400579805],[-77.1202114082478,38.8973619294845],[-77.12034800025165,38.89740015176289],[-77.12047231432257,38.89743270041594],[-77.12058435046056,38.89745957544368],[-77.12068410866561,38.89748077684608],[-77.12077158893773,38.89749630462317],[-77.12086520817633,38.8975112351754],[-77.12096496638138,38.8975255685028],[-77.12107086355292,38.89753930460534],[-77.1211828996909,38.89755244348304],[-77.12127805367112,38.89756229764131],[-77.12135632549354,38.89756886708015],[-77.12141771515819,38.89757215179958],[-77.12146222266506,38.89757215179958],[-77.12150826491354,38.89757424207431],[-77.12155584190364,38.89757842262377],[-77.12160495363537,38.89758469344797],[-77.1216556001087,38.89759305454689],[-77.12171698977335,38.897638741796],[-77.12178912262932,38.89772175519528],[-77.12189540348625,38.89788151116966],[-77.12202330323326,38.89809690923741],[-77.12199069794251,38.89810814421296],[-77.12187510037532,38.89814748132451],[-77.12176652290331,38.89818390453853],[-77.12165396737737,38.89822123830822],[-77.1215374337975,38.8982594826336],[-77.12141692216369,38.89829863751467],[-77.12129243247595,38.89833870295142],[-77.12116396473428,38.89837967894387],[-77.12103151893868,38.89842156549201],[-77.12089509508914,38.89846436259584],[-77.12075469318569,38.89850807025536],[-77.12061171724731,38.89855141366011],[-77.12046616727406,38.89859439281009],[-77.1203180432659,38.8986370077053],[-77.12016734522285,38.89867925834574],[-77.1200140731449,38.89872114473143],[-77.11985822703205,38.89876266686234],[-77.11969980688431,38.89880382473848],[-77.11953881270168,38.89884461835986],[-77.11937290445242,38.89888413716518],[-77.11920208213654,38.89892238115447],[-77.11902634575404,38.8989593503277],[-77.11900473570526,38.89896362021357],[-77.11930963635396,38.89933800908889],[-77.11952295375508,38.89960377048823],[-77.1196604051349,38.89978020366426],[-77.11977018773045,38.89992649022075],[-77.11985230154175,38.90004263015769],[-77.11992281231451,38.90014835067635],[-77.11998172004873,38.90024365177673],[-77.12002902474437,38.90032853345884],[-77.12006472640147,38.90040299572266],[-77.12009935700884,38.90047912495181],[-77.12013291656652,38.90055692114629],[-77.12016540507447,38.90063638430611],[-77.12019682253272,38.90071751443126],[-77.12022716894126,38.90080031152173],[-77.12025644430007,38.90088477557755],[-77.12028464860917,38.90097090659869],[-77.12031178186857,38.90105870458517],[-77.12033516645396,38.90113997326011],[-77.12035480236536,38.90121471262351],[-77.12037068960277,38.90128292267539],[-77.12038282816619,38.90134460341572],[-77.1203912180556,38.90139975484453],[-77.12039585927103,38.90144837696181],[-77.12039675181245,38.90149046976755],[-77.12039389567987,38.90152603326175],[-77.12039068253073,38.90156243025222],[-77.12038711236502,38.90159966073895],[-77.12038318518273,38.90163772472194],[-77.1203789009839,38.90167662220118],[-77.12037425976847,38.90171635317668],[-77.12036926153647,38.90175691764846],[-77.1203639062879,38.90179831561648],[-77.12035819402278,38.90184054708077],[-77.12034766203394,38.90188166717299],[-77.1203323103214,38.90192167589314],[-77.12031213888514,38.90196057324123],[-77.12028714772516,38.90199835921725],[-77.12025733684149,38.9020350338212],[-77.12022270623412,38.90207059705308],[-77.12018325590303,38.9021050489129],[-77.12013898584823,38.90213838940065],[-77.12009346623543,38.90217145203688],[-77.12004669706465,38.90220423682159],[-77.11999867833586,38.90223674375478],[-77.11994941004906,38.90226897283644],[-77.11989889220428,38.90230092406658],[-77.1198471248015,38.9023325974452],[-77.1197941078407,38.9023639929723],[-77.11973984132193,38.90239511064786],[-77.11969110855999,38.90242858990417],[-77.11964790955491,38.90246443074121],[-77.11961024430667,38.90250263315899],[-77.11957811281529,38.9025431971575],[-77.11955151508076,38.90258612273674],[-77.11953045110306,38.90263140989673],[-77.11951492088224,38.90267905863745],[-77.11950492441825,38.90272906895889],[-77.11950224679397,38.90277866249588],[-77.1195068880094,38.90282783924842],[-77.11951884806452,38.90287659921648],[-77.11953812695936,38.9029249424001],[-77.11956472469389,38.90297286879925],[-77.11959864126813,38.90302037841393],[-77.11963987668207,38.90306747124416],[-77.11968843093571,38.90311414728993],[-77.11974073386335,38.90315998981046],[-77.119796785465,38.90320499880576],[-77.11985658574062,38.9032491742758],[-77.11992013469026,38.90329251622061],[-77.11998743231388,38.90333502464018],[-77.12005847861148,38.9033766995345],[-77.1201332735831,38.90341754090359],[-77.1202118172287,38.90345754874744],[-77.12029089639915,38.90349172211562],[-77.12037051109446,38.90352006100814],[-77.12045066131463,38.90354256542501],[-77.12053134705968,38.9035592353662],[-77.12061256832956,38.90357007083174],[-77.1206943251243,38.90357507182161],[-77.12077661744391,38.90357423833583],[-77.12085944528836,38.90356757037438],[-77.12093781042569,38.90356034674809],[-77.12101171285586,38.90355256745694],[-77.12108115257891,38.90354423250096],[-77.12114612959482,38.90353534188012],[-77.12120664390359,38.90352589559444],[-77.12126269550524,38.90351589364392],[-77.12131428439973,38.90350533602854],[-77.1213614105871,38.90349422274834],[-77.12140460959218,38.90348047005423],[-77.12144388141499,38.90346407794624],[-77.12147922605551,38.90344504642435],[-77.12151064351374,38.90342337548859],[-77.12153813378971,38.90339906513893],[-77.12156169688339,38.90337211537538],[-77.12158133279479,38.90334252619795],[-77.12159704152391,38.90331029760662],[-77.12161721296016,38.90328126408933],[-77.12164184710356,38.90325542564609],[-77.12167094395409,38.90323278227687],[-77.12170450351176,38.9032133339817],[-77.12174252577657,38.90319708076056],[-77.12178501074851,38.90318402261347],[-77.12183195842759,38.90317415954041],[-77.1218833688138,38.90316749154138],[-77.12193656428286,38.90316235162551],[-77.1219915448348,38.9031587397928],[-77.12204831046958,38.90315665604324],[-77.1221068611872,38.90315610037682],[-77.1221671969877,38.90315707279356],[-77.12222931787105,38.90315957329346],[-77.12229322383723,38.90316360187651],[-77.12235891488629,38.90316915854271],[-77.12241621604592,38.90317791028394],[-77.12246512731613,38.90318985710019],[-77.12250564869694,38.90320499899148],[-77.12253778018832,38.9032233359578],[-77.12256152179029,38.90324486799914],[-77.12257687350285,38.90326959511552],[-77.12258383532597,38.90329751730692],[-77.1225824072597,38.90332863457336],[-77.12258044366855,38.90336100206619],[-77.12257794455256,38.9033946197854],[-77.1225749099117,38.90342948773102],[-77.12257133974599,38.90346560590304],[-77.12256723405542,38.90350297430143],[-77.12256259284,38.90354159292623],[-77.12255741609972,38.90358146177742],[-77.1225517038346,38.903622580855],[-77.12254617007775,38.90366217184452],[-77.1225408148292,38.90370023474594],[-77.12253563808892,38.9037367695593],[-77.1225306398569,38.90377177628458],[-77.1225258201332,38.90380525492179],[-77.12252117891778,38.90383720547091],[-77.12251671621065,38.90386762793197],[-77.1225124320118,38.90389652230495],[-77.1225052916804,38.90392388860477],[-77.1224952952164,38.90394972683145],[-77.12248244261986,38.90397403698498],[-77.12246673389072,38.90399681906534],[-77.12244816902904,38.90401807307256],[-77.12242674803477,38.90403779900664],[-77.12240247090796,38.90405599686756],[-77.12237533764856,38.90407266665533],[-77.12234981096374,38.90408961426817],[-77.12232589085349,38.90410683970607],[-77.12230357731781,38.90412434296903],[-77.12228287035668,38.90414212405706],[-77.12226376997015,38.90416018297015],[-77.12224627615817,38.90417851970831],[-77.12223038892076,38.90419713427153],[-77.12221610825793,38.90421602665982],[-77.12220200610338,38.90423630818398],[-77.1221880824571,38.90425797884399],[-77.12217433731912,38.90428103863987],[-77.12216077068943,38.90430548757162],[-77.12214738256802,38.90433132563923],[-77.1221341729549,38.90435855284271],[-77.12212114185004,38.90438716918204],[-77.1221082892535,38.90441717465725],[-77.12209329455752,38.90444940273407],[-77.12207615776211,38.9044838534125],[-77.12205687886728,38.90452052669254],[-77.12203545787303,38.9045594225742],[-77.12201189477935,38.90460054105746],[-77.12198618958624,38.90464388214235],[-77.12195834229371,38.90468944582884],[-77.12192835290175,38.90473723211694],[-77.12189818500151,38.90478307359609],[-77.12186783859298,38.90482697026628],[-77.12183731367617,38.90486892212752],[-77.12180661025106,38.9049089291798],[-77.12177572831767,38.90494699142313],[-77.121744667876,38.90498310885749],[-77.12171342892604,38.90501728148291],[-77.12168201146781,38.90504950929936],[-77.121653985667,38.90508090362741],[-77.1216293515236,38.90511146446704],[-77.12160810903762,38.90514119181826],[-77.12159025820907,38.90517008568105],[-77.12157579903794,38.90519814605544],[-77.12156473152424,38.90522537294141],[-77.12155705566798,38.90525176633896],[-77.12155277146913,38.90527732624811],[-77.12155562760171,38.90529732965615],[-77.12155611415261,38.90529803282035],[-77.12126538996823,38.90542667732259],[-77.1210277701487,38.90551721510543],[-77.12085423866225,38.90556478579883],[-77.12069451081675,38.90559164021482],[-77.12054858661223,38.90559777835342],[-77.12039970448464,38.90560775282446],[-77.12024786443399,38.90562156362794],[-77.12009306646027,38.90563921076387],[-77.11993531056349,38.90566069423224],[-77.1197884003846,38.9056798758975],[-77.11965233592363,38.90569675575968],[-77.11952711718057,38.90571133381874],[-77.1194127441554,38.9057236100747],[-77.11931809061733,38.90572437733559],[-77.11924315656637,38.90571363560141],[-77.1191879420025,38.90569138487215],[-77.11915244692571,38.90565762514781],[-77.11911793782329,38.90561158909202],[-77.11908441469524,38.90555327670477],[-77.11905187754152,38.90548268798607],[-77.11902032636218,38.90539982293591],[-77.11899271908024,38.90532079415915],[-77.11896905569571,38.90524560165579],[-77.11894933620862,38.90517424542583],[-77.11893356061894,38.90510672546927],[-77.11891679905492,38.90504534365714],[-77.11889905151651,38.90499009998946],[-77.11888031800376,38.90494099446621],[-77.11886059851668,38.90489802708739],[-77.11883693513215,38.90485122329387],[-77.11880932785022,38.90480058308565],[-77.11877777667087,38.90474610646272],[-77.11874228159408,38.90468779342509],[-77.11870382859425,38.90463331674087],[-77.11866241767135,38.90458267641004],[-77.11861804882537,38.90453587243263],[-77.11857072205635,38.90449290480863],[-77.11852142333859,38.9044530062847],[-77.11847015267215,38.90441617686086],[-77.11841691005698,38.9043824165371],[-77.1183616954931,38.90435172531341],[-77.11830845287794,38.90432333592361],[-77.1182571822115,38.90429724836768],[-77.11820788349374,38.90427346264564],[-77.11816055672472,38.90425197875749],[-77.11811618787874,38.90423202942878],[-77.11807477695584,38.90421361465955],[-77.118036323956,38.90419673444977],[-77.11800082887922,38.90418138879944],[-77.11796730575116,38.90416681042926],[-77.1179357545718,38.90415299933919],[-77.11790617534116,38.90413995552926],[-77.11787856805923,38.90412767899944],[-77.11785096077729,38.90412230801732],[-77.11782335349535,38.90412384258289],[-77.11779574621342,38.90413228269614],[-77.11776813893148,38.90414762835707],[-77.11774644749568,38.90416450857852],[-77.11773067190599,38.9041829233605],[-77.11772081216245,38.904202872703],[-77.11771686826502,38.90422435660602],[-77.11770996644454,38.90425274602487],[-77.117700106701,38.90428804095958],[-77.11768728903438,38.90433024141013],[-77.11767151344469,38.90437934737652],[-77.11765770980372,38.90442308236291],[-77.11764587811147,38.9044614463693],[-77.11763601836792,38.90449443939569],[-77.11762813057308,38.90452206144209],[-77.11761432693211,38.90455045075494],[-77.11759460744501,38.90457960733425],[-77.1175689721118,38.90460953118003],[-77.11753742093242,38.90464022229227],[-77.11750488377871,38.90467014611536],[-77.11747136065065,38.9046993026493],[-77.11743685154823,38.90472769189409],[-77.11740135647145,38.90475531384973],[-77.11735797359984,38.90478293579463],[-77.11730670293338,38.90481055772877],[-77.1172475444721,38.90483817965217],[-77.11718049821596,38.90486580156482],[-77.1171035922163,38.90489495801359],[-77.11701682647305,38.90492564899846],[-77.11692020098627,38.90495787451944],[-77.11681371575595,38.90499163457652],[-77.1167141323461,38.90501925643862],[-77.11662145075675,38.90504074010575],[-77.11653567098787,38.90505608557788],[-77.11645679303948,38.90506529285503],[-77.11637495716802,38.90507143103993],[-77.1162901633735,38.90507450013259],[-77.11620241165593,38.90507450013298],[-77.11611170201527,38.90507143104112],[-77.11601606250287,38.90506068921088],[-77.11591549311865,38.90504227464225],[-77.11580999386268,38.90501618733523],[-77.11569956473494,38.90498242728981],[-77.11560688314557,38.90494866722835],[-77.11553194909462,38.90491490715083],[-77.11547476258202,38.90488114705725],[-77.11543532360783,38.90484738694763],[-77.11539489865928,38.90481439409929],[-77.11535348773639,38.90478216851224],[-77.11531109083913,38.90475071018648],[-77.11526770796752,38.904720019122],[-77.11521249340365,38.9046839570908],[-77.11514544714751,38.90464252409285],[-77.11506656919912,38.90459572012818],[-77.11497585955847,38.90454354519677],[-77.11489500966137,38.90449827575772],[-77.11482401950781,38.90445991181104],[-77.1147628890978,38.90442845335672],[-77.11471161843136,38.90440390039474],[-77.11466231971362,38.90437934742428],[-77.11461499294458,38.90435479444533],[-77.11456963812427,38.90433024145788],[-77.11452625525264,38.90430568846196],[-77.11448878822716,38.90428343730508],[-77.1144572370478,38.90426348798726],[-77.11443160171459,38.90424584050849],[-77.11441188222747,38.90423049486879],[-77.11439314871474,38.90420517453581],[-77.11437540117635,38.90416987950956],[-77.11435863961232,38.90412460979004],[-77.11434286402263,38.90406936537725],[-77.11432906038166,38.90401642278215],[-77.11431722868942,38.90396578200474],[-77.11430736894586,38.90391744304503],[-77.11429948115101,38.90387140590303],[-77.11428764945875,38.90382153228607],[-77.11427187386907,38.90376782219418],[-77.11425215438197,38.90371027562736],[-77.11422849099748,38.90364889258559],[-77.11420877151038,38.90358904407451],[-77.1141929959207,38.90353073009408],[-77.11418116422844,38.90347395064433],[-77.11417327643359,38.90341870572524],[-77.11416440266439,38.90336806452553],[-77.11415454292086,38.90332202704519],[-77.11414369720295,38.90328059328424],[-77.11413186551069,38.90324376324266],[-77.11411806186972,38.90320539859187],[-77.11410228628004,38.90316549933185],[-77.11408453874165,38.90312406546263],[-77.11406481925457,38.9030810969842],[-77.11404411379311,38.90303352469511],[-77.1140224223573,38.90298134859536],[-77.11399974494714,38.90292456868496],[-77.11397608156261,38.90286318496391],[-77.11394847428068,38.90280793958948],[-77.11391692310131,38.90275883256168],[-77.11388142802454,38.90271586388052],[-77.11384198905036,38.90267903354599],[-77.11379860617873,38.90264066859004],[-77.11375127940971,38.90260076901268],[-77.11370000874325,38.90255933481389],[-77.11364479417938,38.90251636599369],[-77.11359056558986,38.90247339714749],[-77.1135373229747,38.90243042827527],[-77.11348506633388,38.90238745937706],[-77.11343379566745,38.90234449045284],[-77.11338252500099,38.90229921958701],[-77.11333125433454,38.90225164677955],[-77.11327998366808,38.90220177203049],[-77.11322871300163,38.90214959533982],[-77.11317941428388,38.90209895322585],[-77.11313208751486,38.90204984568859],[-77.11308673269453,38.90200227272803],[-77.11304334982292,38.90195623434419],[-77.11299602305388,38.90191096323981],[-77.11294475238742,38.90186645941489],[-77.11288953782355,38.90182272286944],[-77.11283037936225,38.90177975360345],[-77.11277516479838,38.90173678431145],[-77.11272389413193,38.90169381499346],[-77.1126765673629,38.90165084564946],[-77.11263318449127,38.90160787627946],[-77.11259275954272,38.90156260494396],[-77.11255529251724,38.90151503164297],[-77.11252078341482,38.90146515637647],[-77.11248923223548,38.9014129791445],[-77.11245866703048,38.90136156918972],[-77.11242908779982,38.90131092651215],[-77.11240049454354,38.9012610511118],[-77.11237288726159,38.90121194298865],[-77.11234823790272,38.90116436946649],[-77.1123265464669,38.90111833054532],[-77.11230781295417,38.90107382622514],[-77.1122920373645,38.90103085650594],[-77.1122742898261,38.90098865407987],[-77.11226022476181,38.90095910017686],[-77.11227119078879,38.90095688762718],[-77.11228720173321,38.90095302670724],[-77.11230298717136,38.9009485807989],[-77.11231854710327,38.90094354990215],[-77.11233388152891,38.90093793401701],[-77.1123489904483,38.90093173314345],[-77.11236387386143,38.90092494728149],[-77.11237853176829,38.90091757643113],[-77.1123929641689,38.90090962059237],[-77.11240656971322,38.90090148925601],[-77.11241934840126,38.90089318242208],[-77.112431300233,38.90088470009056],[-77.11244242520849,38.90087604226146],[-77.11245272332766,38.90086720893477],[-77.11246219459055,38.90085820011049],[-77.11247083899715,38.90084901578864],[-77.1124786565475,38.90083965596921],[-77.11248512106026,38.90083082263908],[-77.11249023253546,38.90082251579827],[-77.11249399097312,38.90081473544679],[-77.11249639637323,38.90080748158461],[-77.11249744873577,38.90080075421177],[-77.11249714806075,38.90079455332823],[-77.11249549434818,38.90078887893401],[-77.11249248759806,38.90078373102912],[-77.11248715061659,38.90077700365052],[-77.11247948340376,38.90076869679824],[-77.1124694859596,38.90075881047225],[-77.11245715828407,38.90074734467258],[-77.11244250037721,38.90073429939922],[-77.112425512239,38.90071967465215],[-77.11240619386945,38.9007034704314],[-77.11238454526853,38.90068568673696],[-77.11236394903017,38.90066819553388],[-77.11234440515436,38.90065099682215],[-77.11232591364109,38.90063409060179],[-77.11230847449033,38.90061747687279],[-77.11229208770214,38.90060115563514],[-77.11227675327652,38.90058512688887],[-77.11226247121343,38.90056939063395],[-77.11224924151287,38.90055394687039],[-77.11223819170617,38.9005395560896],[-77.1122293217933,38.90052621829158],[-77.11222263177426,38.90051393347633],[-77.11221812164908,38.90050270164384],[-77.11221579141773,38.90049252279412],[-77.11221564108023,38.90048339692717],[-77.11221767063655,38.900475324043],[-77.11222188008672,38.90046830414159],[-77.11222774324946,38.90045952926067],[-77.11223526012478,38.90044899940023],[-77.11224443071266,38.90043671456026],[-77.11225525501312,38.90042267474079],[-77.11226773302616,38.9004068799418],[-77.11228186475174,38.90038933016329],[-77.1122976501899,38.90037002540527],[-77.11231508934063,38.90034896566772],[-77.11233425737268,38.90032808142236],[-77.11235515428606,38.90030737266917],[-77.11237778008076,38.90028683940816],[-77.11240213475678,38.90026648163933],[-77.11242821831412,38.90024629936268],[-77.11245603075278,38.9002262925782],[-77.11248557207277,38.9002064612859],[-77.11251684227409,38.90018680548578],[-77.11254578224404,38.90016872916828],[-77.11257239198267,38.9001522323334],[-77.11259667148992,38.90013731498114],[-77.11261862076584,38.90012397711149],[-77.11263823981042,38.90011221872447],[-77.11265552862363,38.90010203982007],[-77.11267048720552,38.90009344039829],[-77.11268311555604,38.90008642045912],[-77.11269672110036,38.90007934201969],[-77.11271130383847,38.90007220508002],[-77.11272686377038,38.90006500964008],[-77.11274340089606,38.90005775569989],[-77.11276091521555,38.90005044325943],[-77.11277940672883,38.90004307231872],[-77.11279887543589,38.90003564287775],[-77.11281932133674,38.90002815493652],[-77.11283909071881,38.90002224648298],[-77.11285818358212,38.90001791751713],[-77.11287659992664,38.90001516803896],[-77.11289433975239,38.90001399804849],[-77.11291140305936,38.9000144075457],[-77.11292778984753,38.9000163965306],[-77.11294350011694,38.90001996500318],[-77.11295853386757,38.90002511296345],[-77.11297386829321,38.9000309629171],[-77.11298950339386,38.90003751486412],[-77.11300543916953,38.90004476880453],[-77.11302167562022,38.9000527247383],[-77.1130382127459,38.90006138266546],[-77.1130550505466,38.900070742586],[-77.11307218902232,38.9000808044999],[-77.11308962817307,38.90009156840719],[-77.11310661631128,38.900102507811],[-77.11312315343696,38.90011362271133],[-77.11313923955014,38.90012491310819],[-77.1131548746508,38.90013637900157],[-77.11317005873894,38.90014802039147],[-77.11318479181455,38.9001598372779],[-77.11319907387765,38.90017182966085],[-77.11321290492822,38.90018399754032],[-77.11322628496629,38.90019546342588],[-77.11323921399182,38.90020622731754],[-77.11325169200485,38.90021628921528],[-77.11326371900535,38.90022564911911],[-77.11327529499333,38.90023430702903],[-77.1132864199688,38.90024226294504],[-77.11329709393175,38.90024951686715],[-77.11330731688219,38.90025606879534],[-77.11331753983262,38.9002619772305],[-77.11332776278303,38.90026724217265],[-77.11333798573347,38.90027186362175],[-77.1133482086839,38.90027584157785],[-77.11335843163434,38.90027917604091],[-77.11336865458475,38.90028186701095],[-77.11337887753518,38.90028391448796],[-77.1133891004856,38.90028531847193],[-77.11339917309853,38.90028549396951],[-77.11340909537395,38.9002844409807],[-77.11341886731185,38.90028215950547],[-77.11342848891226,38.90027864954385],[-77.11343796017515,38.90027391109582],[-77.11344728110055,38.90026794416139],[-77.11345645168842,38.90026074874056],[-77.11346547193881,38.90025232483334],[-77.11347434185167,38.90024419342227],[-77.11348306142703,38.90023635450734],[-77.1134916306649,38.90022880808858],[-77.11350004956525,38.90022155416599],[-77.1135083181281,38.90021459273954],[-77.11351643635344,38.90020792380925],[-77.11352440424128,38.90020154737512],[-77.11353222179159,38.90019546343715],[-77.11354154271699,38.90018926249972],[-77.11355236701743,38.90018294456284],[-77.11356469469295,38.9001765096265],[-77.11357852574353,38.90016995769071],[-77.11359386016917,38.90016328875546],[-77.11361069796989,38.90015650282076],[-77.11362903914565,38.9001495998866],[-77.11364888369648,38.900142579953],[-77.11366760071601,38.90013678850785],[-77.11368519020425,38.90013222555117],[-77.1137016521612,38.90012889108296],[-77.11371698658684,38.9001267851032],[-77.11373119348119,38.90012590761192],[-77.11374427284423,38.9001262586091],[-77.11375622467598,38.90012783809475],[-77.11376704897643,38.90013064606885],[-77.11377847462691,38.90013392203821],[-77.1137905016274,38.90013766600283],[-77.11380312997794,38.9001418779627],[-77.11381635967848,38.90014655791782],[-77.11383019072906,38.9001517058682],[-77.11384462312967,38.90015732181384],[-77.1138596568803,38.90016340575472],[-77.11387529198096,38.90016995769086],[-77.11389017539409,38.90017656812575],[-77.11390430711967,38.90018323705941],[-77.11391768715774,38.90018996449182],[-77.11393031550826,38.900196750423],[-77.11394219217125,38.90020359485293],[-77.11395331714672,38.90021049778162],[-77.11396369043466,38.90021745920907],[-77.11397331203507,38.90022447913528],[-77.11398315914174,38.90023179155733],[-77.11399323175466,38.90023939647524],[-77.11400352987384,38.90024729388898],[-77.11401405349928,38.90025548379857],[-77.11402480263098,38.90026396620401],[-77.11403577726894,38.90027274110529],[-77.11404697741317,38.90028180850243],[-77.11405840306364,38.9002911683954],[-77.1140693777016,38.90029976779678],[-77.11407990132705,38.90030760670657],[-77.11408997393997,38.90031468512475],[-77.11409959554037,38.90032100305135],[-77.11410876612825,38.90032656048635],[-77.11411748570362,38.90033135742975],[-77.11412575426647,38.90033539388156],[-77.11413357181678,38.90033866984176],[-77.11414131419836,38.90034124381051],[-77.11414898141118,38.90034311578781],[-77.11415657345525,38.90034428577364],[-77.11416409033056,38.90034475376802],[-77.11417153203712,38.90034451977094],[-77.11417889857493,38.9003435837824],[-77.114186189944,38.9003419458024],[-77.1141934061443,38.90033960583094],[-77.11420167470715,38.90033603737323],[-77.11421099563255,38.90033124042926],[-77.11422136892048,38.90032521499904],[-77.11423279457094,38.90031796108256],[-77.11424527258396,38.90030947867982],[-77.11425880295954,38.90029976779083],[-77.11427338569764,38.90028882841557],[-77.11428902079831,38.90027666055406],[-77.1143082639991,38.90026133371542],[-77.11433111530008,38.90024284789967],[-77.11435757470117,38.90022120310679],[-77.11438764220243,38.90019639933678],[-77.11442131780385,38.90016843658965],[-77.11445860150539,38.9001373148654],[-77.11449949330711,38.90010303416402],[-77.11454399320898,38.90006559448552],[-77.11458683939827,38.90003026078051],[-77.114628031875,38.89999703304902],[-77.11466757063914,38.89996591129102],[-77.11470545569074,38.89993689550653],[-77.11474168702975,38.89990998569554],[-77.11477626465619,38.89988518185804],[-77.11480918857006,38.89986248399405],[-77.1148404587714,38.89984189210355],[-77.1148690228976,38.89982223620498],[-77.11489488094867,38.89980351629831],[-77.11491803292463,38.89978573238356],[-77.1149384788255,38.89976888446072],[-77.11495621865123,38.8997529725298],[-77.11497125240186,38.89973799659079],[-77.11498358007738,38.89972395664369],[-77.11499320167778,38.8997108526885],[-77.11500222192817,38.89969283472594],[-77.1150106408285,38.899669902756],[-77.11501845837884,38.89964205677869],[-77.11502567457913,38.89960929679398],[-77.11503289077945,38.89956507080014],[-77.11504010697973,38.89950937879715],[-77.11504912723012,38.89942256477967],[-77.11505235039729,38.89938744680158],[-77.1151224708282,38.89938695294445],[-77.11522613423358,38.89938658871858],[-77.11533003164215,38.89938658871858],[-77.11543416305389,38.89938695294445],[-77.11553852846879,38.89938768139617],[-77.11564312788687,38.89938877407376],[-77.11574796130813,38.89939023097722],[-77.11585934681821,38.89938895618398],[-77.11597728441711,38.89938494969405],[-77.11610177410486,38.89937821150743],[-77.11623281588143,38.8993687416241],[-77.11637040974682,38.8993565400441],[-77.11649376647998,38.8993437604955]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000045,"geom:area_square_m":437351.161653,"geom:bbox":"-77.1225838353,38.8968602602,-77.1122156411,38.9057243773","geom:latitude":38.901776,"geom:longitude":-77.117577,"iso:country":"US","lbl:latitude":38.898076,"lbl:longitude":-77.117338,"lbl:max_zoom":18,"mps:latitude":38.901659,"mps:longitude":-77.117222,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Lee Hts"],"reversegeo:latitude":38.901659,"reversegeo:longitude":-77.117222,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85875981,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"8aa3b3dfd92a93f48dfb06d35a1381ee","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726423,"neighbourhood_id":85875981,"region_id":85688747}],"wof:id":1108726423,"wof:lastmodified":1566623891,"wof:name":"Lee Heights","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85830133],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726433.geojson b/fixtures/microhoods/1108726433.geojson new file mode 100644 index 0000000..3686a2c --- /dev/null +++ b/fixtures/microhoods/1108726433.geojson @@ -0,0 +1 @@ +{"id":1108726433,"type":"Feature","bbox":[-77.06336245163502,38.85035213560459,-77.05747932084203,38.86129782400997],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.05772194263245,38.85763689616336],[-77.05747932084203,38.85035213560459],[-77.05752044878335,38.85039384897259],[-77.05766177080181,38.85046142242679],[-77.05785504944471,38.850505931889],[-77.05810028471205,38.85052737735921],[-77.05839747660386,38.85052575883745],[-77.05870090329057,38.85052373568512],[-77.0590105647722,38.85052130790224],[-77.05932646104878,38.8505184754888],[-77.05964859212028,38.85051523844481],[-77.05991616873614,38.85051240603127],[-77.06012919089632,38.85050997824817],[-77.06028765860086,38.85050795509551],[-77.06039157184972,38.85050633657329],[-77.0604850937737,38.8505059319427],[-77.06056822437282,38.85050674120373],[-77.06064096364702,38.85050876435639],[-77.06070331159636,38.85051200140067],[-77.06076877694315,38.85051685696622],[-77.0608373596874,38.85052333105301],[-77.06090905982913,38.85053142366107],[-77.0609838773683,38.8505411347904],[-77.0610623318712,38.85055408295767],[-77.06114442333782,38.85057026816288],[-77.06123015176813,38.85058969040605],[-77.06131951716216,38.85061234968717],[-77.06140264776126,38.8506346043318],[-77.06147954356541,38.85065645433995],[-77.06155020457464,38.85067789971163],[-77.06161463078897,38.85069894044681],[-77.06167801787078,38.85072362283353],[-77.0617403658201,38.85075194687177],[-77.06180167463694,38.85078391256154],[-77.06186194432127,38.85081951990283],[-77.06194923145033,38.85087333543385],[-77.06206353602408,38.85094535915459],[-77.06220485804255,38.85103559106506],[-77.06237319750574,38.85114403116526],[-77.06251607822293,38.85123628612914],[-77.06263350019415,38.85131235595671],[-77.0627254634194,38.85137224064795],[-77.06279196789868,38.85141594020288],[-77.0628589919442,38.85145761661042],[-77.06292653555596,38.85149726987058],[-77.06299459873398,38.85153489998333],[-77.06306318147823,38.8515705069487],[-77.06311617723516,38.85171091011932],[-77.06315358600476,38.85195610949519],[-77.06317540778703,38.85230610507632],[-77.06318164258195,38.85276089686272],[-77.06319099477436,38.85326990228005],[-77.06320346436422,38.85383312132834],[-77.06321905135155,38.85445055400756],[-77.06323775573634,38.85512220031773],[-77.06325801881987,38.8558431991718],[-77.06327984060214,38.85661355056979],[-77.06330322108313,38.85743325451168],[-77.06332816026286,38.85830231099746],[-77.06334634508141,38.85900629371952],[-77.06335777553879,38.85954520267784],[-77.063362451635,38.85991903787243],[-77.06336037337003,38.86012779930329],[-77.06335933423755,38.86031066761129],[-77.06335933423756,38.86046764279643],[-77.06336037337005,38.8605987248587],[-77.06336245163502,38.86070391379813],[-77.06336193206877,38.86079291978236],[-77.0633588146713,38.86086574281139],[-77.06335309944262,38.86092238288524],[-77.0633447863827,38.8609628400039],[-77.06333283635908,38.86100006053992],[-77.06331724937175,38.86103404449329],[-77.0632980254207,38.86106479186402],[-77.06327516450595,38.86109230265212],[-77.0632419122663,38.86112385912247],[-77.0631982687018,38.86115946127507],[-77.06314423381238,38.86119910910993],[-77.06307980759807,38.86124280262703],[-77.0630533097196,38.86129782400997],[-77.06289783879953,38.86120005459783],[-77.06279697180211,38.86114107999924],[-77.06269888508734,38.86108831041018],[-77.06258630410852,38.86103088256261],[-77.06245922886568,38.86096879645653],[-77.06232280985496,38.8609086504968],[-77.0621770470764,38.86085044468342],[-77.06202194052997,38.86079417901638],[-77.06185749021571,38.86073985349569],[-77.06169117114786,38.86069425885219],[-77.06152298332646,38.86065739508588],[-77.06135292675145,38.86062926219678],[-77.06118100142288,38.86060986018487],[-77.06101032193003,38.86059579372647],[-77.06084088827289,38.86058706282159],[-77.06067270045148,38.86058366747022],[-77.06050575846577,38.86058560767236],[-77.06035688109792,38.86058415251996],[-77.06022606834793,38.86057930201301],[-77.06011332021579,38.86057105615151],[-77.06001863670151,38.86055941493548],[-77.05994762406581,38.86053855773622],[-77.05990028230866,38.86050848455376],[-77.0598766114301,38.86046919538808],[-77.0598766114301,38.8604206902392],[-77.05987162808724,38.86036102881331],[-77.05986166140153,38.86029021111043],[-77.05984671137296,38.86020823713056],[-77.05982677800151,38.86011510687369],[-77.05980435295865,38.86002440178036],[-77.05977943624437,38.85993612185055],[-77.05975202785865,38.85985026708428],[-77.05972212780154,38.85976683748154],[-77.05969035899082,38.85967807212602],[-77.05965672142653,38.85958397101772],[-77.05962121510868,38.85948453415665],[-77.05958384003725,38.8593797615428],[-77.05954459621225,38.85927838421208],[-77.05950348363368,38.8591804021645],[-77.05946050230153,38.85908581540004],[-77.05941565221582,38.85899462391872],[-77.05936457295154,38.85890391738523],[-77.05930726450867,38.85881369579958],[-77.05924372688725,38.85872395916176],[-77.05917396008726,38.85863470747178],[-77.05909111201225,38.85854109006297],[-77.05899518266227,38.85844310693533],[-77.05888617203728,38.85834075808886],[-77.05876408013728,38.85823404352357],[-77.05863575905872,38.85813314964119],[-77.05850120880159,38.85803807644176],[-77.05836042936588,38.85794882392525],[-77.0582134207516,38.85786539209167],[-77.05807264131589,38.85779117652272],[-77.05793809105876,38.85772617721842],[-77.0578097699802,38.85767039417874],[-77.05772194263245,38.85763689616336]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000052,"geom:area_square_m":497092.752255,"geom:bbox":"-77.0633624516,38.8503521356,-77.0574793208,38.861297824","geom:latitude":38.855369,"geom:longitude":-77.060596,"iso:country":"US","lbl:latitude":38.855378,"lbl:longitude":-77.060539,"lbl:max_zoom":18,"mps:latitude":38.855378,"mps:longitude":-77.060539,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.855378,"reversegeo:longitude":-77.060539,"src:geom":"mz","wof:belongsto":[85875961,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9b3fd03cd0cca51800df4efab1f84609","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726433,"neighbourhood_id":85875961,"region_id":85688747}],"wof:id":1108726433,"wof:lastmodified":1566623890,"wof:name":"Virginia Highlands","wof:parent_id":85875961,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420546551],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726435.geojson b/fixtures/microhoods/1108726435.geojson new file mode 100644 index 0000000..e57ef71 --- /dev/null +++ b/fixtures/microhoods/1108726435.geojson @@ -0,0 +1 @@ +{"id":1108726435,"type":"Feature","bbox":[-77.15199431360321,38.90597473048052,-77.13921194205797,38.91401592560816],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.14579654867904,38.91401592560816],[-77.14566242693093,38.91396283079033],[-77.14546184598169,38.91388341701816],[-77.14530308226213,38.91382054771573],[-77.1451457360758,38.91375822984275],[-77.14498980742269,38.91369646339921],[-77.14484025766902,38.91363304243465],[-77.14469708681477,38.91356796694907],[-77.14456029486,38.91350123694249],[-77.14442988180468,38.91343285241491],[-77.14431718791448,38.91337108571226],[-77.1442222131894,38.91331593683454],[-77.14414495762944,38.91326740578177],[-77.1440854212346,38.91322549255394],[-77.14401808840711,38.91317420393095],[-77.14394295914698,38.91311353991281],[-77.14386003345417,38.91304350049951],[-77.14376931132873,38.91296408569107],[-77.14363748074017,38.91285488994069],[-77.14346454168853,38.91271591324839],[-77.1432504941738,38.91254715561416],[-77.14299533819596,38.91234861703799],[-77.1427345120853,38.91214787188472],[-77.14246801584179,38.91194492015433],[-77.14219584946542,38.91173976184682],[-77.14191801295624,38.9115323969622],[-77.14165647807896,38.9113437828408],[-77.1414112448336,38.91117391948265],[-77.14118231322016,38.91102280688771],[-77.14096968323864,38.91089044505601],[-77.14078469515471,38.91078014347475],[-77.14062734896837,38.91069190214392],[-77.14049764467964,38.91062572106352],[-77.1403955822885,38.91058160023356],[-77.14028784976453,38.91053968542534],[-77.14017444710771,38.91049997663888],[-77.14005537431805,38.91046247387417],[-77.13993063139557,38.91042717713121],[-77.13979880080701,38.91039629247454],[-77.13965988255242,38.91036981990415],[-77.13951387663177,38.91034775942006],[-77.13936078304505,38.91033011102225],[-77.13926013818713,38.91028378383814],[-77.13921194205797,38.91020877786772],[-77.1392161946576,38.910105093111],[-77.13927289598601,38.90997272956798],[-77.13933526744727,38.90984919010429],[-77.13940330904134,38.90973447471993],[-77.13947702076827,38.9096285834149],[-77.13955640262805,38.9095315161892],[-77.13964145462066,38.90944437623101],[-77.1397321767461,38.90936716354034],[-77.1398285690044,38.90929987811717],[-77.13993063139553,38.9092425199615],[-77.14007238471655,38.90917523432717],[-77.14025382896746,38.90909802121414],[-77.14047496414824,38.90901088062244],[-77.14073579025892,38.90891381255205],[-77.1409569254397,38.9088343931987],[-77.14113836969061,38.90877262256238],[-77.14128012301163,38.9087285006431],[-77.14138218540275,38.90870202744085],[-77.1415012581924,38.90867555422872],[-77.14163734138059,38.90864908100673],[-77.14179043496729,38.90862260777486],[-77.1419605389525,38.90859613453312],[-77.14213064293773,38.90857076433557],[-77.14230074692296,38.90854649718223],[-77.14247085090818,38.90852333307308],[-77.14264095489338,38.90850127200812],[-77.14278837834725,38.90847700482515],[-77.14291312126974,38.90845053152417],[-77.14301518366088,38.90842185210518],[-77.14309456552066,38.90839096656817],[-77.14320229804463,38.90834132899596],[-77.14333838123281,38.90827293938855],[-77.14350281508518,38.90818579774593],[-77.14369559960177,38.90807990406812],[-77.14390681205008,38.90797511330121],[-77.14413645243013,38.90787142544522],[-77.14438452074191,38.90776884050014],[-77.14465101698542,38.90766735846599],[-77.1449118430961,38.90757139165857],[-77.14516699907392,38.9074809400779],[-77.14541648491893,38.90739600372399],[-77.14566030063108,38.90731658259681],[-77.14602744173251,38.90721068741503],[-77.14651790822325,38.90707831817866],[-77.14713170010324,38.90691947488767],[-77.14786881737254,38.90673415754209],[-77.14846985145365,38.90658303557913],[-77.14893480234659,38.90646610899883],[-77.14926367005134,38.90638337780115],[-77.14945645456793,38.9063348419861],[-77.14965774428376,38.90626314116157],[-77.14986753919888,38.90616827532754],[-77.15014254064165,38.90601494552077],[-77.15020713874864,38.90597473048052],[-77.15020528401271,38.9060108133076],[-77.15019540149018,38.90608635965533],[-77.15017912439426,38.90616959629457],[-77.1501541274255,38.90628766517848],[-77.15012041058392,38.90644056630705],[-77.15007797386951,38.90662829968029],[-77.15002681728228,38.90685086529819],[-77.14998612454244,38.90703090811508],[-77.14995589565,38.90716842813097],[-77.14993613060493,38.90726342534585],[-77.14992682940726,38.90731589975971],[-77.14992217880842,38.90736611231607],[-77.14992217880842,38.9074140630149],[-77.14992682940726,38.90745975185622],[-77.14993613060493,38.90750317884002],[-77.14994950107659,38.90754570107165],[-77.14996694082224,38.90758731855112],[-77.14998844984187,38.90762803127841],[-77.15001402813547,38.90766783925355],[-77.15005297690075,38.90771081373805],[-77.15010529613768,38.90775695473191],[-77.15017098584627,38.90780626223516],[-77.15025004602654,38.90785873624776],[-77.15042444348299,38.90798494431679],[-77.15069417821562,38.90818488644226],[-77.15117435254572,38.90854541518371],[-77.15199431360321,38.9091641317814],[-77.151977,38.909177],[-77.151925,38.909216],[-77.151583,38.909487],[-77.151429,38.909605],[-77.150791,38.910104],[-77.150588,38.910265],[-77.150441,38.91038],[-77.150377,38.91043],[-77.150089,38.910654],[-77.149999,38.910725],[-77.149792,38.910886],[-77.149332,38.911247],[-77.149282,38.911288],[-77.14925,38.911312],[-77.149203,38.911348],[-77.149129,38.911406],[-77.148765,38.911693],[-77.148721,38.911727],[-77.148492,38.911993],[-77.148451,38.912022],[-77.148377,38.912077],[-77.14833,38.91211],[-77.14829,38.912141],[-77.146589,38.913395],[-77.145809,38.914006],[-77.14579654867904,38.91401592560816]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000051,"geom:area_square_m":487559.471896,"geom:bbox":"-77.1519943136,38.9059747305,-77.1392119421,38.9140159256","geom:latitude":38.909953,"geom:longitude":-77.145944,"iso:country":"US","lbl:latitude":38.910344,"lbl:longitude":-77.145508,"lbl:max_zoom":18,"mps:latitude":38.910344,"mps:longitude":-77.145508,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.910344,"reversegeo:longitude":-77.145508,"src:geom":"mz","wof:belongsto":[85876017,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d6aa93a764141515ab529f817fbf6039","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726435,"neighbourhood_id":85876017,"region_id":85688747}],"wof:id":1108726435,"wof:lastmodified":1566623890,"wof:name":"Woodland Acres","wof:parent_id":85876017,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420546561],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726437.geojson b/fixtures/microhoods/1108726437.geojson new file mode 100644 index 0000000..25a6b31 --- /dev/null +++ b/fixtures/microhoods/1108726437.geojson @@ -0,0 +1 @@ +{"id":1108726437,"type":"Feature","bbox":[-77.11357463723962,38.90400300441695,-77.1069390392777,38.91157529588116],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.10819520236578,38.90400300441695],[-77.10825817986114,38.90402211202401],[-77.1083155173319,38.90406407718795],[-77.10839924824164,38.90416323254037],[-77.10847933867706,38.90426097126092],[-77.10855578863811,38.90435729334959],[-77.10862859812485,38.9044521988064],[-77.10869776713726,38.90454568763132],[-77.10877512721692,38.90465121644913],[-77.10886067836381,38.90476878525983],[-77.10895442057799,38.90489839406339],[-77.10905635385943,38.90504004285985],[-77.1091610174966,38.90517885843077],[-77.10926841148955,38.90531484077614],[-77.10937853583823,38.90544798989599],[-77.10949139054267,38.90557830579029],[-77.1095996946542,38.90571003790667],[-77.10970344817278,38.90584318624514],[-77.10980265109846,38.90597775080566],[-77.10989730343123,38.90611373158827],[-77.10998740517107,38.90625112856039],[-77.11007295631796,38.90638994172204],[-77.11015395687195,38.9065301710732],[-77.11023040683304,38.90667181661389],[-77.11030321631976,38.90680992077441],[-77.11037238533217,38.90694448355477],[-77.11043791387023,38.90707550495497],[-77.11049980193395,38.90720298497502],[-77.110554409049,38.90732267439757],[-77.1106017352154,38.90743457322263],[-77.1106417804331,38.90753868145019],[-77.11067454470212,38.90763499908027],[-77.11071732027558,38.90773839869503],[-77.11077010715347,38.90784888029447],[-77.11083290533578,38.90796644387861],[-77.11090571482251,38.90809108944743],[-77.11097579395349,38.90820440348695],[-77.11104314272873,38.90830638599717],[-77.1111077611482,38.90839703697809],[-77.11116964921193,38.9084763564297],[-77.11123153727566,38.90854292809082],[-77.11129342533938,38.90859675196147],[-77.11135531340311,38.90863782804161],[-77.11141720146684,38.90866615633128],[-77.11147726929339,38.90869377640403],[-77.11153551688278,38.90872068825988],[-77.11159194423499,38.90874689189882],[-77.11164655135005,38.90877238732084],[-77.11170388882084,38.90880850579062],[-77.1117639566474,38.90885524730813],[-77.1118267548297,38.9089126118734],[-77.11189228336778,38.90898059948641],[-77.11195872202444,38.90905141983433],[-77.11202607079966,38.90912507291716],[-77.11209432969348,38.90920155873489],[-77.11216349870587,38.90928087728753],[-77.1122253867696,38.90934957278959],[-77.11227999388464,38.9094076452411],[-77.11232732005102,38.90945509464203],[-77.11236736526874,38.90949192099238],[-77.11241378131653,38.90953582928639],[-77.1124665681944,38.90958681952404],[-77.11252572590237,38.90964489170536],[-77.11259125444045,38.90971004583031],[-77.11265405262274,38.90977590808852],[-77.11271412044931,38.90984247847997],[-77.1127714579201,38.90990975700468],[-77.11282606503516,38.90997774366264],[-77.11287794179447,38.91004997939515],[-77.112927088198,38.91012646420221],[-77.11297350424582,38.91020719808381],[-77.11301718993784,38.91029218103998],[-77.11306269586706,38.91038424575088],[-77.11311002203342,38.91048339221651],[-77.11315916843698,38.91058962043689],[-77.1132101350777,38.91070293041201],[-77.11325746124407,38.91080915839498],[-77.11330114693611,38.91090830438581],[-77.11334119215383,38.91100036838449],[-77.11337759689718,38.91108535039101],[-77.11342401294499,38.91119228576877],[-77.1134804402972,38.91132117451778],[-77.11357463723962,38.91153353836675],[-77.11354688866462,38.9115100117051],[-77.1135238521118,38.91149432726399],[-77.11350552758113,38.91148648504345],[-77.11349191507264,38.91148648504345],[-77.11347751722712,38.91148699428023],[-77.11346233404457,38.9114880127538],[-77.113446365525,38.91148954046415],[-77.11342961166841,38.91149157741129],[-77.11341207247477,38.91149412359521],[-77.11339374794412,38.91149717901592],[-77.11337463807644,38.91150074367341],[-77.1133547428717,38.91150481756767],[-77.11333301521393,38.91150980808692],[-77.11330945510309,38.91151571523113],[-77.11328406253918,38.9115225390003],[-77.1132568375222,38.91153027939446],[-77.11322778005217,38.91153893641356],[-77.11319689012905,38.91154851005765],[-77.11316416775287,38.9115590003267],[-77.11312961292364,38.91157040722071],[-77.11309623609993,38.91157529588116],[-77.11306403728179,38.91157366630803],[-77.11303301646917,38.91156551850134],[-77.1130031736621,38.91155085246108],[-77.11297450886056,38.91152966818724],[-77.11294702206459,38.91150196567985],[-77.11292071327414,38.91146774493887],[-77.11289558248923,38.91142700596433],[-77.11286521612413,38.91139339631313],[-77.11282961417886,38.9113669159853],[-77.11278877665339,38.9113475649808],[-77.11274270354775,38.91133534329966],[-77.11269139486191,38.91133025094187],[-77.11263485059588,38.91133228790743],[-77.11257307074968,38.91134145419635],[-77.11250605532325,38.91135774980862],[-77.11242490383034,38.91136355509603],[-77.11232961627093,38.91135887005859],[-77.112220192645,38.91134369469631],[-77.11209663295259,38.91131802900919],[-77.11195893719363,38.91128187299721],[-77.1118071053682,38.91123522666037],[-77.11164113747623,38.9111780899987],[-77.11146103351777,38.91111046301217],[-77.11129061538264,38.91104578957932],[-77.11112988307089,38.91098406970013],[-77.11097883658246,38.91092530337461],[-77.11083747591739,38.91086949060278],[-77.11070580107567,38.91081663138461],[-77.11058381205729,38.91076672572009],[-77.11047150886226,38.91071977360926],[-77.11036889149057,38.9106757750521],[-77.11027857773233,38.91063534118636],[-77.11020056758753,38.91059847201206],[-77.11013486105617,38.9105651675292],[-77.11008145813825,38.91053542773776],[-77.11004035883377,38.91050925263775],[-77.11001156314275,38.91048664222919],[-77.10999507106516,38.91046759651204],[-77.109990882601,38.91045211548634],[-77.10998761036339,38.91043673630637],[-77.1099852543523,38.91042145897214],[-77.10998381456776,38.91040628348365],[-77.10998329100971,38.91039120984089],[-77.10998368367822,38.91037623804387],[-77.10998499257329,38.9103613680926],[-77.10998721769487,38.91034659998707],[-77.10999035904298,38.91033193372726],[-77.1099935003911,38.91031675821792],[-77.10999664173922,38.91030107345905],[-77.10999978308732,38.91028487945062],[-77.11000292443543,38.91026817619266],[-77.11000606578354,38.91025096368515],[-77.11000920713165,38.9102332419281],[-77.11001234847977,38.91021501092152],[-77.11001548982789,38.91019627066539],[-77.1100185002865,38.91017824335087],[-77.1100213798556,38.91016092897795],[-77.1100241285352,38.91014432754665],[-77.11002674632529,38.91012843905695],[-77.11002923322587,38.91011326350886],[-77.11003158923697,38.91009880090239],[-77.11003381435853,38.91008505123752],[-77.11003590859062,38.91007201451424],[-77.11000606578354,38.91004858907819],[-77.10994428593732,38.91001477492934],[-77.10985056905196,38.90997057206769],[-77.10972491512744,38.90991598049325],[-77.10956732416379,38.90985100020602],[-77.109377796161,38.90977563120599],[-77.10915633111904,38.90968987349316],[-77.10890292903795,38.90959372706754],[-77.10867675197383,38.90951560811301],[-77.10847779992669,38.90945551662955],[-77.10830607289654,38.90941345261719],[-77.10816157088334,38.9093894160759],[-77.10804429388713,38.90938340700569],[-77.1079542419079,38.90939542540657],[-77.10789141494564,38.90942547127852],[-77.10785581300038,38.90947354462156],[-77.1078088236682,38.90950847927191],[-77.1077504469491,38.90953027522956],[-77.1076806828431,38.90953893249451],[-77.10759953135016,38.90953445106678],[-77.10749115484028,38.90950970142153],[-77.10735555331341,38.90946468355878],[-77.10714521387936,38.90937800890407],[-77.1069390392777,38.90928519659994],[-77.1069487246804,38.90927417666809],[-77.1069673786774,38.90924809802158],[-77.10698587458967,38.90921734488334],[-77.10700421241725,38.90918191725342],[-77.10702239216009,38.90914181513178],[-77.10704041381821,38.90909703851844],[-77.10705827739162,38.90904758741339],[-77.10707598288027,38.90899346181664],[-77.10709036858984,38.90893699891308],[-77.10710143452026,38.90887819870274],[-77.10710918067156,38.90881706118559],[-77.10711360704373,38.90875358636166],[-77.10711471363676,38.90868777423091],[-77.10711250045068,38.90861962479337],[-77.10710696748546,38.90854913804904],[-77.10709811474113,38.90847631399792],[-77.10709005242039,38.90840435097755],[-77.10708278052326,38.90833324898793],[-77.10707629904971,38.90826300802907],[-77.10707060799979,38.90819362810096],[-77.10706570737345,38.90812510920361],[-77.10706159717071,38.90805745133702],[-77.10705827739159,38.90799065450118],[-77.10705574803607,38.90792471869611],[-77.10705495761248,38.90786419551762],[-77.10705590612079,38.90780908496573],[-77.10705859356104,38.90775938704043],[-77.10706301993321,38.90771510174173],[-77.1070691852373,38.90767622906962],[-77.10707708947332,38.90764276902411],[-77.10708673264126,38.9076147216052],[-77.10709811474113,38.90759208681287],[-77.10711281662013,38.90757043613807],[-77.10713083827825,38.90754976958078],[-77.1071521797155,38.90753008714101],[-77.10717684093187,38.90751138881876],[-77.10720482192737,38.90749367461402],[-77.10723612270199,38.90747694452681],[-77.10727074325574,38.9074611985571],[-77.10730868358863,38.90744643670492],[-77.10735120837839,38.90742749230655],[-77.10739831762506,38.90740436536201],[-77.1074500113286,38.90737705587129],[-77.10750628948904,38.9073455638344],[-77.10756715210636,38.90730988925132],[-77.10763259918059,38.90727003212207],[-77.1077026307117,38.90722599244664],[-77.1077772466997,38.90717777022502],[-77.10785170460298,38.90712598047556],[-77.10792600442154,38.90707062319827],[-77.10800014615538,38.90701169839312],[-77.1080741298045,38.90694920606013],[-77.1081479553689,38.90688314619929],[-77.10822162284857,38.90681351881061],[-77.10829513224354,38.90674032389408],[-77.10836848355378,38.9066635614497],[-77.10843250786552,38.90659159662697],[-77.10848720517876,38.90652442942589],[-77.1085325754935,38.90646205984646],[-77.10856861880973,38.90640448788867],[-77.10859533512746,38.90635171355253],[-77.10861272444671,38.90630373683804],[-77.10862078676745,38.90626055774519],[-77.10861952208968,38.906222176274],[-77.10861541188694,38.90618600910985],[-77.10860845615926,38.90615205625275],[-77.10859865490659,38.90612031770271],[-77.10858600812898,38.90609079345971],[-77.10857051582639,38.90606348352377],[-77.1085521779988,38.90603838789488],[-77.10853099464629,38.90601550657303],[-77.10850696576878,38.90599483955825],[-77.10848056562048,38.90597429555581],[-77.10845179420139,38.90595387456572],[-77.10842065151147,38.90593357658798],[-77.10838713755078,38.9059134016226],[-77.10835125231927,38.90589334966957],[-77.10831299581693,38.90587342072888],[-77.10827236804381,38.90585361480056],[-77.10822936899987,38.90583393188458],[-77.10818874122674,38.90581215764439],[-77.10815048472443,38.90578829208],[-77.10811459949291,38.9057623351914],[-77.1080810855322,38.90573428697857],[-77.1080499428423,38.90570414744155],[-77.10802117142319,38.90567191658032],[-77.10799477127489,38.90563759439488],[-77.10797074239741,38.90560118088523],[-77.10794845245184,38.90556525943428],[-77.1079279014382,38.90552983004203],[-77.10790908935647,38.90549489270848],[-77.10789201620668,38.90546044743361],[-77.10787668198878,38.90542649421745],[-77.10786308670285,38.90539303305999],[-77.10785123034881,38.90536006396121],[-77.10784111292674,38.90532758692115],[-77.10783226018239,38.90529486382665],[-77.10782467211581,38.90526189467774],[-77.107818348727,38.90522867947442],[-77.10781329001595,38.90519521821669],[-77.10780949598266,38.90516151090453],[-77.10780696662714,38.90512755753795],[-77.10780570194937,38.90509335811696],[-77.10780570194937,38.90505891264156],[-77.10780680854242,38.90502508225062],[-77.1078090217285,38.90499186694416],[-77.10781234150762,38.90495926672217],[-77.1078167678798,38.90492728158465],[-77.107822300845,38.90489591153161],[-77.10782894040327,38.90486515656303],[-77.10783668655456,38.90483501667894],[-77.10784553929889,38.90480549187932],[-77.10785581480572,38.90477510592279],[-77.10786751307502,38.90474385880938],[-77.1078806341068,38.90471175053905],[-77.10789517790109,38.90467878111184],[-77.10791114445783,38.90464495052772],[-77.10792853377707,38.9046102587867],[-77.10794734585879,38.90457470588878],[-77.10796758070299,38.90453829183397],[-77.10798773618711,38.90450005706374],[-77.10800781231114,38.90446000157809],[-77.10802780907508,38.90441812537703],[-77.10804772647893,38.90437442846055],[-77.10807001451813,38.90432253835638],[-77.1080946731927,38.90426245506454],[-77.10812905248892,38.9041750611682],[-77.10819520236578,38.90400300441695]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":182342.06581,"geom:bbox":"-77.1135746372,38.9040030044,-77.1069390393,38.9115752959","geom:latitude":38.90841,"geom:longitude":-77.109814,"iso:country":"US","lbl:latitude":38.90808,"lbl:longitude":-77.109211,"lbl:max_zoom":18,"mps:latitude":38.90808,"mps:longitude":-77.109211,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.90808,"reversegeo:longitude":-77.109211,"src:geom":"mz","wof:belongsto":[85875981,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1ff333e6555344deef037b7ee59e53a2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726437,"neighbourhood_id":85875981,"region_id":85688747}],"wof:id":1108726437,"wof:lastmodified":1566623889,"wof:name":"Beechwood Hills","wof:parent_id":85875981,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420785089],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726439.geojson b/fixtures/microhoods/1108726439.geojson new file mode 100644 index 0000000..282d026 --- /dev/null +++ b/fixtures/microhoods/1108726439.geojson @@ -0,0 +1 @@ +{"id":1108726439,"type":"Feature","bbox":[-77.10862078676745,38.90077103581687,-77.09866301591727,38.906546083042],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.10846957165222,38.906546083042],[-77.10834723403943,38.90647423422786],[-77.10808175214505,38.90631951881372],[-77.10792269691319,38.9062285096807],[-77.10780808358435,38.90616480321292],[-77.10773791215851,38.90612839941036],[-77.10765721501882,38.9060883551962],[-77.10756599216525,38.90604467057042],[-77.1074642435978,38.90599734553302],[-77.10735196931648,38.905946380084],[-77.10723501694011,38.90589086408995],[-77.10711338646868,38.90583079755086],[-77.1069870779022,38.90576618046671],[-77.10685609124067,38.90569701283754],[-77.10671925696032,38.90562784514096],[-77.10657657506114,38.905558677377],[-77.10642804554314,38.90548950954566],[-77.10627366840632,38.90542034164692],[-77.10614034269724,38.90536027476397],[-77.10602806841594,38.9053093088968],[-77.10593684556237,38.90526744404543],[-77.10586667413654,38.90523468020984],[-77.10580001128201,38.90520100624997],[-77.10573685699876,38.90516642216582],[-77.10567721128682,38.90513092795739],[-77.10562107414617,38.90509452362469],[-77.10556961510056,38.90506084960583],[-77.10552283415002,38.90502990590082],[-77.10548073129452,38.90500169250965],[-77.10544330653407,38.90497620943233],[-77.10540471224986,38.90495163645764],[-77.1053649484419,38.90492797358556],[-77.10532401511017,38.90490522081612],[-77.10528191225468,38.90488337814929],[-77.10522694463779,38.90485698490943],[-77.10515911225949,38.90482604109652],[-77.10507841511979,38.90479054671057],[-77.1049848532187,38.90475050175158],[-77.10490298655523,38.9047177376903],[-77.10483281512941,38.90469225452674],[-77.10477433894123,38.90467405226089],[-77.10472755799067,38.90466313089276],[-77.10468077704013,38.90465038929287],[-77.10463399608958,38.90463582746122],[-77.10458721513903,38.90461944539782],[-77.10454043418848,38.90460124310267],[-77.10448897514287,38.90458577115048],[-77.10443283800223,38.90457302954125],[-77.10437202276651,38.904563018275],[-77.10430652943573,38.90455573735171],[-77.10423284943862,38.90454845642768],[-77.10415098277515,38.90454117550289],[-77.10406092944535,38.90453389457736],[-77.10396268944919,38.90452661365109],[-77.10386912754811,38.90452024284031],[-77.10378024374205,38.90451478214504],[-77.10369603803107,38.90451023156528],[-77.10361651041512,38.90450659110102],[-77.10353815232295,38.90450932144641],[-77.10346096375456,38.90451842260146],[-77.10338494470992,38.90453389456616],[-77.10331009518903,38.9045557373405],[-77.10324460185826,38.90457758010812],[-77.1031884647176,38.90459942286904],[-77.10314168376705,38.90462126562323],[-77.10310425900661,38.90464310837069],[-77.1030691732937,38.90466768144899],[-77.10303642662831,38.90469498485812],[-77.10300601901045,38.90472501859809],[-77.10297795044013,38.9047577826689],[-77.10295222091733,38.90478599616945],[-77.10292883044205,38.90480965909976],[-77.10290777901432,38.90482877145983],[-77.10288906663408,38.90484333324967],[-77.10284813330236,38.90485425459204],[-77.1027849790191,38.90486153548695],[-77.10269960378437,38.90486517593441],[-77.1025920075981,38.90486517593441],[-77.1024925980782,38.90485971526211],[-77.10240137522463,38.90484879391749],[-77.10230290702732,38.90482765543577],[-77.10233972249392,38.90479540605016],[-77.10237832142809,38.90475904504196],[-77.10241671720998,38.90472031263818],[-77.1024549098396,38.90467920883884],[-77.10249289931691,38.90463573364393],[-77.10253068564194,38.90458988705345],[-77.1025682688147,38.9045416690674],[-77.10260564883515,38.90449107968577],[-77.10263673113478,38.90444475877546],[-77.10266151571356,38.90440270633647],[-77.1026800025715,38.90436492236879],[-77.10269219170863,38.90433140687242],[-77.10269808312489,38.90430215984736],[-77.10269767682031,38.90427718129361],[-77.1026909727949,38.90425647121118],[-77.10267797104866,38.90424002960006],[-77.10266151571356,38.90422058421684],[-77.10264160678962,38.90419813506153],[-77.10261824427683,38.9041726821341],[-77.1025914281752,38.90414422543459],[-77.10256115848472,38.90411276496297],[-77.10252743520539,38.90407830071926],[-77.10249025833721,38.90404083270344],[-77.10244962788018,38.90400036091553],[-77.10240595013887,38.90395941482244],[-77.1023592251133,38.90391799442416],[-77.10230945280344,38.9038760997207],[-77.10225663320932,38.90383373071207],[-77.10220076633091,38.90379088739824],[-77.10214185216822,38.90374756977924],[-77.10207989072126,38.90370377785506],[-77.10201488199002,38.9036595116257],[-77.10194865434507,38.90361556155841],[-77.1018812077864,38.9035719276532],[-77.10181254231404,38.90352860991005],[-77.10174265792794,38.90348560832899],[-77.10167155462815,38.90344292291],[-77.10159923241466,38.90340055365307],[-77.10152569128745,38.90335850055823],[-77.10145093124652,38.90331676362545],[-77.10137799957616,38.90327803047968],[-77.10130689627638,38.90324230112088],[-77.10123762134715,38.90320957554908],[-77.10117017478849,38.90317985376429],[-77.1011045566004,38.90315313576647],[-77.10104076678286,38.90312942155565],[-77.1009788053359,38.90310871113181],[-77.10091867225951,38.90309100449498],[-77.10085488244198,38.90307440452129],[-77.10078743588332,38.90305891121074],[-77.10071633258352,38.90304452456334],[-77.1006415725426,38.90303124457909],[-77.10056315576054,38.90301907125798],[-77.10048108223734,38.90300800460002],[-77.10039535197302,38.90299804460521],[-77.10030596496757,38.90298919127354],[-77.10021881263725,38.90298065413161],[-77.10013389498208,38.90297243317943],[-77.10005121200203,38.90296452841698],[-77.09997076369712,38.90295693984428],[-77.09989255006735,38.90294966746131],[-77.09981657111271,38.9029427112681],[-77.09974282683322,38.90293607126461],[-77.09967131722885,38.90292974745088],[-77.09958843109652,38.90292073600961],[-77.09949416843624,38.90290903694081],[-77.09938852924797,38.90289465024447],[-77.09927151353173,38.90287757592061],[-77.09912280605903,38.90285433586496],[-77.09894240682983,38.90282493007754],[-77.09866937015863,38.90277892424558],[-77.09866301591727,38.90277783635657],[-77.09867149737902,38.9027614133646],[-77.0986916577823,38.90271921512969],[-77.09870990642318,38.90267755787279],[-77.0987262433017,38.9026364415939],[-77.09874066841783,38.90259586629298],[-77.09875318177158,38.90255583197008],[-77.09876969244668,38.90251498611225],[-77.09879020044312,38.90247332871954],[-77.09881470576089,38.90243085979191],[-77.09884320839998,38.90238757932936],[-77.09887570836042,38.90234348733192],[-77.09891220564222,38.90229858379958],[-77.09895270024533,38.90225286873232],[-77.0989971921698,38.90220634213015],[-77.09904064131479,38.90216170903528],[-77.09908304768028,38.9021189694477],[-77.0991244112663,38.90207812336742],[-77.09916473207285,38.90203917079441],[-77.09920401009991,38.90200211172871],[-77.0992422453475,38.9019669461703],[-77.0992794378156,38.90193367411918],[-77.09931558750422,38.90190229557535],[-77.09935225858258,38.90186848245988],[-77.09938945105068,38.90183223477277],[-77.09942716490853,38.90179355251401],[-77.0994654001561,38.90175243568361],[-77.09950415679343,38.90170888428157],[-77.0995434348205,38.90166289830789],[-77.09958323423731,38.90161447776256],[-77.09962355504385,38.90156362264558],[-77.09966787317174,38.90151398477872],[-77.09971618862096,38.90146556416197],[-77.09976850139151,38.90141836079532],[-77.09982481148342,38.90137237467877],[-77.09988511889664,38.90132760581234],[-77.09994942363122,38.901284054196],[-77.10001772568712,38.90124171982978],[-77.10009002506438,38.90120060271366],[-77.10015989128951,38.90116110862787],[-77.10022732436252,38.90112323757243],[-77.10029232428342,38.90108698954733],[-77.10035489105218,38.90105236455256],[-77.10041502466883,38.90101936258814],[-77.10047272513337,38.90098798365405],[-77.10052799244579,38.9009582277503],[-77.10058082660608,38.90093009487688],[-77.10063400835953,38.90090453183135],[-77.10068753770615,38.9008815386137],[-77.10074141464594,38.90086111522392],[-77.10079563917887,38.90084326166203],[-77.10085021130497,38.900827977928],[-77.10090513102423,38.90081526402187],[-77.10096039833664,38.9008051199436],[-77.10101601324222,38.90079754569322],[-77.10107075916488,38.90079091822412],[-77.10112463610466,38.90078523753634],[-77.10117764406154,38.90078050362985],[-77.10122978303552,38.90077671650466],[-77.1012810530266,38.90077387616076],[-77.10133145403478,38.90077198259817],[-77.10138098606005,38.90077103581687],[-77.10142964910244,38.90077103581687],[-77.1014767479756,38.90077211785257],[-77.10152228267955,38.90077428192398],[-77.10156625321426,38.90077752803109],[-77.10160865957977,38.9007818561739],[-77.10164950177604,38.90078726635242],[-77.10168877980311,38.90079375856664],[-77.10172649366095,38.90080133281656],[-77.10176264334957,38.90080998910219],[-77.10179914063136,38.90081999792858],[-77.10183598550628,38.90083135929575],[-77.1018731779744,38.90084407320369],[-77.10191071803567,38.9008581396524],[-77.1019486056901,38.90087355864188],[-77.10198684093767,38.90089033017212],[-77.10202542377841,38.90090845424315],[-77.10206435421233,38.90092793085494],[-77.10209859213857,38.90094957152014],[-77.10212813755716,38.90097337623873],[-77.10215299046808,38.90099934501072],[-77.10217315087137,38.90102747783612],[-77.10218861876697,38.90105777471492],[-77.10219939415494,38.90109023564712],[-77.10220547703523,38.90112486063272],[-77.10220686740786,38.90116164967171],[-77.10220999574629,38.90119938546209],[-77.10221486205053,38.90123806800387],[-77.10222146632057,38.90127769729703],[-77.10222980855642,38.90131827334157],[-77.10223988875805,38.90135979613751],[-77.10225170692549,38.90140226568483],[-77.10226526305871,38.90144568198354],[-77.10228055715775,38.90149004503364],[-77.10229967478155,38.90153332603799],[-77.10232261593009,38.90157552499659],[-77.1023493806034,38.90161664190945],[-77.10237996880147,38.90165667677657],[-77.1024143805243,38.90169562959794],[-77.10245261577188,38.90173350037356],[-77.10249467454423,38.90177028910344],[-77.10254055684132,38.90180599578758],[-77.10258817710422,38.90184237871243],[-77.10263753533293,38.90187943787799],[-77.10268863152743,38.90191717328426],[-77.10274146568771,38.90195558493126],[-77.10279603781382,38.90199467281896],[-77.10285234790571,38.90203443694737],[-77.1029103959634,38.90207487731649],[-77.1029701819869,38.90211599392634],[-77.10302996801039,38.90215656950798],[-77.1030897540339,38.9021966040614],[-77.10314954005739,38.90223609758662],[-77.10320932608087,38.90227505008364],[-77.10326911210436,38.90231346155244],[-77.10332889812787,38.90235133199305],[-77.10338868415135,38.90238866140544],[-77.10344847017485,38.90242544978962],[-77.1035077348086,38.90246183240296],[-77.10356647805263,38.90249780924545],[-77.1036246999069,38.90253338031708],[-77.10368240037143,38.90256854561786],[-77.10373957944623,38.9026033051478],[-77.10379623713128,38.90263765890688],[-77.1038523734266,38.90267160689512],[-77.10390798833217,38.90270514911251],[-77.10397646418467,38.90274193731193],[-77.10405780098407,38.9027819714934],[-77.10415199873039,38.90282525165691],[-77.10425905742363,38.90287177780245],[-77.10437897706379,38.90292154993003],[-77.10451175765084,38.90297456803967],[-77.10465739918482,38.90303083213134],[-77.10481590166572,38.90309034220504],[-77.10496936404579,38.90314849973998],[-77.10511778632504,38.90320530473613],[-77.10526116850349,38.90326075719351],[-77.1053995105811,38.90331485711212],[-77.1055328125579,38.90336760449195],[-77.1056610744339,38.90341899933301],[-77.10578429620905,38.90346904163528],[-77.1059024778834,38.90351773139878],[-77.10601023176295,38.90356195792832],[-77.10610755784771,38.90360172122391],[-77.10619445613767,38.90363702128553],[-77.10627092663285,38.90366785811318],[-77.10633696933323,38.90369423170688],[-77.10639258423879,38.90371614206662],[-77.10643777134958,38.9037335891924],[-77.10647253066556,38.90374657308422],[-77.10650833276102,38.90375942172508],[-77.10654517763597,38.90377213511498],[-77.1065830652904,38.90378471325392],[-77.1066219957243,38.9037971561419],[-77.10666196893769,38.90380946377892],[-77.10670298493054,38.90382163616499],[-77.10674504370289,38.9038336733001],[-77.1067881452547,38.90384557518424],[-77.10683524412786,38.90385707132108],[-77.10688634032235,38.90386816171063],[-77.10694143383819,38.90387884635287],[-77.10700052467537,38.90388912524779],[-77.10706361283388,38.90389899839542],[-77.10713069831372,38.90390846579575],[-77.10720178111492,38.90391752744877],[-77.10727686123744,38.90392618335449],[-77.10735211515654,38.90393578599705],[-77.10742754287224,38.90394633537646],[-77.10750314438451,38.9039578314927],[-77.10757891969335,38.9039702743458],[-77.10765486879879,38.90398366393573],[-77.10773099170079,38.9039980002625],[-77.10780728839939,38.90401328332613],[-77.10788375889454,38.90402951312659],[-77.10795223474705,38.90404073873732],[-77.10801271595685,38.90404696015828],[-77.10806520252399,38.90404817738951],[-77.10810969444846,38.90404439043099],[-77.10814619173024,38.90403559928272],[-77.10817469436934,38.90402180394472],[-77.10819520236578,38.90400300441695],[-77.10812905248892,38.9041750611682],[-77.1080946731927,38.90426245506454],[-77.10807001451813,38.90432253835638],[-77.10804772647893,38.90437442846055],[-77.10802780907508,38.90441812537703],[-77.10800781231114,38.90446000157809],[-77.10798773618711,38.90450005706374],[-77.10796758070299,38.90453829183397],[-77.10794734585879,38.90457470588878],[-77.10792853377707,38.9046102587867],[-77.10791114445783,38.90464495052772],[-77.10789517790109,38.90467878111184],[-77.1078806341068,38.90471175053905],[-77.10786751307502,38.90474385880938],[-77.10785581480572,38.90477510592279],[-77.10784553929889,38.90480549187932],[-77.10783668655456,38.90483501667894],[-77.10782894040327,38.90486515656303],[-77.107822300845,38.90489591153161],[-77.1078167678798,38.90492728158465],[-77.10781234150762,38.90495926672217],[-77.1078090217285,38.90499186694416],[-77.10780680854242,38.90502508225062],[-77.10780570194937,38.90505891264156],[-77.10780570194937,38.90509335811696],[-77.10780696662714,38.90512755753795],[-77.10780949598266,38.90516151090453],[-77.10781329001595,38.90519521821669],[-77.107818348727,38.90522867947442],[-77.10782467211581,38.90526189467774],[-77.10783226018239,38.90529486382665],[-77.10784111292674,38.90532758692115],[-77.10785123034881,38.90536006396121],[-77.10786308670285,38.90539303305999],[-77.10787668198878,38.90542649421745],[-77.10789201620668,38.90546044743361],[-77.10790908935647,38.90549489270848],[-77.1079279014382,38.90552983004203],[-77.10794845245184,38.90556525943428],[-77.10797074239741,38.90560118088523],[-77.10799477127489,38.90563759439488],[-77.10802117142319,38.90567191658032],[-77.1080499428423,38.90570414744155],[-77.1080810855322,38.90573428697857],[-77.10811459949291,38.9057623351914],[-77.10815048472443,38.90578829208],[-77.10818874122674,38.90581215764439],[-77.10822936899987,38.90583393188458],[-77.10827236804381,38.90585361480056],[-77.10831299581693,38.90587342072888],[-77.10835125231927,38.90589334966957],[-77.10838713755078,38.9059134016226],[-77.10842065151147,38.90593357658798],[-77.10845179420139,38.90595387456572],[-77.10848056562048,38.90597429555581],[-77.10850696576878,38.90599483955825],[-77.10853099464629,38.90601550657303],[-77.1085521779988,38.90603838789488],[-77.10857051582639,38.90606348352377],[-77.10858600812898,38.90609079345971],[-77.10859865490659,38.90612031770271],[-77.10860845615926,38.90615205625275],[-77.10861541188694,38.90618600910985],[-77.10861952208968,38.906222176274],[-77.10862078676745,38.90626055774519],[-77.10861272444671,38.90630373683804],[-77.10859533512746,38.90635171355253],[-77.10856861880973,38.90640448788867],[-77.1085325754935,38.90646205984646],[-77.10848720517876,38.90652442942589],[-77.10846957165222,38.906546083042]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":173481.547976,"geom:bbox":"-77.1086207868,38.9007710358,-77.0986630159,38.906546083","geom:latitude":38.903377,"geom:longitude":-77.103533,"iso:country":"US","lbl:latitude":38.903475,"lbl:longitude":-77.103456,"lbl:max_zoom":18,"mps:latitude":38.903475,"mps:longitude":-77.103456,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":38.903475,"reversegeo:longitude":-77.103456,"src:geom":"mz","wof:belongsto":[420546579,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a5fae56584f2211eee472dda4cf0e891","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726439,"neighbourhood_id":420546579,"region_id":85688747}],"wof:id":1108726439,"wof:lastmodified":1566623889,"wof:name":"Crystal Spring Knolls","wof:parent_id":420546579,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420785097],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726441.geojson b/fixtures/microhoods/1108726441.geojson new file mode 100644 index 0000000..1a9e962 --- /dev/null +++ b/fixtures/microhoods/1108726441.geojson @@ -0,0 +1 @@ +{"id":1108726441,"type":"Feature","bbox":[-77.10846957165222,38.90450659110102,-77.09878171224709,38.91281905609551],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.10230290702732,38.90482765543577],[-77.10240137522463,38.90484879391749],[-77.1024925980782,38.90485971526211],[-77.1025920075981,38.90486517593441],[-77.10269960378437,38.90486517593441],[-77.1027849790191,38.90486153548695],[-77.10284813330236,38.90485425459204],[-77.10288906663408,38.90484333324967],[-77.10290777901432,38.90482877145983],[-77.10292883044205,38.90480965909976],[-77.10295222091733,38.90478599616945],[-77.10297795044013,38.9047577826689],[-77.10300601901045,38.90472501859809],[-77.10303642662831,38.90469498485812],[-77.1030691732937,38.90466768144899],[-77.10310425900661,38.90464310837069],[-77.10314168376705,38.90462126562323],[-77.1031884647176,38.90459942286904],[-77.10324460185826,38.90457758010812],[-77.10331009518903,38.9045557373405],[-77.10338494470992,38.90453389456616],[-77.10346096375456,38.90451842260146],[-77.10353815232295,38.90450932144641],[-77.10361651041512,38.90450659110102],[-77.10369603803107,38.90451023156528],[-77.10378024374205,38.90451478214504],[-77.10386912754811,38.90452024284031],[-77.10396268944919,38.90452661365109],[-77.10406092944535,38.90453389457736],[-77.10415098277515,38.90454117550289],[-77.10423284943862,38.90454845642768],[-77.10430652943573,38.90455573735171],[-77.10437202276651,38.904563018275],[-77.10443283800223,38.90457302954125],[-77.10448897514287,38.90458577115048],[-77.10454043418848,38.90460124310267],[-77.10458721513903,38.90461944539782],[-77.10463399608958,38.90463582746122],[-77.10468077704013,38.90465038929287],[-77.10472755799067,38.90466313089276],[-77.10477433894123,38.90467405226089],[-77.10483281512941,38.90469225452674],[-77.10490298655523,38.9047177376903],[-77.1049848532187,38.90475050175158],[-77.10507841511979,38.90479054671057],[-77.10515911225949,38.90482604109652],[-77.10522694463779,38.90485698490943],[-77.10528191225468,38.90488337814929],[-77.10532401511017,38.90490522081612],[-77.1053649484419,38.90492797358556],[-77.10540471224986,38.90495163645764],[-77.10544330653407,38.90497620943233],[-77.10548073129452,38.90500169250965],[-77.10552283415002,38.90502990590082],[-77.10556961510056,38.90506084960583],[-77.10562107414617,38.90509452362469],[-77.10567721128682,38.90513092795739],[-77.10573685699876,38.90516642216582],[-77.10580001128201,38.90520100624997],[-77.10586667413654,38.90523468020984],[-77.10593684556237,38.90526744404543],[-77.10602806841594,38.9053093088968],[-77.10614034269724,38.90536027476397],[-77.10627366840632,38.90542034164692],[-77.10642804554314,38.90548950954566],[-77.10657657506114,38.905558677377],[-77.10671925696032,38.90562784514096],[-77.10685609124067,38.90569701283754],[-77.1069870779022,38.90576618046671],[-77.10711338646868,38.90583079755086],[-77.10723501694011,38.90589086408995],[-77.10735196931648,38.905946380084],[-77.1074642435978,38.90599734553302],[-77.10756599216525,38.90604467057042],[-77.10765721501882,38.9060883551962],[-77.10773791215851,38.90612839941036],[-77.10780808358435,38.90616480321292],[-77.10792269691319,38.9062285096807],[-77.10808175214505,38.90631951881372],[-77.10834723403943,38.90647423422786],[-77.10846957165222,38.906546083042],[-77.10843250786552,38.90659159662697],[-77.10836848355378,38.9066635614497],[-77.10829513224354,38.90674032389408],[-77.10822162284857,38.90681351881061],[-77.1081479553689,38.90688314619929],[-77.1080741298045,38.90694920606013],[-77.10800014615538,38.90701169839312],[-77.10792600442154,38.90707062319827],[-77.10785170460298,38.90712598047556],[-77.1077772466997,38.90717777022502],[-77.1077026307117,38.90722599244664],[-77.10763259918059,38.90727003212207],[-77.10756715210636,38.90730988925132],[-77.10750628948904,38.9073455638344],[-77.1074500113286,38.90737705587129],[-77.10739831762506,38.90740436536201],[-77.10735120837839,38.90742749230655],[-77.10730868358863,38.90744643670492],[-77.10727074325574,38.9074611985571],[-77.10723612270199,38.90747694452681],[-77.10720482192737,38.90749367461402],[-77.10717684093187,38.90751138881876],[-77.1071521797155,38.90753008714101],[-77.10713083827825,38.90754976958078],[-77.10711281662013,38.90757043613807],[-77.10709811474113,38.90759208681287],[-77.10708673264126,38.9076147216052],[-77.10707708947332,38.90764276902411],[-77.1070691852373,38.90767622906962],[-77.10706301993321,38.90771510174173],[-77.10705859356104,38.90775938704043],[-77.10705590612079,38.90780908496573],[-77.10705495761248,38.90786419551762],[-77.10705574803607,38.90792471869611],[-77.10705827739159,38.90799065450118],[-77.10706159717071,38.90805745133702],[-77.10706570737345,38.90812510920361],[-77.10707060799979,38.90819362810096],[-77.10707629904971,38.90826300802907],[-77.10708278052326,38.90833324898793],[-77.10709005242039,38.90840435097755],[-77.10709811474113,38.90847631399792],[-77.10710696748546,38.90854913804904],[-77.10711250045068,38.90861962479337],[-77.10711471363676,38.90868777423091],[-77.10711360704373,38.90875358636166],[-77.10710918067156,38.90881706118559],[-77.10710143452026,38.90887819870274],[-77.10709036858984,38.90893699891308],[-77.10707598288027,38.90899346181664],[-77.10705827739162,38.90904758741339],[-77.10704041381821,38.90909703851844],[-77.10702239216009,38.90914181513178],[-77.10700421241725,38.90918191725342],[-77.10698587458967,38.90921734488334],[-77.1069673786774,38.90924809802158],[-77.1069487246804,38.90927417666809],[-77.10692991259867,38.90929558082291],[-77.10691094243225,38.90931231048602],[-77.106889600995,38.90933211543794],[-77.10686588828695,38.90935499567868],[-77.1068398043081,38.90938095120823],[-77.10681134905843,38.9094099820266],[-77.10678052253796,38.90944208813378],[-77.10674732474669,38.90947726952977],[-77.10671175568461,38.90951552621459],[-77.10667381535173,38.90955685818821],[-77.1066355588494,38.9095976980938],[-77.10659698617764,38.90963804593134],[-77.10655809733643,38.90967790170083],[-77.1065188923258,38.90971726540229],[-77.10647937114571,38.90975613703569],[-77.10643953379618,38.90979451660106],[-77.10639938027721,38.90983240409839],[-77.10635891058881,38.90986979952767],[-77.10631907323929,38.90990461171369],[-77.10627986822863,38.90993684065643],[-77.10624129555687,38.9099664863559],[-77.106203355224,38.9099935488121],[-77.10616604723,38.91001802802504],[-77.10612937157487,38.9100399239947],[-77.10609332825864,38.9100592367211],[-77.10605791728129,38.91007596620423],[-77.10602345481226,38.91009244966227],[-77.10598994085154,38.91010868709522],[-77.10595737539916,38.9101246785031],[-77.10592575845509,38.91014042388588],[-77.10589509001935,38.91015592324358],[-77.10586537009192,38.9101711765762],[-77.10583659867282,38.91018618388372],[-77.10580877576203,38.91020094516618],[-77.10577953008877,38.9102253012137],[-77.10574886165303,38.91025925202629],[-77.10571677045479,38.91030279760395],[-77.10568325649409,38.91035593794669],[-77.10564831977089,38.9104186730545],[-77.1056119602852,38.91049100292739],[-77.10557417803705,38.91057292756534],[-77.1055349730264,38.91066444696838],[-77.10549671652407,38.91075202998891],[-77.10545940853008,38.91083567662695],[-77.10542304904439,38.91091538688251],[-77.10538763806704,38.91099116075556],[-77.105353175598,38.91106299824613],[-77.1053196616373,38.91113089935421],[-77.10528709618491,38.91119486407978],[-77.10525547924084,38.91125489242287],[-77.10522465272038,38.91131147649561],[-77.1051946166235,38.91136461629799],[-77.10516537095025,38.91141431183001],[-77.1051369157006,38.91146056309168],[-77.10510925087453,38.911503370083],[-77.10508237647208,38.91154273280395],[-77.10505629249322,38.91157865125456],[-77.10503099893796,38.91161112543481],[-77.10500159517997,38.91165036499664],[-77.10496808121927,38.91169636994005],[-77.10493045705583,38.91174914026504],[-77.10488872268965,38.91180867597163],[-77.10484287812076,38.91187497705978],[-77.10479292334912,38.91194804352951],[-77.10473885837477,38.91202787538083],[-77.10468068319769,38.91211447261374],[-77.1046272505622,38.91219344336556],[-77.10457856046835,38.91226478763632],[-77.1045346129161,38.912328505426],[-77.10449540790543,38.91238459673461],[-77.1044609454364,38.91243306156215],[-77.10443122550899,38.91247389990863],[-77.10440624812318,38.91250711177402],[-77.10438601327897,38.91253269715835],[-77.1043659365195,38.91255815952732],[-77.10434601784473,38.91258349888095],[-77.10432625725468,38.91260871521921],[-77.10430665474937,38.91263380854213],[-77.10428721032875,38.91265877884968],[-77.10426792399288,38.91268362614189],[-77.10424879574171,38.91270835041875],[-77.10422982557527,38.91273295168025],[-77.10416342999272,38.91281905609551],[-77.10405624855235,38.91267649156077],[-77.10401735971115,38.91263307025944],[-77.10397562534496,38.91257993144913],[-77.10393057119967,38.91252494748335],[-77.10388219727524,38.91246811836209],[-77.1038305035717,38.91240944408536],[-77.10377549008902,38.91234892465314],[-77.10371715682723,38.91228656006545],[-77.10365550378629,38.9122223503223],[-77.10359053096623,38.91215629542365],[-77.10352223836703,38.91208839536954],[-77.10345236492064,38.91202098728538],[-77.10338091062705,38.91195407117118],[-77.10330787548625,38.91188764702694],[-77.10323325949825,38.91182171485267],[-77.10315706266304,38.91175627464835],[-77.10307928498064,38.911691326414],[-77.10299992645103,38.9116268701496],[-77.10291898707422,38.91156290585518],[-77.10283583451132,38.91149808043564],[-77.10275046876234,38.91143239389101],[-77.10266288982727,38.91136584622128],[-77.10257309770611,38.91129843742645],[-77.10248109239888,38.91123016750652],[-77.10238687390556,38.91116103646149],[-77.10229044222615,38.91109104429136],[-77.10219179736066,38.91102019099613],[-77.1020964722743,38.91095118278864],[-77.10200446696706,38.91088401966888],[-77.10191578143895,38.91081870163687],[-77.10183041568996,38.91075522869259],[-77.1017483697201,38.91069360083605],[-77.10166964352938,38.91063381806724],[-77.10159423711777,38.91057588038618],[-77.1015221504853,38.91051978779284],[-77.10144785066673,38.9104617269736],[-77.10137133766209,38.91040169792845],[-77.10129261147137,38.9103397006574],[-77.10121167209454,38.91027573516044],[-77.10112851953164,38.91020980143757],[-77.10104315378265,38.91014189948879],[-77.10095557484759,38.91007202931411],[-77.10086578272643,38.91000019091351],[-77.10077788762192,38.90992909051469],[-77.10069188953406,38.90985872811764],[-77.10060778846284,38.90978910372237],[-77.10052558440826,38.90972021732887],[-77.10044527737034,38.90965206893714],[-77.10036686734904,38.90958465854719],[-77.1002903543444,38.909517986159],[-77.1002157383564,38.9094520517726],[-77.10014238704615,38.90938747047026],[-77.10007030041368,38.909324242252],[-77.09999947845895,38.90926236711783],[-77.09992992118202,38.90920184506772],[-77.09986162858283,38.90914267610169],[-77.0997946006614,38.90908486021975],[-77.09972883741773,38.90902839742188],[-77.09966433885185,38.90897328770809],[-77.09959825943875,38.90891657876965],[-77.09953059917842,38.90885827060659],[-77.09946135807093,38.90879836321888],[-77.0993905361162,38.90873685660652],[-77.0993181333143,38.90867375076954],[-77.09924414966517,38.90860904570792],[-77.09916858516884,38.90854274142166],[-77.09909143982532,38.90847483791076],[-77.09901476873594,38.908408533529],[-77.09893857190075,38.90834382827637],[-77.0988628493197,38.90828072215288],[-77.09878760099282,38.90821921515853],[-77.09878171224709,38.9082144971838],[-77.09884550318984,38.90816567175322],[-77.09901290067278,38.90803920469784],[-77.09912463442959,38.9079570010875],[-77.09921788132846,38.90789060583882],[-77.09929264136939,38.90784001895177],[-77.09936130684176,38.90779575539857],[-77.09942387774558,38.90775781517921],[-77.09948035408084,38.90772619829369],[-77.09953073584755,38.90770090474203],[-77.09958233652796,38.90767687586361],[-77.0996351561221,38.90765411165846],[-77.09968919462995,38.90763261212656],[-77.0997444520515,38.90761237726792],[-77.09980092838677,38.90759340708254],[-77.09985862363573,38.90757570157042],[-77.09991753779842,38.90755926073155],[-77.09997767087482,38.90754408456594],[-77.10004003862636,38.90753143776163],[-77.10010464105301,38.90752132031861],[-77.10017147815482,38.90751373223689],[-77.10024054993177,38.90750867351646],[-77.10031185638385,38.90750614415732],[-77.10038539751105,38.90750614415949],[-77.1004611733134,38.90750867352295],[-77.1005391837909,38.90751373224771],[-77.10061374067953,38.90751847480203],[-77.10068484397934,38.90752290118591],[-77.10075249369028,38.90752701139937],[-77.10081668981238,38.9075308054424],[-77.10087743234563,38.90753428331499],[-77.10093472129003,38.90753744501716],[-77.10098855664558,38.90754029054888],[-77.1010389384123,38.90754281991016],[-77.10108891387443,38.90754424267573],[-77.101138483032,38.90754455884554],[-77.101187645885,38.90754376841964],[-77.10123640243341,38.90754187139799],[-77.10128475267729,38.9075388677806],[-77.10133269661657,38.90753475756749],[-77.1013802342513,38.90752954075863],[-77.10142736558146,38.90752321735405],[-77.1014704338659,38.90751404841014],[-77.10150943910465,38.90750203392691],[-77.10154438129769,38.90748717390436],[-77.10157526044503,38.90746946834248],[-77.10160207654667,38.90744891724129],[-77.1016248296026,38.90742552060077],[-77.10164351961282,38.90739927842094],[-77.10165814657736,38.9073701907018],[-77.10166972625761,38.907340628712],[-77.10167825865358,38.90731059245156],[-77.10168374376528,38.90728008192048],[-77.10168618159271,38.90724909711875],[-77.10168557213585,38.90721763804638],[-77.10168191539472,38.90718570470337],[-77.1016752113693,38.90715329708972],[-77.10166546005962,38.90712041520543],[-77.10165591190221,38.90708468773876],[-77.10164656689709,38.90704611468971],[-77.10163742504426,38.90700469605829],[-77.10162848634371,38.90696043184448],[-77.10161975079545,38.90691332204831],[-77.10161121839948,38.90686336666975],[-77.10160288915579,38.90681056570883],[-77.10159476306438,38.90675491916552],[-77.10158805903897,38.90670101154807],[-77.10158277707956,38.90664884285648],[-77.10157891718615,38.90659841309073],[-77.10157647935871,38.90654972225083],[-77.10157546359729,38.90650277033679],[-77.10157586990186,38.90645755734861],[-77.10157769827242,38.90641408328628],[-77.10158094870899,38.90637234814979],[-77.1015833865364,38.90632982254473],[-77.10158501175468,38.90628650647108],[-77.10158582436382,38.90624239992885],[-77.10158582436382,38.90619750291803],[-77.10158501175468,38.90615181543863],[-77.1015833865364,38.90610533749064],[-77.10158094870899,38.90605806907407],[-77.10157769827242,38.90601001018891],[-77.101576682511,38.90596116082233],[-77.10157790142472,38.90591152097431],[-77.10158135501356,38.90586109064488],[-77.10158704327753,38.90580986983402],[-77.10159496621667,38.90575785854173],[-77.10160512383092,38.90570505676801],[-77.10161751612031,38.90565146451287],[-77.10163214308486,38.90559708177629],[-77.10164819211538,38.90554633508059],[-77.1016656632119,38.90549922442575],[-77.10168455637442,38.90545574981179],[-77.10170487160293,38.90541591123869],[-77.10172660889744,38.90537970870646],[-77.10174976825795,38.90534714221509],[-77.10177434968443,38.90531821176459],[-77.10180035317694,38.90529291735496],[-77.101826762974,38.90526714866401],[-77.10185357907562,38.90524090569173],[-77.10188080148183,38.90521418843813],[-77.10190843019262,38.90518699690321],[-77.10193646520796,38.90515933108696],[-77.10196490652788,38.90513119098941],[-77.10199375415236,38.90510257661052],[-77.10202300808142,38.90507348795032],[-77.10205348092418,38.9050440830955],[-77.10208517268066,38.90501436204607],[-77.10211808335086,38.90498432480205],[-77.10215221293475,38.90495397136341],[-77.10218756143237,38.90492330173017],[-77.10222412884369,38.90489231590232],[-77.10226191516873,38.90486101387986],[-77.10230092040746,38.90482939566279],[-77.10230290702732,38.90482765543577]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00004,"geom:area_square_m":387957.144499,"geom:bbox":"-77.1084695717,38.9045065911,-77.0987817122,38.9128190561","geom:latitude":38.908146,"geom:longitude":-77.103833,"iso:country":"US","lbl:latitude":38.907933,"lbl:longitude":-77.10431,"lbl:max_zoom":18,"mps:latitude":38.907933,"mps:longitude":-77.10431,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:afr_x_preferred":["Dover"],"name:als_x_preferred":["Dover"],"name:ang_x_preferred":["Dofras"],"name:ara_x_preferred":["دوفر"],"name:azb_x_preferred":["دوور"],"name:aze_x_preferred":["Duvr"],"name:bel_x_preferred":["Дуўр"],"name:bre_x_preferred":["Dover"],"name:bul_x_preferred":["Дувър"],"name:cat_x_preferred":["Dover"],"name:ces_x_preferred":["Dover"],"name:che_x_preferred":["Дувр"],"name:cym_x_preferred":["Dover"],"name:dan_x_preferred":["Dover"],"name:deu_x_preferred":["Dover"],"name:ell_x_preferred":["Ντόβερ"],"name:epo_x_preferred":["Dovro"],"name:est_x_preferred":["Dover"],"name:eus_x_preferred":["Dover"],"name:fas_x_preferred":["دوور"],"name:fin_x_preferred":["Dover"],"name:fra_x_preferred":["Douvres"],"name:frr_x_preferred":["Dover"],"name:fry_x_preferred":["Dover"],"name:gle_x_preferred":["Dover"],"name:glg_x_preferred":["Dover"],"name:heb_x_preferred":["דובר"],"name:hun_x_preferred":["Dover"],"name:hye_x_preferred":["Դուվր"],"name:ido_x_preferred":["Dover"],"name:ind_x_preferred":["Dover"],"name:isl_x_preferred":["Dover"],"name:ita_x_preferred":["Dover"],"name:jpn_x_preferred":["ドーバー"],"name:kat_x_preferred":["დუვრი"],"name:lat_x_preferred":["Dubris"],"name:lav_x_preferred":["Duvra"],"name:lit_x_preferred":["Doveris"],"name:mar_x_preferred":["डोव्हर"],"name:nld_x_preferred":["Dover"],"name:nno_x_preferred":["Dover"],"name:nor_x_preferred":["Dover"],"name:pol_x_preferred":["Dover"],"name:por_x_preferred":["Dover"],"name:ron_x_preferred":["Dover"],"name:rus_x_preferred":["Дувр"],"name:sco_x_preferred":["Dover"],"name:slk_x_preferred":["Dover"],"name:slv_x_preferred":["Dover"],"name:spa_x_preferred":["Dover"],"name:srd_x_preferred":["Dover"],"name:srp_x_preferred":["Довер"],"name:swe_x_preferred":["Dover"],"name:szl_x_preferred":["Dover"],"name:tur_x_preferred":["Dover"],"name:ukr_x_preferred":["Дувр"],"name:urd_x_preferred":["ڈوور"],"name:vol_x_preferred":["Dover"],"name:war_x_preferred":["Dover"],"name:zho_x_preferred":["多佛尔"],"reversegeo:latitude":38.907933,"reversegeo:longitude":-77.10431,"src:geom":"mz","wof:belongsto":[420546579,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"83202e21dfc1bf2e047800ac20ff2644","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726441,"neighbourhood_id":420546579,"region_id":85688747}],"wof:id":1108726441,"wof:lastmodified":1566623890,"wof:name":"Dover","wof:parent_id":420546579,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420785093],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726789.geojson b/fixtures/microhoods/1108726789.geojson new file mode 100644 index 0000000..b2de953 --- /dev/null +++ b/fixtures/microhoods/1108726789.geojson @@ -0,0 +1 @@ +{"id":1108726789,"type":"Feature","bbox":[-77.042529,38.86365,-77.037733,38.86756687488033],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.042452,38.863945],[-77.04215022694083,38.86410724272824],[-77.04197691559611,38.86422048065269],[-77.0418314749461,38.86433879468277],[-77.04168037465088,38.86448021178827],[-77.04152361471046,38.8646447319692],[-77.04137171607381,38.86480976983481],[-77.04122467874095,38.8649753253851],[-77.04108250271184,38.86514139862007],[-77.04094518798651,38.86530798953972],[-77.04081905004115,38.86546401287056],[-77.04070408887576,38.8656094686126],[-77.04060030449033,38.86574435676582],[-77.04050769688487,38.86586867733024],[-77.04042307269367,38.86599486246578],[-77.04034643191675,38.86612291217241],[-77.04027777455408,38.86625282645017],[-77.04021710060567,38.86638460529905],[-77.04016201504726,38.86650954639265],[-77.04011251787882,38.86662764973099],[-77.04006860910037,38.86673891531407],[-77.0400302887119,38.86684334314188],[-77.03999755671343,38.86695709463754],[-77.03997041310492,38.86708016980104],[-77.03994885788642,38.86721256863238],[-77.0399328910579,38.86735429113156],[-77.03990894081511,38.86756687488033],[-77.038875088668,38.86755817265509],[-77.03835049336872,38.86755375698843],[-77.038349,38.867551],[-77.038337,38.867527],[-77.038291,38.867442],[-77.038282,38.867419],[-77.038274,38.867397],[-77.038267,38.867374],[-77.038262,38.867351],[-77.038256,38.867322],[-77.038249,38.867296],[-77.038239,38.867272],[-77.038228,38.867247],[-77.038215,38.867223],[-77.038202,38.867199],[-77.038185,38.867162],[-77.038175,38.867139],[-77.038165,38.867115],[-77.038155,38.867091],[-77.038147,38.867067],[-77.03814,38.867043],[-77.038135,38.86701],[-77.038127,38.866975],[-77.038115,38.866941],[-77.0381,38.866907],[-77.038083,38.866873],[-77.038067,38.866839],[-77.038052,38.866804],[-77.038041,38.866776],[-77.038029,38.866749],[-77.038017,38.866721],[-77.038007,38.866693],[-77.037998,38.866664],[-77.037991,38.86661],[-77.037985,38.866577],[-77.037975,38.866545],[-77.037964,38.866513],[-77.037953,38.86648],[-77.037943,38.866448],[-77.037932,38.8664],[-77.037925,38.866363],[-77.037916,38.866326],[-77.037907,38.866289],[-77.037898,38.866252],[-77.03789,38.866215],[-77.037884,38.866178],[-77.037879,38.866134],[-77.037878,38.866108],[-77.037877,38.866082],[-77.037875,38.866056],[-77.037873,38.86603],[-77.037866,38.865987],[-77.037862,38.865968],[-77.037859,38.865949],[-77.037855,38.865929],[-77.037851,38.86591],[-77.037847,38.865891],[-77.037841,38.865858],[-77.037837,38.865828],[-77.037837,38.865797],[-77.037838,38.865767],[-77.037837,38.865737],[-77.03783,38.865708],[-77.037811,38.865676],[-77.037797,38.865651],[-77.037786,38.865596],[-77.037785,38.865567],[-77.037785,38.865538],[-77.037783,38.865504],[-77.03778,38.865477],[-77.037777,38.86545],[-77.037772,38.865423],[-77.037768,38.865396],[-77.037764,38.865368],[-77.037758,38.865331],[-77.037753,38.865294],[-77.037748,38.865257],[-77.037744,38.865221],[-77.03774,38.865184],[-77.037737,38.865147],[-77.037735,38.865106],[-77.037735,38.865087],[-77.037734,38.865066],[-77.037734,38.865045],[-77.037738,38.865023],[-77.037742,38.864965],[-77.037738,38.864944],[-77.037735,38.864919],[-77.037733,38.864895],[-77.037734,38.864872],[-77.037734,38.86485],[-77.037735,38.864828],[-77.037739,38.864781],[-77.037746,38.864749],[-77.037755,38.864718],[-77.037763,38.864687],[-77.037776,38.864644],[-77.037788,38.864614],[-77.037796,38.864597],[-77.037803,38.864579],[-77.037812,38.864561],[-77.037821,38.864544],[-77.037832,38.864512],[-77.037845,38.86448],[-77.03786,38.864447],[-77.037872,38.864413],[-77.037879,38.864395],[-77.037884,38.864375],[-77.03789,38.864357],[-77.037897,38.864339],[-77.037906,38.864322],[-77.037915,38.864303],[-77.037924,38.864284],[-77.037935,38.864267],[-77.037947,38.864251],[-77.037962,38.864235],[-77.037991,38.864205],[-77.038009,38.864191],[-77.038026,38.864177],[-77.038043,38.864163],[-77.038071,38.864138],[-77.038094,38.864112],[-77.03811,38.864099],[-77.03813,38.864087],[-77.03817,38.864067],[-77.03819,38.864057],[-77.03821,38.864047],[-77.038252,38.864028],[-77.038274,38.864021],[-77.038321,38.864013],[-77.038368,38.864012],[-77.038412,38.864007],[-77.038455,38.863997],[-77.038497,38.863994],[-77.038539,38.864],[-77.038581,38.864],[-77.038616,38.863985],[-77.038654,38.86397],[-77.038676,38.863964],[-77.038698,38.863957],[-77.03872,38.863951],[-77.038746,38.863947],[-77.03877,38.863944],[-77.038793,38.863941],[-77.038816,38.863938],[-77.038839,38.863935],[-77.038884,38.863924],[-77.038926,38.863919],[-77.038969,38.863916],[-77.03904,38.863912],[-77.039065,38.863911],[-77.039089,38.863912],[-77.039114,38.86391],[-77.039139,38.863908],[-77.039164,38.863906],[-77.039193,38.863904],[-77.039219,38.863902],[-77.039247,38.863899],[-77.03927,38.863897],[-77.039294,38.863895],[-77.03932,38.863893],[-77.039345,38.86389],[-77.03937,38.863888],[-77.039394,38.863887],[-77.039421,38.863889],[-77.039465,38.86389],[-77.039505,38.863882],[-77.039549,38.863874],[-77.039573,38.863872],[-77.039619,38.863871],[-77.039644,38.863872],[-77.039686,38.863869],[-77.039743,38.86385],[-77.039773,38.863841],[-77.039812,38.863829],[-77.039852,38.863819],[-77.039889,38.86381],[-77.039929,38.863802],[-77.03997,38.863793],[-77.040038,38.86378],[-77.040062,38.863775],[-77.040086,38.863771],[-77.040112,38.863766],[-77.040137,38.863762],[-77.040178,38.86375],[-77.040214,38.863732],[-77.040236,38.863726],[-77.040331,38.863709],[-77.040357,38.863705],[-77.040386,38.863701],[-77.040416,38.863696],[-77.040447,38.863694],[-77.040477,38.863692],[-77.040505,38.863691],[-77.040533,38.86369],[-77.040561,38.863688],[-77.040589,38.863686],[-77.040617,38.863683],[-77.040646,38.86368],[-77.040675,38.863677],[-77.040704,38.863672],[-77.040733,38.863668],[-77.040761,38.863664],[-77.040787,38.86366],[-77.040828,38.863662],[-77.040863,38.863664],[-77.040896,38.863655],[-77.040932,38.86365],[-77.040974,38.863675],[-77.040994,38.863736],[-77.041031,38.863736],[-77.041067,38.863736],[-77.041099,38.863735],[-77.041135,38.863735],[-77.041165,38.863736],[-77.041196,38.863735],[-77.041225,38.863736],[-77.041287,38.863708],[-77.041296,38.863691],[-77.041319,38.863682],[-77.041351,38.863689],[-77.041385,38.863687],[-77.04142,38.86368],[-77.041462,38.863675],[-77.041507,38.863675],[-77.041548,38.863678],[-77.041588,38.863673],[-77.041627,38.863669],[-77.041669,38.863667],[-77.041693,38.863669],[-77.041719,38.863672],[-77.041747,38.863674],[-77.041775,38.863677],[-77.041802,38.863682],[-77.041828,38.863687],[-77.041863,38.863698],[-77.0419,38.8637],[-77.041933,38.863712],[-77.041962,38.863726],[-77.041993,38.863736],[-77.04203,38.863745],[-77.042069,38.863753],[-77.042112,38.86376],[-77.042136,38.863761],[-77.042184,38.863754],[-77.042217,38.863741],[-77.04224,38.863727],[-77.042274,38.863724],[-77.042306,38.86372],[-77.042336,38.863711],[-77.042364,38.863698],[-77.042395,38.863689],[-77.042434,38.863686],[-77.042475,38.863683],[-77.042505,38.863684],[-77.042529,38.863701],[-77.042452,38.863945]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":104651.77509,"geom:bbox":"-77.042529,38.86365,-77.037733,38.8675668749","geom:latitude":38.865358,"geom:longitude":-77.039544,"iso:country":"US","lbl:latitude":38.910344,"lbl:longitude":-77.145508,"lbl:max_zoom":18,"mps:latitude":38.910344,"mps:longitude":-77.145508,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Gravelly Point"],"name:eng_x_variant":["Gravelly Point Park"],"name:pol_x_preferred":["Gravelly Point"],"reversegeo:latitude":38.910344,"reversegeo:longitude":-77.145508,"src:geom":"mz","wof:belongsto":[85876017,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"231e679c8e992c5fc3b135d2e27201f2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726789,"neighbourhood_id":85876017,"region_id":85688747}],"wof:id":1108726789,"wof:lastmodified":1566623916,"wof:name":"Gravelly Point","wof:parent_id":85876017,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726791.geojson b/fixtures/microhoods/1108726791.geojson new file mode 100644 index 0000000..152f8be --- /dev/null +++ b/fixtures/microhoods/1108726791.geojson @@ -0,0 +1 @@ +{"id":1108726791,"type":"Feature","bbox":[-77.07179122881169,38.88767613957687,-77.06618548574748,38.89198917740066],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.06794088664543,38.89040368664377],[-77.0679429725528,38.89021814247329],[-77.06793796900948,38.89011086635674],[-77.06792432298226,38.89002377076581],[-77.06790749288201,38.8899356129268],[-77.06788747870874,38.88984639283971],[-77.06786337072731,38.88976319149724],[-77.06783516893769,38.88968600889937],[-77.06780287333991,38.88961484504613],[-77.06776648393398,38.8895496999375],[-77.06770735114932,38.88946649810836],[-77.06762547498595,38.88936523955874],[-77.06752085544386,38.88924592428862],[-77.06739349252308,38.889108552298],[-77.06727522695377,38.88899065305868],[-77.06716605873594,38.88889222657068],[-77.0670659878696,38.88881327283397],[-77.06697501435474,38.88875379184858],[-77.06689404792652,38.8886978513646],[-77.06682308858493,38.88864545138203],[-77.06676213632998,38.88859659190088],[-77.06671119116166,38.88855127292114],[-77.06665660705275,38.88850099712735],[-77.06659838400324,38.88844576451949],[-77.06653652201314,38.88838557509757],[-77.06647102108244,38.88832042886159],[-77.06641552723838,38.88825811502559],[-77.06637004048093,38.88819863358957],[-77.06633456081015,38.88814198455353],[-77.06630908822598,38.88808816791748],[-77.06628634484727,38.88803930805584],[-77.066266330674,38.88799540496862],[-77.06624540676559,38.88794796127123],[-77.06618548574748,38.88782784361941],[-77.06621966975894,38.88786282033359],[-77.06625275106035,38.887892968971],[-77.06628472965173,38.88791828953164],[-77.06631560553303,38.88793878201549],[-77.06634537870431,38.88795444642257],[-77.06637404916555,38.88796528275287],[-77.06640161691672,38.88797129100639],[-77.06643097657174,38.88797676280862],[-77.06646212813057,38.88798169815955],[-77.06649507159322,38.88798609705917],[-77.06652980695971,38.88798995950749],[-77.06656633423002,38.88799328550451],[-77.06660465340416,38.88799607505023],[-77.06664476448212,38.88799832814465],[-77.06668666746393,38.88800004478777],[-77.06678356810932,38.88799704065359],[-77.06693546641833,38.88798931574215],[-77.06714236239092,38.88797687005341],[-77.06740425602712,38.88795970358739],[-77.06778138286325,38.88793331014719],[-77.06827374289932,38.8878976897328],[-77.06906204274429,38.88783932375356],[-77.07065553102521,38.88768030078995],[-77.0706966305324,38.8877011080175],[-77.07078551239346,38.88771047129292],[-77.07092217660842,38.88770839061622],[-77.07110662317727,38.88769486598738],[-77.07126834806735,38.88768498260455],[-77.07140735127865,38.88767874046771],[-77.07152363281118,38.88767613957687],[-77.07161719266495,38.88767717993203],[-77.07168803083994,38.88768186153317],[-77.07173614733615,38.88769018438031],[-77.07176154215361,38.88770214847344],[-77.07176421529228,38.88771775381257],[-77.07176683018758,38.88773324901875],[-77.07176938683955,38.88774863409199],[-77.07177188524813,38.8877639090323],[-77.07177432541334,38.88777907383968],[-77.07177698323417,38.88779596904856],[-77.07177985871058,38.88781459465895],[-77.07178377953953,38.88784047227421],[-77.07179122881169,38.88789016670439],[-77.07178171004242,38.88790868965238],[-77.07176832427315,38.88793462172684],[-77.07175107150385,38.88796796292775],[-77.07172995173457,38.88800871325512],[-77.07170496496525,38.88805687270894],[-77.07167611119593,38.88811244128922],[-77.0716433904266,38.88817541899596],[-77.07160680265724,38.88824580582915],[-77.0715663478879,38.8883236017888],[-77.07153035504163,38.88840139766325],[-77.07149882411844,38.8884791934525],[-77.07147175511835,38.88855698915656],[-77.07144914804137,38.88863478477542],[-77.07143100288746,38.88871258030908],[-77.07141731965663,38.88879037575754],[-77.07140809834891,38.88886817112081],[-77.07140333896429,38.88894596639888],[-77.07139976942581,38.88902260393853],[-77.07139738973349,38.88909808373975],[-77.07139619988733,38.88917240580258],[-77.07139619988733,38.88924557012697],[-77.07139738973349,38.88931757671296],[-77.07139976942581,38.88938842556053],[-77.07140333896429,38.88945811666968],[-77.07140809834891,38.88952665004042],[-77.07141285773355,38.88959726710387],[-77.07141761711819,38.88966996786004],[-77.07142237650282,38.88974475230894],[-77.07142713588743,38.88982162045055],[-77.07143189527207,38.88990057228487],[-77.07143665465671,38.88998160781193],[-77.07144141404135,38.89006472703169],[-77.07144617342595,38.89014992994417],[-77.07145063534905,38.89023490122811],[-77.07145479981061,38.89031964088351],[-77.07145866681063,38.89040414891036],[-77.07146223634908,38.89048842530866],[-77.07146550842602,38.89057247007842],[-77.07146848304141,38.89065628321963],[-77.07147116019527,38.8907398647323],[-77.07147353988759,38.89082321461642],[-77.07147532465683,38.89090980573674],[-77.07147651450299,38.89099963809326],[-77.07147710942607,38.89109271168599],[-77.07147710942607,38.89118902651492],[-77.07147651450299,38.89128858258004],[-77.07147532465683,38.89139137988136],[-77.07147353988759,38.89149741841889],[-77.07147116019527,38.89160669819262],[-77.07146283127217,38.89198917740066],[-77.07110468757871,38.89191786807483],[-77.07100236080915,38.89189749398174],[-77.07090509088576,38.89187758293187],[-77.07081287780852,38.89185813492522],[-77.07072572157747,38.8918391499618],[-77.07064362219262,38.89182062804159],[-77.0705665796539,38.89180256916461],[-77.07049459396137,38.89178497333086],[-77.07042766511499,38.89176784054033],[-77.07036579311479,38.89175117079303],[-77.07029975665304,38.89173010205961],[-77.07022955572972,38.89170463434007],[-77.07015519034488,38.89167476763443],[-77.07007666049847,38.89164050194267],[-77.06999396619051,38.89160183726479],[-77.06990710742102,38.8915587736008],[-77.06981608418994,38.89151131095069],[-77.06972089649733,38.89145944931448],[-77.06963106311241,38.8914103659632],[-77.06954658403524,38.89136406089686],[-77.06946745926575,38.89132053411546],[-77.06939368880396,38.891279785619],[-77.06932527264989,38.89124181540748],[-77.06926221080354,38.89120662348089],[-77.0692045032649,38.89117420983925],[-77.06915215003394,38.89114457448254],[-77.06909801203378,38.89111331842061],[-77.06904208926436,38.89108044165343],[-77.06898438172571,38.89104594418103],[-77.06892488941783,38.8910098260034],[-77.0688636123407,38.89097208712053],[-77.06880055049436,38.89093272753243],[-77.06873570387876,38.8908917472391],[-77.06866907249395,38.89084914624054],[-77.06860303603219,38.8908072398027],[-77.06853759449352,38.8907660279256],[-77.06847274787792,38.89072551060923],[-77.06840849618541,38.89068568785358],[-77.06834483941597,38.89064655965866],[-77.06828177756961,38.89060812602449],[-77.06821931064633,38.89057038695103],[-77.06815743864614,38.8905333424383],[-77.06794088664543,38.89040368664377]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":137195.505863,"geom:bbox":"-77.0717912288,38.8876761396,-77.0661854857,38.8919891774","geom:latitude":38.889471,"geom:longitude":-77.0696,"iso:country":"US","lbl:latitude":38.878055,"lbl:longitude":-77.055401,"lbl:max_zoom":18,"mps:latitude":38.878055,"mps:longitude":-77.055401,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["US Marine Corps War Memorial","Marine Corps Memorial"],"reversegeo:latitude":38.878055,"reversegeo:longitude":-77.055401,"src:geom":"mz","wof:belongsto":[1108726275,102191575,85633793,101729469,102085953,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7943e2371812f748fceddc1714aa85a9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726791,"neighbourhood_id":1108726275,"region_id":85688747}],"wof:id":1108726791,"wof:lastmodified":1566623918,"wof:name":"United States Marine Corps War Memorial","wof:parent_id":1108726275,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726793.geojson b/fixtures/microhoods/1108726793.geojson new file mode 100644 index 0000000..c27e344 --- /dev/null +++ b/fixtures/microhoods/1108726793.geojson @@ -0,0 +1 @@ +{"id":1108726793,"type":"Feature","bbox":[-77.08403713191575,38.88641871584444,-77.06780732641424,38.89508550545247],"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.08403713191575,38.8917354097252],[-77.08351106846251,38.89192373260843],[-77.0832321969593,38.89202551963241],[-77.08302516292173,38.89210354509153],[-77.08283151485494,38.89217873375061],[-77.08265125275899,38.89225108560964],[-77.08246489280224,38.89232757559022],[-77.0822724349847,38.89240820369236],[-77.08207387930636,38.89249296991606],[-77.08186922576725,38.8925818742613],[-77.08166635699736,38.89266985242186],[-77.08146527299672,38.89275690439774],[-77.08126597376531,38.89284303018893],[-77.08106845930313,38.89292822979542],[-77.08087272961019,38.89301250321723],[-77.08067878468648,38.89309585045435],[-77.08048662453201,38.89317827150678],[-77.08029624914678,38.89325976637453],[-77.08011182299234,38.89333709384712],[-77.07993334606869,38.89341025392459],[-77.07976081837582,38.89347924660689],[-77.07959423991375,38.89354407189406],[-77.07943361068246,38.89360472978608],[-77.07927893068195,38.89366122028296],[-77.07913019991224,38.89371354338469],[-77.07898741837333,38.89376169909128],[-77.07884880129596,38.89380846566873],[-77.07871434868014,38.89385384311704],[-77.07858406052587,38.89389783143621],[-77.07845793683316,38.89394043062624],[-77.078335977602,38.89398164068714],[-77.07821818283239,38.89402146161889],[-77.07810455252434,38.89405989342151],[-77.07799508667783,38.89409693609498],[-77.0778823487544,38.89413212662551],[-77.07776633875402,38.8941654650131],[-77.07764705667671,38.89419695125774],[-77.07752450252248,38.89422658535942],[-77.0773986762913,38.89425436731816],[-77.07726957798319,38.89428029713395],[-77.07713720759814,38.89430437480679],[-77.07700156513617,38.8943266003367],[-77.07681446182788,38.89435391917942],[-77.07657589767325,38.89438633133498],[-77.07628587267232,38.89442383680337],[-77.07594438682507,38.89446643558458],[-77.07555144013149,38.89451412767863],[-77.0751070325916,38.89456691308552],[-77.07461116420538,38.89462479180523],[-77.07406383497286,38.89468776383777],[-77.07357153612512,38.89474517950387],[-77.07313426766217,38.89479703880353],[-77.07275202958402,38.89484334173676],[-77.07242482189065,38.89488408830355],[-77.07215264458209,38.89491927850389],[-77.07193549765832,38.89494891233781],[-77.07177338111933,38.89497298980528],[-77.07166629496514,38.89499151090631],[-77.07156515804174,38.89500841141006],[-77.07146997034911,38.89502369131653],[-77.07138073188729,38.89503735062571],[-77.07129744265626,38.89504938933763],[-77.07122010265601,38.89505980745225],[-77.07114871188654,38.89506860496959],[-77.07108327034787,38.89507578188964],[-77.07102377803999,38.89508133821241],[-77.07096190603978,38.89508457940002],[-77.07089765434728,38.89508550545247],[-77.07083102296244,38.89508411636974],[-77.0707620118853,38.89508041215186],[-77.07069062111583,38.8950743927988],[-77.07061685065405,38.89506605831059],[-77.07054070049996,38.8950554086872],[-77.07046217065356,38.89504244392865],[-77.07038364080715,38.89502832159687],[-77.07030511096075,38.89501304169184],[-77.07022658111434,38.89499660421359],[-77.07014805126794,38.89497900916211],[-77.07006952142153,38.89496025653739],[-77.06999099157512,38.89494034633942],[-77.06991246172872,38.89491927856824],[-77.06983393188231,38.89489705322381],[-77.06975688934361,38.89487274423661],[-77.06968133411259,38.89484635160664],[-77.06960726618928,38.89481787533389],[-77.06953468557366,38.89478731541837],[-77.06946359226575,38.89475467186006],[-77.06939398626551,38.89471994465898],[-77.06932586757299,38.89468313381512],[-77.06925923618816,38.8946442393285],[-77.0691917124187,38.89460349268843],[-77.06912329626465,38.89456089389495],[-77.06905398772597,38.89451644294803],[-77.06898378680265,38.89447013984768],[-77.06891269349472,38.89442198459392],[-77.0688407078022,38.89437197718671],[-77.06876782972503,38.89432011762608],[-77.06869405926325,38.89426640591201],[-77.06862534564765,38.89421315719346],[-77.06856168887822,38.89416037147041],[-77.06850308895494,38.89410804874285],[-77.06844954587785,38.8940561890108],[-77.06840105964692,38.89400479227426],[-77.06835763026217,38.89395385853322],[-77.06831925772359,38.89390338778768],[-77.06828594203117,38.89385338003764],[-77.06825262633876,38.89380360377169],[-77.06821931064633,38.89375405898982],[-77.06818599495392,38.89370474569203],[-77.0681526792615,38.89365566387832],[-77.0681193635691,38.89360681354869],[-77.06808604787668,38.89355819470315],[-77.06805273218427,38.89350980734169],[-77.06801941649184,38.89346165146432],[-77.06798848049175,38.89340863361262],[-77.06795992418395,38.89335075378659],[-77.06793374756849,38.89328801198624],[-77.06790995064534,38.89322040821156],[-77.0678885334145,38.89314794246256],[-77.06786949587597,38.89307061473923],[-77.06785283802976,38.89298842504159],[-77.06783855987587,38.89290137336962],[-77.06782695887583,38.89281779444266],[-77.06781803502965,38.89273768826071],[-77.06781178833731,38.89266105482377],[-77.06780821879886,38.89258789413185],[-77.06780732641424,38.89251820618494],[-77.06780911118346,38.89245199098303],[-77.06781357310655,38.89238924852614],[-77.0678207121835,38.89232997881427],[-77.06782725633737,38.89226908837934],[-77.06783320556815,38.89220657722136],[-77.06783855987587,38.89214244534031],[-77.06784331926049,38.89207669273622],[-77.06784748372205,38.89200931940907],[-77.06785105326053,38.89194032535886],[-77.06785402787592,38.8918697105856],[-77.06785640756823,38.89179747508928],[-77.06785938218363,38.89172570257311],[-77.0678629517221,38.89165439303709],[-77.06786711618366,38.89158354648121],[-77.06787187556827,38.89151316290547],[-77.06787722987599,38.89144324230988],[-77.06788317910679,38.89137378469443],[-77.06788972326066,38.89130479005912],[-77.06789686233759,38.89123625840398],[-77.06790340649147,38.89116703209685],[-77.06790935572226,38.89109711113776],[-77.06791471002998,38.8910264955267],[-77.06791946941459,38.89095518526366],[-77.06792363387615,38.89088318034867],[-77.06792720341463,38.89081048078172],[-77.06793017803002,38.89073708656279],[-77.06793255772232,38.89066299769189],[-77.06794088664543,38.89040368664377],[-77.06815743864614,38.8905333424383],[-77.06821931064633,38.89057038695103],[-77.06828177756961,38.89060812602449],[-77.06834483941597,38.89064655965866],[-77.06840849618541,38.89068568785358],[-77.06847274787792,38.89072551060923],[-77.06853759449352,38.8907660279256],[-77.06860303603219,38.8908072398027],[-77.06866907249395,38.89084914624054],[-77.06873570387876,38.8908917472391],[-77.06880055049436,38.89093272753243],[-77.0688636123407,38.89097208712053],[-77.06892488941783,38.8910098260034],[-77.06898438172571,38.89104594418103],[-77.06904208926436,38.89108044165343],[-77.06909801203378,38.89111331842061],[-77.06915215003394,38.89114457448254],[-77.0692045032649,38.89117420983925],[-77.06926221080354,38.89120662348089],[-77.06932527264989,38.89124181540748],[-77.06939368880396,38.891279785619],[-77.06946745926575,38.89132053411546],[-77.06954658403524,38.89136406089686],[-77.06963106311241,38.8914103659632],[-77.06972089649733,38.89145944931448],[-77.06981608418994,38.89151131095069],[-77.06990710742102,38.8915587736008],[-77.06999396619051,38.89160183726479],[-77.07007666049847,38.89164050194267],[-77.07015519034488,38.89167476763443],[-77.07022955572972,38.89170463434007],[-77.07029975665304,38.89173010205961],[-77.07036579311479,38.89175117079303],[-77.07042766511499,38.89176784054033],[-77.07049459396137,38.89178497333086],[-77.0705665796539,38.89180256916461],[-77.07064362219262,38.89182062804159],[-77.07072572157747,38.8918391499618],[-77.07081287780852,38.89185813492522],[-77.07090509088576,38.89187758293187],[-77.07100236080915,38.89189749398174],[-77.07110468757871,38.89191786807483],[-77.07146283127217,38.89198917740066],[-77.07147116019527,38.89160669819262],[-77.07147353988759,38.89149741841889],[-77.07147532465683,38.89139137988136],[-77.07147651450299,38.89128858258004],[-77.07147710942607,38.89118902651492],[-77.07147710942607,38.89109271168599],[-77.07147651450299,38.89099963809326],[-77.07147532465683,38.89090980573674],[-77.07147353988759,38.89082321461642],[-77.07147116019527,38.8907398647323],[-77.07146848304141,38.89065628321963],[-77.07146550842602,38.89057247007842],[-77.07146223634908,38.89048842530866],[-77.07145866681063,38.89040414891036],[-77.07145479981061,38.89031964088351],[-77.07145063534905,38.89023490122811],[-77.07144617342595,38.89014992994417],[-77.07144141404135,38.89006472703169],[-77.07143665465671,38.88998160781193],[-77.07143189527207,38.88990057228487],[-77.07142713588743,38.88982162045055],[-77.07142237650282,38.88974475230894],[-77.07141761711819,38.88966996786004],[-77.07141285773355,38.88959726710387],[-77.07140809834891,38.88952665004042],[-77.07140333896429,38.88945811666968],[-77.07139976942581,38.88938842556053],[-77.07139738973349,38.88931757671296],[-77.07139619988733,38.88924557012697],[-77.07139619988733,38.88917240580258],[-77.07139738973349,38.88909808373975],[-77.07139976942581,38.88902260393853],[-77.07140333896429,38.88894596639888],[-77.07140809834891,38.88886817112081],[-77.07141731965663,38.88879037575754],[-77.07143100288746,38.88871258030908],[-77.07144914804137,38.88863478477542],[-77.07147175511835,38.88855698915656],[-77.07149882411844,38.8884791934525],[-77.07153035504163,38.88840139766325],[-77.0715663478879,38.8883236017888],[-77.07160680265724,38.88824580582915],[-77.0716433904266,38.88817541899596],[-77.07167611119593,38.88811244128922],[-77.07170496496525,38.88805687270894],[-77.07172995173457,38.88800871325512],[-77.07175107150385,38.88796796292775],[-77.07176832427315,38.88793462172684],[-77.07178171004242,38.88790868965238],[-77.07179122881169,38.88789016670439],[-77.0718584551196,38.8878688652972],[-77.07198338896615,38.8878447854308],[-77.07216603035135,38.8878179271052],[-77.07240637927521,38.88778829032041],[-77.0727044357377,38.88775587507641],[-77.07306019973886,38.88772068137322],[-77.07347367127865,38.88768270921082],[-77.0739448503571,38.88764195858921],[-77.0744279278971,38.88760329179524],[-77.07492290389871,38.88756670882887],[-77.07542977836188,38.88753220969013],[-77.07594855128663,38.887499794379],[-77.07647922267296,38.88746946289548],[-77.07702179252085,38.88744121523959],[-77.07757626083034,38.8874150514113],[-77.0781426276014,38.88739097141064],[-77.07864325537224,38.88736990141005],[-77.07907814414288,38.88735184140956],[-77.07944729391329,38.88733679140914],[-77.0797507046835,38.88732475140881],[-77.07998837645349,38.88731572140856],[-77.08016030922329,38.8873097014084],[-77.08026650299286,38.88730669140831],[-77.0803069577622,38.88730669140831],[-77.08034979222388,38.88730391293945],[-77.08039500637787,38.88729835600174],[-77.08044260022419,38.88729002059515],[-77.0804925737628,38.88727890671971],[-77.08054492699374,38.88726501437542],[-77.080599659917,38.88724834356226],[-77.08065677253256,38.88722889428024],[-77.08071626484045,38.88720666652936],[-77.08078914291761,38.88718281799076],[-77.08087540676404,38.88715734866443],[-77.08097505637974,38.88713025855038],[-77.08108809176473,38.8871015476486],[-77.08121451291898,38.8870712159591],[-77.0813543198425,38.88703926348187],[-77.0815075125353,38.88700569021691],[-77.08167409099738,38.88697049616423],[-77.08182936592095,38.88693784904436],[-77.08197333730602,38.88690774885729],[-77.08210600515261,38.88688019560303],[-77.0822273694607,38.88685518928158],[-77.08233743023028,38.88683272989294],[-77.08243618746137,38.8868128174371],[-77.08252364115395,38.88679545191407],[-77.08259979130806,38.88678063332384],[-77.08267401541683,38.88676412528719],[-77.0827463134803,38.88674592780409],[-77.08281668549844,38.88672604087458],[-77.08288513147127,38.88670446449862],[-77.08295165139879,38.88668119867624],[-77.083016245281,38.88665624340744],[-77.08307891311789,38.8866295986922],[-77.08313965490947,38.88660126453051],[-77.08319532475193,38.8865751693403],[-77.08324592264526,38.88655131312154],[-77.08329144858948,38.88652969587423],[-77.08333190258459,38.88651031759838],[-77.0833698054054,38.88649187549523],[-77.08340515705191,38.88647436956478],[-77.08344551984862,38.88645389141078],[-77.08351358076897,38.88641871584444],[-77.08345246584912,38.88657649287254],[-77.08342394555316,38.88681910413415],[-77.08342801988115,38.88714654962929],[-77.08346468883309,38.88755882935796],[-77.08352071084295,38.88809161339803],[-77.08359608591078,38.8887449017495],[-77.08369081403656,38.88951869441238],[-77.0838048952203,38.89041299138665],[-77.08390064192807,38.89108054293022],[-77.0839780541599,38.89152134904307],[-77.08403713191575,38.8917354097252]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000091,"geom:area_square_m":876653.217898,"geom:bbox":"-77.0840371319,38.8864187158,-77.0678073264,38.8950855055","geom:latitude":38.890988,"geom:longitude":-77.076275,"iso:country":"US","lbl:latitude":38.891181,"lbl:longitude":-77.07644,"lbl:max_zoom":18,"mps:latitude":38.890953,"mps:longitude":-77.076276,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Fort Myer Hts","Ft Myer Heights","Ft Myer Hts","Radnor","Radnor/Fort Myer Heights","Radnor/Fort Myer Hts","Radnor/Ft. Myer Heights","Radnor/Ft. Myer Hts"],"reversegeo:latitude":38.890953,"reversegeo:longitude":-77.076276,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85688747,102191575,85633793,101729469,102085953],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2c2c276662105e5c67832b6e5c13ced3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726793,"region_id":85688747}],"wof:id":1108726793,"wof:lastmodified":1566623918,"wof:name":"Fort Myer Heights","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85820167],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108726795.geojson b/fixtures/microhoods/1108726795.geojson new file mode 100644 index 0000000..972df8f --- /dev/null +++ b/fixtures/microhoods/1108726795.geojson @@ -0,0 +1 @@ +{"id":1108726795,"type":"Feature","bbox":[-77.078678,38.893288,-77.067934,38.900912],"geometry":{"type":"Polygon","coordinates":[[[-77.0755318814271,38.8986804480588],[-77.075419,38.899107],[-77.075326,38.899458],[-77.075263,38.899692],[-77.07521,38.899888],[-77.075167,38.900045],[-77.075127,38.900188],[-77.075089,38.90032],[-77.075055,38.900438],[-77.075023,38.900543],[-77.074913,38.900912],[-77.074543,38.900876],[-77.074336,38.900853],[-77.074165,38.90084],[-77.073991,38.900832],[-77.073812,38.900827],[-77.073636,38.900824],[-77.073463,38.900822],[-77.073292,38.900821],[-77.073125,38.900821],[-77.072956,38.900821],[-77.072785,38.900821],[-77.072613,38.900821],[-77.07244,38.900821],[-77.07227,38.900823],[-77.072102,38.900827],[-77.071937,38.900834],[-77.071775,38.900842],[-77.071604,38.900842],[-77.071422,38.900834],[-77.071231,38.900816],[-77.071029,38.90079],[-77.070852,38.900763],[-77.070698,38.900735],[-77.070568,38.900705],[-77.070462,38.900675],[-77.070358,38.900642],[-77.070254,38.900608],[-77.070152,38.900571],[-77.070052,38.900531],[-77.069947,38.900488],[-77.069838,38.90044],[-77.069725,38.900388],[-77.069607,38.900331],[-77.069497,38.900276],[-77.069394,38.900222],[-77.069297,38.900168],[-77.069208,38.900116],[-77.069127,38.900062],[-77.069054,38.900005],[-77.06899,38.899947],[-77.068934,38.899886],[-77.068882,38.899824],[-77.068835,38.899761],[-77.068792,38.899697],[-77.068753,38.899631],[-77.068716,38.899562],[-77.068683,38.899488],[-77.068652,38.89941],[-77.068624,38.899327],[-77.0686,38.899235],[-77.068581,38.899132],[-77.068565,38.89902],[-77.068554,38.898899],[-77.068543,38.898783],[-77.068532,38.898675],[-77.068521,38.898573],[-77.06851,38.898477],[-77.068504,38.898366],[-77.068504,38.89824],[-77.06851,38.898099],[-77.068521,38.897942],[-77.068528,38.897788],[-77.06853,38.897635],[-77.068528,38.897448],[-77.068516,38.896984],[-77.068503,38.896936],[-77.06849,38.896884],[-77.068479,38.896829],[-77.068469,38.896769],[-77.068459,38.896706],[-77.068444,38.896601],[-77.068421,38.896453],[-77.068393,38.896264],[-77.068357,38.896033],[-77.068307,38.895709],[-77.068243,38.895294],[-77.068142,38.894637],[-77.067934,38.893288],[-77.06796,38.893351],[-77.067988,38.893409],[-77.068019,38.893462],[-77.068053,38.89351],[-77.068086,38.893558],[-77.068119,38.893607],[-77.068153,38.893656],[-77.068186,38.893705],[-77.068219,38.893754],[-77.068253,38.893804],[-77.068286,38.893853],[-77.068319,38.893903],[-77.068358,38.893954],[-77.068401,38.894005],[-77.06845,38.894056],[-77.068503,38.894108],[-77.068562,38.89416],[-77.068625,38.894213],[-77.068694,38.894266],[-77.068768,38.89432],[-77.068841,38.894372],[-77.068913,38.894422],[-77.068984,38.89447],[-77.069054,38.894516],[-77.069123,38.894561],[-77.069192,38.894603],[-77.069259,38.894644],[-77.069326,38.894683],[-77.069394,38.89472],[-77.069464,38.894755],[-77.069535,38.894787],[-77.069607,38.894818],[-77.069681,38.894846],[-77.069757,38.894873],[-77.069834,38.894897],[-77.069912,38.894919],[-77.069991,38.89494],[-77.07007,38.89496],[-77.070148,38.894979],[-77.070227,38.894997],[-77.070305,38.895013],[-77.070384,38.895028],[-77.070462,38.895042],[-77.070541,38.895055],[-77.070617,38.895066],[-77.070691,38.895074],[-77.070762,38.89508],[-77.070831,38.895084],[-77.070898,38.895086],[-77.070962,38.895085],[-77.071024,38.895081],[-77.071083,38.895076],[-77.071149,38.895069],[-77.07122,38.89506],[-77.071297,38.895049],[-77.071381,38.895037],[-77.07147,38.895024],[-77.071565,38.895008],[-77.071666,38.894992],[-77.071773,38.894973],[-77.071935,38.894949],[-77.072153,38.894919],[-77.072425,38.894884],[-77.072752,38.894843],[-77.073134,38.894797],[-77.073572,38.894745],[-77.074064,38.894688],[-77.074611,38.894625],[-77.075107,38.894567],[-77.075551,38.894514],[-77.075944,38.894466],[-77.076286,38.894424],[-77.076576,38.894386],[-77.076814,38.894354],[-77.077002,38.894327],[-77.077137,38.894304],[-77.07727,38.89428],[-77.077399,38.894254],[-77.077525,38.894227],[-77.077647,38.894197],[-77.077766,38.894165],[-77.077882,38.894132],[-77.077995,38.894097],[-77.078105,38.89406],[-77.078203,38.894027],[-77.078678,38.897963],[-77.078627,38.897985],[-77.078503,38.898036],[-77.078373,38.898086],[-77.078237,38.898135],[-77.078096,38.898184],[-77.077949,38.898232],[-77.077796,38.89828],[-77.077643,38.898324],[-77.077489,38.898366],[-77.077335,38.898405],[-77.077181,38.89844],[-77.077026,38.898473],[-77.076871,38.898503],[-77.076715,38.89853],[-77.076559,38.898553],[-77.076403,38.898576],[-77.076247,38.898597],[-77.076091,38.898618],[-77.075935,38.898637],[-77.07578,38.898655],[-77.075624,38.898671],[-77.0755318814271,38.8986804480588]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":513396.677058,"geom:bbox":"-77.078678,38.893288,-77.067934,38.900912","geom:latitude":38.897356,"geom:longitude":-77.073131,"iso:country":"US","lbl:latitude":38.897608,"lbl:longitude":-77.075955,"lbl:max_zoom":18,"mps:latitude":38.896726,"mps:longitude":-77.073754,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":38.896726,"reversegeo:longitude":-77.073754,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[102191575,85633793,102085953,101729469,85688747],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3279c867e4b893c0398a032ab5cb1e69","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102085953,"locality_id":101729469,"microhood_id":1108726795,"region_id":85688747}],"wof:id":1108726795,"wof:lastmodified":1587587506,"wof:name":"North Rosslyn","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85876007],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108732587.geojson b/fixtures/microhoods/1108732587.geojson new file mode 100644 index 0000000..98ca9ce --- /dev/null +++ b/fixtures/microhoods/1108732587.geojson @@ -0,0 +1 @@ +{"id":1108732587,"type":"Feature","bbox":[-90.08074929382879,29.99368969058911,-90.07449186547838,29.99907887276248],"geometry":{"type":"Polygon","coordinates":[[[-90.08074929382879,29.99870254272638],[-90.07788130583485,29.99368969058911],[-90.07449186547838,29.99390044623243],[-90.07496117260465,29.99907887276248],[-90.08074929382879,29.99870254272638]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":255650.799074,"geom:bbox":"-90.0807492938,29.9936896906,-90.0744918655,29.9990788728","geom:latitude":29.996565,"geom:longitude":-90.077093,"iso:country":"US","lbl:latitude":29.996701,"lbl:longitude":-90.077034,"lbl:max_zoom":18,"mps:latitude":29.996701,"mps:longitude":-90.077034,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["St. Bernard Projects"],"name:eng_x_variant":["St. Bernard Projects","St. Bernard Area","Saint Bernard Projects"],"reversegeo:latitude":29.996701,"reversegeo:longitude":-90.077034,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[420521743,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7587301"},"wof:country":"US","wof:geomhash":"a1754ea50cdd2a811beff0575aa2d3f4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108732587,"neighbourhood_id":420521743,"region_id":85688735}],"wof:id":1108732587,"wof:lastmodified":1566623876,"wof:name":"Columbia Parc","wof:parent_id":420521743,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866079],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739489.geojson b/fixtures/microhoods/1108739489.geojson new file mode 100644 index 0000000..bbb1275 --- /dev/null +++ b/fixtures/microhoods/1108739489.geojson @@ -0,0 +1 @@ +{"id":1108739489,"type":"Feature","bbox":[-89.97997298733789,30.01601706573187,-89.96812300014211,30.02674400013827],"geometry":{"type":"Polygon","coordinates":[[[-89.97862422882923,30.01601706573187],[-89.97876447170317,30.01716394073513],[-89.97901583909378,30.01964878004598],[-89.9791834173542,30.02126298535891],[-89.97928815376696,30.0223511988303],[-89.97935099561462,30.02316735109594],[-89.97943478474483,30.02356635642513],[-89.97953952115758,30.02391095064444],[-89.97981183583076,30.02447318074681],[-89.97997298733789,30.02471236914064],[-89.97977100032958,30.02472600021713],[-89.97918199993163,30.02476499972137],[-89.97873099980721,30.02479899968096],[-89.97842500015996,30.02483400026837],[-89.97793399979109,30.02493099981779],[-89.97715000006697,30.02508299968625],[-89.97651699992515,30.02520799993638],[-89.97588200046046,30.02533099976786],[-89.9752130006939,30.02546099992957],[-89.97422699973916,30.02565400007364],[-89.97343700008969,30.02581600019906],[-89.97286700016261,30.02593999966417],[-89.97216800059518,30.02610000013095],[-89.97111300051614,30.02631799983378],[-89.97055900013495,30.02641600020851],[-89.96948000000496,30.02663100024606],[-89.96895400037725,30.02674400013827],[-89.96890599945552,30.02632599978823],[-89.9688779996183,30.02610399991232],[-89.96882000022316,30.02561499974528],[-89.96875100036975,30.02494699995141],[-89.96870199921135,30.02426599958814],[-89.96862299957331,30.02359499978053],[-89.96855799979942,30.0228849999879],[-89.96847999983612,30.02221299979201],[-89.96839900050293,30.02152100026361],[-89.96832599983888,30.02083000018204],[-89.96823300041507,30.01973999959521],[-89.96815099972379,30.01887000029562],[-89.96812300014211,30.01857699998806],[-89.96855700004761,30.01845500045634],[-89.9693799996021,30.01825099953289],[-89.96985300039714,30.01813899946958],[-89.97012100061097,30.0180750005274],[-89.97050199937954,30.01798400040638],[-89.97107600021728,30.01783199986962],[-89.97289499984477,30.01738599974404],[-89.9750590000785,30.01685599993469],[-89.97552699921579,30.01674100027137],[-89.97643399935505,30.01650600014226],[-89.97692399981646,30.01639199999661],[-89.97782200035954,30.01618699958083],[-89.97851099996946,30.01604099925997],[-89.97862422882923,30.01601706573187]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000091,"geom:area_square_m":973863.22684,"geom:bbox":"-89.9799729873,30.0160170657,-89.9681230001,30.0267440001","geom:latitude":30.021471,"geom:longitude":-89.973867,"iso:country":"US","lbl:latitude":30.021438,"lbl:longitude":-89.973867,"lbl:max_zoom":18,"mps:latitude":30.021438,"mps:longitude":-89.973867,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":30.021438,"reversegeo:longitude":-89.973867,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85866171,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ae310eb1f10a1acee79459e05737c1ae","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108739489,"neighbourhood_id":85866171,"region_id":85688735}],"wof:id":1108739489,"wof:lastmodified":1566623877,"wof:name":"Donna Villa","wof:parent_id":85866171,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85891213],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739501.geojson b/fixtures/microhoods/1108739501.geojson new file mode 100644 index 0000000..950cfe0 --- /dev/null +++ b/fixtures/microhoods/1108739501.geojson @@ -0,0 +1 @@ +{"id":1108739501,"type":"Feature","bbox":[-89.99473173729083,29.90070821563957,-89.98805574411486,29.90599648635413],"geometry":{"type":"Polygon","coordinates":[[[-89.99291671850406,29.90070821563957],[-89.99308934390609,29.90079000391536],[-89.99349393469213,29.90100937314485],[-89.99373816040297,29.90114456568183],[-89.99391618034882,29.90124617251329],[-89.99402799452969,29.90131419363924],[-89.99413049086215,29.90137626289177],[-89.9942236693462,29.90143238027087],[-89.99430752998185,29.90148254577655],[-89.99438207276908,29.9015267594088],[-89.99445024018637,29.90156629659026],[-89.99451203223369,29.90160115732093],[-89.99456744891106,29.90163134160079],[-89.99461649021845,29.90165684942985],[-89.99465719450359,29.90168108186276],[-89.99468956176648,29.90170403889951],[-89.99471359200709,29.90172572054011],[-89.99472928522547,29.90174612678456],[-89.99473173729083,29.90176993406045],[-89.99472094820321,29.9017971423678],[-89.99469691796259,29.90182775170661],[-89.99465964656896,29.90186176207686],[-89.9946081531962,29.90190384987666],[-89.99454243784429,29.901954015106],[-89.99446250051322,29.90201225776489],[-89.99436834120301,29.90207857785331],[-89.99425309413063,29.9021585019491],[-89.99411675929606,29.90225203005225],[-89.99395933669932,29.90235916216277],[-89.9937808263404,29.90247989828065],[-89.9936131050691,29.90259595788553],[-89.99345617288544,29.90270734097741],[-89.9933100297894,29.90281404755629],[-89.99317467578098,29.90291607762217],[-89.99299224211745,29.90305211730367],[-89.99276272879885,29.90322216660078],[-89.99248613582512,29.9034262255135],[-89.9921624631963,29.90366429404183],[-89.99188979352715,29.90386750236899],[-89.99166812681773,29.90403585049499],[-89.99149746306799,29.90416933841981],[-89.99137780227794,29.90426796614346],[-89.99125372777023,29.90436659376947],[-89.99112523954486,29.90446522129784],[-89.99099233760181,29.90456384872857],[-89.99085502194109,29.90466247606166],[-89.99070005140972,29.90477513208586],[-89.99052742600767,29.90490181680117],[-89.99033714573497,29.9050425302076],[-89.9901292105916,29.90519727230514],[-89.98994824816731,29.9053320338808],[-89.98979425846207,29.90544681493459],[-89.98966724147591,29.90554161546649],[-89.98956719720883,29.90561643547651],[-89.98948235574703,29.90568105273932],[-89.98941271709053,29.90573546725491],[-89.98935828123932,29.90577967902328],[-89.98931904819341,29.90581368804444],[-89.98927834390827,29.90584557149415],[-89.98923616838391,29.90587532937243],[-89.98919252162032,29.90590296167926],[-89.98914740361751,29.90592846841465],[-89.98910768015851,29.90595014913791],[-89.98907335124333,29.90596800384903],[-89.98904441687196,29.905982032548],[-89.98902087704442,29.90599223523484],[-89.9889948851515,29.90599648635413],[-89.98896644119321,29.90599478590586],[-89.98893554516955,29.90598713389003],[-89.98890219708052,29.90597353030664],[-89.98880019116113,29.90588340603194],[-89.9886295274114,29.90571676106592],[-89.98831321097869,29.90539367382142],[-89.98805574411486,29.9051216362604],[-89.98862462328067,29.90470838893544],[-89.98948775029086,29.90406901030105],[-89.99009193919798,29.9035860726548],[-89.99057058235817,29.90318475649172],[-89.99117477126532,29.90264059640041],[-89.99149648224184,29.90230729687675],[-89.99181819321836,29.90197399623902],[-89.99218698384999,29.90155226730144],[-89.99240668890712,29.90132099583635],[-89.99268916683775,29.90098769189825],[-89.99291671850406,29.90070821563957]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":109726.656069,"geom:bbox":"-89.9947317373,29.9007082156,-89.9880557441,29.9059964864","geom:latitude":29.903293,"geom:longitude":-89.991454,"iso:country":"US","lbl:latitude":29.903277,"lbl:longitude":-89.991455,"lbl:max_zoom":18,"mps:latitude":29.903277,"mps:longitude":-89.991455,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":29.903277,"reversegeo:longitude":-89.991455,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866161,102191575,1108739497,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"68b3e51e9e1a8204368c7d63790f7407","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739497,"microhood_id":1108739501,"neighbourhood_id":85866161,"region_id":85688735}],"wof:id":1108739501,"wof:lastmodified":1566623878,"wof:name":"Forest Isle","wof:parent_id":85866161,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420521745,420521759],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739503.geojson b/fixtures/microhoods/1108739503.geojson new file mode 100644 index 0000000..4cfb548 --- /dev/null +++ b/fixtures/microhoods/1108739503.geojson @@ -0,0 +1 @@ +{"id":1108739503,"type":"Feature","bbox":[-90.13367306272913,29.92453922656607,-90.12513739110419,29.93829500000204],"geometry":{"type":"Polygon","coordinates":[[[-90.12814800004946,29.93829500000204],[-90.12659069509118,29.93708221474051],[-90.12563509794906,29.93644388901413],[-90.12513739110419,29.93606434204615],[-90.12537255758838,29.93581202852312],[-90.12556168618943,29.9355985314107],[-90.1257831657354,29.9353397462012],[-90.12606312583563,29.93500763805875],[-90.12640156649015,29.93460220698332],[-90.1267151218024,29.93421726193164],[-90.12700379177242,29.93385280290371],[-90.1272675764002,29.93350882989952],[-90.12750647568573,29.93318534291907],[-90.12775035203973,29.93285322839329],[-90.12799920546215,29.93251248632218],[-90.12825303595304,29.93216311670573],[-90.12851184351237,29.93180511954395],[-90.1287806052086,29.9314374161349],[-90.12905932104172,29.93106000647858],[-90.12934799101176,29.93067289057498],[-90.12964661511867,29.93027606842412],[-90.12996514749939,29.92984150243637],[-90.13030358815391,29.92936919261174],[-90.13066193708221,29.92885913895024],[-90.13104019428428,29.92831134145185],[-90.13138734480857,29.92781422445766],[-90.13170338865507,29.92736778796765],[-90.13198832582376,29.92697203198184],[-90.13224215631463,29.92662695650022],[-90.1324947425384,29.92627001759453],[-90.13274608449507,29.92590121526475],[-90.13305839554022,29.92542241721642],[-90.13361831574068,29.92453922656607],[-90.13367306272913,29.92857224238798],[-90.13358300042124,29.92870300045404],[-90.13342699996993,29.92888299985244],[-90.13277100005504,29.92968799999296],[-90.1321820004098,29.93053500004371],[-90.13164200047028,29.93123600033206],[-90.1323930002082,29.93168099969108],[-90.13313200069787,29.93214800054984],[-90.1325309999213,29.93292299959429],[-90.13189999962464,29.93370099971811],[-90.13128400038944,29.93452500031022],[-90.13078900072546,29.93511900005356],[-90.13067200016121,29.93527899935819],[-90.13018800046167,29.93588699979092],[-90.13001500031368,29.93608100008695],[-90.12956099945117,29.93666100047908],[-90.12943499959093,29.93676799994424],[-90.1288340005569,29.93757300008707],[-90.12822899977317,29.93820999993526],[-90.12814800004946,29.93829500000204]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000041,"geom:area_square_m":435732.118479,"geom:bbox":"-90.1336730627,29.9245392266,-90.1251373911,29.938295","geom:latitude":29.932578,"geom:longitude":-90.129968,"iso:country":"US","lbl:latitude":29.932905,"lbl:longitude":-90.130032,"lbl:max_zoom":18,"mps:latitude":29.932905,"mps:longitude":-90.130032,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:note":"defunct","mz:tier_metro":1,"name:ara_x_preferred":["غرينفيل"],"name:bul_x_preferred":["Грийнвил"],"name:cat_x_preferred":["Greenville"],"name:ceb_x_preferred":["Greenville"],"name:dan_x_preferred":["Greenville"],"name:deu_x_preferred":["Greenville"],"name:est_x_preferred":["Greenville"],"name:fas_x_preferred":["گرینویل"],"name:fin_x_preferred":["Greenville"],"name:fra_x_preferred":["Greenville"],"name:heb_x_preferred":["גרינוויל"],"name:hrv_x_preferred":["Greenville"],"name:hun_x_preferred":["Greenville"],"name:ido_x_preferred":["Greenville"],"name:ind_x_preferred":["Greenville"],"name:ita_x_preferred":["Greenville"],"name:jpn_x_preferred":["グリーンビル"],"name:kor_x_preferred":["그린빌"],"name:lit_x_preferred":["Grinvilis"],"name:nds_x_preferred":["Greenville"],"name:nld_x_preferred":["Greenville"],"name:nor_x_preferred":["Greenville"],"name:pol_x_preferred":["Greenville"],"name:por_x_preferred":["Greenville"],"name:rus_x_preferred":["Гринвилл"],"name:sco_x_preferred":["Greenville"],"name:slk_x_preferred":["Greenville"],"name:spa_x_preferred":["Greenville"],"name:swe_x_preferred":["Greenville"],"name:tur_x_preferred":["Greenville"],"name:ukr_x_preferred":["Ґрінвілл"],"name:urd_x_preferred":["گرینویل"],"name:vol_x_preferred":["Greenville"],"name:war_x_preferred":["Greenville"],"name:zho_x_preferred":["格林维尔"],"reversegeo:latitude":29.932905,"reversegeo:longitude":-90.130032,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85866131,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"63d24d69f2d4d564b7c319bb10de8f29","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108739503,"neighbourhood_id":85866131,"region_id":85688735}],"wof:id":1108739503,"wof:lastmodified":1566623879,"wof:name":"Greenville","wof:parent_id":85866131,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85823083],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739505.geojson b/fixtures/microhoods/1108739505.geojson new file mode 100644 index 0000000..c58a189 --- /dev/null +++ b/fixtures/microhoods/1108739505.geojson @@ -0,0 +1 @@ +{"id":1108739505,"type":"Feature","bbox":[-89.96154357549827,30.0282292962793,-89.95186304872983,30.0364904169342],"geometry":{"type":"Polygon","coordinates":[[[-89.95692458129734,30.0282292962793],[-89.95736711966389,30.02868726750375],[-89.95749331224496,30.02881597809222],[-89.9575797455197,30.0289117626145],[-89.95765407813595,30.02900156051302],[-89.95771631009374,30.0290853717878],[-89.95776989872407,30.02916469312314],[-89.95781484402693,30.02923952451904],[-89.95785114600231,30.02930986597551],[-89.95787880465022,30.02937571749255],[-89.95791164929462,30.02945503852598],[-89.9579496799355,30.02954782907582],[-89.95799289657285,30.02965408914206],[-89.9580412992067,30.0297738187247],[-89.95808451584405,30.02989055494412],[-89.95812254648493,30.03000429780033],[-89.95815539112931,30.03011504729331],[-89.95818304977723,30.03022280342307],[-89.95821243709062,30.03034702204847],[-89.95824355306954,30.03048770316952],[-89.95827639771392,30.0306448467862],[-89.95831097102382,30.03081845289852],[-89.95834727299919,30.03098457575881],[-89.95838530364007,30.03114321536705],[-89.95842506294645,30.03129437172325],[-89.9584665509183,30.03143804482741],[-89.95850803889017,30.03159069720771],[-89.95854952686204,30.03175232886414],[-89.9585910148339,30.0319229397967],[-89.95863250280577,30.0321025300054],[-89.95867744810862,30.03225967131598],[-89.95872585074247,30.03239436372844],[-89.9587777107073,30.03250660724278],[-89.95883302800311,30.032596401859],[-89.9588969886264,30.03269367923336],[-89.95896959257716,30.03279843936584],[-89.9590508398554,30.03291068225646],[-89.95914073046112,30.0330304079052],[-89.95924790772176,30.03315611964547],[-89.95937237163736,30.03328781747726],[-89.95951412220789,30.03342550140057],[-89.95967315943336,30.03356917141539],[-89.95982182466588,30.03369937226057],[-89.95996011790542,30.03381610393609],[-89.96008803915201,30.03391936644195],[-89.96020558840564,30.03400915977815],[-89.96032140899376,30.03410044958029],[-89.96043550091639,30.03419323584836],[-89.96054786417352,30.03428751858236],[-89.96065849876517,30.03438329778229],[-89.96078642001174,30.03447458726406],[-89.96093162791328,30.03456138702767],[-89.96109412246975,30.03464369707312],[-89.96127390368115,30.03472151740042],[-89.96154357549827,30.03483824789136],[-89.96115981175852,30.03505374937289],[-89.96090396926536,30.03519741702724],[-89.96065331276867,30.03534108447331],[-89.96040784226848,30.03548475171109],[-89.96016755776476,30.0356284187406],[-89.95993245925753,30.03577208556182],[-89.95970427541228,30.03591126262402],[-89.959483006229,30.0360459499272],[-89.9592686517077,30.03617614747136],[-89.95906121184836,30.03630185525649],[-89.95875005205939,30.0364904169342],[-89.9561674258108,30.03341045639067],[-89.95444567497842,30.03135714936165],[-89.95186304872983,30.02827718881812],[-89.95407746922811,30.02825623583238],[-89.95692458129734,30.0282292962793]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":328110.207279,"geom:bbox":"-89.9615435755,30.0282292963,-89.9518630487,30.0364904169","geom:latitude":30.031724,"geom:longitude":-89.9568,"iso:country":"US","lbl:latitude":30.031637,"lbl:longitude":-89.956799,"lbl:max_zoom":18,"mps:latitude":30.031637,"mps:longitude":-89.956799,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Idlewood","Parkwood"],"reversegeo:latitude":30.031637,"reversegeo:longitude":-89.956799,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866173,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"023f78c0489dfb68673ed53ada738a41","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108739505,"neighbourhood_id":85866173,"region_id":85688735}],"wof:id":1108739505,"wof:lastmodified":1566623879,"wof:name":"Idlewood - Parkwood","wof:parent_id":85866173,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420521727],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739507.geojson b/fixtures/microhoods/1108739507.geojson new file mode 100644 index 0000000..7cb2814 --- /dev/null +++ b/fixtures/microhoods/1108739507.geojson @@ -0,0 +1 @@ +{"id":1108739507,"type":"Feature","bbox":[-89.95174354406873,30.05511510796105,-89.94381150418965,30.06282021797954],"geometry":{"type":"Polygon","coordinates":[[[-89.94726224357994,30.05511510796105],[-89.95174354406873,30.06035769790453],[-89.94838718229859,30.06282021797954],[-89.94381150418965,30.05732352900302],[-89.94454299947594,30.05684599923944],[-89.94602699997459,30.0558959995009],[-89.94726224357994,30.05511510796105]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000029,"geom:area_square_m":309031.420252,"geom:bbox":"-89.9517435441,30.055115108,-89.9438115042,30.062820218","geom:latitude":30.058919,"geom:longitude":-89.947797,"iso:country":"US","lbl:latitude":30.058926,"lbl:longitude":-89.947797,"lbl:max_zoom":18,"mps:latitude":30.058926,"mps:longitude":-89.947797,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Kingswood"],"name:cym_x_preferred":["Kingswood"],"name:deu_x_preferred":["Kingswood"],"name:fra_x_preferred":["Kingswood"],"name:ita_x_preferred":["Kingswood"],"name:kor_x_preferred":["킹스우드"],"name:nld_x_preferred":["Kingswood"],"name:pol_x_preferred":["Kingswood"],"name:spa_x_preferred":["Kingswood"],"name:swe_x_preferred":["Kingswood"],"reversegeo:latitude":30.058926,"reversegeo:longitude":-89.947797,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866167,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"5d67a4c5b7f4f35c661a4917de4f6128","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108739507,"neighbourhood_id":85866167,"region_id":85688735}],"wof:id":1108739507,"wof:lastmodified":1566623878,"wof:name":"Kingswood","wof:parent_id":85866167,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420521739],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739509.geojson b/fixtures/microhoods/1108739509.geojson new file mode 100644 index 0000000..13a8316 --- /dev/null +++ b/fixtures/microhoods/1108739509.geojson @@ -0,0 +1 @@ +{"id":1108739509,"type":"Feature","bbox":[-89.96557287809883,30.04617438895752,-89.95066732834732,30.05798680483858],"geometry":{"type":"Polygon","coordinates":[[[-89.96138786273802,30.04617438895752],[-89.96557287809883,30.05114207158717],[-89.95512458548426,30.05798680483858],[-89.95066732834732,30.05295931939734],[-89.95086299963288,30.05283399957813],[-89.95282799989134,30.05161299984222],[-89.9536959997711,30.05106700063975],[-89.95497099964021,30.05023899947241],[-89.95621200008485,30.04945499931278],[-89.95763299976264,30.04855900064829],[-89.95780700056378,30.0484490007004],[-89.95855499948603,30.04799900067853],[-89.95921399991401,30.04757399969997],[-89.96023499920598,30.04692700072561],[-89.96111999938367,30.04634799964875],[-89.96131599979384,30.04621899969893],[-89.96138786273802,30.04617438895752]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000082,"geom:area_square_m":879802.352168,"geom:bbox":"-89.9655728781,30.046174389,-89.9506673283,30.0579868048","geom:latitude":30.052082,"geom:longitude":-89.958159,"iso:country":"US","lbl:latitude":30.052118,"lbl:longitude":-89.958159,"lbl:max_zoom":18,"mps:latitude":30.052118,"mps:longitude":-89.958159,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":30.052118,"reversegeo:longitude":-89.958159,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866167,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1b0b49f5c27dbf0233e5f7aef17e987f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108739509,"neighbourhood_id":85866167,"region_id":85688735}],"wof:id":1108739509,"wof:lastmodified":1566623878,"wof:name":"Lake Carmel","wof:parent_id":85866167,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420521729],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739689.geojson b/fixtures/microhoods/1108739689.geojson new file mode 100644 index 0000000..472a110 --- /dev/null +++ b/fixtures/microhoods/1108739689.geojson @@ -0,0 +1 @@ +{"id":1108739689,"type":"Feature","bbox":[-90.06217404475652,30.02523699994052,-90.05205879565224,30.03449113589351],"geometry":{"type":"Polygon","coordinates":[[[-90.05266925229668,30.03439900545779],[-90.05205879565224,30.02642183647558],[-90.05206900043457,30.02642000031101],[-90.0522469993413,30.02638799995069],[-90.05330500010713,30.02611299967301],[-90.05346900055643,30.02608699939251],[-90.05364399997642,30.02606000058015],[-90.05445399972866,30.0259339993851],[-90.05494199970394,30.0258620005822],[-90.05551699989299,30.02578500058012],[-90.05646899945795,30.025658999864],[-90.05679099952447,30.02561700003637],[-90.05888399943512,30.02532999942155],[-90.05953499992346,30.02526099928546],[-90.05992099992791,30.02524500026957],[-90.0602330000212,30.02525400064977],[-90.06039799973338,30.02525999953551],[-90.06073100037332,30.02527000020919],[-90.06112000011602,30.02525599982441],[-90.06151599983087,30.02523699994052],[-90.06217404475652,30.03344797274774],[-90.06211472995352,30.03345213769471],[-90.0618992269685,30.03345334491902],[-90.06175773113335,30.033454136837],[-90.06150073149747,30.03346913731182],[-90.06117373039764,30.03350013676471],[-90.06100173116737,30.03353713693502],[-90.06082013863217,30.03360254885683],[-90.06073055109363,30.03365655514048],[-90.06068556868074,30.0336994711104],[-90.06066373108877,30.03384213620886],[-90.0606654954845,30.03385882173677],[-90.06068520497269,30.03404517495543],[-90.06068765850765,30.03408536901668],[-90.06069672975552,30.03425113817045],[-90.06071969243132,30.03433836635914],[-90.06073284133083,30.03435731098293],[-90.06074513970407,30.03437270167009],[-90.0607543475862,30.03439121754732],[-90.06075102540201,30.03441411891948],[-90.0607407247234,30.03444904708547],[-90.0606837307167,30.03447113656757],[-90.06062532934016,30.03446570921462],[-90.06057753728727,30.0344210007579],[-90.06058506033892,30.0344054687056],[-90.06059491135883,30.03438513679718],[-90.06060383392469,30.03436581181224],[-90.06060905698078,30.03434971980826],[-90.06061469971164,30.03431707886848],[-90.06057937125561,30.03408735394509],[-90.0605693896103,30.03405342791144],[-90.06056165590883,30.0340271437356],[-90.06054619432024,30.0339766388106],[-90.06054329670536,30.03396026983378],[-90.06053461633232,30.0338954039822],[-90.06052516575231,30.03381257203651],[-90.06052865219094,30.0337361959914],[-90.06052373099914,30.03370013549436],[-90.06050775881666,30.03367289924178],[-90.06049263306346,30.03365099966764],[-90.06043773315956,30.03361313704795],[-90.06027073057807,30.03357613772717],[-90.06011172868024,30.03356513717326],[-90.05978973030331,30.03357913686068],[-90.05936573010501,30.03364613686342],[-90.05919973241005,30.0337021366204],[-90.05909473326827,30.0337749717475],[-90.05900990496262,30.03384683450968],[-90.0589571663857,30.03392927860699],[-90.05894653933206,30.03400097067375],[-90.05895172923647,30.034089136927],[-90.05897374414774,30.03413122190573],[-90.05898573140719,30.03415413695518],[-90.05902995919743,30.03419897300715],[-90.0590587289355,30.03422813410021],[-90.05912786450689,30.03429025132191],[-90.0591812570891,30.034338219178],[-90.05919133867008,30.03435747531962],[-90.05920308347262,30.03439401329806],[-90.05919886777401,30.03441223791368],[-90.05918320352383,30.03444725481543],[-90.05915880574494,30.03446365836357],[-90.05913075944048,30.03447808412982],[-90.05906672998748,30.03449113589351],[-90.05890972975688,30.03449013721581],[-90.05882235576104,30.0344612037841],[-90.05876073029668,30.03442198610838],[-90.05866340687152,30.03425755499728],[-90.05864445603571,30.03422553499665],[-90.05860143986112,30.03415123327282],[-90.05859280032902,30.0341363090587],[-90.05836902443706,30.03380481599774],[-90.05832265758755,30.03373625322393],[-90.05822581910957,30.03365878765575],[-90.05812277908487,30.03358285888808],[-90.05805996842324,30.03353705853886],[-90.05799372853687,30.03350813702952],[-90.0579177292639,30.03349113580718],[-90.05785772969205,30.03349713637898],[-90.05777242425474,30.03352300586404],[-90.05772835784701,30.03354188559277],[-90.05755765758894,30.03361501867919],[-90.0571682492576,30.0338197915678],[-90.05697749684244,30.03392009928043],[-90.05685100148376,30.03397966828827],[-90.05668972946214,30.03402413794992],[-90.05651772709793,30.03405113657893],[-90.05634372884087,30.03404613740489],[-90.05631848051536,30.03404626157894],[-90.05532573020143,30.03405113690108],[-90.05500973838275,30.03407572743986],[-90.05493350523298,30.03408166022699],[-90.0545547287319,30.03411113558376],[-90.05430093678687,30.03413734249533],[-90.05384772775464,30.03418413815386],[-90.05281772837277,30.03436713751964],[-90.05266925229668,30.03439900545779]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000079,"geom:area_square_m":842962.673504,"geom:bbox":"-90.0621740448,30.0252369999,-90.0520587957,30.0344911359","geom:latitude":30.02978,"geom:longitude":-90.057134,"iso:country":"US","lbl:latitude":30.029704,"lbl:longitude":-90.057134,"lbl:max_zoom":18,"mps:latitude":30.029704,"mps:longitude":-90.057134,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Lk Oaks","Lk. Oaks"],"reversegeo:latitude":30.029704,"reversegeo:longitude":-90.057134,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[1108739667,102191575,1108746797,85633793,85948111,102086693,85688735,1108739491,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"698748ad389687077cdb8b2148a89737","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746797,"microhood_id":1108739689,"neighbourhood_id":1108739667,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108739689,"neighbourhood_id":1108739667,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108739689,"neighbourhood_id":1108739667,"region_id":85688735}],"wof:id":1108739689,"wof:lastmodified":1566623879,"wof:name":"Lake Oaks","wof:parent_id":1108739667,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829167],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108739923.geojson b/fixtures/microhoods/1108739923.geojson new file mode 100644 index 0000000..b31a21a --- /dev/null +++ b/fixtures/microhoods/1108739923.geojson @@ -0,0 +1 @@ +{"id":1108739923,"type":"Feature","bbox":[-90.08303700004127,30.02083500034907,-90.07079900018839,30.0320701366429],"geometry":{"type":"Polygon","coordinates":[[[-90.07446048814658,30.03127332990202],[-90.07445098506194,30.03112302781339],[-90.07443282654368,30.03103132303465],[-90.07441466802543,30.03094223828586],[-90.07439348308745,30.03084005276558],[-90.07436927172978,30.0307247664738],[-90.07434657358195,30.03061210020866],[-90.07432538864396,30.03050205397014],[-90.07430571691584,30.03039462775826],[-90.07428755839759,30.03028982157302],[-90.07426486024976,30.03018894553259],[-90.07423762247235,30.03009199963697],[-90.07420584506539,30.02999898388616],[-90.07416952802886,30.02990989828017],[-90.07413018457262,30.02982474286138],[-90.07408781469668,30.02974351762979],[-90.07404241840102,30.02966622258541],[-90.07399399568565,30.02959285772824],[-90.07395162580971,30.02951818272406],[-90.07391530877318,30.0294421975729],[-90.07388504457607,30.02936490227474],[-90.07386083321839,30.0292862968296],[-90.07384418790997,30.02920900141896],[-90.07383510865085,30.02913301604283],[-90.07383359544099,30.02905834070122],[-90.07383964828043,30.02898497539412],[-90.07385175395926,30.02892209082855],[-90.07386991247753,30.02886968700452],[-90.07389412383522,30.02882776392202],[-90.07392438803231,30.02879632158106],[-90.07395919185899,30.02875963882777],[-90.07399853531521,30.02871771566216],[-90.07404241840102,30.02867055208423],[-90.0740908411164,30.02861814809398],[-90.07414077704162,30.0285696743865],[-90.0741922261767,30.02852513096181],[-90.07424518852163,30.02848451781991],[-90.07429966407642,30.0284478349608],[-90.07434354716221,30.0284072217718],[-90.07437683777904,30.02836267825292],[-90.07439953592687,30.02831420440415],[-90.0744116416057,30.0282618002255],[-90.07441618123528,30.02820546569204],[-90.07441315481556,30.02814520080376],[-90.07440256234658,30.02808100556067],[-90.07438440382832,30.02801287996276],[-90.07436170568049,30.02794344420484],[-90.07433446790309,30.02787269828691],[-90.07430269049613,30.02780064220896],[-90.07426637345961,30.027727275971],[-90.07423005642309,30.02765784002912],[-90.07419373938654,30.02759233438333],[-90.07415742235003,30.02753075903362],[-90.0741211053135,30.02747311398],[-90.07407268259813,30.0274141587733],[-90.07401215420393,30.0273538934135],[-90.07393952013086,30.02729231790062],[-90.07385478037898,30.02722943223465],[-90.07377004062708,30.02716916677429],[-90.07368530087518,30.02711152151954],[-90.0736005611233,30.02705649647039],[-90.0735158213714,30.02700409162686],[-90.07342200236037,30.02695299688072],[-90.07331910409022,30.02690321223199],[-90.07320712656092,30.02685473768066],[-90.0730860697725,30.02680757322673],[-90.07297257903335,30.02676564925799],[-90.07286665434347,30.02672896577443],[-90.07276829570287,30.02669752277606],[-90.07267750311158,30.02667132026286],[-90.07258973693996,30.02662939618996],[-90.07250499718808,30.02657175055733],[-90.07242328385588,30.02649838336499],[-90.0723445969434,30.02640929461294],[-90.07227801570977,30.02631496523552],[-90.07222354015497,30.02621539523274],[-90.07218117027902,30.02611058460459],[-90.07215090608193,30.02600053335108],[-90.0721145890454,30.02587869067992],[-90.07207221916946,30.0257450565911],[-90.07202379645409,30.02559963108461],[-90.07196932089929,30.02544241416046],[-90.07192241139379,30.02529436805472],[-90.07188306793753,30.02515549276736],[-90.07185129053059,30.02502578829841],[-90.0718270791729,30.02490525464786],[-90.07179832818566,30.02479520210535],[-90.07176503756885,30.0246956306709],[-90.07172720732247,30.02460654034451],[-90.07168483744651,30.02452793112617],[-90.07163944115085,30.02446111327312],[-90.07159101843548,30.02440608678538],[-90.0715395693004,30.02436285166294],[-90.07148509374562,30.02433140790579],[-90.0714215389317,30.02425017789511],[-90.07134890485864,30.0241191616309],[-90.07124449337863,30.02388071192033],[-90.07097999972106,30.02335900045222],[-90.0709680002333,30.02326699986629],[-90.07095399991591,30.02315999965814],[-90.0708919999299,30.02219399968992],[-90.07084899960526,30.02179599944828],[-90.07079900018839,30.02140799991474],[-90.07163699951965,30.02145799990448],[-90.07225800043469,30.02146300063903],[-90.07253500029952,30.02144600022377],[-90.07279899972106,30.02143499993444],[-90.07294299986359,30.0214360003649],[-90.07318800000654,30.02144199928433],[-90.07335899996116,30.02145899956193],[-90.07353300059366,30.0214750006992],[-90.07359000036737,30.02148199960751],[-90.07361799990349,30.0214859999591],[-90.07377100038671,30.02149799972717],[-90.07388599981812,30.02149899959093],[-90.07404299984962,30.02149099992554],[-90.07421999996876,30.0214740004227],[-90.07441899929292,30.02144099995306],[-90.07482799998144,30.02135100050254],[-90.07491399932267,30.0213299995753],[-90.0750660005913,30.0213050000381],[-90.0752319999794,30.02128800051792],[-90.07537900036168,30.02127700038032],[-90.07562600029239,30.02125799986424],[-90.07647499976152,30.0212180002495],[-90.0774920002594,30.02116800047958],[-90.0784400008224,30.02109900040873],[-90.07942399974856,30.02103899943721],[-90.07979700011312,30.02101499991782],[-90.08110200010037,30.02093599989486],[-90.08156200042625,30.02091199991539],[-90.08181200067891,30.02088299991346],[-90.08200099966618,30.02085899995449],[-90.08235699973133,30.02083500034907],[-90.08303700004127,30.02086500060289],[-90.08298900008089,30.02097599939546],[-90.08295099977688,30.02104399959372],[-90.08295000018575,30.02107699954644],[-90.08295399951123,30.02109300046507],[-90.08292599993283,30.02110800010196],[-90.08286800012796,30.02110300046979],[-90.08286699974131,30.02110200033416],[-90.08270199921962,30.02146000046015],[-90.08270900039105,30.02210899972682],[-90.0828289997661,30.023400000258],[-90.08290399979614,30.02423699952623],[-90.08279199996005,30.02483500013058],[-90.08251399950933,30.02522400049591],[-90.08254400007786,30.02555500042956],[-90.08253400004261,30.02598800038405],[-90.08250699953277,30.02611400018184],[-90.08251200053482,30.02621099994329],[-90.08251190367825,30.02622326646999],[-90.08251154682998,30.02622319812063],[-90.08244037415658,30.0262444892196],[-90.08235115865773,30.02627180529931],[-90.08232248036273,30.02628375698825],[-90.08228415806929,30.02631268428913],[-90.08227355086339,30.02633164285085],[-90.08225843396204,30.02636097195629],[-90.0822515354665,30.02639290535053],[-90.0822455343665,30.02643735560903],[-90.08224388503963,30.02645906623012],[-90.08224607541578,30.02648984091666],[-90.08225152149865,30.02656630684224],[-90.08227242744078,30.02685979730167],[-90.08227073337324,30.02689102318012],[-90.08226917592806,30.02691193891739],[-90.08225991238236,30.02703633791636],[-90.0822578905861,30.02705203532894],[-90.08225479120733,30.02707188894196],[-90.08223964398623,30.02716890388256],[-90.08223409795333,30.02718774271277],[-90.0821957061134,30.02728291461262],[-90.082147265295,30.02735122133813],[-90.0820338558143,30.02748166981823],[-90.08190953703773,30.02756059988486],[-90.08167961404267,30.02768301712403],[-90.08141139707239,30.02781143233824],[-90.08125323500241,30.0278952133449],[-90.08120886597683,30.02793354890074],[-90.08109584877916,30.02802237472223],[-90.08101231720231,30.02810501377177],[-90.08087500792112,30.02824125175526],[-90.08062604963052,30.02852178731002],[-90.08060565843076,30.02854476586728],[-90.08045278351027,30.02871419495635],[-90.08033576746111,30.0288438777737],[-90.08006350341849,30.02915611725706],[-90.07992885769283,30.02939070952358],[-90.07986501594715,30.02948836950903],[-90.07983568301371,30.02953324264128],[-90.07979580429058,30.02960292558818],[-90.07964996090412,30.02985766573992],[-90.07963210903503,30.02988884691745],[-90.07942101529211,30.03024782844424],[-90.07919127240685,30.03060206680112],[-90.07895226802158,30.03095511221891],[-90.0787141045565,30.03128173657527],[-90.07848447916106,30.03152071571642],[-90.07840887311906,30.03158592834079],[-90.07814247219714,30.0317437701372],[-90.07800641549701,30.03180723525006],[-90.07779401667938,30.03191055860283],[-90.07763299685638,30.03196633391826],[-90.07755799603828,30.03199231442265],[-90.0772047338217,30.03205613602811],[-90.07713872905273,30.03205971796091],[-90.07694673383278,30.0320701366429],[-90.07668773314563,30.03205213730201],[-90.07620373430011,30.0320251365068],[-90.07590973237062,30.03198413690609],[-90.07563173382755,30.03193213718659],[-90.07518773341069,30.03185413700555],[-90.07505473259472,30.03181513553134],[-90.07490756708599,30.03176955312403],[-90.07476298757082,30.03169638201114],[-90.07466590900268,30.03162945338416],[-90.07459740086075,30.03153920119275],[-90.07455993359194,30.03146236933099],[-90.07452546174504,30.03138267809369],[-90.07451759160266,30.03136553020775],[-90.07450385746523,30.03133560500474],[-90.07449642828539,30.03131942038938],[-90.07447314806812,30.0312844480497],[-90.07446048814658,30.03127332990202]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000093,"geom:area_square_m":1000714.421904,"geom:bbox":"-90.083037,30.0208350003,-90.0707990002,30.0320701366","geom:latitude":30.025571,"geom:longitude":-90.077227,"iso:country":"US","lbl:latitude":30.025202,"lbl:longitude":-90.077344,"lbl:max_zoom":18,"mps:latitude":30.025202,"mps:longitude":-90.077344,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Lake Ter","Lk Ter","Lk Terrace"],"reversegeo:latitude":30.025202,"reversegeo:longitude":-90.077344,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[1108739667,102191575,1108746797,85633793,85948111,102086693,85688735,1108739491,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"9ce2570a89ae022379cb4e4ee554380d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746797,"microhood_id":1108739923,"neighbourhood_id":1108739667,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108739923,"neighbourhood_id":1108739667,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108739923,"neighbourhood_id":1108739667,"region_id":85688735}],"wof:id":1108739923,"wof:lastmodified":1566623879,"wof:name":"Lake Terrace","wof:parent_id":1108739667,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829223],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108740183.geojson b/fixtures/microhoods/1108740183.geojson new file mode 100644 index 0000000..6f53e3d --- /dev/null +++ b/fixtures/microhoods/1108740183.geojson @@ -0,0 +1 @@ +{"id":1108740183,"type":"Feature","bbox":[-90.09911307628425,30.01853499998805,-90.08250699953277,30.03015613772514],"geometry":{"type":"Polygon","coordinates":[[[-90.08289895578856,30.02426393099051],[-90.08321779919605,30.02425640210948],[-90.08340605515531,30.02424242062509],[-90.0835020954415,30.0242210804608],[-90.08355266532672,30.02419127781588],[-90.08355776481096,30.02415301269031],[-90.08356498908027,30.02410223775578],[-90.08357433813468,30.0240389530123],[-90.08358581197419,30.02396315845986],[-90.0835994105988,30.02387485409847],[-90.08361215930935,30.02379648394421],[-90.08362405810587,30.02372804799707],[-90.08363510698835,30.02366954625708],[-90.08364530595681,30.02362097872421],[-90.08365592988227,30.02357020354554],[-90.08366697876477,30.02351722072107],[-90.08367845260426,30.02346203025079],[-90.08369035140078,30.0234046321347],[-90.08370140028326,30.02334649810951],[-90.08371159925171,30.0232876281752],[-90.08372094830612,30.02322802233179],[-90.08372944744649,30.02316768057926],[-90.08373752162984,30.02310844260649],[-90.08374517085618,30.02305030841347],[-90.0837523951255,30.0229932780002],[-90.08375919443779,30.02293735136669],[-90.08376429392202,30.02288142470163],[-90.08376769357817,30.02282549800503],[-90.08376939340624,30.02276957127687],[-90.08376939340624,30.02271364451717],[-90.0837685434922,30.02265403832029],[-90.08376684366414,30.02259075268623],[-90.08376429392202,30.022523787615],[-90.08376089426586,30.0224531431066],[-90.0837549448676,30.02237881912955],[-90.08374644572723,30.02230081568387],[-90.08373539684473,30.02221913276956],[-90.08372179822015,30.0221337703866],[-90.08370947446662,30.02205208736113],[-90.08369842558412,30.02197408369315],[-90.08368865157269,30.02189975938263],[-90.08368015243232,30.0218291144296],[-90.08366995346387,30.02175994120221],[-90.08365805466735,30.02169223970046],[-90.08364445604276,30.02162600992434],[-90.08362915759008,30.02156125187387],[-90.08361385913742,30.02149833350537],[-90.08359856068473,30.02143725481887],[-90.08358326223207,30.02137801581435],[-90.0835679637794,30.02132061649181],[-90.08355606498287,30.02126468891849],[-90.08354756584251,30.02121023309437],[-90.08354246635827,30.02115724901947],[-90.0835407665302,30.02110573669377],[-90.08353736687405,30.02105201666294],[-90.08353226738981,30.02099608892697],[-90.08352334329243,30.0209228676993],[-90.08351556938655,30.02086767365389],[-90.08357400013819,30.02086800001908],[-90.08366600020503,30.02086799984896],[-90.08392900076969,30.02085100052215],[-90.08403800043926,30.02084299993312],[-90.08435900046865,30.02081999992645],[-90.08459000060294,30.02079300050758],[-90.08476799935661,30.02077200040166],[-90.08521099964595,30.02071200032531],[-90.08536999989744,30.02068299979932],[-90.08566800013631,30.02061999984201],[-90.08595299971935,30.02052999989161],[-90.08601999933329,30.02050700009161],[-90.08625400000116,30.02042799980526],[-90.08682099987605,30.02018400024209],[-90.0873760003145,30.01994499938073],[-90.08740900022136,30.01993000010617],[-90.08788899955616,30.01971399947326],[-90.08837800035982,30.01951299947862],[-90.088483999362,30.01946800029106],[-90.08881299915035,30.01932700000721],[-90.08939300025658,30.01909700016451],[-90.0898360000622,30.01894600047392],[-90.09004599979713,30.01889000073178],[-90.09039599985763,30.01879700061231],[-90.09075299977113,30.01873600051731],[-90.09107900036375,30.01868000030538],[-90.09162000045716,30.01861799998867],[-90.09207400008474,30.01856599942343],[-90.09275300024444,30.01855699959894],[-90.09311099939988,30.01853499998805],[-90.09363099961041,30.01853600026163],[-90.09377200038223,30.01854200032469],[-90.09426200030292,30.0186149995166],[-90.09478800063646,30.01867199997339],[-90.09550599983825,30.01871599986049],[-90.09598399931372,30.01875600030918],[-90.0962740006962,30.01878100006826],[-90.09659299975121,30.0188240001215],[-90.09673600008423,30.01883399997639],[-90.09686699993928,30.01884099988994],[-90.0970439998101,30.01883399972527],[-90.0974010000986,30.01882599952395],[-90.097522999857,30.0188309997998],[-90.09790299998139,30.01885600066647],[-90.09815600008722,30.01887400065779],[-90.09833673181829,30.01888744327558],[-90.09823728148618,30.01967103998311],[-90.09817862856211,30.02012694951527],[-90.09814130397407,30.02040857408214],[-90.09811197751203,30.02062094609994],[-90.098090649176,30.02076406556868],[-90.09808265104999,30.02088871793504],[-90.098087983134,30.02099490319902],[-90.09810664542802,30.02108262136061],[-90.09813863793207,30.02115187241981],[-90.09816663137309,30.02122343178919],[-90.09819062575113,30.02129729946873],[-90.09821062106614,30.02137347545845],[-90.09822661731816,30.02145195975833],[-90.09824927867518,30.02152813564486],[-90.09827860513722,30.02160200311804],[-90.09831459670427,30.02167356217787],[-90.09835725337632,30.02174281282436],[-90.09839057890136,30.02181552593931],[-90.0984145732794,30.02189170152275],[-90.09842923651041,30.02197133957467],[-90.09843456859441,30.02205444009506],[-90.09843190255242,30.02214215721645],[-90.09842123838439,30.02223449093883],[-90.09840257609038,30.02233144126221],[-90.09837591567035,30.02243300818658],[-90.09836125243933,30.02252303337114],[-90.09835858639732,30.02260151681591],[-90.09836791754434,30.02266845852087],[-90.09838924588037,30.02272385848602],[-90.09842257140541,30.0227931083496],[-90.09846789411947,30.02287620811159],[-90.09852521402253,30.02297315777201],[-90.09859453111463,30.02308395733086],[-90.09866384820671,30.02318783183602],[-90.0987331652988,30.02328478128749],[-90.09880248239088,30.02337480568528],[-90.09887179948296,30.02345790502938],[-90.09892911938604,30.0235375418476],[-90.09897444210009,30.02361371613996],[-90.09900776762512,30.02368642790643],[-90.09902909596116,30.02375567714702],[-90.09904909127617,30.0238353136731],[-90.0990677535702,30.02392533748466],[-90.09908508284322,30.02402574858171],[-90.09910107909525,30.02413654696424],[-90.09911041024226,30.0242404203666],[-90.09911307628425,30.02433736878879],[-90.09910907722124,30.02442739223082],[-90.09909841305324,30.02451049069267],[-90.09908641586422,30.02459128080545],[-90.0990730856542,30.02466976256915],[-90.09905842242318,30.02474593598376],[-90.09904242617118,30.0248198010493],[-90.09901576575115,30.024884432961],[-90.0989784411631,30.02493983171887],[-90.09893045240705,30.02498599732292],[-90.09887179948296,30.02502292977314],[-90.09878382009686,30.02507717423276],[-90.09866651424872,30.02514873070178],[-90.09851988193853,30.02523759918019],[-90.09834392316633,30.02534377966801],[-90.09818929273013,30.02544534352711],[-90.09805599062997,30.02554229075747],[-90.09794401686582,30.02563462135911],[-90.09785337143771,30.02572233533203],[-90.09775472788358,30.02580427859917],[-90.09764808620345,30.02588045116054],[-90.0975334463973,30.02595085301614],[-90.09741080846516,30.02601548416596],[-90.09730816584803,30.0260766529032],[-90.09722551854593,30.02613435922785],[-90.09716286655885,30.02618860313992],[-90.09712020988681,30.0262393846394],[-90.09707888623575,30.02630055319713],[-90.0970388956057,30.02637210881311],[-90.09700023799665,30.02645405148733],[-90.0969629134086,30.0265463812198],[-90.09693491996757,30.02663986498138],[-90.09691625767354,30.02673450277207],[-90.09690692652653,30.02683029459186],[-90.09690692652653,30.02692724044076],[-90.09691359163153,30.02703918961288],[-90.09692692184156,30.02716614210822],[-90.09694691715657,30.02730809792679],[-90.0969735775766,30.02746505706858],[-90.09700557008064,30.02762894056021],[-90.09704289466869,30.02779974840167],[-90.09709754852976,30.02802364472826],[-90.09711841193192,30.02810392527718],[-90.09711056227992,30.02810522204628],[-90.09688666018162,30.02814220477218],[-90.09685100258866,30.0281480925387],[-90.09685256137374,30.02819630173125],[-90.09686601323757,30.02855198941409],[-90.09686673694893,30.02857113671339],[-90.0968122386496,30.0286792679767],[-90.09666448392068,30.0288822512378],[-90.09654563834243,30.02896159917688],[-90.09640597309945,30.02903463081853],[-90.09617773784868,30.02908413500558],[-90.09561873777453,30.02913513702855],[-90.09559670157684,30.02913479276904],[-90.09453373696138,30.02911813811309],[-90.09433623145569,30.02912312777641],[-90.09405873631582,30.0291301377993],[-90.09388873754395,30.02914713791665],[-90.09367673802082,30.02919913635719],[-90.09334881480234,30.02944360610941],[-90.09325634524102,30.02950273360401],[-90.09289579209131,30.02973327420374],[-90.09242220275698,30.02998227084088],[-90.09209373910123,30.03007213682282],[-90.09167773459822,30.03015613772514],[-90.0915007370835,30.03015513724685],[-90.09102873730959,30.03008313730289],[-90.09032830591671,30.02987991043321],[-90.08999970674878,30.02973065652638],[-90.08979001073176,30.02953784153156],[-90.08972991190554,30.0294825798413],[-90.08940667354332,30.02901268683375],[-90.08939171762063,30.02899318128898],[-90.08907831992128,30.02859442177822],[-90.0885416744559,30.02805832170718],[-90.08837449996484,30.02790043050883],[-90.08823273603849,30.02782713659505],[-90.08802908702553,30.02775178758901],[-90.08783273612005,30.02767913725387],[-90.08711473495693,30.02751513562911],[-90.08676173430382,30.02747713756004],[-90.08599657658749,30.02745901390964],[-90.08560612382497,30.02744976258049],[-90.08557973473863,30.02744913630828],[-90.08447573482356,30.02744913912226],[-90.08403873409976,30.02743013621446],[-90.08377673480989,30.02739613767495],[-90.08369673583161,30.02737913861841],[-90.08355756830646,30.02733899998595],[-90.08338546369733,30.02726337383207],[-90.08313670054737,30.02713095319869],[-90.08296346034588,30.02698016283061],[-90.08295191183254,30.02696695298085],[-90.08286460773309,30.02685703418537],[-90.0828275988669,30.02677420566283],[-90.08282412570688,30.02675831441078],[-90.08280473379088,30.02662513624006],[-90.08280572622724,30.02660908349427],[-90.08281615535675,30.02644013592397],[-90.08281759334254,30.02641683087671],[-90.08281942851282,30.0263812017066],[-90.08280826361455,30.02634724990479],[-90.08280261373635,30.0263300703642],[-90.08276307370019,30.02628580560307],[-90.08274113800904,30.02627460646824],[-90.08266914945699,30.02625348573642],[-90.08254060543263,30.02622878188706],[-90.08251190367825,30.02622326646999],[-90.08251200053482,30.02621099994329],[-90.08250699953277,30.02611400018184],[-90.08253400004261,30.02598800038405],[-90.08254400007786,30.02555500042956],[-90.08251399950933,30.02522400049591],[-90.08279199996005,30.02483500013058],[-90.08289895578856,30.02426393099051]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000138,"geom:area_square_m":1478828.363494,"geom:bbox":"-90.0991130763,30.018535,-90.0825069995,30.0301561377","geom:latitude":30.023965,"geom:longitude":-90.091286,"iso:country":"US","lbl:latitude":30.023865,"lbl:longitude":-90.091957,"lbl:max_zoom":18,"mps:latitude":30.023865,"mps:longitude":-90.091957,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Lake Vis","Lk Vis","Lk Vista"],"reversegeo:latitude":30.023865,"reversegeo:longitude":-90.091957,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[1108740155,102191575,1108739491,85633793,85948111,102086693,85688735,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"c9a6e63b759a554954b076c97e061cf8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108740183,"neighbourhood_id":1108740155,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108740183,"neighbourhood_id":1108740155,"region_id":85688735}],"wof:id":1108740183,"wof:lastmodified":1566623860,"wof:name":"Lake Vista","wof:parent_id":1108740155,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866053],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108741363.geojson b/fixtures/microhoods/1108741363.geojson new file mode 100644 index 0000000..40afb91 --- /dev/null +++ b/fixtures/microhoods/1108741363.geojson @@ -0,0 +1 @@ +{"id":1108741363,"type":"Feature","bbox":[-90.10600763252027,30.0230765655907,-90.10600763252027,30.0230765655907],"geometry":{"type":"Point","coordinates":[-90.10600763252027,30.0230765655907]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-90.1060076325,30.0230765656,-90.1060076325,30.0230765656","geom:latitude":30.023077,"geom:longitude":-90.106008,"iso:country":"US","lbl:latitude":30.023077,"lbl:longitude":-90.106008,"lbl:max_zoom":18,"mps:latitude":30.023294,"mps:longitude":-90.105858,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":16,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Lakeshore"],"name:deu_x_preferred":["Lakeshore"],"name:fra_x_preferred":["Lakeshore"],"name:swe_x_preferred":["Lakeshore"],"reversegeo:latitude":30.023294,"reversegeo:longitude":-90.105858,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108740155,102191575,1108739491,85633793,85948111,102086693,85688735,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"bd031f0ec375cd52417c3add71d1c68d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108741363,"neighbourhood_id":1108740155,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108741363,"neighbourhood_id":1108740155,"region_id":85688735}],"wof:id":1108741363,"wof:lastmodified":1566623859,"wof:name":"Lakeshore","wof:parent_id":1108740155,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829329],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108745657.geojson b/fixtures/microhoods/1108745657.geojson new file mode 100644 index 0000000..e5c3bb4 --- /dev/null +++ b/fixtures/microhoods/1108745657.geojson @@ -0,0 +1 @@ +{"id":1108745657,"type":"Feature","bbox":[-90.1062822204641,30.01888744327558,-90.09690692652653,30.02874613798423],"geometry":{"type":"Polygon","coordinates":[[[-90.1062822204641,30.01960902527518],[-90.10537001424599,30.02756723814352],[-90.10502173892968,30.02753313774712],[-90.10412873950385,30.02749113607898],[-90.10368773952335,30.0274901377187],[-90.10353374014448,30.02750213627362],[-90.10314242853067,30.02765727736],[-90.10272134721546,30.02794571114539],[-90.10259986470157,30.02802892480025],[-90.10190783314209,30.02847124492689],[-90.10171785237475,30.02854828842541],[-90.10161973954102,30.02856413752069],[-90.10140973756911,30.02857213624124],[-90.10118973862365,30.02856013551265],[-90.10070657755823,30.02844272587006],[-90.10061773868385,30.02842113609007],[-90.10042773944456,30.02838413664598],[-90.10010773828367,30.02834813715421],[-90.09992873898916,30.02835013631091],[-90.0996787363495,30.02838313691625],[-90.0991662901084,30.02852564165422],[-90.09859273765684,30.0286851366877],[-90.09830073830608,30.02874113714632],[-90.09819673809005,30.02874613798423],[-90.09806773764747,30.02873813607308],[-90.09788691804258,30.02871242639246],[-90.09778770937478,30.02867155540781],[-90.09763373146896,30.02855377621412],[-90.09757228132575,30.02849740294149],[-90.09752770683181,30.0284419648204],[-90.09750869145743,30.0284013571841],[-90.09748418054168,30.02834487671663],[-90.09740773881482,30.02805613687991],[-90.097135625457,30.02810108158837],[-90.09711841193192,30.02810392527718],[-90.09709754852976,30.02802364472826],[-90.09704289466869,30.02779974840167],[-90.09700557008064,30.02762894056021],[-90.0969735775766,30.02746505706858],[-90.09694691715657,30.02730809792679],[-90.09692692184156,30.02716614210822],[-90.09691359163153,30.02703918961288],[-90.09690692652653,30.02692724044076],[-90.09690692652653,30.02683029459186],[-90.09691625767354,30.02673450277207],[-90.09693491996757,30.02663986498138],[-90.0969629134086,30.0265463812198],[-90.09700023799665,30.02645405148733],[-90.0970388956057,30.02637210881311],[-90.09707888623575,30.02630055319713],[-90.09712020988681,30.0262393846394],[-90.09716286655885,30.02618860313992],[-90.09722551854593,30.02613435922785],[-90.09730816584803,30.0260766529032],[-90.09741080846516,30.02601548416596],[-90.0975334463973,30.02595085301614],[-90.09764808620345,30.02588045116054],[-90.09775472788358,30.02580427859917],[-90.09785337143771,30.02572233533203],[-90.09794401686582,30.02563462135911],[-90.09805599062997,30.02554229075747],[-90.09818929273013,30.02544534352711],[-90.09834392316633,30.02534377966801],[-90.09851988193853,30.02523759918019],[-90.09866651424872,30.02514873070178],[-90.09878382009686,30.02507717423276],[-90.09887179948296,30.02502292977314],[-90.09893045240705,30.02498599732292],[-90.0989784411631,30.02493983171887],[-90.09901576575115,30.024884432961],[-90.09904242617118,30.0248198010493],[-90.09905842242318,30.02474593598376],[-90.0990730856542,30.02466976256915],[-90.09908641586422,30.02459128080545],[-90.09909841305324,30.02451049069267],[-90.09910907722124,30.02442739223082],[-90.09911307628425,30.02433736878879],[-90.09911041024226,30.0242404203666],[-90.09910107909525,30.02413654696424],[-90.09908508284322,30.02402574858171],[-90.0990677535702,30.02392533748466],[-90.09904909127617,30.0238353136731],[-90.09902909596116,30.02375567714702],[-90.09900776762512,30.02368642790643],[-90.09897444210009,30.02361371613996],[-90.09892911938604,30.0235375418476],[-90.09887179948296,30.02345790502938],[-90.09880248239088,30.02337480568528],[-90.0987331652988,30.02328478128749],[-90.09866384820671,30.02318783183602],[-90.09859453111463,30.02308395733086],[-90.09852521402253,30.02297315777201],[-90.09846789411947,30.02287620811159],[-90.09842257140541,30.0227931083496],[-90.09838924588037,30.02272385848602],[-90.09836791754434,30.02266845852087],[-90.09835858639732,30.02260151681591],[-90.09836125243933,30.02252303337114],[-90.09837591567035,30.02243300818658],[-90.09840257609038,30.02233144126221],[-90.09842123838439,30.02223449093883],[-90.09843190255242,30.02214215721645],[-90.09843456859441,30.02205444009506],[-90.09842923651041,30.02197133957467],[-90.0984145732794,30.02189170152275],[-90.09839057890136,30.02181552593931],[-90.09835725337632,30.02174281282436],[-90.09831459670427,30.02167356217787],[-90.09827860513722,30.02160200311804],[-90.09824927867518,30.02152813564486],[-90.09822661731816,30.02145195975833],[-90.09821062106614,30.02137347545845],[-90.09819062575113,30.02129729946873],[-90.09816663137309,30.02122343178919],[-90.09813863793207,30.02115187241981],[-90.09810664542802,30.02108262136061],[-90.098087983134,30.02099490319902],[-90.09808265104999,30.02088871793504],[-90.098090649176,30.02076406556868],[-90.09811197751203,30.02062094609994],[-90.09814130397407,30.02040857408214],[-90.09817862856211,30.02012694951527],[-90.09823728148618,30.01967103998311],[-90.09833673181829,30.01888744327558],[-90.09851900001073,30.01890100017359],[-90.09868400034726,30.01890900011005],[-90.09976100055383,30.01901299996362],[-90.10106499937828,30.01912400019694],[-90.10202600003909,30.01920900035546],[-90.10306200041451,30.01930800015484],[-90.10402199951055,30.01940000010694],[-90.10503100000135,30.01948799953103],[-90.10604700005983,30.01959000019752],[-90.1062822204641,30.01960902527518]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":737006.030148,"geom:bbox":"-90.1062822205,30.0188874433,-90.0969069265,30.028746138","geom:latitude":30.023743,"geom:longitude":-90.101771,"iso:country":"US","lbl:latitude":30.023452,"lbl:longitude":-90.102329,"lbl:max_zoom":18,"mps:latitude":30.023452,"mps:longitude":-90.102329,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ita_x_preferred":["Lakeshore East"],"reversegeo:latitude":30.023452,"reversegeo:longitude":-90.102329,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[1108740155,102191575,1108739491,85633793,85948111,102086693,85688735,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"0874087edb372f3ee39fecbc40979d46","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108745657,"neighbourhood_id":1108740155,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108745657,"neighbourhood_id":1108740155,"region_id":85688735}],"wof:id":1108745657,"wof:lastmodified":1566623859,"wof:name":"Lakeshore East","wof:parent_id":1108740155,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829325],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746373.geojson b/fixtures/microhoods/1108746373.geojson new file mode 100644 index 0000000..561202f --- /dev/null +++ b/fixtures/microhoods/1108746373.geojson @@ -0,0 +1 @@ +{"id":1108746373,"type":"Feature","bbox":[-90.11471599987665,30.01948799976833,-90.10537001424599,30.02798060189013],"geometry":{"type":"Polygon","coordinates":[[[-90.10537001424599,30.02756723814352],[-90.1062822204641,30.01960902527518],[-90.10645499949791,30.01962299997498],[-90.10755399919383,30.01971299957906],[-90.10857299988466,30.01980700057213],[-90.10937999988857,30.01987799974946],[-90.11080299951101,30.02000199988753],[-90.11173299963292,30.02007799978077],[-90.11246900020026,30.02016499961519],[-90.11312799940967,30.02022599989424],[-90.11354600040022,30.02025600009594],[-90.11359699996594,30.02021699971129],[-90.1136469998401,30.02018200039415],[-90.11369300009977,30.02015799990956],[-90.11384900006291,30.02011599951937],[-90.11388400083078,30.02009499981468],[-90.11471599987665,30.01948799976833],[-90.11458600024811,30.01997199986398],[-90.11453900064336,30.02014699969821],[-90.11439499989281,30.02162600069178],[-90.11428599981204,30.02311799957416],[-90.11418668738226,30.02330371499221],[-90.11418599982046,30.02330500059809],[-90.11396499950091,30.02385499967657],[-90.11384799989376,30.02432699972677],[-90.11377599923871,30.02659800013634],[-90.11355499967911,30.02753100005996],[-90.11335999980767,30.02793499969962],[-90.11282409055698,30.02798060189013],[-90.11317964716345,30.02719991413253],[-90.11313374761698,30.02708705305573],[-90.11310206977134,30.02697593871069],[-90.1130891008159,30.02692258517283],[-90.11305084671446,30.02683915206454],[-90.11302736195019,30.02683190978837],[-90.11298574306315,30.02682813627884],[-90.11282885431551,30.02685706881181],[-90.11241188914514,30.02693396608952],[-90.11235674197592,30.02694413608262],[-90.11116681759599,30.02717634175093],[-90.11114630247297,30.02718127231389],[-90.11012494088122,30.02743828306678],[-90.10993873980422,30.02748513935543],[-90.1087277405642,30.02783013779063],[-90.10852674063985,30.02788413714446],[-90.10842673964967,30.02790013793768],[-90.10833974149773,30.02790813607508],[-90.10744674118536,30.02780613620343],[-90.10655193142331,30.02770159531846],[-90.1061457389128,30.02765413699262],[-90.10550173943099,30.0275801356439],[-90.10537001424599,30.02756723814352]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000063,"geom:area_square_m":671702.377551,"geom:bbox":"-90.1147159999,30.0194879998,-90.1053700142,30.0279806019","geom:latitude":30.023709,"geom:longitude":-90.109842,"iso:country":"US","lbl:latitude":30.023715,"lbl:longitude":-90.109843,"lbl:max_zoom":18,"mps:latitude":30.023715,"mps:longitude":-90.109843,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":30.023715,"reversegeo:longitude":-90.109843,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108740155,102191575,1108739491,85633793,85948111,102086693,85688735,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"63039f6d60bdd99b2bee1c301428b4a8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746373,"neighbourhood_id":1108740155,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108746373,"neighbourhood_id":1108740155,"region_id":85688735}],"wof:id":1108746373,"wof:lastmodified":1566623861,"wof:name":"Lakeshore West","wof:parent_id":1108740155,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784447],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746375.geojson b/fixtures/microhoods/1108746375.geojson new file mode 100644 index 0000000..207ff15 --- /dev/null +++ b/fixtures/microhoods/1108746375.geojson @@ -0,0 +1 @@ +{"id":1108746375,"type":"Feature","bbox":[-90.0964179999951,29.93552199987441,-90.09088773728614,29.9423556436823],"geometry":{"type":"Polygon","coordinates":[[[-90.09607000039765,29.94146800025845],[-90.09446965540727,29.9423556436823],[-90.09307079980968,29.94049149020465],[-90.09088773728614,29.93756203558658],[-90.0923395798382,29.9367355280886],[-90.09334633197284,29.93617533576827],[-90.09378500022721,29.93592700010241],[-90.09428399954446,29.93573900013982],[-90.09487300024564,29.93552199987441],[-90.09493099972282,29.93563099997899],[-90.09531400038219,29.93642199979885],[-90.09576699991617,29.93738600039291],[-90.09619000040443,29.93830599969193],[-90.09633000013852,29.93860100019657],[-90.09639599988677,29.93887000004235],[-90.09641399983043,29.93897799989653],[-90.0964179999951,29.93907600046387],[-90.09641499963683,29.93917999998644],[-90.09640899992384,29.93930300018793],[-90.09638000017519,29.9394999995701],[-90.09634100023315,29.93963199957982],[-90.09629599969469,29.93975300003969],[-90.09617000076717,29.9399960004144],[-90.09611299999935,29.94015900033078],[-90.09607600046951,29.94027900049682],[-90.09604400050907,29.94040600023337],[-90.09602899988505,29.9405240004197],[-90.09602599987753,29.94081100049332],[-90.09602499962978,29.94104700021446],[-90.09603799971747,29.94123800038087],[-90.09607000039765,29.94146800025845]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":228650.148464,"geom:bbox":"-90.096418,29.9355219999,-90.0908877373,29.9423556437","geom:latitude":29.938768,"geom:longitude":-90.094112,"iso:country":"US","lbl:latitude":29.93861,"lbl:longitude":-90.094154,"lbl:max_zoom":18,"mps:latitude":29.93861,"mps:longitude":-90.094154,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Magnolia Projects"],"name:eng_x_variant":["Magnolia","C.J. Peete Projects"],"name:fas_x_preferred":["پروژه‌های ماگنولیا"],"name:vol_x_preferred":["Lakeshore West"],"reversegeo:latitude":29.93861,"reversegeo:longitude":-90.094154,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866121,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6731941"},"wof:country":"US","wof:geomhash":"1ba5944e27ec4ea711d5736e8502b26d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746375,"neighbourhood_id":85866121,"region_id":85688735}],"wof:id":1108746375,"wof:lastmodified":1566623861,"wof:name":"Harmony Oaks","wof:parent_id":85866121,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420521713],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746553.geojson b/fixtures/microhoods/1108746553.geojson new file mode 100644 index 0000000..940a799 --- /dev/null +++ b/fixtures/microhoods/1108746553.geojson @@ -0,0 +1 @@ +{"id":1108746553,"type":"Feature","bbox":[-89.93086120207106,30.0092594159142,-89.8973060001359,30.04128400017922],"geometry":{"type":"Polygon","coordinates":[[[-89.8973060001359,30.04128400017922],[-89.90729592385921,30.03077357038119],[-89.90801933258689,30.02996287599266],[-89.9082077787053,30.02971476579429],[-89.90834742139725,30.02938734826872],[-89.90842593686769,30.02904109232837],[-89.90818245918905,30.01326526021878],[-89.92920269878012,30.0092594159142],[-89.93086120207106,30.03006554845688],[-89.93083700032894,30.03007400004042],[-89.93072700027284,30.0301130002516],[-89.93048899973516,30.03019600007496],[-89.92906000014706,30.03069700009037],[-89.92890200061994,30.03075200044274],[-89.92780999938023,30.03113499971012],[-89.92764100052365,30.03119600008808],[-89.9274480000086,30.0312659999927],[-89.92732499976043,30.03131000040322],[-89.92690399989958,30.03146199931542],[-89.92669800075244,30.03153700021051],[-89.9264540000263,30.03162500014031],[-89.92613599985043,30.03173999939219],[-89.92471799944626,30.0322109997261],[-89.92429200029106,30.03235300060611],[-89.92402600008396,30.03244000009459],[-89.92315100000522,30.03272700046458],[-89.92269199988604,30.03287799984382],[-89.92186599944726,30.03313799947437],[-89.92178499964025,30.03316399970615],[-89.92103600006486,30.03340000003896],[-89.92000299970117,30.03372500036319],[-89.91993600018502,30.03374699945859],[-89.91971699969119,30.03381699957685],[-89.91926300000037,30.03396300000033],[-89.9189030007148,30.03407800008144],[-89.91876999992085,30.03412100005765],[-89.91729299972958,30.03459499991227],[-89.91558099919892,30.03514100041158],[-89.91488899998765,30.03535800034668],[-89.91467200028099,30.03542599990376],[-89.91429299975708,30.03554500070568],[-89.91408399943995,30.03560999986705],[-89.91343600048782,30.03582299946102],[-89.91320199941237,30.03589999982161],[-89.9131249994391,30.03592500033104],[-89.91291600068412,30.03599399996656],[-89.91250200023076,30.03612999962461],[-89.91203599998045,30.03628300052611],[-89.91185700026207,30.03634199982778],[-89.91160600027665,30.03642399991222],[-89.91152399955912,30.03645000021336],[-89.91142299945922,30.03648300054448],[-89.9106610000063,30.03672699958836],[-89.90979400015247,30.03700400063131],[-89.90848299950339,30.03742299951237],[-89.90840200044549,30.03744700035309],[-89.90790599988243,30.03759200038457],[-89.90709200058016,30.03785900040826],[-89.9062339993939,30.03813699951764],[-89.90545399984052,30.03838399996562],[-89.90237599964571,30.03936600006056],[-89.9008589996201,30.03984399988282],[-89.89997100015164,30.04014900048289],[-89.89908400009651,30.04050200025489],[-89.89843600046736,30.04078099971738],[-89.89784600002929,30.04106199960433],[-89.89750399976549,30.04124099957652],[-89.8974370007664,30.04126599986586],[-89.89738899932357,30.04127900005839],[-89.8973060001359,30.04128400017922]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000537,"geom:area_square_m":5749352.839938,"geom:bbox":"-89.9308612021,30.0092594159,-89.8973060001,30.0412840002","geom:latitude":30.023775,"geom:longitude":-89.917845,"iso:country":"US","lbl:latitude":30.022563,"lbl:longitude":-89.919243,"lbl:max_zoom":18,"mps:latitude":30.022563,"mps:longitude":-89.919243,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:deu_x_preferred":["Michoud"],"name:eng_x_preferred":["Michoud"],"name:ita_x_preferred":["Michoud"],"name:nld_x_preferred":["Michoud"],"name:und_x_variant":["Micheaud"],"reversegeo:latitude":30.022563,"reversegeo:longitude":-89.919243,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85866175,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1765308"},"wof:country":"US","wof:geomhash":"dccaa9711eb21eedb8556c02c6220323","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108746553,"neighbourhood_id":85866175,"region_id":85688735}],"wof:id":1108746553,"wof:lastmodified":1566623861,"wof:name":"Michoud","wof:parent_id":85866175,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85833951],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746555.geojson b/fixtures/microhoods/1108746555.geojson new file mode 100644 index 0000000..4df4a54 --- /dev/null +++ b/fixtures/microhoods/1108746555.geojson @@ -0,0 +1 @@ +{"id":1108746555,"type":"Feature","bbox":[-90.05655751802747,30.00841640689407,-90.04637144256995,30.02718700010955],"geometry":{"type":"Polygon","coordinates":[[[-90.05574806417575,30.01315897624668],[-90.05655751802747,30.02564745401339],[-90.05646899945795,30.025658999864],[-90.05551699989299,30.02578500058012],[-90.05494199970394,30.0258620005822],[-90.05445399972866,30.0259339993851],[-90.05364399997642,30.02606000058015],[-90.05346900055643,30.02608699939251],[-90.05330500010713,30.02611299967301],[-90.0522469993413,30.02638799995069],[-90.05206900043457,30.02642000031101],[-90.04970699975041,30.02684499928098],[-90.04905199979555,30.02694999987027],[-90.04843799996353,30.02706500051404],[-90.04805400078057,30.02715099956052],[-90.0479369998644,30.02718700010955],[-90.0479089995754,30.02704499974302],[-90.04787500009897,30.02687100040759],[-90.04784400001367,30.02672299984173],[-90.04776799983374,30.02664499988043],[-90.04772600006145,30.02599700055568],[-90.04763799967732,30.02497899984523],[-90.04757000065207,30.02396199988184],[-90.04748099943643,30.02294300009685],[-90.0474650005057,30.02276299969802],[-90.04737200035012,30.02170100042353],[-90.04734900033122,30.02110699985167],[-90.04733099994158,30.02070399951979],[-90.04726800041168,30.01970199999208],[-90.04716000003704,30.01867000031533],[-90.04707799969424,30.01762799970568],[-90.04706500016613,30.0174670003064],[-90.04697700015838,30.01641599978922],[-90.04691299973032,30.01575999974924],[-90.04687599961062,30.01541199955495],[-90.04680799929902,30.01440399988116],[-90.04673500002706,30.01326200003759],[-90.04670500053501,30.01289300026413],[-90.0466720004138,30.01251200045223],[-90.04650400009801,30.01076399979259],[-90.04637144256995,30.00898593489614],[-90.05544066954356,30.00841640689407],[-90.05574806417575,30.01315897624668]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000159,"geom:area_square_m":1697781.358908,"geom:bbox":"-90.056557518,30.0084164069,-90.0463714426,30.0271870001","geom:latitude":30.017501,"geom:longitude":-90.051503,"iso:country":"US","lbl:latitude":30.017593,"lbl:longitude":-90.051504,"lbl:max_zoom":18,"mps:latitude":30.017593,"mps:longitude":-90.051504,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["Seabrook"],"name:ceb_x_preferred":["Seabrook"],"name:deu_x_preferred":["Seabrook"],"name:fra_x_preferred":["Seabrook"],"name:ita_x_preferred":["Seabrook"],"name:nld_x_preferred":["Seabrook"],"name:pol_x_preferred":["Seabrook"],"name:rus_x_preferred":["Сибрук"],"name:srp_x_preferred":["Сибрук"],"name:swe_x_preferred":["Seabrook"],"name:vol_x_preferred":["Seabrook"],"reversegeo:latitude":30.017593,"reversegeo:longitude":-90.051504,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85834475,102191575,1108746797,85633793,85948111,102086693,85688735,1108739491],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"eb84cb0f8ddc95221714497d6adf9ba6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746797,"microhood_id":1108746555,"neighbourhood_id":85834475,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746555,"neighbourhood_id":85834475,"region_id":85688735}],"wof:id":1108746555,"wof:lastmodified":1566623861,"wof:name":"Seabrook","wof:parent_id":85834475,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85847541],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746611.geojson b/fixtures/microhoods/1108746611.geojson new file mode 100644 index 0000000..e524772 --- /dev/null +++ b/fixtures/microhoods/1108746611.geojson @@ -0,0 +1 @@ +{"id":1108746611,"type":"Feature","bbox":[-90.08376939340624,30.02086500060289,-90.08270199921962,30.02426393099051],"geometry":{"type":"Polygon","coordinates":[[[-90.08351556938655,30.02086767365389],[-90.08352334329243,30.0209228676993],[-90.08353226738981,30.02099608892697],[-90.08353736687405,30.02105201666294],[-90.0835407665302,30.02110573669377],[-90.08354246635827,30.02115724901947],[-90.08354756584251,30.02121023309437],[-90.08355606498287,30.02126468891849],[-90.0835679637794,30.02132061649181],[-90.08358326223207,30.02137801581435],[-90.08359856068473,30.02143725481887],[-90.08361385913742,30.02149833350537],[-90.08362915759008,30.02156125187387],[-90.08364445604276,30.02162600992434],[-90.08365805466735,30.02169223970046],[-90.08366995346387,30.02175994120221],[-90.08368015243232,30.0218291144296],[-90.08368865157269,30.02189975938263],[-90.08369842558412,30.02197408369315],[-90.08370947446662,30.02205208736113],[-90.08372179822015,30.0221337703866],[-90.08373539684473,30.02221913276956],[-90.08374644572723,30.02230081568387],[-90.0837549448676,30.02237881912955],[-90.08376089426586,30.0224531431066],[-90.08376429392202,30.022523787615],[-90.08376684366414,30.02259075268623],[-90.0837685434922,30.02265403832029],[-90.08376939340624,30.02271364451717],[-90.08376939340624,30.02276957127687],[-90.08376769357817,30.02282549800503],[-90.08376429392202,30.02288142470163],[-90.08375919443779,30.02293735136669],[-90.0837523951255,30.0229932780002],[-90.08374517085618,30.02305030841347],[-90.08373752162984,30.02310844260649],[-90.08372944744649,30.02316768057926],[-90.08372094830612,30.02322802233179],[-90.08371159925171,30.0232876281752],[-90.08370140028326,30.02334649810951],[-90.08369035140078,30.0234046321347],[-90.08367845260426,30.02346203025079],[-90.08366697876477,30.02351722072107],[-90.08365592988227,30.02357020354554],[-90.08364530595681,30.02362097872421],[-90.08363510698835,30.02366954625708],[-90.08362405810587,30.02372804799707],[-90.08361215930935,30.02379648394421],[-90.0835994105988,30.02387485409847],[-90.08358581197419,30.02396315845986],[-90.08357433813468,30.0240389530123],[-90.08356498908027,30.02410223775578],[-90.08355776481096,30.02415301269031],[-90.08355266532672,30.02419127781588],[-90.0835020954415,30.0242210804608],[-90.08340605515531,30.02424242062509],[-90.08321779919605,30.02425640210948],[-90.08289895578856,30.02426393099051],[-90.08290399979614,30.02423699952623],[-90.0828289997661,30.023400000258],[-90.08270900039105,30.02210899972682],[-90.08270199921962,30.02146000046015],[-90.08286699974131,30.02110200033416],[-90.08286800012796,30.02110300046979],[-90.08292599993283,30.02110800010196],[-90.08295399951123,30.02109300046507],[-90.08295000018575,30.02107699954644],[-90.08295099977688,30.02104399959372],[-90.08298900008089,30.02097599939546],[-90.08303700004127,30.02086500060289],[-90.08351556938655,30.02086767365389]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":31325.319407,"geom:bbox":"-90.0837693934,30.0208650006,-90.0827019992,30.024263931","geom:latitude":30.022551,"geom:longitude":-90.08323,"iso:country":"US","lbl:latitude":30.022559,"lbl:longitude":-90.083271,"lbl:max_zoom":18,"mps:latitude":30.022559,"mps:longitude":-90.083271,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Spanish Fort"],"name:eng_x_variant":["Spanish Ft","Old Spanish Fort","Fort St. John","Fort St. Jean"],"name:ita_x_preferred":["Spanish Fort"],"reversegeo:latitude":30.022559,"reversegeo:longitude":-90.083271,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[1108740155,102191575,1108739491,85633793,85948111,102086693,85688735,1108746799],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"8ea8243e5ca9812ed426506ca4170f19","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746611,"neighbourhood_id":1108740155,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746799,"microhood_id":1108746611,"neighbourhood_id":1108740155,"region_id":85688735}],"wof:id":1108746611,"wof:lastmodified":1566623858,"wof:name":"Spanish Fort","wof:parent_id":1108740155,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85850401],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746613.geojson b/fixtures/microhoods/1108746613.geojson new file mode 100644 index 0000000..78c758c --- /dev/null +++ b/fixtures/microhoods/1108746613.geojson @@ -0,0 +1 @@ +{"id":1108746613,"type":"Feature","bbox":[-89.95512458548426,30.05295931939734,-89.94726224357994,30.06035769790453],"geometry":{"type":"Polygon","coordinates":[[[-89.95174354406873,30.06035769790453],[-89.94726224357994,30.05511510796105],[-89.95066732834732,30.05295931939734],[-89.95512458548426,30.05798680483858],[-89.95174354406873,30.06035769790453]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":294734.986689,"geom:bbox":"-89.9551245855,30.0529593194,-89.9472622436,30.0603576979","geom:latitude":30.056623,"geom:longitude":-89.951203,"iso:country":"US","lbl:latitude":30.056644,"lbl:longitude":-89.951202,"lbl:max_zoom":18,"mps:latitude":30.056644,"mps:longitude":-89.951202,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Tamaron"],"reversegeo:latitude":30.056644,"reversegeo:longitude":-89.951202,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866167,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"c19265d32658cbac0fd590602d5cc8f6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108746613,"neighbourhood_id":85866167,"region_id":85688735}],"wof:id":1108746613,"wof:lastmodified":1566623858,"wof:name":"Tamaron Estates","wof:parent_id":85866167,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420521747],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746615.geojson b/fixtures/microhoods/1108746615.geojson new file mode 100644 index 0000000..d71c4d2 --- /dev/null +++ b/fixtures/microhoods/1108746615.geojson @@ -0,0 +1 @@ +{"id":1108746615,"type":"Feature","bbox":[-90.07704466161807,29.9386759641335,-90.06415548637294,29.9507858708085],"geometry":{"type":"Polygon","coordinates":[[[-90.06468599280781,29.9443055989188],[-90.06467027117873,29.9437425191974],[-90.06464607882205,29.94298086229337],[-90.06462188646539,29.9423240124752],[-90.06459769410871,29.94176673710469],[-90.06457350175204,29.94130903618185],[-90.06454930939536,29.94095090970667],[-90.06452511703867,29.94069235767916],[-90.06449890865227,29.94044952796338],[-90.06447068423616,29.94022242055934],[-90.0644404437903,29.94001103546703],[-90.06440818731474,29.93981537268646],[-90.06436585069055,29.9395935043199],[-90.06431343391776,29.93934543036736],[-90.06423279272884,29.9389960295477],[-90.06415548637294,29.9386759641335],[-90.06421263243162,29.93867982287177],[-90.06451705291978,29.93870777503283],[-90.06481542531877,29.9387427152323],[-90.06511984580693,29.93877940242556],[-90.06543031438427,29.93881783661259],[-90.06574683105077,29.93885801779339],[-90.06606939580644,29.93889994596796],[-90.06636373614599,29.93895060913302],[-90.06662985206941,29.93901000728855],[-90.06686774357672,29.93907814043456],[-90.0670774106679,29.93915500857104],[-90.06729110981854,29.93923537063716],[-90.06750884102861,29.9393192266329],[-90.06773060429813,29.93940657655827],[-90.06795639962709,29.93949742041327],[-90.06818017892633,29.93958826418531],[-90.06840194219586,29.9396791078744],[-90.06862168943566,29.93976995148053],[-90.06883942064574,29.93986079500371],[-90.06908953046084,29.93996979889893],[-90.06937201888097,29.94009696316621],[-90.06977369731365,29.94028315905838],[-90.07055499998152,29.94065100033398],[-90.07104399956074,29.94091499995629],[-90.07171599914336,29.94125400017266],[-90.07190900054388,29.94135600002322],[-90.07205599959912,29.94142999999291],[-90.07246000033739,29.94165099925485],[-90.07313000023089,29.94206699986802],[-90.0731927646427,29.94209883252378],[-90.07292792892386,29.94249521984905],[-90.07275858242713,29.94276949015076],[-90.0726860053571,29.94291972730946],[-90.07266584505987,29.9430123152326],[-90.07269810153544,29.94304725392017],[-90.072730358011,29.94309267417082],[-90.07276261448658,29.94314857598454],[-90.07279487096214,29.94321495936134],[-90.0728271274377,29.94329182430121],[-90.07285938391328,29.94336694225908],[-90.07289164038883,29.94344031323495],[-90.07292389686441,29.94351193722883],[-90.07295615333997,29.94358181424071],[-90.07300655408305,29.94364819736665],[-90.07307509909363,29.94371108660666],[-90.07316178837172,29.94377048196073],[-90.0732666219173,29.94382638342885],[-90.07342185620597,29.94391722306714],[-90.07362749123772,29.94404300087559],[-90.07388352701253,29.94420371685419],[-90.0741899635304,29.94439937100296],[-90.07449640004829,29.9446002654389],[-90.07480283656618,29.94480640016204],[-90.07510927308407,29.94501777517236],[-90.07541570960194,29.94523439046987],[-90.0757201300901,29.94543004276347],[-90.07602253454856,29.94560473205314],[-90.07632292297727,29.94575845833891],[-90.07662129537626,29.94589122162076],[-90.07684104261605,29.94602573159643],[-90.07698216469666,29.94616198826593],[-90.07704466161807,29.94629999162925],[-90.07702853338029,29.9464397416864],[-90.07700635705334,29.94658997270426],[-90.07697813263721,29.94675068468282],[-90.07694386013192,29.94692187762209],[-90.07690353953745,29.94710355152207],[-90.07684305864578,29.94732016189749],[-90.07676241745685,29.94757170874837],[-90.0766616159707,29.94785819207471],[-90.07654065418734,29.94817961187649],[-90.07642977255259,29.94848880293728],[-90.07632897106643,29.94878576525707],[-90.0762382497289,29.94907049883587],[-90.07615760853999,29.94934300367366],[-90.07607898338078,29.9496120141694],[-90.07600237425132,29.94987753032306],[-90.07592778115156,29.95013955213466],[-90.07585520408155,29.9503980796042],[-90.0757463384765,29.9507858708085],[-90.07498427924125,29.9505762544421],[-90.07447623975106,29.95043651019783],[-90.07387143083419,29.95028104437725],[-90.07316985249062,29.95010985698035],[-90.07237150472034,29.94992294800714],[-90.07147638752335,29.94972031745761],[-90.07062360695055,29.94952467383702],[-90.06981316300192,29.94933601714535],[-90.06904505567749,29.94915434738261],[-90.06831928497724,29.9489796645488],[-90.0676217386931,29.948820703009],[-90.06695241682509,29.94867746276321],[-90.0663113193732,29.94854994381143],[-90.06569844633742,29.94843814615366],[-90.06477913678377,29.948270449667],[-90.06474284824876,29.94665633242461],[-90.06471865589208,29.94558025426301],[-90.0646944635354,29.94460898318728],[-90.06468599280781,29.9443055989188]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000096,"geom:area_square_m":1029695.538637,"geom:bbox":"-90.0770446616,29.9386759641,-90.0641554864,29.9507858708","geom:latitude":29.945092,"geom:longitude":-90.069919,"iso:country":"US","lbl:latitude":29.944957,"lbl:longitude":-90.069152,"lbl:max_zoom":18,"mps:latitude":29.944957,"mps:longitude":-90.069152,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Arts District"],"name:eng_x_variant":["Warehouse District"],"reversegeo:latitude":29.944957,"reversegeo:longitude":-90.069152,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85831571,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"8a11df2093164b27e53935eba51bfc93","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746615,"neighbourhood_id":85831571,"region_id":85688735}],"wof:id":1108746615,"wof:lastmodified":1566623859,"wof:name":"Arts District","wof:parent_id":85831571,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866969],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746733.geojson b/fixtures/microhoods/1108746733.geojson new file mode 100644 index 0000000..b7837e1 --- /dev/null +++ b/fixtures/microhoods/1108746733.geojson @@ -0,0 +1 @@ +{"id":1108746733,"type":"Feature","bbox":[-90.001197324201,29.91276024507897,-89.9929191574355,29.91783266151994],"geometry":{"type":"Polygon","coordinates":[[[-90.001197324201,29.91312184572075],[-90.00107952668078,29.91506062705729],[-90.0010295130927,29.91598134136792],[-90.0009979827872,29.91655054442246],[-90.00097351961911,29.91698027381536],[-90.00095612358848,29.91727052954662],[-90.00094198931359,29.9174919908144],[-90.00093111679445,29.9176446576187],[-90.00092350603104,29.91772852995951],[-90.00091915702339,29.91774360783684],[-90.00091344895083,29.91775750775441],[-90.0009063818134,29.91777022971223],[-90.00089795561105,29.91778177371029],[-90.00088817034383,29.9177921397486],[-90.00087702601171,29.91780132782715],[-90.00086452261468,29.91780933794595],[-90.00085066015276,29.91781617010499],[-90.00083543862597,29.91782182430428],[-90.00081695534342,29.91782630054542],[-90.00079521030511,29.9178295988284],[-90.00077020351108,29.91783171915325],[-90.0007419349613,29.91783266151994],[-90.00071040465576,29.91783242592848],[-90.0006756125945,29.91783101237887],[-90.0006375587775,29.91782842087111],[-90.00059624320474,29.9178246514052],[-90.00048045087584,29.91781734805925],[-90.00029018179077,29.91780651083324],[-90.00002543594957,29.91779213972719],[-89.99968621335219,29.91777423474108],[-89.99927251399868,29.91775279587493],[-89.998784337889,29.91772782312873],[-89.99822168502317,29.91769931650247],[-89.9975845554012,29.91766727599617],[-89.99702625154303,29.91763876936856],[-89.99654677344867,29.91761379661965],[-89.99614612111813,29.91759235774943],[-89.9958242945514,29.9175744527579],[-89.99558129374847,29.91756008164506],[-89.99541711870937,29.91754924441093],[-89.99533176943407,29.91754194105548],[-89.99532524592257,29.91753817157873],[-89.99531953785002,29.91753345973193],[-89.99531464521641,29.91752780551509],[-89.99531056802172,29.91752120892821],[-89.995307306266,29.91751366997127],[-89.99530485994919,29.9175051886443],[-89.99530322907131,29.91749576494728],[-89.99530241363237,29.91748539888022],[-89.99530241363237,29.91747409044311],[-89.99530377269727,29.91743851576112],[-89.99530649082705,29.91737867483424],[-89.99531056802174,29.91729456766247],[-89.9953160042813,29.91718619424581],[-89.99532279960577,29.91705355458426],[-89.99533095399514,29.91689664867783],[-89.99534046744938,29.91671547652651],[-89.99535133996854,29.91651003813031],[-89.99536003798386,29.91633027953363],[-89.99536656149533,29.91617620073647],[-89.995370910503,29.91604780173884],[-89.99537308500682,29.91594508254074],[-89.99537308500682,29.91586804314216],[-89.995370910503,29.91581668354311],[-89.99536656149533,29.91579100374359],[-89.99536003798386,29.91579100374359],[-89.99535025271662,29.91579053255064],[-89.99533720569364,29.91578959016476],[-89.99532089691492,29.91578817658593],[-89.99530132638046,29.91578629181416],[-89.99527849409024,29.91578393584946],[-89.9952524000443,29.9157811086918],[-89.9952230442426,29.91577781034121],[-89.99519042668516,29.91577404079767],[-89.99514258760092,29.91576909327066],[-89.99507952698987,29.91576296776017],[-89.99500124485202,29.91575566426619],[-89.99490774118735,29.91574718278874],[-89.99479901599588,29.91573752332781],[-89.99467506927762,29.9157266858834],[-89.99453590103255,29.91571467045551],[-89.99438151126067,29.91570147704414],[-89.99423201412242,29.91568875482497],[-89.99408740961776,29.91567650379799],[-89.99394769774673,29.9156647239632],[-89.99381287850932,29.91565341532061],[-89.99368295190553,29.9156425778702],[-89.99355791793533,29.91563221161199],[-89.99343777659877,29.91562231654597],[-89.99332252789583,29.91561289267214],[-89.9929191574355,29.91557990911376],[-89.9929876543061,29.91450463143392],[-89.99300722484057,29.91419740923968],[-89.99307572171118,29.91312213155984],[-89.99331926614006,29.91313532531182],[-89.99338885026259,29.91313909495524],[-89.9934741995379,29.91314380700867],[-89.99357531396595,29.91314946147209],[-89.99369219354678,29.91315605834551],[-89.99382483828037,29.91316359762893],[-89.99397324816672,29.91317207932235],[-89.99413742320583,29.91318150342576],[-89.9943173633977,29.91319186993918],[-89.99451306874235,29.9132031788626],[-89.994708502274,29.91321425218247],[-89.99490366399269,29.91322508989878],[-89.99509855389837,29.91323569201154],[-89.99529317199111,29.91324605852075],[-89.99548751827083,29.91325618942641],[-89.99568159273761,29.91326608472851],[-89.9958753953914,29.91327574442706],[-89.9960689262322,29.91328516852207],[-89.99625185636684,29.91329388580969],[-89.9964241857953,29.91330189628994],[-89.99658591451761,29.91330919996282],[-89.99673704253374,29.91331579682832],[-89.9968775698437,29.91332168688645],[-89.99700749644751,29.9133268701372],[-89.99712682234514,29.91333134658058],[-89.9972355475366,29.91333511621658],[-89.99734101097232,29.91333888585244],[-89.99744321265231,29.91334265548815],[-89.99754215257653,29.91334642512373],[-89.99763783074502,29.91335019475916],[-89.99773024715776,29.91335396439445],[-89.99781940181475,29.9133577340296],[-89.99790529471602,29.9133615036646],[-89.99798792586152,29.91336527329946],[-89.99807055700704,29.91336904293418],[-89.99815318815256,29.91337281256876],[-89.99823581929807,29.91337658220319],[-89.99831845044358,29.91338035183748],[-89.9984010815891,29.91338412147163],[-89.99848371273461,29.91338789110564],[-89.99856634388013,29.9133916607395],[-89.99864897502562,29.91339543037321],[-89.99873051891922,29.91339920000679],[-89.9988109755609,29.91340296964023],[-89.99889034495067,29.91340673927352],[-89.99896862708854,29.91341050890667],[-89.99904582197448,29.91341427853968],[-89.9991219296085,29.91341804817254],[-89.99919694999062,29.91342181780526],[-89.9992708831208,29.91342558743784],[-89.99934019543036,29.91342817906018],[-89.9994048869193,29.91342959267228],[-89.99946495758758,29.91342982827416],[-89.99952040743521,29.9134288858658],[-89.99957123646223,29.91342676544721],[-89.9996174446686,29.91342346701838],[-89.99965903205434,29.91341899057932],[-89.99969599861943,29.91341333613003],[-89.9997321497456,29.91340697487361],[-89.99976748543281,29.91339990681006],[-89.99980200568112,29.91339213193939],[-89.99983571049046,29.91338365026159],[-89.99986859986089,29.91337446177667],[-89.99990067379235,29.91336456648463],[-89.99993193228491,29.91335396438546],[-89.99996237533853,29.91334265547916],[-89.99999309020512,29.91332969735296],[-90.00002407688467,29.91331509000685],[-90.00005533537723,29.91329883344083],[-90.00008686568275,29.91328092765491],[-90.00011866780125,29.91326137264908],[-90.00015074173274,29.91324016842334],[-90.0001830874772,29.9132173149777],[-90.00021570503463,29.91319281231215],[-90.00024968165697,29.91316595360629],[-90.0002850173442,29.91313673886014],[-90.00032171209631,29.91310516807368],[-90.00035976591333,29.91307124124692],[-90.0004046150548,29.91302953950636],[-90.00045625952075,29.912980062852],[-90.00053100808987,29.91290655466336],[-90.00067778709834,29.91276024507897],[-90.001197324201,29.91312184572075]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":333219.52266,"geom:bbox":"-90.0011973242,29.9127602451,-89.9929191574,29.9178326615","geom:latitude":29.915277,"geom:longitude":-89.997486,"iso:country":"US","lbl:latitude":29.915507,"lbl:longitude":-89.997566,"lbl:max_zoom":18,"mps:latitude":29.915507,"mps:longitude":-89.997566,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:dan_x_preferred":["Bocage"],"name:deu_x_preferred":["Bocage"],"name:epo_x_preferred":["Heĝkamparo"],"name:eus_x_preferred":["Bocage"],"name:fas_x_preferred":["بوکاژ"],"name:fra_x_preferred":["Bocage"],"name:fry_x_preferred":["Kûlisselânskip"],"name:ita_x_preferred":["Bocage"],"name:kaz_x_preferred":["Бокаж"],"name:nld_x_preferred":["Coulisselandschap"],"name:pol_x_preferred":["Bocage"],"name:rus_x_preferred":["Бокаж"],"name:spa_x_preferred":["Bocage"],"name:ukr_x_preferred":["Бокаж"],"reversegeo:latitude":29.915507,"reversegeo:longitude":-89.997566,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108746731,102191575,1108746803,85633793,85948111,102086693,85688735,1108739497],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"444faf1853f2d1bef7b91dcb9f188cf5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746803,"microhood_id":1108746733,"neighbourhood_id":1108746731,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739497,"microhood_id":1108746733,"neighbourhood_id":1108746731,"region_id":85688735}],"wof:id":1108746733,"wof:lastmodified":1566623858,"wof:name":"Bocage","wof:parent_id":1108746731,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784487],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746735.geojson b/fixtures/microhoods/1108746735.geojson new file mode 100644 index 0000000..99798f6 --- /dev/null +++ b/fixtures/microhoods/1108746735.geojson @@ -0,0 +1 @@ +{"id":1108746735,"type":"Feature","bbox":[-89.961388,30.038487,-89.93984,30.057746],"geometry":{"type":"Polygon","coordinates":[[[-89.943812,30.057324],[-89.943459,30.057451],[-89.943187,30.057511],[-89.942897,30.057581],[-89.942521,30.057651],[-89.942058,30.057721],[-89.941612,30.057746],[-89.941183,30.057726],[-89.940882,30.057701],[-89.940708,30.057671],[-89.940479,30.057566],[-89.940222,30.057325],[-89.940031,30.057125],[-89.939915,30.056944],[-89.939851,30.056719],[-89.93984,30.056448],[-89.939851,30.056218],[-89.939886,30.056027],[-89.940002,30.055766],[-89.940199,30.055436],[-89.94039,30.05518],[-89.940575,30.055],[-89.940697,30.054854],[-89.940755,30.054744],[-89.940778,30.054609],[-89.940766,30.054448],[-89.940743,30.054218],[-89.940708,30.053917],[-89.940656,30.05339],[-89.940587,30.052639],[-89.940488,30.051671],[-89.940361,30.050488],[-89.940268,30.049646],[-89.94021,30.049145],[-89.940164,30.048699],[-89.940129,30.048308],[-89.940112,30.047997],[-89.940112,30.047766],[-89.940112,30.047515],[-89.940112,30.047245],[-89.940129,30.047029],[-89.940164,30.046869],[-89.940193,30.046688],[-89.940216,30.046488],[-89.940262,30.046287],[-89.940332,30.046087],[-89.940442,30.045811],[-89.940592,30.04546],[-89.940946,30.044683],[-89.941502,30.04348],[-89.941837,30.042763],[-89.941953,30.042532],[-89.942029,30.042342],[-89.942063,30.042192],[-89.942075,30.042056],[-89.942063,30.041936],[-89.942023,30.041841],[-89.941953,30.04177],[-89.941797,30.04164],[-89.941432,30.041354],[-89.941814,30.041089],[-89.942579,30.040557],[-89.943123,30.040181],[-89.943447,30.039961],[-89.94376,30.03978],[-89.944061,30.03964],[-89.944345,30.039509],[-89.944612,30.039389],[-89.944866,30.039289],[-89.94511,30.039209],[-89.945324,30.039149],[-89.945509,30.039108],[-89.945741,30.039083],[-89.946019,30.039073],[-89.946314,30.039083],[-89.946627,30.039113],[-89.947067,30.039159],[-89.947635,30.039219],[-89.948301,30.039304],[-89.949065,30.039414],[-89.949771,30.039525],[-89.95042,30.039635],[-89.950999,30.039705],[-89.951509,30.039735],[-89.951926,30.039725],[-89.95225,30.039675],[-89.952569,30.03962],[-89.952881,30.03956],[-89.953229,30.039459],[-89.953611,30.039319],[-89.953959,30.039164],[-89.954271,30.038993],[-89.954584,30.038803],[-89.955053,30.038487],[-89.956651,30.040437],[-89.961388,30.046174],[-89.961316,30.046219],[-89.96112,30.046348],[-89.960235,30.046927],[-89.959214,30.047574],[-89.958555,30.047999],[-89.957807,30.048449],[-89.957633,30.048559],[-89.956212,30.049455],[-89.954971,30.050239],[-89.953696,30.051067],[-89.952828,30.051613],[-89.950863,30.052834],[-89.948866,30.054113],[-89.947525,30.054949],[-89.946027,30.055896],[-89.944543,30.056846],[-89.943812,30.057324]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000253,"geom:area_square_m":2707400.212753,"geom:bbox":"-89.961388,30.038487,-89.93984,30.057746","geom:latitude":30.047089,"geom:longitude":-89.948723,"iso:country":"US","lbl:latitude":30.046381,"lbl:longitude":-89.947851,"lbl:max_zoom":18,"mps:latitude":30.046381,"mps:longitude":-89.947851,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Eastover"],"name:ceb_x_preferred":["Eastover"],"name:deu_x_preferred":["Eastover"],"name:fra_x_preferred":["Eastover"],"name:ita_x_preferred":["Eastover"],"name:nld_x_preferred":["Eastover"],"name:pol_x_preferred":["Eastover"],"name:srp_x_preferred":["Истовер"],"name:vol_x_preferred":["Eastover"],"reversegeo:latitude":30.046381,"reversegeo:longitude":-89.947851,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866173,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"39129b8deae6093e84ff8f3c7d4228ef","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108746735,"neighbourhood_id":85866173,"region_id":85688735}],"wof:id":1108746735,"wof:lastmodified":1617130092,"wof:name":"Eastover","wof:parent_id":85866173,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784455],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746737.geojson b/fixtures/microhoods/1108746737.geojson new file mode 100644 index 0000000..97e1c2a --- /dev/null +++ b/fixtures/microhoods/1108746737.geojson @@ -0,0 +1 @@ +{"id":1108746737,"type":"Feature","bbox":[-90.090464,29.966021,-90.062431,29.988629],"geometry":{"type":"Polygon","coordinates":[[[-90.074565,29.980044],[-90.066903,29.974822],[-90.062431,29.9673],[-90.062579,29.967143],[-90.062967,29.966719],[-90.063597,29.966021],[-90.064512,29.966608],[-90.065306,29.967195],[-90.065836,29.967577],[-90.066859,29.968259],[-90.067625,29.968807],[-90.068365,29.969334],[-90.068458,29.9694],[-90.068601,29.9695],[-90.068714,29.969575],[-90.069482,29.970097],[-90.070368,29.970683],[-90.071235,29.97127],[-90.072089,29.971881],[-90.072972,29.972507],[-90.073042,29.972546],[-90.073121,29.972611],[-90.073188,29.972675],[-90.073244,29.972731],[-90.073504,29.972874],[-90.07364,29.972943],[-90.07375,29.973002],[-90.073845,29.973062],[-90.073951,29.973092],[-90.074041,29.973123],[-90.074174,29.973181],[-90.074798,29.973585],[-90.075631,29.974251],[-90.076821,29.975085],[-90.078176,29.975992],[-90.078676,29.975416],[-90.078941,29.975115],[-90.079412,29.974567],[-90.079811,29.974128],[-90.080037,29.973867],[-90.080086,29.973811],[-90.080793,29.973004],[-90.081547,29.972115],[-90.082273,29.971282],[-90.08272,29.970765],[-90.08279,29.970686],[-90.082868,29.970598],[-90.090457,29.975627],[-90.090396,29.975774],[-90.090381,29.975815],[-90.090354,29.975868],[-90.090409,29.975931],[-90.090311,29.976011],[-90.090255,29.976268],[-90.090194,29.97652],[-90.090071,29.976761],[-90.089695,29.97723],[-90.089425,29.977478],[-90.08921,29.977653],[-90.088731,29.978114],[-90.088466,29.978361],[-90.088169,29.978784],[-90.08776,29.979445],[-90.087568,29.979889],[-90.087551,29.98014],[-90.087896,29.980376],[-90.088257,29.980633],[-90.088746,29.980954],[-90.089092,29.981182],[-90.089998,29.981877],[-90.090464,29.9826],[-90.090343,29.982891],[-90.089966,29.983058],[-90.089605,29.983385],[-90.089401,29.983706],[-90.089392,29.983723],[-90.089384,29.983746],[-90.08937,29.983772],[-90.089135,29.983629],[-90.089017,29.983462],[-90.08841,29.983062],[-90.088021,29.982784],[-90.085832,29.988629],[-90.084597,29.988575],[-90.086172,29.984267],[-90.085199,29.984026],[-90.085122,29.984006],[-90.085083,29.98398],[-90.085065,29.983958],[-90.08506,29.983933],[-90.085064,29.983883],[-90.085238,29.983284],[-90.08577,29.98171],[-90.083832,29.981628],[-90.077414,29.981407],[-90.07729,29.982009],[-90.074565,29.980044]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.0002,"geom:area_square_m":2145924.140813,"geom:bbox":"-90.090464,29.966021,-90.062431,29.988629","geom:latitude":29.976308,"geom:longitude":-90.07823,"iso:country":"US","lbl:latitude":29.976934,"lbl:longitude":-90.08308,"lbl:max_zoom":18,"mps:latitude":29.976934,"mps:longitude":-90.08308,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":29.976934,"reversegeo:longitude":-90.08308,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866065,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"4e19e421e1489f9136a1ad96136d464f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746737,"neighbourhood_id":85866065,"region_id":85688735}],"wof:id":1108746737,"wof:lastmodified":1617131164,"wof:name":"Esplanade Ridge","wof:parent_id":85866065,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784469],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746741.geojson b/fixtures/microhoods/1108746741.geojson new file mode 100644 index 0000000..90a4018 --- /dev/null +++ b/fixtures/microhoods/1108746741.geojson @@ -0,0 +1 @@ +{"id":1108746741,"type":"Feature","bbox":[-90.01828118734412,30.02835843475582,-90.00466163866052,30.03751326170649],"geometry":{"type":"Polygon","coordinates":[[[-90.01828118734412,30.0336308014356],[-90.0145246411094,30.03481991059284],[-90.01270428830841,30.03540729659849],[-90.0104040243145,30.03618092163485],[-90.00797137102593,30.03702617171472],[-90.00767349511304,30.03716943372555],[-90.00739216786198,30.03732702169825],[-90.00725030454448,30.03738503002254],[-90.00677986737438,30.03751326170649],[-90.0058241821539,30.03522105263218],[-90.00552216907553,30.03446174668559],[-90.00548125453143,30.0342970276467],[-90.00543322001819,30.03409820899486],[-90.0053732311191,30.03381704839054],[-90.00532006146503,30.03360642399296],[-90.00522429316264,30.03335859371801],[-90.00466163866052,30.03229840916511],[-90.0079051763786,30.03106628854414],[-90.01282012894121,30.02944731607116],[-90.01631189658669,30.02835843475582],[-90.01828118734412,30.0336308014356]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":735604.097836,"geom:bbox":"-90.0182811873,30.0283584348,-90.0046616387,30.0375132617","geom:latitude":30.032878,"geom:longitude":-90.011492,"iso:country":"US","lbl:latitude":30.03285,"lbl:longitude":-90.011492,"lbl:max_zoom":18,"mps:latitude":30.03285,"mps:longitude":-90.011492,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:azb_x_preferred":["کنیل‌وورث"],"name:bul_x_preferred":["Кенилуърт"],"name:cym_x_preferred":["Kenilworth"],"name:epo_x_preferred":["Kenilworth"],"name:fas_x_preferred":["کنیل‌وورث"],"name:fin_x_preferred":["Kenilworth"],"name:fra_x_preferred":["Kenilworth"],"name:gle_x_preferred":["Kenilworth"],"name:ita_x_preferred":["Kenilworth"],"name:nld_x_preferred":["Kenilworth"],"name:nno_x_preferred":["Kenilworth"],"name:pol_x_preferred":["Kenilworth"],"name:por_x_preferred":["Kenilworth"],"name:ron_x_preferred":["Kenilworth"],"name:spa_x_preferred":["Kenilworth"],"name:swe_x_preferred":["Kenilworth"],"name:vol_x_preferred":["Kenilworth"],"name:zho_x_preferred":["凱尼爾沃思"],"reversegeo:latitude":30.03285,"reversegeo:longitude":-90.011492,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866167,102191575,1108739495,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ae63dc073eacd5d894786cd23c88f44b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739495,"microhood_id":1108746741,"neighbourhood_id":85866167,"region_id":85688735}],"wof:id":1108746741,"wof:lastmodified":1566623857,"wof:name":"Kenilworth","wof:parent_id":85866167,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784491],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746743.geojson b/fixtures/microhoods/1108746743.geojson new file mode 100644 index 0000000..9bf3199 --- /dev/null +++ b/fixtures/microhoods/1108746743.geojson @@ -0,0 +1 @@ +{"id":1108746743,"type":"Feature","bbox":[-90.07490245771122,29.99532287783589,-90.06867089699402,30.0118598869503],"geometry":{"type":"Polygon","coordinates":[[[-90.06949500035218,30.00538499981172],[-90.06887765966854,29.99787588439743],[-90.06867089699402,29.99532287783589],[-90.07387703803784,29.99956450126172],[-90.07388399943231,29.99966399945048],[-90.07392999984498,30.00009600009263],[-90.07396499991167,30.00059799986927],[-90.07397700038062,30.00076200049633],[-90.07401100038611,30.00111100005078],[-90.0740839997263,30.00213399993787],[-90.07454493005717,30.00743840154512],[-90.07490245771122,30.01155287316658],[-90.07007381167415,30.0118598869503],[-90.06969999933997,30.00764999965922],[-90.06968999994517,30.00753800032279],[-90.06949500035218,30.00538499981172]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":742680.283104,"geom:bbox":"-90.0749024577,29.9953228778,-90.068670897,30.011859887","geom:latitude":30.004522,"geom:longitude":-90.071737,"iso:country":"US","lbl:latitude":30.004454,"lbl:longitude":-90.071796,"lbl:max_zoom":18,"mps:latitude":30.004454,"mps:longitude":-90.071796,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":30.004454,"reversegeo:longitude":-90.071796,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85891215,102191575,1108746797,85633793,85948111,102086693,85688735,1108739491],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"9df04f05fd4dc1c012821fd7902e644c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746797,"microhood_id":1108746743,"neighbourhood_id":85891215,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746743,"neighbourhood_id":85891215,"region_id":85688735}],"wof:id":1108746743,"wof:lastmodified":1566623857,"wof:name":"Mirabeau Gardens","wof:parent_id":85891215,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784471],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746745.geojson b/fixtures/microhoods/1108746745.geojson new file mode 100644 index 0000000..f15d49d --- /dev/null +++ b/fixtures/microhoods/1108746745.geojson @@ -0,0 +1 @@ +{"id":1108746745,"type":"Feature","bbox":[-90.08249344332286,30.00710917051331,-90.07454493005717,30.02125525912035],"geometry":{"type":"Polygon","coordinates":[[[-90.0756841731053,30.02125525912035],[-90.07490245771122,30.01155287316658],[-90.07454493005717,30.00743840154512],[-90.07896616103207,30.00718422665572],[-90.08094903753934,30.00710917051331],[-90.08194493670749,30.00712958716181],[-90.08243099051948,30.00713973259388],[-90.08246072994967,30.00737157436492],[-90.08247113875022,30.00751579218102],[-90.08248006057929,30.00764970856067],[-90.08248749543682,30.00777332350385],[-90.08249344332286,30.00788663701058],[-90.08249046937983,30.00800252567666],[-90.08247857360777,30.00812098950211],[-90.08245775600665,30.00824202848692],[-90.08242801657647,30.0083656426311],[-90.08240273806082,30.00848410606827],[-90.0823819204597,30.00859741879844],[-90.0823655637731,30.00870558082161],[-90.08235366800103,30.00880859213778],[-90.08233285039991,30.00892190440586],[-90.08230311096972,30.00904551762586],[-90.0822644497105,30.00917943179777],[-90.08221686662219,30.0093236469216],[-90.08217969233448,30.00945369795776],[-90.0821529268473,30.00956958490627],[-90.08213657016071,30.00967130776711],[-90.08213062227468,30.00975886654029],[-90.08213210924619,30.00984900048005],[-90.08214103107524,30.00994170958639],[-90.08215738776184,30.0100369938593],[-90.08218117930599,30.01013485329879],[-90.0822005099356,30.01024301356584],[-90.0822153796507,30.01036147466046],[-90.08222578845125,30.01049023658264],[-90.08223173633729,30.01062929933238],[-90.08222876239427,30.01075419819155],[-90.0822168666222,30.01086493316014],[-90.08219604902108,30.01096150423815],[-90.08216630959089,30.01104391142558],[-90.08211575255959,30.01115335820917],[-90.08204437792715,30.01128984458894],[-90.0819521856936,30.01145337056486],[-90.08183917585892,30.01164393613696],[-90.08174400968234,30.01180874948196],[-90.08166668716387,30.01194781059989],[-90.08160720830351,30.01206111949072],[-90.08156557310126,30.01214867615447],[-90.08153434669957,30.01223752033197],[-90.08151352909844,30.01232765202323],[-90.08150312029788,30.01241907122824],[-90.08150312029788,30.01251177794702],[-90.0815075812124,30.01263281140852],[-90.08151650304147,30.01278217161276],[-90.08152988578505,30.01295985855973],[-90.08154772944314,30.01316587224944],[-90.08156706007276,30.01343368853984],[-90.08158787767388,30.01376330743096],[-90.08161018224652,30.01415472892277],[-90.08163397379067,30.01460795301528],[-90.0816547913918,30.01500323577452],[-90.08167263504991,30.0153405772005],[-90.081687504765,30.01561997729321],[-90.08169940053706,30.01584143605265],[-90.08170683539461,30.01603714359056],[-90.08170980933762,30.01620709990694],[-90.08170832236613,30.01635130500177],[-90.08170237448007,30.01646975887507],[-90.08169791356555,30.0165856375406],[-90.08169493962254,30.01669894099837],[-90.08169345265102,30.01680966924838],[-90.08169345265102,30.01691782229062],[-90.08170088750856,30.01707232604212],[-90.08171575722366,30.01727318050288],[-90.0817380617963,30.01752038567289],[-90.08176780122648,30.01781394155217],[-90.08179307974214,30.0180843214666],[-90.08181389734327,30.01833152541619],[-90.08183025402987,30.01855555340094],[-90.08184214980193,30.01875640542085],[-90.081854045574,30.01894824454628],[-90.08186594134608,30.01913107077722],[-90.08187783711816,30.01930488411369],[-90.08188973289022,30.01946968455568],[-90.08189568077626,30.01964092217352],[-90.08189568077626,30.01981859696718],[-90.08188973289022,30.02000270893669],[-90.08187783711816,30.02019325808204],[-90.08184661071647,30.02039796911822],[-90.08179605368515,30.02061684204523],[-90.08170909565153,30.02089493688537],[-90.08156200042625,30.02091199991539],[-90.08110200010037,30.02093599989486],[-90.07979700011312,30.02101499991782],[-90.07942399974856,30.02103899943721],[-90.0784400008224,30.02109900040873],[-90.0774920002594,30.02116800047958],[-90.07647499976152,30.0212180002495],[-90.0756841731053,30.02125525912035]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000094,"geom:area_square_m":1005179.511682,"geom:bbox":"-90.0824934433,30.0071091705,-90.0745449301,30.0212552591","geom:latitude":30.01386,"geom:longitude":-90.078503,"iso:country":"US","lbl:latitude":30.013838,"lbl:longitude":-90.078451,"lbl:max_zoom":18,"mps:latitude":30.013838,"mps:longitude":-90.078451,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Oak Park"],"name:ceb_x_preferred":["Oak Park"],"name:ces_x_preferred":["Oak Park"],"name:dan_x_preferred":["Oak Park"],"name:deu_x_preferred":["Oak Park"],"name:fra_x_preferred":["Oak Park"],"name:ita_x_preferred":["Oak Park"],"name:kor_x_preferred":["오크파크"],"name:mlg_x_preferred":["Oak Park"],"name:nld_x_preferred":["Oak Park"],"name:pol_x_preferred":["Oak Park"],"name:por_x_preferred":["Oak Park"],"name:rus_x_preferred":["Ок-Парк"],"name:slk_x_preferred":["Oak Park"],"name:spa_x_preferred":["Oak Park"],"name:srp_x_preferred":["Оук Парк"],"name:swa_x_preferred":["Oak Park"],"name:swe_x_preferred":["Oak Park"],"name:urd_x_preferred":["اوک پارک"],"name:vol_x_preferred":["Oak Park"],"name:zho_x_preferred":["奥克帕克"],"reversegeo:latitude":30.013838,"reversegeo:longitude":-90.078451,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85891215,102191575,1108746797,85633793,85948111,102086693,85688735,1108739491],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"a8104bf4036a1265e0ec64a9341a79df","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746797,"microhood_id":1108746745,"neighbourhood_id":85891215,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746745,"neighbourhood_id":85891215,"region_id":85688735}],"wof:id":1108746745,"wof:lastmodified":1566623857,"wof:name":"Oak Park","wof:parent_id":85891215,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784475],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746751.geojson b/fixtures/microhoods/1108746751.geojson new file mode 100644 index 0000000..a6f514d --- /dev/null +++ b/fixtures/microhoods/1108746751.geojson @@ -0,0 +1 @@ +{"id":1108746751,"type":"Feature","bbox":[-90.01380656724213,29.91104528119967,-90.00757322765762,29.92003255109342],"geometry":{"type":"Polygon","coordinates":[[[-90.00842447667574,29.91643629983619],[-90.00842447667574,29.91600192830273],[-90.0084261929036,29.91550359790363],[-90.00842962535933,29.9151852606669],[-90.00843477404291,29.91493386266563],[-90.00844163895434,29.91474940389982],[-90.00843305781505,29.91456196961716],[-90.00840903062502,29.91437155981766],[-90.00836955738427,29.91417817450132],[-90.00831463809277,29.91398181366814],[-90.00826658371273,29.9138033036182],[-90.00822539424409,29.9136426443515],[-90.00819106968692,29.91349983586805],[-90.00816361004115,29.91337487816784],[-90.00812242057253,29.91323504426437],[-90.00806750128105,29.91308033415765],[-90.00799885216668,29.91291074784768],[-90.00791647322943,29.91272628533445],[-90.0078461078872,29.91256264908895],[-90.00778775614,29.91241983911117],[-90.0077414179878,29.91229785540112],[-90.00770709343061,29.9121966979588],[-90.007677917557,29.9121059537346],[-90.00765389036698,29.91202562272852],[-90.00763501186053,29.91195570494057],[-90.00762128203766,29.91189620037075],[-90.00760926844265,29.91182479479737],[-90.0075989710755,29.91174148822043],[-90.00759038993621,29.91164628063994],[-90.00758352502476,29.91153917205589],[-90.00757837634119,29.91143801386909],[-90.00757494388547,29.91134280607955],[-90.00757322765762,29.91125354868726],[-90.00757322765762,29.91117024169222],[-90.00757322765762,29.91104528119967],[-90.0099107300018,29.91116131595662],[-90.01146906489794,29.91123867246126],[-90.01380656724213,29.91135470721821],[-90.01354226815181,29.91532201652771],[-90.0132284559674,29.92003255109342],[-90.01318199963508,29.92000399960797],[-90.01270799991664,29.91968000027812],[-90.01242100077924,29.919478999856],[-90.01217299917994,29.91928399969954],[-90.01202299950042,29.91916599974392],[-90.01152399987352,29.91871999970364],[-90.01137299983228,29.91858600038107],[-90.01124900004518,29.91848400034609],[-90.0106959995668,29.91808900000164],[-90.0098729998945,29.9175799998049],[-90.00973700044771,29.9174900000306],[-90.00954499953062,29.917297000055],[-90.00940399999854,29.91713800059835],[-90.00917899992608,29.91693999973597],[-90.0089420002058,29.91676899982257],[-90.00871100004366,29.91661399972581],[-90.00848500012093,29.91647099971826],[-90.00842447667574,29.91643629983619]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000038,"geom:area_square_m":405959.157385,"geom:bbox":"-90.0138065672,29.9110452812,-90.0075732277,29.9200325511","geom:latitude":29.914646,"geom:longitude":-90.011055,"iso:country":"US","lbl:latitude":29.914581,"lbl:longitude":-90.010995,"lbl:max_zoom":18,"mps:latitude":29.914581,"mps:longitude":-90.010995,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":29.914581,"reversegeo:longitude":-90.010995,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866161,102191575,1108739497,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"28471a5f8aaf2e2a2631072630f4792f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739497,"microhood_id":1108746751,"neighbourhood_id":85866161,"region_id":85688735}],"wof:id":1108746751,"wof:lastmodified":1566623855,"wof:name":"Park Timbers","wof:parent_id":85866161,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784485],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746753.geojson b/fixtures/microhoods/1108746753.geojson new file mode 100644 index 0000000..a8e0e36 --- /dev/null +++ b/fixtures/microhoods/1108746753.geojson @@ -0,0 +1 @@ +{"id":1108746753,"type":"Feature","bbox":[-90.10420129626618,29.95172399954808,-90.09411700027944,29.9625956684598],"geometry":{"type":"Polygon","coordinates":[[[-90.10219899978263,29.95396200032061],[-90.10420129626618,29.95802857111458],[-90.10075393321225,29.9625956684598],[-90.10072000033342,29.96256800045059],[-90.097266999454,29.96011900034057],[-90.0961310002534,29.95930900035866],[-90.0957860007387,29.95907399989423],[-90.09563199946764,29.95895300034898],[-90.09561500059837,29.95891099977121],[-90.09557600039213,29.95886099972599],[-90.09552900067692,29.95882500003551],[-90.09417100000576,29.95784199923073],[-90.09411700027944,29.95781000033468],[-90.09422400086163,29.95765699988506],[-90.09437999978833,29.95743200026688],[-90.09548500002913,29.95588100022161],[-90.09567999990361,29.95561099933644],[-90.09584800036913,29.95537799985003],[-90.09603200003892,29.95513499965176],[-90.09618099953902,29.95494400011656],[-90.09674100063634,29.9542080000109],[-90.09695599925594,29.95390999964901],[-90.09715999993426,29.95361699950498],[-90.09734399955752,29.95335599987568],[-90.09757299924365,29.9530410003633],[-90.09786100029262,29.95264600013245],[-90.09790899957399,29.95255699963977],[-90.09793699943123,29.95250299996718],[-90.09795100022463,29.95245300014746],[-90.09795300002747,29.95243699990525],[-90.09796399996127,29.95239900038304],[-90.09798200069376,29.95212599978793],[-90.098000000092,29.95202699972687],[-90.09802100005878,29.95197099994432],[-90.09807000067502,29.95188100010141],[-90.09816999939173,29.95180100016436],[-90.09818499980803,29.95179000029029],[-90.09827599997308,29.95172399954808],[-90.09849400029671,29.95185700005095],[-90.09884000015339,29.95206699982889],[-90.10016499931031,29.95278900034031],[-90.1010469995773,29.9532829998738],[-90.10191700017907,29.95375200041714],[-90.10219899978263,29.95396200032061]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00006,"geom:area_square_m":641853.790011,"geom:bbox":"-90.1042012963,29.9517239995,-90.0941170003,29.9625956685","geom:latitude":29.957171,"geom:longitude":-90.099463,"iso:country":"US","lbl:latitude":29.957043,"lbl:longitude":-90.099464,"lbl:max_zoom":18,"mps:latitude":29.957043,"mps:longitude":-90.099464,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":29.957043,"reversegeo:longitude":-90.099464,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85866077,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"43c3521e0bff2710cd3909aeedd4067c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746753,"neighbourhood_id":85866077,"region_id":85688735}],"wof:id":1108746753,"wof:lastmodified":1566623855,"wof:name":"Zion City","wof:parent_id":85866077,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784467],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746761.geojson b/fixtures/microhoods/1108746761.geojson new file mode 100644 index 0000000..0c0bab9 --- /dev/null +++ b/fixtures/microhoods/1108746761.geojson @@ -0,0 +1 @@ +{"id":1108746761,"type":"Feature","bbox":[-90.0756841731053,30.01155287316658,-90.07007381167415,30.02149899959093],"geometry":{"type":"Polygon","coordinates":[[[-90.07007381167415,30.0118598869503],[-90.07490245771122,30.01155287316658],[-90.0756841731053,30.02125525912035],[-90.07562600029239,30.02125799986424],[-90.07537900036168,30.02127700038032],[-90.0752319999794,30.02128800051792],[-90.0750660005913,30.0213050000381],[-90.07491399932267,30.0213299995753],[-90.07482799998144,30.02135100050254],[-90.07441899929292,30.02144099995306],[-90.07421999996876,30.0214740004227],[-90.07404299984962,30.02149099992554],[-90.07388599981812,30.02149899959093],[-90.07377100038671,30.02149799972717],[-90.07361799990349,30.0214859999591],[-90.07359000036737,30.02148199960751],[-90.07353300059366,30.0214750006992],[-90.07335899996116,30.02145899956193],[-90.07318800000654,30.02144199928433],[-90.07294299986359,30.0214360003649],[-90.07279899972106,30.02143499993444],[-90.07253500029952,30.02144600022377],[-90.07225800043469,30.02146300063903],[-90.07163699951965,30.02145799990448],[-90.07079900018839,30.02140799991474],[-90.07080300009906,30.02116799932546],[-90.07078999967868,30.02091999994934],[-90.07075099968152,30.02043499997425],[-90.07072700051013,30.02004600005662],[-90.07068099993754,30.01958899999332],[-90.07066099981378,30.01908400033596],[-90.07051200067662,30.01729999980091],[-90.070463000462,30.01625699980463],[-90.07007399924359,30.01186199936368],[-90.07007381167415,30.0118598869503]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000047,"geom:area_square_m":504085.290642,"geom:bbox":"-90.0756841731,30.0115528732,-90.0700738117,30.0214989996","geom:latitude":30.016569,"geom:longitude":-90.07289,"iso:country":"US","lbl:latitude":30.016558,"lbl:longitude":-90.072891,"lbl:max_zoom":18,"mps:latitude":30.016558,"mps:longitude":-90.072891,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":30.016558,"reversegeo:longitude":-90.072891,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85891215,102191575,1108746797,85633793,85948111,102086693,85688735,1108739491],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"e3f6f1d7becd5e0efa28e626818902a4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746797,"microhood_id":1108746761,"neighbourhood_id":85891215,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746761,"neighbourhood_id":85891215,"region_id":85688735}],"wof:id":1108746761,"wof:lastmodified":1566623859,"wof:name":"Vista Park","wof:parent_id":85891215,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784473],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108746795.geojson b/fixtures/microhoods/1108746795.geojson new file mode 100644 index 0000000..fe5caec --- /dev/null +++ b/fixtures/microhoods/1108746795.geojson @@ -0,0 +1 @@ +{"id":1108746795,"type":"Feature","bbox":[-90.14003111043861,29.93840400101818,-90.12949869744205,29.95319210939049],"geometry":{"type":"Polygon","coordinates":[[[-90.13684353037603,29.95319210939049],[-90.12949869744205,29.94730238955953],[-90.12959899976404,29.94720400042095],[-90.1303939993853,29.94650699990923],[-90.13117500037484,29.94582999985064],[-90.13190000054797,29.94514100033404],[-90.13263999991743,29.94443399993447],[-90.13332299955552,29.94378899964809],[-90.13401100050459,29.94306200041081],[-90.13406100049764,29.94298300002892],[-90.13410600025881,29.94292999945041],[-90.13420400072447,29.94281499930794],[-90.13440699958439,29.94262899997498],[-90.13451600003076,29.94252600017197],[-90.13465300055339,29.94245400046607],[-90.13475199973912,29.94232700041718],[-90.13534000052638,29.94180000037808],[-90.1360700001079,29.94114499951089],[-90.13897400176421,29.93840400101818],[-90.13900751265565,29.93859034562688],[-90.13941540682163,29.94085850782764],[-90.13948599682072,29.94282296968744],[-90.13948599748963,29.94282300036915],[-90.13977299921417,29.94530900089417],[-90.13980277912644,29.94557209404096],[-90.13990922276413,29.94651246861418],[-90.13993899299253,29.94677547858852],[-90.14003111043861,29.94758925927808],[-90.13884785434377,29.94966918119516],[-90.13684353037603,29.95319210939049]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000078,"geom:area_square_m":838896.564997,"geom:bbox":"-90.1400311104,29.938404001,-90.1294986974,29.9531921094","geom:latitude":29.946299,"geom:longitude":-90.135925,"iso:country":"US","lbl:latitude":29.946622,"lbl:longitude":-90.136005,"lbl:max_zoom":18,"mps:latitude":29.946622,"mps:longitude":-90.136005,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Riverbend"],"name:fra_x_preferred":["Riverbend"],"name:ita_x_preferred":["Riverbend"],"name:nld_x_preferred":["Riverbend"],"name:pol_x_preferred":["Riverbend"],"name:por_x_preferred":["Riverbend"],"name:srp_x_preferred":["Ривербенд"],"name:vol_x_preferred":["Riverbend"],"reversegeo:latitude":29.946622,"reversegeo:longitude":-90.136005,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[420784465,102191575,1108739491,85633793,85948111,102086693,85688735],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"a113263143411a6ec08c6eee1b988447","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739491,"microhood_id":1108746795,"neighbourhood_id":420784465,"region_id":85688735}],"wof:id":1108746795,"wof:lastmodified":1566623860,"wof:name":"Riverbend","wof:parent_id":420784465,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420784463],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108748667.geojson b/fixtures/microhoods/1108748667.geojson new file mode 100644 index 0000000..b8330d8 --- /dev/null +++ b/fixtures/microhoods/1108748667.geojson @@ -0,0 +1 @@ +{"id":1108748667,"type":"Feature","bbox":[-105.00770050943173,39.75133512600133,-105.00035764585972,39.75966591631018],"geometry":{"type":"MultiPolygon","coordinates":[[[[-105.00035764585972,39.75896788763997],[-105.0004775014946,39.75869741702692],[-105.00055854346074,39.75852082983388],[-105.0006208008652,39.75839292764478],[-105.00068091146261,39.75827616509342],[-105.00073887525296,39.75817054217983],[-105.00079254542922,39.75807605910899],[-105.00084192199138,39.75799271588095],[-105.00088700493944,39.75792051249566],[-105.0009277942734,39.75785944895316],[-105.00097073041441,39.7577983853565],[-105.00101581336247,39.75773732170572],[-105.00106304311757,39.75767625800079],[-105.00111241967973,39.75761519424172],[-105.0011687733648,39.75755330523812],[-105.00123210417279,39.75749059098996],[-105.00130241210368,39.75742705149727],[-105.00137969715749,39.75736268676003],[-105.00147576677298,39.75728264325633],[-105.0015906209502,39.75718692098618],[-105.00172425968907,39.75707551994956],[-105.00187668298965,39.75694844014647],[-105.00201568874617,39.75683415073117],[-105.0021412769586,39.75673265170366],[-105.00225344762697,39.75664394306392],[-105.00235220075129,39.75656802481195],[-105.00244451345444,39.75649581989204],[-105.00253038573646,39.75642732830414],[-105.00260981759732,39.75636255004829],[-105.00268280903705,39.75630148512447],[-105.00274721324854,39.75624372096949],[-105.00280303023186,39.75618925758337],[-105.00285025998696,39.75613809496609],[-105.00288890251386,39.75609023311765],[-105.00292861844429,39.75604030821615],[-105.00296940777825,39.75598832026159],[-105.00301127051574,39.75593426925396],[-105.00305420665673,39.75587815519327],[-105.00309714279774,39.75582204108686],[-105.00314007893874,39.75576592693474],[-105.00318301507976,39.7557098127369],[-105.00322595122078,39.75565369849335],[-105.00327908469527,39.75557901686034],[-105.00334241550324,39.75548576783785],[-105.00341594364471,39.75537395142592],[-105.00349966911969,39.75524356762452],[-105.00358607810347,39.75511153312938],[-105.00367517059604,39.7549778479405],[-105.00376694659744,39.75484251205788],[-105.00386140610766,39.75470552548152],[-105.00396176933725,39.75456069893881],[-105.00406803628624,39.75440803242975],[-105.00418020695463,39.75424752595435],[-105.00429828134239,39.75407917951259],[-105.00440186478258,39.75392940051388],[-105.00449095727515,39.75379818895823],[-105.00456555882016,39.75368554484561],[-105.00462566941755,39.75359146817603],[-105.00468470661144,39.75350110495955],[-105.0047426704018,39.75341445519616],[-105.00479956078864,39.75333151888584],[-105.00485537777196,39.75325229602863],[-105.00493910324693,39.75313346174279],[-105.00453013650383,39.75281904339145],[-105.00425749200843,39.75260943115723],[-105.00384852526535,39.7522950128059],[-105.00444211741475,39.75182998082113],[-105.00507377705486,39.75133512600133],[-105.00541174462813,39.7515873778774],[-105.00558771526784,39.75172469437661],[-105.00570796070502,39.75182059572523],[-105.00579903703613,39.75189235498613],[-105.00592899650854,39.75199790736986],[-105.0061792304183,39.75219592908974],[-105.00635520305804,39.75233324258892],[-105.00644565838684,39.75240172483791],[-105.0065037875982,39.75244573599792],[-105.00657717886497,39.75250369320861],[-105.00676383254358,39.75263967870296],[-105.00696816428638,39.75279083825251],[-105.00711580382313,39.75291156069136],[-105.00725725733736,39.75302711111146],[-105.00738719180976,39.75313677851017],[-105.00751013825669,39.75322891584511],[-105.0075667174624,39.75327547901441],[-105.00760918261676,39.75330585412479],[-105.00770050943173,39.75338490713261],[-105.00708935417589,39.75389458103676],[-105.00674866748027,39.7541801162786],[-105.00656156904907,39.75433898536793],[-105.00644567972228,39.75443988853716],[-105.0064009994999,39.75448282578628],[-105.0063598099199,39.75452093258346],[-105.00632211098227,39.7545542089287],[-105.006287902687,39.75458265482201],[-105.00625718503413,39.75460627026339],[-105.00621041042632,39.75463149583679],[-105.00614757886362,39.7546583315422],[-105.00606869034598,39.75468677737965],[-105.00597374487342,39.75471683334911],[-105.00587740314393,39.75474849944216],[-105.00577966515746,39.7547817756588],[-105.00568053091408,39.75481666199902],[-105.00558000041372,39.75485315846284],[-105.00548784745509,39.75488589792869],[-105.00540407203812,39.75491488039659],[-105.00532867416285,39.75494010586654],[-105.00526165382928,39.75496157433852],[-105.00518835033944,39.754991630168],[-105.00510876369333,39.75503027335495],[-105.00502289389095,39.75507750389939],[-105.00493074093231,39.75513332180131],[-105.00483928610215,39.75519397002716],[-105.00474852940042,39.75525944857694],[-105.0046584708272,39.75532975745064],[-105.00456911038246,39.75540489664826],[-105.00449161812176,39.75548325599296],[-105.00442599404514,39.75556483548473],[-105.00437223815258,39.75564963512358],[-105.0043303504441,39.75573765490951],[-105.00429684027732,39.75581923415537],[-105.00427170765224,39.75589437286119],[-105.00425495256884,39.75596307102693],[-105.00424657502714,39.75602532865262],[-105.0042423862563,39.75609402662632],[-105.0042423862563,39.75616916494804],[-105.00424657502714,39.75625074361777],[-105.00425495256884,39.75633876263552],[-105.00426263198206,39.75642624484353],[-105.0042696132668,39.75651319024182],[-105.00427589642307,39.75659959883037],[-105.00428148145089,39.7566854706092],[-105.00428916086409,39.75676275515875],[-105.00429893466274,39.75683145247903],[-105.00431080284682,39.75689156257003],[-105.0043247654163,39.75694308543176],[-105.00433663360036,39.75699997519229],[-105.00434640739901,39.75706223185158],[-105.00435408681223,39.75712985540968],[-105.00435967184004,39.75720284586655],[-105.00436106809698,39.75727476286369],[-105.00435827558309,39.7573456064011],[-105.00435129429835,39.75741537647877],[-105.00434012424274,39.75748407309671],[-105.00432685980172,39.75754579268197],[-105.00431150097528,39.75760053523454],[-105.00429404776342,39.75764830075445],[-105.00427450016615,39.75768908924167],[-105.00425146192647,39.75773202445905],[-105.00422493304445,39.7577771064066],[-105.00419491352002,39.75782433508432],[-105.00416140335324,39.75787371049219],[-105.00412859131492,39.75792147580365],[-105.0040964774051,39.75796763101869],[-105.00406506162373,39.7580121761373],[-105.00403434397084,39.75805511115949],[-105.0040001356756,39.75809804615492],[-105.00396243673796,39.75814098112357],[-105.00392124715796,39.75818391606546],[-105.00387656693557,39.75822685098059],[-105.00382769794236,39.75826817581535],[-105.00377464017828,39.75830789056975],[-105.00371739364336,39.75834599524379],[-105.00365595833759,39.75838248983747],[-105.00358614549012,39.75842113114526],[-105.00350795510096,39.75846191916715],[-105.0034213871701,39.75850485390314],[-105.00332644169755,39.75854993535324],[-105.00322800558264,39.75859340672807],[-105.00312607882535,39.75863526802761],[-105.00302066142568,39.75867551925188],[-105.00291175338363,39.75871416040088],[-105.0028112228833,39.75875172816642],[-105.00271906992464,39.75878822254851],[-105.00263529450767,39.75882364354715],[-105.0025598966324,39.75885799116234],[-105.00249357442732,39.7588891186799],[-105.00243632789238,39.75891702609985],[-105.00238815702765,39.75894171342216],[-105.00234906183306,39.75896318064686],[-105.00230647599611,39.75899430808707],[-105.00226039951677,39.75903509574279],[-105.00221083239508,39.75908554361403],[-105.002157774631,39.75914565170078],[-105.00209424493981,39.75922347002432],[-105.0020202433215,39.75931899858462],[-105.00191203340793,39.75946497464016],[-105.00176633930653,39.75966591631018],[-105.00133064779152,39.7594582884916],[-105.00082554995527,39.75921010358934],[-105.00035764585972,39.75896788763997]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":165112.763004,"geom:bbox":"-105.007700509,39.751335126,-105.000357646,39.7596659163","geom:latitude":39.755593,"geom:longitude":-105.004,"iso:country":"US","lbl:latitude":39.757623,"lbl:longitude":-105.002824,"lbl:max_zoom":18,"mps:latitude":39.757623,"mps:longitude":-105.002824,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Riverfront Park"],"reversegeo:latitude":39.757623,"reversegeo:longitude":-105.002824,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85871287,102191575,1108750057,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1088a413ce6f9b47e1ce564e29227ed3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750057,"microhood_id":1108748667,"neighbourhood_id":85871287,"region_id":85688603}],"wof:id":1108748667,"wof:lastmodified":1566623858,"wof:name":"Riverfront Park","wof:parent_id":85871287,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781631],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108748891.geojson b/fixtures/microhoods/1108748891.geojson new file mode 100644 index 0000000..4ee7e05 --- /dev/null +++ b/fixtures/microhoods/1108748891.geojson @@ -0,0 +1 @@ +{"id":1108748891,"type":"Feature","bbox":[-104.9811467727039,39.71840355823957,-104.97291066147238,39.72728427852491],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.97324794069851,39.71840355823957],[-104.974295,39.71863629886455],[-104.9747709712863,39.71873846991017],[-104.97518052797459,39.71884915503879],[-104.97552367006477,39.71894281154734],[-104.97604391774989,39.71909606737789],[-104.97646454353786,39.71924080868292],[-104.9769626530236,39.71943663467092],[-104.97748290070872,39.71970057316629],[-104.9780252865932,39.72000708111904],[-104.97853446517863,39.72033061581351],[-104.97916540386058,39.72073077504653],[-104.98111356540485,39.72199934960686],[-104.9811467727039,39.72565169234817],[-104.9775825226059,39.72563466555812],[-104.97757225135744,39.7272619949601],[-104.97755846436917,39.7272619884439],[-104.97640731418426,39.7272774595001],[-104.97525003597701,39.72728019651009],[-104.97408209173102,39.72728287351981],[-104.9735061226371,39.72728372952292],[-104.97293904557557,39.72728427852491],[-104.97291454348647,39.72557694631803],[-104.97291590549145,39.72373966963869],[-104.97291066147238,39.72195349514516],[-104.97291115747419,39.72023151388498],[-104.97293076254545,39.7201060054287],[-104.97299490077859,39.71996799892702],[-104.973100083161,39.71980821434613],[-104.9731838664656,39.71965759779857],[-104.97324863870108,39.71943483298872],[-104.97325167871213,39.71937703877859],[-104.97325190871294,39.71876259454484],[-104.97327099578234,39.71870605833931],[-104.97324794069851,39.71840355823957]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":527377.654354,"geom:bbox":"-104.981146773,39.7184035582,-104.972910661,39.7272842785","geom:latitude":39.723161,"geom:longitude":-104.976437,"iso:country":"US","lbl:latitude":39.72277,"lbl:longitude":-104.976358,"lbl:max_zoom":18,"mps:latitude":39.72277,"mps:longitude":-104.976358,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Alamo Placita"],"name:fra_x_preferred":["Alamo Placita"],"reversegeo:latitude":39.72277,"reversegeo:longitude":-104.976358,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871369,102191575,1108750035,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2830454"},"wof:country":"US","wof:geomhash":"31c094f3e00eeb8aa125210fc9797504","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750035,"microhood_id":1108748891,"neighbourhood_id":85871369,"region_id":85688603}],"wof:id":1108748891,"wof:lastmodified":1566623856,"wof:name":"Alamo Placita","wof:parent_id":85871369,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85802569],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108748895.geojson b/fixtures/microhoods/1108748895.geojson new file mode 100644 index 0000000..5108aed --- /dev/null +++ b/fixtures/microhoods/1108748895.geojson @@ -0,0 +1 @@ +{"id":1108748895,"type":"Feature","bbox":[-104.997199,39.745261,-104.987397,39.761763],"geometry":{"type":"Polygon","coordinates":[[[-104.987407,39.745261],[-104.994133,39.750404],[-104.995465,39.751423],[-104.993019,39.75331],[-104.993418,39.753655],[-104.993828,39.753981],[-104.994272,39.754335],[-104.994293,39.754351],[-104.994816,39.754744],[-104.995148,39.754994],[-104.996119,39.755729],[-104.997019,39.75647],[-104.997199,39.756618],[-104.996065,39.757343],[-104.995678,39.757626],[-104.995304,39.75796],[-104.99487,39.758383],[-104.994385,39.758784],[-104.993942,39.759127],[-104.993482,39.759456],[-104.993019,39.759772],[-104.992635,39.760024],[-104.992296,39.760215],[-104.991973,39.76041],[-104.99153,39.760715],[-104.991248,39.760925],[-104.991113,39.761056],[-104.990963,39.760989],[-104.990588,39.760881],[-104.990252,39.760839],[-104.989942,39.760841],[-104.989602,39.760913],[-104.989287,39.761048],[-104.988098,39.761763],[-104.987656,39.759515],[-104.987414,39.758276],[-104.987397,39.748913],[-104.987398,39.748214],[-104.9874,39.747358],[-104.987397,39.746974],[-104.987401,39.74668],[-104.987408,39.746193],[-104.987408,39.745932],[-104.987408,39.745467],[-104.987407,39.745261]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000093,"geom:area_square_m":881428.178367,"geom:bbox":"-104.997199,39.745261,-104.987397,39.761763","geom:latitude":39.754258,"geom:longitude":-104.990856,"iso:country":"US","lbl:latitude":39.75527,"lbl:longitude":-104.99039,"lbl:max_zoom":18,"mps:latitude":39.75527,"mps:longitude":-104.99039,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":39.75527,"reversegeo:longitude":-104.99039,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871289,102191575,1108750025,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"57622561a53f3c907ef245b23f97e0ed","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750025,"microhood_id":1108748895,"neighbourhood_id":85871289,"region_id":85688603}],"wof:id":1108748895,"wof:lastmodified":1617131212,"wof:name":"Ballpark","wof:parent_id":85871289,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85888337],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108749009.geojson b/fixtures/microhoods/1108749009.geojson new file mode 100644 index 0000000..dfbfa98 --- /dev/null +++ b/fixtures/microhoods/1108749009.geojson @@ -0,0 +1 @@ +{"id":1108749009,"type":"Feature","bbox":[-104.95935955620814,39.6965778228934,-104.94983141371631,39.70394117543276],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.95935823816261,39.70394117543276],[-104.94983141371631,39.70391220500825],[-104.94990559247661,39.696578326801],[-104.95001861724967,39.69657885589714],[-104.95119314751963,39.6965778228934],[-104.95235516474406,39.69658632892435],[-104.95351639296564,39.69658212190905],[-104.95466961715812,39.69657889689734],[-104.95582281135052,39.69657943389927],[-104.95696353149754,39.69658470691843],[-104.95810341464147,39.69658344591386],[-104.95932147506966,39.69658253191051],[-104.95932881709638,39.69839721850769],[-104.95932806809367,39.70022422114965],[-104.95933368411409,39.70203237672314],[-104.95935955620814,39.70386396038174],[-104.95935823816261,39.70394117543276]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00007,"geom:area_square_m":661376.047826,"geom:bbox":"-104.959359556,39.6965778229,-104.949831414,39.7039411754","geom:latitude":39.700261,"geom:longitude":-104.954603,"iso:country":"US","lbl:latitude":39.700253,"lbl:longitude":-104.954604,"lbl:max_zoom":18,"mps:latitude":39.700253,"mps:longitude":-104.954604,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":39.700253,"reversegeo:longitude":-104.954604,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85871327,102191575,1108750035,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b1ad70f8221092fa21a206464be986f0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750035,"microhood_id":1108749009,"neighbourhood_id":85871327,"region_id":85688603}],"wof:id":1108749009,"wof:lastmodified":1566623855,"wof:name":"Bonnie Brae","wof:parent_id":85871327,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420554335],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108749011.geojson b/fixtures/microhoods/1108749011.geojson new file mode 100644 index 0000000..6945c01 --- /dev/null +++ b/fixtures/microhoods/1108749011.geojson @@ -0,0 +1 @@ +{"id":1108749011,"type":"Feature","bbox":[-105.00493910324693,39.75159551427628,-104.99719927992992,39.75896788763997],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.99752859043497,39.75650302656425],[-104.99767322375709,39.75645248579679],[-104.9978112553599,39.75638990539349],[-104.99793159060337,39.75631916227301],[-104.99805900439058,39.75624569818201],[-104.99819349672153,39.7561695131205],[-104.998313831965,39.75610149068504],[-104.99842001012102,39.75604163087562],[-104.9985509631801,39.75594095735297],[-104.99870669114225,39.7557994701171],[-104.99886949764813,39.75566614536409],[-104.99903938269775,39.75554098309394],[-104.99916679648496,39.75544302991236],[-104.99925173900975,39.75537228581933],[-104.99933314226269,39.75531786725612],[-104.99941100624376,39.75527977422276],[-104.9995136451279,39.7552471230384],[-104.99964105891512,39.75521991370306],[-104.99977555124607,39.75519542529351],[-104.99991712212073,39.75517365780977],[-105.00004807517982,39.75514372750305],[-105.00016841042329,39.75510563437338],[-105.00032125007415,39.7550025429625],[-105.00050659413237,39.75483445327041],[-105.00081871742177,39.75459133668275],[-105.00125761994231,39.7542731931995],[-105.00175295278693,39.75388756219819],[-105.00230471595562,39.75343444367878],[-105.002605677684,39.75317896174586],[-105.00265583797207,39.7531211163994],[-105.00269972822412,39.75302952776752],[-105.00273734844016,39.75290419585023],[-105.00275615854818,39.75280296611139],[-105.00275615854818,39.75272583855099],[-105.00274988851217,39.75264389041483],[-105.00273734844016,39.75255712170293],[-105.00272480836814,39.75247035288173],[-105.00271226829614,39.75238358395123],[-105.00269972822412,39.75228717388003],[-105.00268718815211,39.75218112266812],[-105.0026809181161,39.75209435340973],[-105.0026809181161,39.75202686610488],[-105.0026934581881,39.75195937873389],[-105.00271853833215,39.75189189129679],[-105.00274988851217,39.75182922433829],[-105.00278750872823,39.75177137785838],[-105.00285020908831,39.75169906966742],[-105.00297619678291,39.75159551427628],[-105.00384852526535,39.7522950128059],[-105.00425749200843,39.75260943115723],[-105.00453013650383,39.75281904339145],[-105.00493910324693,39.75313346174279],[-105.00485537777196,39.75325229602863],[-105.00479956078864,39.75333151888584],[-105.0047426704018,39.75341445519616],[-105.00468470661144,39.75350110495955],[-105.00462566941755,39.75359146817603],[-105.00456555882016,39.75368554484561],[-105.00449095727515,39.75379818895823],[-105.00440186478258,39.75392940051388],[-105.00429828134239,39.75407917951259],[-105.00418020695463,39.75424752595435],[-105.00406803628624,39.75440803242975],[-105.00396176933725,39.75456069893881],[-105.00386140610766,39.75470552548152],[-105.00376694659744,39.75484251205788],[-105.00367517059604,39.7549778479405],[-105.00358607810347,39.75511153312938],[-105.00349966911969,39.75524356762452],[-105.00341594364471,39.75537395142592],[-105.00334241550324,39.75548576783785],[-105.00327908469527,39.75557901686034],[-105.00322595122078,39.75565369849335],[-105.00318301507976,39.7557098127369],[-105.00314007893874,39.75576592693474],[-105.00309714279774,39.75582204108686],[-105.00305420665673,39.75587815519327],[-105.00301127051574,39.75593426925396],[-105.00296940777825,39.75598832026159],[-105.00292861844429,39.75604030821615],[-105.00288890251386,39.75609023311765],[-105.00285025998696,39.75613809496609],[-105.00280303023186,39.75618925758337],[-105.00274721324854,39.75624372096949],[-105.00268280903705,39.75630148512447],[-105.00260981759732,39.75636255004829],[-105.00253038573646,39.75642732830414],[-105.00244451345444,39.75649581989204],[-105.00235220075129,39.75656802481195],[-105.00225344762697,39.75664394306392],[-105.0021412769586,39.75673265170366],[-105.00201568874617,39.75683415073117],[-105.00187668298965,39.75694844014647],[-105.00172425968907,39.75707551994956],[-105.0015906209502,39.75718692098618],[-105.00147576677298,39.75728264325633],[-105.00137969715749,39.75736268676003],[-105.00130241210368,39.75742705149727],[-105.00123210417279,39.75749059098996],[-105.0011687733648,39.75755330523812],[-105.00111241967973,39.75761519424172],[-105.00106304311757,39.75767625800079],[-105.00101581336247,39.75773732170572],[-105.00097073041441,39.7577983853565],[-105.0009277942734,39.75785944895316],[-105.00088700493944,39.75792051249566],[-105.00084192199138,39.75799271588095],[-105.00079254542922,39.75807605910899],[-105.00073887525296,39.75817054217983],[-105.00068091146261,39.75827616509342],[-105.0006208008652,39.75839292764478],[-105.00055854346074,39.75852082983388],[-105.0004775014946,39.75869741702692],[-105.00035764585972,39.75896788763997],[-105.00010437533348,39.75883677923218],[-104.99983077733884,39.75867227363409],[-104.9995476413095,39.75847375591241],[-104.99857467377234,39.75774933127883],[-104.99737753142023,39.75676444769834],[-104.9973715811874,39.75675955234201],[-104.99719927992992,39.75661796264811],[-104.99735468928908,39.75656404200362],[-104.99752859043497,39.75650302656425]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":188677.164747,"geom:bbox":"-105.004939103,39.7515955143,-104.99719928,39.7589678876","geom:latitude":39.755535,"geom:longitude":-105.001313,"iso:country":"US","lbl:latitude":39.755773,"lbl:longitude":-105.001376,"lbl:max_zoom":18,"mps:latitude":39.755773,"mps:longitude":-105.001376,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":39.755773,"reversegeo:longitude":-105.001376,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85871287,102191575,1108750057,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"f687faae61dd6c5fa8afe29399e11ec9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750057,"microhood_id":1108749011,"neighbourhood_id":85871287,"region_id":85688603}],"wof:id":1108749011,"wof:lastmodified":1566623855,"wof:name":"Central Platte Valley","wof:parent_id":85871287,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420554281],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108749013.geojson b/fixtures/microhoods/1108749013.geojson new file mode 100644 index 0000000..895363b --- /dev/null +++ b/fixtures/microhoods/1108749013.geojson @@ -0,0 +1 @@ +{"id":1108749013,"type":"Feature","bbox":[-104.92283292927064,39.71118639900203,-104.90340752979785,39.7256433945596],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.92232377593818,39.71121445657752],[-104.92223838814508,39.71835192054922],[-104.92221889499342,39.72088599533628],[-104.92223838814508,39.72106591688848],[-104.92225786200044,39.72119094156296],[-104.92227731655952,39.72126106935972],[-104.92231084173221,39.72132894382874],[-104.92235843751854,39.72139456497001],[-104.92242105375998,39.72146091680086],[-104.92249869045651,39.72152799932131],[-104.92256263104208,39.72159506513628],[-104.92261287551673,39.7216621142458],[-104.92265749090572,39.7217406186605],[-104.92269647720903,39.72183057838041],[-104.92273546351237,39.72192803459533],[-104.92277444981566,39.72203298730524],[-104.92280368954314,39.72221290557151],[-104.92282318269481,39.72246778939414],[-104.92283292927064,39.72344981742796],[-104.92279878129358,39.72563207951845],[-104.92166201316093,39.725636365534],[-104.92056253616386,39.72563433952666],[-104.91946121316005,39.72563405752561],[-104.91835741814725,39.72563515252961],[-104.91725685814623,39.72563596853257],[-104.9161546981394,39.72563702753644],[-104.9150490191198,39.72563771253891],[-104.91395211313204,39.72563885354305],[-104.9127937469209,39.72563943054519],[-104.91245113067532,39.72564063554955],[-104.91163665671434,39.72563952854551],[-104.91049922857928,39.72564008654757],[-104.90936032343888,39.72564089255047],[-104.90815481505632,39.72564037954862],[-104.9069430136509,39.72564251355635],[-104.90580298350636,39.7256433945596],[-104.90462741123264,39.72564335355941],[-104.90436423327588,39.72564305355831],[-104.90340752979785,39.72564195955437],[-104.9034938391116,39.72525472814658],[-104.90351070317291,39.72503998136591],[-104.9035200002067,39.72483100160616],[-104.9035289292392,39.72327510194981],[-104.90353403725777,39.72238512671436],[-104.90353662726716,39.72199561229826],[-104.90373471998731,39.72199568429852],[-104.90477272776093,39.72200239132292],[-104.9057897914584,39.72200457133084],[-104.90600750124986,39.72200910234733],[-104.90652160511888,39.72200845934498],[-104.90666075162471,39.72200828034431],[-104.90686516836786,39.72200828234435],[-104.90794414229043,39.72200719734042],[-104.90814500402064,39.72200717834033],[-104.90814612102469,39.72187472285879],[-104.90814684802734,39.72168324116268],[-104.90814831003269,39.72150995153271],[-104.90815786706742,39.72006103026524],[-104.90816497909327,39.71879664766863],[-104.9081655110952,39.71862815805611],[-104.90816691510031,39.71846173145104],[-104.9081694661096,39.71837011911799],[-104.90822279030345,39.71837004411776],[-104.90827611449731,39.71836996911748],[-104.90832943669113,39.71836989411719],[-104.90835609778804,39.7183700281177],[-104.90838275788497,39.71837016311815],[-104.90877714231874,39.71836601610312],[-104.90972911477957,39.71836256009055],[-104.91069162727877,39.71836299509209],[-104.91164345273904,39.71836249609032],[-104.91278129387558,39.7183638740953],[-104.91269504656208,39.71828021679119],[-104.91269743857077,39.71625085041353],[-104.91269915357697,39.71479526912185],[-104.91014666229756,39.71480104714288],[-104.90743191342824,39.71478348807904],[-104.90745444051015,39.71475478297469],[-104.90746042253187,39.71474716094696],[-104.90768746635729,39.71445786989528],[-104.90876508627491,39.71308477590344],[-104.90909655747998,39.71266240136794],[-104.90997751268264,39.71153979228677],[-104.91009747311875,39.71138378671964],[-104.91023680062523,39.71120198305869],[-104.9111244338522,39.71120540807112],[-104.91181268435429,39.71120264406107],[-104.91279185291398,39.7112117560942],[-104.91291821037333,39.71121293109849],[-104.91412568976307,39.71120772407954],[-104.91528412797453,39.71118639900203],[-104.91645565123349,39.71119649903875],[-104.91762253147562,39.71119854804618],[-104.91878663570765,39.71119094401854],[-104.9199521199447,39.71119676203972],[-104.92112176919693,39.71119899304779],[-104.92228589942903,39.71121493410578],[-104.92232377593818,39.71121445657752]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000204,"geom:area_square_m":1941776.580723,"geom:bbox":"-104.922832929,39.711186399,-104.90340753,39.7256433946","geom:latitude":39.719144,"geom:longitude":-104.91497,"iso:country":"US","lbl:latitude":39.720637,"lbl:longitude":-104.917098,"lbl:max_zoom":18,"mps:latitude":39.720637,"mps:longitude":-104.917098,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":39.720637,"reversegeo:longitude":-104.917098,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85866859,102191575,1108750055,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"61696e67c75c5b6b60ca081d05a88f9b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750055,"microhood_id":1108749013,"neighbourhood_id":85866859,"region_id":85688603}],"wof:id":1108749013,"wof:lastmodified":1566623855,"wof:name":"Crestmoor","wof:parent_id":85866859,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85888347],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108749017.geojson b/fixtures/microhoods/1108749017.geojson new file mode 100644 index 0000000..feb0618 --- /dev/null +++ b/fixtures/microhoods/1108749017.geojson @@ -0,0 +1 @@ +{"id":1108749017,"type":"Feature","bbox":[-105.00507377705486,39.7473217104244,-104.99301889332557,39.75676444769834],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.99301889332557,39.75330987241649],[-105.00078259137408,39.7473217104244],[-105.0008074858896,39.74738382559565],[-105.00086604210247,39.74752614211303],[-105.00086631010345,39.74752664211485],[-105.0009186872939,39.74762450847061],[-105.00095380042154,39.74768779770068],[-105.00101717265193,39.74777797402851],[-105.00104084573798,39.74782474319858],[-105.00113881709416,39.7480506130197],[-105.00120557133681,39.74816551043739],[-105.00130691770528,39.74829187889679],[-105.00140527106282,39.7484642165233],[-105.00146777329007,39.74855198684241],[-105.00152422749528,39.74861502407157],[-105.00171409618554,39.7487963277307],[-105.00179544448127,39.74885947096027],[-105.00193257097982,39.74895579231043],[-105.00203431134969,39.74902725557024],[-105.00219350892843,39.74914563200059],[-105.00229163728517,39.74922497328902],[-105.00251722710527,39.74938446586884],[-105.00265441460402,39.74947255018907],[-105.00278537908014,39.74956060850917],[-105.00294013364271,39.74967896493945],[-105.00305592906369,39.74977485228806],[-105.00321429963947,39.74988498768846],[-105.00327444885812,39.74992882184779],[-105.00340443833068,39.75002923021282],[-105.00360852107264,39.75021333588217],[-105.00378436771189,39.75036712644123],[-105.00395066831646,39.7504879318804],[-105.00444335610763,39.75084929219412],[-105.00460869170865,39.75098107367319],[-105.0047740653099,39.75110770913358],[-105.00489786275995,39.75120397048352],[-105.00505618533549,39.75132199591263],[-105.00507377705486,39.75133512600133],[-105.00444211741475,39.75182998082113],[-105.00384852526535,39.7522950128059],[-105.00297619678291,39.75159551427628],[-105.00285020908831,39.75169906966742],[-105.00278750872823,39.75177137785838],[-105.00274988851217,39.75182922433829],[-105.00271853833215,39.75189189129679],[-105.0026934581881,39.75195937873389],[-105.0026809181161,39.75202686610488],[-105.0026809181161,39.75209435340973],[-105.00268718815211,39.75218112266812],[-105.00269972822412,39.75228717388003],[-105.00271226829614,39.75238358395123],[-105.00272480836814,39.75247035288173],[-105.00273734844016,39.75255712170293],[-105.00274988851217,39.75264389041483],[-105.00275615854818,39.75272583855099],[-105.00275615854818,39.75280296611139],[-105.00273734844016,39.75290419585023],[-105.00269972822412,39.75302952776752],[-105.00265583797207,39.7531211163994],[-105.002605677684,39.75317896174586],[-105.00230471595562,39.75343444367878],[-105.00175295278693,39.75388756219819],[-105.00125761994231,39.7542731931995],[-105.00081871742177,39.75459133668275],[-105.00050659413237,39.75483445327041],[-105.00032125007415,39.7550025429625],[-105.00016841042329,39.75510563437338],[-105.00004807517982,39.75514372750305],[-104.99991712212073,39.75517365780977],[-104.99977555124607,39.75519542529351],[-104.99964105891512,39.75521991370306],[-104.9995136451279,39.7552471230384],[-104.99941100624376,39.75527977422276],[-104.99933314226269,39.75531786725612],[-104.99925173900975,39.75537228581933],[-104.99916679648496,39.75544302991236],[-104.99903938269775,39.75554098309394],[-104.99886949764813,39.75566614536409],[-104.99870669114225,39.7557994701171],[-104.9985509631801,39.75594095735297],[-104.99842001012102,39.75604163087562],[-104.998313831965,39.75610149068504],[-104.99819349672153,39.7561695131205],[-104.99805900439058,39.75624569818201],[-104.99793159060337,39.75631916227301],[-104.9978112553599,39.75638990539349],[-104.99767322375709,39.75645248579679],[-104.99752859043497,39.75650302656425],[-104.99735468928908,39.75656404200362],[-104.99719927992992,39.75661796264811],[-104.99701922211761,39.75646966062664],[-104.99611895184472,39.75572897793393],[-104.99514791631458,39.75499355126033],[-104.99481597262434,39.75474402904303],[-104.99470129769094,39.75465808604076],[-104.99429286023202,39.75435080522868],[-104.99427237413158,39.75433539286763],[-104.99382767751496,39.75398105957947],[-104.99341835202688,39.75365467339293],[-104.99301889332557,39.75330987241649]]],[[[-104.99737753142023,39.75676444769834],[-104.99719927992992,39.75661796264811],[-104.9973715811874,39.75675955234201],[-104.99737753142023,39.75676444769834]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000052,"geom:area_square_m":494238.037624,"geom:bbox":"-105.005073777,39.7473217104,-104.993018893,39.7567644477","geom:latitude":39.752225,"geom:longitude":-104.998977,"iso:country":"US","lbl:latitude":39.752356,"lbl:longitude":-104.999067,"lbl:max_zoom":18,"mps:latitude":39.752356,"mps:longitude":-104.999067,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:note":"dup","mz:tier_metro":1,"name:eng_x_preferred":["LoDo"],"name:eng_x_variant":["Lower Downtown"],"name:fra_x_preferred":["LoDo"],"reversegeo:latitude":39.752356,"reversegeo:longitude":-104.999067,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871287,102191575,1108750057,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2369973"},"wof:country":"US","wof:geomhash":"03a9a44964617896dc77ef8567293979","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750057,"microhood_id":1108749017,"neighbourhood_id":85871287,"region_id":85688603}],"wof:id":1108749017,"wof:lastmodified":1566623855,"wof:name":"LoDo","wof:parent_id":85871287,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85888361,85866861],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750017.geojson b/fixtures/microhoods/1108750017.geojson new file mode 100644 index 0000000..a39170b --- /dev/null +++ b/fixtures/microhoods/1108750017.geojson @@ -0,0 +1 @@ +{"id":1108750017,"type":"Feature","bbox":[-104.80990460987351,39.77279561097868,-104.77215652164256,39.79845197625087],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.77235704616741,39.79839822747898],[-104.77215652164256,39.77640955611696],[-104.7815605868305,39.77643574721219],[-104.7815765478885,39.77279561097868],[-104.79098008007452,39.77282619608985],[-104.8004034523326,39.77282938210146],[-104.80816100853474,39.77283120510805],[-104.80989798184942,39.77283154410929],[-104.8098793077815,39.77318834940644],[-104.80989791984916,39.77504890117035],[-104.80990460987351,39.77659516579172],[-104.80990215886459,39.77676048639273],[-104.80987678177235,39.77847218661555],[-104.80984900567137,39.7803456044262],[-104.8097973524836,39.7837554988227],[-104.8097697703833,39.78786844377504],[-104.80975388832559,39.79026471248653],[-104.8097527193213,39.79043117509173],[-104.8097219052093,39.79479135894292],[-104.80970988116559,39.79673629101359],[-104.80969092509667,39.7969845379161],[-104.80963205888264,39.79830680272312],[-104.8002692208446,39.79830561071878],[-104.7908201624931,39.7983039957129],[-104.79081852048716,39.79825433553236],[-104.79057806161296,39.79825842454721],[-104.79025461143709,39.79826645357639],[-104.78994389130747,39.79829451267841],[-104.78963180417293,39.79832112177513],[-104.78900084487913,39.7983790589858],[-104.7886304325325,39.7983984340562],[-104.78792766497764,39.79840186806871],[-104.78743948620286,39.79839496704363],[-104.78730162670172,39.79839301603653],[-104.78641354347315,39.79838516900799],[-104.78637689833988,39.79838733701587],[-104.78631511211529,39.79838429800481],[-104.78627047395298,39.79838446900544],[-104.78576195410432,39.79838641601253],[-104.78274337413046,39.79835963791515],[-104.78050812100429,39.79835372289369],[-104.77988571774159,39.79835763590791],[-104.77926148347223,39.79834455686034],[-104.77833658710983,39.79837902698569],[-104.77771577385289,39.79841339311059],[-104.77625662054822,39.79845116324793],[-104.77513395146684,39.79845197625087],[-104.77422748317144,39.79844562222775],[-104.77235704616741,39.79839822747898]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000925,"geom:area_square_m":8785000.803323,"geom:bbox":"-104.80990461,39.772795611,-104.772156522,39.7984519763","geom:latitude":39.785959,"geom:longitude":-104.791518,"iso:country":"US","lbl:latitude":39.785565,"lbl:longitude":-104.791518,"lbl:max_zoom":18,"mps:latitude":39.785565,"mps:longitude":-104.791518,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":1,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Gateway"],"name:deu_x_preferred":["Gateway"],"name:fas_x_preferred":["دروازه"],"name:fra_x_preferred":["Gateway"],"name:heb_x_preferred":["שער"],"name:ita_x_preferred":["Gateway"],"name:jpn_x_preferred":["ゲートウェイ"],"name:kor_x_preferred":["게이트웨이"],"name:lat_x_preferred":["Gateway"],"name:nld_x_preferred":["Gateway"],"name:pol_x_preferred":["Gateway"],"name:por_x_preferred":["Gateway"],"name:rus_x_preferred":["Шлюз"],"name:spa_x_preferred":["Gateway"],"name:srp_x_preferred":["Гејтвеј"],"name:swe_x_preferred":["Gateway"],"name:tha_x_preferred":["เกตเวย์"],"name:ukr_x_preferred":["Шлюз"],"name:vie_x_preferred":["Gateway"],"name:vol_x_preferred":["Gateway"],"name:zho_x_preferred":["Gateway"],"reversegeo:latitude":39.785565,"reversegeo:longitude":-104.791518,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[102191575,1108750055,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"51bb403d76bdc747abb2aa25d249a314","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750055,"microhood_id":1108750017,"neighbourhood_id":-1,"region_id":85688603}],"wof:id":1108750017,"wof:lastmodified":1566623936,"wof:name":"Gateway","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871363],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750019.geojson b/fixtures/microhoods/1108750019.geojson new file mode 100644 index 0000000..9f658a5 --- /dev/null +++ b/fixtures/microhoods/1108750019.geojson @@ -0,0 +1 @@ +{"id":1108750019,"type":"Feature","bbox":[-104.77235704616741,39.76918626785709,-104.73437196727906,39.79843402318562],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.77215652164256,39.77640955611696],[-104.77235704616741,39.79839822747898],[-104.77211704149903,39.79839214603334],[-104.77185545154805,39.79837029195392],[-104.77131615658749,39.79837813698242],[-104.7712147222187,39.79837527197202],[-104.77111922387155,39.79835902691298],[-104.77102082751384,39.79834276485383],[-104.77088790103056,39.79830169170452],[-104.77076348357826,39.79827855962043],[-104.77055194180923,39.79827054159125],[-104.77034607806081,39.79827373660288],[-104.76978024200372,39.79830061970063],[-104.76593621702904,39.79832012777155],[-104.76529615970213,39.79832983280681],[-104.76500838465591,39.79833446682369],[-104.76462840727453,39.79835445689633],[-104.76428026800892,39.79837911598599],[-104.76366244176285,39.79841103510205],[-104.76297738027233,39.79843332818308],[-104.76269818525736,39.79843395118536],[-104.7626832052029,39.79843402318562],[-104.7626834312037,39.79833572682827],[-104.75326332995746,39.79836868394807],[-104.74381546261031,39.79833482282498],[-104.73437196727906,39.79830812572789],[-104.73445657458666,39.7910522553496],[-104.73452989785318,39.78376918087241],[-104.73453942088781,39.7815939529645],[-104.73456308097383,39.77649509142793],[-104.73459629909462,39.7692172059696],[-104.74400551730128,39.76925501510703],[-104.75343440457942,39.76928327520977],[-104.76281642068716,39.76920170391321],[-104.76457310207348,39.76918626785709],[-104.7645481299827,39.77156661451073],[-104.77218437774383,39.7714994572666],[-104.77215652164256,39.77640955611696]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00108,"geom:area_square_m":10264877.365466,"geom:bbox":"-104.772357046,39.7691862679,-104.734371967,39.7984340232","geom:latitude":39.784037,"geom:longitude":-104.753133,"iso:country":"US","lbl:latitude":39.783825,"lbl:longitude":-104.753136,"lbl:max_zoom":18,"mps:latitude":39.783825,"mps:longitude":-104.753136,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":1,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Green Valley Rnch"],"name:pol_x_preferred":["Green Valley Ranch Resort"],"name:ron_x_preferred":["Green Valley Ranch"],"reversegeo:latitude":39.783825,"reversegeo:longitude":-104.753136,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[102191575,1108750055,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"60d70055fbbdbed6058f964a92dfd0fe","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750055,"microhood_id":1108750019,"neighbourhood_id":-1,"region_id":85688603}],"wof:id":1108750019,"wof:lastmodified":1566623936,"wof:name":"Green Valley Ranch","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871365],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750021.geojson b/fixtures/microhoods/1108750021.geojson new file mode 100644 index 0000000..284e9a9 --- /dev/null +++ b/fixtures/microhoods/1108750021.geojson @@ -0,0 +1 @@ +{"id":1108750021,"type":"Feature","bbox":[-104.95935823816261,39.70391220500825,-104.94983141371631,39.71121031154986],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.95935823816261,39.70394117543276],[-104.95935823816261,39.70394117543277],[-104.95932878209624,39.70566679993584],[-104.95932314107574,39.70732150695142],[-104.95932806009364,39.70749036556532],[-104.95932743509132,39.7093012341486],[-104.95930864102303,39.7109328860804],[-104.95926100584984,39.71111797475328],[-104.95931424904342,39.71118762000646],[-104.95931427402742,39.71121031154986],[-104.94983537489459,39.71109701809399],[-104.94983141371631,39.70391220500825],[-104.95935823816261,39.70394117543276]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":652702.303806,"geom:bbox":"-104.959358238,39.703912205,-104.949831414,39.7112103115","geom:latitude":39.707538,"geom:longitude":-104.95459,"iso:country":"US","lbl:latitude":39.707535,"lbl:longitude":-104.954587,"lbl:max_zoom":18,"mps:latitude":39.707535,"mps:longitude":-104.954587,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ces_x_preferred":["Polo Grounds"],"name:deu_x_preferred":["Polo Grounds"],"name:eng_x_variant":["Polo Club"],"name:eus_x_preferred":["Polo Grounds"],"name:fra_x_preferred":["Polo Grounds"],"name:ita_x_preferred":["Polo Grounds"],"name:jpn_x_preferred":["ポロ・グラウンズ"],"name:kor_x_preferred":["폴로 그라운즈"],"name:por_x_preferred":["Polo Grounds"],"name:spa_x_preferred":["Polo Grounds"],"name:swe_x_preferred":["Polo Grounds"],"reversegeo:latitude":39.707535,"reversegeo:longitude":-104.954587,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85871327,102191575,1108750035,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"022b1eedbf5ab07ec8656fc762874e03","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750035,"microhood_id":1108750021,"neighbourhood_id":85871327,"region_id":85688603}],"wof:id":1108750021,"wof:lastmodified":1566623949,"wof:name":"Polo Grounds","wof:parent_id":85871327,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85888371],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750049.geojson b/fixtures/microhoods/1108750049.geojson new file mode 100644 index 0000000..4dbf3cc --- /dev/null +++ b/fixtures/microhoods/1108750049.geojson @@ -0,0 +1 @@ +{"id":1108750049,"type":"Feature","bbox":[-104.94062103508531,39.75100850277295,-104.90339372774764,39.762018463799],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.90342464786005,39.75221301115187],[-104.90342757887072,39.75101656980223],[-104.90464254728766,39.75101678480303],[-104.90581283554218,39.75101532279774],[-104.90695413769134,39.7510139397927],[-104.90816466109209,39.75101289378887],[-104.90937293848475,39.75100997577829],[-104.91050736460886,39.75101195678548],[-104.91168234188041,39.75100850277295],[-104.91213202651522,39.75100949177653],[-104.91227533403622,39.75101315778983],[-104.91238610943896,39.75102695584002],[-104.91284922912257,39.75108128703755],[-104.91398775926166,39.75108496705093],[-104.91515666451113,39.75107945403084],[-104.91633322378846,39.75108323404459],[-104.91754998821193,39.75107567701713],[-104.91876203461823,39.75107686902146],[-104.91993329987628,39.75107536501599],[-104.92110759714541,39.75107688902153],[-104.92228341942001,39.75107140700163],[-104.92347249374285,39.75106826399019],[-104.92463693097608,39.75106552298024],[-104.92578565415221,39.75106561298054],[-104.92698954352886,39.75106492897805],[-104.92816141278911,39.75106339597249],[-104.92933240004618,39.75105842495441],[-104.93050339230325,39.75105792795262],[-104.93170113065753,39.75105584294505],[-104.93283300377243,39.75105274793378],[-104.93393380277428,39.75104498890556],[-104.93503898879214,39.75104755191489],[-104.93613975779391,39.75104871391909],[-104.93724227480203,39.75104918392083],[-104.93834396480719,39.75104312689882],[-104.93944735381848,39.75104186389422],[-104.94062103508531,39.75103680987581],[-104.94061464806214,39.75284041943274],[-104.94060827403894,39.75441960117377],[-104.94060809503827,39.75466495806575],[-104.94060624403158,39.75500845031451],[-104.94060216001674,39.75596618279627],[-104.9406005290108,39.75650493175488],[-104.94059335698472,39.75829549326437],[-104.94058546795605,39.76017595610068],[-104.94057847493059,39.76180095100824],[-104.94057818892958,39.7619582005799],[-104.93967992366396,39.76199520271444],[-104.93952660110659,39.76199859872679],[-104.93931451633557,39.76199483771308],[-104.9380828538579,39.76199034169673],[-104.9368525733853,39.7619954667154],[-104.93562102690811,39.76199782272397],[-104.93501507870519,39.76199965873064],[-104.93439197443996,39.76200154373748],[-104.93316704898683,39.76200252574102],[-104.93185299220966,39.76200033073309],[-104.92935575113108,39.76199787972416],[-104.92759396872623,39.76200584175308],[-104.92581562626117,39.76201092977158],[-104.9240344587858,39.762018463799],[-104.92244510800782,39.76201459178492],[-104.92229158944974,39.76200731175845],[-104.92213583988348,39.7619961097177],[-104.92197352929344,39.76199531271482],[-104.92113498924499,39.76199380070932],[-104.91997424602516,39.76199593171708],[-104.91881264280221,39.761991512701],[-104.91758682934585,39.76199324870731],[-104.9163762049447,39.76199770772354],[-104.91521282871531,39.76199846172625],[-104.9140526414975,39.76199920372898],[-104.91285130613011,39.7619958337167],[-104.91243103960227,39.76197416863795],[-104.91172998605361,39.76197676764741],[-104.9105733698488,39.76197652164649],[-104.90940887061538,39.7619762496455],[-104.9081803581492,39.76197746764996],[-104.90694839267042,39.76197496664088],[-104.9057916814653,39.76197469363984],[-104.90343941991375,39.76198380867299],[-104.90345651697595,39.76142414263836],[-104.90346186099538,39.76021966225954],[-104.90345893698475,39.75841005068082],[-104.90339372774764,39.75801544324622],[-104.90340331878252,39.75473069730475],[-104.90342363685642,39.75340792549588],[-104.90342464786005,39.75221301115187]]]]},"properties":{"denvercpd:NBHD_ID":"48","denvercpd:NBHD_NAME":"North Park Hill","edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000407,"geom:area_square_m":3866905.496594,"geom:bbox":"-104.940621035,39.7510085028,-104.903393728,39.7620184638","geom:latitude":39.75652,"geom:longitude":-104.922011,"iso:country":"US","lbl:latitude":39.756534,"lbl:longitude":-104.922008,"lbl:max_zoom":18,"mps:latitude":39.756534,"mps:longitude":-104.922008,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":1,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["North Park Hl"],"reversegeo:latitude":39.756534,"reversegeo:longitude":-104.922008,"src:geom":"denvercpd","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85840547,102191575,1108750055,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ef706eb340098b3a30ee84ef588f36f3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750055,"microhood_id":1108750049,"neighbourhood_id":85840547,"region_id":85688603}],"wof:id":1108750049,"wof:lastmodified":1566623945,"wof:name":"North Park Hill","wof:parent_id":85840547,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871339],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750051.geojson b/fixtures/microhoods/1108750051.geojson new file mode 100644 index 0000000..a6a67ad --- /dev/null +++ b/fixtures/microhoods/1108750051.geojson @@ -0,0 +1 @@ +{"id":1108750051,"type":"Feature","bbox":[-104.94068094430315,39.7619582005799,-104.90342900087592,39.79103928730245],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.9035106141726,39.78382337406947],[-104.90353461025984,39.7828358884795],[-104.90354210428706,39.7814672235038],[-104.90353135324801,39.77933569275473],[-104.90353927027678,39.77928449956863],[-104.9035497033147,39.77915394209401],[-104.90357149339394,39.7786601092987],[-104.90356952038672,39.77848984167969],[-104.90356884038425,39.77843114946631],[-104.90356743937917,39.77830971302484],[-104.90356805338143,39.77823764076282],[-104.90356849938303,39.77818514857199],[-104.90356057035422,39.77744095386652],[-104.90349684412251,39.77739326069315],[-104.90356541437183,39.77731109039445],[-104.90358677544947,39.77652743654551],[-104.9035839564392,39.77523253183796],[-104.90366010571609,39.7748202653392],[-104.90365740070621,39.77473363802426],[-104.90365496469735,39.7746134795874],[-104.90364223665108,39.77448259211161],[-104.90361924556754,39.77433830158702],[-104.90355682434057,39.77394818316878],[-104.90354074928217,39.77380392764434],[-104.90353112224716,39.77371577332389],[-104.90351161117621,39.77356883078966],[-104.90350582515521,39.77343531030425],[-104.90349995113382,39.77331246285763],[-104.90349751912498,39.77273339675247],[-104.903492028105,39.77176924924737],[-104.90349316410914,39.77110162782031],[-104.9034951871165,39.76927727218794],[-104.90351329918235,39.76847558127344],[-104.90351691019549,39.76819186124203],[-104.90345828298234,39.76804715371594],[-104.90345207895979,39.76746063858371],[-104.90344709494167,39.7667264309145],[-104.90344926194956,39.76564357897786],[-104.90342900087592,39.7638359294063],[-104.90343941991375,39.76198380867299],[-104.9057916814653,39.76197469363984],[-104.90694839267042,39.76197496664088],[-104.9081803581492,39.76197746764996],[-104.90940887061538,39.7619762496455],[-104.9105733698488,39.76197652164649],[-104.91172998605361,39.76197676764741],[-104.91243103960227,39.76197416863795],[-104.91285130613011,39.7619958337167],[-104.9140526414975,39.76199920372898],[-104.91521282871531,39.76199846172625],[-104.9163762049447,39.76199770772354],[-104.91758682934585,39.76199324870731],[-104.91881264280221,39.761991512701],[-104.91997424602516,39.76199593171708],[-104.92113498924499,39.76199380070932],[-104.92197352929344,39.76199531271482],[-104.92213583988348,39.7619961097177],[-104.92229158944974,39.76200731175845],[-104.92244510800782,39.76201459178492],[-104.9240344587858,39.762018463799],[-104.92581562626117,39.76201092977158],[-104.92759396872623,39.76200584175308],[-104.92935575113108,39.76199787972416],[-104.93185299220966,39.76200033073309],[-104.93316704898683,39.76200252574102],[-104.93439197443996,39.76200154373748],[-104.93501507870519,39.76199965873064],[-104.93562102690811,39.76199782272397],[-104.9368525733853,39.7619954667154],[-104.9380828538579,39.76199034169673],[-104.93931451633557,39.76199483771308],[-104.93952660110659,39.76199859872679],[-104.93967992366396,39.76199520271444],[-104.94057818892958,39.7619582005799],[-104.94057193490681,39.76376668315453],[-104.9405698378992,39.76447529073062],[-104.94057007290007,39.76567104607773],[-104.94062575410248,39.76579643353358],[-104.94063053311987,39.76690860057681],[-104.94061839507572,39.76809607189375],[-104.94060707103455,39.76918253984354],[-104.94061724407157,39.77287765627693],[-104.94061716407128,39.77288765631329],[-104.94060953804353,39.77384760580316],[-104.94065060819287,39.77508014428395],[-104.94065725021699,39.77756978733493],[-104.9406661602494,39.77808998322604],[-104.94068094430315,39.77902389262124],[-104.94067622328595,39.77973168219432],[-104.94066848925786,39.78002986627837],[-104.9406420421617,39.78058094928178],[-104.94063724514427,39.78106817005306],[-104.94061130604996,39.78135734410432],[-104.94059615599491,39.78149872361831],[-104.9405567918518,39.78226988542184],[-104.94051898671432,39.78377443589153],[-104.94056244887236,39.78724495450842],[-104.94056852189442,39.78793300700977],[-104.94055133483192,39.78842998981651],[-104.94054954282541,39.78865449763271],[-104.94054784881928,39.78886675940436],[-104.9405296777532,39.78915446145032],[-104.94049542062868,39.78946861959241],[-104.94043518140967,39.78972346451889],[-104.94039111724948,39.78992942326761],[-104.94038021520987,39.78998037645289],[-104.94032541201062,39.79021687731267],[-104.94024937773418,39.79046144120173],[-104.94016230541763,39.79076310329845],[-104.94008842814907,39.79097526606972],[-104.93166084151107,39.79101647921954],[-104.92695000238513,39.79103928730245],[-104.92698092249753,39.78377590289688],[-104.9222741143862,39.78379991598416],[-104.91289897530345,39.78381977305634],[-104.9035106141726,39.78382337406947]]]]},"properties":{"denvercpd:NBHD_ID":"49","denvercpd:NBHD_NAME":"Northeast Park Hill","edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000907,"geom:area_square_m":8617921.188791,"geom:bbox":"-104.940680944,39.7619582006,-104.903429001,39.7910392873","geom:latitude":39.774454,"geom:longitude":-104.92331,"iso:country":"US","lbl:latitude":39.772906,"lbl:longitude":-104.923309,"lbl:max_zoom":18,"mps:latitude":39.772906,"mps:longitude":-104.923309,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":1,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Northeast Park Hl"],"reversegeo:latitude":39.772906,"reversegeo:longitude":-104.923309,"src:geom":"denvercpd","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85840547,102191575,1108750055,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"28c8e56adb0067519613b7fee585487c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750055,"microhood_id":1108750051,"neighbourhood_id":85840547,"region_id":85688603}],"wof:id":1108750051,"wof:lastmodified":1566623948,"wof:name":"Northeast Park Hill","wof:parent_id":85840547,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871333],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750053.geojson b/fixtures/microhoods/1108750053.geojson new file mode 100644 index 0000000..cd0b0b7 --- /dev/null +++ b/fixtures/microhoods/1108750053.geojson @@ -0,0 +1 @@ +{"id":1108750053,"type":"Feature","bbox":[-104.94066357923998,39.74012937022246,-104.90342284685352,39.75108496705093],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.90342757887072,39.75101656980223],[-104.90342284685352,39.74982277046229],[-104.90343654890336,39.74863158013176],[-104.90344777394415,39.74744193980689],[-104.90346375400225,39.74561563716748],[-104.90345506697065,39.7437852235131],[-104.90345873698402,39.74260234321281],[-104.90345269896204,39.74197836594442],[-104.90345511097081,39.74147965513134],[-104.90345509397076,39.74014630828407],[-104.90465253232395,39.74015877132939],[-104.90579738948605,39.74015407331228],[-104.90694148064529,39.74015978633304],[-104.90815677806347,39.74015507731593],[-104.90935624842405,39.74014812229063],[-104.91050010158244,39.74014949429562],[-104.91164056272856,39.74014936529517],[-104.9124304156,39.7401539413118],[-104.91280298995446,39.74015473531472],[-104.91394861711933,39.74014931329498],[-104.915055675144,39.74014685528607],[-104.91632271675024,39.74014704228671],[-104.91725476113862,39.74014617128358],[-104.91755576923293,39.74014560228147],[-104.9183593991545,39.74014477327847],[-104.91877335065936,39.74014622728379],[-104.91945708514504,39.74014582628229],[-104.91994925093428,39.74014301427206],[-104.92056093915807,39.74014259527058],[-104.9211332332386,39.74013982726052],[-104.92166173815991,39.74014114726532],[-104.92232125455757,39.74014298427198],[-104.92343114559253,39.74015046029916],[-104.92460937187587,39.74014640828443],[-104.92577635011838,39.74015071030004],[-104.9269005432053,39.7401430722723],[-104.9275261954798,39.7401387012564],[-104.92806718344656,39.74013858525598],[-104.92865852459636,39.74013620724736],[-104.9292208456406,39.74013584724605],[-104.92979965974484,39.74013556424501],[-104.93037966885345,39.74013494224272],[-104.93093440287015,39.74013453824125],[-104.93153477405275,39.74013583024595],[-104.93208740206182,39.74013393123909],[-104.9326914202577,39.74013705625043],[-104.93380109429182,39.74013656624862],[-104.93500276866047,39.74013764425257],[-104.93551759253205,39.74013771125283],[-104.93614841382538,39.74013730325134],[-104.93723713678338,39.7401385042557],[-104.93838540395785,39.7401323502333],[-104.93894408898888,39.74013044822641],[-104.93948913097034,39.74013576324575],[-104.94066357923998,39.74012937022246],[-104.94065799221971,39.74138736479586],[-104.94065686121559,39.74175213712198],[-104.9406562342133,39.74194224481306],[-104.94065390120483,39.74256918509229],[-104.94065083119364,39.74339995911254],[-104.9406533462028,39.74375342539753],[-104.94064464217115,39.74495615576996],[-104.9406397571534,39.74612596102276],[-104.94063500013613,39.7473911636223],[-104.94062821811144,39.7492445303601],[-104.94062103508531,39.75103680987581],[-104.93944735381848,39.75104186389422],[-104.93834396480719,39.75104312689882],[-104.93724227480203,39.75104918392083],[-104.93613975779391,39.75104871391909],[-104.93503898879214,39.75104755191489],[-104.93393380277428,39.75104498890556],[-104.93283300377243,39.75105274793378],[-104.93170113065753,39.75105584294505],[-104.93050339230325,39.75105792795262],[-104.92933240004618,39.75105842495441],[-104.92816141278911,39.75106339597249],[-104.92698954352886,39.75106492897805],[-104.92578565415221,39.75106561298054],[-104.92463693097608,39.75106552298024],[-104.92347249374285,39.75106826399019],[-104.92228341942001,39.75107140700163],[-104.92110759714541,39.75107688902153],[-104.91993329987628,39.75107536501599],[-104.91876203461823,39.75107686902146],[-104.91754998821193,39.75107567701713],[-104.91633322378846,39.75108323404459],[-104.91515666451113,39.75107945403084],[-104.91398775926166,39.75108496705093],[-104.91284922912257,39.75108128703755],[-104.91238610943896,39.75102695584002],[-104.91227533403622,39.75101315778983],[-104.91213202651522,39.75100949177653],[-104.91168234188041,39.75100850277295],[-104.91050736460886,39.75101195678548],[-104.90937293848475,39.75100997577829],[-104.90816466109209,39.75101289378887],[-104.90695413769134,39.7510139397927],[-104.90581283554218,39.75101532279774],[-104.90464254728766,39.75101678480303],[-104.90342757887072,39.75101656980223]]]]},"properties":{"denvercpd:NBHD_ID":"57","denvercpd:NBHD_NAME":"South Park Hill","edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000406,"geom:area_square_m":3856849.734061,"geom:bbox":"-104.940663579,39.7401293702,-104.903422847,39.7510849671","geom:latitude":39.745598,"geom:longitude":-104.92206,"iso:country":"US","lbl:latitude":39.745607,"lbl:longitude":-104.922061,"lbl:max_zoom":18,"mps:latitude":39.745607,"mps:longitude":-104.922061,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":1,"mz:is_landuse_aoi":0,"mz:is_official":1,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["South Park Hl"],"reversegeo:latitude":39.745607,"reversegeo:longitude":-104.922061,"src:geom":"denvercpd","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85840547,102191575,1108750055,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"936c861da5589864248b44ee6e37092d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750055,"microhood_id":1108750053,"neighbourhood_id":85840547,"region_id":85688603}],"wof:id":1108750053,"wof:lastmodified":1566623948,"wof:name":"South Park Hill","wof:parent_id":85840547,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85871337],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108750115.geojson b/fixtures/microhoods/1108750115.geojson new file mode 100644 index 0000000..ab29e42 --- /dev/null +++ b/fixtures/microhoods/1108750115.geojson @@ -0,0 +1 @@ +{"id":1108750115,"type":"Feature","bbox":[-104.98820604893032,39.74377953449243,-104.97191569485523,39.77293087761827],"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.98809797423775,39.76176306334075],[-104.98817097694435,39.76203338325866],[-104.98820604893032,39.76228811357927],[-104.98817425306252,39.76254939379151],[-104.98810009309899,39.7627870840281],[-104.98798448362541,39.76304450053006],[-104.98784277179436,39.76328100538196],[-104.98768874196725,39.76348741442499],[-104.9874643581111,39.76371463668202],[-104.98720853686602,39.76393019240061],[-104.98652336941868,39.76443406419772],[-104.98207070174551,39.76784191815666],[-104.9753834843003,39.77293087761827],[-104.97498527501449,39.77263001637664],[-104.97455014843263,39.77230173518319],[-104.9736801312697,39.77161531368779],[-104.9728100221065,39.77094329824467],[-104.97236683449529,39.77062526708852],[-104.97191569485523,39.77030101990971],[-104.97334705605886,39.76918806186364],[-104.9733431870448,39.76816407014098],[-104.9733379030256,39.76792040625514],[-104.97334606605523,39.76718883559556],[-104.97334855906433,39.76697540481968],[-104.97335217607747,39.76649397406942],[-104.97332875999234,39.7660594344897],[-104.97332235996907,39.76584596271363],[-104.9733194059583,39.76576565242169],[-104.97332850399141,39.76514664017128],[-104.97334037803455,39.76451288486732],[-104.97333555601705,39.76420779675817],[-104.97333066099924,39.7637939302536],[-104.97333647402036,39.76325691730131],[-104.9733445130496,39.76242342827123],[-104.97334022203398,39.7620476529051],[-104.97334312404456,39.76177966093081],[-104.97335051007138,39.76115171764798],[-104.97334189804008,39.7607591102207],[-104.97333731802343,39.76042176699428],[-104.97332461597728,39.75950822767317],[-104.97334925206684,39.75824106206647],[-104.97335489908738,39.75772600919402],[-104.97336313011726,39.75698517050074],[-104.97336147311125,39.75637709029013],[-104.97336091910927,39.75574053197596],[-104.9733676721338,39.75531504842911],[-104.97336119011021,39.75511255569296],[-104.97336077510874,39.754931024033],[-104.97335920310303,39.754548397642],[-104.97336468712297,39.75322623783535],[-104.97336336011813,39.75198228831306],[-104.97335769509755,39.75072390373828],[-104.97335905610248,39.74947722020602],[-104.97335677009414,39.7483609181478],[-104.9733343420126,39.74811912526877],[-104.97333506401526,39.74752910412377],[-104.9733389520294,39.74696410206974],[-104.97336588612728,39.74594325035849],[-104.97338490819646,39.74508731724683],[-104.97339036021629,39.74483512032998],[-104.97338317319014,39.74377953449243],[-104.9739807693627,39.74423208713768],[-104.97477728025837,39.74483548533129],[-104.97614177121886,39.74590848623211],[-104.97648667547276,39.74617970221811],[-104.97699330531458,39.7465559965861],[-104.97754415631715,39.74696439907081],[-104.97817763462012,39.74750082002095],[-104.98740739859866,39.75456854046497],[-104.98741426546405,39.75827576661056],[-104.98765554043274,39.75951526195595],[-104.98809797423775,39.76176306334075]]]]},"properties":{"denvercpd:NBHD_ID":"","denvercpd:NBHD_NAME":"","edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000281,"geom:area_square_m":2673556.86991,"geom:bbox":"-104.988206049,39.7437795345,-104.971915695,39.7729308776","geom:latitude":39.759077,"geom:longitude":-104.979211,"iso:country":"US","lbl:latitude":39.76072,"lbl:longitude":-104.97957,"lbl:max_zoom":18,"mps:latitude":39.76072,"mps:longitude":-104.97957,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Curtis Park"],"name:swe_x_preferred":["Curtis Park"],"reversegeo:latitude":39.76072,"reversegeo:longitude":-104.97957,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85871289,102191575,1108750025,85633793,85928879,102086135,85688603],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"faf85f9b6086604d2d269e03bf6a6add","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086135,"locality_id":85928879,"macrohood_id":1108750025,"microhood_id":1108750115,"neighbourhood_id":85871289,"region_id":85688603}],"wof:id":1108750115,"wof:lastmodified":1566623941,"wof:name":"Curtis Park","wof:parent_id":85871289,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108757227.geojson b/fixtures/microhoods/1108757227.geojson new file mode 100644 index 0000000..53c44cd --- /dev/null +++ b/fixtures/microhoods/1108757227.geojson @@ -0,0 +1 @@ +{"id":1108757227,"type":"Feature","bbox":[-121.82899846933182,37.35086396843015,-121.82240543164676,37.35640309436623],"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.82899846933182,37.3540530091009],[-121.82899846933182,37.35405300910091],[-121.82778186307792,37.35475659432645],[-121.82683533342609,37.35529770351657],[-121.82575049046248,37.35591762405833],[-121.82514474481383,37.35626268634483],[-121.82501809648012,37.35633289037609],[-121.82493144235707,37.35637527770749],[-121.82488478244466,37.35638984833903],[-121.82483978895769,37.35639912055861],[-121.82479646189617,37.35640309436623],[-121.82475313483465,37.35640243206491],[-121.8247098077731,37.35639713365466],[-121.82466814713702,37.35638388762528],[-121.82462815292638,37.3563626939768],[-121.82458982514117,37.35634083802023],[-121.82455316378145,37.35631831975559],[-121.82443901363857,37.35620307890549],[-121.82424737471258,37.35599511546995],[-121.82396491559994,37.35569773947081],[-121.82359163630065,37.35531095090806],[-121.8231550328345,37.35482746146754],[-121.82240543164676,37.35395774128903],[-121.82447890180072,37.35255910871228],[-121.82577877152237,37.35165844554692],[-121.8269613743495,37.35086396843015],[-121.82699156427749,37.35093227344284],[-121.82713887816712,37.35123058200327],[-121.82731255348965,37.35155354298645],[-121.82745831670675,37.35180747351574],[-121.82757616781846,37.35199237359113],[-121.82774053910583,37.35224630193557],[-121.82795143056887,37.35256925854905],[-121.82820574086254,37.35293782150578],[-121.82850346998683,37.35335199080574],[-121.82875157759041,37.35370206114232],[-121.82895006367326,37.35398803251552],[-121.82899846933182,37.3540530091009]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":182193.752416,"geom:bbox":"-121.828998469,37.3508639684,-121.822405432,37.3564030944","geom:latitude":37.353811,"geom:longitude":-121.825763,"iso:country":"US","lbl:latitude":37.35379,"lbl:longitude":-121.825763,"lbl:max_zoom":18,"mps:latitude":37.35379,"mps:longitude":-121.825763,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Granite Creek"],"name:deu_x_preferred":["Granite Creek"],"name:swe_x_preferred":["Granite Creek"],"reversegeo:latitude":37.35379,"reversegeo:longitude":-121.825763,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108757225,102191575,1108782555,85633793,85922347,102081673,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"fd8b21d79f6ec7d499d7ae738f1f3a51","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081673,"locality_id":85922347,"macrohood_id":1108782555,"microhood_id":1108757227,"neighbourhood_id":1108757225,"region_id":85688637}],"wof:id":1108757227,"wof:lastmodified":1566623936,"wof:name":"Granite Creek","wof:parent_id":1108757225,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420552669],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108757233.geojson b/fixtures/microhoods/1108757233.geojson new file mode 100644 index 0000000..7d9d748 --- /dev/null +++ b/fixtures/microhoods/1108757233.geojson @@ -0,0 +1 @@ +{"id":1108757233,"type":"Feature","bbox":[-121.83219156108494,37.35764541638404,-121.82909764922947,37.35949508490548],"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.83219156108494,37.35825858672501],[-121.830004643695,37.35928910778567],[-121.82955892070052,37.35949508490548],[-121.82909764922947,37.35886479313709],[-121.83175672556915,37.35764541638404],[-121.83184206792757,37.35776472374539],[-121.83219156108494,37.35825858672501]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":21621.339138,"geom:bbox":"-121.832191561,37.3576454164,-121.829097649,37.3594950849","geom:latitude":37.35857,"geom:longitude":-121.830643,"iso:country":"US","lbl:latitude":37.35857,"lbl:longitude":-121.830648,"lbl:max_zoom":18,"mps:latitude":37.35857,"mps:longitude":-121.830648,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Wilbur"],"name:deu_x_preferred":["Wilbur"],"name:fra_x_preferred":["Wilbur"],"name:ita_x_preferred":["Wilbur"],"name:jpn_x_preferred":["ウィルバー"],"name:lat_x_preferred":["Wilburgus"],"name:pol_x_preferred":["Wilbur"],"name:por_x_preferred":["Wilbur"],"name:rus_x_preferred":["Уилбур"],"name:swe_x_preferred":["Wilbur"],"name:ukr_x_preferred":["Вілбер"],"reversegeo:latitude":37.35857,"reversegeo:longitude":-121.830648,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108757225,102191575,1108782555,85633793,85922347,102081673,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"3682c15acf8372c365c26dc62588e85e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081673,"locality_id":85922347,"macrohood_id":1108782555,"microhood_id":1108757233,"neighbourhood_id":1108757225,"region_id":85688637}],"wof:id":1108757233,"wof:lastmodified":1566623938,"wof:name":"Wilbur","wof:parent_id":1108757225,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108757235.geojson b/fixtures/microhoods/1108757235.geojson new file mode 100644 index 0000000..d452710 --- /dev/null +++ b/fixtures/microhoods/1108757235.geojson @@ -0,0 +1 @@ +{"id":1108757235,"type":"Feature","bbox":[-121.82547183203292,37.35810507955348,-121.82204854120451,37.3608140862513],"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.82204854120451,37.35953862713288],[-121.82420035519004,37.35810507955348],[-121.82547183203292,37.35949923733055],[-121.82321661568061,37.3608140862513],[-121.823105686271,37.3606905012539],[-121.823001804076,37.3605780685185],[-121.822895789512,37.3604598915237],[-121.822875779179,37.3604375113828],[-121.822773232775,37.3603227836739],[-121.822668398107,37.3602070375689],[-121.822563563764,37.3600912913695],[-121.822460159867,37.3599747051085],[-121.8223578972,37.3598642584126],[-121.822253694547,37.359754987088],[-121.822133262157,37.3596308195144],[-121.82204854120451,37.35953862713288]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":45312.8236,"geom:bbox":"-121.825471832,37.3581050796,-121.822048541,37.3608140863","geom:latitude":37.359478,"geom:longitude":-121.823752,"iso:country":"US","lbl:latitude":37.359452,"lbl:longitude":-121.823754,"lbl:max_zoom":18,"mps:latitude":37.359452,"mps:longitude":-121.823754,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":37.359452,"reversegeo:longitude":-121.823754,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108757225,102191575,1108782555,85633793,85922347,102081673,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ef3dd93165f59d48c9a7bc2ffea0e30c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081673,"locality_id":85922347,"macrohood_id":1108782555,"microhood_id":1108757235,"neighbourhood_id":1108757225,"region_id":85688637}],"wof:id":1108757235,"wof:lastmodified":1566623938,"wof:name":"Malabar-Nordyke","wof:parent_id":1108757225,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108782565.geojson b/fixtures/microhoods/1108782565.geojson new file mode 100644 index 0000000..6b4f859 --- /dev/null +++ b/fixtures/microhoods/1108782565.geojson @@ -0,0 +1 @@ +{"id":1108782565,"type":"Feature","bbox":[-121.89498093011504,37.26203972444831,-121.8763021822518,37.27569641938899],"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.89139963630647,37.26203972444831],[-121.89498093011504,37.27081983416043],[-121.89486834926666,37.27087965260179],[-121.89473203347018,37.27095123305428],[-121.89461009110804,37.27101432710025],[-121.89450252218023,37.27106893473968],[-121.89438892568317,37.2711213285254],[-121.89426930161689,37.27117150845739],[-121.89414364998137,37.27121947453568],[-121.8940119707766,37.27126522676026],[-121.89387519132097,37.27130913411563],[-121.89373331161445,37.2713511966018],[-121.89358633165705,37.27139141421877],[-121.89343425144872,37.27142978696653],[-121.89307723388656,37.27152276658271],[-121.89251527897052,37.2716703530673],[-121.89174838670061,37.2718725464203],[-121.89077655707686,37.27212934664172],[-121.889812609659,37.27238356327851],[-121.88885654444704,37.27263519633068],[-121.88790836144102,37.27288424579821],[-121.8869680606409,37.27313071168111],[-121.88605418841357,37.27337053558666],[-121.88516674475903,37.27360371751487],[-121.88430572967727,37.2738302574657],[-121.88347114316832,37.27405015543919],[-121.88274829851972,37.27424016773637],[-121.88213719573149,37.27440029435726],[-121.88163783480361,37.27453053530184],[-121.88125021573612,37.27463089057013],[-121.8808741881479,37.27472829410178],[-121.88050975203899,37.27482274589679],[-121.88015690740936,37.27491424595517],[-121.879815654259,37.2750027942769],[-121.879505002614,37.27508359456463],[-121.87922495247432,37.27515664681837],[-121.87897550383997,37.27522195103809],[-121.87875665671098,37.27527950722381],[-121.87855542863048,37.27533226703627],[-121.8783718195985,37.27538023047547],[-121.87820582961504,37.27542339754141],[-121.87805745868013,37.27546176823409],[-121.8779137243369,37.27549755627163],[-121.87777462658542,37.27553076165403],[-121.87764016542565,37.27556138438128],[-121.87751034085758,37.27558942445339],[-121.87738747117712,37.27561451293418],[-121.87727155638419,37.27563664982367],[-121.87716259647885,37.27565583512184],[-121.87706059146107,37.2756720688287],[-121.87690758393443,37.27569641938899],[-121.87684921448727,37.27555026630814],[-121.8768076619552,37.27546742287475],[-121.87677113225666,37.27539547980513],[-121.87673186283075,37.27531881313304],[-121.87668985367745,37.27523742285852],[-121.87664830114537,37.27516220947248],[-121.87660720523454,37.27509317297495],[-121.87656656594491,37.27503031336591],[-121.87652638327654,37.27497363064537],[-121.87648802709307,37.27491404106193],[-121.87645149739456,37.27485154461561],[-121.87641679418094,37.27478614130639],[-121.87638391745227,37.27471783113427],[-121.87635652017838,37.27465497120637],[-121.87633460235925,37.27459756152271],[-121.87631816399491,37.27454560208326],[-121.87630720508535,37.27449909288804],[-121.8763021822518,37.27445258366407],[-121.87630309549426,37.27440607441138],[-121.87630994481275,37.27435956512995],[-121.87632273020722,37.27431305581979],[-121.87634464802635,37.27426327628176],[-121.8763756982701,37.27421022651588],[-121.87641588093848,37.27415390652213],[-121.8764651960315,37.27409431630051],[-121.87652227368545,37.27403508938845],[-121.87658711390034,37.27397622578594],[-121.87665971667616,37.27391772549299],[-121.87674008201293,37.27385958850958],[-121.87682775328939,37.27379454767745],[-121.87692273050556,37.27372260299659],[-121.87702501366144,37.273643754467],[-121.87713460275705,37.27355800208868],[-121.87722729686706,37.27348387711891],[-121.87730309599152,37.2734213795577],[-121.87736200013039,37.27337050940503],[-121.87740400928371,37.2733312666609],[-121.87744830154317,37.27329129717651],[-121.8774948769088,37.27325060095186],[-121.87754373538058,37.27320917798694],[-121.87759487695853,37.27316702828175],[-121.87764510529401,37.27312451519219],[-121.87769442038703,37.27308163871828],[-121.87774282223758,37.27303839886001],[-121.87779031084567,37.27299479561737],[-121.877838256075,37.27295119234949],[-121.87788665792553,37.27290758905635],[-121.87793551639732,37.27286398573795],[-121.87798483149034,37.27282038239429],[-121.8780277538861,37.27277605230042],[-121.87806428358464,37.2727309954563],[-121.87809442058591,37.27268521186197],[-121.87811816488997,37.2726387015174],[-121.87814008270908,37.27259110105373],[-121.87816017404327,37.27254241047097],[-121.87817843889253,37.2724926297691],[-121.87819487725687,37.27244175894812],[-121.87820857589382,37.27237635349113],[-121.87821953480338,37.2722964133981],[-121.87822775398556,37.27220193866906],[-121.87823323344031,37.27209292930399],[-121.8782387128951,37.27191742302088],[-121.87824419234988,37.27167541981973],[-121.87824967180467,37.27136691970052],[-121.87825515125945,37.27099192266327],[-121.8782615439567,37.2706340025911],[-121.8782688498964,37.27029315948402],[-121.87827706907856,37.26996939334202],[-121.87828620150319,37.26966270416509],[-121.87829350744289,37.26941124788659],[-121.87829898689766,37.26921502450651],[-121.87830263986751,37.26907403402485],[-121.87830446635245,37.26898827644162],[-121.87830629283737,37.26891196668512],[-121.8783081193223,37.26884510475538],[-121.87830994580722,37.26878769065237],[-121.87831177229215,37.26873972437613],[-121.87831222891337,37.26869139468703],[-121.87831131567091,37.26864270158509],[-121.87830903256474,37.26859364507033],[-121.8783053795949,37.26854422514271],[-121.8782967037915,37.26849480518267],[-121.87828300515456,37.26844538519018],[-121.87826428368408,37.26839596516526],[-121.87824053938002,37.26834654510791],[-121.8782140553486,37.26829203763649],[-121.87818483158978,37.268232442751],[-121.87815286810357,37.26816776045145],[-121.87811816488994,37.26809799073784],[-121.87808117857018,37.26801913630217],[-121.87804190914426,37.26793119714446],[-121.87800035661219,37.2678341732647],[-121.87795652097395,37.2677280646629],[-121.87791177209326,37.26761904880112],[-121.8778661099701,37.26750712567935],[-121.87781953460447,37.2673922952976],[-121.87777204599638,37.26727455765587],[-121.87772638387321,37.26716590460109],[-121.87768254823499,37.26706633613324],[-121.87764053908167,37.26697585225235],[-121.87760035641328,37.26689445295841],[-121.87756382671475,37.26681414375253],[-121.87753094998608,37.26673492463473],[-121.87750172622725,37.26665679560499],[-121.87747615543829,37.26657975666332],[-121.87745058464931,37.26650635157608],[-121.87742501386035,37.26643658034327],[-121.87739944307137,37.26637044296489],[-121.8773738722824,37.26630793944095],[-121.87735104122082,37.26624870641351],[-121.87733094988663,37.26619274388256],[-121.87731359827983,37.26614005184812],[-121.87729898640042,37.26609063031017],[-121.87728574438471,37.26604302571491],[-121.87727387223268,37.26599723806233],[-121.87726336994436,37.26595326735241],[-121.87725423751974,37.26591111358518],[-121.87725058454988,37.26587223035509],[-121.8772524110348,37.26583661766217],[-121.8772597169745,37.26580427550641],[-121.877272502369,37.2657752038878],[-121.87729168046073,37.26574613225797],[-121.87731725124968,37.26571706061692],[-121.87734921473589,37.26568798896465],[-121.87738757091935,37.26565891730115],[-121.87742775358772,37.26563420638404],[-121.87746976274104,37.26561385621331],[-121.87751359837928,37.26559786678895],[-121.87755926050244,37.26558623811098],[-121.87762958017211,37.26556952187714],[-121.87772455738829,37.26554771808743],[-121.87784419215097,37.26552082674185],[-121.87798848446016,37.26548884784039],[-121.8781117721927,37.26546050289929],[-121.87821405534858,37.26543579191854],[-121.87829533392781,37.26541471489814],[-121.87835560793037,37.26539727183809],[-121.87844419244931,37.26537328761285],[-121.87856108748461,37.2653427622224],[-121.87870629303626,37.26530569566677],[-121.87887980910428,37.26526208794593],[-121.87903277721686,37.26522465797771],[-121.87916519737402,37.26519340576209],[-121.87927706957578,37.26516833129909],[-121.87936839382209,37.26514943458869],[-121.87944601943147,37.26513380846184],[-121.8795099464039,37.26512145291851],[-121.87956017473937,37.26511236795874],[-121.8795967044379,37.26510655358248],[-121.87963825696997,37.26510001240837],[-121.87968483233561,37.26509274443637],[-121.87973643053478,37.26508474966651],[-121.87979305156749,37.26507602809878],[-121.87985834840362,37.26506221894257],[-121.87993232104313,37.26504332219788],[-121.88001496948607,37.26501933786473],[-121.88010629373238,37.2649902659431],[-121.88023597416216,37.26495247240548],[-121.88040401077541,37.26490595725186],[-121.88061040357209,37.26485072048224],[-121.88085515255221,37.26478676209663],[-121.88106565493999,37.26473261549427],[-121.8812419107354,37.26468828067515],[-121.88138391993843,37.26465375763927],[-121.88149168254908,37.26462904638664],[-121.88164967349522,37.26459016244647],[-121.88185789277685,37.26453710581877],[-121.88211634039394,37.26446987650353],[-121.88242501634652,37.26438847450076],[-121.882729582708,37.26430779921825],[-121.8830300394784,37.26422785065601],[-121.88332638665771,37.26414862881403],[-121.88361862424595,37.26407013369232],[-121.88386976592335,37.26400181383498],[-121.88407981168987,37.26394366924202],[-121.88424876154556,37.26389569991343],[-121.88437661549042,37.26385790584923],[-121.88457022289262,37.26380412189435],[-121.88482958375216,37.2637343480488],[-121.88515469806907,37.26364858431258],[-121.88554556584334,37.2635468306857],[-121.8858830089335,37.26345924984149],[-121.88616702733957,37.26338584177995],[-121.88639762106153,37.2633266065011],[-121.8865747900994,37.26328154400493],[-121.88683963041373,37.26321285986795],[-121.88719214200455,37.26312055409016],[-121.88763232487182,37.26300462667157],[-121.88816017901557,37.26286507761218],[-121.88859351256437,37.26275096713891],[-121.88893232551823,37.26266229525175],[-121.88917661787714,37.26259906195072],[-121.88932638964111,37.2625612672358],[-121.88951817055839,37.2625129335475],[-121.88975196062898,37.26245406088581],[-121.89002775985288,37.26238464925073],[-121.89034556823009,37.26230469864228],[-121.89062547704508,37.26223419670791],[-121.89086748629782,37.26217314344765],[-121.89107159598835,37.26212153886148],[-121.89123780611666,37.26207938294942],[-121.8913871212594,37.26204267822443],[-121.89139963630647,37.26203972444831]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000154,"geom:area_square_m":1519119.841166,"geom:bbox":"-121.89498093,37.2620397244,-121.876302182,37.2756964194","geom:latitude":37.268792,"geom:longitude":-121.885475,"iso:country":"US","lbl:latitude":37.268544,"lbl:longitude":-121.885475,"lbl:max_zoom":18,"mps:latitude":37.268544,"mps:longitude":-121.885475,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Robertsville"],"name:deu_x_preferred":["Robertsville"],"name:vol_x_preferred":["Robertsville"],"reversegeo:latitude":37.268544,"reversegeo:longitude":-121.885475,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[420552889,102191575,1108782545,85633793,85922347,102081673,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"8f9649c51bb57665d1e889a643111afa","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081673,"locality_id":85922347,"macrohood_id":1108782545,"microhood_id":1108782565,"neighbourhood_id":420552889,"region_id":85688637}],"wof:id":1108782565,"wof:lastmodified":1566624155,"wof:name":"Robertsville","wof:parent_id":420552889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85845233],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108785769.geojson b/fixtures/microhoods/1108785769.geojson new file mode 100644 index 0000000..5f7279d --- /dev/null +++ b/fixtures/microhoods/1108785769.geojson @@ -0,0 +1 @@ +{"id":1108785769,"type":"Feature","bbox":[-121.88712278638626,37.33249919075269,-121.88395600597292,37.3358208184133],"geometry":{"type":"MultiPolygon","coordinates":[[[[-121.88503364428489,37.33249919075269],[-121.88712278638626,37.33531211018914],[-121.8860587259472,37.3358208184133],[-121.88572339156406,37.33536919116698],[-121.88395600597292,37.33301822429757],[-121.88503364428489,37.33249919075269]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":40101.708172,"geom:bbox":"-121.887122786,37.3324991908,-121.883956006,37.3358208184","geom:latitude":37.334158,"geom:longitude":-121.885541,"iso:country":"US","lbl:latitude":37.334155,"lbl:longitude":-121.885542,"lbl:max_zoom":18,"mps:latitude":37.334155,"mps:longitude":-121.885542,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":37.334155,"reversegeo:longitude":-121.885542,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[85887689,102191575,1108782551,85633793,85922347,102081673,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1df8cfaff68d9a9136afe6dd6e39532a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081673,"locality_id":85922347,"macrohood_id":1108782551,"microhood_id":1108785769,"neighbourhood_id":85887689,"region_id":85688637}],"wof:id":1108785769,"wof:lastmodified":1566624165,"wof:name":"Paseo Plaza","wof:parent_id":85887689,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108796081.geojson b/fixtures/microhoods/1108796081.geojson new file mode 100644 index 0000000..cc946a8 --- /dev/null +++ b/fixtures/microhoods/1108796081.geojson @@ -0,0 +1 @@ +{"id":1108796081,"type":"Feature","bbox":[-76.58793128625005,39.22451023246833,-76.55857721350871,39.24286531940083],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.5849923993768,39.23237982650302],[-76.58585832103662,39.23327562894069],[-76.58661862489234,39.23406755244669],[-76.58749373246414,39.23498362473334],[-76.58793128625005,39.23544166087666],[-76.58791828960295,39.23583089830829],[-76.58789229630872,39.23660937317155],[-76.58787063523022,39.23704474808819],[-76.5878533063674,39.23713702305823],[-76.587844641936,39.23718316054325],[-76.58726954030156,39.23702629259903],[-76.58611933703267,39.23671255671058],[-76.58525072778443,39.23647767370488],[-76.58466371255679,39.23632164358195],[-76.58424132152584,39.23621259017373],[-76.58398355469157,39.23615051348024],[-76.58378643887711,39.2361060531287],[-76.5836499740825,39.23607920911911],[-76.58353733647425,39.23606494823868],[-76.58344852605236,39.23606327048739],[-76.58328498490961,39.23606998149107],[-76.58304671304599,39.23608508124971],[-76.58286584304042,39.23610185875491],[-76.58274237489293,39.23612031400664],[-76.58228099392068,39.23621930101268],[-76.58148170012365,39.23639881977304],[-76.58060767560578,39.23660266517909],[-76.57965892036704,39.23683083723084],[-76.57812531600851,39.23718483703713],[-76.57600686253022,39.23766466459793],[-76.57478084548654,39.23794148789943],[-76.57444726487749,39.23801530694163],[-76.57421982355314,39.23807234889604],[-76.57409852151349,39.23811261376267],[-76.57397721947382,39.23816462250147],[-76.57385591743417,39.23822837511246],[-76.57355266233502,39.2384246651262],[-76.5730674541764,39.23875349254273],[-76.57206238013353,39.23945140134245],[-76.5698164261996,39.24104042982434],[-76.5697631594119,39.24097950798138],[-76.56925687155967,39.24126022265341],[-76.56922994850724,39.24123180080155],[-76.56973578235656,39.2409510575565],[-76.56968278034508,39.24089616282942],[-76.56967280210506,39.24090133183072],[-76.56953290773404,39.24074784393943],[-76.56953677517949,39.24074522515579],[-76.5695111979493,39.24071684973454],[-76.56886178451155,39.2410918857744],[-76.56856904225849,39.24126263579421],[-76.56800063037552,39.24158338315934],[-76.56758190486998,39.24182323747377],[-76.56708608535116,39.24211256120851],[-76.56725864165355,39.24229318569874],[-76.56728702998481,39.24227804112603],[-76.56770329420327,39.24270716429034],[-76.56774687618785,39.24270589974199],[-76.5677746725403,39.24273509890278],[-76.56774646229444,39.24275123239709],[-76.56771753883501,39.24272203178174],[-76.56772567404796,39.24271788214362],[-76.56772228601162,39.24271536371356],[-76.56771010992261,39.2427155819042],[-76.56745576441098,39.24286531940083],[-76.56743437545431,39.24284540103394],[-76.56743437385013,39.24283939106062],[-76.5674229621902,39.24283525228969],[-76.56726997198757,39.24267720875287],[-76.567104684086,39.24250771945706],[-76.56710337809753,39.24249602078555],[-76.56709541744436,39.24249338909264],[-76.56704999929691,39.24244739829711],[-76.56704999836313,39.2424424233155],[-76.5670414241496,39.24243270206151],[-76.56703197286028,39.2424366837585],[-76.56687293344002,39.24227324424884],[-76.5666811539622,39.24207452643385],[-76.56650580348415,39.24189330525484],[-76.56628045367813,39.24166030000237],[-76.56614325757103,39.24151660587204],[-76.56638908453904,39.24137181828823],[-76.56639445950765,39.24137786973007],[-76.56640012143323,39.24137468118177],[-76.56653304163639,39.24130031135233],[-76.56668490324581,39.24121342295874],[-76.56688843565422,39.24110171589754],[-76.5668468325909,39.24106358302522],[-76.56684942579933,39.24104997737985],[-76.56708979244952,39.24091357690813],[-76.56738680722471,39.24074481178855],[-76.5673826461592,39.24073876486469],[-76.56737855983732,39.24073204803946],[-76.5673758352944,39.24072312573071],[-76.56737346441352,39.24071490462742],[-76.56737053738757,39.24070556451343],[-76.56736841054393,39.24069645524438],[-76.56736658506662,39.24068788484861],[-76.567363823438,39.24067801568818],[-76.567361535911,39.24066999306222],[-76.56735865632547,39.2406610422575],[-76.56735645729445,39.24065275422888],[-76.56735533212012,39.24064388735641],[-76.5673537943032,39.24063620438311],[-76.56735313291472,39.24062650510215],[-76.56735201584394,39.24061972985909],[-76.56735031805114,39.24061206701394],[-76.56734840859588,39.24060454210799],[-76.56734736248109,39.24059600791268],[-76.56734799835968,39.24058841582166],[-76.56734984582,39.24058235500964],[-76.5673533829969,39.24057729938455],[-76.56735589889364,39.24057179861565],[-76.56735618970201,39.2405651366542],[-76.56736003553311,39.24055923363629],[-76.56736416613904,39.2405564015092],[-76.56737032915316,39.24055441459283],[-76.56737665601297,39.24054911162619],[-76.56738120962883,39.24054301394621],[-76.56738503706028,39.24053651814962],[-76.56738826905652,39.24052926801142],[-76.56739077465991,39.24052146392197],[-76.56739393583267,39.24051595111774],[-76.56739855618925,39.24050992574497],[-76.5674028483301,39.24050434594695],[-76.56740637613406,39.24049949656312],[-76.5674095346113,39.24049689685516],[-76.5674125162385,39.24049708619584],[-76.56741312296587,39.24049845851052],[-76.56741304860921,39.24050077593083],[-76.56741298073639,39.24050374013148],[-76.56741373452459,39.24050702173051],[-76.56741922733676,39.24050780492763],[-76.56742484208291,39.24050416576815],[-76.56743019908814,39.24049815121553],[-76.56743509497973,39.24049538225781],[-76.56744148769306,39.2404927674431],[-76.56744480424314,39.24048798844091],[-76.56744665078,39.24048093677125],[-76.56745108462589,39.24047415225649],[-76.56745766259135,39.240470030226],[-76.56746361313822,39.24046526993619],[-76.56746449294018,39.24046155838134],[-76.5674607550584,39.24045735150093],[-76.56746089432605,39.24045255538667],[-76.56746502924625,39.24044882339755],[-76.56747144208938,39.24044879748303],[-76.56748152155686,39.24044300029973],[-76.5674861232887,39.24043869893838],[-76.56749778070173,39.24043019713509],[-76.56750781958394,39.24042421604192],[-76.56751639284488,39.24041942397615],[-76.56752383485754,39.24041493490658],[-76.56752967073173,39.24041036245288],[-76.567535185708,39.24040351345887],[-76.56753536487318,39.24039787166363],[-76.56754159383044,39.24039475450846],[-76.56754841338757,39.24039508679491],[-76.56755917552924,39.24039549665871],[-76.56756985677248,39.24039530540654],[-76.56757757377311,39.24039150103479],[-76.56758566104835,39.24038890326351],[-76.56759649503798,39.24038740644765],[-76.56760208603112,39.2403830997178],[-76.56760447065187,39.24037879829228],[-76.56761166987646,39.24037575226536],[-76.56761763670944,39.24036945620607],[-76.56762149590348,39.2403636360999],[-76.5676276165478,39.24035928267779],[-76.56763192040549,39.24035405691903],[-76.56763203554956,39.24034903552188],[-76.56763641654274,39.24034388751372],[-76.56764348983192,39.24033907550176],[-76.56764696443285,39.24033439886344],[-76.56764739141812,39.24033028839762],[-76.56764400528236,39.24032633593613],[-76.56764585103728,39.24032188119486],[-76.56765201508811,39.24031724688945],[-76.56765602054053,39.24031822276827],[-76.56766360762373,39.24032053237387],[-76.56766918703374,39.24032212027049],[-76.56767662523815,39.24031996508548],[-76.5676804679984,39.24031513036478],[-76.5676817671266,39.24031046553083],[-76.56768557748843,39.24030505419456],[-76.56769306927,39.240303991846],[-76.56770250229563,39.2403006738986],[-76.56770514356444,39.24029550326731],[-76.56770562647304,39.24028867626939],[-76.56771225648185,39.24028342124107],[-76.56771671622263,39.2402851230139],[-76.56772304187275,39.24028590746218],[-76.56772567800844,39.24028215012768],[-76.56772738312473,39.24027625092474],[-76.56773293764871,39.2402697506668],[-76.5677340596544,39.24026240447328],[-76.56773872215858,39.24025515689019],[-76.56774629738096,39.24025066289227],[-76.56775379000563,39.24024546598511],[-76.56775441501225,39.24023793960787],[-76.56775464401024,39.24022810578811],[-76.567753498442,39.24021915687293],[-76.56775038013448,39.24021059793571],[-76.56774559305049,39.2402017806367],[-76.5677451673869,39.24019445126352],[-76.56774470540174,39.24018680918763],[-76.56774086305177,39.24018016443357],[-76.56773380202064,39.24017136308181],[-76.56772827102215,39.24016525077281],[-76.56772179660189,39.24015941422986],[-76.56771509245945,39.24015344802972],[-76.56770723176624,39.24014623450052],[-76.56770297895271,39.24014003772044],[-76.56769837964123,39.24013177328592],[-76.56769235904248,39.24012084362813],[-76.56769137521648,39.24011310775103],[-76.56769070502641,39.24010484697621],[-76.56769085150498,39.24009829347546],[-76.56769249113263,39.24009116447343],[-76.56769465379888,39.24008431393545],[-76.56769531865427,39.24007785332194],[-76.5676952954093,39.24007063802714],[-76.56769275127677,39.24006404399154],[-76.56768794735005,39.24005856580137],[-76.56767933178739,39.24005167286841],[-76.56767165842318,39.24004565625592],[-76.56766466671598,39.24003936021066],[-76.56765708223986,39.24003244314933],[-76.56765045742972,39.24002638715992],[-76.56764325579543,39.24002032544252],[-76.56763702624964,39.24001650843368],[-76.56763173276394,39.24001381453564],[-76.56762460261398,39.24001066078275],[-76.5676148282348,39.24001544663113],[-76.56761650770044,39.24001851365116],[-76.56718522885784,39.24025723315461],[-76.56711435740819,39.24029725720357],[-76.56711282345381,39.24029521489447],[-76.56707679055361,39.24031475404508],[-76.56698625820826,39.24036483382444],[-76.56686874044308,39.24043050277182],[-76.56669511152005,39.2405295562096],[-76.5666791105131,39.24054387892298],[-76.56664229378421,39.24056217648072],[-76.56663070357584,39.24057312134936],[-76.56653518836416,39.24062207893515],[-76.56653105896467,39.24061901636542],[-76.56651923972719,39.24062743730622],[-76.5664905317621,39.24064758252226],[-76.56649124451742,39.24065985281025],[-76.56648611841302,39.2406654096782],[-76.56636610735339,39.24072436444412],[-76.56625559474722,39.24078122565096],[-76.56628040529296,39.240808229775],[-76.56616108531556,39.24087515333825],[-76.56613919955771,39.24085082088839],[-76.56623107468228,39.24080071339759],[-76.56622644294534,39.24079588073967],[-76.5660707065516,39.24088680951594],[-76.56602630823421,39.24091434783054],[-76.56598620667295,39.24094030493968],[-76.56592084625133,39.24098359683478],[-76.5658827081206,39.24101352007467],[-76.56583332797408,39.24104514742718],[-76.56579996677722,39.24105728809168],[-76.56579228076926,39.24105883872205],[-76.56578344777311,39.24105871777481],[-76.56576990492924,39.24105744623069],[-76.56575777223262,39.24105535028737],[-76.56574536672342,39.24105221564078],[-76.56573153204162,39.2410477137342],[-76.56571484414756,39.24104001703112],[-76.565693809555,39.24103050809937],[-76.56568820102953,39.24102856509612],[-76.56568544506393,39.24102651554539],[-76.56568115729262,39.24102737793774],[-76.56567968893602,39.24102616726825],[-76.56567976017938,39.24102304274322],[-76.56567763654692,39.24102271961519],[-76.56567504534296,39.24102384410419],[-76.5656721925174,39.24102266884734],[-76.56567225094513,39.24102012437404],[-76.56566906385744,39.24101943429894],[-76.56566675354681,39.24102065530916],[-76.56566320265087,39.2410199783003],[-76.56566329823734,39.24101590444845],[-76.56566066421804,39.24101474981791],[-76.56565741429885,39.24101732391876],[-76.5656547325846,39.24101639160306],[-76.56565479909285,39.24101366250074],[-76.56565245689188,39.24101214413585],[-76.56564986317196,39.24101424775745],[-76.56564673636993,39.24101279224603],[-76.56564682134764,39.24100931646958],[-76.56564453824001,39.24100798478355],[-76.56564097611796,39.24101027848852],[-76.56563811983783,39.24100853212666],[-76.56563820185896,39.24100497166643],[-76.56563520383116,39.24100443091782],[-76.56563179931628,39.24100690265836],[-76.56562916214824,39.2410045589924],[-76.565630832405,39.24100154847695],[-76.56562803638954,39.24100036532224],[-76.56562453524526,39.2410025376477],[-76.56562160794573,39.2410014179621],[-76.56562168075232,39.24099822768628],[-76.56561946024564,39.24099688812445],[-76.5656172159567,39.2409984886043],[-76.56561412219595,39.24099693412899],[-76.565614188286,39.2409940843213],[-76.56561129283381,39.24099249274715],[-76.56560831153902,39.24099376081606],[-76.5656055660912,39.24099188605267],[-76.56560593974118,39.24098969675037],[-76.56560311394426,39.24098808021208],[-76.56560053439463,39.24098900386974],[-76.56559769818774,39.24098700626495],[-76.5655981584303,39.24098562077445],[-76.56559683600679,39.24098479257256],[-76.56559274496473,39.24098625470506],[-76.56558960581712,39.24098397763957],[-76.56558966355875,39.24098154576056],[-76.56558778681583,39.24098006154468],[-76.56558307863041,39.24098147995747],[-76.56558107945925,39.24097936924967],[-76.56558120596634,39.24097648994],[-76.56558000550706,39.24097598556753],[-76.56557617590119,39.24097693792741],[-76.56557363365405,39.24097460542075],[-76.565576124606,39.24097206994923],[-76.56557329414476,39.24097064796032],[-76.56556928786458,39.24097169875149],[-76.56556696905494,39.24097033360317],[-76.5655680201912,39.24096760273998],[-76.56556628269165,39.24096721528227],[-76.56556414077883,39.24096760820063],[-76.56556225863577,39.24096587084651],[-76.56556411967168,39.24096235029854],[-76.56556136771646,39.24096021428527],[-76.56555842499886,39.24096104652051],[-76.56555508167844,39.24095938663017],[-76.56555628046686,39.24095562132298],[-76.56555427675963,39.24095406277311],[-76.56555218213315,39.24095543590952],[-76.56554825098002,39.24095329643271],[-76.56554831930599,39.24095027098215],[-76.56554491800526,39.24094767497163],[-76.56554162777867,39.2409498318613],[-76.56553844424369,39.24094799420835],[-76.56553968554744,39.24094523162132],[-76.56553686796502,39.24094303050876],[-76.56553425488377,39.24094526917246],[-76.56553031168274,39.24094244866454],[-76.56553121346066,39.24093989560237],[-76.56552849627225,39.24093718952636],[-76.5655247453322,39.24093872677875],[-76.56552212948897,39.24093630662338],[-76.56552384128048,39.24093408083818],[-76.56552048305632,39.24093182818165],[-76.56551654132988,39.24093274139132],[-76.56551349201463,39.24093073939262],[-76.56551533397676,39.24092863209086],[-76.56551265914092,39.24092600904248],[-76.56550892581329,39.24092750762629],[-76.5655053059919,39.24092522337476],[-76.56550547592136,39.24092168485846],[-76.5655022123593,39.24092024234854],[-76.56549924890048,39.24092219236746],[-76.56549655029869,39.24092004574074],[-76.56549729193459,39.24091772898994],[-76.56549453422008,39.24091596677538],[-76.56549171221678,39.24091789479829],[-76.56548689892199,39.24091510079398],[-76.56548834758246,39.24091271549891],[-76.56548547427074,39.24091072496018],[-76.56548174250368,39.2409119686295],[-76.56547799885762,39.24090985416528],[-76.56547918021599,39.2409070445167],[-76.56547681072529,39.24090601156493],[-76.56547419083036,39.24090784935722],[-76.56547017078806,39.24090585006964],[-76.56547081984968,39.24090295017484],[-76.56546749040517,39.24090072734889],[-76.56546513094973,39.24090259673136],[-76.56546147104072,39.24090004930372],[-76.56546232269625,39.24089697991243],[-76.56545930741926,39.24089585179006],[-76.56545744071626,39.24089745906922],[-76.5654542281611,39.24089563211581],[-76.56545566366229,39.24089369355688],[-76.56545209024424,39.24089139866616],[-76.56544900046063,39.240893737351],[-76.56544558366781,39.24089178083049],[-76.56544679932054,39.24088942439899],[-76.56544329727194,39.24088644608388],[-76.5654400542831,39.24088845541849],[-76.56543650997838,39.24088594625057],[-76.5654381006028,39.24088345609098],[-76.56543552249946,39.24088130540505],[-76.56543182232333,39.24088287617108],[-76.56542798215676,39.2408804451759],[-76.56543018727042,39.24087786451129],[-76.56542713581382,39.24087564541556],[-76.56542384490155,39.24087696818169],[-76.56541961361832,39.240874280819],[-76.565422049749,39.24087142897569],[-76.5654188196499,39.24086962988036],[-76.56541519036998,39.240871162175],[-76.56541199101619,39.24086907134219],[-76.56541428051807,39.24086651891432],[-76.56541086961144,39.24086360128755],[-76.56540786437934,39.24086480620851],[-76.56540356903051,39.2408623663212],[-76.56540604354575,39.2408589210095],[-76.56540338711298,39.24085688803445],[-76.56540096791433,39.24085867702545],[-76.56539683617402,39.2408565701296],[-76.56539847234868,39.24085345139812],[-76.56539583809078,39.24085176980722],[-76.565392931919,39.24085287691008],[-76.56538963895645,39.24085093976259],[-76.56539047607467,39.24084797480783],[-76.56538776487632,39.24084675142647],[-76.56538512099733,39.24084796579162],[-76.5653816288993,39.24084563336718],[-76.56538169231236,39.24084284390153],[-76.5653793598255,39.24084144356853],[-76.56537657294734,39.24084331046603],[-76.56537310480083,39.24084179603379],[-76.56537366059698,39.24083861565313],[-76.56537128746899,39.2408370422207],[-76.5653679154789,39.24083817462156],[-76.56536476822636,39.24083665597252],[-76.56536566368698,39.24083343271148],[-76.56536282156902,39.24083164586034],[-76.5653589176467,39.24083262856441],[-76.56535639271044,39.24083106537891],[-76.56535816120753,39.24082809216267],[-76.56535583728727,39.24082604960827],[-76.56535174573096,39.24082759640338],[-76.56534940833026,39.24082586366558],[-76.56535129583271,39.24082218378161],[-76.56534756566477,39.24081957213517],[-76.56534385241159,39.24082100863457],[-76.56534119733952,39.24081988904904],[-76.56534351265624,39.24081652602047],[-76.5653398119493,39.24081383251239],[-76.56533818247973,39.24081585592538],[-76.56533401807862,39.24081378673886],[-76.56533105539205,39.24081617813624],[-76.56532752056019,39.24081401489766],[-76.56532924814104,39.24081091362029],[-76.56532574767361,39.24080881356313],[-76.56532300557885,39.24081036625472],[-76.56531986538334,39.24080883051583],[-76.56532135146723,39.2408065768745],[-76.56531845212928,39.2408042979872],[-76.56531546542618,39.24080607136349],[-76.56531140489075,39.24080387645228],[-76.56531284218096,39.24080088939944],[-76.56530961472983,39.24079865883961],[-76.56530664021139,39.24080071240187],[-76.56530219490354,39.24079892771975],[-76.56530390635658,39.24079562280784],[-76.56530046823147,39.24079374637301],[-76.56529786628485,39.24079549054729],[-76.5652938902102,39.24079274467382],[-76.56529519440755,39.2407901165376],[-76.56529247643961,39.24078829681581],[-76.56529019746581,39.24079026467731],[-76.56528625110589,39.24078777383298],[-76.56528738143666,39.24078478564374],[-76.56528396153155,39.24078296062009],[-76.56528250415177,39.24078506664012],[-76.56527781058034,39.24078239737737],[-76.56527926422619,39.2407791987033],[-76.56527549821514,39.24077714450163],[-76.56527279833332,39.24077993771567],[-76.56526841594749,39.24077828207614],[-76.56527033183752,39.24077507430471],[-76.56526767082808,39.24077303320254],[-76.56526416246363,39.24077524962865],[-76.56526087773804,39.24077310352816],[-76.56526228812318,39.24076997045073],[-76.56525971954386,39.24076853591234],[-76.56525577965954,39.24077009497582],[-76.56525344438244,39.24076631388137],[-76.56525924020235,39.24076547330334],[-76.56526178003487,39.24076233359924],[-76.56518750164184,39.24067939166638],[-76.565045441322,39.24053565115797],[-76.56487352623334,39.24036484951949],[-76.56469057619152,39.24019104404911],[-76.56462546852772,39.24012341289816],[-76.56469127841886,39.24008578385257],[-76.56468216990766,39.24008565459413],[-76.56475506366715,39.23992625884822],[-76.56491286298319,39.23984680811197],[-76.56493066978291,39.23983838970467],[-76.56506183367917,39.23977386408244],[-76.56507575877508,39.23976866595557],[-76.56508612979697,39.23977995866641],[-76.56509100587071,39.23978005329717],[-76.56509339993681,39.23977479893613],[-76.56509585655195,39.23977540615213],[-76.56510333590738,39.23977580227803],[-76.56510559033538,39.23977197512839],[-76.5651118115491,39.23976729432665],[-76.56512092378368,39.23976227113052],[-76.56513764609012,39.23975521424971],[-76.56515015203858,39.23975231143725],[-76.56516319360998,39.23975008889142],[-76.56517842161361,39.23974530543135],[-76.56519061150394,39.23974105028081],[-76.56519131246303,39.23973554013179],[-76.56519386817696,39.23973093672718],[-76.56520866144999,39.23972639846547],[-76.56521992471919,39.23972402430201],[-76.56523185277777,39.23972034287218],[-76.5652379661256,39.23971833066171],[-76.56539388532991,39.23964478860764],[-76.5654614544774,39.23961198478986],[-76.56559386010221,39.23954750370375],[-76.56570438211375,39.23949569468854],[-76.56571050988185,39.23949302403999],[-76.56571852885165,39.23949003610834],[-76.56572373612534,39.23948654414969],[-76.56573145514898,39.23948070505412],[-76.56573782102446,39.23947149025072],[-76.56573972049983,39.23946679072584],[-76.56574047994705,39.23946212661771],[-76.5657409632149,39.23945697506922],[-76.56574107820475,39.2394520005119],[-76.56573911281238,39.23944551036063],[-76.56573519555684,39.23943486311635],[-76.56573356922343,39.23942596644647],[-76.56573108452092,39.23941783316104],[-76.56572791255269,39.23940824528309],[-76.5657253597188,39.23939894163816],[-76.56572147807394,39.23938947994545],[-76.56571685475882,39.23937988309486],[-76.56571224820915,39.23937057545499],[-76.56570668603382,39.2393614561447],[-76.56570073777111,39.23935334247269],[-76.565693429848,39.23934386540066],[-76.56568726689395,39.2393361959167],[-76.56568029781718,39.23932813431495],[-76.56567230333948,39.23931898078214],[-76.5656659066772,39.2393106988058],[-76.56566023831338,39.23930303385259],[-76.56565373443394,39.23929504783395],[-76.5656465219744,39.23928568370896],[-76.56564040294549,39.23927765227319],[-76.56563391325977,39.23926905107623],[-76.56562713094365,39.2392598119478],[-76.56562080770469,39.23925221573063],[-76.56561286896485,39.23924455678632],[-76.56560432454462,39.23923706584672],[-76.56559480271244,39.23922953796085],[-76.56558558997122,39.23922223010646],[-76.56557643416568,39.23921489363723],[-76.56556664546267,39.23920706210082],[-76.56555770242637,39.23919959670584],[-76.56554783383426,39.23919100281612],[-76.56553967279746,39.2391838970209],[-76.56553092061795,39.23917628730527],[-76.56552187695259,39.2391684206899],[-76.56551370525914,39.2391613535867],[-76.56550417458713,39.23915338067742],[-76.56549342036837,39.23914527442763],[-76.56548167976388,39.23913859765967],[-76.56546969462984,39.23913383323249],[-76.56545890291956,39.23912958215995],[-76.56544770320359,39.2391255646785],[-76.56543608294555,39.23912231490147],[-76.56542483379296,39.2391206969008],[-76.5654135433963,39.23912051818565],[-76.56540185131873,39.23912029654666],[-76.56539055273652,39.23911994124703],[-76.56537767991871,39.23911940536742],[-76.56536639286492,39.23911924827874],[-76.565354298434,39.23911909360424],[-76.56534260600388,39.2391189296077],[-76.56533091715357,39.2391187485085],[-76.56531962645407,39.23911861932586],[-76.56530874247692,39.23911846642652],[-76.56529743457381,39.23911830925397],[-76.56528574406889,39.23911896586538],[-76.56527361109336,39.23912056575062],[-76.56526269707095,39.23912172516568],[-76.56525137782617,39.23912285245262],[-76.56523923712707,39.23912457841428],[-76.56522668117147,39.23912696490668],[-76.56521371863035,39.23912954175709],[-76.56520196347543,39.23913205371831],[-76.56518941724194,39.23913417631552],[-76.56517727438795,39.23913606440241],[-76.56516513522892,39.23913791647065],[-76.56515258649499,39.23913987961741],[-76.56514125225762,39.23914175177961],[-76.56512910953897,39.23914361734258],[-76.56511818190748,39.23914529554052],[-76.56510685247311,39.23914695063029],[-76.56509592690388,39.23914848110662],[-76.56508338211569,39.2391503667939],[-76.56507205189054,39.23915215068825],[-76.56506071800229,39.23915396519432],[-76.56504897187389,39.23915613668054],[-76.56503882947787,39.23915877890804],[-76.56502827689943,39.23916163129706],[-76.56501813591404,39.2391642320923],[-76.56500679616315,39.23916643570649],[-76.56499750641315,39.23916698048134],[-76.56498580925361,39.239167020007],[-76.5649741203797,39.23916684157454],[-76.56496283438928,39.23916669886344],[-76.5649507388977,39.23916652702876],[-76.56493864454245,39.23916635880015],[-76.56492654904547,39.23916618786369],[-76.56491405171307,39.23916599922268],[-76.56490196085504,39.23916582740016],[-76.56489068103403,39.23916524512651],[-76.56487821602106,39.23916375227854],[-76.56486736184296,39.23916213839079],[-76.56485571208734,39.2391603026645],[-76.56484406557652,39.23915831561882],[-76.56483161723433,39.23915599321344],[-76.56481919210421,39.23915271877296],[-76.56480837247878,39.23914887018371],[-76.56479639454393,39.23914463897346],[-76.564785190361,39.2391407889564],[-76.56477278492842,39.23913656967048],[-76.56476156267752,39.23913283308183],[-76.56474875543461,39.2391285924865],[-76.56473594660972,39.23912442124367],[-76.56472394242563,39.23912050520008],[-76.5647115442382,39.23911680568199],[-76.56470032467394,39.23911376539694],[-76.56468869937534,39.23911077675201],[-76.56467787668731,39.23910799645909],[-76.56466785548456,39.23910541910961],[-76.56465743180841,39.23910273937982],[-76.56464661029776,39.23909995638604],[-76.56463618662322,39.23909727665434],[-76.56462456039266,39.23909425196851],[-76.56461293564185,39.23909117504208],[-76.5646021186703,39.23908821911208],[-76.56459016050252,39.23908473469694],[-76.56457974622423,39.23908165685228],[-76.56456813406247,39.23907822776478],[-76.56455691964847,39.23907491635161],[-76.5645465109697,39.23907149262689],[-76.56453413378954,39.23906607088497],[-76.56452211250445,39.23906022529587],[-76.56451055423112,39.2390544327674],[-76.56449938718856,39.23904906505378],[-76.56448901596208,39.23904425787155],[-76.56447863203208,39.23903963349871],[-76.56446745616874,39.23903476027505],[-76.56445747320623,39.23903048418654],[-76.56444547325457,39.23902626096557],[-76.5644342693392,39.23902256224595],[-76.56442265361419,39.2390191502455],[-76.56441142965774,39.23901626394895],[-76.56439900445538,39.23901300837976],[-76.56439639929604,39.23901226277907],[-76.56439355518295,39.23901062812688],[-76.56439067035225,39.23900902214832],[-76.56438775062313,39.23900744036114],[-76.56438480297307,39.23900587828734],[-76.56438183205738,39.23900433234108],[-76.56437884368978,39.23900279894083],[-76.564375843695,39.23900127270358],[-76.56437283788118,39.23899975094852],[-76.56436983323131,39.23899822829694],[-76.56436683439522,39.23899670206377],[-76.56436384719767,39.23899516686596],[-76.56436087744676,39.23899362002273],[-76.56435793212552,39.2389920561553],[-76.56435501588933,39.23899047167793],[-76.5643521345518,39.23898886300903],[-76.56434929509054,39.23898722567071],[-76.56434650216077,39.238985556077],[-76.56434376158732,39.23898384884502],[-76.56434108033666,39.23898210129818],[-76.5643384619112,39.23898030894571],[-76.56433591560521,39.23897846731813],[-76.56433344375738,39.23897657282112],[-76.56433105450354,39.23897462098088],[-76.56432875249347,39.23897260911243],[-76.56432652029727,39.23897054615886],[-76.5643243439433,39.23896844377831],[-76.56432221995118,39.23896630285877],[-76.5643201448349,39.23896412518872],[-76.5643181185778,39.23896191347057],[-76.5643161353718,39.23895967038497],[-76.56431419521135,39.23895739683271],[-76.56431229344666,39.23895509549892],[-76.56431042890834,39.2389527681807],[-76.56430859810484,39.23895041756755],[-76.56430679870857,39.2389480454523],[-76.56430502722795,39.23894565452439],[-76.56430328134631,39.23894324477512],[-76.56430155871946,39.23894082069972],[-76.56429985586698,39.23893838318607],[-76.56429817161386,39.23893593493212],[-76.56429650247418,39.23893347772645],[-76.56429484496194,39.23893101335776],[-76.56429319790224,39.23892854452395],[-76.56429155665079,39.23892607300932],[-76.56428992003825,39.23892360061109],[-76.56428828573137,39.23892113002299],[-76.56428664908583,39.23891866302929],[-76.56428500892683,39.23891620232791],[-76.56428336293214,39.23891374881107],[-76.56428170761029,39.23891130516812],[-76.56428003946974,39.23890887408843],[-76.56427835734667,39.23890645646847],[-76.56427666473809,39.23890404871803],[-76.56427496866023,39.23890164005399],[-76.56427326910755,39.23889923137697],[-76.56427156839669,39.23889682269564],[-76.5642698665332,39.23889441310925],[-76.5642681646698,39.23889200352281],[-76.56426646281753,39.2388895921348],[-76.56426476212926,39.23888717985038],[-76.56426306260495,39.23888476666945],[-76.56426136656673,39.23888235169986],[-76.56425967285631,39.23887993493735],[-76.56425798379027,39.2388775163905],[-76.56425629821035,39.23887509605498],[-76.56425461843313,39.23887267393948],[-76.56425294562246,39.23887024914745],[-76.56425127862006,39.23886782167466],[-76.56424961974253,39.23886539152965],[-76.56424796783703,39.2388629578074],[-76.56424632520921,39.23886052231798],[-76.56424469303394,39.23885808236351],[-76.56424307130011,39.23885563974542],[-76.56424146001329,39.23885319356299],[-76.56423986033738,39.23885074291974],[-76.56423827342502,39.23884828872078],[-76.56423669928184,39.23884583006527],[-76.56423513906608,39.23884336695758],[-76.56423359393055,39.23884090030275],[-76.56423206388635,39.2388384282993],[-76.56423054893342,39.23883595094714],[-76.5642290525412,39.23883346916001],[-76.56422757239854,39.23883098202851],[-76.5642261108221,39.23882848956127],[-76.56422466781738,39.2388259908575],[-76.5642232445372,39.23882348682231],[-76.56422184214537,39.23882097655918],[-76.56422045947804,39.23881846096461],[-76.56421910002673,39.23881593734924],[-76.56421776496084,39.23881340391585],[-76.56421645544415,39.23881085976794],[-76.56421516914898,39.23880830669848],[-76.56421390724473,39.23880574291028],[-76.56421267087312,39.23880317110982],[-76.56421145888686,39.23880058949134],[-76.56421027011663,39.23879799985207],[-76.56420910572072,39.23879540219631],[-76.56420796685741,39.2387927965283],[-76.56420685004628,39.23879018373597],[-76.56420575876221,39.23878756383216],[-76.56420469068306,39.2387849377091],[-76.56420364697273,39.23878230447022],[-76.56420262646179,39.23877966591286],[-76.56420163030855,39.23877702204123],[-76.56420065736025,39.23877437195031],[-76.5641997076058,39.23877171744162],[-76.56419878220349,39.23876905851942],[-76.56419787883677,39.23876639517517],[-76.56419699982219,39.2387637274174],[-76.5641961439904,39.23876105704338],[-76.56419531134699,39.23875838315233],[-76.56419450188633,39.23875570664501],[-76.56419371560844,39.23875302752147],[-76.56419295134954,39.23875034667803],[-76.56419221142616,39.23874766412346],[-76.56419149004684,39.23874497983611],[-76.56419077794509,39.23874229378168],[-76.56419007163493,39.23873960774876],[-76.56418937112736,39.23873691993577],[-76.56418867757525,39.23873423124788],[-76.5641879898258,39.23873154077994],[-76.56418730903177,39.23872884943706],[-76.5641866328765,39.23872615721056],[-76.56418596251842,39.23872346410487],[-76.56418529795738,39.23872077011989],[-76.56418463803517,39.23871807525137],[-76.56418398391564,39.23871537860281],[-76.56418333442932,39.23871268197148],[-76.56418268958737,39.23870998355577],[-76.56418204937869,39.23870728515732],[-76.5641814138088,39.23870458587531],[-76.56418078288328,39.23870188480893],[-76.56418015543268,39.23869918375549],[-76.56417953262093,39.2386964818185],[-76.5641789132841,39.23869377989437],[-76.56417829859163,39.23869107618594],[-76.5641776862158,39.23868837248613],[-76.56417707847875,39.23868566790275],[-76.56417647306391,39.23868296242718],[-76.56417587112404,39.23868025696452],[-76.56417527266467,39.23867755061399],[-76.56417467652746,39.23867484337133],[-76.56417408270693,39.23867213613728],[-76.56417349120859,39.23866942801101],[-76.56417290202688,39.23866671989335],[-76.56417231632568,39.2386640108879],[-76.56417173178285,39.23866130188668],[-76.56417114839832,39.23865859288976],[-76.56417056733602,39.2386558830007],[-76.56416998859038,39.2386531731202],[-76.56416940985024,39.23865046233899],[-76.56416883342683,39.23864775156632],[-76.5641682570034,39.23864504079371],[-76.56416768289672,39.23864233002963],[-76.56416710879003,39.23863961926561],[-76.5641665346889,39.23863690760078],[-76.56416596174057,39.23863419684104],[-76.56416538995616,39.23863148518482],[-76.56416481701346,39.23862877352428],[-76.56416424407087,39.23862606186375],[-76.56416367228101,39.23862335110827],[-76.56416309933849,39.23862063944773],[-76.56416252523766,39.23861792778286],[-76.56416195113135,39.2386152170188],[-76.56416137703063,39.23861250535392],[-76.56416080060784,39.23860979458121],[-76.56416022418503,39.23860708380852],[-76.5641596454457,39.23860437302718],[-76.56415906670641,39.23860166224587],[-76.564158485645,39.23859895235671],[-76.56415790226706,39.23859624245895],[-76.56415731772529,39.2385935334576],[-76.564156730867,39.23859082444766],[-76.56415614169211,39.23858811542913],[-76.56415555135345,39.23858540730701],[-76.56415495753991,39.23858269917204],[-76.56415436140986,39.23857999102842],[-76.5641537617938,39.2385772846734],[-76.56415315986123,39.2385745783098],[-76.56415255445378,39.23857187193329],[-76.56415194556594,39.23856916644461],[-76.56415133435603,39.23856646184812],[-76.5641507185129,39.2385637572344],[-76.56415009918385,39.23856105440927],[-76.56414947638,39.23855835157123],[-76.56414884893739,39.23855564961675],[-76.56414821801997,39.23855294764937],[-76.56414758245828,39.23855024746626],[-76.56414694226343,39.23854754726597],[-76.56414629742436,39.23854484884999],[-76.5641456467938,39.2385421504125],[-76.56414499268284,39.23853945286285],[-76.5641443327694,39.23853675709316],[-76.5641436682228,39.23853406130632],[-76.56414299672088,39.2385313663944],[-76.56414232057475,39.23852867326676],[-76.5641416386316,39.23852598101841],[-76.56414095089147,39.23852328964929],[-76.56414025735432,39.23852059915943],[-76.56413955686189,39.23851790954446],[-76.56413885056693,39.23851522170956],[-76.56413813847503,39.23851253475384],[-76.5641374171112,39.23850984866453],[-76.56413668879205,39.23850716345011],[-76.56413595120102,39.23850447910207],[-76.56413520549641,39.23850179562465],[-76.56413445284198,39.23849911212144],[-76.5641336909102,39.2384964303853],[-76.56413292086476,39.23849374951983],[-76.56413214154193,39.23849107042144],[-76.56413135526941,39.23848839129723],[-76.5641305597194,39.23848571394012],[-76.56412975605025,39.23848303835442],[-76.56412894310927,39.23848036363503],[-76.56412812205465,39.23847768978635],[-76.56412729288093,39.23847501770899],[-76.56412645442983,39.23847234739879],[-76.56412560786507,39.23846967795917],[-76.56412475318126,39.23846701029098],[-76.56412388922001,39.23846434438988],[-76.56412301598137,39.2384616802559],[-76.56412213462362,39.23845901789328],[-76.56412124398842,39.23845635729775],[-76.56412034523414,39.23845369847363],[-76.56411943719692,39.23845104231737],[-76.5641185198878,39.23844838702746],[-76.56411759445405,39.23844573440966],[-76.56411665974291,39.23844308355898],[-76.56411571575438,39.23844043447536],[-76.56411476364117,39.23843778806393],[-76.56411380109229,39.2384351434153],[-76.56411283041874,39.2384325014388],[-76.56411185046227,39.23842986213014],[-76.56411086122843,39.23842722458856],[-76.56410986271167,39.23842458971485],[-76.56410885491194,39.23842195750897],[-76.56410783782927,39.23841932797097],[-76.56410681146367,39.2384167011008],[-76.5641057758207,39.2384140759977],[-76.56410473088931,39.23841145446322],[-76.56410367667495,39.23840883559661],[-76.56410261201935,39.23840621939349],[-76.5641015392336,39.23840360676331],[-76.56410045600661,39.23840099679668],[-76.56409936349678,39.23839838949783],[-76.56409826170393,39.23839578486691],[-76.56409715062826,39.23839318290377],[-76.5640960302751,39.23839058270777],[-76.5640949006446,39.23838798427884],[-76.5640937617312,39.23838538851773],[-76.56409261469315,39.2383827954288],[-76.56409145838329,39.23838020320617],[-76.56409029394877,39.23837761365571],[-76.5640891225535,39.23837502588092],[-76.56408794188081,39.23837243987322],[-76.5640867542474,39.2383698556412],[-76.56408555965314,39.2383672731849],[-76.56408435693986,39.23836469249997],[-76.56408314842407,39.23836211359504],[-76.56408193178922,39.23835953646151],[-76.5640807093519,39.23835696110793],[-76.56407947995929,39.23835438662931],[-76.56407824475875,39.2383518148314],[-76.56407700376117,39.23834924391274],[-76.56407575696674,39.23834667387333],[-76.56407450436976,39.2383441056139],[-76.56407324712866,39.23834153913879],[-76.5640719840906,39.23833897354287],[-76.56407071525004,39.23833640972694],[-76.5640694429292,39.23833384679887],[-76.56406816596967,39.23833128475433],[-76.56406688436603,39.23832872449405],[-76.5640655981237,39.23832616511733],[-76.56406430840104,39.23832360662844],[-76.56406301519804,39.2383210490274],[-76.56406171850917,39.23831849321492],[-76.56406041950382,39.23831593739385],[-76.56405911585429,39.23831338335702],[-76.56405780988825,39.23831082931163],[-76.56405650160016,39.23830827615835],[-76.56405518982619,39.23830572479365],[-76.56405387689402,39.23830317342465],[-76.5640525616454,39.23830062204699],[-76.56405124406918,39.23829807246226],[-76.56404992533477,39.23829552287321],[-76.56404860543658,39.23829297418061],[-76.56404728438021,39.23829042548365],[-76.5640459610018,39.23828787767886],[-76.56404463877625,39.23828533077911],[-76.56404331423974,39.23828278296993],[-76.56404199085058,39.23828023696659],[-76.56404066630873,39.23827769005817],[-76.56403934176141,39.23827514405051],[-76.5640380172142,39.23827259804281],[-76.56403669382539,39.23827005203938],[-76.56403537043118,39.23826750693673],[-76.56403404935915,39.23826496094189],[-76.5640327282817,39.23826241584782],[-76.56403140720988,39.23825986985292],[-76.56403007336368,39.23825732921524],[-76.56402871978773,39.2382547948097],[-76.56402734879876,39.23825226664489],[-76.56402595924938,39.23824974291502],[-76.56402455460348,39.23824722543452],[-76.56402313487219,39.23824471240181],[-76.56402170237756,39.23824220292482],[-76.56402025827238,39.23823969790855],[-76.56401880256225,39.23823719645225],[-76.56401733872748,39.23823469766812],[-76.56401586560433,39.23823220245254],[-76.56401438668422,39.23822970811622],[-76.56401290195616,39.23822721646059],[-76.56401141258944,39.2382247256885],[-76.56400991974243,39.23822223580422],[-76.56400842573169,39.23821974681644],[-76.56400693172108,39.23821725782858],[-76.5640054388688,39.238214768845],[-76.56400394718051,39.238212278965],[-76.56400246013656,39.23820978730063],[-76.56400097657315,39.2382072947484],[-76.5639994999707,39.23820480042044],[-76.56399803033477,39.23820230341604],[-76.56399577566826,39.23819843521734],[-76.56390086257575,39.23808416963864],[-76.5637599910429,39.2379165694019],[-76.56360378609884,39.23772338759605],[-76.56349338383559,39.2375905198092],[-76.56341125203494,39.23749301523507],[-76.56337710107536,39.23744298792487],[-76.56335213873224,39.23741109047361],[-76.56340324036547,39.2373846563081],[-76.56354083242933,39.23731573795371],[-76.56368452910792,39.23724219952809],[-76.56360713382026,39.23713809108073],[-76.56350704852817,39.2370085809951],[-76.5633996074982,39.23686565342164],[-76.56329582970233,39.23672946276445],[-76.56317134536819,39.23655770076667],[-76.56305269946846,39.23639816677918],[-76.56293482075283,39.23624542827373],[-76.56280678248811,39.23608057689538],[-76.56266768828503,39.23589270897286],[-76.56253312346264,39.23571371508861],[-76.56238243540393,39.2355092707413],[-76.5622474993467,39.23533116959208],[-76.56207311057746,39.23509527318791],[-76.56207100078969,39.23509555356534],[-76.56195414542286,39.23511761444669],[-76.56175182843695,39.23515628086792],[-76.56153868117828,39.23519703862564],[-76.5613090904615,39.23524047290603],[-76.56109849774008,39.23528031161227],[-76.56085554926068,39.23532617399821],[-76.56040458545903,39.23541222078359],[-76.56011989968081,39.23546651064066],[-76.56000000864397,39.23534313320518],[-76.5598668711711,39.23520662129071],[-76.55970691120105,39.23504036765024],[-76.55953170112693,39.23486140424551],[-76.55943714172983,39.23476312862733],[-76.5592458179222,39.23456702466501],[-76.55908423892222,39.23440213323708],[-76.55894940182627,39.23426141352495],[-76.55879743676923,39.23410842104056],[-76.55874166212944,39.2339263363754],[-76.55868216068085,39.23373285994474],[-76.55857721350871,39.2333977833371],[-76.55863426726124,39.23321170992283],[-76.55869818688281,39.23299077247439],[-76.55879315944266,39.23266921325692],[-76.55885984721095,39.23244308860906],[-76.55890580158291,39.23228344445429],[-76.5589431297836,39.23216026196598],[-76.56030989142988,39.23190882662986],[-76.56029501871838,39.23187516200351],[-76.56028756783746,39.2318488007591],[-76.56028103790734,39.23181886057143],[-76.56027670210959,39.23179389549071],[-76.56027204195841,39.23176950028753],[-76.56026504496306,39.23174783919742],[-76.56025595493531,39.23172432997666],[-76.56024638030475,39.23170220613702],[-76.5602365480791,39.23168128116721],[-76.56022548427617,39.23165836356583],[-76.5602163238522,39.23163612597563],[-76.56020189690332,39.23160007143996],[-76.56019196700643,39.23157304243014],[-76.56018262390626,39.2315477649283],[-76.5601722455848,39.23152263938091],[-76.56016121377905,39.2314975555218],[-76.56014983565362,39.23147135339926],[-76.56013720300929,39.23144424579649],[-76.56012411733005,39.23141623301427],[-76.5601110674855,39.23138636386171],[-76.56009696558517,39.23135413072684],[-76.5600870088625,39.23132826541033],[-76.5600780230162,39.23130328829529],[-76.56006390444091,39.23126141496937],[-76.56005891829231,39.23124964743629],[-76.56005260931313,39.23122687734889],[-76.56005059830954,39.23120394411584],[-76.56004913737966,39.2311838269742],[-76.56004905001089,39.23116260071871],[-76.56004882611272,39.23114639848991],[-76.56005351493648,39.23112970033066],[-76.56005945670442,39.23111154490496],[-76.56006435548083,39.23109572939355],[-76.56006614690442,39.23107952030566],[-76.5600710904335,39.2310656407331],[-76.56008119235422,39.23105329920512],[-76.560100257697,39.23103926627986],[-76.56013671278744,39.23102310782829],[-76.5601687023865,39.23101022227318],[-76.56022164388122,39.23099211053163],[-76.56024486485714,39.23098760896984],[-76.56026517434441,39.23098306767108],[-76.56031788127773,39.2309755193299],[-76.56038964121103,39.23096115407774],[-76.560496111911,39.23093735069562],[-76.56063805569181,39.23091098667911],[-76.56076405122487,39.23088774976398],[-76.56090951074266,39.230858636791],[-76.56101814213484,39.23083467617642],[-76.56121739595828,39.23079047599677],[-76.56130850819474,39.23076519754013],[-76.56143960944509,39.23072926180155],[-76.56154209361732,39.23070534349094],[-76.56161379925945,39.23069274551536],[-76.5616982587373,39.23068206513648],[-76.56181635790452,39.23066485713903],[-76.56190914150726,39.23064851386691],[-76.56199394495708,39.23063350181793],[-76.56209594911243,39.23061186830797],[-76.56220484703552,39.23059038653135],[-76.56228667673176,39.23056925950873],[-76.56237797943875,39.23054792093542],[-76.56243803400214,39.2305350186918],[-76.56248572420587,39.23052784611799],[-76.56254634919019,39.23052029386331],[-76.56261484678909,39.23050648078222],[-76.56265580264134,39.23049338024725],[-76.56267271641741,39.23048651358316],[-76.56267968487954,39.23048188072354],[-76.56268821264362,39.23047587187989],[-76.56270020682541,39.23047137844772],[-76.56271425451405,39.23046951392833],[-76.5627275197253,39.23046625749271],[-76.56273333803,39.23046389120604],[-76.56275130044277,39.23044660283431],[-76.56278247553925,39.23040298800053],[-76.56281538686817,39.23035897517569],[-76.56285921460649,39.23029363204235],[-76.56291377351334,39.23020637149121],[-76.56294586488684,39.23015517367233],[-76.56296246838504,39.23013190084334],[-76.56296986690035,39.23012230808272],[-76.56297474096048,39.23011453089835],[-76.56297717233042,39.23010544659795],[-76.56297594381672,39.23009861953176],[-76.56297048002796,39.23008291123975],[-76.56296404362834,39.23005737544176],[-76.56294592150186,39.22999564791182],[-76.56292629377805,39.2299245106494],[-76.56289998042713,39.22984425332982],[-76.56289826309714,39.22983518060391],[-76.56289429433899,39.22982044981399],[-76.56289013709471,39.2298071757808],[-76.56288604268109,39.22979385514084],[-76.56288153051584,39.22977953668454],[-76.56287706564373,39.2297650616687],[-76.56287256168066,39.22975016404213],[-76.56286706527648,39.22973298915552],[-76.56286153348499,39.22971629515217],[-76.56285668560679,39.22970101161174],[-76.5628513593246,39.2296842355016],[-76.5628436466436,39.22965720145046],[-76.56283859540484,39.22964052454868],[-76.56283360868649,39.22962296242209],[-76.56282881456129,39.22960365350308],[-76.56282411531222,39.2295875580125],[-76.56281879797177,39.22957008473136],[-76.56281341060695,39.22955457938918],[-76.56280834843133,39.22953911669372],[-76.56280346687139,39.22952234764169],[-76.56279877788604,39.22950703226172],[-76.56279161290402,39.22948340969089],[-76.56278658408591,39.22946986667651],[-76.56278140782275,39.22945468910115],[-76.56277677105993,39.2294399224884],[-76.56277241780992,39.22942406698998],[-76.56276790581074,39.22940747226195],[-76.56276419032513,39.22939337385459],[-76.56275922592484,39.22937576676775],[-76.56275509627224,39.22935914914226],[-76.5627506534049,39.22934167370974],[-76.56274554963424,39.22932657567068],[-76.56273875804578,39.22931115877364],[-76.5627329146488,39.22929580035599],[-76.56272762004197,39.22927953239496],[-76.56272294787352,39.22926506470571],[-76.5627171475499,39.22924835528028],[-76.56271099101635,39.22923175171999],[-76.5627064576437,39.22921581087389],[-76.56270243851378,39.22919610759151],[-76.56269730198488,39.22918351088859],[-76.5626836138353,39.22915167683208],[-76.56267801574846,39.22913617069653],[-76.56267625714942,39.22912026721065],[-76.56267103527661,39.22910479310276],[-76.56266628721434,39.22909174475413],[-76.56266374110116,39.22907639861765],[-76.56266210944065,39.22906508326765],[-76.56265785498854,39.22904616998928],[-76.56265520564129,39.22902821751632],[-76.5626502993277,39.22901209422103],[-76.56264453593006,39.2289940968154],[-76.56263891285944,39.22898020567946],[-76.56263286196604,39.228961312729],[-76.56262732071151,39.22894560953144],[-76.56262105719694,39.22892927129575],[-76.56261524769516,39.22891424808621],[-76.56260968327994,39.228897229665],[-76.56260621005036,39.22887652854779],[-76.56260001704536,39.22886002663178],[-76.5625927625771,39.22884681490573],[-76.56258988530014,39.22882807700292],[-76.56258805943676,39.2288150125167],[-76.56258411884914,39.22879854871924],[-76.56257859022934,39.22878418232061],[-76.56257294342088,39.22876850935267],[-76.5625653490164,39.22874919268396],[-76.56256153640774,39.22873714767987],[-76.56255507318834,39.22872916701714],[-76.56254951960798,39.22871152259154],[-76.56254201409584,39.22870014931537],[-76.56253988821959,39.22868878618073],[-76.56253378582284,39.22867600481235],[-76.56253253184033,39.22866129223026],[-76.56253151222671,39.22864688768706],[-76.5625304069164,39.22863135414913],[-76.56252939772693,39.22861694964463],[-76.56252431388437,39.2286016408847],[-76.56251642941311,39.22858936901879],[-76.56251313413102,39.22857757545636],[-76.56251357552974,39.22856439601218],[-76.56251119775746,39.22855143575845],[-76.56250606625461,39.22853690869536],[-76.56250363991082,39.22851717080399],[-76.56249770525862,39.22850348387524],[-76.56248963152835,39.22849599083166],[-76.56248502325542,39.22848601825162],[-76.56248304718167,39.22845542225392],[-76.56247886502656,39.22844095367549],[-76.5624699264984,39.22841649034523],[-76.56246481194177,39.2284020354052],[-76.56245853255338,39.22838415226394],[-76.56245449369611,39.22836597751543],[-76.56244970737649,39.22835144633117],[-76.56244492390243,39.22833325889771],[-76.56244319708237,39.22831333805127],[-76.56243963558086,39.22829550917879],[-76.56243305467517,39.22827731684529],[-76.56242680650183,39.22826057330274],[-76.56241925092878,39.22824192424306],[-76.56241157859988,39.22822267663064],[-76.56240540042936,39.22820491186489],[-76.5623989728637,39.22818476811378],[-76.56239306373429,39.2281671358639],[-76.56238532900888,39.22814598827488],[-76.56237846897305,39.22812667522915],[-76.56237238123249,39.22810739478809],[-76.5623666474029,39.22808293258695],[-76.56235862108488,39.22806212079953],[-76.56235024535943,39.22804538553279],[-76.56233921817173,39.2280275945746],[-76.56232903622181,39.22801059134523],[-76.56231867372891,39.22799413151181],[-76.56230678193907,39.22797794611653],[-76.56229658693006,39.22796024563279],[-76.5622935283803,39.2279388056069],[-76.56228641252532,39.22791403018036],[-76.56227759163689,39.22789680682705],[-76.5622649291815,39.22788126891498],[-76.56225278022143,39.22787017015163],[-76.56224249790696,39.22785799381168],[-76.56223741012353,39.22784033759209],[-76.56223772656945,39.22782507868316],[-76.56224122146934,39.22780730044115],[-76.56224028446442,39.22779209450694],[-76.56223894321595,39.22777220031408],[-76.56223939432206,39.22775275779073],[-76.56224270748467,39.22773064342332],[-76.56224363030385,39.22770982987249],[-76.56224200988336,39.22768693954927],[-76.5622386790423,39.22766383386584],[-76.56223294022173,39.22764075793445],[-76.56222384306277,39.22760861755245],[-76.56221477269715,39.2275781437098],[-76.562203352186,39.22754677383314],[-76.56219410647891,39.22750548368537],[-76.56219147093381,39.22747668136654],[-76.56219269809883,39.22746605225228],[-76.56219791952776,39.22745507862636],[-76.56220699824063,39.22744324833496],[-76.56221821044741,39.22743157552987],[-76.56223237423309,39.22741585752627],[-76.56224331497772,39.22740369368265],[-76.5622534002261,39.22738996559792],[-76.56226834523652,39.22737076088706],[-76.56228335400276,39.22735023046579],[-76.56230055900922,39.22732512597173],[-76.56233048976513,39.2272821650528],[-76.56237004342607,39.2272226836943],[-76.56241403614833,39.22716358458793],[-76.56245248656684,39.22711622086609],[-76.56247619070567,39.227087022213],[-76.56254513947465,39.22700057385885],[-76.56259354363394,39.22693915990928],[-76.56267378533506,39.22685249053502],[-76.56274347563807,39.22677155488726],[-76.5628144903639,39.22668126774086],[-76.56288581915231,39.22658809562419],[-76.56294044414376,39.22651390192496],[-76.56299801937952,39.22643867067735],[-76.56306081677324,39.22636189058546],[-76.56308760946257,39.22632925241878],[-76.56309342373166,39.22631713336493],[-76.56318518964862,39.22620921932256],[-76.5632471947895,39.22613220017495],[-76.56331041747416,39.22605114733156],[-76.56336351955358,39.22598321357957],[-76.56341202865306,39.22592239778781],[-76.56344766253888,39.22587669599805],[-76.56347930696239,39.22583621738909],[-76.56351033814363,39.22579771370046],[-76.56354547528234,39.22575122365241],[-76.5635954961499,39.22568727328824],[-76.56363579889029,39.22563090285768],[-76.56366882755373,39.22559203813349],[-76.56370399778395,39.2255480451186],[-76.56372931833434,39.22551364030473],[-76.56376546572642,39.22546873931456],[-76.56380623552725,39.22542169722548],[-76.56384565720961,39.22537409252978],[-76.56387726780613,39.22533339119138],[-76.56390676270314,39.22529397550174],[-76.56393855493984,39.22525348109948],[-76.56397867978738,39.22520392968406],[-76.5640114850271,39.2251617806903],[-76.56404118657316,39.22512301339341],[-76.56407119842919,39.22508500569728],[-76.56410026086085,39.22504771058648],[-76.56412074126207,39.22501840593541],[-76.56413499250797,39.22500093330202],[-76.56413710412546,39.22499502212411],[-76.5641365280761,39.22498302430873],[-76.56412868230167,39.22494032075853],[-76.5641266278304,39.22491730272464],[-76.56412548934463,39.22489410883727],[-76.56412476490041,39.22487930724554],[-76.56412353147188,39.22486233558798],[-76.56411485539626,39.2248339630512],[-76.56409818591857,39.22477732049696],[-76.56407978551215,39.22472249738983],[-76.5640674756618,39.22468577283829],[-76.56406396660923,39.22467087082448],[-76.56406420335675,39.22466399965898],[-76.5641001686256,39.22464054813741],[-76.56411821703382,39.224631406502],[-76.56413096490054,39.22462488986686],[-76.5641333952359,39.22461705130371],[-76.56414453473097,39.22460464750623],[-76.56416356177043,39.22459342239256],[-76.56417680630713,39.22458768406854],[-76.56421307638787,39.22457040938667],[-76.56423167859975,39.22456235703066],[-76.564257637811,39.22455135310913],[-76.56427005454063,39.22454519644194],[-76.56427570938486,39.22454239259213],[-76.56429395494672,39.22453225449892],[-76.56431231308534,39.22452207628573],[-76.56432881016632,39.2245130279447],[-76.56434278822579,39.22451023246833],[-76.56440598322878,39.22453387017518],[-76.56440915382491,39.22453504935253],[-76.56443000132187,39.22454308330726],[-76.56445413009563,39.22455313366902],[-76.56447452175999,39.22456184961565],[-76.56450059003531,39.22457100998883],[-76.5645255627659,39.22457922407612],[-76.56454892154377,39.2245877447404],[-76.56457316600249,39.2245978207285],[-76.56459263583073,39.22460672780268],[-76.5646148020852,39.22461557641719],[-76.56463811619703,39.22462269708694],[-76.56465998839097,39.2246305870737],[-76.56467974583192,39.2246390538183],[-76.56470033110531,39.2246473668943],[-76.56472214044419,39.22465625560039],[-76.56474294698506,39.22466474784377],[-76.56476415324015,39.22467302447792],[-76.56478456272771,39.22468111169229],[-76.56481183662412,39.224691791577],[-76.56484324306608,39.22470372534899],[-76.56486825562615,39.22471301323923],[-76.56489353663503,39.22472233995205],[-76.5649158057792,39.2247310411628],[-76.56493734171643,39.22473862989143],[-76.56495808229744,39.22474579860712],[-76.56498678198007,39.22475589372537],[-76.56500802796187,39.22476450014749],[-76.56502876115914,39.22477401084906],[-76.56504986332703,39.22478322025252],[-76.56507027141846,39.22479097862717],[-76.56509000397453,39.22479841832152],[-76.56511466454309,39.22480808318168],[-76.56513463766234,39.2248161443967],[-76.5651557461555,39.22482470344179],[-76.56517651046715,39.22483311077782],[-76.56520823544214,39.2248467580125],[-76.56522777653622,39.22485483112267],[-76.56524602674,39.22486170501464],[-76.5652627865365,39.22486818875043],[-76.56530036272427,39.22488082083652],[-76.56532363046553,39.22489024448949],[-76.56535052583105,39.22490111200946],[-76.56537004862568,39.22490934176351],[-76.56538090418243,39.22491567390543],[-76.56538718680387,39.2249181517935],[-76.56539352423599,39.22492056773051],[-76.56539990481531,39.22492293518483],[-76.56540631225693,39.22492526580633],[-76.56541273607203,39.22492757036553],[-76.56541916111729,39.22492986321877],[-76.56542558159123,39.22493214614619],[-76.56543202312615,39.22493439402082],[-76.56543848222006,39.22493661133363],[-76.56544495417458,39.22493880887657],[-76.56545143198053,39.22494099653223],[-76.5654579086233,39.22494318508402],[-76.56546437825737,39.22494538351808],[-76.56547083618422,39.2249476026263],[-76.56547727423663,39.22494985228712],[-76.56548368655814,39.22495214328816],[-76.56548998543809,39.22495461492543],[-76.56549616386202,39.2249572779824],[-76.56550236330825,39.22495991229192],[-76.56550867150385,39.22496237585568],[-76.56551499021629,39.22496482414478],[-76.5655213124145,39.22496727064492],[-76.56552764045864,39.2249697081585],[-76.56553397552337,39.22497213398765],[-76.56554032228505,39.22497454094336],[-76.56554668191838,39.22497692632766],[-76.56555305794168,39.22497928294741],[-76.56555945385117,39.22498160721231],[-76.56556587084359,39.22498389282143],[-76.56557231124053,39.22498613888257],[-76.56557877154022,39.22498834988659],[-76.56558524938788,39.22499053213028],[-76.56559173894351,39.22499269369902],[-76.5655982378524,39.22499484088958],[-76.5656047414491,39.22499697908934],[-76.5656112462098,39.22499911639224],[-76.56561774862719,39.22500125819001],[-76.56562424286119,39.22500341256802],[-76.5656307277208,39.22500558492659],[-76.56563719737687,39.22500778154954],[-76.56564364946378,39.22501001053517],[-76.56565008751082,39.22501226288874],[-76.5656565138562,39.22501453501578],[-76.56566293200176,39.22501682242535],[-76.565669341964,39.22501912241523],[-76.56567574840282,39.22502143049869],[-76.56568215250388,39.2250237421763],[-76.56568855543621,39.22502605565079],[-76.56569495953806,39.22502836732764],[-76.56570136831678,39.22503067181525],[-76.56570778178333,39.22503296731205],[-76.56571420344503,39.22503524842639],[-76.56572063914732,39.22503750617204],[-76.56572712394683,39.22503968933437],[-76.56573364382534,39.22504181767857],[-76.56574017773889,39.22504392355489],[-76.56574670348019,39.22504604020991],[-76.56575320000533,39.22504819999392],[-76.56575964626504,39.22505043615777],[-76.56576601889938,39.22505278104316],[-76.56577229685345,39.22505526880177],[-76.56577848364569,39.22505789224044],[-76.56578461316896,39.22506060104086],[-76.56579069360697,39.22506338262247],[-76.5657967343236,39.22506622080591],[-76.5658027469713,39.22506910392415],[-76.56580873975581,39.22507201579351],[-76.56581472202446,39.22507494293692],[-76.56582070544059,39.2250778718858],[-76.56582669704648,39.22508078735301],[-76.56583270734188,39.22508367676646],[-76.5658387480014,39.22508652485604],[-76.5658448249034,39.22508931723111],[-76.56585098821463,39.22509199372497],[-76.5658572519587,39.22509453367161],[-76.56586355891586,39.22509701432634],[-76.56586985070271,39.22509951384097],[-76.56587606894134,39.22510210946655],[-76.5658821599084,39.2251048748683],[-76.56588815164575,39.22510776961489],[-76.56589408501127,39.22511074071153],[-76.56589997751387,39.22511376570338],[-76.56590584549897,39.22511682303233],[-76.56591170531189,39.22511989114012],[-76.56591757328694,39.22512295027],[-76.56592346693316,39.2251259779673],[-76.56592940143771,39.22512895266937],[-76.56593541636275,39.22513184389616],[-76.56594150818988,39.22513465884086],[-76.56594765709956,39.22513741904876],[-76.56595383864538,39.22514014514744],[-76.56596003067497,39.22514286137602],[-76.56596620990554,39.22514558746546],[-76.56597235534838,39.22514834675849],[-76.56597844370962,39.2251511607876],[-76.56598445170104,39.22515405018466],[-76.56599035833388,39.22515703829225],[-76.5659961403143,39.225160146643],[-76.56600177434845,39.22516339676949],[-76.56600723830066,39.22516681020851],[-76.56601255079386,39.22517037171583],[-76.566017786408,39.22517400590169],[-76.56602295677347,39.22517770470216],[-76.56602806423406,39.225181463622],[-76.5660331146186,39.22518527637726],[-76.56603811490326,39.22518913848997],[-76.5660430685897,39.22519304546907],[-76.56604798266507,39.225196991035],[-76.56605286063115,39.22520097069681],[-76.56605770831692,39.22520497817062],[-76.56606253269283,39.22520900987907],[-76.56606733611365,39.22521305952541],[-76.56607212671896,39.22521712173508],[-76.56607690916876,39.22522119202142],[-76.56608168697016,39.2252252649927],[-76.56608646709935,39.22522933617081],[-76.56609125422715,39.22523339926759],[-76.56609605533507,39.22523744890417],[-76.56610087276133,39.22524148148607],[-76.56610571349853,39.2252454898329],[-76.56611058335906,39.22524947036307],[-76.5661154497569,39.22525344907866],[-76.5661202672954,39.22525746364461],[-76.56612505109038,39.22526150420813],[-76.56612982092827,39.22526555462849],[-76.56613459309393,39.22526960325565],[-76.56613938504667,39.22527363574175],[-76.56614421655102,39.22527763954895],[-76.56614910390829,39.22528160032498],[-76.56615406224519,39.22528550641567],[-76.56615906362451,39.22528938113801],[-76.5661640882762,39.22529323793055],[-76.5661691350311,39.22529707859054],[-76.5661741980824,39.22530090579889],[-76.56617927625535,39.22530472225354],[-76.56618436489575,39.22530853154039],[-76.5661894605292,39.22531233364666],[-76.56619456080655,39.22531613396833],[-76.56619966225358,39.22531993249253],[-76.56620476021031,39.22532373370593],[-76.5662098535133,39.22532753850502],[-76.5662149363555,39.22533134957065],[-76.56622000755682,39.2253351705016],[-76.56622506247388,39.22533900308231],[-76.56623009877407,39.22534285000642],[-76.56623511297207,39.22534671306263],[-76.5662401004135,39.22535059583689],[-76.56624505877674,39.2253544992214],[-76.56624989381636,39.22535849493015],[-76.56625454622224,39.22536262327908],[-76.56625908926762,39.22536683319448],[-76.56626359392047,39.22537107179275],[-76.56626813231257,39.22537528529375],[-76.56627277541185,39.22537942081374],[-76.56627759416446,39.22538342907202],[-76.56628251645523,39.22538736114649],[-76.56628747947217,39.22539126184402],[-76.56629247854457,39.22539513745271],[-76.56629750785983,39.2253989915543],[-76.56630255928384,39.22540282862253],[-76.56630762699871,39.22540665313979],[-76.56631270633902,39.22541047049364],[-76.56631778918168,39.22541428335624],[-76.56632287201387,39.22541809802017],[-76.56632794554885,39.22542191805418],[-76.56633300628489,39.22542574794922],[-76.56633804724044,39.22542959308425],[-76.56634307074268,39.22543345166621],[-76.56634808493122,39.22543731832057],[-76.56635310028386,39.2254411840782],[-76.56635812611495,39.22544504086652],[-76.56636317173307,39.22544888151373],[-76.56636824645251,39.22545269794723],[-76.56637336074563,39.22545648209869],[-76.56637853788972,39.22546021513767],[-76.56638377205033,39.2254639042489],[-76.56638903997212,39.22546756465974],[-76.56639432069943,39.22547121430826],[-76.5663995921131,39.22547487202915],[-76.56640483095224,39.2254785539505],[-76.56641001741929,39.22548227801472],[-76.56641512708441,39.22548606214718],[-76.56642014131909,39.22548992249308],[-76.56642509388396,39.22549383035221],[-76.56643001152521,39.22549776780784],[-76.5664348954283,39.22550173036041],[-76.56643975256387,39.22550571443259],[-76.56644458525905,39.22550971823144],[-76.56644939817372,39.22551373727026],[-76.5664541959623,39.22551776796308],[-76.56645898095186,39.22552180851704],[-76.56646375779687,39.22552585534613],[-76.56646853115713,39.22552990396373],[-76.56647330451793,39.22553395258108],[-76.56647808138105,39.22553799670732],[-76.56648286522629,39.2255420354545],[-76.56648761301169,39.22554610019083],[-76.56649232241018,39.22555019270933],[-76.56649700737375,39.22555430405376],[-76.56650167954389,39.22555842435848],[-76.56650635172007,39.2255625437623],[-76.56651103901797,39.22556665241243],[-76.56651575307902,39.22557074044327],[-76.56652050785529,39.22557479889861],[-76.56652531499924,39.22557881611132],[-76.56653018961549,39.22558278403022],[-76.566535130546,39.22558670265092],[-76.56654011220276,39.22559058989457],[-76.56654512876229,39.22559445114432],[-76.56655017557577,39.22559828908533],[-76.5665552468197,39.22560210910081],[-76.5665603390088,39.22560591297933],[-76.56656544631964,39.22560970610413],[-76.56657056410886,39.22561349025966],[-76.56657568771105,39.22561727083328],[-76.56658081247743,39.22562105051016],[-76.56658593375352,39.22562483287631],[-76.56659104572148,39.22562862241406],[-76.56659614372684,39.22563242270935],[-76.56660122312081,39.22563623644739],[-76.56660629320663,39.22564005735709],[-76.56661136561465,39.22564387737432],[-76.5666164403559,39.22564769469763],[-76.56662151509767,39.2256515120207],[-76.5666265910036,39.22565532844707],[-76.56663166690456,39.225659145774],[-76.56663674164251,39.22566296399714],[-76.5666418140593,39.2256667831123],[-76.56664688298585,39.22567060491668],[-76.5666519495803,39.22567442941454],[-76.5666570103628,39.22567825749383],[-76.56666206764959,39.22568208916312],[-76.56666711796092,39.22568592531034],[-76.56667216244928,39.2256897668405],[-76.56667719879303,39.22569361464584],[-76.56668222815033,39.22569746873057],[-76.56668724355059,39.22570133267215],[-76.5666922275179,39.22570522352081],[-76.5666971823905,39.22570913768207],[-76.56670211631348,39.22571306888062],[-76.56670703511038,39.22571701173323],[-76.56671194808433,39.22572095996879],[-76.56671685989525,39.22572490910061],[-76.56672177869923,39.22572885105181],[-76.56672671147236,39.22573278134425],[-76.56673166403813,39.22573669459478],[-76.56673664570513,39.22574058363144],[-76.56674166229696,39.22574444307111],[-76.56674672079514,39.22574826753491],[-76.56675182819212,39.22575204984233],[-76.56675710554545,39.22575568955308],[-76.5667625831304,39.2257591597555],[-76.56676817479183,39.22576253489621],[-76.56677379324387,39.2257658849137],[-76.56677935232577,39.2257692851554],[-76.56678476590439,39.22577280646488],[-76.56678994667736,39.22577652148306],[-76.56679492955796,39.22578040241468],[-76.56679989148347,39.22578430128429],[-76.56680483711924,39.22578821270449],[-76.5668097676179,39.22579213758026],[-76.56681468414844,39.2257960741144],[-76.56681958671652,39.22580002140616],[-76.56682447763819,39.22580397946403],[-76.56682935808814,39.22580794559006],[-76.56683422690264,39.22581192068075],[-76.56683908756163,39.22581590384814],[-76.56684394123411,39.225819893295],[-76.56684878676745,39.22582388811624],[-76.56685362648346,39.22582788741974],[-76.56685846154005,39.22583189120972],[-76.56686329310102,39.22583589858972],[-76.5668681223353,39.22583990776245],[-76.56687294924843,39.22584391782723],[-76.56687777615664,39.22584792879256],[-76.56688260422347,39.22585193976195],[-76.56688743345991,39.22585594893388],[-76.56689226502411,39.22585995631264],[-76.56689710007963,39.22586396100178],[-76.56690193979554,39.225867961204],[-76.56690678532998,39.22587195692356],[-76.56691163784652,39.22587594726405],[-76.56691649850869,39.22587993132893],[-76.56692136848565,39.22588390732092],[-76.56692627447406,39.22588786543002],[-76.56693128497194,39.22589177798482],[-76.5669363930143,39.22589564766194],[-76.56694158466546,39.22589948071539],[-76.56694685062769,39.22590328251556],[-76.56695217581824,39.22590705751064],[-76.56695754861776,39.2259108119632],[-76.56696295741224,39.22591455123511],[-76.56696838943517,39.22591827978307],[-76.56697383307261,39.22592200296896],[-76.56697927554707,39.22592572705112],[-76.56698470409191,39.22592945648631],[-76.56699010825137,39.22593319664057],[-76.56699547293721,39.22593695286297],[-76.56700078885163,39.22594073052392],[-76.5670060409064,39.22594453497238],[-76.56701121864579,39.22594837157448],[-76.5670163092976,39.22595224568777],[-76.56702130124796,39.22595616267407],[-76.5670261805667,39.22596012788676],[-76.56703093680353,39.22596414579107],[-76.56703555602822,39.22596822174043],[-76.56704002777394,39.2259723629024],[-76.56704433812709,39.22597657192801],[-76.56704847545716,39.22598085688143],[-76.56705242816666,39.22598522042217],[-76.56705618347257,39.22598966970936],[-76.56705972860834,39.22599420919985],[-76.56706305080183,39.22599884425114],[-76.5670661709428,39.22600356773412],[-76.56706911689696,39.22600836804149],[-76.5670718979566,39.22601324070364],[-76.5670745210922,39.22601818214313],[-76.56707699559047,39.22602318879112],[-76.56707933074375,39.22602825617806],[-76.5670815323534,39.2260333825238],[-76.56708361087526,39.22603856246214],[-76.5670855732854,39.22604379151498],[-76.56708742770148,39.22604906791074],[-76.56708918457382,39.22605438718407],[-76.56709084972034,39.22605974485249],[-76.56709243242234,39.22606513824794],[-76.56709394197209,39.22607056290083],[-76.56709538534007,39.2260760152337],[-76.56709677065497,39.22608149167344],[-76.56709810720908,39.22608698775044],[-76.56709940312548,39.22609250079231],[-76.56710066538034,39.22609802632093],[-76.56710190441838,39.22610356077168],[-76.56710312605222,39.2261091005629],[-76.56710434188474,39.2261146421342],[-76.56710555657033,39.22612018189977],[-76.56710678056481,39.22612571449334],[-76.56710802198597,39.22613123814342],[-76.56710928897343,39.22613674747531],[-76.56711058964483,39.22614224071741],[-76.56711193214544,39.22614771159428],[-76.56711332574545,39.22615315923937],[-76.567114777432,39.22615857737295],[-76.56711629648638,39.22616396332696],[-76.56711788292505,39.22616931439908],[-76.56711710099006,39.22617485580814],[-76.56711899450181,39.22618017918788],[-76.56712344509044,39.22618437431505],[-76.56712935064449,39.22618718130349],[-76.56713565061882,39.22618969068775],[-76.56714219173199,39.22619196946086],[-76.56714881725578,39.22619408009925],[-76.56715539705442,39.22619609238382],[-76.56716197586013,39.22619807764094],[-76.56716857219142,39.22620003774055],[-76.56717518722847,39.22620196908386],[-76.5671818186879,39.22620386625772],[-76.5671884700661,39.22620572567199],[-76.5671951390797,39.22620754191351],[-76.56720182690881,39.22620931138355],[-76.56720853590258,39.22621102868607],[-76.56721526377217,39.22621268930873],[-76.56722201170315,39.22621428875205],[-76.56722878436089,39.22621582162854],[-76.5672355817289,39.22621729064047],[-76.5672423991088,39.22621870657983],[-76.56724923297145,39.22622007844141],[-76.5672560821038,39.2262214152285],[-76.56726293949133,39.22622272772465],[-76.56726980392108,39.2262240249331],[-76.56727667070024,39.22622531674514],[-76.56728353630504,39.22622661125476],[-76.56729039719535,39.22622791925831],[-76.56729724983646,39.22622925065129],[-76.5673040907047,39.22623061352768],[-76.56731091510176,39.22623201867956],[-76.56731772407599,39.22623348412642],[-76.56732451998752,39.22623500267061],[-76.56733130522386,39.22623656261084],[-76.56733808333085,39.22623815225015],[-76.56734485554325,39.22623975898214],[-76.56735162772857,39.22624137021751],[-76.56735839995257,39.22624297514715],[-76.56736517693555,39.22624455937605],[-76.567371959896,39.22624611300014],[-76.56737875355405,39.22624762162432],[-76.56738556029177,39.22624907444802],[-76.56739238134415,39.2262504588649],[-76.56739922257846,39.22625176228573],[-76.56740608406055,39.22625297390135],[-76.56741297051059,39.22625407931668],[-76.56741988543038,39.22625507404078],[-76.56742683677287,39.22625598332473],[-76.56743381987275,39.22625681255598],[-76.5674408312666,39.22625755992026],[-76.56744786515297,39.22625822719771],[-76.56745491805746,39.22625881437553],[-76.56746198302605,39.22625932232883],[-76.5674690565898,39.22625975014412],[-76.5674761352689,39.22626009870926],[-76.56748321211472,39.22626036799873],[-76.56749028248939,39.22626055889616],[-76.56749734292397,39.226260670488],[-76.56750438761695,39.22626070455448],[-76.5675114119415,39.22626066017774],[-76.5675184279503,39.22626045993518],[-76.56752544522101,39.22626005251777],[-76.56753246127823,39.22625946403899],[-76.56753947132482,39.22625872150445],[-76.56754647288001,39.22625785192841],[-76.56755346346846,39.22625688142433],[-76.56756043713503,39.22625583699365],[-76.56756739139887,39.22625474565061],[-76.56757432379024,39.22625363260784],[-76.56758122953403,39.22625252126803],[-76.56758805216785,39.22625117451841],[-76.56759478741029,39.22624953469336],[-76.56760147385783,39.22624772984565],[-76.5676081489489,39.2262458880238],[-76.56761485127458,39.22624413818131],[-76.56760119555794,39.22619568002615],[-76.56759673410984,39.22619592571617],[-76.5675932211036,39.22619618210651],[-76.56758999423892,39.22619718539572],[-76.56758643667061,39.22619753260031],[-76.56758311418307,39.22619693215093],[-76.56758111644942,39.22619464401905],[-76.56758016686302,39.22619196881086],[-76.56757957302803,39.22618925978303],[-76.56757907307616,39.22618653849014],[-76.56757867163425,39.22618380585013],[-76.56757838834628,39.22618106914148],[-76.56757826953073,39.22617832943568],[-76.5675783140624,39.22617558132396],[-76.5675784385086,39.22617283260587],[-76.56757853265154,39.22616992523905],[-76.56758153152883,39.22616908505194],[-76.56758504565835,39.22616864400647],[-76.56758867611974,39.2261683078798],[-76.56759220955838,39.22616792905899],[-76.56759570260604,39.22616752666903],[-76.5675991945011,39.22616712337391],[-76.56760268870131,39.22616672188873],[-76.5676061817269,39.22616632310149],[-76.56760967589962,39.22616592611993],[-76.56761317120295,39.22616553364632],[-76.56761666647338,39.22616514657715],[-76.56762016171082,39.2261647649124],[-76.56762365806242,39.22616439045795],[-76.56762715436467,39.22616402411013],[-76.56763065176457,39.22616366767485],[-76.5676344658551,39.22616379612428],[-76.5676357927203,39.22616214177788],[-76.56763546896715,39.2261592031459],[-76.56763532006077,39.22615645972618],[-76.56763511555447,39.2261537179032],[-76.56763491918785,39.22615097070556],[-76.56763468573456,39.22614822787521],[-76.56763433520335,39.22614550262909],[-76.56763288394855,39.22614266973852],[-76.56763567196259,39.22614203325001],[-76.56763903623458,39.22614166731628],[-76.56764266836335,39.226141437486],[-76.56764641586342,39.2261412801429],[-76.56765013087079,39.22614113348932],[-76.56765391589632,39.226140899718],[-76.5676556866836,39.22614241954921],[-76.56765540114444,39.22614537755545],[-76.56768994816542,39.22628193584881],[-76.56769194167681,39.22628149460379],[-76.56769299754835,39.22628136067382],[-76.5676940681023,39.22628128805081],[-76.56769513978142,39.22628122083662],[-76.5676962251878,39.22628118159714],[-76.56769830734667,39.22628082715329],[-76.56769844595532,39.22628164827321],[-76.56769850223989,39.2262824853039],[-76.56769857008358,39.2262833259803],[-76.56772495006325,39.2263673892247],[-76.56772050270293,39.2263725478181],[-76.56776565233723,39.22650212175864],[-76.56777139147165,39.22650392823719],[-76.56777449198496,39.22650522866945],[-76.56777753289201,39.22650661805919],[-76.56778055861771,39.22650802811088],[-76.56778357381084,39.22650945613923],[-76.56778658083161,39.22651089494675],[-76.56778958317615,39.22651234094325],[-76.5677925843518,39.22651378873688],[-76.5677955890183,39.226515233841],[-76.5677985983667,39.22651667085523],[-76.56780161822046,39.22651809439638],[-76.56780465092314,39.22651949996923],[-76.56780770114015,39.22652088218625],[-76.56781075836625,39.22652225452043],[-76.56781381790864,39.22652362686304],[-76.56781687977289,39.22652499831332],[-76.56781994514441,39.22652636437179],[-76.567823016345,39.22652772414621],[-76.56782609456016,39.22652907313699],[-76.56782917979537,39.22653041044345],[-76.56783227554688,39.22653173247534],[-76.56783538298917,39.22653303653457],[-76.56783850214424,39.22653431901819],[-76.56784163533382,39.22653557903389],[-76.56784478490152,39.22653681208652],[-76.56784795670907,39.22653800648744],[-76.56785117881974,39.22653911820186],[-76.56785444187551,39.22654016250853],[-76.56785773416912,39.22654116008228],[-76.56786104166622,39.22654213339092],[-76.56786435033253,39.22654310490218],[-76.5678676473027,39.22654409528667],[-76.56787091968958,39.22654512881792],[-76.56787415347524,39.22654622526144],[-76.56787734980132,39.22654738732381],[-76.56788053910218,39.22654856197112],[-76.56788372488488,39.2265497438116],[-76.5678869059805,39.22655093464255],[-76.56789008239443,39.22655213356317],[-76.5678932541212,39.22655334147422],[-76.5678964211663,39.22655455747498],[-76.56789958236621,39.2265557824619],[-76.56790273772079,39.22655701643501],[-76.56790588723022,39.2265582593943],[-76.56790903089431,39.22655951133979],[-76.56791216755508,39.22656077226718],[-76.56791529720701,39.22656204307725],[-76.56791841985563,39.22656332286923],[-76.56792153549536,39.22656461254389],[-76.5679246441263,39.22656591210123],[-76.56792773641776,39.22656723231628],[-76.56793079599176,39.22656860015201],[-76.56793382985725,39.22657000572575],[-76.56793684270708,39.22657143914621],[-76.56793984385531,39.22657289234063],[-76.56794283684208,39.22657435451269],[-76.56794583099254,39.22657581578817],[-76.56794883099401,39.22657726717659],[-76.5679518450135,39.22657869879934],[-76.56795487890177,39.22658010076952],[-76.56795794082049,39.22658146410929],[-76.56796103430425,39.22658277892315],[-76.56796416282734,39.22658404522388],[-76.56796729951209,39.22658530254672],[-76.5679704420149,39.22658655538707],[-76.56797359035221,39.22658780104252],[-76.56797674684573,39.22658903862093],[-76.56797991034283,39.22659026721724],[-76.56798308085989,39.22659148412916],[-76.56798626071323,39.2265926893653],[-76.56798944760848,39.226593879314],[-76.56799264501454,39.22659505488883],[-76.56799585063708,39.22659621247824],[-76.56799906563965,39.22659735118579],[-76.56800229118036,39.22659847101563],[-76.56800552728123,39.22659956836483],[-76.56800877394765,39.22660064233254],[-76.56801203234322,39.22660169202231],[-76.5680153024789,39.22660271563267],[-76.56801858435469,39.22660371316354],[-76.56802187786646,39.22660470172936],[-76.56802518064322,39.22660569032919],[-76.56802849270686,39.22660667535999],[-76.56803181523189,39.22660765412371],[-76.56803514592958,39.22660862210816],[-76.56803848480537,39.22660957841242],[-76.56804183188116,39.22661051943354],[-76.56804518833695,39.22661144157274],[-76.56804855071495,39.22661234211495],[-76.56805192134772,39.22661321836642],[-76.56805529794099,39.22661406671561],[-76.56805868166381,39.22661488536523],[-76.56806207138554,39.22661566980722],[-76.56806546711704,39.22661641824014],[-76.56806886772766,39.22661712615587],[-76.5680722732228,39.22661779265361],[-76.56807568478807,39.22661841323395],[-76.56807909895996,39.22661898608248],[-76.56808251808219,39.22661950670397],[-76.5680859563808,39.22661992110409],[-76.56808943280738,39.22662015999257],[-76.56809294144539,39.22662024406558],[-76.56809647289299,39.22662019580793],[-76.5681000223861,39.22662003682087],[-76.56810358168106,39.22661978959344],[-76.56810714369767,39.22661947571834],[-76.56811070135575,39.22661911678814],[-76.56811424756418,39.22661873619702],[-76.56811777525384,39.22661835373606],[-76.56812127733902,39.22661799189871],[-76.56812478278344,39.22661764898999],[-76.56812829742692,39.22661731692434],[-76.56813182012789,39.22661699299524],[-76.56813534975004,39.22661667359537],[-76.56813888515718,39.22661635511749],[-76.56814242173341,39.22661603484224],[-76.56814595950063,39.22661570916663],[-76.56814949616992,39.22661537357823],[-76.56815302943608,39.22661502626716],[-76.56815655816291,39.22661466362601],[-76.56816008006156,39.22661428114249],[-76.5681635939849,39.22661387701084],[-76.56816709649145,39.22661344581373],[-76.56817058642856,39.22661298664612],[-76.56817406151295,39.22661249409499],[-76.5681775206029,39.22661196545376],[-76.56818096139861,39.22661139801162],[-76.56818438276383,39.22661078816131],[-76.56818778125174,39.22661013138623],[-76.56819115571507,39.22660942588065],[-76.56819450502316,39.22660866713645],[-76.5681978257236,39.22660785153791],[-76.5682011041217,39.22660694570574],[-76.56820433682527,39.22660593611586],[-76.56820752724846,39.22660483268938],[-76.56821068111604,39.22660364625668],[-76.5682138006839,39.22660238673467],[-76.56821689284054,39.22660106405722],[-76.5682199610054,39.22659968724472],[-76.5682230085816,39.22659826801981],[-76.56822604246307,39.22659681541563],[-76.56822906605842,39.2265953402541],[-76.5682320827871,39.2265938515555],[-76.56823509953213,39.22659236015456],[-76.56823811855487,39.22659087506737],[-76.5682411455747,39.22658940802511],[-76.56824418401123,39.22658796804811],[-76.56824724074728,39.22658656597108],[-76.5682503168917,39.22658520990503],[-76.56824033023567,39.22656579381791],[-76.56823500096212,39.22655562424028],[-76.56822930036148,39.22654557400069],[-76.5682229012231,39.22653574458408],[-76.56821763032295,39.22652530858989],[-76.56821414534838,39.22651409728979],[-76.56822357551307,39.22650942090979],[-76.56823778810751,39.22650713837606],[-76.56825153080825,39.22650461450495],[-76.56826527239924,39.22650208252116],[-76.56827901286401,39.22649954512694],[-76.56829275218614,39.2264970050246],[-76.56830649265443,39.22649446672639],[-76.56832023309981,39.22649193202965],[-76.56833397465851,39.2264894045416],[-76.56834771963032,39.22648688697306],[-76.56836146683524,39.2264843829228],[-76.56837521741491,39.22648189509738],[-76.5683889725111,39.22647942620328],[-76.56840273210186,39.22647697984356],[-76.56841697717672,39.22647468659827],[-76.56842528642265,39.22648160450537],[-76.56842930132683,39.22649214036226],[-76.56843299934073,39.22650279485733],[-76.56843409761022,39.22651397755782],[-76.56842525404831,39.22652046487503],[-76.56841756822644,39.22652854091831],[-76.56842298312559,39.22653872701648],[-76.5684298801063,39.22654915817114],[-76.56843440425934,39.22655936801681],[-76.56843078135587,39.22656874711343],[-76.56842027864028,39.22657744514549],[-76.56842741454655,39.2265857234172],[-76.5684404442201,39.22659018784457],[-76.56845392935716,39.22659402880482],[-76.56846349073689,39.22660148997836],[-76.56847174497682,39.22661041101112],[-76.56847902175382,39.22662009411128],[-76.56848519919194,39.22663020284055],[-76.5684902478722,39.22664043262782],[-76.56849478050529,39.22665077401566],[-76.56849897888702,39.2266612321764],[-76.56850290105949,39.2266717848041],[-76.56850660623948,39.22668240689452],[-76.56851015477469,39.2266930779518],[-76.56851360356558,39.22670377296323],[-76.56851701297086,39.2267144696313],[-76.56852044219089,39.22672514565416],[-76.56852386574734,39.22673580093816],[-76.56852699825214,39.22674651550423],[-76.56852991621712,39.22675727702276],[-76.5685327425882,39.22676805531927],[-76.56853560144746,39.2267788238265],[-76.56853861688258,39.22678955507656],[-76.56854190951249,39.22680022068786],[-76.56854560457766,39.22681079409747],[-76.56854982723644,39.22682126225366],[-76.56855456009552,39.22683162869569],[-76.56855972330544,39.22684188322125],[-76.56856523698949,39.22685202013214],[-76.56857102012913,39.22686203102344],[-76.56857728471387,39.22687190766657],[-76.5685844104322,39.2268814893169],[-76.56859238722468,39.22689052552092],[-76.56860229568586,39.22689824558073],[-76.56861456445226,39.22690386649327],[-76.56862714423616,39.22690881116218],[-76.56863989089078,39.22691354926395],[-76.56865276720868,39.22691810498289],[-76.56866573134977,39.22692250248607],[-76.5686787461232,39.22692676325561],[-76.56869181953711,39.22693090353485],[-76.56870494683858,39.22693494312345],[-76.56871811629333,39.22693890720006],[-76.56873131385062,39.22694282093489],[-76.56874452431279,39.22694670769226],[-76.5687577347819,39.2269505935474],[-76.56877093120733,39.22695450367044],[-76.56878415108645,39.22695836613694],[-76.56879741898585,39.22696214050203],[-76.56881070914245,39.22696587351159],[-76.56882399696778,39.22696960921338],[-76.56883725785707,39.22697339435758],[-76.56885046604731,39.22697727568992],[-76.56886359810827,39.22698129726259],[-76.56887662827154,39.22698550672218],[-76.56888956004448,39.22698989867693],[-76.56890243912956,39.22699438501843],[-76.5689152737211,39.2269989513644],[-76.56892807432976,39.22700358334096],[-76.56894084450096,39.22700826925102],[-76.56895359242361,39.22701299561301],[-76.56896632628644,39.22701774894534],[-76.56897905195127,39.22702251755938],[-76.56899177760687,39.22702728797358],[-76.56900450912582,39.22703204669777],[-76.56901725468606,39.22703678205188],[-76.56903002016011,39.22704148054579],[-76.56904281373133,39.2270461295987],[-76.56905564944469,39.22705070494109],[-76.56906853898529,39.22705518950107],[-76.56908146129369,39.22705961833164],[-76.56909439529966,39.22706402828742],[-76.56910731761675,39.22706845621439],[-76.56912020601666,39.2270729389629],[-76.5691330382491,39.2270775169863],[-76.56914571253596,39.22708235835657],[-76.56915828621531,39.22708736600013],[-76.56917091607085,39.22709227746526],[-76.56918374603211,39.22709684916927],[-76.56919676908468,39.22710109189573],[-76.56920985299485,39.22710523035384],[-76.56922286782348,39.22710949286432],[-76.56923578897143,39.22711392527661],[-76.56924867147687,39.22711842780641],[-76.56926154227702,39.22712295100972],[-76.56927442947836,39.22712744364532],[-76.56928735770167,39.22713185626075],[-76.56930035504783,39.22713613851551],[-76.56931347660947,39.22714018161764],[-76.56931855794791,39.22714161628696],[-76.56932675283078,39.2271439307312],[-76.56934008999679,39.22714756116417],[-76.5693533920218,39.22715125722349],[-76.56936656283116,39.2271552014147],[-76.56937953566926,39.22715951599875],[-76.569392362067,39.22716410658306],[-76.56940511465284,39.22716883741661],[-76.56941786142244,39.2271735727313],[-76.56943063395089,39.2271782621994],[-76.56944334790877,39.22718306134615],[-76.56945603844382,39.22718790364303],[-76.56946875242147,39.22719270008474],[-76.56948153670183,39.22719736256704],[-76.56949443466492,39.22720180387338],[-76.56950748488904,39.22720596469394],[-76.56952065419853,39.22720996831357],[-76.5695339323177,39.22721379037358],[-76.5695473184761,39.2272173669158],[-76.5695608130722,39.22722063218487],[-76.56957441301923,39.22722352221417],[-76.56958812542949,39.22722601000638],[-76.56960194634242,39.22722817571622],[-76.5696158521805,39.22723008771633],[-76.56962981589743,39.22723181346593],[-76.56964381392658,39.22723341953612],[-76.56965782038532,39.22723497248965],[-76.56967180938555,39.22723653978991],[-76.56968577970905,39.2272381313411],[-76.5696997596039,39.22723967248211],[-76.56971374906993,39.22724116321292],[-76.56972774807994,39.22724260803741],[-76.56974175430125,39.22724400964923],[-76.56975576770654,39.22724537255231],[-76.56976978479955,39.22724670033681],[-76.56978380555852,39.22724799660589],[-76.56979783603593,39.22724921814429],[-76.56981188710236,39.22725029112804],[-76.56982595143788,39.22725127678326],[-76.56984001937913,39.22725224083133],[-76.56985408009916,39.22725324989012],[-76.56986812744186,39.22725436428929],[-76.56988216145092,39.22725557682279],[-76.56989618582442,39.22725685057215],[-76.56991020416231,39.22725816483283],[-76.56992421765548,39.22725951420437],[-76.56993822876198,39.22726087527563],[-76.56995224226712,39.22726222284231],[-76.56996626177613,39.22726353529899],[-76.5699802873763,39.22726479823346],[-76.569994318964,39.22726602876018],[-76.57000835298292,39.22726724037783],[-76.57002238819321,39.22726844659345],[-76.57003642103867,39.22726966090575],[-76.57005045143744,39.22727089682607],[-76.5700644758279,39.2272721687538],[-76.57007849415011,39.2272734865974],[-76.57009250768218,39.22727483054431],[-76.57010651878407,39.227276193397],[-76.57012052630847,39.22727757334967],[-76.57013453257169,39.22727897041085],[-76.57014853525199,39.22728038547282],[-76.57016253551852,39.22728181673826],[-76.57017653221305,39.22728326420296],[-76.57019052533023,39.22728472876766],[-76.5702045172135,39.22728620593711],[-76.57021850905375,39.22728769031094],[-76.57023249727304,39.22728919899085],[-76.57024647829333,39.22729074907848],[-76.57026044504612,39.22729236036522],[-76.57027439625331,39.22729405266338],[-76.57028832369363,39.22729584485923],[-76.57030222490377,39.22729776126484],[-76.57031610584328,39.22729977397784],[-76.5703299736954,39.22730184429111],[-76.57034383912855,39.22730393170869],[-76.57035770815675,39.22730599932067],[-76.57037159029575,39.22730800572599],[-76.57038549976446,39.22730989783094],[-76.57039945909581,39.2273115883424],[-76.57041343984083,39.22731318524959],[-76.57042740756371,39.22731482894795],[-76.57044132552362,39.22731665802285],[-76.57045515582145,39.22731881105547],[-76.57046888305321,39.22732134563925],[-76.57048253804395,39.22732414388505],[-76.57049616103093,39.22732706361724],[-76.57050979109852,39.22732996175508],[-76.5705234684728,39.22733269792433],[-76.570537227442,39.22733515605009],[-76.57055105025829,39.227337398221],[-76.57056490618383,39.22733952791418],[-76.5705787656445,39.2273416477101],[-76.57059259791899,39.22734385838349],[-76.57060637111707,39.22734626250644],[-76.57062004944932,39.22734903289747],[-76.57063365063641,39.22735211197168],[-76.57064722583397,39.22735527562234],[-76.57066082618664,39.2273583015444],[-76.57067450168623,39.22736096652765],[-76.57068830349336,39.22736304556465],[-76.57070223953484,39.22736456841007],[-76.57071626669654,39.22736577000924],[-76.57073036163611,39.22736668000244],[-76.57074449868954,39.22736732892233],[-76.57075865451463,39.22736774640915],[-76.5707728069162,39.22736796390895],[-76.57078693024675,39.2273680092521],[-76.57080103573351,39.22736794103023],[-76.57081514632635,39.22736779445761],[-76.57082926082909,39.22736757583536],[-76.57084337806177,39.22736728876226],[-76.57085749683361,39.22736693863859],[-76.57087161480096,39.22736652995972],[-76.5708857319313,39.22736606813013],[-76.57089984704459,39.22736555674868],[-76.57091395893916,39.2273650030172],[-76.57092806528243,39.22736440962945],[-76.57094216719979,39.2273637819943],[-76.57095626233694,39.22736312640855],[-76.57097034727389,39.22736243385187],[-76.57098440705415,39.22736149618989],[-76.57099844172117,39.22736030621654],[-76.57101246223557,39.22735896666057],[-76.57102647841627,39.22735757754432],[-76.57104050239313,39.22735623979919],[-76.57105454165256,39.22735505614137],[-76.57106860956975,39.22735411309438],[-76.57108270863527,39.22735338184243],[-76.57109682319589,39.22735276954814],[-76.57111094108922,39.22735218068454],[-76.57112504435112,39.22735152150508],[-76.57113912081344,39.22735069738363],[-76.57115315367565,39.227349613677],[-76.5711671318296,39.22734819197698],[-76.57118106305016,39.22734648725949],[-76.57119495850488,39.22734456802441],[-76.57120882713218,39.22734248835116],[-76.57122267787067,39.22734030231913],[-76.57123651848984,39.22733806580487],[-76.5712503590809,39.22733583379281],[-76.57126420857712,39.22733366126299],[-76.57127806580942,39.22733155001269],[-76.57129191286808,39.22732939728783],[-76.57130575200392,39.22732721390593],[-76.57131958773525,39.22732501879985],[-76.57133342574384,39.22732283000594],[-76.5713472693954,39.22732066555199],[-76.57136112320822,39.22731854437086],[-76.57137499054788,39.2273164844904],[-76.57138887824897,39.22731450485198],[-76.57140279084065,39.22731262258681],[-76.57141672379933,39.22731081966286],[-76.57143067031762,39.22730907263505],[-76.57144462590449,39.22730735806667],[-76.57145858258905,39.22730565340924],[-76.57147253472735,39.22730393432109],[-76.5714864755067,39.22730217825787],[-76.57150040044135,39.22730036088229],[-76.57151430156031,39.2272984596457],[-76.57152817206153,39.2272964502023],[-76.57154200403384,39.22729430009524],[-76.57155574078867,39.22729180734323],[-76.57156938797515,39.22728899538714],[-76.57158298073925,39.22728598956352],[-76.57159655307458,39.22728291430384],[-76.57161014128003,39.22727989584955],[-76.57162376689249,39.22727701174619],[-76.5716373993222,39.22727414928476],[-76.57165102833073,39.22727127780153],[-76.57166464936724,39.22726838376813],[-76.5716782555861,39.22726545004487],[-76.5716918481455,39.22726247663589],[-76.57170544416185,39.22725950594034],[-76.57171903560979,39.22725652441719],[-76.57173261680192,39.22725351493092],[-76.57174617975635,39.22725045673452],[-76.5717597141532,39.22724733267555],[-76.5717732143323,39.22724412111469],[-76.57178666316618,39.22724078145443],[-76.57180006408029,39.22723732181427],[-76.57181343303834,39.22723378368832],[-76.57182678599868,39.22723020947137],[-76.57184014239944,39.2272266406701],[-76.57185350790084,39.22722309892387],[-76.57186686540271,39.22721953913136],[-76.57188021719413,39.22721596580486],[-76.5718935655424,39.22721238705961],[-76.57190691620018,39.22720880922203],[-76.5719202702712,39.22720524130393],[-76.57193362891365,39.22720168330958],[-76.57194697955107,39.22719810816971],[-76.57196033020344,39.22719453032604],[-76.57197368656905,39.22719096511257],[-76.57198705548257,39.22718743147057],[-76.57200044494228,39.22718394744482],[-76.57201386181002,39.22718052747272],[-76.57202730380212,39.22717716614128],[-76.57204076522576,39.22717384721573],[-76.57205423689759,39.22717055715092],[-76.57206771542994,39.22716728152201],[-76.57208119397187,39.22716400409006],[-76.5720946644872,39.22716071311559],[-76.57210812359925,39.22715739237237],[-76.57212156212991,39.22715402741443],[-76.57212862808073,39.22715189400802],[-76.57213482963736,39.22715002227893],[-76.57214802135546,39.22714610153881],[-76.57216192062941,39.22714545950686],[-76.57217613587072,39.22714658144803],[-76.57219002342971,39.22714865251416],[-76.57220352158151,39.22715192199591],[-76.5722045357749,39.22715217070416],[-76.57221702411199,39.22715523382861],[-76.57223083358829,39.22715757844188],[-76.57224482747867,39.2271594940544],[-76.57225886480254,39.22716054417563],[-76.57227290739664,39.22716033502638],[-76.57228700047794,39.2271590505303],[-76.57230092710577,39.22715694391616],[-76.57231456559822,39.22715422011814],[-76.57232143969368,39.22715259674231],[-76.57232806790422,39.22715103282229],[-76.57234149990316,39.22714759665391],[-76.5723549263109,39.22714412713483],[-76.57236841068546,39.22714083978259],[-76.57238198168159,39.22713778424447],[-76.57239560987173,39.22713484691504],[-76.57240925633027,39.22713195288796],[-76.57242288445852,39.22712902546371],[-76.5724364599631,39.22712598975279],[-76.57244994277102,39.22712276904312],[-76.57246329858864,39.22711928844515],[-76.57247644290315,39.22711535038074],[-76.57248930255464,39.22711079514565],[-76.57250193085716,39.22710580849451],[-76.57251438687746,39.22710058250829],[-76.57252672077006,39.22709525068488],[-76.57253894903042,39.22708976624396],[-76.57255109002581,39.22708415627577],[-76.57256316672331,39.22707845329204],[-76.57257519629393,39.22707269068402],[-76.57258720169393,39.22706690276497],[-76.57259915645481,39.22706106151441],[-76.57261094453386,39.22705501247663],[-76.57262268088067,39.22704889929405],[-76.57263450342268,39.22704289631911],[-76.57264657538178,39.22703720862272],[-76.57265891745236,39.22703186150198],[-76.57267122043794,39.22702646559558],[-76.57268318434701,39.22702064148451],[-76.57269486098562,39.22701444070183],[-76.57270641926334,39.22700808545401],[-76.57271800852074,39.22700177805908],[-76.57272977576625,39.22699572352882],[-76.57274187148813,39.22699012598697],[-76.57275447363871,39.22698524460448],[-76.57276746391352,39.22698091590976],[-76.57278058630773,39.22697676424701],[-76.57279357900399,39.2269724175426],[-76.57280621588055,39.22696753808254],[-76.5728186876505,39.22696238148126],[-76.57283107000697,39.22695707142093],[-76.57284333636743,39.226951598797],[-76.57285546131831,39.22694595270775],[-76.57286741827168,39.22694012494946],[-76.57287904382645,39.22693394017655],[-76.57289004593461,39.2269270460228],[-76.57290088587897,39.22691996301526],[-76.5729120893796,39.22691328127516],[-76.57292377952037,39.22690713997014],[-76.57293564222769,39.2269011902569],[-76.57294761999673,39.22689536526844],[-76.57295965182678,39.22688960172845],[-76.57297167903323,39.22688383636879],[-76.57298368893646,39.22687805923487],[-76.57299579542588,39.2268723977507],[-76.573007915697,39.22686675523176],[-76.57301994741441,39.22686100879992],[-76.57303178592637,39.22685503556867],[-76.57304342779648,39.22684882922007],[-76.57305493971852,39.22684246926536],[-76.57306636652854,39.22683601081501],[-76.57307775420978,39.22682951078546],[-76.57308557296516,39.22682505334944],[-76.57308913380918,39.22682300622149],[-76.5730912271039,39.22682176085288],[-76.57309403288885,39.22682009110684],[-76.57309683983173,39.22681842136495],[-76.5731003592647,39.22681632724559],[-76.57310244222266,39.2268150674267],[-76.57310523190718,39.22681337870551],[-76.5731080215862,39.22681169088499],[-76.5731115179808,39.22680957596355],[-76.57311361932737,39.2268083396316],[-76.57311643661657,39.2268066825378],[-76.57311925158396,39.22680502633622],[-76.57312278132484,39.22680295117],[-76.5731249332597,39.22680177627475],[-76.57312781954231,39.22680020140242],[-76.57313070466662,39.22679862652576],[-76.57313432181694,39.22679665256428],[-76.57313658410166,39.22679561588921],[-76.57313962448232,39.22679422263346],[-76.57314266951154,39.22679282669216],[-76.57314649611628,39.22679107328197],[-76.57314884931752,39.22679013241983],[-76.57315200820891,39.22678886840606],[-76.57315516825285,39.22678760529713],[-76.57315913050707,39.22678601992461],[-76.57316145385155,39.22678503661705],[-76.57316456673206,39.22678372019045],[-76.5731676714894,39.22678240643657],[-76.57317155417448,39.22678076402522],[-76.57317370946306,39.22677960895841],[-76.57317659905016,39.22677806202098],[-76.57317948399923,39.22677651596739],[-76.5731830997615,39.22677457983203],[-76.57318503280113,39.22677321317467],[-76.57318763343974,39.22677137603642],[-76.57319023990125,39.22676953351456],[-76.57319351629398,39.2267672178179],[-76.57319534232728,39.22676573457085],[-76.57319779566375,39.22676374106203],[-76.57320025249064,39.22676174486352],[-76.57320333778402,39.22675923750669],[-76.57320517542513,39.22675774979777],[-76.57320763803678,39.22675575452092],[-76.57321009831578,39.22675376193791],[-76.57321317773668,39.2267512680711],[-76.57321513628608,39.22674989610132],[-76.57321775776359,39.22674805993894],[-76.5732203757396,39.22674622826761],[-76.5732236485152,39.2267439359772],[-76.57322577043314,39.22674274475692],[-76.57322861862878,39.22674114722415],[-76.5732314668351,39.22673954788979],[-76.57323504247702,39.226737542247],[-76.573237255317,39.22673644593885],[-76.57324022667201,39.22673497496256],[-76.57324320035403,39.22673350219308],[-76.57324693371996,39.22673165295807],[-76.57324920182946,39.22673060999657],[-76.57325224571193,39.22672921134595],[-76.57325529192131,39.22672781090214],[-76.57325911390903,39.22672605386838],[-76.57326140161939,39.22672502539037],[-76.57326446854451,39.2267236466403],[-76.57326753662763,39.22672226789442],[-76.57327138276722,39.22672053887216],[-76.57327365208825,39.22671948690682],[-76.5732766925658,39.22671807653306],[-76.57327973187968,39.22671666705577],[-76.57328354002297,39.22671490096307],[-76.57328573914819,39.22671377397768],[-76.57328868641913,39.22671226327832],[-76.57329163252649,39.22671075347547],[-76.5732953314227,39.22670885817391],[-76.57329743499272,39.22670763625921],[-76.57330026377352,39.22670599271435],[-76.5733030948704,39.22670434917792],[-76.57330665815365,39.22670227953276],[-76.57331055685611,39.22670009040262],[-76.57331134446828,39.22670046258501],[-76.57344392131567,39.22663061531776],[-76.57344400319501,39.22663028773199],[-76.57345334549494,39.22662341001243],[-76.57346642270328,39.22661924369634],[-76.57347949094277,39.22661502780338],[-76.57349260946661,39.22661092378817],[-76.57350583291719,39.22660708948554],[-76.57351922167888,39.22660369085798],[-76.57353291939062,39.2266011085559],[-76.57354682921488,39.22659907559693],[-76.57356073797217,39.22659702731916],[-76.57357443478269,39.22659440177162],[-76.57358789110981,39.22659112949074],[-76.57360123578566,39.22658754963724],[-76.5736145200865,39.22658380201817],[-76.57362779645229,39.22658002554383],[-76.57364111615405,39.22657636092192],[-76.57365452830905,39.22657292182891],[-76.57366801933928,39.2265696550696],[-76.57368153208564,39.22656643612881],[-76.57369500476749,39.22656313867324],[-76.57370838021487,39.22655963998942],[-76.57372160927255,39.2265558327062],[-76.57373475861314,39.22655179993736],[-76.5737478027744,39.22654753888823],[-76.57376068524684,39.22654300971923],[-76.57377335415337,39.22653817260785],[-76.57378574505076,39.22653295886097],[-76.57379786389707,39.22652734057623],[-76.57380980595538,39.2265214613233],[-76.5738216733781,39.22651547460558],[-76.57383356601225,39.22650953211627],[-76.57384550335648,39.22650366545356],[-76.57385738895697,39.226497736448],[-76.57386926766621,39.22649179750766],[-76.57388118429917,39.22648590734581],[-76.57389318369758,39.22648012017198],[-76.57390526126154,39.22647443056474],[-76.5739173859492,39.22646880057873],[-76.57392953131867,39.22646319768985],[-76.57394167209705,39.22645758757685],[-76.57395378067896,39.22645193861223],[-76.57396583178594,39.22644621737548],[-76.57397780357077,39.22644039766472],[-76.5739897121334,39.22643449845477],[-76.57400157011021,39.22642853690633],[-76.574013390154,39.22642252747769],[-76.57402518144846,39.22641648371402],[-76.57403695433548,39.2264104191644],[-76.57404871801506,39.22640434467163],[-76.57406042538862,39.22639819610954],[-76.57407207070325,39.22639196715175],[-76.5740836815429,39.22638569302881],[-76.5740952831805,39.22637940806195],[-76.5741069020417,39.22637314747752],[-76.57411856455228,39.22636694650166],[-76.57413029713797,39.2263608403606],[-76.57414212506637,39.22635486427643],[-76.57415407476337,39.2263490534753],[-76.57416625997907,39.22634355879986],[-76.57417892191701,39.22633871441318],[-76.57419186416735,39.22633424846821],[-76.57420484892023,39.22632984032582],[-76.57421763491828,39.22632516483054],[-76.57422998782549,39.22631990135611],[-76.57424183522666,39.22631395866131],[-76.5742533850749,39.22630761494035],[-76.57426487521809,39.22630118452695],[-76.57427654002467,39.22629498264291],[-76.57428858289671,39.22628927395402],[-76.5743009165529,39.22628393563764],[-76.57431343293092,39.22627883398663],[-76.57432603886696,39.22627386147043],[-76.57433865041358,39.22626891869885],[-76.57435129061406,39.22626402557273],[-76.57436397558462,39.22625919836435],[-76.57437669955101,39.22625443435054],[-76.57438946021325,39.22624973082055],[-76.57440225296054,39.22624508415456],[-76.57441508241453,39.22624049617089],[-76.57442796005373,39.22623598402585],[-76.57444089038631,39.22623156845381],[-76.5744538825585,39.22622726930497],[-76.5744669617192,39.22622314161794],[-76.574480151962,39.22621922331275],[-76.57449338686733,39.22621538894042],[-76.57450659772633,39.22621150853969],[-76.5745197341817,39.22620748194169],[-76.57453285232178,39.2262034192447],[-76.5745459658766,39.22619934842258],[-76.57455907485682,39.22619526767387],[-76.5745721804044,39.22619117970505],[-76.57458528137205,39.22618708271032],[-76.57459837774356,39.22618297939209],[-76.57461147184588,39.22617886795715],[-76.5746245613521,39.22617475019859],[-76.5746376485783,39.22617062612493],[-76.57465073120305,39.22616649662845],[-76.57466381384779,39.22616236352744],[-76.57467694238883,39.22615830175283],[-76.57469011339506,39.22615430408585],[-76.57470329244181,39.22615031725591],[-76.5747164462678,39.22614628709568],[-76.57472954043746,39.22614216213617],[-76.57474254053679,39.22613788730508],[-76.57475541329377,39.22613341023688],[-76.57476811969958,39.22612866953725],[-76.57478055307564,39.22612349367187],[-76.57479275244123,39.2261179422336],[-76.57480481413818,39.22611217230696],[-76.57481683567718,39.22610633917909],[-76.57482891340555,39.22610059903373],[-76.57484114481272,39.22609511076096],[-76.57485362741507,39.22609002874714],[-76.57486642084059,39.22608545229371],[-76.57487936907644,39.22608113222074],[-76.57489242510442,39.22607699089086],[-76.57490556828903,39.22607299309897],[-76.5749187802895,39.22606910725134],[-76.57493203930686,39.22606529903947],[-76.57494532700034,39.22606153686965],[-76.57495862388708,39.22605778644174],[-76.5749719093209,39.22605401435214],[-76.57498516611881,39.22605018901147],[-76.57499837248196,39.22604627611111],[-76.57501150891656,39.22604224315258],[-76.57502455593442,39.22603805673646],[-76.5750375020946,39.22603369340115],[-76.57505036001751,39.22602917300949],[-76.57506314459133,39.22602452353955],[-76.57507587187837,39.22601977027131],[-76.57508855448293,39.22601493576985],[-76.57510120613517,39.22601004800904],[-76.57511384175012,39.22600513046316],[-76.57512647391601,39.2260002083995],[-76.57513911869522,39.22599530709806],[-76.57515178868144,39.22599045092542],[-76.57516448845308,39.22598564890594],[-76.57517715157881,39.22598077739249],[-76.57518978949412,39.22597586074748],[-76.5752024388701,39.22597096395975],[-76.57521513405635,39.2259661529104],[-76.57522791057136,39.22596149168324],[-76.57524080507021,39.22595704796925],[-76.5752538920858,39.22595294634559],[-76.5752671566762,39.2259491678417],[-76.57528053458613,39.2259456122387],[-76.57529395807506,39.22594218110651],[-76.57530740993877,39.22593884645875],[-76.57532092350338,39.22593565165333],[-76.57533447475606,39.22593254525902],[-76.57534804086352,39.22592947224572],[-76.57536159782893,39.22592637847985],[-76.57537512048651,39.22592321162526],[-76.57538858484486,39.22591991664763],[-76.57540196690688,39.22591643941351],[-76.57541525180592,39.22591274834192],[-76.57542846701828,39.22590889667816],[-76.57544162280526,39.22590491148276],[-76.5754547294442,39.2259008171139],[-76.57546779490181,39.22589663702067],[-76.57548082946086,39.22589239466058],[-76.57549384109329,39.22588811258182],[-76.57550683892393,39.2258838142377],[-76.57551980578594,39.22587946533653],[-76.57553261358788,39.22587479518156],[-76.57554532409132,39.22586993370833],[-76.57555803224461,39.22586507762986],[-76.57557083297434,39.22586042726228],[-76.5755838212236,39.22585618021936],[-76.57559708275146,39.22585252056992],[-76.57561053291973,39.22584927055447],[-76.57562409739434,39.22584627226799],[-76.57563774873654,39.22584346615982],[-76.57565146067078,39.22584079178277],[-76.57566520805824,39.22583819229689],[-76.57567896346521,39.22583560725088],[-76.5756927006054,39.2258329779991],[-76.5757063943613,39.22583024409853],[-76.5757200172776,39.22582734870096],[-76.57573354308397,39.22582423045854],[-76.57574697074608,39.22582086864958],[-76.57576035994114,39.22581735446851],[-76.57577369678815,39.22581368516283],[-76.57578696396939,39.22580985166215],[-76.57580014301972,39.22580584309042],[-76.57581321546344,39.22580165037315],[-76.57582616284077,39.2257972617335],[-76.57583896551792,39.22579266809279],[-76.57585157644864,39.22578779631795],[-76.57586393844369,39.22578252639892],[-76.57587611573754,39.22577696215739],[-76.575888181781,39.22577121555535],[-76.57590020652916,39.22576540214519],[-76.5759122622642,39.2257596356863],[-76.57592441895747,39.22575402902869],[-76.57593674888575,39.22574869683243],[-76.57594933581012,39.22574377001288],[-76.57596222221983,39.22573930907569],[-76.5759753151593,39.22573517136188],[-76.57598851131992,39.22573120246506],[-76.57600170854569,39.22572724888386],[-76.57601497110907,39.22572340813451],[-76.57602860085137,39.22572013980356],[-76.57604195030311,39.22571648762773],[-76.57605430650982,39.22571140683117],[-76.57606596451983,39.22570533085363],[-76.57607733535427,39.22569886019747],[-76.57608852130377,39.22569212584516],[-76.57609962000502,39.22568526236535],[-76.57611073142702,39.22567840163273],[-76.57612195437534,39.2256716764186],[-76.57613338997199,39.22566521950256],[-76.5761451335805,39.2256591582387],[-76.57615718989265,39.2256534827353],[-76.5761694807603,39.22564809182287],[-76.57618193489253,39.22564289966997],[-76.5761944787037,39.22563781683381],[-76.57620703860275,39.22563275477225],[-76.57621954215664,39.22562762494753],[-76.57623196749054,39.22562240566199],[-76.57624443877005,39.22561724959547],[-76.57625693187951,39.22561212243141],[-76.57626940544479,39.22560697087444],[-76.57628181925499,39.22560174073264],[-76.5762941342522,39.2255963787192],[-76.57630629644125,39.22559081167609],[-76.57631827825374,39.22558500167119],[-76.57633013595766,39.22557902907695],[-76.5763419281106,39.22557297877795],[-76.57635366511913,39.22556685351409],[-76.57636521976244,39.22556043033395],[-76.57637665283892,39.22555380674104],[-76.57638804344005,39.2255471199392],[-76.57639947299505,39.22554050353762],[-76.57641101944267,39.22553409383499],[-76.57642276537574,39.2255280235439],[-76.57643479104408,39.2255224298722],[-76.57644717440277,39.2255174464163],[-76.57645996271354,39.22551311027863],[-76.576473073846,39.2255092112812],[-76.5764864548183,39.22550570059081],[-76.57650005374738,39.22550253928661],[-76.57651381757626,39.22549969114591],[-76.57652769789078,39.22549711816134],[-76.57654164049187,39.22549478140383],[-76.57655559463848,39.22549264465913],[-76.57656950844218,39.22549066990733],[-76.57658334489798,39.22548884800719],[-76.57659738115723,39.22548789517663],[-76.5766116127633,39.225487976242],[-76.57662585107876,39.22548887433588],[-76.57663991208246,39.22549037531001],[-76.5766537422628,39.22549232493833],[-76.5766675267858,39.22549474550745],[-76.57668122997643,39.2254975990561],[-76.57669479996245,39.22550084486205],[-76.5767081860458,39.22550443950521],[-76.57672134092746,39.22550835218859],[-76.57673427194635,39.22551271175011],[-76.5767470012085,39.22551750115466],[-76.57675954315341,39.22552262947579],[-76.57677190990987,39.22552800487794],[-76.5767841136065,39.22553353552545],[-76.57679602350616,39.2255393938964],[-76.57680761479513,39.22554566277309],[-76.57681906368227,39.22555211849708],[-76.57683054869779,39.22555853651747],[-76.57684223322548,39.22556470754201],[-76.57685407870467,39.22557068908137],[-76.57686599996646,39.2255765862196],[-76.57687793406048,39.22558246808959],[-76.57688981804719,39.2255884020229],[-76.57690159012357,39.22559445895816],[-76.57691318733941,39.22560070802848],[-76.57692447561767,39.22560729918058],[-76.57693550041932,39.22561418303562],[-76.5769464284895,39.22562116922968],[-76.57695743236921,39.22562806651889],[-76.57696867766157,39.22563468183273],[-76.57698034968944,39.22564081676711],[-76.576992506733,39.22564640847742],[-76.57700497177441,39.22565162206875],[-76.5770175561614,39.2256566316122],[-76.57703018987155,39.22566152693323],[-76.57704289605596,39.22566630991666],[-76.57705565248017,39.22567101921598],[-76.57706843577827,39.22567568897648],[-76.57708122256845,39.22568035604582],[-76.57709398832682,39.22568505456524],[-76.57710670850817,39.22568982227892],[-76.57711936555852,39.22569468975018],[-76.57713198401268,39.22569962103627],[-76.57714460012016,39.22570455771721],[-76.57715724782523,39.22570943956312],[-76.57716996337203,39.22571420905479],[-76.57718290328086,39.2257186424622],[-76.57719607921305,39.22572272631563],[-76.57720919333863,39.22572688200718],[-76.5772219478279,39.22573153092915],[-76.57723409743761,39.22573701539478],[-76.57724589207058,39.22574298860395],[-76.57725746836122,39.22574926008388],[-76.57726889637443,39.22575573280296],[-76.57728024847538,39.22576231244011],[-76.57729159473428,39.22576890106289],[-76.57730300520538,39.22577540344111],[-76.57731454639342,39.2257817369426],[-76.57732621226664,39.2257879420807],[-76.57733794219644,39.22579408709611],[-76.57734966864858,39.2258002329986],[-76.57736132754174,39.22580644441344],[-76.577372853658,39.22581278235874],[-76.57738418291063,39.22581931236056],[-76.57739525357205,39.22582609274739],[-76.57740608653096,39.22583311638814],[-76.57741672257808,39.22584034019251],[-76.57742718505774,39.22584773361805],[-76.57743749268171,39.22585526610576],[-76.57744766647801,39.22586290710488],[-76.57745772864355,39.22587062426739],[-76.57746767574147,39.22587841127547],[-76.57747730172179,39.22588644664224],[-76.57748666939521,39.22589468465424],[-76.5774959253681,39.22590301053962],[-76.57750521163052,39.22591130680759],[-76.57751467363632,39.22591945778133],[-76.57752445568102,39.22592734777985],[-76.57753465659418,39.22593491140189],[-76.5775451819375,39.22594225459931],[-76.5775559993431,39.22594936734696],[-76.5775670869679,39.22595622254283],[-76.57757842296874,39.22596279308484],[-76.57758998898201,39.22596905098272],[-76.57760200072434,39.22597475019945],[-76.57761444745647,39.22597994384224],[-76.57762708427343,39.22598491747706],[-76.5776396743556,39.22598996030223],[-76.57765197395632,39.22599535788821],[-76.57766398175161,39.22600113815435],[-76.57767592978387,39.2260070362062],[-76.57768774946814,39.22601309503434],[-76.57769936872363,39.22601936121982],[-76.57771071545899,39.22602588314545],[-76.57772168266285,39.22603273879398],[-76.57773197326273,39.22604022255193],[-76.57774182827636,39.22604811819907],[-76.57775162267988,39.22605607938414],[-76.57776173143877,39.22606376155723],[-76.57777235600246,39.22607098078343],[-76.57778322854536,39.2260779820116],[-76.57779424194905,39.22608486123959],[-76.57780530074585,39.22609170279717],[-76.57781630715701,39.2260985901049],[-76.57782716570416,39.22610560929413],[-76.57783778090881,39.22611284649619],[-76.57784817371859,39.22612028467166],[-76.577858473379,39.22612780718432],[-76.57786881265267,39.22613529020428],[-76.57787932311737,39.22614261440125],[-76.57789033193478,39.22614948909967],[-76.57790189067182,39.2261558117961],[-76.57791367456859,39.22616185876224],[-76.57792556921527,39.22616778361956],[-76.57793748951356,39.22617367974303],[-76.57794935386079,39.226179636917],[-76.57796108063835,39.22618574762816],[-76.57797254512084,39.22619214744554],[-76.5779837204792,39.22619886870078],[-76.57799481656401,39.22620567794619],[-76.57800605024397,39.22621233004909],[-76.57801762786313,39.22621859695361],[-76.57802953312225,39.22622449301352],[-76.57804160394208,39.22623020320632],[-76.57805367824893,39.22623591160885],[-76.57806573959374,39.2262416577962],[-76.57807756664681,39.2262476580603],[-76.5780881681937,39.22625486276212],[-76.57809838529897,39.22626244801101],[-76.57810846843769,39.2262701651918],[-76.57811865292246,39.22627778365034],[-76.57812904805381,39.22628522991577],[-76.57813935593886,39.22629274162348],[-76.57814921247991,39.22630058859906],[-76.57815866768426,39.22630873589198],[-76.57816792630415,39.22631702840365],[-76.57817710233148,39.22632538277145],[-76.57818630975287,39.22633371653338],[-76.57819565326876,39.22634195079733],[-76.57820511540584,39.22635010261518],[-76.57821462755766,39.22635821858088],[-76.57822413273091,39.22636633992538],[-76.57824425631563,39.22637493360105],[-76.57825543242402,39.22638153773143],[-76.57826596864136,39.22638882865675],[-76.57827619722686,39.2263964373512],[-76.57828626519346,39.22640418058432],[-76.57829627755166,39.22641192721991],[-76.57830616078986,39.22641976977395],[-76.5783159567603,39.22642768137352],[-76.57832572712083,39.22643561539964],[-76.57833553123983,39.22644352072138],[-76.57834543077513,39.22645135071965],[-76.57835548275214,39.22645905875886],[-76.57836567435145,39.22646665830464],[-76.5783759764973,39.22647416997038],[-76.5783863682529,39.22648160899406],[-76.57839683101354,39.22648898791969],[-76.57840734269507,39.22649632017966],[-76.57841780529427,39.22650372702691],[-76.5784282584276,39.2265111680688],[-76.57843884205205,39.22651847806485],[-76.57844969498788,39.22652548816727],[-76.57846095834483,39.22653203404045],[-76.5784727262985,39.22653805386878],[-76.57848492777107,39.22654362035991],[-76.57849744892549,39.2265487907547],[-76.57851017942049,39.22655361870344],[-76.57852301222329,39.22655818579253],[-76.57853590358552,39.22656264319556],[-76.57854884639269,39.22656701881104],[-76.5785618301363,39.22657132701379],[-76.5785748466186,39.22657558308748],[-76.57858788764192,39.2265798023159],[-76.57860094270848,39.22658399727231],[-76.5786140047787,39.22658818324464],[-76.57862706333871,39.2265923755083],[-76.57864011019622,39.22659658844639],[-76.57865313716425,39.22660083554121],[-76.57866613605063,39.22660513117577],[-76.57867909517796,39.22660949152221],[-76.57869202502279,39.22661390761026],[-76.57870496879323,39.22661831924303],[-76.57871791365396,39.22662274258833],[-76.57873084093085,39.22662720190026],[-76.57874372963906,39.22663172052369],[-76.57875656226794,39.22663632181597],[-76.57876931782728,39.2266410300228],[-76.57878197880655,39.2266458685017],[-76.57879452422085,39.22665086059748],[-76.578806876919,39.22665612673764],[-76.57881888845313,39.22666189698869],[-76.57883061859235,39.22666805266257],[-76.57884214461626,39.22667445171366],[-76.57885354263036,39.22668095479454],[-76.57886492307716,39.22668749114003],[-76.57887617615397,39.22669421889309],[-76.57888698344328,39.22670132157086],[-76.57889702188423,39.22670898447539],[-76.5789063286967,39.22671718071701],[-76.57891521317767,39.22672570242516],[-76.57892379286794,39.22673445363829],[-76.57893218301352,39.22674333478359],[-76.57894049884979,39.2267522480897],[-76.57894883811743,39.22676111644031],[-76.57895705182496,39.22677006631069],[-76.57896494836567,39.22677918438897],[-76.57897235368611,39.22678852679989],[-76.57897941052784,39.22679804451276],[-76.57898634757836,39.22680764736938],[-76.5789929943815,39.22681737078945],[-76.57899918165496,39.22682724749463],[-76.5790047401004,39.2268373129088],[-76.57900961983327,39.22684758126566],[-76.57901399483207,39.22685800905109],[-76.57901804725167,39.22686854107037],[-76.57902195694668,39.22687911941797],[-76.57902590607213,39.22688968889907],[-76.5790300756304,39.22690019341383],[-76.5790346651537,39.22691057692886],[-76.57903960266283,39.22692086891166],[-76.57904451465745,39.22693116710811],[-76.57904907054609,39.22694155950969],[-76.57905339560268,39.22695201323678],[-76.5790576209024,39.22696249362925],[-76.5790618322846,39.22697297757475],[-76.57906611790497,39.22698344196921],[-76.57907064476711,39.22699384777728],[-76.57907562042499,39.22700415340676],[-76.57908037929761,39.22701449519042],[-76.57908406563763,39.22702504841348],[-76.57908603131524,39.22703593595975],[-76.57908807808828,39.22704681929292],[-76.57909058857335,39.22705762592131],[-76.57909246504042,39.2270685194529],[-76.57909310882803,39.22707948332843],[-76.5790934316624,39.2270904721755],[-76.57909338968982,39.2271014597143],[-76.57909297596673,39.22711244501913],[-76.57909244378439,39.22712348574732],[-76.57909131091765,39.22713446036611],[-76.57908898528531,39.22714521902452],[-76.57908487791182,39.22715567403652],[-76.57907957657612,39.22716591938906],[-76.57907408577191,39.22717608569419],[-76.57907359389372,39.22717700632675],[-76.57906867038808,39.22718622794851],[-76.57906308274198,39.22719631914119],[-76.57905728706,39.2272063375253],[-76.5790512544959,39.22721626498165],[-76.57904522409687,39.22722621766722],[-76.5790392155295,39.22723619925571],[-76.57903308449345,39.22724613086177],[-76.57902668783571,39.22725593540591],[-76.57901988125585,39.2272655340028],[-76.57901251929515,39.22727484776298],[-76.57900435601626,39.22728375059601],[-76.57899553803027,39.22729232229613],[-76.57898637593165,39.22730072251417],[-76.57897717914061,39.22730911359929],[-76.57896825824635,39.2273176561033],[-76.57895987187219,39.22732648516985],[-76.57895170244294,39.2273354465277],[-76.57894365070736,39.22734448127011],[-76.57893573979584,39.22735359488488],[-76.5789279928602,39.22736278925658],[-76.57892043419426,39.22737206897634],[-76.57891308809735,39.22738143773442],[-76.57890604119898,39.22739093457516],[-76.57889942856677,39.22740063294616],[-76.57889314629043,39.22741047842812],[-76.57888707542521,39.22742041294444],[-76.5788810970426,39.22743037571635],[-76.57887513955257,39.22744033045596],[-76.57886927681864,39.22745032066551],[-76.57886350191343,39.22746034271712],[-76.57885779865538,39.22747039114805],[-76.57885214972063,39.22748045778916],[-76.57884654008033,39.22749053808268],[-76.578840951258,39.22750062295446],[-76.57883541328468,39.22751072602397],[-76.57882995044358,39.22752085368379],[-76.57882456041858,39.22753100592568],[-76.57881924669465,39.22754118096054],[-76.57881400811905,39.22755137788345],[-76.57880887470695,39.22756161301614],[-76.57880395286698,39.22757191016074],[-76.5787993640634,39.22758229317337],[-76.57879504694247,39.22759275733],[-76.57879100387923,39.22760329273062],[-76.57878740738123,39.22761390900217],[-76.57878453286361,39.22762464406487],[-76.57878242771895,39.22763551340218],[-76.57878055056422,39.22764641058096],[-76.57877815661195,39.22765735184468],[-76.57877689898979,39.22766826205601],[-76.57877849785909,39.22767908973865],[-76.57878183537727,39.2276898732173],[-76.5787866207243,39.22770024303004],[-76.57879246122081,39.22771021037834],[-76.57879904526509,39.22771998042197],[-76.57880624698488,39.22772949145622],[-76.5788139497941,39.22773867820657],[-76.57882314134521,39.22774699744496],[-76.57883308581816,39.22775490592734],[-76.57884171500677,39.22776353211307],[-76.57884900908375,39.22777289935151],[-76.57885571754225,39.22778258876812],[-76.57886213797453,39.22779241406914],[-76.57886855048332,39.22780220871487],[-76.57887491191867,39.2278120229941],[-76.57888107021296,39.22782191581253],[-76.57888690127534,39.22783191554984],[-76.57889225546121,39.22784206310504],[-76.57889707471423,39.22785238349157],[-76.57890162012646,39.22786279117168],[-76.57890617831141,39.22787319349268],[-76.5789109000987,39.22788354505612],[-76.57891566595504,39.22789388686885],[-76.57892038889786,39.22790423933676],[-76.57892498426064,39.22791462287395],[-76.57892936737697,39.2279250578946],[-76.57893353581827,39.22793556330638],[-76.57893738413038,39.22794614954026],[-76.57894069223619,39.22795682121151],[-76.57894316462483,39.22796760878725],[-76.57894471196484,39.22797853806963],[-76.57894580275551,39.22798950714994],[-76.57894675573415,39.22800047483503],[-76.57894729512618,39.2280114635558],[-76.57894704366333,39.22802242421774],[-76.5789455774632,39.22803335620094],[-76.5789432420175,39.22804419859109],[-76.57893983629675,39.22805486869624],[-76.57893651625017,39.22806554361252],[-76.57893469020985,39.22807641665477],[-76.57893381089741,39.22808739848431],[-76.5789333334999,39.22809837454947],[-76.5789330066277,39.22810935655921],[-76.57893285113784,39.2281203427869],[-76.57893289486844,39.22813132612611],[-76.57893315056448,39.22814230572184],[-76.57893357874246,39.228153299448],[-76.57893434287595,39.22816427816531],[-76.57893563776679,39.22817520293841],[-76.57893796290809,39.22818601881023],[-76.57894113746566,39.22819675305605],[-76.57894396670736,39.22820751849095],[-76.57894554674229,39.22821840375175],[-76.57894646042213,39.22822935868428],[-76.57894698708171,39.22824034645794],[-76.57894732722272,39.22825134347097],[-76.5789476315524,39.22826232504233],[-76.57894769035718,39.22827330573283],[-76.5789475835271,39.22828428943225],[-76.57894748364572,39.22829527315656],[-76.5789474729516,39.22830625539922],[-76.57894744140562,39.2283172384678],[-76.57894743533872,39.22832822162781],[-76.57894751151024,39.22833920328121],[-76.57894767915867,39.22835018796501],[-76.57894771690874,39.2283612037101],[-76.57894797131618,39.22837220581988],[-76.5789489059784,39.2283831383077],[-76.57895090201947,39.22839398632678],[-76.57895392812213,39.22840475787174],[-76.57895786221843,39.22841533540344],[-76.57896263066333,39.22842563848842],[-76.57896814840537,39.22843575239538],[-76.57897413717095,39.22844573017273],[-76.57898031523843,39.22845562035255],[-76.57898668612508,39.22846541574123],[-76.5789932856798,39.22847512547511],[-76.57899997693772,39.22848480040717],[-76.57900662408127,39.22849449319613],[-76.57901314931215,39.22850423779252],[-76.57901965003694,39.22851401382782],[-76.57902521787713,39.22852408017032],[-76.57902969505817,39.22853448129308],[-76.57903368028602,39.22854503288261],[-76.57903760987094,39.2285555932802],[-76.57904135393535,39.22856618994413],[-76.57904507018418,39.22857679011126],[-76.57904934781321,39.2285872508695],[-76.57905383370083,39.22859774750478],[-76.57905897185422,39.22860801227699],[-76.57906559292485,39.22861761308938],[-76.57907352613209,39.22862663940708],[-76.57908220712903,39.22863534052284],[-76.57909122615163,39.22864387350401],[-76.57910018970298,39.22865238646838],[-76.57910927319139,39.22866079086801],[-76.57911853337643,39.22866908510495],[-76.57912781332685,39.22867736680107],[-76.57913695493714,39.22868573627664],[-76.57914592202708,39.22869424024227],[-76.57915433487993,39.22870304668277],[-76.57916135928403,39.2287126020952],[-76.57916618314503,39.22872294320226],[-76.57916840761828,39.22873375240128],[-76.57916885564755,39.2287447254779],[-76.57916905326678,39.22875573999314],[-76.57916972129038,39.22876672286625],[-76.5791703706718,39.22877772458875],[-76.57917141525861,39.22878868088778],[-76.57917333727184,39.22879952052927],[-76.57917657946521,39.22881018745083],[-76.57918052868379,39.22882076322637],[-76.57918431678242,39.2288313618442],[-76.57918792176692,39.22884198142413],[-76.57919146065814,39.22885261427854],[-76.5791947514241,39.22886329398449],[-76.5791980547598,39.2288740025602],[-76.57920094432318,39.22888476279827],[-76.5792027678049,39.22889561829967],[-76.57920364801092,39.22890656229864],[-76.57920399631794,39.22891755663566],[-76.57920412102784,39.22892856278194],[-76.57920426323815,39.22893954737228],[-76.57920419583438,39.22895052940952],[-76.57920401839588,39.22896151285383],[-76.57920392898193,39.22897249571287],[-76.57920406542287,39.2289834766793],[-76.57920428176546,39.22899445973367],[-76.57920458381646,39.22900544219453],[-76.57920501445409,39.22901641971166],[-76.57920561422969,39.22902738972813],[-76.57920656155704,39.22903834297502],[-76.57920782282332,39.22904928383571],[-76.57920909682956,39.22906022474204],[-76.57921001396595,39.22907119139224],[-76.5792105301531,39.22908219533841],[-76.57921170005501,39.22909311425268],[-76.57921516606284,39.22910373603499],[-76.57921880001425,39.22911435661769],[-76.57922102429416,39.22912520184487],[-76.57922276173504,39.22913611558729],[-76.57922403347692,39.22914704837804],[-76.57922434474875,39.22915803897842],[-76.5792238499847,39.22916902038371],[-76.57922313736522,39.22918002172585],[-76.57922170017483,39.22919094750745],[-76.57921910576627,39.22920171150439],[-76.57921595002152,39.22921241133518],[-76.57921241816989,39.22922306027473],[-76.5792086283268,39.22923366144884],[-76.57920469746557,39.22924421527679],[-76.57920040351972,39.22925467051894],[-76.57919574407678,39.22926504338056],[-76.57919105919045,39.22927540984533],[-76.57918668656637,39.22928585129316],[-76.57918266321757,39.22929637596379],[-76.57917875552278,39.22930692807221],[-76.57917493341273,39.22931750030447],[-76.57917116334372,39.22932808533402],[-76.57916741408835,39.22933867584269],[-76.5791636544298,39.22934926271083],[-76.57915986816997,39.229359843178],[-76.57915611776906,39.22937043097981],[-76.57915239165628,39.22938102427327],[-76.57914866901154,39.22939161847972],[-76.57914492323455,39.22940220719848],[-76.57914113118903,39.22941278584258],[-76.57913726511651,39.22942334800714],[-76.57913299749916,39.22943385198273],[-76.57912849153006,39.22944431637008],[-76.5791242390623,39.22945480418567],[-76.57912073660333,39.22946537485959],[-76.57911889430846,39.22947644871557],[-76.57912068890836,39.22948729240281],[-76.57912831420886,39.22949630770155],[-76.57913702778947,39.22950519719005],[-76.57914433036713,39.22951473017829],[-76.57915100143019,39.22952451041702],[-76.57915571262502,39.22953471960456],[-76.5791585165906,39.22954546512224],[-76.57915999605082,39.22955652476605],[-76.57916019799389,39.22956759153942],[-76.57915898601328,39.22957842624729],[-76.57915606867913,39.22958915125125],[-76.57915234548476,39.22959983643381],[-76.57914882259192,39.22961053224297],[-76.57914356995693,39.22962620945376],[-76.57914048925933,39.22963694377999],[-76.57913954733922,39.22964774342474],[-76.57914114368194,39.22965881880079],[-76.57914508675648,39.22966946121029],[-76.57915202744611,39.22967889201293],[-76.57916125177437,39.22968759236559],[-76.57916890548422,39.22969670414616],[-76.5791720666685,39.22970717170281],[-76.5791721215965,39.22971842170715],[-76.5791703062878,39.22972943710935],[-76.57916622295853,39.22974030656088],[-76.57916856908241,39.22975052798529],[-76.5791745705987,39.22976052741261],[-76.57918228756243,39.22977010692226],[-76.57919080358094,39.22977892093311],[-76.5792009341711,39.2297867480752],[-76.57921171787653,39.2297942019337],[-76.57922157161711,39.22980203708923],[-76.57922892156725,39.22981100995761],[-76.57923326581476,39.22982138627096],[-76.57923586290826,39.22983245172094],[-76.57923799250005,39.22984344883745],[-76.57923773534814,39.2298549850705],[-76.57924063650829,39.22986457793873],[-76.57925533922402,39.22986543954138],[-76.57926944260068,39.22986365881579],[-76.57928342036587,39.22986353056448],[-76.57929669040688,39.22986751902912],[-76.5793085392178,39.22987348500899],[-76.57932011176877,39.22987994542504],[-76.57933088218458,39.22988710557128],[-76.57934052445039,39.22989506066273],[-76.57934977820001,39.22990329990739],[-76.57935882364787,39.22991170594935],[-76.57936770501767,39.22992024291607],[-76.5793764676966,39.22992887403834],[-76.57938515590293,39.22993756434435],[-76.57939381386042,39.22994627796152],[-76.5794024869455,39.22995497992208],[-76.57941121822905,39.22996363344858],[-76.57942003796218,39.22997221522917],[-76.57942881005253,39.22998082386169],[-76.57943753563706,39.22998946295324],[-76.5794462682047,39.2299980966645],[-76.57945506471899,39.23000668916851],[-76.57946397751607,39.2300152037208],[-76.57947306588656,39.23002360270112],[-76.57948243214375,39.2300318198186],[-76.57949201581768,39.23003989629218],[-76.57950168555014,39.23004791362192],[-76.57951131227261,39.23005595782013],[-76.5795207657904,39.23006410949027],[-76.57952991819306,39.23007245464886],[-76.57953868555376,39.23008108397371],[-76.57954695539176,39.23009002048231],[-76.57955458759,39.23009926006965],[-76.57956166698806,39.23010875349704],[-76.57956847088359,39.23011841798555],[-76.57957486610334,39.23012825035598],[-76.57958071597288,39.23013825192029],[-76.5795858362473,39.23014843823265],[-76.57958986020395,39.2301589331877],[-76.57959321238262,39.23016962841131],[-76.5795964972232,39.23018035131764],[-76.57960029943446,39.23019093645649],[-76.57960445773793,39.23020143279285],[-76.57960876101097,39.2302118963195],[-76.5796132347921,39.23022231721935],[-76.57961790232473,39.23023268206396],[-76.57962283901794,39.23024296950471],[-76.57962811674226,39.23025316898966],[-76.57963356499634,39.23026332224467],[-76.57963899355245,39.2302734772304],[-76.57964421450974,39.23028368011436],[-76.57964903880385,39.23029397796061],[-76.57965315905554,39.23030444803612],[-76.57965629575094,39.23031515599737],[-76.57965888738202,39.23032598451223],[-76.57966140839743,39.23033680736945],[-76.5796639341636,39.23034761042646],[-76.57966635907376,39.23035842933626],[-76.57966871327218,39.23036925880207],[-76.57967102806147,39.23038009353129],[-76.57967333473898,39.23039092913222],[-76.57967565880041,39.23040176299369],[-76.57967777297219,39.23041264024156],[-76.5796796934846,39.23042355823167],[-76.57968163488201,39.23043446999099],[-76.57968381516747,39.23044533126141],[-76.57968645120728,39.23045609417755],[-76.57968976796978,39.23046671180374],[-76.57969417481814,39.23047709642889],[-76.57969944214658,39.23048729587263],[-76.57970509796043,39.23049741293497],[-76.57971066796975,39.23050754680448],[-76.57971581116497,39.23051778183399],[-76.57972075937795,39.23052808552495],[-76.5797256820592,39.23053839813196],[-76.57973073358713,39.23054866255814],[-76.57973606602383,39.23055882169819],[-76.57974183491666,39.23056881665769],[-76.57974833391836,39.23057854129546],[-76.57975545393685,39.23058803305355],[-76.57976285720761,39.23059741502971],[-76.57977020132286,39.23060681210672],[-76.57977754205075,39.23061619475873],[-76.57978501864967,39.23062551664388],[-76.57979246158348,39.2306348519196],[-76.57979970014189,39.23064427744169],[-76.57980662631599,39.23065384326694],[-76.57981336668274,39.23066349309966],[-76.57981996073728,39.23067320726413],[-76.57982643868286,39.23068297055529],[-76.57983282842223,39.23069276505752],[-76.5798389918019,39.23070264612443],[-76.5798447697571,39.23071267984424],[-76.57985062435611,39.23072267960853],[-76.57985703509887,39.23073244896272],[-76.57986395202387,39.23074201475118],[-76.57987112436807,39.23075147696335],[-76.57987848597682,39.2307608587825],[-76.57988597187494,39.23077017979324],[-76.57989351590247,39.23077946407965],[-76.57990108662335,39.23078873945327],[-76.57990872004238,39.23079798892828],[-76.57991645919337,39.23080718203216],[-76.5799243482417,39.23081629280055],[-76.57993243022653,39.23082528986018],[-76.5799408957234,39.23083406670058],[-76.57994997132327,39.23084249802378],[-76.57995920847169,39.23085083534277],[-76.57996811910823,39.23085935164801],[-76.57997629069897,39.2308682787645],[-76.5799839544675,39.23087749141113],[-76.57999129752537,39.23088688126337],[-76.579998439602,39.23089637488614],[-76.5800055015903,39.2309058979475],[-76.58001249051388,39.23091543786175],[-76.58001924835409,39.23092507963725],[-76.5800258981923,39.23093477056862],[-76.58003257589799,39.23094444988924],[-76.58003930933127,39.23095410688939],[-76.58004595913232,39.23096380502566],[-76.58005274017727,39.23097344147743],[-76.58005989638212,39.23098289911562],[-76.58006750673236,39.23099213948935],[-76.5800753819065,39.23100125289965],[-76.580083401102,39.23101029836558],[-76.58009144120544,39.2310193339972],[-76.58009938140901,39.23102841971432],[-76.58010710670628,39.23103761365614],[-76.5801146716704,39.23104689259765],[-76.58012224012698,39.2310561688488],[-76.5801299805559,39.23106535113304],[-76.58013801259614,39.23107438132779],[-76.58014612690678,39.23108340551078],[-76.58015441316313,39.23109234023053],[-76.58016303666363,39.23110104465624],[-76.58017216619169,39.23110937616808],[-76.58018195509086,39.2311172569468],[-76.58019233818887,39.23112473990489],[-76.58020314608713,39.2311318757807],[-76.58021420707101,39.23113871530424],[-76.58022560464674,39.23114523895704],[-76.58023763497947,39.23115111180834],[-76.58025028430941,39.23115591855063],[-76.58026341594113,39.2311598595681],[-76.58027685395267,39.23116330535164],[-76.58029047369921,39.23116637706028],[-76.58030414938314,39.23116919494826],[-76.58031788498478,39.23117167345602],[-76.5803317502984,39.23117376148876],[-76.58034566396621,39.23117570286616],[-76.58035955039497,39.23117774593225],[-76.58037333283862,39.2311801381264],[-76.58038701329963,39.2311829326016],[-76.58040065580019,39.23118587917074],[-76.58041431870433,39.2311887051072],[-76.58042806385586,39.23119113679578],[-76.58044194597353,39.23119293032149],[-76.58045594707212,39.2311941892094],[-76.58047002678836,39.23119507995894],[-76.5804841518998,39.23119573666706],[-76.58049828802595,39.23119629342657],[-76.58051240078106,39.23119688523117],[-76.5805265107271,39.23119736442694],[-76.5805406392062,39.23119764731792],[-76.58055476909377,39.23119788787565],[-76.58056888673971,39.23119824008431],[-76.58058297385607,39.23119885881209],[-76.58059701930638,39.23119986472338],[-76.58061103539633,39.23120113535648],[-76.58062502958064,39.23120258516421],[-76.58063901150263,39.23120415022589],[-76.58065298848928,39.23120576661252],[-76.58066696787805,39.23120736859369],[-76.58068095698508,39.23120889404186],[-76.58069496898133,39.23121027004113],[-76.5807084681621,39.23121101186157],[-76.58070914086002,39.23121104939487],[-76.58072340159231,39.23121149217372],[-76.58073753753588,39.2312122768003],[-76.5807513385181,39.23121408261049],[-76.5807647356947,39.23121719220237],[-76.58077799990066,39.2312208525932],[-76.58079113997222,39.23122494040821],[-76.58080414710155,39.23122937814912],[-76.58081701131714,39.23123408921435],[-76.58082972495853,39.23123899791132],[-76.58084227804888,39.23124402853924],[-76.58085465608907,39.23124928283413],[-76.58086683991539,39.23125486792005],[-76.58087881117252,39.23126075400591],[-76.58089055381075,39.23126691311035],[-76.58090204714766,39.23127331723553],[-76.58091329022713,39.23127993214862],[-76.58092440614662,39.23128670244096],[-76.5809354030666,39.23129361913401],[-76.5809462531534,39.23130068843385],[-76.58095693205857,39.23130791475745],[-76.58096741196442,39.2313153016087],[-76.58097766620605,39.2313228533963],[-76.58098766926082,39.23133057723548],[-76.58099730355644,39.23133857359354],[-76.58100659577909,39.23134683445884],[-76.581015657625,39.23135527375564],[-76.58102460078507,39.23136380630885],[-76.58103353580282,39.23137234513774],[-76.58104257437451,39.23138080416636],[-76.58105182934925,39.23138909822379],[-76.581061410107,39.23139714122568],[-76.58107127083005,39.23140504290328],[-76.58108136966948,39.23141282922968],[-76.58109178162627,39.23142035184428],[-76.58110258054326,39.23142746238241],[-76.58111384372708,39.23143401429318],[-76.58112560040861,39.23143996084045],[-76.58113772279867,39.23144556369408],[-76.58115014816376,39.23145085505802],[-76.58116282204223,39.23145583924176],[-76.58117568995664,39.23146052325704],[-76.58118869627123,39.2314649141115],[-76.58120178883554,39.2314690170237],[-76.58121499582323,39.23147276813896],[-76.58122841841087,39.23147609755762],[-76.5812420074125,39.2314790969834],[-76.5812557101675,39.23148185810758],[-76.58126947515228,39.23148447622864],[-76.5812832508593,39.23148704394284],[-76.58129698461751,39.23148965474306],[-76.5813108336216,39.23149197049799],[-76.58132488231284,39.23149381315501],[-76.58133889260401,39.23149568629977],[-76.58135262409705,39.23149809260903],[-76.58136583401428,39.23150154556061],[-76.58137830663625,39.23150648756742],[-76.5813902519563,39.23151246538708],[-76.58140199140821,39.23151878656808],[-76.58141349407099,39.23152519517957],[-76.58142271303404,39.23153351790359],[-76.58143174008005,39.23154197866209],[-76.58144031854796,39.23155069544244],[-76.58144831832742,39.23155973443821],[-76.58145594855633,39.23156898379823],[-76.5814634231277,39.2315783109702],[-76.58147080482803,39.2315876747424],[-76.58147801460292,39.23159712527644],[-76.58148519650355,39.23160658922222],[-76.58149250039848,39.23161598874657],[-76.5815000761511,39.23162524691707],[-76.58150795271624,39.23163436383681],[-76.58151603246084,39.23164339770813],[-76.58152439344558,39.23165227044173],[-76.58153312301289,39.23166090127907],[-76.58154231082666,39.23166920856902],[-76.58155199054357,39.23167718072138],[-76.58156200049534,39.23168493245907],[-76.58157215810773,39.23169258833919],[-76.58158227733749,39.23170027200564],[-76.58159217326732,39.23170811251115],[-76.58160178176672,39.23171618259004],[-76.58161130183161,39.2317243226135],[-76.5816209662684,39.23173233524049],[-76.5816310079048,39.23174001952681],[-76.58164166055676,39.23174720335666],[-76.58165289752748,39.23175389654332],[-76.5816645168028,39.23176018123802],[-76.58167635326102,39.23176616854846],[-76.58168844946861,39.2317719072683],[-76.58170084355974,39.23177721557643],[-76.58171357496998,39.23178188733544],[-76.58172683219546,39.23178557912026],[-76.58173054619544,39.23178643458109],[-76.58195302974131,39.23206453845766],[-76.58198005560014,39.23206731271672],[-76.58309517372754,39.23217786397093],[-76.58312929948713,39.2321812477861],[-76.5839423019951,39.23226141897045],[-76.58423985958237,39.23229207372158],[-76.58438577647395,39.23230710738635],[-76.58494427474375,39.23237405568246],[-76.5849923993768,39.23237982650302]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000264,"geom:area_square_m":2531921.836333,"geom:bbox":"-76.5879312863,39.2245102325,-76.5585772135,39.2428653194","geom:latitude":39.23301,"geom:longitude":-76.571637,"iso:country":"US","lbl:latitude":39.233324,"lbl:longitude":-76.569414,"lbl:max_zoom":18,"mps:latitude":39.233324,"mps:longitude":-76.569414,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"","name:eng_x_preferred":["Wagner's Point"],"name:eng_x_variant":["East Brooklyn"],"name:fra_x_preferred":["Wagner's Point"],"reversegeo:latitude":39.233324,"reversegeo:longitude":-76.569414,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7959585"},"wof:country":"US","wof:geomhash":"e0b6b4c0656b870375c143204c4619ab","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108796081,"neighbourhood_id":-1,"region_id":85688501}],"wof:id":1108796081,"wof:lastmodified":1566624090,"wof:name":"Wagner's Point","wof:parent_id":-1,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420523195],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108796101.geojson b/fixtures/microhoods/1108796101.geojson new file mode 100644 index 0000000..5955036 --- /dev/null +++ b/fixtures/microhoods/1108796101.geojson @@ -0,0 +1 @@ +{"id":1108796101,"type":"Feature","bbox":[-76.62692668706234,39.34502037742487,-76.61488999966865,39.35173773038662],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.6268385695872,39.34669800242385],[-76.62661129705825,39.34662727161358],[-76.62644868778587,39.34659688913703],[-76.62630244857446,39.34659182538689],[-76.62615293535086,39.34660110892565],[-76.62600014811507,39.34662473975332],[-76.62582662546869,39.34667368927288],[-76.62563236741175,39.34674795748433],[-76.62545229674099,39.34684754422625],[-76.62528641345642,39.34697244949864],[-76.62511507348485,39.34710410614661],[-76.62493827682628,39.34724251417018],[-76.6247756675539,39.34736066719552],[-76.62462724566768,39.34745856522263],[-76.62444826633433,39.34752692501392],[-76.62423872955381,39.34756574656941],[-76.62406957225704,39.34758515734715],[-76.623940794444,39.34758515734715],[-76.62344205325287,39.34752692494922],[-76.62257334868363,39.34741046015336],[-76.6220756988299,39.34735391565376],[-76.62194910369166,39.34735729145041],[-76.62182359989083,39.3473682627866],[-76.62169918742741,39.34738682966233],[-76.62156931827698,39.34742227548945],[-76.62143399243955,39.34747460026797],[-76.62123427769562,39.34758178142062],[-76.62097017404518,39.34774381894739],[-76.62075518057767,39.34787294242378],[-76.62058929729308,39.34796915184975],[-76.62042013999631,39.34806198538757],[-76.62024770868734,39.34815144303721],[-76.62004799394342,39.34823330513903],[-76.61982099576453,39.34830757169304],[-76.61959727159783,39.34839027752032],[-76.61937682144331,39.34848142262086],[-76.61915091460182,39.34859872950016],[-76.61891955107332,39.34874219815822],[-76.61875366778874,39.34884431399664],[-76.61865326474808,39.3489050770154],[-76.61857032310579,39.34897090355229],[-76.61850484286187,39.3490417936073],[-76.61844045395536,39.34914390884883],[-76.61837715638623,39.34927724927689],[-76.61831931550411,39.34937936431123],[-76.618266931309,39.34945025395187],[-76.61819381170329,39.34948738661899],[-76.61809995668703,39.34949076231257],[-76.61799955364637,39.34951101646332],[-76.6178926025813,39.34954814907124],[-76.61779110820325,39.34958696950247],[-76.61769507051217,39.349627477757],[-76.61761322020729,39.34969330358476],[-76.61754555728857,39.34978444698576],[-76.61749862978044,39.3498806537696],[-76.61747243768286,39.3499819239363],[-76.61741568813815,39.35007728655452],[-76.61732838114625,39.35016674162428],[-76.6172214300812,39.35029164086902],[-76.61709483494298,39.35045198428877],[-76.61701080196329,39.35056169285163],[-76.61696933114214,39.35062076655763],[-76.61689948554864,39.35067646458157],[-76.61680126518279,39.35072878692346],[-76.61668994876814,39.35082077280283],[-76.6165655363047,39.35095242221969],[-76.61642693645508,39.35108322748673],[-76.6162741492193,39.35121318860398],[-76.61612027064609,39.35142247577248],[-76.6159509957272,39.35173773038662],[-76.61568349896585,39.35166100108984],[-76.61517248872107,39.35149489145586],[-76.61516997401897,39.35149279244983],[-76.61517002048335,39.35149278888686],[-76.61488999966865,39.34990600016256],[-76.61489000024454,39.34969494065835],[-76.61488999984071,39.34900599971523],[-76.6149019888593,39.34891008906208],[-76.6149899995478,39.3482060001332],[-76.61500811201103,39.3481244997827],[-76.61519000043808,39.34730600002516],[-76.61520363217545,39.34727620298601],[-76.61531386237377,39.3473237572872],[-76.61564320085468,39.34743502961614],[-76.61581810339104,39.34746537625201],[-76.61599683123767,39.34747404250103],[-76.6160589269831,39.34747192767884],[-76.61645138179745,39.34746294371957],[-76.61677466967312,39.34745355107463],[-76.61698348504329,39.347450396144],[-76.61713089479495,39.34744187152624],[-76.61728481849505,39.34741207884202],[-76.61724865924326,39.34732698854262],[-76.61720150119281,39.34718861673364],[-76.61718120269914,39.34705075300472],[-76.6171650439899,39.34673710719949],[-76.61715548330082,39.34647707352973],[-76.61712848298558,39.3461300819291],[-76.61710245314538,39.34584035737532],[-76.61709260980237,39.34561252522425],[-76.6170833013225,39.34548905506875],[-76.61708515356429,39.34538519443844],[-76.6171061842593,39.34530600010559],[-76.61710768934749,39.34530032851444],[-76.61754526625921,39.34528823438901],[-76.61789318764126,39.34530161578785],[-76.61823853694432,39.34533681194586],[-76.61829997677766,39.34534540997342],[-76.61896174068306,39.34541626176793],[-76.6193757648165,39.34545496845208],[-76.61975070372725,39.34548294460879],[-76.62012729283802,39.34548900528387],[-76.6202824086389,39.34548511883826],[-76.62054141161896,39.34547252135351],[-76.62080510462079,39.34545624897573],[-76.62098118659469,39.34544341637909],[-76.6212053169965,39.34542830542313],[-76.62138976489429,39.3454148920666],[-76.62165588642442,39.34538149614525],[-76.62189400006585,39.34533744742253],[-76.62209760991222,39.34530592566356],[-76.62216190868934,39.34530166552819],[-76.62246428121321,39.34528163332367],[-76.62284245600713,39.34525397823518],[-76.62318198848887,39.34523048472929],[-76.62356704145708,39.34520510301876],[-76.62407646042203,39.34517208222664],[-76.62468112464965,39.34513433716558],[-76.62498875079943,39.34511474760036],[-76.62508176041673,39.34510882459573],[-76.62520570185194,39.34509855405325],[-76.62567630748067,39.34507179067461],[-76.62610738126412,39.34504038697207],[-76.62638435985272,39.34502037742487],[-76.62641312269275,39.3450872590176],[-76.6264400312946,39.34514983365606],[-76.62646660749046,39.3451786356248],[-76.62648604553144,39.34519934334032],[-76.62650686426254,39.34522485730633],[-76.62652792315846,39.34525653312217],[-76.62654904768614,39.34529799392734],[-76.62656786610724,39.34534428169777],[-76.62657949406399,39.34538293083409],[-76.62658186862997,39.34541928340601],[-76.6265800470871,39.34546975262462],[-76.62657841620084,39.34551419917145],[-76.62658345246813,39.34556917677659],[-76.62659082551987,39.34560118021545],[-76.62661438199629,39.34566086447708],[-76.62663599154263,39.34570630178509],[-76.6266520670026,39.34574435342795],[-76.62666943514459,39.34579269296844],[-76.62667425943194,39.34580599966744],[-76.62668297149537,39.34583003306205],[-76.62669929111556,39.34586887272242],[-76.62670903934959,39.34588978382259],[-76.62672602137332,39.34592620618292],[-76.6267489857133,39.34596950399624],[-76.62676585057564,39.34600130606159],[-76.62679882421071,39.34604811971641],[-76.62682593960967,39.34608741427162],[-76.62684913746995,39.346127362937],[-76.62687006593816,39.34616516332658],[-76.62689491904763,39.34621088830178],[-76.62691189514508,39.34624317980022],[-76.62692605526266,39.34628834299922],[-76.62692668706234,39.34631289297935],[-76.62692557731141,39.34633021887105],[-76.62690985545329,39.34636268313642],[-76.62688027436755,39.34639000880972],[-76.62685069912702,39.34641776234724],[-76.62683676554157,39.34644966661059],[-76.62683522999608,39.3464826406742],[-76.6268451160927,39.3465331389313],[-76.6268527155255,39.34658542601279],[-76.6268514637924,39.34662310646183],[-76.62684416493516,39.34665210886724],[-76.62683614342139,39.34667933181067],[-76.6268385695872,39.34669800242385]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000033,"geom:area_square_m":316883.811453,"geom:bbox":"-76.6269266871,39.3450203774,-76.6148899997,39.3517377304","geom:latitude":39.3474,"geom:longitude":-76.619856,"iso:country":"US","lbl:latitude":39.347116,"lbl:longitude":-76.618765,"lbl:max_zoom":18,"mps:latitude":39.347116,"mps:longitude":-76.618765,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Loyola"],"name:deu_x_preferred":["Loyola"],"name:eus_x_preferred":["Loiola"],"name:fra_x_preferred":["Loyola"],"name:hun_x_preferred":["Loyola"],"name:nld_x_preferred":["Loyola"],"name:pol_x_preferred":["Loyola"],"name:por_x_preferred":["Loyola"],"name:rus_x_preferred":["Лойола"],"name:spa_x_preferred":["Loyola"],"name:swe_x_preferred":["Loyola"],"reversegeo:latitude":39.347116,"reversegeo:longitude":-76.618765,"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[1108795097,102191575,1108794685,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"6af3be14ca24b9e530d4fe884646b4d9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"macrohood_id":1108794685,"microhood_id":1108796101,"neighbourhood_id":1108795097,"region_id":85688501}],"wof:id":1108796101,"wof:lastmodified":1566624057,"wof:name":"Loyola","wof:parent_id":1108795097,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85870121],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797013.geojson b/fixtures/microhoods/1108797013.geojson new file mode 100644 index 0000000..7ad81c3 --- /dev/null +++ b/fixtures/microhoods/1108797013.geojson @@ -0,0 +1 @@ +{"id":1108797013,"type":"Feature","bbox":[-76.540876,39.245402,-76.532467,39.267328],"geometry":{"type":"Polygon","coordinates":[[[-76.538907,39.253082],[-76.538905,39.253082],[-76.538904,39.253082],[-76.538903,39.253082],[-76.538901,39.253082],[-76.5389,39.253082],[-76.538899,39.253082],[-76.538897,39.253082],[-76.538896,39.253082],[-76.538895,39.253082],[-76.538893,39.253082],[-76.538892,39.253082],[-76.538891,39.253082],[-76.538889,39.253083],[-76.538888,39.253083],[-76.538887,39.253083],[-76.538885,39.253084],[-76.538884,39.253084],[-76.538883,39.253084],[-76.538882,39.253085],[-76.53888,39.253085],[-76.538879,39.253086],[-76.538878,39.253086],[-76.538877,39.253087],[-76.538876,39.253088],[-76.538875,39.253088],[-76.538874,39.253089],[-76.538873,39.253089],[-76.538872,39.25309],[-76.538871,39.253091],[-76.53887,39.253092],[-76.538869,39.253093],[-76.538868,39.253093],[-76.538867,39.253094],[-76.538866,39.253095],[-76.538866,39.253096],[-76.538865,39.253097],[-76.538864,39.253098],[-76.538864,39.253099],[-76.538863,39.2531],[-76.538863,39.253101],[-76.538862,39.253102],[-76.538862,39.253103],[-76.538861,39.253104],[-76.538861,39.253105],[-76.538861,39.253106],[-76.53886,39.253107],[-76.53886,39.253108],[-76.53886,39.253109],[-76.53886,39.25311],[-76.53886,39.253111],[-76.53886,39.253112],[-76.53886,39.253113],[-76.53886,39.253114],[-76.53886,39.253115],[-76.53886,39.253116],[-76.53886,39.253117],[-76.53886,39.253118],[-76.538861,39.253119],[-76.538861,39.25312],[-76.538862,39.253121],[-76.538862,39.253122],[-76.538862,39.253123],[-76.538863,39.253124],[-76.538863,39.253125],[-76.538864,39.253126],[-76.538865,39.253127],[-76.538865,39.253128],[-76.538866,39.253129],[-76.538867,39.25313],[-76.538868,39.25313],[-76.538869,39.253131],[-76.538869,39.253132],[-76.53887,39.253133],[-76.538871,39.253134],[-76.538872,39.253134],[-76.538873,39.253135],[-76.538874,39.253136],[-76.538875,39.253137],[-76.538873,39.253137],[-76.538871,39.253138],[-76.538869,39.253138],[-76.538867,39.253138],[-76.538865,39.253139],[-76.538863,39.253139],[-76.538861,39.25314],[-76.538859,39.25314],[-76.538857,39.253141],[-76.538856,39.253141],[-76.538854,39.253142],[-76.538852,39.253142],[-76.53885,39.253143],[-76.538848,39.253143],[-76.538846,39.253144],[-76.538845,39.253145],[-76.538843,39.253145],[-76.538841,39.253146],[-76.538839,39.253147],[-76.538838,39.253147],[-76.538836,39.253148],[-76.538834,39.253149],[-76.538833,39.25315],[-76.538831,39.253151],[-76.538829,39.253152],[-76.538828,39.253152],[-76.538826,39.253153],[-76.538825,39.253154],[-76.538823,39.253155],[-76.538821,39.253156],[-76.53882,39.253157],[-76.538818,39.253158],[-76.538817,39.253159],[-76.538816,39.25316],[-76.538814,39.253161],[-76.538813,39.253162],[-76.538811,39.253163],[-76.53881,39.253165],[-76.538809,39.253166],[-76.538807,39.253167],[-76.538806,39.253168],[-76.538805,39.253169],[-76.538804,39.25317],[-76.538803,39.253172],[-76.538801,39.253173],[-76.5388,39.253174],[-76.538799,39.253175],[-76.538798,39.253177],[-76.538797,39.253178],[-76.538796,39.253179],[-76.538795,39.253181],[-76.538794,39.253182],[-76.538793,39.253183],[-76.538792,39.253185],[-76.538791,39.253186],[-76.538791,39.253188],[-76.53879,39.253189],[-76.538789,39.25319],[-76.538788,39.253192],[-76.538788,39.253193],[-76.538787,39.253195],[-76.538786,39.253196],[-76.538786,39.253198],[-76.538785,39.253199],[-76.538785,39.2532],[-76.538784,39.253202],[-76.538784,39.253203],[-76.538783,39.253205],[-76.538783,39.253206],[-76.538782,39.253208],[-76.538782,39.253209],[-76.538782,39.253211],[-76.538781,39.253212],[-76.538781,39.253214],[-76.538781,39.253215],[-76.538781,39.253217],[-76.538781,39.253219],[-76.538781,39.25322],[-76.538781,39.253222],[-76.53878,39.253223],[-76.53878,39.253225],[-76.538781,39.253226],[-76.538781,39.253228],[-76.538781,39.253229],[-76.538781,39.253231],[-76.538781,39.253232],[-76.538781,39.253234],[-76.538781,39.253235],[-76.538782,39.253237],[-76.538782,39.253238],[-76.538782,39.25324],[-76.538783,39.253241],[-76.538783,39.253243],[-76.538784,39.253244],[-76.538784,39.253246],[-76.538785,39.253247],[-76.538785,39.253249],[-76.538786,39.25325],[-76.538786,39.253252],[-76.538787,39.253253],[-76.538788,39.253255],[-76.538788,39.253256],[-76.538789,39.253258],[-76.53879,39.253259],[-76.538791,39.25326],[-76.538791,39.253262],[-76.538792,39.253263],[-76.538793,39.253264],[-76.538794,39.253266],[-76.538795,39.253267],[-76.538796,39.253268],[-76.538797,39.25327],[-76.538798,39.253271],[-76.538799,39.253272],[-76.5388,39.253274],[-76.538801,39.253275],[-76.538803,39.253276],[-76.538804,39.253277],[-76.538805,39.253279],[-76.538806,39.25328],[-76.538808,39.253281],[-76.538809,39.253282],[-76.53881,39.253283],[-76.538811,39.253284],[-76.538813,39.253285],[-76.538814,39.253287],[-76.538816,39.253288],[-76.538817,39.253289],[-76.538819,39.25329],[-76.53882,39.253291],[-76.538822,39.253292],[-76.538823,39.253293],[-76.538825,39.253294],[-76.538826,39.253294],[-76.538828,39.253295],[-76.538829,39.253296],[-76.538831,39.253297],[-76.538833,39.253298],[-76.538834,39.253299],[-76.538836,39.2533],[-76.538838,39.2533],[-76.538839,39.253301],[-76.538841,39.253302],[-76.538843,39.253303],[-76.538845,39.253303],[-76.538847,39.253304],[-76.538848,39.253304],[-76.53885,39.253305],[-76.538852,39.253306],[-76.538854,39.253306],[-76.538856,39.253307],[-76.538857,39.253307],[-76.538859,39.253308],[-76.538861,39.253308],[-76.538863,39.253309],[-76.538865,39.253309],[-76.538867,39.253309],[-76.538869,39.25331],[-76.538871,39.25331],[-76.538873,39.25331],[-76.538875,39.253311],[-76.538865,39.253342],[-76.53886,39.253341],[-76.538856,39.253341],[-76.538853,39.25334],[-76.538849,39.25334],[-76.538846,39.253339],[-76.538842,39.253338],[-76.538839,39.253338],[-76.538835,39.253337],[-76.538832,39.253337],[-76.538828,39.253336],[-76.538825,39.253336],[-76.538822,39.253335],[-76.538818,39.253334],[-76.538815,39.253334],[-76.538811,39.253333],[-76.538808,39.253333],[-76.538804,39.253332],[-76.538801,39.253332],[-76.538797,39.253331],[-76.538794,39.25333],[-76.53879,39.25333],[-76.538787,39.253329],[-76.538784,39.253329],[-76.53878,39.253328],[-76.538777,39.253328],[-76.538773,39.253327],[-76.53877,39.253326],[-76.538766,39.253326],[-76.538763,39.253325],[-76.538759,39.253325],[-76.538756,39.253324],[-76.538752,39.253324],[-76.538749,39.253323],[-76.538746,39.253322],[-76.538742,39.253322],[-76.538739,39.253321],[-76.538735,39.253321],[-76.538732,39.25332],[-76.538728,39.25332],[-76.538725,39.253319],[-76.538721,39.253319],[-76.538718,39.253318],[-76.538714,39.253318],[-76.538711,39.253317],[-76.538707,39.253317],[-76.538704,39.253316],[-76.538701,39.253315],[-76.538697,39.253315],[-76.538694,39.253314],[-76.53869,39.253314],[-76.538687,39.253314],[-76.538683,39.253314],[-76.53868,39.253316],[-76.538678,39.253318],[-76.538676,39.25332],[-76.538675,39.253323],[-76.538673,39.253325],[-76.538672,39.253328],[-76.53867,39.25333],[-76.538668,39.253333],[-76.538667,39.253335],[-76.538665,39.253338],[-76.538664,39.25334],[-76.538662,39.253343],[-76.538661,39.253345],[-76.538659,39.253347],[-76.538658,39.25335],[-76.538656,39.253352],[-76.538655,39.253355],[-76.538653,39.253357],[-76.538652,39.25336],[-76.53865,39.253362],[-76.538649,39.253365],[-76.538647,39.253367],[-76.538646,39.25337],[-76.538644,39.253372],[-76.538643,39.253375],[-76.538641,39.253377],[-76.53864,39.25338],[-76.538639,39.253382],[-76.538637,39.253385],[-76.538636,39.253387],[-76.538634,39.25339],[-76.538633,39.253392],[-76.538631,39.253395],[-76.53863,39.253397],[-76.538628,39.2534],[-76.538627,39.253402],[-76.538625,39.253405],[-76.538624,39.253407],[-76.538622,39.25341],[-76.538621,39.253412],[-76.538619,39.253415],[-76.538618,39.253417],[-76.538616,39.25342],[-76.538615,39.253422],[-76.538614,39.253425],[-76.538612,39.253427],[-76.538611,39.25343],[-76.538609,39.253432],[-76.538608,39.253435],[-76.538606,39.253437],[-76.538605,39.25344],[-76.538603,39.253442],[-76.538602,39.253445],[-76.5386,39.253447],[-76.538599,39.25345],[-76.538597,39.253452],[-76.538596,39.253455],[-76.538594,39.253457],[-76.538593,39.25346],[-76.538591,39.253462],[-76.538589,39.253465],[-76.538588,39.253467],[-76.538586,39.25347],[-76.538585,39.253472],[-76.538583,39.253474],[-76.538582,39.253477],[-76.538581,39.253479],[-76.538579,39.253482],[-76.538578,39.253484],[-76.538576,39.253487],[-76.538575,39.253489],[-76.538573,39.253492],[-76.538572,39.253494],[-76.53857,39.253497],[-76.538569,39.253499],[-76.538567,39.253502],[-76.538566,39.253504],[-76.538564,39.253507],[-76.538563,39.253509],[-76.538561,39.253512],[-76.53856,39.253514],[-76.538558,39.253517],[-76.538557,39.253519],[-76.538555,39.253522],[-76.538554,39.253524],[-76.538552,39.253527],[-76.538551,39.253529],[-76.538549,39.253532],[-76.538548,39.253534],[-76.538546,39.253537],[-76.538545,39.253539],[-76.538543,39.253542],[-76.538542,39.253544],[-76.53854,39.253547],[-76.538539,39.253549],[-76.538537,39.253552],[-76.538536,39.253554],[-76.538534,39.253557],[-76.538533,39.253559],[-76.538531,39.253562],[-76.53853,39.253564],[-76.538528,39.253567],[-76.538527,39.253569],[-76.538525,39.253572],[-76.538524,39.253574],[-76.538522,39.253576],[-76.538521,39.253579],[-76.538519,39.253581],[-76.538518,39.253584],[-76.538516,39.253586],[-76.538515,39.253589],[-76.538513,39.253591],[-76.538512,39.253594],[-76.53851,39.253596],[-76.538509,39.253599],[-76.538507,39.253601],[-76.538506,39.253604],[-76.538504,39.253606],[-76.538503,39.253609],[-76.538501,39.253611],[-76.5385,39.253614],[-76.538498,39.253616],[-76.538497,39.253619],[-76.538495,39.253621],[-76.538494,39.253624],[-76.538493,39.253626],[-76.538491,39.253629],[-76.53849,39.253631],[-76.538488,39.253634],[-76.538487,39.253636],[-76.538485,39.253639],[-76.538484,39.253641],[-76.538482,39.253644],[-76.538481,39.253646],[-76.538479,39.253649],[-76.538478,39.253651],[-76.538476,39.253654],[-76.538475,39.253656],[-76.538473,39.253659],[-76.538472,39.253661],[-76.53847,39.253664],[-76.538469,39.253666],[-76.538467,39.253669],[-76.538466,39.253671],[-76.538464,39.253674],[-76.538463,39.253676],[-76.538461,39.253679],[-76.53846,39.253681],[-76.538458,39.253684],[-76.538457,39.253686],[-76.538455,39.253689],[-76.538454,39.253691],[-76.538452,39.253694],[-76.538451,39.253696],[-76.538449,39.253698],[-76.538448,39.253701],[-76.538446,39.253703],[-76.538445,39.253706],[-76.538443,39.253708],[-76.538442,39.253711],[-76.53844,39.253713],[-76.538439,39.253716],[-76.538437,39.253718],[-76.538436,39.253721],[-76.538434,39.253723],[-76.538433,39.253726],[-76.538431,39.253728],[-76.53843,39.253731],[-76.538428,39.253733],[-76.538427,39.253736],[-76.538425,39.253738],[-76.538424,39.253741],[-76.538422,39.253743],[-76.538421,39.253746],[-76.538419,39.253748],[-76.538418,39.253751],[-76.538417,39.253753],[-76.538415,39.253756],[-76.538414,39.253758],[-76.538412,39.253761],[-76.538411,39.253763],[-76.538409,39.253766],[-76.538408,39.253768],[-76.538406,39.253771],[-76.538405,39.253773],[-76.538403,39.253776],[-76.538402,39.253778],[-76.5384,39.253781],[-76.538399,39.253783],[-76.538397,39.253786],[-76.538396,39.253788],[-76.538394,39.253791],[-76.538393,39.253793],[-76.538391,39.253796],[-76.53839,39.253798],[-76.538388,39.2538],[-76.538387,39.253803],[-76.538385,39.253805],[-76.538384,39.253808],[-76.538382,39.25381],[-76.538381,39.253813],[-76.538379,39.253815],[-76.538378,39.253818],[-76.538376,39.25382],[-76.538375,39.253823],[-76.538373,39.253825],[-76.538372,39.253828],[-76.53837,39.25383],[-76.538369,39.253833],[-76.538367,39.253835],[-76.538366,39.253838],[-76.538364,39.25384],[-76.538363,39.253843],[-76.538361,39.253845],[-76.53836,39.253848],[-76.538358,39.25385],[-76.538357,39.253853],[-76.538355,39.253855],[-76.538354,39.253858],[-76.538352,39.25386],[-76.538351,39.253863],[-76.538349,39.253865],[-76.538348,39.253868],[-76.538346,39.25387],[-76.538345,39.253873],[-76.538344,39.253875],[-76.538342,39.253878],[-76.538341,39.25388],[-76.538339,39.253883],[-76.538338,39.253885],[-76.538336,39.253888],[-76.538335,39.25389],[-76.538333,39.253893],[-76.538332,39.253895],[-76.53833,39.253898],[-76.538329,39.2539],[-76.538327,39.253903],[-76.538326,39.253905],[-76.538324,39.253908],[-76.538323,39.25391],[-76.538321,39.253913],[-76.53832,39.253915],[-76.538318,39.253918],[-76.538317,39.25392],[-76.538315,39.253923],[-76.538314,39.253925],[-76.538312,39.253927],[-76.538311,39.25393],[-76.538309,39.253932],[-76.538308,39.253935],[-76.538306,39.253937],[-76.538305,39.25394],[-76.538303,39.253942],[-76.538302,39.253945],[-76.5383,39.253947],[-76.538299,39.25395],[-76.538297,39.253952],[-76.538296,39.253955],[-76.538294,39.253957],[-76.538293,39.25396],[-76.538291,39.253962],[-76.53829,39.253965],[-76.538288,39.253967],[-76.538287,39.25397],[-76.538285,39.253972],[-76.538284,39.253975],[-76.538282,39.253977],[-76.538281,39.25398],[-76.538279,39.253982],[-76.538278,39.253985],[-76.538276,39.253987],[-76.538275,39.25399],[-76.538273,39.253992],[-76.538272,39.253995],[-76.53827,39.253997],[-76.538269,39.254],[-76.538267,39.254002],[-76.538266,39.254005],[-76.538265,39.254007],[-76.538263,39.25401],[-76.538262,39.254012],[-76.53826,39.254015],[-76.538259,39.254017],[-76.538257,39.25402],[-76.538256,39.254022],[-76.538254,39.254025],[-76.538253,39.254027],[-76.538251,39.25403],[-76.53825,39.254032],[-76.538248,39.254034],[-76.538247,39.254037],[-76.538245,39.254039],[-76.538244,39.254042],[-76.538242,39.254044],[-76.538241,39.254047],[-76.538239,39.254049],[-76.538238,39.254052],[-76.538236,39.254054],[-76.538235,39.254057],[-76.538233,39.254059],[-76.538232,39.254062],[-76.53823,39.254064],[-76.538229,39.254067],[-76.538227,39.254069],[-76.538226,39.254072],[-76.538224,39.254074],[-76.538223,39.254077],[-76.538221,39.254079],[-76.53822,39.254082],[-76.538218,39.254084],[-76.538217,39.254087],[-76.538215,39.254089],[-76.538214,39.254092],[-76.538212,39.254094],[-76.538211,39.254097],[-76.538209,39.254099],[-76.538208,39.254102],[-76.538206,39.254104],[-76.538205,39.254107],[-76.538203,39.254109],[-76.538202,39.254112],[-76.5382,39.254114],[-76.538199,39.254117],[-76.538198,39.254119],[-76.538196,39.254122],[-76.538195,39.254124],[-76.538193,39.254127],[-76.538192,39.254129],[-76.53819,39.254132],[-76.538189,39.254134],[-76.538187,39.254137],[-76.538186,39.254139],[-76.538184,39.254142],[-76.538183,39.254144],[-76.538181,39.254147],[-76.53818,39.254149],[-76.538178,39.254152],[-76.538157,39.254186],[-76.538084,39.254308],[-76.538032,39.254397],[-76.537996,39.254456],[-76.537941,39.254549],[-76.537883,39.254647],[-76.537809,39.254771],[-76.53774,39.254885],[-76.537661,39.255017],[-76.537597,39.255122],[-76.537524,39.255244],[-76.537463,39.255345],[-76.537419,39.25542],[-76.537343,39.255547],[-76.537286,39.255644],[-76.537213,39.25577],[-76.537145,39.255882],[-76.537074,39.255996],[-76.536997,39.256123],[-76.536935,39.256227],[-76.53688,39.25632],[-76.536818,39.256425],[-76.536791,39.256472],[-76.536745,39.25655],[-76.536697,39.256632],[-76.536661,39.256692],[-76.536657,39.256709],[-76.536647,39.256744],[-76.536632,39.25681],[-76.53661,39.256898],[-76.536597,39.256948],[-76.536585,39.256995],[-76.536553,39.257126],[-76.536532,39.257208],[-76.536513,39.257279],[-76.536492,39.257362],[-76.536459,39.257484],[-76.536452,39.257507],[-76.536446,39.257537],[-76.536437,39.257576],[-76.536422,39.257639],[-76.536405,39.257719],[-76.536385,39.257803],[-76.536365,39.257888],[-76.536356,39.257927],[-76.536329,39.258037],[-76.536288,39.258203],[-76.536272,39.258266],[-76.536272,39.258309],[-76.536271,39.258329],[-76.536269,39.258404],[-76.536269,39.25844],[-76.536268,39.258464],[-76.536272,39.258499],[-76.536279,39.258552],[-76.536286,39.258594],[-76.536297,39.258636],[-76.536314,39.258693],[-76.536321,39.258716],[-76.536334,39.258752],[-76.536339,39.258766],[-76.536356,39.258807],[-76.536369,39.258833],[-76.536389,39.258876],[-76.53641,39.258914],[-76.53643,39.258946],[-76.536444,39.258966],[-76.536453,39.258978],[-76.536466,39.258996],[-76.536473,39.259006],[-76.53648,39.259015],[-76.536487,39.259025],[-76.536494,39.259034],[-76.536501,39.259044],[-76.536509,39.259053],[-76.536517,39.259062],[-76.536524,39.259071],[-76.536532,39.25908],[-76.53654,39.259089],[-76.536548,39.259098],[-76.536557,39.259107],[-76.536565,39.259116],[-76.536573,39.259125],[-76.536581,39.259134],[-76.53659,39.259143],[-76.536598,39.259152],[-76.536607,39.25916],[-76.536616,39.259169],[-76.536625,39.259177],[-76.536634,39.259185],[-76.536644,39.259194],[-76.536653,39.259202],[-76.536662,39.25921],[-76.536672,39.259219],[-76.536681,39.259227],[-76.536691,39.259235],[-76.536701,39.259242],[-76.536711,39.25925],[-76.536721,39.259258],[-76.536731,39.259266],[-76.536741,39.259273],[-76.536751,39.259281],[-76.536761,39.259288],[-76.536772,39.259296],[-76.536782,39.259304],[-76.536792,39.259311],[-76.536802,39.259319],[-76.536812,39.259327],[-76.536823,39.259334],[-76.536833,39.259342],[-76.536843,39.259349],[-76.536853,39.259357],[-76.536864,39.259364],[-76.536874,39.259372],[-76.536884,39.25938],[-76.536894,39.259387],[-76.536904,39.259395],[-76.536914,39.259403],[-76.536924,39.25941],[-76.536934,39.259418],[-76.536944,39.259426],[-76.536954,39.259434],[-76.536964,39.259441],[-76.536974,39.259449],[-76.536984,39.259457],[-76.536994,39.259465],[-76.537004,39.259472],[-76.537014,39.25948],[-76.537024,39.259488],[-76.537034,39.259496],[-76.537044,39.259503],[-76.537054,39.259511],[-76.537064,39.259519],[-76.537074,39.259527],[-76.537084,39.259534],[-76.537094,39.259542],[-76.537105,39.25955],[-76.537115,39.259557],[-76.537125,39.259565],[-76.537135,39.259573],[-76.537145,39.25958],[-76.537155,39.259588],[-76.537166,39.259595],[-76.537176,39.259603],[-76.537186,39.259611],[-76.537196,39.259618],[-76.537206,39.259626],[-76.537217,39.259633],[-76.537227,39.259641],[-76.537237,39.259649],[-76.537247,39.259656],[-76.537257,39.259664],[-76.537267,39.259672],[-76.537277,39.259679],[-76.537287,39.259687],[-76.537298,39.259695],[-76.537308,39.259702],[-76.537318,39.25971],[-76.537328,39.259718],[-76.537338,39.259725],[-76.537348,39.259733],[-76.537358,39.259741],[-76.537368,39.259748],[-76.537378,39.259756],[-76.537388,39.259764],[-76.537398,39.259772],[-76.537408,39.25978],[-76.537418,39.259787],[-76.537428,39.259795],[-76.537437,39.259803],[-76.537447,39.259811],[-76.537457,39.259819],[-76.537467,39.259827],[-76.537476,39.259835],[-76.537486,39.259843],[-76.537496,39.259851],[-76.537506,39.259858],[-76.537516,39.259866],[-76.537526,39.259874],[-76.537536,39.259882],[-76.537546,39.259889],[-76.537556,39.259897],[-76.537566,39.259905],[-76.537576,39.259913],[-76.537587,39.25992],[-76.537597,39.259928],[-76.537607,39.259936],[-76.537617,39.259943],[-76.537627,39.259951],[-76.537637,39.259959],[-76.537647,39.259967],[-76.537657,39.259974],[-76.537667,39.259982],[-76.537677,39.25999],[-76.537688,39.259997],[-76.537698,39.260005],[-76.537708,39.260012],[-76.537719,39.26002],[-76.537729,39.260027],[-76.537739,39.260035],[-76.53775,39.260042],[-76.53776,39.260049],[-76.53777,39.260057],[-76.537781,39.260064],[-76.537791,39.260072],[-76.537801,39.26008],[-76.537811,39.260087],[-76.537821,39.260095],[-76.537831,39.260103],[-76.537842,39.26011],[-76.537852,39.260118],[-76.537862,39.260126],[-76.537872,39.260133],[-76.537882,39.260141],[-76.537892,39.260149],[-76.537902,39.260156],[-76.537912,39.260164],[-76.537923,39.260172],[-76.537933,39.260179],[-76.537943,39.260187],[-76.537953,39.260195],[-76.537963,39.260202],[-76.537973,39.26021],[-76.537983,39.260218],[-76.537993,39.260226],[-76.538003,39.260233],[-76.538013,39.260241],[-76.538023,39.260249],[-76.538033,39.260257],[-76.538043,39.260264],[-76.538053,39.260272],[-76.538063,39.26028],[-76.538073,39.260287],[-76.538083,39.260295],[-76.538093,39.260303],[-76.538104,39.26031],[-76.538114,39.260318],[-76.538124,39.260326],[-76.538134,39.260333],[-76.538144,39.260341],[-76.538154,39.260349],[-76.538164,39.260356],[-76.538174,39.260364],[-76.538185,39.260372],[-76.538195,39.260379],[-76.538205,39.260387],[-76.538215,39.260395],[-76.538225,39.260402],[-76.538235,39.26041],[-76.538246,39.260417],[-76.538256,39.260425],[-76.538266,39.260433],[-76.538276,39.26044],[-76.538286,39.260448],[-76.538296,39.260456],[-76.538307,39.260463],[-76.538317,39.260471],[-76.538327,39.260478],[-76.538337,39.260486],[-76.538347,39.260494],[-76.538357,39.260502],[-76.538367,39.260509],[-76.538377,39.260517],[-76.538388,39.260524],[-76.538398,39.260532],[-76.538408,39.26054],[-76.538418,39.260547],[-76.538428,39.260555],[-76.538439,39.260562],[-76.538449,39.26057],[-76.538459,39.260578],[-76.538469,39.260585],[-76.538479,39.260593],[-76.53849,39.2606],[-76.5385,39.260608],[-76.53851,39.260615],[-76.53852,39.260623],[-76.53853,39.260631],[-76.538541,39.260638],[-76.538551,39.260646],[-76.538561,39.260654],[-76.538571,39.260662],[-76.538581,39.260669],[-76.538591,39.260677],[-76.538601,39.260685],[-76.538611,39.260692],[-76.538621,39.2607],[-76.538631,39.260708],[-76.538641,39.260715],[-76.538651,39.260723],[-76.538661,39.260731],[-76.538671,39.260739],[-76.538681,39.260747],[-76.538691,39.260754],[-76.538701,39.260762],[-76.538711,39.26077],[-76.538721,39.260778],[-76.538731,39.260785],[-76.538741,39.260793],[-76.538751,39.260801],[-76.538761,39.260809],[-76.538771,39.260816],[-76.538781,39.260824],[-76.538791,39.260832],[-76.538801,39.26084],[-76.538811,39.260848],[-76.538821,39.260855],[-76.538831,39.260863],[-76.538841,39.260871],[-76.538851,39.260878],[-76.538861,39.260886],[-76.538871,39.260894],[-76.538881,39.260902],[-76.538892,39.260909],[-76.538902,39.260917],[-76.538912,39.260924],[-76.538922,39.260932],[-76.538932,39.26094],[-76.538942,39.260947],[-76.538953,39.260955],[-76.538963,39.260962],[-76.538973,39.26097],[-76.538983,39.260978],[-76.538993,39.260985],[-76.539003,39.260993],[-76.539014,39.261001],[-76.539024,39.261008],[-76.539034,39.261016],[-76.539044,39.261023],[-76.539054,39.261031],[-76.539064,39.261039],[-76.539075,39.261046],[-76.539085,39.261054],[-76.539095,39.261062],[-76.539105,39.261069],[-76.539115,39.261077],[-76.539126,39.261084],[-76.539136,39.261092],[-76.539146,39.2611],[-76.539156,39.261107],[-76.539166,39.261115],[-76.539176,39.261123],[-76.539186,39.26113],[-76.539196,39.261138],[-76.539206,39.261146],[-76.539217,39.261153],[-76.539227,39.261161],[-76.539237,39.261169],[-76.539247,39.261177],[-76.539257,39.261184],[-76.539267,39.261192],[-76.539277,39.261199],[-76.539288,39.261207],[-76.539298,39.261214],[-76.539309,39.261222],[-76.539319,39.261229],[-76.53933,39.261236],[-76.53934,39.261244],[-76.53935,39.261251],[-76.539361,39.261259],[-76.539371,39.261266],[-76.539381,39.261274],[-76.539391,39.261282],[-76.539401,39.26129],[-76.539411,39.261298],[-76.539421,39.261305],[-76.539431,39.261313],[-76.539441,39.261321],[-76.539451,39.261328],[-76.539461,39.261336],[-76.539471,39.261344],[-76.539481,39.261352],[-76.539491,39.261359],[-76.539501,39.261367],[-76.53952,39.261381],[-76.539531,39.261389],[-76.539541,39.261397],[-76.539551,39.261404],[-76.539561,39.261412],[-76.539571,39.26142],[-76.539581,39.261427],[-76.539591,39.261435],[-76.539601,39.261443],[-76.539611,39.26145],[-76.539622,39.261458],[-76.539632,39.261466],[-76.539642,39.261473],[-76.539652,39.261481],[-76.539662,39.261489],[-76.539672,39.261496],[-76.539682,39.261504],[-76.539692,39.261512],[-76.539702,39.261519],[-76.539712,39.261527],[-76.539722,39.261535],[-76.539731,39.261543],[-76.539741,39.261551],[-76.539751,39.261559],[-76.53976,39.261567],[-76.53977,39.261575],[-76.53978,39.261583],[-76.539789,39.261591],[-76.539799,39.2616],[-76.539808,39.261608],[-76.539818,39.261616],[-76.539827,39.261624],[-76.539836,39.261633],[-76.539845,39.261641],[-76.539854,39.26165],[-76.539863,39.261658],[-76.539873,39.261666],[-76.539882,39.261674],[-76.539891,39.261683],[-76.5399,39.261691],[-76.539909,39.261699],[-76.539918,39.261708],[-76.539927,39.261716],[-76.539936,39.261725],[-76.539945,39.261734],[-76.539954,39.261742],[-76.539963,39.261751],[-76.539972,39.261759],[-76.53998,39.261768],[-76.539989,39.261777],[-76.539997,39.261785],[-76.540006,39.261794],[-76.540014,39.261803],[-76.540023,39.261812],[-76.540031,39.261821],[-76.540039,39.26183],[-76.540048,39.261838],[-76.540056,39.261847],[-76.540064,39.261856],[-76.540073,39.261865],[-76.540081,39.261874],[-76.540089,39.261883],[-76.540097,39.261892],[-76.540105,39.261901],[-76.540113,39.26191],[-76.540121,39.261919],[-76.54013,39.261928],[-76.540138,39.261937],[-76.540146,39.261946],[-76.540154,39.261955],[-76.540162,39.261964],[-76.540169,39.261973],[-76.540177,39.261983],[-76.540185,39.261992],[-76.540192,39.262001],[-76.5402,39.26201],[-76.540207,39.26202],[-76.540215,39.262029],[-76.540222,39.262038],[-76.54023,39.262048],[-76.540237,39.262057],[-76.540244,39.262067],[-76.540251,39.262076],[-76.540258,39.262085],[-76.540265,39.262095],[-76.540273,39.262104],[-76.54028,39.262114],[-76.540287,39.262123],[-76.540291,39.262128],[-76.540294,39.262133],[-76.540301,39.262142],[-76.540308,39.262152],[-76.540315,39.262162],[-76.540321,39.262171],[-76.540328,39.262181],[-76.540335,39.262191],[-76.540341,39.2622],[-76.540348,39.26221],[-76.540355,39.26222],[-76.540361,39.262229],[-76.540368,39.262239],[-76.540374,39.262249],[-76.540381,39.262259],[-76.540388,39.262268],[-76.540394,39.262278],[-76.540401,39.262288],[-76.540407,39.262297],[-76.540414,39.262307],[-76.540421,39.262317],[-76.540427,39.262327],[-76.540434,39.262336],[-76.54044,39.262346],[-76.540446,39.262356],[-76.540453,39.262366],[-76.540459,39.262376],[-76.540465,39.262385],[-76.540471,39.262395],[-76.540477,39.262405],[-76.540483,39.262415],[-76.540489,39.262425],[-76.540494,39.262435],[-76.5405,39.262445],[-76.540506,39.262455],[-76.540512,39.262466],[-76.540518,39.262476],[-76.540523,39.262486],[-76.540529,39.262496],[-76.540535,39.262506],[-76.54054,39.262516],[-76.540546,39.262526],[-76.540551,39.262536],[-76.540556,39.262546],[-76.540562,39.262556],[-76.540567,39.262567],[-76.540572,39.262577],[-76.540577,39.262587],[-76.540582,39.262597],[-76.540587,39.262608],[-76.540592,39.262618],[-76.540597,39.262628],[-76.540601,39.262639],[-76.540606,39.262649],[-76.540611,39.262659],[-76.540616,39.26267],[-76.54062,39.26268],[-76.540625,39.26269],[-76.540629,39.262701],[-76.540634,39.262711],[-76.540638,39.262722],[-76.540643,39.262732],[-76.540647,39.262743],[-76.540652,39.262753],[-76.540656,39.262763],[-76.540661,39.262774],[-76.540666,39.262784],[-76.54067,39.262794],[-76.540675,39.262805],[-76.54068,39.262815],[-76.540684,39.262826],[-76.540689,39.262836],[-76.540693,39.262846],[-76.540698,39.262857],[-76.540702,39.262867],[-76.540706,39.262878],[-76.54071,39.262888],[-76.540714,39.262899],[-76.540719,39.262909],[-76.540723,39.26292],[-76.540727,39.26293],[-76.540731,39.262941],[-76.540734,39.262951],[-76.540738,39.262962],[-76.540741,39.262973],[-76.540745,39.262983],[-76.540748,39.262994],[-76.540751,39.263005],[-76.540755,39.263015],[-76.540758,39.263026],[-76.540762,39.263037],[-76.540765,39.263047],[-76.540769,39.263058],[-76.540772,39.263069],[-76.540775,39.263079],[-76.540778,39.26309],[-76.540781,39.263101],[-76.540784,39.263112],[-76.540787,39.263122],[-76.54079,39.263133],[-76.540792,39.263144],[-76.540795,39.263155],[-76.540798,39.263165],[-76.5408,39.263176],[-76.540803,39.263187],[-76.540805,39.263198],[-76.540808,39.263209],[-76.54081,39.263219],[-76.540813,39.26323],[-76.540815,39.263241],[-76.540818,39.263252],[-76.54082,39.263263],[-76.540822,39.263274],[-76.540824,39.263284],[-76.540826,39.263295],[-76.540828,39.263306],[-76.540831,39.263317],[-76.540833,39.263328],[-76.540835,39.263339],[-76.540837,39.26335],[-76.540839,39.26336],[-76.540841,39.263371],[-76.540842,39.263382],[-76.540844,39.263393],[-76.540846,39.263404],[-76.540848,39.263415],[-76.540849,39.263426],[-76.540851,39.263437],[-76.540853,39.263448],[-76.540855,39.263459],[-76.540857,39.263469],[-76.540858,39.26348],[-76.540859,39.263491],[-76.540861,39.263502],[-76.540862,39.263513],[-76.540863,39.263524],[-76.540864,39.263535],[-76.540865,39.263546],[-76.540866,39.263557],[-76.540867,39.263568],[-76.540868,39.263579],[-76.540868,39.26359],[-76.540869,39.263601],[-76.54087,39.263612],[-76.54087,39.263623],[-76.540871,39.263634],[-76.540872,39.263645],[-76.540872,39.263656],[-76.540873,39.263667],[-76.540874,39.263678],[-76.540874,39.263689],[-76.540875,39.2637],[-76.540875,39.263711],[-76.540876,39.263722],[-76.540876,39.263733],[-76.540876,39.263743],[-76.540876,39.263754],[-76.540876,39.263765],[-76.540876,39.263776],[-76.540875,39.263787],[-76.540875,39.263798],[-76.540875,39.263809],[-76.540875,39.26382],[-76.540875,39.263831],[-76.540875,39.263842],[-76.540874,39.263853],[-76.540874,39.263864],[-76.540874,39.263875],[-76.540874,39.263886],[-76.540873,39.263897],[-76.540873,39.263908],[-76.540872,39.263919],[-76.540872,39.263924],[-76.540871,39.26393],[-76.540871,39.263935],[-76.540871,39.263941],[-76.54087,39.263946],[-76.54087,39.263952],[-76.54087,39.263957],[-76.540869,39.263963],[-76.540869,39.263968],[-76.540869,39.263974],[-76.540868,39.263979],[-76.540868,39.263985],[-76.540867,39.26399],[-76.540867,39.263996],[-76.540866,39.264001],[-76.540866,39.264007],[-76.540865,39.264012],[-76.540864,39.264018],[-76.540864,39.264023],[-76.540863,39.264028],[-76.540863,39.264034],[-76.540862,39.264039],[-76.540862,39.264045],[-76.540861,39.26405],[-76.54086,39.264056],[-76.54086,39.264061],[-76.540859,39.264067],[-76.540858,39.264072],[-76.540858,39.264078],[-76.540857,39.264083],[-76.540856,39.264089],[-76.540856,39.264094],[-76.540855,39.2641],[-76.540854,39.264105],[-76.540853,39.26411],[-76.540853,39.264116],[-76.540852,39.264121],[-76.540851,39.264127],[-76.54085,39.264132],[-76.540849,39.264138],[-76.540849,39.264143],[-76.540848,39.264149],[-76.540847,39.264154],[-76.540846,39.26416],[-76.540845,39.264165],[-76.540844,39.26417],[-76.540843,39.264176],[-76.540842,39.264181],[-76.540842,39.264187],[-76.540841,39.264192],[-76.54084,39.264198],[-76.540839,39.264203],[-76.540838,39.264209],[-76.540837,39.264214],[-76.540836,39.264219],[-76.540835,39.264225],[-76.540835,39.26423],[-76.540834,39.264236],[-76.540833,39.264241],[-76.540832,39.264247],[-76.540831,39.264252],[-76.540829,39.264258],[-76.540829,39.264263],[-76.540828,39.264268],[-76.540827,39.264274],[-76.540826,39.264279],[-76.540825,39.264285],[-76.540824,39.26429],[-76.540823,39.264296],[-76.540822,39.264301],[-76.540821,39.264306],[-76.54082,39.264312],[-76.540819,39.264317],[-76.540818,39.264323],[-76.540817,39.264328],[-76.540816,39.264334],[-76.540814,39.264339],[-76.540813,39.264345],[-76.540812,39.26435],[-76.540811,39.264355],[-76.54081,39.264361],[-76.540809,39.264366],[-76.540808,39.264372],[-76.540807,39.264377],[-76.540806,39.264382],[-76.540805,39.264388],[-76.540803,39.264393],[-76.540802,39.264399],[-76.540801,39.264404],[-76.5408,39.26441],[-76.540799,39.264415],[-76.540797,39.26442],[-76.540796,39.264426],[-76.540795,39.264431],[-76.540793,39.264437],[-76.540792,39.264442],[-76.540791,39.264447],[-76.540789,39.264453],[-76.540788,39.264458],[-76.540787,39.264463],[-76.540785,39.264469],[-76.540784,39.264474],[-76.540783,39.26448],[-76.540782,39.264485],[-76.54078,39.26449],[-76.540779,39.264496],[-76.540778,39.264501],[-76.540776,39.264507],[-76.540775,39.264512],[-76.540773,39.264517],[-76.540772,39.264523],[-76.54077,39.264528],[-76.540769,39.264534],[-76.540768,39.264539],[-76.540766,39.264544],[-76.540765,39.26455],[-76.540763,39.264555],[-76.540762,39.26456],[-76.54076,39.264566],[-76.540759,39.264571],[-76.540757,39.264577],[-76.540756,39.264582],[-76.540754,39.264587],[-76.540753,39.264593],[-76.540751,39.264598],[-76.540749,39.264603],[-76.540748,39.264609],[-76.540746,39.264614],[-76.540744,39.264619],[-76.540743,39.264625],[-76.540741,39.26463],[-76.540739,39.264635],[-76.540738,39.264641],[-76.540736,39.264646],[-76.540734,39.264651],[-76.540733,39.264657],[-76.540731,39.264662],[-76.540729,39.264667],[-76.540727,39.264673],[-76.540726,39.264678],[-76.540724,39.264683],[-76.540722,39.264689],[-76.540721,39.264694],[-76.540719,39.264699],[-76.540717,39.264705],[-76.540715,39.26471],[-76.540714,39.264715],[-76.540712,39.26472],[-76.54071,39.264726],[-76.540708,39.264731],[-76.540706,39.264736],[-76.540705,39.264742],[-76.540703,39.264747],[-76.540701,39.264752],[-76.540699,39.264758],[-76.540697,39.264763],[-76.540695,39.264768],[-76.540693,39.264773],[-76.540691,39.264779],[-76.540689,39.264784],[-76.540687,39.264789],[-76.540685,39.264795],[-76.540683,39.2648],[-76.540681,39.264805],[-76.540679,39.26481],[-76.540677,39.264816],[-76.540675,39.264821],[-76.540673,39.264826],[-76.54067,39.264831],[-76.540668,39.264836],[-76.540666,39.264842],[-76.540664,39.264847],[-76.540662,39.264852],[-76.540659,39.264857],[-76.540657,39.264863],[-76.540655,39.264868],[-76.540653,39.264873],[-76.54065,39.264878],[-76.540648,39.264883],[-76.540644,39.264888],[-76.540639,39.264892],[-76.540634,39.264896],[-76.540628,39.264898],[-76.540622,39.264901],[-76.540617,39.264905],[-76.540612,39.264909],[-76.540607,39.264913],[-76.540603,39.264917],[-76.540598,39.264922],[-76.540596,39.264927],[-76.540595,39.264932],[-76.540594,39.264938],[-76.540594,39.264943],[-76.540594,39.264949],[-76.540593,39.264954],[-76.540593,39.26496],[-76.540594,39.264965],[-76.540595,39.264971],[-76.540595,39.264976],[-76.540595,39.264982],[-76.540596,39.264987],[-76.540596,39.264993],[-76.540594,39.264998],[-76.540591,39.265003],[-76.540589,39.265008],[-76.540586,39.265013],[-76.540584,39.265019],[-76.540581,39.265024],[-76.540579,39.265029],[-76.540576,39.265034],[-76.540574,39.265039],[-76.540571,39.265044],[-76.540569,39.265049],[-76.540566,39.265054],[-76.540564,39.26506],[-76.540561,39.265065],[-76.540559,39.26507],[-76.540556,39.265075],[-76.540554,39.26508],[-76.540551,39.265085],[-76.540549,39.26509],[-76.540546,39.265096],[-76.540544,39.265101],[-76.540541,39.265106],[-76.540539,39.265111],[-76.540536,39.265116],[-76.540534,39.265121],[-76.540531,39.265126],[-76.540529,39.265131],[-76.540526,39.265136],[-76.540522,39.265141],[-76.540517,39.265145],[-76.540513,39.26515],[-76.540508,39.265154],[-76.540504,39.265158],[-76.540497,39.265161],[-76.540492,39.265164],[-76.540487,39.265167],[-76.540481,39.265171],[-76.540477,39.265175],[-76.540472,39.265179],[-76.540467,39.265183],[-76.540463,39.265188],[-76.540459,39.265193],[-76.540456,39.265197],[-76.540452,39.265202],[-76.540449,39.265207],[-76.540446,39.265212],[-76.540443,39.265217],[-76.540439,39.265222],[-76.540436,39.265227],[-76.540433,39.265232],[-76.540431,39.265237],[-76.54043,39.265242],[-76.540429,39.265247],[-76.540428,39.265253],[-76.540427,39.265258],[-76.540427,39.265264],[-76.540427,39.265269],[-76.540427,39.265275],[-76.540427,39.26528],[-76.540427,39.265286],[-76.540427,39.265292],[-76.540427,39.265297],[-76.540427,39.265302],[-76.540427,39.265308],[-76.540427,39.265313],[-76.540428,39.265319],[-76.540428,39.265324],[-76.540429,39.26533],[-76.540429,39.265335],[-76.54043,39.265341],[-76.54043,39.265346],[-76.540431,39.265352],[-76.540431,39.265357],[-76.540432,39.265363],[-76.540433,39.265368],[-76.540433,39.265374],[-76.540433,39.265379],[-76.540432,39.265385],[-76.54043,39.26539],[-76.540427,39.265395],[-76.540424,39.2654],[-76.54042,39.265404],[-76.540415,39.265408],[-76.540411,39.265413],[-76.540407,39.265417],[-76.540402,39.265422],[-76.540398,39.265426],[-76.540394,39.26543],[-76.540391,39.265435],[-76.540389,39.265441],[-76.540387,39.265446],[-76.540386,39.265451],[-76.540384,39.265457],[-76.540383,39.265462],[-76.540381,39.265467],[-76.540381,39.265468],[-76.54038,39.265473],[-76.540378,39.265478],[-76.540377,39.265483],[-76.540376,39.265489],[-76.540375,39.265494],[-76.540374,39.2655],[-76.540373,39.265505],[-76.540372,39.265511],[-76.540371,39.265516],[-76.54037,39.265522],[-76.540369,39.265527],[-76.540368,39.265532],[-76.540367,39.265538],[-76.540365,39.265543],[-76.540364,39.265549],[-76.540363,39.265554],[-76.540362,39.265559],[-76.540361,39.265565],[-76.54036,39.26557],[-76.540358,39.265576],[-76.540357,39.265581],[-76.540356,39.265587],[-76.540354,39.265592],[-76.540353,39.265597],[-76.540352,39.265603],[-76.54035,39.265608],[-76.540348,39.265613],[-76.540347,39.265619],[-76.540345,39.265624],[-76.540343,39.265629],[-76.540341,39.265635],[-76.540339,39.26564],[-76.540337,39.265645],[-76.540335,39.26565],[-76.540333,39.265656],[-76.540332,39.265661],[-76.54033,39.265666],[-76.540329,39.265672],[-76.540327,39.265677],[-76.540326,39.265683],[-76.540325,39.265688],[-76.540324,39.265693],[-76.540323,39.265699],[-76.540322,39.265704],[-76.540321,39.26571],[-76.54032,39.265715],[-76.540319,39.265721],[-76.540318,39.265726],[-76.540317,39.265731],[-76.540316,39.265737],[-76.540315,39.265742],[-76.540314,39.265748],[-76.540313,39.265753],[-76.540312,39.265759],[-76.540311,39.265764],[-76.54031,39.26577],[-76.540309,39.265775],[-76.540308,39.265781],[-76.540307,39.265786],[-76.540306,39.265791],[-76.540305,39.265797],[-76.540303,39.265802],[-76.540302,39.265807],[-76.5403,39.265813],[-76.540298,39.265818],[-76.540295,39.265823],[-76.540293,39.265828],[-76.54029,39.265833],[-76.540288,39.265839],[-76.540285,39.265844],[-76.540283,39.265849],[-76.54028,39.265854],[-76.540278,39.265859],[-76.540276,39.265864],[-76.540274,39.26587],[-76.540272,39.265875],[-76.54027,39.26588],[-76.540268,39.265885],[-76.540266,39.265891],[-76.540264,39.265896],[-76.540262,39.265901],[-76.54026,39.265907],[-76.540258,39.265912],[-76.540256,39.265917],[-76.540254,39.265922],[-76.540252,39.265928],[-76.54025,39.265933],[-76.540249,39.265938],[-76.540247,39.265944],[-76.540245,39.265949],[-76.540243,39.265954],[-76.540242,39.26596],[-76.54024,39.265965],[-76.540238,39.26597],[-76.540237,39.265976],[-76.540235,39.265981],[-76.540233,39.265986],[-76.540232,39.265992],[-76.54023,39.265997],[-76.540229,39.266002],[-76.540227,39.266008],[-76.540225,39.266013],[-76.540224,39.266018],[-76.540222,39.266024],[-76.54022,39.266029],[-76.540218,39.266034],[-76.540216,39.26604],[-76.540214,39.266045],[-76.540213,39.26605],[-76.540211,39.266055],[-76.540209,39.266061],[-76.540207,39.266066],[-76.540205,39.266071],[-76.540203,39.266077],[-76.540201,39.266082],[-76.540199,39.266087],[-76.540197,39.266092],[-76.540195,39.266098],[-76.540193,39.266103],[-76.540191,39.266108],[-76.540189,39.266113],[-76.540186,39.266119],[-76.540184,39.266124],[-76.540182,39.266129],[-76.54018,39.266134],[-76.540178,39.26614],[-76.540176,39.266145],[-76.540174,39.26615],[-76.540171,39.266155],[-76.540169,39.26616],[-76.540167,39.266166],[-76.540165,39.266171],[-76.540162,39.266176],[-76.54016,39.266181],[-76.540158,39.266186],[-76.540155,39.266192],[-76.540153,39.266197],[-76.540151,39.266202],[-76.540148,39.266207],[-76.540146,39.266212],[-76.540139,39.266224],[-76.540132,39.266234],[-76.540126,39.266243],[-76.540119,39.266253],[-76.540113,39.266263],[-76.540108,39.266273],[-76.540103,39.266283],[-76.540098,39.266294],[-76.540094,39.266304],[-76.54009,39.266315],[-76.540087,39.266326],[-76.540084,39.266336],[-76.540082,39.266347],[-76.540079,39.266358],[-76.540077,39.266369],[-76.540074,39.26638],[-76.540072,39.26639],[-76.540069,39.266401],[-76.540066,39.266412],[-76.540063,39.266423],[-76.54006,39.266434],[-76.540057,39.266444],[-76.540053,39.266455],[-76.540047,39.266465],[-76.54004,39.266474],[-76.540033,39.266484],[-76.540026,39.266493],[-76.540018,39.266502],[-76.540011,39.266512],[-76.540004,39.266521],[-76.539996,39.266531],[-76.539988,39.26654],[-76.53998,39.266549],[-76.539972,39.266558],[-76.539964,39.266567],[-76.539956,39.266576],[-76.539947,39.266584],[-76.539939,39.266593],[-76.53993,39.266602],[-76.539922,39.266611],[-76.539913,39.266619],[-76.539904,39.266628],[-76.539894,39.266636],[-76.539885,39.266644],[-76.539875,39.266652],[-76.539866,39.26666],[-76.539856,39.266668],[-76.539846,39.266676],[-76.539836,39.266684],[-76.539826,39.266692],[-76.539817,39.2667],[-76.539807,39.266707],[-76.539797,39.266715],[-76.539787,39.266723],[-76.539777,39.266731],[-76.539767,39.266738],[-76.539756,39.266746],[-76.539746,39.266754],[-76.539736,39.266761],[-76.539725,39.266768],[-76.539714,39.266775],[-76.539704,39.266783],[-76.539693,39.26679],[-76.539683,39.266797],[-76.539672,39.266804],[-76.539662,39.266812],[-76.539651,39.266819],[-76.539641,39.266827],[-76.539631,39.266834],[-76.53962,39.266842],[-76.53961,39.266849],[-76.5396,39.266857],[-76.53959,39.266865],[-76.539579,39.266872],[-76.539567,39.266878],[-76.539554,39.266882],[-76.539541,39.266886],[-76.539528,39.26689],[-76.539515,39.266894],[-76.539502,39.266898],[-76.539488,39.266902],[-76.539475,39.266906],[-76.539462,39.266911],[-76.539454,39.26692],[-76.53945,39.26693],[-76.539447,39.266941],[-76.539446,39.266952],[-76.539446,39.266963],[-76.539446,39.266974],[-76.539447,39.266985],[-76.539448,39.266996],[-76.53945,39.267007],[-76.539451,39.267018],[-76.539453,39.267029],[-76.539456,39.267039],[-76.539458,39.26705],[-76.539461,39.267061],[-76.539468,39.26707],[-76.539478,39.267078],[-76.539491,39.267083],[-76.539504,39.267085],[-76.539518,39.267087],[-76.539532,39.267089],[-76.539546,39.267091],[-76.53956,39.267092],[-76.539574,39.267093],[-76.539589,39.267094],[-76.539603,39.267095],[-76.539617,39.267096],[-76.539631,39.267097],[-76.539645,39.267097],[-76.539659,39.267098],[-76.539673,39.267098],[-76.539687,39.267098],[-76.539701,39.267099],[-76.539716,39.267099],[-76.53973,39.267099],[-76.539744,39.2671],[-76.539758,39.2671],[-76.539772,39.267101],[-76.539786,39.267101],[-76.5398,39.267102],[-76.539814,39.267103],[-76.539828,39.267103],[-76.539843,39.267104],[-76.539857,39.267104],[-76.539871,39.267105],[-76.539885,39.267106],[-76.539899,39.267106],[-76.539913,39.267107],[-76.539927,39.267108],[-76.539941,39.267108],[-76.539955,39.267109],[-76.53997,39.267109],[-76.539984,39.26711],[-76.539998,39.26711],[-76.540012,39.26711],[-76.540026,39.267111],[-76.54004,39.267111],[-76.540054,39.267112],[-76.540068,39.267112],[-76.540082,39.267113],[-76.540097,39.267113],[-76.540111,39.267114],[-76.540125,39.267114],[-76.540139,39.267115],[-76.540153,39.267115],[-76.540167,39.267116],[-76.540181,39.267116],[-76.540195,39.267116],[-76.540209,39.267117],[-76.540224,39.267117],[-76.540238,39.267117],[-76.540252,39.267117],[-76.540266,39.267117],[-76.54028,39.267117],[-76.540294,39.267117],[-76.540308,39.267117],[-76.540323,39.267117],[-76.540337,39.267117],[-76.540351,39.267117],[-76.540365,39.267117],[-76.540379,39.267116],[-76.540393,39.267116],[-76.540407,39.267115],[-76.540422,39.267114],[-76.540435,39.267115],[-76.540429,39.267125],[-76.540417,39.267131],[-76.540403,39.267134],[-76.540389,39.267134],[-76.540375,39.267133],[-76.540361,39.267132],[-76.540347,39.267132],[-76.540333,39.267131],[-76.540318,39.267131],[-76.540304,39.267131],[-76.54029,39.267131],[-76.540276,39.267131],[-76.540262,39.267131],[-76.540248,39.267131],[-76.540234,39.267131],[-76.54022,39.267132],[-76.540205,39.267132],[-76.540191,39.267133],[-76.540177,39.267133],[-76.540163,39.267132],[-76.540149,39.267131],[-76.540135,39.26713],[-76.540121,39.267129],[-76.540107,39.267128],[-76.540093,39.267127],[-76.540079,39.267126],[-76.540065,39.267125],[-76.540051,39.267124],[-76.540036,39.267124],[-76.540022,39.267124],[-76.540008,39.267123],[-76.539994,39.267123],[-76.53998,39.267123],[-76.539966,39.267122],[-76.539952,39.267122],[-76.539938,39.267122],[-76.539923,39.267121],[-76.539909,39.267121],[-76.539895,39.267121],[-76.539881,39.26712],[-76.539867,39.26712],[-76.539853,39.26712],[-76.539839,39.26712],[-76.539825,39.26712],[-76.53981,39.267119],[-76.539796,39.267119],[-76.539782,39.267118],[-76.539768,39.267117],[-76.539754,39.267116],[-76.53974,39.267115],[-76.539726,39.267114],[-76.539712,39.267113],[-76.539698,39.267113],[-76.539684,39.267112],[-76.53967,39.267111],[-76.539655,39.267111],[-76.539641,39.26711],[-76.539627,39.267109],[-76.539613,39.267109],[-76.539599,39.267108],[-76.539585,39.267108],[-76.539571,39.267107],[-76.539557,39.267107],[-76.539543,39.267107],[-76.539528,39.267108],[-76.539514,39.267109],[-76.5395,39.26711],[-76.539487,39.267113],[-76.539473,39.267117],[-76.539466,39.267126],[-76.539467,39.267137],[-76.539468,39.267148],[-76.539469,39.267159],[-76.53947,39.26717],[-76.539471,39.26718],[-76.539473,39.267191],[-76.539474,39.267202],[-76.539476,39.267213],[-76.539477,39.267224],[-76.539479,39.267235],[-76.53948,39.267246],[-76.539483,39.267257],[-76.539486,39.267268],[-76.539491,39.267278],[-76.539493,39.267289],[-76.539491,39.2673],[-76.539486,39.26731],[-76.53948,39.267317],[-76.539479,39.267319],[-76.539466,39.267324],[-76.539452,39.267326],[-76.539438,39.267328],[-76.539425,39.267326],[-76.539419,39.267316],[-76.539414,39.267306],[-76.539417,39.267284],[-76.539417,39.267273],[-76.539415,39.267262],[-76.539413,39.267251],[-76.53941,39.267241],[-76.539408,39.26723],[-76.539405,39.267219],[-76.539403,39.267208],[-76.5394,39.267197],[-76.539398,39.267187],[-76.539395,39.267176],[-76.539393,39.267165],[-76.539391,39.267154],[-76.539389,39.267143],[-76.539387,39.267132],[-76.539385,39.267121],[-76.539384,39.26711],[-76.539383,39.2671],[-76.539381,39.267089],[-76.53938,39.267078],[-76.539379,39.267067],[-76.539378,39.267056],[-76.539377,39.267045],[-76.539376,39.267034],[-76.539375,39.267023],[-76.539374,39.267012],[-76.539372,39.267001],[-76.539371,39.26699],[-76.539369,39.266979],[-76.539367,39.266968],[-76.539365,39.266957],[-76.539363,39.266946],[-76.539361,39.266936],[-76.539353,39.266926],[-76.539342,39.26692],[-76.539328,39.266919],[-76.539314,39.266918],[-76.5393,39.266916],[-76.539286,39.266915],[-76.539272,39.266914],[-76.539258,39.266913],[-76.539244,39.266913],[-76.539229,39.266913],[-76.539215,39.266914],[-76.539201,39.266915],[-76.539187,39.266916],[-76.539173,39.266917],[-76.539159,39.266918],[-76.539145,39.266919],[-76.539131,39.26692],[-76.539117,39.266921],[-76.539103,39.266922],[-76.539089,39.266923],[-76.539075,39.266924],[-76.53906,39.266924],[-76.539046,39.266925],[-76.539032,39.266926],[-76.539018,39.266926],[-76.539004,39.266927],[-76.53899,39.266927],[-76.538976,39.266928],[-76.538962,39.266928],[-76.538948,39.266929],[-76.538933,39.266929],[-76.538919,39.266929],[-76.538905,39.26693],[-76.538891,39.26693],[-76.538877,39.26693],[-76.538863,39.26693],[-76.538849,39.26693],[-76.538835,39.26693],[-76.53882,39.266929],[-76.538806,39.266929],[-76.538792,39.266929],[-76.538778,39.266928],[-76.538764,39.266928],[-76.53875,39.266928],[-76.538736,39.266928],[-76.538722,39.266928],[-76.538707,39.266928],[-76.538693,39.266928],[-76.538679,39.266929],[-76.538665,39.266929],[-76.538651,39.266929],[-76.538637,39.266929],[-76.538623,39.266929],[-76.538609,39.266928],[-76.538594,39.266928],[-76.53858,39.266927],[-76.538566,39.266926],[-76.538552,39.266925],[-76.538538,39.266924],[-76.538524,39.266923],[-76.538522,39.266923],[-76.53851,39.266922],[-76.538496,39.266921],[-76.538482,39.266919],[-76.538468,39.266918],[-76.538454,39.266917],[-76.53844,39.266917],[-76.538426,39.266916],[-76.538411,39.266915],[-76.538397,39.266915],[-76.538383,39.266915],[-76.538369,39.266915],[-76.538355,39.266914],[-76.538341,39.266914],[-76.538327,39.266913],[-76.538313,39.266913],[-76.538299,39.266912],[-76.538285,39.26691],[-76.538271,39.266909],[-76.538257,39.266907],[-76.538243,39.266905],[-76.538229,39.266903],[-76.538215,39.266901],[-76.538201,39.2669],[-76.538187,39.266898],[-76.538173,39.266896],[-76.538159,39.266895],[-76.538145,39.266894],[-76.538131,39.266894],[-76.538117,39.266893],[-76.538102,39.266893],[-76.538088,39.266893],[-76.538074,39.266893],[-76.53806,39.266893],[-76.538046,39.266893],[-76.538032,39.266893],[-76.538018,39.266894],[-76.538004,39.266894],[-76.537989,39.266894],[-76.537975,39.266894],[-76.537961,39.266894],[-76.537947,39.266895],[-76.537933,39.266895],[-76.537919,39.266895],[-76.537904,39.266895],[-76.537891,39.266897],[-76.537878,39.266902],[-76.537867,39.266909],[-76.537858,39.266917],[-76.537849,39.266926],[-76.53784,39.266934],[-76.537829,39.266938],[-76.537815,39.266936],[-76.537806,39.266928],[-76.5378,39.266918],[-76.537798,39.266907],[-76.537795,39.266896],[-76.537792,39.266885],[-76.537787,39.266875],[-76.537775,39.266869],[-76.537761,39.266867],[-76.537747,39.266866],[-76.537733,39.266867],[-76.537719,39.266867],[-76.537704,39.266868],[-76.53769,39.266869],[-76.537676,39.266869],[-76.537662,39.26687],[-76.537648,39.266869],[-76.537634,39.266868],[-76.53762,39.266866],[-76.537606,39.266865],[-76.537592,39.266864],[-76.537578,39.266863],[-76.537564,39.266863],[-76.53755,39.266862],[-76.537536,39.266861],[-76.537521,39.266861],[-76.537507,39.26686],[-76.537493,39.26686],[-76.537479,39.26686],[-76.537465,39.266859],[-76.537451,39.266859],[-76.537437,39.266858],[-76.537423,39.266857],[-76.537409,39.266855],[-76.537395,39.266853],[-76.537381,39.266851],[-76.537367,39.266849],[-76.537353,39.266847],[-76.537339,39.266845],[-76.537326,39.266842],[-76.537312,39.26684],[-76.537298,39.266838],[-76.537284,39.266836],[-76.53727,39.266834],[-76.537256,39.266832],[-76.537242,39.26683],[-76.537228,39.266829],[-76.537214,39.266828],[-76.5372,39.266827],[-76.537186,39.266826],[-76.537172,39.266826],[-76.537158,39.266825],[-76.537144,39.266825],[-76.537129,39.266824],[-76.537115,39.266823],[-76.537102,39.266821],[-76.537088,39.266819],[-76.537074,39.266817],[-76.53706,39.266815],[-76.537046,39.266813],[-76.537032,39.266811],[-76.537018,39.266809],[-76.537004,39.266807],[-76.536991,39.266804],[-76.536977,39.266801],[-76.536963,39.266798],[-76.53695,39.266795],[-76.536936,39.266791],[-76.536923,39.266788],[-76.536909,39.266785],[-76.536896,39.266782],[-76.536882,39.26678],[-76.536868,39.266777],[-76.536854,39.266776],[-76.53684,39.266775],[-76.536826,39.266774],[-76.536812,39.266773],[-76.536798,39.266771],[-76.536784,39.266769],[-76.53677,39.266767],[-76.536756,39.266765],[-76.536742,39.266763],[-76.536729,39.266761],[-76.536715,39.266759],[-76.536701,39.266758],[-76.536687,39.266756],[-76.536673,39.266754],[-76.536659,39.266753],[-76.536645,39.266751],[-76.536631,39.26675],[-76.536617,39.266748],[-76.536603,39.266747],[-76.536589,39.266746],[-76.536575,39.266745],[-76.53656,39.266744],[-76.536546,39.266743],[-76.536532,39.266742],[-76.536518,39.266741],[-76.536504,39.266739],[-76.53649,39.266738],[-76.536477,39.266735],[-76.536463,39.266733],[-76.536449,39.26673],[-76.536436,39.266727],[-76.536422,39.266724],[-76.536408,39.266721],[-76.536395,39.266718],[-76.536381,39.266715],[-76.536368,39.266712],[-76.536354,39.266709],[-76.53634,39.266706],[-76.536327,39.266703],[-76.536313,39.266699],[-76.5363,39.266696],[-76.536287,39.266692],[-76.536274,39.266688],[-76.53626,39.266684],[-76.536247,39.26668],[-76.536234,39.266676],[-76.536221,39.266672],[-76.536208,39.266667],[-76.536195,39.266663],[-76.536182,39.26666],[-76.536167,39.266659],[-76.536153,39.26666],[-76.536141,39.266665],[-76.536132,39.266674],[-76.536123,39.266682],[-76.536111,39.266688],[-76.5361,39.266684],[-76.536101,39.266673],[-76.536101,39.266662],[-76.536099,39.266651],[-76.536087,39.266646],[-76.536073,39.266644],[-76.536059,39.266642],[-76.536045,39.266639],[-76.536032,39.266636],[-76.536018,39.266633],[-76.536004,39.266631],[-76.53599,39.266629],[-76.535976,39.266628],[-76.535962,39.266627],[-76.535948,39.266625],[-76.535934,39.266623],[-76.53592,39.266621],[-76.535907,39.266619],[-76.535893,39.266616],[-76.535879,39.266613],[-76.535866,39.266611],[-76.535852,39.266609],[-76.535838,39.266608],[-76.535824,39.266607],[-76.535809,39.266606],[-76.535795,39.266606],[-76.535781,39.266605],[-76.535767,39.266604],[-76.535753,39.266603],[-76.535739,39.266601],[-76.535725,39.266599],[-76.535711,39.266598],[-76.535697,39.266596],[-76.535683,39.266595],[-76.535669,39.266595],[-76.535655,39.266594],[-76.53565,39.266594],[-76.535641,39.266594],[-76.535627,39.266592],[-76.535613,39.266591],[-76.535599,39.26659],[-76.535585,39.266588],[-76.535571,39.266586],[-76.535557,39.266585],[-76.535543,39.266584],[-76.535529,39.266582],[-76.535515,39.26658],[-76.535502,39.266576],[-76.535489,39.266572],[-76.535475,39.266568],[-76.535462,39.266565],[-76.535448,39.266561],[-76.535436,39.266557],[-76.535423,39.266552],[-76.53541,39.266547],[-76.535397,39.266543],[-76.535385,39.266538],[-76.535372,39.266533],[-76.53536,39.266527],[-76.535347,39.266522],[-76.535335,39.266517],[-76.535322,39.266512],[-76.53531,39.266506],[-76.535297,39.266501],[-76.535285,39.266496],[-76.535272,39.266491],[-76.53526,39.266486],[-76.535247,39.266481],[-76.535234,39.266477],[-76.535221,39.266473],[-76.535208,39.266469],[-76.535194,39.266466],[-76.535181,39.266462],[-76.535168,39.266457],[-76.535156,39.266453],[-76.535143,39.266448],[-76.53513,39.266443],[-76.535114,39.266437],[-76.535101,39.266433],[-76.535087,39.266429],[-76.535074,39.266425],[-76.535061,39.266421],[-76.535048,39.266418],[-76.535034,39.266414],[-76.535021,39.26641],[-76.535008,39.266406],[-76.534994,39.266403],[-76.534981,39.266399],[-76.534968,39.266396],[-76.534954,39.266393],[-76.53494,39.266391],[-76.534926,39.266389],[-76.534912,39.266387],[-76.534898,39.266385],[-76.534884,39.266384],[-76.53487,39.266382],[-76.534856,39.266381],[-76.534842,39.266379],[-76.534829,39.266376],[-76.534815,39.266374],[-76.534801,39.266371],[-76.534788,39.266368],[-76.534774,39.266365],[-76.53476,39.266362],[-76.534747,39.266359],[-76.534733,39.266356],[-76.53472,39.266352],[-76.534706,39.266349],[-76.534693,39.266346],[-76.534679,39.266342],[-76.534666,39.266339],[-76.534653,39.266336],[-76.534639,39.266332],[-76.534626,39.266329],[-76.534612,39.266325],[-76.534599,39.266322],[-76.534585,39.266319],[-76.534572,39.266316],[-76.534558,39.266312],[-76.534545,39.266309],[-76.534531,39.266306],[-76.534518,39.266303],[-76.534504,39.2663],[-76.534491,39.266297],[-76.534477,39.266293],[-76.534464,39.26629],[-76.534451,39.266286],[-76.534437,39.266282],[-76.534424,39.266278],[-76.534411,39.266273],[-76.534398,39.266269],[-76.534385,39.266265],[-76.534372,39.26626],[-76.534359,39.266256],[-76.534346,39.266252],[-76.534333,39.266248],[-76.534319,39.266245],[-76.534306,39.266243],[-76.534292,39.26624],[-76.534278,39.266238],[-76.534264,39.266237],[-76.53425,39.266235],[-76.534236,39.266234],[-76.534222,39.266234],[-76.534208,39.266233],[-76.534194,39.26623],[-76.534181,39.266227],[-76.534167,39.266223],[-76.534154,39.266219],[-76.534141,39.266215],[-76.534128,39.266211],[-76.534115,39.266207],[-76.534102,39.266202],[-76.534089,39.266198],[-76.534076,39.266193],[-76.534063,39.266189],[-76.53405,39.266184],[-76.534037,39.26618],[-76.534024,39.266175],[-76.534011,39.266171],[-76.533998,39.266167],[-76.533985,39.266163],[-76.533972,39.266158],[-76.533959,39.266154],[-76.533946,39.26615],[-76.533933,39.266145],[-76.533921,39.266141],[-76.533908,39.266136],[-76.533895,39.266131],[-76.533883,39.266126],[-76.53387,39.266121],[-76.533858,39.266116],[-76.533845,39.266111],[-76.533832,39.266106],[-76.533819,39.266101],[-76.533807,39.266097],[-76.533794,39.266092],[-76.533781,39.266087],[-76.533768,39.266083],[-76.533756,39.266078],[-76.533743,39.266073],[-76.53373,39.266069],[-76.533717,39.266064],[-76.533704,39.26606],[-76.533691,39.266055],[-76.533679,39.26605],[-76.533666,39.266045],[-76.533654,39.26604],[-76.533641,39.266035],[-76.533629,39.26603],[-76.533616,39.266025],[-76.533604,39.26602],[-76.533591,39.266015],[-76.533579,39.266009],[-76.533566,39.266004],[-76.533554,39.265999],[-76.533541,39.265994],[-76.533528,39.265989],[-76.533516,39.265985],[-76.533503,39.26598],[-76.53349,39.265975],[-76.533478,39.26597],[-76.533465,39.265965],[-76.533453,39.265959],[-76.533442,39.265953],[-76.533429,39.265947],[-76.533416,39.265943],[-76.533403,39.26594],[-76.533389,39.265937],[-76.533375,39.265934],[-76.533362,39.26593],[-76.533349,39.265927],[-76.533336,39.265923],[-76.533323,39.265918],[-76.533309,39.265914],[-76.533296,39.26591],[-76.533283,39.265906],[-76.533271,39.265901],[-76.533258,39.265896],[-76.533245,39.265891],[-76.533233,39.265886],[-76.533221,39.26588],[-76.533209,39.265875],[-76.533197,39.265869],[-76.533184,39.265864],[-76.533172,39.265859],[-76.533159,39.265854],[-76.533146,39.265849],[-76.533133,39.265844],[-76.533121,39.26584],[-76.533108,39.265835],[-76.533096,39.265829],[-76.533083,39.265824],[-76.533071,39.265819],[-76.533058,39.265814],[-76.533045,39.26581],[-76.533031,39.265808],[-76.533017,39.265806],[-76.533004,39.265803],[-76.53299,39.2658],[-76.532977,39.265796],[-76.532963,39.265792],[-76.53295,39.265789],[-76.532937,39.265785],[-76.532923,39.265781],[-76.53291,39.265779],[-76.532896,39.265776],[-76.532882,39.265774],[-76.532868,39.265772],[-76.532854,39.265771],[-76.53284,39.26577],[-76.532826,39.265769],[-76.532812,39.265769],[-76.532798,39.265768],[-76.532784,39.265768],[-76.532769,39.265769],[-76.532755,39.265769],[-76.532741,39.26577],[-76.532727,39.265771],[-76.532713,39.265773],[-76.532699,39.265776],[-76.532685,39.265779],[-76.532671,39.265781],[-76.532658,39.265782],[-76.532644,39.265781],[-76.53263,39.265779],[-76.532617,39.265775],[-76.532604,39.26577],[-76.53259,39.265767],[-76.532577,39.265764],[-76.532563,39.265761],[-76.532548,39.265759],[-76.532534,39.265756],[-76.53252,39.265754],[-76.532505,39.265752],[-76.532491,39.265752],[-76.532478,39.265752],[-76.53247,39.265753],[-76.532467,39.265731],[-76.532472,39.265731],[-76.532479,39.26573],[-76.532486,39.265729],[-76.532493,39.265729],[-76.5325,39.265728],[-76.532507,39.265727],[-76.532514,39.265727],[-76.532521,39.265726],[-76.532528,39.265726],[-76.532535,39.265725],[-76.532542,39.265725],[-76.53255,39.265724],[-76.532557,39.265724],[-76.532564,39.265723],[-76.532571,39.265723],[-76.532578,39.265722],[-76.532585,39.265721],[-76.532592,39.26572],[-76.532599,39.265719],[-76.532605,39.265718],[-76.532612,39.265717],[-76.532619,39.265715],[-76.532626,39.265714],[-76.532633,39.265712],[-76.532639,39.265711],[-76.532646,39.265709],[-76.532653,39.265707],[-76.53266,39.265706],[-76.532666,39.265704],[-76.532673,39.265703],[-76.53268,39.265701],[-76.532687,39.2657],[-76.532694,39.265699],[-76.532701,39.265698],[-76.532708,39.265697],[-76.532715,39.265696],[-76.532722,39.265695],[-76.532729,39.265694],[-76.532735,39.265693],[-76.532742,39.265692],[-76.532749,39.265691],[-76.532756,39.26569],[-76.532763,39.265689],[-76.53277,39.265688],[-76.532777,39.265687],[-76.532784,39.265686],[-76.532791,39.265685],[-76.532798,39.265684],[-76.532805,39.265683],[-76.532812,39.265683],[-76.532819,39.265682],[-76.532826,39.265682],[-76.532833,39.265682],[-76.53284,39.265682],[-76.532848,39.265682],[-76.532855,39.265682],[-76.532862,39.265682],[-76.532869,39.265682],[-76.532876,39.265683],[-76.532883,39.265684],[-76.53289,39.265685],[-76.532896,39.265686],[-76.532903,39.265688],[-76.53291,39.26569],[-76.532916,39.265693],[-76.532922,39.265695],[-76.532928,39.265698],[-76.532934,39.265702],[-76.53294,39.265705],[-76.532945,39.265708],[-76.532951,39.265711],[-76.532957,39.265714],[-76.532963,39.265717],[-76.532969,39.265721],[-76.532975,39.265724],[-76.532981,39.265727],[-76.532987,39.26573],[-76.532993,39.265732],[-76.532999,39.265735],[-76.533006,39.265736],[-76.533013,39.265737],[-76.53302,39.265738],[-76.533027,39.265738],[-76.533034,39.265739],[-76.533041,39.26574],[-76.533047,39.265742],[-76.533054,39.265744],[-76.533061,39.265746],[-76.533067,39.265747],[-76.533074,39.265749],[-76.533081,39.265751],[-76.533087,39.265753],[-76.533094,39.265756],[-76.5331,39.265758],[-76.533107,39.26576],[-76.533113,39.265762],[-76.533119,39.265765],[-76.533126,39.265768],[-76.533132,39.26577],[-76.533138,39.265773],[-76.533144,39.265775],[-76.533151,39.265778],[-76.533157,39.26578],[-76.533163,39.265783],[-76.53317,39.265785],[-76.533177,39.265786],[-76.533183,39.265788],[-76.53319,39.26579],[-76.533197,39.265792],[-76.533203,39.265793],[-76.53321,39.265795],[-76.533217,39.265796],[-76.533224,39.265798],[-76.533231,39.265799],[-76.533237,39.2658],[-76.533244,39.265802],[-76.533251,39.265803],[-76.533258,39.265805],[-76.533265,39.265806],[-76.533272,39.265807],[-76.533279,39.265809],[-76.533285,39.26581],[-76.533292,39.265811],[-76.533299,39.265813],[-76.533306,39.265814],[-76.533313,39.265816],[-76.53332,39.265817],[-76.533326,39.265819],[-76.533333,39.265821],[-76.53334,39.265822],[-76.533346,39.265824],[-76.533353,39.265826],[-76.533359,39.265828],[-76.533366,39.26583],[-76.533372,39.265833],[-76.533379,39.265835],[-76.533385,39.265838],[-76.533391,39.26584],[-76.533397,39.265843],[-76.533404,39.265845],[-76.53341,39.265848],[-76.533416,39.265851],[-76.533422,39.265853],[-76.533429,39.265856],[-76.533435,39.265858],[-76.533441,39.265861],[-76.533448,39.265863],[-76.533454,39.265865],[-76.533461,39.265868],[-76.533467,39.26587],[-76.533473,39.265872],[-76.53348,39.265875],[-76.533486,39.265877],[-76.533493,39.265879],[-76.533499,39.265882],[-76.533505,39.265884],[-76.533512,39.265886],[-76.533518,39.265889],[-76.533525,39.265891],[-76.533531,39.265893],[-76.533538,39.265895],[-76.533544,39.265897],[-76.533551,39.2659],[-76.533557,39.265902],[-76.533564,39.265904],[-76.53357,39.265906],[-76.533577,39.265907],[-76.533584,39.265909],[-76.53359,39.265911],[-76.533597,39.265912],[-76.533604,39.265913],[-76.533611,39.265915],[-76.533618,39.265916],[-76.533625,39.265917],[-76.533631,39.265919],[-76.533638,39.26592],[-76.533645,39.265922],[-76.533652,39.265924],[-76.533658,39.265926],[-76.533665,39.265927],[-76.533672,39.265929],[-76.533678,39.265931],[-76.533685,39.265933],[-76.533692,39.265935],[-76.533698,39.265937],[-76.533705,39.265939],[-76.533711,39.265941],[-76.533718,39.265943],[-76.533725,39.265945],[-76.533731,39.265947],[-76.533738,39.265949],[-76.533744,39.265951],[-76.533751,39.265953],[-76.533757,39.265955],[-76.533764,39.265957],[-76.533771,39.265959],[-76.533777,39.265961],[-76.533784,39.265963],[-76.53379,39.265965],[-76.533797,39.265967],[-76.533804,39.265969],[-76.53381,39.265971],[-76.533817,39.265973],[-76.533823,39.265975],[-76.53383,39.265977],[-76.533836,39.26598],[-76.533843,39.265982],[-76.533849,39.265984],[-76.533855,39.265987],[-76.533861,39.265989],[-76.533868,39.265992],[-76.533874,39.265995],[-76.53388,39.265997],[-76.533886,39.266],[-76.533892,39.266003],[-76.533898,39.266006],[-76.533903,39.266009],[-76.533909,39.266013],[-76.533915,39.266016],[-76.533921,39.266019],[-76.533927,39.266022],[-76.533933,39.266025],[-76.533938,39.266028],[-76.533944,39.266031],[-76.53395,39.266034],[-76.533956,39.266037],[-76.533962,39.26604],[-76.533968,39.266043],[-76.533975,39.266045],[-76.533981,39.266048],[-76.533987,39.26605],[-76.533994,39.266052],[-76.534,39.266054],[-76.534007,39.266056],[-76.534013,39.266058],[-76.53402,39.26606],[-76.534027,39.266062],[-76.534033,39.266064],[-76.53404,39.266066],[-76.534047,39.266068],[-76.534053,39.26607],[-76.53406,39.266072],[-76.534067,39.266074],[-76.534073,39.266075],[-76.53408,39.266077],[-76.534086,39.266079],[-76.534093,39.266081],[-76.5341,39.266083],[-76.534106,39.266085],[-76.534113,39.266087],[-76.53412,39.266089],[-76.534126,39.266091],[-76.534133,39.266093],[-76.534139,39.266095],[-76.534146,39.266097],[-76.534153,39.266099],[-76.534159,39.2661],[-76.534166,39.266102],[-76.534173,39.266104],[-76.534179,39.266106],[-76.534186,39.266108],[-76.534193,39.26611],[-76.534199,39.266111],[-76.534206,39.266113],[-76.534213,39.266115],[-76.534219,39.266117],[-76.534226,39.266118],[-76.534233,39.26612],[-76.534239,39.266122],[-76.534246,39.266124],[-76.534253,39.266125],[-76.53426,39.266127],[-76.534266,39.266129],[-76.534273,39.26613],[-76.53428,39.266132],[-76.534287,39.266133],[-76.534293,39.266135],[-76.5343,39.266136],[-76.534307,39.266138],[-76.534314,39.266139],[-76.534321,39.26614],[-76.534328,39.266141],[-76.534335,39.266142],[-76.534342,39.266143],[-76.534349,39.266144],[-76.534356,39.266144],[-76.534363,39.266145],[-76.53437,39.266147],[-76.534376,39.266148],[-76.534383,39.266149],[-76.53439,39.266151],[-76.534397,39.266152],[-76.534404,39.266153],[-76.534411,39.266155],[-76.534417,39.266156],[-76.534424,39.266158],[-76.534431,39.266159],[-76.534438,39.266161],[-76.534445,39.266162],[-76.534451,39.266164],[-76.534458,39.266165],[-76.534465,39.266167],[-76.534472,39.266169],[-76.534478,39.26617],[-76.534485,39.266172],[-76.534492,39.266174],[-76.534499,39.266175],[-76.534505,39.266177],[-76.534512,39.266179],[-76.534519,39.266181],[-76.534525,39.266182],[-76.534532,39.266184],[-76.534539,39.266186],[-76.534545,39.266188],[-76.534552,39.266189],[-76.534559,39.266191],[-76.534566,39.266193],[-76.534572,39.266195],[-76.534579,39.266196],[-76.534586,39.266198],[-76.534592,39.2662],[-76.534599,39.266201],[-76.534606,39.266203],[-76.534613,39.266205],[-76.534619,39.266206],[-76.534626,39.266208],[-76.534633,39.266209],[-76.53464,39.266211],[-76.534646,39.266213],[-76.534653,39.266214],[-76.53466,39.266216],[-76.534667,39.266218],[-76.534673,39.266219],[-76.53468,39.266221],[-76.534687,39.266223],[-76.534693,39.266224],[-76.5347,39.266226],[-76.534707,39.266228],[-76.534714,39.266229],[-76.53472,39.266231],[-76.534727,39.266232],[-76.534734,39.266234],[-76.534741,39.266235],[-76.534748,39.266236],[-76.534755,39.266238],[-76.534762,39.266239],[-76.534768,39.26624],[-76.534775,39.266241],[-76.534782,39.266243],[-76.534789,39.266244],[-76.534796,39.266245],[-76.534803,39.266247],[-76.53481,39.266248],[-76.534816,39.266249],[-76.534823,39.266251],[-76.53483,39.266252],[-76.534837,39.266253],[-76.534844,39.266255],[-76.534851,39.266256],[-76.534858,39.266257],[-76.534864,39.266259],[-76.534871,39.26626],[-76.534878,39.266261],[-76.534885,39.266263],[-76.534892,39.266264],[-76.534899,39.266266],[-76.534905,39.266267],[-76.534912,39.266269],[-76.534919,39.26627],[-76.534926,39.266272],[-76.534932,39.266274],[-76.534939,39.266275],[-76.534946,39.266277],[-76.534953,39.266279],[-76.534959,39.26628],[-76.534966,39.266282],[-76.534973,39.266284],[-76.534979,39.266285],[-76.534986,39.266287],[-76.534993,39.266289],[-76.535,39.266291],[-76.535006,39.266293],[-76.535013,39.266294],[-76.53502,39.266296],[-76.535026,39.266298],[-76.535033,39.2663],[-76.53504,39.266302],[-76.535046,39.266303],[-76.535053,39.266305],[-76.535059,39.266307],[-76.535066,39.266309],[-76.535073,39.266311],[-76.535079,39.266313],[-76.535086,39.266315],[-76.535093,39.266317],[-76.535099,39.266319],[-76.535106,39.266321],[-76.535112,39.266323],[-76.535119,39.266325],[-76.535125,39.266327],[-76.535132,39.266329],[-76.535149,39.266334],[-76.535162,39.266339],[-76.535175,39.266343],[-76.535188,39.266348],[-76.535201,39.266352],[-76.535214,39.266357],[-76.535227,39.266361],[-76.535239,39.266366],[-76.535252,39.266371],[-76.535265,39.266376],[-76.535278,39.26638],[-76.53529,39.266385],[-76.535303,39.26639],[-76.535316,39.266395],[-76.535328,39.2664],[-76.535341,39.266404],[-76.535354,39.266409],[-76.535366,39.266414],[-76.535379,39.266419],[-76.535391,39.266425],[-76.535404,39.26643],[-76.535416,39.266435],[-76.535428,39.26644],[-76.535441,39.266446],[-76.535453,39.266451],[-76.535465,39.266457],[-76.535478,39.266462],[-76.535491,39.266466],[-76.535504,39.266469],[-76.535518,39.266472],[-76.535531,39.266475],[-76.535545,39.266478],[-76.535559,39.26648],[-76.535573,39.266482],[-76.535587,39.266484],[-76.535601,39.266487],[-76.535614,39.266489],[-76.535628,39.266492],[-76.535638,39.266494],[-76.535642,39.266495],[-76.535656,39.266497],[-76.535669,39.2665],[-76.535683,39.266502],[-76.535697,39.266503],[-76.535711,39.266503],[-76.535725,39.266503],[-76.53574,39.266502],[-76.535754,39.266502],[-76.535768,39.266501],[-76.535782,39.266501],[-76.535796,39.266501],[-76.53581,39.266502],[-76.535824,39.266503],[-76.535838,39.266504],[-76.535852,39.266504],[-76.535867,39.266504],[-76.535881,39.266503],[-76.535894,39.266501],[-76.535908,39.266498],[-76.535922,39.266495],[-76.535935,39.266492],[-76.535947,39.266485],[-76.535958,39.266479],[-76.53597,39.266473],[-76.535984,39.266471],[-76.535998,39.26647],[-76.536012,39.26647],[-76.536026,39.26647],[-76.53604,39.266469],[-76.536055,39.266469],[-76.536069,39.266468],[-76.536083,39.266468],[-76.536097,39.266468],[-76.536111,39.26647],[-76.536125,39.266472],[-76.536138,39.266474],[-76.536152,39.266477],[-76.536166,39.26648],[-76.536179,39.266483],[-76.536193,39.266486],[-76.536207,39.266488],[-76.536221,39.26649],[-76.536234,39.266493],[-76.536248,39.266495],[-76.536262,39.266499],[-76.536275,39.266501],[-76.536289,39.266503],[-76.536303,39.266505],[-76.536317,39.266505],[-76.536332,39.266505],[-76.536346,39.266506],[-76.53636,39.266507],[-76.536374,39.266508],[-76.536388,39.266509],[-76.536402,39.266509],[-76.536416,39.26651],[-76.53643,39.266512],[-76.536444,39.266514],[-76.536458,39.266516],[-76.536471,39.266519],[-76.536485,39.266522],[-76.536498,39.266526],[-76.536512,39.26653],[-76.536525,39.266533],[-76.536538,39.266537],[-76.536551,39.266541],[-76.536564,39.266545],[-76.536577,39.26655],[-76.53659,39.266554],[-76.536603,39.266559],[-76.536615,39.266565],[-76.536628,39.266569],[-76.536641,39.266573],[-76.536654,39.266577],[-76.536668,39.26658],[-76.536681,39.266583],[-76.536695,39.266586],[-76.536709,39.266589],[-76.536723,39.266591],[-76.536737,39.266592],[-76.536751,39.266594],[-76.536765,39.266596],[-76.536778,39.266599],[-76.536792,39.266602],[-76.536805,39.266605],[-76.536819,39.266609],[-76.536832,39.266613],[-76.536845,39.266616],[-76.536859,39.266618],[-76.536873,39.266618],[-76.536887,39.266615],[-76.5369,39.26661],[-76.536912,39.266605],[-76.536925,39.266601],[-76.536939,39.266598],[-76.536953,39.266596],[-76.536967,39.266595],[-76.536981,39.266596],[-76.536995,39.266599],[-76.537008,39.266602],[-76.537022,39.266605],[-76.537035,39.266608],[-76.537049,39.266612],[-76.537062,39.266616],[-76.537075,39.26662],[-76.537089,39.266623],[-76.537102,39.266625],[-76.537116,39.266626],[-76.537131,39.266628],[-76.537144,39.266629],[-76.537158,39.266631],[-76.537172,39.266633],[-76.537186,39.266634],[-76.5372,39.266635],[-76.537214,39.266636],[-76.537229,39.266637],[-76.537243,39.266638],[-76.537257,39.266639],[-76.537271,39.26664],[-76.537285,39.266641],[-76.537299,39.266642],[-76.537313,39.266644],[-76.537327,39.266645],[-76.537341,39.266645],[-76.537355,39.266646],[-76.537369,39.266647],[-76.537383,39.266647],[-76.537398,39.266648],[-76.537412,39.266648],[-76.537426,39.266648],[-76.53744,39.266648],[-76.537454,39.266649],[-76.537468,39.266649],[-76.537482,39.266649],[-76.537496,39.266649],[-76.537511,39.266649],[-76.537525,39.266649],[-76.537539,39.266648],[-76.537553,39.266648],[-76.537567,39.266648],[-76.537581,39.266648],[-76.537595,39.266649],[-76.537609,39.266649],[-76.537624,39.266649],[-76.537638,39.26665],[-76.537652,39.266651],[-76.537666,39.266651],[-76.53768,39.266651],[-76.537694,39.266651],[-76.537708,39.26665],[-76.537722,39.26665],[-76.537737,39.266649],[-76.537751,39.266649],[-76.537765,39.266649],[-76.537779,39.26665],[-76.537793,39.26665],[-76.537807,39.266651],[-76.537821,39.266651],[-76.537835,39.266651],[-76.53785,39.266651],[-76.537864,39.266651],[-76.537878,39.26665],[-76.537892,39.266649],[-76.537906,39.266649],[-76.53792,39.266648],[-76.537934,39.266647],[-76.537948,39.266646],[-76.537962,39.266646],[-76.537976,39.266645],[-76.537991,39.266645],[-76.538005,39.266644],[-76.538019,39.266644],[-76.538033,39.266644],[-76.538047,39.266644],[-76.538061,39.266643],[-76.538075,39.266643],[-76.538089,39.266642],[-76.538104,39.266641],[-76.538118,39.266642],[-76.538132,39.266642],[-76.538146,39.266644],[-76.53816,39.266646],[-76.538173,39.266649],[-76.538187,39.266652],[-76.5382,39.266656],[-76.538213,39.26666],[-76.538227,39.266663],[-76.53824,39.266666],[-76.538254,39.266668],[-76.538268,39.26667],[-76.538282,39.266671],[-76.538296,39.26667],[-76.538311,39.266669],[-76.538325,39.266668],[-76.538339,39.266667],[-76.538353,39.266667],[-76.538367,39.266666],[-76.538381,39.266665],[-76.538395,39.266665],[-76.538409,39.266664],[-76.538423,39.266663],[-76.538437,39.266663],[-76.538452,39.266662],[-76.538466,39.266661],[-76.53848,39.266661],[-76.538494,39.26666],[-76.538508,39.26666],[-76.538522,39.26666],[-76.538524,39.26666],[-76.538536,39.266659],[-76.53855,39.266659],[-76.538565,39.266659],[-76.538579,39.266659],[-76.538593,39.266659],[-76.538607,39.266659],[-76.538621,39.266659],[-76.538635,39.266659],[-76.538649,39.266659],[-76.538663,39.26666],[-76.538678,39.26666],[-76.538692,39.266661],[-76.538706,39.266663],[-76.538719,39.266665],[-76.538733,39.266668],[-76.538747,39.266671],[-76.538761,39.266673],[-76.538774,39.266675],[-76.538788,39.266677],[-76.538802,39.266679],[-76.538816,39.26668],[-76.538831,39.266681],[-76.538845,39.266681],[-76.538859,39.266682],[-76.538873,39.266682],[-76.538887,39.266682],[-76.538901,39.266682],[-76.538915,39.266682],[-76.538929,39.266681],[-76.538943,39.266681],[-76.538958,39.266681],[-76.538972,39.26668],[-76.538986,39.26668],[-76.539,39.26668],[-76.539014,39.26668],[-76.539028,39.266681],[-76.539042,39.266681],[-76.539056,39.26668],[-76.53907,39.266679],[-76.539084,39.266677],[-76.539098,39.266676],[-76.539112,39.266673],[-76.539126,39.266671],[-76.53914,39.266669],[-76.539153,39.266666],[-76.539167,39.266663],[-76.539181,39.26666],[-76.539194,39.266656],[-76.539208,39.266653],[-76.539221,39.26665],[-76.539234,39.266646],[-76.539248,39.266642],[-76.539261,39.266638],[-76.539274,39.266635],[-76.539288,39.266632],[-76.539302,39.26663],[-76.539316,39.266628],[-76.53933,39.266626],[-76.539344,39.266624],[-76.539358,39.266622],[-76.539371,39.266618],[-76.539383,39.266613],[-76.539395,39.266607],[-76.539407,39.266601],[-76.539419,39.266595],[-76.539431,39.26659],[-76.539445,39.266586],[-76.539457,39.266581],[-76.53947,39.266576],[-76.539482,39.266571],[-76.539494,39.266565],[-76.539506,39.266558],[-76.539517,39.266552],[-76.539528,39.266545],[-76.539538,39.266538],[-76.539549,39.26653],[-76.539559,39.266523],[-76.53957,39.266515],[-76.53958,39.266508],[-76.539591,39.266501],[-76.5396,39.266492],[-76.539607,39.266483],[-76.539615,39.266473],[-76.539625,39.266466],[-76.539639,39.266463],[-76.539652,39.266459],[-76.539665,39.266455],[-76.539678,39.26645],[-76.539691,39.266445],[-76.539703,39.266439],[-76.539715,39.266434],[-76.539727,39.266428],[-76.539739,39.266423],[-76.539751,39.266417],[-76.539763,39.266411],[-76.539775,39.266406],[-76.539778,39.266404],[-76.539781,39.266402],[-76.539784,39.2664],[-76.539787,39.266399],[-76.53979,39.266397],[-76.539792,39.266395],[-76.539795,39.266394],[-76.539798,39.266392],[-76.539801,39.26639],[-76.539804,39.266389],[-76.539806,39.266387],[-76.539809,39.266385],[-76.539812,39.266384],[-76.539815,39.266382],[-76.539818,39.26638],[-76.53982,39.266379],[-76.539823,39.266377],[-76.539826,39.266375],[-76.539828,39.266373],[-76.539831,39.266372],[-76.539834,39.26637],[-76.539836,39.266368],[-76.539839,39.266366],[-76.539842,39.266364],[-76.539844,39.266362],[-76.539847,39.26636],[-76.539849,39.266359],[-76.539852,39.266357],[-76.539854,39.266355],[-76.539857,39.266353],[-76.539859,39.266351],[-76.539862,39.266349],[-76.539864,39.266347],[-76.539867,39.266345],[-76.539869,39.266343],[-76.539871,39.266341],[-76.539874,39.266339],[-76.539876,39.266337],[-76.539879,39.266335],[-76.539881,39.266333],[-76.539883,39.266331],[-76.539886,39.266329],[-76.539888,39.266326],[-76.53989,39.266324],[-76.539893,39.266322],[-76.539895,39.26632],[-76.539897,39.266318],[-76.539899,39.266316],[-76.539902,39.266314],[-76.539904,39.266312],[-76.539906,39.26631],[-76.539908,39.266307],[-76.53991,39.266305],[-76.539912,39.266303],[-76.539915,39.266301],[-76.539917,39.266299],[-76.539919,39.266296],[-76.539921,39.266294],[-76.539923,39.266292],[-76.539924,39.266289],[-76.539926,39.266287],[-76.539928,39.266285],[-76.539929,39.266282],[-76.539931,39.26628],[-76.539933,39.266277],[-76.539934,39.266275],[-76.539936,39.266272],[-76.539937,39.26627],[-76.539939,39.266267],[-76.53994,39.266265],[-76.539942,39.266262],[-76.539943,39.26626],[-76.539945,39.266257],[-76.539946,39.266255],[-76.539947,39.266252],[-76.539949,39.26625],[-76.53995,39.266247],[-76.539951,39.266245],[-76.539952,39.266242],[-76.539953,39.266239],[-76.539955,39.266237],[-76.539956,39.266234],[-76.539957,39.266232],[-76.539958,39.266229],[-76.539959,39.266226],[-76.53996,39.266224],[-76.539962,39.266221],[-76.539963,39.266219],[-76.539964,39.266216],[-76.539968,39.266201],[-76.539972,39.266191],[-76.539975,39.26618],[-76.539978,39.266169],[-76.539982,39.266159],[-76.539985,39.266148],[-76.539988,39.266137],[-76.539991,39.266127],[-76.539995,39.266116],[-76.539998,39.266105],[-76.540001,39.266094],[-76.540003,39.266084],[-76.540006,39.266073],[-76.540009,39.266062],[-76.540011,39.266051],[-76.540014,39.266041],[-76.540017,39.26603],[-76.540019,39.266019],[-76.540021,39.266008],[-76.540024,39.265997],[-76.540026,39.265986],[-76.540029,39.265976],[-76.540031,39.265965],[-76.540034,39.265954],[-76.540037,39.265943],[-76.54004,39.265932],[-76.540042,39.265922],[-76.540045,39.265911],[-76.540047,39.2659],[-76.540049,39.265889],[-76.54005,39.265878],[-76.540051,39.265867],[-76.540052,39.265856],[-76.540052,39.265845],[-76.540052,39.265834],[-76.540052,39.265823],[-76.540053,39.265812],[-76.540053,39.265801],[-76.540053,39.26579],[-76.540053,39.265779],[-76.540053,39.265768],[-76.540053,39.265757],[-76.540054,39.265747],[-76.540054,39.265736],[-76.540055,39.265725],[-76.540055,39.265714],[-76.540056,39.265703],[-76.540056,39.265692],[-76.540057,39.265681],[-76.540057,39.26567],[-76.540058,39.265659],[-76.540058,39.265648],[-76.540058,39.265637],[-76.540059,39.265626],[-76.540059,39.265615],[-76.540059,39.265604],[-76.540059,39.265593],[-76.540059,39.265582],[-76.540059,39.265571],[-76.540059,39.26556],[-76.540059,39.265549],[-76.540059,39.265538],[-76.540059,39.265527],[-76.54006,39.265516],[-76.540061,39.265505],[-76.540062,39.265494],[-76.540063,39.265483],[-76.540064,39.265472],[-76.540065,39.265461],[-76.540067,39.26545],[-76.540068,39.265437],[-76.540062,39.265433],[-76.540048,39.265439],[-76.540039,39.265448],[-76.540031,39.265457],[-76.540023,39.265466],[-76.540015,39.265475],[-76.540005,39.265482],[-76.539991,39.265485],[-76.53998,39.265492],[-76.539969,39.265499],[-76.539958,39.265506],[-76.539948,39.265514],[-76.539938,39.265522],[-76.539929,39.265531],[-76.539921,39.265539],[-76.539912,39.265548],[-76.539904,39.265557],[-76.539897,39.265566],[-76.539889,39.265575],[-76.539881,39.265585],[-76.539874,39.265594],[-76.539867,39.265604],[-76.53986,39.265613],[-76.539853,39.265623],[-76.539846,39.265632],[-76.53984,39.265642],[-76.539834,39.265652],[-76.539829,39.265663],[-76.539824,39.265673],[-76.53982,39.265684],[-76.539817,39.265694],[-76.539814,39.265705],[-76.539811,39.265716],[-76.539808,39.265726],[-76.539805,39.265737],[-76.539803,39.265748],[-76.5398,39.265759],[-76.539797,39.26577],[-76.539794,39.26578],[-76.539792,39.265791],[-76.539789,39.265802],[-76.539785,39.265812],[-76.53978,39.265823],[-76.539773,39.265832],[-76.539762,39.26584],[-76.539749,39.265838],[-76.539736,39.265832],[-76.539727,39.265824],[-76.539719,39.265815],[-76.539712,39.265805],[-76.539705,39.265795],[-76.539699,39.265785],[-76.539694,39.265775],[-76.539689,39.265765],[-76.539684,39.265755],[-76.539679,39.265744],[-76.539674,39.265734],[-76.53967,39.265724],[-76.539665,39.265713],[-76.53966,39.265703],[-76.539655,39.265693],[-76.539651,39.265682],[-76.539647,39.265671],[-76.539645,39.265661],[-76.539644,39.265649],[-76.539647,39.265639],[-76.539655,39.26563],[-76.539662,39.26562],[-76.539669,39.265611],[-76.539677,39.265602],[-76.539686,39.265593],[-76.539695,39.265585],[-76.539705,39.265577],[-76.539714,39.265569],[-76.539722,39.26556],[-76.539729,39.26555],[-76.539735,39.26554],[-76.53974,39.26553],[-76.539744,39.265519],[-76.539748,39.265509],[-76.539751,39.265498],[-76.539754,39.265487],[-76.539756,39.265476],[-76.539756,39.265465],[-76.539754,39.265454],[-76.53975,39.265444],[-76.539746,39.265433],[-76.539742,39.265423],[-76.539737,39.265412],[-76.539732,39.265402],[-76.539728,39.265392],[-76.539723,39.265381],[-76.539719,39.265371],[-76.539715,39.26536],[-76.53971,39.26535],[-76.539707,39.265339],[-76.539703,39.265328],[-76.539699,39.265318],[-76.539696,39.265307],[-76.539695,39.265296],[-76.539696,39.265285],[-76.539697,39.265274],[-76.539699,39.265263],[-76.539702,39.265252],[-76.539706,39.265242],[-76.539712,39.265232],[-76.539718,39.265222],[-76.53972,39.26522],[-76.539724,39.265212],[-76.53973,39.265202],[-76.539737,39.265192],[-76.539742,39.265182],[-76.539746,39.265172],[-76.539749,39.265161],[-76.539749,39.26515],[-76.539749,39.265139],[-76.539748,39.265128],[-76.539747,39.265117],[-76.539746,39.265106],[-76.539743,39.265095],[-76.53974,39.265084],[-76.539737,39.265074],[-76.539737,39.265063],[-76.539738,39.265052],[-76.539742,39.265041],[-76.539748,39.265031],[-76.539755,39.265021],[-76.539761,39.265012],[-76.539767,39.265002],[-76.539771,39.264991],[-76.539773,39.26498],[-76.539773,39.264969],[-76.539773,39.264958],[-76.539773,39.264947],[-76.539773,39.264936],[-76.539773,39.264925],[-76.539773,39.264914],[-76.539771,39.264903],[-76.539769,39.264892],[-76.539767,39.264882],[-76.539766,39.264871],[-76.539767,39.26486],[-76.539768,39.264849],[-76.53977,39.264838],[-76.539774,39.264827],[-76.539781,39.264817],[-76.539788,39.264808],[-76.539794,39.264798],[-76.5398,39.264788],[-76.539805,39.264778],[-76.53981,39.264768],[-76.539814,39.264757],[-76.539818,39.264747],[-76.539822,39.264736],[-76.539825,39.264725],[-76.539828,39.264714],[-76.53983,39.264703],[-76.539831,39.264692],[-76.539833,39.264682],[-76.539836,39.264671],[-76.539841,39.264661],[-76.539845,39.26465],[-76.53985,39.26464],[-76.539856,39.26463],[-76.539861,39.26462],[-76.539866,39.26461],[-76.539872,39.264599],[-76.539878,39.264589],[-76.539883,39.264579],[-76.539889,39.264569],[-76.539894,39.264559],[-76.539899,39.264549],[-76.539905,39.264539],[-76.539911,39.264529],[-76.539917,39.264519],[-76.539922,39.264508],[-76.539928,39.264498],[-76.539933,39.264488],[-76.539938,39.264478],[-76.539942,39.264467],[-76.539946,39.264457],[-76.53995,39.264446],[-76.539953,39.264436],[-76.539956,39.264425],[-76.539959,39.264414],[-76.539962,39.264403],[-76.539965,39.264393],[-76.539968,39.264382],[-76.53997,39.264371],[-76.539973,39.26436],[-76.539975,39.264349],[-76.539976,39.264338],[-76.539978,39.264328],[-76.53998,39.264317],[-76.539983,39.264306],[-76.539985,39.264295],[-76.539988,39.264284],[-76.539991,39.264274],[-76.539994,39.264263],[-76.539997,39.264252],[-76.539999,39.264241],[-76.540001,39.26423],[-76.540003,39.264219],[-76.540004,39.264209],[-76.540006,39.264198],[-76.540007,39.264187],[-76.540008,39.264176],[-76.540009,39.264165],[-76.540009,39.264154],[-76.54001,39.264143],[-76.54001,39.264132],[-76.54001,39.264121],[-76.54001,39.26411],[-76.54001,39.264099],[-76.54001,39.264088],[-76.54001,39.264077],[-76.54001,39.264066],[-76.54001,39.264055],[-76.540009,39.264044],[-76.540009,39.264033],[-76.540008,39.264022],[-76.540007,39.264011],[-76.540006,39.264],[-76.540004,39.263989],[-76.540003,39.263978],[-76.540001,39.263967],[-76.539999,39.263956],[-76.539997,39.263946],[-76.539994,39.263935],[-76.539992,39.263924],[-76.539991,39.263912],[-76.53999,39.263901],[-76.53999,39.26389],[-76.539989,39.263879],[-76.539988,39.263868],[-76.539987,39.263857],[-76.539985,39.263847],[-76.539983,39.263836],[-76.53998,39.263825],[-76.539978,39.263814],[-76.539974,39.263803],[-76.539971,39.263793],[-76.539968,39.263782],[-76.539964,39.263772],[-76.53996,39.263761],[-76.539956,39.26375],[-76.539952,39.26374],[-76.539947,39.263729],[-76.539943,39.263719],[-76.539938,39.263709],[-76.539933,39.263698],[-76.539928,39.263688],[-76.539923,39.263678],[-76.539918,39.263668],[-76.539912,39.263658],[-76.539907,39.263648],[-76.539901,39.263637],[-76.539895,39.263627],[-76.539889,39.263617],[-76.539884,39.263607],[-76.539878,39.263597],[-76.539871,39.263588],[-76.539865,39.263578],[-76.539859,39.263568],[-76.539852,39.263558],[-76.539846,39.263548],[-76.539841,39.263538],[-76.539836,39.263528],[-76.539831,39.263517],[-76.539827,39.263507],[-76.539823,39.263496],[-76.539818,39.263486],[-76.539814,39.263476],[-76.539809,39.263465],[-76.539805,39.263455],[-76.539799,39.263445],[-76.539792,39.263435],[-76.539783,39.263427],[-76.539774,39.263418],[-76.539764,39.26341],[-76.539755,39.263402],[-76.539744,39.263395],[-76.539733,39.263388],[-76.539721,39.263382],[-76.53971,39.263376],[-76.539698,39.263369],[-76.539687,39.263363],[-76.539676,39.263356],[-76.539665,39.263348],[-76.539655,39.263341],[-76.539645,39.263333],[-76.539635,39.263326],[-76.539625,39.263318],[-76.539615,39.26331],[-76.539605,39.263302],[-76.539595,39.263294],[-76.539586,39.263286],[-76.539576,39.263278],[-76.539566,39.26327],[-76.539557,39.263262],[-76.539547,39.263254],[-76.539538,39.263245],[-76.539529,39.263237],[-76.53952,39.263229],[-76.539511,39.26322],[-76.539502,39.263212],[-76.539494,39.263203],[-76.539486,39.263194],[-76.539478,39.263184],[-76.53947,39.263175],[-76.539463,39.263166],[-76.539455,39.263157],[-76.539447,39.263147],[-76.53944,39.263138],[-76.539432,39.263129],[-76.539424,39.26312],[-76.539416,39.263111],[-76.539408,39.263102],[-76.5394,39.263093],[-76.539393,39.263083],[-76.539385,39.263074],[-76.539378,39.263065],[-76.539371,39.263055],[-76.539364,39.263046],[-76.539357,39.263036],[-76.53935,39.263027],[-76.539343,39.263017],[-76.539336,39.263007],[-76.539329,39.262998],[-76.539322,39.262988],[-76.539315,39.262979],[-76.539308,39.262969],[-76.539301,39.26296],[-76.539294,39.26295],[-76.539287,39.262941],[-76.53928,39.262931],[-76.539273,39.262921],[-76.539266,39.262912],[-76.539259,39.262902],[-76.539253,39.262893],[-76.539246,39.262883],[-76.539239,39.262874],[-76.539232,39.262864],[-76.539224,39.262855],[-76.539217,39.262845],[-76.53921,39.262836],[-76.539203,39.262826],[-76.539196,39.262817],[-76.539188,39.262807],[-76.53918,39.262798],[-76.539172,39.262789],[-76.539164,39.262781],[-76.539155,39.262772],[-76.539146,39.262763],[-76.539137,39.262755],[-76.539128,39.262747],[-76.539118,39.262738],[-76.539109,39.26273],[-76.539099,39.262722],[-76.539089,39.262714],[-76.539079,39.262707],[-76.539069,39.262699],[-76.539058,39.262692],[-76.539047,39.262685],[-76.539037,39.262678],[-76.539027,39.26267],[-76.539017,39.262662],[-76.539007,39.262654],[-76.538997,39.262646],[-76.538988,39.262638],[-76.538978,39.26263],[-76.538968,39.262623],[-76.538958,39.262615],[-76.538947,39.262608],[-76.538936,39.262601],[-76.538926,39.262593],[-76.538915,39.262586],[-76.538905,39.262578],[-76.538895,39.26257],[-76.538886,39.262562],[-76.538877,39.262554],[-76.538867,39.262546],[-76.538857,39.262538],[-76.538847,39.26253],[-76.538837,39.262523],[-76.538826,39.262516],[-76.538816,39.262508],[-76.538805,39.262501],[-76.538795,39.262493],[-76.538784,39.262486],[-76.538773,39.262479],[-76.538763,39.262472],[-76.538753,39.262464],[-76.538744,39.262456],[-76.538734,39.262447],[-76.538725,39.262439],[-76.538715,39.262431],[-76.538706,39.262423],[-76.538696,39.262415],[-76.538686,39.262407],[-76.538676,39.2624],[-76.538666,39.262392],[-76.538655,39.262385],[-76.538645,39.262377],[-76.538635,39.26237],[-76.538624,39.262362],[-76.538614,39.262355],[-76.538604,39.262347],[-76.538594,39.262339],[-76.538584,39.262331],[-76.538574,39.262323],[-76.538565,39.262315],[-76.538555,39.262307],[-76.538552,39.262305],[-76.538545,39.2623],[-76.538535,39.262292],[-76.538524,39.262285],[-76.538513,39.262278],[-76.538501,39.262272],[-76.53849,39.262265],[-76.538478,39.262259],[-76.538467,39.262253],[-76.538455,39.262247],[-76.538443,39.262241],[-76.538431,39.262235],[-76.538419,39.262229],[-76.538408,39.262222],[-76.538397,39.262215],[-76.538387,39.262208],[-76.538377,39.2622],[-76.538367,39.262192],[-76.538358,39.262184],[-76.538348,39.262176],[-76.538338,39.262168],[-76.538327,39.262161],[-76.538317,39.262153],[-76.538306,39.262146],[-76.538296,39.262138],[-76.538286,39.262131],[-76.538276,39.262123],[-76.538273,39.262121],[-76.538266,39.262115],[-76.538257,39.262107],[-76.538247,39.262099],[-76.538238,39.26209],[-76.538228,39.262082],[-76.538219,39.262074],[-76.538209,39.262066],[-76.5382,39.262058],[-76.53819,39.26205],[-76.53818,39.262042],[-76.53817,39.262034],[-76.53816,39.262026],[-76.538151,39.262019],[-76.538141,39.262011],[-76.53813,39.262003],[-76.53812,39.261995],[-76.53811,39.261988],[-76.5381,39.26198],[-76.53809,39.261972],[-76.53808,39.261964],[-76.53807,39.261957],[-76.53806,39.261949],[-76.53805,39.261941],[-76.53804,39.261933],[-76.53803,39.261926],[-76.53802,39.261918],[-76.53801,39.26191],[-76.538,39.261903],[-76.53799,39.261895],[-76.53798,39.261887],[-76.53797,39.261879],[-76.53796,39.261871],[-76.53795,39.261864],[-76.53794,39.261856],[-76.537931,39.261848],[-76.537921,39.26184],[-76.537911,39.261832],[-76.537901,39.261824],[-76.537891,39.261817],[-76.537881,39.261809],[-76.537871,39.261801],[-76.537862,39.261793],[-76.537852,39.261785],[-76.537842,39.261777],[-76.537832,39.261769],[-76.537823,39.261761],[-76.537813,39.261753],[-76.537803,39.261745],[-76.537794,39.261737],[-76.537784,39.261729],[-76.537775,39.261721],[-76.537765,39.261713],[-76.537755,39.261705],[-76.537746,39.261697],[-76.537736,39.261689],[-76.537726,39.261681],[-76.537717,39.261673],[-76.537707,39.261665],[-76.537697,39.261657],[-76.537687,39.261649],[-76.537677,39.261641],[-76.537667,39.261633],[-76.537657,39.261626],[-76.537646,39.261619],[-76.537635,39.261612],[-76.537623,39.261606],[-76.537611,39.2616],[-76.537599,39.261595],[-76.537586,39.26159],[-76.537574,39.261585],[-76.53756,39.261581],[-76.537547,39.261576],[-76.537539,39.261568],[-76.537534,39.261557],[-76.537529,39.261547],[-76.537524,39.261537],[-76.537519,39.261526],[-76.537513,39.261516],[-76.537507,39.261506],[-76.5375,39.261497],[-76.53749,39.26149],[-76.537478,39.261484],[-76.537465,39.261479],[-76.537451,39.261475],[-76.537439,39.261469],[-76.537427,39.261463],[-76.537416,39.261457],[-76.537404,39.261451],[-76.537393,39.261444],[-76.537382,39.261437],[-76.537371,39.26143],[-76.537361,39.261422],[-76.537352,39.261414],[-76.537342,39.261406],[-76.537333,39.261397],[-76.537324,39.261389],[-76.537314,39.261381],[-76.537305,39.261373],[-76.537295,39.261364],[-76.537286,39.261356],[-76.537276,39.261348],[-76.537267,39.26134],[-76.537257,39.261332],[-76.537247,39.261324],[-76.537236,39.261314],[-76.537226,39.261305],[-76.537217,39.261297],[-76.537208,39.261288],[-76.537199,39.26128],[-76.53719,39.261271],[-76.537182,39.261263],[-76.537174,39.261254],[-76.537165,39.261245],[-76.537157,39.261236],[-76.537148,39.261227],[-76.537139,39.261219],[-76.53713,39.261211],[-76.53712,39.261203],[-76.53711,39.261195],[-76.5371,39.261188],[-76.53709,39.26118],[-76.53708,39.261172],[-76.53707,39.261164],[-76.537061,39.261156],[-76.537051,39.261148],[-76.537041,39.26114],[-76.537032,39.261132],[-76.537022,39.261123],[-76.537013,39.261115],[-76.537004,39.261107],[-76.536995,39.261098],[-76.536986,39.26109],[-76.536977,39.261081],[-76.536969,39.261072],[-76.536962,39.261063],[-76.536954,39.261054],[-76.536946,39.261045],[-76.536937,39.261036],[-76.536928,39.261028],[-76.536918,39.261019],[-76.536908,39.261011],[-76.536898,39.261004],[-76.536887,39.260997],[-76.536876,39.26099],[-76.536864,39.260985],[-76.536851,39.26098],[-76.536838,39.260975],[-76.536825,39.260971],[-76.536812,39.260968],[-76.536798,39.260965],[-76.536784,39.260963],[-76.53677,39.260962],[-76.536756,39.260961],[-76.536742,39.26096],[-76.536727,39.260959],[-76.536713,39.260959],[-76.536699,39.260959],[-76.536685,39.260959],[-76.536671,39.260959],[-76.536657,39.260959],[-76.536643,39.260958],[-76.536629,39.260957],[-76.536615,39.260956],[-76.536601,39.260955],[-76.536586,39.260954],[-76.536572,39.260953],[-76.536558,39.260951],[-76.536544,39.26095],[-76.53653,39.260947],[-76.536517,39.260945],[-76.536504,39.260941],[-76.536491,39.260936],[-76.536478,39.260931],[-76.536466,39.260926],[-76.536454,39.260919],[-76.536443,39.260912],[-76.536433,39.260905],[-76.536424,39.260897],[-76.536415,39.260888],[-76.536407,39.260879],[-76.536399,39.26087],[-76.53639,39.260861],[-76.536382,39.260852],[-76.536375,39.260843],[-76.536367,39.260834],[-76.536359,39.260825],[-76.536351,39.260815],[-76.536343,39.260806],[-76.536336,39.260797],[-76.536328,39.260788],[-76.53632,39.260779],[-76.536312,39.26077],[-76.536304,39.260761],[-76.536296,39.260751],[-76.536288,39.260742],[-76.53628,39.260734],[-76.536271,39.260725],[-76.536263,39.260716],[-76.536255,39.260707],[-76.536247,39.260698],[-76.536239,39.260689],[-76.536232,39.260678],[-76.536231,39.260669],[-76.536239,39.26066],[-76.536241,39.260649],[-76.536241,39.260638],[-76.536239,39.260627],[-76.536234,39.260617],[-76.536226,39.260608],[-76.536217,39.260599],[-76.536207,39.260591],[-76.536197,39.260584],[-76.536185,39.260577],[-76.536174,39.26057],[-76.536165,39.260562],[-76.536156,39.260554],[-76.536147,39.260545],[-76.536139,39.260536],[-76.536131,39.260527],[-76.536122,39.260518],[-76.536114,39.26051],[-76.536105,39.260501],[-76.536096,39.260492],[-76.536087,39.260484],[-76.536078,39.260475],[-76.53607,39.260467],[-76.536061,39.260458],[-76.536052,39.260449],[-76.536044,39.26044],[-76.536036,39.260431],[-76.536028,39.260422],[-76.53602,39.260413],[-76.536012,39.260404],[-76.536004,39.260395],[-76.535996,39.260386],[-76.535988,39.260377],[-76.535979,39.260368],[-76.53597,39.26036],[-76.535961,39.260351],[-76.535952,39.260343],[-76.535943,39.260334],[-76.535934,39.260326],[-76.535926,39.260317],[-76.535917,39.260309],[-76.535908,39.2603],[-76.535899,39.260292],[-76.53589,39.260283],[-76.535881,39.260275],[-76.535873,39.260266],[-76.535864,39.260257],[-76.535855,39.260249],[-76.535847,39.26024],[-76.535838,39.260231],[-76.53583,39.260222],[-76.535821,39.260213],[-76.535813,39.260205],[-76.535804,39.260196],[-76.535795,39.260188],[-76.535786,39.260179],[-76.535777,39.260171],[-76.535767,39.260163],[-76.535758,39.260154],[-76.535749,39.260146],[-76.53574,39.260138],[-76.535731,39.260129],[-76.535722,39.260121],[-76.535713,39.260112],[-76.535704,39.260103],[-76.535696,39.260095],[-76.535687,39.260086],[-76.535679,39.260077],[-76.53567,39.260068],[-76.535662,39.26006],[-76.535653,39.260051],[-76.535645,39.260042],[-76.535636,39.260033],[-76.535627,39.260025],[-76.535618,39.260016],[-76.53561,39.260008],[-76.535601,39.259999],[-76.535592,39.259991],[-76.535583,39.259982],[-76.535574,39.259974],[-76.535565,39.259965],[-76.535556,39.259957],[-76.535547,39.259948],[-76.535538,39.25994],[-76.535529,39.259931],[-76.53552,39.259923],[-76.53551,39.259915],[-76.535501,39.259906],[-76.535492,39.259898],[-76.535482,39.25989],[-76.535473,39.259882],[-76.535464,39.259874],[-76.535454,39.259865],[-76.535445,39.259857],[-76.535435,39.259849],[-76.535426,39.259841],[-76.535417,39.259833],[-76.535407,39.259824],[-76.535398,39.259816],[-76.535389,39.259807],[-76.53538,39.259799],[-76.535372,39.25979],[-76.535363,39.259782],[-76.535354,39.259773],[-76.535345,39.259764],[-76.535337,39.259756],[-76.535328,39.259747],[-76.53532,39.259738],[-76.535311,39.259729],[-76.535303,39.259721],[-76.535294,39.259712],[-76.535286,39.259703],[-76.535278,39.259694],[-76.535269,39.259685],[-76.535261,39.259676],[-76.535253,39.259667],[-76.535244,39.259659],[-76.535236,39.25965],[-76.535228,39.259641],[-76.53522,39.259632],[-76.535212,39.259623],[-76.535204,39.259614],[-76.535195,39.259605],[-76.535188,39.259596],[-76.53518,39.259586],[-76.535172,39.259577],[-76.535166,39.259567],[-76.535159,39.259558],[-76.535152,39.259548],[-76.535145,39.259539],[-76.535137,39.259529],[-76.53513,39.25952],[-76.535122,39.259511],[-76.535116,39.259501],[-76.53511,39.259491],[-76.535104,39.259481],[-76.535098,39.259471],[-76.535091,39.259461],[-76.535083,39.259452],[-76.535074,39.259445],[-76.535063,39.259438],[-76.535051,39.259431],[-76.535039,39.259425],[-76.535027,39.259419],[-76.535014,39.259414],[-76.535007,39.259405],[-76.535005,39.259395],[-76.535003,39.259384],[-76.535001,39.259373],[-76.534999,39.259362],[-76.534997,39.259351],[-76.534995,39.25934],[-76.534993,39.259329],[-76.53499,39.259319],[-76.534988,39.259308],[-76.534986,39.259297],[-76.534984,39.259286],[-76.534982,39.259275],[-76.53498,39.259264],[-76.534978,39.259253],[-76.534976,39.259243],[-76.534974,39.259232],[-76.534972,39.259221],[-76.534969,39.25921],[-76.534967,39.259199],[-76.534965,39.259188],[-76.534963,39.259177],[-76.534961,39.259167],[-76.534959,39.259156],[-76.534957,39.259145],[-76.534954,39.259134],[-76.534952,39.259123],[-76.53495,39.259112],[-76.534948,39.259101],[-76.534946,39.259091],[-76.534944,39.25908],[-76.534941,39.259069],[-76.534939,39.259058],[-76.534937,39.259047],[-76.534935,39.259036],[-76.534933,39.259025],[-76.534931,39.259015],[-76.534929,39.259004],[-76.534927,39.258993],[-76.534924,39.258982],[-76.534922,39.258971],[-76.53492,39.25896],[-76.534918,39.25895],[-76.534916,39.258939],[-76.534914,39.258928],[-76.534912,39.258917],[-76.53491,39.258906],[-76.534908,39.258895],[-76.534906,39.258884],[-76.534904,39.258873],[-76.534902,39.258863],[-76.534899,39.258852],[-76.534897,39.258841],[-76.534895,39.25883],[-76.534893,39.258819],[-76.534891,39.258808],[-76.534889,39.258797],[-76.534887,39.258787],[-76.534885,39.258776],[-76.534883,39.258765],[-76.534881,39.258754],[-76.534879,39.258743],[-76.534877,39.258732],[-76.534875,39.258721],[-76.534872,39.258711],[-76.534872,39.2587],[-76.534872,39.258689],[-76.534872,39.258678],[-76.534872,39.258667],[-76.534873,39.258656],[-76.534876,39.258645],[-76.534879,39.258634],[-76.534881,39.258623],[-76.534864,39.258557],[-76.534843,39.258471],[-76.534817,39.258386],[-76.534769,39.258288],[-76.534726,39.258199],[-76.534694,39.258114],[-76.534681,39.258068],[-76.534683,39.257989],[-76.534725,39.257977],[-76.53478,39.257955],[-76.534799,39.257926],[-76.534801,39.257901],[-76.534821,39.257829],[-76.534815,39.257753],[-76.534813,39.257739],[-76.534808,39.257712],[-76.534794,39.257673],[-76.534777,39.257637],[-76.534755,39.257599],[-76.534725,39.257549],[-76.534698,39.2575],[-76.534675,39.257441],[-76.534663,39.257383],[-76.534649,39.25728],[-76.534643,39.257188],[-76.534638,39.257086],[-76.534635,39.256951],[-76.534636,39.256856],[-76.534646,39.256763],[-76.534645,39.256676],[-76.534633,39.256614],[-76.534624,39.256573],[-76.534615,39.256538],[-76.534613,39.256535],[-76.534611,39.256533],[-76.534609,39.256531],[-76.534607,39.256529],[-76.534605,39.256526],[-76.534603,39.256524],[-76.534601,39.256522],[-76.534599,39.256519],[-76.534597,39.256517],[-76.534596,39.256515],[-76.534594,39.256513],[-76.534592,39.25651],[-76.53459,39.256508],[-76.534588,39.256506],[-76.534586,39.256503],[-76.534584,39.256501],[-76.534582,39.256499],[-76.53458,39.256496],[-76.534579,39.256494],[-76.534577,39.256491],[-76.534575,39.256489],[-76.534574,39.256487],[-76.534572,39.256484],[-76.534571,39.256482],[-76.534569,39.256479],[-76.534568,39.256477],[-76.534566,39.256474],[-76.534565,39.256472],[-76.534563,39.256469],[-76.534562,39.256467],[-76.53456,39.256464],[-76.534559,39.256462],[-76.534557,39.256459],[-76.534556,39.256457],[-76.534554,39.256454],[-76.534553,39.256452],[-76.534552,39.256449],[-76.53455,39.256446],[-76.534549,39.256444],[-76.534548,39.256441],[-76.534547,39.256439],[-76.534545,39.256436],[-76.534544,39.256434],[-76.534543,39.256431],[-76.534542,39.256428],[-76.534541,39.256426],[-76.53454,39.256423],[-76.534539,39.256421],[-76.534538,39.256418],[-76.534537,39.256415],[-76.534536,39.256413],[-76.534536,39.25641],[-76.534535,39.256407],[-76.534534,39.256405],[-76.534534,39.256402],[-76.534534,39.256399],[-76.534533,39.256396],[-76.534533,39.256394],[-76.534533,39.256391],[-76.534533,39.256388],[-76.534532,39.256385],[-76.534532,39.256383],[-76.534532,39.25638],[-76.534532,39.256377],[-76.534532,39.256374],[-76.534531,39.256372],[-76.534531,39.256369],[-76.534531,39.256366],[-76.53453,39.256363],[-76.53453,39.256361],[-76.53453,39.256358],[-76.534529,39.256355],[-76.534529,39.256352],[-76.534529,39.25635],[-76.534528,39.256347],[-76.534528,39.256344],[-76.534528,39.256341],[-76.534527,39.256339],[-76.534527,39.256336],[-76.534527,39.256333],[-76.534526,39.256331],[-76.534526,39.256328],[-76.534526,39.256325],[-76.534526,39.256322],[-76.534525,39.25632],[-76.534525,39.256317],[-76.534525,39.256314],[-76.534524,39.256311],[-76.534524,39.256309],[-76.534524,39.256306],[-76.534523,39.256303],[-76.534523,39.2563],[-76.534523,39.256298],[-76.534523,39.256295],[-76.534522,39.256292],[-76.534522,39.256289],[-76.534522,39.256287],[-76.534522,39.256284],[-76.534521,39.256281],[-76.534521,39.256279],[-76.534521,39.256276],[-76.534521,39.256273],[-76.53452,39.25627],[-76.53452,39.256268],[-76.53452,39.256265],[-76.53452,39.256262],[-76.53452,39.256259],[-76.534519,39.256257],[-76.534519,39.256254],[-76.534519,39.256251],[-76.534519,39.256248],[-76.534519,39.256246],[-76.534519,39.256243],[-76.534526,39.256231],[-76.534532,39.256221],[-76.534538,39.256211],[-76.534544,39.256201],[-76.53455,39.256191],[-76.534556,39.256181],[-76.534562,39.256171],[-76.534568,39.256161],[-76.534574,39.256151],[-76.53458,39.256141],[-76.534586,39.256132],[-76.534592,39.256122],[-76.534598,39.256112],[-76.534604,39.256102],[-76.53461,39.256092],[-76.534616,39.256082],[-76.534622,39.256072],[-76.534628,39.256062],[-76.534634,39.256052],[-76.53464,39.256042],[-76.534646,39.256032],[-76.534652,39.256022],[-76.534658,39.256012],[-76.534664,39.256002],[-76.53467,39.255992],[-76.534676,39.255982],[-76.534682,39.255972],[-76.534688,39.255963],[-76.534694,39.255953],[-76.5347,39.255943],[-76.534706,39.255933],[-76.534712,39.255923],[-76.534718,39.255913],[-76.534724,39.255903],[-76.53473,39.255893],[-76.534736,39.255883],[-76.534742,39.255873],[-76.534749,39.255863],[-76.534755,39.255853],[-76.534761,39.255843],[-76.534767,39.255833],[-76.534773,39.255823],[-76.534779,39.255814],[-76.534785,39.255804],[-76.534791,39.255794],[-76.534797,39.255784],[-76.534803,39.255774],[-76.534809,39.255764],[-76.534815,39.255754],[-76.534821,39.255744],[-76.534827,39.255734],[-76.534833,39.255724],[-76.534839,39.255714],[-76.534845,39.255704],[-76.534851,39.255694],[-76.534857,39.255684],[-76.534863,39.255675],[-76.534869,39.255665],[-76.534875,39.255655],[-76.534881,39.255645],[-76.534892,39.255639],[-76.534906,39.255636],[-76.534919,39.255634],[-76.534933,39.255632],[-76.534947,39.255631],[-76.534961,39.255629],[-76.534975,39.255627],[-76.534989,39.255625],[-76.535003,39.255624],[-76.535017,39.255622],[-76.535031,39.25562],[-76.535045,39.255618],[-76.535059,39.255616],[-76.535073,39.255615],[-76.535087,39.255613],[-76.535101,39.255611],[-76.535115,39.255609],[-76.535129,39.255608],[-76.535142,39.255606],[-76.535156,39.255604],[-76.53517,39.255602],[-76.535184,39.2556],[-76.535198,39.255597],[-76.535212,39.255595],[-76.535225,39.255592],[-76.535239,39.25559],[-76.535253,39.255588],[-76.535267,39.255586],[-76.535281,39.255584],[-76.535295,39.255582],[-76.535309,39.25558],[-76.535323,39.255578],[-76.535337,39.255577],[-76.53535,39.255575],[-76.535364,39.255573],[-76.535378,39.255571],[-76.535392,39.255569],[-76.535406,39.255567],[-76.53542,39.255565],[-76.535434,39.255563],[-76.535448,39.255561],[-76.535462,39.25556],[-76.535476,39.255558],[-76.53549,39.255556],[-76.535504,39.255554],[-76.535517,39.255552],[-76.535531,39.25555],[-76.535545,39.255548],[-76.535552,39.25554],[-76.535555,39.255529],[-76.535558,39.255518],[-76.535562,39.255508],[-76.535565,39.255497],[-76.535568,39.255486],[-76.535571,39.255476],[-76.535575,39.255465],[-76.535578,39.255454],[-76.535581,39.255444],[-76.535585,39.255433],[-76.535588,39.255422],[-76.535591,39.255412],[-76.535594,39.255401],[-76.535598,39.25539],[-76.535601,39.25538],[-76.535604,39.255369],[-76.535608,39.255358],[-76.535611,39.255348],[-76.535614,39.255337],[-76.535617,39.255326],[-76.535621,39.255316],[-76.535624,39.255305],[-76.535627,39.255294],[-76.53563,39.255283],[-76.535634,39.255273],[-76.535637,39.255262],[-76.53564,39.255251],[-76.535644,39.255241],[-76.535647,39.25523],[-76.53565,39.255219],[-76.535653,39.255209],[-76.535657,39.255198],[-76.53566,39.255187],[-76.535663,39.255177],[-76.535667,39.255166],[-76.53567,39.255155],[-76.535673,39.255145],[-76.535676,39.255134],[-76.53568,39.255123],[-76.535683,39.255113],[-76.535686,39.255102],[-76.53569,39.255091],[-76.535693,39.255081],[-76.535696,39.25507],[-76.535699,39.255059],[-76.535703,39.255049],[-76.535706,39.255038],[-76.535709,39.255027],[-76.535713,39.255016],[-76.535716,39.255006],[-76.535719,39.254995],[-76.535723,39.254984],[-76.535726,39.254974],[-76.535729,39.254963],[-76.535733,39.254952],[-76.535736,39.254942],[-76.535739,39.254931],[-76.535743,39.25492],[-76.535746,39.25491],[-76.535749,39.254899],[-76.535752,39.254888],[-76.535756,39.254878],[-76.535759,39.254867],[-76.535762,39.254856],[-76.535765,39.254846],[-76.535769,39.254835],[-76.535772,39.254824],[-76.535775,39.254814],[-76.535779,39.254803],[-76.535782,39.254792],[-76.535785,39.254782],[-76.535788,39.254771],[-76.535792,39.25476],[-76.535795,39.25475],[-76.535799,39.254739],[-76.535802,39.254728],[-76.535806,39.254718],[-76.535809,39.254707],[-76.535812,39.254696],[-76.535816,39.254686],[-76.535819,39.254675],[-76.535822,39.254664],[-76.535826,39.254654],[-76.535829,39.254643],[-76.535832,39.254632],[-76.535835,39.254622],[-76.535839,39.254611],[-76.535842,39.2546],[-76.535845,39.254589],[-76.535849,39.254579],[-76.535852,39.254568],[-76.535855,39.254557],[-76.535859,39.254547],[-76.535862,39.254536],[-76.535865,39.254525],[-76.535868,39.254515],[-76.535872,39.254504],[-76.535875,39.254493],[-76.535878,39.254483],[-76.535882,39.254472],[-76.535885,39.254461],[-76.535888,39.254451],[-76.535892,39.25444],[-76.535895,39.254429],[-76.535898,39.254419],[-76.535902,39.254408],[-76.535905,39.254397],[-76.535908,39.254387],[-76.535912,39.254376],[-76.535915,39.254365],[-76.535919,39.254355],[-76.535922,39.254344],[-76.535925,39.254333],[-76.535929,39.254323],[-76.535932,39.254312],[-76.535935,39.254301],[-76.535939,39.254291],[-76.535942,39.25428],[-76.535945,39.254269],[-76.535949,39.254259],[-76.535952,39.254248],[-76.535955,39.254237],[-76.535959,39.254227],[-76.535962,39.254216],[-76.535965,39.254205],[-76.535969,39.254195],[-76.535972,39.254184],[-76.535975,39.254173],[-76.535979,39.254163],[-76.535982,39.254152],[-76.535986,39.254141],[-76.535989,39.254131],[-76.535992,39.25412],[-76.535996,39.254109],[-76.535999,39.254099],[-76.536002,39.254088],[-76.536006,39.254077],[-76.536009,39.254067],[-76.536012,39.254056],[-76.536016,39.254045],[-76.536019,39.254035],[-76.536022,39.254024],[-76.536026,39.254013],[-76.536029,39.254003],[-76.536032,39.253992],[-76.536036,39.253981],[-76.536039,39.253971],[-76.536042,39.25396],[-76.536046,39.253949],[-76.536049,39.253939],[-76.536053,39.253928],[-76.536056,39.253917],[-76.536059,39.253907],[-76.536063,39.253896],[-76.536066,39.253885],[-76.536069,39.253875],[-76.536073,39.253864],[-76.536076,39.253853],[-76.536079,39.253843],[-76.536083,39.253832],[-76.536086,39.253821],[-76.536089,39.253811],[-76.536093,39.2538],[-76.536096,39.253789],[-76.536099,39.253779],[-76.536103,39.253768],[-76.536106,39.253757],[-76.536109,39.253747],[-76.536113,39.253736],[-76.536116,39.253725],[-76.536119,39.253715],[-76.536123,39.253704],[-76.536125,39.253698],[-76.536126,39.253693],[-76.536129,39.253683],[-76.536133,39.253672],[-76.536136,39.253661],[-76.536139,39.253651],[-76.536143,39.25364],[-76.536146,39.253629],[-76.536148,39.253623],[-76.53615,39.253618],[-76.536151,39.253613],[-76.536153,39.253607],[-76.536155,39.253602],[-76.536156,39.253597],[-76.536158,39.253591],[-76.53616,39.253586],[-76.536161,39.25358],[-76.536163,39.253575],[-76.536164,39.25357],[-76.536166,39.253564],[-76.536168,39.253559],[-76.536169,39.253554],[-76.536171,39.253548],[-76.536173,39.253543],[-76.536174,39.253538],[-76.536176,39.253532],[-76.536178,39.253527],[-76.536179,39.253522],[-76.536181,39.253516],[-76.536183,39.253511],[-76.536184,39.253506],[-76.536186,39.2535],[-76.536188,39.253495],[-76.536189,39.25349],[-76.536191,39.253484],[-76.536193,39.253479],[-76.536194,39.253474],[-76.536196,39.253468],[-76.536198,39.253463],[-76.536199,39.253458],[-76.536201,39.253452],[-76.536203,39.253447],[-76.536204,39.253442],[-76.536206,39.253436],[-76.536208,39.253431],[-76.536209,39.253426],[-76.536211,39.25342],[-76.536213,39.253415],[-76.536214,39.25341],[-76.536216,39.253404],[-76.536218,39.253399],[-76.536219,39.253394],[-76.536221,39.253388],[-76.536223,39.253383],[-76.536224,39.253378],[-76.536226,39.253372],[-76.536228,39.253367],[-76.536229,39.253362],[-76.536231,39.253356],[-76.536233,39.253351],[-76.536234,39.253346],[-76.536236,39.25334],[-76.536238,39.253335],[-76.536239,39.25333],[-76.536241,39.253324],[-76.536243,39.253319],[-76.536245,39.253314],[-76.536246,39.253308],[-76.536248,39.253303],[-76.53625,39.253298],[-76.536251,39.253292],[-76.536253,39.253287],[-76.536255,39.253282],[-76.536257,39.253276],[-76.536258,39.253271],[-76.53626,39.253266],[-76.536262,39.25326],[-76.536264,39.253255],[-76.536265,39.25325],[-76.536267,39.253245],[-76.536269,39.253239],[-76.536271,39.253234],[-76.536272,39.253229],[-76.536274,39.253223],[-76.536276,39.253218],[-76.536277,39.253213],[-76.536279,39.253207],[-76.536281,39.253202],[-76.536283,39.253197],[-76.536284,39.253191],[-76.536286,39.253186],[-76.536288,39.253181],[-76.536289,39.253175],[-76.536291,39.25317],[-76.536293,39.253165],[-76.536295,39.253159],[-76.536296,39.253154],[-76.536298,39.253149],[-76.5363,39.253143],[-76.536301,39.253138],[-76.536303,39.253133],[-76.536305,39.253127],[-76.536307,39.253122],[-76.536308,39.253117],[-76.53631,39.253111],[-76.536312,39.253106],[-76.536313,39.253101],[-76.536315,39.253095],[-76.536317,39.25309],[-76.536319,39.253085],[-76.53632,39.253079],[-76.536322,39.253074],[-76.536324,39.253069],[-76.536325,39.253063],[-76.536327,39.253058],[-76.536329,39.253053],[-76.536331,39.253047],[-76.536332,39.253042],[-76.536334,39.253037],[-76.536336,39.253031],[-76.536338,39.253026],[-76.536339,39.253021],[-76.536341,39.253015],[-76.536343,39.25301],[-76.536344,39.253005],[-76.536346,39.252999],[-76.536348,39.252994],[-76.53635,39.252989],[-76.536351,39.252984],[-76.536353,39.252978],[-76.536355,39.252973],[-76.536356,39.252968],[-76.536358,39.252962],[-76.53636,39.252957],[-76.536362,39.252952],[-76.536363,39.252946],[-76.536365,39.252941],[-76.536367,39.252936],[-76.536368,39.25293],[-76.53637,39.252925],[-76.536372,39.25292],[-76.536374,39.252914],[-76.536375,39.252909],[-76.536377,39.252904],[-76.536379,39.252898],[-76.53638,39.252893],[-76.536382,39.252888],[-76.536384,39.252882],[-76.536386,39.252877],[-76.536387,39.252872],[-76.536389,39.252866],[-76.536391,39.252861],[-76.536392,39.252856],[-76.536394,39.25285],[-76.536396,39.252845],[-76.536397,39.25284],[-76.536399,39.252834],[-76.536401,39.252829],[-76.536403,39.252824],[-76.536404,39.252818],[-76.536406,39.252813],[-76.536408,39.252808],[-76.536409,39.252802],[-76.536411,39.252797],[-76.536413,39.252792],[-76.536414,39.252786],[-76.536416,39.252781],[-76.536418,39.252776],[-76.536419,39.25277],[-76.536421,39.252765],[-76.536423,39.25276],[-76.536424,39.252754],[-76.536426,39.252749],[-76.536428,39.252744],[-76.536429,39.252738],[-76.536431,39.252733],[-76.536433,39.252728],[-76.536434,39.252722],[-76.536436,39.252717],[-76.536438,39.252712],[-76.536439,39.252706],[-76.536441,39.252701],[-76.536443,39.252696],[-76.536444,39.25269],[-76.536446,39.252685],[-76.536448,39.25268],[-76.536449,39.252674],[-76.536451,39.252669],[-76.536453,39.252664],[-76.536454,39.252658],[-76.536456,39.252653],[-76.536458,39.252648],[-76.536459,39.252642],[-76.536461,39.252637],[-76.536463,39.252632],[-76.536464,39.252626],[-76.536466,39.252621],[-76.536468,39.252616],[-76.536469,39.25261],[-76.536471,39.252605],[-76.536472,39.2526],[-76.536474,39.252594],[-76.536476,39.252589],[-76.536477,39.252584],[-76.536479,39.252578],[-76.536481,39.252573],[-76.536482,39.252568],[-76.536484,39.252562],[-76.536486,39.252557],[-76.536487,39.252552],[-76.536489,39.252546],[-76.536491,39.252541],[-76.536492,39.252535],[-76.536494,39.25253],[-76.536495,39.252525],[-76.536497,39.252519],[-76.536499,39.252514],[-76.5365,39.252509],[-76.536502,39.252503],[-76.536504,39.252498],[-76.536505,39.252493],[-76.536507,39.252487],[-76.536509,39.252482],[-76.53651,39.252477],[-76.536512,39.252471],[-76.536514,39.252466],[-76.536515,39.252461],[-76.536517,39.252455],[-76.536519,39.25245],[-76.53652,39.252445],[-76.536522,39.252439],[-76.536524,39.252434],[-76.536525,39.252429],[-76.536527,39.252423],[-76.536529,39.252418],[-76.53653,39.252413],[-76.536532,39.252407],[-76.536534,39.252402],[-76.536535,39.252397],[-76.536537,39.252391],[-76.536539,39.252386],[-76.53654,39.252381],[-76.536542,39.252375],[-76.536544,39.25237],[-76.536546,39.252365],[-76.536547,39.252359],[-76.536549,39.252354],[-76.536551,39.252349],[-76.536552,39.252343],[-76.536554,39.252338],[-76.536556,39.252333],[-76.536557,39.252327],[-76.536559,39.252322],[-76.536561,39.252317],[-76.536563,39.252311],[-76.536564,39.252306],[-76.536566,39.252301],[-76.536568,39.252295],[-76.536569,39.25229],[-76.536571,39.252285],[-76.536573,39.252279],[-76.536575,39.252274],[-76.536576,39.252269],[-76.536578,39.252264],[-76.53658,39.252258],[-76.536581,39.252253],[-76.536583,39.252248],[-76.536585,39.252242],[-76.536587,39.252237],[-76.536588,39.252232],[-76.53659,39.252226],[-76.536592,39.252221],[-76.536593,39.252216],[-76.536595,39.25221],[-76.536597,39.252205],[-76.536598,39.2522],[-76.5366,39.252194],[-76.536602,39.252189],[-76.536603,39.252183],[-76.536605,39.252178],[-76.536606,39.252173],[-76.536608,39.252167],[-76.53661,39.252162],[-76.536611,39.252157],[-76.536613,39.252151],[-76.536615,39.252146],[-76.536616,39.252141],[-76.536618,39.252135],[-76.53662,39.25213],[-76.536621,39.252125],[-76.536623,39.252119],[-76.536625,39.252114],[-76.536626,39.252109],[-76.536628,39.252103],[-76.53663,39.252098],[-76.536631,39.252093],[-76.536633,39.252087],[-76.536635,39.252082],[-76.536636,39.252077],[-76.536638,39.252071],[-76.53664,39.252066],[-76.536642,39.252061],[-76.536643,39.252055],[-76.536645,39.25205],[-76.536647,39.252045],[-76.536648,39.252039],[-76.53665,39.252034],[-76.536652,39.252029],[-76.536653,39.252023],[-76.536655,39.252018],[-76.536657,39.252013],[-76.536658,39.252007],[-76.53666,39.252002],[-76.536662,39.251997],[-76.536663,39.251991],[-76.536665,39.251986],[-76.536667,39.251981],[-76.536668,39.251975],[-76.53667,39.25197],[-76.536672,39.251965],[-76.536673,39.251959],[-76.536675,39.251954],[-76.536677,39.251949],[-76.536678,39.251943],[-76.53668,39.251938],[-76.536682,39.251933],[-76.536683,39.251927],[-76.536685,39.251922],[-76.536687,39.251917],[-76.536689,39.251911],[-76.53669,39.251906],[-76.536692,39.251901],[-76.536694,39.251895],[-76.536695,39.25189],[-76.536696,39.251888],[-76.536697,39.251885],[-76.536699,39.251879],[-76.536701,39.251874],[-76.536702,39.251869],[-76.536704,39.251863],[-76.536706,39.251858],[-76.536707,39.251853],[-76.536709,39.251847],[-76.53671,39.251842],[-76.536712,39.251837],[-76.536714,39.251831],[-76.536715,39.251826],[-76.536717,39.251821],[-76.536719,39.251815],[-76.53672,39.25181],[-76.536722,39.251805],[-76.536723,39.251799],[-76.536725,39.251794],[-76.536727,39.251789],[-76.536728,39.251783],[-76.53673,39.251778],[-76.536732,39.251773],[-76.536733,39.251767],[-76.536735,39.251762],[-76.536737,39.251757],[-76.536738,39.251751],[-76.53674,39.251746],[-76.536742,39.251741],[-76.536743,39.251735],[-76.536745,39.25173],[-76.536747,39.251725],[-76.536749,39.251719],[-76.53675,39.251714],[-76.536752,39.251709],[-76.536754,39.251703],[-76.536755,39.251698],[-76.536757,39.251693],[-76.536759,39.251687],[-76.53676,39.251682],[-76.536762,39.251677],[-76.536764,39.251671],[-76.536765,39.251666],[-76.536767,39.251661],[-76.536769,39.251655],[-76.53677,39.25165],[-76.536772,39.251645],[-76.536774,39.251639],[-76.536775,39.251634],[-76.536777,39.251629],[-76.536779,39.251623],[-76.53678,39.251618],[-76.536782,39.251613],[-76.536784,39.251607],[-76.536785,39.251602],[-76.536787,39.251597],[-76.536789,39.251591],[-76.536791,39.251586],[-76.536792,39.251581],[-76.536794,39.251575],[-76.536796,39.25157],[-76.536797,39.251565],[-76.536799,39.251559],[-76.536802,39.25155],[-76.536804,39.251545],[-76.536805,39.251539],[-76.536807,39.251534],[-76.536809,39.251529],[-76.53681,39.251523],[-76.536812,39.251518],[-76.536814,39.251513],[-76.536815,39.251507],[-76.536817,39.251502],[-76.536819,39.251497],[-76.536821,39.251491],[-76.536822,39.251486],[-76.536824,39.251481],[-76.536826,39.251475],[-76.536827,39.25147],[-76.536829,39.251465],[-76.536831,39.251459],[-76.536832,39.251454],[-76.536834,39.251449],[-76.536836,39.251443],[-76.536837,39.251438],[-76.536839,39.251433],[-76.536841,39.251427],[-76.536842,39.251422],[-76.536844,39.251417],[-76.536846,39.251411],[-76.536847,39.251406],[-76.536849,39.251401],[-76.536851,39.251395],[-76.536853,39.25139],[-76.536854,39.251385],[-76.536856,39.251379],[-76.536858,39.251374],[-76.536859,39.251369],[-76.536861,39.251363],[-76.536863,39.251358],[-76.536864,39.251353],[-76.536866,39.251347],[-76.536868,39.251342],[-76.536869,39.251337],[-76.536871,39.251331],[-76.536873,39.251326],[-76.536874,39.251321],[-76.536876,39.251315],[-76.536878,39.25131],[-76.53688,39.251305],[-76.536881,39.251299],[-76.536883,39.251294],[-76.536885,39.251289],[-76.536886,39.251283],[-76.536888,39.251278],[-76.53689,39.251273],[-76.536891,39.251267],[-76.536893,39.251262],[-76.536895,39.251257],[-76.536896,39.251251],[-76.536898,39.251246],[-76.5369,39.251241],[-76.536902,39.251235],[-76.536903,39.25123],[-76.536905,39.251225],[-76.536907,39.251219],[-76.536908,39.251214],[-76.53691,39.251209],[-76.536912,39.251203],[-76.536913,39.251198],[-76.536915,39.251193],[-76.536917,39.251187],[-76.536919,39.251182],[-76.53692,39.251177],[-76.536922,39.251171],[-76.536924,39.251166],[-76.536925,39.251161],[-76.536927,39.251155],[-76.536929,39.25115],[-76.53693,39.251145],[-76.536932,39.251139],[-76.536934,39.251134],[-76.536936,39.251129],[-76.536937,39.251123],[-76.536939,39.251118],[-76.536941,39.251113],[-76.536942,39.251107],[-76.536944,39.251102],[-76.536946,39.251097],[-76.536947,39.251091],[-76.536949,39.251086],[-76.536951,39.251081],[-76.536952,39.251075],[-76.536954,39.25107],[-76.536956,39.251065],[-76.536958,39.251059],[-76.536959,39.251054],[-76.536961,39.251049],[-76.536963,39.251043],[-76.536964,39.251038],[-76.536966,39.251033],[-76.536968,39.251027],[-76.536969,39.251022],[-76.536971,39.251017],[-76.536973,39.251011],[-76.536974,39.251006],[-76.536976,39.251001],[-76.536978,39.250995],[-76.536979,39.25099],[-76.536981,39.250985],[-76.536983,39.250979],[-76.536984,39.250974],[-76.536986,39.250969],[-76.536988,39.250963],[-76.536989,39.250958],[-76.536991,39.250953],[-76.536993,39.250947],[-76.536994,39.250942],[-76.536996,39.250937],[-76.536998,39.250931],[-76.536999,39.250926],[-76.537001,39.250921],[-76.537003,39.250915],[-76.537004,39.25091],[-76.537006,39.250905],[-76.537008,39.250899],[-76.537009,39.250894],[-76.537011,39.250889],[-76.537013,39.250883],[-76.537014,39.250878],[-76.537016,39.250873],[-76.537018,39.250867],[-76.537019,39.250862],[-76.537021,39.250857],[-76.537023,39.250851],[-76.537024,39.250846],[-76.537026,39.250841],[-76.537028,39.250835],[-76.53703,39.25083],[-76.537031,39.250825],[-76.537033,39.250819],[-76.537035,39.250814],[-76.537036,39.250809],[-76.537038,39.250803],[-76.53704,39.250798],[-76.537041,39.250793],[-76.537043,39.250787],[-76.537045,39.250782],[-76.537046,39.250777],[-76.537048,39.250771],[-76.53705,39.250766],[-76.537052,39.250761],[-76.537053,39.250755],[-76.537055,39.25075],[-76.537057,39.250745],[-76.537058,39.250739],[-76.53706,39.250734],[-76.537062,39.250729],[-76.537064,39.250723],[-76.537065,39.250718],[-76.537067,39.250713],[-76.537069,39.250707],[-76.53707,39.250702],[-76.537072,39.250697],[-76.537074,39.250691],[-76.537075,39.250686],[-76.537077,39.250681],[-76.537079,39.250675],[-76.537081,39.25067],[-76.537082,39.250665],[-76.537084,39.250659],[-76.537086,39.250654],[-76.537087,39.250649],[-76.537089,39.250643],[-76.537091,39.250638],[-76.537092,39.250633],[-76.537094,39.250627],[-76.537096,39.250622],[-76.537097,39.250617],[-76.537099,39.250611],[-76.537101,39.250606],[-76.537103,39.250601],[-76.537104,39.250595],[-76.537106,39.25059],[-76.537108,39.250585],[-76.537109,39.250579],[-76.537111,39.250574],[-76.537113,39.250569],[-76.537114,39.250563],[-76.537116,39.250558],[-76.537118,39.250553],[-76.537119,39.250547],[-76.537121,39.250542],[-76.537123,39.250537],[-76.537124,39.250531],[-76.537126,39.250526],[-76.537128,39.250521],[-76.537129,39.250515],[-76.537131,39.25051],[-76.537133,39.250505],[-76.537135,39.250499],[-76.537136,39.250494],[-76.537138,39.250489],[-76.53714,39.250483],[-76.537141,39.250478],[-76.537143,39.250473],[-76.537145,39.250467],[-76.537146,39.250462],[-76.537148,39.250457],[-76.53715,39.250451],[-76.537151,39.250446],[-76.537153,39.250441],[-76.537155,39.250435],[-76.537156,39.25043],[-76.537158,39.250425],[-76.53716,39.250419],[-76.537161,39.250414],[-76.537163,39.250409],[-76.537165,39.250403],[-76.537166,39.250398],[-76.537168,39.250393],[-76.53717,39.250387],[-76.537171,39.250382],[-76.537173,39.250377],[-76.537175,39.250371],[-76.537176,39.250366],[-76.537178,39.250361],[-76.53718,39.250355],[-76.537181,39.25035],[-76.537183,39.250345],[-76.537185,39.250339],[-76.537186,39.250334],[-76.537188,39.250329],[-76.537189,39.250324],[-76.53719,39.250323],[-76.537191,39.250318],[-76.537193,39.250313],[-76.537195,39.250307],[-76.537196,39.250302],[-76.537198,39.250297],[-76.5372,39.250291],[-76.537202,39.250286],[-76.537203,39.250281],[-76.537205,39.250275],[-76.537207,39.25027],[-76.537208,39.250265],[-76.53721,39.250259],[-76.537212,39.250254],[-76.537213,39.250249],[-76.537215,39.250243],[-76.537217,39.250238],[-76.537218,39.250233],[-76.53722,39.250227],[-76.537222,39.250222],[-76.537223,39.250217],[-76.537225,39.250211],[-76.537227,39.250206],[-76.537228,39.250201],[-76.53723,39.250195],[-76.537232,39.25019],[-76.537233,39.250185],[-76.537235,39.250179],[-76.537237,39.250174],[-76.537238,39.250169],[-76.53724,39.250163],[-76.537242,39.250158],[-76.537243,39.250153],[-76.537245,39.250147],[-76.537247,39.250142],[-76.537248,39.250137],[-76.53725,39.250131],[-76.537252,39.250126],[-76.537254,39.250121],[-76.537255,39.250115],[-76.537257,39.25011],[-76.537259,39.250105],[-76.53726,39.250099],[-76.537262,39.250094],[-76.537264,39.250089],[-76.537265,39.250083],[-76.537267,39.250078],[-76.537269,39.250073],[-76.53727,39.250067],[-76.537272,39.250062],[-76.537274,39.250057],[-76.537275,39.250051],[-76.537277,39.250046],[-76.537279,39.250041],[-76.53728,39.250035],[-76.537282,39.25003],[-76.537284,39.250025],[-76.537285,39.250019],[-76.537287,39.250014],[-76.537289,39.250009],[-76.537291,39.250003],[-76.537292,39.249998],[-76.537294,39.249993],[-76.537296,39.249987],[-76.537297,39.249982],[-76.537299,39.249977],[-76.537301,39.249971],[-76.537302,39.249966],[-76.537304,39.249961],[-76.537306,39.249955],[-76.537307,39.24995],[-76.537309,39.249945],[-76.537311,39.249939],[-76.537313,39.249934],[-76.537314,39.249929],[-76.537316,39.249923],[-76.537318,39.249918],[-76.537319,39.249913],[-76.537321,39.249907],[-76.537323,39.249902],[-76.537324,39.249897],[-76.537326,39.249891],[-76.537328,39.249886],[-76.537329,39.249881],[-76.537331,39.249875],[-76.537333,39.24987],[-76.537335,39.249865],[-76.537336,39.249859],[-76.537338,39.249854],[-76.53734,39.249849],[-76.537341,39.249844],[-76.537343,39.249838],[-76.537345,39.249833],[-76.537346,39.249828],[-76.537348,39.249822],[-76.53735,39.249817],[-76.537352,39.249812],[-76.537353,39.249806],[-76.537355,39.249801],[-76.537357,39.249796],[-76.537358,39.24979],[-76.53736,39.249785],[-76.537362,39.24978],[-76.537363,39.249774],[-76.537365,39.249769],[-76.537367,39.249764],[-76.537368,39.249758],[-76.53737,39.249753],[-76.537372,39.249748],[-76.537374,39.249742],[-76.537375,39.249737],[-76.537377,39.249732],[-76.537379,39.249726],[-76.53738,39.249721],[-76.537382,39.249716],[-76.537384,39.24971],[-76.537385,39.249705],[-76.537387,39.2497],[-76.537389,39.249694],[-76.537391,39.249689],[-76.537392,39.249684],[-76.537394,39.249678],[-76.537396,39.249673],[-76.537397,39.249668],[-76.537399,39.249662],[-76.537401,39.249657],[-76.537402,39.249652],[-76.537404,39.249646],[-76.537406,39.249641],[-76.537407,39.249636],[-76.537409,39.24963],[-76.537411,39.249625],[-76.537413,39.24962],[-76.537414,39.249614],[-76.537416,39.249609],[-76.537418,39.249604],[-76.537419,39.249598],[-76.537421,39.249593],[-76.537423,39.249588],[-76.537424,39.249582],[-76.537426,39.249577],[-76.537428,39.249572],[-76.53743,39.249566],[-76.537431,39.249561],[-76.537433,39.249556],[-76.537435,39.24955],[-76.537436,39.249545],[-76.537438,39.24954],[-76.53744,39.249534],[-76.537441,39.249529],[-76.537443,39.249524],[-76.537445,39.249518],[-76.537447,39.249513],[-76.537448,39.249508],[-76.53745,39.249502],[-76.537452,39.249497],[-76.537453,39.249492],[-76.537455,39.249486],[-76.537457,39.249481],[-76.537458,39.249476],[-76.53746,39.24947],[-76.537462,39.249465],[-76.537464,39.24946],[-76.537465,39.249454],[-76.537467,39.249449],[-76.537469,39.249444],[-76.53747,39.249438],[-76.537472,39.249433],[-76.537474,39.249428],[-76.537475,39.249422],[-76.537477,39.249417],[-76.537479,39.249412],[-76.53748,39.249406],[-76.537482,39.249401],[-76.537484,39.249396],[-76.537486,39.24939],[-76.537487,39.249385],[-76.537489,39.24938],[-76.537491,39.249374],[-76.537492,39.249369],[-76.537494,39.249364],[-76.537496,39.249358],[-76.537497,39.249353],[-76.537499,39.249348],[-76.537501,39.249342],[-76.537503,39.249337],[-76.537504,39.249332],[-76.537506,39.249326],[-76.537508,39.249321],[-76.537509,39.249316],[-76.537511,39.24931],[-76.537513,39.249305],[-76.537514,39.2493],[-76.537516,39.249294],[-76.537518,39.249289],[-76.53752,39.249284],[-76.537521,39.249279],[-76.537523,39.249273],[-76.537525,39.249268],[-76.537526,39.249263],[-76.537528,39.249257],[-76.53753,39.249252],[-76.537531,39.249247],[-76.537533,39.249241],[-76.537535,39.249236],[-76.537536,39.249231],[-76.537538,39.249225],[-76.53754,39.24922],[-76.537542,39.249215],[-76.537543,39.249209],[-76.537545,39.249204],[-76.537547,39.249199],[-76.537548,39.249193],[-76.53755,39.249188],[-76.537552,39.249183],[-76.537553,39.249177],[-76.537555,39.249172],[-76.537557,39.249167],[-76.537559,39.249161],[-76.53756,39.249156],[-76.537562,39.249151],[-76.537564,39.249145],[-76.537565,39.24914],[-76.537567,39.249135],[-76.537569,39.249129],[-76.53757,39.249124],[-76.537573,39.249116],[-76.537575,39.249111],[-76.537577,39.249105],[-76.537578,39.2491],[-76.53758,39.249095],[-76.537582,39.249089],[-76.537584,39.249084],[-76.537586,39.249079],[-76.537587,39.249073],[-76.537589,39.249068],[-76.537591,39.249063],[-76.537592,39.249057],[-76.537594,39.249052],[-76.537596,39.249047],[-76.537597,39.249041],[-76.537599,39.249036],[-76.537601,39.249031],[-76.537602,39.249025],[-76.537604,39.24902],[-76.537606,39.249015],[-76.537607,39.249009],[-76.537609,39.249004],[-76.537611,39.248999],[-76.537612,39.248993],[-76.537614,39.248988],[-76.537615,39.248983],[-76.537617,39.248977],[-76.537619,39.248972],[-76.53762,39.248967],[-76.537622,39.248961],[-76.537624,39.248956],[-76.537625,39.248951],[-76.537627,39.248945],[-76.537629,39.24894],[-76.53763,39.248935],[-76.537632,39.248929],[-76.537633,39.248924],[-76.537635,39.248919],[-76.537637,39.248913],[-76.537638,39.248908],[-76.53764,39.248903],[-76.537642,39.248897],[-76.537643,39.248892],[-76.537645,39.248887],[-76.537647,39.248881],[-76.537648,39.248876],[-76.53765,39.248871],[-76.537652,39.248865],[-76.537654,39.24886],[-76.537655,39.248855],[-76.537657,39.248849],[-76.537659,39.248844],[-76.53766,39.248839],[-76.537662,39.248833],[-76.537664,39.248828],[-76.537666,39.248823],[-76.537667,39.248817],[-76.537669,39.248812],[-76.537671,39.248807],[-76.537673,39.248801],[-76.537674,39.248796],[-76.537676,39.248791],[-76.537678,39.248785],[-76.53768,39.24878],[-76.537681,39.248775],[-76.537683,39.248769],[-76.537685,39.248764],[-76.537687,39.248759],[-76.537688,39.248753],[-76.53769,39.248748],[-76.537692,39.248743],[-76.537693,39.248737],[-76.537695,39.248732],[-76.537697,39.248727],[-76.537699,39.248721],[-76.5377,39.248716],[-76.537702,39.248711],[-76.537704,39.248705],[-76.537705,39.2487],[-76.537707,39.248695],[-76.537709,39.24869],[-76.537711,39.248684],[-76.537712,39.248679],[-76.537714,39.248674],[-76.537716,39.248668],[-76.537717,39.248663],[-76.537719,39.248658],[-76.537721,39.248652],[-76.537722,39.248647],[-76.537724,39.248642],[-76.537726,39.248636],[-76.537727,39.248631],[-76.537729,39.248626],[-76.537731,39.24862],[-76.537733,39.248615],[-76.537734,39.24861],[-76.537736,39.248604],[-76.537738,39.248599],[-76.537739,39.248594],[-76.537741,39.248588],[-76.537743,39.248583],[-76.537744,39.248578],[-76.537746,39.248572],[-76.537748,39.248567],[-76.537749,39.248562],[-76.537751,39.248556],[-76.537753,39.248551],[-76.537754,39.248546],[-76.537756,39.24854],[-76.537758,39.248535],[-76.537759,39.24853],[-76.537761,39.248524],[-76.537763,39.248519],[-76.537764,39.248514],[-76.537766,39.248508],[-76.537768,39.248503],[-76.537769,39.248498],[-76.537771,39.248492],[-76.537773,39.248487],[-76.537774,39.248481],[-76.537776,39.248476],[-76.537778,39.248471],[-76.537779,39.248465],[-76.537781,39.24846],[-76.537783,39.248455],[-76.537784,39.248449],[-76.537786,39.248444],[-76.537788,39.248439],[-76.537789,39.248433],[-76.537791,39.248428],[-76.537793,39.248423],[-76.537794,39.248417],[-76.537796,39.248412],[-76.537798,39.248407],[-76.537799,39.248401],[-76.537801,39.248396],[-76.537803,39.248391],[-76.537804,39.248385],[-76.537806,39.24838],[-76.537808,39.248375],[-76.537809,39.248369],[-76.537811,39.248364],[-76.537813,39.248359],[-76.537814,39.248353],[-76.537816,39.248348],[-76.537818,39.248343],[-76.537819,39.248337],[-76.537821,39.248332],[-76.537823,39.248327],[-76.537824,39.248321],[-76.537826,39.248316],[-76.537828,39.248311],[-76.537829,39.248305],[-76.537831,39.2483],[-76.537833,39.248295],[-76.537834,39.248289],[-76.537836,39.248284],[-76.537838,39.248279],[-76.537839,39.248273],[-76.537841,39.248268],[-76.537843,39.248263],[-76.537844,39.248257],[-76.537846,39.248252],[-76.537848,39.248247],[-76.53785,39.248241],[-76.537851,39.248236],[-76.537853,39.248231],[-76.537855,39.248225],[-76.537856,39.24822],[-76.537858,39.248215],[-76.53786,39.248209],[-76.537861,39.248204],[-76.537863,39.248199],[-76.537865,39.248193],[-76.537866,39.248188],[-76.537868,39.248183],[-76.53787,39.248177],[-76.537871,39.248172],[-76.537873,39.248167],[-76.537875,39.248161],[-76.537876,39.248156],[-76.537878,39.248151],[-76.53788,39.248145],[-76.537881,39.24814],[-76.537883,39.248135],[-76.537885,39.248129],[-76.537886,39.248124],[-76.537888,39.248119],[-76.53789,39.248113],[-76.537891,39.248108],[-76.537893,39.248103],[-76.537895,39.248097],[-76.537896,39.248092],[-76.537898,39.248087],[-76.5379,39.248081],[-76.537901,39.248076],[-76.537903,39.248071],[-76.537905,39.248065],[-76.537906,39.24806],[-76.537908,39.248055],[-76.53791,39.248049],[-76.537911,39.248044],[-76.537913,39.248039],[-76.537915,39.248033],[-76.537916,39.248028],[-76.537918,39.248023],[-76.53792,39.248017],[-76.537921,39.248012],[-76.537923,39.248007],[-76.537925,39.248001],[-76.537926,39.247996],[-76.537928,39.247991],[-76.53793,39.247985],[-76.537931,39.24798],[-76.537933,39.247975],[-76.537935,39.247969],[-76.537936,39.247964],[-76.537938,39.247959],[-76.53794,39.247953],[-76.537941,39.247948],[-76.537943,39.247943],[-76.537945,39.247937],[-76.537946,39.247932],[-76.537948,39.247927],[-76.53795,39.247921],[-76.537951,39.247916],[-76.537953,39.247911],[-76.537955,39.247905],[-76.537956,39.2479],[-76.537958,39.247895],[-76.53796,39.247889],[-76.537961,39.247884],[-76.537963,39.247879],[-76.537964,39.247873],[-76.537966,39.247868],[-76.537968,39.247863],[-76.537969,39.247857],[-76.537971,39.247852],[-76.537973,39.247847],[-76.537974,39.247841],[-76.537976,39.247836],[-76.537978,39.247831],[-76.537979,39.247825],[-76.537981,39.24782],[-76.537983,39.247815],[-76.537984,39.247809],[-76.537986,39.247804],[-76.537988,39.247798],[-76.537989,39.247793],[-76.537991,39.247788],[-76.537993,39.247782],[-76.537994,39.247777],[-76.537996,39.247772],[-76.537998,39.247766],[-76.537999,39.247761],[-76.538001,39.247756],[-76.538003,39.24775],[-76.538005,39.247745],[-76.538006,39.24774],[-76.538008,39.247735],[-76.53801,39.247729],[-76.538011,39.247724],[-76.538013,39.247719],[-76.538015,39.247713],[-76.538016,39.247708],[-76.538018,39.247703],[-76.53802,39.247697],[-76.538022,39.247692],[-76.538023,39.247687],[-76.538025,39.247681],[-76.538027,39.247676],[-76.538028,39.247671],[-76.53803,39.247665],[-76.538032,39.24766],[-76.538033,39.247655],[-76.538035,39.247649],[-76.538037,39.247644],[-76.538039,39.247639],[-76.53804,39.247633],[-76.538042,39.247628],[-76.538044,39.247623],[-76.538045,39.247617],[-76.538047,39.247612],[-76.538049,39.247607],[-76.538051,39.247601],[-76.538052,39.247596],[-76.538054,39.247591],[-76.538056,39.247585],[-76.538057,39.24758],[-76.538059,39.247575],[-76.538061,39.247569],[-76.538063,39.247564],[-76.538064,39.247559],[-76.538066,39.247553],[-76.538068,39.247548],[-76.538069,39.247543],[-76.538071,39.247537],[-76.538073,39.247532],[-76.538075,39.247527],[-76.538076,39.247521],[-76.538078,39.247516],[-76.53808,39.247511],[-76.538081,39.247505],[-76.538083,39.2475],[-76.538085,39.247495],[-76.538087,39.247489],[-76.538088,39.247484],[-76.53809,39.247479],[-76.538092,39.247473],[-76.538093,39.247468],[-76.538095,39.247463],[-76.538097,39.247457],[-76.538099,39.247452],[-76.5381,39.247447],[-76.538102,39.247441],[-76.538104,39.247436],[-76.538105,39.247431],[-76.538107,39.247426],[-76.538109,39.24742],[-76.538111,39.247415],[-76.538112,39.24741],[-76.538114,39.247404],[-76.538116,39.247399],[-76.538117,39.247394],[-76.538119,39.247388],[-76.538121,39.247383],[-76.538123,39.247378],[-76.538124,39.247372],[-76.538126,39.247367],[-76.538128,39.247362],[-76.538129,39.247356],[-76.538131,39.247351],[-76.538133,39.247346],[-76.538134,39.24734],[-76.538136,39.247335],[-76.538138,39.24733],[-76.53814,39.247324],[-76.538141,39.247319],[-76.538143,39.247314],[-76.538145,39.247308],[-76.538146,39.247303],[-76.538148,39.247298],[-76.53815,39.247292],[-76.538151,39.247287],[-76.538153,39.247282],[-76.538155,39.247276],[-76.538156,39.247271],[-76.538158,39.247266],[-76.53816,39.24726],[-76.538162,39.247255],[-76.538163,39.24725],[-76.538165,39.247244],[-76.538167,39.247239],[-76.538168,39.247234],[-76.53817,39.247228],[-76.538172,39.247223],[-76.538173,39.247218],[-76.538175,39.247212],[-76.538177,39.247207],[-76.538178,39.247202],[-76.53818,39.247196],[-76.538182,39.247191],[-76.538183,39.247186],[-76.538185,39.24718],[-76.538187,39.247175],[-76.538188,39.24717],[-76.53819,39.247164],[-76.538192,39.247159],[-76.538193,39.247154],[-76.538195,39.247148],[-76.538197,39.247143],[-76.538198,39.247138],[-76.5382,39.247132],[-76.538202,39.247127],[-76.538203,39.247122],[-76.538205,39.247116],[-76.538206,39.247111],[-76.538208,39.247106],[-76.53821,39.2471],[-76.538211,39.247095],[-76.538213,39.24709],[-76.538215,39.247084],[-76.538216,39.247079],[-76.538218,39.247074],[-76.53822,39.247068],[-76.538221,39.247063],[-76.538223,39.247057],[-76.538225,39.247052],[-76.538226,39.247047],[-76.538228,39.247041],[-76.53823,39.247036],[-76.538231,39.247031],[-76.538233,39.247025],[-76.538234,39.24702],[-76.538236,39.247015],[-76.538238,39.247009],[-76.538239,39.247005],[-76.538239,39.247004],[-76.538241,39.246999],[-76.538243,39.246993],[-76.538244,39.246988],[-76.538246,39.246983],[-76.538248,39.246977],[-76.538249,39.246972],[-76.538251,39.246967],[-76.538253,39.246961],[-76.538254,39.246956],[-76.538256,39.246951],[-76.538257,39.246945],[-76.538259,39.24694],[-76.538261,39.246935],[-76.538262,39.246929],[-76.538264,39.246924],[-76.538266,39.246919],[-76.538267,39.246913],[-76.538269,39.246908],[-76.538271,39.246903],[-76.538272,39.246897],[-76.538274,39.246892],[-76.538276,39.246887],[-76.538277,39.246881],[-76.538279,39.246876],[-76.538281,39.246871],[-76.538282,39.246865],[-76.538284,39.24686],[-76.538285,39.246855],[-76.538287,39.246849],[-76.538289,39.246844],[-76.53829,39.246839],[-76.538292,39.246833],[-76.538294,39.246828],[-76.538295,39.246822],[-76.538297,39.246817],[-76.538298,39.246812],[-76.5383,39.246806],[-76.538302,39.246801],[-76.538303,39.246796],[-76.538305,39.24679],[-76.538307,39.246785],[-76.538308,39.24678],[-76.53831,39.246774],[-76.538312,39.246769],[-76.538313,39.246764],[-76.538315,39.246758],[-76.538316,39.246753],[-76.538318,39.246748],[-76.53832,39.246742],[-76.538321,39.246737],[-76.538323,39.246732],[-76.538325,39.246726],[-76.538326,39.246721],[-76.538328,39.246716],[-76.53833,39.24671],[-76.538331,39.246705],[-76.538333,39.2467],[-76.538335,39.246694],[-76.538336,39.246689],[-76.538338,39.246684],[-76.53834,39.246678],[-76.538342,39.246671],[-76.538344,39.246666],[-76.538345,39.246661],[-76.538347,39.246655],[-76.538349,39.24665],[-76.53835,39.246645],[-76.538352,39.246639],[-76.538354,39.246634],[-76.538356,39.246629],[-76.538357,39.246623],[-76.538359,39.246618],[-76.538361,39.246613],[-76.538362,39.246607],[-76.538364,39.246602],[-76.538366,39.246597],[-76.538367,39.246591],[-76.538369,39.246586],[-76.538371,39.246581],[-76.538372,39.246575],[-76.538374,39.24657],[-76.538376,39.246565],[-76.538378,39.246559],[-76.538379,39.246554],[-76.538381,39.246549],[-76.538383,39.246543],[-76.538384,39.246538],[-76.538386,39.246533],[-76.538388,39.246527],[-76.538389,39.246522],[-76.538391,39.246517],[-76.538393,39.246511],[-76.538394,39.246506],[-76.538396,39.246501],[-76.538398,39.246495],[-76.5384,39.24649],[-76.538401,39.246485],[-76.538403,39.246479],[-76.538405,39.246474],[-76.538406,39.246469],[-76.538408,39.246463],[-76.53841,39.246458],[-76.538411,39.246453],[-76.538413,39.246447],[-76.538415,39.246442],[-76.538416,39.246437],[-76.538418,39.246431],[-76.53842,39.246426],[-76.538422,39.246421],[-76.538423,39.246415],[-76.538425,39.24641],[-76.538427,39.246405],[-76.538428,39.246399],[-76.53843,39.246394],[-76.538432,39.246389],[-76.538433,39.246383],[-76.538435,39.246378],[-76.538437,39.246373],[-76.538438,39.246367],[-76.53844,39.246362],[-76.538442,39.246357],[-76.538444,39.246351],[-76.538445,39.246346],[-76.538447,39.246341],[-76.538449,39.246335],[-76.53845,39.24633],[-76.538452,39.246325],[-76.538454,39.246319],[-76.538455,39.246314],[-76.538457,39.246309],[-76.538459,39.246303],[-76.53846,39.246298],[-76.538462,39.246293],[-76.538464,39.246287],[-76.538466,39.246282],[-76.538467,39.246277],[-76.538469,39.246271],[-76.538471,39.246266],[-76.538472,39.246261],[-76.538474,39.246255],[-76.538476,39.24625],[-76.538477,39.246245],[-76.538479,39.246239],[-76.538481,39.246234],[-76.538483,39.246229],[-76.538484,39.246223],[-76.538486,39.246218],[-76.538488,39.246213],[-76.538489,39.246207],[-76.538491,39.246202],[-76.538493,39.246197],[-76.538494,39.246191],[-76.538496,39.246186],[-76.538498,39.246181],[-76.5385,39.246176],[-76.538501,39.24617],[-76.538503,39.246165],[-76.538505,39.24616],[-76.538506,39.246154],[-76.538508,39.246149],[-76.53851,39.246144],[-76.538511,39.246138],[-76.538513,39.246133],[-76.538515,39.246128],[-76.538517,39.246122],[-76.538518,39.246117],[-76.53852,39.246112],[-76.538522,39.246106],[-76.538523,39.246101],[-76.538525,39.246096],[-76.538527,39.24609],[-76.538529,39.246085],[-76.53853,39.24608],[-76.538532,39.246074],[-76.538534,39.246069],[-76.538535,39.246064],[-76.538537,39.246058],[-76.538539,39.246053],[-76.538541,39.246048],[-76.538542,39.246042],[-76.538544,39.246037],[-76.538546,39.246032],[-76.538547,39.246026],[-76.538549,39.246021],[-76.538551,39.246016],[-76.538553,39.24601],[-76.538554,39.246005],[-76.538556,39.246],[-76.538558,39.245994],[-76.538559,39.245989],[-76.538561,39.245984],[-76.538563,39.245978],[-76.538565,39.245973],[-76.538566,39.245968],[-76.538568,39.245962],[-76.53857,39.245957],[-76.538572,39.245952],[-76.538573,39.245946],[-76.538575,39.245941],[-76.538577,39.245936],[-76.538578,39.24593],[-76.53858,39.245925],[-76.538582,39.24592],[-76.538584,39.245915],[-76.538585,39.245909],[-76.538587,39.245904],[-76.538589,39.245899],[-76.53859,39.245893],[-76.538592,39.245888],[-76.538594,39.245883],[-76.538596,39.245877],[-76.538597,39.245872],[-76.538599,39.245867],[-76.538601,39.245861],[-76.538603,39.245856],[-76.538604,39.245851],[-76.538606,39.245845],[-76.538608,39.24584],[-76.538609,39.245835],[-76.538611,39.245829],[-76.538613,39.245824],[-76.538615,39.245819],[-76.538616,39.245813],[-76.538618,39.245808],[-76.53862,39.245803],[-76.538622,39.245797],[-76.538623,39.245792],[-76.538625,39.245787],[-76.538627,39.245781],[-76.538628,39.245776],[-76.53863,39.245771],[-76.538632,39.245765],[-76.538634,39.24576],[-76.538635,39.245755],[-76.538637,39.245749],[-76.538639,39.245744],[-76.538641,39.245739],[-76.538642,39.245733],[-76.538644,39.245728],[-76.538646,39.245723],[-76.538648,39.245718],[-76.538649,39.245712],[-76.538651,39.245707],[-76.538653,39.245702],[-76.538654,39.245696],[-76.538656,39.245691],[-76.538657,39.245685],[-76.538659,39.24568],[-76.538661,39.245675],[-76.538662,39.245669],[-76.538664,39.245664],[-76.538666,39.245659],[-76.538667,39.245653],[-76.538669,39.245648],[-76.53867,39.245643],[-76.538672,39.245637],[-76.538674,39.245632],[-76.538675,39.245627],[-76.538677,39.245621],[-76.538679,39.245616],[-76.53868,39.245611],[-76.538682,39.245605],[-76.538683,39.2456],[-76.538685,39.245595],[-76.538687,39.245589],[-76.538688,39.245584],[-76.53869,39.245579],[-76.538692,39.245573],[-76.538693,39.245568],[-76.538695,39.245563],[-76.538696,39.245557],[-76.538698,39.245552],[-76.5387,39.245547],[-76.538701,39.245541],[-76.538703,39.245536],[-76.538705,39.245531],[-76.538706,39.245525],[-76.538708,39.24552],[-76.53871,39.245514],[-76.538711,39.245509],[-76.538713,39.245504],[-76.538714,39.245498],[-76.538716,39.245493],[-76.538718,39.245488],[-76.538719,39.245482],[-76.538721,39.245477],[-76.538723,39.245472],[-76.538724,39.245466],[-76.538726,39.245461],[-76.538727,39.245456],[-76.538729,39.24545],[-76.538731,39.245445],[-76.538732,39.24544],[-76.538734,39.245434],[-76.538736,39.245429],[-76.538737,39.245424],[-76.538739,39.245418],[-76.538741,39.245413],[-76.538743,39.245408],[-76.538744,39.245402],[-76.540428,39.250526],[-76.540426,39.250527],[-76.540424,39.250527],[-76.540422,39.250527],[-76.54042,39.250528],[-76.540418,39.250528],[-76.540416,39.250528],[-76.540414,39.250529],[-76.540412,39.250529],[-76.540411,39.25053],[-76.540409,39.25053],[-76.540407,39.25053],[-76.540405,39.250531],[-76.540403,39.250532],[-76.540401,39.250532],[-76.5404,39.250533],[-76.540398,39.250533],[-76.540396,39.250534],[-76.540394,39.250535],[-76.540392,39.250535],[-76.540391,39.250536],[-76.540389,39.250537],[-76.540387,39.250538],[-76.540386,39.250538],[-76.540384,39.250539],[-76.540382,39.25054],[-76.540381,39.250541],[-76.540379,39.250542],[-76.540378,39.250543],[-76.540376,39.250543],[-76.540374,39.250544],[-76.540373,39.250545],[-76.540371,39.250546],[-76.54037,39.250547],[-76.540368,39.250548],[-76.540367,39.250549],[-76.540366,39.25055],[-76.540364,39.250551],[-76.540363,39.250553],[-76.540362,39.250554],[-76.54036,39.250555],[-76.540359,39.250556],[-76.540358,39.250557],[-76.540356,39.250558],[-76.540355,39.250559],[-76.540354,39.250561],[-76.540353,39.250562],[-76.540352,39.250563],[-76.540351,39.250564],[-76.54035,39.250566],[-76.540349,39.250567],[-76.540348,39.250568],[-76.540347,39.25057],[-76.540346,39.250571],[-76.540345,39.250572],[-76.540344,39.250574],[-76.540343,39.250575],[-76.540342,39.250576],[-76.540341,39.250578],[-76.54034,39.250579],[-76.54034,39.250581],[-76.540339,39.250582],[-76.540338,39.250583],[-76.540338,39.250585],[-76.540337,39.250586],[-76.540337,39.250588],[-76.540336,39.250589],[-76.540335,39.250591],[-76.540335,39.250592],[-76.540335,39.250594],[-76.540334,39.250595],[-76.540334,39.250597],[-76.540333,39.250598],[-76.540333,39.2506],[-76.540333,39.250601],[-76.540333,39.250603],[-76.540332,39.250604],[-76.540332,39.250606],[-76.540332,39.250607],[-76.540332,39.250609],[-76.540332,39.25061],[-76.540332,39.250612],[-76.540332,39.250613],[-76.540332,39.250615],[-76.540332,39.250616],[-76.540332,39.250618],[-76.540332,39.250619],[-76.540332,39.250621],[-76.540332,39.250622],[-76.540333,39.250624],[-76.540333,39.250625],[-76.540333,39.250627],[-76.540333,39.250628],[-76.540334,39.25063],[-76.540334,39.250631],[-76.540335,39.250633],[-76.540335,39.250634],[-76.540336,39.250636],[-76.540336,39.250637],[-76.540337,39.250639],[-76.540337,39.25064],[-76.540338,39.250642],[-76.540339,39.250643],[-76.540339,39.250644],[-76.54034,39.250646],[-76.540341,39.250647],[-76.540342,39.250649],[-76.540342,39.25065],[-76.540343,39.250651],[-76.540344,39.250653],[-76.540345,39.250654],[-76.540346,39.250655],[-76.540347,39.250657],[-76.540348,39.250658],[-76.540349,39.250659],[-76.54035,39.250661],[-76.540351,39.250662],[-76.540352,39.250663],[-76.540353,39.250664],[-76.540351,39.250664],[-76.54035,39.250664],[-76.540349,39.250663],[-76.540348,39.250663],[-76.540346,39.250663],[-76.540345,39.250663],[-76.540344,39.250662],[-76.540343,39.250662],[-76.540341,39.250662],[-76.54034,39.250662],[-76.540339,39.250662],[-76.540337,39.250662],[-76.540336,39.250662],[-76.540335,39.250662],[-76.540334,39.250662],[-76.540332,39.250663],[-76.540331,39.250663],[-76.54033,39.250663],[-76.540329,39.250663],[-76.540327,39.250664],[-76.540326,39.250664],[-76.540325,39.250664],[-76.540324,39.250665],[-76.540323,39.250665],[-76.540321,39.250666],[-76.54032,39.250666],[-76.540319,39.250667],[-76.540318,39.250667],[-76.540317,39.250668],[-76.540316,39.250668],[-76.540315,39.250669],[-76.540314,39.25067],[-76.540313,39.25067],[-76.540312,39.250671],[-76.540311,39.250672],[-76.54031,39.250673],[-76.540309,39.250674],[-76.540308,39.250675],[-76.540307,39.250676],[-76.540307,39.250677],[-76.540306,39.250677],[-76.540306,39.250678],[-76.540305,39.250679],[-76.540305,39.25068],[-76.540304,39.250681],[-76.540304,39.250682],[-76.540303,39.250683],[-76.540303,39.250684],[-76.540303,39.250685],[-76.540302,39.250686],[-76.540302,39.250687],[-76.540302,39.250688],[-76.540302,39.250689],[-76.540302,39.25069],[-76.540302,39.250691],[-76.540302,39.250692],[-76.540302,39.250693],[-76.540302,39.250694],[-76.540302,39.250695],[-76.540302,39.250696],[-76.540303,39.250697],[-76.540303,39.250698],[-76.540303,39.250699],[-76.540304,39.2507],[-76.540304,39.250701],[-76.540304,39.250702],[-76.540305,39.250703],[-76.540305,39.250704],[-76.540306,39.250704],[-76.540307,39.250705],[-76.540307,39.250706],[-76.540308,39.250707],[-76.540309,39.250708],[-76.540309,39.250709],[-76.54031,39.250709],[-76.540311,39.25071],[-76.540312,39.250711],[-76.540313,39.250712],[-76.540314,39.250712],[-76.540315,39.250713],[-76.540316,39.250714],[-76.540317,39.250714],[-76.540318,39.250715],[-76.540318,39.250716],[-76.540316,39.250716],[-76.540314,39.250717],[-76.540313,39.250717],[-76.540311,39.250717],[-76.540309,39.250717],[-76.540307,39.250718],[-76.540305,39.250718],[-76.540303,39.250718],[-76.540301,39.250719],[-76.5403,39.250719],[-76.540298,39.25072],[-76.540296,39.25072],[-76.540294,39.250721],[-76.540292,39.250721],[-76.540291,39.250722],[-76.540289,39.250722],[-76.540287,39.250723],[-76.540285,39.250723],[-76.540284,39.250724],[-76.540282,39.250725],[-76.54028,39.250725],[-76.540279,39.250726],[-76.540277,39.250727],[-76.540275,39.250727],[-76.540274,39.250728],[-76.540272,39.250729],[-76.54027,39.25073],[-76.540269,39.250731],[-76.540267,39.250731],[-76.540266,39.250732],[-76.540264,39.250733],[-76.540263,39.250734],[-76.540261,39.250735],[-76.54026,39.250736],[-76.540258,39.250737],[-76.540257,39.250738],[-76.540256,39.250739],[-76.540254,39.25074],[-76.540253,39.250741],[-76.540252,39.250742],[-76.54025,39.250743],[-76.540249,39.250744],[-76.540248,39.250745],[-76.540247,39.250747],[-76.540245,39.250748],[-76.540244,39.250749],[-76.540243,39.25075],[-76.540242,39.250751],[-76.540241,39.250752],[-76.54024,39.250754],[-76.540239,39.250755],[-76.540238,39.250756],[-76.540237,39.250757],[-76.540236,39.250759],[-76.540235,39.25076],[-76.540234,39.250761],[-76.540233,39.250763],[-76.540232,39.250764],[-76.540232,39.250765],[-76.540231,39.250767],[-76.54023,39.250768],[-76.540229,39.250769],[-76.540229,39.250771],[-76.540228,39.250772],[-76.540227,39.250773],[-76.540227,39.250775],[-76.540226,39.250776],[-76.540226,39.250778],[-76.540225,39.250779],[-76.540225,39.250781],[-76.540224,39.250782],[-76.540224,39.250783],[-76.540223,39.250785],[-76.540223,39.250786],[-76.540223,39.250788],[-76.540223,39.250789],[-76.540222,39.250791],[-76.540222,39.250792],[-76.540222,39.250794],[-76.540222,39.250795],[-76.540222,39.250797],[-76.540222,39.250798],[-76.540222,39.2508],[-76.540222,39.250801],[-76.540222,39.250802],[-76.540222,39.250804],[-76.540222,39.250805],[-76.540222,39.250807],[-76.540222,39.250808],[-76.540222,39.25081],[-76.540222,39.250811],[-76.540223,39.250813],[-76.540223,39.250814],[-76.540223,39.250816],[-76.540224,39.250817],[-76.540224,39.250819],[-76.540224,39.25082],[-76.540225,39.250821],[-76.540225,39.250823],[-76.540226,39.250824],[-76.540226,39.250826],[-76.540227,39.250827],[-76.540228,39.250829],[-76.540228,39.25083],[-76.540229,39.250831],[-76.54023,39.250833],[-76.54023,39.250834],[-76.540231,39.250835],[-76.540232,39.250837],[-76.540233,39.250838],[-76.540233,39.250839],[-76.540234,39.250841],[-76.540235,39.250842],[-76.540236,39.250843],[-76.540237,39.250845],[-76.540238,39.250846],[-76.540239,39.250847],[-76.54024,39.250848],[-76.540238,39.250848],[-76.540237,39.250848],[-76.540235,39.250848],[-76.540234,39.250848],[-76.540232,39.250848],[-76.540231,39.250848],[-76.540229,39.250848],[-76.540228,39.250848],[-76.540226,39.250848],[-76.540225,39.250848],[-76.540223,39.250848],[-76.540222,39.250848],[-76.540221,39.250849],[-76.540219,39.250849],[-76.540218,39.250849],[-76.540216,39.25085],[-76.540215,39.25085],[-76.540214,39.250851],[-76.540212,39.250851],[-76.540211,39.250852],[-76.54021,39.250852],[-76.540208,39.250853],[-76.540207,39.250853],[-76.540206,39.250854],[-76.540205,39.250855],[-76.540204,39.250855],[-76.540203,39.250856],[-76.540202,39.250857],[-76.540201,39.250858],[-76.5402,39.250859],[-76.540199,39.25086],[-76.540198,39.25086],[-76.540197,39.250861],[-76.540196,39.250862],[-76.540195,39.250863],[-76.540194,39.250864],[-76.540194,39.250865],[-76.540193,39.250866],[-76.540192,39.250867],[-76.540192,39.250868],[-76.540191,39.250869],[-76.540191,39.250871],[-76.54019,39.250872],[-76.54019,39.250873],[-76.54019,39.250874],[-76.54019,39.250875],[-76.540189,39.250876],[-76.540189,39.250877],[-76.540189,39.250878],[-76.540189,39.25088],[-76.540189,39.250881],[-76.540189,39.250882],[-76.540189,39.250883],[-76.540189,39.250884],[-76.540189,39.250885],[-76.54019,39.250886],[-76.54019,39.250888],[-76.54019,39.250889],[-76.540191,39.25089],[-76.540191,39.250891],[-76.540192,39.250892],[-76.540192,39.250893],[-76.540193,39.250894],[-76.540193,39.250895],[-76.540194,39.250896],[-76.540195,39.250897],[-76.540195,39.250898],[-76.540196,39.250899],[-76.540197,39.2509],[-76.540198,39.250901],[-76.540199,39.250902],[-76.5402,39.250903],[-76.540201,39.250903],[-76.540202,39.250904],[-76.540203,39.250905],[-76.540204,39.250906],[-76.540205,39.250906],[-76.540207,39.250907],[-76.540209,39.250908],[-76.540207,39.250909],[-76.540205,39.250909],[-76.540203,39.250909],[-76.540201,39.250909],[-76.5402,39.25091],[-76.540198,39.25091],[-76.540196,39.25091],[-76.540194,39.25091],[-76.540192,39.250911],[-76.54019,39.250911],[-76.540188,39.250912],[-76.540187,39.250912],[-76.540185,39.250913],[-76.540183,39.250913],[-76.540181,39.250914],[-76.540179,39.250914],[-76.540178,39.250915],[-76.540176,39.250915],[-76.540174,39.250916],[-76.540172,39.250917],[-76.540171,39.250917],[-76.540169,39.250918],[-76.540167,39.250919],[-76.540166,39.250919],[-76.540164,39.25092],[-76.540162,39.250921],[-76.540161,39.250922],[-76.540159,39.250923],[-76.540157,39.250923],[-76.540156,39.250924],[-76.540154,39.250925],[-76.540153,39.250926],[-76.540151,39.250927],[-76.54015,39.250928],[-76.540148,39.250929],[-76.540147,39.25093],[-76.540146,39.250931],[-76.540144,39.250932],[-76.540143,39.250933],[-76.540141,39.250934],[-76.54014,39.250935],[-76.540139,39.250936],[-76.540137,39.250937],[-76.540136,39.250938],[-76.540135,39.25094],[-76.540134,39.250941],[-76.540133,39.250942],[-76.540132,39.250943],[-76.54013,39.250944],[-76.540129,39.250946],[-76.540128,39.250947],[-76.540127,39.250948],[-76.540126,39.250949],[-76.540125,39.250951],[-76.540124,39.250952],[-76.540123,39.250953],[-76.540122,39.250954],[-76.540122,39.250956],[-76.540121,39.250957],[-76.54012,39.250959],[-76.540119,39.25096],[-76.540118,39.250961],[-76.540118,39.250963],[-76.540117,39.250964],[-76.540116,39.250965],[-76.540116,39.250967],[-76.540115,39.250968],[-76.540115,39.25097],[-76.540114,39.250971],[-76.540114,39.250973],[-76.540113,39.250974],[-76.540113,39.250975],[-76.540112,39.250977],[-76.540112,39.250978],[-76.540112,39.25098],[-76.540111,39.250981],[-76.540111,39.250983],[-76.540111,39.250984],[-76.540111,39.250986],[-76.540111,39.250987],[-76.54011,39.250989],[-76.54011,39.25099],[-76.54011,39.250992],[-76.54011,39.250993],[-76.54011,39.250995],[-76.54011,39.250996],[-76.54011,39.250998],[-76.540111,39.250999],[-76.540111,39.251001],[-76.540111,39.251002],[-76.540111,39.251004],[-76.540111,39.251005],[-76.540112,39.251007],[-76.540112,39.251008],[-76.540112,39.25101],[-76.540113,39.251011],[-76.540113,39.251012],[-76.540113,39.251014],[-76.540114,39.251015],[-76.540114,39.251017],[-76.540115,39.251018],[-76.540116,39.25102],[-76.540116,39.251021],[-76.540117,39.251022],[-76.540117,39.251024],[-76.540118,39.251025],[-76.540119,39.251027],[-76.54012,39.251028],[-76.54012,39.251029],[-76.540121,39.251031],[-76.540122,39.251032],[-76.540123,39.251033],[-76.540124,39.251035],[-76.540125,39.251036],[-76.540126,39.251037],[-76.540127,39.251039],[-76.540128,39.251041],[-76.540126,39.25104],[-76.540125,39.25104],[-76.540123,39.25104],[-76.540122,39.25104],[-76.540121,39.25104],[-76.540119,39.251039],[-76.540118,39.251039],[-76.540117,39.251039],[-76.540115,39.251039],[-76.540114,39.251039],[-76.540112,39.251039],[-76.540111,39.25104],[-76.54011,39.25104],[-76.540108,39.25104],[-76.540107,39.25104],[-76.540106,39.25104],[-76.540104,39.251041],[-76.540103,39.251041],[-76.540102,39.251041],[-76.5401,39.251042],[-76.540099,39.251042],[-76.540098,39.251043],[-76.540097,39.251043],[-76.540095,39.251044],[-76.540094,39.251044],[-76.540093,39.251045],[-76.540092,39.251046],[-76.540091,39.251046],[-76.54009,39.251047],[-76.540089,39.251048],[-76.540088,39.251048],[-76.540087,39.251049],[-76.540086,39.25105],[-76.540085,39.251051],[-76.540084,39.251052],[-76.540083,39.251052],[-76.540082,39.251053],[-76.540082,39.251054],[-76.540081,39.251055],[-76.54008,39.251056],[-76.54008,39.251057],[-76.540079,39.251058],[-76.540079,39.251059],[-76.540078,39.25106],[-76.540078,39.251061],[-76.540077,39.251062],[-76.540077,39.251063],[-76.540077,39.251064],[-76.540076,39.251065],[-76.540076,39.251066],[-76.540076,39.251067],[-76.540076,39.251069],[-76.540076,39.25107],[-76.540076,39.251071],[-76.540076,39.251072],[-76.540076,39.251073],[-76.540076,39.251074],[-76.540076,39.251075],[-76.540077,39.251076],[-76.540077,39.251077],[-76.540077,39.251078],[-76.540078,39.251079],[-76.540078,39.25108],[-76.540079,39.251081],[-76.540079,39.251082],[-76.54008,39.251083],[-76.54008,39.251084],[-76.540081,39.251085],[-76.540082,39.251086],[-76.540082,39.251087],[-76.540083,39.251088],[-76.540084,39.251089],[-76.540085,39.25109],[-76.540086,39.25109],[-76.540087,39.251091],[-76.540087,39.251092],[-76.540088,39.251093],[-76.54009,39.251094],[-76.540091,39.251094],[-76.540092,39.251095],[-76.540093,39.251096],[-76.540094,39.251096],[-76.540096,39.251097],[-76.540094,39.251097],[-76.540092,39.251098],[-76.540091,39.251098],[-76.540089,39.251098],[-76.540087,39.251098],[-76.540085,39.251099],[-76.540083,39.251099],[-76.540081,39.251099],[-76.540079,39.2511],[-76.540077,39.2511],[-76.540076,39.251101],[-76.540074,39.251101],[-76.540072,39.251102],[-76.54007,39.251102],[-76.540068,39.251103],[-76.540066,39.251103],[-76.540065,39.251104],[-76.540063,39.251104],[-76.540061,39.251105],[-76.540059,39.251106],[-76.540058,39.251106],[-76.540056,39.251107],[-76.540054,39.251108],[-76.540053,39.251109],[-76.540051,39.251109],[-76.540049,39.25111],[-76.540048,39.251111],[-76.540046,39.251112],[-76.540045,39.251113],[-76.540043,39.251114],[-76.540041,39.251114],[-76.54004,39.251115],[-76.540038,39.251116],[-76.540037,39.251117],[-76.540035,39.251118],[-76.540034,39.251119],[-76.540033,39.25112],[-76.540031,39.251121],[-76.54003,39.251122],[-76.540029,39.251123],[-76.540027,39.251125],[-76.540026,39.251126],[-76.540025,39.251127],[-76.540023,39.251128],[-76.540022,39.251129],[-76.540021,39.25113],[-76.54002,39.251132],[-76.540019,39.251133],[-76.540018,39.251134],[-76.540016,39.251135],[-76.540015,39.251136],[-76.540014,39.251138],[-76.540013,39.251139],[-76.540012,39.25114],[-76.540012,39.251142],[-76.540011,39.251143],[-76.54001,39.251144],[-76.540009,39.251146],[-76.540008,39.251147],[-76.540007,39.251148],[-76.540006,39.25115],[-76.540006,39.251151],[-76.540005,39.251153],[-76.540004,39.251154],[-76.540004,39.251155],[-76.540003,39.251157],[-76.540003,39.251158],[-76.540002,39.25116],[-76.540002,39.251161],[-76.540001,39.251163],[-76.540001,39.251164],[-76.54,39.251166],[-76.54,39.251167],[-76.54,39.251168],[-76.539999,39.25117],[-76.539999,39.251171],[-76.539999,39.251173],[-76.539998,39.251174],[-76.539998,39.251176],[-76.539998,39.251177],[-76.539998,39.251179],[-76.539998,39.25118],[-76.539998,39.251182],[-76.539998,39.251183],[-76.539998,39.251185],[-76.539998,39.251186],[-76.539998,39.251188],[-76.539998,39.251189],[-76.539998,39.251191],[-76.539999,39.251192],[-76.539999,39.251194],[-76.539999,39.251195],[-76.539999,39.251197],[-76.54,39.251198],[-76.54,39.2512],[-76.54,39.251201],[-76.540001,39.251203],[-76.540001,39.251204],[-76.540002,39.251206],[-76.540002,39.251207],[-76.540003,39.251209],[-76.540004,39.25121],[-76.540004,39.251211],[-76.540005,39.251213],[-76.540005,39.251214],[-76.540006,39.251216],[-76.540007,39.251217],[-76.540008,39.251218],[-76.540009,39.25122],[-76.540009,39.251221],[-76.54001,39.251222],[-76.540011,39.251224],[-76.540012,39.251225],[-76.540013,39.251226],[-76.540014,39.251228],[-76.540015,39.251229],[-76.540016,39.25123],[-76.540014,39.25123],[-76.540013,39.25123],[-76.540011,39.25123],[-76.540009,39.25123],[-76.540008,39.25123],[-76.540006,39.25123],[-76.540004,39.25123],[-76.540003,39.251231],[-76.540001,39.251231],[-76.539999,39.251231],[-76.539998,39.251231],[-76.539996,39.251232],[-76.539994,39.251232],[-76.539993,39.251233],[-76.539991,39.251233],[-76.53999,39.251234],[-76.539988,39.251234],[-76.539987,39.251235],[-76.539985,39.251236],[-76.539984,39.251236],[-76.539983,39.251237],[-76.539981,39.251238],[-76.53998,39.251239],[-76.539979,39.251239],[-76.539977,39.25124],[-76.539976,39.251241],[-76.539975,39.251242],[-76.539974,39.251243],[-76.539973,39.251244],[-76.539972,39.251245],[-76.539971,39.251246],[-76.53997,39.251247],[-76.539969,39.251249],[-76.539968,39.25125],[-76.539967,39.251251],[-76.539967,39.251252],[-76.539966,39.251253],[-76.539965,39.251254],[-76.539965,39.251256],[-76.539964,39.251257],[-76.539964,39.251258],[-76.539963,39.251259],[-76.539963,39.251261],[-76.539963,39.251262],[-76.539963,39.251263],[-76.539962,39.251265],[-76.539962,39.251266],[-76.539962,39.251267],[-76.539962,39.251269],[-76.539962,39.25127],[-76.539962,39.251271],[-76.539963,39.251273],[-76.539963,39.251274],[-76.539963,39.251275],[-76.539963,39.251276],[-76.539964,39.251278],[-76.539964,39.251279],[-76.539965,39.25128],[-76.539965,39.251281],[-76.539966,39.251283],[-76.539967,39.251284],[-76.539967,39.251285],[-76.539968,39.251286],[-76.539969,39.251287],[-76.539967,39.251288],[-76.539965,39.251288],[-76.539964,39.251288],[-76.539962,39.251289],[-76.53996,39.251289],[-76.539958,39.25129],[-76.539956,39.25129],[-76.539955,39.251291],[-76.539953,39.251291],[-76.539951,39.251292],[-76.539949,39.251292],[-76.539948,39.251293],[-76.539946,39.251294],[-76.539944,39.251294],[-76.539943,39.251295],[-76.539941,39.251296],[-76.539939,39.251296],[-76.539938,39.251297],[-76.539936,39.251298],[-76.539934,39.251299],[-76.539933,39.2513],[-76.539931,39.2513],[-76.53993,39.251301],[-76.539928,39.251302],[-76.539927,39.251303],[-76.539925,39.251304],[-76.539924,39.251305],[-76.539922,39.251306],[-76.539921,39.251307],[-76.539919,39.251308],[-76.539918,39.251309],[-76.539917,39.25131],[-76.539915,39.251311],[-76.539914,39.251312],[-76.539913,39.251313],[-76.539911,39.251314],[-76.53991,39.251315],[-76.539909,39.251316],[-76.539908,39.251318],[-76.539907,39.251319],[-76.539906,39.25132],[-76.539904,39.251321],[-76.539903,39.251322],[-76.539902,39.251324],[-76.539901,39.251325],[-76.5399,39.251326],[-76.539899,39.251327],[-76.539898,39.251329],[-76.539897,39.25133],[-76.539897,39.251331],[-76.539896,39.251333],[-76.539895,39.251334],[-76.539894,39.251335],[-76.539893,39.251337],[-76.539893,39.251338],[-76.539892,39.251339],[-76.539891,39.251341],[-76.539891,39.251342],[-76.53989,39.251343],[-76.539889,39.251345],[-76.539889,39.251346],[-76.539888,39.251348],[-76.539888,39.251349],[-76.539887,39.251351],[-76.539887,39.251352],[-76.539887,39.251353],[-76.539886,39.251355],[-76.539886,39.251356],[-76.539886,39.251358],[-76.539885,39.251359],[-76.539885,39.251361],[-76.539885,39.251362],[-76.539885,39.251364],[-76.539885,39.251365],[-76.539885,39.251367],[-76.539884,39.251368],[-76.539884,39.25137],[-76.539884,39.251371],[-76.539884,39.251373],[-76.539885,39.251374],[-76.539885,39.251375],[-76.539885,39.251377],[-76.539885,39.251378],[-76.539885,39.25138],[-76.539885,39.251381],[-76.539886,39.251383],[-76.539886,39.251384],[-76.539886,39.251386],[-76.539887,39.251387],[-76.539887,39.251389],[-76.539887,39.25139],[-76.539888,39.251391],[-76.539888,39.251393],[-76.539889,39.251394],[-76.53989,39.251396],[-76.53989,39.251397],[-76.539891,39.251399],[-76.539891,39.2514],[-76.539892,39.251401],[-76.539893,39.251403],[-76.539894,39.251404],[-76.539894,39.251405],[-76.539895,39.251407],[-76.539896,39.251408],[-76.539897,39.251409],[-76.539898,39.251411],[-76.539899,39.251412],[-76.5399,39.251413],[-76.5399,39.251414],[-76.539902,39.251416],[-76.5399,39.251415],[-76.539898,39.251415],[-76.539897,39.251415],[-76.539896,39.251415],[-76.539895,39.251415],[-76.539893,39.251414],[-76.539892,39.251414],[-76.539891,39.251414],[-76.53989,39.251414],[-76.539888,39.251414],[-76.539887,39.251414],[-76.539886,39.251415],[-76.539885,39.251415],[-76.539883,39.251415],[-76.539882,39.251415],[-76.539881,39.251415],[-76.53988,39.251416],[-76.539878,39.251416],[-76.539877,39.251416],[-76.539876,39.251417],[-76.539875,39.251417],[-76.539874,39.251417],[-76.539873,39.251418],[-76.539872,39.251418],[-76.539871,39.251419],[-76.539869,39.251419],[-76.539868,39.25142],[-76.539867,39.251421],[-76.539866,39.251422],[-76.539865,39.251423],[-76.539864,39.251423],[-76.539863,39.251424],[-76.539862,39.251425],[-76.539861,39.251426],[-76.53986,39.251427],[-76.539859,39.251428],[-76.539859,39.251429],[-76.539858,39.25143],[-76.539857,39.251431],[-76.539856,39.251432],[-76.539856,39.251433],[-76.539856,39.251434],[-76.539855,39.251435],[-76.539855,39.251436],[-76.539855,39.251437],[-76.539854,39.251438],[-76.539854,39.251439],[-76.539854,39.25144],[-76.539854,39.251441],[-76.539854,39.251442],[-76.539854,39.251443],[-76.539854,39.251444],[-76.539854,39.251445],[-76.539854,39.251446],[-76.539854,39.251447],[-76.539855,39.251448],[-76.539855,39.251449],[-76.539855,39.25145],[-76.539855,39.251451],[-76.539856,39.251452],[-76.539856,39.251453],[-76.539857,39.251454],[-76.539858,39.251455],[-76.539858,39.251456],[-76.539859,39.251457],[-76.53986,39.251458],[-76.53986,39.251459],[-76.539861,39.251459],[-76.539862,39.25146],[-76.539863,39.251461],[-76.539864,39.251462],[-76.539865,39.251463],[-76.539866,39.251464],[-76.539867,39.251464],[-76.539868,39.251465],[-76.539869,39.251466],[-76.539869,39.251467],[-76.539867,39.251467],[-76.539865,39.251468],[-76.539863,39.251468],[-76.539862,39.251468],[-76.53986,39.251469],[-76.539858,39.251469],[-76.539856,39.25147],[-76.539854,39.25147],[-76.539852,39.251471],[-76.53985,39.251471],[-76.539848,39.251472],[-76.539846,39.251472],[-76.539844,39.251473],[-76.539843,39.251474],[-76.539841,39.251474],[-76.539839,39.251475],[-76.539837,39.251476],[-76.539835,39.251476],[-76.539834,39.251477],[-76.539832,39.251478],[-76.53983,39.251479],[-76.539828,39.251479],[-76.539827,39.25148],[-76.539825,39.251481],[-76.539823,39.251482],[-76.539822,39.251483],[-76.53982,39.251484],[-76.539818,39.251485],[-76.539817,39.251486],[-76.539815,39.251487],[-76.539814,39.251488],[-76.539812,39.251489],[-76.539811,39.25149],[-76.539809,39.251491],[-76.539808,39.251492],[-76.539806,39.251493],[-76.539805,39.251494],[-76.539804,39.251496],[-76.539802,39.251497],[-76.539801,39.251498],[-76.5398,39.251499],[-76.539799,39.2515],[-76.539797,39.251502],[-76.539796,39.251503],[-76.539795,39.251504],[-76.539794,39.251505],[-76.539793,39.251507],[-76.539792,39.251508],[-76.539791,39.251509],[-76.53979,39.251511],[-76.539789,39.251512],[-76.539788,39.251514],[-76.539787,39.251515],[-76.539786,39.251516],[-76.539785,39.251518],[-76.539784,39.251519],[-76.539783,39.251521],[-76.539782,39.251522],[-76.539782,39.251524],[-76.539781,39.251525],[-76.53978,39.251526],[-76.53978,39.251528],[-76.539779,39.251529],[-76.539779,39.251531],[-76.539778,39.251532],[-76.539778,39.251534],[-76.539777,39.251536],[-76.539777,39.251537],[-76.539776,39.251539],[-76.539776,39.25154],[-76.539775,39.251542],[-76.539775,39.251543],[-76.539775,39.251545],[-76.539775,39.251546],[-76.539774,39.251548],[-76.539774,39.251549],[-76.539774,39.251551],[-76.539774,39.251553],[-76.539774,39.251554],[-76.539774,39.251556],[-76.539774,39.251557],[-76.539774,39.251559],[-76.539774,39.25156],[-76.539774,39.251562],[-76.539774,39.251564],[-76.539775,39.251565],[-76.539775,39.251567],[-76.539775,39.251568],[-76.539775,39.25157],[-76.539776,39.251571],[-76.539776,39.251573],[-76.539776,39.251574],[-76.539777,39.251576],[-76.539777,39.251577],[-76.539778,39.251579],[-76.539778,39.251581],[-76.539779,39.251582],[-76.53978,39.251584],[-76.53978,39.251585],[-76.539781,39.251586],[-76.539782,39.251588],[-76.539782,39.251589],[-76.539783,39.251591],[-76.539784,39.251592],[-76.539785,39.251594],[-76.539786,39.251595],[-76.539786,39.251597],[-76.539787,39.251598],[-76.539788,39.251599],[-76.539786,39.251599],[-76.539784,39.251599],[-76.539783,39.251599],[-76.539782,39.251599],[-76.53978,39.251599],[-76.539779,39.251599],[-76.539778,39.251599],[-76.539776,39.251599],[-76.539775,39.251599],[-76.539774,39.251599],[-76.539773,39.251599],[-76.539771,39.251599],[-76.53977,39.2516],[-76.539769,39.2516],[-76.539767,39.2516],[-76.539766,39.251601],[-76.539765,39.251601],[-76.539764,39.251601],[-76.539763,39.251602],[-76.539761,39.251602],[-76.53976,39.251603],[-76.539759,39.251603],[-76.539758,39.251604],[-76.539757,39.251605],[-76.539756,39.251605],[-76.539755,39.251606],[-76.539754,39.251607],[-76.539753,39.251607],[-76.539752,39.251608],[-76.539751,39.251609],[-76.53975,39.25161],[-76.539749,39.251611],[-76.539748,39.251612],[-76.539747,39.251613],[-76.539747,39.251614],[-76.539746,39.251615],[-76.539745,39.251616],[-76.539745,39.251617],[-76.539744,39.251618],[-76.539744,39.251619],[-76.539743,39.25162],[-76.539743,39.251621],[-76.539743,39.251622],[-76.539742,39.251623],[-76.539742,39.251624],[-76.539742,39.251626],[-76.539742,39.251627],[-76.539742,39.251628],[-76.539742,39.251629],[-76.539742,39.25163],[-76.539742,39.251631],[-76.539742,39.251632],[-76.539742,39.251633],[-76.539743,39.251634],[-76.539743,39.251635],[-76.539743,39.251636],[-76.539743,39.251637],[-76.539744,39.251638],[-76.539744,39.251639],[-76.539745,39.25164],[-76.539745,39.251641],[-76.539746,39.251641],[-76.539747,39.251642],[-76.539747,39.251643],[-76.539748,39.251644],[-76.539749,39.251645],[-76.539749,39.251646],[-76.53975,39.251647],[-76.539751,39.251647],[-76.539752,39.251648],[-76.539753,39.251649],[-76.539754,39.25165],[-76.539755,39.25165],[-76.539756,39.251652],[-76.539755,39.251652],[-76.539753,39.251652],[-76.539751,39.251653],[-76.539749,39.251653],[-76.539747,39.251654],[-76.539745,39.251654],[-76.539743,39.251655],[-76.539741,39.251655],[-76.539739,39.251656],[-76.539738,39.251656],[-76.539736,39.251657],[-76.539734,39.251657],[-76.539732,39.251658],[-76.53973,39.251659],[-76.539728,39.251659],[-76.539727,39.25166],[-76.539725,39.251661],[-76.539723,39.251662],[-76.539721,39.251662],[-76.539719,39.251663],[-76.539718,39.251664],[-76.539716,39.251665],[-76.539714,39.251666],[-76.539713,39.251667],[-76.539711,39.251668],[-76.53971,39.251669],[-76.539708,39.25167],[-76.539706,39.251671],[-76.539705,39.251672],[-76.539703,39.251673],[-76.539702,39.251674],[-76.5397,39.251675],[-76.539699,39.251676],[-76.539697,39.251677],[-76.539696,39.251678],[-76.539695,39.251679],[-76.539693,39.25168],[-76.539692,39.251682],[-76.539691,39.251683],[-76.539689,39.251684],[-76.539688,39.251685],[-76.539687,39.251687],[-76.539686,39.251688],[-76.539685,39.251689],[-76.539684,39.25169],[-76.539682,39.251692],[-76.539681,39.251693],[-76.53968,39.251694],[-76.539679,39.251696],[-76.539678,39.251697],[-76.539677,39.251698],[-76.539677,39.2517],[-76.539676,39.251701],[-76.539675,39.251703],[-76.539674,39.251704],[-76.539673,39.251706],[-76.539672,39.251707],[-76.539672,39.251709],[-76.539671,39.25171],[-76.53967,39.251712],[-76.53967,39.251713],[-76.539669,39.251715],[-76.539669,39.251716],[-76.539668,39.251718],[-76.539668,39.251719],[-76.539667,39.251721],[-76.539667,39.251722],[-76.539666,39.251724],[-76.539666,39.251725],[-76.539666,39.251727],[-76.539665,39.251728],[-76.539665,39.25173],[-76.539665,39.251731],[-76.539665,39.251733],[-76.539665,39.251735],[-76.539665,39.251736],[-76.539665,39.251738],[-76.539664,39.251739],[-76.539664,39.251741],[-76.539665,39.251742],[-76.539665,39.251744],[-76.539665,39.251746],[-76.539665,39.251747],[-76.539665,39.251749],[-76.539665,39.25175],[-76.539665,39.251752],[-76.539666,39.251753],[-76.539666,39.251755],[-76.539666,39.251756],[-76.539667,39.251758],[-76.539667,39.25176],[-76.539668,39.251761],[-76.539668,39.251763],[-76.539669,39.251764],[-76.539669,39.251766],[-76.53967,39.251767],[-76.53967,39.251769],[-76.539671,39.25177],[-76.539672,39.251772],[-76.539673,39.251773],[-76.539673,39.251774],[-76.539674,39.251776],[-76.539675,39.251777],[-76.539676,39.251779],[-76.539677,39.25178],[-76.539678,39.251782],[-76.539679,39.251783],[-76.53968,39.251784],[-76.539681,39.251786],[-76.539679,39.251786],[-76.539678,39.251786],[-76.539677,39.251786],[-76.539675,39.251786],[-76.539674,39.251786],[-76.539673,39.251785],[-76.539672,39.251785],[-76.53967,39.251785],[-76.539669,39.251785],[-76.539668,39.251785],[-76.539666,39.251785],[-76.539665,39.251785],[-76.539664,39.251786],[-76.539663,39.251786],[-76.539661,39.251786],[-76.53966,39.251786],[-76.539659,39.251786],[-76.539658,39.251787],[-76.539656,39.251787],[-76.539655,39.251787],[-76.539654,39.251788],[-76.539653,39.251788],[-76.539652,39.251789],[-76.539651,39.251789],[-76.53965,39.25179],[-76.539648,39.25179],[-76.539647,39.251791],[-76.539646,39.251791],[-76.539645,39.251792],[-76.539644,39.251793],[-76.539643,39.251793],[-76.539643,39.251794],[-76.539642,39.251795],[-76.539641,39.251795],[-76.53964,39.251796],[-76.539639,39.251797],[-76.539638,39.251798],[-76.539638,39.251799],[-76.539637,39.251799],[-76.539636,39.2518],[-76.539636,39.251801],[-76.539635,39.251802],[-76.539635,39.251803],[-76.539634,39.251804],[-76.539634,39.251805],[-76.539634,39.251806],[-76.539633,39.251807],[-76.539633,39.251808],[-76.539633,39.251809],[-76.539632,39.25181],[-76.539632,39.251811],[-76.539632,39.251812],[-76.539632,39.251813],[-76.539632,39.251814],[-76.539632,39.251815],[-76.539632,39.251816],[-76.539632,39.251817],[-76.539632,39.251818],[-76.539632,39.251819],[-76.539633,39.25182],[-76.539633,39.251821],[-76.539633,39.251822],[-76.539634,39.251823],[-76.539635,39.251824],[-76.539635,39.251825],[-76.539636,39.251826],[-76.539636,39.251827],[-76.539637,39.251828],[-76.539637,39.251829],[-76.539638,39.25183],[-76.539639,39.251831],[-76.53964,39.251831],[-76.53964,39.251832],[-76.539641,39.251833],[-76.539642,39.251834],[-76.539643,39.251834],[-76.539644,39.251835],[-76.539645,39.251836],[-76.539646,39.251836],[-76.539647,39.251837],[-76.539648,39.251838],[-76.539649,39.251838],[-76.53965,39.251839],[-76.53965,39.25184],[-76.539648,39.25184],[-76.539646,39.25184],[-76.539645,39.251841],[-76.539643,39.251841],[-76.539641,39.251841],[-76.539639,39.251842],[-76.539637,39.251842],[-76.539635,39.251842],[-76.539633,39.251843],[-76.539632,39.251843],[-76.53963,39.251844],[-76.539628,39.251844],[-76.539626,39.251845],[-76.539624,39.251845],[-76.539623,39.251846],[-76.539621,39.251847],[-76.539619,39.251847],[-76.539617,39.251848],[-76.539616,39.251849],[-76.539614,39.251849],[-76.539612,39.25185],[-76.539611,39.251851],[-76.539609,39.251852],[-76.539607,39.251852],[-76.539606,39.251853],[-76.539604,39.251854],[-76.539603,39.251855],[-76.539601,39.251856],[-76.5396,39.251857],[-76.539598,39.251858],[-76.539597,39.251859],[-76.539595,39.25186],[-76.539594,39.251861],[-76.539592,39.251862],[-76.539591,39.251863],[-76.539589,39.251864],[-76.539588,39.251865],[-76.539587,39.251866],[-76.539585,39.251867],[-76.539584,39.251868],[-76.539583,39.251869],[-76.539582,39.25187],[-76.53958,39.251871],[-76.539579,39.251873],[-76.539578,39.251874],[-76.539577,39.251875],[-76.539576,39.251876],[-76.539575,39.251878],[-76.539574,39.251879],[-76.539573,39.25188],[-76.539572,39.251881],[-76.539571,39.251883],[-76.53957,39.251884],[-76.539569,39.251885],[-76.539568,39.251887],[-76.539567,39.251888],[-76.539566,39.251889],[-76.539566,39.251891],[-76.539565,39.251892],[-76.539564,39.251893],[-76.539563,39.251895],[-76.539563,39.251896],[-76.539562,39.251898],[-76.539562,39.251899],[-76.539561,39.251901],[-76.53956,39.251902],[-76.53956,39.251903],[-76.53956,39.251905],[-76.539559,39.251906],[-76.539559,39.251908],[-76.539558,39.251909],[-76.539558,39.251911],[-76.539558,39.251912],[-76.539557,39.251914],[-76.539557,39.251915],[-76.539557,39.251917],[-76.539557,39.251918],[-76.539557,39.25192],[-76.539557,39.251921],[-76.539557,39.251923],[-76.539556,39.251924],[-76.539556,39.251926],[-76.539556,39.251927],[-76.539557,39.251929],[-76.539557,39.25193],[-76.539557,39.251932],[-76.539557,39.251933],[-76.539557,39.251935],[-76.539557,39.251936],[-76.539558,39.251938],[-76.539558,39.251939],[-76.539558,39.251941],[-76.539559,39.251942],[-76.539559,39.251943],[-76.539559,39.251945],[-76.53956,39.251946],[-76.53956,39.251948],[-76.539561,39.251949],[-76.539561,39.251951],[-76.539562,39.251952],[-76.539563,39.251954],[-76.539563,39.251955],[-76.539564,39.251956],[-76.539565,39.251958],[-76.539565,39.251959],[-76.539566,39.25196],[-76.539567,39.251962],[-76.539568,39.251963],[-76.539569,39.251965],[-76.53957,39.251966],[-76.539571,39.251967],[-76.539572,39.251968],[-76.539573,39.25197],[-76.539571,39.25197],[-76.53957,39.25197],[-76.539568,39.25197],[-76.539567,39.25197],[-76.539566,39.25197],[-76.539565,39.25197],[-76.539563,39.25197],[-76.539562,39.25197],[-76.539561,39.25197],[-76.539559,39.25197],[-76.539558,39.25197],[-76.539557,39.25197],[-76.539556,39.25197],[-76.539554,39.25197],[-76.539553,39.251971],[-76.539552,39.251971],[-76.539551,39.251971],[-76.539549,39.251972],[-76.539548,39.251972],[-76.539547,39.251972],[-76.539546,39.251973],[-76.539545,39.251973],[-76.539543,39.251974],[-76.539542,39.251974],[-76.539541,39.251975],[-76.53954,39.251975],[-76.539539,39.251976],[-76.539538,39.251977],[-76.539537,39.251977],[-76.539536,39.251978],[-76.539535,39.251979],[-76.539534,39.25198],[-76.539533,39.251981],[-76.539532,39.251982],[-76.539531,39.251983],[-76.539531,39.251984],[-76.53953,39.251984],[-76.539529,39.251985],[-76.539529,39.251986],[-76.539528,39.251987],[-76.539528,39.251988],[-76.539527,39.251989],[-76.539527,39.25199],[-76.539526,39.251991],[-76.539526,39.251992],[-76.539526,39.251993],[-76.539526,39.251994],[-76.539525,39.251995],[-76.539525,39.251996],[-76.539525,39.251997],[-76.539525,39.251998],[-76.539525,39.251999],[-76.539525,39.252],[-76.539525,39.252001],[-76.539525,39.252002],[-76.539525,39.252003],[-76.539526,39.252004],[-76.539526,39.252005],[-76.539526,39.252006],[-76.539527,39.252007],[-76.539527,39.252008],[-76.539527,39.252009],[-76.539528,39.25201],[-76.539528,39.252011],[-76.539529,39.252012],[-76.539529,39.252013],[-76.53953,39.252013],[-76.539531,39.252014],[-76.539531,39.252015],[-76.539532,39.252016],[-76.539533,39.252017],[-76.539534,39.252018],[-76.539535,39.252018],[-76.539536,39.252019],[-76.539537,39.25202],[-76.539537,39.252021],[-76.539538,39.252021],[-76.539539,39.252022],[-76.539541,39.252022],[-76.539542,39.252023],[-76.539543,39.252024],[-76.539545,39.252025],[-76.539543,39.252025],[-76.539541,39.252025],[-76.539539,39.252025],[-76.539537,39.252025],[-76.539536,39.252025],[-76.539534,39.252026],[-76.539532,39.252026],[-76.53953,39.252026],[-76.539528,39.252027],[-76.539526,39.252027],[-76.539525,39.252027],[-76.539523,39.252028],[-76.539521,39.252028],[-76.539519,39.252028],[-76.539518,39.252029],[-76.539516,39.252029],[-76.539514,39.25203],[-76.539512,39.25203],[-76.539511,39.252031],[-76.539509,39.252032],[-76.539507,39.252032],[-76.539505,39.252033],[-76.539504,39.252033],[-76.539502,39.252034],[-76.5395,39.252035],[-76.539499,39.252036],[-76.539497,39.252036],[-76.539496,39.252037],[-76.539494,39.252038],[-76.539492,39.252039],[-76.539491,39.252039],[-76.539489,39.25204],[-76.539488,39.252041],[-76.539486,39.252042],[-76.539485,39.252043],[-76.539483,39.252044],[-76.539482,39.252045],[-76.539481,39.252046],[-76.539479,39.252047],[-76.539478,39.252048],[-76.539477,39.252049],[-76.539475,39.25205],[-76.539474,39.252051],[-76.539473,39.252052],[-76.539471,39.252053],[-76.53947,39.252054],[-76.539469,39.252055],[-76.539468,39.252056],[-76.539467,39.252057],[-76.539466,39.252059],[-76.539464,39.25206],[-76.539463,39.252061],[-76.539462,39.252062],[-76.539461,39.252063],[-76.53946,39.252065],[-76.539459,39.252066],[-76.539458,39.252067],[-76.539458,39.252068],[-76.539457,39.25207],[-76.539456,39.252071],[-76.539455,39.252072],[-76.539454,39.252074],[-76.539453,39.252075],[-76.539453,39.252076],[-76.539452,39.252078],[-76.539451,39.252079],[-76.539451,39.25208],[-76.53945,39.252082],[-76.53945,39.252083],[-76.539449,39.252085],[-76.539449,39.252086],[-76.539448,39.252087],[-76.539448,39.252089],[-76.539447,39.25209],[-76.539447,39.252092],[-76.539446,39.252093],[-76.539446,39.252095],[-76.539446,39.252096],[-76.539446,39.252097],[-76.539445,39.252099],[-76.539445,39.2521],[-76.539445,39.252102],[-76.539445,39.252103],[-76.539445,39.252105],[-76.539445,39.252106],[-76.539445,39.252108],[-76.539445,39.252109],[-76.539445,39.25211],[-76.539445,39.252112],[-76.539445,39.252113],[-76.539445,39.252115],[-76.539445,39.252116],[-76.539445,39.252118],[-76.539446,39.252119],[-76.539446,39.252121],[-76.539446,39.252122],[-76.539446,39.252123],[-76.539447,39.252125],[-76.539447,39.252126],[-76.539448,39.252128],[-76.539448,39.252129],[-76.539448,39.252131],[-76.539449,39.252132],[-76.53945,39.252133],[-76.53945,39.252135],[-76.539451,39.252136],[-76.539451,39.252137],[-76.539452,39.252139],[-76.539453,39.25214],[-76.539453,39.252142],[-76.539454,39.252143],[-76.539455,39.252144],[-76.539456,39.252145],[-76.539457,39.252147],[-76.539457,39.252148],[-76.539458,39.252149],[-76.539459,39.252151],[-76.53946,39.252152],[-76.539461,39.252153],[-76.539462,39.252154],[-76.539463,39.252156],[-76.539464,39.252157],[-76.539462,39.252156],[-76.539461,39.252156],[-76.53946,39.252156],[-76.539459,39.252155],[-76.539457,39.252155],[-76.539456,39.252155],[-76.539455,39.252155],[-76.539453,39.252155],[-76.539452,39.252155],[-76.539451,39.252155],[-76.539449,39.252155],[-76.539448,39.252155],[-76.539447,39.252155],[-76.539445,39.252155],[-76.539444,39.252155],[-76.539443,39.252156],[-76.539441,39.252156],[-76.53944,39.252156],[-76.539439,39.252156],[-76.539438,39.252157],[-76.539436,39.252157],[-76.539435,39.252158],[-76.539434,39.252158],[-76.539433,39.252158],[-76.539432,39.252159],[-76.539431,39.25216],[-76.539429,39.25216],[-76.539428,39.252161],[-76.539427,39.252161],[-76.539426,39.252162],[-76.539425,39.252163],[-76.539424,39.252163],[-76.539423,39.252164],[-76.539422,39.252165],[-76.539422,39.252166],[-76.539421,39.252166],[-76.53942,39.252167],[-76.539419,39.252168],[-76.539419,39.252169],[-76.539418,39.25217],[-76.539417,39.252171],[-76.539417,39.252172],[-76.539416,39.252173],[-76.539416,39.252174],[-76.539415,39.252175],[-76.539415,39.252176],[-76.539414,39.252177],[-76.539414,39.252178],[-76.539414,39.252179],[-76.539413,39.25218],[-76.539413,39.252181],[-76.539413,39.252182],[-76.539413,39.252183],[-76.539413,39.252184],[-76.539413,39.252185],[-76.539413,39.252186],[-76.539413,39.252187],[-76.539413,39.252188],[-76.539413,39.252189],[-76.539413,39.25219],[-76.539414,39.252191],[-76.539414,39.252192],[-76.539414,39.252193],[-76.539415,39.252194],[-76.539415,39.252195],[-76.539416,39.252196],[-76.539416,39.252197],[-76.539417,39.252198],[-76.539417,39.252199],[-76.539418,39.252199],[-76.539419,39.2522],[-76.539419,39.252201],[-76.53942,39.252202],[-76.539421,39.252203],[-76.539422,39.252204],[-76.539423,39.252204],[-76.539424,39.252205],[-76.539424,39.252206],[-76.539425,39.252207],[-76.539426,39.252207],[-76.539427,39.252208],[-76.539429,39.252209],[-76.539429,39.25221],[-76.539427,39.25221],[-76.539425,39.25221],[-76.539423,39.252211],[-76.539421,39.252211],[-76.53942,39.252211],[-76.539418,39.252212],[-76.539416,39.252212],[-76.539414,39.252212],[-76.539412,39.252213],[-76.539411,39.252213],[-76.539409,39.252213],[-76.539407,39.252214],[-76.539405,39.252214],[-76.539404,39.252215],[-76.539402,39.252215],[-76.5394,39.252216],[-76.539398,39.252217],[-76.539397,39.252217],[-76.539395,39.252218],[-76.539393,39.252219],[-76.539392,39.252219],[-76.53939,39.25222],[-76.539388,39.252221],[-76.539387,39.252221],[-76.539385,39.252222],[-76.539384,39.252223],[-76.539382,39.252224],[-76.53938,39.252224],[-76.539379,39.252225],[-76.539377,39.252226],[-76.539376,39.252227],[-76.539374,39.252228],[-76.539373,39.252229],[-76.539372,39.25223],[-76.53937,39.252231],[-76.539369,39.252232],[-76.539367,39.252233],[-76.539366,39.252234],[-76.539365,39.252235],[-76.539364,39.252236],[-76.539362,39.252237],[-76.539361,39.252238],[-76.53936,39.252239],[-76.539359,39.25224],[-76.539357,39.252241],[-76.539356,39.252243],[-76.539355,39.252244],[-76.539354,39.252245],[-76.539353,39.252246],[-76.539352,39.252247],[-76.539351,39.252249],[-76.53935,39.25225],[-76.539349,39.252251],[-76.539348,39.252252],[-76.539347,39.252254],[-76.539346,39.252255],[-76.539345,39.252256],[-76.539345,39.252257],[-76.539344,39.252259],[-76.539343,39.25226],[-76.539342,39.252261],[-76.539342,39.252263],[-76.539341,39.252264],[-76.53934,39.252266],[-76.53934,39.252267],[-76.539339,39.252268],[-76.539339,39.25227],[-76.539338,39.252271],[-76.539338,39.252273],[-76.539337,39.252274],[-76.539337,39.252275],[-76.539336,39.252277],[-76.539336,39.252278],[-76.539336,39.25228],[-76.539336,39.252281],[-76.539335,39.252283],[-76.539335,39.252284],[-76.539335,39.252285],[-76.539335,39.252287],[-76.539335,39.252288],[-76.539334,39.25229],[-76.539334,39.252291],[-76.539334,39.252293],[-76.539334,39.252294],[-76.539334,39.252296],[-76.539334,39.252297],[-76.539335,39.252299],[-76.539335,39.2523],[-76.539335,39.252301],[-76.539335,39.252303],[-76.539335,39.252304],[-76.539336,39.252306],[-76.539336,39.252307],[-76.539336,39.252309],[-76.539337,39.25231],[-76.539337,39.252311],[-76.539337,39.252313],[-76.539338,39.252314],[-76.539338,39.252316],[-76.539339,39.252317],[-76.539339,39.252318],[-76.53934,39.25232],[-76.53934,39.252321],[-76.539341,39.252323],[-76.539342,39.252324],[-76.539342,39.252325],[-76.539343,39.252327],[-76.539344,39.252328],[-76.539345,39.252329],[-76.539346,39.252331],[-76.539346,39.252332],[-76.539347,39.252333],[-76.539348,39.252334],[-76.539349,39.252336],[-76.53935,39.252337],[-76.539351,39.252338],[-76.539352,39.252339],[-76.539353,39.252341],[-76.539354,39.252342],[-76.539352,39.252341],[-76.539351,39.252341],[-76.53935,39.252341],[-76.539348,39.252341],[-76.539347,39.25234],[-76.539345,39.25234],[-76.539344,39.25234],[-76.539343,39.25234],[-76.539341,39.25234],[-76.53934,39.25234],[-76.539339,39.25234],[-76.539337,39.25234],[-76.539336,39.25234],[-76.539334,39.252341],[-76.539333,39.252341],[-76.539332,39.252341],[-76.53933,39.252341],[-76.539329,39.252342],[-76.539328,39.252342],[-76.539326,39.252342],[-76.539325,39.252343],[-76.539324,39.252343],[-76.539323,39.252344],[-76.539321,39.252344],[-76.53932,39.252345],[-76.539319,39.252345],[-76.539318,39.252346],[-76.539317,39.252346],[-76.539316,39.252347],[-76.539315,39.252348],[-76.539314,39.252349],[-76.539313,39.252349],[-76.539312,39.25235],[-76.539311,39.252351],[-76.53931,39.252352],[-76.539309,39.252353],[-76.539308,39.252353],[-76.539307,39.252354],[-76.539307,39.252355],[-76.539306,39.252356],[-76.539305,39.252357],[-76.539305,39.252358],[-76.539304,39.252359],[-76.539304,39.25236],[-76.539303,39.252361],[-76.539303,39.252362],[-76.539302,39.252363],[-76.539302,39.252364],[-76.539302,39.252365],[-76.539302,39.252366],[-76.539301,39.252367],[-76.539301,39.252369],[-76.539301,39.25237],[-76.539301,39.252371],[-76.539301,39.252372],[-76.539301,39.252373],[-76.539301,39.252374],[-76.539301,39.252375],[-76.539302,39.252376],[-76.539302,39.252377],[-76.539302,39.252378],[-76.539303,39.252379],[-76.539303,39.25238],[-76.539303,39.252381],[-76.539304,39.252382],[-76.539304,39.252383],[-76.539305,39.252384],[-76.539306,39.252385],[-76.539306,39.252386],[-76.539307,39.252387],[-76.539308,39.252388],[-76.539308,39.252389],[-76.539309,39.25239],[-76.53931,39.252391],[-76.539311,39.252391],[-76.539312,39.252392],[-76.539313,39.252393],[-76.539314,39.252394],[-76.539315,39.252394],[-76.539315,39.252396],[-76.539313,39.252396],[-76.539311,39.252396],[-76.53931,39.252397],[-76.539308,39.252397],[-76.539306,39.252397],[-76.539304,39.252398],[-76.539302,39.252398],[-76.5393,39.252399],[-76.539299,39.252399],[-76.539297,39.252399],[-76.539295,39.2524],[-76.539293,39.2524],[-76.539291,39.252401],[-76.53929,39.252401],[-76.539288,39.252402],[-76.539286,39.252403],[-76.539284,39.252403],[-76.539283,39.252404],[-76.539281,39.252405],[-76.539279,39.252405],[-76.539278,39.252406],[-76.539276,39.252407],[-76.539274,39.252407],[-76.539273,39.252408],[-76.539271,39.252409],[-76.53927,39.25241],[-76.539268,39.252411],[-76.539267,39.252412],[-76.539265,39.252412],[-76.539264,39.252413],[-76.539262,39.252414],[-76.539261,39.252415],[-76.539259,39.252416],[-76.539258,39.252417],[-76.539256,39.252418],[-76.539255,39.252419],[-76.539254,39.25242],[-76.539252,39.252421],[-76.539251,39.252422],[-76.53925,39.252423],[-76.539248,39.252424],[-76.539247,39.252426],[-76.539246,39.252427],[-76.539245,39.252428],[-76.539244,39.252429],[-76.539243,39.25243],[-76.539242,39.252431],[-76.53924,39.252433],[-76.539239,39.252434],[-76.539238,39.252435],[-76.539237,39.252436],[-76.539236,39.252438],[-76.539235,39.252439],[-76.539235,39.25244],[-76.539234,39.252442],[-76.539233,39.252443],[-76.539232,39.252444],[-76.539231,39.252446],[-76.539231,39.252447],[-76.53923,39.252448],[-76.539229,39.25245],[-76.539228,39.252451],[-76.539228,39.252452],[-76.539227,39.252454],[-76.539227,39.252455],[-76.539226,39.252457],[-76.539226,39.252458],[-76.539225,39.25246],[-76.539225,39.252461],[-76.539224,39.252462],[-76.539224,39.252464],[-76.539224,39.252465],[-76.539223,39.252467],[-76.539223,39.252468],[-76.539223,39.25247],[-76.539223,39.252471],[-76.539222,39.252473],[-76.539222,39.252474],[-76.539222,39.252476],[-76.539222,39.252477],[-76.539222,39.252478],[-76.539222,39.25248],[-76.539222,39.252481],[-76.539222,39.252483],[-76.539222,39.252484],[-76.539222,39.252486],[-76.539222,39.252487],[-76.539223,39.252489],[-76.539223,39.25249],[-76.539223,39.252492],[-76.539223,39.252493],[-76.539224,39.252495],[-76.539224,39.252496],[-76.539224,39.252498],[-76.539225,39.252499],[-76.539225,39.2525],[-76.539226,39.252502],[-76.539226,39.252503],[-76.539227,39.252505],[-76.539227,39.252506],[-76.539228,39.252507],[-76.539228,39.252509],[-76.539229,39.25251],[-76.53923,39.252512],[-76.539231,39.252513],[-76.539231,39.252514],[-76.539232,39.252516],[-76.539233,39.252517],[-76.539234,39.252518],[-76.539235,39.25252],[-76.539236,39.252521],[-76.539236,39.252522],[-76.539237,39.252524],[-76.539238,39.252525],[-76.539239,39.252526],[-76.539241,39.252527],[-76.539239,39.252527],[-76.539237,39.252527],[-76.539236,39.252527],[-76.539235,39.252527],[-76.539234,39.252526],[-76.539233,39.252526],[-76.539231,39.252526],[-76.53923,39.252526],[-76.539229,39.252526],[-76.539228,39.252526],[-76.539226,39.252525],[-76.539225,39.252525],[-76.539224,39.252525],[-76.539222,39.252526],[-76.539221,39.252526],[-76.53922,39.252526],[-76.539219,39.252526],[-76.539217,39.252526],[-76.539216,39.252526],[-76.539215,39.252527],[-76.539214,39.252527],[-76.539213,39.252527],[-76.539211,39.252528],[-76.53921,39.252528],[-76.539209,39.252528],[-76.539208,39.252529],[-76.539207,39.252529],[-76.539206,39.25253],[-76.539205,39.25253],[-76.539204,39.252531],[-76.539203,39.252532],[-76.539202,39.252532],[-76.539201,39.252533],[-76.5392,39.252533],[-76.539199,39.252534],[-76.539198,39.252535],[-76.539197,39.252536],[-76.539196,39.252536],[-76.539196,39.252537],[-76.539195,39.252538],[-76.539194,39.252539],[-76.539194,39.25254],[-76.539193,39.252541],[-76.539192,39.252541],[-76.539192,39.252542],[-76.539191,39.252543],[-76.539191,39.252544],[-76.53919,39.252545],[-76.53919,39.252546],[-76.53919,39.252547],[-76.539189,39.252548],[-76.539189,39.252549],[-76.539189,39.25255],[-76.539189,39.252551],[-76.539189,39.252552],[-76.539189,39.252553],[-76.539189,39.252554],[-76.539189,39.252555],[-76.539189,39.252556],[-76.539189,39.252557],[-76.539189,39.252558],[-76.539189,39.252559],[-76.539189,39.25256],[-76.53919,39.252561],[-76.53919,39.252562],[-76.53919,39.252563],[-76.539191,39.252564],[-76.539192,39.252565],[-76.539192,39.252566],[-76.539193,39.252567],[-76.539194,39.252568],[-76.539194,39.252569],[-76.539195,39.25257],[-76.539196,39.25257],[-76.539196,39.252571],[-76.539197,39.252572],[-76.539198,39.252573],[-76.539199,39.252573],[-76.5392,39.252574],[-76.539201,39.252575],[-76.539202,39.252576],[-76.539203,39.252576],[-76.539204,39.252577],[-76.539205,39.252577],[-76.539206,39.252578],[-76.539206,39.252579],[-76.539204,39.252579],[-76.539202,39.25258],[-76.5392,39.25258],[-76.539198,39.25258],[-76.539196,39.252581],[-76.539195,39.252581],[-76.539193,39.252581],[-76.539191,39.252582],[-76.539189,39.252582],[-76.539187,39.252583],[-76.539185,39.252583],[-76.539183,39.252584],[-76.539182,39.252584],[-76.53918,39.252585],[-76.539178,39.252585],[-76.539176,39.252586],[-76.539174,39.252587],[-76.539173,39.252587],[-76.539171,39.252588],[-76.539169,39.252589],[-76.539168,39.25259],[-76.539166,39.25259],[-76.539164,39.252591],[-76.539163,39.252592],[-76.539161,39.252593],[-76.539159,39.252594],[-76.539158,39.252594],[-76.539156,39.252595],[-76.539155,39.252596],[-76.539153,39.252597],[-76.539151,39.252598],[-76.53915,39.252599],[-76.539149,39.2526],[-76.539147,39.252601],[-76.539146,39.252602],[-76.539144,39.252603],[-76.539143,39.252604],[-76.539141,39.252605],[-76.53914,39.252607],[-76.539139,39.252608],[-76.539138,39.252609],[-76.539136,39.25261],[-76.539135,39.252611],[-76.539134,39.252612],[-76.539133,39.252614],[-76.539132,39.252615],[-76.53913,39.252616],[-76.539129,39.252617],[-76.539128,39.252619],[-76.539127,39.25262],[-76.539126,39.252621],[-76.539125,39.252622],[-76.539124,39.252624],[-76.539123,39.252625],[-76.539123,39.252626],[-76.539122,39.252628],[-76.539121,39.252629],[-76.53912,39.252631],[-76.539119,39.252632],[-76.539119,39.252633],[-76.539118,39.252635],[-76.539117,39.252636],[-76.539117,39.252638],[-76.539116,39.252639],[-76.539115,39.252641],[-76.539115,39.252642],[-76.539114,39.252644],[-76.539114,39.252645],[-76.539113,39.252646],[-76.539113,39.252648],[-76.539113,39.252649],[-76.539112,39.252651],[-76.539112,39.252652],[-76.539112,39.252654],[-76.539111,39.252655],[-76.539111,39.252657],[-76.539111,39.252658],[-76.539111,39.25266],[-76.539111,39.252661],[-76.539111,39.252663],[-76.539111,39.252665],[-76.539111,39.252666],[-76.539111,39.252668],[-76.539111,39.252669],[-76.539111,39.252671],[-76.539111,39.252672],[-76.539111,39.252674],[-76.539111,39.252675],[-76.539111,39.252677],[-76.539112,39.252678],[-76.539112,39.25268],[-76.539112,39.252681],[-76.539113,39.252683],[-76.539113,39.252684],[-76.539114,39.252686],[-76.539114,39.252687],[-76.539114,39.252689],[-76.539115,39.25269],[-76.539116,39.252691],[-76.539116,39.252693],[-76.539117,39.252694],[-76.539117,39.252696],[-76.539118,39.252697],[-76.539119,39.252699],[-76.53912,39.2527],[-76.53912,39.252701],[-76.539121,39.252703],[-76.539122,39.252704],[-76.539123,39.252706],[-76.539124,39.252707],[-76.539125,39.252708],[-76.539126,39.25271],[-76.539127,39.252711],[-76.539128,39.252712],[-76.539129,39.252713],[-76.539127,39.252713],[-76.539126,39.252713],[-76.539124,39.252713],[-76.539123,39.252712],[-76.539122,39.252712],[-76.539121,39.252712],[-76.539119,39.252712],[-76.539118,39.252712],[-76.539117,39.252712],[-76.539115,39.252712],[-76.539114,39.252712],[-76.539113,39.252712],[-76.539112,39.252712],[-76.53911,39.252713],[-76.539109,39.252713],[-76.539108,39.252713],[-76.539107,39.252713],[-76.539105,39.252714],[-76.539104,39.252714],[-76.539103,39.252714],[-76.539102,39.252715],[-76.539101,39.252715],[-76.5391,39.252716],[-76.539098,39.252716],[-76.539097,39.252717],[-76.539096,39.252717],[-76.539095,39.252718],[-76.539094,39.252718],[-76.539093,39.252719],[-76.539092,39.25272],[-76.539091,39.25272],[-76.53909,39.252721],[-76.53909,39.252722],[-76.539089,39.252723],[-76.539088,39.252723],[-76.539087,39.252724],[-76.539087,39.252725],[-76.539086,39.252726],[-76.539085,39.252727],[-76.539085,39.252728],[-76.539084,39.252729],[-76.539083,39.25273],[-76.539083,39.252731],[-76.539082,39.252732],[-76.539082,39.252733],[-76.539082,39.252734],[-76.539081,39.252735],[-76.539081,39.252736],[-76.539081,39.252737],[-76.539081,39.252738],[-76.539081,39.252739],[-76.539081,39.25274],[-76.539081,39.252741],[-76.539081,39.252742],[-76.539081,39.252743],[-76.539081,39.252744],[-76.539081,39.252745],[-76.539081,39.252746],[-76.539082,39.252747],[-76.539082,39.252748],[-76.539082,39.252749],[-76.539083,39.25275],[-76.539083,39.252751],[-76.539084,39.252752],[-76.539084,39.252753],[-76.539085,39.252754],[-76.539086,39.252755],[-76.539087,39.252756],[-76.539087,39.252757],[-76.539088,39.252758],[-76.539089,39.252759],[-76.53909,39.252759],[-76.53909,39.25276],[-76.539091,39.252761],[-76.539092,39.252762],[-76.539093,39.252762],[-76.539094,39.252763],[-76.539095,39.252763],[-76.539096,39.252764],[-76.539097,39.252765],[-76.539098,39.252765],[-76.539101,39.252766],[-76.539099,39.252766],[-76.539097,39.252766],[-76.539095,39.252767],[-76.539093,39.252767],[-76.539091,39.252767],[-76.539089,39.252767],[-76.539087,39.252768],[-76.539086,39.252768],[-76.539084,39.252768],[-76.539082,39.252769],[-76.53908,39.252769],[-76.539078,39.25277],[-76.539076,39.25277],[-76.539075,39.25277],[-76.539073,39.252771],[-76.539071,39.252771],[-76.539069,39.252772],[-76.539068,39.252773],[-76.539066,39.252773],[-76.539064,39.252774],[-76.539062,39.252774],[-76.539061,39.252775],[-76.539059,39.252776],[-76.539057,39.252777],[-76.539056,39.252777],[-76.539054,39.252778],[-76.539052,39.252779],[-76.539051,39.25278],[-76.539049,39.25278],[-76.539048,39.252781],[-76.539046,39.252782],[-76.539044,39.252783],[-76.539043,39.252784],[-76.539041,39.252785],[-76.53904,39.252786],[-76.539039,39.252787],[-76.539037,39.252788],[-76.539036,39.252789],[-76.539034,39.25279],[-76.539033,39.252791],[-76.539032,39.252792],[-76.53903,39.252793],[-76.539029,39.252794],[-76.539028,39.252795],[-76.539027,39.252796],[-76.539025,39.252797],[-76.539024,39.252799],[-76.539023,39.2528],[-76.539022,39.252801],[-76.539021,39.252802],[-76.53902,39.252803],[-76.539019,39.252805],[-76.539018,39.252806],[-76.539017,39.252807],[-76.539016,39.252808],[-76.539015,39.25281],[-76.539014,39.252811],[-76.539013,39.252812],[-76.539012,39.252814],[-76.539011,39.252815],[-76.53901,39.252816],[-76.53901,39.252818],[-76.539009,39.252819],[-76.539008,39.25282],[-76.539008,39.252822],[-76.539007,39.252823],[-76.539006,39.252825],[-76.539006,39.252826],[-76.539005,39.252827],[-76.539005,39.252829],[-76.539004,39.25283],[-76.539004,39.252832],[-76.539003,39.252833],[-76.539003,39.252835],[-76.539003,39.252836],[-76.539002,39.252838],[-76.539002,39.252839],[-76.539002,39.252841],[-76.539002,39.252842],[-76.539001,39.252843],[-76.539001,39.252845],[-76.539001,39.252846],[-76.539001,39.252848],[-76.539001,39.252849],[-76.539001,39.252851],[-76.539001,39.252852],[-76.539001,39.252854],[-76.539001,39.252855],[-76.539001,39.252857],[-76.539001,39.252858],[-76.539002,39.25286],[-76.539002,39.252861],[-76.539002,39.252863],[-76.539002,39.252864],[-76.539003,39.252866],[-76.539003,39.252867],[-76.539003,39.252869],[-76.539004,39.25287],[-76.539004,39.252871],[-76.539005,39.252873],[-76.539005,39.252874],[-76.539006,39.252876],[-76.539006,39.252877],[-76.539007,39.252879],[-76.539008,39.25288],[-76.539008,39.252881],[-76.539009,39.252883],[-76.53901,39.252884],[-76.53901,39.252885],[-76.539011,39.252887],[-76.539012,39.252888],[-76.539013,39.252889],[-76.539014,39.252891],[-76.539015,39.252892],[-76.539016,39.252893],[-76.539017,39.252895],[-76.539018,39.252896],[-76.539019,39.252897],[-76.539017,39.252897],[-76.539015,39.252897],[-76.539014,39.252896],[-76.539013,39.252896],[-76.539011,39.252896],[-76.53901,39.252896],[-76.539009,39.252896],[-76.539007,39.252896],[-76.539006,39.252896],[-76.539005,39.252896],[-76.539003,39.252896],[-76.539002,39.252896],[-76.539001,39.252896],[-76.538999,39.252896],[-76.538998,39.252896],[-76.538997,39.252897],[-76.538995,39.252897],[-76.538994,39.252897],[-76.538993,39.252898],[-76.538992,39.252898],[-76.53899,39.252898],[-76.538989,39.252899],[-76.538988,39.252899],[-76.538987,39.2529],[-76.538986,39.2529],[-76.538985,39.252901],[-76.538984,39.252902],[-76.538983,39.252902],[-76.538982,39.252903],[-76.538981,39.252904],[-76.53898,39.252904],[-76.538979,39.252905],[-76.538978,39.252906],[-76.538977,39.252907],[-76.538976,39.252908],[-76.538975,39.252908],[-76.538974,39.252909],[-76.538974,39.25291],[-76.538973,39.252911],[-76.538972,39.252912],[-76.538972,39.252913],[-76.538971,39.252914],[-76.538971,39.252915],[-76.53897,39.252916],[-76.53897,39.252917],[-76.53897,39.252918],[-76.538969,39.252919],[-76.538969,39.25292],[-76.538969,39.252921],[-76.538968,39.252922],[-76.538968,39.252923],[-76.538968,39.252924],[-76.538968,39.252925],[-76.538968,39.252926],[-76.538968,39.252927],[-76.538968,39.252928],[-76.538968,39.252929],[-76.538969,39.25293],[-76.538969,39.252931],[-76.538969,39.252932],[-76.538969,39.252933],[-76.53897,39.252934],[-76.53897,39.252935],[-76.538971,39.252936],[-76.538971,39.252937],[-76.538972,39.252938],[-76.538972,39.252939],[-76.538973,39.25294],[-76.538973,39.252941],[-76.538974,39.252942],[-76.538975,39.252943],[-76.538976,39.252943],[-76.538976,39.252944],[-76.538977,39.252945],[-76.538978,39.252946],[-76.538979,39.252947],[-76.53898,39.252947],[-76.538981,39.252948],[-76.538982,39.252949],[-76.538983,39.252949],[-76.538983,39.252951],[-76.538982,39.252951],[-76.53898,39.252951],[-76.538978,39.252951],[-76.538976,39.252952],[-76.538974,39.252952],[-76.538972,39.252952],[-76.538971,39.252952],[-76.538969,39.252953],[-76.538967,39.252953],[-76.538965,39.252953],[-76.538963,39.252954],[-76.538962,39.252954],[-76.53896,39.252955],[-76.538958,39.252955],[-76.538956,39.252956],[-76.538955,39.252956],[-76.538953,39.252957],[-76.538951,39.252957],[-76.53895,39.252958],[-76.538948,39.252959],[-76.538946,39.252959],[-76.538945,39.25296],[-76.538943,39.252961],[-76.538941,39.252961],[-76.53894,39.252962],[-76.538938,39.252963],[-76.538937,39.252964],[-76.538935,39.252964],[-76.538933,39.252965],[-76.538932,39.252966],[-76.53893,39.252967],[-76.538929,39.252968],[-76.538927,39.252969],[-76.538926,39.25297],[-76.538925,39.25297],[-76.538923,39.252971],[-76.538922,39.252972],[-76.538921,39.252973],[-76.538919,39.252974],[-76.538918,39.252975],[-76.538917,39.252976],[-76.538915,39.252978],[-76.538914,39.252979],[-76.538913,39.25298],[-76.538912,39.252981],[-76.538911,39.252982],[-76.538909,39.252983],[-76.538908,39.252984],[-76.538907,39.252985],[-76.538906,39.252987],[-76.538905,39.252988],[-76.538904,39.252989],[-76.538903,39.25299],[-76.538902,39.252991],[-76.538901,39.252993],[-76.5389,39.252994],[-76.538899,39.252995],[-76.538899,39.252997],[-76.538898,39.252998],[-76.538897,39.252999],[-76.538896,39.253],[-76.538896,39.253002],[-76.538895,39.253003],[-76.538894,39.253005],[-76.538894,39.253006],[-76.538893,39.253007],[-76.538892,39.253009],[-76.538892,39.25301],[-76.538891,39.253011],[-76.538891,39.253013],[-76.53889,39.253014],[-76.53889,39.253016],[-76.53889,39.253017],[-76.538889,39.253018],[-76.538889,39.25302],[-76.538889,39.253021],[-76.538888,39.253023],[-76.538888,39.253024],[-76.538888,39.253026],[-76.538888,39.253027],[-76.538888,39.253028],[-76.538888,39.25303],[-76.538888,39.253031],[-76.538888,39.253033],[-76.538888,39.253034],[-76.538888,39.253036],[-76.538888,39.253037],[-76.538888,39.253039],[-76.538888,39.25304],[-76.538888,39.253041],[-76.538888,39.253043],[-76.538889,39.253044],[-76.538889,39.253046],[-76.538889,39.253047],[-76.538889,39.253049],[-76.53889,39.25305],[-76.53889,39.253051],[-76.538891,39.253053],[-76.538891,39.253054],[-76.538892,39.253056],[-76.538892,39.253057],[-76.538893,39.253058],[-76.538893,39.25306],[-76.538894,39.253061],[-76.538894,39.253063],[-76.538895,39.253064],[-76.538896,39.253065],[-76.538897,39.253067],[-76.538897,39.253068],[-76.538898,39.253069],[-76.538899,39.25307],[-76.5389,39.253072],[-76.538901,39.253073],[-76.538901,39.253074],[-76.538902,39.253076],[-76.538903,39.253077],[-76.538904,39.253078],[-76.538905,39.253079],[-76.538906,39.25308],[-76.538907,39.253082]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00004,"geom:area_square_m":379762.09172,"geom:bbox":"-76.540876,39.245402,-76.532467,39.267328","geom:latitude":39.255523,"geom:longitude":-76.537783,"iso:country":"US","lbl:latitude":39.250319,"lbl:longitude":-76.538757,"lbl:max_zoom":18,"mps:latitude":39.250319,"mps:longitude":-76.538757,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"reversegeo:latitude":39.250319,"reversegeo:longitude":-76.538757,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[102191575,85633793,102081589,85949461,1108797011,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"67f162268ff71e9906a9c17db4a5fa82","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797013,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797013,"wof:lastmodified":1613773789,"wof:name":"Colgate Creek","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797015.geojson b/fixtures/microhoods/1108797015.geojson new file mode 100644 index 0000000..eaff8fc --- /dev/null +++ b/fixtures/microhoods/1108797015.geojson @@ -0,0 +1 @@ +{"id":1108797015,"type":"Feature","bbox":[-76.63165633434724,39.26724395555199,-76.62038244553972,39.27459060472349],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.62119383051852,39.26724395555199],[-76.6216634785491,39.2672472610295],[-76.62216654324455,39.26725714614859],[-76.62261087449839,39.26727296233825],[-76.62296838240378,39.26728877852435],[-76.62323906696074,39.26730459470687],[-76.623550609564,39.26733029599043],[-76.62390301021361,39.267365882375],[-76.62421199918899,39.26740344575976],[-76.62447757649015,39.26744298614469],[-76.62470995662866,39.2674765954586],[-76.62490913960451,39.2675042737015],[-76.62512109071986,39.26753985999172],[-76.62534580997468,39.26758335432925],[-76.6255654219737,39.26762882565134],[-76.62575771238181,39.26767136016182],[-76.62576216459057,39.26767762716364],[-76.625767093605,39.26771398245332],[-76.6257676288906,39.26775794331661],[-76.62576142558717,39.2677775422211],[-76.62575789143004,39.26778871125999],[-76.62574161098915,39.2678076835449],[-76.62571456941255,39.26783509323074],[-76.62568761581913,39.26787811255531],[-76.62568012761301,39.26789217305666],[-76.62566381770561,39.26790332298923],[-76.62564156495458,39.26791083019636],[-76.62561998174773,39.26791882234399],[-76.62560862889717,39.26792563647333],[-76.62558886095874,39.26792539149758],[-76.62555665656153,39.26791990494624],[-76.62552230193714,39.26791432145313],[-76.62547691446824,39.26790497900132],[-76.62543789115328,39.26789585950232],[-76.6253896458925,39.26788677452852],[-76.62536809028568,39.26788733990674],[-76.6253563834346,39.26789030661399],[-76.62534792855283,39.26789474113303],[-76.62534038384612,39.26790083416208],[-76.62533538764862,39.26790599312045],[-76.6253256968853,39.26791097856659],[-76.62531289442165,39.26791492450922],[-76.62529341768567,39.26792097946571],[-76.62528282613141,39.26792428390814],[-76.62526790554672,39.26792841495048],[-76.62525561640206,39.26793324347339],[-76.62522734807736,39.26794363277205],[-76.62521592234155,39.26794493124405],[-76.6253134409383,39.26797053140518],[-76.62544078398037,39.26800554232664],[-76.62546378210683,39.26801204623872],[-76.62552863996585,39.26803038457226],[-76.6256144166145,39.26805510122201],[-76.62572596822206,39.26808869683013],[-76.62582401205806,39.26811870748554],[-76.62590977891064,39.26814466243946],[-76.62612728122949,39.26818851523969],[-76.62653254025815,39.26827022142187],[-76.62679802287488,39.26829467173391],[-76.62705934385298,39.2683260567329],[-76.62716488057616,39.26834101755271],[-76.62737830841793,39.26837367209317],[-76.62759899443991,39.2684128870148],[-76.62791091957338,39.26847670678887],[-76.62815808354105,39.26853524488907],[-76.62816064482385,39.26853585110674],[-76.62830148492897,39.26857059448551],[-76.62865695623344,39.26865434890421],[-76.62881113424224,39.26868897981154],[-76.62893998458378,39.26871819886547],[-76.62907254920253,39.26874738807357],[-76.62916263704336,39.2687580178621],[-76.62917196723842,39.2687583580873],[-76.62917902550147,39.2687586001608],[-76.62918608497047,39.26875883323005],[-76.62919314447714,39.26875905909288],[-76.62920020399802,39.26875928225302],[-76.62920726467772,39.2687595054164],[-76.62921432417986,39.26875973217872],[-76.62922138364904,39.26875996524582],[-76.62922844190777,39.2687602082171],[-76.62923549778297,39.26876046379117],[-76.62924255356887,39.26876073647905],[-76.62924960693836,39.26876102807496],[-76.62925665786798,39.2687613430826],[-76.62926370634358,39.26876168420428],[-76.629270752351,39.26876205414224],[-76.62927779706797,39.26876244929711],[-76.62928485349536,39.26876282106868],[-76.62929192162848,39.26876317035755],[-76.62929899676155,39.2687635106605],[-76.62930607536167,39.26876385277553],[-76.62931315388187,39.26876421020282],[-76.62932022761632,39.26876459643909],[-76.62932729303228,39.26876502228237],[-76.62933434657793,39.26876550213362],[-76.62934138471586,39.26876604769168],[-76.62934840274491,39.26876667155241],[-76.62935539712294,39.26876738631537],[-76.62936236430285,39.2687682054808],[-76.62936929959318,39.26876913984314],[-76.62937619944215,39.26877020380336],[-76.62938307560256,39.26877136587181],[-76.62938995039737,39.26877256756923],[-76.6293968215043,39.268773809789],[-76.62940368892343,39.26877509253121],[-76.62941054801946,39.26877641578114],[-76.62941740111009,39.26877777954619],[-76.62942424471416,39.26877918471605],[-76.62943107651886,39.26878063038271],[-76.62943789766877,39.26878211925214],[-76.62944470354294,39.26878364860735],[-76.62945149644484,39.26878522115796],[-76.62945827174394,39.26878683598859],[-76.62946502828143,39.26878849309562],[-76.62947176721151,39.26879019338336],[-76.6294784838942,39.26879193773809],[-76.62948517949773,39.26879372436187],[-76.62949185053168,39.26879555594598],[-76.62949849700065,39.26879743158968],[-76.62950511542832,39.26879935128206],[-76.62951170696873,39.2688013159275],[-76.62951827046788,39.26880332462159],[-76.62952481757962,39.2688053647904],[-76.62953135178499,39.26880743554412],[-76.62953787310757,39.26880953237908],[-76.62954438154264,39.26881165619593],[-76.62955087941722,39.26881380520052],[-76.62955736558662,39.26881597668696],[-76.62956384236841,39.26881817066254],[-76.62957030978149,39.26882038352431],[-76.62957676782112,39.26882261617295],[-76.629583218819,39.26882486591358],[-76.62958966162104,39.2688271318418],[-76.62959609855895,39.26882941126262],[-76.62960252963275,39.26883170417604],[-76.62960895485656,39.26883400787985],[-76.62961537539383,39.26883632147693],[-76.62962179241278,39.26883864316948],[-76.62962820591815,39.26884097205672],[-76.62963461707814,39.26884330634078],[-76.62964102590213,39.26884564422016],[-76.62964743355364,39.26884798479779],[-76.6296538412009,39.26885032627585],[-76.62966024885327,39.26885266685279],[-76.62966665651547,39.26885500562787],[-76.62966959433933,39.26885607509233],[-76.62967306651916,39.26885733990618],[-76.6296794788597,39.26885967058842],[-76.6296858935559,39.26886199407164],[-76.62969231177593,39.26886430855794],[-76.62969873351504,39.26886661494812],[-76.62970516110971,39.26886890964646],[-76.62971159456465,39.26887119175219],[-76.62971803388444,39.26887346036459],[-76.62972448024213,39.26887571278508],[-76.62973093363765,39.26887794901364],[-76.62973739524388,39.26888016635161],[-76.62974386622432,39.26888236390195],[-76.62975034658835,39.26888453986319],[-76.62975683750422,39.26888669243745],[-76.6297633401307,39.26888882162831],[-76.6297698533231,39.26889092472998],[-76.62977637940838,39.26889299994823],[-76.6297829183913,39.2688950463823],[-76.62978947143998,39.2688970622343],[-76.62979603855914,39.26889904660351],[-76.62980262091695,39.26890099769208],[-76.62980921852288,39.2689029136985],[-76.62981583489082,39.26890478742775],[-76.62982248172632,39.26890659639757],[-76.62982915556235,39.2689083387955],[-76.6298358575248,39.26891002093046],[-76.62984258528667,39.2689116445966],[-76.62984933650205,39.26891321519117],[-76.62985610999819,39.26891473541271],[-76.62986290343383,39.26891620975768],[-76.62986971679499,39.26891764092839],[-76.62987654774045,39.26891903342116],[-76.62988339277508,39.26892039082807],[-76.6298902530388,39.26892171675591],[-76.62989712503179,39.26892301569729],[-76.62990400758108,39.2689242903509],[-76.62991090066322,39.26892554522043],[-76.62991779962418,39.26892678389433],[-76.62992470444985,39.26892800907484],[-76.62993161394854,39.26892922706354],[-76.62993852579798,39.26893043875388],[-76.62994543881115,39.26893164954674],[-76.6299523506516,39.26893286303773],[-76.6299592601419,39.26893408282632],[-76.62996616494553,39.26893531250814],[-76.62997306388017,39.26893655658328],[-76.62997995693183,39.26893781775401],[-76.62998683944647,39.26893909960877],[-76.62999371255474,39.26894040755565],[-76.63000057161206,39.26894174338155],[-76.63000741774897,39.26894311249471],[-76.63001424863384,39.26894451758996],[-76.63002106779007,39.26894594967087],[-76.63002788341377,39.26894739254939],[-76.63003469667323,39.26894884442773],[-76.63004150524606,39.26895030619929],[-76.63004831146401,39.26895177516921],[-76.63005511532235,39.26895325223813],[-76.63006191798932,39.2689547356083],[-76.63006871715197,39.26895622437161],[-76.63007551512796,39.2689577185354],[-76.6300823119313,39.26895921539739],[-76.63008910755266,39.26896071675905],[-76.63009590316962,39.26896221902111],[-76.63010269761868,39.26896372308062],[-76.63010949090456,39.26896522803679],[-76.63011628534944,39.26896673299627],[-76.6301230809629,39.26896823615747],[-76.63012987542716,39.26896973751315],[-76.63013667222816,39.26897123527273],[-76.63014347020231,39.26897273033332],[-76.63015026935902,39.2689742208934],[-76.63015706970297,39.26897570605226],[-76.63016387356119,39.26897718401564],[-76.63017067861138,39.26897865567701],[-76.63017748717576,39.26898012014296],[-76.63018429810971,39.26898157470755],[-76.6301911125673,39.2689830202752],[-76.63019793171671,39.26898445504806],[-76.63020475324033,39.26898587901881],[-76.63021157946046,39.26898729129399],[-76.6302184080407,39.26898869546931],[-76.6302252389764,39.26899009244551],[-76.630232073431,39.26899148132558],[-76.63023890907752,39.2689928639036],[-76.63024574823365,39.2689942401869],[-76.63025258858163,39.26899561016823],[-76.63025943011687,39.26899697474829],[-76.63026627515225,39.26899833483517],[-76.630273120216,39.26899968951711],[-76.63027996761647,39.26900104060299],[-76.63028681619473,39.26900238808908],[-76.63029366479206,39.26900373197177],[-76.6303005157213,39.26900507315915],[-76.63030736666019,39.26900641254458],[-76.63031421877226,39.26900774923104],[-76.63032107088922,39.26900908501634],[-76.6303279230112,39.26901041990046],[-76.6303347762969,39.26901175388711],[-76.63034162842403,39.26901308786971],[-76.63034848171024,39.26901442185555],[-76.6303553338285,39.26901575763882],[-76.63036218594708,39.26901709342175],[-76.63036903805177,39.26901843190648],[-76.6303758889886,39.26901977218868],[-76.63038273875277,39.2690211151691],[-76.63038958734428,39.26902246084767],[-76.63039643475851,39.26902381012523],[-76.63040328099075,39.26902516390251],[-76.630410126041,39.26902652217948],[-76.63041696638592,39.2690278939527],[-76.63042380315613,39.26902928463038],[-76.63043063519761,39.269030693308],[-76.63043746252906,39.26903211638271],[-76.63044428747746,39.26903355206019],[-76.63045111005697,39.26903499763824],[-76.63045793027695,39.26903645131539],[-76.63046474815613,39.26903790948857],[-76.6304715671756,39.26903937126803],[-76.63047838503189,39.26904083394414],[-76.63048520290249,39.26904229391764],[-76.63049202195096,39.26904375029141],[-76.63049884335017,39.26904520036678],[-76.63050566595066,39.26904664233868],[-76.63051249208883,39.26904807261135],[-76.63051932061525,39.26904948937964],[-76.63052615386154,39.26905088994864],[-76.63053299183245,39.26905227341759],[-76.63053983455141,39.2690536352827],[-76.63054668318193,39.26905497464686],[-76.63055353773332,39.26905628970864],[-76.63056039938789,39.26905757596784],[-76.6305672693044,39.26905883342815],[-76.6305741463475,39.26906005758219],[-76.63058103283946,39.26906124753647],[-76.63058792879434,39.26906240058877],[-76.63059483422155,39.26906351493752],[-76.63060175032209,39.2690645824797],[-76.63060868414247,39.26906558522213],[-76.63061563102882,39.26906652675321],[-76.63062259327049,39.26906741248474],[-76.63062956736768,39.26906824690958],[-76.63063655329216,39.26906903543215],[-76.63064354869827,39.26906978344973],[-76.63065055239902,39.26907049636311],[-76.63065756436625,39.26907117957688],[-76.63066458341767,39.26907183759104],[-76.63067160604885,39.26907247579922],[-76.63067863338568,39.26907310051033],[-76.6306856630918,39.26907371532005],[-76.63069269398031,39.26907432562922],[-76.63069972485957,39.26907493773947],[-76.6307067545426,39.26907555705168],[-76.63071378185192,39.26907618716515],[-76.63072080559589,39.26907683438154],[-76.63072782342878,39.26907750409808],[-76.63073483648593,39.26907820082211],[-76.63074184126283,39.26907892994719],[-76.6307488377267,39.26907969777864],[-76.63075582354121,39.26908050791211],[-76.63076279867813,39.26908136575219],[-76.63076976667963,39.26908225869924],[-76.63077672757849,39.26908318044799],[-76.63078368370641,39.26908412830351],[-76.63079063507276,39.26908510046435],[-76.63079758169623,39.26908609332742],[-76.6308045247451,39.26908710509489],[-76.63081146423342,39.26908813306456],[-76.63081840017516,39.2690891745341],[-76.63082533490211,39.26909022680864],[-76.63083226726009,39.26909128898374],[-76.63083919843133,39.26909235655928],[-76.63084612842529,39.26909342773374],[-76.63085305841004,39.26909450070931],[-76.63085998956315,39.26909557188662],[-76.6308669207306,39.26909664036123],[-76.63087385309451,39.26909770163309],[-76.63088078782307,39.26909875390436],[-76.63088772492108,39.26909979627423],[-76.63089466441177,39.26910082423898],[-76.63090160746347,39.2691018360007],[-76.63090855289387,39.26910283605959],[-76.63091550067489,39.26910382982005],[-76.63092245081117,39.26910481638146],[-76.63092940097111,39.26910579843864],[-76.63093635231341,39.2691067759953],[-76.6309433048288,39.26910775085296],[-76.63095025735376,39.26910872390874],[-76.63095721103768,39.26910969696772],[-76.63096416356301,39.26911067002262],[-76.63097111607917,39.26911164487861],[-76.63097806742735,39.26911262153209],[-76.63098501758877,39.26911360358599],[-76.63099196657292,39.26911458923887],[-76.6309989143609,39.26911558209366],[-76.63100585979406,39.26911658214676],[-76.63101280402637,39.26911759030259],[-76.63101974473567,39.26911860745457],[-76.63102668422547,39.26911963631223],[-76.63103362253791,39.26912066876885],[-76.63104057837786,39.26912167335644],[-76.63104753885793,39.26912267705742],[-76.63105449222613,39.26912371136164],[-76.63106142323997,39.26912481045031],[-76.63106831897471,39.26912600851187],[-76.63107516419728,39.26912733792604],[-76.63108194714162,39.2691288328849],[-76.6310886783917,39.26913046369649],[-76.63109539079211,39.26913215389895],[-76.63110208438032,39.26913389628631],[-76.6311087614927,39.26913568726285],[-76.63111542215265,39.26913752232482],[-76.63112206871062,39.26913939517425],[-76.63112870118538,39.26914130220808],[-76.63112982585041,39.26914163181745],[-76.63113532075904,39.2691432389263],[-76.63114192861859,39.269145199928],[-76.63114852594626,39.26914718071305],[-76.63115511392422,39.26914917678142],[-76.63116169258525,39.26915118182775],[-76.63116826309292,39.26915319495502],[-76.63117480668149,39.26915525934096],[-76.63118131750086,39.26915738577639],[-76.63118780373753,39.26915955987483],[-76.63119427356398,39.26916176995196],[-76.63120073053634,39.26916400070598],[-76.63120718515403,39.26916623865834],[-76.6312136421131,39.26916847211383],[-76.6312201084414,39.2691706866824],[-76.63122659232067,39.26917286887813],[-76.63123309961999,39.2691750043073],[-76.6312396373529,39.26917708128195],[-76.63124619260877,39.26917913128829],[-76.63125274189306,39.26918121550457],[-76.63125928757495,39.26918332402983],[-76.63126583086942,39.26918544605869],[-76.63127237646783,39.26918757079672],[-76.6312789267393,39.26918968834293],[-76.63128548521179,39.26919178880002],[-76.63129205425898,39.26919386136621],[-76.6312986362594,39.26919589433899],[-76.63130523589504,39.26919787872554],[-76.63131185553965,39.26919980372401],[-76.63131849872582,39.26920165853635],[-76.63132516666383,39.26920343325795],[-76.63133186404498,39.26920511709431],[-76.63133859324311,39.26920669924379],[-76.63134535778605,39.26920816980893],[-76.63135216822475,39.26920950540305],[-76.63135903041399,39.26921069433451],[-76.63136593848486,39.26921175099719],[-76.63137288888598,39.2692126897921],[-76.63137987226736,39.26921352600291],[-76.63138688507765,39.2692142740307],[-76.63139392028911,39.26921494826568],[-76.63140097202348,39.26921556490316],[-76.63140803326242,39.26921613653181],[-76.63141509928172,39.26921668025131],[-76.63142216306304,39.26921720865037],[-76.63142921872813,39.26921773792428],[-76.63143626040807,39.26921828246688],[-76.63144328573856,39.26921885127842],[-76.63145032163875,39.26921939309975],[-76.63145737170201,39.26921988542301],[-76.63146443362952,39.26922032463798],[-76.63147150050102,39.26922070441755],[-76.63147857002713,39.26922101934998],[-76.63148563644636,39.26922126311177],[-76.63149269398815,39.26922143118106],[-76.63149974152638,39.26922151724892],[-76.63150677444915,39.26922151679707],[-76.63151437793113,39.26922143616539],[-76.63152191063588,39.26922070315738],[-76.63152782400752,39.26921849501998],[-76.63152821901836,39.26921807740369],[-76.63165633434724,39.2693631700534],[-76.63165353982659,39.26936529159744],[-76.63164846743807,39.26936912375553],[-76.63164361325065,39.26937311333084],[-76.63163876598745,39.26937710833229],[-76.63163381714585,39.26938102644986],[-76.63162882328781,39.269384910197],[-76.63162380518301,39.26938877675332],[-76.63161876284549,39.26939262341658],[-76.63161369513053,39.26939644748091],[-76.63160850858121,39.26940017028659],[-76.63160311319382,39.26940371768858],[-76.6315978331679,39.2694073654371],[-76.6315925485249,39.26941100956782],[-76.63158721543576,39.26941461030961],[-76.63158185466088,39.26941818664366],[-76.63157648235348,39.26942175213211],[-76.6315711065878,39.26942531400641],[-76.63156573658293,39.2694288822039],[-76.63156042426549,39.2694324992234],[-76.63155459085868,39.26943559576735],[-76.6315487217434,39.26943865076378],[-76.63154297589547,39.26944184576518],[-76.63153714248715,39.26944494230826],[-76.6315312745151,39.26944800000967],[-76.63152541115439,39.26945106222912],[-76.63151956391363,39.26945414431567],[-76.63151372243837,39.26945723182457],[-76.63150787980848,39.26946031842887],[-76.63150203947697,39.26946340864307],[-76.63149601386732,39.26946624966457],[-76.6314895510802,39.26946847859544],[-76.63148313544373,39.26947077703281],[-76.63147671981157,39.26947307456905],[-76.63147029842705,39.26947536398004],[-76.63146387704671,39.26947765248988],[-76.63145745566602,39.26947994099937],[-76.63145103084122,39.2694822231924],[-76.63144460026875,39.26948449635934],[-76.63143816050955,39.26948675328337],[-76.63143169433118,39.26948896508588],[-76.63142519141195,39.26949111101689],[-76.63141861620772,39.26949311800291],[-76.63141206394073,39.26949517099953],[-76.63140552314914,39.26949724565016],[-76.63139898350667,39.26949932210558],[-76.63139243928472,39.26950138773709],[-76.6313858893151,39.26950344434255],[-76.6313793359014,39.26950549463145],[-76.63137277444588,39.2695075313833],[-76.63136621185922,39.26950956272664],[-76.63135972720572,39.26951176095572],[-76.63135295653147,39.2695132493847],[-76.63134601766886,39.26951432203284],[-76.63133909719724,39.26951542356269],[-76.63133217445925,39.26951651517667],[-76.63132525285181,39.26951761219834],[-76.63131833577644,39.26951872905067],[-76.63131142667213,39.26951987295057],[-76.63130451868433,39.26952102496048],[-76.63129760959829,39.26952216525657],[-76.63129068683092,39.26952326227256],[-76.63128370520924,39.26952408887394],[-76.63127667743345,39.26952465410824],[-76.63126964857359,39.26952520492647],[-76.63126261861099,39.26952574493161],[-76.63125558865296,39.26952628403556],[-76.6312485587042,39.26952682133766],[-76.63124152761524,39.26952735503266],[-76.6312344976569,39.26952789413536],[-76.63122746879172,39.26952844585179],[-76.63122045555063,39.2695291129148],[-76.63121339967174,39.26952928802586],[-76.63120633279922,39.26952934870487],[-76.63119926809917,39.26952943731399],[-76.63119220554819,39.26952955835692],[-76.63118514301124,39.26952967669725],[-76.63117808032443,39.26952982386115],[-76.63117101669887,39.26952992868569],[-76.63116395509824,39.2695298668747],[-76.63115689533534,39.26952967445813],[-76.63114983573637,39.26952945051491],[-76.63114277476328,39.2695292680021],[-76.63113571371527,39.2695290999009],[-76.63112865384014,39.26952892910066],[-76.63112159286713,39.26952874658662],[-76.63111453308103,39.26952855867127],[-76.63110747333717,39.26952836264876],[-76.63110041482702,39.26952815221743],[-76.63109348799166,39.26952713331253],[-76.63108661226386,39.26952586865898],[-76.63107971408336,39.2695246877056],[-76.63107280411828,39.26952354454691],[-76.63106589177957,39.26952241218953],[-76.63105898062335,39.26952127533166],[-76.63105207654664,39.26952011417496],[-76.63104519019427,39.26951888731766],[-76.63103829793096,39.26951768296058],[-76.6310373380901,39.26951752321202],[-76.63103139031297,39.26951653440224],[-76.63102447798029,39.26951540114167],[-76.63101756563377,39.26951427058296],[-76.63101065683419,39.26951312652349],[-76.63100375160026,39.2695119653603],[-76.63099684871231,39.2695107987995],[-76.63098994699745,39.26950962953966],[-76.63098304530149,39.26950845667644],[-76.63097614476466,39.26950728381644],[-76.63096924307389,39.26950611005163],[-76.63096234253747,39.26950493719082],[-76.6309554408331,39.26950376612749],[-76.6309485379514,39.26950259866305],[-76.63094163506057,39.26950143299977],[-76.63093473100177,39.26950026913388],[-76.63092782694324,39.26949910526761],[-76.630920924039,39.26949794230534],[-76.63091401998086,39.26949677843827],[-76.63090711709118,39.26949561277296],[-76.63090021421111,39.26949444530567],[-76.63089331250411,39.26949327513942],[-76.63088641080665,39.26949210317124],[-76.63087950911417,39.26949093030193],[-76.63087260859011,39.26948975563433],[-76.63086570807094,39.26948858006559],[-76.63085880871078,39.26948740450008],[-76.63085244967719,39.26948861946086],[-76.63084627661577,39.26949128613801],[-76.63084009318551,39.26949394107228],[-76.63083390169467,39.2694965860725],[-76.63082770445615,39.26949922204665],[-76.63082150261474,39.26950185170068],[-76.6308152961751,39.26950447413376],[-76.63080908053013,39.2695070839269],[-76.63080285797865,39.26950968469034],[-76.63079663313259,39.26951228094242],[-76.63079040944014,39.26951487809856],[-76.63078419034971,39.26951748157418],[-76.63077758012031,39.26951931186435],[-76.63077073708409,39.26952067392524],[-76.63076389061341,39.26952202786808],[-76.63075704299767,39.26952337910463],[-76.63075019653584,39.26952473124516],[-76.63074335236321,39.26952608879708],[-76.63073650818097,39.26952744815011],[-76.63072966399376,39.26952880840349],[-76.63072281980634,39.26953016865643],[-76.63071597562329,39.26953152800826],[-76.63070913029055,39.26953288555453],[-76.63070228497163,39.26953424039818],[-76.63069543735354,39.26953559163111],[-76.63068858403493,39.26953692483043],[-76.63068172614638,39.26953824540428],[-76.63067487514489,39.26953957861007],[-76.63066789232816,39.26953929723039],[-76.63066087661308,39.26953865724242],[-76.63065386094034,39.26953800914732],[-76.63064684524895,39.26953736465476],[-76.63063983073062,39.2695367174632],[-76.63063281505356,39.26953607026756],[-76.6306258005448,39.26953542127362],[-76.63061878603155,39.26953477318006],[-76.63061177152304,39.26953412418531],[-76.63060475585118,39.26953347608726],[-76.63059774132893,39.2695328297939],[-76.63059072564326,39.26953218439727],[-76.63058371110714,39.26953154080534],[-76.63057669424417,39.26953089900718],[-76.63056967852137,39.26953026081528],[-76.6305626616352,39.26952962352008],[-76.6305556447351,39.26952898892667],[-76.63054862781635,39.26952835793586],[-76.63054160855195,39.26952773234183],[-76.63053459041365,39.26952711305627],[-76.63052756992033,39.26952650096903],[-76.63052053730904,39.26952599062968],[-76.63051349746821,39.26952553341226],[-76.6305064612587,39.2695250464806],[-76.63049942505869,39.26952455774703],[-76.63049238883063,39.26952407441753],[-76.63048535143447,39.26952359288545],[-76.63047831403372,39.26952311225375],[-76.63047127663307,39.26952263162158],[-76.63046424038194,39.26952215279414],[-76.63045720179447,39.26952167756198],[-76.63045016434252,39.26952120683684],[-76.63044312453077,39.26952074421072],[-76.63043608465814,39.26952029329392],[-76.63042904359864,39.26951984777752],[-76.63042200255332,39.26951939955847],[-76.63041496388665,39.26951893963653],[-76.63040792526236,39.26951847160746],[-76.63040088666159,39.26951799907419],[-76.6303938492385,39.26951752294115],[-76.63038681182022,39.26951704590693],[-76.63037977441135,39.26951656707078],[-76.63037273699793,39.26951608913496],[-76.63036569957524,39.26951561300024],[-76.63035866215728,39.26951513596432],[-76.63035162474414,39.26951465802728],[-76.63034458735926,39.26951417468525],[-76.63033755232024,39.26951368594564],[-76.63033058948461,39.26951290648583],[-76.63032390061339,39.26951114515352],[-76.63031714956988,39.26950952864828],[-76.63031039499867,39.26950792203991],[-76.63030363808664,39.26950631992766],[-76.63029688002078,39.26950471691056],[-76.63029012545982,39.26950310849957],[-76.63028337559076,39.26950148929377],[-76.63027663276873,39.2694998520945],[-76.63026990285354,39.26949818430942],[-76.6302631811724,39.26949649313003],[-76.6302564630008,39.2694947956559],[-76.63024974014272,39.26949310807507],[-76.63024300671013,39.26949144838429],[-76.63023626153952,39.26948981748058],[-76.63022951050473,39.26948820006956],[-76.63022275594217,39.26948659255542],[-76.63021599903416,39.26948499043809],[-76.63020924095353,39.26948339101897],[-76.63020248286857,39.26948179250025],[-76.63019572596615,39.26948018948099],[-76.630188972578,39.2694785792663],[-76.6301822227136,39.26947696005465],[-76.63017547755516,39.26947532734602],[-76.63016874059791,39.26947367754824],[-76.63016200951951,39.26947201155485],[-76.63015528431062,39.26947033116728],[-76.63014856379834,39.2694686390842],[-76.63014184797325,39.26946693710708],[-76.63013513450369,39.26946522793087],[-76.63012842338027,39.26946351335703],[-76.63012171343469,39.26946179518355],[-76.6301150034942,39.26946007610883],[-76.63010829470811,39.26945835793823],[-76.630101583586,39.26945664336286],[-76.63009487129595,39.26945493058501],[-76.63008816133798,39.26945321511179],[-76.63008145139435,39.26945149693595],[-76.63007474262399,39.26944977606114],[-76.6300680350128,39.26944805518959],[-76.63006132741127,39.26944633251614],[-76.63005461981012,39.26944460984227],[-76.63004791220925,39.2694428871681],[-76.63004120460401,39.26944116539426],[-76.6300344958309,39.26943944541785],[-76.63002778705348,39.26943772634185],[-76.63002107711277,39.26943600816259],[-76.63001436716776,39.26943429088362],[-76.63000765721837,39.26943257450507],[-76.630000947274,39.26943085722535],[-76.62999423732522,39.26942914084603],[-76.6299875273768,39.26942742446631],[-76.62998082101318,39.26942568737992],[-76.62997379809079,39.26942576613849],[-76.62996674398711,39.26942604656976],[-76.62995968871523,39.26942632879842],[-76.62995263343856,39.26942661192744],[-76.62994557932531,39.2694268941589],[-76.62993852405322,39.26942717638634],[-76.62993146878577,39.26942745771257],[-76.62992441469119,39.26942773633977],[-76.62991735945181,39.26942801226065],[-76.62991030307238,39.26942828457446],[-76.62990324787049,39.2694285532885],[-76.62989619152383,39.26942881929622],[-76.62988913634531,39.26942908350564],[-76.62988208002203,39.26942934500877],[-76.6298750236987,39.26942960651144],[-76.62986796737998,39.26942986711295],[-76.62986091106124,39.26943012771402],[-76.62984751818173,39.26943062506132],[-76.62984399000354,39.26943075896429],[-76.62984045891268,39.26943078476619],[-76.62983692671003,39.26943080155686],[-76.6298333945403,39.26943081204215],[-76.62982986237053,39.26943082252735],[-76.62982633018197,39.26943083661543],[-76.62982279795581,39.26943085790939],[-76.62981926566856,39.26943089091303],[-76.62981573449785,39.26943093202694],[-76.6298122033036,39.26943097764449],[-76.62980867093182,39.2694310268613],[-76.62980513970935,39.26943107788317],[-76.62980160847285,39.26943113160718],[-76.62979807723158,39.26943118623182],[-76.62979454598566,39.2694312417571],[-76.6297910147397,39.26943129728227],[-76.62978748233962,39.26943135190294],[-76.62978395110778,39.26943140472564],[-76.6297804198806,39.2694314566475],[-76.62977688864875,39.26943150947],[-76.6297733574122,39.26943156319316],[-76.62976982501681,39.26943161691257],[-76.6297662937802,39.26943167063547],[-76.62976276254362,39.26943172435831],[-76.62975923130699,39.26943177808101],[-76.62975570007512,39.26943183090291],[-76.62975216884318,39.26943188372466],[-76.62974863646191,39.26943193474117],[-76.62974510523937,39.2694319857612],[-76.62974157402627,39.26943203497962],[-76.62973804050957,39.26943208148839],[-76.62973450777315,39.26943197847257],[-76.62973268434716,39.26942964784955],[-76.62973092147081,39.26942726157001],[-76.62972916906625,39.26942486721654],[-76.62972740615253,39.26942248814292],[-76.6297256420755,39.26942010996634],[-76.62972387916201,39.26941773089266],[-76.6297221162487,39.26941535181896],[-76.62972035449901,39.26941297184815],[-76.62971859158594,39.2694105927744],[-76.62971682983648,39.26940821280351],[-76.62971506924124,39.269405833737],[-76.62971330749201,39.26940345376602],[-76.62971154690176,39.26940107379873],[-76.62970978631157,39.26939869383139],[-76.6297080257262,39.26939631296325],[-76.62970626513625,39.26939393299585],[-76.62970450687345,39.26939155123421],[-76.62970276493283,39.26938915060797],[-76.62970103347334,39.26938674010636],[-76.62969929967758,39.26938433320036],[-76.62969754839628,39.26938194605605],[-76.62969576681685,39.26937959124371],[-76.62969359943845,39.26937766307819],[-76.62969006770606,39.26937736820127],[-76.62968655925332,39.26937705358079],[-76.62968305079592,39.26937673986096],[-76.62967954117498,39.26937642703814],[-76.62967603271294,39.26937611421882],[-76.62967252308742,39.26937580229652],[-76.62966901345717,39.26937549127486],[-76.62966550499053,39.26937517935601],[-76.62966199536982,39.26937486653267],[-76.62965848574436,39.26937455460996],[-76.6296549772872,39.26937424088927],[-76.62965146883477,39.26937392626775],[-76.62964795922827,39.2693736107417],[-76.6296444507853,39.26937329431848],[-76.62964094234707,39.26937297699439],[-76.62963743391357,39.26937265876946],[-76.62963392664359,39.2693723396473],[-76.62963041821017,39.26937202142216],[-76.62962690978615,39.26937170139539],[-76.62962340135749,39.26937138226929],[-76.62961989409233,39.26937106224598],[-76.62961638567313,39.26937074131817],[-76.62961287841274,39.26937042039386],[-76.62960936999362,39.26937009946582],[-76.62960586273799,39.26936977764061],[-76.62960235432361,39.2693694558116],[-76.62959884706805,39.26936913398617],[-76.62959533981724,39.26936881125986],[-76.62959183140767,39.26936848852984],[-76.62958832537218,39.26936815499796],[-76.62958482055666,39.26936780975992],[-76.62958131693287,39.26936745822017],[-76.62957781215032,39.26936710667664],[-76.62957430733013,39.26936676233901],[-76.62957080128542,39.26936643060816],[-76.62956729281964,39.26936611868638],[-76.6295637807411,39.26936583287524],[-76.62956026502624,39.26936557767858],[-76.62955674685273,39.26936534949702],[-76.62955322508998,39.26936514292237],[-76.62954970207906,39.26936495345814],[-76.62954617668002,39.26936477749783],[-76.62954265007049,39.26936461144199],[-76.62953912342799,39.26936445169127],[-76.62953559562203,39.26936429283759],[-76.62953206898428,39.26936413218591],[-76.6295285435383,39.2693639652326],[-76.62952501813467,39.26936379017236],[-76.62952149392278,39.26936360881042],[-76.62951796972969,39.26936342384538],[-76.62951444438727,39.26936323707512],[-76.62951092020835,39.26936304940763],[-76.62950739602472,39.2693628626408],[-76.62950387183173,39.26936267767537],[-76.6295003464611,39.26936249630913],[-76.6294968210623,39.26936232034731],[-76.62949329679411,39.26936214979354],[-76.62948977016602,39.26936198733913],[-76.62948624464495,39.26936183479651],[-76.62948271791342,39.26936169215836],[-76.62947919111599,39.26936156213063],[-76.62947566180345,39.26936146992697],[-76.62947213106867,39.26936142816153],[-76.62946859900113,39.26936141972011],[-76.62946506568538,39.26936142838919],[-76.62946153236962,39.26936143705811],[-76.62945799914317,39.26936142861271],[-76.62945446720734,39.26936139494988],[-76.62945093529027,39.26936135768391],[-76.6294474033826,39.26936131861636],[-76.62944387147965,39.26936127864793],[-76.62944034073556,39.26936123868307],[-76.62943680884202,39.26936119691293],[-76.62943327694849,39.26936115514265],[-76.62942974505495,39.26936111337232],[-76.62942621316618,39.26936107070114],[-76.62942268127738,39.26936102802981],[-76.62941915054735,39.26936098536207],[-76.6294156186586,39.26936094269053],[-76.62941208676979,39.26936090001891],[-76.62940855487629,39.26936085824789],[-76.6294050229828,39.2693608164768],[-76.62940149224345,39.26936077561002],[-76.62939796034054,39.26936073564024],[-76.62939442843293,39.26936069657108],[-76.62939089651593,39.2693606593033],[-76.62938736459898,39.26936062203544],[-76.62938383267257,39.26936058656894],[-76.62938030072264,39.2693605556061],[-76.62937676868334,39.26936054175745],[-76.62937323655939,39.26936054412213],[-76.62936970437893,39.26936055729571],[-76.62936616128458,39.26936066321356],[-76.62936260962222,39.26936085647845],[-76.62935915612042,39.2693604492428],[-76.6293557409568,39.26935980162385],[-76.62935233655664,39.26935909008445],[-76.62934894051753,39.26935833083078],[-76.62934554927845,39.26935754006539],[-76.62934216044172,39.26935673309372],[-76.62933877276387,39.26935592612561],[-76.62933538384733,39.26935513446649],[-76.62933199015916,39.26935436891441],[-76.62932859761581,39.26935360606816],[-76.6293252050913,39.26935283961876],[-76.62932181489391,39.2693520713751],[-76.6293184235425,39.26935130222695],[-76.62931503335932,39.26935053128084],[-76.62931164317627,39.26934976033464],[-76.62930825298858,39.26934899028909],[-76.62930486279157,39.26934822204494],[-76.62930147026756,39.26934745559484],[-76.62929807773428,39.26934669094618],[-76.62929468401869,39.26934593079752],[-76.6292912891255,39.26934517424812],[-76.62928789189128,39.26934442219503],[-76.6292844934748,39.26934367464194],[-76.62928109388076,39.2693429306881],[-76.62927769311385,39.2693421894327],[-76.62927429117408,39.26934145087584],[-76.62927088806143,39.26934071501748],[-76.62926748493948,39.26933998096052],[-76.62926408064463,39.26933924960202],[-76.62926067518636,39.26933851914057],[-76.62925726971405,39.26933779138122],[-76.6292538630783,39.26933706451891],[-76.62925045643792,39.26933633855721],[-76.62924704979284,39.26933561349616],[-76.62924364314317,39.26933488933582],[-76.62924023533009,39.26933416607239],[-76.62923682867111,39.26933344371333],[-76.62923341967577,39.26933272494982],[-76.62923000833939,39.26933201068267],[-76.62922659698891,39.26933129911767],[-76.62922318562443,39.26933059025477],[-76.62921977193766,39.26932988228527],[-76.62921635940036,39.2693291761208],[-76.62921294570901,39.26932846905181],[-76.62920953317655,39.26932776198638],[-76.62920612065355,39.2693270531194],[-76.6292027092989,39.26932634245443],[-76.62919929801954,39.26932561737735],[-76.6291958879415,39.26932488419713],[-76.62919247781645,39.26932416002427],[-76.62918906757378,39.26932345837007],[-76.62918614045935,39.26932366350999],[-76.62918577254803,39.26932643220056],[-76.62918629805242,39.2693296522929],[-76.6291871145743,39.26933306516705],[-76.62918715810164,39.2693358234467],[-76.62918539002675,39.26933709695035],[-76.62918254988446,39.26933751224301],[-76.62917946734302,39.26933774481569],[-76.62917617588545,39.26933781819404],[-76.62917271131715,39.2693377550102],[-76.62916910828487,39.26933757789263],[-76.62916540260336,39.26933730767207],[-76.62916162891457,39.26933696787774],[-76.62915782186046,39.26933658203888],[-76.62915401726049,39.26933617008549],[-76.6291502497519,39.26933575644757],[-76.62914655282718,39.26933536284925],[-76.62914296460934,39.26933501193004],[-76.62913946093758,39.26933467028535],[-76.62913596571647,39.26933426381219],[-76.62913247541316,39.26933380330853],[-76.62912898996161,39.26933330138493],[-76.62912550697847,39.26933277064451],[-76.6291220275565,39.26933222370145],[-76.62911854931222,39.269331673159],[-76.62911507102567,39.26933113072316],[-76.62911159262141,39.26933061080596],[-76.62910811172543,39.26933012420911],[-76.62910462942581,39.26932968444751],[-76.62910114218033,39.26932930412063],[-76.62909765108644,39.26932899494196],[-76.6290941537607,39.26932876951466],[-76.62909065012299,39.26932864315145],[-76.62908714128982,39.26932862396273],[-76.62908362848577,39.26932869934173],[-76.62908011063686,39.26932885307117],[-76.6290765889725,39.2693290716436],[-76.62907306473625,39.26932933884908],[-76.6290695391622,39.2693296402793],[-76.62906601116694,39.26932996151855],[-76.62906248315284,39.26933028636075],[-76.62905895519513,39.26933060039381],[-76.62905542736931,39.2693308892058],[-76.62905190207293,39.26933113749121],[-76.62904837703557,39.26933133623529],[-76.62904485085346,39.26933153227333],[-76.62904132125614,39.26933171659056],[-76.62903779186597,39.26933186127468],[-76.62903426165605,39.26933194110099],[-76.62903073424404,39.26933192905805],[-76.62902719770285,39.26933188996323],[-76.6290236507041,39.2693318562398],[-76.62902009917849,39.26933180178441],[-76.62901655368704,39.26933170140895],[-76.62901302016049,39.26933152901001],[-76.62900950683755,39.26933126029291],[-76.6290060219666,39.26933086916154],[-76.62900257025822,39.26933034121859],[-76.6289991304158,39.26932976016785],[-76.62899569651822,39.26932915031136],[-76.62899226855129,39.2693285143513],[-76.62898884533745,39.26932785588705],[-76.62898542687186,39.2693271758193],[-76.62898201198175,39.26932647684671],[-76.62897859948936,39.26932576256859],[-76.62897519170289,39.26932503479374],[-76.62897178513188,39.26932429621346],[-76.62896837976213,39.26932354953],[-76.62896497673833,39.26932279744925],[-76.62896157373339,39.26932204176543],[-76.62895817073328,39.26932128518074],[-76.62895476772384,39.26932053039747],[-76.62895136353207,39.26931978011415],[-76.6289479581439,39.2693190370331],[-76.62894455039105,39.26931830295214],[-76.62894114141825,39.26931758057714],[-76.62893772773963,39.26931687169864],[-76.62893431520575,39.26931616552601],[-76.6289309026814,39.26931545755173],[-76.6289274901618,39.26931474867664],[-76.62892407765167,39.26931403799992],[-76.62892066630046,39.26931332732677],[-76.62891725495398,39.26931261575274],[-76.62891384360762,39.26931190417866],[-76.62891043226126,39.26931119260447],[-76.62890702091504,39.26931048103017],[-76.62890360841003,39.26930976945212],[-76.62890019706389,39.26930905787761],[-76.62889678570845,39.26930834810452],[-76.62889337319422,39.26930763832765],[-76.62888996067537,39.26930692945147],[-76.62888654814715,39.26930622237663],[-76.62888313445079,39.26930551709959],[-76.62887972074977,39.26930481272316],[-76.6288763058759,39.26930411104523],[-76.62887289099733,39.26930341026794],[-76.62886947494125,39.26930271308993],[-76.62886605771698,39.26930201770961],[-76.62886263931979,39.2693013250278],[-76.62885922090857,39.26930063504815],[-76.62885580131973,39.26929994866772],[-76.62885238055338,39.26929926588657],[-76.62884895744584,39.26929858760167],[-76.62884553431488,39.2692979138205],[-76.62884210884272,39.26929724453562],[-76.62883868219302,39.26929657884996],[-76.62883525436573,39.26929591676356],[-76.62883182536555,39.26929525737563],[-76.6288283963513,39.26929460068989],[-76.62882496616889,39.26929394580186],[-76.62882153481358,39.26929329361229],[-76.62881810345367,39.26929264232341],[-76.62881467208905,39.26929199193516],[-76.628811239561,39.26929134244392],[-76.62880780819185,39.26929069295622],[-76.62880437566392,39.26929004346477],[-76.62880094429484,39.26928939397687],[-76.62879751293531,39.26928874268737],[-76.62879408157578,39.26928809139779],[-76.62879065023046,39.26928743740585],[-76.6287858910508,39.26928652700255],[-76.62852329762126,39.26923352798713],[-76.62844288230828,39.26921863436655],[-76.628347739299,39.26920156647779],[-76.62831043806965,39.26919775889566],[-76.62824238799527,39.26918918890892],[-76.62818068816156,39.2691771079889],[-76.62807894850334,39.26915244086045],[-76.62791792868974,39.26911151619611],[-76.62781171610551,39.26907978797861],[-76.62775659490424,39.26906531183146],[-76.62771335050375,39.26905216320379],[-76.62743817801147,39.26902928219446],[-76.62734201366833,39.26901900562026],[-76.62726162763421,39.26899796896406],[-76.62722084006009,39.26898636645876],[-76.6271923163909,39.26897254555332],[-76.6271751792743,39.26896446893743],[-76.62715637043593,39.26895718779193],[-76.62713669028629,39.26894966337281],[-76.62711926128236,39.2689437683758],[-76.62710194309562,39.26893795569773],[-76.62708223726166,39.26893113108231],[-76.6270608875509,39.26892487503079],[-76.62703979348375,39.26891892694807],[-76.62702233848574,39.26891401188656],[-76.62700525879659,39.26890978709972],[-76.62698682101717,39.26890378979488],[-76.62696775345856,39.26889921819951],[-76.62695024466274,39.26889528028649],[-76.62692911192624,39.26889184159267],[-76.62690705414008,39.26889198860459],[-76.62688147398296,39.26889205055885],[-76.62685399903836,39.26889257488506],[-76.62682112702629,39.26889824974497],[-76.62679766871504,39.26890667572231],[-76.62677855635592,39.26891481014687],[-76.62676469106876,39.26892053458278],[-76.62674560856017,39.26892827996632],[-76.62672383414105,39.26893623837901],[-76.62670616793386,39.26894526193965],[-76.62669093579393,39.26895638481145],[-76.62667578423432,39.26897091282959],[-76.62666403396025,39.26898739550941],[-76.62665705351702,39.26900848094801],[-76.62664759863976,39.26902720842355],[-76.62663307018263,39.26904818429201],[-76.62662250340658,39.269070104145],[-76.62661660463993,39.26908888976337],[-76.62661576402792,39.26910439376199],[-76.62661629829098,39.26911759887534],[-76.62661682605173,39.26913071839531],[-76.62661753791595,39.26914386642426],[-76.62661789812618,39.26915799606986],[-76.62661842447285,39.26917072375234],[-76.62661884391203,39.26918901331925],[-76.62661903144144,39.26920358649282],[-76.62661918006975,39.26921498164351],[-76.62661904962141,39.26922964208099],[-76.6266178131515,39.26924241550231],[-76.62661756489483,39.26925942385962],[-76.62661811515262,39.26927377389561],[-76.62661848345152,39.26928834854435],[-76.62661912294591,39.26929895348285],[-76.62662400273501,39.269304025892],[-76.62663186417649,39.2693088807874],[-76.62664186735402,39.26931017005696],[-76.626651269442,39.26931227530939],[-76.62666665764614,39.2693212832369],[-76.62667729071563,39.26932971847325],[-76.62668809331866,39.26933963060144],[-76.62670959664811,39.26936582564188],[-76.6267162019255,39.26937640900736],[-76.62672158051465,39.26938667500731],[-76.6267324395192,39.26940393214837],[-76.62674885669772,39.26942066919666],[-76.62676413995867,39.26943289160776],[-76.62678144456251,39.26944549065489],[-76.62680549697072,39.26945523950328],[-76.6268281923975,39.26946564879947],[-76.62684808161961,39.26947839116395],[-76.62686285895303,39.2694900868084],[-76.62687662368474,39.26950416626103],[-76.6268871603725,39.26951617540702],[-76.62689735848821,39.26952667919885],[-76.62691008835164,39.26953878358514],[-76.62692215271251,39.26954918881471],[-76.62693516150878,39.26956047889198],[-76.62694952132553,39.26957092203633],[-76.62696254445392,39.26958036919088],[-76.62698163548963,39.26959792448626],[-76.62699010131642,39.26960531512854],[-76.62699658839344,39.2696123833171],[-76.62700381602612,39.26962098335612],[-76.62700968856126,39.2696305456118],[-76.62701656597025,39.26964272237603],[-76.62702911019686,39.26965443612813],[-76.62704123487647,39.26966682141785],[-76.62705229679686,39.26967768464174],[-76.62706624662188,39.26968941366245],[-76.62707591302096,39.26969768635646],[-76.62708899787071,39.26970950900959],[-76.62710155755038,39.26972225598003],[-76.62711353811218,39.26973450568967],[-76.62712620502234,39.26974713679914],[-76.6271378579276,39.26975911163333],[-76.62714820904846,39.26977028335501],[-76.62715958736452,39.26978357243194],[-76.62716844475932,39.26979584554888],[-76.62717921022168,39.26980866247892],[-76.62719201436231,39.26982076436688],[-76.62720684088086,39.26983106303629],[-76.62722180505394,39.26984074781904],[-76.62723563329823,39.26985158737804],[-76.62724950886722,39.26986334586574],[-76.62726426337672,39.26987610518879],[-76.62727982713679,39.26989055781387],[-76.62729353938244,39.26990340840563],[-76.62730943154946,39.26991799718353],[-76.62732339772393,39.2699312638301],[-76.62735338127851,39.26996043656217],[-76.62736677401091,39.26997080272258],[-76.62737692364476,39.26998041365916],[-76.62738111949935,39.26998797448031],[-76.627379302604,39.2699976528384],[-76.62737082409815,39.27000590036332],[-76.62737089025794,39.27001095566544],[-76.62741977404417,39.27005148123452],[-76.62743227714013,39.27005163259403],[-76.62744657623404,39.27005138160308],[-76.62746105464741,39.27005140861478],[-76.62748261802916,39.27005213277059],[-76.62750219208074,39.2700569752149],[-76.6275210652404,39.27007171303671],[-76.62754869558006,39.27010503258112],[-76.62756361620929,39.27012237097959],[-76.62757207597296,39.27013182340979],[-76.6275832305237,39.27014184736262],[-76.62759414523167,39.27014921509928],[-76.62760565635566,39.27015599472512],[-76.6276161149604,39.27016194681275],[-76.62762884410414,39.27017092095825],[-76.62763987562997,39.27017943753604],[-76.62764703242175,39.27018809225571],[-76.62765459893322,39.27019816968068],[-76.6276656489234,39.2702106776032],[-76.62767546085405,39.27022216103313],[-76.62769144130702,39.27023541240177],[-76.62770602760996,39.27024646778803],[-76.62772811860549,39.27025995020148],[-76.6277568629232,39.2702740211808],[-76.62777160798339,39.27028309267718],[-76.62778671646385,39.2702929147598],[-76.62780391179705,39.27030565292407],[-76.62781695984557,39.2703143731429],[-76.62783539827339,39.27032629554596],[-76.62788965831601,39.27036021282633],[-76.62796075712102,39.27040416840127],[-76.62801459178692,39.27044099734828],[-76.62805468599187,39.27046855261887],[-76.62807716538661,39.27048445745088],[-76.62814598552855,39.27053803757168],[-76.62816544225906,39.27055380310568],[-76.62818682071138,39.27057038811084],[-76.62820334050355,39.27058380325302],[-76.62822553373505,39.27060479466861],[-76.62824764890121,39.27062564801579],[-76.62827003806997,39.27064529970508],[-76.62828830877008,39.27066051289844],[-76.62831329368937,39.27068106815481],[-76.62834237359884,39.270701921907],[-76.62836754093318,39.27071686056068],[-76.62839273627043,39.27073419893438],[-76.62841650727584,39.27074978891584],[-76.62877553915258,39.27107809640781],[-76.62877814499463,39.27107995031094],[-76.62878074967334,39.27108180511102],[-76.62878335435684,39.27108365901035],[-76.62878595787694,39.27108551380671],[-76.62878856255601,39.27108736860665],[-76.62879116607166,39.27108922430359],[-76.62879377075105,39.27109107910346],[-76.62879637426698,39.27109293480031],[-76.62879897778777,39.27109478959638],[-76.62880158014516,39.2710966452894],[-76.6288041836615,39.27109850098609],[-76.62880678717326,39.27110035758346],[-76.628809389531,39.27110221327636],[-76.62881199304776,39.27110406897287],[-76.62881459540111,39.2711059255664],[-76.6288171977593,39.27110778125913],[-76.62881980011294,39.27110963785258],[-76.62882240363024,39.27111149354882],[-76.62882500598408,39.27111335014214],[-76.62882760833811,39.27111520673538],[-76.62883021069699,39.27111706242781],[-76.6288328130513,39.27111891902093],[-76.62883541540569,39.27112077561397],[-76.62883801776027,39.27112263220697],[-76.62884062011499,39.27112448879993],[-76.62884322247454,39.27112634449207],[-76.62884582482948,39.27112820108489],[-76.62884842718461,39.27113005767769],[-76.62885102954459,39.27113191336965],[-76.62885363189997,39.2711337699623],[-76.62885623541433,39.27113562655854],[-76.62885883777467,39.27113748225033],[-76.62886144013518,39.27113933794206],[-76.62886404364994,39.27114119453815],[-76.62886664716954,39.27114305023343],[-76.62886924953047,39.27114490592498],[-76.62887185305036,39.27114676162008],[-76.6288744565751,39.27114861641446],[-76.62887706009525,39.2711504721095],[-76.62887966362025,39.27115232690375],[-76.6288822682995,39.27115418260229],[-76.62888487182484,39.27115603739641],[-76.62888747650908,39.27115789219415],[-76.62889008119815,39.27115974609104],[-76.62889268588272,39.2711616008886],[-76.62889529057207,39.27116345478542],[-76.62889789642043,39.27116530868582],[-76.62890050111007,39.27116716258248],[-76.6289031069587,39.27116901648277],[-76.62890571397097,39.27117086948591],[-76.62890831982459,39.2711727224853],[-76.62891092683716,39.27117457548831],[-76.62891353269578,39.27117642758684],[-76.62891614087216,39.27117827969265],[-76.62891874788987,39.27118013179474],[-76.62892135606653,39.27118198390041],[-76.62892396424805,39.2711838351053],[-76.62892657242973,39.2711856863101],[-76.62892918177035,39.2711875375185],[-76.62893179111585,39.27118938782615],[-76.62893440046143,39.27119123813372],[-76.62893701097074,39.27119308754409],[-76.6289396214802,39.27119493695443],[-76.62894223198977,39.27119678636473],[-76.62894484366302,39.27119863487786],[-76.62894745533642,39.27120048339098],[-76.62895006701466,39.27120233100323],[-76.6289526798519,39.27120417861909],[-76.62895529268924,39.27120602623495],[-76.6289579066903,39.27120787295358],[-76.62896052185502,39.27120971877511],[-76.6289631370246,39.27121156369581],[-76.62896575219432,39.2712134086165],[-76.62896836968186,39.2712152535444],[-76.6289709860201,39.27121709666712],[-76.62897360467615,39.27121893979706],[-76.62897622333706,39.27122078202622],[-76.6289788419981,39.27122262425529],[-76.62898146182283,39.27122446558725],[-76.62898408280655,39.27122630692277],[-76.62898670379508,39.2712281473575],[-76.6289893247885,39.27122998689141],[-76.62899194694083,39.27123182642897],[-76.62899457025222,39.27123366597007],[-76.62899719356842,39.27123550461042],[-76.62899981688945,39.27123734234989],[-76.62900244136945,39.271239180093],[-76.62900506584963,39.27124101783607],[-76.62900769033462,39.27124285467833],[-76.6290103159786,39.27124469152415],[-76.62901294162273,39.27124652836994],[-76.62901556843052,39.27124836431856],[-76.62901819524316,39.2712501993664],[-76.62902082205125,39.27125203531494],[-76.62902344886415,39.27125387036264],[-76.62902607684074,39.27125570451318],[-76.62902870481274,39.27125753956442],[-76.62903133278965,39.27125937371488],[-76.62903396192547,39.27126120786892],[-76.62903658990736,39.27126304111849],[-76.62903921904345,39.2712648752724],[-76.62904184818444,39.2712667085255],[-76.62904447848439,39.27126854178223],[-76.62904710762565,39.27127037503521],[-76.62904973793059,39.27127220739105],[-76.62905236707205,39.27127404064389],[-76.62905499737725,39.27127587299962],[-76.62905762768258,39.2712777053553],[-76.62906025798807,39.27127953771092],[-76.62906288829367,39.27128137006645],[-76.62906551975824,39.27128320242559],[-76.62906815006413,39.27128503478101],[-76.62907078037014,39.27128686713636],[-76.629073410681,39.27128869859091],[-76.62907604214612,39.27129053094981],[-76.62907867245254,39.27129236330498],[-76.6290813027591,39.27129419566013],[-76.62908393422934,39.2712960271181],[-76.62908657151748,39.27129785409053],[-76.62908921346465,39.27129967657384],[-76.62909186122499,39.2713014954724],[-76.62909451480324,39.27130330988541],[-76.62909717187226,39.2713051216071],[-76.62909983244151,39.27130692883598],[-76.62910249765567,39.27130873427793],[-76.62910516636532,39.27131053612779],[-76.62910783740217,39.27131233618341],[-76.6291105107663,39.27131413444474],[-76.62911318646239,39.27131593001114],[-76.62911586448095,39.27131772468407],[-76.62911854366327,39.2713195184598],[-76.62912122285036,39.27132131133473],[-76.62912390319646,39.27132310421327],[-76.62912658470623,39.27132489619462],[-76.62912926505732,39.2713266881723],[-76.62913194540383,39.27132848105065],[-76.6291346245869,39.27133027482601],[-76.62913730261131,39.27133206859766],[-76.629139978304,39.27133386506416],[-76.62914265283327,39.27133566242772],[-76.62914532387677,39.27133746158176],[-76.62914799259332,39.27133926252985],[-76.62915065897344,39.27134106707361],[-76.62915332070423,39.27134287430493],[-76.62915597778566,39.27134468422373],[-76.62915863137187,39.27134649773455],[-76.62916128030402,39.27134831483363],[-76.62916392341853,39.27135013641815],[-76.62916656187429,39.2713519624917],[-76.62916919335356,39.27135379304698],[-76.62917181901054,39.27135562898842],[-76.62917443769105,39.27135746941156],[-76.62917704938569,39.27135931611795],[-76.62917965409915,39.27136116820684],[-76.6291822506679,39.27136302657529],[-76.62918483908727,39.27136489212405],[-76.62918741820302,39.27136676394874],[-76.6291899891694,39.27136864295377],[-76.62919254966864,39.2713705291318],[-76.62919510085489,39.27137242338727],[-76.62919764156936,39.27137432571647],[-76.629200171812,39.27137623611943],[-76.62920269157816,39.2713781554969],[-76.62920519970889,39.27138008384527],[-76.62920769852668,39.271382020271],[-76.62921018804093,39.27138396297268],[-76.62921266941046,39.27138591195398],[-76.62921514379406,39.27138786721849],[-76.62921761003301,39.27138982876256],[-76.62922006813196,39.27139179568547],[-76.62922252040855,39.27139376799456],[-76.62922496570397,39.27139574568616],[-76.6292274040135,39.27139772966093],[-76.62922983651018,39.2713997172204],[-76.6292322620257,39.27140171016238],[-76.62923468171883,39.27140370849052],[-76.62923709559908,39.27140571040326],[-76.62923950482057,39.27140771680513],[-76.62924190822449,39.27140972769233],[-76.62924430697427,39.27141174216789],[-76.62924670107002,39.27141376023177],[-76.6292490905117,39.27141578188397],[-76.62925147529934,39.27141780712445],[-76.62925385659176,39.27141983595693],[-76.62925623323477,39.271421867477],[-76.62925860754613,39.27142390169191],[-76.62926097720815,39.27142593859443],[-76.62926334454319,39.27142797729105],[-76.62926570954659,39.27143001868257],[-76.62926807105941,39.27143206276526],[-76.62927043025006,39.27143410774141],[-76.62927278826778,39.27143615541608],[-76.62927514280447,39.27143820398045],[-76.62927749617305,39.27144025434264],[-76.62927984838288,39.2714423047011],[-76.62928219942461,39.27144435685734],[-76.62928454930292,39.27144640991069],[-76.62928689917663,39.27144846386467],[-76.6292892478964,39.27145051691424],[-76.62929159660685,39.27145257176527],[-76.62929394416331,39.27145462571183],[-76.62929629287876,39.27145667966197],[-76.62929864275786,39.271458732715],[-76.6293009914783,39.27146078576433],[-76.62930334251655,39.27146283882089],[-76.62930569472317,39.27146489007961],[-76.62930804693464,39.27146694043749],[-76.62931040262752,39.27146898990554],[-76.62931275832992,39.27147103757208],[-76.62931511751839,39.27147308344805],[-76.62931747787525,39.27147512752611],[-76.62931984171819,39.27147716981357],[-76.6293222078931,39.27147920940606],[-76.62932457755407,39.27148124720799],[-76.62932694954704,39.27148328231495],[-76.62932932618955,39.27148531473424],[-76.62933170632292,39.27148734446217],[-76.62933464836236,39.27148984526171],[-76.62934127011668,39.27149627780099],[-76.62934563727426,39.27150060804654],[-76.62935002654459,39.27150492034638],[-76.62935449375445,39.27150917614392],[-76.62935909359082,39.27151333327572],[-76.62936388073109,39.27151735137996],[-76.62936887257676,39.27152122690849],[-76.6293740307684,39.27152498225929],[-76.62937931694167,39.27152864073121],[-76.62938468809705,39.27153222560839],[-76.62939010471608,39.27153575928516],[-76.62939564362134,39.27153917714904],[-76.62940151774255,39.27154231503189],[-76.62940745593951,39.27154538826164],[-76.62941315101618,39.2715486372737],[-76.6294182980894,39.27155230341177],[-76.62942277039333,39.27155647274932],[-76.62942679832038,39.27156096586047],[-76.62943058077646,39.27156564105211],[-76.62943431780752,39.27157036023775],[-76.62943821063728,39.27157498173153],[-76.6294424558351,39.27157936743589],[-76.62944697426082,39.27158358195621],[-76.62945158098525,39.27158775351824],[-76.62945627837303,39.2715918731218],[-76.62946106647131,39.27159593175939],[-76.62946594532231,39.2715999213242],[-76.6294709161414,39.27160383101094],[-76.62947597897092,39.27160765271289],[-76.62948114313332,39.27161137655096],[-76.62948649915513,39.27161497668857],[-76.62949205529874,39.27161842432736],[-76.62949778737413,39.27162169146722],[-76.62950367234554,39.27162475101265],[-76.6295096860228,39.27162757496347],[-76.62951598444403,39.27163001968969],[-76.62952262829238,39.2716320043139],[-76.62952945616355,39.2716335904796],[-76.62953636020936,39.2716347922588],[-76.62954381116698,39.27163512021986],[-76.62955143564209,39.27163506410135],[-76.62955854911192,39.27163544143971],[-76.62956446358675,39.27163706795906],[-76.6295686222123,39.27164094625542],[-76.62957110182117,39.27164656583787],[-76.62957216151031,39.27165246648414],[-76.62957185509273,39.27165788541651],[-76.62957033586201,39.27166342663062],[-76.6295683586933,39.27166900333166],[-76.62956669250936,39.27167450174629],[-76.62956610622376,39.27167980990265],[-76.62956733746131,39.27168481573023],[-76.6295704431612,39.27168948968335],[-76.62957477611268,39.27169393961383],[-76.62957966122194,39.27169828679691],[-76.62958442339986,39.27170265160742],[-76.62958863237503,39.27170709754327],[-76.6295928833138,39.27171149677156],[-76.6295970726883,39.27171592372923],[-76.62960098674384,39.27172047862776],[-76.62960470468386,39.27172530673995],[-76.62960740634433,39.2717303478304],[-76.6296067715307,39.27173562881089],[-76.62960412520893,39.27174085480627],[-76.62960111031408,39.27174586886036],[-76.6295987819723,39.27175100848434],[-76.62959740532713,39.2717565411407],[-76.6295977465621,39.27176199003923],[-76.62959988212184,39.27176714103922],[-76.62960251605308,39.27177228100016],[-76.6296056082945,39.27177731431473],[-76.62960912225678,39.27178214628722],[-76.6296130317613,39.27178668585788],[-76.6296174179228,39.27179093418321],[-76.62962217595118,39.271794985513],[-76.62962713848313,39.27179893299878],[-76.62963213815998,39.27180286889159],[-76.6296370029829,39.27180688632848],[-76.62964158301834,39.27181106950844],[-76.62964606652646,39.27181531813968],[-76.62965054418449,39.27181957756143],[-76.62965499739907,39.27182385762347],[-76.62965940643217,39.27182816546978],[-76.62966375154558,39.2718325082441],[-76.62966801184257,39.27183689308677],[-76.62967216873436,39.27184132894679],[-76.62967620132405,39.27184582296439],[-76.62968007243914,39.27185039213689],[-76.62968348110039,39.27185519585131],[-76.62968650167164,39.27186019651009],[-76.62968936192233,39.27186527322826],[-76.62969229076188,39.27187030872743],[-76.62969551595971,39.27187518212263],[-76.62969926295364,39.27187977522374],[-76.62970346528955,39.27188416438609],[-76.62970793585181,39.27188845260764],[-76.62971265278217,39.27189260919342],[-76.6297175976941,39.27189660436022],[-76.62972275219639,39.27190040922557],[-76.62972809443059,39.27190399309454],[-76.6297336303697,39.27190732175693],[-76.62973944005425,39.27191038015202],[-76.62974547336695,39.27191322306839],[-76.62975166743358,39.27191590705593],[-76.62975795704821,39.27191849135959],[-76.62976427700502,39.27192103522412],[-76.62977056210268,39.27192359699372],[-76.62977679490676,39.27192618652181],[-76.62978311292318,39.27192865831807],[-76.62978948929621,39.2719310510307],[-76.62979587735686,39.27193342486376],[-76.62980222926797,39.27193584181921],[-76.62980849835586,39.27193836300193],[-76.6298146356198,39.27194105131091],[-76.62982064792371,39.27194392388239],[-76.629826615562,39.27194691701519],[-76.62983247700272,39.27195005213369],[-76.62983816488685,39.27195335694933],[-76.62984361419173,39.27195685557783],[-76.62984875639948,39.27196057572695],[-76.6298536065704,39.27196451834501],[-76.6298582425685,39.27196864134145],[-76.62986270747332,39.27197290611925],[-76.62986703857503,39.27197727316231],[-76.62987127663068,39.27198170476697],[-76.62987546125281,39.27198616052375],[-76.6298796331985,39.27199060272893],[-76.62988368901978,39.27199509050699],[-76.62988749495518,39.27199971801663],[-76.62989116376113,39.27200441895668],[-76.62989481167061,39.27200912703687],[-76.62989848270125,39.27201384599898],[-76.62990102090122,39.27201890458231],[-76.62990230215085,39.2720243258157],[-76.6299037830007,39.27202969453293],[-76.62990526268725,39.27203506414727],[-76.62990674005164,39.27204043465503],[-76.62990821625735,39.2720458051591],[-76.6299096924633,39.27205117566314],[-76.62991116866948,39.27205654616711],[-76.62991264487586,39.2720619166711],[-76.62991412108246,39.27206728717507],[-76.62991559961175,39.27207265678557],[-76.62991708045891,39.2720780264033],[-76.62991856362405,39.27208339602836],[-76.6299200491118,39.27208876475989],[-76.62992153808104,39.27209413260164],[-76.62992303053178,39.27209949955358],[-76.62992452762752,39.27210486471857],[-76.62992602935896,39.27211022989815],[-76.62992753689426,39.27211559329449],[-76.6299290502288,39.27212095580828],[-76.62993056936719,39.27212631653877],[-76.6299322821991,39.27213164635285],[-76.6299355433922,39.27213651174752],[-76.62993920988127,39.2721412144801],[-76.62994312956039,39.27214581081934],[-76.62994521466767,39.27214975462938],[-76.62993942530447,39.2721534601469],[-76.62993456969038,39.27215744604167],[-76.6299297383131,39.27216145092866],[-76.62992492540175,39.27216547028588],[-76.62992011940544,39.2721694968708],[-76.62991531572631,39.27217352346278],[-76.62991050279923,39.27217754552166],[-76.62990567602645,39.27218155582673],[-76.62990082501108,39.27218554803993],[-76.62989594167402,39.27218951583044],[-76.62989102370702,39.27219345738947],[-76.62988609188957,39.27219738809548],[-76.62988114852057,39.27220131155875],[-76.62987619592246,39.27220522688583],[-76.62987123524002,39.27220913678264],[-76.62986626763211,39.27221304125283],[-76.62986129425279,39.2722169412008],[-76.62985631625165,39.27222083843174],[-76.62985133710048,39.27222473385724],[-76.62984635563572,39.27222862837455],[-76.62984137301632,39.27223252198719],[-76.62983639270935,39.27223641650767],[-76.62983141470544,39.27224031373751],[-76.62982644132704,39.27224421278324],[-76.62982147256002,39.27224811634709],[-76.62981650956321,39.27225202443275],[-76.62981155580387,39.27225593885265],[-76.62980661128192,39.2722598596068],[-76.62980167598795,39.27226378849672],[-76.62979675455752,39.27226772553698],[-76.62979189198853,39.27227170870157],[-76.6297871737076,39.27227580131323],[-76.62978252816158,39.27227994639833],[-76.62977787225108,39.27228407883983],[-76.62977312518974,39.27228813442887],[-76.62976761796541,39.27228995732941],[-76.62976278034057,39.2722856058009],[-76.6297579478693,39.27228159928109],[-76.62975310376774,39.27227760083128],[-76.62974825037234,39.27227360685579],[-76.62974339115966,39.27226961736555],[-76.62973853078869,39.27226562787146],[-76.62973367273601,39.27226163838451],[-76.62972881818395,39.27225764440452],[-76.62972397292678,39.27225364594985],[-76.62971913930103,39.27224963942471],[-76.6297143219516,39.27224562304233],[-76.62970952204664,39.27224159500479],[-76.62970474539452,39.27223755262815],[-76.6296999943225,39.27223349411818],[-76.62969527231643,39.27222941768436],[-76.62969064449797,39.27222528029541],[-76.62968657132576,39.27222078615092],[-76.62968269929446,39.27221616653352],[-76.62967847023945,39.27221178629426],[-76.62967348061308,39.27220791709228],[-76.62966817001451,39.27220426306131],[-76.6296632176701,39.27220035614432],[-76.62965876898689,39.27219609141036],[-76.6296544993981,39.27219170653863],[-76.62965026462727,39.27218731186807],[-76.62964608798309,39.27218288225086],[-76.62964189622731,39.2721784615935],[-76.62963762542063,39.27217408842716],[-76.62963332091365,39.27216973316968],[-76.62962898967353,39.27216539314077],[-76.62962460727509,39.2721610853778],[-76.62962015277888,39.27215682512784],[-76.62961563902167,39.27215259531676],[-76.62961106019044,39.27214839952935],[-76.62960630568604,39.27214433469932],[-76.62960127535796,39.2721404941902],[-76.62959603438412,39.27213682416174],[-76.62959067121379,39.27213325283169],[-76.62958523706226,39.2721297371249],[-76.62957978313554,39.27212623576773],[-76.62957436179829,39.27212270749015],[-76.62956902893906,39.27211910202568],[-76.6295638475592,39.2721153385042],[-76.62955871045612,39.2721115291832],[-76.62955348239868,39.27210782766681],[-76.62954802700592,39.27210438575393],[-76.6295420097302,39.27210157710719],[-76.6295353909257,39.27209944844127],[-76.6295290144615,39.27209707192843],[-76.62952352140421,39.27209374159038],[-76.629518528318,39.27208987237066],[-76.62951377760984,39.27208574809831],[-76.62950905244405,39.27208161489865],[-76.62950425839371,39.27207757966482],[-76.62949952482072,39.2720735031864],[-76.6294948098605,39.27206941325507],[-76.62949006349413,39.27206534574354],[-76.62948524849254,39.27206132845809],[-76.62948040673906,39.27205733000407],[-76.6294755510282,39.27205334141424],[-76.62947067671027,39.2720493653762],[-76.62946578144422,39.27204540638636],[-76.62946086174398,39.27204146623529],[-76.62945591296001,39.27203754761057],[-76.62945088621822,39.27203368909089],[-76.62944578734114,39.27202988529],[-76.62944067101127,39.27202609494529],[-76.6294355977147,39.2720222750109],[-76.62943062098927,39.27201838151836],[-76.62942582808303,39.27201435078864],[-76.62942121665937,39.2720101864175],[-76.62941670407282,39.27200595840374],[-76.6294122856456,39.27200167483958],[-76.62940795094333,39.27199733659278],[-76.62940361391917,39.27199299923928],[-76.62939918734864,39.27198872195425],[-76.62939463754508,39.27198451994433],[-76.62939008780316,39.27198030622455],[-76.62938551483298,39.27197610233964],[-76.62938088369022,39.27197194240847],[-76.62937615828565,39.27196785784378],[-76.62937130367968,39.2719638818637],[-76.62936626980174,39.27196006024908],[-76.62936089374894,39.27195651949365],[-76.62935525697985,39.27195319499931],[-76.6293495119486,39.27194996384254],[-76.62934380994605,39.27194670399681],[-76.62933812999039,39.27194343881577],[-76.62933240342237,39.27194022302942],[-76.62932668268681,39.27193700005503],[-76.62932102253673,39.27193371511891],[-76.62931543229006,39.27193035924267],[-76.62930987817069,39.27192696474743],[-76.62930435433256,39.27192354152297],[-76.62929885029902,39.27192009854396],[-76.6292933590698,39.27191664479592],[-76.62928787949556,39.27191317847371],[-76.62928241156686,39.27190970137888],[-76.62927695411537,39.27190621530916],[-76.62927150599175,39.27190271845947],[-76.62926606717708,39.27189921443284],[-76.62926064000803,39.27189569963346],[-76.62925524661088,39.27189215341374],[-76.62924987534537,39.27188858564526],[-76.62924450290748,39.27188502057513],[-76.62923910602127,39.2718814770459],[-76.62923367769602,39.27187796224165],[-76.62922824354406,39.27187445372409],[-76.6292228280284,39.2718709272498],[-76.6292174590839,39.2718673594872],[-76.62921209832716,39.27186377733789],[-76.62920672828605,39.27186019786132],[-76.62920141295623,39.27185657171753],[-76.6291962209547,39.27185285228334],[-76.6291912151136,39.27184899111598],[-76.62918643149845,39.27184496130629],[-76.62918180845487,39.27184080769796],[-76.62917727150574,39.27183658950621],[-76.62917274269728,39.27183236593542],[-76.62916816733768,39.27182818004955],[-76.62916360591777,39.27182398790217],[-76.62915905962463,39.27181978409244],[-76.62915451681336,39.27181557939275],[-76.6291499623764,39.27181138186229],[-76.62914538351934,39.27180720046828],[-76.62914067796224,39.27180309253669],[-76.62913584685903,39.27179905897186],[-76.62913105527029,39.27179500391332],[-76.62912646939645,39.27179083510707],[-76.62912225429794,39.27178645669266],[-76.62911835883465,39.27178189733312],[-76.62911464818922,39.27177723136611],[-76.62911107933822,39.27177248657946],[-76.62910761043126,39.27176768806252],[-76.6291042007721,39.27176286180887],[-76.62910080734193,39.27175803470556],[-76.629097448706,39.27175320230747],[-76.62909434214814,39.27174825450679],[-76.6290913447768,39.27174325840954],[-76.62908826489694,39.27173830618908],[-76.6290849084957,39.27173349001144],[-76.6290811210555,39.27172888415195],[-76.62907709085606,39.27172438471658],[-76.62907289802281,39.27171996043165],[-76.62906856459739,39.27171560686291],[-76.62906411609332,39.27171132048787],[-76.62905957455227,39.2717070968723],[-76.62905496432897,39.27170293249004],[-76.62905026446991,39.27169884529022],[-76.62904538434003,39.27169488182628],[-76.62904036464975,39.27169101340238],[-76.6290352542308,39.27168720954672],[-76.62903010424206,39.27168343799332],[-76.62902496467875,39.27167966737338],[-76.62901986122864,39.27167586083674],[-76.62901475201787,39.2716720479763],[-76.62900958226021,39.27166828987102],[-76.62900429717438,39.27166464669902],[-76.62899884198835,39.27166117683693],[-76.6289931864072,39.27165791171585],[-76.62898738055817,39.27165479474588],[-76.62898146286682,39.27165179091862],[-76.62897547177295,39.27164886252336],[-76.62896944570224,39.27164597455172],[-76.62896342308495,39.27164309109445],[-76.62895739691628,39.27164022203792],[-76.62895126462882,39.27163747965356],[-76.62894509035485,39.27163478847982],[-76.62893895686707,39.27163205419792],[-76.62893294576533,39.27162918518769],[-76.62892712121484,39.27162609968236],[-76.62892141110811,39.27162284699621],[-76.62891583857962,39.27161943530913],[-76.6289104616424,39.27161585129306],[-76.6289053359871,39.27161208251327],[-76.62890049878631,39.27160811197275],[-76.62889589431173,39.27160395931215],[-76.62889144575912,39.27159968554088],[-76.62888707865616,39.27159534897337],[-76.6288827185209,39.27159100972536],[-76.62887829321278,39.27158672341634],[-76.62887389346581,39.27158242457725],[-76.62886953791103,39.27157809615238],[-76.62886517188471,39.27157377580115],[-76.62886073956444,39.27156950117922],[-76.62885618396886,39.27156530993867],[-76.62885149929896,39.27156120296185],[-76.62884673557369,39.27155714437627],[-76.62884189276475,39.27155313958645],[-76.62883697316626,39.27154919310344],[-76.62883197791353,39.27154530943458],[-76.62882689301085,39.27154150565028],[-76.6288216044296,39.27153786966489],[-76.62881618549274,39.27153434135902],[-76.62881075725267,39.27153081932889],[-76.62880543960298,39.27152720216698],[-76.62880024649213,39.27152348181053],[-76.62879509296641,39.27151972644914],[-76.62878996853955,39.27151594685889],[-76.62878485924894,39.27151215380477],[-76.6287797522907,39.2715083580555],[-76.62877463717393,39.27150457128786],[-76.62876950111375,39.27150080066752],[-76.62876435341377,39.27149703991861],[-76.62875920222365,39.27149328186071],[-76.62875404870228,39.27148952649748],[-76.62874889402258,39.2714857711304],[-76.62874374166584,39.27148201486964],[-76.62868694705598,39.27145762547764],[-76.62866811677593,39.27144542814229],[-76.62866017000218,39.27143997771231],[-76.62865190321367,39.2714334525588],[-76.62863753270106,39.27142094774668],[-76.62862510429754,39.27140847159311],[-76.62861399603905,39.27139905770788],[-76.62860630329237,39.27139356394001],[-76.6285965636186,39.27138836365303],[-76.62858483214164,39.27138377408991],[-76.62857206321829,39.27137834983905],[-76.62855588302858,39.2713695243207],[-76.62854272262337,39.27136051828986],[-76.62853259244297,39.2713517722544],[-76.62852285549475,39.27134206904847],[-76.6285113745719,39.27133145956092],[-76.62849974682682,39.27132188999069],[-76.62848502400304,39.27131050459592],[-76.62847443673306,39.2713020777815],[-76.62846134732094,39.27129036246641],[-76.6284515224467,39.27128129851896],[-76.62844116768672,39.27127096191558],[-76.6284279715919,39.27125793384533],[-76.62841653886196,39.27124764247046],[-76.6284071320924,39.27123973372125],[-76.62839492348468,39.27122845175074],[-76.628384536099,39.27122014356054],[-76.62837563580618,39.27121665105796],[-76.62836270730193,39.27121537429935],[-76.62835098349886,39.27121154047818],[-76.62834401523729,39.27120668042122],[-76.62833921606374,39.27119280607177],[-76.62833275003227,39.27118188816075],[-76.62832245372472,39.271172345305],[-76.62830986418213,39.27116365992458],[-76.6282973081598,39.27115875245516],[-76.62828438180195,39.27115795309986],[-76.6282741831086,39.27115809376701],[-76.62826522353211,39.27115906255485],[-76.62825994687817,39.27115913322724],[-76.62825101574556,39.27115799071207],[-76.62824170997087,39.27115514186314],[-76.62821737893537,39.2711411390242],[-76.62820892442791,39.27113617336855],[-76.62819788573783,39.27112942502532],[-76.62819158459429,39.27112464183452],[-76.6281856355989,39.27111878064231],[-76.62818114616695,39.271110600999],[-76.6281723911866,39.2710961898735],[-76.62815881331422,39.27108615020079],[-76.62814964446555,39.27108194252433],[-76.62813853733716,39.27107830519931],[-76.62813125196266,39.27107735164188],[-76.62811780417559,39.27107543907368],[-76.62810709864071,39.2710712400395],[-76.62809719327363,39.27106472406953],[-76.62808938208235,39.2710575220424],[-76.62808267787032,39.2710482787848],[-76.6280740562114,39.27103673700881],[-76.62806494560346,39.27102738974767],[-76.62805160092229,39.27101531597371],[-76.62804273957656,39.27100572809526],[-76.62803528480315,39.27099796241381],[-76.62802907042933,39.27099210577747],[-76.62802220218104,39.27098696587996],[-76.62801253208455,39.2709780176827],[-76.6280083331955,39.27097322222426],[-76.62800603532179,39.27096877507754],[-76.62800210291506,39.27096023238163],[-76.62800022461451,39.27095665670229],[-76.6279976358571,39.27095132768623],[-76.62799337207542,39.27094255334461],[-76.62798617723145,39.27093052426376],[-76.62798031228017,39.27092322750822],[-76.62797266867945,39.27091722041764],[-76.62796289158071,39.27091321167003],[-76.62795266698814,39.27091100483469],[-76.62793729809013,39.27090639557607],[-76.62793373850907,39.27090410536488],[-76.62792676827982,39.27089896874154],[-76.62791849961422,39.27089216339123],[-76.6279160153657,39.27088966850972],[-76.62790591938116,39.270874428915],[-76.62790070418535,39.27086521468463],[-76.62789358892425,39.27085613495318],[-76.6278902808946,39.27085316726192],[-76.62787402443846,39.27084190844082],[-76.62786310069482,39.27083623774399],[-76.62785208692057,39.27083160354086],[-76.62784032387788,39.27082908195764],[-76.62782851036357,39.2708266827173],[-76.62781576484208,39.27082301314641],[-76.62781113288729,39.27082124918265],[-76.62777539173395,39.27078321462172],[-76.62774172286342,39.27075507881489],[-76.62771314317617,39.27073433098818],[-76.62768816730963,39.27071738049267],[-76.6276620933358,39.27069901501218],[-76.62763248279512,39.27068170932196],[-76.62760128413736,39.27066670814897],[-76.62757417984491,39.27065477264269],[-76.62755211498771,39.27064335753992],[-76.62752761445495,39.27062682286881],[-76.62750351445963,39.27060794297088],[-76.62748127456454,39.27058859606645],[-76.62745991695671,39.27056807105386],[-76.62744042344166,39.27054984980132],[-76.62742419164434,39.27053392143061],[-76.62740763811138,39.27051813435762],[-76.62738626612439,39.27049903159296],[-76.62737030069655,39.2704842426262],[-76.62735250062984,39.27046640054882],[-76.62733084996303,39.27044255526397],[-76.62731172475084,39.27042218052866],[-76.62729029352201,39.27040157057841],[-76.62726787856265,39.27038270318405],[-76.62724867060034,39.2703699252252],[-76.6272283411871,39.27035620690823],[-76.62720898377063,39.27034298349061],[-76.62719352895479,39.27033182079705],[-76.62717532593523,39.27031878479416],[-76.62715405424657,39.2703048770145],[-76.62713481604413,39.27029234845241],[-76.627111618397,39.2702766717536],[-76.6270859944976,39.27025673753789],[-76.62706642556792,39.27023812685115],[-76.62704976283385,39.27022219885989],[-76.6270227550928,39.27019811761809],[-76.62700053851022,39.2701805578109],[-76.62697284101917,39.27016424346309],[-76.62694525194412,39.27015331962957],[-76.62691278552514,39.27014301623548],[-76.62688385020307,39.2701309315287],[-76.62685875735654,39.27011889505377],[-76.62683242892787,39.27010536658396],[-76.62680257045693,39.27009143956189],[-76.62677510380841,39.27007884155522],[-76.62674947918092,39.27006722852769],[-76.62672169504563,39.27005242442702],[-76.62669463591783,39.27003814416707],[-76.62667124547299,39.27002698860625],[-76.62664453879383,39.2700148839013],[-76.62662146478664,39.27000305646506],[-76.62659834525596,39.26998798972902],[-76.62657684490048,39.26997000965855],[-76.62655772947913,39.2699531243908],[-76.62654008093106,39.2699360618299],[-76.62652172816942,39.26991981311976],[-76.62650436648293,39.26990263436609],[-76.62649072685754,39.26988151849401],[-76.62648179641955,39.26986354865632],[-76.62646870591912,39.26984885067628],[-76.62644791034953,39.26983524693727],[-76.62642256923947,39.26982879882418],[-76.62640324372333,39.26982629987931],[-76.62637856036245,39.26982632494423],[-76.62635776647883,39.269826490287],[-76.62633598393128,39.26982844950648],[-76.62631069437167,39.26983708033794],[-76.62629177452968,39.26984666822846],[-76.62627379000023,39.26985865062318],[-76.62625807367304,39.2698710041423],[-76.6262401560719,39.26988831837224],[-76.62621637717044,39.26991925062467],[-76.62620794577967,39.2699394288472],[-76.62619550797801,39.26996362343858],[-76.62618280929368,39.26998740374701],[-76.62615515509832,39.27004034555092],[-76.62614023488216,39.2700700656323],[-76.62612782414243,39.27009923252391],[-76.62612070823107,39.27012112457874],[-76.62611437798653,39.27013994212145],[-76.62610827944052,39.27015987194524],[-76.62610365245034,39.27017719513623],[-76.6260970826267,39.27019397438502],[-76.62609292013376,39.27022452948804],[-76.6260908413436,39.27023901077112],[-76.62608139192655,39.27025246423474],[-76.62606996375928,39.27026889022662],[-76.6260566218847,39.27028452195476],[-76.62604659657875,39.27029532353173],[-76.62603346048971,39.27030466947491],[-76.62601929624074,39.27031494443408],[-76.62600734632115,39.27032174318555],[-76.62598603843266,39.27033607225335],[-76.62596264812248,39.27036292612496],[-76.6259370954218,39.27039263123111],[-76.62590686123667,39.27043986831748],[-76.62587693748469,39.27050822391352],[-76.62585507907309,39.27055595696484],[-76.62582291069499,39.27062516022006],[-76.6258121604251,39.27065167781091],[-76.6258062774284,39.2706687258561],[-76.62580559982682,39.27067789348195],[-76.62580423134999,39.27068973597927],[-76.62580176781604,39.27070002927529],[-76.62579643147481,39.2707151595319],[-76.62579366251089,39.27072513658685],[-76.62579037837376,39.27073523540493],[-76.62578549576868,39.27074936725786],[-76.62578297166314,39.27075861997705],[-76.62578153405222,39.27076862829669],[-76.62578091598296,39.27077859238784],[-76.6257785611887,39.27078430654188],[-76.62577566434415,39.27078710859799],[-76.62576930842623,39.27079208849006],[-76.62576648217197,39.2707968868654],[-76.62576532042688,39.27080358755507],[-76.62576246828944,39.2708106566756],[-76.6257580648028,39.27081633998031],[-76.62575238749983,39.27082250744022],[-76.62574264638269,39.27083718948899],[-76.62573692336142,39.27085268331987],[-76.62573303734507,39.27086418000626],[-76.62572569266067,39.27088326902496],[-76.62571862692027,39.27089956566088],[-76.6257143008636,39.27091341644375],[-76.62571028398447,39.27093236473821],[-76.62570867075128,39.27095171793],[-76.62570826646814,39.27095652132019],[-76.62571021162157,39.27097156758661],[-76.62571162768576,39.27098036626474],[-76.62571384084086,39.27098656697557],[-76.62571782030275,39.27098965216594],[-76.62572623140754,39.27099534027668],[-76.62573861629755,39.27100387215337],[-76.62575767767228,39.27101893693146],[-76.62577365289253,39.27103270738223],[-76.62580509788391,39.27106116634733],[-76.62583712926434,39.27108699153457],[-76.62585889738163,39.27110586704639],[-76.62587600046672,39.2711200284046],[-76.62590227278133,39.27114357791156],[-76.62592254015485,39.27116158479753],[-76.6259533603809,39.27118877345502],[-76.62597712915152,39.27120823270604],[-76.62600553903434,39.27123013609354],[-76.6260280837408,39.27124526146077],[-76.62605611265603,39.27126513510085],[-76.62609149504856,39.27129261297994],[-76.62612742568055,39.27131853787373],[-76.62615221225873,39.27133707254093],[-76.62618164154844,39.2713588503203],[-76.62620969693656,39.27138119480409],[-76.62624894029284,39.27141184480447],[-76.62625266170119,39.27141464811645],[-76.62625519882378,39.27141655770421],[-76.62625773594179,39.27141846819267],[-76.62626027422823,39.27142037688329],[-76.62626281367369,39.27142228557754],[-76.62626535311925,39.2714241942717],[-76.62626789256973,39.27142610206505],[-76.62627043317913,39.27142800986208],[-76.62627297378872,39.27142991765903],[-76.62627551439843,39.2714318254559],[-76.62627805501303,39.27143373235198],[-76.62628059562303,39.27143564014876],[-76.62628313623316,39.2714375479455],[-76.62628567684817,39.27143945484141],[-76.62628821745852,39.27144136263801],[-76.62629075690549,39.27144327133163],[-76.62629329635733,39.27144517912444],[-76.62629583580453,39.27144708781791],[-76.62629837525189,39.27144899651139],[-76.62630091237696,39.27145090609815],[-76.62630345066098,39.27145281568854],[-76.62630598778158,39.27145472617595],[-76.62630852373874,39.27145663756034],[-76.62631105853714,39.27145854894102],[-76.62631359216738,39.27146046211944],[-76.62631612579774,39.27146237529782],[-76.62631865826468,39.27146428937317],[-76.62632118840929,39.27146620434188],[-76.6263237185493,39.27146812021126],[-76.62632624636231,39.27147003787474],[-76.62632877301655,39.27147195553442],[-76.62633129850263,39.27147387499189],[-76.62633382282522,39.27147579534638],[-76.62633634482086,39.27147771749494],[-76.62633886565295,39.27147964054048],[-76.62634137949894,39.27148156986912],[-76.6263438840364,39.27148350637419],[-76.62634637810169,39.27148545095272],[-76.62634886169005,39.27148740450559],[-76.62635133131548,39.2714893688231],[-76.62635378698275,39.27149134300456],[-76.62635622752826,39.27149332794706],[-76.62635865178844,39.27149532454763],[-76.6263610574408,39.27149733369964],[-76.62636344447594,39.2714993572046],[-76.62636580940772,39.27150139685299],[-76.62636815456344,39.27150345085064],[-76.62637048343377,39.27150551650634],[-76.62637280066835,39.27150759113263],[-76.62637510976275,39.27150967113757],[-76.62637741419813,39.27151175563144],[-76.62637971631122,39.27151384101866],[-76.62638202075163,39.27151592461171],[-76.62638433101009,39.27151800371939],[-76.62638665057267,39.27152007655128],[-76.62638898178078,39.271522138611],[-76.62639133043336,39.27152418901618],[-76.62639369887177,39.27152622327056],[-76.62639609057737,39.27152824048436],[-76.62639850904085,39.27153023796637],[-76.62640095776253,39.27153221122398],[-76.62640344836403,39.27153415398875],[-76.62640597852766,39.27153606625336],[-76.62640854244022,39.27153795160229],[-76.62641113543788,39.27153981542533],[-76.62641374938501,39.27154166220046],[-76.62641638077659,39.27154349732105],[-76.6264190214818,39.27154532436438],[-76.6264216656779,39.27154714871639],[-76.62642430870103,39.27154897576692],[-76.6264269424251,39.27155080819242],[-76.62642956334031,39.27155265228704],[-76.62643216215227,39.27155451252508],[-76.62643473651954,39.27155639340284],[-76.62643727714757,39.2715582993947],[-76.62643979333572,39.2715602251255],[-76.62644230021526,39.27156215803284],[-76.62644479778152,39.27156409901732],[-76.62644728603917,39.2715660471783],[-76.62644976614715,39.27156800251937],[-76.62645223926896,39.27156996414353],[-76.62645470425052,39.27157193114633],[-76.62645716109189,39.27157390352781],[-76.62645961326953,39.27157588129898],[-76.62646205847052,39.27157786355171],[-76.62646449901729,39.27157984939264],[-76.62646693374629,39.27158183971883],[-76.62646936382576,39.27158383273251],[-76.62647179041461,39.27158582843729],[-76.62647421235879,39.27158782592882],[-76.6264766319711,39.27158982611514],[-76.62647903877942,39.27159183706988],[-76.62648140485753,39.27159388032253],[-76.62648373950937,39.27159594959735],[-76.6264860520485,39.27159803681713],[-76.62648834946107,39.27160013569866],[-76.62649064221944,39.2716022381684],[-76.62649293848293,39.27160433524467],[-76.62649524870959,39.27160642155611],[-76.62649757989522,39.27160848901811],[-76.626499941358,39.27161052865265],[-76.62650234240188,39.27161253418393],[-76.62650479234024,39.27161449753476],[-76.62650729932305,39.27161641152494],[-76.62650987847691,39.27161826449256],[-76.62651257872942,39.27162000795196],[-76.62651538958927,39.27162165357971],[-76.62651828543866,39.27162322471425],[-76.62652123833713,39.27162474558727],[-76.6265242226621,39.27162624043801],[-76.62652721163205,39.27162773350192],[-76.62653017730666,39.27162924901076],[-76.62653309406333,39.27163081120376],[-76.62653593627932,39.27163244432003],[-76.62653870745976,39.27163414296613],[-76.62654146698068,39.27163585508657],[-76.62654421601523,39.27163757798276],[-76.62654695688587,39.27163931076135],[-76.62654968727482,39.27164105341495],[-76.62655240718216,39.27164280594357],[-76.62655511892555,39.27164456835453],[-76.62655781903321,39.27164633973613],[-76.62656050981809,39.27164812099643],[-76.62656319012606,39.27164991123098],[-76.62656586111595,39.27165171044348],[-76.62656852047014,39.27165351862657],[-76.626571170511,39.27165533488687],[-76.62657381007968,39.27165715922068],[-76.6265764391715,39.2716589925288],[-76.62657906826341,39.2716608258368],[-76.62658170664997,39.27166265467049],[-76.62658434968627,39.27166448081665],[-76.62658699620405,39.27166630607302],[-76.62658964504904,39.2716681295352],[-76.62659229504358,39.27166995480248],[-76.62659494271112,39.27167178186387],[-76.62659758805158,39.27167361071932],[-76.62660022872832,39.27167544496445],[-76.62660286242844,39.27167728369115],[-76.6266054879836,39.2716791286973],[-76.62660810306659,39.27168098177693],[-76.62661070651856,39.27168284292639],[-76.62661329717122,39.27168471394354],[-76.62661587154322,39.27168659571805],[-76.62661842962994,39.27168848915063],[-76.62662096910407,39.27169039603548],[-76.62662348764324,39.27169231726594],[-76.6266259840839,39.27169425373908],[-76.62662845609879,39.27169620724906],[-76.62663090252914,39.27169817779214],[-76.62663332220177,39.27170016806694],[-76.626635711645,39.27170217716163],[-76.62663808128367,39.27170420601016],[-76.62664043808033,39.27170625283303],[-76.62664278087618,39.2717083176267],[-76.62664510968071,39.27171039858958],[-76.62664741985367,39.27171249660771],[-76.62664971255876,39.27171461078401],[-76.62665198548301,39.27171674021043],[-76.62665423514984,39.2717188848758],[-76.62665646272285,39.27172104388313],[-76.62665866587962,39.27172321812586],[-76.62666084115307,39.27172540579129],[-76.626662989702,39.27172760688325],[-76.62666510805467,39.27172982048984],[-76.62666719504747,39.27173204750817],[-76.62666924953106,39.27173428613312],[-76.62667126918771,39.27173653635722],[-76.62667325285851,39.27173879817686],[-76.62667519938938,39.27174107068755],[-76.62667710646745,39.2717433529812],[-76.62667897292904,39.27174564595493],[-76.62668078717617,39.27174795137329],[-76.62668215319306,39.27175042921442],[-76.62668300478782,39.27175310539008],[-76.6266835393818,39.27175590126052],[-76.62668395207395,39.2717587390794],[-76.6266844379726,39.27176153929889],[-76.6266851933357,39.27176422417624],[-76.62668641442583,39.27176671506812],[-76.62668819411203,39.27176898164367],[-76.626690393015,39.27177108381105],[-76.62669289971926,39.27177305274287],[-76.62669560858947,39.27177492233233],[-76.62669841053274,39.27177672285873],[-76.62670119876891,39.2717784855094],[-76.6267039210314,39.27178023263731],[-76.62670666894034,39.27178195102221],[-76.62670944479453,39.27178364427444],[-76.62671224509833,39.27178531598601],[-76.62671506286567,39.27178697243999],[-76.62671789344202,39.27178861722465],[-76.62672073217313,39.27179025392834],[-76.62672357554919,39.27179188884516],[-76.62672641659829,39.27179352555606],[-76.62672925066593,39.27179516764925],[-76.6267320730836,39.27179682141536],[-76.62673488035111,39.27179849134696],[-76.6267376655011,39.27180018012425],[-76.62674042386497,39.27180189403771],[-76.62674316126541,39.27180362770134],[-76.62674589399742,39.27180536765545],[-76.62674862207528,39.2718071111977],[-76.62675134433053,39.27180886012597],[-76.62675406308095,39.27181061444766],[-76.62675677601356,39.27181237325462],[-76.62675948312365,39.27181413744756],[-76.62676218557,39.27181590703022],[-76.62676488219859,39.27181768109816],[-76.62676757184106,39.27181946144918],[-76.62677025565618,39.27182124808695],[-76.62677293365358,39.27182303921004],[-76.62677560466004,39.2718248375169],[-76.62677826868514,39.27182664120615],[-76.62678092456997,39.27182845027403],[-76.6267835746228,39.27183026652945],[-76.62678621653065,39.27183208906428],[-76.62678885029825,39.27183391697773],[-76.62679148404231,39.27183574939488],[-76.6267941514263,39.27183757561353],[-76.62679685014207,39.27183939382482],[-76.62679957786239,39.27184120582284],[-76.62680232646113,39.27184301428407],[-76.6268050924617,39.2718448191975],[-76.62680787237807,39.27184662235351],[-76.62681065808411,39.27184842642865],[-76.62681344726685,39.27185023051478],[-76.62681623411311,39.27185203819641],[-76.6268190139874,39.27185384945894],[-76.62682178109085,39.27185566518465],[-76.62682453076903,39.27185748896179],[-76.62682725839126,39.27185931987486],[-76.62682995930322,39.27186116151219],[-76.62683262771539,39.27186301295464],[-76.62683525897815,39.27186487688965],[-76.6268378484466,39.27186675510409],[-76.62684039148066,39.27186864848385],[-76.62684288228127,39.2718705579114],[-76.62684531620354,39.27187248517347],[-76.62684768744381,39.27187443205312],[-76.62684999252073,39.27187639944012],[-76.6268522267942,39.27187838822042],[-76.62685438329686,39.27188040107427],[-76.62685645854738,39.2718824388913],[-76.62685840842421,39.27188451774516],[-76.62685966511225,39.27188685201516],[-76.62686016827999,39.27188945502127],[-76.62686008287756,39.27189225252402],[-76.62685957384535,39.27189517208557],[-76.62685880613823,39.27189813856578],[-76.62685794586497,39.27190107772893],[-76.62685715565331,39.27190391622905],[-76.62685651217686,39.27190661827922],[-76.62685575644805,39.27190929024754],[-76.62685488258741,39.27191194832899],[-76.62685391954244,39.2719145971195],[-76.62685289512093,39.2719172376081],[-76.62685183826565,39.27191987529132],[-76.62685077793377,39.27192251296351],[-76.62684974077408,39.27192515161006],[-76.62684875688836,39.27192779673119],[-76.62684785407491,39.2719304511176],[-76.62684706129066,39.27193311756348],[-76.62684640517516,39.27193579885583],[-76.6268459077181,39.27193850046909],[-76.62684555847568,39.27194122507235],[-76.62684533777583,39.27194396719855],[-76.62684523058192,39.27194672139534],[-76.62684521953484,39.27194948310369],[-76.62684528612613,39.27195224595948],[-76.62684541416029,39.27195500450667],[-76.6268455862782,39.2719577541863],[-76.62684578162528,39.27196049403133],[-76.62684595017195,39.27196326171489],[-76.62684611510942,39.27196605460834],[-76.62684631708755,39.27196885572639],[-76.62684659792457,39.27197164628584],[-76.62684699943381,39.27197440840423],[-76.62684756227473,39.27197712329466],[-76.62684832825121,39.27197977487626],[-76.62684933918626,39.27198234346501],[-76.62685062523376,39.27198482465296],[-76.62685215256435,39.27198726066852],[-76.62685388873487,39.27198965050783],[-76.62685580594237,39.27199199228102],[-76.62685787524875,39.27199427959076],[-76.62686006537906,39.27199650963546],[-76.6268623497035,39.27199867782662],[-76.62686469695666,39.27200077956111],[-76.62686707934033,39.27200281204831],[-76.62686951419929,39.27200478254944],[-76.62687221225073,39.27200672866527],[-76.626875135693,39.27200856650465],[-76.62687820508621,39.27201019673105],[-76.62688134099527,39.27201151910729],[-76.62688446165303,39.2720124360911],[-76.6268876424766,39.27201271012019],[-76.62689115206713,39.27201194931466],[-76.62689453582088,39.27201043597105],[-76.62689728205672,39.27200850805207],[-76.6268995156214,39.27200644519122],[-76.626901757691,39.27200430759391],[-76.62690398504589,39.27200210329327],[-76.62690616867205,39.27199984030399],[-76.62690828419571,39.27199752575473],[-76.6269103049206,39.27199516766763],[-76.6269122041553,39.27199277316395],[-76.62691395519869,39.27199035116659],[-76.62691553135943,39.27198790879687],[-76.6269169082589,39.27198545408414],[-76.62691805804678,39.27198299414616],[-76.62691870083007,39.27198042360513],[-76.6269186804432,39.27197768881986],[-76.6269181413213,39.27197487041719],[-76.62691722559121,39.27197204721519],[-76.62691607768816,39.27196929984056],[-76.62691484205662,39.27196670711867],[-76.62691282131831,39.27196421909373],[-76.62690984998486,39.27196179200326],[-76.6269068963739,39.27195952080129],[-76.62690493343837,39.27195750045649],[-76.62690491214602,39.27195581956262],[-76.62690682500525,39.27195436009569],[-76.62691000469695,39.27195308570666],[-76.62691392477998,39.27195205597523],[-76.62691805881818,39.27195132958003],[-76.6269218815293,39.27195096610458],[-76.62692532116887,39.27195094550413],[-76.62692884184136,39.27195116206199],[-76.62693239963362,39.27195159221885],[-76.62693594366034,39.27195221599617],[-76.62693942304568,39.27195301161404],[-76.62694278458669,39.27195395908659],[-76.62694597969677,39.27195504204594],[-76.62694900206554,39.27195635865515],[-76.62695189344956,39.27195790184085],[-76.62695469128728,39.27195960416467],[-76.6269574353396,39.27196139729476],[-76.6269601642086,39.27196321289562],[-76.62696291766467,39.27196498083407],[-76.62696573307517,39.27196664718281],[-76.62696859972628,39.27196826595379],[-76.62697143843245,39.27196990985728],[-76.62697416771415,39.27197164709265],[-76.62697673051761,39.27197352882231],[-76.62697925489444,39.2719754455596],[-76.62698177576642,39.27197736769033],[-76.62698429081111,39.27197929610783],[-76.62698679653778,39.27198123350338],[-76.62698929411468,39.27198317807903],[-76.62699178004644,39.27198513342683],[-76.62699425201997,39.2719870986387],[-76.62699670887179,39.27198907461162],[-76.62699914943346,39.27199106314344],[-76.62700157022849,39.27199306422317],[-76.62700397124739,39.27199507965223],[-76.62700635017245,39.27199710942333],[-76.62700870468124,39.27199915442981],[-76.62701103360543,39.27200121646954],[-76.62701335437988,39.27200328568943],[-76.62701567282262,39.27200535760417],[-76.62701799124649,39.27200743312188],[-76.62702030617504,39.27200951223146],[-76.62702261644938,39.27201159492927],[-76.62702492206,39.2720136830168],[-76.62702722068923,39.27201577648677],[-76.62702951118298,39.2720178744346],[-76.62703179237288,39.27201997865824],[-76.6270340642589,39.27202208915759],[-76.62703632451871,39.27202420682616],[-76.62703857199807,39.27202633075938],[-76.62704080552875,39.2720284627552],[-76.62704302395186,39.27203060280983],[-76.62704522610376,39.27203275182037],[-76.62704740967155,39.27203490887879],[-76.62704957580458,39.27203707579019],[-76.62705172103104,39.27203925164279],[-76.62705384534148,39.27204143823811],[-76.62705594757699,39.27204363557249],[-76.62705802541986,39.27204584363849],[-76.62706007305694,39.27204806602082],[-76.627061954533,39.27205037254727],[-76.62706365357676,39.27205277217392],[-76.62706521667012,39.27205524072772],[-76.62706669377647,39.2720577531459],[-76.62706813369542,39.27206028526277],[-76.62706958523141,39.27206281201191],[-76.62707109603001,39.27206530832327],[-76.6270727148957,39.27206774913031],[-76.62707449178703,39.27207011027113],[-76.62707645574636,39.27207237832641],[-76.62707854054389,39.27207458641414],[-76.62708071828656,39.27207674975876],[-76.62708297154428,39.2720788773125],[-76.62708527709259,39.27208097800931],[-76.62708761517894,39.27208306169488],[-76.62708996836835,39.27208513822224],[-76.62709231343652,39.27208721652529],[-76.62709463178955,39.27208930645339],[-76.62709690251614,39.27209141784858],[-76.62709910587306,39.27209355875507],[-76.62710122210295,39.27209573991923],[-76.62710323029444,39.27209797118316],[-76.6271050862784,39.27210027762794],[-76.62710648529408,39.27210287537027],[-76.62710748901168,39.27210571686531],[-76.62710828471681,39.27210866759324],[-76.62710906318115,39.27211159124342],[-76.62711001053636,39.27211435239152],[-76.6271113163953,39.27211681472333],[-76.62711316804372,39.27211884371881],[-76.6271157004295,39.27212034072238],[-76.62711855761758,39.2721215568179],[-76.62712160812713,39.27212259247346],[-76.62712482632611,39.27212347372989],[-76.62712818424573,39.27212423022358],[-76.62713165509504,39.27212488799164],[-76.62713521090528,39.27212547667052],[-76.6271388260397,39.27212602320166],[-76.62714247253898,39.27212655542005],[-76.62714612243916,39.27212710206133],[-76.62714974894456,39.27212769006343],[-76.6271533252548,39.27212834726488],[-76.62715682456479,39.27212910240507],[-76.62716021776109,39.27212998241457],[-76.62716347919276,39.27213101693712],[-76.62716658555964,39.27213222931864],[-76.62716963221446,39.27213355770912],[-76.6271726668833,39.27213496172566],[-76.62717568030946,39.27213643863659],[-76.6271786655494,39.27213798661838],[-76.62718161103811,39.27213960113043],[-76.6271845086684,39.27214128124632],[-76.62718735035665,39.27214302153573],[-76.62719012683682,39.27214482106852],[-76.62719282885223,39.27214667711303],[-76.62719544715567,39.27214858513607],[-76.62719797480345,39.2721505433141],[-76.62720040022127,39.27215254890809],[-76.62720271647018,39.2721545991937],[-76.6272049131394,39.27215669053486],[-76.62720698673343,39.27215882652351],[-76.62720898674229,39.27216107217183],[-76.62721091778724,39.27216343019671],[-76.62721276951902,39.27216588525239],[-76.62721453275199,39.27216842109591],[-76.62721619599695,39.27217101877474],[-76.62721774890458,39.27217366294307],[-76.62721917997632,39.27217633644987],[-76.6272204800359,39.27217902125079],[-76.62722163872931,39.2721817029007],[-76.62722264456738,39.27218436244708],[-76.62722348835969,39.27218698454776],[-76.62722415745817,39.27218955024658],[-76.62722464382648,39.27219204510578],[-76.62722473672785,39.27219443512822],[-76.62722342722428,39.27219663604275],[-76.62722100015294,39.27219869469238],[-76.62721796044865,39.27220067483245],[-76.62721481536403,39.27220264022569],[-76.6272120698291,39.27220465552841],[-76.6272097790905,39.27220679297701],[-76.62720755029119,39.27220905222534],[-76.62720535587879,39.27221138364391],[-76.627203170633,39.27221373490838],[-76.62720096933347,39.27221605369434],[-76.62719872675034,39.2722182894789],[-76.6271964176632,39.27222038993765],[-76.62719401569294,39.27222230274259],[-76.62719149792744,39.27222397737813],[-76.62718883682392,39.27222536241327],[-76.6271858333199,39.27222618698689],[-76.62718238744215,39.27222628954478],[-76.62717868710467,39.27222585714159],[-76.62717492253928,39.27222507683939],[-76.62717128049164,39.27222413749072],[-76.62716792233563,39.27222320444773],[-76.62716467115428,39.27222220328623],[-76.62716145755336,39.27222110766358],[-76.62715827333575,39.27221993376768],[-76.6271551114489,39.27221870049218],[-76.62715196717694,39.27221742313501],[-76.6271488323132,39.27221611968546],[-76.62714570097346,39.27221480723942],[-76.62714256727357,39.27221350289265],[-76.62713942301627,39.27221222283289],[-76.62713626346674,39.27221098596122],[-76.62711993385342,39.27221074495703],[-76.6271059465074,39.27221157248759],[-76.62709319241652,39.27221566740117],[-76.62708116633777,39.27222170126814],[-76.62706982110788,39.27222850474691],[-76.62705961155523,39.27223641436626],[-76.62705004313382,39.27224493313579],[-76.62703943977172,39.27225125886002],[-76.6270247978148,39.27225007109408],[-76.62701447762296,39.2722430916258],[-76.6270057685063,39.27223408334748],[-76.62699831453563,39.27222461876422],[-76.6269922062389,39.27221467204158],[-76.62698655224051,39.27220450157041],[-76.6269802148474,39.27219470724939],[-76.6269722005007,39.27218580656449],[-76.62696276845428,39.27217764270509],[-76.62695255876282,39.27216992765771],[-76.62694218006395,39.27216239763008],[-76.62693162543285,39.27215504719548],[-76.62692024016383,39.27214852642748],[-76.62690802758969,39.27214308304671],[-76.62689544995585,39.27213808348242],[-76.62688270787842,39.27213328246324],[-76.62686999029496,39.27212845179531],[-76.62685733800235,39.27212354656999],[-76.62684461454761,39.27211873119363],[-76.62683205093778,39.27211371094948],[-76.62681988989179,39.27210816773828],[-76.62680820385106,39.27210198919482],[-76.62679682801486,39.27209544142178],[-76.6267856652366,39.27208870696565],[-76.62677507201617,39.2720814275545],[-76.6267652714081,39.27207349850786],[-76.62675582700841,39.27206526703485],[-76.62674591323302,39.27205748264996],[-76.62673454842016,39.272051044799],[-76.62672213894763,39.27204558636065],[-76.62671079149321,39.27203915396711],[-76.62670094619827,39.27203135087993],[-76.62669168429662,39.27202301639379],[-76.62668245277371,39.27201463516369],[-76.62667272542521,39.27200666220454],[-76.62666252967244,39.27199895167957],[-76.62665163133723,39.27199196043242],[-76.62663962482807,39.27198634653313],[-76.62662677862406,39.27198174152146],[-76.62661376696876,39.27197730622687],[-76.62660111252627,39.27197237754687],[-76.62658855193148,39.27196723298042],[-76.62657661956743,39.27196140492846],[-76.6265657336193,39.27195448487301],[-76.62655552359075,39.27194684815582],[-76.62654557427078,39.27193899878556],[-76.62653555041669,39.27193121943707],[-76.62652585346808,39.27192320062314],[-76.6265171678518,39.27191459052001],[-76.62650939478094,39.27190544285961],[-76.62650210647035,39.27189600849564],[-76.6264949831453,39.2718864935871],[-76.62648778650633,39.27187703699462],[-76.62648069328678,39.27186752758548],[-76.62647395542668,39.27185787698531],[-76.62646789688063,39.27184796552205],[-76.62646255251829,39.2718377734899],[-76.62645713611907,39.2718276172589],[-76.62645085102362,39.27181781496738],[-76.62644371947336,39.27180832434997],[-76.62643600599908,39.2717990867974],[-76.62642782749798,39.27179013060521],[-76.62641903536685,39.27178150664412],[-76.62640929433492,39.27177350299291],[-76.62639859487231,39.27176638894954],[-76.62638732732754,39.27175976041157],[-76.62637571042266,39.27175345503628],[-76.62636392783922,39.27174736261389],[-76.62635205819707,39.27174129783705],[-76.6263398936084,39.27173556630422],[-76.6263272251146,39.2717308969696],[-76.62631363913034,39.27172814514412],[-76.62629948303008,39.2717267048175],[-76.62628510535478,39.27172640865571],[-76.62627137418882,39.27172525882326],[-76.62625952765228,39.27171964989726],[-76.62624826613448,39.2717127610441],[-76.62623753700242,39.27170534423457],[-76.6262274464443,39.27169770066217],[-76.6262180298365,39.27168949445452],[-76.62620883432777,39.2716811151022],[-76.62619957813878,39.27167281572406],[-76.62619048126928,39.27166441146282],[-76.62618151812023,39.27165592205383],[-76.62617271659407,39.27164733047144],[-76.62616394530448,39.27163871916778],[-76.62615504728035,39.27163018762805],[-76.62614616347773,39.27162159668242],[-76.62613656978598,39.27161357185869],[-76.62612575629524,39.27160655470956],[-76.62611438299034,39.27159999336558],[-76.62610314358612,39.27159331264514],[-76.62609203340934,39.27158651973942],[-76.62608096866224,39.27157968283979],[-76.62607010534225,39.27157266732834],[-76.62605957617973,39.27156535562748],[-76.62604931829796,39.27155780428534],[-76.62603915124984,39.27155016946036],[-76.62602889805052,39.27154261002442],[-76.62601835387443,39.27153529016509],[-76.62600754320925,39.27152818113589],[-76.62599679185621,39.27152103266088],[-76.62598643721468,39.27151359269978],[-76.62597714989396,39.27150527248678],[-76.6259691034308,39.271495907735],[-76.62596034217266,39.27148738021867],[-76.62594906519624,39.27148145780716],[-76.62593575564361,39.27147772048083],[-76.62592187767015,39.27147453261037],[-76.62590862645179,39.2714705018175],[-76.62589581612274,39.27146571308307],[-76.62588470283221,39.27145907868201],[-76.62587426548227,39.27145172401995],[-76.62586410204922,39.27144406937421],[-76.62585402375062,39.27143631321238],[-76.62584384179465,39.27142865580356],[-76.62583329991529,39.27142134674374],[-76.62582226551031,39.27141447928994],[-76.6258112264056,39.27140762443085],[-76.62580015819415,39.27140079560006],[-76.62578900841457,39.27139405208101],[-76.62577780059041,39.27138732819271],[-76.62576640170148,39.27138079645813],[-76.62575416580532,39.27137542223993],[-76.6257412120536,39.27137102576475],[-76.62572802114369,39.27136699154043],[-76.62571489083763,39.27136267286618],[-76.62570136990931,39.27135990856586],[-76.62568721967625,39.27135978870453],[-76.62567309044611,39.27136095970406],[-76.6256591692337,39.27136333838936],[-76.62564647285788,39.27136792875112],[-76.62563513642323,39.27137460241095],[-76.62562483490143,39.27138214500336],[-76.62561511387074,39.27139014523218],[-76.62560600019843,39.27139856264877],[-76.62559762262072,39.27140737784689],[-76.62558984691627,39.27141655166592],[-76.62558223870502,39.27142582780474],[-76.62557444219918,39.27143498984645],[-76.62556660641418,39.27144412834246],[-76.62555880529266,39.27145328586457],[-76.62555103653598,39.27146245880229],[-76.62554324349858,39.27147162085288],[-76.62553537419411,39.27148074122461],[-76.62552731883649,39.27148976191847],[-76.62551893872093,39.27149861493485],[-76.62551062796754,39.27150749969848],[-76.62550285003725,39.2715166518861],[-76.6254959077395,39.27152622559328],[-76.62548905676047,39.27153584282795],[-76.62548124766859,39.2715449696933],[-76.62547229439825,39.27155350921394],[-76.62546471543241,39.27156272778921],[-76.6254581963831,39.27157246948528],[-76.62545192699133,39.27158233538186],[-76.62544543334751,39.27159209337196],[-76.62543892467963,39.27160184320682],[-76.62543233738434,39.27161155946229],[-76.62542554312444,39.27162118588158],[-76.62541852337723,39.27163071880258],[-76.62541129899249,39.27164016009324],[-76.62540385846724,39.27164949350303],[-76.62539608273968,39.27165866190407],[-76.62538804233316,39.27166769704792],[-76.62538652742822,39.27166928386671],[-76.62537958567616,39.27167655341292],[-76.62537065382438,39.27168520108569],[-76.62536425158684,39.27169476299594],[-76.62536090068703,39.27170541465592],[-76.6253581210113,39.27171630413827],[-76.62535441566831,39.2717269231406],[-76.62535065812845,39.27173755098391],[-76.62534642273432,39.27174803498195],[-76.62534122600941,39.27175819884401],[-76.62533493607292,39.27176799891259],[-76.6253280052308,39.27177758885961],[-76.62532094247771,39.27178714055326],[-76.6253142521827,39.27179682404555],[-76.62530845254499,39.271806823845],[-76.62530329946138,39.27181706080638],[-76.62529792311776,39.27182722139105],[-76.6252923429576,39.27183735430219],[-76.62528656614805,39.27184741902831],[-76.62527995132491,39.27185707303409],[-76.62527158661398,39.27186584771474],[-76.62526208452194,39.27187406389479],[-76.62525340750211,39.27188272678357],[-76.62524610310898,39.27189216780823],[-76.62524042263955,39.2719022013126],[-76.62523668727007,39.27191038184566],[-76.62523569422405,39.27191255582446],[-76.62523119481261,39.27192299573875],[-76.62522629400617,39.27193329655499],[-76.62522032663007,39.2719432354633],[-76.62521328103851,39.27195282323544],[-76.62520613949812,39.27196236566276],[-76.62519993173208,39.27197217949733],[-76.62519551626288,39.27198252239538],[-76.62519250436843,39.27199326971192],[-76.62518998422915,39.27200416181926],[-76.62518704402486,39.27201493908961],[-76.62518277885948,39.27202534732178],[-76.62517688210256,39.27203529726219],[-76.62517018688165,39.27204502756974],[-76.62516364898703,39.27205481062337],[-76.62515823921271,39.27206493055992],[-76.62515447216441,39.27207559439628],[-76.62515119572693,39.27208640031765],[-76.62514698606279,39.27209683034383],[-76.62514066093968,39.27210647986125],[-76.62513267114919,39.2721155700949],[-76.62512362586793,39.27212417505007],[-76.6251140591852,39.2721323234542],[-76.62510338081765,39.27213943603297],[-76.6250917144322,39.2721457951202],[-76.62508106233331,39.27215297984198],[-76.62507044776746,39.27216095645447],[-76.62506039878723,39.27216936093312],[-76.62505301335253,39.27217833779277],[-76.62505082788365,39.27218817436849],[-76.6250541612846,39.27219905002993],[-76.62505846311676,39.27221021882901],[-76.6250607227998,39.27222120816178],[-76.62506227401273,39.27223227269842],[-76.62506095546796,39.27224297047016],[-76.62505632079483,39.27225333968544],[-76.6250498120484,39.27226330207738],[-76.62504259451285,39.27227274156428],[-76.62503462062473,39.27228188678836],[-76.62502585081388,39.27229055026402],[-76.62501626050407,39.27229855806524],[-76.62500569979319,39.27230598717889],[-76.62499422837598,39.27231250631402],[-76.6249819901205,39.2723178646165],[-76.62496928764256,39.27232269178594],[-76.62495625596236,39.27232709544433],[-76.6249429994058,39.27233107052006],[-76.62492962115915,39.27233460833497],[-76.62491602711341,39.27233731585527],[-76.62490201505744,39.2723388618545],[-76.62488789887328,39.27234015620625],[-76.6248738443829,39.27234183718128],[-76.62485947498547,39.27234324061408],[-76.62484568832356,39.27234555477776],[-76.6248333110453,39.27235024425357],[-76.62482212970696,39.27235756778027],[-76.6248137385139,39.27236650718262],[-76.62480876291758,39.27237646995486],[-76.62480570298689,39.2723873017789],[-76.62480357558624,39.27239842212413],[-76.62480163931433,39.2724093395072],[-76.6248008708249,39.2724203263766],[-76.62480101313737,39.2724313278656],[-76.6248028503004,39.27244244105916],[-76.62480416093506,39.27245341024982],[-76.62480147195195,39.27246378296798],[-76.62479479270118,39.2724735439302],[-76.6247875449147,39.27248321480079],[-76.62478271642246,39.27249209352144],[-76.62477991298844,39.27249715316563],[-76.62477726697344,39.27250224844246],[-76.62477493695563,39.27250741498843],[-76.62477301435182,39.272512678317],[-76.62477130464953,39.27251800447847],[-76.62476977316875,39.27252337714825],[-76.62476841533596,39.27252878460189],[-76.62476722657773,39.27253421511471],[-76.62476620117594,39.27253965425637],[-76.62476532170011,39.27254511097873],[-76.62476423975126,39.27255116245938],[-76.62476315931146,39.27255758596044],[-76.62476257997494,39.27256370210036],[-76.62476300017256,39.27256883239456],[-76.6247649253264,39.2725722911747],[-76.62476998516523,39.27257269917292],[-76.6247775650655,39.27257057326532],[-76.62478548087736,39.27256760171203],[-76.62479207509786,39.27256515648622],[-76.6247984487101,39.27256279072333],[-76.62480480637893,39.27256037176405],[-76.6248111331009,39.27255788785052],[-76.6248174138633,39.27255532902643],[-76.6248236301719,39.27255268622504],[-76.62482976586926,39.27254994678403],[-76.62483580593312,39.27254710254855],[-76.62484173420117,39.27254414175705],[-76.62484757610974,39.27254085641427],[-76.62485338365823,39.27253705572429],[-76.62485913610296,39.27253293688823],[-76.6248648161673,39.27252869891979],[-76.6248704030792,39.27252454442468],[-76.62487587724922,39.27252067150837],[-76.62488122023261,39.27251728098246],[-76.62488641126214,39.27251457455184],[-76.62489143306158,39.27251275123018],[-76.62489642396393,39.2725134841787],[-76.62490104691229,39.27251849368129],[-76.62490408031735,39.27252517352868],[-76.62490432723435,39.27253085904055],[-76.62490238268896,39.2725356710182],[-76.62489925157833,39.27254045848861],[-76.62489538803315,39.27254524992501],[-76.6248912438714,39.27255007289251],[-76.62488727323844,39.27255495316226],[-76.62488392794286,39.27255992010097],[-76.62488132024689,39.27256500199103],[-76.62487904458207,39.27257019123164],[-76.62487697715976,39.27257544779389],[-76.62487499764886,39.2725807352629],[-76.62487298457344,39.27258601451774],[-76.62487082108842,39.27259124735317],[-76.62486856035869,39.27259646096188],[-76.62486636433918,39.27260170990708],[-76.62486409079459,39.27260693608549],[-76.62486159403197,39.27261207777978],[-76.62485873066659,39.27261707508149],[-76.62485539085402,39.27262188080005],[-76.62485169367135,39.2726265493616],[-76.62484774899143,39.27263112255222],[-76.62484365628139,39.27263563762094],[-76.62483951615735,39.27264013362204],[-76.62483542692756,39.27264464780079],[-76.62483148921788,39.27264921741009],[-76.62482780132693,39.27265388149671],[-76.62482446272178,39.2726586773098],[-76.62482160990075,39.27266365212515],[-76.62481922090265,39.27266879506347],[-76.62481714187487,39.272674053389],[-76.62481522013798,39.27267937166738],[-76.62481330068996,39.27268469535763],[-76.62481123083222,39.27268997262836],[-76.62480885788987,39.2726951471445],[-76.62480624546232,39.27270024523133],[-76.62480356128007,39.27270532507357],[-76.62480080651146,39.27271038487343],[-76.62479798347425,39.27271542463834],[-76.6247950968086,39.27272044348229],[-76.62479214769245,39.27272543780602],[-76.62478914075646,39.27273040852511],[-76.62478607832789,39.27273535384541],[-76.62478300749633,39.27274035408544],[-76.62478002093893,39.27274563473223],[-76.62477684355416,39.27275084180743],[-76.62477315771962,39.27275555363929],[-76.6247686492895,39.27275934856728],[-76.62476276561843,39.27276219960421],[-76.62475554578523,39.27276438701242],[-76.62474792546011,39.27276560662057],[-76.62474085194492,39.27276554618787],[-76.62473519204987,39.27276377431573],[-76.62473078388416,39.27275978605909],[-76.62472694888314,39.27275457459434],[-76.62472302597561,39.27274933132181],[-76.62471835178226,39.27274524583289],[-76.62471239255207,39.27274310098753],[-76.62470540645076,39.27274228959467],[-76.6246979479136,39.27274228107419],[-76.62469057360305,39.27274256196768],[-76.62468356908114,39.27274304221054],[-76.62467660779771,39.27274411169094],[-76.62466965166038,39.27274530369137],[-76.62466267661202,39.27274612721833],[-76.62465552693021,39.27274644485806],[-76.62464811013659,39.2727466508497],[-76.62464088639878,39.2727462899764],[-76.62463434163222,39.27274485936326],[-76.62462879171943,39.27274201412654],[-76.62462393694058,39.27273811091177],[-76.62461939439551,39.2727336763431],[-76.62461478467493,39.27272923435346],[-76.62460973184139,39.27272530978748],[-76.62460419179133,39.2727219151149],[-76.62459843887842,39.27271866928854],[-76.62459250420139,39.27271560843829],[-76.62458641655083,39.27271276688528],[-76.62458020817462,39.27271018256463],[-76.6245738020492,39.27270795701646],[-76.62456698140076,39.27270632104415],[-76.6245599607049,39.27270525911955],[-76.62455297409502,39.27270476388426],[-76.62454597128766,39.27270513963576],[-76.62453892087278,39.27270597102133],[-76.62453186110034,39.27270659970463],[-76.62452480171743,39.27270671675463],[-76.6245177294577,39.27270663919801],[-76.62451065841884,39.2727065499349],[-76.6245035980725,39.27270663004924],[-76.62449655486171,39.27270697594337],[-76.62448951219483,39.27270743803743],[-76.6244824770869,39.27270800464388],[-76.62447545764996,39.27270867578869],[-76.62446846430427,39.27270945330665],[-76.62446150501874,39.27271036424619],[-76.6244545853113,39.27271146086935],[-76.62444768821355,39.27271266475532],[-76.6244407944921,39.27271388756774],[-76.62443388490382,39.27271504277171],[-76.62442694470779,39.2727160690681],[-76.62441998724299,39.27271707369052],[-76.62441301390675,39.27271801160519],[-76.62440602051649,39.27271879722616],[-76.62439900286606,39.2727193494712],[-76.62439196310625,39.27271969987395],[-76.62438490767063,39.27271994663826],[-76.6243778411327,39.27272010148867],[-76.62437076805642,39.27272017795126],[-76.62436369415505,39.27272019135727],[-76.62435662515617,39.27272015433574],[-76.62434956449822,39.27272007410381],[-76.6243425042457,39.27271991730775],[-76.62433544554784,39.27271968575285],[-76.62432838832366,39.2727193947518],[-76.62432133365577,39.27271905872024],[-76.62431428261709,39.27271869387543],[-76.62430723284707,39.27271830831671],[-76.62430009126943,39.27271753333369],[-76.6242928818008,39.2727164482702],[-76.62428573183496,39.27271550661809],[-76.624278764154,39.27271515735082],[-76.62427210499735,39.2727158530559],[-76.62426564421055,39.27271760509089],[-76.62425929778315,39.27272008350737],[-76.62425315122786,39.2727231156322],[-76.62424729237055,39.27272652970045],[-76.62424180556526,39.27273015303522],[-76.62423683015736,39.27273393293743],[-76.62423254619476,39.2727382275865],[-76.62422869146909,39.2727428749068],[-76.62422496592048,39.27274763883883],[-76.62422106252626,39.27275228510241],[-76.62421670774678,39.27275660294414],[-76.62421198687062,39.27276068091187],[-76.62420704655372,39.27276461765801],[-76.62420199310154,39.27276847207239],[-76.62419689464865,39.27277228941123],[-76.62419141235824,39.27277593437645],[-76.62418566648994,39.27277945689484],[-76.62417995884454,39.27278298313826],[-76.62417458660656,39.27278663566098],[-76.62416985042267,39.27279053973048],[-76.62416604862675,39.27279481970626],[-76.62416343233451,39.27279976283498],[-76.62416195213953,39.27280528879061],[-76.62416146960834,39.27281105934362],[-76.62416184745685,39.27281673806961],[-76.6241629654357,39.27282205435455],[-76.62416485783811,39.27282731636954],[-76.62416744696297,39.27283253467502],[-76.62417062210783,39.2728376053288],[-76.6241742737101,39.27284242799546],[-76.62417829337069,39.27284690144248],[-76.62418272474963,39.27285109696992],[-76.624187572034,39.27285509926288],[-76.62419274827533,39.27285891434857],[-76.6241981711512,39.27286255007034],[-76.62420375602132,39.2728660142642],[-76.62420941825503,39.27286931296475],[-76.62421531967897,39.27287230617048],[-76.6242216264501,39.27287491154269],[-76.62422813013873,39.27287731577342],[-76.62423461884366,39.2728797046429],[-76.62424088064928,39.27288226663353],[-76.6242467036447,39.27288518932711],[-76.62425187551378,39.27288873686918],[-76.62425620684569,39.27289322482206],[-76.62425956861551,39.27289828886425],[-76.6242618379501,39.27290349713678],[-76.62426308177261,39.2729089048004],[-76.6242633898068,39.27291463824918],[-76.62426262073288,39.27292024754967],[-76.62426060771219,39.27292528719057],[-76.62425661458205,39.2729295890761],[-76.62425124705794,39.27293344428917],[-76.62424570519292,39.27293717644032],[-76.62424005303474,39.27294072718473],[-76.6242341295818,39.27294408069425],[-76.62423003123553,39.27294811741754],[-76.62422860577566,39.27295424976322],[-76.62423160292786,39.27295879470014],[-76.62423719910609,39.27296143833232],[-76.62424337133814,39.27296384690623],[-76.62424997235226,39.27296603796593],[-76.6242568548959,39.27296802545248],[-76.62426387286554,39.27296982511218],[-76.62427088015788,39.27297145269132],[-76.6242777306839,39.27297292123406],[-76.62428461137439,39.27297394579612],[-76.62429165584264,39.27297446194999],[-76.62429878076432,39.27297466669634],[-76.62430590746962,39.27297475344785],[-76.62431307220311,39.27297466196931],[-76.62432059300988,39.27297363933837],[-76.62432765273445,39.27297324396554],[-76.62433355038061,39.27297520217505],[-76.62433936248567,39.27297908954755],[-76.62434418903304,39.27298394749352],[-76.62434664945162,39.27298896361192],[-76.62434599051882,39.2729936896154],[-76.62434337125114,39.27299853905885],[-76.6243395405544,39.27300346209316],[-76.62433520690307,39.27300838441931],[-76.62433108341665,39.27301322995191],[-76.62432686124929,39.27301788961121],[-76.62432167700014,39.27302236874246],[-76.62431773825399,39.27302690500259],[-76.62431711706081,39.27303172570684],[-76.62431843679825,39.27303680483357],[-76.62432077106692,39.27304200790788],[-76.62432384231055,39.27304722595011],[-76.6243273729871,39.27305234727855],[-76.62433108786247,39.27305726202029],[-76.62433479481231,39.27306192272106],[-76.62433864358356,39.27306650100505],[-76.62434263521581,39.2730710193946],[-76.62434674996075,39.27307548683428],[-76.62435096809841,39.27307990686396],[-76.62435526756737,39.27308428752002],[-76.62435963095598,39.2730886341513],[-76.62436403620755,39.27309295389336],[-76.62436846243376,39.27309725208404],[-76.62437289105927,39.27310153496919],[-76.62437732228938,39.27310598270235],[-76.624381881082,39.27311085240091],[-76.62438669307164,39.27311539773314],[-76.62439187963861,39.27311880029273],[-76.62439758113408,39.27312016066502],[-76.6244039782738,39.27311861649581],[-76.6244108176378,39.27311562891483],[-76.62441775893952,39.27311308753763],[-76.62442454852214,39.27311271741721],[-76.6244320206576,39.27311344841125],[-76.62443991312082,39.2731146833753],[-76.62444750702576,39.27311649297238],[-76.62445408233208,39.27311894696138],[-76.62445892131224,39.27312211600941],[-76.62446150088142,39.27312608041359],[-76.62446240049886,39.2731308375232],[-76.62446207776556,39.27313619874006],[-76.62446093587283,39.27314196448311],[-76.62445937105416,39.27314793604953],[-76.62445778419274,39.27315391204924],[-76.62445657384013,39.27315969378704],[-76.62445577396129,39.2731652138142],[-76.62445456707977,39.27317077757812],[-76.62445327555275,39.27317635007903],[-76.62445232156246,39.2731818660103],[-76.62445212846936,39.27318725646604],[-76.62445310444929,39.27319247501102],[-76.62445508250661,39.27319798140162],[-76.62445782801004,39.27320365778819],[-76.62446128890983,39.27320904731688],[-76.62446541084796,39.27321369132491],[-76.62447013829295,39.27321713384801],[-76.62447560722755,39.27321886278613],[-76.62448216452627,39.27321880898861],[-76.62448944733897,39.27321765137206],[-76.62449704513497,39.27321610022744],[-76.62450454970181,39.27321486585326],[-76.62451186597549,39.27321461180867],[-76.62451873573559,39.2732163929638],[-76.62452217839186,39.27322085104225],[-76.62452523873607,39.27322572405139],[-76.62452800099824,39.27323086273369],[-76.62453046686636,39.27323616710974],[-76.62453263801879,39.27324153900159],[-76.6245345161434,39.27324687842989],[-76.62453582395004,39.27325224485941],[-76.62453643681465,39.27325775589181],[-76.62453673993599,39.27326332718592],[-76.62453711967176,39.27326887440437],[-76.62453796238451,39.27327431230886],[-76.6245396497871,39.27327955834866],[-76.62454203208003,39.27328466969366],[-76.62454479945781,39.27328971831542],[-76.62454789518829,39.27329469412405],[-76.62455126021172,39.27329958882397],[-76.62455483547329,39.27330439321867],[-76.62455856307686,39.2733090981154],[-76.62456239208451,39.27331369344296],[-76.62456660127906,39.2733180566878],[-76.6245712334912,39.27332219699443],[-76.62457610510882,39.27332621015763],[-76.62458103366434,39.27333019467817],[-76.62458583669975,39.27333424725531],[-76.6245906373322,39.27333831603834],[-76.62459554830613,39.27334233833416],[-76.62460010726936,39.27334652434443],[-76.62460378743101,39.27335121647735],[-76.62460607329514,39.27335725079589],[-76.62460811021414,39.27336280601297],[-76.62461149048187,39.27336525878838],[-76.62461757041284,39.27336146528667],[-76.62462173718812,39.27335654241718],[-76.62462438334151,39.27335142913016],[-76.62462673837767,39.27334614106513],[-76.6246295868664,39.27334111669951],[-76.62463355718077,39.27333652738515],[-76.62463850515714,39.27333224114974],[-76.62464422571163,39.27332912657492],[-76.62465087331996,39.27332755707062],[-76.62465839289757,39.27332699200226],[-76.62466562322004,39.27332765284977],[-76.62467154179444,39.27332982458993],[-76.62467649581161,39.27333359750826],[-76.62468091795779,39.27333823526171],[-76.62468514399734,39.2733429210296],[-76.62468945280249,39.27334729629823],[-76.62469376602925,39.27335171211518],[-76.62469788056954,39.27335622548035],[-76.62470159450278,39.27336088799287],[-76.62470470937059,39.2733657539652],[-76.62470730398115,39.27337082274845],[-76.62470953274116,39.27337604259173],[-76.62471145384202,39.27338136684127],[-76.624713120835,39.27338674972926],[-76.62471459074305,39.27339214639969],[-76.62471579063332,39.27339754220727],[-76.62471624938266,39.27340305274602],[-76.62471637179128,39.27340861265282],[-76.62471668449376,39.27341412812942],[-76.62471771297088,39.27341950447323],[-76.62471962990014,39.27342474133512],[-76.6247219281858,39.27342996320175],[-76.62472459072109,39.27343511777415],[-76.62472761780617,39.27344014830508],[-76.62473101322266,39.27344499715771],[-76.62473477611186,39.27344960758116],[-76.62473888078796,39.27345401552378],[-76.62474326199657,39.27345828833452],[-76.62474785583755,39.27346245643501],[-76.62475259957436,39.27346654935005],[-76.62475743161023,39.27347060021111],[-76.62476228689094,39.27347463853554],[-76.62476710267505,39.27347869474886],[-76.62477181852957,39.27348280108551],[-76.62477648910266,39.27348692349103],[-76.62478122478296,39.27349100647074],[-76.62478597441802,39.27349508048722],[-76.62479068568683,39.27349917780075],[-76.62479530627319,39.27350332977102],[-76.62479978618337,39.2735075668643],[-76.62480409285928,39.27351190969415],[-76.62480828905649,39.27351632513275],[-76.62481238874828,39.27352080061411],[-76.62481640124372,39.27352532896189],[-76.62482033239436,39.27352989938554],[-76.6248241915141,39.27353450380801],[-76.62482798559428,39.27353913504552],[-76.624831816659,39.27354378531703],[-76.62483569616853,39.27354847897986],[-76.62483937247006,39.27355324855841],[-76.62484259042449,39.2735581283675],[-76.62484509722003,39.27356315092791],[-76.62484592572473,39.27356865093694],[-76.62484539054675,39.27357452491103],[-76.62484517191723,39.27358014768225],[-76.62484695931504,39.27358489861626],[-76.62485204643836,39.27358848909686],[-76.62485904235163,39.27359096782602],[-76.62486598077031,39.27359226546949],[-76.62487317654225,39.27359179483412],[-76.62488047175047,39.27359092908045],[-76.62488716339936,39.27359155486536],[-76.62489324476336,39.27359406760284],[-76.62489891861583,39.27359759690186],[-76.62490408925224,39.27360161280751],[-76.62490866821317,39.27360574932723],[-76.62491272506169,39.27361022016429],[-76.62491650850748,39.27361489189919],[-76.6249202709654,39.27361958788758],[-76.62492425903687,39.27362413506951],[-76.6249283528478,39.27362862944394],[-76.62493249078717,39.27363310684461],[-76.62493680785161,39.27363746051167],[-76.6249414355754,39.27364158097205],[-76.6249463784132,39.2736455024689],[-76.62495153393601,39.27364930934686],[-76.62495691531527,39.27365292148007],[-76.62496253571763,39.27365625964327],[-76.62496841410409,39.27365924462969],[-76.62497456551142,39.27366188189198],[-76.62498091752725,39.273664277489],[-76.62498738265002,39.27366654193523],[-76.62499386989184,39.27366878753575],[-76.62500028942871,39.27367112569838],[-76.62500655610533,39.27367366154071],[-76.6250127491684,39.27367631154465],[-76.62501891064703,39.27367901729481],[-76.62502501727313,39.27368179583139],[-76.62503104808219,39.27368466690432],[-76.62503697865208,39.27368764664929],[-76.62504278570037,39.27369075480888],[-76.62504845635571,39.27369401476186],[-76.62505401274633,39.27369740586134],[-76.62505948171692,39.27370089216239],[-76.62506488893892,39.27370444041884],[-76.62507026356045,39.2737080173954],[-76.62507563823489,39.27371158446343],[-76.62508108382534,39.27371510942169],[-76.62508656308097,39.27371862367804],[-76.62509200276385,39.2737221702353],[-76.62509733309362,39.27372579571045],[-76.62510248430897,39.27372954311752],[-76.62510738431646,39.27373345816532],[-76.62511196101333,39.27373758836432],[-76.62511620042629,39.27374194628059],[-76.62512018745345,39.27374647543704],[-76.62512401281124,39.27375111487129],[-76.62512776605716,39.27375580361727],[-76.62513153675334,39.2737604798081],[-76.62513541562109,39.27376508158071],[-76.62514135868979,39.27377118160646],[-76.62514563975965,39.27377555226526],[-76.62515007899009,39.27377981894006],[-76.625154741502,39.27378393950283],[-76.62515953658865,39.27378797311437],[-76.62516438866095,39.27379196907551],[-76.62516922096137,39.2737959784848],[-76.62517396021872,39.2738000506504],[-76.6251785436391,39.27380422590635],[-76.62518301192146,39.2738084782604],[-76.62518740926511,39.27381277722755],[-76.62519177752777,39.27381709681932],[-76.62519615742255,39.27382140834116],[-76.62520058733071,39.27382568579342],[-76.62520511027355,39.27382990229046],[-76.62520973323774,39.27383405154916],[-76.62521438759217,39.27383818199182],[-76.62521906752828,39.27384229630215],[-76.62522377189181,39.27384639357575],[-76.62522850183697,39.27385047471699],[-76.62523325621441,39.27385453792074],[-76.62523803618296,39.27385858319067],[-76.62524283942012,39.27386261142013],[-76.62524766709427,39.27386662081132],[-76.62525251804183,39.27387061226131],[-76.62525739808565,39.27387458038403],[-76.62526231302978,39.27387852339652],[-76.62526725822435,39.27388244398623],[-76.62527222552387,39.27388634843248],[-76.62527721143746,39.27389023942646],[-76.62528220782913,39.27389412144602],[-76.62528721003481,39.27389799988082],[-76.62529221339986,39.27390187831914],[-76.62529720978841,39.27390576123879],[-76.62530219569996,39.27390965313242],[-76.62530716300331,39.27391355757718],[-76.62531210936645,39.27391747726788],[-76.62531705339812,39.27392139965323],[-76.62532199742553,39.27392532293914],[-76.62532693796732,39.27392924801522],[-76.62533187501403,39.27393317668298],[-76.62533680392049,39.2739371107292],[-76.6253417235184,39.27394105195157],[-76.6253466314805,39.27394500214428],[-76.6253515254889,39.27394896129989],[-76.62535640436579,39.27395293301772],[-76.62536126463442,39.27395691728668],[-76.62536608883556,39.2739609284633],[-76.62537085601876,39.27396498359526],[-76.62537558247989,39.27396906922311],[-76.62538028567346,39.27397317189105],[-76.62538498189048,39.27397727904039],[-76.62538968973975,39.27398137811976],[-76.62539442436277,39.27398545476525],[-76.62539920553202,39.27398949552837],[-76.62540404837475,39.27399348874758],[-76.62540897150927,39.27399742006992],[-76.62541399472698,39.27400127244404],[-76.62541912849115,39.27400503959797],[-76.62542434837002,39.27400873946895],[-76.62542962876356,39.27401239179226],[-76.62543494290799,39.27401601720005],[-76.62544026752094,39.27401963543487],[-76.62544557700716,39.27402326533114],[-76.62545084343915,39.27402692841806],[-76.62545604469831,39.27403064354126],[-76.62546115286194,39.27403443132918],[-76.62546619232378,39.27403828105053],[-76.625471197974,39.2740421693967],[-76.62547614890036,39.27404610620936],[-76.62548102072348,39.2740500995177],[-76.62548579253581,39.27405415826269],[-76.6254904399437,39.2740582931757],[-76.62549493973611,39.27406251048811],[-76.62549923842359,39.27406684425838],[-76.62550327320277,39.27407133662221],[-76.62550711963424,39.27407594368311],[-76.62551085793787,39.2740806170556],[-76.62551457181988,39.27408530656388],[-76.6255183426589,39.27408996382612],[-76.62552225299756,39.27409453956351],[-76.62552635622545,39.27409901863329],[-76.62553053150927,39.27410345919981],[-76.62553462898175,39.27410793104482],[-76.625538456471,39.27411261460915],[-76.62553703194939,39.27411704903147],[-76.62553207320246,39.27412096055171],[-76.62552712484693,39.274124879311],[-76.62552217648607,39.2741287989708],[-76.62551722812948,39.27413271772962],[-76.62551228092642,39.27413663739269],[-76.62550733372284,39.27414055705556],[-76.62550238651392,39.27414447761895],[-76.62549744046814,39.27414839728508],[-76.62549249325818,39.27415231784806],[-76.62548754720649,39.27415623841449],[-76.62548259999542,39.27416015897704],[-76.62547765394271,39.27416407954308],[-76.62547270673527,39.27416799920442],[-76.62546775952256,39.27417191976633],[-76.62546281231408,39.27417583942727],[-76.62545786510499,39.27417975908801],[-76.62545291789542,39.27418367874849],[-76.62544796952636,39.27418759840513],[-76.62544302116152,39.27419151716078],[-76.62543807164202,39.27419543501177],[-76.62543312211722,39.27419935376331],[-76.6254281714425,39.2742032707094],[-76.62542322076717,39.2742071876553],[-76.62541826893249,39.27421110459731],[-76.6254133171067,39.27421501973762],[-76.62540831418941,39.27421895363075],[-76.62540220313595,39.27421853870485],[-76.62539580202147,39.27421621143264],[-76.62538953760077,39.27421367561889],[-76.62538331173775,39.27421108047739],[-76.6253769982784,39.27420861386539],[-76.62537074438892,39.27420605916816],[-76.6253644545315,39.27420351246281],[-76.625358171723,39.27420094776428],[-76.62535205673197,39.27419820615025],[-76.62534627619738,39.27419511430492],[-76.62534108182817,39.27419141000817],[-76.6253361683118,39.27418741115666],[-76.625331061336,39.27418361706188],[-76.62532494757939,39.27418064215257],[-76.62531828323758,39.2741825151988],[-76.62531218388816,39.2741812013432],[-76.6253064722626,39.27417757015821],[-76.62530086264665,39.27417415368014],[-76.62529590333293,39.27417026907776],[-76.62529147217681,39.27416600333557],[-76.62528718063012,39.27416163535158],[-76.62528299141813,39.27415720103732],[-76.62527886842508,39.27415273630827],[-76.62527483720827,39.27414822953595],[-76.62527090595599,39.27414366633433],[-76.62526702932898,39.27413907358163],[-76.6252631596701,39.27413447814876],[-76.62525934231387,39.27412985405817],[-76.62525561096801,39.27412518250139],[-76.62525178546252,39.27412056559063],[-76.62524768562747,39.27411610543813],[-76.62524334636755,39.27411177603302],[-76.62523885251458,39.27410753350858],[-76.62523424006079,39.27410336536889],[-76.62522954499352,39.27409926001889],[-76.62522480105842,39.27409519144408],[-76.62522001758852,39.27409114796427],[-76.62521518526988,39.2740871376567],[-76.62521029942886,39.27408316771241],[-76.6252053530693,39.27407924621611],[-76.62520033919509,39.27407538125226],[-76.62519526366731,39.27407156022888],[-76.62519012998635,39.27406777865329],[-76.62518492299156,39.27406405449238],[-76.62517963097984,39.27406040932713],[-76.62517424109879,39.27405686293336],[-76.62516873234087,39.27405344316758],[-76.62516301737564,39.27405022811766],[-76.62515714630167,39.2740471675006],[-76.62515120182339,39.27404418141238],[-76.62514526781366,39.27404118815114],[-76.62513939672694,39.27403813023539],[-76.6251335501582,39.2740350381686],[-76.62512769658899,39.27403195508682],[-76.62512180451536,39.27402892142386],[-76.62511584358249,39.27402597941872],[-76.62510978110835,39.27402317310446],[-76.62510354125145,39.27402059952156],[-76.62509716136724,39.27401820744566],[-76.62509073945424,39.2740158737849],[-76.62508437119307,39.27401347544004],[-76.62507815458699,39.27401088841852],[-76.62507217131972,39.27400800669106],[-76.62506631996378,39.27400494433081],[-76.62506055382575,39.27400176514301],[-76.62505486934332,39.27399848533],[-76.62504925947277,39.27399512198394],[-76.62504372297431,39.27399169041372],[-76.62503825164532,39.2739882077078],[-76.62503285239146,39.27398468289584],[-76.62502794788271,39.27398073990716],[-76.62502335422498,39.2739765276815],[-76.62501847882271,39.27397255956399],[-76.62501306204496,39.27396906171807],[-76.62500744152028,39.27396574157254],[-76.62500171505674,39.27396251206571],[-76.62499597579838,39.27395929152535],[-76.62499031690825,39.27395599467641],[-76.62498478146989,39.27395258292358],[-76.62497925770653,39.27394915499399],[-76.62497375141749,39.27394571000544],[-76.62496827658072,39.27394223449109],[-76.62496284948728,39.27393871589227],[-76.62495748641872,39.27393514345181],[-76.62495220251192,39.27393150370657],[-76.62494703156977,39.27392775983321],[-76.62494198525734,39.2739238974568],[-76.62493701815424,39.27391995876818],[-76.62493208829795,39.27391598957229],[-76.62492715142696,39.27391203206371],[-76.62492216442932,39.27390813024223],[-76.62491708302927,39.27390432900459],[-76.62491186527846,39.27390067145349],[-76.62490644825432,39.27389722224298],[-76.624900502126,39.27389433341908],[-76.62489413175966,39.27389189812572],[-76.62488762033067,39.27388962091594],[-76.6248812277178,39.27388722878751],[-76.62487467074557,39.27388501718726],[-76.62486806476724,39.27388286848365],[-76.62486180600827,39.27388036688846],[-76.62485626037268,39.27387713254741],[-76.6248512891438,39.27387331814732],[-76.62484664997365,39.27386916882268],[-76.62484216231147,39.27386485874511],[-76.62483764560622,39.27386056208608],[-76.62483292046126,39.27385645392139],[-76.62482805458714,39.27385244078801],[-76.62482312484636,39.27384845177098],[-76.62481797493417,39.27384467823379],[-76.62481244855044,39.27384131063904],[-76.62480657131434,39.27383832564864],[-76.62480051346117,39.27383552743985],[-76.62479432275755,39.27383286842471],[-76.62478804579214,39.27383030461471],[-76.6247817303316,39.27382778842182],[-76.6247754241235,39.27382527586124],[-76.62476912946181,39.27382277144404],[-76.62476263057178,39.27382053570243],[-76.62475608962416,39.27381836378036],[-76.62474974691605,39.27381596009417],[-76.6247438310938,39.27381304073309],[-76.62473816846462,39.27380979790566],[-76.62473260971485,39.27380641579144],[-76.62472714894065,39.27380291508921],[-76.6247217767613,39.27379931648648],[-76.62471648726812,39.27379564158277],[-76.62471127107565,39.27379191196646],[-76.6247061234389,39.27378814833993],[-76.62470113047235,39.2737842834211],[-76.62469640749134,39.27378020678447],[-76.62469183464997,39.27377600902429],[-76.62468728741882,39.27377178972745],[-76.62468264128303,39.27376764577848],[-76.6246778636653,39.273763601394],[-76.62467305115771,39.27375958031769],[-76.62466820258717,39.2737555852481],[-76.62466331678054,39.27375161888373],[-76.62465839141042,39.27374768301866],[-76.62465348009522,39.27374371927463],[-76.62464856885674,39.27373974111841],[-76.62464356677337,39.27373584824425],[-76.62463838410616,39.27373213584627],[-76.62463289618769,39.27372872963296],[-76.62462693419864,39.27372577679009],[-76.62462070176277,39.27372312303687],[-76.62461441877113,39.27372060603787],[-76.6246079569938,39.27371836770395],[-76.62460135236086,39.27371640724908],[-76.62459458800923,39.27371484532183],[-76.62458773923674,39.27371346868168],[-76.6245791518639,39.27372221467377],[-76.62457038876319,39.27373087993552],[-76.62456181525457,39.27373963317677],[-76.62455379782179,39.27374864221044],[-76.62454673876923,39.27375809478074],[-76.62454077338606,39.27376804806858],[-76.62453529586257,39.27377822720592],[-76.62452964258777,39.27378833011691],[-76.62452314993615,39.27379805742797],[-76.62451576010152,39.27380738283187],[-76.62450791587273,39.27381650861452],[-76.62449977103788,39.27382550012248],[-76.62449148054404,39.27383442270614],[-76.62448319470269,39.27384334170096],[-76.6244750522271,39.27385232420705],[-76.62446695243264,39.27386134378039],[-76.62445861583254,39.27387021757293],[-76.62444975951102,39.27387875371812],[-76.62444023092912,39.27388686975851],[-76.62443029458444,39.27389473408181],[-76.62442029245295,39.27390254685037],[-76.62441056766002,39.27391051003176],[-76.62440146912058,39.273918826513],[-76.62439473713685,39.27392844225734],[-76.6243885747028,39.27393839580761],[-76.62437984163545,39.27394707015848],[-76.62437060586727,39.27395547537401],[-76.6243640051875,39.27396502397912],[-76.62435974007036,39.27397559701617],[-76.624355902824,39.27398634436824],[-76.6243506874848,39.27399646398379],[-76.62434318592933,39.27400565030153],[-76.62433469946195,39.27401458755987],[-76.62432540969837,39.27402311960677],[-76.62431542548326,39.27403104501897],[-76.62430485798392,39.27403816148009],[-76.62429299993688,39.27404365603997],[-76.62427963354358,39.2740475144901],[-76.62426592712798,39.27405102235454],[-76.62425283578334,39.27405524468935],[-76.62423995251177,39.27405978565806],[-76.62422707959695,39.27406434016999],[-76.62421411499518,39.27406870072284],[-76.62420096240012,39.27407267064202],[-76.62418765229037,39.27407662204042],[-76.62417420866909,39.27408039916269],[-76.624160598526,39.27408345153637],[-76.62414679001503,39.27408522779201],[-76.62413280734411,39.27408597121325],[-76.62411872220066,39.27408636931234],[-76.62410456452982,39.2740864573148],[-76.62409036659928,39.274086269553],[-76.62407615835407,39.2740858412525],[-76.62406196857579,39.27408520853595],[-76.62404782953666,39.27408440483499],[-76.62403377001812,39.27408346627227],[-76.62401976959552,39.27408209192737],[-76.62400584792454,39.2740798530995],[-76.62399214807273,39.27407687004843],[-76.62397881655559,39.27407326844945],[-76.62396614791912,39.27406857634465],[-76.62395399925794,39.27406286173476],[-76.62394180632228,39.27405719202001],[-76.62392900057738,39.27405213105973],[-76.62391549072092,39.27404653819421],[-76.62390205323382,39.27404390907212],[-76.62388923208988,39.27404656400175],[-76.62387650551784,39.27405039833283],[-76.62386381726934,39.27405487322839],[-76.62385116922391,39.27405985267911],[-76.62383856324706,39.27406520337792],[-76.62382600237254,39.27407079022001],[-76.62381348848037,39.274076477196],[-76.62380102575385,39.27408213100627],[-76.62378861490951,39.27408761653857],[-76.62377622245913,39.27409291116651],[-76.62376380443017,39.27409822102421],[-76.62375142424135,39.27410360666596],[-76.62373914998055,39.27410912235577],[-76.62372704741283,39.27411482325098],[-76.6237151823177,39.27412076180661],[-76.62370362276849,39.27412699498903],[-76.62369238571377,39.27413360482212],[-76.62368145674036,39.27414068674072],[-76.62367099814031,39.27414823225738],[-76.62366117572054,39.27415622568969],[-76.62365215990935,39.27416465407245],[-76.62364399831196,39.27417350044391],[-76.6236363979831,39.27418271612508],[-76.62362927470612,39.27419222878496],[-76.62362255933485,39.27420196524025],[-76.62361618503132,39.27421185411645],[-76.62361008497183,39.27422182133687],[-76.62360419693002,39.27423180004554],[-76.62359861435563,39.27424186980928],[-76.6235933648661,39.2742520676479],[-76.62358840456237,39.2742623672986],[-76.62358368837204,39.27427274519714],[-76.62357917240553,39.27428317327917],[-76.62357481274934,39.27429362798412],[-76.6235706453291,39.27430410942717],[-76.62356689112507,39.27431468767534],[-76.62356343553152,39.27432533894159],[-76.6235601246167,39.27433602490043],[-76.62355680674759,39.27434671083684],[-76.62355332914157,39.27435736023062],[-76.62354959571572,39.27436795295697],[-76.62354560646524,39.27437848991656],[-76.62354129892447,39.27438894929089],[-76.62353670893295,39.27439934740852],[-76.62353195571306,39.27440971167442],[-76.62352715502985,39.2744200658796],[-76.62352242150357,39.27443043110898],[-76.62351787438563,39.27444082936319],[-76.62351362712334,39.27445128442572],[-76.62350979780919,39.2744618182935],[-76.62350694682677,39.2744725309462],[-76.6235050799662,39.27448342330315],[-76.62350356620442,39.27449438524997],[-76.6235017756911,39.2745053039737],[-76.62349936915707,39.27451612434093],[-76.62349672289369,39.27452691331359],[-76.62349400830249,39.27453769305952],[-76.62349138635996,39.27454848481229],[-76.62348941129714,39.27455945608908],[-76.6234882903559,39.2745706453865],[-76.62348266608811,39.27458004664346],[-76.62347087809295,39.27458672494815],[-76.62345773047386,39.27459060472349],[-76.62344371137159,39.27458967612856],[-76.62342968379357,39.27458772423712],[-76.62341575587182,39.27458577446507],[-76.62340190596777,39.27458353669712],[-76.6233882664758,39.27458074022792],[-76.62337474774068,39.27457746403724],[-76.62336140291397,39.27457373802081],[-76.62334841924257,39.274569437573],[-76.62333600921404,39.27456426792484],[-76.62332417652543,39.27455818765314],[-76.62331271090385,39.27455172933602],[-76.62330107943332,39.27454529480643],[-76.62328996142854,39.27453841154068],[-76.62328047300527,39.27453040934749],[-76.62327208019849,39.27452166933912],[-76.62326403755043,39.27451268004098],[-76.62325626594541,39.27450349974897],[-76.62324868625818,39.27449418856057],[-76.62324121936341,39.27448480657308],[-76.62323378266407,39.27447541297201],[-76.62322629934786,39.27446606876294],[-76.62321835197415,39.27445681764487],[-76.62321098541227,39.2744473116718],[-76.6232073870436,39.27443682604611],[-76.62320551472105,39.27442538754494],[-76.62320664200749,39.27441432077385],[-76.62321196904558,39.27440459069801],[-76.62321896768437,39.27439499389292],[-76.62322704097409,39.27438555096231],[-76.62323599397341,39.27437652610533],[-76.62324563176013,39.27436817991791],[-76.62325575591181,39.27436077748879],[-76.62326715215184,39.27435563194956],[-76.62328145668391,39.27435430506785],[-76.62329630491563,39.27435338256966],[-76.62331024716605,39.27435044125443],[-76.62332489383786,39.27434731844085],[-76.62333882000276,39.27434347720759],[-76.62335031708925,39.27433810769346],[-76.6233578383816,39.27433025553413],[-76.62336157646487,39.27431966372941],[-76.6233627634544,39.27430782429263],[-76.62336264367296,39.27429633106244],[-76.62336095643296,39.27428517149288],[-76.623357541999,39.27427365418581],[-76.62335353666616,39.27426210976223],[-76.62335007555552,39.27425087154193],[-76.62334829379215,39.27424027194404],[-76.62334932881835,39.27423064339512],[-76.62335495967012,39.27422240144785],[-76.62336597903308,39.27421576572762],[-76.62338010167566,39.27421049200411],[-76.62339495551288,39.27420632405924],[-76.62340871189977,39.27420324071637],[-76.62342342118453,39.27420228893222],[-76.62343875489073,39.2742024723092],[-76.62345365886222,39.27420239578721],[-76.62346707661445,39.27420066610075],[-76.62347799430182,39.2741959351596],[-76.62348666461594,39.27418841185109],[-76.6234937767838,39.27417903067569],[-76.623499778014,39.27416847134248],[-76.62350511203856,39.27415741354923],[-76.62351022490247,39.27414653790187],[-76.62351559336737,39.27413619632582],[-76.62352092016833,39.27412540693623],[-76.62352450110731,39.274114502057],[-76.62352453349848,39.27410402897893],[-76.62352038140823,39.27409414870181],[-76.6235135344933,39.27408455613759],[-76.62350539475695,39.27407508463482],[-76.62349736417806,39.27406557204629],[-76.62349055602841,39.27405588232236],[-76.62348413196439,39.2740461010506],[-76.6234778008233,39.27403628044274],[-76.62347148361457,39.2740264553754],[-76.62346509556254,39.27401665890497],[-76.62345855884026,39.27400692501104],[-76.62345201552502,39.27399712353819],[-76.62344580763417,39.27398700967459],[-76.62343957201305,39.27397688040868],[-76.6234329152615,39.27396705425041],[-76.62342544396992,39.27395785151103],[-76.62341676357445,39.27394959159723],[-76.62340612329587,39.2739428936286],[-76.62339368727778,39.27393761851253],[-76.62338046241574,39.2739329290644],[-76.62336745908704,39.27392798721051],[-76.62335568535627,39.2739219539694],[-76.62334552203409,39.2739144810662],[-76.62333622652966,39.27390617323467],[-76.62332741789872,39.27389740397124],[-76.62331872218384,39.27388854048903],[-76.6233097630905,39.27387995359668],[-76.62330016782016,39.27387201051101],[-76.62328949740775,39.27386509895386],[-76.62327733560033,39.27385947610909],[-76.6232641781925,39.27385496431461],[-76.6232506255317,39.27385133850322],[-76.62323708869437,39.27384844326064],[-76.62322329889564,39.27384626331236],[-76.62320931537089,39.27384455564208],[-76.62319524382075,39.27384305666494],[-76.62318118529161,39.27384150638436],[-76.62316723028044,39.27383966728897],[-76.62315312835135,39.27383799706416],[-76.62313885467965,39.27383658750814],[-76.6231245425262,39.27383522286506],[-76.62311033094628,39.27383368739788],[-76.62310283832313,39.27383265629992],[-76.62309635436944,39.27383176355302],[-76.62308275068763,39.2738292364906],[-76.6230696566485,39.2738258886646],[-76.62305726524805,39.27382138561051],[-76.62304576386526,39.27381535951737],[-76.62303494760495,39.27380820336177],[-76.62302457880713,39.27380036946527],[-76.62301441865755,39.27379230924503],[-76.6230042318136,39.27378447502998],[-76.62299391229526,39.27377696466315],[-76.62298362556758,39.2737693904464],[-76.62297347622199,39.27376169776894],[-76.62296356766691,39.27375383651988],[-76.62295400331566,39.27374575568782],[-76.62294488773071,39.27373740606638],[-76.62293652418856,39.27372841841544],[-76.62292900300001,39.27371859035313],[-76.62292191251422,39.27370840336748],[-76.62291484105167,39.27369834435095],[-76.62290737346102,39.27368889928391],[-76.62289909689913,39.2736805559557],[-76.62288959038193,39.27367380753383],[-76.62287736710746,39.27367103987181],[-76.62286268540323,39.27367183674453],[-76.62284729812323,39.27367325107532],[-76.62283294755971,39.27367236097586],[-76.62281961887855,39.27366912316222],[-76.62280654312137,39.27366496017386],[-76.62279362078795,39.27366027703522],[-76.62278075351739,39.27365548237718],[-76.62276787719294,39.27365086513922],[-76.6227552664407,39.27364555966829],[-76.622742729466,39.27364011031075],[-76.62272992822497,39.27363554014951],[-76.62271653655885,39.27363281645801],[-76.62270268960623,39.27363115240248],[-76.62268859674607,39.27362996586105],[-76.62267435296805,39.27362926434492],[-76.62266004978486,39.27362905535416],[-76.62264578218617,39.27362934640003],[-76.62263164052585,39.27363014497897],[-76.62261766674844,39.27363140888993],[-76.6226036190221,39.27363284911134],[-76.62258949287892,39.27363443410212],[-76.62257533343362,39.27363617932017],[-76.62256118463723,39.27363810112046],[-76.62254709044093,39.27364021585809],[-76.62253309595461,39.27364253989175],[-76.6225192451341,39.27364508867571],[-76.62250558193057,39.27364787856507],[-76.6224921502901,39.27365092681567],[-76.62247899649125,39.27365424798856],[-76.62246631510014,39.27365808411405],[-76.62245613040838,39.27366532414443],[-76.62244787305067,39.27367494388291],[-76.62244002626511,39.2736845027879],[-76.6224365364543,39.27368957998539],[-76.62243335264701,39.27369421138752],[-76.62242857618836,39.2737045656282],[-76.62242447346361,39.27371505985148],[-76.62242063687289,39.27372563149515],[-76.62241689977706,39.27373623498524],[-76.6224130990135,39.27374682475903],[-76.62240906910662,39.2737573543456],[-76.62240469431678,39.27376779544902],[-76.62240006951392,39.27377817809963],[-76.62239530119527,39.27378852515879],[-76.62239049352593,39.2737988621828],[-76.62238575067592,39.27380921382726],[-76.62238117798856,39.27381960204912],[-76.62237687962906,39.27383005240476],[-76.62237297482355,39.2738405913997],[-76.62236952955651,39.27385123275759],[-76.62236640839704,39.2738619463178],[-76.62236346434453,39.27387269827948],[-76.62236055154256,39.27388345754761],[-76.6223575218411,39.2738941885161],[-76.62235448867642,39.27390491677104],[-76.62235155275162,39.27391566515531],[-76.62234862725111,39.27392641447382],[-76.62234562187301,39.27393714732158],[-76.62234244631529,39.27394784629378],[-76.62233901492593,39.27395849129815],[-76.62233571941138,39.27396930067835],[-76.62233263846565,39.27398029540502],[-76.62232926480043,39.27399119911393],[-76.62232509345921,39.27400173274591],[-76.62231961832173,39.27401161813891],[-76.62231234127904,39.27402059607243],[-76.62230320771451,39.27402869429418],[-76.62229274712212,39.27403615410974],[-76.62228152606144,39.27404322054718],[-76.62227011109199,39.27405013863458],[-76.62225905951681,39.27405715066833],[-76.62224689059703,39.27406332139681],[-76.62223447747779,39.27406921210176],[-76.62222509500454,39.27407682400498],[-76.62221912327162,39.27408637991776],[-76.62221451284066,39.2740966662247],[-76.62221065572,39.27410738371821],[-76.62220694508143,39.27411823229348],[-76.62220277177396,39.27412891273907],[-76.62219755902308,39.27413913945884],[-76.62219163388735,39.27414908374924],[-76.62218535821596,39.27415891251466],[-76.62217882108499,39.27416865576684],[-76.62217211274844,39.27417833991821],[-76.62216532460023,39.27418799498799],[-76.62215854456718,39.27419764918269],[-76.62215185826803,39.27420732889991],[-76.62214518240661,39.27421700684879],[-76.62213846606862,39.27422666845331],[-76.62213171387518,39.27423631643058],[-76.62212493393369,39.27424595170748],[-76.62211813086537,39.27425557700118],[-76.6221113116043,39.27426519593701],[-76.62210448193534,39.2742748103351],[-76.6220976430174,39.27428442019922],[-76.62209075206752,39.27429400737636],[-76.62208381255269,39.2743035736793],[-76.6220768545369,39.27431313181533],[-76.62206990345341,39.27432269357634],[-76.62206298705802,39.27433226986076],[-76.62205613540033,39.27434187607825],[-76.62204981459745,39.2743521208437],[-76.62204380023942,39.27436270798442],[-76.6220372994398,39.27437258555899],[-76.6220295193073,39.27438070252652],[-76.62201534517123,39.27438278181334],[-76.62200314173039,39.27437736227613],[-76.62199450280944,39.27436742967281],[-76.6219913628114,39.27435664823216],[-76.6219954975008,39.27434713415965],[-76.62200292378766,39.2743377829097],[-76.62201167938764,39.27432842332666],[-76.62201981819861,39.27431889241446],[-76.62202631610221,39.27430912292303],[-76.62203257217016,39.27429928239337],[-76.62203870798042,39.27428939103365],[-76.6220447466486,39.27427946062808],[-76.62205071246328,39.27426950026251],[-76.62205663201672,39.27425952173252],[-76.62206252727015,39.27424953591788],[-76.62206842482533,39.27423955281262],[-76.62207436400772,39.27422958695551],[-76.62208037956954,39.2742196411606],[-76.62208642290467,39.2742097026609],[-76.6220924431083,39.27419975507878],[-76.62209838811198,39.27418978293372],[-76.62210420583774,39.27417977254677],[-76.62210984654457,39.2741697066433],[-76.62211525699568,39.27415957154067],[-76.62212039322533,39.274149353586],[-76.62212534780548,39.27413907919927],[-76.62213017858474,39.27412876658193],[-76.62213489945053,39.27411841938168],[-76.6221395242808,39.27410804304778],[-76.6221440692808,39.27409764123549],[-76.62214854601069,39.27408721938657],[-76.62215297066608,39.27407678295769],[-76.62215735829338,39.27406633560031],[-76.62216172045267,39.27405588275622],[-76.6221660733491,39.27404542808062],[-76.62217043201476,39.27403497792721],[-76.62217480802407,39.27402453503552],[-76.62217922107324,39.27401410036966],[-76.62218366191043,39.27400367029683],[-76.62218811548925,39.27399324116553],[-76.62219256675854,39.27398281022511],[-76.62219700066721,39.27397237472481],[-76.62220140101012,39.27396193100946],[-76.62220575273136,39.27395147722913],[-76.62221004078931,39.27394100883163],[-76.62221425012827,39.27393052396692],[-76.62221836453814,39.27392001988069],[-76.62222237013161,39.27390949292517],[-76.62222625069867,39.27389894034597],[-76.62222999118832,39.27388835939232],[-76.62223357655432,39.27387774641287],[-76.62223701026853,39.27386710231955],[-76.62224031201296,39.27385643077866],[-76.62224350146938,39.27384573545667],[-76.62224659599717,39.2738350209132],[-76.62224961643706,39.2738242908183],[-76.62225258015307,39.27381354883097],[-76.62225550682719,39.2738027986175],[-76.62225841613635,39.27379204474504],[-76.62226132544457,39.27378129087244],[-76.62226425559268,39.27377054066983],[-76.62226722394459,39.27375979779611],[-76.62227025017734,39.27374906681834],[-76.6222733539727,39.27373835140291],[-76.62227655501243,39.27372765521618],[-76.6222798833891,39.27371698556099],[-76.62228345720285,39.27370636263401],[-76.62228723592648,39.27369577999941],[-76.6222911408375,39.27368522209116],[-76.62229509668533,39.27367467425497],[-76.62229902706059,39.27366412183286],[-76.62230285208692,39.27365354835423],[-76.6223064988268,39.27364294007309],[-76.6223098550368,39.27363226510175],[-76.62231280516482,39.27362146001513],[-76.62231549957757,39.27361057934269],[-76.62231811293506,39.27359968579883],[-76.62232082220542,39.27358884390679],[-76.62232379856222,39.27357811817139],[-76.62232722013702,39.27356757221882],[-76.62233140033852,39.27355732866001],[-76.62234130792058,39.2735494599166],[-76.62235224076933,39.27354209349229],[-76.62236383016622,39.27353504714772],[-76.62237369649056,39.2735273079789],[-76.62237933771245,39.27351778162022],[-76.62238289596613,39.2735072469145],[-76.62238510693098,39.27349618092993],[-76.62238635344207,39.27348494430225],[-76.6223870125591,39.2734738940457],[-76.62238697915063,39.27346296857029],[-76.6223862528777,39.27345201384427],[-76.6223850921126,39.27344104150746],[-76.62238375639595,39.273430061402],[-76.62238191587628,39.27341267704202],[-76.62238114297956,39.27340721682714],[-76.6223804327006,39.27340174960744],[-76.622379749095,39.27339627887041],[-76.62237905505488,39.2733908090006],[-76.62237831346742,39.27338534528324],[-76.62237748838352,39.2733798921066],[-76.62237654384927,39.27337445475965],[-76.6223754416075,39.27336903582161],[-76.62237420484044,39.27336363446634],[-76.62237292517128,39.27335823747691],[-76.62237160607174,39.27335284576527],[-76.62237025102334,39.27334745844184],[-76.62236886466634,39.27334207462079],[-76.62236745047261,39.27333669521402],[-76.6223660119331,39.27333131753049],[-76.62236455367382,39.27332594338656],[-76.62236307802198,39.27332057098819],[-76.62236159076728,39.27331520125482],[-76.62236009307819,39.27330983238857],[-76.62235858959008,39.27330446440446],[-76.62235708610226,39.27329909642032],[-76.62235558376871,39.27329372934066],[-76.62235408723453,39.27328836137884],[-76.6223525999716,39.27328299344677],[-76.62235117191213,39.27327760678897],[-76.62234983092185,39.27327219158668],[-76.62234855610261,39.27326675497882],[-76.62234732424332,39.27326130319607],[-76.62234611328239,39.2732558442744],[-76.62234490117233,39.27325038354744],[-76.62234366584184,39.27324493085272],[-76.62234238408944,39.2732394906194],[-76.62234103384876,39.27323407178416],[-76.62233959422637,39.27322868058515],[-76.62233804084774,39.27322332415015],[-76.6223363516558,39.27321800961431],[-76.62233450574792,39.27321274501726],[-76.6223324799177,39.27320753568906],[-76.62233025210364,39.27320238966551],[-76.62232779908503,39.27319731497889],[-76.62232508610545,39.27319230971587],[-76.62232212477274,39.27318737031069],[-76.62231894060612,39.2731824923416],[-76.62231555796603,39.27317767138306],[-76.62231200352561,39.27317290391781],[-76.62230829933227,39.27316818461215],[-76.62230447321814,39.27316350995246],[-76.62230054722578,39.27315887550585],[-76.62229654803319,39.27315427685423],[-76.62229250115954,39.27314970957592],[-76.62228842980151,39.27314517014239],[-76.622284359483,39.27314065323114],[-76.62228031571837,39.27313615532118],[-76.62227618931949,39.27313172380192],[-76.6222716898925,39.27312748474708],[-76.62226686265258,39.27312343469901],[-76.62226177368416,39.27311956846559],[-76.62225648560944,39.27311587814138],[-76.62225105988692,39.27311235671788],[-76.62224553037328,39.27310895746425],[-76.62223990422308,39.27310564257131],[-76.62223420005981,39.27310239678607],[-76.62222843418914,39.2730992048479],[-76.62222262523457,39.27309605150375],[-76.62221679066545,39.27309292059597],[-76.62221094678272,39.27308979776484],[-76.62220511337831,39.27308666595948],[-76.62219930558945,39.27308351171711],[-76.62219354320811,39.27308031798687],[-76.62218784253041,39.27307707130981],[-76.62218222103529,39.27307375372676],[-76.62217669617782,39.27307035178248],[-76.62217128658145,39.27306685022393],[-76.62216600740258,39.2730632319853],[-76.62216083183858,39.27305952490413],[-76.62215573079776,39.27305575140589],[-76.6221506949612,39.27305192046834],[-76.6221457208379,39.27304803478246],[-76.62214080026783,39.2730441033297],[-76.62213592744219,39.27304012879362],[-76.62213109652349,39.27303611926236],[-76.62212629937562,39.27303207921356],[-76.62212153017074,39.27302801493387],[-76.62211678192678,39.27302393180533],[-76.62211204997469,39.27301983611833],[-76.6221073261688,39.27301573415196],[-76.62210260353676,39.27301162948689],[-76.62209787739987,39.27300753021496],[-76.62209314077612,39.27300344171825],[-76.62208838668829,39.27299936847815],[-76.62208360814968,39.27299531677748],[-76.62207880630945,39.27299128842155],[-76.62207408824898,39.27298719638071],[-76.62206944930398,39.2729830460446],[-76.62206483012744,39.27297888316119],[-76.62206017022316,39.2729747516733],[-76.62205540907563,39.27297069912663],[-76.62205048850146,39.27296677037226],[-76.62204540850077,39.27296296541007],[-76.62204024355296,39.27295922593007],[-76.62203501111298,39.27295553847696],[-76.6220297286215,39.27295189229769],[-76.62202441006654,39.2729482721243],[-76.6220190728886,39.27294466720371],[-76.62201373454756,39.27294106317989],[-76.62200841016629,39.27293744929234],[-76.62200311604565,39.27293381118132],[-76.6219978591917,39.27293013896093],[-76.62199262914581,39.27292643800214],[-76.62198741542059,39.27292271908036],[-76.62198220869232,39.27291899207395],[-76.62197699963723,39.27291526686138],[-76.62197177775839,39.27291155601951],[-76.62196653605938,39.2729078676327],[-76.62196126288912,39.27290421337344],[-76.62195595007796,39.2729006040245],[-76.62195058830693,39.27289704856362],[-76.62194516708381,39.27289355866688],[-76.62193936460794,39.27289049990953],[-76.62193296290877,39.27288810849082],[-76.62192663596788,39.27288560651839],[-76.62192531123672,39.27288497712355],[-76.62192060762685,39.27288274339965],[-76.62191459098544,39.27287985960062],[-76.62190858487027,39.27287695781993],[-76.6219025892766,39.27287403895826],[-76.62189660070864,39.27287110660743],[-76.6218906214841,39.27286816077488],[-76.62188464811196,39.27286520415177],[-76.62187868174638,39.27286223764245],[-76.62187271889626,39.27285926393799],[-76.62186675955685,39.27285628393922],[-76.62186080371859,39.27285329944758],[-76.62185485021769,39.27285031136014],[-76.62184889671734,39.27284732327237],[-76.62184294205385,39.27284433608129],[-76.62183698738119,39.27284135069143],[-76.62183103036733,39.27283836979753],[-76.62182506984377,39.27283539519737],[-76.62181910465164,39.27283242688726],[-76.6218131347717,39.27282946847013],[-76.62180715903553,39.27282652174375],[-76.62180546107298,39.27282568847374],[-76.62180117512538,39.2728235867007],[-76.6217951841857,39.27282066604693],[-76.62178918273034,39.27281776157275],[-76.62178317190849,39.27281487508339],[-76.62177714939762,39.2728120074721],[-76.62177111518335,39.27280916144117],[-76.62176506810201,39.2728063378876],[-76.62175900582139,39.27280353950613],[-76.62175292833678,39.27280076719758],[-76.62174683564339,39.27279802186262],[-76.62174072540415,39.27279530709685],[-76.6217345964555,39.27279262379727],[-76.62172844879257,39.27278997286457],[-76.6217222812373,39.2727873578981],[-76.62171609147674,39.27278477798955],[-76.62170987245688,39.27278225203226],[-76.62170351657751,39.27277996433642],[-76.62169700978342,39.27277794278032],[-76.6216903731502,39.2727761468975],[-76.62168363006161,39.2727745380304],[-76.62167680159334,39.27277307571245],[-76.62166991112908,39.27277172128611],[-76.62166298090352,39.27277043428858],[-76.62165603081894,39.27276917695194],[-76.62164908543258,39.2727679079201],[-76.62164216580562,39.27276658942873],[-76.62163529301385,39.27276518101144],[-76.62162849160002,39.27276364401437],[-76.62162175924641,39.2727619784301],[-76.62161503393278,39.2727602966544],[-76.62160831098528,39.27275860587827],[-76.62160159157709,39.27275690340323],[-76.6215948780308,39.27275518833598],[-76.62158817036082,39.27275345797431],[-76.62158147089934,39.27275170962338],[-76.62157477964628,39.27274994328324],[-76.6215680989435,39.2727481544576],[-76.62156142879086,39.27274634314644],[-76.62155477268433,39.27274450575803],[-76.62154812946977,39.27274264138784],[-76.62154150263822,39.27274074734483],[-76.62153488988638,39.27273882091932],[-76.62152829242109,39.27273685310751],[-76.62152171142056,39.27273484031021],[-76.62151515385234,39.27273277984752],[-76.62150862321224,39.27273066812767],[-76.62150212415018,39.27272850246334],[-76.62149566016681,39.27272627836206],[-76.62148923822967,39.2727239931439],[-76.62148419193427,39.27272213391667],[-76.62148286067581,39.27272164321344],[-76.62147656140539,39.27271917373327],[-76.62147040828611,39.27271646241815],[-76.62146435454535,39.27271358748389],[-76.62145834520713,39.27271064423437],[-76.62145232529548,39.27270772797338],[-76.62144623983436,39.27270493400478],[-76.62144003616541,39.27270235763979],[-76.62143365134953,39.27270006623287],[-76.6214269860313,39.27269778473065],[-76.62142011501776,39.27269561065673],[-76.62141316094257,39.27269380022345],[-76.62140951265361,39.27269317143965],[-76.62139134840608,39.27244859948951],[-76.62139230555697,39.27244470586812],[-76.62139354660533,39.27243929717537],[-76.62139468909281,39.27243389897401],[-76.62139559299429,39.27242847388138],[-76.6213962699129,39.27242301923258],[-76.62139676848244,39.27241754239049],[-76.62139713618721,39.27241204891274],[-76.62139741818925,39.27240654525032],[-76.62139766312696,39.27240103786536],[-76.62139791616697,39.27239553230802],[-76.62139822594305,39.2723900359412],[-76.62139861562265,39.27238455064114],[-76.62139895435085,39.27237905797071],[-76.6213992282262,39.27237355698431],[-76.6213994534678,39.27236804863504],[-76.62139964859831,39.27236253658562],[-76.62139982866843,39.27235702358687],[-76.62140001453278,39.27235151060681],[-76.62140022123256,39.27234600219769],[-76.62140046614581,39.2723404993164],[-76.62140076895388,39.27233500562932],[-76.6214011447171,39.27232952208585],[-76.62140161195313,39.27232405324944],[-76.62140218804002,39.27231860007688],[-76.6214028903415,39.27231316622728],[-76.62140373623063,39.27230775355812],[-76.62140485654785,39.27230238320871],[-76.62140666349563,39.27229712226364],[-76.62140900308518,39.27229194410432],[-76.62141165879731,39.272286812903],[-76.62141441063653,39.27228169282056],[-76.62141704325728,39.27227654533088],[-76.62141933897217,39.27227133640392],[-76.62142117853912,39.27226604313624],[-76.62142286183787,39.2722607160365],[-76.62142443981978,39.27225536247504],[-76.62142592055834,39.27224998968415],[-76.62142731563263,39.27224459950249],[-76.62142863544828,39.27223919646753],[-76.6214298892473,39.27223378601364],[-76.62143108860394,39.27222837088046],[-76.621432242765,39.27222295560153],[-76.62143335987612,39.27221753389782],[-76.62143442837758,39.27221210032749],[-76.6214354285592,39.27220665662852],[-76.62143634187453,39.27220120364186],[-76.62143714976742,39.27219574401005],[-76.62143783485993,39.27219027677629],[-76.62143837744192,39.27218480367858],[-76.62143876822807,39.27217932738928],[-76.62143907791834,39.27217384633474],[-76.62143933431081,39.2721683633069],[-76.62143954204089,39.27216287832064],[-76.62143970806656,39.27215739049765],[-76.6214398393362,39.27215190076112],[-76.62143994279808,39.27214641003418],[-76.62144002309242,39.272140917431],[-76.62144008948528,39.27213542388228],[-76.62144014544847,39.27212993029989],[-76.62144019909398,39.27212443671007],[-76.62144025622081,39.27211894223066],[-76.62144032493136,39.27211344868937],[-76.62144040870702,39.2721079551966],[-76.62144051681385,39.27210246268304],[-76.62144065388712,39.27209697116357],[-76.62144082687534,39.27209148156141],[-76.62144105432003,39.27208599393628],[-76.62144134897825,39.27208050652782],[-76.62144169578004,39.27207502018814],[-76.62144207734738,39.27206953396055],[-76.62144247745633,39.2720640477927],[-76.6214428798781,39.27205856253306],[-76.62144326955249,39.27205307723229],[-76.62144362793771,39.27204759183069],[-76.62144393997355,39.27204210537894],[-76.62144418942644,39.27203661962618],[-76.62144436008687,39.27203113181793],[-76.62144443455767,39.27202564460043],[-76.62144440474128,39.27202015524521],[-76.62144434131335,39.2720146666824],[-76.62144426977824,39.27200917719271],[-76.62144418896752,39.2720036885739],[-76.62144409889078,39.27199819902442],[-76.62144400185619,39.27199271035325],[-76.62144389555557,39.27198722075148],[-76.62144378230184,39.27198173112725],[-76.62144366209499,39.27197624148062],[-76.6214435349303,39.27197075271231],[-76.62144340081724,39.27196526302084],[-76.62144326090997,39.27195977331072],[-76.62144311520849,39.27195428358189],[-76.62144296487165,39.27194879383809],[-76.62144280874053,39.27194330407561],[-76.62144264797404,39.27193781429817],[-76.62144248257212,39.2719323245058],[-76.62144231368892,39.27192683560295],[-76.62144214017516,39.27192134578441],[-76.62144196434365,39.27191585595837],[-76.62144178503564,39.27191036612114],[-76.62144160341,39.27190487627644],[-76.62144141946668,39.27189938642422],[-76.62144123321045,39.27189389566381],[-76.62144104579062,39.27188840580039],[-76.62144085721198,39.27188291593324],[-76.62144066747447,39.27187742606231],[-76.62144047657817,39.27187193618766],[-76.62144028684074,39.27186644631674],[-76.6214400959445,39.27186095644206],[-76.62143990620716,39.27185546657112],[-76.62143971762865,39.2718499767039],[-76.62143953020905,39.2718444868404],[-76.6214393439483,39.27183899698063],[-76.62143916000531,39.27183350712833],[-76.62143897838008,39.27182801728348],[-76.62143879907254,39.2718225274461],[-76.62143862208269,39.27181703761618],[-76.6214384497283,39.27181154780119],[-76.62143827969167,39.2718060579937],[-76.6214381154493,39.27180056820484],[-76.62143788415905,39.27179265784535],[-76.62143849278276,39.27178718676139],[-76.62143908403324,39.27178171381993],[-76.62143965791053,39.27177623902093],[-76.6214402190452,39.27177076328002],[-76.62144076975494,39.27176528660478],[-76.62144131120338,39.27175980809813],[-76.62144184685752,39.27175432957282],[-76.621442377881,39.2717488501318],[-76.6214429077455,39.27174337068704],[-76.62144343760518,39.27173789214299],[-76.62144397094609,39.27173241270938],[-76.62144451007156,39.27172693509596],[-76.62144505615005,39.27172145750493],[-76.62144561265323,39.27171598084827],[-76.6214461818941,39.27171050603417],[-76.6214467661951,39.27170503216934],[-76.62144736786911,39.27169956016208],[-76.62144798807017,39.27169409091678],[-76.62144863143848,39.27168862354766],[-76.62144929796918,39.27168315895551],[-76.6214499923026,39.27167769625447],[-76.62145071442897,39.27167223724606],[-76.62145146782488,39.27166678194151],[-76.62145225597175,39.27166132945123],[-76.62145308002344,39.27165588067972],[-76.62145394113418,39.27165043653148],[-76.62145482659973,39.27164498885864],[-76.62145571792188,39.27163952949474],[-76.62145661971675,39.27163406205767],[-76.62145754240437,39.2716285883826],[-76.62145849059611,39.2716231129882],[-76.62145947354823,39.27161763860658],[-76.62146049819953,39.2716121679624],[-76.62146157264256,39.27160670468481],[-76.62146270149358,39.27160125239173],[-76.62146389517252,39.27159581291827],[-76.62146515829562,39.27159038988239],[-76.62146650127308,39.27158498692068],[-76.62146792872603,39.27157960675034],[-76.62146944874709,39.27157425300047],[-76.62147106943374,39.27156892839957],[-76.6214727977198,39.27156363657286],[-76.62147464054871,39.27155837934444],[-76.62147660484953,39.2715531612403],[-76.62147884453249,39.27154802329095],[-76.62148160842244,39.27154302755038],[-76.62148480277779,39.27153815029646],[-76.62148832114814,39.27153336056013],[-76.62149206169914,39.27152863099022],[-76.62149591565314,39.27152393241165],[-76.62149978119021,39.27151923477101],[-76.62150355184086,39.27151451070233],[-76.6215071234676,39.27150973014467],[-76.62151039075965,39.27150486573582],[-76.6215132472668,39.27149988650664],[-76.62151565714183,39.2714947779295],[-76.62151786814198,39.2714895849403],[-76.62151991842289,39.27148432387575],[-76.62152180214213,39.27147900372467],[-76.62152351924212,39.27147363529608],[-76.62152506735724,39.27146822759003],[-76.62152644296293,39.27146278960281],[-76.62152764252978,39.27145733123143],[-76.62152866600502,39.27145186238413],[-76.62152950985926,39.27144639295803],[-76.62153017056811,39.27144093194936],[-76.62153064809301,39.2714354865641],[-76.62153094949285,39.27143003700824],[-76.62153109102991,39.27142457612799],[-76.62153109239493,39.2714191057884],[-76.62153096748928,39.27141362693501],[-76.62153073484971,39.27140814052829],[-76.62153041068551,39.27140264932284],[-76.62153001122061,39.27139715337088],[-76.62152955383286,39.2713916536292],[-76.62152905589531,39.2713861519553],[-76.6215285336269,39.27138064930222],[-76.62152800323707,39.2713751484245],[-76.6215274821133,39.27136964847737],[-76.62152698762857,39.27136415131839],[-76.6215265359922,39.27135865970202],[-76.62152614343287,39.27135317277991],[-76.62152574275211,39.27134768763307],[-76.62152527602217,39.2713422013727],[-76.62152475484119,39.2713367122345],[-76.62152418731142,39.27133122204614],[-76.62152358269877,39.27132573173829],[-76.6215229526013,39.27132023954677],[-76.6215223051165,39.27131474819998],[-76.62152165068356,39.27130925593],[-76.62152099856362,39.27130376456824],[-76.62152035802738,39.27129827414454],[-76.62151973949959,39.27129278559332],[-76.62151915110178,39.27128729713917],[-76.62151860440792,39.2712818115217],[-76.62151810869355,39.27127632787001],[-76.62151767206576,39.27127084711107],[-76.62151730611772,39.27126536838139],[-76.62151701895166,39.27125989350866],[-76.62151682215598,39.27125442253017],[-76.62151672268378,39.27124895546843],[-76.62151673211855,39.27124349326143],[-76.6215168597358,39.27123803503836],[-76.6215171148015,39.27123258172979],[-76.6215174904009,39.27122712610737],[-76.6215179796099,39.27122166274421],[-76.6215185766197,39.27121619432388],[-76.62151928025234,39.27121072444558],[-76.62152008586759,39.27120525399513],[-76.62152099345097,39.2711997856748],[-76.62152199719391,39.27119432216822],[-76.62152236261959,39.27119251190793],[-76.62152309709155,39.27118886437603],[-76.6215242873257,39.27118341678334],[-76.62152556673257,39.27117798028723],[-76.62152693182135,39.27117255757861],[-76.62152838026465,39.27116715045165],[-76.62152990857155,39.27116176159728],[-76.62153151440994,39.27115639371037],[-76.62153319429363,39.27115104858111],[-76.6215349447366,39.27114572799986],[-76.62153676456064,39.2711404355659],[-76.62153865144334,39.27113517217243],[-76.62154067718944,39.27112994615777],[-76.62154286961102,39.2711247576115],[-76.6215452125035,39.27111960287839],[-76.6215476873495,39.27111447739492],[-76.62155028026216,39.27110937751318],[-76.62155297271437,39.27110430047136],[-76.62155574734767,39.27109924170949],[-76.62155858795748,39.27109419757241],[-76.62156147833927,39.27108916440486],[-76.62156439997085,39.27108413854398],[-76.6215673378113,39.27107911543757],[-76.62157027449253,39.27107409232733],[-76.62157319381477,39.2710690646573],[-76.62157607725588,39.27106402876466],[-76.62157890860651,39.2710589818949],[-76.62158167167183,39.27105391859131],[-76.62158435949884,39.27104883883145],[-76.62158706236626,39.27104376362379],[-76.62158980226808,39.27103869754306],[-76.62159256762546,39.27103363875037],[-76.62159535150464,39.27102858362039],[-76.62159814463493,39.27102353212317],[-76.62160093892844,39.27101847972887],[-76.62160372627814,39.2710134255106],[-76.62160649626414,39.27100836763326],[-76.62160924311137,39.27100330247514],[-76.6216119552364,39.27099822909821],[-76.62161462570536,39.27099314387709],[-76.62161724525235,39.27098804588111],[-76.62161980693885,39.27098293238568],[-76.6216223003497,39.27097780065488],[-76.62162471738266,39.27097264886115],[-76.6216270487767,39.27096747517309],[-76.62162928875203,39.27096227686982],[-76.62163144424733,39.27095705667597],[-76.62163352799534,39.27095181733486],[-76.6216355446218,39.27094656066293],[-76.62163750338789,39.27094128849158],[-76.6216394100733,39.27093600354169],[-76.62164127163106,39.27093070583561],[-76.62164309499502,39.27092539899885],[-76.62164488827224,39.27092008395825],[-76.62164665840606,39.2709147625377],[-76.62164841002233,39.27090943655364],[-76.6216501535409,39.27090410784113],[-76.62165189242862,39.27089877821296],[-76.62165363710548,39.27089344950413],[-76.62165539219718,39.27088812353114],[-76.62165716696482,39.27088280212531],[-76.62165896603406,39.27087748710308],[-76.62166079750716,39.27087218029211],[-76.62166266832757,39.27086688351624],[-76.62166458543382,39.27086159950016],[-76.6216665557789,39.27085632826626],[-76.62166858630142,39.27085107253915],[-76.62167068510362,39.2708458341465],[-76.6216728071158,39.27084058952325],[-76.62167492228033,39.270835325061],[-76.6216770433155,39.27083004620544],[-76.62167917944404,39.27082476199384],[-76.62168134337949,39.27081947877252],[-76.62168354666693,39.27081420468563],[-76.62168580086107,39.2708089460756],[-76.62168811635293,39.27080371018211],[-76.6216905046877,39.27079850514925],[-76.6216929785789,39.27079333732324],[-76.62169554841277,39.27078821484449],[-76.62169822573915,39.27078314495624],[-76.62170102210807,39.27077813490192],[-76.62170394907409,39.27077319102398],[-76.62170701817762,39.27076832236732],[-76.62171024097802,39.27076353437366],[-76.62171411813101,39.27075903853388],[-76.62171891673611,39.27075494650229],[-76.62172433615477,39.27075113390564],[-76.62173007574349,39.27074747727155],[-76.62173583486852,39.27074385132609],[-76.62174131404528,39.27074013260071],[-76.62174621147649,39.27073619671857],[-76.6217502276776,39.27073192021129],[-76.6217530851388,39.27072718778798],[-76.62175529968151,39.27072219207218],[-76.62175721129658,39.27071706657133],[-76.62175885002723,39.27071182759597],[-76.62176024129576,39.27070648873948],[-76.62176141282785,39.27070106630492],[-76.62176239119974,39.2706955747901],[-76.62176320414672,39.27069002869661],[-76.62176387824024,39.27068444342306],[-76.62176444005182,39.27067883436796],[-76.6217649184755,39.27067321603668],[-76.62176534008762,39.27066760292698],[-76.62176573029595,39.27066201133451],[-76.62176611684046,39.27065645486005],[-76.62176652861035,39.27065094890965],[-76.62176694251538,39.27064547719517],[-76.62176730545099,39.27064000171353],[-76.62176761973006,39.27063452337283],[-76.62176789114193,39.27062904309255],[-76.62176811969628,39.27062355907116],[-76.62176831117762,39.27061807312886],[-76.62176846790364,39.27061258527307],[-76.62176859219679,39.27060709461057],[-76.62176868752395,39.27060160295396],[-76.62176875736162,39.27059611031452],[-76.62176880519117,39.27059061580263],[-76.62176883332538,39.27058512032656],[-76.62176884524074,39.27057962389751],[-76.62176884557266,39.27057412653033],[-76.62176883547025,39.27056863003034],[-76.6217688184197,39.27056313260715],[-76.62176879789271,39.27055763517277],[-76.62176877736088,39.27055213863919],[-76.62176876030074,39.27054664301749],[-76.62176874903471,39.27054114741447],[-76.62176874703457,39.27053565274201],[-76.6217687577719,39.27053015991213],[-76.62176878356443,39.27052466893222],[-76.62176879778791,39.27051917431204],[-76.6217687819058,39.270513675091],[-76.621768737077,39.27050817127297],[-76.62176866793199,39.27050266377352],[-76.62176857563448,39.27049715169567],[-76.62176846365125,39.27049163685214],[-76.62176833430006,39.27048611925036],[-76.62176819105251,39.27048059980229],[-76.62176803506752,39.27047507851164],[-76.62176787098036,39.27046955539337],[-76.62176769878143,39.27046403224898],[-76.62176752426964,39.27045850819637],[-76.62176734744028,39.27045298413625],[-76.62176717291896,39.27044746188514],[-76.62176700187415,39.27044193964517],[-76.62176683776794,39.27043642012983],[-76.62176668292759,39.2704309015451],[-76.6217665408151,39.27042538660442],[-76.62176641375305,39.27041987441451],[-76.62176630289537,39.27041436587978],[-76.62176621403617,39.270408861019],[-76.6217661460071,39.2704033616299],[-76.621766104607,39.27039786683034],[-76.62176609214885,39.27039237752858],[-76.62176610979134,39.27038689372835],[-76.62176616100133,39.27038141724231],[-76.62176624810137,39.27037594717725],[-76.6217663745583,39.2703704853458],[-76.62176654153566,39.27036503085091],[-76.62176675365927,39.27035958550913],[-76.6217670120926,39.27035414842334],[-76.62176732146628,39.27034872050924],[-76.62176768177058,39.27034330356835],[-76.62176809765046,39.27033789581404],[-76.6217685945665,39.27033250363375],[-76.62177013582121,39.27032728776363],[-76.62177294480851,39.27032229756447],[-76.62177664284188,39.27031748497676],[-76.62178085122052,39.2703128046434],[-76.62178519357587,39.27030820851247],[-76.6217892923805,39.27030364852842],[-76.62179339292136,39.2702991975424],[-76.62179776504142,39.27029488704937],[-76.62180229664193,39.27029065903935],[-76.62180687910534,39.27028645461284],[-76.62181139916935,39.27028221665688],[-76.62181574821157,39.2702778871728],[-76.62181981643658,39.27027341086034],[-76.62182367897599,39.27026882399209],[-76.62182742017919,39.27026417277867],[-76.6218310677811,39.27025947172164],[-76.62183464836276,39.27025473441812],[-76.62183818734148,39.27024997536217],[-76.62184171129819,39.27024520815085],[-76.62184524681388,39.27024044638121],[-76.6218504763903,39.27023354174158],[-76.62185181285817,39.27022260895625],[-76.62185317829136,39.27021167716485],[-76.62185455762524,39.27020074631898],[-76.62185593116936,39.27018981455363],[-76.62185728153659,39.2701788827136],[-76.62185859135903,39.27016794804067],[-76.6218598421003,39.2701570095744],[-76.62186101637326,39.27014606815963],[-76.62186210268578,39.27013510574395],[-76.6218629248921,39.27012412266107],[-76.62186319195519,39.27011315040139],[-76.6218624239694,39.27010221624433],[-76.62186050507715,39.2700913153129],[-76.62185846439876,39.27008043470688],[-76.62185654543084,39.27006954818732],[-76.62185455109693,39.27005866953189],[-76.62185234568545,39.2700478226243],[-76.62184974475667,39.27003704200051],[-76.62184616028952,39.27002641944667],[-76.62184241810384,39.27001581890396],[-76.62183893460023,39.270005169652],[-76.62183538501613,39.26999452559166],[-76.62183201171776,39.26998385507588],[-76.6218290547535,39.2699731264501],[-76.6218265872441,39.26996231833144],[-76.62182423353977,39.2699514655409],[-76.62182205268266,39.26994057907778],[-76.62182014774517,39.26992967098399],[-76.62181862066004,39.26991874969461],[-76.62181757335033,39.26990782544627],[-76.62181730710864,39.26989689920924],[-76.62181814534097,39.26988595400962],[-76.62181956539574,39.26987499266819],[-76.62182100055314,39.26986402416925],[-76.6218218980234,39.26985305303808],[-76.62182256496554,39.26984206675228],[-76.62182326095949,39.26983106524701],[-76.62182379124235,39.26982006320809],[-76.62182396104646,39.26980907622211],[-76.62182357792689,39.26979811898239],[-76.62182254339878,39.26978718846958],[-76.62182134355389,39.26977618356155],[-76.62182002113883,39.26976512871673],[-76.62181850986597,39.26975406785917],[-76.62181674343805,39.26974304671427],[-76.62181465323536,39.26973211190094],[-76.62181217412436,39.26972130824765],[-76.62180923981268,39.26971068057915],[-76.62180578168076,39.26970027551421],[-76.6217996320003,39.26969022569069],[-76.62178972471943,39.26968160408931],[-76.62177806726895,39.26967587100907],[-76.62176481014487,39.2696730548579],[-76.62175037738541,39.2696718689068],[-76.62173582763245,39.26967110863898],[-76.62172174948235,39.26967013910938],[-76.62170764641318,39.26966949647554],[-76.62169352171723,39.26966899789277],[-76.62167940434897,39.26966842907224],[-76.62166531733921,39.26966760002668],[-76.62165125105747,39.26966657828245],[-76.62163719575298,39.26966545388471],[-76.62162314530032,39.26966428896641],[-76.62160909388152,39.26966308801281],[-76.62159505396725,39.26966146823873],[-76.62158101142607,39.26966034117306],[-76.62156695455373,39.2696605976348],[-76.62155289867022,39.2696615377788],[-76.62153883876809,39.26966279677903],[-76.62152477057117,39.26966408997995],[-76.62151068864479,39.26966513272221],[-76.6214965867666,39.26966578806945],[-76.62148246099025,39.26966636136836],[-76.62146832307702,39.26966682022928],[-76.62145418615826,39.26966709263331],[-76.62144005986502,39.2696671110541],[-76.6214259573193,39.26966680527427],[-76.6214118727753,39.26966616626773],[-76.62139779890056,39.26966526517118],[-76.62138373302686,39.26966416773195],[-76.6213696771162,39.26966294061295],[-76.62135562849059,39.26966165136298],[-76.62134158679429,39.2696603666375],[-76.62132755792243,39.26965906753944],[-76.62131354837085,39.26965762257803],[-76.62129955085983,39.26965609298187],[-76.6212855557296,39.26965455168174],[-76.62127155449814,39.26965306800922],[-76.62125753635642,39.26965171308994],[-76.62124349513519,39.26965055716366],[-76.62122942607887,39.26964962273414],[-76.62121533647682,39.26964884677137],[-76.62120123347412,39.26964819326776],[-76.62118711957116,39.26964762800225],[-76.62117299959058,39.26964711586057],[-76.62115887950448,39.2696466235337],[-76.6211447629767,39.2696461159036],[-76.62113064996886,39.2696456001763],[-76.62111653319623,39.26964513848104],[-76.62110241391859,39.26964471190583],[-76.62108829338612,39.26964430334024],[-76.62107417286818,39.26964389207065],[-76.62106005477871,39.26964346008959],[-76.62104594153631,39.26964298848881],[-76.62103183324685,39.26964245745185],[-76.6210177595693,39.2696415211805],[-76.62100375126808,39.26964006087314],[-76.6209897643024,39.26963851145723],[-76.6209757857281,39.26963690982231],[-76.62096180834695,39.26963530188418],[-76.62094782496541,39.26963373265798],[-76.62093382722644,39.2696322480557],[-76.62091981645234,39.26963081745558],[-76.62090580605414,39.26962931659532],[-76.62089179580579,39.26962778781012],[-76.6208777819516,39.26962628333228],[-76.62086376075534,39.26962485179106],[-76.6208497284709,39.26962354361714],[-76.62083568250627,39.26962241014588],[-76.62082162027903,39.26962150091097],[-76.62080753923067,39.26962086094238],[-76.6207934395344,39.26962045781313],[-76.62077932723923,39.26962024380222],[-76.6207652025569,39.26962017927663],[-76.62075107033434,39.26962022461831],[-76.62073693077853,39.26962034109511],[-76.62072278873653,39.26962048908891],[-76.62070864673305,39.26962062987504],[-76.62069450498468,39.26962072291973],[-76.6206803694974,39.26962072860876],[-76.6206662404735,39.26962060911053],[-76.62065211815866,39.26962031848689],[-76.62063799898506,39.26961987384092],[-76.62062388147129,39.26961933551897],[-76.62060976528507,39.26961876567282],[-76.62059565011347,39.26961822285125],[-76.62058153330639,39.26961776919844],[-76.62056741569515,39.26961746596909],[-76.62055329342272,39.26961738431126],[-76.62053914020983,39.26961767096473],[-76.6205249658422,39.26961822957922],[-76.62051078851603,39.26961890798422],[-76.62049662642285,39.26961955490992],[-76.62048249892736,39.26962001638814],[-76.62046842422141,39.26962014114905],[-76.62045442167003,39.2696197752244],[-76.62044038175945,39.26961837780119],[-76.62042647607186,39.26961550175361],[-76.6204132651968,39.26961141732168],[-76.62040132892497,39.26960583813472],[-76.620391240482,39.26959775538735],[-76.62038383427115,39.26958846077228],[-76.62038244553972,39.26957749757366],[-76.62038862483813,39.26956745870207],[-76.62039854820817,39.26955895782828],[-76.62041156455699,39.2695565119861],[-76.62042547657333,39.26955646957664],[-76.62043973212366,39.26955719662852],[-76.62045410688519,39.26955816817131],[-76.62046837537578,39.26955885923097],[-76.62048250730463,39.26955908325114],[-76.62049664930859,39.26955915687441],[-76.62051079133668,39.26955922599224],[-76.62052491986636,39.26955943558412],[-76.6205390236881,39.26955993153779],[-76.62055309175621,39.26956082911553],[-76.62056714112757,39.26956197254012],[-76.62058117918869,39.26956328076648],[-76.62059520849806,39.2695647087647],[-76.6206092316094,39.26956621240549],[-76.6206232510715,39.26956774846035],[-76.62063727059683,39.26956927280379],[-76.62065129158017,39.26957074130284],[-76.6206653165798,39.26957210892745],[-76.62067934929846,39.26957333335366],[-76.62069339345325,39.2695743695552],[-76.62070744928477,39.26957517249458],[-76.62072152053415,39.26957569264178],[-76.62073560871632,39.2695758633451],[-76.62074971243152,39.26957572963821],[-76.6207638266977,39.26957535636019],[-76.62077795001893,39.26957480655971],[-76.6207920797405,39.26957414328179],[-76.62080621204902,39.26957342956768],[-76.6208203465979,39.26957273027131],[-76.62083447841971,39.26957210752952],[-76.62084860485523,39.26957162528798],[-76.6208627294387,39.26957127274895],[-76.62087685996046,39.26957089320449],[-76.62089099270828,39.26957053078001],[-76.62090512503724,39.26957024671905],[-76.62091925314863,39.26957010136064],[-76.62093337208003,39.26957015594076],[-76.62094747682578,39.26957047980218],[-76.6209615658135,39.2695711504057],[-76.6209756441742,39.26957207498896],[-76.6209897171879,39.26957313286656],[-76.62100379128385,39.26957420515821],[-76.62101787405003,39.26957517298738],[-76.62103196710693,39.26957594988583],[-76.62104606381855,39.2695766934661],[-76.62106016171334,39.26957743254461],[-76.62107426083462,39.26957815901473],[-76.6210883623892,39.26957886387265],[-76.62110246642524,39.26957953811081],[-76.62111657183678,39.26958017181732],[-76.62113067982588,39.26958075688908],[-76.6211447915995,39.26958128432246],[-76.62115890489281,39.26958174420157],[-76.62117302201854,39.26958213743477],[-76.62118714175546,39.26958247572802],[-76.62120126406013,39.26958276718803],[-76.62121538772568,39.26958302081865],[-76.62122951387727,39.26958324292873],[-76.62124364131274,39.26958344162141],[-76.62125776883003,39.26958362499965],[-76.62127189639547,39.26958379936868],[-76.62128602511503,39.26958397464051],[-76.62130015264215,39.26958415621215],[-76.62131428009242,39.26958435219408],[-76.62132840626381,39.26958457068929],[-76.62134252717992,39.26958490536457],[-76.62135664648561,39.26958532470495],[-76.62137077967263,39.26958553150775],[-76.62138491532164,39.2695857112938],[-76.62139904229186,39.2695859973405],[-76.62141314712999,39.26958652201696],[-76.62142722353758,39.26958737988313],[-76.62144128378048,39.26958844397076],[-76.62145533286409,39.26958964493707],[-76.62146937453402,39.26959093235122],[-76.62148341137699,39.2695922557788],[-76.62149744947061,39.2695935620941],[-76.62151149023308,39.26959480266053],[-76.6215255385735,39.26959592615021],[-76.62153959708803,39.26959688032716],[-76.62155369254734,39.26959720858967],[-76.62156783049905,39.2695967398102],[-76.6215819649789,39.26959627011711],[-76.62159608919379,39.26959598684764],[-76.62161021337008,39.26959571078245],[-76.62162433757031,39.26959543021182],[-76.62163846185689,39.26959513342597],[-76.62165258396979,39.26959480960851],[-76.62166670396182,39.26959444885112],[-76.62168082758862,39.26959405837851],[-76.62169500487279,39.26959381940556],[-76.6217092096706,39.269593636367],[-76.62172338964193,39.26959332804037],[-76.62173749013836,39.26959271139439],[-76.62175146114181,39.26959160431338],[-76.62176541310252,39.2695897216106],[-76.62177931880993,39.26958651553315],[-76.62179205785701,39.26958173386178],[-76.62180287294875,39.26957504988262],[-76.62181221239184,39.26956649386437],[-76.62181972275562,39.26955693300693],[-76.62182532317404,39.26954697236437],[-76.62182964981969,39.2695363996034],[-76.62183255872374,39.26952548358937],[-76.62183385471857,39.26951453265637],[-76.62183415967903,39.26950362537193],[-76.62183406037241,39.26949268706049],[-76.62183364019978,39.26948172429591],[-76.62183298488455,39.26947074275878],[-76.62183217667365,39.26945974811863],[-76.6218313001315,39.26944874605226],[-76.62183043982259,39.2694377422366],[-76.62182967799369,39.26942674234103],[-76.62182910036313,39.269415752947],[-76.62182871156122,39.26940477497017],[-76.62182834825808,39.26939379617465],[-76.62182800001958,39.26938281742758],[-76.6218276714857,39.26937183784315],[-76.6218273649742,39.26936085742886],[-76.62182708048012,39.26934987708542],[-76.62182682263874,39.26933889682775],[-76.62182659261373,39.26932791575889],[-76.62182639155897,39.26931693478324],[-76.62182622411451,39.26930595301501],[-76.6218260914296,39.2692949722595],[-76.62182601784392,39.26928399169422],[-76.621826040449,39.26927300963712],[-76.62182613374135,39.26926202780762],[-76.62182627454959,39.26925104523033],[-76.62182643737516,39.26924006272387],[-76.62182659904188,39.26922908021368],[-76.62182673405599,39.26921809761758],[-76.62182681807766,39.26920711575806],[-76.62182682676735,39.26919613545744],[-76.62182670103536,39.26918515472392],[-76.62182630412343,39.26917417672023],[-76.62182576235124,39.26916320005153],[-76.62182523564364,39.26915222343131],[-76.6218248839256,39.26914124557304],[-76.62182481612956,39.26913026592667],[-76.62182489435264,39.26911928494895],[-76.6218250826718,39.26910830252418],[-76.62182536948461,39.26909732131728],[-76.6218257374089,39.26908634127236],[-76.6218261725342,39.26907536324526],[-76.62182668064483,39.26906438905623],[-76.62182726059642,39.26905341599932],[-76.62182789385284,39.26904244311395],[-76.62182855955079,39.26903147123377],[-76.62182923799054,39.26902050029538],[-76.62182990948212,39.26900952843382],[-76.62183055547497,39.26899855739087],[-76.62183115627907,39.26898758530155],[-76.62183169103598,39.26897661209884],[-76.6218321400461,39.26896563771918],[-76.62183248593223,39.26895466120585],[-76.62183269740665,39.26894368245819],[-76.62183278026355,39.26893270149477],[-76.62183275188492,39.26892171837159],[-76.62183263196094,39.26891073495364],[-76.62183243903725,39.26889975039979],[-76.62183219048148,39.26888876746831],[-76.6218319059934,39.26887778622265],[-76.62183160063255,39.26886680761198],[-76.62183127673096,39.26885582894159],[-76.62183093313463,39.26884484930699],[-76.62183056751641,39.26883387050222],[-76.62183017987623,39.26882289252723],[-76.6218297667426,39.26881191447013],[-76.62182932927429,39.26880093633466],[-76.62182886514411,39.26878995991478],[-76.62182837203923,39.26877898430238],[-76.62182785111851,39.26876800950109],[-76.62182729890556,39.26875703549979],[-76.62182671539558,39.26874606319915],[-76.62182608320185,39.26873509344406],[-76.6218253745131,39.26872412614489],[-76.62182460323979,39.26871316044567],[-76.62182378212401,39.2687021972882],[-76.62182292972088,39.26869123402994],[-76.62182206108523,39.26868027252092],[-76.62182119129587,39.26866931010733],[-76.62182033657116,39.26865834774225],[-76.62181951198508,39.26864738367264],[-76.62181873375592,39.26863641885149],[-76.62181801696255,39.26862545062509],[-76.62181735811882,39.26861448078374],[-76.6218167456368,39.26860350929009],[-76.62181616908252,39.26859253701131],[-76.62181561687275,39.26858156300941],[-76.62181507857353,39.26857058815144],[-76.62181454374601,39.26855961420544],[-76.62181400196592,39.26854864023698],[-76.62181336818655,39.26853622925134],[-76.62180829489989,39.26845621413255],[-76.6218046174381,39.26832564353967],[-76.6218111428732,39.26821276800882],[-76.62181221147625,39.26814011299957],[-76.6218119810551,39.26813159912232],[-76.6218074227551,39.26810281309071],[-76.6217950323536,39.26805049275566],[-76.62178397612008,39.268008975093],[-76.62176634710981,39.26797659524468],[-76.6217497755474,39.26794649413311],[-76.62172190142617,39.26791392274458],[-76.62169335369586,39.2678883760517],[-76.62165403905588,39.26786248300011],[-76.62162132240394,39.26784772483983],[-76.62158557111077,39.26783856866196],[-76.62153766165116,39.26782745646324],[-76.62148907064031,39.26782029010403],[-76.62144974578172,39.26781935896791],[-76.62142388277539,39.26781712096731],[-76.62141903521987,39.26781413191325],[-76.62140536653355,39.26780142758828],[-76.62138253887571,39.26779476489443],[-76.62135748915821,39.26779430220798],[-76.62133356685312,39.26779755070284],[-76.62130738277176,39.26779706813431],[-76.62123219305711,39.26779568078079],[-76.62117858859506,39.26779468908563],[-76.62116155537653,39.26779446389579],[-76.62114795907613,39.26779664402598],[-76.62113896325305,39.26779990460175],[-76.62112988436321,39.26780222811256],[-76.62111668770748,39.2678035664118],[-76.6211060392863,39.26780424906664],[-76.62108839208719,39.26780442272603],[-76.62106793659699,39.26780404055673],[-76.6210445773955,39.26780361118193],[-76.62102190067492,39.26780319211178],[-76.62100408697786,39.26780286259392],[-76.6209883310166,39.26780280634102],[-76.62097080116276,39.26780292271246],[-76.62095391987938,39.26780636049606],[-76.62093940802863,39.26781007525411],[-76.62092494012444,39.26781358928146],[-76.6209055523104,39.2678176837325],[-76.62088411673203,39.26782224086868],[-76.62086333662732,39.26782513910514],[-76.62084769707207,39.26782628483057],[-76.62082593355223,39.26782802150079],[-76.62081047333656,39.26782943532771],[-76.6207942790101,39.26783139264618],[-76.62077474968832,39.26783290772658],[-76.62075918965766,39.26783261607505],[-76.62074219860017,39.26783230628858],[-76.62073037069295,39.26783208703698],[-76.62072199048309,39.26783117001629],[-76.62071900259741,39.26782909310942],[-76.62071848736439,39.26782380845471],[-76.6207188638194,39.26781147998997],[-76.62071934460714,39.26778960464665],[-76.62072120446473,39.26771524523916],[-76.6207295495807,39.26758656988346],[-76.6207310824361,39.26755604427983],[-76.62073147403157,39.26754825392081],[-76.62073500032231,39.26753284870317],[-76.62074068700227,39.26751563631998],[-76.6207485069928,39.26749908117859],[-76.62075845022366,39.26748701870662],[-76.62076521017491,39.26747800225257],[-76.62077233945698,39.26747294945935],[-76.62101157229813,39.26738464861446],[-76.62110587335873,39.26734984194927],[-76.62114112251389,39.26733730711631],[-76.62115954188435,39.26732531338935],[-76.62116955795322,39.26731087669862],[-76.62119383051852,39.26724395555199]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":295402.154237,"geom:bbox":"-76.6316563343,39.2672439556,-76.6203824455,39.2745906047","geom:latitude":39.270245,"geom:longitude":-76.624425,"iso:country":"US","lbl:latitude":39.2697,"lbl:longitude":-76.623958,"lbl:max_zoom":18,"mps:latitude":39.2697,"mps:longitude":-76.623958,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"name:eng_x_variant":["Ridgley's Cove"],"reversegeo:latitude":39.2697,"reversegeo:longitude":-76.623958,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108797011,102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"bbedb917efb448a33df56d1353a3071e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797015,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797015,"wof:lastmodified":1566624047,"wof:name":"Ferry Branch","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797017.geojson b/fixtures/microhoods/1108797017.geojson new file mode 100644 index 0000000..fc2656e --- /dev/null +++ b/fixtures/microhoods/1108797017.geojson @@ -0,0 +1 @@ +{"id":1108797017,"type":"Feature","bbox":[-76.63220592698049,39.25514711414235,-76.61523943429565,39.26767136016182],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.61548783029305,39.25974423039617],[-76.6169881533964,39.25614801167234],[-76.61707364839758,39.25616660347475],[-76.61714389126816,39.25617141203801],[-76.61718759717206,39.25617451446344],[-76.61722450285113,39.25617359439024],[-76.61722728001367,39.2561733863582],[-76.61728615737333,39.25616714768778],[-76.61732932264427,39.25616200356103],[-76.61734674915,39.25615903467035],[-76.61736658187114,39.2561543882797],[-76.6174252122282,39.25613980221048],[-76.61743247208582,39.25613722624534],[-76.61748829135745,39.25612075378341],[-76.61752904478156,39.25610628507396],[-76.61758013786664,39.25609306696455],[-76.61764812152317,39.25607806716724],[-76.61770772557963,39.25606831945494],[-76.61775436587067,39.25605900781921],[-76.61783452324029,39.25604267206964],[-76.61789838883212,39.25602642827405],[-76.61796482478371,39.25601222764359],[-76.61799519972219,39.25600347461213],[-76.6180507935259,39.25598687233943],[-76.61809805991024,39.25597143107016],[-76.61812482229766,39.25596525596585],[-76.6181758877607,39.25595670168879],[-76.61823446018991,39.25594808442273],[-76.61830106131681,39.25593416698065],[-76.61838625964626,39.25591931819704],[-76.6184496036746,39.25590737537968],[-76.61851298883771,39.25589316452578],[-76.61857357388732,39.25588343037079],[-76.61863449034631,39.2558756249063],[-76.61868645558026,39.25586842808612],[-76.61874244542388,39.2558608722934],[-76.61880795447998,39.25585286816882],[-76.61887433175438,39.25584478305439],[-76.61895592760622,39.25583600145372],[-76.61899605780854,39.25583156928202],[-76.61904591873399,39.25582160461819],[-76.61909432415445,39.25580715839023],[-76.61917695690565,39.25577742901647],[-76.61927851390111,39.25573999541807],[-76.61935999096879,39.25570450715576],[-76.61942177842944,39.2556759648038],[-76.61949744930733,39.25564312029953],[-76.619578966861,39.25560544134624],[-76.61963376331536,39.25558248441944],[-76.61966765849975,39.25556644793233],[-76.61969448034472,39.25555193334446],[-76.6197092458229,39.25554583702263],[-76.61972769351168,39.25554079031007],[-76.61974210549425,39.255539905589],[-76.61974596034526,39.25554030540348],[-76.61979512431114,39.25555029920377],[-76.61981135840746,39.25555618875187],[-76.61983250064209,39.25556743214554],[-76.61986188806523,39.25557965434194],[-76.61988914603367,39.25558775672658],[-76.61992041145463,39.25558810204446],[-76.62005524912058,39.25558132057165],[-76.6201101769718,39.25557815644311],[-76.62013533378526,39.25557295572287],[-76.62015539858402,39.25556796101475],[-76.62016761471455,39.25556236892584],[-76.6201806665064,39.25556061591354],[-76.62019246748902,39.25555812292568],[-76.62020715731754,39.25555489704712],[-76.62022158097386,39.25555334573603],[-76.62023901695413,39.25555245271941],[-76.62025589549586,39.25555158762277],[-76.62026986630117,39.25555087165539],[-76.62028409785509,39.2555501439189],[-76.62029898262986,39.25555010918274],[-76.62031280150161,39.25555202116264],[-76.62032766131044,39.25555210524361],[-76.62034189402739,39.25555137660307],[-76.62035403836825,39.25555075470539],[-76.6203655313073,39.25555039912948],[-76.6203768148628,39.25555019960929],[-76.62038577103883,39.25555081856868],[-76.62039542115595,39.25555253240351],[-76.6204033202867,39.25555387576542],[-76.62041849689487,39.25555949878621],[-76.62043257272752,39.25556622439079],[-76.62044374004289,39.2555712957879],[-76.62045575535406,39.25557487014483],[-76.62046887786224,39.25557960826964],[-76.62048035643916,39.25558128927448],[-76.62049467079908,39.25558111034833],[-76.62051154817148,39.25558024791346],[-76.62052652260314,39.25557948111312],[-76.62054384849152,39.25557859310006],[-76.62055904890914,39.25557781531587],[-76.62057346474313,39.25557707642977],[-76.62058949763347,39.25557640401937],[-76.62060300912744,39.25557556582523],[-76.6206179117093,39.25557436821354],[-76.62062852533971,39.255572048797],[-76.62064469502519,39.2555681097323],[-76.62067156361516,39.25555803496272],[-76.62068429229336,39.25555235169681],[-76.62069979205879,39.25554585587984],[-76.62071273873283,39.25554100562546],[-76.6207267764724,39.25553708578509],[-76.62073926696796,39.25553304384555],[-76.62075282227433,39.255528774747],[-76.62076433191746,39.25552550880178],[-76.62077698289639,39.25552113769513],[-76.62078993841095,39.25551549838725],[-76.62080183343338,39.25550927735946],[-76.62081306077273,39.25550311722812],[-76.62082539649793,39.25549724802024],[-76.62083979955199,39.25549412652656],[-76.62085421551036,39.25549336058342],[-76.6208708286284,39.25549251075518],[-76.6208859393566,39.25549377017835],[-76.62090156804638,39.25549675264122],[-76.62092128283807,39.25550022389982],[-76.62093897597902,39.25550280677587],[-76.62096046799878,39.25550607478694],[-76.62098551025679,39.25550798958904],[-76.6210044854928,39.25550719150428],[-76.6210262419018,39.25550607811608],[-76.62104684170232,39.25550502494562],[-76.62106621769176,39.2555040326774],[-76.62108776024215,39.25550261142546],[-76.6211101886804,39.2555010561113],[-76.62113082904784,39.25549999945392],[-76.62115106880427,39.25549910994413],[-76.62116856927969,39.25549806747004],[-76.62118944064092,39.25549714666299],[-76.62120846394578,39.25549602442354],[-76.62122508400688,39.25549517546835],[-76.62124188356621,39.25549434240295],[-76.62125520057886,39.25549564013023],[-76.6212682765694,39.25549846388175],[-76.6212800988865,39.25550064854625],[-76.62129221259266,39.25550055340255],[-76.621300520895,39.25550012711224],[-76.62130966189106,39.25549911350327],[-76.62136476635078,39.25549300924814],[-76.62137131748892,39.25549228363588],[-76.62139143654439,39.25548904268875],[-76.62140407217214,39.25548493448962],[-76.6214172338035,39.25548039201294],[-76.62143296994621,39.25547496247105],[-76.6214485896298,39.25547029640356],[-76.62146185363633,39.25546915015058],[-76.6214750516472,39.25546821266171],[-76.6214911491208,39.25546389672641],[-76.62150719767943,39.25545897621535],[-76.62152187914862,39.25545339193263],[-76.62153446340328,39.25544783421677],[-76.62155357590524,39.2554397582733],[-76.6215687337983,39.25543499702151],[-76.6215877452826,39.25543195874717],[-76.62160649601219,39.25542893314099],[-76.62162071362546,39.25542494531508],[-76.621635516278,39.25541857683902],[-76.62164643153736,39.25541269576158],[-76.62165960300598,39.25540608512413],[-76.6216779405328,39.25539906686824],[-76.62169025184949,39.25539558633007],[-76.6217163190325,39.25539323193188],[-76.62173189371548,39.25539243718639],[-76.62174761212464,39.25539163119184],[-76.62176668791427,39.25539065405489],[-76.62178572313383,39.25538968038727],[-76.62180237561779,39.25538882875259],[-76.62181653296469,39.25538810239296],[-76.62183236608968,39.25538772822487],[-76.62184574196677,39.25538928369468],[-76.62186304978425,39.25539264525645],[-76.62187826191682,39.25539552986557],[-76.62189595170888,39.2553993952816],[-76.62191301821039,39.25540477648342],[-76.62192678352474,39.25540869771629],[-76.62194157325014,39.25541279789582],[-76.62195756300969,39.25541608043592],[-76.6219753591165,39.25541586660003],[-76.62199477283167,39.25541496257549],[-76.62201225779778,39.25541552059205],[-76.6220489795131,39.25541838164071],[-76.62206651121053,39.25541951989475],[-76.62208331520434,39.25541915422231],[-76.62209997665812,39.25541835932276],[-76.62211865151376,39.25541891664914],[-76.62213559649028,39.25542014308152],[-76.62215384843923,39.25541918034506],[-76.62217137583184,39.25541895120246],[-76.62218847863234,39.25542165359443],[-76.62220633127973,39.2554221361998],[-76.62222182832078,39.25542177981394],[-76.62224043364563,39.25542277557168],[-76.62225661252106,39.25542252856636],[-76.62227353989803,39.25542227315743],[-76.62228874775191,39.25542204734467],[-76.62230309365574,39.2554244246816],[-76.62231741444793,39.25542564264651],[-76.62233002438217,39.25542700373367],[-76.62234137107552,39.25542973983347],[-76.62235295010841,39.2554317065221],[-76.62236789172744,39.25543099973304],[-76.62238037212427,39.2554303588898],[-76.62239400680434,39.25542965870347],[-76.62240484846687,39.25542910626751],[-76.6224142318489,39.25542826089512],[-76.62246926462849,39.2554231881726],[-76.62250976619275,39.25541724810797],[-76.62252350712052,39.25541334421344],[-76.62253378169243,39.25540984172613],[-76.62253696086438,39.25540875841288],[-76.62255160064882,39.25540445926477],[-76.62256620218261,39.25540059866633],[-76.62258241745164,39.25539677478004],[-76.6225966544834,39.25539304541918],[-76.62261134994121,39.25539025883346],[-76.62262623284566,39.25538664684333],[-76.62264281333846,39.25538320785005],[-76.62265778918169,39.2553815093876],[-76.62267026838943,39.25538087211283],[-76.62268313275335,39.25538035857893],[-76.62269843238414,39.25537943040839],[-76.62271094752636,39.25537878964166],[-76.62272481898901,39.25537822439235],[-76.62274154795892,39.25537736656494],[-76.62275560469371,39.25537638485125],[-76.62277282372374,39.25537378830844],[-76.6227872057313,39.25537133577975],[-76.62280348088355,39.25536823086885],[-76.62281621667867,39.2553653118546],[-76.62282980343205,39.2553631621267],[-76.62284689907193,39.25536045528289],[-76.62286322776191,39.25535664973754],[-76.62287671639925,39.25535290442745],[-76.62288983951667,39.25534882826048],[-76.62290193936595,39.25534457585814],[-76.62291570290111,39.2553396811446],[-76.62293113040008,39.25533452784776],[-76.62294596770066,39.25532946273057],[-76.6229590809951,39.25532527122589],[-76.6229740699582,39.25532109925405],[-76.62298803883904,39.25531593315923],[-76.62300059801186,39.25531049050434],[-76.62301513412754,39.25530497763],[-76.62302925883634,39.25530122893996],[-76.62304161481424,39.25529783127435],[-76.62305426459896,39.25529386886787],[-76.6230666765831,39.25528799696738],[-76.62307669370193,39.25528169581805],[-76.62308668223051,39.25527597827426],[-76.62309767916784,39.25527148901225],[-76.62311048912566,39.25526856209721],[-76.62312290729328,39.25526806960224],[-76.62313410548465,39.25526735340267],[-76.62314755600313,39.25526488973321],[-76.62317370721856,39.25525869170073],[-76.62318836438011,39.25525372505931],[-76.62320090491971,39.25525025951085],[-76.6232126718392,39.25524695091459],[-76.62322521884973,39.25524357546115],[-76.62323782806708,39.2552400488768],[-76.62324926568367,39.25523678876255],[-76.62326256004776,39.25523296531866],[-76.62327555786845,39.25522869414046],[-76.62328883259916,39.25522464003382],[-76.6233026953668,39.25521959426413],[-76.62331502780897,39.25521407698515],[-76.6233281935936,39.25520740939406],[-76.62334881419018,39.25520044954537],[-76.62336202255213,39.25519645556902],[-76.62337646268234,39.25519242770991],[-76.62339008097148,39.25518891065122],[-76.62340636585662,39.2551859236888],[-76.62341776737186,39.25518356871503],[-76.62343447765082,39.25518076416756],[-76.62344961908092,39.25517710606221],[-76.6234599448138,39.25517311724273],[-76.62347134966542,39.2551681671594],[-76.62348135909698,39.25516396023843],[-76.62349229998107,39.25515976441032],[-76.62350336786405,39.25515434214118],[-76.6235155787846,39.25515185283642],[-76.62352451082569,39.25515090143898],[-76.62354390312164,39.25514746502859],[-76.62356932294706,39.25514720963763],[-76.6235825245135,39.25514711414235],[-76.62359785221938,39.2551487450291],[-76.62361338946354,39.25515018922563],[-76.62362935788688,39.25515050703952],[-76.6236448731982,39.25515215473531],[-76.62365934763854,39.25515345049535],[-76.62367295615785,39.25515592348549],[-76.62368932039661,39.25515785133306],[-76.62370554380831,39.25515989943002],[-76.62371924495147,39.25515998117035],[-76.62373523832615,39.2551593082041],[-76.62375252233912,39.25515842408757],[-76.62377059441388,39.25515749925673],[-76.62378572039461,39.25515675144275],[-76.62380082008421,39.25515615487178],[-76.62381636312534,39.25515585066762],[-76.62383132215459,39.25515796585711],[-76.62384552474364,39.25516136942313],[-76.62386054050461,39.25516458553014],[-76.62387756159362,39.25516412391433],[-76.62389048926988,39.2551634600227],[-76.62390517037096,39.25516270806603],[-76.62391882127501,39.25516221313009],[-76.62393219628329,39.25516196502031],[-76.62394867061427,39.25516126564154],[-76.62396659434627,39.25516034841236],[-76.62398112247064,39.25515960406322],[-76.62399637732275,39.25515902417784],[-76.62401066865074,39.25515989414527],[-76.62402484526656,39.25516164109249],[-76.62404188487,39.25516402684244],[-76.6240579042554,39.25516719209156],[-76.62407353863392,39.25516845548356],[-76.62409114012175,39.2551682235895],[-76.62410637301835,39.25516785169715],[-76.62412028700861,39.25516777823904],[-76.62413415842833,39.25516721102174],[-76.62414887298105,39.25516736171202],[-76.62416242032685,39.25516913815526],[-76.62417557904735,39.25517166459424],[-76.62418905423978,39.25517525224954],[-76.62420238976506,39.25517896015934],[-76.62421667434425,39.25518241888969],[-76.62422921560312,39.25518558919777],[-76.62424265146323,39.2551917925537],[-76.62425402837883,39.25519801814391],[-76.62426888031061,39.25520679862412],[-76.62428151613868,39.25521333540225],[-76.6242951146429,39.25522098951031],[-76.6243052378752,39.25522788846217],[-76.62432202710224,39.25523840010642],[-76.62433247673002,39.25524426781917],[-76.62434249103423,39.25525117182383],[-76.62435016633458,39.25525694238357],[-76.62435713333852,39.25526234946852],[-76.624364181201,39.25526780275096],[-76.62437039347412,39.25527045557195],[-76.62437668872043,39.25527056578768],[-76.6243831322836,39.25527023510085],[-76.62438950513051,39.25526991229439],[-76.62440723304137,39.25526900247839],[-76.62442395674073,39.25526540966045],[-76.62443632350141,39.25526477724299],[-76.62444612211503,39.25526427532859],[-76.62445762711832,39.25526491113737],[-76.62446731755139,39.25526755616138],[-76.62447731551819,39.25527207666798],[-76.62448728826297,39.25527807975848],[-76.62450652918655,39.25529317872533],[-76.62451608606104,39.25530179811754],[-76.62452446056021,39.25531009395502],[-76.62453422053349,39.25532018224824],[-76.62454280127508,39.25533044782445],[-76.6245513587951,39.25534225634261],[-76.62455730453055,39.25535193159542],[-76.6245642680679,39.25536259824563],[-76.62457115192433,39.25537233955108],[-76.62458182421449,39.25538299373763],[-76.62459121116312,39.25539088656045],[-76.62459856669616,39.25539775772146],[-76.62460792708654,39.25540672957901],[-76.62461736209062,39.25541561429973],[-76.62462632578766,39.25542335804045],[-76.62463665763349,39.25543091338973],[-76.62464763952441,39.25543779884258],[-76.62465839372247,39.25544414220452],[-76.62466875939027,39.25544815133244],[-76.62467897228524,39.25545344446737],[-76.62468775717701,39.25546038594761],[-76.62469512141897,39.25546736612319],[-76.62470642073319,39.25547842314425],[-76.62471517045883,39.25548719577281],[-76.62472307917274,39.25549484785871],[-76.62473155947141,39.25550264499311],[-76.62474193696515,39.25551296583871],[-76.6247507171491,39.25552211508315],[-76.62475964267266,39.25553116750832],[-76.62476703750733,39.25553849997759],[-76.6247749492416,39.25554624034484],[-76.62478278928069,39.25555351658658],[-76.62479127505914,39.25556093721267],[-76.62480020156933,39.25556914741906],[-76.62480753520936,39.25557534562231],[-76.62481647165579,39.25558233441679],[-76.62482556508283,39.25558899673315],[-76.62483300928783,39.25559510160807],[-76.6248418889639,39.25560011843652],[-76.62485110168187,39.25560284477281],[-76.62485804043722,39.25560571877546],[-76.62486539709155,39.25560822209534],[-76.62487338896632,39.25560891419681],[-76.62488380954973,39.25560823948373],[-76.62489491198754,39.25560767143714],[-76.62490660781609,39.25560706835355],[-76.62491879038126,39.25560731895085],[-76.62493189463291,39.25560877231491],[-76.6249439756124,39.25560873343832],[-76.62495592585454,39.25560887880052],[-76.62496844766368,39.25560829546365],[-76.62498006400797,39.25560935944173],[-76.62499198659523,39.25561188814586],[-76.62500354724891,39.25561362481798],[-76.62501423829725,39.25561394990954],[-76.62502372053393,39.25561456749271],[-76.62503603156205,39.25561638042097],[-76.62506930254641,39.25562221104887],[-76.62509414639783,39.25562486567331],[-76.62510536125266,39.25562429166039],[-76.62511485976138,39.25562380314418],[-76.62512311244976,39.25562183969452],[-76.62513050116526,39.25561849440905],[-76.6251409454988,39.25561595515782],[-76.62514932795531,39.25561552612963],[-76.62515655961755,39.25561515377862],[-76.62516352124356,39.25561479677896],[-76.62517008072147,39.25561446101429],[-76.62517894761385,39.2556140056066],[-76.62520465882115,39.25561498844743],[-76.62521864383287,39.25561749849015],[-76.62523225356055,39.25562086666672],[-76.62525087460531,39.25562636313832],[-76.62526579292884,39.25563270352023],[-76.62527819833235,39.25563814862353],[-76.62528444082136,39.25564167433691],[-76.62528857469997,39.25564387369477],[-76.62529442541728,39.25564677212317],[-76.62530372263335,39.25565039585905],[-76.6253125540914,39.25565314166001],[-76.62532174539012,39.25565597958621],[-76.62533097819784,39.25565775834018],[-76.62534034605999,39.25565853496885],[-76.62535134352694,39.25565985545604],[-76.62536244507054,39.25566077453144],[-76.62537296725945,39.25566170346732],[-76.62538228721343,39.2556629960802],[-76.62539344665721,39.25566414052955],[-76.62540520679437,39.25566540309338],[-76.62542660942744,39.25566765393376],[-76.62544030630205,39.25567009997703],[-76.62545003476096,39.25567280178905],[-76.6254582571088,39.25567658692461],[-76.62546700805777,39.25568207619842],[-76.62547750242192,39.25568893749846],[-76.62548636332436,39.25569554677692],[-76.62549474256066,39.2557029751187],[-76.62550195653118,39.25571122664889],[-76.62550911073211,39.25571938791116],[-76.62551745511286,39.25572749441884],[-76.62552464580331,39.25573466945485],[-76.62553329294228,39.25574226889339],[-76.62554184412194,39.25574939061789],[-76.62555036784335,39.25575556824868],[-76.62555907452527,39.25576132580332],[-76.62556950470653,39.25576630158155],[-76.62558130740157,39.25576696795449],[-76.6255936435424,39.25576732255976],[-76.62560430899627,39.25576723316236],[-76.62561679392745,39.25576705588536],[-76.62562660813737,39.25576690342029],[-76.62563591433715,39.2557675122857],[-76.62564480335891,39.25577143104577],[-76.62565141830737,39.25577793406644],[-76.62565408555105,39.25578647645183],[-76.62565429721556,39.25579467231947],[-76.62565397751887,39.25580168648617],[-76.62565449609339,39.25581056431332],[-76.62558099001214,39.25595494834101],[-76.6255711381716,39.25598287227815],[-76.62563121589707,39.25602411546666],[-76.62564683848869,39.25603446376223],[-76.62569883377817,39.25607088185191],[-76.62571331960625,39.25608104546026],[-76.62573611171052,39.25609974420217],[-76.62574770550104,39.25610971663272],[-76.62576686621738,39.25609375753421],[-76.62580557687295,39.25612096070893],[-76.62578820880346,39.25613576984075],[-76.62580938370205,39.25615113777664],[-76.62586634168336,39.25619213760089],[-76.62588140941244,39.25620291736618],[-76.62593515491734,39.2562425449587],[-76.6259487810447,39.25625162397557],[-76.62600046714705,39.25628851024382],[-76.62601441103793,39.25629819468065],[-76.6260650714844,39.25633690621299],[-76.6260786460206,39.25634698760538],[-76.62613183213554,39.25638749427566],[-76.6261456810376,39.25639784226041],[-76.62619911381769,39.25643772635303],[-76.62621437834983,39.25644745640503],[-76.6262660953749,39.25648534430632],[-76.62627950390497,39.2564948378455],[-76.62633537101256,39.25653649783077],[-76.62634770610002,39.25654544117953],[-76.62639909825066,39.2565832234978],[-76.62641125630634,39.25659212484108],[-76.6264685724528,39.25663499009583],[-76.6264802537318,39.25664378542598],[-76.6265357080955,39.25668356049381],[-76.62654712027624,39.25669131457379],[-76.62660099402106,39.25673137282874],[-76.6266118438694,39.25673986644637],[-76.62663903229462,39.2567594356186],[-76.6266851951544,39.25676497709501],[-76.6267007771127,39.25677694289782],[-76.62673035597722,39.25672995286956],[-76.62676407218039,39.25674334097405],[-76.62677783345401,39.25674945229073],[-76.62684530751605,39.25677735005129],[-76.62685735892288,39.25678187147322],[-76.62692249315758,39.25680746389346],[-76.62693483964037,39.25681271947029],[-76.62699084258887,39.25683548775617],[-76.62699970207576,39.25683227943932],[-76.62701104595874,39.25682879256922],[-76.62701743773043,39.25682687712165],[-76.62702733892822,39.25682563218344],[-76.6270317070175,39.25682649998649],[-76.62703566224819,39.25682788261818],[-76.62704090438847,39.25683087000255],[-76.62704630699575,39.25683440916657],[-76.62705089199187,39.25683897891473],[-76.62705415193331,39.25684413175498],[-76.62705673053355,39.25684951843239],[-76.6270602948848,39.25685605311708],[-76.6270651113426,39.25686199637061],[-76.62707079049116,39.25686869360461],[-76.62707551438803,39.25687505361942],[-76.62707988450374,39.25688148997653],[-76.62708350411216,39.25688809329433],[-76.62708573528371,39.25689499395985],[-76.62708734255358,39.25690178094862],[-76.62708893379634,39.25690875164318],[-76.62708967823792,39.25691613400185],[-76.62709043404796,39.2569235578319],[-76.62709136775739,39.25693130290038],[-76.62709186746925,39.25693851423654],[-76.62709235990577,39.25694622817823],[-76.6270929523727,39.25695452973848],[-76.62709361589914,39.25696253787396],[-76.62709461269581,39.25697106591031],[-76.62709554968242,39.25697906950957],[-76.6270959142563,39.2569868623127],[-76.62709616974878,39.25699402603315],[-76.62709642052074,39.25700142664068],[-76.62709683603946,39.25700834405881],[-76.62709860778158,39.25701668539475],[-76.62710055148273,39.25702449402195],[-76.62710274010607,39.25703199626493],[-76.6271050543906,39.25703917733263],[-76.62711522044903,39.25706228369564],[-76.6271190198734,39.25706972799972],[-76.62712317648152,39.25707711038417],[-76.62712839056817,39.25708500055671],[-76.62713291806355,39.25709169773316],[-76.62713792861244,39.25709907472179],[-76.62714250138926,39.25710597471443],[-76.62714735322479,39.25711334849635],[-76.6271521574266,39.25712052666008],[-76.62715718666398,39.25712787578335],[-76.6271626087646,39.25713564951486],[-76.62716806469132,39.25714249826454],[-76.62717483473232,39.25714996551036],[-76.62718120134835,39.2571568135479],[-76.62718749636292,39.25716383790827],[-76.6271943114519,39.25717133231898],[-76.62720054430316,39.257179383357],[-76.62720486108782,39.25718715537867],[-76.62720739046833,39.25719441729529],[-76.62720900692982,39.2572034283076],[-76.62721272370094,39.25721183256476],[-76.62721874272786,39.2572189028871],[-76.62722455156039,39.25722782992577],[-76.62722623176005,39.25723595658575],[-76.6272270933033,39.25724619474962],[-76.627227474655,39.25725498745761],[-76.62722773731528,39.25726277453151],[-76.62722800100232,39.25727433672805],[-76.62722704924401,39.25728149481341],[-76.62722643236096,39.25728930882038],[-76.62722540501434,39.2572980637277],[-76.62722456237013,39.25730650665477],[-76.62722275511118,39.25731506992473],[-76.62722022328471,39.25732305170045],[-76.62721746485448,39.25733182273033],[-76.62721714327532,39.25734120861426],[-76.62721762759935,39.25735069073659],[-76.62721937252134,39.25736127489736],[-76.62721996046147,39.25736978001516],[-76.62721945400459,39.25737951120703],[-76.62721936248084,39.25739009764437],[-76.62722231680607,39.25739983982317],[-76.6272261363215,39.25740875874422],[-76.62722966019234,39.25741771455881],[-76.62723234355437,39.25742588313595],[-76.62723402483155,39.2574346880771],[-76.62723428088687,39.25744240937356],[-76.62723392222212,39.25745069440089],[-76.62723294756483,39.25745956477346],[-76.62723304187601,39.25746785934565],[-76.62723262421636,39.2574719348962],[-76.62723273498068,39.25747577342077],[-76.62723290332318,39.2574807822259],[-76.62723327140455,39.25748658704332],[-76.62723579483875,39.25749233655012],[-76.62724040782882,39.25749688115718],[-76.6272477810368,39.2574989330933],[-76.627255216466,39.25750060960615],[-76.62725852137426,39.25750559233718],[-76.62725722888119,39.25751144502849],[-76.62725331840751,39.25751653366479],[-76.62724887737198,39.25752160440287],[-76.62724631411164,39.25752740802163],[-76.62724594063984,39.25753410044377],[-76.62724618730108,39.2575414046545],[-76.62724680720646,39.2575491189988],[-76.62724869747134,39.25755718056844],[-76.62725178302782,39.2575653224977],[-76.62725541030748,39.25757334274128],[-76.6272571480085,39.25757736208005],[-76.62726100296304,39.25758637479184],[-76.6272647574491,39.25759576550711],[-76.62726862925624,39.25760421709359],[-76.6272727622745,39.25761212904821],[-76.62727742607845,39.25761979587705],[-76.62728336990106,39.25762773609831],[-76.62729104639467,39.25763535934399],[-76.62729882932804,39.25764212989967],[-76.62730929456654,39.25765131672133],[-76.62732058182114,39.25766128351383],[-76.62732969773441,39.25766861317117],[-76.62734106940407,39.25767795059269],[-76.62735323985265,39.25768719776897],[-76.62736402383031,39.25769415889851],[-76.62737350005985,39.25769994938242],[-76.62738298965058,39.25770540211998],[-76.62739185864818,39.25771055113012],[-76.62740081171084,39.25771579859011],[-76.62741000811337,39.25772104141689],[-76.6274198379609,39.25772612681691],[-76.62742862921762,39.25773063603226],[-76.62743768085302,39.25773520552382],[-76.6274458310684,39.2577393334806],[-76.62745466043073,39.25774408872453],[-76.62746171959358,39.257750130053],[-76.62746793737642,39.25775576967138],[-76.62747439173086,39.25776070744093],[-76.62748284133045,39.25776563262384],[-76.62749085778107,39.25776986103909],[-76.62749870220769,39.25777375202081],[-76.62750768845427,39.25777797810684],[-76.6275162381832,39.25778082463233],[-76.62752563916165,39.25778263437114],[-76.62753550732056,39.25778461763786],[-76.62754412970618,39.25778620421733],[-76.62755390326993,39.25778788812742],[-76.6275637880297,39.2577900200711],[-76.62757401123206,39.25779279173192],[-76.62758395459774,39.25779567870333],[-76.62759421984353,39.25779860813012],[-76.62760422553214,39.25780043779588],[-76.62761427411178,39.25780160102843],[-76.62762468742928,39.25780236727734],[-76.62763440836721,39.25780259897579],[-76.62764413759518,39.25780279647058],[-76.62765487735761,39.25780273504543],[-76.62766460751102,39.25780253530272],[-76.62767567601858,39.2578023118791],[-76.62768775614423,39.25780206463897],[-76.62769882118522,39.25780183940062],[-76.62770922226994,39.25780162466693],[-76.62771960594223,39.25780141618245],[-76.62773133053517,39.25780091559558],[-76.62774264965188,39.25780018492697],[-76.62775437866748,39.25779994557455],[-76.62776604518353,39.25779969341209],[-76.6277776903566,39.25779931327173],[-76.62778765442668,39.25779891699217],[-76.62779792345592,39.25779781277398],[-76.62780753421322,39.25779673979675],[-76.62781811236437,39.2577952384172],[-76.62782764231575,39.25779344546859],[-76.62783744793548,39.25779122732963],[-76.62784754404925,39.25778862908574],[-76.62785801387383,39.25778414311483],[-76.62786865514238,39.25777789578408],[-76.62787890250436,39.25777274704178],[-76.6278892831877,39.25776979299198],[-76.62790053603291,39.25776888374608],[-76.62791083512052,39.2577686749767],[-76.62792114117391,39.25776846352617],[-76.62793144721309,39.25776825477696],[-76.62794269636449,39.25776738695068],[-76.62795433864842,39.25776424142589],[-76.62796436108223,39.25775956216437],[-76.62797439671465,39.25775501715826],[-76.62798510789752,39.25775222808689],[-76.62799595795812,39.25775057442218],[-76.6280059667842,39.25774782726137],[-76.62801655125905,39.25774180132623],[-76.62802430148575,39.2577340477463],[-76.62802716259775,39.25772512299271],[-76.62802887596594,39.25771831951491],[-76.62803558576547,39.25771144358943],[-76.62804467680252,39.25770518592734],[-76.62805522351908,39.25770105688652],[-76.628063451105,39.25769507032132],[-76.6280721566025,39.25768897807798],[-76.62808238139554,39.25768746744842],[-76.6280936943315,39.25768702767456],[-76.62810451252858,39.2576848190258],[-76.62811447573142,39.25767994139485],[-76.6281247760086,39.25767485945549],[-76.62813576731823,39.2576738863051],[-76.62814738165086,39.25767275388918],[-76.62815881335773,39.25766998960287],[-76.62816960901722,39.25766743768415],[-76.62817906364634,39.25766519948912],[-76.62818920973231,39.25766323011015],[-76.62820077011189,39.25766155885881],[-76.62821060554049,39.25765961641813],[-76.62822072099537,39.25765730104452],[-76.62823106292785,39.25765289120071],[-76.6282342859195,39.25764587811665],[-76.6282328496264,39.25763960512453],[-76.62822822472585,39.25763378142856],[-76.628221495043,39.25762764841027],[-76.62822065017447,39.25762039185029],[-76.62822132680486,39.25761243210397],[-76.628220506008,39.25760522516241],[-76.62821668531068,39.25759783307273],[-76.6282166410004,39.25759014577799],[-76.62822378227303,39.25758538801266],[-76.62823431488847,39.25758372431318],[-76.62824337779404,39.2575808399228],[-76.6282523614294,39.25757472963041],[-76.62826031400617,39.2575681521776],[-76.6282684620564,39.25756385068316],[-76.62827845233629,39.25756264645605],[-76.6282875695825,39.25756155296116],[-76.62829749118,39.25755797679276],[-76.62830651232606,39.25755355195199],[-76.62831626922365,39.25755222087534],[-76.62832604121282,39.25755353900454],[-76.62833432455812,39.25755658820106],[-76.62834256868796,39.25756048849862],[-76.62834995098304,39.25756479501656],[-76.62835836200456,39.2575684652446],[-76.62836644550414,39.25756985188928],[-76.62837528508365,39.25756978708671],[-76.62838553565499,39.25756998707086],[-76.62839511883719,39.25757173876693],[-76.62840504267069,39.25757503725823],[-76.62841465246314,39.25757834556408],[-76.62842381579097,39.25758194970974],[-76.62843285895403,39.25758681815278],[-76.62844297446934,39.25759267632935],[-76.62845088161161,39.25759875811389],[-76.62845258791748,39.25760524634055],[-76.62845562782259,39.25761084792734],[-76.62846216141563,39.25761482477385],[-76.62847295554181,39.25761720993196],[-76.62848125559238,39.25762105454901],[-76.62848498375755,39.2576266511065],[-76.62849114724875,39.25763249407249],[-76.62849952890004,39.25763712982073],[-76.6285085292932,39.25763998940982],[-76.62851657680903,39.25764094806547],[-76.62852663416331,39.25764154016086],[-76.62853503317592,39.25764219546763],[-76.6285440517481,39.25764291038286],[-76.62855310144171,39.25764387761087],[-76.62856196426719,39.25764889229855],[-76.62856630307051,39.25765536903381],[-76.6285715363716,39.2576607334476],[-76.62858118624203,39.25766170077041],[-76.62858983664249,39.25766081385279],[-76.62859989267419,39.25765767405585],[-76.62860910663792,39.25765359839905],[-76.62861830306102,39.25764955331217],[-76.6286268815274,39.25764602781479],[-76.62863692923425,39.25764137830116],[-76.62864656896481,39.25763542588667],[-76.62865567421315,39.25762931865052],[-76.62866534673546,39.25762462741339],[-76.62867685382933,39.25762295054211],[-76.62868553862108,39.25762611898386],[-76.62868696059334,39.25763247929952],[-76.62868324150658,39.25763865311286],[-76.62867638853578,39.2576443396087],[-76.62866897231083,39.25764983426094],[-76.62866160880702,39.25765521738414],[-76.62865352379187,39.25766098195231],[-76.62864571081134,39.25766657173047],[-76.6286382664882,39.25767189964978],[-76.62863099562901,39.257677955037],[-76.62862706844275,39.25768470468187],[-76.62863007114635,39.25769188339106],[-76.62863898566609,39.25769521380015],[-76.62864696751022,39.25769898173448],[-76.6286531991848,39.25770530501678],[-76.62865924390559,39.25771104310902],[-76.62866769661207,39.25771671765532],[-76.62867749368463,39.25772011210461],[-76.6286873798267,39.25772176294794],[-76.62869708888894,39.25772647764316],[-76.628705806551,39.25773421758471],[-76.6287090962837,39.25774256549544],[-76.6287105120816,39.25775210009746],[-76.62871081220067,39.25776095289336],[-76.62871112021273,39.25777006873848],[-76.62870993047439,39.25777822773586],[-76.62870973603656,39.25778704563951],[-76.62871696445268,39.25779397648521],[-76.62872524059321,39.25780106917842],[-76.62873053024154,39.25780851273544],[-76.62873404143862,39.25781638754155],[-76.62873993526127,39.25782461757727],[-76.62874754458336,39.25783160457222],[-76.62875665505418,39.25783779192691],[-76.62876537448854,39.25784320338412],[-76.62877489919491,39.25784861198195],[-76.62878383305795,39.25785356562479],[-76.6287929835734,39.25785962969795],[-76.62880113044127,39.25786840280998],[-76.62880524957544,39.25787767572594],[-76.62880956830347,39.25789109911057],[-76.62881362210751,39.25790200851498],[-76.628817569699,39.25791439574365],[-76.62881989087755,39.25792229110586],[-76.62882231505496,39.25793131725738],[-76.62882257046437,39.257939860047],[-76.62881680084125,39.25794864141069],[-76.62880886986073,39.25795707274906],[-76.6288006972452,39.25796473947184],[-76.62879230011934,39.2579719118635],[-76.62878389692544,39.2579791364799],[-76.62878041660512,39.25798750712271],[-76.62878291352068,39.25799547420173],[-76.62878463200394,39.25800451523746],[-76.62878291348058,39.25801253834898],[-76.62877781001143,39.25802000129077],[-76.62877107152325,39.25802749689554],[-76.62876373654613,39.25803406552544],[-76.62875852169037,39.25804133625064],[-76.62875857269428,39.25804974868336],[-76.6287613957582,39.25805760690015],[-76.62876752519834,39.25806465497053],[-76.62877438142283,39.25807186477418],[-76.62878229168103,39.25808002461664],[-76.62878982089437,39.25808815623095],[-76.62879726622491,39.25809748379933],[-76.62880347424598,39.25810501582848],[-76.62881007858401,39.25811297967712],[-76.6288168557432,39.25812046576399],[-76.6288234506325,39.25812757835634],[-76.62883022568498,39.25813458162415],[-76.62883726632867,39.25814109211021],[-76.62884481325169,39.25814716912527],[-76.62885265390639,39.25815379743742],[-76.62885954216588,39.25816086681728],[-76.62886498712527,39.25816830815593],[-76.62886828804935,39.25817740373374],[-76.62886861215327,39.25818699163049],[-76.62886927615993,39.25819516999903],[-76.6288713642993,39.25820376181731],[-76.62887534943312,39.25821340632343],[-76.62887922719827,39.25822031846116],[-76.62888496680881,39.25822880111685],[-76.62889094178286,39.25823570276776],[-76.62889716806748,39.25824240524211],[-76.62890288286565,39.25825098059755],[-76.6289073524782,39.25825948716221],[-76.62891022803962,39.25826861111961],[-76.62891255313049,39.25827731357948],[-76.62891427245181,39.25828486924898],[-76.6289147057703,39.25829440074205],[-76.62891475775362,39.2583019646538],[-76.62891199798291,39.25830969532939],[-76.62890632458733,39.25831558103212],[-76.62890119742366,39.25832070460973],[-76.6289050400004,39.25832681405103],[-76.62891334660979,39.2583280950719],[-76.62892399465555,39.25833074275021],[-76.62893328010692,39.25833605419593],[-76.6289420376768,39.25834216385464],[-76.62894887163093,39.25835031758166],[-76.6289523839716,39.25835798340533],[-76.62895192370377,39.25836690225458],[-76.62894858720496,39.25837480135355],[-76.62894663136021,39.25838278768592],[-76.62894681455957,39.25839029706529],[-76.62894782190403,39.25839840535713],[-76.62895459886431,39.2584050510183],[-76.62896212403388,39.25841263674255],[-76.62896839402117,39.25842051395202],[-76.62897440007238,39.25842812460065],[-76.62898091473326,39.25843773746131],[-76.62898593181568,39.25844613585863],[-76.62899263310149,39.25845329561677],[-76.62900144358605,39.25845815246995],[-76.62901203968259,39.25845855165958],[-76.62902236296651,39.25845772223986],[-76.62903250589599,39.25845504387394],[-76.62904318284889,39.25845150065562],[-76.62905254038814,39.25844834510219],[-76.62906167959152,39.25844573021974],[-76.62907199233234,39.2584449223808],[-76.62908300505781,39.25844674429166],[-76.62909345318796,39.2584510685526],[-76.62910248548285,39.25845804650617],[-76.6291067727081,39.25846620839319],[-76.62910814499278,39.25847388366613],[-76.62910843734282,39.25848157264247],[-76.62910894408893,39.25848991805496],[-76.62911606072994,39.25849608737255],[-76.62912520170096,39.25850045163946],[-76.62913485099351,39.25850510035216],[-76.62914334477426,39.25850892661677],[-76.62915362454062,39.25851243514562],[-76.62916297039165,39.25851417792163],[-76.62917367821753,39.25851625738138],[-76.6291833859503,39.25851704017938],[-76.62919411683723,39.25851803248341],[-76.62920587191378,39.2585190361275],[-76.62921690489307,39.25852097609026],[-76.62922650841729,39.258524185224],[-76.62923673726289,39.25852790526517],[-76.62924772269398,39.2585309629277],[-76.62926589821235,39.25853655823383],[-76.62928106690558,39.25854129011648],[-76.6292942314023,39.25854552655301],[-76.62931566568888,39.25855277604047],[-76.629325779529,39.25855832967393],[-76.6293350847745,39.25856518686725],[-76.62934440792816,39.25857194323037],[-76.6293535407696,39.25858075274244],[-76.62935947999476,39.25858830190776],[-76.62936645386294,39.25859585794151],[-76.62937512858376,39.25860187092356],[-76.62938472402077,39.25860796337623],[-76.62939395905316,39.2586153995368],[-76.62940103723474,39.2586218407472],[-76.62940960542373,39.25862784258123],[-76.62941943212053,39.25863158565787],[-76.62942977721832,39.25863279560924],[-76.6294464681418,39.25863402918852],[-76.62945949433002,39.25863568987496],[-76.62947207686979,39.25863910385554],[-76.62948247751923,39.25864454308203],[-76.62949330546674,39.25864714443599],[-76.6295046316821,39.25864773954986],[-76.62951462376107,39.2586482133535],[-76.62952492110686,39.25864969337611],[-76.6295357915407,39.25865236872316],[-76.6295482962892,39.25865581487776],[-76.6295581808362,39.25865868798358],[-76.62956928747735,39.25866272603347],[-76.62957909733915,39.25866636725678],[-76.62958827988216,39.2586696579033],[-76.62959843346147,39.25867293269601],[-76.62960849953174,39.25867477048731],[-76.6296183085419,39.25867435734919],[-76.62962796213455,39.25867486250311],[-76.62963925589175,39.25867745990821],[-76.62965061000979,39.25867759390289],[-76.62965687087555,39.25867791270416],[-76.62966125058685,39.25867813549542],[-76.6296714201003,39.25868191025812],[-76.62968170614613,39.25868688971388],[-76.62969129548328,39.2586894952502],[-76.62970161253264,39.25868986557362],[-76.62971058386718,39.25868966867272],[-76.62972120075136,39.25868942201334],[-76.6297325267827,39.25869005403606],[-76.6297435900078,39.25869442161348],[-76.62975389774775,39.25869924169535],[-76.62976339897038,39.25870252522603],[-76.62977330314285,39.25870563707898],[-76.62978520823678,39.25870898583617],[-76.62979584070607,39.25871041644858],[-76.62980614319855,39.25871024625636],[-76.62981647138305,39.25871003741116],[-76.62982612392747,39.25870985616049],[-76.62983674486595,39.25871149841326],[-76.62984682409143,39.258715703443],[-76.62985416892504,39.2587219013583],[-76.62986175591102,39.25872921158373],[-76.62987061995925,39.25873603491571],[-76.62987967470738,39.25874139510062],[-76.62988871444041,39.25874563558322],[-76.62989832316433,39.25874785923817],[-76.62990767372901,39.25874870750721],[-76.62991844206806,39.25875341372797],[-76.6299278827246,39.25875720508731],[-76.62993826336745,39.25875715853493],[-76.62994818844302,39.25875604223549],[-76.62995735763387,39.25875389938028],[-76.62996765916434,39.25875324816085],[-76.62997797386622,39.25875340406989],[-76.62998957932213,39.25875600242336],[-76.63000003985098,39.25876219033027],[-76.6300076315198,39.2587677170409],[-76.63001582449633,39.25877458418643],[-76.63004288788134,39.25878201701772],[-76.63008728253602,39.25879632595518],[-76.63011643623315,39.25880574434094],[-76.63012951056655,39.25880906972307],[-76.63014418038892,39.25881461511685],[-76.63015943508168,39.25882020919074],[-76.63017397591099,39.25882560644861],[-76.63018979819975,39.2588314518188],[-76.63020766389957,39.25883827555034],[-76.63022188478244,39.25884392671183],[-76.63023826652856,39.25884958467606],[-76.63025173194036,39.25885368503536],[-76.6302653255471,39.25885230552654],[-76.63027609045407,39.25884744735274],[-76.63028693746838,39.25884506564666],[-76.63029894502559,39.25884521334592],[-76.63031021077383,39.25884785923945],[-76.63032528141949,39.25885231053893],[-76.63034588406796,39.25885865464974],[-76.63035562318234,39.25885809530557],[-76.6303637074725,39.25885335929661],[-76.6303706083946,39.25884580376239],[-76.6303766937232,39.25883756107706],[-76.63038099778731,39.25882895157666],[-76.63038530514753,39.25882171125326],[-76.6303905449205,39.25881163734726],[-76.6303905767835,39.25880284955851],[-76.63041978922944,39.25881256440626],[-76.6304209916954,39.25882506634185],[-76.63042725973756,39.25883402258535],[-76.6304341904557,39.25883921120163],[-76.63044921790107,39.25884572961093],[-76.63046266084285,39.25885236733774],[-76.63047752345243,39.25885872308646],[-76.63049387781203,39.25886697513947],[-76.6305060021959,39.25887561832459],[-76.63051733314377,39.25888354740542],[-76.63053322274398,39.25888871196061],[-76.63054697881836,39.25889418326807],[-76.63056166128449,39.25890131580165],[-76.63057828873275,39.25890785904506],[-76.63059845864606,39.25891387206894],[-76.63061401260661,39.25891785465094],[-76.6306322992791,39.25892172332247],[-76.63064758706903,39.25892386389377],[-76.6306650981437,39.25892715272854],[-76.63068618097076,39.25893207597764],[-76.63070120917995,39.25893711980023],[-76.63072018202448,39.25893960703704],[-76.63073788368457,39.25893944832194],[-76.630753574701,39.25893936074765],[-76.6307713777115,39.25894199202344],[-76.63078717626294,39.25894662390417],[-76.63080293869014,39.25895174118293],[-76.6308189872058,39.25895776913422],[-76.63083567288042,39.25895869443664],[-76.63085345069669,39.25895859719572],[-76.63087230380617,39.25895848892009],[-76.63089215151626,39.258958290088],[-76.63090977845613,39.25895824100577],[-76.63093033074914,39.25895846504037],[-76.63094818431856,39.25896095682923],[-76.63096650531033,39.25896179627511],[-76.63098461013365,39.25896142530797],[-76.6310042805406,39.25895967207567],[-76.63102367306564,39.2589574351555],[-76.63104485753937,39.25895440217943],[-76.63106556914634,39.25895250898634],[-76.63108545096307,39.25895198955552],[-76.63110905469487,39.25894829129516],[-76.63113211449331,39.2589438013482],[-76.63115711424793,39.25893857255556],[-76.63117816892341,39.25893375923103],[-76.63120264730406,39.2589283017977],[-76.63122631863111,39.25892296432909],[-76.631247152437,39.2589180656264],[-76.63127640629553,39.25891092072358],[-76.63130080056133,39.25890380919641],[-76.63131814561181,39.25890025338038],[-76.63133451376454,39.25889895632216],[-76.6313519428147,39.25889885791084],[-76.63136604549983,39.25889873193978],[-76.63138760080322,39.25889902750153],[-76.63141588926335,39.25889950903481],[-76.63143989851707,39.25889937541741],[-76.63146274288347,39.25890021817419],[-76.63148585036195,39.25890305064703],[-76.63151182298377,39.25890614882526],[-76.63153503650099,39.25890886632294],[-76.6315578530105,39.25891306703529],[-76.63158665575185,39.25891938441256],[-76.63160530918316,39.25892091118671],[-76.63163002087407,39.25892072298578],[-76.63164722720381,39.25892067517572],[-76.63167270800693,39.25892053261531],[-76.63169230845581,39.25892042114768],[-76.63171145131199,39.25892029473005],[-76.63173079613425,39.2589169730194],[-76.63174797381254,39.25891150518629],[-76.6317650414196,39.25890492005374],[-76.63178424106256,39.25889697423915],[-76.63180151499535,39.25888947817146],[-76.63182241691406,39.25888149084844],[-76.63184141467745,39.25887582873806],[-76.63186501532877,39.25886779762418],[-76.63190058542446,39.25885296540061],[-76.63191906214999,39.25884276357728],[-76.63193964425723,39.25882516854469],[-76.63196028771195,39.25880914734171],[-76.63197496764082,39.25879444958821],[-76.6319895558177,39.25878090993237],[-76.63200236315534,39.25876826005666],[-76.63201379263982,39.25875855497464],[-76.6320275598001,39.2587502849338],[-76.63204424306417,39.25874205915912],[-76.63206010495287,39.2587355990151],[-76.63207350980471,39.2587310588129],[-76.6320876193925,39.25872534801785],[-76.63209743109718,39.25872039030862],[-76.63210870035812,39.25871297987113],[-76.63211555481536,39.25870406753316],[-76.63212185685597,39.2586928691174],[-76.6321377393105,39.25867774364297],[-76.6321405815504,39.25867594380568],[-76.63214876226354,39.25867224926341],[-76.6321655542571,39.25866897082768],[-76.63218420353998,39.25867106407999],[-76.63220242871586,39.25867964873375],[-76.63220546515285,39.25868576184575],[-76.63220592698049,39.25869211370389],[-76.63220280268345,39.25869937671546],[-76.63219520818845,39.25870643656391],[-76.6321941236851,39.25870733123222],[-76.63213440311809,39.25874846146281],[-76.63211495363372,39.25876081040474],[-76.63207578147704,39.25878545517829],[-76.63205550665097,39.25879899053742],[-76.63203761928202,39.25881128671214],[-76.6320209077177,39.25882273264114],[-76.63200529035075,39.25883387213285],[-76.63199067896602,39.25884428875656],[-76.63197790220096,39.25885372118485],[-76.63197013652459,39.25886049223638],[-76.63196062676268,39.25886642821406],[-76.63195164723682,39.25886753143337],[-76.63194358486611,39.25886739086451],[-76.63193874645029,39.25886691720804],[-76.63193366795959,39.25887028637408],[-76.6319183590091,39.25887959285809],[-76.63190622962703,39.25888617727929],[-76.63189154073818,39.25889321396779],[-76.6318738394532,39.25890156804115],[-76.6318565039997,39.25891020339747],[-76.63184132421964,39.25891850501981],[-76.63182930427801,39.25892498528711],[-76.63181189748208,39.25893374652061],[-76.63179535657967,39.25894176463115],[-76.63177832963031,39.25894877505785],[-76.63176156212785,39.25895401628748],[-76.6317436753076,39.25895859734483],[-76.63172434609075,39.25896091925454],[-76.63170269660834,39.25896246913202],[-76.63168123071121,39.25896324942509],[-76.63165918400666,39.25896431433637],[-76.63163653849338,39.2589644441699],[-76.63162033533932,39.25896453295785],[-76.63160140883295,39.25896471858931],[-76.63158658335185,39.25896524856707],[-76.63156858415137,39.25896714675947],[-76.63155184348192,39.25897078647864],[-76.63153734092215,39.25897249836969],[-76.63151773930002,39.25897260980786],[-76.63150300883241,39.25897269239179],[-76.6314804197441,39.25897355829937],[-76.63146493960767,39.25897364393033],[-76.63145020915377,39.25897372380535],[-76.63143456098163,39.25897381521032],[-76.63141914158578,39.25897514498595],[-76.6313973084062,39.25897859845311],[-76.63138101776694,39.25897991467959],[-76.63136465937255,39.25898334479258],[-76.63133473899222,39.25898898064057],[-76.63132594484051,39.25899030418135],[-76.63130733402613,39.25899350742718],[-76.63129296298014,39.25899577367304],[-76.63127615054914,39.25900028687219],[-76.63125670737868,39.25900535748973],[-76.63124118092158,39.2590110114908],[-76.63122411460145,39.2590188954581],[-76.63120605107822,39.2590269240169],[-76.63118645313317,39.25903056101553],[-76.63116875524561,39.25903065855795],[-76.63115173982132,39.25903075373758],[-76.63113550090266,39.25903638296756],[-76.63112365221667,39.25904445085305],[-76.63110865469491,39.25905578403604],[-76.63109826512273,39.25906534186849],[-76.63108149271201,39.25907418695657],[-76.63106962585233,39.25908396533704],[-76.63106275561644,39.25909498896308],[-76.63106056396896,39.25910758921951],[-76.6310529783429,39.25911581011095],[-76.6310414675492,39.25912061466816],[-76.6310196164698,39.25912437877374],[-76.63100562307305,39.25912665247652],[-76.63099060412341,39.25912917516975],[-76.63097293126259,39.25913136254204],[-76.63095726453552,39.25913145022214],[-76.6309420879379,39.25913153493675],[-76.63092389641467,39.25913163629544],[-76.63090774186585,39.25913172874103],[-76.63089220458058,39.25913076562358],[-76.63088076457635,39.25912685816399],[-76.63086741707687,39.25912524346571],[-76.63085374012026,39.25912971962103],[-76.63084194798475,39.25913514840695],[-76.63082862117389,39.2591355704047],[-76.63081352374992,39.25913357638012],[-76.63080203199729,39.25913003986639],[-76.63078684316552,39.25912735376151],[-76.6307683313319,39.25912644162625],[-76.63075326516704,39.25912645730461],[-76.63073924841892,39.25912653663251],[-76.63072334184878,39.25912662442793],[-76.6307077666552,39.25912671236259],[-76.63068867713761,39.25912681986841],[-76.63067245830027,39.25912791103063],[-76.6306570095467,39.25913153306728],[-76.63064756042715,39.25913736554107],[-76.63064640489532,39.25914633715421],[-76.63064930487062,39.25915438202313],[-76.63065492896496,39.25916151667757],[-76.6306621811706,39.25916594334084],[-76.6306735620987,39.25917029201195],[-76.63068649746806,39.25917451135653],[-76.63070039723915,39.25917531531996],[-76.63071534986724,39.25917529929129],[-76.63073209049047,39.25917658508797],[-76.63074850742719,39.25917817432385],[-76.63076241514365,39.2591794557117],[-76.63077806797786,39.25917936801386],[-76.63079177420573,39.25917929040726],[-76.63081190887638,39.25917917806376],[-76.63082666488253,39.25917909474595],[-76.63084589112928,39.25917898854826],[-76.63086386434166,39.25917875950707],[-76.63088126475446,39.25917816565323],[-76.63090040384813,39.25917788532455],[-76.6309174019237,39.25917779102746],[-76.63093178368742,39.25917770652015],[-76.63094588703157,39.25917791028238],[-76.63096057805802,39.25918007325767],[-76.63097481012582,39.25918159254159],[-76.6309930992379,39.25918166623048],[-76.63101051484104,39.25918684182121],[-76.63102170167012,39.25919264819115],[-76.63103291186304,39.25920131547107],[-76.63104081623517,39.25921001289726],[-76.63104895255402,39.25922290412441],[-76.63105321202775,39.25923645604329],[-76.63105669542017,39.25924929661949],[-76.63107447580023,39.25927390650457],[-76.63108444182149,39.25928676744682],[-76.63109070688205,39.25930055626154],[-76.63109537905129,39.25931540748103],[-76.63109590192435,39.25933295607416],[-76.63109604984942,39.25934885598549],[-76.63109485346249,39.25936279971037],[-76.6310928327457,39.25937662014258],[-76.63108816423622,39.25939427583093],[-76.63108066207421,39.25940582712308],[-76.63107005628426,39.25941818475896],[-76.63105912688185,39.25943016215396],[-76.63104751465544,39.25944042684507],[-76.63103586910267,39.25944974652528],[-76.63102179331877,39.25946094567571],[-76.63101006130279,39.25947040289903],[-76.63099423839759,39.2594762234783],[-76.63098152812796,39.25947683118756],[-76.63096244231247,39.25948311621291],[-76.63094880725023,39.25948910489925],[-76.63093441301773,39.25949580820879],[-76.63092107047987,39.25950124654162],[-76.63090499767038,39.25950476576332],[-76.63089630735789,39.25950794247699],[-76.63089332110235,39.25951714704031],[-76.63089342050462,39.25952788720285],[-76.630899838156,39.25953795363469],[-76.63090280900826,39.25954596899382],[-76.63089721288044,39.25955305125244],[-76.6308937909671,39.25956381457539],[-76.63089048940695,39.25957527456977],[-76.63088989721625,39.25958598913828],[-76.63089057601384,39.25959671761037],[-76.63089687012207,39.25960469657571],[-76.63091063811214,39.25961392407642],[-76.63092472464895,39.25962294630102],[-76.63093010406723,39.25963035400531],[-76.63092789160525,39.25963670016398],[-76.63091670619643,39.25963952043986],[-76.63090649147003,39.25963838489309],[-76.63089679377764,39.25963563859694],[-76.63088739903422,39.25963301215357],[-76.63086129792651,39.25962204703298],[-76.63084748819058,39.25961483170963],[-76.6308348907691,39.25960866418536],[-76.63081931908607,39.25960538417682],[-76.6308031628277,39.25960511629596],[-76.63078850639569,39.2596051963211],[-76.63077223533564,39.25960739617781],[-76.63075710875906,39.25960764586653],[-76.63074256817745,39.25960772895251],[-76.63071335097683,39.25960976738677],[-76.63068314795433,39.2596104299437],[-76.6306678031346,39.25960986824384],[-76.63065677651866,39.25960666556273],[-76.6306526444109,39.25959915187543],[-76.6306530449142,39.25959343956738],[-76.63065754533604,39.25958717717544],[-76.63066868384976,39.25958112302163],[-76.63068005188467,39.25957571633961],[-76.63069413392469,39.25957201343648],[-76.6307238854944,39.2595683706192],[-76.63073126707886,39.25956553299507],[-76.6307316342456,39.25955954584784],[-76.630730624952,39.25955399664886],[-76.63072400585786,39.25955013766337],[-76.63071182000903,39.25954838067663],[-76.63070043690145,39.25954844666425],[-76.63068399999776,39.2595486742072],[-76.63066740084241,39.25955069016165],[-76.63064704057491,39.25955361036394],[-76.63062380415015,39.25955926705457],[-76.63060887076824,39.25956291592748],[-76.6305957678978,39.25956303864786],[-76.63057781071507,39.25956551151041],[-76.63056401969023,39.25956561584852],[-76.6305415527432,39.25956813126542],[-76.63052045305636,39.25957865249726],[-76.63050001666758,39.25959129441748],[-76.63048353451683,39.25960822111737],[-76.63046699624564,39.25962502063012],[-76.63044584251088,39.2596465832854],[-76.63042373110738,39.25967092989706],[-76.63039906840075,39.25970037312301],[-76.63036969320778,39.25973607355316],[-76.63033971716541,39.2597801249002],[-76.63032066786771,39.2598105135705],[-76.63030316874442,39.25984715213819],[-76.63028936984179,39.25988123066225],[-76.63027334118824,39.25992028791108],[-76.6302629701186,39.2599402594976],[-76.63025419544518,39.25995894531013],[-76.63024677560998,39.2599766742694],[-76.63023990465621,39.25999802423964],[-76.63023322659585,39.26002037917226],[-76.63022513283234,39.26004869903142],[-76.63021967187014,39.26006584415443],[-76.63021408539785,39.26008194849564],[-76.63020644605278,39.26009754914812],[-76.6302001686171,39.26011150388329],[-76.63019440554712,39.26012747615518],[-76.63018762929153,39.26014443337763],[-76.63018166856288,39.26015920160115],[-76.63017315851762,39.26017645782161],[-76.63016529807297,39.26019245951692],[-76.63015684564077,39.26020777476398],[-76.63014464127278,39.26022311422371],[-76.63013336061307,39.26023662803404],[-76.63011398650733,39.26026104625971],[-76.63011102377367,39.26026504534159],[-76.6300992146604,39.2602810201816],[-76.63008859335844,39.26029696273147],[-76.63007926608775,39.2603133903666],[-76.63006653504583,39.26033084496174],[-76.63005291474546,39.26034818145571],[-76.63003920687075,39.26036408995599],[-76.63002724707884,39.2603785122917],[-76.63001398423967,39.2603963993752],[-76.63000261535535,39.26041415730974],[-76.62999151092734,39.26043186112955],[-76.62997981536259,39.26045204830233],[-76.62996673592299,39.26047520094247],[-76.62995356169607,39.26050675293666],[-76.6299432646805,39.26052671031318],[-76.62993324947175,39.26054617495638],[-76.62992295615392,39.26056497665829],[-76.62991165237598,39.26058557130435],[-76.62989850428625,39.26060521523164],[-76.62988645894717,39.26062269718875],[-76.62986444434917,39.26064927069136],[-76.62984038887261,39.26067658989695],[-76.62983659298672,39.26067992698362],[-76.6298336168899,39.26068314955468],[-76.62983053569727,39.26068741668433],[-76.62982774418076,39.26069168292543],[-76.62982509300568,39.26069570009641],[-76.62982275717896,39.26069990381952],[-76.6298211532971,39.2607041738044],[-76.62981969867006,39.26070870728378],[-76.62981831720437,39.26071365354514],[-76.62981695902745,39.2607187998502],[-76.62981572797698,39.26072378712023],[-76.62981426517271,39.26072944383037],[-76.62981264728322,39.26073417766607],[-76.6298103656422,39.26073976603877],[-76.62980830768987,39.26074423185996],[-76.62980364833457,39.26075383466208],[-76.62980218491995,39.26075827533447],[-76.62980033306508,39.26076321380723],[-76.62979766219362,39.26076878473877],[-76.62979509739621,39.26077356783342],[-76.62979029627219,39.26078413671113],[-76.62978778223275,39.26079073951524],[-76.62978533304661,39.26079934763138],[-76.62978290605962,39.26080614347401],[-76.62978042200044,39.26081255180674],[-76.62977795266383,39.26081813688467],[-76.62977628713551,39.2608231173797],[-76.62977526245061,39.26082808097907],[-76.62977484544218,39.26083272221815],[-76.62977289921072,39.26083553908626],[-76.62977155651784,39.26083704994328],[-76.62976837005226,39.26083995027548],[-76.62976412416364,39.26084270134303],[-76.62976042035449,39.26084393362464],[-76.62975602633072,39.26084598432878],[-76.62975257768753,39.26084916667477],[-76.62975003652176,39.26085297251048],[-76.62974971914936,39.26085694929743],[-76.62974979300377,39.26086100478394],[-76.62975102967764,39.26086493512708],[-76.62975416265523,39.26086895612136],[-76.6297580720057,39.26087230128581],[-76.62976282095725,39.26087462222275],[-76.62976974987264,39.26087796429641],[-76.62977702476633,39.26088139663637],[-76.62978314779927,39.26088440828924],[-76.62979032747641,39.26088787996195],[-76.62979807480374,39.26089203890756],[-76.62980616102793,39.26089720147485],[-76.62981097094311,39.260900497232],[-76.62981321815796,39.26090373086414],[-76.62981345424141,39.2609086732168],[-76.62981311974126,39.26091371285508],[-76.62981112073449,39.26091776180674],[-76.62980870877128,39.26092123296561],[-76.6298049394416,39.26092280823433],[-76.62980064225538,39.26092317571167],[-76.62979274894647,39.26092323369767],[-76.62978870503876,39.26092324797158],[-76.62978529962923,39.26092280666869],[-76.62977861125499,39.26092132994228],[-76.62977472422725,39.26092036827877],[-76.62977182570687,39.26091937910565],[-76.62976694355976,39.26091771350762],[-76.62976214977878,39.26091532307045],[-76.6297591896715,39.26091325728616],[-76.62975612861271,39.26091188567487],[-76.62974723625909,39.26090977146065],[-76.62973422163331,39.26090847835799],[-76.6297285749718,39.26090765887037],[-76.6297150117835,39.26090779445404],[-76.62970679362785,39.26090859814585],[-76.62970252118838,39.26091443785786],[-76.62970078346464,39.26092392646349],[-76.6296935173652,39.26094323491313],[-76.62968932720491,39.26095573335454],[-76.62968659940155,39.26096133112677],[-76.62968186311441,39.26096746302527],[-76.62967677026829,39.26097686448445],[-76.62967231752323,39.26098639136718],[-76.62966418455485,39.26100861556623],[-76.62965946861553,39.26102017284811],[-76.62965504622348,39.26103120951145],[-76.62965013749951,39.26104196270065],[-76.62964056696867,39.26105811749913],[-76.62963592569099,39.2610664682846],[-76.62963112118415,39.26107612286581],[-76.62962696381773,39.2610823340538],[-76.62962191469441,39.2610875732036],[-76.62961889297121,39.26109065240307],[-76.62961515749356,39.26109506338719],[-76.62961188226052,39.2611000937491],[-76.62960891884019,39.26110487828425],[-76.62960478630578,39.26110766303183],[-76.62960072701718,39.26110995619145],[-76.6295979842637,39.26111441984855],[-76.62959669370059,39.2611201491601],[-76.62959392417898,39.26112507932996],[-76.62959005761623,39.26113040688064],[-76.62958614668682,39.26113602073513],[-76.62958231989184,39.26114105476093],[-76.62957796060377,39.26114599162555],[-76.62957300255165,39.26115131843488],[-76.62956878993518,39.26115590356188],[-76.62956457503493,39.26115959421985],[-76.62955561912086,39.26116565605341],[-76.62954985326618,39.2611694652232],[-76.62954464237379,39.26117372832851],[-76.62953891992844,39.26117943194782],[-76.62953488971911,39.26118503191274],[-76.62953207519065,39.26119103565343],[-76.62952980180529,39.26119747707254],[-76.62952618886949,39.2612037151959],[-76.6295222876772,39.26120945969014],[-76.62951733946244,39.26121556389004],[-76.62951237693832,39.26122174551051],[-76.62950763775873,39.261227759392],[-76.62950342280189,39.26123345695651],[-76.62950034276504,39.26124037954182],[-76.62949717589444,39.26124751083096],[-76.6294942338888,39.26125373936022],[-76.62948966293088,39.26126326316008],[-76.6294858866318,39.26127105098674],[-76.62948391077903,39.26127798336085],[-76.62948041508464,39.26128795192891],[-76.62947704269297,39.26129538702822],[-76.62947357382632,39.26130310196155],[-76.62947036665635,39.26130973950242],[-76.629466838604,39.26131658410783],[-76.62946258329193,39.2613246829883],[-76.62945914132968,39.2613310171302],[-76.62945575468541,39.2613371866062],[-76.62945262685706,39.26134305243956],[-76.6294475440757,39.26135184680275],[-76.62944354012497,39.26135907183088],[-76.62943820336966,39.26136857339507],[-76.62943473395879,39.26137572534603],[-76.62943215168322,39.26138118395212],[-76.629429415278,39.26138775632058],[-76.6294262024812,39.2613970231812],[-76.62942461987267,39.26140386851991],[-76.62942388938328,39.26141195420156],[-76.62942386898418,39.2614178577641],[-76.6294237140841,39.26142377891752],[-76.62942237239562,39.26143064123025],[-76.62941980659438,39.26143760416886],[-76.62941681352315,39.26144473330168],[-76.62941355753581,39.26145272904332],[-76.62941103572038,39.26145970022745],[-76.62940814121984,39.26146814479088],[-76.62940502979266,39.2614775245665],[-76.62940200596975,39.26148654791481],[-76.6293995473368,39.26149473263115],[-76.6293964421118,39.26150292431441],[-76.62939256810428,39.261511667543],[-76.62938880033263,39.26151981479898],[-76.62938272995277,39.26153511318264],[-76.6293790504509,39.26154188884876],[-76.62937535771067,39.26154831497536],[-76.62936987956371,39.26155715222448],[-76.62936457654486,39.26156507034302],[-76.629358172814,39.26157453070325],[-76.62935230659336,39.26158334961205],[-76.6293477761778,39.26159064953995],[-76.62934381483885,39.26159858540391],[-76.62933974834307,39.26160757573385],[-76.62933528492304,39.26161757727281],[-76.62933062412958,39.26162831951974],[-76.62932361278992,39.26164252229942],[-76.62931904554836,39.26165221274537],[-76.6293152892407,39.26166060234122],[-76.62931230281843,39.26166845120473],[-76.62931000889746,39.26167704268465],[-76.62930727776813,39.2616852625691],[-76.62930432772225,39.26169435460562],[-76.62930158625288,39.26170255734272],[-76.62929855405878,39.26171118252238],[-76.62929598470633,39.26171882102178],[-76.6292924709165,39.26172825176815],[-76.62929010302464,39.26173525406117],[-76.6292874524883,39.26174312830496],[-76.62928273356967,39.26175545661673],[-76.62927839701466,39.26176756454667],[-76.6292742898984,39.26177811667555],[-76.62927041540775,39.26178761203836],[-76.62926618579077,39.26179765844994],[-76.62926239364509,39.26180625150394],[-76.62925864009418,39.26181411055461],[-76.6292549004493,39.26182152557099],[-76.6292512098086,39.26182621412058],[-76.62924532743685,39.26182924644596],[-76.62923849064104,39.26183132454778],[-76.62923228301064,39.26183517914647],[-76.6292288858763,39.26184046492973],[-76.62922794931957,39.26184717989214],[-76.62922734423523,39.26185565329733],[-76.62922596567495,39.26186202727497],[-76.62922435205351,39.26186992370718],[-76.62922317505556,39.2618769729956],[-76.62922290005125,39.26188347926728],[-76.62922475494264,39.26189017061582],[-76.62922779853535,39.26189577849192],[-76.62923122325236,39.26190140378507],[-76.62923509283866,39.26190770876023],[-76.62923984133529,39.26191544963032],[-76.62924411211284,39.26192192341443],[-76.62924823388832,39.26192875072935],[-76.62925167235596,39.26193507145729],[-76.62925415966542,39.26194092168416],[-76.62925641640348,39.26194632620414],[-76.62925933720501,39.26195126352108],[-76.62926343600006,39.26195561455476],[-76.62926843709847,39.26195891994426],[-76.62927454103918,39.26196138569746],[-76.62928087862758,39.26196237763263],[-76.62928718497855,39.26196336046114],[-76.62929376532637,39.26196601417608],[-76.62930034130237,39.26196928310057],[-76.62930643893553,39.26197295676054],[-76.62931166901572,39.26197723479844],[-76.62931683954355,39.26198182251194],[-76.62932165821063,39.26198700181909],[-76.62932815102369,39.26199354837009],[-76.62933522625377,39.26199928696963],[-76.62934221200044,39.26200551980737],[-76.62934824951755,39.26201049938729],[-76.62935495046355,39.26201513336488],[-76.6293624094898,39.26202037865318],[-76.62936884276934,39.26202479199807],[-76.62937513648176,39.26202886170988],[-76.62938240812971,39.26203293450782],[-76.62938852299008,39.2620361956666],[-76.62939436108333,39.2620414223256],[-76.62939742439538,39.26204658618116],[-76.62939888155042,39.26205311683562],[-76.62940122276505,39.26205921070584],[-76.62940527461106,39.26206501092],[-76.62941004857164,39.26207010000561],[-76.62941349497225,39.26207557133039],[-76.62941678234581,39.26208176276668],[-76.62942072261495,39.26208674112885],[-76.62942783805183,39.2620903306199],[-76.62943484678567,39.26209194259066],[-76.62944288157108,39.26209188777705],[-76.62945009913696,39.26209145206212],[-76.62945698360973,39.26209134227404],[-76.62946477731889,39.26209218746506],[-76.62947253785462,39.26209539165919],[-76.62947920353632,39.26209923734732],[-76.62948538847048,39.2621037264672],[-76.62949197335637,39.26210817811572],[-76.62949866965249,39.26211215270897],[-76.62950647826919,39.2621154696484],[-76.6295143062646,39.26211662841114],[-76.62952183535988,39.26211666837877],[-76.62952958162901,39.26211661354975],[-76.62953644564652,39.26211687120535],[-76.62954477232725,39.26211905571114],[-76.62955200005935,39.26212222218847],[-76.629561523712,39.26212795408576],[-76.6295673901158,39.26213331053567],[-76.62957296395585,39.26213922003397],[-76.62957784742409,39.26214619746523],[-76.62958167925133,39.2621535291834],[-76.62958474879805,39.2621610539633],[-76.62958726598285,39.26216851304632],[-76.62958930780314,39.26217602827892],[-76.62959063004782,39.26218310256824],[-76.6295910484698,39.26219018211353],[-76.62959113308435,39.26219772450074],[-76.62959122348039,39.26220549119711],[-76.62959129531853,39.262213261438],[-76.62959137656348,39.26222011743026],[-76.62959147039638,39.26222722567692],[-76.62959226688196,39.26223424336091],[-76.62959607111966,39.26224020222286],[-76.62959582332421,39.26224705177256],[-76.62959357380831,39.26225379862625],[-76.62958783190919,39.26226121544342],[-76.62958267435486,39.26226479053176],[-76.62957571468863,39.26226709345716],[-76.6295687737195,39.26226870014839],[-76.6295637039705,39.26227232415433],[-76.62955945751425,39.2622793835793],[-76.6295574917249,39.26228527199578],[-76.62955621855055,39.26229099505451],[-76.62955547434544,39.2622948281717],[-76.62955309024721,39.26229494765888],[-76.62955149312378,39.26229502729265],[-76.62954447332646,39.26229286672717],[-76.62953743371025,39.26229028544066],[-76.62953115100572,39.26228942790695],[-76.62952445002634,39.26229233966301],[-76.62951967104671,39.26229730762756],[-76.62951492200622,39.26230253330566],[-76.62950919035131,39.26230576608967],[-76.6295019778526,39.26230922209524],[-76.62949640579713,39.26231384436448],[-76.629493465646,39.26232015306602],[-76.6294918503795,39.26232725862243],[-76.62948997559742,39.2623325816433],[-76.62948552830346,39.26233727051453],[-76.62947849550278,39.26234026319071],[-76.62946983031053,39.2623425445146],[-76.62946138373714,39.26234578584433],[-76.62945334551544,39.26235048770408],[-76.62944817341828,39.26235484820919],[-76.62944598321229,39.2623588875422],[-76.62944608227942,39.2623643248829],[-76.62944598320925,39.26236909593175],[-76.62944352128494,39.26237391176898],[-76.629438673079,39.26237704555062],[-76.62943146680793,39.26237886307674],[-76.6294232217647,39.26238189786329],[-76.6294157947009,39.26238716552911],[-76.62941006903813,39.26239346453713],[-76.62940483895933,39.26240005155269],[-76.62939908900742,39.26240611988722],[-76.62939153726836,39.26241307249257],[-76.62937274838724,39.26242799564653],[-76.62935793017876,39.2624398588147],[-76.62935353665647,39.26244334532693],[-76.62934408173311,39.26245084949674],[-76.62933436221815,39.2624588743745],[-76.62932053337278,39.2624681077197],[-76.62930694184418,39.26247383332598],[-76.62929796537559,39.26247558670604],[-76.6292893919099,39.26247782777165],[-76.62928274890591,39.26248117026336],[-76.62927729378055,39.26248580640272],[-76.62927346641482,39.26248893529334],[-76.62926916875189,39.2624907061444],[-76.62926291338819,39.2624914880782],[-76.62926087217835,39.26249561615317],[-76.62925835617752,39.26249924640666],[-76.62925492219419,39.26250359527599],[-76.62925570996072,39.26250894921818],[-76.62925596084075,39.26251149647774],[-76.6292561864777,39.26251377432839],[-76.62925195589987,39.26251756400885],[-76.62924497589005,39.26251931828341],[-76.62923744293298,39.26252045288581],[-76.6292305325331,39.26252307751997],[-76.62922585892676,39.2625271648552],[-76.62922122958096,39.26253120819241],[-76.62921490757066,39.26253454358688],[-76.62920967708973,39.26253854088801],[-76.6292056465458,39.26254285454384],[-76.62920152061805,39.26254768223614],[-76.6291978518167,39.2625528401516],[-76.62919659926568,39.26255815792619],[-76.6291970314037,39.26256393590762],[-76.62919978127847,39.26256832592002],[-76.6292028302213,39.26257291504533],[-76.62920545653564,39.26257855493157],[-76.62920552691646,39.26258460019915],[-76.62920296417886,39.26260050054778],[-76.62920086663063,39.26261540972025],[-76.6291986900502,39.26264322662977],[-76.62919702140773,39.26266054040183],[-76.62919455085523,39.26267232453727],[-76.62919220793586,39.26268474051312],[-76.62919027139037,39.26269722082575],[-76.62918841627224,39.26271296667464],[-76.62918688464708,39.26272490240112],[-76.62918658804178,39.26272822349195],[-76.62918197987662,39.26274218073222],[-76.62918169769729,39.26274895000343],[-76.62918158712908,39.26275591798515],[-76.62918117180595,39.26276111409729],[-76.62917726196117,39.26276450124413],[-76.62916998105783,39.26276484846729],[-76.62916082219814,39.2627649105219],[-76.6291515161738,39.26276497391255],[-76.62914196083617,39.26276529503515],[-76.62913426178709,39.26276716503271],[-76.62912756950888,39.26277061725335],[-76.62912403990515,39.26277286072492],[-76.62912057152543,39.26277558359762],[-76.62911525765438,39.26277735213429],[-76.62910742352443,39.26277735441421],[-76.62909894605147,39.26277762669314],[-76.62909081050188,39.26278076178712],[-76.62908357749069,39.2627854688668],[-76.62907812177596,39.26279131922821],[-76.62907335421899,39.26279807973582],[-76.62906964327372,39.26280597584446],[-76.62906695662595,39.26281387428771],[-76.6290630085122,39.26282391617385],[-76.6290588998107,39.26283497541887],[-76.62905535094052,39.26284356382772],[-76.62905149215095,39.26285070372548],[-76.62904681084088,39.26285781039875],[-76.6290447748667,39.26286558749177],[-76.62904463472569,39.26287355523072],[-76.6290439049741,39.26287927189281],[-76.62904276646448,39.26288294162266],[-76.62904167119609,39.2628876491722],[-76.62904131862419,39.26289236537326],[-76.62904137575424,39.26289761792398],[-76.6290413033444,39.2629026034385],[-76.62904066876065,39.2629078474987],[-76.62903968198782,39.26291352281432],[-76.6290381644448,39.26292009902134],[-76.6290368316155,39.26292636234509],[-76.62903511416764,39.26293327570808],[-76.62903351951789,39.26293975078561],[-76.62903180759731,39.26294560666597],[-76.62902990143228,39.26295093858722],[-76.62902712460854,39.26295657942325],[-76.62902489165525,39.26296213820605],[-76.62902267094968,39.26296867886309],[-76.62902214700202,39.26297425925856],[-76.62902188242414,39.26297898834816],[-76.62901985509177,39.26298378122805],[-76.62901640349175,39.26298794627785],[-76.62901176497122,39.26299218504382],[-76.62900846639579,39.26299700093033],[-76.62900596765245,39.26300197877934],[-76.62900368704666,39.26300667807979],[-76.62900075210577,39.2630113113585],[-76.62899815305671,39.26301530615409],[-76.62899528302202,39.2630203792118],[-76.62899336727548,39.26302488329762],[-76.62899271804773,39.26303004624214],[-76.6289922304983,39.26303619963993],[-76.62899217251679,39.26304108431393],[-76.62899042335533,39.26304608344687],[-76.62898709824833,39.26305109741755],[-76.62898448582608,39.26305631991538],[-76.62898285800867,39.26306226703797],[-76.62898051028387,39.26306694901128],[-76.62897559150974,39.26307204261855],[-76.62897113098467,39.26307680889364],[-76.628966689828,39.26308252463774],[-76.62896378560694,39.26308815155802],[-76.62896252363278,39.26309437997465],[-76.62896106756027,39.2631000565088],[-76.62895797196276,39.26310571885492],[-76.62895525448441,39.26311020149074],[-76.62895118508085,39.26311506808516],[-76.6289471898808,39.26311926114052],[-76.62894318542996,39.2631245585063],[-76.62894086010255,39.26313005304096],[-76.62893972650197,39.26313610621342],[-76.6289394441467,39.26314157477586],[-76.62893733100348,39.26314726454645],[-76.62893434401433,39.26315232101917],[-76.62893101450365,39.26315684585798],[-76.62892561781804,39.26316092819354],[-76.62892177260541,39.26316480104909],[-76.62892054545327,39.26316990902154],[-76.62891781567657,39.26317519149825],[-76.62891429797241,39.26318002920864],[-76.62890989696865,39.26318604142949],[-76.62890610178549,39.26319120434029],[-76.62890183502105,39.26319680623553],[-76.6288923493702,39.26320727739569],[-76.628889883941,39.26321142123739],[-76.6288882658578,39.26321639105752],[-76.62888649993982,39.26322171170938],[-76.62888404860689,39.2632271481955],[-76.62888299656655,39.26323311425065],[-76.62888304137725,39.26323872616781],[-76.62888309850058,39.2632439778173],[-76.62888500294258,39.26324939293896],[-76.62888941005382,39.26325351436203],[-76.62889452273109,39.26325632559776],[-76.62889919451442,39.26326057666642],[-76.62890175947501,39.26326576237812],[-76.62890277869712,39.2632702820424],[-76.62890311506645,39.26327620024076],[-76.62890318749939,39.26328184827578],[-76.62890325457687,39.26328785569977],[-76.62890307838154,39.26329318678005],[-76.62890123146077,39.26330269664113],[-76.62889991038318,39.26330803851567],[-76.6288983135321,39.26331293634157],[-76.62889625629543,39.26331856953956],[-76.62889372379342,39.26332468134414],[-76.6288908195095,39.26333031726978],[-76.62888811333676,39.2633352944603],[-76.62888499624957,39.263340409971],[-76.62888150230742,39.26334535494654],[-76.62887759551008,39.26335014458609],[-76.62886989660916,39.26335684717908],[-76.62886260286977,39.26336362491489],[-76.62885727777206,39.26337018908516],[-76.6288539948428,39.26337666062518],[-76.62884967579177,39.26338472414785],[-76.6288471988967,39.26339105861642],[-76.6288448087154,39.26339831574387],[-76.62884277797114,39.26340442102619],[-76.62884101826313,39.26340921745059],[-76.62883860418772,39.26341439643405],[-76.62883560401063,39.26341931234271],[-76.6288329364404,39.26342421849328],[-76.62883208506274,39.26342970147032],[-76.62883001806814,39.26343454016009],[-76.62882587861621,39.26343861565545],[-76.62882265226645,39.26344379477342],[-76.62882302760238,39.26344957257525],[-76.62882587379298,39.26345438085534],[-76.62882590761104,39.26345943516299],[-76.62882414403305,39.26346452792705],[-76.62882180312783,39.26346967381301],[-76.62882006462667,39.2634746243351],[-76.62881674952351,39.26348791007069],[-76.6288921075845,39.263539347808],[-76.6288654827641,39.26356405275826],[-76.62879591797379,39.26351778480052],[-76.62877827614493,39.26352600077149],[-76.62876999608058,39.2635288327285],[-76.62875900733391,39.26353246681174],[-76.62874713063759,39.26353639083584],[-76.62874107481159,39.2635382164603],[-76.62873428098273,39.26354002083514],[-76.6287286430999,39.26354147216069],[-76.62872152601653,39.26354349169676],[-76.62871451558642,39.26354550166113],[-76.62870820312725,39.26354721117443],[-76.62870208699898,39.26354904561386],[-76.6286952555277,39.26355117864719],[-76.62868952450961,39.26355359890107],[-76.62868319188411,39.26355694774422],[-76.62867738376058,39.26355882369079],[-76.62867077965579,39.2635606863109],[-76.6286647549815,39.26356320111627],[-76.62865955232702,39.26356673188302],[-76.62865612761,39.26356973591874],[-76.62865101150888,39.26357222657356],[-76.62864626042499,39.26357382842512],[-76.62864188036171,39.26357516572367],[-76.62863709294237,39.26357684672742],[-76.62863440583311,39.26357817586796],[-76.62862870130215,39.26358151228217],[-76.6286217365644,39.26358696781724],[-76.6286178159051,39.26359107912693],[-76.62861307465471,39.26359478700027],[-76.62860785089902,39.26359814204847],[-76.62860311236304,39.26360133108852],[-76.62859472322793,39.26360817380125],[-76.62851668202276,39.26357769903085],[-76.62846530782832,39.26365858206424],[-76.6285296706962,39.2636825451964],[-76.62852007470042,39.26369060912839],[-76.62851765321557,39.26369498369708],[-76.62851635741069,39.26370102464153],[-76.62851545630768,39.26370648313786],[-76.62851355517319,39.26371217086843],[-76.62850891702425,39.26372030813216],[-76.62849671539814,39.26371546214175],[-76.62849075149255,39.26372473648171],[-76.62844301863488,39.26370567207094],[-76.62833322546314,39.26387944908655],[-76.62838040281977,39.26389795510919],[-76.62837497846147,39.26390597728351],[-76.62839424834492,39.26391393708366],[-76.62839693979075,39.26390934898963],[-76.6284343560931,39.26392472996952],[-76.62847714203163,39.26385445333201],[-76.62847878950204,39.26387287291156],[-76.62848126658618,39.26388554642458],[-76.62848563235315,39.26390376562586],[-76.6284881319651,39.26390992306585],[-76.6284914755457,39.2639168884609],[-76.62849563225444,39.26392435545275],[-76.62849954203027,39.26392918962393],[-76.62850414389385,39.26393307747738],[-76.62850938926682,39.26393710878672],[-76.6284489334007,39.26401827834389],[-76.62840065381722,39.26408499847346],[-76.62833383221093,39.26406117341685],[-76.6283252529455,39.26407664755182],[-76.62826234609965,39.26405449765929],[-76.62825328223451,39.26406824618827],[-76.62819340051506,39.26404661116488],[-76.6281899984424,39.26405214100735],[-76.62819394756605,39.26405344340824],[-76.62818197334879,39.26407241887203],[-76.62817847389877,39.26407110077995],[-76.62817510282136,39.2640766856668],[-76.62817786864365,39.26407803116141],[-76.62816651955791,39.26409711759558],[-76.62816351283138,39.26409597130803],[-76.62816045659423,39.264101620245],[-76.62816246238137,39.26410228325478],[-76.62815082794394,39.26412275236088],[-76.62814796638756,39.26412154347899],[-76.62814449572592,39.26412667226178],[-76.6281477586944,39.2641280094229],[-76.62813684270311,39.26414736655451],[-76.62813302862455,39.2641459429759],[-76.62813011479992,39.26415139149208],[-76.62824873984405,39.26419302217541],[-76.6282155097554,39.26421373638779],[-76.6282055137421,39.26422072171023],[-76.62819813636898,39.26422529766592],[-76.62819027181558,39.2642304125384],[-76.6281821946361,39.26423585821915],[-76.6281736471209,39.26424128169252],[-76.62816511663848,39.26424699256364],[-76.62815678685513,39.26425265813059],[-76.6281485614926,39.26425918245783],[-76.6281409075722,39.26426545097483],[-76.6281346106685,39.26427147427622],[-76.62812718506876,39.26427839657092],[-76.6281218734538,39.26428435183119],[-76.62811620830286,39.26429121394409],[-76.62811092057223,39.26429880236876],[-76.62810809130892,39.26430624454778],[-76.62810469519137,39.26431328769362],[-76.62810038354826,39.26432057384913],[-76.62809571444956,39.26432796696444],[-76.62809054046546,39.26433529722843],[-76.62808521138838,39.2643419298079],[-76.62808012577428,39.26434743269651],[-76.62807795864101,39.26435389693798],[-76.62807729999665,39.2643608415616],[-76.62807521237806,39.26436761051386],[-76.62807103703109,39.26437519975735],[-76.6280663477343,39.26438246579935],[-76.6280606833406,39.26439028632711],[-76.62805366644633,39.264396826185],[-76.62804689440148,39.26440329835975],[-76.62804144082811,39.26440870009612],[-76.6280347285029,39.26441438969342],[-76.6280303548939,39.26442001013311],[-76.62802623271912,39.2644256331706],[-76.62799931179802,39.26441695728658],[-76.62797348186243,39.26446232001953],[-76.62799366186715,39.26446865688391],[-76.62798988219122,39.2644734883307],[-76.6279861157655,39.26448043391778],[-76.62797956273663,39.26449286895421],[-76.62797351825881,39.26450334103006],[-76.62796851290584,39.26451209683484],[-76.62796308220226,39.26452197454735],[-76.62795838416663,39.26453024040764],[-76.62795264851206,39.26453971361023],[-76.62794797493969,39.26454795432613],[-76.62794303554477,39.26455694724019],[-76.62793876511404,39.2645645442843],[-76.62793235576328,39.26457034743124],[-76.62792690601766,39.26457567801368],[-76.62792206286811,39.26458333089158],[-76.62791740828568,39.26459192656824],[-76.62791354307576,39.26459958794894],[-76.62790971411638,39.26460718639072],[-76.62790488929318,39.2646159841998],[-76.62790044198432,39.26462350141456],[-76.62789607252684,39.26463097744055],[-76.62789188332083,39.26463788835632],[-76.62788807566179,39.2646431917125],[-76.62788209786883,39.26464624528408],[-76.62787733743727,39.26465093850435],[-76.62787467717871,39.26465708050623],[-76.62787480755645,39.2646618279573],[-76.6278723446382,39.26466679778682],[-76.62786748408124,39.26467158076601],[-76.62786090129919,39.26467620335566],[-76.62785600085873,39.2646812996746],[-76.62785132209994,39.26468787395245],[-76.62784706458281,39.26469410997618],[-76.62784196441795,39.26470237906099],[-76.6278411589126,39.26470904037662],[-76.62784104128565,39.26471600292655],[-76.62784066963259,39.26472699199714],[-76.62784077793627,39.26473263383907],[-76.62784084403464,39.26473615964741],[-76.62784833923976,39.2647427148559],[-76.62780865078788,39.26478468638288],[-76.62780347199319,39.26478474743514],[-76.62779617487433,39.26478483149846],[-76.62778729847855,39.26478644185831],[-76.62777839099154,39.26479177048171],[-76.62777152741343,39.26479800815069],[-76.62776864642406,39.26480447642842],[-76.62776875991695,39.26481045337174],[-76.62776882502646,39.26481637611573],[-76.62776680251426,39.26482221207434],[-76.62776171296807,39.26482690694885],[-76.62775493660962,39.26482800331999],[-76.62774807399227,39.26482787167302],[-76.62774215214732,39.26482710346382],[-76.62772460617384,39.26484656023974],[-76.62770011668704,39.26488063965648],[-76.62771045895026,39.26488852172032],[-76.62770440028525,39.26489770834311],[-76.62769114538581,39.26489415243221],[-76.62767426097143,39.2649275344401],[-76.62767323088131,39.26497456738073],[-76.62766264567136,39.26497787205899],[-76.62765552293129,39.2649822614279],[-76.62764780495547,39.26498856844172],[-76.6276418299917,39.26499372529874],[-76.62763521287805,39.26499759472608],[-76.62762650121982,39.2649991623593],[-76.62761565448953,39.26500129340656],[-76.62760683782396,39.2650041019611],[-76.62759812660637,39.26500646857319],[-76.62758997779918,39.26500941886307],[-76.62758386960175,39.26501236211224],[-76.62757829346583,39.26501615196707],[-76.62757289721833,39.26502209612396],[-76.62757204129426,39.26502444891295],[-76.62756948145075,39.26503441227575],[-76.62756598125101,39.26504515271968],[-76.62756269582108,39.26505272585012],[-76.62755409134668,39.2650656623871],[-76.62724480085782,39.26512240665389],[-76.62723248965021,39.26513155358837],[-76.6272288776718,39.2651408416323],[-76.62722900754828,39.26514766174481],[-76.62723324600064,39.26515632075191],[-76.62723686707312,39.26516228721081],[-76.6272371812725,39.26517041582071],[-76.62723455385753,39.26517624714738],[-76.62722774672513,39.26518120857778],[-76.62721734928085,39.26518383283269],[-76.62720309881479,39.26518846887674],[-76.62719246531543,39.26519301461496],[-76.62718048587564,39.2651994422835],[-76.62717091009577,39.26520579561222],[-76.62716934175562,39.2652070003619],[-76.62716052969223,39.26521377677218],[-76.62714930457908,39.2652239576224],[-76.62714247731476,39.26523208697825],[-76.6271338970736,39.26524171594797],[-76.6271260908531,39.26525465859083],[-76.6271253149386,39.26526118758207],[-76.62712193176652,39.26526772450854],[-76.62711667564457,39.26527521750602],[-76.6271105678685,39.2652816007575],[-76.62710348480788,39.26528790885051],[-76.627096696099,39.26529332972244],[-76.62708889016358,39.26529871853921],[-76.62708127860243,39.26530416382028],[-76.6270740036366,39.26531214942925],[-76.62706914737346,39.26531940409058],[-76.62706345466721,39.26532948990545],[-76.62705656972382,39.265345724166],[-76.62705297309016,39.26535539327686],[-76.62704962760606,39.26536489924575],[-76.62704626460251,39.2653744312811],[-76.62704063344208,39.26538206540495],[-76.62703429416648,39.26539016117417],[-76.62702975157192,39.26539770237274],[-76.62702536887406,39.26540700958044],[-76.62702202639953,39.26541594176998],[-76.62701559526654,39.26542652155911],[-76.6270094219488,39.2654339062488],[-76.62700000883054,39.26543994751411],[-76.6269900744466,39.26544242729557],[-76.626977982079,39.26544497588588],[-76.62696856067873,39.26544884447463],[-76.62695910184506,39.26545542515034],[-76.62695286605273,39.26546323029628],[-76.62694835244832,39.26547274876516],[-76.62694581688791,39.26548402460661],[-76.62694601932401,39.26549511187803],[-76.6269462297719,39.26550621809091],[-76.62694802521101,39.26551736266717],[-76.62695273269395,39.2655289362508],[-76.62695638357856,39.26553848876193],[-76.6269583702636,39.26554764055019],[-76.626958965928,39.26555732837934],[-76.62695917234922,39.26556831928114],[-76.62695935468918,39.26557749866602],[-76.62695716266504,39.26558646693542],[-76.6269517908279,39.26559590521198],[-76.6269454137225,39.26560501962213],[-76.62693948221758,39.26561202945656],[-76.62693253533337,39.26561931620328],[-76.6269257229469,39.26562460367633],[-76.62691858336943,39.26563085212759],[-76.62691811215578,39.26564069330065],[-76.62691327895122,39.26564619964137],[-76.62691172963441,39.26565281985311],[-76.62691185362755,39.26565943096868],[-76.62691104010565,39.26566693716941],[-76.6269049084992,39.26567299425664],[-76.62689758996238,39.26567911783231],[-76.62689057473736,39.26568595667862],[-76.6268835109523,39.26569475813926],[-76.62687727835083,39.26570459541897],[-76.62687421344489,39.26571384375364],[-76.62686360155756,39.26575392745031],[-76.6268613426519,39.26576437276111],[-76.62685990320207,39.26577147342935],[-76.62685962728364,39.26577877055846],[-76.6268582643709,39.2657860804475],[-76.62685488380428,39.26579299389392],[-76.62685203887212,39.26580073504453],[-76.62684861409038,39.26580724210479],[-76.62684359492489,39.26581395307645],[-76.62684201750973,39.26582106681744],[-76.62684217316362,39.26582980924558],[-76.6268423475811,39.26583961103407],[-76.62684284143495,39.26584772309986],[-76.62684458170993,39.26585459246613],[-76.62684666195373,39.26586269876351],[-76.62685132280606,39.26587036017537],[-76.62685694761919,39.26587738690769],[-76.6268597561503,39.26588340033726],[-76.6268598201435,39.26589194520623],[-76.62685953933102,39.26589841001183],[-76.6268612011196,39.26590610242844],[-76.62686392189593,39.26591315866595],[-76.62686861939036,39.26591936185344],[-76.62687336009238,39.26592660376107],[-76.62687515700924,39.2659328391675],[-76.62687562513348,39.26594033592805],[-76.62687554378104,39.26594721301734],[-76.62687358496079,39.26595369771282],[-76.62687390901613,39.26595994465328],[-76.62687692684885,39.26596824579195],[-76.62688282346323,39.26597735505637],[-76.62688418929696,39.26598359449754],[-76.62688432600433,39.26599109290726],[-76.62688523094906,39.26599837667322],[-76.6268905917311,39.26600603490244],[-76.62689640320372,39.26601304601179],[-76.62689932068075,39.26601905708397],[-76.62689979196055,39.26602551346968],[-76.62689919523109,39.26603344011522],[-76.62689307638725,39.26604058987087],[-76.62689006200728,39.26604749907658],[-76.62689224159126,39.26605456530368],[-76.62686901590222,39.26611611740835],[-76.62686324779645,39.26612333583411],[-76.62685724719913,39.26613069404041],[-76.62685074263246,39.26613847400493],[-76.62684777028251,39.26614642372756],[-76.62684789178381,39.26615350773635],[-76.62684803328983,39.26616141510874],[-76.62684816064962,39.26616870721306],[-76.62684827855028,39.26617537415582],[-76.6268484329333,39.26618413819736],[-76.62684839914694,39.26619122441499],[-76.62684658118746,39.26619978762399],[-76.62684458342149,39.26620772693163],[-76.62684343712692,39.26621482853025],[-76.62684287251572,39.26622546027699],[-76.62684252723838,39.26623338591933],[-76.62684251760102,39.26623984618131],[-76.62684256366293,39.26624651199487],[-76.6268396166616,39.26625404744528],[-76.62683471023956,39.26626222972466],[-76.62682928778104,39.26626916190256],[-76.62682610199884,39.26627649031846],[-76.6268251579206,39.2662854625492],[-76.62682356444691,39.26629298338415],[-76.6268215756421,39.26629987873209],[-76.62681769319714,39.26630659061162],[-76.62681233774343,39.26631289967168],[-76.62680571830967,39.26631960195241],[-76.62680011948578,39.26632591564307],[-76.62679688588076,39.26633220081931],[-76.62679596318895,39.26633908874553],[-76.62679601142095,39.26634534111434],[-76.62679613273355,39.26635179908997],[-76.6267947903576,39.26635806505482],[-76.62678956878935,39.26636491499873],[-76.62678072317338,39.26636790175037],[-76.62677311881882,39.26636798477421],[-76.6267644147288,39.26636807781389],[-76.626756397841,39.26636816222786],[-76.6267482681473,39.26636920469753],[-76.62674262335852,39.26637478231358],[-76.62673273787101,39.266400102947],[-76.6267235002574,39.26642187572072],[-76.62671168185368,39.26644346193852],[-76.62670415824935,39.26644889936648],[-76.62669590397653,39.26645423718861],[-76.62669031592125,39.26646048244988],[-76.62668545301136,39.2664669957419],[-76.62667909984144,39.26647352141086],[-76.62667162526691,39.26647910942044],[-76.62666416728123,39.26648484791016],[-76.62665677345285,39.26649050553446],[-76.62664934842446,39.26649680710663],[-76.62664276668772,39.26650250514393],[-76.62663545171098,39.26650925294414],[-76.62662901960408,39.26651536310636],[-76.62662225863222,39.26652209014797],[-76.6266142936306,39.26652684518779],[-76.62660706201443,39.26653052254068],[-76.62660167585938,39.26653671349286],[-76.62659877554951,39.26654549844731],[-76.62659815885122,39.26655258821538],[-76.6265982473719,39.26655800750369],[-76.62659712394563,39.26656406068066],[-76.62659243458876,39.26656974041141],[-76.62658578088576,39.26657567962187],[-76.62657905487688,39.26658060524053],[-76.62657212644508,39.26658369985911],[-76.62656481255034,39.26658561504993],[-76.62655779231575,39.26658743749448],[-76.626550104608,39.26658970279435],[-76.62654339177104,39.26659432669632],[-76.62653710223591,39.26659866459979],[-76.62652983795839,39.2666012798412],[-76.6265224709614,39.26660315612759],[-76.62651534193455,39.26660671399925],[-76.62651179308918,39.26661256129324],[-76.62650605423934,39.26661794943775],[-76.62649849492007,39.26662003859246],[-76.62649213632284,39.26662098489078],[-76.62648465118099,39.26662505236214],[-76.62647929515683,39.2666314595882],[-76.6264747996441,39.2666379551237],[-76.62647030559275,39.26664439301472],[-76.6264630207906,39.2666513462746],[-76.62645673479686,39.26665787124416],[-76.62645184643209,39.26666459072068],[-76.62644813428507,39.26667130042684],[-76.62644329702638,39.26667843712004],[-76.62643830520217,39.26668411768393],[-76.62643355913696,39.26668999990011],[-76.62642998372135,39.26669671004063],[-76.62642681405232,39.26670382771704],[-76.62642362143707,39.26671178213177],[-76.62642156644009,39.26671847458942],[-76.62641793073632,39.26672871193633],[-76.62641594394101,39.26673499566314],[-76.62641278206021,39.2667406334058],[-76.62640644426716,39.26674422891767],[-76.62640085358959,39.26674413997187],[-76.62639595427879,39.2667441324926],[-76.62638918111664,39.26674590346868],[-76.62638559519547,39.2667515263501],[-76.62638282745058,39.26675801566869],[-76.62638078508738,39.26676428840892],[-76.62637697564097,39.26677120858231],[-76.62637015446136,39.26677747692773],[-76.62636336612799,39.26678212850281],[-76.62635767173846,39.26678765099538],[-76.62635415866005,39.26679352361965],[-76.62635272719156,39.26680041532747],[-76.62634714197556,39.26680523016508],[-76.62634037368116,39.26681091678235],[-76.62633483787234,39.26681713156642],[-76.62632995062818,39.2668236339566],[-76.626328652057,39.26682949380948],[-76.6263287546078,39.26683532569297],[-76.6263297333459,39.26684135042591],[-76.62633037591779,39.26684739750914],[-76.62632828498627,39.26685408985055],[-76.62632419485078,39.26686017772225],[-76.62631882192984,39.26686648670341],[-76.62631287270511,39.26687198856602],[-76.62630929716663,39.26687827804459],[-76.62630825938228,39.26688412611629],[-76.62630740000905,39.26688976217492],[-76.62630537373684,39.26689561791029],[-76.62630029138104,39.26690088112545],[-76.6262939742659,39.2669047271098],[-76.62628987489916,39.26691036636953],[-76.62628720334092,39.26691685148789],[-76.62628114964726,39.26692282591834],[-76.6262760608237,39.26692799633299],[-76.6262703763397,39.26693493485634],[-76.62626601276858,39.26694123353564],[-76.6262637143941,39.26694792791791],[-76.62626388083712,39.26695438873905],[-76.62626431732117,39.26696084141189],[-76.6262646943888,39.26696625441204],[-76.62626531814414,39.26697125294427],[-76.62626611697489,39.26697645290443],[-76.62626622743875,39.26698166148304],[-76.62626431361952,39.2669877265531],[-76.62625945620397,39.26699318234532],[-76.6262530426679,39.26699707215805],[-76.62624656940405,39.26699954127291],[-76.62623633916691,39.26700050315928],[-76.62623276524523,39.26700054312831],[-76.62622512694381,39.26700089804004],[-76.62621831310376,39.26700422630056],[-76.62621292434677,39.26701023797367],[-76.6262068380573,39.26701359827449],[-76.62619811013309,39.26701380108995],[-76.62619103432677,39.26701384432344],[-76.62618447172342,39.26701391441151],[-76.62617836655404,39.26701491914856],[-76.62617188043497,39.26702070753986],[-76.6261654181549,39.26703098902574],[-76.62616429724044,39.26703391744982],[-76.62616146920813,39.26704040657086],[-76.62615741716664,39.26704607750326],[-76.62615171619795,39.26705218185923],[-76.62614670578377,39.26705786235107],[-76.62614136796576,39.26706542079759],[-76.62613734081317,39.26707164577935],[-76.62613409191688,39.26707751653537],[-76.62613144681664,39.26708337480128],[-76.62612534088437,39.26708804204625],[-76.62611755793043,39.26708835775759],[-76.62611064081233,39.2670886320875],[-76.6261045197007,39.26709200127971],[-76.62609906908781,39.26709743355823],[-76.62609407262916,39.26710332306988],[-76.62608813290923,39.26710921318103],[-76.62608032638502,39.26711334175587],[-76.62607255462405,39.26711615081917],[-76.62606496054293,39.26712020620659],[-76.62605750519687,39.2671247619602],[-76.62605058646874,39.26713017875247],[-76.62604346344939,39.2671358804365],[-76.62603713945275,39.26714036592862],[-76.62602924742848,39.26714202703064],[-76.62602265737425,39.26714048735413],[-76.62601510742593,39.26714012552415],[-76.62600814964043,39.26714019974853],[-76.62600030251569,39.26714059721746],[-76.62599172462257,39.2671437712205],[-76.62598343838573,39.26714833243012],[-76.62597580868002,39.26715057085402],[-76.62596804386932,39.26715074068924],[-76.62595859198346,39.26715088623447],[-76.62595515655246,39.267151911173],[-76.62594908908046,39.26715719285346],[-76.62594411492685,39.26716412371476],[-76.62594068877985,39.26717020197761],[-76.62593641780978,39.26717629196174],[-76.62593247152813,39.26718189926869],[-76.62592810355126,39.26718704674263],[-76.62592145774485,39.26719080698781],[-76.62591400160132,39.26719221365314],[-76.62590594404801,39.26719230058205],[-76.62589794195912,39.26719219762556],[-76.62589114598279,39.26718949349651],[-76.62588699535094,39.26718484583507],[-76.62588396027276,39.26718048726995],[-76.62587811415578,39.26717719075997],[-76.62587063670847,39.26717912160023],[-76.6258649066355,39.26718216775011],[-76.62585796359168,39.26718186279025],[-76.62585421527555,39.26717739476096],[-76.62585301848117,39.26717273398972],[-76.62585191840684,39.26716687190527],[-76.62585011591176,39.26715972759495],[-76.62584820375598,39.26715338191433],[-76.62584712172901,39.2671469542065],[-76.62584609174736,39.2671405455805],[-76.62584463025557,39.26713444003852],[-76.62584149782633,39.26712964519146],[-76.62583661540718,39.26712511049463],[-76.62583055447746,39.26712189796977],[-76.6258220641265,39.2671203360136],[-76.62581331454659,39.26712046757105],[-76.62580371826837,39.2671211864315],[-76.62579684628099,39.26712147169589],[-76.62578929170029,39.26712154941029],[-76.62578251853765,39.26712067390185],[-76.62577626180958,39.26711877316582],[-76.62576999174154,39.26711698498264],[-76.62576301414177,39.26711598271442],[-76.62575527560642,39.2671160048937],[-76.62574834217622,39.26711607557724],[-76.62574147166427,39.2671173994259],[-76.62573732146367,39.26712080190305],[-76.62573547305729,39.26712653929418],[-76.62573306910093,39.26713149034784],[-76.62572724231218,39.26713397860888],[-76.6257207293569,39.2671347397166],[-76.62571365233431,39.26713588995847],[-76.62570686220022,39.26713823192648],[-76.62570204715044,39.26714157733667],[-76.62570058032091,39.26714659172778],[-76.62569469639028,39.2671504660834],[-76.62569052788051,39.26715470260954],[-76.62569009590692,39.26715948700058],[-76.6256923658936,39.26716499611226],[-76.62569595840151,39.26717110034136],[-76.62569991800123,39.26717637253209],[-76.62570438054823,39.26718141933276],[-76.62570768653211,39.26718538423064],[-76.62571002186418,39.26719058819066],[-76.62571033368334,39.26719715936905],[-76.62570883262765,39.26720382925829],[-76.62570511312533,39.26720861938524],[-76.6256990876846,39.26721120069135],[-76.62569233266572,39.2672121564921],[-76.62568611647926,39.26721223486265],[-76.62567911935928,39.26721229543071],[-76.62567304722198,39.26721230580151],[-76.62566660647607,39.26721211772939],[-76.6256597760607,39.26721133030649],[-76.62565310088056,39.26720989212441],[-76.62564784361949,39.26720809905633],[-76.6256424153217,39.26720599828169],[-76.62563721986855,39.26720479000707],[-76.62562988989578,39.26720490355707],[-76.62562289955837,39.26720763221123],[-76.62561480292159,39.26721336949844],[-76.6256077199227,39.26721762735636],[-76.62560000317663,39.26722208316334],[-76.62559402836881,39.26722385213487],[-76.62559027482153,39.26722367262564],[-76.6255876659708,39.26722287073369],[-76.62558116285436,39.26722154569182],[-76.62557408454784,39.26722161950625],[-76.62556645011969,39.26722387049924],[-76.6255564642987,39.2672261590328],[-76.62554746691747,39.26722625374973],[-76.62553769761611,39.26722637933298],[-76.62552764345617,39.26723129698102],[-76.62552194528314,39.26723817597367],[-76.6255166046327,39.26724625592592],[-76.62551647097294,39.26725423628318],[-76.62551807431362,39.26726310132657],[-76.62552027987284,39.26727071622603],[-76.6255205725104,39.26727960141051],[-76.62551950339481,39.26728873807011],[-76.62551160690116,39.26729519299773],[-76.62550483984485,39.26729842768635],[-76.62549779135486,39.26730031573327],[-76.62549094039237,39.26730144416349],[-76.62548421272109,39.26730248561225],[-76.62547811227208,39.267303248022],[-76.62546992096355,39.26730474329189],[-76.62546179842603,39.26730791870848],[-76.62545238770308,39.26731277534849],[-76.62544473907097,39.26731661704033],[-76.62543681899773,39.26732073169866],[-76.62542957620822,39.26732123014116],[-76.6254215893536,39.26732131185784],[-76.62540531908165,39.26732167791656],[-76.62539502914807,39.26732186398016],[-76.62538012788843,39.26732587169385],[-76.6253749309537,39.26733152813769],[-76.62536956365885,39.26733652918122],[-76.6253646773543,39.26734502492796],[-76.62536097016225,39.26735406219305],[-76.62535633947287,39.26736484309641],[-76.62534528530561,39.26737523509421],[-76.62533614944842,39.26738443429194],[-76.6253265711257,39.26739425450639],[-76.62531847598316,39.26740233376834],[-76.62530836957879,39.26741055433821],[-76.62530518968241,39.26742133716596],[-76.62530510162435,39.26743274688275],[-76.62530525684511,39.26744153614781],[-76.62530707438245,39.26745920956296],[-76.62531666733302,39.26747580975223],[-76.6253987055258,39.26749932022329],[-76.62545097522748,39.26751890654473],[-76.62551752098209,39.26754449512902],[-76.62558449612064,39.26757173074287],[-76.62563804576128,39.26759319555406],[-76.62569204569192,39.2676147581577],[-76.62573795847038,39.26764355423314],[-76.62575771238181,39.26767136016182],[-76.6255654219737,39.26762882565134],[-76.62534580997468,39.26758335432925],[-76.62512109071986,39.26753985999172],[-76.62490913960451,39.2675042737015],[-76.62470995662866,39.2674765954586],[-76.62447757649015,39.26744298614469],[-76.62421199918899,39.26740344575976],[-76.62390301021361,39.267365882375],[-76.623550609564,39.26733029599043],[-76.62323906696074,39.26730459470687],[-76.62296838240378,39.26728877852435],[-76.62261087449839,39.26727296233825],[-76.62216654324455,39.26725714614859],[-76.6216634785491,39.2672472610295],[-76.62119383051852,39.26724395555199],[-76.62119532525946,39.26723983444752],[-76.62120325235223,39.26720991946184],[-76.62120723880302,39.26718426679966],[-76.62120820964067,39.26715999699436],[-76.62120875753949,39.26714201857485],[-76.62120987815574,39.26712138384253],[-76.6212111475703,39.2670958845537],[-76.6212183513489,39.26700174983306],[-76.62121912112292,39.26699170066952],[-76.62122258129094,39.2669647780294],[-76.62122731032102,39.26694567272474],[-76.62122838855763,39.26693883758778],[-76.62123056325994,39.26691458787725],[-76.6212312094582,39.26689338863456],[-76.62122531264914,39.26687054330685],[-76.62121636725229,39.26683398749625],[-76.62120874066746,39.26679980044885],[-76.62119706670057,39.26677728778352],[-76.6211771956043,39.26676148099983],[-76.6211501217158,39.26674715255363],[-76.6211157370868,39.26673997961939],[-76.62106992945417,39.26673166367691],[-76.6210330945716,39.26673089446426],[-76.6210021649716,39.26673032264965],[-76.62098288715632,39.26672841476446],[-76.62094946436413,39.26671581506849],[-76.62090598146429,39.2666894633224],[-76.62086557629945,39.26665487588431],[-76.62083991209477,39.26662267081137],[-76.62082275210204,39.26659721290522],[-76.62080669195433,39.26658994321162],[-76.62077038565943,39.26658156505115],[-76.62075127521652,39.26657415038486],[-76.620738703203,39.26656381132658],[-76.62072578301634,39.26654988789528],[-76.62071851142449,39.2665412575915],[-76.62071071799903,39.2665322652954],[-76.6207035863596,39.26652390116861],[-76.62069626048415,39.2665119864951],[-76.62069491868365,39.2665041689168],[-76.62069521321379,39.26649459292373],[-76.62069553423478,39.26648396311995],[-76.62069224193357,39.26646969245922],[-76.6206835253405,39.2664588965481],[-76.62067570478797,39.26644717754302],[-76.62066842883668,39.26643611425266],[-76.62066330520389,39.2664212801013],[-76.62065478781126,39.26640638814731],[-76.6206458351785,39.26639227755234],[-76.62063663011153,39.26637531611739],[-76.62063149836806,39.26635940011811],[-76.62062515326264,39.26634263978408],[-76.62062381449974,39.26633338909557],[-76.62062402395576,39.26632650611788],[-76.62062424719531,39.26631921243542],[-76.62062479460955,39.26630135111177],[-76.62062405800327,39.26628979280415],[-76.62062366304474,39.26628043797324],[-76.62061934962423,39.26626990038859],[-76.62061853333677,39.26626089189219],[-76.62061882423622,39.26625134651295],[-76.62061893568129,39.2662476240067],[-76.62061922944751,39.26624426149516],[-76.62061920487834,39.26624018725075],[-76.62061949167048,39.26623075985851],[-76.62061973475605,39.26621910382974],[-76.62061426186723,39.26620089337635],[-76.62061011878421,39.26618710637725],[-76.62060603020184,39.26617287907934],[-76.62060311284282,39.2661623928437],[-76.62060109238378,39.26615450641427],[-76.62059847626962,39.26614511107869],[-76.6205955278787,39.26613436081801],[-76.62059104933512,39.26612176624928],[-76.62058678053198,39.26611090543197],[-76.62058493536131,39.26609862653207],[-76.6205841691407,39.26608545665718],[-76.62058328121422,39.26606774202384],[-76.62058021480087,39.26604222332028],[-76.62057942409392,39.26602366408218],[-76.62058167059826,39.26587635913991],[-76.6205924591198,39.26574040442045],[-76.62060176036294,39.26573090706594],[-76.62060525654135,39.2657250237468],[-76.62061039066919,39.26571729284301],[-76.62061552208385,39.26570616784306],[-76.62061989463966,39.26569631767784],[-76.62062663156614,39.26568551042988],[-76.6206309072318,39.2656738422049],[-76.62063577757198,39.26564890941556],[-76.62063616632695,39.26563623148567],[-76.62063677388812,39.26561643820915],[-76.62063730962751,39.26559880834104],[-76.62063770014842,39.26557994755705],[-76.62063841785712,39.26556252635361],[-76.62064131751394,39.26554532387864],[-76.62064936241943,39.26552762728991],[-76.62065478712609,39.26550672091327],[-76.62065693132102,39.26549210840272],[-76.62066606832333,39.26547560975641],[-76.6206750273829,39.26546118319781],[-76.62068180046184,39.26544425715736],[-76.62068670054578,39.26542957878398],[-76.62069196633394,39.26541628787091],[-76.62069719279343,39.26540320040375],[-76.6207023938195,39.26538966787556],[-76.62070595288331,39.2653767840002],[-76.62071855296544,39.26534801008184],[-76.62072582401807,39.26533959068234],[-76.62073104819942,39.26532887852684],[-76.62073534637256,39.2653177616387],[-76.62073917125608,39.26530977608713],[-76.62074253638093,39.26530195659319],[-76.62074605017416,39.26529428890797],[-76.62075087075182,39.26528711095592],[-76.62075701801506,39.26527951753094],[-76.6207607954275,39.2652732585944],[-76.62077956888749,39.26524782482939],[-76.62079364770342,39.2652344083389],[-76.62081046798554,39.26522557569103],[-76.62082788080559,39.26521818347781],[-76.6208469903885,39.26521398094931],[-76.62086376464795,39.26520768740556],[-76.62088130817756,39.26519968578757],[-76.62089841403667,39.26519357166115],[-76.62091309925029,39.26518919089958],[-76.62092667293764,39.26518312571822],[-76.62094127345547,39.26517442550506],[-76.62095508409021,39.26516912223279],[-76.62097681453547,39.26516409583437],[-76.6209955164665,39.26516201507233],[-76.6210175266542,39.26516210502141],[-76.62103907033884,39.26515689785555],[-76.62105950917869,39.26515569823322],[-76.62107835673638,39.26515607431773],[-76.6210966747881,39.26515644148463],[-76.62111559339468,39.26515696641884],[-76.62113778556078,39.26515726320802],[-76.62115582010654,39.26515712322038],[-76.6211730628925,39.26515378835991],[-76.62119469591082,39.26515051179599],[-76.62121956099708,39.26514718169866],[-76.62124146346457,39.2651448743191],[-76.62126597052205,39.26514457773905],[-76.62128876743209,39.26514468098375],[-76.62130995609115,39.26514454664017],[-76.62133451123492,39.26514501044768],[-76.62135380833949,39.26514539604447],[-76.62137535668087,39.26514582582782],[-76.62139810422326,39.2651462774887],[-76.62142291992632,39.26514677184304],[-76.62145017411035,39.26514848558333],[-76.6214765712495,39.26515120361159],[-76.62150333651029,39.26515290405364],[-76.62152550128394,39.2651539915541],[-76.62154940681374,39.26515697897187],[-76.62157386664614,39.26515793333979],[-76.62159917902582,39.26515829234093],[-76.62161944940118,39.26515869544237],[-76.62163942431214,39.26515909488613],[-76.62166046511226,39.26515887443012],[-76.62168319721424,39.26515526803366],[-76.6217048803864,39.26515062147182],[-76.62172428370741,39.26514542890396],[-76.62174141776289,39.26514074786496],[-76.62175947667347,39.26513538341836],[-76.62177628322132,39.2651304049673],[-76.62179546711565,39.26512398483723],[-76.6218145211932,39.2651169184365],[-76.62182876439469,39.26511110031554],[-76.62184384777534,39.26510135305332],[-76.62185584354573,39.2650930361723],[-76.62186429514897,39.26508397645566],[-76.62187066286128,39.2650719546141],[-76.62187216852907,39.26505991171233],[-76.6218796696717,39.26499979800063],[-76.62188098657244,39.2649892560682],[-76.62188157567701,39.26497133811883],[-76.62188194755893,39.26496004460664],[-76.62188085079622,39.26494775732415],[-76.62187663590433,39.26494002058182],[-76.62186849548607,39.26493395923562],[-76.62185723798848,39.26492681503895],[-76.62184448769966,39.26491820769342],[-76.62183028273891,39.26491033429042],[-76.62181883814829,39.26490198696442],[-76.62180770063868,39.26489233361414],[-76.6217970935677,39.26488251442851],[-76.62178563755033,39.26487218177316],[-76.6217721654634,39.2648592096832],[-76.62175850754748,39.26484392742803],[-76.62174655516843,39.26482823991518],[-76.62173730392732,39.2648171036667],[-76.62171638476705,39.2647964807929],[-76.62170504508799,39.26478845716851],[-76.62168739246093,39.26477913952228],[-76.62167553702571,39.26476961625886],[-76.62165943255013,39.26475898577453],[-76.62164525778095,39.26474915417968],[-76.62162749502987,39.26473419737152],[-76.62161242556722,39.264720698572],[-76.62159699921682,39.26470654736627],[-76.62158218265061,39.2646934313026],[-76.6215678566472,39.26468023935193],[-76.62155167291677,39.26466513899379],[-76.62153447118168,39.26464689708217],[-76.62152148753361,39.26463165570414],[-76.62150506226732,39.26461491786819],[-76.62147683870789,39.2645890352518],[-76.62146898633698,39.26457547502363],[-76.62146444396325,39.26456288838383],[-76.62146033019651,39.26454750264234],[-76.62146077551624,39.26453288103435],[-76.62145927660023,39.26451801445608],[-76.62145448766255,39.26450255807949],[-76.62144996825984,39.26448588383441],[-76.62145069783429,39.26446945710565],[-76.62144950357563,39.26445439153884],[-76.62144487749288,39.26443642885326],[-76.62144068783118,39.26441876392651],[-76.62144037221032,39.26440103492276],[-76.6214408045769,39.26438232559391],[-76.62144150956172,39.26436659868104],[-76.62144203605826,39.26435066221486],[-76.62144261349512,39.26433321352577],[-76.6214430169282,39.2643210139432],[-76.62144346784471,39.26430729852355],[-76.62144415815966,39.26429323527892],[-76.62144901148139,39.26428054471067],[-76.62145258380187,39.26426904983395],[-76.62145525674428,39.26425520105719],[-76.62145841317798,39.26424151417526],[-76.62146037652074,39.264227531599],[-76.62146184043907,39.26421398428453],[-76.62146491541758,39.2642016645034],[-76.62146725123235,39.26418888835322],[-76.62146907164917,39.26417476299475],[-76.62146971465744,39.26416087794871],[-76.62147013874733,39.26414806320845],[-76.62147051020996,39.26413685976998],[-76.62147002188466,39.26412435285306],[-76.62146659216042,39.264113244353],[-76.6214609518073,39.26410317451703],[-76.6214555135043,39.26409389350285],[-76.62144930613644,39.26408150776897],[-76.62144517785555,39.2640701520078],[-76.62144123867783,39.26405853653446],[-76.62143626032181,39.2640477500194],[-76.62143052602646,39.26403487399077],[-76.621427731849,39.26402170838558],[-76.62142757031796,39.2640083287779],[-76.6214283348088,39.26397949229737],[-76.6214283501174,39.26396532779109],[-76.62142626642103,39.26395343365622],[-76.62142226011045,39.26394050284605],[-76.62141893790482,39.26392966041675],[-76.6214146385408,39.26391649266063],[-76.62140892347405,39.26390414183945],[-76.62140368240887,39.26389221140256],[-76.62139995183881,39.26387776909313],[-76.6213988667561,39.26384810785175],[-76.62139564624589,39.26382949933891],[-76.6213929364754,39.2638137641168],[-76.62138986965566,39.2637974071151],[-76.62138577421774,39.26377924886654],[-76.62138130556664,39.26376219555594],[-76.6213781974399,39.26374706616556],[-76.62137463316445,39.26372990857915],[-76.62137181778749,39.26371268494894],[-76.6213703903634,39.26369571890913],[-76.62136689016396,39.26368110349255],[-76.62136191553537,39.26366897394179],[-76.62135589476823,39.26365354961599],[-76.6213508754469,39.26364045880248],[-76.62134589943793,39.2636251144099],[-76.62134114399524,39.26361208299654],[-76.62133134169729,39.26359264256734],[-76.62132486987825,39.26358162063381],[-76.62131722744002,39.26356631177902],[-76.62131148475135,39.26355241424606],[-76.62130499754971,39.26353841342593],[-76.62129954875641,39.26352481319228],[-76.62129359032151,39.26350965569053],[-76.62128631161514,39.26349111335281],[-76.6212795702077,39.26347567769049],[-76.62127362320655,39.26346250461361],[-76.62126625825685,39.26344535998632],[-76.62125959740469,39.26342872746331],[-76.6212534332894,39.2634152023859],[-76.6212505598858,39.26340104297262],[-76.62125037233096,39.26338842082311],[-76.62124985339898,39.26337579490251],[-76.62124766407665,39.26336459491277],[-76.62124189836423,39.26335154312126],[-76.6212358759448,39.26334056316595],[-76.6212274222146,39.26333028967619],[-76.62121665834388,39.26332081582142],[-76.62120702581544,39.26331104656033],[-76.62119754748963,39.26330104359647],[-76.62118879156283,39.26328986025526],[-76.62118115044797,39.26327887327368],[-76.62117460702301,39.26326890229463],[-76.62116884723335,39.26326017149682],[-76.62115520659067,39.26324108437945],[-76.621140534124,39.26322014916096],[-76.62112929396926,39.26320330999204],[-76.62112429690639,39.26319322599849],[-76.62112027064298,39.26318535291651],[-76.62111488683821,39.26317890767368],[-76.62110806939242,39.26317056439294],[-76.62110295812384,39.26316602875385],[-76.62109435392175,39.26316159173776],[-76.62108781746066,39.26315813332046],[-76.62108095171781,39.26315341096515],[-76.62106896910421,39.26314216495821],[-76.6210656001849,39.2631359649179],[-76.62106273155912,39.26312959985005],[-76.62106114937907,39.26312296960402],[-76.62105750431267,39.26311510315436],[-76.62105410765203,39.26310758880525],[-76.62105039606814,39.26309829172287],[-76.62104355963277,39.26308352590888],[-76.62103807897681,39.26307547428232],[-76.62103211495904,39.26306723823993],[-76.62102509452849,39.26305915462062],[-76.62101847376377,39.26305043815079],[-76.62101050431018,39.26304149213615],[-76.6210023884703,39.26303478855817],[-76.62099437286626,39.26302840957918],[-76.62098379122698,39.26302127828406],[-76.62097364708606,39.26301684439554],[-76.62096467805422,39.26301324840919],[-76.62095698521861,39.26300740102113],[-76.62094874929608,39.26300192119397],[-76.62093971635605,39.2629957560121],[-76.6209295563197,39.26298822523168],[-76.62091936120692,39.26298422444271],[-76.62090771789833,39.26298191962578],[-76.62089159573071,39.26297990390681],[-76.6208859191991,39.26297663831598],[-76.62088218142124,39.26297159906858],[-76.6208773305536,39.26296604279032],[-76.62086996492813,39.26295707709689],[-76.620861996224,39.26294929756745],[-76.62085467203994,39.26294255239733],[-76.62084683626468,39.26293635234047],[-76.62083603323455,39.26293032465729],[-76.62082050021749,39.26292300981726],[-76.62080691436844,39.2629169010843],[-76.62079333186786,39.26291081668131],[-76.62078171260895,39.26290553219228],[-76.62076941377829,39.26290035269881],[-76.62075403049424,39.26289429310183],[-76.6207415092614,39.26289235294586],[-76.6207007226511,39.26287752159656],[-76.62064069582976,39.26286175253353],[-76.62060796528573,39.26284291083972],[-76.62056855152677,39.26281946534092],[-76.62056109730035,39.26280865997509],[-76.62054044263552,39.26279032117579],[-76.62052006195142,39.26277622046611],[-76.62049479297319,39.26276812197949],[-76.62047751058667,39.26276704735846],[-76.6204607164082,39.26276373410522],[-76.62044854532392,39.26275937649011],[-76.6204371991017,39.2627537469546],[-76.62042966646742,39.26274764062823],[-76.62041939043363,39.26274144976917],[-76.62040742663125,39.26273516788068],[-76.62039688915824,39.26273019671387],[-76.62038574936436,39.26272518576678],[-76.62037713022521,39.26271879398454],[-76.62036690797147,39.26271099902863],[-76.6203569009021,39.2627047838121],[-76.62034429638717,39.26269740991759],[-76.62029086807046,39.26265707286845],[-76.62023505043763,39.2626243323429],[-76.62018957116948,39.26260129316162],[-76.62015396524119,39.26258195922793],[-76.62014620175128,39.2625707159623],[-76.62014486616421,39.26256825705178],[-76.62013464857915,39.26255310462479],[-76.62012037732177,39.26254713321305],[-76.62008951698826,39.26254045777776],[-76.62005979614828,39.26253456068089],[-76.62002822408373,39.26253356586623],[-76.61999705585998,39.26253159231532],[-76.61997221591314,39.26253103722642],[-76.61994322321468,39.26253111364144],[-76.61992394550838,39.2625367594095],[-76.61989939586692,39.26253738524971],[-76.6198784272886,39.26253811095201],[-76.61986215778361,39.26254242610597],[-76.6198386491544,39.26254858511263],[-76.6198167704757,39.26255243261861],[-76.61979976485637,39.26255442860783],[-76.61977981164723,39.26255422618672],[-76.61976268208454,39.26255102434315],[-76.61974809108536,39.26254396552567],[-76.61972977029323,39.26254099311858],[-76.61970384716837,39.26253888244361],[-76.61969958356376,39.26253836060321],[-76.61968324805532,39.2625359630023],[-76.61966439301676,39.26253387070575],[-76.61964546291053,39.26253367788084],[-76.61962344069725,39.2625359836734],[-76.61960788468525,39.262537753734],[-76.61958848368782,39.26253786113154],[-76.61956783761138,39.2625376510253],[-76.61954465917417,39.26253495199837],[-76.61953474656804,39.26253209958077],[-76.61951838092627,39.26252948837747],[-76.61949965174564,39.26252877643741],[-76.61948013295014,39.26252859518989],[-76.6194638998841,39.26253064858068],[-76.61944694812189,39.26253383640824],[-76.61943034403541,39.2625352841773],[-76.61941370690624,39.26253511495992],[-76.61939596789861,39.26253493406202],[-76.6193811209003,39.26253478145128],[-76.61936902516287,39.26253475845925],[-76.61935581130936,39.26253753502891],[-76.61935239638636,39.26253821664946],[-76.61932923899556,39.26254153207021],[-76.61930588197907,39.26254361188757],[-76.61928732873444,39.26254509475272],[-76.61927034699522,39.26254522885713],[-76.61925464953943,39.26254506806846],[-76.61924051344002,39.2625448024467],[-76.6192373244279,39.2625446272661],[-76.61922752039976,39.26254400006941],[-76.61921473969734,39.26254379108396],[-76.61920015803955,39.26254363931073],[-76.61918411021412,39.26254485555014],[-76.61917115072922,39.26254838056065],[-76.61916057575796,39.26255257716839],[-76.61915029417244,39.2625532761472],[-76.61913907025658,39.26255316588231],[-76.61913648530182,39.26255313858235],[-76.61912494393647,39.26255302098115],[-76.61910974818124,39.26255286450263],[-76.61909682967968,39.26255134354047],[-76.61908672388171,39.26254778786001],[-76.61907508525832,39.26254592965632],[-76.61906213513468,39.2625457669446],[-76.61904776595802,39.2625461815235],[-76.61903346186456,39.26255022910557],[-76.61900883608872,39.26255855877388],[-76.61898745248149,39.26256687373513],[-76.61897066354543,39.2625725328265],[-76.61896633695677,39.26257381499171],[-76.61895258736406,39.2625777427596],[-76.61893713956644,39.26258114977637],[-76.61892151944596,39.26258298529407],[-76.6189169420728,39.26258349738848],[-76.61889916333148,39.26258553487607],[-76.61887948362684,39.26258899030412],[-76.61885831452291,39.26259339120413],[-76.61883934917027,39.26259738490047],[-76.61882105602281,39.26260286073618],[-76.61880260003966,39.2626093133727],[-76.61878696055966,39.26261475097741],[-76.61878192568004,39.26261652175454],[-76.61877083034996,39.2626200824979],[-76.6187560552766,39.26262573458497],[-76.61874330150984,39.26263172471498],[-76.61872922114442,39.26264006153863],[-76.61871618878463,39.26264851616077],[-76.61870598031597,39.26265609089349],[-76.61869782166622,39.26266344168484],[-76.61869245648985,39.26266802628283],[-76.61868966536285,39.26266884592547],[-76.61868407831302,39.26266878995131],[-76.61867615026544,39.26267074589492],[-76.61867300895014,39.26267225979222],[-76.61866265165317,39.26267734071453],[-76.61864522424852,39.26268622693612],[-76.61862863193971,39.26269474475117],[-76.61861477851124,39.26270224638618],[-76.61860401908666,39.26270776647232],[-76.61859234637923,39.26271181624164],[-76.61858170002759,39.26271268242945],[-76.61856923749895,39.26271255637709],[-76.61855879758792,39.26271252516856],[-76.61854799997295,39.2627152329307],[-76.61853162510204,39.26272145087916],[-76.61851885038871,39.26272809757594],[-76.61850933946229,39.26273459003392],[-76.61850694329053,39.26273953556783],[-76.61850687505562,39.26274360681343],[-76.61850587052469,39.26274660940982],[-76.61850117335393,39.26274914242024],[-76.61849354659064,39.2627521703424],[-76.61848555609387,39.26275560963369],[-76.61848008603609,39.26276008578917],[-76.61847450993251,39.26276661354723],[-76.61846935302046,39.26277383715843],[-76.61846250316631,39.26278602660251],[-76.61845350724083,39.26280125456681],[-76.61844427466372,39.26281717895514],[-76.61843635483149,39.26282988646511],[-76.61842058762186,39.26284591932895],[-76.61840524357063,39.26286406406295],[-76.61840286322094,39.26286800438996],[-76.61839749323272,39.26287800256874],[-76.61839607853437,39.26289285162042],[-76.61839375636245,39.26290493507046],[-76.61838641331194,39.26291833443872],[-76.61838510982561,39.26292090549577],[-76.61838142009549,39.26292937422701],[-76.61837693083346,39.26293978421505],[-76.6183762611732,39.26294149259542],[-76.61837247100091,39.26295075457567],[-76.6183687193875,39.26295952576304],[-76.61836104838198,39.26297142158428],[-76.6183533462645,39.26297251170245],[-76.6183420243847,39.26297229114963],[-76.61833420549692,39.26297160907824],[-76.61832760090557,39.26297028960693],[-76.61831215863305,39.26296790823048],[-76.61829954202119,39.26296539911998],[-76.61828842338193,39.26295970706281],[-76.61827681998889,39.26295258301069],[-76.6182674611686,39.26294672912932],[-76.61826466391818,39.26294480680701],[-76.61825512033317,39.26293754352433],[-76.61823559304351,39.26292578178141],[-76.61823027921456,39.26292016623884],[-76.61822871171643,39.26291688775536],[-76.6182287896527,39.26291230850902],[-76.61823238682379,39.26290338639572],[-76.61823830157566,39.26289767044062],[-76.61828211632081,39.26284318765474],[-76.61831697178569,39.26280722703016],[-76.61835143502155,39.2627657659371],[-76.61836658761807,39.26273603402021],[-76.61837311178897,39.2627055471416],[-76.61837335936808,39.26269312186388],[-76.61837903636355,39.26267515919975],[-76.61838991429761,39.26265859251124],[-76.61839309144989,39.26265494031682],[-76.61840604145215,39.26264392368107],[-76.61842151941477,39.26262866453823],[-76.61842939187628,39.26261872943589],[-76.61843109195758,39.26261652988207],[-76.61843865116803,39.26260709909161],[-76.61844681431265,39.26259374381898],[-76.61845448787763,39.26257877548262],[-76.61845981705552,39.26256429314898],[-76.61845987589035,39.26256067766081],[-76.61845900324494,39.26255078800533],[-76.6184518519377,39.26253564539323],[-76.61845117492967,39.2625341956607],[-76.61844137940449,39.26251474779701],[-76.6184405376281,39.26251312548253],[-76.61842968928366,39.26249445606274],[-76.61841003456517,39.26246826814672],[-76.61840794140025,39.26246534826391],[-76.6183956149643,39.26244897189464],[-76.61838867986471,39.2624382311292],[-76.61838809552277,39.26243721856949],[-76.61838736436928,39.26243592629488],[-76.61838582638056,39.26241272383954],[-76.61838590160609,39.26240821574421],[-76.61838598682078,39.26240314290035],[-76.61838854248704,39.26239417866356],[-76.61838891772004,39.26238818077343],[-76.6183882512281,39.26238132827302],[-76.61838216588667,39.26236555497982],[-76.61838127548282,39.2623630641672],[-76.61837911996206,39.26234502200132],[-76.61837932182767,39.26233290913996],[-76.61837856472161,39.26232200649551],[-76.61837525108423,39.26231096403077],[-76.61837387585577,39.26230813205326],[-76.61836901316272,39.26229620090147],[-76.61836850473702,39.26229486160985],[-76.61836549740475,39.26228589911099],[-76.61836267140976,39.26227553650828],[-76.61835959055524,39.26226710252059],[-76.61835433831526,39.26225995317601],[-76.61834496685417,39.26225194102003],[-76.61833511370214,39.26224709889907],[-76.61833378488733,39.26224662528048],[-76.61832611076318,39.26224403315135],[-76.61831892599135,39.26223900153308],[-76.61831218052093,39.26223157259911],[-76.61830401137114,39.26222256539678],[-76.61829772730283,39.26221423178981],[-76.61828324838262,39.26219413094428],[-76.61827137909692,39.26217830010985],[-76.61825927043091,39.26216345933997],[-76.61824742341214,39.26215059930573],[-76.6182288913904,39.26212252069248],[-76.61821770065923,39.26208825515367],[-76.61821684201283,39.2620869705702],[-76.61820317982824,39.26206216946321],[-76.6181902222216,39.26204316978515],[-76.61818225101455,39.26202796053377],[-76.61817859672972,39.26201283197508],[-76.61817247851555,39.2619977989929],[-76.6181700925948,39.26198705679092],[-76.61817037859059,39.26197008186016],[-76.61817060231941,39.26195671159764],[-76.61817071906586,39.26194341214781],[-76.61817123912229,39.26192966722874],[-76.61817549230935,39.26191747205794],[-76.61818241629415,39.26190743480179],[-76.61819811584893,39.26189339514425],[-76.61821461385931,39.2618773962092],[-76.61822835571247,39.26186821252466],[-76.61824238309518,39.26185786057071],[-76.61825132382938,39.26184447811151],[-76.61825297535721,39.26184010124734],[-76.61825686733492,39.26183279966886],[-76.61826006401574,39.2618280963452],[-76.61827564965881,39.26181174764],[-76.61828950896546,39.26179860365595],[-76.61830414153367,39.2617832291814],[-76.61831773245027,39.26176871065135],[-76.61833243577584,39.26175159612063],[-76.61834709710948,39.2617343166111],[-76.61836537850239,39.26171504735959],[-76.6183829524754,39.26169847540605],[-76.61839914613569,39.26168260336436],[-76.618415348776,39.2616637669241],[-76.61842894964715,39.26164544897633],[-76.61844778670753,39.26162454212058],[-76.61846279699178,39.26160872747699],[-76.6184784488882,39.26159124489327],[-76.61849089416772,39.26157428244156],[-76.6185047975871,39.26155658069172],[-76.61851867972726,39.26154046512244],[-76.6185308330523,39.26152327652599],[-76.61854166910962,39.26150799417686],[-76.61855440196778,39.2614894761262],[-76.6185642222229,39.26147455258374],[-76.6185727651706,39.26145625692202],[-76.61857669977005,39.26144424896085],[-76.61858091184659,39.26141898800876],[-76.6185820722352,39.26140207356379],[-76.61857775893442,39.26138063029612],[-76.61857151487344,39.26136615449834],[-76.61856093240326,39.26135323284402],[-76.61855003404176,39.26134130911365],[-76.61853094201113,39.26132754101636],[-76.61851312000066,39.26131591366219],[-76.61849235798795,39.26130263465451],[-76.61847132384585,39.26129126618753],[-76.61844644619855,39.2612775477366],[-76.61842249672513,39.26126575993882],[-76.618397477024,39.26125475953206],[-76.61837313608893,39.26124509626322],[-76.61833863205833,39.26123244814274],[-76.6182893737229,39.26121560852214],[-76.61821794042416,39.26118431062944],[-76.61813434415834,39.2611450824168],[-76.61805004182435,39.26111283910117],[-76.61796616456377,39.26107074000803],[-76.61788253048115,39.26103535776849],[-76.61781329092186,39.26100384968035],[-76.61771980451293,39.26095837908786],[-76.61760117565885,39.26089981135563],[-76.6174849866092,39.26083490464081],[-76.61736589644134,39.26077493537186],[-76.61728099527946,39.26073484836425],[-76.61717118603525,39.26068485361839],[-76.61703591259459,39.26062044991536],[-76.61694640003981,39.26057760748815],[-76.61689881517408,39.26055849109282],[-76.61682680575677,39.26053992191542],[-76.61673710050708,39.26050855808239],[-76.61662246054428,39.26047438615134],[-76.61656845317671,39.26046407527586],[-76.61651043176492,39.26045876584071],[-76.61646073820276,39.26045788923281],[-76.61641969526532,39.26046410828597],[-76.61638051226305,39.26047178093486],[-76.61634734261538,39.26048206472636],[-76.61632999745946,39.26048307006068],[-76.6163242453598,39.26048742809716],[-76.6163238358186,39.26049781261148],[-76.61632792044416,39.2605065516948],[-76.6163302650168,39.26051330790738],[-76.61633003771655,39.26052127445563],[-76.61632535772684,39.26053050104178],[-76.61630437184982,39.26057181824618],[-76.61629678023422,39.26062451897938],[-76.61629607622757,39.26064886172853],[-76.61629565993587,39.26066306547541],[-76.61629285341066,39.26067210001275],[-76.61628446388377,39.26068078752634],[-76.61625521377978,39.26069924865809],[-76.6161768010111,39.26073496724428],[-76.61613515432842,39.26074480621168],[-76.61609303243091,39.26075124411329],[-76.6160481911583,39.26075509781345],[-76.6160336172727,39.26075357830575],[-76.61599437471929,39.2607486642037],[-76.61597142223563,39.26074095693813],[-76.61595665669172,39.26073160371792],[-76.61594137055486,39.26071867454679],[-76.61592634189539,39.26071126702122],[-76.6159114940626,39.26071198230784],[-76.6159021866676,39.260716198984],[-76.61589633801029,39.26072340310959],[-76.61589699790811,39.26073656458387],[-76.61590375767398,39.26074106531199],[-76.61591925160829,39.26074685658337],[-76.61593411990779,39.26075263769953],[-76.61594221263213,39.26076154934076],[-76.61595811441349,39.26078211813448],[-76.6159706228653,39.26078996779766],[-76.61598592682242,39.26079511078684],[-76.61601830704701,39.26080184722445],[-76.616031063941,39.26080125750011],[-76.61605023705538,39.26079542556796],[-76.61606952438663,39.26079268273855],[-76.61608547809652,39.26079702075121],[-76.61610553623814,39.26080386460429],[-76.61611791597873,39.26080895117639],[-76.61612381109089,39.26081457682617],[-76.61612589953782,39.26082948145032],[-76.61612351332826,39.26086833907311],[-76.61611816751015,39.26089825680946],[-76.61611746362686,39.26092856263828],[-76.61611692982964,39.26094691763746],[-76.61611661660356,39.26095769790167],[-76.61611580646965,39.26096908906335],[-76.61611196238499,39.26097521612882],[-76.61610528072778,39.26098175907995],[-76.61609675899571,39.26098810054839],[-76.61609331173892,39.26099026913598],[-76.61608446486508,39.26099866869541],[-76.61607403850697,39.26100924384851],[-76.61606823063586,39.26102004488067],[-76.61606594618094,39.2610291639893],[-76.61606278195222,39.26103812889246],[-76.61605810191318,39.26104735186358],[-76.61605363721853,39.26105789156013],[-76.61604881015613,39.2610690173721],[-76.61604451872722,39.26107815694109],[-76.61604035537623,39.26108525398769],[-76.61603467331278,39.26109164617178],[-76.61602850481226,39.26109671353738],[-76.61601644485224,39.26110297226962],[-76.61600225939661,39.26112623054287],[-76.61598956010042,39.26115149698144],[-76.61597713275395,39.26117811005467],[-76.6159665120708,39.26120702959533],[-76.61596171295223,39.26122198015396],[-76.61595594486492,39.26123784182245],[-76.61595186826041,39.26124774774267],[-76.61594556929862,39.26125465134223],[-76.61593703282536,39.26126049642757],[-76.6159291149091,39.2612670182103],[-76.61591946363075,39.26127802645101],[-76.61590880057875,39.26129121754448],[-76.61589457969713,39.26130859097321],[-76.61587075200133,39.26134438069468],[-76.61584290315493,39.26138174981322],[-76.61583245251005,39.26139615222593],[-76.61582450389756,39.26140555725798],[-76.6158181683043,39.26141408571524],[-76.61581322350573,39.26142254846253],[-76.61581062642344,39.26143011992464],[-76.6158073896601,39.2614362075312],[-76.61579951223216,39.26144380585465],[-76.61579153255875,39.26145059945763],[-76.61578202200477,39.26145572433347],[-76.61577013157425,39.26146125937763],[-76.61575924606295,39.2614673760016],[-76.61574732978949,39.26147468727248],[-76.61573751229281,39.26148107401641],[-76.61572646267513,39.26148925015566],[-76.61571709371088,39.26149754078663],[-76.61570913611277,39.26150753037943],[-76.61570277827452,39.26151866467796],[-76.61569639524099,39.261532525517],[-76.61569378948124,39.26154939917413],[-76.61569356053542,39.26156557260652],[-76.61569373685268,39.26158714746631],[-76.61569349200327,39.26160176432018],[-76.61569170302069,39.26160924294262],[-76.61568405808569,39.26161691047726],[-76.61567269533023,39.26162492074596],[-76.61565833985014,39.2616346038521],[-76.61564929352377,39.26164193801759],[-76.61564603901004,39.2616468059221],[-76.6156432602169,39.26165005580362],[-76.6156373323455,39.26165025889045],[-76.6156288256031,39.26165017339706],[-76.61561901076554,39.26165007281202],[-76.61560859267617,39.26164882267371],[-76.61559687038893,39.26164491280252],[-76.61558486212084,39.26164032101378],[-76.61557319781502,39.26163554749402],[-76.61555979770276,39.26163378135769],[-76.61553845136103,39.26163006066083],[-76.61551920958053,39.26162627478941],[-76.61549802119089,39.26162205918023],[-76.61548312670405,39.26162022869133],[-76.61547143079105,39.26161487496361],[-76.61546275285643,39.26160832048605],[-76.61545669663981,39.26160163137116],[-76.6154506567262,39.26159407216792],[-76.61544444817451,39.26158876703321],[-76.61543563328812,39.26158353803486],[-76.61542590250393,39.26158033006097],[-76.6154201870997,39.2615785314264],[-76.61540012869023,39.26156123224868],[-76.61537856113597,39.26154103666061],[-76.61535766008976,39.26151887237219],[-76.61533324238026,39.26149585614404],[-76.61531517622196,39.26148126217694],[-76.6152967589618,39.2614609012436],[-76.61528202434089,39.26144070280048],[-76.61526808840287,39.26142236705721],[-76.61525550463554,39.26139912295601],[-76.61524654606268,39.26137787332084],[-76.61523943429565,39.26134319028348],[-76.61523987535833,39.26131719107191],[-76.61524033904686,39.2612895831633],[-76.61524248086805,39.26126063050229],[-76.61524583727622,39.26122393341755],[-76.61524587881561,39.26122118711316],[-76.61524590529709,39.26121843985862],[-76.61524592020155,39.26121569076466],[-76.61524592468767,39.26121293983504],[-76.61524592106308,39.26121018887881],[-76.61524591165,39.26120743700285],[-76.61524589991956,39.26120468511929],[-76.61524588587667,39.26120193232742],[-76.61524587298751,39.26119918044004],[-76.61524586242068,39.26119642765955],[-76.61524585879609,39.26119367670334],[-76.61524586096489,39.26119092576607],[-76.61524587355197,39.26118817666449],[-76.61524589656229,39.2611854284978],[-76.6152459346256,39.261182682182],[-76.61524598890063,39.26117993772086],[-76.61524606054603,39.26117719511814],[-76.6152461530378,39.26117445438528],[-76.61524626752977,39.26117171642677],[-76.61524640749303,39.2611689821548],[-76.6152465740961,39.26116624977163],[-76.61524676964645,39.26116352108642],[-76.61524700456738,39.26116079703402],[-76.61524756487097,39.26115811187999],[-76.6152484899327,39.26115546935636],[-76.61524963153478,39.26115285186299],[-76.61525084263285,39.2611502391011],[-76.61525197499957,39.26114761527204],[-76.61525289201369,39.26114496101205],[-76.61525362727207,39.26114227733198],[-76.61525427224157,39.26113957714227],[-76.61525538371427,39.26113482292921],[-76.61525592144356,39.26113266825328],[-76.6152564946434,39.26112995521763],[-76.61525706205961,39.26112724036152],[-76.61525765724983,39.26112453190175],[-76.6152583149498,39.26112183445598],[-76.61525906639986,39.26111915623351],[-76.61525995211936,39.26111650367245],[-76.61526099758946,39.26111387865778],[-76.6152621553435,39.26111127382792],[-76.61526336981386,39.26110867999304],[-76.61526458775046,39.26110608797107],[-76.61526575358077,39.261103489473],[-76.6152668129008,39.26110087441213],[-76.61526771013823,39.26109823449946],[-76.61526837930222,39.26109555961039],[-76.61526875438751,39.26109284232249],[-76.61526891760143,39.26109009371432],[-76.61526897198777,39.26108732853581],[-76.61526901595583,39.26108456152161],[-76.6152691525495,39.26108180742161],[-76.61526948250007,39.26107908007739],[-76.61527007297167,39.26107638691511],[-76.61527083599778,39.26107371053202],[-76.61527173914037,39.26107104992099],[-76.61527276036512,39.26106840861296],[-76.6152738799501,39.26106579104712],[-76.61527507470716,39.26106319984987],[-76.61527632955894,39.26106063767401],[-76.61527765381386,39.26105809734396],[-76.61527903823186,39.26105557342478],[-76.6152804712359,39.26105306407707],[-76.6152819412637,39.2610505647591],[-76.61528343326715,39.26104807271924],[-76.61528493452523,39.261045583412],[-76.61528643462448,39.26104309410092],[-76.61528791852179,39.26104060113364],[-76.61528939205924,39.26103809552171],[-76.61529131057264,39.26103579674256],[-76.61529371475704,39.26103367880727],[-76.61529629823292,39.2610316173069],[-76.6152988353813,39.26102955205162],[-76.61530109710701,39.26102742284027],[-76.61530285431996,39.26102516857089],[-76.61530388716525,39.26102273447721],[-76.61530420714173,39.26102013681071],[-76.61530401560965,39.2610174221702],[-76.6153035151269,39.26101462995236],[-76.61530291055887,39.2610118013628],[-76.61530240446346,39.26100897579811],[-76.61530220170121,39.26100619536479],[-76.61530233703706,39.26100345927593],[-76.61530262067332,39.26100072547447],[-76.61530299815227,39.26099799378193],[-76.61530342081942,39.26099526223749],[-76.61530383770294,39.26099252887249],[-76.61530419665769,39.26098979441699],[-76.61530444787047,39.26098705690623],[-76.61530458091332,39.26098431630597],[-76.6153046398206,39.26098157185984],[-76.61530464543384,39.26097882633831],[-76.61530461977264,39.2609760789128],[-76.61530458368344,39.26097333145309],[-76.61530456033474,39.26097058493593],[-76.61530455900083,39.26096783849086],[-76.61530452870008,39.26096509195091],[-76.61530447639437,39.26096234353729],[-76.61530441713663,39.26095959510097],[-76.61530436714334,39.2609568475957],[-76.615304342636,39.26095410107472],[-76.6153043621533,39.26095135559871],[-76.61530443958466,39.26094861391553],[-76.61530459115643,39.26094587517751],[-76.61530480761378,39.26094313665205],[-76.61530506811037,39.26094039646935],[-76.61530537494902,39.26093765733923],[-76.61530573044203,39.26093492017004],[-76.6153061368873,39.26093218857235],[-76.61530659775596,39.26092946345834],[-76.61530711535553,39.26092674663708],[-76.6153076919887,39.26092404081843],[-76.61530834386228,39.26092134875775],[-76.61530909183719,39.26091866962268],[-76.61530991275465,39.26091600063494],[-76.61531078693184,39.26091333902793],[-76.61531169236872,39.26091068202704],[-76.61531260591617,39.26090802505276],[-76.61531350672801,39.26090536623521],[-76.61531437396266,39.26090270280383],[-76.61531519025971,39.26090003109866],[-76.61531602162427,39.26089735854204],[-76.61531687962842,39.26089468787423],[-76.6153177434308,39.26089201632465],[-76.61531859218013,39.26088934292424],[-76.61531940503498,39.26088666490235],[-76.61532016113934,39.26088398219076],[-76.61532083849308,39.26088129201501],[-76.6153214185672,39.26087859251285],[-76.61532187703456,39.26087588270395],[-76.61532216526028,39.26087315702429],[-76.61532230871558,39.26087041916033],[-76.61532235025669,39.26086767195491],[-76.61532233158107,39.2608649182468],[-76.61532229785253,39.26086216268785],[-76.6153222907685,39.26085940811697],[-76.61532235202164,39.26085665827378],[-76.61532252793924,39.26085391691315],[-76.61532281157895,39.26085118221072],[-76.61532315892113,39.26084845222084],[-76.61532355723499,39.26084572419951],[-76.61532399261654,39.26084299810108],[-76.61532445000306,39.26084027387629],[-76.61532491665398,39.2608375505826],[-76.61532537867502,39.26083482637299],[-76.61532582215736,39.26083210210264],[-76.61532625984633,39.26082937781327],[-76.61532670332372,39.26082665444368],[-76.61532715259439,39.26082393109307],[-76.61532760649486,39.26082120865836],[-76.61532806155884,39.26081848532669],[-76.61532851893521,39.26081576290334],[-76.61532897515289,39.26081304047625],[-76.61532943021189,39.26081031804529],[-76.61532987369392,39.26080759377492],[-76.61533026508462,39.26080486032622],[-76.61533061943685,39.26080211955001],[-76.61533096452465,39.2607993778427],[-76.61533132581914,39.2607966388908],[-76.61533172994525,39.26079390728535],[-76.61533220236944,39.26079118761358],[-76.61533277086546,39.26078848627192],[-76.61533346091434,39.26078580514525],[-76.61533431417443,39.2607831542786],[-76.61533533527549,39.26078053458784],[-76.61533647791958,39.26077793691363],[-76.6153376958039,39.26077535299743],[-76.61533894263529,39.2607727727791],[-76.6153401709523,39.26077018799625],[-76.61534133792809,39.26076759040174],[-76.61534239379365,39.260764969924],[-76.6153433223422,39.26076232380776],[-76.61534416641531,39.26075965759787],[-76.61534495262325,39.26075697858767],[-76.61534570526877,39.26075429226139],[-76.61534645097197,39.26075160411079],[-76.61534721518453,39.26074892142549],[-76.6153480233776,39.26074624789189],[-76.6153489021567,39.26074359170408],[-76.61534987930537,39.26074095745691],[-76.61535099879934,39.2607383552029],[-76.6153522421243,39.26073578037752],[-76.61535355835741,39.26073322200477],[-76.61535490005187,39.26073066911997],[-76.61535621742881,39.26072811345325],[-76.61535746304634,39.26072554313917],[-76.61535858713539,39.26072294810626],[-76.61535953993187,39.26072031738229],[-76.61536029248857,39.26071764726942],[-76.61536087721406,39.26071494417915],[-76.61536134734853,39.26071221909512],[-76.61536175151213,39.26070948028346],[-76.61536214178628,39.260706738724],[-76.61536256794982,39.26070400268672],[-76.61536308208424,39.26070128315138],[-76.61536373396343,39.26069858928873],[-76.61536455252477,39.26069592659818],[-76.6153654729512,39.26069328225663],[-76.61536647208885,39.26069065258511],[-76.6153675337359,39.26068803392764],[-76.6153686428443,39.26068542353247],[-76.61536978204381,39.26068281954124],[-76.61537093629128,39.26068021830159],[-76.61537208821643,39.26067761795507],[-76.61537322278103,39.26067501394862],[-76.61537432955707,39.26067240624807],[-76.61537544674147,39.26066980218467],[-76.61537657781517,39.26066720086904],[-76.6153777181435,39.26066460228602],[-76.61537886425532,39.26066200552346],[-76.61538000805457,39.26065940785259],[-76.61538114607019,39.26065680836115],[-76.6153822725137,39.26065420612955],[-76.61538338159662,39.26065160023797],[-76.6153845115355,39.26064899441472],[-76.61538570284942,39.26064639509781],[-76.61538692195668,39.26064379857429],[-76.6153881375976,39.26064120023783],[-76.61538931386818,39.26063859726855],[-76.61539041951852,39.26063598325879],[-76.6153914186398,39.26063335628933],[-76.61539228113591,39.26063071085697],[-76.61539296995403,39.26062804233659],[-76.61539342140156,39.2606253442142],[-76.61539363548346,39.26062261558901],[-76.615393681671,39.26061986569626],[-76.61539362596902,39.26061710195828],[-76.61539353437773,39.26061433269815],[-76.61539347406064,39.26061156534197],[-76.61539351217164,39.26060880911736],[-76.61539371472055,39.26060607054596],[-76.61539414190912,39.26060335883258],[-76.61539474511738,39.26060066571104],[-76.61539547570077,39.260597987419],[-76.61539630124592,39.26059531844562],[-76.61539719279594,39.26059265689459],[-76.615398120245,39.26058999906417],[-76.61539905349223,39.26058734035196],[-76.61539996242689,39.26058467795708],[-76.61540081578458,39.26058200817396],[-76.61540158461816,39.26057932730484],[-76.61540224579342,39.26057662806773],[-76.61540281900757,39.26057391052719],[-76.61540333898166,39.26057118200303],[-76.61540383927306,39.26056845071213],[-76.61540435460749,39.26056572307355],[-76.61540491738864,39.26056300639956],[-76.61540556348626,39.26056030981535],[-76.61540632531377,39.26055763883168],[-76.61540723642845,39.26055500166532],[-76.61540830262363,39.26055239833526],[-76.61540945329395,39.26054981509879],[-76.61541067339624,39.26054724830357],[-76.61541195368073,39.26054469431609],[-76.6154132825656,39.26054215219784],[-76.61541465311352,39.26053961922363],[-76.61541605258894,39.26053709355031],[-76.6154174729007,39.26053457154829],[-76.61541890478438,39.26053205228646],[-76.61542033666794,39.26052953302462],[-76.61542176045046,39.2605270119347],[-76.61542316572357,39.26052448537948],[-76.6154245432228,39.26052195242796],[-76.61542588137613,39.26051941033983],[-76.61542721374579,39.26051686643127],[-76.61542856926422,39.2605143271023],[-76.6154299363497,39.2605117914143],[-76.61543130807468,39.26050925484068],[-76.61543267169371,39.26050671733974],[-76.61543402027442,39.26050417528572],[-76.6154353433986,39.2605016268429],[-76.61543662948932,39.26049907017188],[-76.61543787276794,39.26049650255143],[-76.61543905934514,39.26049392123375],[-76.61544018343241,39.26049132529911],[-76.61544122767431,39.2604887101869],[-76.61544217702762,39.26048607224469],[-76.61544304421814,39.26048341511728],[-76.61544384776506,39.26048074246838],[-76.61544460618262,39.26047805886249],[-76.61544533451388,39.26047536795188],[-76.61544605127791,39.26047267340036],[-76.61544677382547,39.26046998066929],[-76.61544752068545,39.26046729162091],[-76.61544830688624,39.26046461260981],[-76.61544915211046,39.2604619464027],[-76.61545003783912,39.26045928933594],[-76.61545093630323,39.26045663411241],[-76.61545184749792,39.26045398163285],[-76.61545276911075,39.26045133098896],[-76.61545370230041,39.26044868218453],[-76.61545464474467,39.26044603611265],[-76.61545559760707,39.26044339187644],[-76.61545655972893,39.26044074947204],[-76.61545752994678,39.2604381097965],[-76.61545850827025,39.26043547104823],[-76.61545949468972,39.26043283502879],[-76.61546048805127,39.26043020083358],[-76.61546148720122,39.26042756755812],[-76.61546249098575,39.26042493429777],[-76.61546350402972,39.26042230286929],[-76.61546452632831,39.26041967417342],[-76.61546556251618,39.26041704822533],[-76.61546661490566,39.26041442593335],[-76.61546768464575,39.26041180910279],[-76.61546877521246,39.26040919774503],[-76.61546989007195,39.26040659367293],[-76.61547103038777,39.26040399598957],[-76.61547219615504,39.26040140559569],[-76.6154733816,39.2603988188693],[-76.61547458788131,39.26039623581414],[-76.61547581961403,39.26039366004852],[-76.6154770802693,39.26039109248448],[-76.61547837215474,39.26038853493113],[-76.61547969873652,39.26038598920142],[-76.61548106348084,39.2603834571081],[-76.61548246985402,39.26038094046416],[-76.61548392363946,39.26037844109006],[-76.61548543061598,39.260375961707],[-76.61548698385589,39.26037349778843],[-76.61548857410459,39.26037104660183],[-76.61549019095364,39.26036860450994],[-76.61549182398967,39.26036616877645],[-76.61549346396781,39.26036373486718],[-76.61549510163336,39.26036130004953],[-76.61549672773666,39.26035886069016],[-76.61549833071044,39.26035641314814],[-76.61549990130504,39.26035395379005],[-76.6155014510875,39.26035148625692],[-76.61550300087964,39.26034901692227],[-76.61550454257565,39.26034654485876],[-76.61550606923828,39.2603440673414],[-76.61550757277142,39.26034158164138],[-76.61550904392055,39.26033908502612],[-76.61551047573846,39.26033657657202],[-76.61551186013405,39.26033405264962],[-76.6155132052083,39.2603315150869],[-76.61551454222057,39.26032896849013],[-76.61551585843053,39.26032641191671],[-76.61551713646799,39.26032384350837],[-76.6155183612752,39.26032126231497],[-76.61551951896296,39.26031866558871],[-76.61552059331483,39.26031605237577],[-76.61552156928278,39.26031341992459],[-76.6155224144488,39.26031076362512],[-76.61552309296269,39.26030807074931],[-76.61552364764616,39.26030535044497],[-76.61552412247462,39.2603026127646],[-76.61552456373114,39.26029986956971],[-76.61552501887205,39.26029713002337],[-76.6155255330217,39.26029440598326],[-76.61552615363641,39.26029170661242],[-76.61552692584537,39.26028904286791],[-76.61552789709518,39.26028642571426],[-76.6155290893564,39.26028386333027],[-76.61553046328822,39.26028134567868],[-76.61553197144406,39.260278861795],[-76.61553356523828,39.2602763971078],[-76.6155351972194,39.26027394155328],[-76.61553681647956,39.26027148145323],[-76.61553837674057,39.26026900404544],[-76.6155398282435,39.26026649745693],[-76.6155411235516,39.26026394892173],[-76.6155422765541,39.26026136118755],[-76.61554333237542,39.26025874611219],[-76.61554431184219,39.26025610916835],[-76.61554524040584,39.26025345764557],[-76.61554613772948,39.26025079791361],[-76.61554702812067,39.26024813455588],[-76.61554793354998,39.26024547575118],[-76.61554887600754,39.2602428260754],[-76.61554987862755,39.26024019281041],[-76.61555095878985,39.26023757601306],[-76.61555209683637,39.26023496841292],[-76.61555326960357,39.26023236813263],[-76.6155544493129,39.26022976967656],[-76.61555561049815,39.26022716845745],[-76.61555672769333,39.26022455988824],[-76.61555777542733,39.26022194028239],[-76.61555872707056,39.26021930594964],[-76.61555955832526,39.26021665050509],[-76.61556023908095,39.26021397114784],[-76.61556076702036,39.26021126787032],[-76.61556117572019,39.26020854528628],[-76.61556149643502,39.26020580890268],[-76.61556176274162,39.26020306333326],[-76.61556200705809,39.26020031318802],[-76.61556226179756,39.26019756397767],[-76.61556256053191,39.26019482121672],[-76.61556293684768,39.26019208771744],[-76.61556339189372,39.26018936528511],[-76.61556385736762,39.26018664288695],[-76.61556433443302,39.26018391962594],[-76.61556482886849,39.26018119822331],[-76.61556534414517,39.26017847959124],[-76.61556588721007,39.26017576465321],[-76.61556646384685,39.26017305522966],[-76.61556707984379,39.26017035224037],[-76.61556773982583,39.26016765750202],[-76.61556845189875,39.26016497194183],[-76.61556924500451,39.26016230015845],[-76.61557011683075,39.26015964124352],[-76.61557104885357,39.26015699243408],[-76.61557202486625,39.26015435097483],[-76.61557302749881,39.26015171500732],[-76.61557403939076,39.26014908087165],[-76.61557504317206,39.26014644670938],[-76.61557603190046,39.26014381069633],[-76.61557702178258,39.2601411755878],[-76.61557801398195,39.26013854048685],[-76.61557900733986,39.26013590538964],[-76.61558000185153,39.26013327119701],[-76.6155809986804,39.26013063701194],[-76.61558199666304,39.26012800373139],[-76.61558299696286,39.26012537045846],[-76.61558399842127,39.26012273718926],[-76.61558500103341,39.26012010482464],[-76.61558600596277,39.26011747246759],[-76.6155870132045,39.26011484101885],[-76.61558802044615,39.2601122095701],[-76.61558903000508,39.26010957812895],[-76.61559004187635,39.26010694759611],[-76.61559105490616,39.26010431706703],[-76.61559206908974,39.26010168744251],[-76.61559308558563,39.26009905872632],[-76.61559410324502,39.26009642911311],[-76.61559512205811,39.2600938004045],[-76.61559614318352,39.26009117260421],[-76.61559716430891,39.26008854480388],[-76.61559828032217,39.26008593983337],[-76.6155995675679,39.26008338136256],[-76.61560093808566,39.26008085108811],[-76.6156023143869,39.26007832263413],[-76.61560369415908,39.26007579509223],[-76.61560507855609,39.26007326936702],[-76.61560646642408,39.26007074455392],[-76.61560785660438,39.26006822064917],[-76.61560925026058,39.26006569675572],[-76.61561064622418,39.26006317467136],[-76.61561204334639,39.26006065259079],[-76.61561344278583,39.26005813051782],[-76.61561484222031,39.26005560934553],[-76.61561624165462,39.26005308817321],[-76.61561764224753,39.26005056700472],[-76.61561904168659,39.26004804493164],[-76.61562043996194,39.26004552375547],[-76.6156218382421,39.26004300167858],[-76.61562323305107,39.26004047868951],[-76.61562462670128,39.26003795569665],[-76.61562601688036,39.26003543179161],[-76.61562740359305,39.26003290607371],[-76.61562878798837,39.26003038034818],[-76.61563016775867,39.26002785280595],[-76.61563154289915,39.26002532434779],[-76.615632912256,39.26002279406918],[-76.61563427698793,39.26002026197381],[-76.61563563593131,39.26001772895876],[-76.61563698909592,39.26001519322243],[-76.61563833415966,39.26001265565807],[-76.61563967343973,39.26001011627324],[-76.61564100346506,39.26000757415574],[-76.61564232654817,39.26000503021401],[-76.6156436311268,39.2600024799063],[-76.61564489753307,39.25999991776369],[-76.61564612692571,39.25999734378987],[-76.61564732392462,39.25999476070235],[-76.61564849200579,39.25999216851249],[-76.61564963347686,39.25998956902932],[-76.61565075412614,39.25998696317269],[-76.61565185626127,39.25998435275158],[-76.61565294335324,39.25998173867809],[-76.6156540177146,39.25997912186069],[-76.61565508512878,39.25997650411976],[-76.61565614790831,39.25997388636366],[-76.61565720027443,39.25997126587109],[-76.61565823759749,39.25996864172627],[-76.61565925988234,39.25996601302837],[-76.61566026596539,39.25996338067436],[-76.61566125700541,39.25996074466799],[-76.61566223184856,39.25995810410479],[-76.6156631916437,39.25995546079],[-76.61566413407358,39.25995281471612],[-76.61566506146043,39.25995016498988],[-76.61566597264064,39.25994751250826],[-76.61566686761417,39.25994485727129],[-76.61566774406876,39.25994219837065],[-76.61566859621581,39.25993953488662],[-76.61566942522389,39.25993686502144],[-76.6156702310783,39.25993419147743],[-76.61567101609633,39.25993151426211],[-76.61567178144156,39.25992883247855],[-76.6156725271043,39.2599261479283],[-76.61567325424305,39.2599234606151],[-76.61567396633384,39.25992077055032],[-76.61567466104967,39.25991807952793],[-76.61567536041474,39.25991538581841],[-76.61567608643367,39.25991269129538],[-76.6156768205826,39.25990999319586],[-76.61567754431336,39.25990729326069],[-76.61567824141454,39.25990458963533],[-76.61567889102541,39.25990188315217],[-76.61567947576623,39.25989917375445],[-76.61567997710331,39.25989646048064],[-76.61568037765687,39.25989374327394],[-76.61568065888852,39.25989102207362],[-76.61568079531757,39.25988829499475],[-76.61568079389595,39.2598855620601],[-76.61568067779677,39.25988282334554],[-76.61568047365935,39.25988008073974],[-76.61568020581059,39.25987733522314],[-76.61567990088977,39.25987458868445],[-76.61567958323354,39.25987184030251],[-76.61567927831277,39.25986909376378],[-76.61567901162279,39.25986634825094],[-76.61567880748548,39.25986360564515],[-76.6156786392665,39.2598608631569],[-76.61567848496111,39.25985811891265],[-76.61567833529034,39.25985537468359],[-76.61567817982146,39.25985263133629],[-76.61567801044878,39.25984988794348],[-76.61567781672969,39.2598471471733],[-76.61567758824125,39.25984440809088],[-76.61567731570443,39.25984167246734],[-76.61567699448955,39.25983893938674],[-76.6156766327072,39.25983620887573],[-76.61567623846793,39.25983348096074],[-76.61567581872855,39.25983075476385],[-76.61567538508046,39.25982802942223],[-76.61567494332179,39.25982530405402],[-76.61567450388054,39.25982257869342],[-76.61567377949953,39.25981791034449],[-76.61566649588188,39.25980125742772],[-76.61548783029305,39.25974423039617]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000116,"geom:area_square_m":1109337.171616,"geom:bbox":"-76.632205927,39.2551471141,-76.6152394343,39.2676713602","geom:latitude":39.260712,"geom:longitude":-76.623264,"iso:country":"US","lbl:latitude":39.259717,"lbl:longitude":-76.623389,"lbl:max_zoom":18,"mps:latitude":39.259717,"mps:longitude":-76.623389,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"reversegeo:latitude":39.259717,"reversegeo:longitude":-76.623389,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108797011,102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1f1b08082ec93cab14ce147d6895dc06","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797017,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797017,"wof:lastmodified":1566624039,"wof:name":"Middle Branch","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797019.geojson b/fixtures/microhoods/1108797019.geojson new file mode 100644 index 0000000..f3a6f6b --- /dev/null +++ b/fixtures/microhoods/1108797019.geojson @@ -0,0 +1 @@ +{"id":1108797019,"type":"Feature","bbox":[-76.60822102647262,39.2593051783579,-76.59951340278704,39.2659055365403],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.59951340278704,39.26187382390671],[-76.60490162190482,39.2593051783579],[-76.60490895999095,39.2593376009909],[-76.60491102211118,39.25933952926847],[-76.6050398293357,39.25944394730494],[-76.60525026090829,39.25961539016953],[-76.60547238023281,39.25979698303983],[-76.60548434516546,39.25979460737833],[-76.60558003669097,39.25987235528399],[-76.6057933140304,39.26004404270541],[-76.60598268658832,39.26019692975212],[-76.60613251073909,39.26031660042249],[-76.60626831917335,39.26042701174539],[-76.60640314963248,39.26053437323028],[-76.60646241025825,39.26058166580987],[-76.60651978299097,39.2606273711845],[-76.60657821764245,39.26067466093615],[-76.60665215401767,39.26073394947291],[-76.60670627717474,39.26077792700438],[-76.60678423578815,39.26084282449825],[-76.60686401361536,39.2609052256956],[-76.60697150558373,39.26099057388619],[-76.60697792136467,39.26098637255906],[-76.60698086020281,39.26098881266729],[-76.60700344386399,39.26097131606782],[-76.60711593479493,39.26105999748151],[-76.60710489518361,39.26107017435358],[-76.60710507779363,39.26107549039659],[-76.60710863062546,39.26108192926353],[-76.60711339975755,39.26108738135498],[-76.60711892049976,39.26109101911189],[-76.60712664218431,39.26109413367984],[-76.60713630497958,39.2610997066319],[-76.60714035215439,39.26110496624484],[-76.60714282398764,39.26111139428794],[-76.60714841335657,39.26111917130199],[-76.60715445440844,39.2611234278239],[-76.6071606686559,39.26112360804902],[-76.60716740536245,39.26111962216807],[-76.60717290751249,39.26111636267963],[-76.6071781072813,39.26111560811602],[-76.60718222400021,39.26111709644449],[-76.60718579047638,39.26112044391886],[-76.60718574831981,39.26112471071585],[-76.60718233137854,39.26112574777954],[-76.60717757373625,39.26112575438339],[-76.60717448683283,39.2611257791869],[-76.60717429787468,39.26112747019709],[-76.60717666414988,39.26112931477879],[-76.60717739272329,39.2611316619151],[-76.60717717968399,39.26113456347689],[-76.60717397664146,39.2611381954677],[-76.6071726467143,39.26114107978165],[-76.60716169056388,39.26113429457605],[-76.6071534565418,39.26113644688849],[-76.60715050458585,39.26113449045323],[-76.60714625369927,39.261137982021],[-76.60715266242083,39.26114154528089],[-76.60721382056543,39.26118428142787],[-76.60728075731667,39.26123725788202],[-76.6073357269915,39.26128167301638],[-76.60738657656057,39.26132312703619],[-76.60744989448094,39.26137472212431],[-76.60751419556645,39.2614272752773],[-76.60757162855784,39.2614769968477],[-76.6076092085827,39.26151495377892],[-76.60762118753154,39.26150735799714],[-76.60762497586987,39.26150746974004],[-76.60763348064665,39.26150748734844],[-76.60763805679848,39.26150573172913],[-76.60763714371745,39.26149777219563],[-76.60762597785785,39.26149620538274],[-76.60761993852527,39.26149749491929],[-76.6076149948804,39.26149236834408],[-76.60763753477214,39.26148195061375],[-76.60767559595773,39.26151902187488],[-76.6077121798803,39.26150661621556],[-76.60772341186644,39.26150691135689],[-76.60772836446075,39.26150622800462],[-76.60773870675543,39.26151235804902],[-76.6077604233163,39.26152637447633],[-76.60778181454808,39.26153355371672],[-76.60779440990879,39.26153778092175],[-76.60780804860029,39.26154435253676],[-76.60781416375083,39.26155282666657],[-76.60781780369562,39.26155756605285],[-76.60781947128773,39.26155563947516],[-76.60781776670056,39.26155335754192],[-76.6078117184696,39.261542209256],[-76.60781194651511,39.26154057152092],[-76.60781295773351,39.26153916339497],[-76.60781517133333,39.26153802861429],[-76.6078172249956,39.26153773912043],[-76.60781909302037,39.2615383326598],[-76.60782049582473,39.26154028930875],[-76.6078206437007,39.26154351365079],[-76.60782325918217,39.26154639673604],[-76.60782515376643,39.26154994218027],[-76.60782779801924,39.26154950603193],[-76.6078300317718,39.26155164380789],[-76.60783167803586,39.26155420568497],[-76.607831045175,39.26155738868655],[-76.60782849317164,39.26156105079275],[-76.6078275588017,39.26156385896874],[-76.6078285991761,39.26156619092814],[-76.60783173675743,39.26156706344139],[-76.60783532091071,39.2615647054909],[-76.60783992953483,39.26156860589355],[-76.60784560456665,39.2615789341336],[-76.60784592281708,39.26159347358938],[-76.60784675175988,39.26159884043014],[-76.60784535679525,39.26160385214775],[-76.60784035275253,39.26160902205773],[-76.60783977088292,39.26161136481321],[-76.60784026667827,39.26161935627968],[-76.60784399418718,39.26162481567093],[-76.60784566386994,39.26163341457198],[-76.60785135694455,39.26163775276575],[-76.60785850065362,39.26164566734791],[-76.60786875735582,39.26165198535516],[-76.60788208537983,39.26165858654994],[-76.60789428264522,39.26166642162244],[-76.60790413722926,39.2616719104782],[-76.60790971940045,39.26167618974883],[-76.60791113698836,39.2616784076686],[-76.60791107239523,39.26168443629193],[-76.60791548319227,39.26170107559006],[-76.60788464918136,39.26172367018092],[-76.60795866941058,39.26178159799041],[-76.60804468125362,39.26184812217127],[-76.60810117251862,39.26189330136221],[-76.60815951061448,39.26193936043242],[-76.60822102647262,39.26198721719803],[-76.60819596810231,39.2620046562274],[-76.6082172713323,39.26202264447476],[-76.6082083742849,39.26202713664482],[-76.60806356296035,39.26212160242859],[-76.60794675357617,39.26219892533449],[-76.6079216412413,39.26221526799666],[-76.60788932168104,39.26223630099329],[-76.60789703596225,39.26225147946565],[-76.60790221492769,39.26225827863816],[-76.60790335105796,39.26226425362054],[-76.60790026431924,39.26226885344277],[-76.60789763162525,39.26226970938909],[-76.60789077131696,39.26226941985476],[-76.6078822047131,39.26226652500695],[-76.60787427381615,39.26226119120096],[-76.60786432189187,39.26225778639525],[-76.60785171040843,39.26225968003038],[-76.60783915633469,39.26225621699053],[-76.60783098455182,39.26225023202289],[-76.60782511991734,39.26224044631402],[-76.60782456360847,39.26223250148679],[-76.6078189901153,39.26222748361241],[-76.60781022259299,39.26222907661363],[-76.60780101774267,39.26223558094049],[-76.6077815197755,39.26224695376609],[-76.60777353467901,39.26225457281133],[-76.60776305703486,39.26225949383821],[-76.60773202347255,39.26226195736389],[-76.60770531107805,39.2622622662686],[-76.60767914302168,39.2622624121453],[-76.60765860317221,39.26226040236742],[-76.60764196522432,39.2622597675839],[-76.60763345846026,39.26225820695475],[-76.60762802919223,39.26225518835673],[-76.60761597305091,39.26224801219087],[-76.60760403332775,39.26224325227167],[-76.60758862678746,39.26224078763236],[-76.60756894320038,39.26223606038172],[-76.60755252004881,39.26223283389392],[-76.60753706488305,39.26222659126559],[-76.6075215745413,39.26222398581761],[-76.60750612357499,39.26222201283813],[-76.60748873747085,39.26221984602867],[-76.6074726551988,39.26221972381374],[-76.60745433879124,39.26221983553407],[-76.60743865822893,39.26222417796124],[-76.60741792615647,39.2622286422168],[-76.60739401068182,39.26223297151964],[-76.60736930234219,39.26224049679271],[-76.60734708785098,39.26224692065357],[-76.60732337214469,39.2622551419264],[-76.60729337866873,39.26226563915815],[-76.60727215553571,39.26227403539829],[-76.60725325223672,39.26228388062167],[-76.60722659310608,39.26229361522874],[-76.60720080886847,39.2623004063451],[-76.60717453252066,39.26230504117333],[-76.60714927853714,39.26230521160819],[-76.60712700448694,39.26230396789362],[-76.60710901511956,39.26229523421487],[-76.60708825159831,39.26228569857558],[-76.60706456256872,39.26228093261684],[-76.60704187666171,39.26227287770421],[-76.60701281896817,39.26226503566321],[-76.60699118844384,39.26226329685264],[-76.60696862186757,39.26225545670785],[-76.6069441774269,39.26224796157258],[-76.60692225648111,39.2622434293973],[-76.60689847138988,39.26223488256129],[-76.60687608125039,39.26222636200881],[-76.60685163748526,39.26221812102071],[-76.60683152494467,39.26221156275089],[-76.60680846870066,39.26220991821754],[-76.60678036078714,39.2622103069113],[-76.60675701695087,39.26221058634545],[-76.60673590003373,39.26221339808474],[-76.6067054115754,39.26222141189393],[-76.60668443521308,39.26222792264704],[-76.6066605817121,39.26223632347833],[-76.60665430856002,39.26223880930232],[-76.60662410816767,39.26225421755678],[-76.60660675255204,39.26226703859292],[-76.60659599023992,39.26228441798128],[-76.60658666149146,39.26230196340877],[-76.60657201853041,39.26232228701416],[-76.60656145536299,39.26234136321195],[-76.60655335120389,39.26235893706014],[-76.60654891693903,39.26236915222177],[-76.60654577140514,39.26237639826713],[-76.60653564856247,39.26239818634761],[-76.60653343814172,39.26242151873275],[-76.60652665496944,39.26243594611957],[-76.6065198093646,39.26245013909715],[-76.60651738762475,39.2624735482396],[-76.60651753511884,39.26249208653238],[-76.60651302877103,39.26250923916335],[-76.60650775315071,39.26252825110304],[-76.60650289679667,39.26254541607217],[-76.60649771324728,39.26256495797112],[-76.60649269815131,39.2625829574193],[-76.60648740082438,39.26260191163587],[-76.6064832029811,39.26261880137407],[-76.60648029664058,39.26264559667774],[-76.60648162344059,39.26265665984809],[-76.60649358996574,39.26266786946679],[-76.60650671212814,39.26267838215947],[-76.60651106488801,39.26268893122216],[-76.60651196307431,39.26270143778703],[-76.60651210849001,39.26271742509778],[-76.60651233875039,39.26273566461173],[-76.60651251316852,39.26275457140729],[-76.60651230144438,39.26277436596644],[-76.60650170160746,39.26280317482748],[-76.60649536247456,39.26281838556528],[-76.60649209120115,39.26283952642756],[-76.60648534768178,39.26286330210912],[-76.60648538945162,39.26288188958782],[-76.60648372087395,39.26290320606523],[-76.606482608591,39.26291844332495],[-76.60648291275196,39.26292607114307],[-76.60648673000094,39.26292871417613],[-76.60649746580522,39.26293640757653],[-76.60650258983824,39.26294160506088],[-76.60650381864286,39.26294735607543],[-76.60649980492482,39.26295339668453],[-76.60648938508243,39.26296311347748],[-76.60652511027719,39.26298851683134],[-76.60653475909997,39.26297763005715],[-76.60654329986258,39.26297745870329],[-76.6065508911967,39.26297778319295],[-76.60655800381384,39.26298315307877],[-76.60656319435624,39.2629897316598],[-76.60656864219247,39.26299692722767],[-76.60657366159981,39.26300574093991],[-76.60657463008069,39.26301581206324],[-76.60657585322274,39.26302634793496],[-76.60657600440187,39.26303607312762],[-76.60657522930563,39.2630458798891],[-76.60657249465712,39.2630550855789],[-76.60656699762609,39.26306240571508],[-76.60654394412269,39.26308550612455],[-76.60653858656903,39.26308731402951],[-76.60651527430217,39.26310629795953],[-76.60649362782496,39.26312285539462],[-76.6065111545529,39.26312895196922],[-76.6064763311365,39.26315426124147],[-76.60635975434421,39.2632477322958],[-76.60622998415367,39.26315050344985],[-76.60609546782116,39.26325791651728],[-76.60588597134686,39.2634328047132],[-76.60575794456521,39.26353595061454],[-76.60566387671093,39.26361257922523],[-76.60558896181784,39.26367183413303],[-76.60520867185359,39.26397891415337],[-76.604969655054,39.26417469652986],[-76.60492619393861,39.26420987751573],[-76.60492245237562,39.26420945597975],[-76.60487753300184,39.26417667635592],[-76.60487589881379,39.26417590790751],[-76.60487392003846,39.26417542654517],[-76.6048714564656,39.2641756488524],[-76.60481277940855,39.26421922329133],[-76.60477541734922,39.26425199447569],[-76.60472989440991,39.26429200827201],[-76.60231084788016,39.26235487598095],[-76.60171848736336,39.26188050026194],[-76.60167619565527,39.2618464383938],[-76.6016761596384,39.26211193513708],[-76.60197883445227,39.262353751109],[-76.60200382029063,39.26237371394027],[-76.60222052785024,39.26254678582072],[-76.60243290077254,39.26271650436858],[-76.6026060624043,39.26285433777046],[-76.60279728977653,39.26300801887148],[-76.60297875801996,39.26315382547502],[-76.60315979067828,39.26329850435798],[-76.60333980093985,39.26344255616869],[-76.60348200422125,39.26355682767686],[-76.60365515728908,39.26369505759469],[-76.60384926346053,39.26384821699481],[-76.60403831045718,39.26399926021794],[-76.60423362563684,39.2641586635562],[-76.60433892868413,39.26424288433705],[-76.60427682407779,39.26428596955366],[-76.60450393268643,39.26446438756205],[-76.6042564098858,39.26464823258269],[-76.60402449758367,39.26482442004808],[-76.60404151719563,39.26483733228348],[-76.60393558692095,39.26491792430579],[-76.60391992655907,39.26490521480858],[-76.60373797462226,39.26503911343851],[-76.60374634533773,39.26504744405435],[-76.60364116332687,39.26513315919409],[-76.60292869215242,39.26571377110377],[-76.60276019401502,39.26584998992767],[-76.60276295939632,39.26585196205309],[-76.60275124592987,39.26586034640299],[-76.60268429177498,39.26587777042658],[-76.60258126149097,39.2659055365403],[-76.60257998698394,39.26590488998035],[-76.60245368705485,39.26573784852917],[-76.60229909919109,39.26553143409047],[-76.60215862885656,39.26534538226109],[-76.6019766890587,39.2651042447093],[-76.60185178225184,39.264938070219],[-76.60167580371176,39.26470421166],[-76.6016417482002,39.26465916046427],[-76.6015341016571,39.26451667218684],[-76.60149878711668,39.26446928819092],[-76.60141840777582,39.26436143855522],[-76.60129673226119,39.26419972779142],[-76.601174907286,39.26403749393938],[-76.601066176867,39.26389397734714],[-76.60103075169118,39.26384886365892],[-76.6009259472897,39.26370953352164],[-76.60081767844382,39.26356653709298],[-76.60068454731535,39.26339055097451],[-76.60057861533615,39.26324963221946],[-76.6004344712685,39.26305766745073],[-76.60029301286849,39.26287061811559],[-76.60016370524407,39.26269905093307],[-76.60000272311282,39.26248479190569],[-76.59989881386105,39.26234668257104],[-76.59972221920563,39.26211196303605],[-76.5996299973115,39.26198872713177],[-76.59955041150407,39.2618837576811],[-76.59954429087004,39.26187827274925],[-76.59954157191277,39.26187633042863],[-76.59953626517746,39.261874045098],[-76.59953091914252,39.26187276939413],[-76.59952312284074,39.26187244915561],[-76.59951715065579,39.26187289538595],[-76.59951340278704,39.26187382390671]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":259287.628638,"geom:bbox":"-76.6082210265,39.2593051784,-76.5995134028,39.2659055365","geom:latitude":39.262337,"geom:longitude":-76.60368,"iso:country":"US","lbl:latitude":39.261835,"lbl:longitude":-76.604702,"lbl:max_zoom":18,"mps:latitude":39.261835,"mps:longitude":-76.604702,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"reversegeo:latitude":39.261835,"reversegeo:longitude":-76.604702,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108797011,102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"0227e02d38deb25e2728a052fa7edf12","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797019,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797019,"wof:lastmodified":1566624038,"wof:name":"Winans Cove","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797023.geojson b/fixtures/microhoods/1108797023.geojson new file mode 100644 index 0000000..31d91a0 --- /dev/null +++ b/fixtures/microhoods/1108797023.geojson @@ -0,0 +1 @@ +{"id":1108797023,"type":"Feature","bbox":[-76.61188621037728,39.26075584637316,-76.56876395566624,39.28662177299078],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.57160264921907,39.26160493252407],[-76.57192471094484,39.26148148632384],[-76.57235780760257,39.26131107152024],[-76.57284770382194,39.2611461535933],[-76.57339439960298,39.26098673254303],[-76.57381329637026,39.26087953554585],[-76.57410439412382,39.26082456260176],[-76.57452684086373,39.26078333287753],[-76.57508063658997,39.26075584637316],[-76.57574093149435,39.2607585950223],[-76.57650772557687,39.26079157882496],[-76.57716802048125,39.2608080707263],[-76.5777218162075,39.2608080707263],[-76.57826496201594,39.26082181396556],[-76.57879745790657,39.26084930044406],[-76.57935125363282,39.2609015246959],[-76.5799263491947,39.26097848672106],[-76.58054049445522,39.26108018635657],[-76.5811936894144,39.26120662360245],[-76.58179718475711,39.26132756337761],[-76.58235098048337,39.26144300568202],[-76.58287637642879,39.26157493946485],[-76.58337337259337,39.26172336472611],[-76.58379581933328,39.26187178967308],[-76.58411158249581,39.26200650480127],[-76.58411055909657,39.26200751305138],[-76.58410341129174,39.26201517489695],[-76.58409662682779,39.26202252546224],[-76.5840906915988,39.26203009071554],[-76.58408657438237,39.26203647069061],[-76.58408561173898,39.26203801029796],[-76.58408226114274,39.26204505955697],[-76.5840810823362,39.26204730189909],[-76.58407586464259,39.26205600286014],[-76.58407108827664,39.2620635415909],[-76.58406503115629,39.26207312143081],[-76.58405871950926,39.26208105286285],[-76.58405176044432,39.2620885370215],[-76.58404414056831,39.26209667279712],[-76.58403781760164,39.26210475551703],[-76.58402998040431,39.2621143839965],[-76.58402232626199,39.26212184137044],[-76.58400877596462,39.26213414831353],[-76.5840027536915,39.26213975768494],[-76.58399809670678,39.26214432339788],[-76.58398523831147,39.26216055653796],[-76.58397797576288,39.26216920701327],[-76.58396978941786,39.26217869913629],[-76.58396213772484,39.26218870118658],[-76.5839556865256,39.26219750586409],[-76.58394890371646,39.26220674263613],[-76.58394272366846,39.26221455652721],[-76.58393560086408,39.26222348132862],[-76.58392915632422,39.26223174196391],[-76.58392709233405,39.26223456306464],[-76.58392358811162,39.26223935174579],[-76.58391742972978,39.2622482124055],[-76.58391035168626,39.26225780213121],[-76.58390297990688,39.26227065249914],[-76.58389713121922,39.26227906297002],[-76.58389222512662,39.26228520414114],[-76.58389052836209,39.26228724917905],[-76.58388698597739,39.26229103606899],[-76.58388349839942,39.26229476370234],[-76.58387739005134,39.26230180858745],[-76.58386914346917,39.26231089784618],[-76.5838613215032,39.26231969946231],[-76.58385429468383,39.26232845525419],[-76.58384673803857,39.26233666780603],[-76.58384444687971,39.26233890530285],[-76.58383885241999,39.26234565295182],[-76.58383106473435,39.26235591843647],[-76.58382546593857,39.2623632074314],[-76.58381928636013,39.26237152935096],[-76.58381345065997,39.26237831487681],[-76.58380633727427,39.26238977716881],[-76.5838019941788,39.26239633468502],[-76.58379683005089,39.26240419000105],[-76.5837929709691,39.26240942059862],[-76.58378235803968,39.26242269634369],[-76.58377222269374,39.26243277785327],[-76.58376659023013,39.26243750764217],[-76.58376136334617,39.26244163985722],[-76.58375539352362,39.26244541093267],[-76.58374351454422,39.26244814139148],[-76.58373886946514,39.26244830057575],[-76.58373631555382,39.2624483167442],[-76.58373082322949,39.26244831619104],[-76.5837251606684,39.26244849698948],[-76.58371728398883,39.26244923742298],[-76.58370994368097,39.26245434308083],[-76.5837001196756,39.26246369246215],[-76.58369364886556,39.26246990464304],[-76.58368844563529,39.26247612672199],[-76.58368743801306,39.26248157820484],[-76.58368899553973,39.26248470308846],[-76.58369188677788,39.26248782369261],[-76.58369589594379,39.2624913797281],[-76.5837002660932,39.26249482985166],[-76.58370390931438,39.26249993030857],[-76.5837052274467,39.26250574223697],[-76.58370415716061,39.26251120971158],[-76.58369939254628,39.26251969607672],[-76.58369333774185,39.26252827334924],[-76.58368676282639,39.26253642901935],[-76.58367933496481,39.26254440871757],[-76.58367145528182,39.2625535596142],[-76.58366491549869,39.26256105874724],[-76.58365704910335,39.26257031417917],[-76.58364742641216,39.26258030381535],[-76.58364040470919,39.26258896863448],[-76.58363272428176,39.26259832290788],[-76.58362581256168,39.26260621345503],[-76.58361924140864,39.26261431779075],[-76.58361184876257,39.26262221744102],[-76.58360505592339,39.26262840955883],[-76.58359714907745,39.26263724958884],[-76.58359049847547,39.26264526716736],[-76.58358258610782,39.26265327036274],[-76.58357490046151,39.26266114194858],[-76.58356783711687,39.26267137125066],[-76.58356114461132,39.26267961747408],[-76.5835534161525,39.26268767536573],[-76.58354515377906,39.26269450451656],[-76.5835362944129,39.26270196839293],[-76.5835270017512,39.26271178984496],[-76.58351934098087,39.26272075144532],[-76.58351147792159,39.26272943218863],[-76.58350376608435,39.26273820985002],[-76.58349589583916,39.26274752200557],[-76.58348913095458,39.26275684438656],[-76.58348220368018,39.26276599774744],[-76.58347634598555,39.26277415054467],[-76.58346935148799,39.2627846881476],[-76.5834624154936,39.26279493140635],[-76.58345557839054,39.26280431658294],[-76.58344660363196,39.26281524800214],[-76.58344017997102,39.26282368343275],[-76.58343450429764,39.26283142251995],[-76.58342853077792,39.2628389731904],[-76.5834231998287,39.26284523083478],[-76.5834186475254,39.26284991219384],[-76.58341204240061,39.26285491324931],[-76.58340612240264,39.26286045179144],[-76.58340018587855,39.26286702886081],[-76.58339374227745,39.2628757011202],[-76.58339049231138,39.2628811833778],[-76.58338751278032,39.26288757547025],[-76.58338607431199,39.26289733019444],[-76.58338312380651,39.26290233070229],[-76.58337726985967,39.26290984125963],[-76.58337234718987,39.26291701463022],[-76.58336738350324,39.26292387168531],[-76.58336126062682,39.26293278108206],[-76.58335646726312,39.26294003417838],[-76.58335275572503,39.26294538598729],[-76.58334553552923,39.26295528233526],[-76.58333972993286,39.26296284530679],[-76.58333388928368,39.26297065496424],[-76.58332842322196,39.26297821283453],[-76.58332291476341,39.26298588675329],[-76.58331680079529,39.26299426382497],[-76.5833109768975,39.26300217983138],[-76.58330430328392,39.26301094765163],[-76.58329844545756,39.2630185239472],[-76.5832913119717,39.26302667490998],[-76.58328522159114,39.26303359912396],[-76.58327994560767,39.26303956871072],[-76.58327356988558,39.26304871320676],[-76.58326998875076,39.26305415375104],[-76.58326592525607,39.26305984750093],[-76.58326166489722,39.2630655207351],[-76.58325718697118,39.26307134452616],[-76.58325187044855,39.26307691582806],[-76.58324728577082,39.2630817781198],[-76.5832427787683,39.26308683074923],[-76.5832392425794,39.2630911283768],[-76.58323629140084,39.26309742418349],[-76.58323230035877,39.26310222372615],[-76.58322681374565,39.26310795025616],[-76.58322119101894,39.2631145581552],[-76.58321646085987,39.26312150160546],[-76.58321071469084,39.26313038440715],[-76.58320454388203,39.26313659762501],[-76.58319753640252,39.26314440043166],[-76.58319142781264,39.26315146239362],[-76.58318668153709,39.26315740052774],[-76.5831826417593,39.26316260524149],[-76.58317859691762,39.26316827743601],[-76.5831748445613,39.26317327509214],[-76.58317019528087,39.26317887578168],[-76.58316583366064,39.26318482068491],[-76.58315792247053,39.26319576126104],[-76.58315373219922,39.26320251926519],[-76.58314943425191,39.26320985427962],[-76.58314542788526,39.2632172605888],[-76.5831385887947,39.26322716728403],[-76.58313314270342,39.26323250211908],[-76.58312964476485,39.26323580903358],[-76.58312493290728,39.26324002862101],[-76.58312099368354,39.26324685327128],[-76.58311438121854,39.26325486915569],[-76.58310644440245,39.26326878847861],[-76.58309649072947,39.26327986141848],[-76.58308614883151,39.26329252013325],[-76.58307619935567,39.26330583599972],[-76.58306550120983,39.26331720084504],[-76.58305707195686,39.26332795761947],[-76.58304892898218,39.26333850462994],[-76.58303869029625,39.26334917390928],[-76.58303027161104,39.26335753917903],[-76.58301990472219,39.2633647841805],[-76.58300792655858,39.26337174241979],[-76.58299806674952,39.26337768220495],[-76.58298770962028,39.26338326532045],[-76.58297880840881,39.26338776908005],[-76.58295479378027,39.26340292750162],[-76.58290569077204,39.26343553747578],[-76.58285653704219,39.26346691229551],[-76.58280334926751,39.26349540561699],[-76.58275348712839,39.26351757472548],[-76.58270582618269,39.26353251666273],[-76.5826408402419,39.26349221413152],[-76.58253103367403,39.26342408062738],[-76.58239230503447,39.26333610833181],[-76.58223606030755,39.26323728955544],[-76.58204704199737,39.2631176993022],[-76.58188068527633,39.26301290798769],[-76.58174936611445,39.26292963178349],[-76.58171715414827,39.26290888134137],[-76.58170790344553,39.26290367347445],[-76.58170302361684,39.26289745610165],[-76.58169664157576,39.26288975161306],[-76.58162558965667,39.26280150060259],[-76.58157982262902,39.26274622941001],[-76.58156386144746,39.2627271266837],[-76.58150377748746,39.26265178846218],[-76.58145886956271,39.26259764534117],[-76.58131997030029,39.2624283209095],[-76.58119787830394,39.26228147638199],[-76.58117297581897,39.26225152437755],[-76.58103052658299,39.26207530954967],[-76.58089466093455,39.26191003985802],[-76.58078580312818,39.26178065667285],[-76.5806934559544,39.26166757860691],[-76.58054359812148,39.26148448364456],[-76.58055360339186,39.2614678425447],[-76.58055402202785,39.26146327533932],[-76.5805516324277,39.26145470949756],[-76.58054733303983,39.2614471655123],[-76.58053288970358,39.2614283644114],[-76.58052995538975,39.26142511296249],[-76.58051534250185,39.26140892618632],[-76.5804999735838,39.26139675503827],[-76.58048976269271,39.26138859182162],[-76.58048906036613,39.26138195334666],[-76.58048617113869,39.26137421172368],[-76.5804593992218,39.26135953172479],[-76.58044185018231,39.26135354196439],[-76.58041261098928,39.2613481436719],[-76.58040711199142,39.26134752230927],[-76.58040254565233,39.26134926879789],[-76.5803981478634,39.26135366775286],[-76.58038582372083,39.26135272114401],[-76.58036075976092,39.26134725038362],[-76.58030077421421,39.26133522962355],[-76.58024005972543,39.26132812983105],[-76.58019080734023,39.2613207962506],[-76.58014629931289,39.26131316074031],[-76.58011418398912,39.26130682970234],[-76.58007547019542,39.26130063990017],[-76.58003051834842,39.26129595187693],[-76.57999621988029,39.26129199913619],[-76.5799702542098,39.26128971018669],[-76.57994310248979,39.26128440751911],[-76.57992113618027,39.26128004578288],[-76.57990092109272,39.26127522100688],[-76.57987552788029,39.26127214050678],[-76.57984773389181,39.26127081331574],[-76.57981165973463,39.26127048156501],[-76.5797835517227,39.26127033144121],[-76.57976260083036,39.26127157969618],[-76.5797420108838,39.26127468482367],[-76.57972182814613,39.26127926956717],[-76.57971251159424,39.26128211057691],[-76.57970598325674,39.26128664780529],[-76.57969424480162,39.261293047191],[-76.57967643758799,39.26129896816305],[-76.57963835000223,39.26130345817563],[-76.57960292473226,39.26131153195919],[-76.57956513679846,39.26132489739852],[-76.5795291045498,39.26134193344119],[-76.57950767892977,39.26135426661762],[-76.57943636957518,39.2614012863144],[-76.57937244191763,39.26143701874872],[-76.57929884846031,39.26147624122915],[-76.5792430640806,39.26150903473259],[-76.57916964540117,39.26155041329853],[-76.5791168595823,39.26157833081528],[-76.57908318603653,39.2615989142965],[-76.57904714795718,39.26161630417221],[-76.57900531094434,39.26163714120813],[-76.57898790008272,39.26164595496546],[-76.57897740787858,39.26165300640038],[-76.57896335591215,39.26166360941428],[-76.57895647367857,39.26166997299238],[-76.5789424860843,39.26168163824132],[-76.57892877174831,39.2616970462632],[-76.57890962223762,39.26172216309943],[-76.57884897294959,39.26179991076587],[-76.57879289019256,39.26187157477152],[-76.57873142261653,39.26194736747315],[-76.57867315896537,39.26201707343073],[-76.57861079935215,39.26209006237553],[-76.57855392757074,39.26215968589192],[-76.57852949995778,39.26219200428496],[-76.57851926225919,39.26220495662856],[-76.57850173810569,39.26222812906455],[-76.57849072740235,39.26224090838559],[-76.57847328529955,39.26226099327572],[-76.57846414186871,39.26227152737457],[-76.57846400762402,39.26227169443565],[-76.57845796205655,39.26227919865838],[-76.57845016570245,39.26228903769428],[-76.57844236029898,39.26229903433175],[-76.578433963825,39.26231002689873],[-76.5784266999169,39.26231995972292],[-76.57840601376759,39.26234504843795],[-76.5783969864488,39.26235748897533],[-76.5783810296355,39.26238071656204],[-76.57837125571547,39.26239224554089],[-76.578361547035,39.26240351983549],[-76.5783542485497,39.26241341830166],[-76.57834013138783,39.26243066237468],[-76.57832992111636,39.26244152231335],[-76.57832152640722,39.26245026205526],[-76.57831206452707,39.26245977983176],[-76.57830174477597,39.26247053758792],[-76.57829186668849,39.26248048263415],[-76.57828215234044,39.26249095161428],[-76.57827506332308,39.26250128049431],[-76.57826689331637,39.26251334757873],[-76.57825873981618,39.26252439144835],[-76.57825059635441,39.26253491560981],[-76.57824083903543,39.26254715354215],[-76.57823220754193,39.2625584920461],[-76.57822294581675,39.26257117583598],[-76.57821489480753,39.2625815444939],[-76.5782065930142,39.26259199692269],[-76.57819917379999,39.26260134097227],[-76.57819136790864,39.2626104332187],[-76.57818283806776,39.26262065242823],[-76.57817499762452,39.26263009855155],[-76.57816621260842,39.26264036008018],[-76.57815840667108,39.26264945862955],[-76.5781494641358,39.26266009791388],[-76.57814162208078,39.26266864416103],[-76.57813226635231,39.26267881355988],[-76.57812340388935,39.2626890414785],[-76.57811568637712,39.26269807728875],[-76.57810647796379,39.26270841385696],[-76.57809780953362,39.26271874695989],[-76.57808932337267,39.26272980043134],[-76.57808132890645,39.2627409817764],[-76.57807328063268,39.26275263763274],[-76.57806646925836,39.26276439701732],[-76.57806148134888,39.26277348947148],[-76.57805498731301,39.26278449425049],[-76.57804829485026,39.26279632612271],[-76.57804434325472,39.26280944062955],[-76.5780410797905,39.2628235547599],[-76.57803331794854,39.26283887236706],[-76.57802598465298,39.26285266110732],[-76.57801767175742,39.26286633463155],[-76.57801070475774,39.26287795563574],[-76.578002646023,39.26289019694901],[-76.57799419781463,39.26290402041364],[-76.57798698101294,39.26291653318049],[-76.57798125904921,39.26292864236995],[-76.57797710978123,39.26294206422665],[-76.57797195608245,39.26295292158763],[-76.57796548903981,39.26296366883837],[-76.57795803013839,39.26297616722167],[-76.57795261115126,39.26298584452194],[-76.57794196816558,39.26300631317269],[-76.57793597235923,39.26301731523137],[-76.57793020028348,39.26302771638034],[-76.5779244596403,39.26303731325546],[-76.57791933888629,39.26304691506058],[-76.57791271132372,39.26306029557917],[-76.57790762635193,39.26307128379555],[-76.57790271552187,39.26308221588916],[-76.57789912347768,39.26309370669568],[-76.57789572908689,39.26310430555069],[-76.57788993817306,39.26311670273333],[-76.57788303519543,39.26312768261199],[-76.57787599982747,39.26314007532053],[-76.57787055840608,39.26315001375896],[-76.57786521086523,39.26316072719569],[-76.57785911068072,39.26317329891477],[-76.57785468532347,39.26318345538787],[-76.57785117628517,39.26319092455859],[-76.57784738618673,39.26319869717862],[-76.57784310066737,39.26320599331241],[-76.57783820012916,39.26321460776201],[-76.57783364340308,39.26322308292747],[-76.57782841336068,39.26323254741851],[-76.57782317868204,39.26324201189261],[-76.57781796696597,39.26325131701299],[-76.57781248187513,39.26326080220477],[-76.57780747340765,39.26326924872195],[-76.57780176746044,39.26327846108702],[-76.57779695087814,39.26328659572685],[-76.5777915215172,39.26329508757006],[-76.57778628394358,39.26330464751348],[-76.57778109230846,39.26331408151417],[-76.57777556395416,39.26333570530771],[-76.57777293602489,39.26334348210366],[-76.57776889900501,39.26335166007977],[-76.57776004444246,39.26336891129144],[-76.57775546998194,39.26337802683633],[-76.57775065553764,39.26338696857054],[-76.57774666886048,39.26339466931942],[-76.57774198631064,39.26340403398797],[-76.57773752262946,39.26341283646294],[-76.57773325934318,39.26342126043471],[-76.577728836588,39.26342961087061],[-76.5777249711209,39.26343641398815],[-76.57772005875442,39.26344467438772],[-76.57771645582433,39.26345136585292],[-76.57771223342928,39.26345934318961],[-76.5777086295534,39.26346599862043],[-76.57769746436374,39.26348696259309],[-76.57767546822848,39.26352315203906],[-76.57766544953355,39.26354149709328],[-76.57765855426116,39.26355584225715],[-76.57765403180669,39.26356672889587],[-76.57764760701832,39.26358048304534],[-76.57763550834629,39.26360408921171],[-76.57762804585545,39.26361697488979],[-76.57762073489471,39.26362951521719],[-76.57761503095433,39.26364188567446],[-76.57760943723657,39.2636548159052],[-76.57760315682204,39.26366747793888],[-76.57759586400465,39.26368164061413],[-76.57759194314505,39.26369365717648],[-76.57759127622079,39.26370291557971],[-76.57759023514811,39.26371176368815],[-76.57758937615678,39.2637231156875],[-76.57758676361162,39.26373492077114],[-76.57758175465989,39.26374694242662],[-76.57757615511727,39.26375773420982],[-76.57757185578939,39.26376578242488],[-76.57756689989317,39.26377414624917],[-76.57756365598757,39.26378027962338],[-76.57755906807252,39.26379047873596],[-76.57755377221149,39.26380028076493],[-76.57754725118569,39.26381111877397],[-76.57754119408115,39.2638205226264],[-76.57753517404541,39.26383090124351],[-76.5775304239317,39.26383973240459],[-76.57752522880527,39.26384623708079],[-76.57751777142384,39.26385378031099],[-76.57751031673904,39.26386125959583],[-76.57750556853352,39.26386918549034],[-76.57750440718777,39.26387799172954],[-76.57750364256592,39.26388828206118],[-76.57750254900446,39.26389991065216],[-76.57750136082787,39.26391030394896],[-76.57750033556972,39.26392116443],[-76.5774995632437,39.26393158084135],[-76.5774986405189,39.26394137337969],[-76.5774979009699,39.26394920380233],[-76.57749702283303,39.2639585136891],[-76.57749886583602,39.26396814413121],[-76.57749890646768,39.26397786266933],[-76.57750019002721,39.26398901159588],[-76.57750212031868,39.26399994035938],[-76.57750480760951,39.2640112015276],[-76.57750887833953,39.26402325854778],[-76.57751367460567,39.26403470475466],[-76.57751703295973,39.26404594131373],[-76.57751998838903,39.26405615134843],[-76.57752214628923,39.26406505149874],[-76.57752567031397,39.26407765602008],[-76.57752840334777,39.26408843634168],[-76.57752990466109,39.26409901766594],[-76.5775301790867,39.26410936668201],[-76.57753141034162,39.26412151707418],[-76.57753321786075,39.26413282732087],[-76.57753421065489,39.26414221239655],[-76.5775361301519,39.26415320417392],[-76.57753833887307,39.26416602555175],[-76.57754001240671,39.26417745872143],[-76.57754049996703,39.26418684738399],[-76.57754189030405,39.26419952619841],[-76.57754371657298,39.26421196967888],[-76.57754473180006,39.26422420486641],[-76.57754537209877,39.26423596580167],[-76.57754622608984,39.26424725640369],[-76.57754786894262,39.26425897770853],[-76.57755043789545,39.26427065550493],[-76.5775520519871,39.26428312074098],[-76.57755377283603,39.26429497654069],[-76.57755590357938,39.26430902448379],[-76.57755766092632,39.26432175686237],[-76.57755807651556,39.26433545003798],[-76.57755695884043,39.26434820990637],[-76.57755589442192,39.26436039347449],[-76.5775569951847,39.26437480612643],[-76.57756052887358,39.26438637479656],[-76.57756107572214,39.26439826240333],[-76.57756042466968,39.26441088703335],[-76.57756063810805,39.26442369582752],[-76.57756124946657,39.26443623131875],[-76.57756351960174,39.26445061214607],[-76.5775678064313,39.2644643309569],[-76.57757167256861,39.26447591973837],[-76.5775767273389,39.26448463033648],[-76.57757873411441,39.2644951729425],[-76.57758007268939,39.2645052591576],[-76.57758290149832,39.26451416442119],[-76.57758598360006,39.26452217613274],[-76.57758914598178,39.26453013318607],[-76.57759301419907,39.26453728568973],[-76.57759973467354,39.26454200737027],[-76.57760504693196,39.2645444486443],[-76.57762523827178,39.2645592344197],[-76.57768084615869,39.26469779063378],[-76.57774570226691,39.26485407566274],[-76.57780619251965,39.26500314240878],[-76.57786531895918,39.26514815255837],[-76.57791818247593,39.26527738842788],[-76.57796043298363,39.26538169339902],[-76.57800321664888,39.26548482926863],[-76.57805830198433,39.2656218682917],[-76.57806022339551,39.26562359386079],[-76.57823639951165,39.2657308182126],[-76.57824681165984,39.2657371555787],[-76.57829910142235,39.26576813701558],[-76.57847889209788,39.26587932654607],[-76.57814234165292,39.26620803153509],[-76.5781875986361,39.26623635751037],[-76.57852204040124,39.26590700528126],[-76.57881060693042,39.26608445330065],[-76.5786568822352,39.26630029513822],[-76.57865205315655,39.26629997785641],[-76.57862323575006,39.26628860134898],[-76.57861320004133,39.26630315237439],[-76.57864285255108,39.26631420310028],[-76.57864475388057,39.26631697437882],[-76.57858179164157,39.26640396620746],[-76.5787128835007,39.26645826013683],[-76.57872648084253,39.26644125107379],[-76.57861584059226,39.26639492127194],[-76.5788319056353,39.26609747462366],[-76.57886179299418,39.26611521974389],[-76.57907754105588,39.2662496870166],[-76.57934968785696,39.26641622418071],[-76.579619315568,39.26658373982638],[-76.57928446443746,39.26691815955968],[-76.5794831638,39.26704172332703],[-76.5795022213983,39.26702274303265],[-76.57944981474654,39.26699149239985],[-76.57946967706934,39.26696205978178],[-76.57946861681152,39.26695912038325],[-76.57946672159237,39.26695765615452],[-76.57946420504757,39.26695798763313],[-76.57946294638135,39.26695880642757],[-76.57943655540322,39.26698433065345],[-76.57940035037095,39.26696023246409],[-76.57942064277832,39.26693390093597],[-76.57942063335422,39.26693079865831],[-76.57941936678765,39.26692982219396],[-76.57941726781027,39.26692949940813],[-76.57941265244659,39.26693163211058],[-76.5793883560614,39.26695372109328],[-76.57934688587054,39.26692702062758],[-76.57952592903354,39.2667472164216],[-76.57966603384041,39.26661043466241],[-76.57988948320322,39.26674815452774],[-76.58007281723484,39.26686178721762],[-76.58023088375828,39.26695750130842],[-76.5802916308303,39.26699497597893],[-76.58037911202759,39.26708935936041],[-76.58049573441617,39.26721420173993],[-76.5806094991518,39.26733598559521],[-76.58049385992503,39.26753127782493],[-76.58042189467993,39.26765281260229],[-76.58019819213878,39.26803732542728],[-76.58020279364925,39.26805007872645],[-76.58043768491612,39.26813272402098],[-76.5802035266666,39.26853202608194],[-76.58019929698878,39.2685320244741],[-76.58019436399378,39.26854121448324],[-76.58019148016416,39.26854622775341],[-76.58018859980523,39.26855124193668],[-76.58018572060467,39.26855625612401],[-76.58018284140367,39.26856127031132],[-76.58017995873122,39.26856628358531],[-76.58017707374616,39.26857129595019],[-76.5801741829773,39.26857630649282],[-76.58017128527128,39.26858131430824],[-76.58016837947461,39.26858631849159],[-76.58016546210558,39.26859131993126],[-76.58016253433361,39.26859631682974],[-76.58015959268769,39.26860130827399],[-76.58015661865369,39.26860628969391],[-76.58015360762313,39.26861125656922],[-76.58015056768086,39.26861621343264],[-76.58014751038824,39.26862116482936],[-76.58014444616369,39.26862611259812],[-76.58014138424568,39.2686310621766],[-76.58013833621148,39.26863601540772],[-76.58013531129944,39.26864097772906],[-76.5801323199228,39.26864595188016],[-76.58012937364813,39.26865094150548],[-76.58012647708937,39.26865595022458],[-76.58012359788549,39.26866096350953],[-76.58012072214697,39.2686659786083],[-76.58011785219131,39.26867099552919],[-76.5801149845422,39.2686760142598],[-76.58011212268133,39.26868103391178],[-76.58010926313233,39.26868605447272],[-76.58010640704866,39.2686910768475],[-76.58010355443565,39.26869610013544],[-76.58010070529325,39.26870112433642],[-76.58009785845739,39.26870615034713],[-76.58009501509754,39.26871117637022],[-76.58009217289077,39.26871620329807],[-76.5800893341493,39.26872123203979],[-76.58008649656625,39.26872626078558],[-76.58008366129503,39.26873129044032],[-76.58008082834104,39.2687363201033],[-76.58007799654008,39.26874135067109],[-76.5800751658922,39.26874638214365],[-76.58007233640272,39.26875141362031],[-76.58006950807163,39.26875644510104],[-76.58006667973481,39.26876147748247],[-76.58006385255636,39.26876650986793],[-76.58006102537752,39.2687715422533],[-76.58005819935711,39.26877657464275],[-76.58005537217748,39.26878160702804],[-76.58005254615627,39.26878663941733],[-76.58004971782236,39.26879167089752],[-76.58004689064153,39.26879670328255],[-76.58004406114804,39.26880173475846],[-76.58004123165416,39.26880676623428],[-76.58003840100636,39.26881179680515],[-76.58003556804061,39.26881682736763],[-76.5800327350798,39.26882185702932],[-76.58002990558424,39.26882688850485],[-76.5800270853374,39.26883192361645],[-76.58002427434992,39.26883696056264],[-76.5800214668224,39.26884200022337],[-76.58001866392972,39.26884703990066],[-76.58001586218475,39.26885208138349],[-76.58001306044471,39.2688571219655],[-76.58001025523855,39.26886216073353],[-76.58000744539675,39.26886719948487],[-76.5800046286231,39.2688722346083],[-76.58000180258935,39.26887726789703],[-76.57999896615264,39.26888229664461],[-76.57999611699536,39.26888732084278],[-76.57999325395878,39.26889234048743],[-76.57999038282618,39.26889735740076],[-76.57998751053971,39.26890237340911],[-76.57998463477644,39.26890738940489],[-76.57998175785926,39.26891240449577],[-76.57997887862945,39.2689174186775],[-76.57997599708692,39.26892243195015],[-76.5799731143852,39.26892744521854],[-76.57997022937079,39.26893245757785],[-76.57996734320253,39.26893746903216],[-76.57996445587504,39.26894248048229],[-76.57996156739368,39.2689474910274],[-76.57995867659432,39.26895250156416],[-76.57995578579455,39.26895751210083],[-76.57995289384088,39.26896252173255],[-76.57995000072806,39.26896753136001],[-76.5799471076201,39.26897254008669],[-76.57994421334763,39.26897754970989],[-76.57994131792124,39.26898255842808],[-76.57993842365327,39.26898756715038],[-76.57993552822613,39.26899257586841],[-76.57993263279852,39.26899758458638],[-76.57992973737055,39.26900259330429],[-76.57992684194217,39.2690076020221],[-76.57992394767211,39.26901261074399],[-76.57992105340169,39.26901761946579],[-76.57991815913088,39.26902262818753],[-76.57991526485431,39.26902763780994],[-76.57991237289497,39.26903264744052],[-76.57990948093517,39.26903765707105],[-76.57990659012846,39.2690426676064],[-76.57990370048013,39.2690476781458],[-76.57990081199017,39.26905268868928],[-76.57989792465332,39.26905770013762],[-76.57989503846952,39.26906271249068],[-76.57989215344409,39.26906772484788],[-76.5798892672648,39.26907273630007],[-76.57988638107977,39.26907774865295],[-76.57988349374088,39.26908276010084],[-76.57988060640159,39.26908777154869],[-76.57987771906187,39.26909278299642],[-76.57987483288055,39.26909779444825],[-76.57987194669349,39.26910280680071],[-76.57986906282358,39.26910781916143],[-76.579866178948,39.2691128324228],[-76.57986329738958,39.26911784569236],[-76.57986041814304,39.26912285987089],[-76.57985754120834,39.26912787495841],[-76.57985466658555,39.26913289095488],[-76.5798517954334,39.26913790786444],[-76.57984892775195,39.2691429256871],[-76.57984606353584,39.26914794532362],[-76.57984320394915,39.26915296587744],[-76.57984034782785,39.26915798824508],[-76.57983749748954,39.26916301243485],[-76.57983465984958,39.2691680447769],[-76.57983184301442,39.26917308620099],[-76.5798290539368,39.26917813673197],[-76.57982629841614,39.26918319548984],[-76.57982358456938,39.26918826160287],[-76.57982091819589,39.26919333419109],[-76.57982171258665,39.26919871371194],[-76.5798235781559,39.26920402230157],[-76.57982532072145,39.26920935927559],[-76.57982727456852,39.26921463305104],[-76.57982979943868,39.2692197584413],[-76.57983304167757,39.2692246792216],[-76.5798375076363,39.26922881801019],[-76.57984387266715,39.26923123772301],[-76.5798502555019,39.26923358633857],[-76.57985666285327,39.26923590441543],[-76.57986309359455,39.26923818654485],[-76.57986954892178,39.2692404264259],[-76.57987602769748,39.26924262045134],[-76.5798825346423,39.26924475422577],[-76.57988908844632,39.2692468025946],[-76.5798956750599,39.2692487898283],[-76.57990227805712,39.26925075009716],[-76.5799088764088,39.26925271215059],[-76.57991545601199,39.26925470926653],[-76.57992175988582,39.26925630275293],[-76.57992802414756,39.26925362556072],[-76.5799346457064,39.26925166755743],[-76.5799414448322,39.26925005608348],[-76.57994819440627,39.26924839759203],[-76.57995468676971,39.26924633914039],[-76.5799595530763,39.26924235984188],[-76.57996247363246,39.26923741426714],[-76.57996517585113,39.26923235351401],[-76.57996775794822,39.26922722567443],[-76.57997032161609,39.26922207885275],[-76.57997296391696,39.26921696023602],[-76.57997578770734,39.269211917032],[-76.5799787328626,39.26920692650646],[-76.57998169073234,39.26920194143088],[-76.57998466248061,39.26919696090872],[-76.57998764580053,39.26919198313017],[-76.57999063952263,39.26918700989255],[-76.57999364133994,39.26918203938609],[-76.57999665009368,39.26917707160668],[-76.57999966578917,39.26917210565355],[-76.58000268610873,39.26916714151839],[-76.580005709899,39.26916217829631],[-76.58000873484231,39.26915721597906],[-76.58001176094399,39.26915225366589],[-76.58001478704529,39.2691472913526],[-76.58001781083381,39.26914232813021],[-76.58002083115089,39.26913736399453],[-76.58002384684832,39.26913239713999],[-76.58002685675663,39.26912742936387],[-76.58002985856888,39.26912245885642],[-76.58003285229037,39.26911748471687],[-76.58003583675708,39.26911250784187],[-76.58003880850315,39.26910752641743],[-76.5800417686821,39.26910254134852],[-76.5800447138282,39.26909755082112],[-76.58004764510018,39.26909255483947],[-76.58005055670948,39.26908755248204],[-76.58005345097361,39.26908254375713],[-76.58005632904607,39.26907752956967],[-76.58005919208567,39.26907250992377],[-76.5800620412512,39.26906748482357],[-76.58006488000314,39.26906245698375],[-76.58006770834675,39.26905742550358],[-76.58007052975846,39.2690523903955],[-76.58007334422233,39.26904735436174],[-76.58007615522,39.26904231651392],[-76.58007896391034,39.2690372768563],[-76.58008177143618,39.26903223809515],[-76.58008458012041,39.26902719933813],[-76.58008739227526,39.26902216149421],[-76.5800902090543,39.2690171254683],[-76.580093031611,39.26901209216521],[-76.58009586342702,39.26900706069672],[-76.58009870448637,39.26900203376506],[-76.58010155711209,39.2689970104777],[-76.58010442477512,39.26899199174792],[-76.58010730630606,39.26898697937297],[-76.5801102051866,39.2689819724646],[-76.58011312141682,39.26897697102279],[-76.58011605383251,39.26897197594413],[-76.58011899896792,39.26896698541466],[-76.5801219568284,39.26896199853374],[-76.5801249250911,39.26895701619374],[-76.58012790260773,39.26895203658909],[-76.5801308882196,39.26894705971555],[-76.58013388076786,39.26894208556901],[-76.58013687909903,39.26893711324463],[-76.58013987973675,39.26893214272994],[-76.58014288385039,39.26892717222762],[-76.58014588796367,39.26892220172518],[-76.58014889207115,39.26891723212344],[-76.58015189387129,39.26891226071182],[-76.5801548921946,39.26890728928765],[-76.5801578858983,39.26890231514461],[-76.58016087265943,39.26889733917517],[-76.58016385248337,39.2688923604785],[-76.58016682421123,39.26888737905054],[-76.58016978437733,39.2688823930773],[-76.58017273181756,39.2688774034554],[-76.58017566653716,39.26887240928416],[-76.58017858738278,39.2688674096586],[-76.58018149435439,39.26886240457881],[-76.5801843886001,39.26885739585039],[-76.5801872724375,39.26885238348157],[-76.58019014702543,39.26884736747655],[-76.58019301235856,39.26884234873607],[-76.58019587191328,39.26883732727258],[-76.58019872452543,39.26883230398262],[-76.58020157366616,39.26882727977946],[-76.58020441934069,39.26882225376228],[-76.58020726386141,39.2688172268401],[-76.58021010722284,39.26881219991376],[-76.58021295173742,39.26880717389221],[-76.58021579856913,39.26880214787884],[-76.58021864886622,39.26879712367935],[-76.58022150378744,39.26879210129784],[-76.58022436449156,39.26878708073843],[-76.58022723329091,39.26878206291023],[-76.58023011134424,39.26877704781729],[-76.58023299864621,39.26877203636042],[-76.58023589750911,39.26876702944864],[-76.58023880793831,39.26876202618116],[-76.5802417276161,39.26875702654977],[-76.58024465539447,39.26875202874877],[-76.58024759010388,39.26874703457552],[-76.5802505305962,39.2687420422244],[-76.58025347803024,39.26873705169956],[-76.5802564289296,39.26873206298855],[-76.5802593844584,39.26872707519476],[-76.58026234345247,39.26872208921482],[-76.58026530475847,39.26871710414387],[-76.5802682683816,39.26871211908106],[-76.58027123315777,39.26870713492312],[-76.58027419677481,39.26870215076089],[-76.58027716155016,39.26869716660274],[-76.58028012401286,39.26869218153549],[-76.5802830853163,39.26868719646404],[-76.58028604315363,39.26868220957853],[-76.58028899751945,39.26867722177982],[-76.58029194841914,39.26867223216708],[-76.58029489352981,39.26866724163279],[-76.58029783286199,39.26866224837549],[-76.58030076525166,39.26865725329178],[-76.58030369070418,39.26865225548087],[-76.58030661037822,39.26864725494693],[-76.58030952658083,39.26864225349975],[-76.58031243815849,39.26863725023441],[-76.58031534510587,39.26863224605167],[-76.5803182497406,39.26862724095989],[-76.58032114975035,39.2686222340499],[-76.58032404860629,39.26861722623498],[-76.58032694398538,39.26861221840755],[-76.58032983821593,39.26860720877438],[-76.58033273012852,39.26860219913286],[-76.58033562088718,39.2685971885864],[-76.58033851048667,39.2685921780357],[-76.58034140008576,39.26858716748492],[-76.58034428852558,39.26858215692994],[-76.5803471769704,39.26857714547411],[-76.58035006656826,39.26857213492313],[-76.5803529561657,39.26856712437203],[-76.58035584692152,39.26856211382501],[-76.58035873883037,39.26855710418278],[-76.58036163305644,39.26855209454876],[-76.58036452843025,39.26854708672032],[-76.58036742843346,39.26854207980908],[-76.58037033421965,39.26853707471999],[-76.5803732400054,39.26853206963077],[-76.58048914673698,39.2683285157871],[-76.58057326457717,39.26818078594224],[-76.58072830363105,39.2682354459408],[-76.58074387199231,39.26823137780785],[-76.58074534635773,39.26823171004983],[-76.58076517642752,39.26819985854864],[-76.58076013525194,39.26819658157643],[-76.58083079565986,39.26815449413525],[-76.58084654977037,39.2681429097485],[-76.58087462481281,39.26809161847029],[-76.58089973640635,39.26804881985286],[-76.58091284142552,39.26801761719905],[-76.5809377931886,39.26794850208412],[-76.5809995920556,39.26778077721215],[-76.5810099546052,39.26778383175419],[-76.5810184951324,39.26776830597121],[-76.58100834417104,39.26776454688391],[-76.5810867067734,39.26762683247062],[-76.5812974967916,39.26727114149163],[-76.58141057983138,39.26713195807365],[-76.58154750400428,39.26698717655313],[-76.58175221858741,39.26705915562685],[-76.58166766642184,39.26735569970167],[-76.58149968375727,39.26764251087302],[-76.58137621896122,39.26785780192009],[-76.58131776969286,39.26795662211766],[-76.58132365005103,39.26796104423082],[-76.58131858768932,39.26796823052029],[-76.58131015498243,39.26797884482416],[-76.58117485763236,39.26812088899997],[-76.58116094915877,39.2681350949405],[-76.58115672978275,39.26814081237541],[-76.58109553111859,39.26824535062956],[-76.58112109882276,39.26828918848936],[-76.58114579768207,39.26834496201324],[-76.58119499755855,39.26845176309497],[-76.58114167565023,39.26853226996197],[-76.58113526263803,39.26854328238822],[-76.58113235112228,39.2685482856741],[-76.58112943961139,39.26855328805912],[-76.58112652809476,39.26855829134483],[-76.58112361773654,39.26856329463456],[-76.58112070853672,39.26856829792838],[-76.58111779817236,39.26857330211873],[-76.5811148889717,39.26857830541239],[-76.58111198092409,39.26858330961083],[-76.58110907171731,39.26858831380507],[-76.58110616366892,39.26859331800338],[-76.58110325446663,39.26859832129667],[-76.58110034641737,39.26860332549482],[-76.58109743720894,39.26860832968873],[-76.58109452915889,39.26861333388671],[-76.58109161995495,39.26861833717975],[-76.58108871074526,39.26862334137343],[-76.5810858015352,39.26862834556702],[-76.58108289233002,39.26863334885978],[-76.58107998196566,39.26863835214834],[-76.58107707160089,39.26864335543686],[-76.58107416007687,39.26864835872109],[-76.58107124739898,39.26865336110042],[-76.58106833472068,39.26865836347966],[-76.58106542204197,39.26866336585882],[-76.5810625070453,39.2686683682296],[-76.58105959205348,39.26867336969957],[-76.58105667590245,39.26867837116533],[-76.58105375859756,39.26868337172615],[-76.58105084013347,39.26868837228274],[-76.58104792051014,39.26869337283508],[-76.58104499973295,39.26869837248252],[-76.58104207780187,39.26870337122496],[-76.58103915471155,39.26870836996319],[-76.58103622930857,39.26871336779233],[-76.58103330274639,39.26871836561727],[-76.58103037502498,39.26872336343798],[-76.58102744499622,39.26872835944884],[-76.58102451380822,39.26873335545547],[-76.58102158146635,39.26873835055717],[-76.58101864796527,39.26874334565466],[-76.58101571330495,39.26874834074789],[-76.58101277749074,39.26875333493621],[-76.58100984167613,39.26875832912445],[-76.58100690470233,39.26876332330841],[-76.58100396657466,39.2687683165875],[-76.58100102728773,39.26877330986229],[-76.58099808800038,39.26877830313703],[-76.58099514755384,39.26878329640759],[-76.5809922071122,39.26878828877726],[-76.58098926435254,39.26879328113861],[-76.58098632275662,39.26879827260326],[-76.58098337999611,39.26880326496445],[-76.58098043608175,39.26880825642069],[-76.58097749216695,39.26881324787679],[-76.58097454825175,39.26881823933287],[-76.58097160317736,39.26882323078471],[-76.5809686581078,39.26882822133572],[-76.58096571187912,39.26883321188254],[-76.58096276564997,39.26883820242925],[-76.58095981942044,39.26884319297589],[-76.58095687203168,39.26884818351829],[-76.58095392464249,39.26885317406066],[-76.58095097725288,39.2688581646029],[-76.5809480298682,39.26886315424433],[-76.58094508247777,39.26886814478644],[-76.58094213393346,39.26887313442356],[-76.5809391865422,39.26887812496552],[-76.58093623799707,39.26888311460247],[-76.58093328945152,39.26888810423937],[-76.58093034090024,39.2688930947769],[-76.5809273923538,39.26889808441366],[-76.580924443807,39.26890307405031],[-76.58092149641325,39.26890806459171],[-76.58091854786564,39.26891305422819],[-76.58091559931759,39.26891804386464],[-76.58091265192262,39.26892303440582],[-76.58090970453253,39.2689280240462],[-76.58090675713672,39.26893301458725],[-76.58090380974048,39.26893800512818],[-76.58090086234382,39.26894299566909],[-76.58089791494682,39.26894798620986],[-76.58089496870812,39.26895297675473],[-76.58089202362787,39.26895796730361],[-76.58088907738835,39.26896295784833],[-76.58088613230193,39.26896794929778],[-76.58088318722042,39.26897293984646],[-76.58088024329196,39.26897793129993],[-76.58087729936308,39.2689829227533],[-76.58087435658726,39.26898791511147],[-76.58087141381634,39.26899290656883],[-76.58086847219853,39.268997898931],[-76.58086553058024,39.26900289129307],[-76.58086259011507,39.26900788455998],[-76.58085964965481,39.26901287692602],[-76.58085671034759,39.26901787019686],[-76.5808537721988,39.2690228634718],[-76.58085083404423,39.26902785764735],[-76.58084789821223,39.26903285093039],[-76.58084496121029,39.26903784601069],[-76.58084202653093,39.26904284019841],[-76.58083909300458,39.26904783529096],[-76.58083615947787,39.26905283038342],[-76.58083322710421,39.26905782638067],[-76.58083029588893,39.26906282238203],[-76.58082736583205,39.26906781838739],[-76.58082443692825,39.26907281529761],[-76.58082150918283,39.26907781221181],[-76.58081858143166,39.26908281002672],[-76.58081565368545,39.26908780694081],[-76.58081272825103,39.26909280476382],[-76.58080980281626,39.26909780258676],[-76.58080687737576,39.26910280131037],[-76.58080395309894,39.26910779913727],[-76.58080102997523,39.26911279786901],[-76.58079810684575,39.26911779750137],[-76.58079518372116,39.26912279623294],[-76.58079226174969,39.26912779586932],[-76.58078934094192,39.26913279460899],[-76.58078642012842,39.2691377942493],[-76.58078349930916,39.26914279479033],[-76.58078057965363,39.26914779443466],[-76.5807776599924,39.26915279497963],[-76.58077474149482,39.26915779462793],[-76.58077182299158,39.26916279517691],[-76.5807689044879,39.26916779572575],[-76.58076598713723,39.26917279717944],[-76.58076306979153,39.2691777977323],[-76.58076015244009,39.26918279918582],[-76.58075723625235,39.26918779974267],[-76.58075432005893,39.26919280120018],[-76.58075140386507,39.26919780265759],[-76.58074848882956,39.26920280411908],[-76.58074557262958,39.26920780647712],[-76.58074265759325,39.26921280793844],[-76.58073974371536,39.26921780940381],[-76.5807368286729,39.26922281176571],[-76.58073391479418,39.26922781323093],[-76.58073099975094,39.26923281559269],[-76.58072808586603,39.26923781795849],[-76.58072517198609,39.26924281942346],[-76.58072225925918,39.26924782179324],[-76.5807193453731,39.26925282415884],[-76.5807164314866,39.26925782652432],[-76.58071351875846,39.26926282889385],[-76.58071060487114,39.2692678312592],[-76.58070769214221,39.26927283362858],[-76.58070477941286,39.2692778359979],[-76.58070186552429,39.26928283836299],[-76.58069895279411,39.26928784073211],[-76.58069604006351,39.26929284310122],[-76.58069312733252,39.2692978454702],[-76.58069021343701,39.26930284873573],[-76.58068730070518,39.26930785110454],[-76.58068438797295,39.26931285347332],[-76.58068147408152,39.26931785583784],[-76.580678560195,39.26932285730155],[-76.58067564746153,39.26932785967004],[-76.58067273356887,39.26933286203436],[-76.58066981967579,39.26933786439857],[-76.58066690578225,39.26934286676268],[-76.58066399189369,39.26934786822603],[-76.58066107684058,39.26935287058587],[-76.58065816179234,39.26935787204487],[-76.58065524789721,39.26936287440868],[-76.58065233284816,39.26936787586754],[-76.58064941663994,39.26937287732216],[-76.58064650159007,39.2693778787809],[-76.58064358538097,39.26938288023538],[-76.58064066917153,39.26938788168976],[-76.58063775180815,39.26939288223916],[-76.58063483559783,39.26939788369344],[-76.58063191823364,39.26940288424269],[-76.58062899971017,39.26940788478774],[-76.58062608233982,39.2694128862376],[-76.58062316266209,39.26941788587762],[-76.58062024413744,39.26942288642242],[-76.58061732445354,39.26942788696303],[-76.58061440477461,39.26943288660281],[-76.58061148393644,39.26943788623836],[-76.58060856309783,39.26944288587382],[-76.58060564109998,39.26944788550507],[-76.58060271910709,39.26945288423548],[-76.58059979710845,39.26945788386661],[-76.5805968739559,39.26946288259272],[-76.58059394964945,39.26946788041387],[-76.58059101261169,39.2694728754872],[-76.58058798649425,39.26947784502082],[-76.58058489443603,39.2694827954028],[-76.58058178272557,39.26948773760756],[-76.58057869878883,39.2694926862168],[-76.58057568891431,39.26949765220503],[-76.58057279822104,39.26950264834416],[-76.58057015051013,39.26950770750386],[-76.58056902091067,39.26951315220901],[-76.58056871843522,39.26951864490642],[-76.58056947176361,39.26952411975616],[-76.58057166239664,39.26952933941737],[-76.58057514188646,39.26953412771032],[-76.58058026162975,39.26953785084908],[-76.58058644431011,39.26954054550468],[-76.58059233514803,39.26954360122606],[-76.58059850330251,39.26954620485174],[-76.58060496584146,39.26954840958779],[-76.58061144475859,39.26955058825973],[-76.58061793885771,39.26955274716865],[-76.58062444347706,39.26955489080177],[-76.58063095627236,39.26955702365449],[-76.58063747257643,39.26955915111478],[-76.58064399003972,39.26956127857883],[-76.58065050515914,39.26956341053801],[-76.58065701327286,39.26956555147946],[-76.58066351319007,39.26956770680358],[-76.58066999909025,39.26956988099337],[-76.58067631355809,39.26957243469434],[-76.58068282554844,39.26957391988989],[-76.58068992514931,39.26957303816596],[-76.58069654101179,39.26957126115369],[-76.58070208538517,39.26956784182054],[-76.58070763154491,39.26956431620297],[-76.58071092317286,39.26955951876003],[-76.58071389714402,39.26955454813641],[-76.580716865342,39.26954957388906],[-76.5807198277668,39.26954459601796],[-76.58072278557194,39.26953961542795],[-76.58072573875734,39.2695346321191],[-76.58072868616426,39.26952964608721],[-76.58073163011564,39.26952465643986],[-76.580734569442,39.26951966497435],[-76.58073750414331,39.26951467169071],[-76.5807404365426,39.26950967569652],[-76.5807433631634,39.2695046769793],[-76.58074628747148,39.269499677353],[-76.58074920831335,39.26949467591265],[-76.58075212684783,39.26948967266252],[-76.58075504191615,39.26948466759837],[-76.58075795351289,39.26947966162098],[-76.58076086395575,39.26947465473864],[-76.58076377093245,39.26946964604233],[-76.58076667674992,39.26946463734177],[-76.58076958025997,39.26945962683136],[-76.58077248260555,39.26945461721749],[-76.58077538263834,39.26944960669454],[-76.58077828151725,39.26944459526661],[-76.5807811803905,39.26943958473935],[-76.5807840781098,39.2694345733071],[-76.58078697466453,39.26942956277142],[-76.5807898712189,39.26942455223566],[-76.58079276661407,39.26941954169568],[-76.58079566315693,39.26941453296126],[-76.58079855969943,39.26940952422674],[-76.5808014539239,39.26940451548389],[-76.58080434699447,39.26939950583607],[-76.58080723659353,39.26939449527502],[-76.58081012503334,39.26938948470975],[-76.580813010007,39.26938447233048],[-76.58081589498026,39.26937945995117],[-76.580818776482,39.26937444665859],[-76.58082165682983,39.26936943246103],[-76.58082453601843,39.26936441825931],[-76.58082741288905,39.26935940404922],[-76.58083028976985,39.26935438803756],[-76.58083316433267,39.26934937201753],[-76.58083603773629,39.2693443559933],[-76.58083890998071,39.26933933996485],[-76.5808417810712,39.26933432303145],[-76.5808446521666,39.26932930519722],[-76.5808475220975,39.26932428825951],[-76.58085039087446,39.26931927041686],[-76.58085325965106,39.26931425257415],[-76.58085612842721,39.26930923473131],[-76.58085899604949,39.26930421598354],[-76.58086186366609,39.26929919813645],[-76.58086473128755,39.2692941793885],[-76.58086759890327,39.26928916154127],[-76.58087046767739,39.26928414369805],[-76.5808733352977,39.26927912494987],[-76.58087620407099,39.26927410710654],[-76.58087907284396,39.26926908926308],[-76.58088194161644,39.26926407141961],[-76.58088481154206,39.2692590544809],[-76.58088768263138,39.26925403664549],[-76.58089055486845,39.26924902061565],[-76.58089342711048,39.26924400368499],[-76.58089630166435,39.26923898766326],[-76.58089917621783,39.26923397164149],[-76.58090205308315,39.2692289565286],[-76.5809049299428,39.26922394231642],[-76.58090780912495,39.26921892721166],[-76.58091068714258,39.26921391300348],[-76.58091356400634,39.26920889789027],[-76.58091643971085,39.26920388277291],[-76.58091931542026,39.26919886675469],[-76.58092218997048,39.26919385073226],[-76.5809250645203,39.26918883470976],[-76.58092793791091,39.26918381868304],[-76.58093081130113,39.26917880265624],[-76.5809336846962,39.26917378572864],[-76.58093655692682,39.26916876969754],[-76.58093943032114,39.26916375276978],[-76.58094230370968,39.26915873674266],[-76.58094517709785,39.26915372071548],[-76.58094805048563,39.26914870468827],[-76.58095092503179,39.26914368866505],[-76.58095379957754,39.26913867264176],[-76.58095667528168,39.26913365662254],[-76.58095955098008,39.26912864150397],[-76.58096242899572,39.26912362639364],[-76.58096530700563,39.26911861218396],[-76.5809681861739,39.2691135979783],[-76.58097106650062,39.26910858377672],[-76.58097394798041,39.26910357047995],[-76.58097683177203,39.26909855809211],[-76.5809797167221,39.26909354570837],[-76.58098260282522,39.26908853422936],[-76.58098549240434,39.26908352276273],[-76.58098838197775,39.26907851219676],[-76.58099127502179,39.26907350254385],[-76.58099416921893,39.26906849379577],[-76.58099706572798,39.26906348595656],[-76.58099996570772,39.26905847903053],[-76.58100286684582,39.26905347210847],[-76.58100577144924,39.26904846700024],[-76.58100867836463,39.26904346280097],[-76.58101158759715,39.26903845860992],[-76.58101450029505,39.26903345623263],[-76.58101741646358,39.26902845476842],[-76.58102033378529,39.26902345420903],[-76.5810232545776,39.26901845456271],[-76.58102617652297,39.26901345582121],[-76.58102910194435,39.26900845709199],[-76.58103202851883,39.2690034592676],[-76.58103495739985,39.26899846325286],[-76.58103788744454,39.26899346634147],[-76.58104081979582,39.26898847123977],[-76.5810437544643,39.26898347614622],[-76.58104669028583,39.26897848195748],[-76.58104962726576,39.26897348777277],[-76.58105256655755,39.26896849449703],[-76.58105550700242,39.26896350212609],[-76.58105844860563,39.2689585097592],[-76.58106139136729,39.26895351739635],[-76.581064335282,39.26894852593831],[-76.58106727919098,39.26894353538097],[-76.58107022542241,39.26893854393101],[-76.58107317164819,39.26893355338174],[-76.58107611903232,39.26892856283652],[-76.58107906641071,39.26892357319198],[-76.5810820149475,39.26891858355151],[-76.58108496348918,39.26891359301016],[-76.5810879131839,39.26890860337365],[-76.58109086287294,39.26890361463777],[-76.58109381256685,39.26889862500108],[-76.58109676226039,39.26889363536432],[-76.58109971195346,39.26888864572744],[-76.58110266164617,39.26888365609052],[-76.58110561017962,39.26887866644937],[-76.5811085598715,39.26887367681229],[-76.58111150840412,39.26886868717099],[-76.58111445693633,39.2688636975296],[-76.58111740431467,39.26885870698322],[-76.58112035168726,39.26885371733755],[-76.58112329791125,39.26884872588614],[-76.58112624412955,39.26884373533543],[-76.58112918803515,39.26883874387558],[-76.58113213194031,39.26883375241568],[-76.58113507468629,39.26882876095156],[-76.58113801627833,39.26882376858247],[-76.58130698431314,39.26853231356636],[-76.58147033400823,39.26825365978599],[-76.58196857487526,39.26739805877631],[-76.58204224788017,39.26728257418097],[-76.58217281697279,39.26720083746125],[-76.58217533814862,39.26720050594111],[-76.58217849091065,39.26720115129842],[-76.58272579245362,39.26739079373638],[-76.58267109702388,39.2674313978417],[-76.58263965371566,39.26745333868811],[-76.58253126204325,39.26752066411372],[-76.58251280961093,39.26753163832292],[-76.5825042144337,39.26753721144115],[-76.58249793423876,39.26754342692894],[-76.58243368402053,39.26764531038824],[-76.58227606471642,39.2678968791318],[-76.58191093420793,39.2684687163984],[-76.58182890812762,39.26859796908506],[-76.58182268741804,39.26860782925105],[-76.58181646786552,39.26861768942081],[-76.58181024714717,39.26862755048685],[-76.58180402759119,39.2686374106559],[-76.58179780687466,39.26864727082046],[-76.58179158615643,39.26865713098466],[-76.58178536543649,39.2686669911485],[-76.58177914355598,39.26867685130784],[-76.58177292283257,39.26868671147098],[-76.5817667009539,39.26869657072889],[-76.58176047790944,39.26870643088306],[-76.58175425486854,39.2687162901361],[-76.58174803182591,39.26872614938881],[-76.58174180878154,39.26873600864111],[-76.58173558342321,39.26874586698411],[-76.58172935575082,39.26875572441772],[-76.58172312576441,39.26876558094198],[-76.58171688999292,39.26877543564373],[-76.58171065075392,39.26878528853127],[-76.58170439879292,39.26879513686928],[-76.58169812948539,39.26880497883981],[-76.58169185439809,39.26881481808706],[-76.58168558162131,39.26882465824298],[-76.5816793203989,39.2688345038443],[-76.58167308346181,39.26884435763865],[-76.58166686849233,39.26885421961784],[-76.58166066854835,39.26886408795556],[-76.58165447901062,39.26887395993304],[-76.58164829525452,39.26888383373229],[-76.5816421103326,39.26889370842783],[-76.58163592194848,39.26890358040841],[-76.58162972315472,39.26891344874846],[-76.58162351626352,39.26892331435704],[-76.58161730937059,39.26893317996518],[-76.58161110247595,39.26894304557305],[-76.58160489557962,39.26895291118056],[-76.58159868868151,39.2689627767877],[-76.58159248178167,39.26897264239447],[-76.58158627372664,39.26898250709604],[-76.58158006566458,39.26899237269792],[-76.58157385760609,39.26900223739878],[-76.58156764954587,39.26901210209927],[-76.58156144147863,39.26902196770012],[-76.58155523341497,39.2690318323999],[-76.58154902419079,39.26904169709517],[-76.58154281612369,39.2690515617942],[-76.581536606896,39.26906142648878],[-76.58153039766664,39.26907129118298],[-76.58152418959435,39.26908115588098],[-76.58151798036155,39.26909102057443],[-76.58151177112696,39.26910088526759],[-76.58150556073191,39.26911074995625],[-76.58149935149387,39.26912061464866],[-76.58149314225416,39.26913047934073],[-76.58148693301804,39.2691403431317],[-76.58148072261604,39.26915020781893],[-76.58147451337115,39.26916007250991],[-76.58146830297099,39.2691699362957],[-76.58146209372265,39.26917980098595],[-76.58145588331374,39.26918966567177],[-76.58144967290846,39.26919952945645],[-76.58144346365488,39.26920939414569],[-76.58143725324616,39.26921925792965],[-76.58143104283035,39.26922912261399],[-76.5814248324128,39.26923898729803],[-76.58141862199889,39.26924885108092],[-76.58141241042973,39.26925871395859],[-76.58140619538241,39.26926857682352],[-76.5813999791799,39.26927843878323],[-76.58139376297565,39.26928830074256],[-76.58138754561084,39.26929816269738],[-76.58138132940313,39.26930802465603],[-76.5813751131937,39.26931788661429],[-76.58136890045367,39.26932774948533],[-76.58136268886538,39.26933761326087],[-76.58135647843415,39.2693474770402],[-76.58135026799593,39.26935734171995],[-76.58134405871472,39.26936720640344],[-76.58133784943185,39.2693770710866],[-76.58133164130602,39.2693869357735],[-76.5813254320197,39.26939680045594],[-76.58131922389043,39.26940666514217],[-76.58131301575413,39.26941653072873],[-76.5813068076214,39.26942639541424],[-76.58130059948697,39.2694362600994],[-76.58129439134548,39.26944612568489],[-76.58128818320759,39.26945599036932],[-76.58128197506264,39.26946585595416],[-76.58127576807478,39.26947572154277],[-76.5812695599317,39.26948558622608],[-76.58126335178159,39.26949545180984],[-76.58125714363506,39.26950531649249],[-76.5812509354868,39.26951518117476],[-76.58124472733151,39.26952504675743],[-76.5812385191798,39.26953491143902],[-76.58123231102638,39.26954477612021],[-76.58122610170706,39.2695546416977],[-76.58121989355017,39.26956450637822],[-76.58121368423276,39.2695743710542],[-76.58120747491895,39.26958423482914],[-76.58120126443924,39.26959409950027],[-76.58119505395781,39.2696039641711],[-76.58118884348002,39.26961382794082],[-76.58118263300045,39.26962369171013],[-76.58117642136037,39.26963355547503],[-76.58117020971855,39.26964341923953],[-76.58116399691619,39.26965328299953],[-76.58115778064632,39.2696631449453],[-76.58115155743778,39.26967300416369],[-76.5811453284441,39.26968286155951],[-76.58113909830047,39.26969271714933],[-76.5811328658322,39.26970257363133],[-76.58112663452101,39.2697124301171],[-76.58112040667916,39.26972228751563],[-76.58111418346029,39.26973214673185],[-76.58110796255191,39.2697420068567],[-76.58110174164187,39.26975186698122],[-76.58109551957124,39.26976172710124],[-76.58108929866304,39.26977158632429],[-76.58108307658897,39.2697814464436],[-76.581076855672,39.26979130656669],[-76.5810706347533,39.26980116668938],[-76.58106441383282,39.26981102681176],[-76.58105819291067,39.26982088693379],[-76.5810519719868,39.26983074705544],[-76.58104575105581,39.26984060807746],[-76.58103953012846,39.26985046819839],[-76.58103331035821,39.26986032832311],[-76.58102708942741,39.2698701884433],[-76.58102086964837,39.26988004946806],[-76.58101464987291,39.2698899095917],[-76.5810084300904,39.2698997706157],[-76.5810022103115,39.26990963073862],[-76.58099599052554,39.26991949176193],[-76.58098977189665,39.26992935278904],[-76.58098355326604,39.26993921381575],[-76.5809773346337,39.26994907484215],[-76.58097111599967,39.26995893586814],[-76.58096489851737,39.26996879779868],[-76.58095868103868,39.2699786588281],[-76.58095246355292,39.26998852075793],[-76.5809462460708,39.26999838178665],[-76.58094003205275,39.27000824462891],[-76.58093382381104,39.27001811019374],[-76.58092762135645,39.27002797667961],[-76.58092142583173,39.27003784679292],[-76.58091523608876,39.27004771872807],[-76.58090905328105,39.27005759338991],[-76.58090287740852,39.27006747077848],[-76.58089670615894,39.27007734998469],[-76.58089053953223,39.27008723100862],[-76.58088437406265,39.27009711203634],[-76.5808782109037,39.27010699397273],[-76.58087204658416,39.2701168759046],[-76.58086588110945,39.27012675693124],[-76.58085971216191,39.27013663704437],[-76.58085353858796,39.27014651533914],[-76.58084735923414,39.27015639091061],[-76.58084117293636,39.27016626465539],[-76.58083497854633,39.27017613476792],[-76.58082877490534,39.27018600124399],[-76.5808225585422,39.27019586317048],[-76.58081632367875,39.27020571782444],[-76.58081007146852,39.27021556611076],[-76.58080380191147,39.27022540802945],[-76.58079751847876,39.27023524449363],[-76.5807912211703,39.27024507550337],[-76.58078491114506,39.27025490106275],[-76.58077858955113,39.27026472297737],[-76.58077225755264,39.27027454035068],[-76.58076590821261,39.27028435045559],[-76.5807595449916,39.27029415600674],[-76.58075317020719,39.27030395701241],[-76.58074678733053,39.27031375438577],[-76.58074040098097,39.27032355084557],[-76.58073401347619,39.27033334640016],[-76.58072762828192,39.27034314286334],[-76.58072124770521,39.27035294204496],[-76.58071487754022,39.27036274396568],[-76.58070851777094,39.27037255132772],[-76.58070217535032,39.270382364156],[-76.58069585142657,39.27039218425604],[-76.58068954947082,39.27040201254105],[-76.58068330878729,39.27041186536519],[-76.58067714672647,39.27042174819501],[-76.58067103438697,39.27043164921729],[-76.58066494169789,39.27044155841631],[-76.58065883975779,39.27045146397889],[-76.58065269965988,39.27046135499266],[-76.58064648903165,39.2704712187312],[-76.58064015931409,39.27048103610508],[-76.58063370703607,39.27049080620105],[-76.58062720619203,39.27050055810794],[-76.58062073194598,39.27051031911706],[-76.5806143594353,39.27052012102359],[-76.58060817423751,39.27052999385846],[-76.58060211043801,39.27053991396637],[-76.58059602351345,39.27054982498372],[-76.58058974234616,39.27055966054341],[-76.5805831998732,39.27056939518445],[-76.58057850251411,39.27057948411046],[-76.58058132861528,39.27058993228745],[-76.58059119099394,39.27059787804095],[-76.58060147426175,39.27060539382933],[-76.58061180174826,39.27061287914864],[-76.58062216530439,39.27062034027514],[-76.5806325556328,39.27062778167947],[-76.58064296806103,39.27063520965017],[-76.5806533944506,39.27064262866217],[-76.58066382550427,39.27065004318605],[-76.58067425538536,39.27065746040707],[-76.5806846759607,39.27066488389924],[-76.58069507908657,39.27067231903818],[-76.58070545893163,39.27067977210841],[-76.58071582133253,39.27068723592454],[-76.58072617906306,39.27069470602849],[-76.58073653098567,39.27070217881307],[-76.58074688057151,39.27070965519142],[-76.5807572278312,39.27071713336209],[-76.58076757392894,39.27072461242842],[-76.58077791887003,39.2707320914897],[-76.58078826613094,39.27073957055831],[-76.5807986145688,39.27074704692789],[-76.5808089676655,39.27075451971007],[-76.58081932309271,39.27076199069815],[-76.58082967851672,39.27076946258597],[-76.58084003395355,39.27077693267143],[-76.58085039171557,39.27078440186349],[-76.58086075297223,39.27079186836474],[-76.58087112005717,39.27079932948127],[-76.58088149296496,39.27080678611384],[-76.58089187402938,39.27081423556842],[-76.58090227838964,39.2708216652883],[-76.58091270488161,39.27082907617013],[-76.58092313836067,39.27083648167137],[-76.58093356252868,39.27084389434455],[-76.5809439622357,39.27085132854787],[-76.58095433982072,39.27085878068666],[-76.58096471158719,39.27086623730762],[-76.58097507868855,39.27087369931555],[-76.58098544114088,39.27088116400827],[-76.58099580242582,39.27088863049742],[-76.58100616138474,39.27089609877885],[-76.5810165215099,39.27090356616275],[-76.58102688280144,39.27091103264911],[-76.58103724643411,39.27091849553984],[-76.58104761587907,39.27092595574801],[-76.58105798999344,39.27093341056735],[-76.58106837225372,39.27094086001017],[-76.5810787696661,39.27094829509384],[-76.58108920201585,39.27095570147667],[-76.58109965417434,39.27096308991388],[-76.58111011098093,39.27097047656515],[-76.58112055265575,39.27097787487149],[-76.58113096173119,39.2709852991828],[-76.5811413475045,39.27099274502848],[-76.58115172628975,39.27100019715368],[-76.581162095764,39.27100765645082],[-76.58117245475779,39.27101512471737],[-76.58118280094273,39.27102260374648],[-76.58119313431884,39.27103009353814],[-76.58120345139908,39.27103759588153],[-76.58121372421714,39.27104513679909],[-76.58122390270925,39.27105275574607],[-76.58123406373595,39.27106038904218],[-76.58124429116931,39.27106796312351],[-76.58125502068357,39.27107509491623],[-76.58126715037065,39.27108021758617],[-76.58128047706936,39.27107750064764],[-76.58128846473727,39.27106872323201],[-76.58129463138324,39.27105884399148],[-76.58130078531217,39.27104895930074],[-76.58130692999525,39.27103907007287],[-76.58131307005189,39.27102917902656],[-76.5813192101069,39.27101928797995],[-76.58132535479547,39.2710093969495],[-76.58133150525525,39.27099950954236],[-76.58133766958747,39.27098962758888],[-76.58134384895088,39.27097975109328],[-76.58135004218676,39.27096988005137],[-76.58135623772787,39.27096001081886],[-76.58136243789733,39.27095014250327],[-76.58136863921854,39.2709402750922],[-76.58137484400929,39.27093040859392],[-76.58138104995177,39.27092054300017],[-76.58138725936902,39.27091067741843],[-76.58139346877398,39.27090081363784],[-76.58139968049483,39.27089094986518],[-76.58140589221397,39.2708810860921],[-76.581412106249,39.27087122232697],[-76.58141831911817,39.2708613594581],[-76.5814245331445,39.27085149659298],[-76.58143074716902,39.27084163372753],[-76.58143696003309,39.27083177085756],[-76.5814431717418,39.27082190708239],[-76.58144938344884,39.27081204330687],[-76.58145559400064,39.27080217862607],[-76.58146180223305,39.27079231393666],[-76.58146800931023,39.27078244834203],[-76.58147421291449,39.2707725818339],[-76.58148041420998,39.27076271351571],[-76.58148660509018,39.2707528424577],[-76.58149278556579,39.27074296685846],[-76.5814989625738,39.27073308944494],[-76.58150513610892,39.270723211118],[-76.58151131079583,39.27071333369551],[-76.58151749010575,39.27070345809074],[-76.58152367750982,39.27069358521672],[-76.58152987647915,39.27068371598666],[-76.5815360904744,39.27067385311513],[-76.58154232180785,39.27066399751115],[-76.58154858436419,39.27065415282729],[-76.5815548735081,39.27064431904701],[-76.58156117999548,39.27063449163348],[-76.58156749341822,39.27062466694665],[-76.58157380799797,39.27061484226358],[-76.58158011216781,39.27060501393998],[-76.58158639783183,39.27059517924469],[-76.5815926557513,39.27058533274028],[-76.58159888360323,39.27057547531918],[-76.58160509064238,39.2705656097167],[-76.58161128148811,39.27055573865154],[-76.58161745961684,39.27054586213617],[-76.58162363196035,39.27053598379826],[-76.5816298019951,39.2705261036503],[-76.58163597549401,39.27051622531586],[-76.58164215476936,39.27050634970394],[-76.58164834676357,39.27049647864079],[-76.5816545468519,39.27048661030844],[-76.58166075156315,39.27047674379373],[-76.58166695858506,39.27046687818768],[-76.58167316791754,39.27045701349026],[-76.58167937840187,39.27044714969738],[-76.5816855877309,39.27043728499929],[-76.58169179474591,39.27042741939179],[-76.58169799944682,39.27041755287497],[-76.58170419952134,39.27040768453976],[-76.58171039381061,39.27039781438205],[-76.5817165800077,39.27038794059215],[-76.58172275347717,39.27037806315347],[-76.58172891885972,39.27036818118182],[-76.58173507961054,39.27035829829255],[-76.58174124035969,39.27034841540298],[-76.58174740457827,39.27033853342611],[-76.58175357572681,39.27032865507667],[-76.58175975959949,39.27031878037528],[-76.58176595734443,39.27030891112753],[-76.58177218283573,39.27029905278744],[-76.58177845688435,39.27028921353605],[-76.58178476215572,39.27027938520463],[-76.58179107088588,39.27026955958749],[-76.58179736227976,39.27025972580137],[-76.58180361204455,39.27024987655361],[-76.58180984099656,39.27024001912447],[-76.58181606647572,39.27023016078186],[-76.58182228848193,39.27022030152577],[-76.58182850817944,39.27021044045956],[-76.58183472555758,39.27020057938473],[-76.58184094062692,39.27019071649982],[-76.58184715337696,39.27018085360629],[-76.58185336497172,39.27017098980755],[-76.58185957541122,39.27016112510358],[-76.58186578469022,39.27015126039509],[-76.58187199396215,39.27014139658704],[-76.58187820323765,39.27013153187783],[-76.58188441251149,39.2701216671683],[-76.58189062294234,39.27011180246252],[-76.58189683452503,39.27010193866126],[-76.58190304725946,39.27009207576452],[-76.58190925999754,39.27008221196669],[-76.58191547272854,39.27007234906923],[-76.5819216843043,39.27006248526654],[-76.5819278947248,39.27005262055863],[-76.58193410282595,39.27004275584211],[-76.58194030977191,39.27003289022035],[-76.58194651555726,39.2700230245941],[-76.58195271787511,39.27001315715366],[-76.58195891325421,39.27000328698583],[-76.5819651016893,39.26999341499146],[-76.58197128896913,39.2699835420918],[-76.58197747740607,39.26997366919594],[-76.58198367046064,39.26996379901848],[-76.58198987392693,39.26995393158001],[-76.58199608895315,39.26994406868618],[-76.58200231553397,39.2699342112377],[-76.58200855136764,39.26992435652411],[-76.58201479182424,39.26991450362815],[-76.58202103343264,39.26990465163674],[-76.58202727273229,39.26989479783519],[-76.58203350508263,39.26988494310778],[-76.58203972934602,39.26987508384745],[-76.5820459397284,39.26986522003348],[-76.58205212929819,39.26985534803818],[-76.58205830036759,39.26984546877062],[-76.5820644610325,39.26983558496184],[-76.5820706170657,39.26982570023544],[-76.58207677772187,39.26981581732667],[-76.58208295109674,39.26980593896668],[-76.58208913834386,39.2697960660603],[-76.5820953313674,39.26978619587644],[-76.58210152901916,39.26977632660945],[-76.58210773013502,39.26976645915595],[-76.58211393356682,39.26975659171038],[-76.58212014046272,39.2697467260783],[-76.5821263485104,39.26973686135072],[-76.58213255887398,39.26972699663107],[-76.5821387692305,39.26971713281176],[-76.58214497958534,39.26970726899211],[-76.58215119109725,39.26969740517625],[-76.58215740376623,39.26968754136413],[-76.58216361874052,39.26967767936143],[-76.58216983487188,39.26966781736245],[-76.5821760521603,39.26965795536726],[-76.58218227175404,39.26964809518145],[-76.58218849366371,39.26963823500353],[-76.58219471903746,39.26962837663913],[-76.58220094672178,39.26961851918336],[-76.58220717440437,39.26960866172719],[-76.58221340208523,39.26959880427069],[-76.582219632082,39.2695889468221],[-76.58222586554281,39.269579091187],[-76.58223210246778,39.26956923736539],[-76.58223834516915,39.26955938626625],[-76.58224459596984,39.26954953699715],[-76.58225085485925,39.2695396913595],[-76.5822571253085,39.26952985026646],[-76.58226343391193,39.26952002372105],[-76.58226977951071,39.26951021171917],[-76.5822761378281,39.26950040426593],[-76.58228248111104,39.2694905913543],[-76.58228878508282,39.26948076298943],[-76.582295033552,39.26947091370914],[-76.58230124271003,39.26946104897566],[-76.58230742873786,39.26945117605267],[-76.58231360899117,39.26944129950569],[-76.5823197973332,39.26943142659024],[-76.58232600879136,39.26942156366508],[-76.58233226072123,39.26941171529577],[-76.58233854849294,39.26940188056506],[-76.58234486053954,39.26939205582877],[-76.58235118646358,39.26938223564532],[-76.58235751469817,39.26937241637044],[-76.58236383367648,39.26936259436003],[-76.58237013184217,39.26935276416835],[-76.58237640225838,39.26934292306838],[-76.58238265649196,39.26933307470441],[-76.58238890840093,39.26932322723257],[-76.58239516378453,39.26931337977273],[-76.58240141916109,39.26930353321325],[-76.58240767569475,39.2692936866576],[-76.58241393107316,39.26928383919667],[-76.58242018644458,39.26927399263612],[-76.58242644181949,39.26926414517447],[-76.58243269602859,39.26925429860913],[-76.58243895140004,39.26924445114675],[-76.5824452067645,39.26923460458477],[-76.58245146213248,39.26922475712168],[-76.58245771749871,39.26921490965825],[-76.58246397285798,39.26920506309516],[-76.58247022822074,39.26919521563097],[-76.58247648241769,39.2691853690631],[-76.58248273777699,39.26917552159821],[-76.5824889931346,39.26916567413294],[-76.58249524732634,39.26915582756394],[-76.58250150268043,39.26914598009795],[-76.58250775802748,39.26913613353237],[-76.58251401337814,39.26912628606567],[-76.58252026756824,39.26911643859449],[-76.58252652291009,39.26910659202778],[-76.5825327770967,39.2690967445559],[-76.58253903244038,39.26908689708777],[-76.58254528777707,39.26907705052],[-76.58255154195848,39.26906720304699],[-76.58255779729694,39.26905735557774],[-76.58256405262837,39.26904750900893],[-76.58257030680457,39.26903766153484],[-76.58257656213789,39.26902781406452],[-76.5825828174641,39.26901796749458],[-76.5825890716351,39.26900812001945],[-76.58259532695784,39.26899827344877],[-76.58260158228416,39.26898842597701],[-76.58260783644994,39.26897857850076],[-76.58261409176754,39.26896873192904],[-76.58262034708865,39.26895888445618],[-76.58262660124922,39.26894903697887],[-76.58263285656156,39.26893919040602],[-76.5826391118775,39.26892934293208],[-76.58264536602758,39.26891949635445],[-76.5826977252692,39.26883554176579],[-76.58277226255456,39.2687173836519],[-76.58284388281508,39.26860376399991],[-76.58288830666893,39.26853270714093],[-76.58308083120207,39.26822548694333],[-76.58315425316432,39.26810917658838],[-76.58370906752823,39.26853290445856],[-76.58381150070602,39.26861124060945],[-76.58389672158962,39.26867603570606],[-76.58387459622517,39.26871041975723],[-76.58373638412675,39.26892802455722],[-76.58362844051774,39.26909869755085],[-76.58353117736515,39.26925317379226],[-76.58346325158678,39.26936092583691],[-76.58333821851063,39.26955922390275],[-76.58324375461942,39.26970962214136],[-76.58317177436993,39.26982368300103],[-76.58306877472127,39.26998693175842],[-76.58301011163958,39.27007984204532],[-76.58300753592977,39.27008391517472],[-76.58300597786784,39.27008637954493],[-76.58300441980582,39.27008884391514],[-76.58300286174892,39.27009130738458],[-76.5830013048455,39.27009377175884],[-76.58299974678313,39.27009623612899],[-76.58299818872068,39.27009870049908],[-76.5829966318222,39.27010116397254],[-76.58299507375946,39.27010362834261],[-76.5829935168555,39.27010609271677],[-76.58299195879259,39.27010855708679],[-76.5829904018884,39.27011102146091],[-76.58298884498409,39.27011348583498],[-76.58298728692617,39.27011594930415],[-76.58298573002165,39.27011841367825],[-76.58298417311701,39.27012087805226],[-76.58298261505342,39.27012334242215],[-76.58298105814858,39.27012580679614],[-76.58297950124363,39.27012827117007],[-76.58297794317976,39.2701307355399],[-76.58297638627458,39.2701331999138],[-76.58297482937459,39.27013566338696],[-76.58297327131035,39.27013812775671],[-76.58297171440485,39.27014059213055],[-76.58297015749925,39.27014305650437],[-76.58296859943474,39.27014552087405],[-76.58296704252892,39.27014798524781],[-76.58296548562299,39.27015044962157],[-76.58296392755815,39.2701529139912],[-76.5829623706573,39.27015537746416],[-76.58296081259218,39.27015784183371],[-76.58295925568582,39.27016030620739],[-76.58295769877935,39.27016277058105],[-76.58295614071397,39.27016523495053],[-76.5829545838073,39.27016769932414],[-76.58295302574699,39.27017016279287],[-76.58295146768121,39.27017262716227],[-76.58294991077422,39.27017509153581],[-76.58294835270829,39.2701775559052],[-76.58294679580635,39.27018001937792],[-76.58294523774018,39.27018248374726],[-76.58294367967392,39.27018494811664],[-76.58294212161285,39.27018741158515],[-76.58294056354633,39.27018987595443],[-76.58293900548506,39.27019233942295],[-76.58293744741839,39.27019480379219],[-76.58293588935683,39.27019726726063],[-76.58293433128993,39.27019973162983],[-76.58293277322822,39.27020219509826],[-76.58293121516107,39.27020465946741],[-76.58292965594032,39.27020712293165],[-76.582928097873,39.27020958730074],[-76.58292653865199,39.27021205076497],[-76.58292498058974,39.2702145142333],[-76.58292342136853,39.27021697769747],[-76.58292186330077,39.27021944206647],[-76.58292030407932,39.27022190553058],[-76.58291874485778,39.27022436899468],[-76.58291718563619,39.27022683245877],[-76.58291562641442,39.27022929592284],[-76.58291406719256,39.27023175938684],[-76.58291250681182,39.27023422284675],[-76.58291094758974,39.27023668631075],[-76.58290938836755,39.27023914977472],[-76.58290782798645,39.27024161323452],[-76.58290626761053,39.27024407579361],[-76.58290470722919,39.2702465392534],[-76.58290314685311,39.2702490018124],[-76.58290158647156,39.27025146527215],[-76.58290002493635,39.27025392782699],[-76.58289846455989,39.27025639038596],[-76.5828969030245,39.27025885294075],[-76.58289534033023,39.27026131549145],[-76.58289377879458,39.27026377804619],[-76.58289221610006,39.27026624059678],[-76.58289065456425,39.27026870315154],[-76.58288909186948,39.27027116570209],[-76.58288752917994,39.27027362735194],[-76.58288596648494,39.27027608990246],[-76.58288440263632,39.27027855154811],[-76.58288283994646,39.27028101319783],[-76.58288127609232,39.27028347574421],[-76.58287971224338,39.27028593738979],[-76.5828781495532,39.27028839903945],[-76.58287658570404,39.27029086068498],[-76.58287502184947,39.27029332323127],[-76.58287345800011,39.27029578487677],[-76.58287189415061,39.27029824652222],[-76.58287032914222,39.27030070816353],[-76.58286876529252,39.27030316980895],[-76.58286720144271,39.27030563145435],[-76.58286563759285,39.27030809309973],[-76.582864072584,39.27031055474101],[-76.58286250873388,39.27031301638631],[-76.58286094488362,39.27031547803165],[-76.58285937987976,39.27031793877205],[-76.5828578160293,39.27032040041731],[-76.58285625217873,39.27032286206255],[-76.58285468716925,39.27032532370364],[-76.58285312331846,39.27032778534884],[-76.58285155946756,39.270330246994],[-76.58284999561656,39.2703327086392],[-76.58284843176021,39.27033517118506],[-76.582846867909,39.27033763283016],[-76.58284530405766,39.27034009447523],[-76.58284374020623,39.27034255612028],[-76.58284217635467,39.27034501776535],[-76.58284061365659,39.27034748031522],[-76.58283904980482,39.2703499419602],[-76.58277821879682,39.27044664385661],[-76.58272130107646,39.27053743167845],[-76.58264476905325,39.27065925053712],[-76.58256695076446,39.27078258976852],[-76.58248937759149,39.27090597845758],[-76.5824376282799,39.27098799302488],[-76.58239636890805,39.27105286635059],[-76.5823505763704,39.27112496119888],[-76.58226967216545,39.27125440274784],[-76.58222049331755,39.27133296741254],[-76.58212073649574,39.27149423702458],[-76.58207362496286,39.2715707957663],[-76.58204511441733,39.27161723960809],[-76.58204313749353,39.27162017267408],[-76.58204182108004,39.27162271986036],[-76.58204084592607,39.27162537004765],[-76.58204044047788,39.27162809792676],[-76.58204060268845,39.27163085755132],[-76.582041470177,39.27163350078465],[-76.58204281673535,39.27163606645539],[-76.582044534053,39.27163844878847],[-76.58204675333401,39.27164060501399],[-76.58210139182457,39.27168052684192],[-76.58222132550236,39.27176635428636],[-76.58235323805908,39.27186036893229],[-76.58245213669002,39.27193197839942],[-76.58257192258253,39.2720184471974],[-76.58262683122454,39.27205805176405],[-76.58270387492924,39.27211314526222],[-76.582777271006,39.27216619992741],[-76.58286950899915,39.27223233303433],[-76.5829467478775,39.27228661997571],[-76.58302458458265,39.27234193946398],[-76.58303594580002,39.27235010110689],[-76.58304252821296,39.27235188096985],[-76.58304606847157,39.27235209891305],[-76.58304962305493,39.27235204847873],[-76.5830529596898,39.27235122261169],[-76.58305617344405,39.2723500089789],[-76.58305906690445,39.27234847623856],[-76.58306150200332,39.27234645455645],[-76.58309048059107,39.27230135248062],[-76.58313839667753,39.27222483673969],[-76.58321537198532,39.27210286245193],[-76.58328820029206,39.27198725082093],[-76.58336047640792,39.27187248480382],[-76.58342732490145,39.27176587934608],[-76.58352863449272,39.27160517442919],[-76.58362168778177,39.27145811017771],[-76.58371385251502,39.27131152280647],[-76.5838259850449,39.27113176873834],[-76.58393162450923,39.27096397084575],[-76.58400055032062,39.27085399722687],[-76.58413122888678,39.27064774043134],[-76.58420195458572,39.27053663989539],[-76.58430819343128,39.27036829699788],[-76.58440615241584,39.27021251561387],[-76.58447153143109,39.27010835350553],[-76.58454124385477,39.26999774008429],[-76.58465035487056,39.26982407537883],[-76.58473469969903,39.26969063501004],[-76.58482118659605,39.26955486916333],[-76.58491752080761,39.26940307648051],[-76.58500566134542,39.26946712082249],[-76.58513354271264,39.26955997329159],[-76.58526383014802,39.26965163789639],[-76.58528947190962,39.26966945103041],[-76.5852379429165,39.2697569091561],[-76.58516274334251,39.26988559641125],[-76.58516479502264,39.2698862981494],[-76.58525025877164,39.269915367782],[-76.58524607124698,39.26992400125415],[-76.58538548335365,39.26997277730662],[-76.58554526347513,39.27002790071366],[-76.58543981040032,39.27021288826991],[-76.58535483540504,39.27036306584174],[-76.5852912279495,39.27047559469979],[-76.58524048352001,39.27056275111944],[-76.58517368611372,39.27067693866393],[-76.58511135858804,39.27078372594811],[-76.58503513277074,39.27091547026644],[-76.58492990382051,39.27109754774198],[-76.58483698975034,39.2712574107134],[-76.58476469067737,39.2713819625921],[-76.58471224799446,39.27147294552108],[-76.58464746302026,39.27158356471674],[-76.58457548504855,39.27170858059885],[-76.58449373510902,39.27184905053605],[-76.58441533155104,39.27198400154894],[-76.58435465067568,39.27208883415841],[-76.58426152547288,39.27224987319139],[-76.58421474572187,39.27233044055053],[-76.58416856130488,39.2724094642828],[-76.58425081107055,39.27243885471435],[-76.58433820134175,39.27246989006438],[-76.58444843156495,39.27250873653755],[-76.58452468211637,39.27253494386035],[-76.5845907054546,39.2725576082781],[-76.58464634071872,39.27257708414103],[-76.58470057217816,39.27248416914454],[-76.58479704343357,39.27231681012167],[-76.58487323994142,39.27218486232831],[-76.58498560178705,39.27199099571241],[-76.58508817517954,39.27181516557052],[-76.58521127451364,39.27160236561794],[-76.58529742581786,39.27145307870571],[-76.58539280241162,39.27128813384505],[-76.58546909440128,39.27115691919404],[-76.58559313332285,39.27094317451849],[-76.58569097768101,39.27077650863203],[-76.58580767483876,39.2705755151829],[-76.58590943815311,39.27039919049064],[-76.58595770781945,39.27031575332901],[-76.586024917257,39.27019979047293],[-76.58605718964888,39.27021017026192],[-76.58611937711841,39.27025560881375],[-76.58620386191016,39.27031637136881],[-76.58629774661664,39.27038422898301],[-76.58638565404678,39.2704469365052],[-76.58646182905271,39.27050095979463],[-76.58653310091925,39.2705512311941],[-76.58658654615172,39.27058958841535],[-76.58668795830151,39.27066182831298],[-76.58662573941176,39.27076528123771],[-76.58656276087191,39.27087139141579],[-76.58649385001746,39.27099041567486],[-76.5864122010682,39.27113185023536],[-76.58635317927127,39.27123460265767],[-76.58629904658936,39.27132820517208],[-76.58620977617201,39.27148275311087],[-76.58613503835353,39.27161153803193],[-76.58605647066142,39.27174600404648],[-76.58597142368987,39.27189273631497],[-76.58592392673935,39.27197424853243],[-76.58587464881342,39.272058881909],[-76.58580548046595,39.27217734995109],[-76.58574877850103,39.27227448494203],[-76.58567893354957,39.27239463585025],[-76.5855967612883,39.27253443666393],[-76.58554134557448,39.27262950882718],[-76.5854914974685,39.27271438412539],[-76.58540775338575,39.27285769133498],[-76.58533425900943,39.27298658188079],[-76.58526712983826,39.27310462351126],[-76.58524335030343,39.27314510462533],[-76.5852409451635,39.27314874783628],[-76.58523936397654,39.27315120494611],[-76.58523796556972,39.27315371764804],[-76.58523679266328,39.27315631311609],[-76.58523584539938,39.27315896702994],[-76.58523513666775,39.27316165511451],[-76.5852346570554,39.27316440165716],[-76.58523461902503,39.27316714075165],[-76.58523510961841,39.27316985108686],[-76.585235963054,39.27317254288663],[-76.58523711603624,39.27317514026306],[-76.5852386172535,39.27317764068582],[-76.58524059477651,39.27317994282054],[-76.58524299595014,39.27318193478636],[-76.58524550533586,39.27318385237071],[-76.58524808102479,39.27318572785315],[-76.5852507044013,39.27318757377869],[-76.58525335802966,39.27318939909336],[-76.58525602213535,39.27319121633808],[-76.58525868044156,39.27319303446304],[-76.58526131666623,39.27319486331911],[-76.58526394940388,39.2731966939644],[-76.58526658563933,39.27319852101889],[-76.58526922420317,39.27320034627999],[-76.58527186393133,39.27320217064439],[-76.5852745059931,39.27320399231468],[-76.58527715037805,39.27320581309233],[-76.5852797947684,39.2732076329692],[-76.58528244148185,39.2732094519534],[-76.5852850870366,39.27321127093347],[-76.58528773375564,39.27321308901681],[-76.5852903804695,39.27321490800092],[-76.58529302602992,39.27321672608004],[-76.58529567157993,39.27321854596061],[-76.58529831597123,39.27322036583706],[-76.58530095919328,39.27322218751082],[-76.58530360008717,39.27322401097785],[-76.58530623981703,39.27322583534146],[-76.58530887605467,39.27322766239497],[-76.58531150995887,39.2732294921425],[-76.58531413920669,39.27323132547657],[-76.58531676379285,39.27323316329792],[-76.58531938488673,39.27323500380926],[-76.58532200481132,39.27323684611789],[-76.58532462241305,39.27323868931903],[-76.58532724001495,39.27324053252012],[-76.58532985877581,39.27324237572522],[-76.58533247870625,39.27324421713289],[-76.58533510097035,39.27324605584643],[-76.58533772788583,39.27324789187403],[-76.58534035830444,39.27324972341009],[-76.5853429945438,39.27325155046282],[-76.58534565742684,39.27325337941112],[-76.58534859694177,39.27325487064807],[-76.58535181421054,39.27325603048297],[-76.58535514639632,39.27325696012743],[-76.5853586133886,39.2732574290557],[-76.58536216526718,39.27325765057298],[-76.5853657153439,39.2732577838087],[-76.58536909169692,39.27325710484108],[-76.58537241664722,39.27325609961471],[-76.58537560269511,39.27325486780564],[-76.58537853997413,39.27325337029313],[-76.58538117809401,39.27325150421202],[-76.58538344201848,39.27324941792381],[-76.58538522793332,39.27324702819156],[-76.58540051000334,39.27322069780929],[-76.58547810771539,39.27308771422085],[-76.58555322535815,39.27295786279581],[-76.58562004309054,39.27284105304855],[-76.58570668720432,39.27269143074022],[-76.58581309575574,39.27250904334574],[-76.58595123081987,39.27227078149172],[-76.5860840211516,39.27204169744682],[-76.58618470778815,39.27186861064931],[-76.58627965226884,39.27170715854388],[-76.58644578294842,39.27142128199504],[-76.58655051018965,39.27123701346311],[-76.58669442603679,39.27128631632157],[-76.58682392621003,39.27133037717249],[-76.58695168378902,39.27137381022221],[-76.58712430073976,39.27143325432736],[-76.58723135008015,39.27147065389941],[-76.58734184436369,39.27150973009312],[-76.58760117519121,39.27160430265909],[-76.58764520548219,39.27162041162853],[-76.58765129240678,39.27162151391913],[-76.58765473294986,39.27162213581743],[-76.58765816994843,39.2716227694131],[-76.58766159986834,39.27162342460228],[-76.58766501446894,39.2716243229444],[-76.58766840846687,39.27162517707651],[-76.58767183379776,39.27162522603366],[-76.58767539655703,39.27162455936416],[-76.58767854341023,39.2716232724081],[-76.58768100168861,39.27162142275807],[-76.58768312951396,39.27161920443526],[-76.58768508209498,39.27161683056543],[-76.5876869927272,39.271614496182],[-76.5876887668511,39.27161212078485],[-76.58769045316444,39.27160970004108],[-76.58769217875799,39.27160730015279],[-76.58769407186571,39.27160499002841],[-76.58769608875505,39.27160271726994],[-76.58769813008473,39.27160042658196],[-76.58770024187348,39.27159817577495],[-76.5877024701087,39.27159602806407],[-76.58770486196285,39.27159404216465],[-76.58770747155091,39.27159227861799],[-76.58771041456372,39.27159077115856],[-76.58771362038505,39.2715895069277],[-76.58771697092266,39.27158846659477],[-76.58772034692032,39.27158763172582],[-76.58772375817965,39.27158711044715],[-76.5877272993229,39.27158697244987],[-76.58773088690064,39.27158702017331],[-76.58773443859612,39.27158706056459],[-76.58773797658428,39.27158706667848],[-76.58774151907704,39.27158709532728],[-76.58774505776351,39.27158718071084],[-76.58774858202058,39.27158735612026],[-76.5877520835374,39.27158765575551],[-76.58775556702794,39.27158806612159],[-76.58775904314156,39.2715885494237],[-76.58776250962342,39.27158909484478],[-76.58776596538264,39.27158969067101],[-76.58776941048731,39.2715903251927],[-76.58777284268253,39.27159098759274],[-76.58777626552853,39.27159166347133],[-76.58777971501762,39.27159234124486],[-76.5877831490702,39.27159308291851],[-76.58778650351037,39.27159396393137],[-76.58778971647462,39.27159506063149],[-76.5877927739783,39.27159638648115],[-76.58779574611201,39.27159784534456],[-76.58779865742605,39.27159940037642],[-76.58780153014773,39.27160101562403],[-76.58780438881692,39.27160265604367],[-76.58780725333803,39.27160428657544],[-76.58781014825607,39.2716058712747],[-76.58781304073099,39.27160747758369],[-76.58781589095913,39.27160917472174],[-76.58781875639365,39.27161084759238],[-76.58782169103215,39.27161237748405],[-76.587824754661,39.27161364660615],[-76.58782800829887,39.27161452456173],[-76.58783145895111,39.27161500236777],[-76.58783502335596,39.27161524907601],[-76.58783861708777,39.27161543463495],[-76.58784215455151,39.27161573079059],[-76.5878456745175,39.27161604670154],[-76.58784921216441,39.27161631133078],[-76.58785275096491,39.27161657686469],[-76.58785626977215,39.27161689277128],[-76.58785975205359,39.27161731213769],[-76.58786317781583,39.2716178853366],[-76.58786653284413,39.27161866546346],[-76.58786981833397,39.27161964621702],[-76.58787305317746,39.27162076731226],[-76.58787625509207,39.27162197116233],[-76.58787944413918,39.27162319568482],[-76.58788263337996,39.27162438687952],[-76.58788571629226,39.27162572812896],[-76.58788880270743,39.27162706488683],[-76.58789200725411,39.27162821469975],[-76.58789524571615,39.27162931148638],[-76.58789849821517,39.27163038580304],[-76.5879017448625,39.27163147000749],[-76.58784603757202,39.27172811498441],[-76.58777081721517,39.27186342888715],[-76.58768067220421,39.27201635796613],[-76.58762483105431,39.27211100626207],[-76.58757833514134,39.27219086704422],[-76.58752335491108,39.27228628756529],[-76.58750753185284,39.27231394856021],[-76.58739604529514,39.2725054696241],[-76.5872971321175,39.27267765207745],[-76.58725453433844,39.27275206867849],[-76.58725943432,39.27275741212668],[-76.58726391748408,39.2727616939085],[-76.58726834037317,39.27276398568664],[-76.58727673069731,39.27276737592877],[-76.58727998189516,39.27277027520898],[-76.58728013667479,39.27277574250056],[-76.58728190535511,39.27277949049698],[-76.58728758083436,39.27278460066841],[-76.58729296958342,39.27279098982022],[-76.58730146630405,39.27279680979976],[-76.58731088518314,39.2728006918687],[-76.58731864117385,39.27280395647394],[-76.58732449748132,39.27280886100355],[-76.58730744237475,39.27284109713214],[-76.58736408739563,39.27286047616658],[-76.58736541410987,39.27285832079148],[-76.58750527296375,39.27290843707013],[-76.58750055937186,39.27291667693405],[-76.58750975295382,39.27291984749134],[-76.58750168124593,39.27293400800431],[-76.5876085792152,39.27297155530209],[-76.58779132413804,39.273035879164],[-76.58794356470959,39.27308908115806],[-76.58796544475575,39.2730974359572],[-76.58802038647798,39.27311623490898],[-76.58808606607823,39.27313890515398],[-76.58815293016723,39.27316236408247],[-76.58816905836585,39.27313443204646],[-76.58828522937625,39.27316916932379],[-76.58829758591759,39.27317449022509],[-76.58830396443749,39.2731776913862],[-76.5883139484233,39.27318546125782],[-76.58832290399131,39.27319491195549],[-76.58833456984524,39.27320063127254],[-76.58835053402802,39.27320515412418],[-76.58835621947853,39.2732103624614],[-76.58836097471014,39.27321750418412],[-76.58836825487397,39.27322609598107],[-76.58837920513707,39.27323390976801],[-76.588389627855,39.27323717193789],[-76.58840007826747,39.27323745807424],[-76.58841509989045,39.27323465619074],[-76.58842760087136,39.27323226162599],[-76.58844711437725,39.2732302573438],[-76.58846111592433,39.27322849676805],[-76.5884732627283,39.27322802319125],[-76.58849537031608,39.27323013277942],[-76.58850612029333,39.27323111985082],[-76.58851192008262,39.27323000340472],[-76.58851580892716,39.27322687605983],[-76.5885286680123,39.27320709345846],[-76.58861240353262,39.27323734265241],[-76.5886794466559,39.27326174951207],[-76.58870452403374,39.27321575866907],[-76.58874575617949,39.27314040628379],[-76.58878285025692,39.27307058000376],[-76.58881746997679,39.27300616225293],[-76.58884879717176,39.27294535404281],[-76.58888700492278,39.27287049544425],[-76.58892251817923,39.2727998375799],[-76.58899568925983,39.27282623388462],[-76.58901357357703,39.27283257480612],[-76.5890590904697,39.27284871365941],[-76.58911565916493,39.27286894820843],[-76.58915802879322,39.27288424640726],[-76.5892135674697,39.27290445028265],[-76.58925765018434,39.27291971300173],[-76.58928824970076,39.27297533780288],[-76.58932372324796,39.27303842536683],[-76.5893825730809,39.27314253084271],[-76.58941144164876,39.27319470863121],[-76.58943456090579,39.27323488252846],[-76.58939056430623,39.27330302656792],[-76.58938796985383,39.27330697726288],[-76.58935490127982,39.27335734865567],[-76.58931697295574,39.27341320311989],[-76.58930816163242,39.27343246310367],[-76.58929495539887,39.27346159632226],[-76.58928221530292,39.27349128333852],[-76.58927056363457,39.27351912849095],[-76.58925481246361,39.27356867496002],[-76.58930618378422,39.27358856695864],[-76.58927511814156,39.27364204846639],[-76.58922315181701,39.27373333495564],[-76.58915707489162,39.27384877833072],[-76.58911576282988,39.27391972402062],[-76.58910453891934,39.27391650595318],[-76.58909176399484,39.27393877141728],[-76.58910207217528,39.27394282399404],[-76.58907742176778,39.27398472783184],[-76.58905080896925,39.27403229151279],[-76.58904114718926,39.27402928427973],[-76.58903552550787,39.27403025364958],[-76.58900819192458,39.27407719957557],[-76.5890105195307,39.27408271229778],[-76.58902021816877,39.27408656007638],[-76.58897681565362,39.27416102129184],[-76.58892132392837,39.27425837546487],[-76.58887686576159,39.27433498037006],[-76.58885305251268,39.27437616467351],[-76.5888417676736,39.27437225097747],[-76.58883654283058,39.27437433056907],[-76.5888092580167,39.27442121446288],[-76.58881150043997,39.27442622696554],[-76.58882200105104,39.27443008026997],[-76.58879018383833,39.27448633696775],[-76.58877820417759,39.27448172994615],[-76.5887651342413,39.27450427177454],[-76.58877677517978,39.27450833445],[-76.58874618824152,39.27456006549385],[-76.58875889145402,39.27456480746455],[-76.5887298486427,39.2746154548848],[-76.5887138841241,39.27464312003205],[-76.58869971202847,39.27463826842395],[-76.58868820504142,39.27465807648912],[-76.58870343339886,39.27466344433287],[-76.58869889546543,39.27467117412179],[-76.58867423279408,39.27471370926119],[-76.58865738809443,39.27474286298475],[-76.58864335460771,39.27476707324383],[-76.58863110354403,39.27478788304993],[-76.58861657318826,39.27481323643779],[-76.58860354720842,39.27483597296568],[-76.58859051987743,39.27485914095375],[-76.58858159486493,39.27487535769309],[-76.58857532797427,39.27487306311009],[-76.58856406623981,39.27489313414375],[-76.5885702454814,39.27489615443707],[-76.58855968796384,39.27491369678692],[-76.58854080572719,39.27494685716436],[-76.58849582797,39.27502578226508],[-76.58847629917051,39.2750597114209],[-76.58846176119845,39.27505458917422],[-76.58845063159941,39.27507504618661],[-76.58846427909216,39.27507964287071],[-76.58845601064539,39.27509474495147],[-76.58844130724768,39.27512113809323],[-76.5884521682816,39.27512500620405],[-76.5884653542859,39.27512944543851],[-76.58848890968957,39.27513759702541],[-76.58848162158321,39.27515051998866],[-76.58850837732034,39.27516017895554],[-76.58851628276261,39.27514731940555],[-76.58853603149038,39.27515420558289],[-76.58855566271318,39.27516117061258],[-76.5885466520164,39.27517576747223],[-76.58857189198928,39.27518541030533],[-76.58858120829595,39.27516987321479],[-76.58859848891417,39.27517609227674],[-76.58861090668621,39.27515512632687],[-76.58862268615313,39.27513571286054],[-76.58861432386396,39.27512742805868],[-76.58863142997855,39.27509837974854],[-76.58865750347994,39.27505260140435],[-76.5886860583147,39.27500340523297],[-76.58870982601672,39.27496173439722],[-76.58873736580165,39.27491389661475],[-76.5887626910607,39.27487042158403],[-76.58879084857637,39.27482156718546],[-76.58881909827417,39.27477259780427],[-76.58885931490954,39.27470303197445],[-76.58888116761719,39.27466500609979],[-76.58889890695872,39.27463404043332],[-76.58892625153821,39.27464425623942],[-76.58895687533995,39.27465556263228],[-76.58896756303452,39.27465953728054],[-76.58898493466563,39.27465403044361],[-76.58899674966443,39.27465666058864],[-76.5889236085569,39.27479619347007],[-76.58909162280021,39.27485786678955],[-76.58910926553365,39.27486438880021],[-76.58912584596062,39.27487043779331],[-76.58914539582707,39.2748776393417],[-76.58916520241903,39.27488473729606],[-76.58918071326323,39.27489036998961],[-76.58919568240773,39.27489588638916],[-76.58920287754717,39.27489839316318],[-76.58921529135043,39.2749030953386],[-76.58920639160601,39.27492297832731],[-76.58919757717594,39.27494273730805],[-76.58918973980614,39.27496027841875],[-76.5891841376211,39.27497308031469],[-76.58918940669417,39.27497497683988],[-76.58919742212221,39.27497732434557],[-76.58920656879742,39.27495702877025],[-76.58921896711882,39.27492977624761],[-76.5892260371297,39.27491466181471],[-76.5892394094019,39.27488332412283],[-76.5892516837636,39.27485525867249],[-76.5892455638782,39.27485078929151],[-76.58925915278373,39.27482386700462],[-76.58927451824262,39.27483018916355],[-76.58927181249338,39.27483473667249],[-76.58927036665014,39.27483725465953],[-76.58926896246452,39.27483978360149],[-76.58926769487228,39.274842340044],[-76.58926668541162,39.27484494963362],[-76.58926619450092,39.27484767092994],[-76.58926596876397,39.274850430085],[-76.58926576166846,39.27485317219071],[-76.58926563450554,39.2748559199805],[-76.5892656394674,39.27485866643084],[-76.58926578467157,39.2748614106693],[-76.58926593324294,39.27486417383564],[-76.58926615251745,39.27486693544768],[-76.58926653303531,39.27486967060067],[-76.58926716882357,39.2748723526004],[-76.58926806079096,39.27487502468682],[-76.58926907983049,39.27487776747731],[-76.58927028219499,39.27488047307675],[-76.58927173113763,39.27488302550757],[-76.5892734933778,39.27488531060602],[-76.58927577885729,39.27488709760953],[-76.58927915801713,39.27488794263414],[-76.58928289793202,39.27488853040061],[-76.589286084002,39.2748896981245],[-76.58928869746575,39.27489148357238],[-76.58929127781839,39.27489338330157],[-76.58929377873515,39.27489539174558],[-76.58929615274296,39.27489750153214],[-76.58929835351718,39.27489970709482],[-76.58930033588678,39.27490200377176],[-76.58930205354275,39.27490438329419],[-76.58930355294007,39.27490682871001],[-76.58930494661183,39.27490931969512],[-76.58930625198846,39.27491184820362],[-76.58930748067974,39.27491441067306],[-76.58930864779299,39.27491699995007],[-76.58930976610232,39.27491961157556],[-76.58931084955607,39.27492223839217],[-76.58931191209241,39.27492487504404],[-76.58931296880303,39.27492751708012],[-76.58931403131866,39.27493015733497],[-76.58931511473104,39.2749327913575],[-76.58931623298866,39.27493541199038],[-76.58931740002443,39.27493801477853],[-76.58931862746377,39.2749405934572],[-76.58931991878345,39.27494314803859],[-76.58932122867691,39.27494569728028],[-76.58932255482111,39.27494824207493],[-76.58932389837493,39.27495078242664],[-76.58932525817954,39.27495331833132],[-76.58932663772198,39.27495584799968],[-76.58932803468454,39.27495837142352],[-76.58932945254911,39.27496088771435],[-76.58933089015159,39.2749633977688],[-76.58933234866124,39.27496589978944],[-76.58933382924218,39.27496839287958],[-76.58933533188932,39.27497087793998],[-76.58933685777184,39.27497335317317],[-76.58933840107449,39.27497582216188],[-76.58933993621282,39.2749783001297],[-76.58934146086902,39.2749807870685],[-76.58934297852504,39.27498328208962],[-76.58934449267312,39.27498578250315],[-76.58934600564159,39.27498828651556],[-76.58934752092797,39.27499079053601],[-76.58934904085528,39.27499329367195],[-76.5893505700695,39.27499579413799],[-76.58935210975044,39.27499828833528],[-76.58935366338002,39.27500077537519],[-76.5893552356094,39.27500325257171],[-76.58935682760803,39.27500571812737],[-76.58935844286812,39.27500816935209],[-76.58936008487693,39.2750106044565],[-76.58936175712148,39.27501302165135],[-76.58936346193522,39.2750154182424],[-76.58936520165169,39.27501779153559],[-76.58936698091162,39.27502014064632],[-76.58936880204844,39.27502246288053],[-76.58937066739567,39.27502475554397],[-76.58937258159409,39.27502701775215],[-76.58937459234103,39.27502921814508],[-76.58937684848149,39.27503126986891],[-76.58937932327733,39.27503318724236],[-76.58938197485696,39.27503499624121],[-76.58938475903098,39.27503672283316],[-76.58938763393819,39.27503839119252],[-76.58939055770183,39.27504002819588],[-76.58939348614291,39.27504165800935],[-76.58939637622572,39.27504330750548],[-76.58939918724795,39.27504500086268],[-76.58940193201495,39.27504672821721],[-76.5894046954287,39.27504843762156],[-76.58940747516107,39.27505013086914],[-76.589410267704,39.27505181335227],[-76.58941306840629,39.27505348775696],[-76.58941587261148,39.27505515767],[-76.58941867681679,39.27505682758296],[-76.5894214775247,39.27505850108669],[-76.5894242712376,39.27506018177203],[-76.58940006351186,39.27510045412484],[-76.58938885834752,39.27509616514217],[-76.58933894447189,39.27518609326245],[-76.58929236202881,39.27527167871079],[-76.58923094058252,39.27537527348229],[-76.58920717652462,39.27541514290053],[-76.5891978923619,39.27543195203187],[-76.58918402781227,39.27545741770697],[-76.58919010393932,39.27545944496319],[-76.58919338626447,39.27546060581989],[-76.58919668215238,39.27546182617436],[-76.58919904156825,39.27546365667435],[-76.5892005582428,39.27546612196833],[-76.58920152046,39.27546887176629],[-76.58920201566347,39.27547161542695],[-76.58920224908421,39.2754743356529],[-76.58920232825031,39.27547707605693],[-76.5892023134718,39.27547982874309],[-76.58920226736629,39.27548258762506],[-76.58920225023351,39.27548534660832],[-76.58920232237836,39.27548809869773],[-76.58920253946492,39.27549083778258],[-76.58920283538859,39.27549357173863],[-76.5892031707308,39.27549630313023],[-76.58920353968654,39.27549903373861],[-76.58920393530768,39.27550176263874],[-76.58920435064068,39.27550448980627],[-76.58920477872174,39.27550721701838],[-76.5892052149204,39.27550994335811],[-76.58920565112432,39.27551266879713],[-76.58920608036956,39.27551539511249],[-76.58920650266663,39.27551812050285],[-76.58920693423501,39.27552084592565],[-76.58920737624399,39.27552356958338],[-76.58920782752953,39.27552629237277],[-76.58920828345073,39.27552901517841],[-76.58920874169502,39.27553173709138],[-76.58920920109301,39.27553445990917],[-76.58920965817843,39.27553718181811],[-76.58921011177671,39.27553990551636],[-76.58920864524131,39.27554099031276],[-76.58920722831989,39.27554211311481],[-76.58920586332505,39.27554327483131],[-76.58920455027774,39.27554447185934],[-76.58920329033674,39.27554570420291],[-76.58920208815346,39.27554696917606],[-76.58920094257415,39.27554826587393],[-76.58919985476295,39.27554959339986],[-76.58919882705848,39.27555094815892],[-76.5891978617734,39.27555233106002],[-76.58919695776966,39.27555373849614],[-76.5891961173651,39.27555517047531],[-76.58919534173948,39.27555662339867],[-76.58919463089798,39.27555809636544],[-76.5891939871689,39.27555958758224],[-76.58919341055741,39.27556109614834],[-76.5891929010844,39.2755626184607],[-76.58919245991403,39.27556415362267],[-76.5891920870515,39.27556570073354],[-76.58919178483548,39.27556725619837],[-76.58919155211753,39.27556881821164],[-76.5891913888976,39.27557038677333],[-76.58919129519657,39.27557195828048],[-76.58919127217858,39.27557353183639],[-76.58919131986454,39.27557510383807],[-76.58919143824917,39.27557667518625],[-76.58919162619968,39.27557824137318],[-76.58919188372127,39.27557980149807],[-76.58919221081918,39.27558135466023],[-76.58919260751425,39.27558289725661],[-76.58919307265278,39.27558442838245],[-76.58919360624529,39.27558594623618],[-76.58919420714838,39.27558744811162],[-76.5891948742085,39.27558893310392],[-76.58919560743603,39.27559039941158],[-76.58919640684137,39.27559184523307],[-76.58919726895823,39.2755932687548],[-76.58919819496124,39.27559466727853],[-76.58919918253248,39.2755960407962],[-76.5892002316877,39.27559738660553],[-76.5892013389605,39.27559870289291],[-76.5892025055151,39.27559998876161],[-76.58920372788516,39.2756012423979],[-76.58920500607586,39.27560246290118],[-76.58920633778513,39.27560364756101],[-76.58920772185913,39.27560479547262],[-76.58920915714951,39.27560590483045],[-76.58921064017953,39.27560697562231],[-76.58921216980062,39.27560800604272],[-76.58921374602846,39.27560899338934],[-76.58921536422224,39.27560993854681],[-76.58921702323867,39.27561083880877],[-76.58921872307774,39.27561169417526],[-76.5892204591142,39.2756125028285],[-76.58922223018918,39.27561326476449],[-76.58922403399532,39.2756139781736],[-76.58922586937888,39.2756146421511],[-76.58922773286832,39.27561525578399],[-76.58922962214584,39.27561581906425],[-76.58923422508965,39.27561888064857],[-76.58923689879023,39.27562067531545],[-76.58923957015217,39.27562247357718],[-76.5892422391861,39.2756242736322],[-76.5892449093842,39.27562607279049],[-76.58924758192116,39.2756278683538],[-76.58925026143778,39.27562965943765],[-76.58925294911906,39.27563144154234],[-76.5892556461343,39.27563321287042],[-76.58925835712442,39.2756349725374],[-76.58926108326916,39.27563671694426],[-76.58926382689674,39.27563844429769],[-76.5892665880072,39.27564015459765],[-76.58926936076428,39.27564185502987],[-76.58927214516271,39.2756435464951],[-76.58927493889513,39.27564522718369],[-76.58927774427414,39.27564689800455],[-76.58928056014605,39.27564855805281],[-76.58928338766978,39.27565020733257],[-76.5892862245379,39.27565184403428],[-76.58928907305783,39.27565346996746],[-76.58929193324005,39.27565508333061],[-76.5892948027666,39.2756566841157],[-76.58929768396065,39.27565827143005],[-76.58930057566326,39.27565984526955],[-76.58930348602844,39.27566139845669],[-76.58930641972837,39.27566292470235],[-76.58930937441923,39.27566442850225],[-76.58931234661375,39.27566591164566],[-76.58931533396287,39.27566737952904],[-76.5893183306564,39.27566883483422],[-76.58932133551453,39.27567028116028],[-76.58932434503454,39.27567172299875],[-76.58932735457033,39.27567316213486],[-76.58933036293165,39.27567460396911],[-76.58933337012897,39.27567604669995],[-76.58933644248091,39.27567744552103],[-76.58933957883896,39.27567879862683],[-76.58934275709524,39.27568012125302],[-76.5893459516441,39.27568143222616],[-76.58934913922918,39.27568274497637],[-76.58935229656802,39.2756840774376],[-76.58935539923488,39.27568544483743],[-76.58935842279867,39.27568686330419],[-76.5893613439822,39.27568834987106],[-76.5893641383597,39.27568991976568],[-76.58936678265914,39.27569158912042],[-76.5893691952406,39.27569344682565],[-76.58937113708836,39.27569574065679],[-76.58937262162306,39.27569835446219],[-76.58937368912859,39.27570113615338],[-76.58937438222232,39.27570393094781],[-76.58937471908028,39.27570660199278],[-76.58937449504586,39.27570926747372],[-76.58937380839717,39.2757119673679],[-76.58937285394592,39.2757146825396],[-76.58937183114486,39.27571739296853],[-76.58937093365219,39.27572007861405],[-76.58936992981582,39.27572271614728],[-76.58936885189772,39.27572533810847],[-76.58936803087734,39.27572802672368],[-76.58936813909587,39.27573075461824],[-76.58937054851637,39.27573275823623],[-76.58937367050659,39.27573419145893],[-76.58937695838303,39.27573559733779],[-76.58938032415716,39.27573635944196],[-76.58938366151844,39.27573602341426],[-76.58938699370378,39.27573538020757],[-76.58939032917641,39.27573456946996],[-76.58939366767574,39.2757336362388],[-76.58939701010527,39.27573262465476],[-76.58940035620427,39.27573157975512],[-76.5894037057121,39.27573054657726],[-76.58940706185018,39.27572956926994],[-76.5894104220765,39.27572868655708],[-76.58941378274578,39.2757277272807],[-76.58941714177476,39.27572665089904],[-76.5894205022701,39.27572552137724],[-76.58942386617949,39.2757244026765],[-76.58942723545594,39.27572335785712],[-76.58943061437026,39.27572244998763],[-76.58943400255238,39.27572174302102],[-76.58943740427833,39.27572129912497],[-76.58944082032654,39.27572118405813],[-76.58944425198635,39.27572137530584],[-76.58944769254747,39.27572163053885],[-76.58945114097597,39.27572192813523],[-76.58945459611827,39.27572226719015],[-76.5894580556721,39.27572264499324],[-76.58946152196053,39.27572306065196],[-76.58946499152255,39.27572351145182],[-76.58946846436325,39.2757239964921],[-76.58947193818048,39.27572451306249],[-76.5894754141384,39.27572506026624],[-76.58947889109373,39.27572563539709],[-76.58948236673388,39.27572623754621],[-76.58948584106923,39.27572686491202],[-76.58948931295654,39.27572751478839],[-76.58949278240105,39.27572818627441],[-76.58949624593639,39.2757288775565],[-76.58949970589602,39.27572958594056],[-76.58950315996212,39.27573031141841],[-76.58950660584301,39.27573104947832],[-76.58951004585123,39.27573180102904],[-76.58951347536676,39.27573256335218],[-76.58951689672307,39.27573333375356],[-76.58952030644865,39.27573411132033],[-76.58952370571286,39.27573489425506],[-76.58952709220824,39.2757356807481],[-76.58953046824226,39.27573647260904],[-76.58953383956771,39.27573727706416],[-76.58953720618986,39.27573809321272],[-76.58954056810349,39.27573892195542],[-76.58954392531903,39.27573976149073],[-76.58954728014906,39.27574061272763],[-76.58955063029144,39.27574147295565],[-76.58955397689462,39.2757423439804],[-76.58955731996903,39.27574322400037],[-76.58956065951469,39.27574411301557],[-76.58956399669573,39.27574501012931],[-76.58956733035318,39.2757459153375],[-76.5895706616565,39.27574682684275],[-76.58957399060031,39.27574774554572],[-76.58957731718995,39.27574867054577],[-76.58958064142536,39.27574960184287],[-76.58958396447589,39.27575053763951],[-76.58958728518269,39.27575147793171],[-76.58959060470455,39.27575242272352],[-76.58959392304679,39.27575337111416],[-76.58959724021453,39.27575432220289],[-76.58960055620261,39.27575527689046],[-76.58960387102668,39.27575623247463],[-76.58960718583522,39.27575719076097],[-76.58961049948493,39.27575814904319],[-76.58961381428323,39.27575910913079],[-76.58961712792788,39.27576006831355],[-76.58962044273156,39.27576102750025],[-76.58962375638684,39.27576198488132],[-76.58962707236523,39.27576294136962],[-76.58963038719521,39.2757638960523],[-76.58963370435877,39.27576484804076],[-76.5896370226969,39.27576579733092],[-76.58964034106123,39.27576674211726],[-76.5896436617643,39.27576768330862],[-76.58964698481131,39.27576862000423],[-76.58965030904336,39.27576955220011],[-76.58965363447092,39.27577047809466],[-76.58965696341691,39.27577139679533],[-76.5896582024325,39.27577157767395],[-76.58965944264867,39.27577175135071],[-76.58966068522437,39.27577191782955],[-76.58966192783649,39.27577207800315],[-76.58966317280817,39.27577223097885],[-76.58966442013934,39.27577237675666],[-76.58966566750694,39.27577251622924],[-76.5896669160752,39.2757726484999],[-76.58966816584399,39.2757727735686],[-76.5896694179723,39.27577289143942],[-76.58967067013708,39.27577300300498],[-76.58967192234354,39.27577310736458],[-76.58967317690431,39.27577320542704],[-76.58967443267088,39.27577329538676],[-76.5896756884739,39.27577337904133],[-76.5896769443186,39.27577345548985],[-76.58967820135865,39.2757735256372],[-76.58967945960455,39.27577358768185],[-76.58968071788686,39.27577364342126],[-76.58968197736459,39.27577369285947],[-76.5896832357303,39.27577373418691],[-76.58968449529137,39.27577376921315],[-76.58968575605822,39.27577379613673],[-76.58968701569744,39.27577381765173],[-76.58968827654242,39.27577383106405],[-76.58968953626497,39.27577383816711],[-76.5896907971933,39.2757738371675],[-76.589692056994,39.27577383075931],[-76.58969331800046,39.27577381624845],[-76.58969457788969,39.27577379452755],[-76.5896958378154,39.27577376650139],[-76.58969709662381,39.27577373126523],[-76.58969835662764,39.27577368972786],[-76.58969961551945,39.27577364007972],[-76.58970087328876,39.27577358412226],[-76.58970213109976,39.27577352095883],[-76.58970338895247,39.27577345058941],[-76.58970464568269,39.27577337391069],[-76.58970590129563,39.27577329002197],[-76.58970715579137,39.27577319892319],[-76.58970841032875,39.27577310061844],[-76.58970966258478,39.27577299600034],[-76.58971091488249,39.27577288417625],[-76.58971216606291,39.27577276514213],[-76.58971341612089,39.27577263979872],[-76.58971466506163,39.27577250724527],[-76.58971591288515,39.27577236748179],[-76.58971715959137,39.27577222050829],[-76.58973320874112,39.27574933679008],[-76.58975919712067,39.27570336605154],[-76.58979623647419,39.27563705049334],[-76.58979799703744,39.27563341755182],[-76.58979919683223,39.27563075998174],[-76.58980054092835,39.27562820019819],[-76.5898022024801,39.27562585680616],[-76.58980445629268,39.27562390641458],[-76.589807484797,39.27562246675987],[-76.58981081903758,39.27562126597485],[-76.58981401209418,39.27562002956678],[-76.58981715917953,39.27561872634149],[-76.58982032704704,39.27561743670016],[-76.58982353033036,39.27561623545738],[-76.58982678366311,39.27561519742778],[-76.5898301028327,39.27561439833071],[-76.58983354608954,39.27561398609503],[-76.58983709634684,39.27561390931747],[-76.58984068615065,39.2756140083271],[-76.58984424457013,39.27561412344075],[-76.58984780464323,39.27561415298742],[-76.58985139142332,39.27561417361963],[-76.58985495558534,39.27561429776063],[-76.58985844783027,39.27561463333024],[-76.58986181884865,39.27561529004942],[-76.5898650710417,39.27561625351449],[-76.5898682466977,39.27561742568965],[-76.58987137639616,39.2756187292159],[-76.58987448954716,39.27562008853175],[-76.58987761789949,39.27562142448068],[-76.58988079201696,39.27562266240594],[-76.58988402715804,39.27562376903256],[-76.58988727970367,39.27562487211676],[-76.58989055089611,39.2756259572507],[-76.58989384556882,39.27562699022216],[-76.58989716854488,39.27562793862044],[-76.5899005258114,39.27562876913814],[-76.58990392336085,39.27562944756716],[-76.5899073760143,39.27563001629517],[-76.58991088233691,39.27563052305764],[-76.58991442506995,39.27563094617602],[-76.58991798347279,39.27563126486027],[-76.58992153797927,39.27563145562218],[-76.58992506900239,39.27563149857654],[-76.58992855696565,39.27563137203665],[-76.58993198385222,39.27563098496235],[-76.58993535718821,39.27563023829581],[-76.58993869825879,39.27562925911914],[-76.58994202598456,39.27562818261319],[-76.58994536277332,39.27562714216938],[-76.58994872986342,39.27562627297661],[-76.58995214732933,39.27562571112044],[-76.58995562297112,39.275625510674],[-76.589959142306,39.27562557070107],[-76.58996268970266,39.27562578845986],[-76.58996624837614,39.27562606030383],[-76.58996980502329,39.27562628169777],[-76.58997334285911,39.2756263489951],[-76.5899768553726,39.27562618560814],[-76.58998037889921,39.27562592137384],[-76.58998390633978,39.27562558148882],[-76.58998742271172,39.27562515148856],[-76.58999090839163,39.27562461779314],[-76.58999434606348,39.27562396863208],[-76.58999772073955,39.27562319044164],[-76.59000103237811,39.27562229042776],[-76.59000431552273,39.27562130744395],[-76.59000757357718,39.27562025411285],[-76.59001080648427,39.27561914034262],[-76.59001401766342,39.27561797605357],[-76.5900172105237,39.27561677296762],[-76.59002038616678,39.27561554099703],[-76.59002354800691,39.27561429096285],[-76.59002669598163,39.27561303367408],[-76.59002983468497,39.27561177635287],[-76.59003296075991,39.27561049826986],[-76.59003607075569,39.27560919490925],[-76.59003916583129,39.27560786627506],[-76.59004224366362,39.27560651325999],[-76.59004530309902,39.27560513495914],[-76.59004834297332,39.27560373226933],[-76.59005136328135,39.27560230609124],[-76.59005436286942,39.27560085552008],[-76.59005733940926,39.27559938234932],[-76.59006031369879,39.27559789746065],[-76.59006328689176,39.27559640175893],[-76.59006624859958,39.27559488800169],[-76.5900691884337,39.2755933489467],[-76.59007209831296,39.27559177916102],[-76.59007496900774,39.27559017140641],[-76.59007778897058,39.27558851843639],[-76.5900805501203,39.27558681481823],[-76.59008324323767,39.27558505151207],[-76.59008586715339,39.27558323031538],[-76.59008843920948,39.2755813584948],[-76.59009096399467,39.27557944417324],[-76.59009344842609,39.27557749368017],[-76.59009590173326,39.27557551425395],[-76.59009832852074,39.27557351131524],[-76.59010073569509,39.27557149299503],[-76.59010313249632,39.27556946473018],[-76.59010552351847,39.27556743374278],[-76.59010791682711,39.27556540816791],[-76.59011031934966,39.27556339253358],[-76.59011271608271,39.27556137597823],[-76.59011507587621,39.27555933407245],[-76.59011740797024,39.27555727225321],[-76.59011972390704,39.27555519866754],[-76.59012203292154,39.27555311965307],[-76.59012434424322,39.27555104244815],[-76.59012666826077,39.27554897429513],[-76.59014034940098,39.2755104638933],[-76.59014160315489,39.27550869466222],[-76.59014362060775,39.27550853686229],[-76.59017634370544,39.27551865584362],[-76.59026460912142,39.27554594981117],[-76.59033725287534,39.27556670191687],[-76.59043320610107,39.27559411264757],[-76.59055059598113,39.27562778628667],[-76.59060282187238,39.27564270125043],[-76.59068962252064,39.27566440324696],[-76.59072940814151,39.27567435121932],[-76.59073659806971,39.27567175684867],[-76.59074484957885,39.27567478875101],[-76.59063209363218,39.27586837912092],[-76.59058280634953,39.27595072188689],[-76.5905853728389,39.2759572460651],[-76.59067973623844,39.27597367432738],[-76.59086313283319,39.27600498706185],[-76.59108104879088,39.27604089649645],[-76.59123508519016,39.27606596140816],[-76.59143708250275,39.27609901790377],[-76.59157808337784,39.27612247149008],[-76.59168556956872,39.27614016961345],[-76.59186886176245,39.27617023915626],[-76.59201751040425,39.27619557256182],[-76.59203071342269,39.27619410243589],[-76.59214203318636,39.27600461865789],[-76.59219467745118,39.27591539334823],[-76.59227662393667,39.27577759961371],[-76.59233680356257,39.27567359632392],[-76.59239843820082,39.27556765059664],[-76.59246584709929,39.27545089767635],[-76.59252966447224,39.27534016107363],[-76.59259136964923,39.27523656377557],[-76.59262837324474,39.27524924428483],[-76.59269517794341,39.27527275263908],[-76.59269958176027,39.27527418481399],[-76.59270284154563,39.27527524280713],[-76.59270610134142,39.27527629899863],[-76.59270936346026,39.2752773542974],[-76.59271262558441,39.27527840869529],[-76.59271588771897,39.27527946129157],[-76.59271915101772,39.27528051299112],[-76.59272241548581,39.27528156289301],[-76.59272567879509,39.27528261279084],[-76.59272894442742,39.27528366179587],[-76.59273220890614,39.27528470989605],[-76.59273547454383,39.27528575800014],[-76.59273874018685,39.27528680520338],[-76.59274200699397,39.27528785150981],[-76.59274527264235,39.27528889781211],[-76.59274853944966,39.27528994411839],[-76.59275180625711,39.27529099042452],[-76.5927550719109,39.27529203582582],[-76.59275833871855,39.27529308213185],[-76.59276160552625,39.27529412843769],[-76.5927648711752,39.27529517473949],[-76.59276813681903,39.27529622194194],[-76.59277140362191,39.27529726914825],[-76.59277466810704,39.2752983163465],[-76.59277793374082,39.27529936535012],[-76.59278119821582,39.2753004143497],[-76.59278446268573,39.27530146424989],[-76.59278772599167,39.27530251504673],[-76.59279098929255,39.27530356674425],[-76.5927942525883,39.27530461934236],[-76.59279751355604,39.27530567373387],[-76.59280077567763,39.27530672903008],[-76.59280403547633,39.27530778521891],[-76.59280729525958,39.27530884410983],[-76.59281055387889,39.27530990389744],[-76.59281381133421,39.27531096458171],[-76.59281706877411,39.27531202796808],[-76.59282032388599,39.27531309314785],[-76.59282357898763,39.27531416012899],[-76.5928268317612,39.27531522890353],[-76.59283008451935,39.27531630038021],[-76.59283333494945,39.27531737365022],[-76.59283658536935,39.27531844872168],[-76.59283983345078,39.27531952738797],[-76.59284308036315,39.27532060785169],[-76.59284632494227,39.27532169100952],[-76.59284956950599,39.27532277686949],[-76.59285281173646,39.27532386542356],[-76.59285605163376,39.27532495667177],[-76.59285929151046,39.27532605152284],[-76.592862527895,39.27532714906405],[-76.59286576310528,39.27532824930337],[-76.59286899713607,39.27532935314159],[-76.59287222882332,39.2753304614754],[-76.59287545817216,39.27533157340412],[-76.59287868402372,39.27533268892362],[-76.59288190869063,39.2753338089428],[-76.59288513101916,39.27533493255682],[-76.5928883521682,39.27533605976974],[-76.59289156981998,39.27533719057351],[-76.59289478629745,39.27533832407538],[-76.5928980015954,39.27533946117618],[-76.59290121455501,39.2753406018718],[-76.59290442518656,39.27534174436079],[-76.59290763579759,39.27534289045272],[-76.59291084407532,39.27534403923875],[-76.59291405118398,39.27534518982219],[-76.59291725595938,39.27534634309971],[-76.59292046071943,39.2753474990794],[-76.5929236631514,39.2753486568525],[-76.59292686557313,39.27534981642695],[-76.59293006682576,39.27535097779882],[-76.59293326575032,39.27535214096404],[-76.59293646582358,39.2753533059347],[-76.59293966357396,39.27535447179801],[-76.59294286131927,39.27535563856192],[-76.5929460578954,39.27535680712329],[-76.59294925446655,39.27535797658525],[-76.59295244987366,39.2753591469439],[-76.59295564527578,39.27536031820318],[-76.59295884067278,39.27536149036316],[-76.59296203606988,39.27536266252302],[-76.59296523030821,39.27536383467877],[-76.59296842454151,39.2753650077352],[-76.59297161993894,39.27536617989483],[-76.59297481417241,39.27536735295106],[-76.59297800841115,39.27536852510649],[-76.59298120380889,39.27536969726582],[-76.59298439921196,39.27537086852431],[-76.59298759462024,39.275372038882],[-76.59299079002862,39.2753732092396],[-76.59299177999607,39.27537357117455],[-76.59299398660123,39.27537437870039],[-76.59299718434318,39.27537554636356],[-76.59300038209038,39.27537671312594],[-76.59300358100175,39.27537787899146],[-76.59300677992356,39.27537904305546],[-76.59300998001476,39.27538020532185],[-76.5930131812701,39.27538136669144],[-76.59301638369995,39.27538252536272],[-76.59301958729914,39.27538368223641],[-76.59308778190541,39.27540575936257],[-76.59322235632922,39.27545820685702],[-76.59324109549212,39.27546500857617],[-76.59325390757546,39.27546964054153],[-76.59326672316818,39.27547426711305],[-76.59327953994213,39.27547889008422],[-76.5932923543793,39.27548351664893],[-76.59330516529495,39.27548815130694],[-76.59331796919685,39.27549279674843],[-76.59333076141327,39.27549745926257],[-76.59334354192352,39.27550214245235],[-76.59335630489699,39.27550685260299],[-76.59336905031816,39.27551159241665],[-76.5933817735204,39.27551636728187],[-76.59339447567305,39.27552117540112],[-76.59340716027343,39.27552601318343],[-76.59341983083961,39.27553087343491],[-76.593432488546,39.27553575345733],[-76.59344513806427,39.27554064696148],[-76.59345778289713,39.27554554945569],[-76.5934704242343,39.27555045553951],[-76.59348306673216,39.27555536162598],[-76.59349571274458,39.27556026141785],[-76.59350836461009,39.27556515132021],[-76.59352130052935,39.27556900992778],[-76.59353441928432,39.27556502710843],[-76.59354681642637,39.27555976000215],[-76.59355919289197,39.27555446039545],[-76.59357155325483,39.27554913911338],[-76.593583900971,39.27554379977093],[-76.59359623718908,39.27553844417366],[-76.59360856420628,39.27553307593252],[-76.5936208820122,39.27552769684902],[-76.59363319407333,39.27552230873675],[-76.59364550153309,39.27551691430188],[-76.59365780669377,39.2755115162547],[-76.593670110704,39.27550611640076],[-76.59368241586093,39.27550071835098],[-76.59369472331319,39.27549532391095],[-76.59370703535795,39.27548993669163],[-76.59371935430788,39.27548455760175],[-76.59373168130124,39.27547919024832],[-76.59374401749177,39.27547383553618],[-76.59375635942344,39.27546848985025],[-76.59376870711681,39.27546314958747],[-76.5937810559466,39.27545781293045],[-76.59379340362598,39.27545247446659],[-76.5938057501549,39.2754471341959],[-76.59381809783052,39.27544179572944],[-76.59383044780667,39.27543645997191],[-76.5938427977809,39.27543112421309],[-76.59385514774817,39.27542578935369],[-76.59386749655984,39.27542045358823],[-76.59387984537992,39.27541511601996],[-76.59389219305476,39.27540977574419],[-76.5939045395585,39.27540443726457],[-76.59391688837815,39.27539909879165],[-76.5939292360319,39.27539376121416],[-76.593941583689,39.27538842273461],[-76.5939539313442,39.27538308425376],[-76.59396627784895,39.27537774396614],[-76.59397862320321,39.27537240187164],[-76.59399096625334,39.27536705706564],[-76.59400330816324,39.27536170865133],[-76.59401564661007,39.27535635752145],[-76.59402798045033,39.27535100096976],[-76.59404030279757,39.27534562726252],[-76.59405261594905,39.27534024001072],[-76.59406492449907,39.27533484643637],[-76.59407723304206,39.27532945376147],[-76.59408954733647,39.27532406831128],[-76.59410187312535,39.27531869911329],[-76.59411421500823,39.27531335248872],[-76.59412657297993,39.27530802933835],[-76.59413894245641,39.27530272063867],[-76.59415131997122,39.27529742457617],[-76.59416370439637,39.27529213574237],[-76.59417609110663,39.27528685231976],[-76.59418847781501,39.27528156889578],[-76.5942008633781,39.27527628276431],[-76.59421324318606,39.27527098940549],[-76.59422561610054,39.27526568521233],[-76.59423797750141,39.27526036746669],[-76.59425032741439,39.27525503166473],[-76.59426265202534,39.27524966154501],[-76.59427493984303,39.27524423995329],[-76.59428720121012,39.2752387822383],[-76.59429944877662,39.27523330555837],[-76.59431169403376,39.27522782706757],[-76.59432311371278,39.27522424633778],[-76.5943308052424,39.27523341476648],[-76.59433856157479,39.27524260053296],[-76.5943460064731,39.27525193384947],[-76.59435338861738,39.27526129757477],[-76.59436075215939,39.27527067204449],[-76.59436814011242,39.27528003398729],[-76.5943755966385,39.27528936193736],[-76.59438316124334,39.27529863801585],[-76.59439082346087,39.27530786849187],[-76.59439853681641,39.27531707392253],[-76.59440625831718,39.27532627397623],[-76.59441394033992,39.27533548740455],[-76.59442091466519,39.2753450352745],[-76.59440858682446,39.27534995591792],[-76.59439589560041,39.27535478522866],[-76.59438319520123,39.27535959739178],[-76.59437049020076,39.27536440323235],[-76.59435778406022,39.27536920546448],[-76.59434507561045,39.27537400588576],[-76.59433236601555,39.27537880359942],[-76.59431965411656,39.27538359860145],[-76.59430693762137,39.27538838638009],[-76.5942942061978,39.27539314978514],[-76.59428147248042,39.27539790867705],[-76.5942687490833,39.27540268651931],[-76.59425605326649,39.27540750498988],[-76.59424340107952,39.27541239477021],[-76.59423079253772,39.27541735315812],[-76.5942181989209,39.27542233591688],[-76.59420559383689,39.27542729701629],[-76.59419294624756,39.27543219221167],[-76.59418016891584,39.27543687437694],[-76.59416719641254,39.27544123339256],[-76.5941659348542,39.27544945031377],[-76.59417260714574,39.27545911875789],[-76.59417937343947,39.27546876500728],[-76.59418613854004,39.27547841755744],[-76.5941928153697,39.27548810403133],[-76.59419933309579,39.27549784850473],[-76.594205755582,39.27550762958006],[-76.59421212114947,39.27551743387827],[-76.59421845651498,39.27552725068245],[-76.59422478839518,39.27553706927576],[-76.59423114351202,39.27554687804052],[-76.59423754974107,39.2755566662639],[-76.59424400940024,39.27556643395392],[-76.59425049578304,39.27557619002592],[-76.5942570042333,39.27558593806684],[-76.59426352895133,39.27559567895747],[-76.594270064127,39.27560541538001],[-76.59427660510941,39.27561515002066],[-76.59428315654952,39.27562488019323],[-76.5942898334474,39.27563455945518],[-76.5942937994121,39.2756432583282],[-76.59428089519206,39.27564803374543],[-76.59426843368453,39.27565321423319],[-76.5942559630018,39.27565837757338],[-76.59424348886627,39.27566353639653],[-76.59423101473406,39.27566869431755],[-76.5942185406,39.27567385223728],[-76.59420606531043,39.27567900925088],[-76.59419359117278,39.27568416716794],[-76.59418111703843,39.27568932418289],[-76.59416864289201,39.27569448299804],[-76.59415616874892,39.2756996409111],[-76.59414369575263,39.27570480062828],[-76.59413122275451,39.27570996034418],[-76.59411875090322,39.27571512186424],[-76.59410628020382,39.27572028428771],[-76.59409380949232,39.27572544851134],[-76.59408134108652,39.27573061454311],[-76.59406887267374,39.27573578147434],[-76.5940564065667,39.27574095021374],[-76.59404394160126,39.27574612165807],[-76.59403147892608,39.27575129761279],[-76.59401902775575,39.27575648801815],[-76.59400658577242,39.27576169286625],[-76.59399414837655,39.27576690583573],[-76.59398171444525,39.2757721206174],[-76.59396927705085,39.2757773326835],[-76.59395683506021,39.2757825375263],[-76.59394438387379,39.27578772882448],[-76.5939319211892,39.27579290386782],[-76.59391945390833,39.27579807168784],[-76.59390698202614,39.27580323318526],[-76.59389450785008,39.2758083901696],[-76.59388203021092,39.27581354443837],[-76.59386955143162,39.2758186950988],[-76.59385707149677,39.27582384485314],[-76.59384459156017,39.27582899460613],[-76.59383211162168,39.27583414435782],[-76.59381963398378,39.2758392968184],[-76.59380715748749,39.27584445198389],[-76.5937946832866,39.27584961075906],[-76.59378221253998,39.27585477314795],[-76.59376974638597,39.27585994275746],[-76.59375728712692,39.27586512229793],[-76.5937448324656,39.27587030815832],[-76.5937323800893,39.27587549942989],[-76.59371993001872,39.27588069250966],[-76.59370747995149,39.27588588468736],[-76.59369502757494,39.27589107505417],[-76.59368257175078,39.27589626000315],[-76.59367011248409,39.27590143863357],[-76.5936576451548,39.27590660822714],[-76.59364516749149,39.27591176066909],[-76.59363267373564,39.27591688963417],[-76.5936201707841,39.2759220050546],[-76.59360766437462,39.2759271168587],[-76.5935951637218,39.2759322349867],[-76.59358267339935,39.27593737026368],[-76.59357019802239,39.27594252630861],[-76.59355773183754,39.2759476958955],[-76.59354527254754,39.27595287541339],[-76.593532817845,39.27595806305263],[-76.59352036890428,39.27596325611511],[-76.59350792109478,39.27596845368402],[-76.59349547673963,39.27597365486665],[-76.59348303582838,39.27597886146441],[-76.59347059721769,39.27598407077113],[-76.59345815974862,39.27598928278277],[-76.59344572342631,39.27599449659862],[-76.59343328826625,39.27599970951638],[-76.5934208519454,39.27600492242878],[-76.59340841331525,39.27601013353038],[-76.593395973545,39.27601534102367],[-76.59338353147574,39.27602054490458],[-76.5933710847948,39.2760257442644],[-76.59335863467656,39.27603093640487],[-76.59334617995701,39.27603612222278],[-76.59333371258046,39.2760412917817],[-76.59332123372131,39.27604644238355],[-76.59330874450757,39.27605157943672],[-76.59329625071315,39.27605670656428],[-76.5932837522967,39.27606183097222],[-76.59327125619114,39.27606695628759],[-76.59325876352956,39.27607208701816],[-76.59324626856385,39.2760772150371],[-76.59323376899677,39.27608233673345],[-76.59322126828965,39.27608745482144],[-76.59320876757039,39.27609257470962],[-76.59319627145399,39.27609770001697],[-76.59318378107355,39.27610283525128],[-76.59317129989037,39.27610798312678],[-76.59315883250396,39.27611314996482],[-76.59314638694921,39.27611834930472],[-76.59313395747809,39.27612357301965],[-76.5931215360555,39.27612880757034],[-76.59310911348253,39.27613404031413],[-76.5930966794064,39.27613925770378],[-76.59308422809956,39.27614444800951],[-76.5930717629976,39.27614961844927],[-76.59305928984332,39.27615477805066],[-76.59304681093913,39.27615992952391],[-76.5930343285874,39.27616507557929],[-76.59302184508007,39.27617022072858],[-76.59300936272471,39.27617536678129],[-76.59299688151613,39.27618051463818],[-76.59299781651274,39.27618904721857],[-76.5930044654019,39.27619873906606],[-76.59301071122796,39.27620858985259],[-76.5930168885193,39.27621846832497],[-76.5930231250568,39.2762283226816],[-76.59302979487565,39.27623800379089],[-76.59304079823251,39.27623693307533],[-76.59305331852048,39.27623184299814],[-76.59306581581944,39.27622671951172],[-76.59307830737359,39.27622158699641],[-76.59309079663394,39.276216449968],[-76.59310328013407,39.27621130661294],[-76.59311575789974,39.27620615242753],[-76.59312822415706,39.27620098378868],[-76.59314065938516,39.276195769102],[-76.5931530601279,39.27619050475256],[-76.59316547925658,39.27618526748837],[-76.59317795355706,39.27618010968127],[-76.59319044395153,39.27617497444773],[-76.59320294123052,39.2761698509466],[-76.59321544541476,39.27616473557497],[-76.59322795073027,39.27615962470975],[-76.59324045720295,39.27615451384715],[-76.59325296253036,39.27614940027701],[-76.59326546209755,39.27614428038021],[-76.59327795592515,39.27613915055385],[-76.59329043939806,39.27613400717875],[-76.5933029067941,39.2761288376245],[-76.59331534658588,39.27612363104203],[-76.59332777144417,39.27611840098664],[-76.59334019170106,39.27611316460865],[-76.59335261885288,39.27610793816163],[-76.59336505980149,39.27610273067713],[-76.59337750073789,39.27609752499278],[-76.59338994396968,39.2760923229181],[-76.59340239411188,39.27608712807216],[-76.59341485113349,39.27608194585942],[-76.5934273208033,39.27607678080366],[-76.59343981230495,39.27607164824969],[-76.59345232104917,39.27606654007468],[-76.59346483208365,39.27606143641011],[-76.59347733277379,39.27605631739539],[-76.59348981047472,39.27605116497151],[-76.59350227323692,39.27604598997547],[-76.59351472794164,39.27604080504179],[-76.59352717805534,39.27603561198403],[-76.59353962587521,39.27603041441319],[-76.59355207253945,39.27602521593624],[-76.59356452035047,39.27602001926353],[-76.59357697275925,39.27601482891073],[-76.59358942975537,39.27600964667936],[-76.59360188560116,39.27600446264114],[-76.59361434375259,39.27599928041112],[-76.59362680650175,39.27599410450103],[-76.59363927613038,39.27598894122412],[-76.59365175840725,39.27598379510421],[-76.5936642613726,39.27597867877975],[-76.59367679191284,39.27597360398451],[-76.59368933279903,39.27596854363597],[-76.5937018656277,39.2759634733498],[-76.59371437432883,39.2759583660475],[-76.59372685314395,39.27595321540379],[-76.59373932392216,39.27594805121943],[-76.59375178664806,39.2759428761968],[-76.5937642424651,39.27593769304197],[-76.59377669484991,39.27593250176714],[-76.59378914262825,39.27592730507045],[-76.5938015869486,39.2759221047574],[-76.593814030134,39.27591689993533],[-76.59382646985114,39.27591169329835],[-76.59383889808564,39.27590646770435],[-76.59385131366295,39.27590122585146],[-76.59386372579789,39.27589597768002],[-76.5938761402281,39.27589073311824],[-76.59388856385567,39.27588550119766],[-76.59390100241839,39.27588029184651],[-76.59391346052104,39.27587511048535],[-76.59392593241027,39.27586994988808],[-76.59393841349683,39.27586480193202],[-76.59395090033487,39.2758596612006],[-76.59396338601226,39.27585452046382],[-76.59397586708823,39.2758493734045],[-76.59398834013241,39.27584421190385],[-76.59400079936582,39.27583903323959],[-76.59401325056228,39.27583384103472],[-76.5940256948498,39.2758286406978],[-76.59403813684864,39.27582343494707],[-76.59405057768674,39.27581822919099],[-76.5940630219791,39.27581302704858],[-76.59407547085894,39.2758078330276],[-76.5940879289361,39.27580265164782],[-76.59410039735926,39.27579748471469],[-76.59411287267734,39.27579232771244],[-76.59412535258292,39.27578717883165],[-76.59413783709142,39.27578203537],[-76.5941503238953,39.27577689551801],[-76.59416281184087,39.27577175837089],[-76.59417530093837,39.27576662212727],[-76.59418779003407,39.27576148588226],[-76.59420027683078,39.27575634602491],[-76.59421276132326,39.27575120345602],[-76.59422524121437,39.27574605456452],[-76.5942377176681,39.27574089845368],[-76.59425018720776,39.27573573511157],[-76.59426265331014,39.27573056455008],[-76.59427511481101,39.27572538766606],[-76.59428757285397,39.27572020716568],[-76.59430002860823,39.27571502125152],[-76.59431248090448,39.27570983172104],[-76.5943249309017,39.27570463857819],[-76.59433737859477,39.27569944272378],[-76.5943498251425,39.27569424416183],[-76.59436227053462,39.27568904469378],[-76.59437471478152,39.27568384251816],[-76.5943871555704,39.27567863672621],[-76.59439959521922,39.27567342732598],[-76.59441203140486,39.27566821521015],[-76.59442446759896,39.27566300129153],[-76.5944369026375,39.27565778646682],[-76.5944493365256,39.27565256983525],[-76.59446177041187,39.2756473532024],[-76.59447420429117,39.27564213746894],[-76.5944866393224,39.27563692263893],[-76.5944990755004,39.27563170961309],[-76.5945115128252,39.27562649839141],[-76.5945239536043,39.27562129078343],[-76.59453639552505,39.27561608588032],[-76.5945488397309,39.27561088638838],[-76.59456128855001,39.27560569051413],[-76.59457374080796,39.27560050095573],[-76.594586199961,39.27559532132827],[-76.59459866715761,39.27559015343719],[-76.59461114125956,39.27558499367546],[-76.59462361994393,39.2755798429359],[-76.59463610207229,39.27557469761149],[-76.59464858880878,39.27556955680546],[-76.59466107668692,39.27556441870434],[-76.59467356570671,39.27555928330812],[-76.5946860558836,39.2755541479146],[-76.59469854834563,39.27554901793217],[-76.59471104541576,39.27554389246818],[-76.5947235447762,39.27553877151455],[-76.59473604528344,39.27553365236511],[-76.59474854693752,39.27552853501978],[-76.59476104858976,39.27552341767316],[-76.59477355024025,39.27551830032515],[-76.59478605189916,39.27551318117435],[-76.59479855008983,39.27550806020868],[-76.59481104714558,39.275502934734],[-76.59482354074332,39.27549780564298],[-76.59483603089852,39.27549267023338],[-76.5948485152934,39.27548752849725],[-76.59486099739954,39.27548238134728],[-76.59487347605281,39.27547722968026],[-76.59488595124816,39.27547207439694],[-76.59489842529818,39.27546691640604],[-76.59491089820293,39.27546175570757],[-76.59492336880345,39.27545659229752],[-76.59493583824325,39.27545142888217],[-76.59494830769154,39.27544626366396],[-76.594960777138,39.27544109844446],[-76.5949732477364,39.27543593412835],[-76.59498571832276,39.27543077161238],[-76.59499819006099,39.27542560999985],[-76.59501066294094,39.27542045109218],[-76.59502313812148,39.27541529489348],[-76.59503561560257,39.27541014140363],[-76.59504809423045,39.27540498971798],[-76.59506057400519,39.27539983983642],[-76.59507305492671,39.27539469175908],[-76.59508553700019,39.27538954458512],[-76.59509801906162,39.2753843992113],[-76.59511050228008,39.27537925384018],[-76.5951229866454,39.27537411027318],[-76.59513547100376,39.2753689676056],[-76.59514795651407,39.2753638258415],[-76.59516044201747,39.27535868497669],[-76.59517292751389,39.27535354501134],[-76.59518541532117,39.27534840595345],[-76.59519790427527,39.27534326869964],[-76.59521039321729,39.27533813324602],[-76.59522288331122,39.27533299869582],[-76.5952353733983,39.275327865045],[-76.5952478646373,39.27532273229759],[-76.59526035587957,39.27531759864809],[-76.59527284712011,39.27531246499726],[-76.59528533719988,39.27530733134109],[-76.59529782728305,39.27530219678287],[-76.59531031621574,39.27529706041781],[-76.59532280399286,39.27529192314668],[-76.59533529177845,39.2752867840727],[-76.59534777610092,39.27528164228322],[-76.5953602592832,39.27527649688535],[-76.59537274131505,39.27527134968068],[-76.59538522103756,39.27526620066521],[-76.59539770076856,39.27526104984693],[-76.5954101793388,39.27525589902329],[-76.59542265790726,39.27525074819832],[-76.59543513762765,39.27524559827677],[-76.59544761849492,39.27524045015937],[-76.59546010050893,39.27523530384611],[-76.59547258482358,39.27523016024175],[-76.59548507143366,39.27522502024705],[-76.59549756033407,39.27521988476268],[-76.59551005383751,39.27521475469747],[-76.59552254963127,39.27520962914261],[-76.5955350488742,39.27520450810216],[-76.5955475504178,39.27519938977055],[-76.59556005310823,39.27519427324312],[-76.59557255579165,39.27518915761508],[-76.59558505962708,39.27518404289043],[-76.59559756230696,39.27517892725972],[-76.59561006383636,39.2751738098222],[-76.59562256306158,39.27516868967309],[-76.5956350611518,39.27516356501491],[-76.59564755462506,39.27515843673648],[-76.59566004580955,39.27515330304423],[-76.59567253238738,39.2751481639302],[-76.59568501666617,39.27514302120391],[-76.59569749979964,39.27513787577001],[-76.59570998063401,39.27513272672383],[-76.59572245915389,39.27512757676754],[-76.59573493768738,39.27512242410774],[-76.59574741506013,39.27511727144259],[-76.59575989127732,39.27511211787136],[-76.59577236865672,39.27510696340204],[-76.59578484602403,39.2751018107329],[-76.59579732454328,39.27509665896716],[-76.59580980420941,39.27509150900556],[-76.5958199988645,39.27508730779157],[-76.59582623925766,39.27508473596433],[-76.59583248081944,39.27508216233925],[-76.59583872237572,39.27507958961461],[-76.59584496277778,39.27507701598488],[-76.59585120317932,39.2750744423548],[-76.59585744473424,39.27507186962917],[-76.59586368513493,39.2750692959984],[-76.59586992669401,39.27506672237137],[-76.59587616708868,39.2750641496407],[-76.59588240864176,39.27506157691371],[-76.59588865019442,39.27505900418635],[-76.59589489174142,39.27505643235946],[-76.59590113444692,39.27505386053619],[-76.59590737598795,39.27505128960934],[-76.59591361868739,39.27504871868615],[-76.59591986253508,39.27504614956813],[-76.59592610638227,39.27504358044978],[-76.5959323513828,39.27504101223579],[-76.59593859637776,39.27503844492222],[-76.59594484136709,39.27503587850909],[-76.59595108866357,39.27503331390508],[-76.59595733595955,39.27503074930078],[-76.59596358324481,39.2750281864976],[-76.59596983168345,39.2750256245988],[-76.5959760812754,39.27502306360439],[-76.59598233086687,39.27502050260969],[-76.59598858045277,39.27501794251537],[-76.59599483119197,39.2750153833255],[-76.59600108193074,39.27501282413525],[-76.59600733266903,39.27501026494468],[-76.59601358340689,39.27500770575377],[-76.59601983413923,39.27500514746325],[-76.59602608487617,39.27500258827166],[-76.59603233561268,39.27500002907976],[-76.59603858518985,39.27499746988351],[-76.59604483593057,39.27499490979018],[-76.59605108551197,39.27499234969256],[-76.59605733509804,39.2749897886938],[-76.59606358352477,39.27498722769075],[-76.59606983196126,39.27498466488589],[-76.59607607924359,39.27498210117591],[-76.59608232653055,39.27497953656493],[-76.59608857266329,39.27497697104883],[-76.59609481764183,39.27497440462763],[-76.59610106263013,39.27497183640463],[-76.5961072961213,39.27496925192802],[-76.59611350777237,39.27496663584918],[-76.59611971022359,39.27496400712769],[-76.5961259195713,39.27496138833801],[-76.59613219327349,39.27495886525035],[-76.59613635746435,39.27495577913673],[-76.59613298348245,39.27495095564922],[-76.59612970826899,39.27494608656225],[-76.59612642258485,39.27494122464529],[-76.59612313225013,39.27493636541456],[-76.59611984307993,39.27493150528694],[-76.59611655390505,39.27492664605993],[-76.59611326589464,39.27492178593609],[-76.59610997904873,39.2749169249154],[-76.59610669219816,39.27491206479534],[-76.5961034053531,39.27490720377446],[-76.5961001196623,39.27490234365823],[-76.59609683397709,39.27489748264109],[-76.59609354829745,39.27489262072316],[-76.59609026377201,39.27488775970983],[-76.5960869815751,39.27488289690288],[-76.59608370402448,39.2748780323103],[-76.59608042879208,39.2748731677256],[-76.5960771547293,39.27486830134328],[-76.59607388298994,39.27486343406808],[-76.59607061240983,39.27485856679674],[-76.59606734183023,39.27485369952534],[-76.5960640712511,39.27484883225383],[-76.59606079950834,39.27484396587898],[-76.5960575266072,39.27483909950006],[-76.59605425138352,39.2748342340138],[-76.59605097267337,39.27482937031698],[-76.59604769164075,39.27482450751288],[-76.59604440596783,39.27481964559342],[-76.59604111680332,39.2748147863642],[-76.59603782183447,39.27480992891642],[-76.59603452221516,39.27480507415484],[-76.59603121562748,39.27480022207149],[-76.59602790207151,39.27479537266635],[-76.59602458038319,39.27479052683621],[-76.59602122733332,39.2747856935088],[-76.59601783246106,39.27478087805272],[-76.59601440738606,39.27477607510337],[-76.59601096140533,39.27477128018887],[-76.59600750728707,39.27476648975015],[-76.59600405432822,39.27476169931528],[-76.59600061298957,39.27475690351564],[-76.59599719488057,39.27475209878818],[-76.59599417175079,39.27474712787699],[-76.59599864850425,39.27474369424723],[-76.5960049153153,39.2747411576311],[-76.59601120634471,39.27473864181548],[-76.59601746051467,39.27473608623914],[-76.59602370777189,39.27473352343251],[-76.59602995504397,39.27473095792332],[-76.59603620000298,39.27472839150509],[-76.59604244496661,39.27472582418578],[-76.59604868993497,39.27472325596541],[-76.59605493373887,39.27472068864144],[-76.59606117870626,39.27471812042036],[-76.59606742366302,39.27471555400047],[-76.59607366977819,39.27471298758419],[-76.5960799170364,39.27471042387386],[-76.59608616544799,39.27470786106792],[-76.59609241615637,39.27470530187257],[-76.59609866801296,39.27470274448241],[-76.59610492101254,39.27470018979808],[-76.59611117516555,39.2746976360182],[-76.59611743047179,39.27469508314269],[-76.59612368462383,39.27469252936211],[-76.59612993992405,39.27468997738671],[-76.59613619407013,39.27468742450623],[-76.59614244936945,39.27468487253012],[-76.59614870582726,39.27468232055769],[-76.59615496112056,39.27467976948164],[-76.59616121757233,39.27467721840927],[-76.59616747401849,39.27467466823733],[-76.59617373046935,39.27467211716431],[-76.59617998690953,39.27466956789244],[-76.59618624335438,39.27466701771949],[-76.59619250095253,39.27466446845091],[-76.5961987573913,39.27466191917801],[-76.59620501498856,39.27465936990879],[-76.59621127258025,39.27465682153996],[-76.59621753017147,39.27465427317081],[-76.59622378892118,39.27465172480532],[-76.59623004651152,39.27464917643545],[-76.59623630525515,39.27464662897003],[-76.59624256283945,39.27464408150029],[-76.5962488215822,39.27464153403419],[-76.59625508031941,39.27463898746853],[-76.59626133906124,39.27463644000175],[-76.5962675977975,39.27463389343538],[-76.59627385653337,39.27463134686865],[-76.59628011642761,39.27462880030561],[-76.5962863751574,39.274626254639],[-76.59629263504567,39.27462370897607],[-76.59629889723075,39.27462116692366],[-76.59630516171782,39.2746186275812],[-76.59631142734794,39.27461609094462],[-76.5963176941263,39.27461355611317],[-76.59632396205791,39.27461102218611],[-76.59633022998399,39.27460848915947],[-76.59633649905827,39.27460595793796],[-76.5963427681372,39.27460342581541],[-76.59634903721572,39.27460089369249],[-76.59635530629376,39.27459836156922],[-76.59636157422274,39.27459582764012],[-76.59636784099746,39.27459329280599],[-76.59637410662823,39.27459075526532],[-76.59638036994592,39.27458821681557],[-76.59638663212472,39.2745856747585],[-76.5963928920007,39.27458312999087],[-76.5963991495789,39.27458058161201],[-76.59640540486447,39.27457802872108],[-76.59641165669339,39.27457547221488],[-76.59641790507597,39.27457291029192],[-76.59642415000704,39.27457034385296],[-76.59643037310822,39.27456774401035],[-76.59643656862606,39.27456510353819],[-76.59644274459077,39.27456243687632],[-76.59644891251455,39.27455975757581],[-76.59645508043786,39.27455707827497],[-76.59646125754986,39.27455441341763],[-76.59646745188597,39.27455177654287],[-76.59647343063678,39.27454914433165],[-76.59647108464468,39.2745441109039],[-76.5964679127834,39.27453920434875],[-76.59646467477857,39.27453431287929],[-76.5964613949362,39.27452944198351],[-76.59645810111077,39.27452458455109],[-76.59645479799417,39.27451973068974],[-76.59645148674524,39.27451488040336],[-76.59644816852803,39.27451003279524],[-76.5964448456655,39.27450518697258],[-76.59644151932159,39.27450034203868],[-76.59643818948612,39.27449549979491],[-76.59643485849219,39.27449065754707],[-76.59643152633983,39.27448581529515],[-76.59642819534679,39.27448097304711],[-76.59642486667715,39.27447612990619],[-76.59642153684902,39.27447128676121],[-76.5964182035345,39.27446644540568],[-76.59641486557456,39.27446160583556],[-76.59641152645106,39.27445676716212],[-76.59640818501028,39.27445192848064],[-76.59640484356478,39.27444709069976],[-76.59640150328379,39.27444225202208],[-76.59639816532612,39.27443741245148],[-76.59639482969183,39.27443257198795],[-76.59639149870381,39.27442772973883],[-76.59638817352096,39.27442288570798],[-76.59638485415351,39.27441803809399],[-76.59638154291416,39.27441318780549],[-76.59637823864905,39.27440833393781],[-76.59637494018908,39.27440347828846],[-76.59637164637542,39.27439862085344],[-76.59636835721311,39.274393760732],[-76.59636507153307,39.27438889972167],[-76.59636178933528,39.27438403782246],[-76.59635850946593,39.27437917412963],[-76.59635523075596,39.27437431044066],[-76.59635195204639,39.2743694467516],[-76.59634867450133,39.27436458216567],[-76.59634539695158,39.27435971848038],[-76.59634211708453,39.27435485478706],[-76.596338836059,39.27434999108962],[-76.5963355527059,39.27434512918558],[-76.59633226586634,39.27434026907104],[-76.59632897902719,39.27433540895642],[-76.59632569219367,39.27433054794089],[-76.59632240536061,39.27432568692529],[-76.59631911968174,39.27432082681432],[-76.59631583284953,39.27431596579853],[-76.59631254601268,39.27431110568342],[-76.59630925918137,39.27430624466741],[-76.59630597002761,39.27430138454413],[-76.59630268086921,39.27429652532145],[-76.59629939055237,39.27429166609475],[-76.59629609907194,39.27428680776463],[-76.59629280643308,39.27428194943047],[-76.59628951030781,39.27427709288579],[-76.59628621302399,39.27427223633697],[-76.59628291341782,39.27426738068085],[-76.59627961380693,39.2742625259254],[-76.59627631652454,39.27425766937628],[-76.59627301808366,39.27425281282311],[-76.59626971732037,39.2742479571626],[-76.59626641307067,39.27424310329154],[-76.59626310301152,39.27423825210274],[-76.59625978482016,39.2742334044889],[-76.59625645733762,39.27422856044611],[-76.59625311823592,39.27422372176784],[-76.59624976635102,39.27421888935085],[-76.59624625180709,39.2742141293366],[-76.59624250850152,39.27420944960467],[-76.59624697479546,39.27420642037263],[-76.59625330350991,39.27420399294838],[-76.59625962654223,39.27420154568743],[-76.5962659438719,39.27419908219277],[-76.59627225546822,39.27419660786885],[-76.5962785624747,39.27419412542194],[-76.5962848637017,39.27419164025255],[-76.59629116261559,39.27418915417409],[-76.59629746038549,39.27418666538909],[-76.59630375585257,39.27418417389356],[-76.59631005016547,39.27418168149291],[-76.59631634449325,39.27417918638969],[-76.59632263651308,39.27417668947667],[-76.59632892737874,39.27417419165856],[-76.5963352182542,39.27417169203866],[-76.59634150681654,39.27416919150971],[-76.59634779654755,39.27416668918288],[-76.59635408396551,39.27416418594699],[-76.59636037138303,39.2741616827108],[-76.5963666588103,39.27415917767276],[-76.5963729450783,39.27415667263038],[-76.59637923135094,39.27415416668693],[-76.59638551532075,39.27415165803295],[-76.59639179929525,39.27414914847785],[-76.5963980809618,39.27414663711296],[-76.59640436263811,39.27414412394628],[-76.59641064316023,39.27414160987449],[-76.59641692369215,39.27413909400086],[-76.59642320191095,39.27413657721824],[-76.59642948013447,39.27413405953444],[-76.59643575720376,39.27413154094564],[-76.59644203428286,39.27412902055499],[-76.59644830219801,39.27412648121648],[-76.59644915875097,39.27412218120493],[-76.59644597173694,39.27411729351252],[-76.59644275109521,39.27411240930751],[-76.59643950957859,39.274107527733],[-76.59643625763246,39.27410264612254],[-76.59643300685077,39.27409776361523],[-76.59642976651996,39.27409287754068],[-76.5964265493981,39.27408798614115],[-76.59642335084956,39.27408308940078],[-76.59642016042395,39.27407819088673],[-76.59641697581367,39.27407328878946],[-76.59641379468556,39.27406838580326],[-76.59641061703974,39.27406348192824],[-76.59640744055832,39.27405857715632],[-76.59640426407738,39.27405367238433],[-76.59640108527398,39.27404876850505],[-76.59639790298921,39.27404386551444],[-76.59639471605402,39.27403896521002],[-76.59639152215054,39.27403406758391],[-76.59638832127885,39.27402917263602],[-76.59638510995201,39.27402428215594],[-76.59638188701628,39.27401939523897],[-76.5963785990246,39.27401453602201],[-76.59637523785975,39.27400970537798],[-76.59637185578417,39.2740048836696],[-76.59636850390665,39.27400005035497],[-76.5963652380022,39.27399517950359],[-76.59636223002633,39.27399019424058],[-76.59636449514608,39.27398621523883],[-76.59665895999669,39.27387887562117],[-76.59666476372145,39.27388031515788],[-76.59666810322237,39.27388121207822],[-76.59667145678361,39.27388208202377],[-76.59667481154474,39.27388294476725],[-76.59667818276073,39.27388376703265],[-76.59668155985824,39.2738845740052],[-76.59668491816795,39.27388542414983],[-76.59668823418966,39.27388637413411],[-76.59669151603558,39.27388742398583],[-76.59669478375996,39.27388851162112],[-76.59669805625308,39.2738895758528],[-76.59670135589721,39.27389055280338],[-76.59670470158262,39.27389138128574],[-76.59670812009155,39.27389203887271],[-76.5967116291265,39.27389267335052],[-76.59671519642814,39.27389325128013],[-76.59671877948648,39.27389370766036],[-76.59672234043721,39.27389397570474],[-76.5967258367702,39.27389399041215],[-76.59672922830345,39.27389368498797],[-76.59673260766041,39.27389307506328],[-76.59673605091778,39.27389223296056],[-76.59673947110812,39.27389116738871],[-76.59674278123842,39.27388989156071],[-76.59674589550534,39.27388841328867],[-76.59674872459807,39.27388674577756],[-76.59675118270816,39.27388489774039],[-76.59675329314126,39.27388284673808],[-76.59675514972588,39.27388060029891],[-76.59675680554535,39.27387819823884],[-76.59675831251903,39.27387568127057],[-76.59675972257139,39.27387308920593],[-76.59676108645266,39.27387046455528],[-76.59676245609754,39.27386784532897],[-76.5967638822562,39.27386527403725],[-76.59676541456098,39.27386278598026],[-76.59676701156334,39.27386033327525],[-76.5967686328612,39.27385788785973],[-76.59677025531782,39.2738554424482],[-76.59677185811428,39.273852989763],[-76.59677341810368,39.27385052432012],[-76.59677491214934,39.27384803883398],[-76.59677632058606,39.2738455269317],[-76.59677762490254,39.27384298314519],[-76.5967788771972,39.27384041666092],[-76.59678008903329,39.27383783202244],[-76.59678125460621,39.27383523101133],[-76.59678236811634,39.27383261450846],[-76.59678342260025,39.27382998429151],[-76.59678440993547,39.273827342134],[-76.59678532548142,39.27382468892088],[-76.5967861622746,39.27382202642973],[-76.59678690294199,39.27381935279937],[-76.59678741555537,39.27381663514936],[-76.59678772442575,39.27381387806698],[-76.59678791405422,39.27381109895688],[-76.59678806661381,39.2738083170172],[-76.59678826427763,39.27380555144613],[-76.59678859154673,39.27380281964833],[-76.59678912942499,39.27380014261946],[-76.5967899797762,39.27379754142687],[-76.59679153826706,39.27379513542905],[-76.59679363134687,39.27379287448813],[-76.596795850591,39.27379064100322],[-76.5967977829495,39.27378831555616],[-76.59679914150632,39.27378581158924],[-76.59680025260005,39.27378321219246],[-76.59680119483494,39.27378055276542],[-76.59680198663537,39.27377785408903],[-76.59680264874348,39.27377513695215],[-76.59680319958365,39.27377242213556],[-76.59680353147728,39.2737696921551],[-76.59680359240276,39.27376692431304],[-76.5968035305688,39.27376414163732],[-76.59680349303038,39.27376136625111],[-76.59680362914484,39.27375862298783],[-76.59680408713115,39.27375593307389],[-76.59680495728462,39.27375331393379],[-76.59680607981286,39.27375074159912],[-76.59680738525468,39.27374820322066],[-76.59680881920411,39.27374568780246],[-76.5968103284141,39.27374318435257],[-76.59681185963251,39.27374068277972],[-76.59681336193509,39.27373817119917],[-76.59681477859307,39.27373563950778],[-76.59681605868225,39.27373307582076],[-76.59681724965019,39.27373049201097],[-76.59681842210159,39.27372790363373],[-76.59681957951813,39.27372530980029],[-76.59682072304854,39.27372271231612],[-76.59682185501053,39.27372011118915],[-76.5968229765579,39.27371750732418],[-76.59682409000325,39.27371490162979],[-76.59682519651058,39.27371229320931],[-76.59682629954634,39.27370968387611],[-76.59682739910534,39.27370707453096],[-76.59682849867454,39.27370446338434],[-76.59682959939228,39.27370185404313],[-76.59683070242767,39.27369924470989],[-76.59683181009342,39.27369663629333],[-76.59683292353812,39.27369403059888],[-76.59683404624354,39.27369142673771],[-76.59683517936341,39.27368882561458],[-76.59683632405158,39.27368622813419],[-76.59683748378457,39.2736836343085],[-76.59683865855219,39.273681045939],[-76.5968398506773,39.27367846213291],[-76.59684106247259,39.27367588379888],[-76.59684229509689,39.27367331094099],[-76.59684354854001,39.27367074536062],[-76.59684480661849,39.27366817979615],[-76.59684606469182,39.27366561513242],[-76.59684732508278,39.27366305047665],[-76.59684858431478,39.27366048581688],[-76.59684984586447,39.27365792116504],[-76.59685110856782,39.2736553574179],[-76.59685237127108,39.27365279367077],[-76.59685363397423,39.2736502299236],[-76.59685489898992,39.27364766708509],[-76.59685616401069,39.27364510334591],[-76.59685743018504,39.27364254051135],[-76.59685869635936,39.27363997767683],[-76.59685996368732,39.27363741574699],[-76.59686123217925,39.27363485292035],[-76.59686250182476,39.27363229099845],[-76.59686377147024,39.27362972907653],[-76.59686504227449,39.27362716715857],[-76.59686631307352,39.27362460614135],[-76.59686758503645,39.27362204422733],[-76.59686885815309,39.27361948321801],[-76.59687013126957,39.27361692220869],[-76.59687140553976,39.2736143621041],[-76.59687267981498,39.27361180109871],[-76.59687395524385,39.27360924099807],[-76.59687523183155,39.27360668090133],[-76.5968765084191,39.2736041208046],[-76.59687778616546,39.27360156071187],[-76.59687906390661,39.27359900151985],[-76.59688034280654,39.27359644233175],[-76.59688162286525,39.27359388314765],[-76.59688290292391,39.27359132396357],[-76.59688418298244,39.27358876477942],[-76.59688546419466,39.27358620650001],[-76.59688674656563,39.27358364822453],[-76.59688802893653,39.27358108994906],[-76.5968893124662,39.27357853167753],[-76.59689059599577,39.273575973406],[-76.59689188067905,39.27357341603919],[-76.59689316536729,39.27357085777161],[-76.59689445120925,39.27356830040871],[-76.59689573705111,39.2735657430458],[-76.59689702404663,39.27356318658763],[-76.59689831104717,39.27356062922865],[-76.59689959920141,39.27355807277444],[-76.59690088736062,39.27355551541944],[-76.59690217551467,39.27355295896516],[-76.59690346482749,39.27355040251486],[-76.59690475529396,39.27354784696927],[-76.59690604576546,39.27354529052292],[-76.59690733623175,39.27354273497726],[-76.5969086278568,39.27354017943556],[-76.59690991948182,39.27353762389387],[-76.59691121226557,39.27353506835613],[-76.59691250504925,39.2735325128184],[-76.59691379782772,39.27352995818142],[-76.59691509177009,39.27352740264762],[-76.59691638570725,39.27352484801453],[-76.59691768080317,39.27352229338543],[-76.596918975899,39.27351973875629],[-76.59692027099473,39.27351718412717],[-76.59692156724417,39.27351463040271],[-76.59692286349863,39.27351207577756],[-76.59692415974783,39.27350952205306],[-76.59692545715585,39.2735069683326],[-76.59692675456377,39.27350441461205],[-76.59692805313047,39.27350186089551],[-76.5969293505382,39.27349930717494],[-76.59693064909959,39.27349675435909],[-76.59693194882492,39.27349420064647],[-76.59693324738612,39.27349164783062],[-76.59693454710609,39.2734890950187],[-76.59693584798488,39.27348654221077],[-76.59693714770471,39.27348398939878],[-76.59693844858326,39.27348143659079],[-76.59693974946177,39.2734788837828],[-76.59694105149391,39.27347633187949],[-76.59694235237224,39.27347377907148],[-76.5969436544042,39.27347122716815],[-76.59694495759494,39.27346867526881],[-76.59694625962672,39.27346612336543],[-76.59694756281732,39.27346357146603],[-76.59694886600778,39.27346101956661],[-76.5969501691982,39.27345846766717],[-76.59695147238334,39.2734559166685],[-76.59695277673242,39.273453364773],[-76.59695408107625,39.27345081377823],[-76.59695538542003,39.27344826278348],[-76.59695668976883,39.27344571088793],[-76.59695799411237,39.27344315989315],[-76.59695929961472,39.2734406089023],[-76.59696060395812,39.27343805790742],[-76.59696191177808,39.27343550692452],[-76.59696322540762,39.27343295325922],[-76.5969645506207,39.27343040053441],[-76.59696589203746,39.27342785146826],[-76.59696725427808,39.27342530877895],[-76.59696864196268,39.27342277518453],[-76.59697005855766,39.2734202524985],[-76.59697150867288,39.27341774524045],[-76.59697299810281,39.27341525343032],[-76.59697453029331,39.27341278248452],[-76.59697610987477,39.27341033331968],[-76.5969777414673,39.27340790865395],[-76.5969794331575,39.2734055130189],[-76.59698125084259,39.27340317456442],[-76.59698319799404,39.27340089420311],[-76.59698524571166,39.27339865922508],[-76.5969873674129,39.27339645692847],[-76.59698953419247,39.27339427550413],[-76.59699171830894,39.27339210224607],[-76.59699389318497,39.27338992355167],[-76.59699602991522,39.27338772761183],[-76.59699810421967,39.27338550443478],[-76.59700014617269,39.27338326403215],[-76.59700218466429,39.2733810209153],[-76.59706232320698,39.27326940715781],[-76.59717607057094,39.27329868308376],[-76.59718202126612,39.27330076534493],[-76.5971852435295,39.27330189604763],[-76.59718842373097,39.27330308695728],[-76.59719152681798,39.27330438839643],[-76.59719449549439,39.2733058902452],[-76.59719739640406,39.27330748914414],[-76.59720032775643,39.27330903320071],[-76.59720338775085,39.27331037232389],[-76.59720661263445,39.27331144988985],[-76.59720991941643,39.27331239082029],[-76.5972132811769,39.27331324186263],[-76.59721667333406,39.27331404616933],[-76.59722006781922,39.27331484868239],[-76.59722343773807,39.27331569164555],[-76.59722677134333,39.27331660294221],[-76.59723009088367,39.27331754211429],[-76.59723340338907,39.2733184956744],[-76.59723671588438,39.27331945103588],[-76.59724003190746,39.2733203974017],[-76.59724335732436,39.27332132218132],[-76.59724669683698,39.27332221368086],[-76.59725005512172,39.2733230647102],[-76.59725342865597,39.27332388336425],[-76.59725680924575,39.27332468402709],[-76.59726018984588,39.27332548288831],[-76.59726356691324,39.27332629164572],[-76.59726693108475,39.27332712648101],[-76.59727027881236,39.27332799999273],[-76.59727359954846,39.27332893286233],[-76.59727688965808,39.27332995300099],[-76.59728015740156,39.27333103431497],[-76.59728341223388,39.273332144409],[-76.59728666476904,39.27333325089206],[-76.59728992562096,39.27333432137289],[-76.59729320540849,39.27333532255968],[-76.59729651359197,39.27333622115647],[-76.59729987619806,39.27333692357297],[-76.59730339296473,39.27333700859301],[-76.59730698062363,39.27333685425247],[-76.59731051441558,39.27333700238422],[-76.59731401331193,39.27333737738909],[-76.59731750956345,39.27333781003374],[-76.59732099151495,39.27333831198816],[-76.59732444750095,39.27333889672389],[-76.59732666544875,39.27333933669549],[-76.59732786587655,39.27333957410933],[-76.597331252477,39.27334033695846],[-76.59733461787535,39.27334116008608],[-76.59733796910656,39.27334202910408],[-76.59734130854471,39.27334293411209],[-76.59734463859432,39.27334385980549],[-76.59734796511631,39.27334479449432],[-76.59735129165884,39.27334572558006],[-76.59735462292896,39.27334664046816],[-76.59735796819255,39.27334754009109],[-76.5973613169533,39.27334843612289],[-76.59736466102237,39.2733493420469],[-76.59736799104196,39.27335027314408],[-76.59737129651569,39.27335124108843],[-76.59737456809599,39.27335225935931],[-76.59737779642495,39.27335334323769],[-76.59738093335494,39.27335460425341],[-76.59738391590307,39.27335611335101],[-76.59738671429636,39.27335780737491],[-76.59738931486353,39.27335964484298],[-76.59739176866654,39.27336161331967],[-76.59739414440597,39.27336365539142],[-76.59739650616753,39.27336571002592],[-76.59739892148788,39.27336772070644],[-76.59740134933618,39.27336977016279],[-76.59740445524349,39.27337098423175],[-76.59740773160887,39.27337197639594],[-76.5974110651936,39.27337289219113],[-76.59741442443715,39.27337377924963],[-76.59741777893798,39.27337468520793],[-76.59742109482303,39.27337565678953],[-76.59742434053685,39.27337674072622],[-76.59742754180982,39.27337789567095],[-76.59743073487876,39.27337906680121],[-76.59743391859001,39.27338025321233],[-76.5974370952765,39.27338145221004],[-76.59744026726634,39.27338266200072],[-76.5974434322519,39.27338388077495],[-76.59744659488406,39.27338510584637],[-76.59744975516794,39.27338633631427],[-76.59745291311879,39.27338756947638],[-76.59745606990072,39.2733888044359],[-76.5974592278518,39.27339003759784],[-76.59746238814124,39.27339126716467],[-76.59746555077406,39.27339249223559],[-76.59746871808846,39.27339370921556],[-76.59747189008445,39.27339491810464],[-76.59747506794137,39.27339611530376],[-76.59747825282321,39.27339729991615],[-76.59748144706298,39.27339846924754],[-76.59748468342093,39.27339956846346],[-76.59748800399967,39.27340053015089],[-76.5974913573694,39.27340143159936],[-76.59749469208991,39.27340235189983],[-76.59749795208047,39.27340337102832],[-76.59750093826813,39.27340485221165],[-76.59750290955378,39.27340709917033],[-76.59750430437198,39.27340963780283],[-76.59750568642222,39.27341217999465],[-76.59750705224836,39.27341472213082],[-76.59750860048803,39.27341718202173],[-76.59751057048253,39.27341945239569],[-76.59751277055767,39.27342161366479],[-76.5975149776884,39.2734237569427],[-76.59751720575055,39.2734258876816],[-76.59751945939497,39.27342800319507],[-76.59752173630898,39.27343010257449],[-76.59752403532855,39.2734321867166],[-76.59752637852866,39.27343424578866],[-76.59752882415944,39.27343622594434],[-76.59753137223633,39.27343812448137],[-76.59753395637642,39.2734399988213],[-76.5975365824252,39.27344183997645],[-76.59753925275156,39.27344363894731],[-76.59754197552371,39.27344538585343],[-76.5975447297389,39.27344710584426],[-76.59754750724413,39.27344880609803],[-76.5975503138746,39.27345047942858],[-76.59755315548611,39.27345211504676],[-76.59755603560626,39.27345370395703],[-76.59755896007547,39.27345523807257],[-76.59756192419688,39.27345672818636],[-76.59756491630512,39.27345818776998],[-76.59756793640022,39.27345961682342],[-76.59757097984662,39.27346101533073],[-76.59757404547014,39.27346238599021],[-76.59757712980439,39.27346372698855],[-76.59758023167512,39.27346504102389],[-76.59758336044531,39.27346631191457],[-76.59758655580798,39.27346748845303],[-76.59758979439647,39.27346860388747],[-76.59759304468623,39.27346969954505],[-76.59759627979318,39.27347081586816],[-76.59759946588521,39.27347199237448],[-76.59760257607324,39.27347327040709],[-76.59760569727283,39.27347465026385],[-76.59760882479749,39.27347614093632],[-76.597611692805,39.27347782258253],[-76.59761403427878,39.27347977805886],[-76.59761573649125,39.27348206282663],[-76.59761703391321,39.27348461103244],[-76.5976180082381,39.27348732207061],[-76.59761873534967,39.27349009801762],[-76.59761929230568,39.27349283825185],[-76.59761940672945,39.2734955490462],[-76.59761897271883,39.27349830840448],[-76.59761855029694,39.27350106780247],[-76.5976186750944,39.27350378854078],[-76.59761925864848,39.27350653877455],[-76.59762024123404,39.27350922371874],[-76.59762170604058,39.27351168332221],[-76.59762372738432,39.27351389171736],[-76.59762615995623,39.27351592767365],[-76.59762878215561,39.27351783547011],[-76.59763142572059,39.27351965416395],[-76.5976341822126,39.27352138226733],[-76.59763705056476,39.27352300356285],[-76.59764000999385,39.27352450446774],[-76.59764306557913,39.27352601110657],[-76.5976462204398,39.27352758654352],[-76.59764942518392,39.27352894867],[-76.59765263045027,39.27352980997275],[-76.5976557841467,39.27352975141751],[-76.59765888712657,39.2735284181058],[-76.59766203612024,39.27352673635546],[-76.59766533780292,39.27352571809131],[-76.59766894860832,39.27352516207774],[-76.59767266793381,39.27352488387143],[-76.5976761745454,39.2735251264794],[-76.59767918439032,39.27352611592136],[-76.59768180556591,39.27352779581958],[-76.59768420763635,39.27352989742599],[-76.59768652887622,39.27353215188558],[-76.597688909888,39.27353428854961],[-76.59769132402262,39.27353630642604],[-76.59769368573212,39.27353837276419],[-76.59769611852656,39.27354036998685],[-76.59769874708996,39.27354217781862],[-76.59770157249962,39.27354381067534],[-76.59770447233791,39.27354539784794],[-76.59770744207671,39.27354692040478],[-76.59771047718765,39.27354835941435],[-76.59771357429628,39.27354969684973],[-76.59771673003827,39.27355091288252],[-76.59771995501211,39.2735519778238],[-76.59772327480492,39.27355287554748],[-76.59772666598386,39.27355365101153],[-76.59773009931136,39.27355435095555],[-76.59773354786266,39.27355502302786],[-76.59773698355403,39.27355571487291],[-76.59774038533673,39.27355645974684],[-76.59774378478131,39.27355720821572],[-76.59774718542062,39.27355795038325],[-76.59775058841348,39.27355868625337],[-76.59775399259084,39.27355941762366],[-76.59775739911152,39.27356014449798],[-76.5977608068014,39.27356086957472],[-76.59776422386959,39.2735615757674],[-76.59776769707454,39.27356219207576],[-76.59777119953746,39.27356275804133],[-76.59777469616523,39.27356333119296],[-76.59777815302354,39.27356396906334],[-76.59778153387583,39.27356472647509],[-76.59778480593644,39.27356566276647],[-76.5977879457778,39.27356682199467],[-76.59779100807137,39.27356816831641],[-76.59779399182158,39.27356967290373],[-76.5977968844136,39.2735713122936],[-76.59779967323767,39.27357306212214],[-76.5978023468276,39.27357490073174],[-76.59780489141464,39.27357680375459],[-76.59780726396713,39.27357879806633],[-76.59780942702328,39.27358095019527],[-76.59781144574055,39.27358321442555],[-76.5978133876452,39.27358553604174],[-76.59781532139708,39.27358786483609],[-76.59781731450707,39.2735901487954],[-76.59781943565025,39.27359233500971],[-76.59782196279906,39.27359424788091],[-76.5978249674925,39.27359573812688],[-76.59782820643775,39.27359679230386],[-76.59783159262196,39.27359763170207],[-76.59781258722862,39.27363290183606],[-76.59782432240094,39.27363717021249],[-76.59784366245094,39.27364447588557],[-76.59791243358629,39.27366867169665],[-76.59793318525941,39.2736751480791],[-76.59806994710308,39.27372365488436],[-76.59813760635038,39.27374735223736],[-76.59829498613931,39.27380411457499],[-76.59829158472762,39.27380841850658],[-76.5984240876517,39.2738576183304],[-76.59850892380621,39.27388941352464],[-76.5985823020769,39.27377246580247],[-76.59869567215239,39.27359146616473],[-76.59886229192416,39.27332353079311],[-76.5988880374596,39.2732951221165],[-76.59894880547307,39.27317534951865],[-76.598976903048,39.27313143227196],[-76.599025298815,39.27305527657359],[-76.59904873500825,39.27306410661735],[-76.59900806216213,39.27313943476768],[-76.59922795086142,39.27321712326517],[-76.59943834750598,39.27328886274949],[-76.59948645252612,39.27330048633783],[-76.59957335029728,39.27331808813815],[-76.59970674841722,39.27336554479217],[-76.59971282428491,39.2733678444358],[-76.59971599983022,39.27336904697091],[-76.59971917538068,39.27337024860513],[-76.59972235092107,39.27337145204079],[-76.59972552529764,39.27337265637316],[-76.59972869850529,39.27337386250299],[-76.59973187054906,39.27337506952952],[-76.59973505660108,39.27337625858841],[-76.59973824966234,39.2733774377627],[-76.59974143804753,39.27337862412708],[-76.59974460774352,39.27337983654985],[-76.599747747065,39.27338109210579],[-76.59975084433682,39.27338240606802],[-76.59975392636048,39.27338375240579],[-76.59975699433045,39.27338512481774],[-76.59976003661727,39.27338653047044],[-76.59976304273526,39.27338797923647],[-76.59976600338287,39.27338947648882],[-76.59976890576172,39.27339103119152],[-76.599771721881,39.27339267477588],[-76.59977443422547,39.27339443060224],[-76.59977707661595,39.27339626095361],[-76.59977968171931,39.27339812720848],[-76.59978228103351,39.27339999254281],[-76.59978486176018,39.27340186592065],[-76.59978739008865,39.27340378325732],[-76.59978990676241,39.27340571226418],[-76.59979245022765,39.27340761704163],[-76.59979505423901,39.27340947158248],[-76.59979770017834,39.27341128933478],[-76.59980037056589,39.2734130873535],[-76.59980304911146,39.27341487729304],[-76.59980572182721,39.27341667351803],[-76.59980836307567,39.27341850116251],[-76.59981099266432,39.27342034137793],[-76.59981365373585,39.27342214747149],[-76.59981639291448,39.27342387186148],[-76.59981929409628,39.2734254337649],[-76.59982234687185,39.27342682954328],[-76.59982547570084,39.27342809677128],[-76.59982875418171,39.2734291312109],[-76.59973471690182,39.27357309171309],[-76.59967985801059,39.27365608678882],[-76.59961180242524,39.27378593247737],[-76.59951358538648,39.2739616881551],[-76.59941538459975,39.27413714744711],[-76.5994514265653,39.27415133040923],[-76.5994575703398,39.27414120064199],[-76.59945903681789,39.27413721885768],[-76.59945998468618,39.27413457113911],[-76.59946093023655,39.27413192341262],[-76.59946189198588,39.27412928024518],[-76.59946288497932,39.27412664529116],[-76.59946392657473,39.27412402311358],[-76.59946503180709,39.27412141916832],[-76.59946620648103,39.27411883167361],[-76.59946742975693,39.27411625695537],[-76.59946869585052,39.27411369319228],[-76.5994700012902,39.27411113947181],[-76.59947133912773,39.27410859486941],[-76.59947270471741,39.27410606117088],[-76.59947409460294,39.27410353476125],[-76.59947550066195,39.27410101741442],[-76.59947695764068,39.27409851285194],[-76.59947855230806,39.27409604749184],[-76.599480286809,39.27409365196749],[-76.59948225620775,39.27409132029768],[-76.5994852585171,39.27409016314456],[-76.59948877567926,39.27409039042123],[-76.59949232894922,39.27409099614214],[-76.5994957179622,39.27409175263138],[-76.59949906445202,39.27409265129638],[-76.5995024015081,39.27409357875353],[-76.59950576570174,39.27409442073053],[-76.59950918776372,39.27409507104176],[-76.59951264398767,39.27409562328606],[-76.59951611550088,39.2740961359487],[-76.59951959883178,39.27409660811712],[-76.5995230928062,39.27409704248963],[-76.59952659394241,39.27409743995508],[-76.5995300999176,39.2740978014063],[-76.59953360609107,39.27409812772829],[-76.59953711599039,39.27409840992538],[-76.59954063444924,39.27409861288427],[-76.59954416136605,39.27409875461984],[-76.59954769428573,39.27409885944444],[-76.59955122844053,39.27409895076163],[-76.59955476138563,39.27409905108225],[-76.59955829181476,39.27409918652403],[-76.59956181859941,39.27409935167852],[-76.59956535010102,39.27409950243679],[-76.5995688827615,39.27409965319885],[-76.59957241301275,39.27409982016635],[-76.59957593726624,39.27410002314393],[-76.5995794519487,39.27410027923388],[-76.59958295231795,39.27410060733612],[-76.59958644417345,39.27410100656967],[-76.59958993570875,39.27410146255021],[-76.59959341762229,39.27410198065065],[-76.5995968782642,39.27410257164037],[-76.59960030833287,39.27410324089234],[-76.59960369618362,39.27410399827524],[-76.59960703008517,39.27410486897049],[-76.59961030992582,39.27410587279459],[-76.59961355216379,39.27410696836842],[-76.59961677326227,39.27410811341214],[-76.59961999199236,39.27410926745537],[-76.59962322366843,39.27411038641279],[-76.59962647412574,39.27411146309822],[-76.59962972226027,39.27411254067639],[-76.59963297038475,39.27411362005598],[-76.59963621967836,39.27411469763792],[-76.59963947015126,39.27411577162071],[-76.59964272413649,39.27411683931005],[-76.59964598396202,39.27411789891233],[-76.5996492461512,39.27411895041568],[-76.59965251067854,39.27411999832385],[-76.59965577753897,39.27412104353758],[-76.59965904557365,39.27412208605296],[-76.59966231361861,39.27412312676672],[-76.59966558399161,39.2741241656868],[-76.5996688543799,39.2741252019046],[-76.59967212709626,39.27412623632862],[-76.59967539981777,39.27412726985184],[-76.59967867254451,39.27412830247423],[-76.59968194644036,39.27412933329899],[-76.59968522268457,39.27413035872706],[-76.59968850243602,39.27413137876242],[-76.59969178453079,39.27413239430181],[-76.59969506896371,39.27413340624603],[-76.59969835223781,39.27413441818626],[-76.59970163667097,39.27413543013031],[-76.59970491877114,39.27413644476862],[-76.59970819852825,39.27413746390263],[-76.59971147477322,39.27413848932999],[-76.59971474749588,39.27413952285212],[-76.59971801553228,39.27414056536581],[-76.59972127655448,39.27414161866471],[-76.59972453872554,39.27414267376894],[-76.59972780088647,39.27414373067462],[-76.59973106070943,39.27414479117526],[-76.59973431817912,39.27414585797315],[-76.59973756979353,39.27414693556018],[-76.5997408132298,39.27414802482919],[-76.59974404731372,39.27414912847849],[-76.59974727086104,39.27415025100783],[-76.59975048038498,39.27415139420688],[-76.59975367471648,39.27415255987323],[-76.59975684914377,39.27415376150221],[-76.59975999897036,39.2741550098871],[-76.59976312071441,39.27415630591671],[-76.59976620976082,39.27415764597229],[-76.59976926378668,39.27415903094671],[-76.59977227933572,39.27416045722509],[-76.5997752377437,39.27416194636223],[-76.5997780958169,39.27416355405836],[-76.59978088855053,39.27416523989834],[-76.59978366144603,39.27416694999128],[-76.59978645883577,39.27416863224391],[-76.59977812301908,39.27418729020651],[-76.60014645378703,39.2742986983877],[-76.60015251348608,39.27428722615905],[-76.60015475551474,39.27428792557919],[-76.60014716343592,39.27430438643129],[-76.60057422043216,39.27444368809309],[-76.6007002133125,39.27425539366829],[-76.60070469372404,39.27425579442782],[-76.60070820833724,39.27425606489599],[-76.60071173678293,39.27425614264734],[-76.6007152578128,39.2742558906935],[-76.60071877030141,39.27425550900036],[-76.60072227045788,39.27425505340247],[-76.60072569062241,39.27425439666199],[-76.60072904253084,39.27425351269666],[-76.60073239625709,39.27425251163795],[-76.60073562928315,39.27425133542045],[-76.60073861448623,39.27424992055852],[-76.60074113637566,39.27424804923528],[-76.60074320785627,39.27424569357093],[-76.6007452720388,39.27424339913374],[-76.60074786338835,39.27424174693233],[-76.60075167832899,39.2742415752438],[-76.60075429255079,39.2742430667892],[-76.60075621309655,39.27424549727585],[-76.60075782241161,39.27424804200236],[-76.60075915010174,39.27425058847385],[-76.60076020496142,39.27425322139209],[-76.60076114031381,39.27425587912551],[-76.60076209522543,39.27425856214682],[-76.60076289707766,39.27426125996082],[-76.60076336050913,39.27426396112826],[-76.60076341114306,39.2742667023277],[-76.6007633299965,39.27426958990389],[-76.60076299271009,39.27427248111318],[-76.6007622217678,39.27427520600845],[-76.60076083849975,39.27427759373776],[-76.60075872058056,39.27427955200723],[-76.60075600863954,39.27428121550891],[-76.60075291995476,39.27428269037078],[-76.60074966831255,39.2742840854113],[-76.60074646984222,39.27428550495311],[-76.60074354065803,39.27428705602114],[-76.60074174136994,39.27428923245781],[-76.60074209156237,39.27429208006506],[-76.6007427566653,39.2742947774143],[-76.60074354809737,39.27429747339144],[-76.60074438009566,39.27430016860572],[-76.60074516805624,39.27430286367035],[-76.6007458250421,39.27430556189274],[-76.60074626761316,39.2743082629893],[-76.60074632516941,39.27431100961685],[-76.60074570494584,39.27431392958954],[-76.60074476240386,39.27431687458868],[-76.60074393083828,39.27431966323201],[-76.60074363890828,39.27432211412142],[-76.60074502386846,39.27432375101525],[-76.60074930997146,39.27432346563054],[-76.600752224556,39.27432203791749],[-76.60075459677525,39.27431999133685],[-76.60075677807835,39.27431768468693],[-76.60075889643124,39.27431544357881],[-76.60076089213942,39.27431316692393],[-76.60076280587042,39.27431083594446],[-76.60076472650898,39.27430851309534],[-76.60076673716071,39.27430625810948],[-76.6007689267205,39.27430413164035],[-76.60077135308205,39.27430214289235],[-76.6007739840601,39.27430024491629],[-76.60077678802504,39.27429849795591],[-76.60077973449097,39.27429696496109],[-76.60078280109948,39.27429570620708],[-76.60078618244766,39.27429473946977],[-76.60078977025714,39.27429415355691],[-76.60079332049227,39.27429406653993],[-76.60079666933927,39.27429455082402],[-76.60079995560307,39.27429544744553],[-76.60080320327228,39.27429661236371],[-76.60080642124466,39.27429790599023],[-76.60080961492102,39.27429919232799],[-76.60081278583526,39.27430040472556],[-76.60081592520622,39.27430166205407],[-76.60081904119176,39.27430295623437],[-76.60082214431306,39.27430427108847],[-76.60082524510149,39.27430558863682],[-76.60082834940724,39.27430689899093],[-76.60083143264531,39.27430824620473],[-76.60083449949694,39.27430962218725],[-76.60083756518469,39.27431099906649],[-76.60084064376223,39.274312350768],[-76.60084375392886,39.27431364943172],[-76.60084690857428,39.27431486987992],[-76.60085012163049,39.2743160076562],[-76.60085338089034,39.27431717261238],[-76.6008566772905,39.27431832778627],[-76.60086000537605,39.27431941280811],[-76.60086336087109,39.27432036370899],[-76.60086673832075,39.27432112011922],[-76.60087013113136,39.27432161806205],[-76.60087356730368,39.27432182430437],[-76.6008771275749,39.27432180757858],[-76.6008807527808,39.27432157849292],[-76.60088437222404,39.27432113770778],[-76.60088791288439,39.27432048677663],[-76.60089130175174,39.27431962545138],[-76.6008944669598,39.27431855619012],[-76.60089734881362,39.27431717790436],[-76.60089998818852,39.27431543488554],[-76.60090245976885,39.2743134417847],[-76.6009048440435,39.27431131147088],[-76.60090721570202,39.27430915769424],[-76.60090965407944,39.27430709241923],[-76.6009122051362,39.27430518606167],[-76.60091478730044,39.27430331223724],[-76.60091738214648,39.27430145016579],[-76.60091998738183,39.27429959533573],[-76.60092259838113,39.27429774592979],[-76.60092521168791,39.27429589833314],[-76.6009278330713,39.27429405706923],[-76.60093050177147,39.27429225109586],[-76.60093318662501,39.27429045778803],[-76.60093584608417,39.27428864637854],[-76.60093843860119,39.27428678610028],[-76.60094091571045,39.27428483985711],[-76.60094307572597,39.27428260789491],[-76.60094508453983,39.27428026642632],[-76.60094726816223,39.27427816425435],[-76.6009502089597,39.27427681409129],[-76.6009538666513,39.27427678418276],[-76.60095737054533,39.27427751850084],[-76.60096058503291,39.27427881391284],[-76.60096288248633,39.27428078718729],[-76.60096476444738,39.27428327969211],[-76.60096600794569,39.27428596098989],[-76.60096623803408,39.2742885289513],[-76.60096502653525,39.27429107940422],[-76.60096310720331,39.27429358331476],[-76.60096123619108,39.27429594416786],[-76.60095917571358,39.27429819898775],[-76.60095702621423,39.27430041567298],[-76.60095496115672,39.27430266056884],[-76.60095315750138,39.2743049964292],[-76.60095174476032,39.27430747413703],[-76.60095057250082,39.27431005354761],[-76.60094958064803,39.27431270112846],[-76.60094874036152,39.27431539336173],[-76.60094802395447,39.2743181076343],[-76.60094740259667,39.27432081862671],[-76.6009468762677,39.274323529942],[-76.60094655940394,39.27432629421331],[-76.60094653222208,39.27432906667499],[-76.60094686919511,39.27433179353415],[-76.60094751933181,39.27433447461759],[-76.60094828876838,39.27433716781625],[-76.60094918573355,39.27433985244063],[-76.60095022077385,39.27434250780881],[-76.60095140792268,39.27434511144945],[-76.60095275773162,39.27434764178005],[-76.60095429697672,39.27435007727318],[-76.60095610332894,39.27435241368887],[-76.60095812801873,39.27435466797602],[-76.6009603013911,39.27435686151628],[-76.60096255496002,39.27435901389379],[-76.60096481792684,39.27436114378403],[-76.60096707057016,39.27436325472313],[-76.6009694162592,39.27436530652781],[-76.60097183522696,39.27436731084089],[-76.60097429839983,39.27436928557881],[-76.60097677440167,39.27437124594808],[-76.60097925620826,39.27437320453549],[-76.60098180550922,39.27437511381006],[-76.6009844794955,39.27437690190494],[-76.6009873388092,39.27437850146875],[-76.60099032865327,39.27437997086502],[-76.60099332314824,39.27438143757477],[-76.60100092394171,39.27438462057684],[-76.60104653128643,39.27439151322509],[-76.60111915098639,39.27443523528819],[-76.60136888343092,39.27441431978092],[-76.60143039212662,39.27443341216057],[-76.60140000087065,39.27445505618628],[-76.60144261137995,39.27447143347065],[-76.60167445374765,39.27456053996031],[-76.60173682649288,39.27458615934699],[-76.60189128916093,39.27464998064877],[-76.60201591703951,39.27469063927662],[-76.60181812449724,39.27487237642533],[-76.60170446952047,39.27497635994898],[-76.601707932331,39.27497863981714],[-76.60167669443004,39.2750065629726],[-76.60169064470979,39.27508928966111],[-76.60169684865252,39.27509358572879],[-76.60272674976724,39.27499075029721],[-76.60272674976723,39.27499075029726],[-76.60295977938807,39.27496748156128],[-76.6033771946691,39.27492552007094],[-76.60338328815857,39.27493673715113],[-76.60340558281666,39.27507183523341],[-76.60340615676054,39.27507531051938],[-76.60344147412462,39.27529442992964],[-76.60345881822012,39.27540254148509],[-76.60349076058561,39.27539964617637],[-76.60349375745703,39.27541895426999],[-76.6034666097653,39.27542160814861],[-76.60348008545165,39.27550586520501],[-76.60363192582523,39.27549017927766],[-76.60402326437617,39.27545070817373],[-76.6043550021465,39.27541748538565],[-76.60441459944039,39.2757846953392],[-76.60430955307169,39.27579454354662],[-76.60433229548629,39.27593450524581],[-76.60426260647583,39.27594235662107],[-76.60427034052216,39.27599006733548],[-76.60257093700581,39.27615854971022],[-76.60256418198075,39.2761537113672],[-76.60202060671406,39.27620790370685],[-76.60167422520053,39.2762422133185],[-76.60166835536384,39.27624279512212],[-76.60166485109167,39.2762431417418],[-76.60166134682451,39.27624348746064],[-76.60165784255229,39.27624383408013],[-76.60165433828485,39.27624417979878],[-76.6016508340176,39.2762445255173],[-76.60164732975026,39.27624487123568],[-76.60164382548295,39.27624521695399],[-76.60164032121538,39.27624556267229],[-76.60163681694294,39.27624590929109],[-76.60163331267552,39.27624625500909],[-76.60162980839794,39.2762466025285],[-76.60162630528431,39.276246949151],[-76.60162280100651,39.27624729667016],[-76.60161929672371,39.27624764508997],[-76.60161579244097,39.27624799350969],[-76.60161228930679,39.27624834373474],[-76.6016087861728,39.27624869395966],[-76.60160528187475,39.27624904508136],[-76.60160177873053,39.27624939710758],[-76.60159827558105,39.27624975003442],[-76.6015947724267,39.2762501038619],[-76.60159127043609,39.27625045679251],[-76.60158776728167,39.27625081061979],[-76.601584264127,39.27625116444701],[-76.60158076097244,39.27625151827408],[-76.6015772578179,39.27625187210113],[-76.60157375465806,39.27625222682874],[-76.60157025266241,39.27625258065943],[-76.60156674950757,39.27625293448609],[-76.60156324634778,39.27625328921338],[-76.60155974319306,39.27625364303987],[-76.60155624119201,39.27625399777089],[-76.60155273803217,39.27625435249791],[-76.60154923487208,39.2762547072248],[-76.60154573171718,39.27625506105088],[-76.6015422297162,39.27625541578151],[-76.60153872655096,39.2762557714088],[-76.60153522339093,39.27625612613526],[-76.60153172138958,39.27625648086558],[-76.60152821822949,39.27625683559184],[-76.60152471506431,39.27625719121879],[-76.60152121306291,39.27625754594877],[-76.6015177098976,39.27625790157555],[-76.60151420673212,39.27625825720205],[-76.60151070473081,39.27625861193172],[-76.60150720156525,39.2762589675581],[-76.60150369955876,39.27625932318833],[-76.60150019639319,39.27625967881456],[-76.60149669322767,39.27626003444058],[-76.60149319121608,39.2762603909713],[-76.60148968805035,39.27626074659711],[-76.60148618604369,39.27626110222681],[-76.60148268287281,39.27626145875321],[-76.60147918086614,39.27626181438271],[-76.60147567769519,39.27626217090887],[-76.6014721756884,39.27626252653819],[-76.60146867251738,39.27626288306415],[-76.6014651705055,39.27626323959397],[-76.60146166733465,39.27626359611973],[-76.60145816532248,39.2762639526494],[-76.60145466215148,39.27626430917494],[-76.60145116013926,39.27626466570432],[-76.60144765812721,39.27626502223366],[-76.60144415495596,39.27626537875886],[-76.60144065294378,39.276265735288],[-76.60143714976739,39.2762660927138],[-76.60143364775519,39.27626644924265],[-76.60143252757409,39.27626656344155],[-76.60143014573771,39.27626680667215],[-76.60142664256642,39.27626716319686],[-76.60142314054907,39.27626752062623],[-76.60141963853147,39.27626787805543],[-76.60141613535487,39.27626823548061],[-76.60141263333735,39.2762685929096],[-76.60140913131984,39.27626895033846],[-76.60140562814314,39.2762693077633],[-76.60140212612552,39.276269665192],[-76.6013986241077,39.27627002262057],[-76.60139512209007,39.27627038004904],[-76.60139161890815,39.27627073837423],[-76.60138811689039,39.27627109580248],[-76.60138461486737,39.27627145413141],[-76.60138111284454,39.27627181246021],[-76.60137761082144,39.27627217078887],[-76.60137410763951,39.27627252911356],[-76.6013706056113,39.27627288834282],[-76.60136710358832,39.27627324667115],[-76.60136360156002,39.27627360590014],[-76.6013600995317,39.27627396512909],[-76.6013565975035,39.27627432435797],[-76.6013530954753,39.27627468358668],[-76.60134959344181,39.27627504371598],[-76.60134609140827,39.27627540384525],[-76.60134258937994,39.27627576307367],[-76.60133908734635,39.27627612320271],[-76.60133558531291,39.27627648333164],[-76.60133208443308,39.27627684436517],[-76.60132858239959,39.27627720449386],[-76.60132508036078,39.27627756552327],[-76.601321578327,39.27627792565177],[-76.60131807628828,39.27627828668097],[-76.60131457540834,39.27627864771396],[-76.60131107336449,39.27627900964362],[-76.6013075713255,39.27627937067248],[-76.60130406928162,39.27627973260199],[-76.60130056840153,39.27628009363453],[-76.60129706635739,39.27628045556384],[-76.60129356546726,39.27628081839767],[-76.60129006342304,39.27628118032679],[-76.60128656137894,39.2762815422557],[-76.60128306048854,39.27628190508928],[-76.60127955843936,39.27628226791877],[-76.6012760575539,39.27628262985137],[-76.60127255549938,39.27628299358142],[-76.60126905460905,39.27628335641455],[-76.60126555371842,39.27628371924754],[-76.60126205165872,39.27628408387805],[-76.6012585518918,39.27628445302006],[-76.60125505210941,39.27628482486413],[-76.60125155230678,39.27628520031114],[-76.6012480536529,39.27628557756352],[-76.60124455498888,39.27628595661719],[-76.60124105631468,39.27628633747229],[-76.60123755879438,39.27628671923195],[-76.60123406011502,39.27628710098758],[-76.60123055788289,39.27628749624254],[-76.60122727804124,39.27628853269588],[-76.60122417387397,39.27628986159311],[-76.6012214441794,39.27629157909035],[-76.6012189864108,39.27629357854915],[-76.60121669614918,39.2762956740577],[-76.60121464494365,39.27629791990473],[-76.60121305506956,39.27630035918089],[-76.60121198103182,39.27630298576584],[-76.60121123807602,39.2763056792307],[-76.60121119954736,39.27630841021715],[-76.6012115944202,39.27631114898043],[-76.60121201022464,39.27631387520405],[-76.60121243530548,39.27631660055844],[-76.60121286850381,39.27631932503962],[-76.6012133074968,39.2763220495405],[-76.6012137488077,39.2763247740492],[-76.60121419128266,39.27632749766107],[-76.60121463375259,39.27633022217369],[-76.60121507158692,39.27633294667057],[-76.60121550478544,39.27633567115181],[-76.6012159310255,39.27633839651002],[-76.60121635030693,39.27634112274547],[-76.6012167661065,39.27634384986983],[-76.6012171784345,39.27634657608159],[-76.6012175884396,39.27634930318631],[-76.60121799728594,39.27635203028703],[-76.60121840497312,39.27635475738382],[-76.60121881150165,39.2763574844767],[-76.60121921687099,39.27636021156564],[-76.60121962223555,39.27636293955532],[-76.60122002760522,39.27636566664422],[-76.60122043413381,39.27636839373707],[-76.60122084066228,39.27637112082987],[-76.60122124950887,39.27637384793057],[-76.60122165603228,39.27637657592416],[-76.60122264049969,39.27637916355924],[-76.6012243875036,39.27638155381364],[-76.60122652736271,39.27638374272981],[-76.60122893715042,39.27638574430267],[-76.60123166588542,39.27638749744665],[-76.60123462549495,39.27638900096191],[-76.60123783509847,39.27639015222636],[-76.60124120180019,39.27639098335188],[-76.60124468673808,39.276391397825],[-76.6012482070564,39.27639170342557],[-76.60143192473583,39.27637387844791],[-76.60167350171814,39.27635043948984],[-76.60168841002633,39.27634947128405],[-76.60180551479058,39.27633826020701],[-76.60223538195967,39.27629576128088],[-76.60318025083673,39.27620161176967],[-76.60353009616772,39.27616676354859],[-76.60428654275775,39.27609100931552],[-76.60429376608013,39.2761392830847],[-76.60436621157697,39.27613386583297],[-76.60441234756864,39.27641225105613],[-76.60435895532274,39.27641592288401],[-76.60434323191652,39.2764298452737],[-76.60434649938011,39.27645201237475],[-76.60434356353237,39.27645205472929],[-76.60434611890551,39.27646890762566],[-76.60443898019523,39.27648811753123],[-76.6043781109172,39.27655487622057],[-76.60431055481723,39.27656253934336],[-76.60431947665826,39.27661673324278],[-76.60439877244278,39.27660874754929],[-76.60454916210772,39.27659381038806],[-76.6046311999436,39.27708913113401],[-76.60465372909098,39.27722179670968],[-76.60450822175079,39.27723635771327],[-76.60437268851305,39.2772504747284],[-76.60434497955563,39.277246001878],[-76.60400144715308,39.27728120349562],[-76.60388564583882,39.27729351378544],[-76.60388436458629,39.27728075104483],[-76.60378789485226,39.27729096009525],[-76.60380136973839,39.27737217158069],[-76.60381720434565,39.27737118461065],[-76.6038423928484,39.27752526415659],[-76.6038396628303,39.27754219471301],[-76.60383867303406,39.27755818443615],[-76.6038402546575,39.27758357239411],[-76.6038473277779,39.27762592404219],[-76.60385107003674,39.27764336734413],[-76.60385924755008,39.27766622748509],[-76.60385996498749,39.27766767382914],[-76.60386808827299,39.27768405639403],[-76.60387408294446,39.27772216270547],[-76.60379391327974,39.27774278551676],[-76.60373768178114,39.27775743860617],[-76.6037079061324,39.27776501715881],[-76.60343107441001,39.2777978938788],[-76.60343960629802,39.27785209191508],[-76.60332128020279,39.27786535153832],[-76.60329524922527,39.27789052554147],[-76.60330763994945,39.27796718995671],[-76.60334144332798,39.27798922420362],[-76.60352484011355,39.27797077243701],[-76.60404591331736,39.2779176583524],[-76.60464395682123,39.27785780753573],[-76.60493965267855,39.27782785493732],[-76.60531171232775,39.27779026213181],[-76.60559100311573,39.27776206150096],[-76.60560293793557,39.27782777805783],[-76.60567462673201,39.27782096487487],[-76.60568277118797,39.27787532357885],[-76.60573081676579,39.27790339052303],[-76.60574348405886,39.2779751824694],[-76.60570697111642,39.27801222360858],[-76.60571597939305,39.27807006665811],[-76.60564507767982,39.27807701852451],[-76.60565451427654,39.27814474439235],[-76.60534114912606,39.27817360444546],[-76.60533746401991,39.27817394336102],[-76.60533755814019,39.27817452466977],[-76.60538399129751,39.27845979215851],[-76.6049171706497,39.27850559131924],[-76.6039190925591,39.27860449538891],[-76.60393812510418,39.27872184348107],[-76.60419360784363,39.27869672576249],[-76.60438913185672,39.27867779557148],[-76.60474969006367,39.27864204389263],[-76.60526201662996,39.27859148557255],[-76.60562572209902,39.27855629395162],[-76.60584819719587,39.27853469188234],[-76.6058591197169,39.27859889712197],[-76.60589273194849,39.27859628329597],[-76.60592412637742,39.27880996414104],[-76.6058901414703,39.27881413594719],[-76.6059004346937,39.27887960193612],[-76.60586482816615,39.27888317739324],[-76.6058936791513,39.27905044957325],[-76.60577580177382,39.27910970615054],[-76.60436441388565,39.27924941694788],[-76.60429158884116,39.27925644168891],[-76.6043060261162,39.2793545798496],[-76.60480176011974,39.2793054953255],[-76.60591386782626,39.27919542130255],[-76.60592096231483,39.27930700013299],[-76.60593825952064,39.27957903461211],[-76.60594029595119,39.27960114076808],[-76.6059387689983,39.27960562234671],[-76.60593781784178,39.27960826649865],[-76.60593670698177,39.2796108677789],[-76.60593539243693,39.27961341523078],[-76.60593400266838,39.27961594261352],[-76.60593268811334,39.27961849186688],[-76.60593147885997,39.27962107119875],[-76.6059302962179,39.27962365872666],[-76.60592907770736,39.2796262353251],[-76.60592782216466,39.27962880189084],[-76.60592655273923,39.27963136390622],[-76.60592527868266,39.27963392500532],[-76.60592400809804,39.27963648701679],[-76.60591760351937,39.27964628564917],[-76.60591269603057,39.27964988484749],[-76.60590672280821,39.27965275985937],[-76.60590026135935,39.27965526932446],[-76.60589350458955,39.27965732111145],[-76.60588664079397,39.27965881856952],[-76.6058797899525,39.27965965310909],[-76.60587280484543,39.27965982964052],[-76.6058657142802,39.27965958696278],[-76.60585857019895,39.27965917205932],[-76.60585142451326,39.27965883731802],[-76.60584432799625,39.27965883151972],[-76.60583730886147,39.27965929167528],[-76.60583030717935,39.27965994825535],[-76.60582331747507,39.27966074359276],[-76.60581633874985,39.27966164885972],[-76.60580937233291,39.27966263343463],[-76.60580241606117,39.27966366938676],[-76.60579547242801,39.27966472519764],[-76.60578852428873,39.27966575757317],[-76.60578147954594,39.2796666545096],[-76.60577436458593,39.27966746473664],[-76.60576723228604,39.2796682667982],[-76.60576013206206,39.27966913652432],[-76.60575311563224,39.27967015245476],[-76.60574623587429,39.27967139313361],[-76.60573954335761,39.27967293529541],[-76.60573308864646,39.27967485657565],[-76.6057269211716,39.27967723010196],[-76.60572103056718,39.27968004412988],[-76.60571536628842,39.27968321742083],[-76.60570987200107,39.27968666781653],[-76.60570449716563,39.27969031317777],[-76.60569918776555,39.27969407135381],[-76.60569388863058,39.27969785928926],[-76.60568854922126,39.27970159484502],[-76.60568311436202,39.27970519586636],[-76.60567753808938,39.27970859103877],[-76.60567195132539,39.2797119969848],[-76.60566639887459,39.2797154850152],[-76.60566085091884,39.27971899828183],[-76.60565527761537,39.27972248444011],[-76.60564964914096,39.27972588754284],[-76.60564393682174,39.27972915344766],[-76.60563810850644,39.27973222800097],[-76.6056321366802,39.27973505706468],[-76.6056259891921,39.27973758648483],[-76.60561963957106,39.27973978284442],[-76.60561308990955,39.27974168668472],[-76.60560637475693,39.27974333775526],[-76.60559952867199,39.27974477400419],[-76.60559258274722,39.27974603156638],[-76.60558557385941,39.27974714839765],[-76.6055785342398,39.27974816423991],[-76.60557149614478,39.27974911433104],[-76.60556449528185,39.27975003842469],[-76.60555753292552,39.27975091580761],[-76.60555052531654,39.27975159396946],[-76.6055434780547,39.27975210805887],[-76.60553640244935,39.27975250855636],[-76.60552931327179,39.27975284865686],[-76.60552222415406,39.27975317794794],[-76.60551514755474,39.27975354871569],[-76.60550809825494,39.27975401235333],[-76.60550108755902,39.27975462024232],[-76.60549413024816,39.27975542377579],[-76.6054872387903,39.27975647343845],[-76.60548040174643,39.27975774216879],[-76.60547360549857,39.27975917767709],[-76.60546684552654,39.27976075923034],[-76.60546011848325,39.27976246339762],[-76.60545342332507,39.27976426945792],[-76.6054467543822,39.27976615487302],[-76.605440109462,39.27976809711652],[-76.6054334863666,39.27977007456271],[-76.60542688057548,39.27977206647892],[-76.6054202899058,39.27977404853716],[-76.60541375211781,39.27977610823823],[-76.60540732211635,39.27977837637736],[-76.60540097009351,39.27978079430476],[-76.60539466972328,39.27978330248168],[-76.6053883923617,39.27978584136151],[-76.60538211279709,39.27978835951606],[-76.60537583094906,39.27979087135729],[-76.60536954677758,39.27979338409109],[-76.60536326375984,39.27979589772923],[-76.60535698418843,39.27979841678315],[-76.60535070690433,39.27980094124901],[-76.60534443652357,39.27980347474535],[-76.60533817304123,39.27980601817294],[-76.60533191991406,39.27980857514645],[-76.6053256759781,39.27981114656272],[-76.60531944584945,39.27981373604032],[-76.60531322836354,39.27981634447612],[-76.60530702814677,39.27981897368713],[-76.60530084517896,39.27982162727638],[-76.60529467945996,39.27982430524384],[-76.60528850677181,39.27982698588992],[-76.60528232019527,39.27982966288587],[-76.60527613241442,39.27983234798442],[-76.60526995380451,39.27983505112862],[-76.60526379821837,39.27983778227357],[-76.60525767371881,39.27984055045399],[-76.60525159299436,39.27984336652166],[-76.60524556873361,39.27984624132828],[-76.60523961015855,39.27984918391273],[-76.60523372996252,39.27985220422578],[-76.6052279385213,39.27985531221093],[-76.60522223577969,39.27985851777634],[-76.60521650702891,39.27986181513187],[-76.60521078119308,39.27986521338237],[-76.60520513468495,39.27986872719693],[-76.60519964276257,39.27987237034005],[-76.60519438300307,39.27987615658368],[-76.6051894318235,39.27988009969637],[-76.60518486215992,39.27988421433541],[-76.60518075390637,39.27988851428093],[-76.60517717743535,39.2798930583191],[-76.60517413917908,39.27989794015105],[-76.60517158965753,39.27990309565607],[-76.6051694771328,39.27990844989722],[-76.6051681084831,39.27991279958553],[-76.60516775216982,39.27991393064705],[-76.60516636417924,39.27991946477386],[-76.6051652625672,39.2799249800466],[-76.60516440483741,39.27993040696344],[-76.60516392035954,39.27993582432586],[-76.60516380540133,39.27994127806013],[-76.60516397540749,39.27994675887449],[-76.60516434232515,39.27995226106821],[-76.60516482159396,39.27995777625029],[-76.60516532632018,39.27996329872409],[-76.60516576962063,39.27996882099139],[-76.60516606577033,39.27997433555792],[-76.60516612788606,39.27997983492546],[-76.60516605439057,39.27998533563876],[-76.60516603755521,39.27999085996232],[-76.60516607160451,39.27999640427373],[-76.60516614611811,39.28000196673637],[-76.60516625416186,39.28000754372391],[-76.60516638879723,39.28001313251082],[-76.60516654076227,39.28001873126428],[-76.60516670312795,39.28002433545733],[-76.6051668689505,39.28002994326509],[-76.60516702781432,39.28003555195009],[-76.60516717510332,39.28004115789399],[-76.6051673004017,39.28004675835932],[-76.60516739561187,39.28005235061663],[-76.60516745611739,39.28005793104738],[-76.60516747033385,39.28006349871187],[-76.60516743249136,39.28006904908681],[-76.60516733449197,39.28007457944279],[-76.60516716823774,39.28008008705017],[-76.60516692678992,39.28008556918342],[-76.6051666008917,39.28009102310924],[-76.6051661824451,39.28009644609787],[-76.60516566568027,39.28010183362633],[-76.60516504132515,39.28010718566333],[-76.60516430129722,39.28011249677714],[-76.6051634386523,39.28011776514293],[-76.60516244413877,39.2801229871265],[-76.60516131196667,39.28012816180769],[-76.6051596754241,39.28013316454913],[-76.60515644937891,39.28013763319945],[-76.60515189643378,39.28014165601537],[-76.60514639603899,39.28014535947833],[-76.60514032533169,39.28014886916129],[-76.6051340614393,39.28015231243885],[-76.60512798265798,39.28015581488786],[-76.60512246727929,39.28015950298641],[-76.60512142830771,39.28016438253008],[-76.60512218256511,39.28016984278923],[-76.60512287188925,39.28017530823454],[-76.6051235507825,39.2801807736448],[-76.60512422155793,39.28018623992858],[-76.60512488305676,39.28019170708187],[-76.60512553644253,39.28019717420786],[-76.60512617938764,39.28020264310027],[-76.605126816543,39.28020811107248],[-76.60512745137557,39.28021357993766],[-76.6051278550692,39.28021705553787],[-76.60512808620803,39.28021904880276],[-76.60512872104063,39.28022451766785],[-76.6051293535553,39.28022998652512],[-76.60512998607021,39.28023545538248],[-76.60513061858003,39.28024092514045],[-76.60513124877716,39.28024639398991],[-76.60513187897432,39.28025186283936],[-76.60513250801245,39.28025733168497],[-76.60513313704575,39.28026280143127],[-76.60513376492521,39.28026827027283],[-76.60513439164095,39.2802737400113],[-76.60513501835655,39.28027920974977],[-76.60513564391829,39.28028467858356],[-76.60513626831626,39.28029014831419],[-76.60513689271433,39.28029561804483],[-76.60513751595325,39.28030108777157],[-76.6051381380335,39.28030655749438],[-76.6051387601138,39.28031202721716],[-76.60513938103517,39.28031749693606],[-76.60514000079768,39.28032296665103],[-76.60514061940124,39.28032843636212],[-76.60514123800506,39.2803339060732],[-76.60514181138319,39.28033938013602],[-76.60514234649976,39.28034485677246],[-76.60514288858047,39.28035033163083],[-76.60514348748177,39.28035580127561],[-76.60514479266844,39.28036119042444],[-76.60514656418968,39.28036650547683],[-76.60514834615222,39.2803718187627],[-76.60515013623792,39.28037713027427],[-76.60515193328291,39.28038244090852],[-76.60515373265116,39.28038775064974],[-76.60515553317872,39.28039306039484],[-76.60515733254229,39.28039837103679],[-76.60515912727045,39.28040368166303],[-76.60516091619377,39.28040899407129],[-76.60516269583539,39.28041430824986],[-76.60516446503644,39.28041962419483],[-76.60516622030964,39.28042494369603],[-76.60516796050642,39.28043026494791],[-76.60516969373954,39.280435587978],[-76.60517141884976,39.28044091278218],[-76.60517313931928,39.28044623847155],[-76.60517485398938,39.2804515650421],[-76.60517656517243,39.28045689340248],[-76.60517827171988,39.2804622217472],[-76.60517997479072,39.28046755008026],[-76.60518167669277,39.28047288021084],[-76.60518337511797,39.28047821032971],[-76.60518507354847,39.28048353954785],[-76.60518677196917,39.28048887056733],[-76.60518846923635,39.2804942006822],[-76.60519016882668,39.28049952990413],[-76.60519186841219,39.28050486002675],[-76.60519357147986,39.28051018926022],[-76.60519527687084,39.28051551760074],[-76.60519698689814,39.28052084595684],[-76.60519869925378,39.28052617251922],[-76.60520041392252,39.28053149999],[-76.60520213439646,39.28053682567882],[-76.60520386299362,39.28054214959334],[-76.60520560319108,39.28054747174526],[-76.60520757791602,39.28055272082293],[-76.60521223376936,39.28055686917195],[-76.60521673384724,39.28056110166889],[-76.60522123508473,39.28056533416959],[-76.60522573399467,39.28056956846376],[-76.6052302317461,39.2805738027539],[-76.60523472716501,39.28057803973829],[-76.60523921793872,39.2805822785085],[-76.60524370522069,39.28058651996898],[-76.60524818785225,39.28059076411597],[-76.60525266350533,39.28059501274315],[-76.605257133339,39.28059926585448],[-76.60526159736322,39.28060352164827],[-76.60526605556784,39.28060778192621],[-76.60527050912707,39.28061204398994],[-76.6052749591949,39.28061630874398],[-76.60527940692997,39.28062057619233],[-76.60528385234801,39.28062484363268],[-76.60528829543827,39.28062911286659],[-76.60529273852902,39.28063338210031],[-76.60529718277958,39.28063765133774],[-76.60530162587146,39.2806419205711],[-76.60530607245093,39.28064618801451],[-76.60531052019998,39.28065045366012],[-76.60531497259049,39.28065471842037],[-76.60531942731963,39.28065897958528],[-76.60532388785929,39.28066323806725],[-76.60532835305058,39.28066749386241],[-76.60533282522624,39.28067174427623],[-76.60533730321255,39.28067599200719],[-76.60534178701941,39.2806802352536],[-76.6053462754827,39.28068447491246],[-76.60535076859267,39.28068871278528],[-76.60535526635412,39.28069294797124],[-76.60535976644421,39.28069718136333],[-76.60536426886786,39.28070141206074],[-76.60536877476898,39.28070564276966],[-76.60537328184465,39.28070987078008],[-76.60537779007969,39.2807140987942],[-76.6053822983155,39.28071832680825],[-76.6053868077158,39.2807225539251],[-76.60539131711654,39.28072678104188],[-76.60539582535392,39.2807310090553],[-76.60540033126878,39.28073523796149],[-76.60540483717419,39.280739468669],[-76.60540933959822,39.28074370026544],[-76.60541383969975,39.2807479327546],[-76.60541833514564,39.28075216883104],[-76.60542282826421,39.28075640670095],[-76.6054273167322,39.28076064725741],[-76.60543180287281,39.28076488960741],[-76.60543628785499,39.28076913195331],[-76.6054407705096,39.28077337609271],[-76.60544525316475,39.28077762023198],[-76.60544973465161,39.2807818661686],[-76.60545421382072,39.2807861120973],[-76.60545869298556,39.28079035892659],[-76.60546317098692,39.28079460665253],[-76.60546764782981,39.28079885437442],[-76.60547212350916,39.28080310299297],[-76.60547659802505,39.28080735250824],[-76.60548107254142,39.28081160202334],[-76.60548554473553,39.28081585243115],[-76.60549001808393,39.28082010374349],[-76.60549448911506,39.28082435504783],[-76.6054989601467,39.28082860635202],[-76.60550343001488,39.28083285855286],[-76.60550789987835,39.28083711165426],[-76.60551236858355,39.28084136475159],[-76.60551683728926,39.28084561784884],[-76.60552130483164,39.28084987184266],[-76.60552577237439,39.28085412583634],[-76.60553023759465,39.28085838072281],[-76.6055346888526,39.28086264547058],[-76.60553912848574,39.28086691648458],[-76.60554356229461,39.28087119288332],[-76.60554799262697,39.28087546927028],[-76.60555242760095,39.28087974477177],[-76.60555686956431,39.28088401399128],[-76.60556132547636,39.28088827605137],[-76.60556579302894,39.2808925291428],[-76.60557026290512,39.28089678134099],[-76.60557473394088,39.28090103354296],[-76.60557920730506,39.28090528395099],[-76.60558368067494,39.28090953345816],[-76.60558815520422,39.28091378296897],[-76.60559263089803,39.28091803158279],[-76.60559710775141,39.28092228020033],[-76.60560158461038,39.28092652791701],[-76.60560606262888,39.28093077563738],[-76.60561054181196,39.2809350224606],[-76.60561501983632,39.28093926927985],[-76.60561949902547,39.28094351520213],[-76.60562397936903,39.2809477620287],[-76.60562845855925,39.28095200795063],[-76.60563293890884,39.28095625387616],[-76.60563741809513,39.28096050069843],[-76.60564189844578,39.28096474662364],[-76.60564637763315,39.28096899344552],[-76.60565085682606,39.28097323936649],[-76.60565533485551,39.28097748618416],[-76.60565981288023,39.28098173390236],[-76.6056642909057,39.28098598162041],[-76.60566876893675,39.28099022843757],[-76.60567324812733,39.28099447525843],[-76.60567772964632,39.2809987202854],[-76.60568221349395,39.28100296351845],[-76.6056874296066,39.28100662371364],[-76.60569302294756,39.2810099771141],[-76.6056986337492,39.28101331706146],[-76.60570423638826,39.28101666598878],[-76.60570980757484,39.28102004363461],[-76.60571537061372,39.28102342755823],[-76.60572093480731,39.28102681238613],[-76.60572649667839,39.2810301981068],[-76.60573205854479,39.28103358472798],[-76.60573762041194,39.2810369713488],[-76.60574318111554,39.28104035886624],[-76.60574874065566,39.28104374728026],[-76.60575430019632,39.28104713569405],[-76.60575985973752,39.28105052410758],[-76.60576541927422,39.28105391342154],[-76.60577097765244,39.28105730273143],[-76.60577653603117,39.281060692041],[-76.60578209440548,39.28106408225104],[-76.6057876527803,39.28106747246081],[-76.6057932100018,39.28107086176564],[-76.60579876837767,39.28107425197491],[-76.60580432675405,39.28107764218388],[-76.60580988513097,39.28108103239261],[-76.60581544351344,39.28108442170031],[-76.60582100189642,39.28108781100771],[-76.60582656027994,39.28109120031492],[-76.60583211982303,39.2810945896257],[-76.60583767937166,39.28109797803547],[-76.60584323892081,39.28110136644496],[-76.6058487984705,39.28110475485423],[-76.60585435802071,39.28110814326324],[-76.60585991757146,39.28111153167197],[-76.60586547828179,39.28111492008423],[-76.60587103783358,39.28111830849243],[-76.60587659738593,39.28112169690032],[-76.6058821569388,39.28112508530798],[-76.6058877164872,39.28112847461616],[-76.60589327604113,39.28113186302321],[-76.60589883443156,39.28113525232695],[-76.60590439398155,39.2811386416343],[-76.60590995237305,39.28114203093742],[-76.60591551076527,39.28114542024038],[-76.60592106915281,39.28114881044377],[-76.60592662638186,39.28115220064295],[-76.60593218361143,39.28115559084189],[-76.60593774083658,39.28115898194137],[-76.60594329805737,39.2811623739413],[-76.60594885411953,39.28116576593703],[-76.60595441018239,39.28116915793255],[-76.60595996508154,39.28117255082464],[-76.60596551998147,39.2811759437165],[-76.60597107487686,39.28117933750875],[-76.60597662861358,39.2811827312969],[-76.60598218234605,39.28118612598555],[-76.605987736084,39.28118951977323],[-76.60599328981735,39.28119291446131],[-76.60599884355139,39.28119630914915],[-76.60600439612689,39.28119970383277],[-76.60600994985704,39.28120309942083],[-76.60601550243362,39.28120649410398],[-76.60602105501077,39.28120988878687],[-76.60602660874247,39.28121328437418],[-76.60603216132047,39.28121667905651],[-76.60603771505822,39.2812200737425],[-76.60604326763747,39.28122346842423],[-76.60604882137632,39.28122686310969],[-76.60605437511568,39.28123025779494],[-76.60605992885539,39.28123365247976],[-76.60606548260078,39.28123704626373],[-76.60607103750576,39.28124044005121],[-76.60607659241612,39.28124383293775],[-76.60608214732716,39.281247225824],[-76.60608770456659,39.28125061691622],[-76.60609326181178,39.28125400710746],[-76.60609882138037,39.28125739640551],[-76.60610438094949,39.28126078570317],[-76.60610994052414,39.28126417409992],[-76.60611550009932,39.2812675624964],[-76.60612105967503,39.2812709508926],[-76.60612661808725,39.28127434018536],[-76.60613217649997,39.28127772947789],[-76.6061377337442,39.28128112056777],[-76.60614328982496,39.28128451255418],[-76.60614884357334,39.28128790723485],[-76.60615439615819,39.28129130281204],[-76.60615994641577,39.28129470018277],[-76.60616549433558,39.28129810114847],[-76.60617103876902,39.28130150390368],[-76.60617658203395,39.28130490845621],[-76.60618212297133,39.28130831480224],[-76.60618766389945,39.28131172294948],[-76.60619320250507,39.28131513198937],[-76.60619874111116,39.28131854102907],[-76.60620427971764,39.2813219500685],[-76.60620981831981,39.28132536000838],[-76.60621535693257,39.28132876814652],[-76.60622089670484,39.28133217628827],[-76.6062264388005,39.28133558353686],[-76.6062319809117,39.28133898808287],[-76.60623752651058,39.28134239083877],[-76.606243073279,39.2813457917968],[-76.60624862237584,39.28134919096085],[-76.60625417147821,39.28135258922394],[-76.60625972290414,39.28135598659368],[-76.60626527433581,39.28135938306256],[-76.60627082576785,39.28136277953107],[-76.60627637836947,39.28136617420174],[-76.6062789357787,39.28136773749033],[-76.60628193212538,39.2813695697767],[-76.60628748589205,39.28137296355003],[-76.6062930396593,39.28137635732301],[-76.60629859458086,39.28137975200038],[-76.60630414835417,39.28138314487211],[-76.606309703282,39.28138653864819],[-76.60631525704612,39.28138993332083],[-76.60632081081602,39.28139332709248],[-76.60632636458139,39.28139672176467],[-76.60633191834732,39.28140011643651],[-76.60633747095477,39.28140351110427],[-76.60634302355271,39.28140690757319],[-76.6063485749972,39.28141030313731],[-76.60635412760121,39.28141369870495],[-76.60635967904174,39.28141709516921],[-76.6063652316468,39.28142049073637],[-76.60637078308842,39.28142388720019],[-76.60637633568955,39.28142728366755],[-76.60638188713722,39.28143067922996],[-76.60638743858037,39.2814340756929],[-76.60639299118316,39.28143747215948],[-76.60639854262736,39.28144086862194],[-76.60640409407716,39.28144426418328],[-76.60640964668148,39.28144766064913],[-76.60641519812735,39.28145105711072],[-76.60642074957367,39.28145445357206],[-76.6064263010206,39.28145785003314],[-76.60643185363206,39.28146124559705],[-76.60643740508004,39.28146464205768],[-76.60644295652855,39.28146803851793],[-76.6064485091366,39.28147143498182],[-76.60645406058617,39.28147483144157],[-76.60645961204123,39.28147822700036],[-76.60647302626678,39.28148644276023],[-76.60648412566923,39.28149324016918],[-76.6064952239198,39.28150003667249],[-76.60650632332629,39.28150683407931],[-76.6065174215761,39.28151363148121],[-76.60652852098704,39.281520428886],[-76.60653961924108,39.28152722628575],[-76.60655071749208,39.28153402458528],[-76.6065618169144,39.281540821086],[-76.60657309841768,39.28154717952422],[-76.60658719444217,39.28154636020289],[-76.60660129993829,39.28154571385807],[-76.60661540656844,39.28154507201904],[-76.6066295143322,39.28154443468598],[-76.60664362206073,39.28154380365655],[-76.60665772976421,39.28154317712905],[-76.60667183743732,39.28154255600436],[-76.60668594623426,39.28154194118709],[-76.60670005615506,39.2815413326772],[-76.60671416488661,39.28154072956619],[-76.60672827474696,39.2815401318619],[-76.60674238458236,39.28153953865957],[-76.60675649556117,39.28153894816172],[-76.60677060651994,39.28153836126514],[-76.6067847163095,39.28153777616447],[-76.60679882725287,39.28153719196675],[-76.60681293819098,39.28153660866807],[-76.60682704913889,39.28153602356626],[-76.60684116007658,39.28153544026414],[-76.60685527099402,39.2815348605634],[-76.60686938189131,39.28153428446387],[-76.60688349394222,39.28153370926734],[-76.60689760482903,39.28153313496598],[-76.60691171688468,39.28153255886528],[-76.60692582780098,39.281531979156],[-76.60693993874203,39.28153139494133],[-76.60695404857373,39.28153080171356],[-76.60696815736085,39.28153018776312],[-76.6069822650536,39.28152956209745],[-76.60699637273115,39.28152893913226],[-76.60701048262196,39.28152833508885],[-76.6070245946406,39.28152776527985],[-76.60703870988687,39.28152724051802],[-76.60705282618197,39.28152673557477],[-76.6070669425218,39.28152622252316],[-76.60708105328595,39.28152566981763],[-76.6070906497885,39.28152864651123],[-76.60709142240565,39.28153961137674],[-76.60709200605999,39.28155058371686],[-76.60709258507354,39.28156155694224],[-76.60709315945608,39.28157252925136],[-76.60709373151577,39.2815835024534],[-76.60709430125776,39.28159447564772],[-76.60709486868183,39.28160544883415],[-76.60709543494724,39.28161642201669],[-76.60709600005363,39.28162739519531],[-76.60709656747822,39.28163836838173],[-76.60709713489801,39.28164934246879],[-76.60709770464605,39.28166031476203],[-76.60709827786613,39.28167128796763],[-76.60709885340457,39.28168226118103],[-76.60709943358428,39.28169323350902],[-76.60710001491803,39.28170420674174],[-76.60710059857504,39.2817151790813],[-76.6071011833913,39.28172615142477],[-76.60710176936158,39.28173712467279],[-76.60710235765526,39.28174809702783],[-76.60710294594898,39.28175906938274],[-76.6071035342429,39.28177004173765],[-76.60710412369596,39.28178101409644],[-76.6071047131495,39.28179198645522],[-76.60710530375701,39.28180295971848],[-76.60710589205164,39.28181393207331],[-76.60710648150545,39.28182490443186],[-76.60710707211854,39.28183587679433],[-76.60710766389082,39.28184684916058],[-76.6071082591402,39.28185782153849],[-76.60710885787194,39.28186879302722],[-76.60710946123505,39.28187976543219],[-76.60711007735216,39.28189073697901],[-76.60711070737786,39.28190170857222],[-76.6071113362497,39.28191267926082],[-76.60711195352648,39.28192365081137],[-76.60711256037243,39.281934622327],[-76.60711316373647,39.28194559473176],[-76.60711376478275,39.2819565671287],[-76.60711436235711,39.2819675386131],[-76.60711495529067,39.28197851098284],[-76.6071155424242,39.28198948423384],[-76.60711612029091,39.28200045655306],[-76.6071166842447,39.28201142972659],[-76.60711724355744,39.28202240378511],[-76.60711780287536,39.28203337694293],[-76.6071183726247,39.28204435013568],[-76.60711895165113,39.28205532245862],[-76.60711953299109,39.28206629568993],[-76.60712011781294,39.28207726803222],[-76.60712070495329,39.28208824038204],[-76.60712129672979,39.28209921274748],[-76.60712189198341,39.2821101851245],[-76.60712249187344,39.2821211575169],[-76.60712311263087,39.28213212907836],[-76.60712374846078,39.28214309978941],[-76.60712438197272,39.28215407049269],[-76.60712499345857,39.28216504202302],[-76.60712555509694,39.28217601518808],[-76.60712601472193,39.28218699161502],[-76.60712645579771,39.28219796888055],[-76.6071268806473,39.28220894609192],[-76.60712729274292,39.28221992416123],[-76.60712776164547,39.28223089971823],[-76.60712837892757,39.28224187126767],[-76.60712926630647,39.28225283561353],[-76.60713007372321,39.28226379789049],[-76.60713150312432,39.28227420827869],[-76.60714241514823,39.28228117884371],[-76.60715289615216,39.28228854250011],[-76.60716334454106,39.28229593577163],[-76.60717377428796,39.28230334699511],[-76.6071841958842,39.28231076539655],[-76.60719462097948,39.28231818020556],[-76.60720503793908,39.2823255994903],[-76.60721543276455,39.28233303941759],[-76.60722579731804,39.28234050446406],[-76.6072361246105,39.28234800091176],[-76.60724644725414,39.28235550004516],[-76.6072568106503,39.28236296598575],[-76.60726736852753,39.28237026593455],[-76.60727779132235,39.28237768072837],[-76.607288106886,39.28238520415498],[-76.60730203420745,39.28238494806079],[-76.60731614736375,39.28238441244905],[-76.60733026166388,39.28238387954178],[-76.60734437708818,39.2823833529419],[-76.60735849246726,39.282382834447],[-76.60737260895027,39.2823823258625],[-76.60738672537329,39.28238182808531],[-76.60740084172137,39.28238134381748],[-76.60741496032753,39.2823808703648],[-76.60742908000776,39.28238041222685],[-76.60744319958306,39.28237997300293],[-76.60745732017779,39.28237955900205],[-76.60747144176679,39.28237917472793],[-76.60748557369512,39.28237901657806],[-76.60749914562422,39.28237763422066],[-76.60750870956241,39.28236955120965],[-76.6075182758117,39.28236146910638],[-76.60752783629842,39.28235338067768],[-76.60753737830835,39.28234527957579],[-76.60754689145531,39.28233715765916],[-76.60755636533789,39.28232900948846],[-76.6075656995048,39.2823207653694],[-76.6075749320694,39.28231244974985],[-76.60758422582077,39.28230417757064],[-76.607593770116,39.28229608007477],[-76.60760344718294,39.2822880758002],[-76.60760690808554,39.28227822581493],[-76.60760612031326,39.28226726090495],[-76.6076053081969,39.28225629681442],[-76.6076045424514,39.28224533107711],[-76.60760384510326,39.28223436286601],[-76.6076031257342,39.28222339458127],[-76.60760231129575,39.28221243138349],[-76.60760147251811,39.2822014681044],[-76.60760061982259,39.28219050658034],[-76.607599760173,39.28217954503292],[-76.60759889588792,39.28216858346997],[-76.60759803160305,39.28215762190704],[-76.60759717079547,39.28214666035569],[-76.60759631926524,39.28213569793444],[-76.60759548048446,39.28212473555582],[-76.6075946625762,39.2821137714453],[-76.60759386900759,39.28210280741612],[-76.6075930893573,39.28209184163178],[-76.60759231433853,39.28208087676371],[-76.60759153121182,39.28206991096773],[-76.60759072837199,39.28205894690742],[-76.60758983974536,39.28204798616346],[-76.6075889824173,39.28203702462326],[-76.60758830594102,39.28202605558033],[-76.60758766308626,39.28201508484816],[-76.60758680228201,39.28200412329623],[-76.60758597644268,39.28199312673136],[-76.60758535325209,39.28198216327085],[-76.60759755699412,39.28198002329401],[-76.60761166805862,39.28197943179275],[-76.60762577911292,39.28197884209128],[-76.60763989019185,39.28197824788437],[-76.60765400015637,39.28197764556525],[-76.60766810903132,39.28197703063003],[-76.60768221567781,39.28197639947199],[-76.60769645858107,39.28197565076748],[-76.60769866338924,39.28196616049154],[-76.60769970332215,39.28195667803509],[-76.60771382683997,39.28195634868502],[-76.60772794947749,39.28195596888758],[-76.60774206896164,39.28195553052847],[-76.60775618848025,39.28195508586232],[-76.6077703079989,39.28195464119452],[-76.60778442637803,39.28195419291816],[-76.60779854591128,39.28195374554483],[-76.60781266542939,39.28195330087191],[-76.60782678492743,39.28195285980035],[-76.60784090442009,39.28195241962777],[-76.60785502390283,39.28195198125503],[-76.60786914337521,39.28195154468205],[-76.60788326284268,39.28195110900816],[-76.60789738346382,39.28195067423717],[-76.60791150292097,39.28195024036132],[-76.60792562237297,39.28194980738454],[-76.60793974297867,39.2819493753107],[-76.60795386242535,39.2819489432313],[-76.60796798302572,39.28194851205484],[-76.60798210247205,39.28194807997198],[-76.60799622307705,39.28194764789136],[-76.60801034252304,39.28194721580517],[-76.60802446312772,39.28194678372115],[-76.60803858257833,39.28194635073082],[-76.60805270203376,39.28194591683808],[-76.60806682265284,39.2819454820466],[-76.60808094211782,39.28194504634901],[-76.60809506158749,39.28194460974888],[-76.6081091810671,39.28194417134551],[-76.60812330055646,39.28194373113904],[-76.60813742005048,39.28194329003013],[-76.60815153955943,39.28194284621723],[-76.60816565907808,39.2819424006012],[-76.60817977860641,39.28194195318195],[-76.6081938969906,39.2819415030549],[-76.60820801538952,39.28194105022394],[-76.60822213496218,39.2819405946928],[-76.60823625339043,39.281940136454],[-76.60825037183855,39.28193967461045],[-76.60826448914234,39.28193921005909],[-76.60827860761994,39.28193874280767],[-76.60829272496315,39.28193827104701],[-76.608306842341,39.2819377929794],[-76.6083209597634,39.28193730680334],[-76.60833507607636,39.28193681161432],[-76.60834919242882,39.28193630921766],[-76.60836330765684,39.28193580051015],[-76.60837742291953,39.28193528549572],[-76.60839153820703,39.28193476597589],[-76.60840565351897,39.28193424195064],[-76.60841976769159,39.28193371431681],[-76.60843388304308,39.28193318308227],[-76.60844799724505,39.28193265004059],[-76.6084621114568,39.28193211519572],[-76.6084762256685,39.28193158034917],[-76.60849033988481,39.28193104460016],[-76.6085044540911,39.28193051065098],[-76.60851856829201,39.2819299776008],[-76.60853268248282,39.28192944635046],[-76.60854679781771,39.28192891780454],[-76.6085609119683,39.28192839375671],[-76.60857502725291,39.28192787421485],[-76.60858914251243,39.28192735917501],[-76.6086032589012,39.28192684954177],[-76.60861737409078,39.28192634710896],[-76.60863149039943,39.28192585188428],[-76.6086456078222,39.28192536476853],[-76.6086597251951,39.28192488665849],[-76.60867384251812,39.28192441755425],[-76.60868796094535,39.28192395836034],[-76.6087020793027,39.28192351177516],[-76.60871619987374,39.2819230841117],[-76.60873032035008,39.28192267356076],[-76.60874444304997,39.2819222801299],[-76.60875856566548,39.28192190201012],[-76.60877268821605,39.28192153559831],[-76.60878681301995,39.28192118090228],[-76.60880093777409,39.28192083521195],[-76.60881506248319,39.28192049762661],[-76.60882918716747,39.28192016454329],[-76.60884331298585,39.2819198359659],[-76.60885743879422,39.28191950918836],[-76.60887156459728,39.28191918330973],[-76.60888568925621,39.28191885472339],[-76.60889981508902,39.28191852343696],[-76.60891393979237,39.2819181867405],[-76.60892806453042,39.28191784373715],[-76.60894218816382,39.28191749081996],[-76.6089563106927,39.28191712798912],[-76.60897043328598,39.28191675344674],[-76.60898455480447,39.28191636358623],[-76.60899867640732,39.28191595841133],[-76.6090127957911,39.28191553521208],[-76.60902691412502,39.28191509219091],[-76.60904103141885,39.28191462754625],[-76.60905514651847,39.28191414037348],[-76.60906926060302,39.28191362707359],[-76.60908337370184,39.28191308224196],[-76.60909748348729,39.28191250767254],[-76.60911159226747,39.28191190517443],[-76.60912569886814,39.28191127744599],[-76.60913980558266,39.28191062899872],[-76.60915391009316,39.28190995982486],[-76.60916801353366,39.28190927443208],[-76.60918211588947,39.28190857552249],[-76.60919621830418,39.28190786580237],[-76.60921031960955,39.28190714706915],[-76.60922442094419,39.28190642292974],[-76.60923852113937,39.28190569518186],[-76.60925262248851,39.28190496833688],[-76.60926672382725,39.28190424329164],[-76.60928082513597,39.28190352364918],[-76.60929492755876,39.2819028121157],[-76.60930902992177,39.28190211138943],[-76.60932313337413,39.28190142327578],[-76.60933723905005,39.28190075228223],[-76.60935134462154,39.2819001002027],[-76.60936545239659,39.28189946884635],[-76.60937956119152,39.28189886271305],[-76.60939367099654,39.28189828360431],[-76.60940778299545,39.28189772702024],[-76.60942189720289,39.28189719025849],[-76.6094360113161,39.28189667060931],[-76.6094501276578,39.28189616717955],[-76.60946424392488,39.28189567725929],[-76.60947836127643,39.28189520085239],[-76.60949247857326,39.28189473435192],[-76.60950659813325,39.28189427776574],[-76.60952071648961,39.28189382928066],[-76.60953483712917,39.2818933871069],[-76.60954895658453,39.28189294943125],[-76.6095630771841,39.28189251446003],[-76.60957719660958,39.28189208218543],[-76.60959131719869,39.28189164901231],[-76.60960543779773,39.28189121403599],[-76.60961955725222,39.28189077635186],[-76.60963367789552,39.28189033326547],[-76.60964779740912,39.28188988476894],[-76.60966191580832,39.28188942816029],[-76.60967603426185,39.28188896164164],[-76.6096901516156,39.2818884843085],[-76.60970426788444,39.28188799345863],[-76.60971838422748,39.28188748909588],[-76.60973249948056,39.28188697211719],[-76.60974661363406,39.28188644432391],[-76.60976072783674,39.2818859075215],[-76.60977484092469,39.28188536260679],[-76.60978895405232,39.2818848104845],[-76.60980306721932,39.28188425115454],[-76.60981717925165,39.2818836873153],[-76.60983129131363,39.28188311806984],[-76.6098454033903,39.28188254612046],[-76.60985951548156,39.28188197146721],[-76.60987362642348,39.28188139500685],[-76.60988773852898,39.28188081764792],[-76.60990185062946,39.28188024118803],[-76.60991596157069,39.28187966472267],[-76.60993007365569,39.28187909096163],[-76.6099441857208,39.28187852080185],[-76.6099582977659,39.28187795424341],[-76.6099724097811,39.28187739308775],[-76.6099865229252,39.28187683733869],[-76.61000063602962,39.28187628879396],[-76.61001475025306,39.28187574745731],[-76.61002886326304,39.28187521602334],[-76.61004297854113,39.28187469360275],[-76.61005709375965,39.28187418198948],[-76.61007120891873,39.2818736811835],[-76.61008532632124,39.28187319389462],[-76.61009944362928,39.28187272371832],[-76.61011356195286,39.28187227966576],[-76.61012768245574,39.28187186084008],[-76.61014180399852,39.28187146363439],[-76.6101559266012,39.28187108444586],[-76.61017005027364,39.28187072147288],[-76.61018417387669,39.28187037110862],[-76.6101982985941,39.28187002885326],[-76.61021242327175,39.28186969380211],[-76.61022654792953,39.28186936235227],[-76.61024067374595,39.28186903090459],[-76.6102547984183,39.28186869674916],[-76.6102689231202,39.28186835718751],[-76.61028304671235,39.2818680086129],[-76.61029717036872,39.28186764832687],[-76.61031129294507,39.28186727362331],[-76.61032541446627,39.2818668799986],[-76.61033953493695,39.28186646655192],[-76.6103536543822,39.28186602877958],[-76.61036777281662,39.28186556397929],[-76.61038188907132,39.28186507394877],[-76.61039600422606,39.28186457310367],[-76.6104101194301,39.2818640632495],[-76.61042423468344,39.2818635443861],[-76.61043834882712,39.28186301650975],[-76.61045246301002,39.28186248142568],[-76.61046657723242,39.28186193913403],[-76.61048069032995,39.2818613905316],[-76.61049480345721,39.28186083652292],[-76.6105089154596,39.28186027620359],[-76.61052302864077,39.28185971228337],[-76.61053714069233,39.28185914295315],[-76.61055125275853,39.28185857091893],[-76.61056536483915,39.28185799618087],[-76.61057947577545,39.28185741873494],[-76.6105935878756,39.28185684039047],[-76.61060769882629,39.28185626023902],[-76.6106218109408,39.28185567918892],[-76.61063592304993,39.28185509903786],[-76.61065003399992,39.28185451888122],[-76.6106641460989,39.28185394052827],[-76.61067825702372,39.28185336487201],[-76.61069236910227,39.28185279011869],[-76.61070648115602,39.28185221986739],[-76.61072059319478,39.28185165231658],[-76.6107347063625,39.2818510901724],[-76.61074881835133,39.28185053162567],[-76.61076293146441,39.28184997938633],[-76.6107770445425,39.28184943345052],[-76.610791158745,39.28184889382203],[-76.61080527174855,39.28184836139408],[-76.61081938702547,39.28184783707877],[-76.61083350109396,39.28184732176533],[-76.61084761627166,39.28184681546153],[-76.61086173255879,39.28184631816734],[-76.61087584878642,39.28184583168039],[-76.61088996707014,39.28184539293899],[-76.61090408962905,39.28184501996573],[-76.6109182142095,39.28184470104311],[-76.61093234087079,39.28184442536236],[-76.61094646852291,39.28184418030914],[-76.61096059838432,39.28184395507824],[-76.61097472819624,39.28184373885311],[-76.61098885686879,39.2818435190195],[-76.6110029856254,39.28184328387149],[-76.61101711336102,39.28184302349702],[-76.61103123898597,39.2818427252819],[-76.6110453614004,39.28184237841321],[-76.6110594807474,39.28184195676942],[-76.61107359154818,39.28184140268363],[-76.61108769824108,39.28184075220086],[-76.61110180172813,39.28184005216393],[-76.61111590638384,39.28183935032762],[-76.61113001195125,39.28183869353081],[-76.6111441239395,39.28183813403582],[-76.61115824768423,39.28183775563133],[-76.61117237673025,39.28183746731889],[-76.6111865003217,39.28183711683414],[-76.61120059669504,39.28183644558623],[-76.61121467388514,39.28183525633473],[-76.61121707132617,39.28184382601614],[-76.61121763887748,39.28185468118039],[-76.61141313093304,39.2819926402748],[-76.61168720884677,39.28218820678327],[-76.61169834776558,39.28240961312749],[-76.61172931311576,39.28287356384372],[-76.61180409609163,39.28418731550347],[-76.6118426055397,39.28479777091579],[-76.61187793509163,39.2853599231759],[-76.61188621037728,39.28549160760179],[-76.61187717243342,39.28549932428801],[-76.611425787721,39.28588467027819],[-76.61113466134492,39.2858998638625],[-76.61109512918902,39.2852137302423],[-76.61074000210265,39.28522399725184],[-76.61078136111279,39.2859080067534],[-76.61058899958162,39.28591552112238],[-76.60994718706607,39.28594059115046],[-76.60991829672393,39.28593801542178],[-76.6098948255113,39.28592568352136],[-76.60987130128157,39.28591350907329],[-76.60984777472689,39.28590133731507],[-76.60982424585208,39.2858891673459],[-76.60980071814453,39.28587699737571],[-76.60977719044993,39.28586482650008],[-76.60975366626042,39.2858526520283],[-76.60973014674018,39.2858404730634],[-76.60970663190389,39.28582828690323],[-76.60968312873094,39.28581608906715],[-76.60965978890748,39.28580369720459],[-76.60963719272974,39.28581435739128],[-76.60961520053185,39.2858281596349],[-76.60959322103098,39.28584197002337],[-76.60957125537571,39.28585579036214],[-76.60954929777591,39.28586961973117],[-76.60952734247587,39.28588345090529],[-76.60950538485895,39.28589728026594],[-76.60948343414327,39.28591111775228],[-76.60946148804062,39.28592495795217],[-76.60943953500943,39.28593879181953],[-76.60941756352888,39.28595260670546],[-76.60939290625339,39.28596118553846],[-76.6093646057067,39.28596201381028],[-76.60933636721883,39.28596293866314],[-76.60930812985463,39.28596386981832],[-76.6092798945598,39.28596484601163],[-76.60925166350873,39.28596589337242],[-76.60922343454662,39.28596698216838],[-76.60919520560844,39.28596806645385],[-76.6091669734551,39.2859691029815],[-76.60913874031569,39.2859701079724],[-76.60911050609086,39.2859710994415],[-76.60908227074577,39.28597208369403],[-76.60905403540988,39.28597306613825],[-76.60902580121225,39.2859740521826],[-76.60899756696436,39.2859750472275],[-76.60896933263132,39.28597605757829],[-76.60894110054117,39.28597708144125],[-76.60891286841029,39.28597811250336],[-76.60888463623911,39.28597915076461],[-76.60885640519119,39.28598019532817],[-76.60882817411763,39.28598124438865],[-76.6087999430186,39.28598229794614],[-76.60877171305285,39.28598335600435],[-76.60874355684012,39.28598449176694],[-76.60874152883575,39.28596255777843],[-76.60873990648085,39.28594063054532],[-76.60873791195795,39.28591872098858],[-76.60873585598534,39.28589681482991],[-76.60873379769083,39.28587490956417],[-76.60873170577949,39.28585300508691],[-76.60872963357345,39.2858311006752],[-76.6087275729648,39.28580919540121],[-76.60872551583947,39.28578728923777],[-76.60872346335164,39.2857653830897],[-76.60872140738775,39.28574347692978],[-76.60871934678418,39.28572157165505],[-76.60871729198195,39.28569966549868],[-76.60871525224917,39.28567775939234],[-76.60871323687297,39.28565585066466],[-76.6087112469978,39.28563394202176],[-76.6087092733608,39.28561203163113],[-76.60870730784339,39.28559012036668],[-76.60870534116329,39.28556820999899],[-76.60870336521178,39.28554629960021],[-76.60870137187037,39.28552439004406],[-76.60869936113919,39.28550248133055],[-76.60869734576796,39.28548057350216],[-76.60869532576177,39.2854586656582],[-76.60869330227963,39.28543675780244],[-76.60869127647547,39.28541485083959],[-76.60868924835945,39.285392942968],[-76.60868722023974,39.28537103599703],[-76.60868519212625,39.28534912812511],[-76.60868316516813,39.28532722115767],[-76.60868114053444,39.28530531329697],[-76.60867911822002,39.28528340544391],[-76.60867710170217,39.28526149760987],[-76.60867508866778,39.28523958888652],[-76.6086730825841,39.28521768108697],[-76.60867108346596,39.28519577150883],[-76.60866909709893,39.28517386197302],[-76.60866712696486,39.28515195159041],[-76.60866516958686,39.28513004034927],[-76.60866322148745,39.28510812823818],[-76.60866128034358,39.28508621615001],[-76.60865934151911,39.28506430406937],[-76.60865740269587,39.28504239198861],[-76.60865546155581,39.28502047989995],[-76.60865351346239,39.28499856778795],[-76.60865156072903,39.28497665656106],[-76.60864960684272,39.28495474442935],[-76.60864765179358,39.28493283319438],[-76.60864570022291,39.2849109219709],[-76.60864375445372,39.28488900986574],[-76.60864181448096,39.28486709777965],[-76.608639884946,39.28484518482745],[-76.60863796700777,39.28482327101301],[-76.60863610356155,39.28480135467756],[-76.60863430736188,39.28477943496299],[-76.60863251695875,39.28475751526753],[-76.6086306743889,39.28473559719961],[-76.60862871702851,39.28471368685589],[-76.60862660894699,39.28469178411679],[-76.60862438608014,39.28466988820108],[-76.60862209712352,39.2846479965688],[-76.60861979310049,39.28462610488611],[-76.60861752154239,39.28460421150991],[-76.60861533578083,39.28458231391556],[-76.60861345727521,39.28456039842877],[-76.60861054823617,39.28453871370618],[-76.6085925621341,39.28452224099689],[-76.60856586219641,39.28451499277352],[-76.60853941184698,39.28450725536148],[-76.60851298027201,39.28449947747174],[-76.60848653933564,39.28449171665925],[-76.60846006439509,39.28448402778849],[-76.6084335601307,39.28447640276793],[-76.6084070394662,39.28446881011413],[-76.60838051059973,39.28446123454147],[-76.60835398172378,39.28445366166503],[-76.6083274587285,39.28444607438992],[-76.6083009486426,39.28443845922828],[-76.60827444911335,39.28443082247759],[-76.60824795428562,39.28442317492734],[-76.60822145945343,39.28441552917258],[-76.60819495759827,39.28440789689989],[-76.60816844285002,39.28440029160092],[-76.60814191050761,39.28439272497005],[-76.60811535471109,39.28438520869756],[-76.60808877312243,39.28437774637872],[-76.60806217044247,39.28437032631924],[-76.6080355501784,39.28436294312627],[-76.60800891583207,39.2843555923077],[-76.60798226859221,39.28434826846279],[-76.60795561312,39.28434096710339],[-76.60792895176826,39.28433368193203],[-76.60790228802956,39.28432641025807],[-76.60787657186115,39.28432951491453],[-76.60787740568804,39.28435103239436],[-76.60787962251896,39.28437292830691],[-76.60788179644652,39.28439482767914],[-76.6078839657391,39.28441672703566],[-76.60788613619212,39.28443862639592],[-76.6078882799783,39.28446052746843],[-76.60789038550682,39.28448243021467],[-76.60789247132294,39.28450433469636],[-76.60789455250884,39.28452623826171],[-76.60789664296371,39.28454814275855],[-76.60789875661102,39.28457004553111],[-76.60790090504598,39.28459194571725],[-76.60790308478708,39.28461384420622],[-76.60790527960224,39.28463574184469],[-76.60790747789585,39.28465763949442],[-76.60790966575445,39.28467953800995],[-76.60791182926907,39.28470143734476],[-76.60791395568022,39.28472333925782],[-76.60791597427007,39.28474524621544],[-76.60791787691046,39.28476716089265],[-76.60791979230656,39.28478907471152],[-76.60792182480884,39.28481098171503],[-76.60792391064915,39.28483288529333],[-76.60792602199517,39.28485478805575],[-76.60792814841528,39.28487668996766],[-76.60793028179104,39.28489859190252],[-76.60793241169584,39.28492049292488],[-76.60793455551087,39.28494239399341],[-76.60793671672305,39.28496429331837],[-76.60793887445443,39.28498619353218],[-76.60794101247797,39.28500809458092],[-76.60794310992075,39.28502999819632],[-76.60794516330523,39.28505190436669],[-76.60794718770958,39.28507381134096],[-76.60794919356012,39.28509572005461],[-76.6079511901343,39.28511762963788],[-76.60795318671468,39.28513953832029],[-76.60795519256887,39.28516144703342],[-76.60795721349716,39.28518335489593],[-76.60795923558581,39.28520526276216],[-76.6079612611528,39.28522717063974],[-76.60796329715771,39.28524907765127],[-76.60796534708268,39.28527098290756],[-76.60796741671314,39.28529288822941],[-76.6079695002585,39.28531479269684],[-76.60797159424204,39.285336696298],[-76.607973694022,39.28535859991837],[-76.6079757949673,39.28538050264173],[-76.60797789243183,39.28540240625409],[-76.60797998294323,39.28542430984298],[-76.60798206301922,39.28544621429764],[-76.60798412570038,39.28546812049557],[-76.6079861628834,39.2854900266083],[-76.60798815832098,39.28551193618455],[-76.6079901282553,39.28553384657625],[-76.60799208891328,39.28555575783761],[-76.60799406000913,39.28557766823279],[-76.60799605892879,39.28559957781999],[-76.60799809496011,39.28562148392769],[-76.60800014373768,39.28564339097856],[-76.60800220063983,39.28566529625478],[-76.60800426217943,39.28568720154637],[-76.60800632951589,39.28570910685712],[-76.60800840033075,39.2857310121793],[-76.60801047347007,39.28575291660825],[-76.60801254660566,39.28577482193773],[-76.60801461974756,39.28579672636633],[-76.60801668940857,39.28581863168393],[-76.60801875675253,39.28584053699361],[-76.60802081946167,39.28586244228756],[-76.60802287521247,39.28588434845899],[-76.60802492516916,39.2859062546108],[-76.60802696933175,39.28592816074309],[-76.60802901117742,39.28595006686753],[-76.60803104954223,39.28597197388091],[-76.60803308674919,39.28599388089026],[-76.60803512279828,39.28601578789555],[-76.6080371611667,39.28603769490841],[-76.60803920069563,39.28605960192497],[-76.60804123791243,39.28608150803283],[-76.60804327628479,39.28610341504514],[-76.60804531234018,39.28612532204955],[-76.60804734955593,39.28614722905764],[-76.60804938677275,39.2861691360656],[-76.60805142515014,39.28619104307711],[-76.60805346469269,39.28621294919171],[-76.60805550654997,39.28623485621456],[-76.60805755189044,39.28625676234806],[-76.60805959839145,39.28627866848524],[-76.60806164721176,39.28630057463008],[-76.60806369719249,39.28632248077856],[-76.60806574485144,39.28634438781985],[-76.60806779019823,39.28636629395245],[-76.60806983322817,39.28638820007714],[-76.60807187857273,39.28641010711017],[-76.60807392392346,39.28643201324234],[-76.60807596811638,39.28645391937036],[-76.60807800998732,39.28647582639121],[-76.60808004722325,39.28649773339644],[-76.60808207866481,39.28651964038217],[-76.60808410314814,39.28654154824531],[-76.60807667120642,39.28655681387193],[-76.60804789597651,39.28655728624438],[-76.60801966458192,39.28655834952231],[-76.60799143865316,39.28655947226193],[-76.607963210515,39.28656057517064],[-76.607934978118,39.28656160960049],[-76.60790674357598,39.28656261248979],[-76.60787850911798,39.28656360005962],[-76.60785027350012,39.28656458761882],[-76.60782203791626,39.28656556886604],[-76.60779380241138,39.28656653569453],[-76.60776556685586,39.28656751152372],[-76.60773733229937,39.28656851617369],[-76.60770910097511,39.28656956496513],[-76.6076808706797,39.28657063717295],[-76.60765264141797,39.28657173189644],[-76.60762441432915,39.28657285274254],[-76.60759619055212,39.28657400331797],[-76.60757612588611,39.28656821645746],[-76.60757523520233,39.28655929414404],[-76.6075739415496,39.28654631795965],[-76.60757183838061,39.28652441432816],[-76.60756973868504,39.28650251160898],[-76.60756764247333,39.28648060800034],[-76.60756555089901,39.28645870440712],[-76.6075634639674,39.28643679992844],[-76.60756138283249,39.28641489546894],[-76.60755930749427,39.28639299102861],[-76.60755725071276,39.28637108484853],[-76.60755521943747,39.28634917785274],[-76.6075531951228,39.28632726997935],[-76.6075511626909,39.28630536297931],[-76.60754910359128,39.28628345769156],[-76.60754700855126,39.28626155408511],[-76.60754489032097,39.28623965220251],[-76.60754275702385,39.28621775026927],[-76.60754061445053,39.2861958492058],[-76.6075384695551,39.28617394903505],[-76.60753632582535,39.28615204796721],[-76.60753419021025,39.28613014692631],[-76.60753206735154,39.28610824502714],[-76.60752996188523,39.28608634228515],[-76.60752787033915,39.28606443778785],[-76.6075257903803,39.28604253422993],[-76.60752551876494,39.28603967070273],[-76.60752371854625,39.2860206288974],[-76.6075216548271,39.28599872359188],[-76.60751959575039,39.28597681740082],[-76.60751754246537,39.28595491212978],[-76.60751549266416,39.28593300596935],[-76.6075134498232,39.28591109893127],[-76.6075114116202,39.28588919190853],[-76.60750937689556,39.28586728489724],[-76.60750734564928,39.28584537789735],[-76.60750531440452,39.28582347089731],[-76.60750328200167,39.28580156389319],[-76.60750124728202,39.28577965688111],[-76.60749920908634,39.28575774985729],[-76.60749716509179,39.2857358437147],[-76.60749511414386,39.28571393754869],[-76.60749305160158,39.28569203224447],[-76.60749097051027,39.28567012777886],[-76.60748887666529,39.28564822417126],[-76.60748677818556,39.2856263205479],[-76.60748467970693,39.28560441692444],[-76.60748258934336,39.28558251332787],[-76.6074805117356,39.285560608873],[-76.60747845500258,39.28553870268614],[-76.60747641682084,39.28551679566036],[-76.60747438907232,39.28549488866925],[-76.60747236480691,39.28547298078889],[-76.60747033821978,39.2854510738013],[-76.6074683000431,39.28542916677475],[-76.60746624447674,39.28540726059075],[-76.60746416572027,39.28538535613056],[-76.60746207073306,39.28536345251668],[-76.60745996531047,39.28534154976857],[-76.60745785757112,39.28531964701248],[-76.60745575563344,39.28529774337489],[-76.60745366760563,39.28527583978359],[-76.60745160045262,39.28525393446029],[-76.60744956112832,39.28523202742831],[-76.60744755310525,39.28521011959997],[-76.60744556595643,39.28518821003973],[-76.60744359620503,39.28516629873593],[-76.60744163920432,39.28514438747452],[-76.60743969263655,39.28512247624776],[-76.60743842267838,39.28510815980193],[-76.6074377495522,39.28510056413174],[-76.60743580762795,39.28507865201946],[-76.60743386338696,39.28505673989916],[-76.60743191219277,39.28503482775559],[-76.60742994939902,39.28501291737444],[-76.60742797385687,39.28499100695059],[-76.60742599252067,39.28496909650723],[-76.60742400306722,39.28494718693723],[-76.60742200665567,39.28492527824463],[-76.60741999981371,39.28490336951701],[-76.6074179825366,39.28488146165502],[-76.60741595366994,39.28485955375416],[-76.60741391552205,39.28483764762363],[-76.60741187042606,39.28481574056893],[-76.60740981488992,39.28479383528063],[-76.60740774660545,39.28477192994958],[-76.60740566440836,39.2847500254726],[-76.6074035648216,39.28472812183811],[-76.60740145827702,39.28470621908092],[-76.60739935057468,39.28468431631966],[-76.60739724287342,39.28466241355824],[-76.60739513169638,39.28464051078499],[-76.60739301472537,39.2846186079923],[-76.60739088963233,39.28459670697367],[-76.60738875527306,39.28457480502321],[-76.6073866081556,39.28455290483139],[-76.60738444828985,39.28453100459682],[-76.60738227218862,39.28450910610926],[-76.60738007753879,39.28448720846035],[-76.60737786549963,39.28446531165383],[-76.60737563606601,39.28444341659052],[-76.60737339156579,39.28442152147674],[-76.60737113546675,39.28439962812539],[-76.60736887009662,39.28437773474292],[-76.60736659545545,39.28435584132931],[-76.60736431501522,39.28433394879688],[-76.60736203225346,39.28431205715723],[-76.60735974718013,39.28429016460885],[-76.607357462103,39.28426827296112],[-76.60735518050954,39.28424638042407],[-76.60735290819493,39.28422448701708],[-76.60735076465096,39.28420257332279],[-76.60734678971042,39.28418088049855],[-76.6073327438042,39.28416208148539],[-76.6072971198885,39.2841478123274],[-76.6072707309177,39.28413992440584],[-76.60724439691688,39.28413194838748],[-76.60721806173795,39.28412397686307],[-76.60719173243,39.28411599274167],[-76.6071654160171,39.28410798343607],[-76.60713911953356,39.28409993455768],[-76.6071128382881,39.28409185599926],[-76.60708656407792,39.28408376394697],[-76.60706028753083,39.28407567638478],[-76.60703400982548,39.28406758971346],[-76.6070077344692,39.28405949854037],[-76.606981460278,39.28405140736526],[-76.60695518375965,39.28404331887867],[-76.60692890373033,39.28403523758054],[-76.60690262370684,39.28402715627657],[-76.60687634955457,39.28401906237553],[-76.60685007774146,39.28401096577429],[-76.60682380242713,39.28400287455985],[-76.60679752008467,39.2839947977282],[-76.60677122603273,39.28398674337049],[-76.60674491557559,39.28397872228017],[-76.60671858754381,39.28397073625468],[-76.6066922455845,39.28396275468052],[-76.60666589077158,39.28395479287414],[-76.60663951484226,39.28394687783069],[-76.60661311301493,39.28393903565625],[-76.60658668050897,39.28393129245696],[-76.60655971399889,39.28392516343008],[-76.60653378700145,39.28393223224087],[-76.60651846167286,39.28395043574852],[-76.60651814626733,39.28397219439948],[-76.60652047164763,39.28399408530061],[-76.60652270775756,39.28401598040642],[-76.60652486038731,39.28403788063684],[-76.60652683098785,39.28405979106657],[-76.6065286995582,39.2840817074597],[-76.60653053798441,39.28410362555321],[-76.60653240888024,39.284125541053],[-76.60653437484925,39.28414745146643],[-76.60653650430079,39.28416935251894],[-76.6065387682433,39.28419124681567],[-76.60654106233775,39.28421313851089],[-76.606543279906,39.28423503535418],[-76.60654532936317,39.28425694064185],[-76.60654724432152,39.2842788544864],[-76.60654909319516,39.28430077171252],[-76.60655093743352,39.28432268892291],[-76.60655284080501,39.28434460272818],[-76.60655481605886,39.28436651317097],[-76.60655681334097,39.28438842278656],[-76.60655882570205,39.28441033065101],[-76.60656084617773,39.28443223854237],[-76.60656286665466,39.28445414643369],[-76.60656488133765,39.28447605430527],[-76.60656688326705,39.28449796303477],[-76.6065688620068,39.28451987348795],[-76.60657078973412,39.28454178647243],[-76.60657268731715,39.28456370115723],[-76.60657459417884,39.28458561497224],[-76.60657654741905,39.28460752624007],[-76.60657852616484,39.28462943669234],[-76.60658051534828,39.28465134627871],[-76.60658251381044,39.28467325499516],[-76.60658451922815,39.28469516373472],[-76.60658652580621,39.28471707247802],[-76.60658853354937,39.28473898032429],[-76.6065905424481,39.28476088907501],[-76.60659256526161,39.28478279697131],[-76.60659461474496,39.28480470315525],[-76.60659671408403,39.28482660680379],[-76.6065988574889,39.28484850699657],[-76.6066009997308,39.28487040808611],[-76.60660309443759,39.28489231171847],[-76.60660511958207,39.28491421872078],[-76.60660710878166,39.28493612830485],[-76.6066090794274,39.28495803962808],[-76.60661104776135,39.2849799500426],[-76.60661303232847,39.2850018596106],[-76.60661503312849,39.28502376833198],[-76.60661703508411,39.28504567795779],[-76.60661904168713,39.28506758579754],[-76.60662105639966,39.28508949456499],[-76.60662307923211,39.28511140245865],[-76.60662511598457,39.28513330859729],[-76.6066271921514,39.28515521396687],[-76.60662929615229,39.2851771167273],[-76.60663139319503,39.28519902036501],[-76.60663345197986,39.28522092567585],[-76.60663543423745,39.2852428361349],[-76.6066373376595,39.28526474993281],[-76.60663921905056,39.28528666545827],[-76.60664113638897,39.28530857840164],[-76.60664310010115,39.28533048969862],[-76.60664507541038,39.28535240013341],[-76.60664708318482,39.28537430887524],[-76.60664914661578,39.28539621420028],[-76.60665127614001,39.28541811524256],[-76.6066534462431,39.28544001461914],[-76.60665564185722,39.28546191227932],[-76.60665785254542,39.28548380908899],[-76.60666006439432,39.28550570590246],[-76.60666226465375,39.28552760267688],[-76.60666444055892,39.28554950207189],[-76.6066665805242,39.28557140314786],[-76.6066686903449,39.28559330592434],[-76.60667077929864,39.28561520953135],[-76.60667285781687,39.28563711400407],[-76.6066749363364,39.28565901847661],[-76.60667702297079,39.28568092297613],[-76.60667912932084,39.28570282574002],[-76.60668126813619,39.28572472681081],[-76.60668344637648,39.28574662531118],[-76.60668564548648,39.28576852298053],[-76.60668784575697,39.28579042065346],[-76.60669002864255,39.28581231826812],[-76.60669217210096,39.28583421935353],[-76.6066942587508,39.28585612295089],[-76.60669629554164,39.2858780299842],[-76.6066982975512,39.28589993870233],[-76.606700282166,39.28592184916356],[-76.6067022644688,39.28594375871618],[-76.60670426184086,39.28596566831903],[-76.60670628588811,39.28598757530869],[-76.60670832384533,39.28600948234479],[-76.60671036992257,39.28603138850716],[-76.60671241947828,39.28605329468094],[-76.60671446787607,39.28607520085063],[-76.60671651163389,39.28609710790542],[-76.60671854727943,39.28611901493289],[-76.60672057828971,39.28614092194462],[-76.60672261625595,39.28616282897947],[-76.60672465074616,39.2861847360025],[-76.60672667248271,39.28620664388335],[-76.6067286698747,39.28622855258333],[-76.60673063363937,39.28625046387283],[-76.60673253943605,39.28627237767041],[-76.60673436291411,39.28629429569605],[-76.60673614233285,39.28631621627616],[-76.60673792291182,39.28633813686013],[-76.60673975102951,39.28636005490072],[-76.60674166958684,39.28638196783934],[-76.60674365191028,39.28640387828894],[-76.60674566438621,39.28642578613707],[-76.6067477023684,39.28644769316957],[-76.6067497565839,39.28646959935558],[-76.60675182239665,39.28649150467946],[-76.60675389285218,39.28651340911787],[-76.60675596098552,39.28653531444905],[-76.60675801984257,39.28655722064985],[-76.60676010769315,39.28657912424518],[-76.60676162725457,39.28660066833579],[-76.6067332140863,39.28660189643623],[-76.60670497737321,39.28660286660203],[-76.60669018152797,39.28660345390244],[-76.60667675025681,39.28660398722041],[-76.60664853830323,39.28660529974489],[-76.60662032954602,39.28660666271595],[-76.6065921229262,39.28660805811482],[-76.60656391623009,39.28660946701807],[-76.60653571071722,39.28661087141467],[-76.60650750301983,39.28661225147673],[-76.60647929206905,39.28661359098676],[-76.60645107674554,39.28661488273501],[-76.60642285925768,39.28661614654568],[-76.60639464179378,39.28661740584586],[-76.60636642654718,39.28661868316198],[-76.60633821455204,39.28662000101635],[-76.60631004524082,39.28662177299078],[-76.6062973444645,39.28660972778058],[-76.60629527414739,39.28658782333477],[-76.60629328848012,39.28656591286705],[-76.60629131208162,39.28654400333112],[-76.60628934032569,39.28652209290966],[-76.60628737089418,39.28650018159509],[-76.60628539682264,39.28647827116564],[-76.60628341695191,39.28645636161724],[-76.6062814220142,39.28643445201817],[-76.60627941779984,39.28641254328863],[-76.60627741822337,39.28639063457444],[-76.60627541864798,39.28636872586008],[-76.60627341791985,39.28634681624094],[-76.60627141718774,39.28632490752228],[-76.60626941413891,39.28630299879575],[-76.60626741225022,39.28628109007288],[-76.60626540920379,39.286259181346],[-76.60626340731757,39.28623727262282],[-76.60626140775098,39.2862153639072],[-76.60625940819041,39.28619345429066],[-76.60625741094432,39.28617154558245],[-76.6062554160227,39.28614963598113],[-76.60625342341535,39.2861277272881],[-76.60625143545066,39.28610581770978],[-76.60624944981026,39.28608390723821],[-76.60624747112071,39.28606199769052],[-76.60624552490158,39.28604008554929],[-76.6062436041885,39.28601817259261],[-76.60624169159497,39.28599625876214],[-76.60623976972515,39.28597434580118],[-76.606237828147,39.28595243367469],[-76.60623588077496,39.28593052152874],[-76.60623392992176,39.28590861027159],[-76.60623197907455,39.2858866981135],[-76.60623002474664,39.28586478684439],[-76.60622807041972,39.28584287557506],[-76.60622611609399,39.2858209643056],[-76.60622416061037,39.28579905303211],[-76.60622220629227,39.2857771408615],[-76.60622025660642,39.28575522960706],[-76.60621831504051,39.28573331747884],[-76.60621636536207,39.2857114053233],[-76.60621439481174,39.28568949489917],[-76.60621238948018,39.28566758615972],[-76.60621036327657,39.28564567915165],[-76.60620832200622,39.28562377209293],[-76.60620627145954,39.28560186590357],[-76.60620421511382,39.28557996059551],[-76.6062021599332,39.2855580543903],[-76.6062001082314,39.28553614819663],[-76.60619805073013,39.28551424288406],[-76.60619598859415,39.28549233755582],[-76.60619392645938,39.28547043222736],[-76.60619187128519,39.2854485260213],[-76.60618982654412,39.28542661985006],[-76.60618780035921,39.28540471193927],[-76.60618579156679,39.28538280318589],[-76.60618379552535,39.28536089447505],[-76.6061818076037,39.28533898489049],[-76.60617982432444,39.28531707442056],[-76.6061778549552,39.28529516399713],[-76.6061758948648,39.28527325270381],[-76.6061739382529,39.285251341422],[-76.60617197932385,39.2852294301322],[-76.60617001111855,39.28520751971192],[-76.60616802668271,39.28518561013781],[-76.60616602022066,39.28516370139044],[-76.60616398361408,39.2851417943433],[-76.60616190410832,39.28511988985445],[-76.60615979445818,39.2850979870659],[-76.60615766741832,39.28507608511962],[-76.60615553921582,39.28505418406997],[-76.60615342261518,39.28503228125752],[-76.6061513326793,39.28501037763363],[-76.60614928216792,39.28498847143941],[-76.60614728730798,39.28496656272917],[-76.60614533535454,39.28494465055971],[-76.60614340658837,39.28492273756707],[-76.60614148246002,39.28490082458974],[-76.6061395432598,39.28487891246241],[-76.60613757971545,39.2848570011541],[-76.60613561153113,39.28483509073086],[-76.60613363987093,39.28481318029569],[-76.60613166357562,39.28479126984488],[-76.60612968264036,39.28476936027904],[-76.60612769706998,39.28474745069754],[-76.60612571034189,39.28472554111192],[-76.60612372477891,39.2847036306293],[-76.60612173689422,39.28468172103945],[-76.60611974436938,39.28465981233462],[-76.60611774373753,39.28463790270166],[-76.60611573150622,39.28461599483114],[-76.6061137053675,39.28459408691384],[-76.60611163864293,39.28457218246331],[-76.60610953134777,39.28455027877735],[-76.60610741708935,39.28452837686932],[-76.6061053283466,39.28450647234439],[-76.6061033045274,39.28448456533472],[-76.60610135260082,39.28446265316138],[-76.6060994099477,39.28444074101898],[-76.60609740584609,39.28441883227328],[-76.6060952730456,39.28439693120279],[-76.60609301618268,39.28437503782295],[-76.6060907222264,39.28435314521921],[-76.60608848159791,39.28433125099264],[-76.60608637199388,39.28430934819762],[-76.60608435630431,39.2842874403128],[-76.60608239279358,39.28426552899974],[-76.60608044087449,39.28424361772534],[-76.6060784622933,39.28422170726217],[-76.6060764303771,39.28419980022292],[-76.60607436136257,39.28417789486063],[-76.60607227727648,39.2841559903484],[-76.6060702013052,39.28413408586319],[-76.60606815548034,39.28411217967741],[-76.60606616067508,39.28409027005945],[-76.6060642319516,39.28406835796068],[-76.60606234961153,39.28404644241421],[-76.60606048698139,39.28402452603289],[-76.6060586173981,39.28400260962803],[-76.60605671534759,39.28398069581651],[-76.60605475648998,39.28395878451654],[-76.60605273850223,39.28393687662106],[-76.60605068689324,39.28391497041425],[-76.60604862369011,39.28389306506907],[-76.60604657440183,39.28387115886969],[-76.60604456221425,39.28384925099297],[-76.60604260452314,39.28382733969588],[-76.60604068741463,39.28380542583234],[-76.60603879581143,39.28378351115345],[-76.60603691812288,39.28376159562027],[-76.60603504391253,39.28373968009858],[-76.60603315927204,39.28371776454173],[-76.60603123636928,39.28369585155861],[-76.60601520298061,39.2836804154689],[-76.605990881878,39.28366922749571],[-76.60596653860641,39.28365806736672],[-76.60594220467472,39.28364689645488],[-76.60591787192477,39.28363572283955],[-76.60589352749687,39.28362456629438],[-76.60586915505449,39.28361344658142],[-76.6058447370821,39.28360238706157],[-76.6058202081772,39.28359147669087],[-76.60579561972354,39.28358064628296],[-76.60577107448724,39.28356975746537],[-76.60574666704642,39.28355868534961],[-76.60572237754734,39.28354745689195],[-76.60569813010189,39.28353617092162],[-76.6056738546368,39.28352492268409],[-76.60564951962277,39.28351375440949],[-76.60562516711578,39.28350260678857],[-76.6056008052639,39.28349147354331],[-76.60557643525132,39.28348035017394],[-76.60555206058008,39.28346923218839],[-76.60552768240441,39.28345812049129],[-76.6055032855564,39.28344703304696],[-76.60547888171189,39.28343595458161],[-76.60545448605824,39.28342486352795],[-76.60543011608647,39.28341374102872],[-76.6054057753137,39.28340257988974],[-76.6053814520693,39.28339139448394],[-76.60535713933936,39.28338019559691],[-76.60533282895508,39.28336899310967],[-76.60530851507123,39.28335779601011],[-76.60528418951955,39.28334661417925],[-76.6052598452957,39.28333545660107],[-76.60523549407502,39.28332430800193],[-76.60521114052901,39.28331316209209],[-76.60518678232428,39.28330202156608],[-76.605162415954,39.28329089181667],[-76.60513804024363,39.28327977554225],[-76.60511365169125,39.28326867723469],[-76.605089249123,39.28325759959243],[-76.60506471148226,39.28324663498694],[-76.60504334450579,39.28325346118319],[-76.605042741166,39.28325690547099],[-76.60504219979981,39.28325962755564],[-76.60504171986729,39.28326234894632],[-76.60504222521057,39.28326505653518],[-76.60504276417602,39.28326776243557],[-76.60504332284006,39.28327046930305],[-76.60504390005885,39.28327317443134],[-76.60504449118609,39.2832758796064],[-76.6050450939038,39.28327858482044],[-76.6050457070528,39.28328129006944],[-76.60504632715607,39.2832839953419],[-76.60504695189562,39.28328670062999],[-76.60504757779407,39.28328940592186],[-76.6050482036928,39.28329211121379],[-76.60504882726825,39.2832948173987],[-76.60504944388471,39.28329752446088],[-76.60505005238792,39.2833002314959],[-76.60505065045476,39.28330293939645],[-76.60505123461324,39.28330564725035],[-76.60505180833033,39.28330835687059],[-76.60505237973456,39.28331106558233],[-76.60505294997473,39.2833137751909],[-76.60505352021478,39.28331648479935],[-76.60505409045504,39.28331919440794],[-76.60505465837721,39.28332190400868],[-76.60505522629963,39.28332461360946],[-76.60505579421684,39.28332732411088],[-76.60505636098006,39.28333003370774],[-76.60505692657928,39.28333274420142],[-76.6050574921837,39.28333545379432],[-76.60505805778303,39.28333816428806],[-76.60505862222847,39.28334087387702],[-76.60505918550993,39.28334358436291],[-76.60505974879116,39.28334629484876],[-76.6050603120727,39.28334900533459],[-76.6050608741952,39.28335171581656],[-76.60506143631771,39.28335442629849],[-76.60506199728123,39.2833571367766],[-76.60506255939886,39.28335984815924],[-76.60506311920334,39.28336255863336],[-76.60506368016698,39.28336526911146],[-76.60506423997182,39.28336797958553],[-76.60506479977147,39.2833706909604],[-76.60506535957612,39.28337340143453],[-76.60506591821682,39.28337611280547],[-76.60506647686269,39.28337882327571],[-76.60506703550344,39.28338153464669],[-76.60506759414946,39.28338424511688],[-76.60506815279027,39.2833869564878],[-76.60506871143116,39.28338966785881],[-76.60506926891821,39.28339237832508],[-76.6050698264001,39.28339508969213],[-76.60507038388224,39.28339780105912],[-76.60507094252829,39.28340051152928],[-76.60507150001045,39.2834032228963],[-76.60507205749256,39.28340593426333],[-76.60507261497983,39.28340864472962],[-76.60507317130293,39.28341135609272],[-76.60507372762625,39.28341406745584],[-76.60507428394962,39.28341677881895],[-76.60507483911394,39.28341949017811],[-76.60507539311924,39.28342220153341],[-76.60507594712456,39.28342491288871],[-76.60507650112493,39.2834276251447],[-76.60507705397133,39.28343033649615],[-76.6050776068177,39.28343304784753],[-76.60507815965913,39.28343576009961],[-76.60507871134656,39.28343847144708],[-76.60507926302921,39.28344118369534],[-76.60507981471669,39.28344389504277],[-76.60508036639924,39.28344660729092],[-76.60508091692292,39.28344931953526],[-76.6050814674515,39.28345203087883],[-76.60508201797528,39.28345474312308],[-76.60508256849893,39.28345745536737],[-76.6050831190278,39.28346016671092],[-76.60508366955153,39.28346287895523],[-76.60508422007547,39.28346559119945],[-76.60508477060424,39.28346830254301],[-76.60508532112831,39.28347101478725],[-76.60508587165218,39.28347372703156],[-76.60508642334021,39.28347643837897],[-76.60508697386435,39.28347915062317],[-76.60508752438838,39.28348186286745],[-76.60508807607671,39.28348457421482],[-76.60508862775984,39.28348728646297],[-76.6050891794481,39.28348999781037],[-76.6050897322904,39.28349271006235],[-76.6050902851378,39.28349542141363],[-76.60509083798536,39.28349813276493],[-76.60509139082784,39.2835008450169],[-76.6050919448344,39.28350355637207],[-76.60509250000007,39.28350626773111],[-76.60509305516564,39.28350897909013],[-76.60509361033141,39.28351169044915],[-76.60509416665629,39.28351440181211],[-76.6050947229812,39.28351711317504],[-76.60509528047005,39.28351982364112],[-76.60509583911318,39.28352253501184],[-76.60509639776119,39.28352524548175],[-76.60509695756329,39.28352795685632],[-76.60509751852956,39.28353066733413],[-76.60509808065493,39.28353337781574],[-76.60509864278029,39.28353608829735],[-76.6050992060648,39.28353879878288],[-76.60509976934934,39.28354150926837],[-76.60510033379283,39.28354421975776],[-76.60510089940061,39.28354692935029],[-76.60510146384419,39.28354963983975],[-76.60510203061114,39.28355234943617],[-76.60510259621381,39.28355505992942],[-76.60510316298068,39.28355776952589],[-76.60510372974274,39.283560480023],[-76.60510429650964,39.28356318961946],[-76.60510486327665,39.28356589921589],[-76.60510543003883,39.28356860971298],[-76.60510599796474,39.28357131931332],[-76.60510656473208,39.2835740289097],[-76.6051071314942,39.28357673940682],[-76.60510769826135,39.28357944900323],[-76.60510826502376,39.28358215950038],[-76.60510883179107,39.2835848690967],[-76.60510939855835,39.28358757869308],[-76.60510996416188,39.28359028918629],[-76.60511052976516,39.28359299967955],[-76.60511109421464,39.28359570926811],[-76.6051116586592,39.28359841975738],[-76.60511222310355,39.28360113024669],[-76.60511278638911,39.28360384073208],[-76.60511334851566,39.28360655121357],[-76.60511391064217,39.28360926169512],[-76.60511447160971,39.28361197217265],[-76.6051150325773,39.2836146826503],[-76.60511559122676,39.28361739312007],[-76.60511614987142,39.28362010449062],[-76.60511670735694,39.2836228158572],[-76.60511726368352,39.28362552721995],[-76.60511781885118,39.28362823857876],[-76.60511837285974,39.28363094993371],[-76.60511892570928,39.28363366128469],[-76.60511947623573,39.28363637352869],[-76.60512002676238,39.28363908577264],[-76.60512057497075,39.28364179800884],[-76.60512112202031,39.28364451024105],[-76.60512166906985,39.28364722247332],[-76.60512221496039,39.28364993470172],[-76.6051227596871,39.28365264782691],[-76.60512330325959,39.28365536004753],[-76.6051238468271,39.28365807316879],[-76.60512438923578,39.28366078628619],[-76.6051249316443,39.28366349940356],[-76.60512547405305,39.28366621252093],[-76.6051260153028,39.28366892563449],[-76.60512655655756,39.28367163784719],[-76.60512709780717,39.28367435096069],[-76.60512763905702,39.28367706407415],[-76.60512818030669,39.28367977718759],[-76.60512872271572,39.28368249030496],[-76.60512926396568,39.28368520341848],[-76.60512980637458,39.28368791653581],[-76.60513034878372,39.28369062965316],[-76.60513089119274,39.28369334277047],[-76.605131434766,39.28369605499102],[-76.60513197949321,39.28369876811608],[-76.60513252422547,39.2837014803405],[-76.60513307011185,39.2837041934695],[-76.60513361716235,39.28370690570168],[-76.60513416421286,39.28370961793381],[-76.6051347135816,39.28371233017378],[-76.60513526410922,39.28371504241758],[-76.60513581464215,39.2837177537607],[-76.605136367488,39.28372046601229],[-76.605136921498,39.28372317736704],[-76.60513747782599,39.28372588872961],[-76.60513803415424,39.28372860009216],[-76.60513859164661,39.28373131055788],[-76.60513915029287,39.28373402192822],[-76.60513970894442,39.28373673239777],[-76.60514026990894,39.28373944377585],[-76.60514083087847,39.28374215425329],[-76.6051413918481,39.28374486473061],[-76.60514195397683,39.28374757521187],[-76.60514251726448,39.283750285697],[-76.60514308055235,39.28375299618212],[-76.60514364500435,39.2837557057704],[-76.60514421061029,39.28375841626329],[-76.60514477505735,39.28376112675236],[-76.60514534066841,39.28376383634451],[-76.60514590743372,39.28376654684129],[-76.60514647420389,39.28376925643732],[-76.60514704097415,39.28377196603341],[-76.6051476077396,39.28377467653018],[-76.60514817566897,39.28377738613008],[-76.60514874243935,39.28378009572614],[-76.60514931036381,39.28378280622679],[-76.6051498782933,39.28378551582671],[-76.60515044622286,39.28378822542665],[-76.6051510141525,39.28379093502653],[-76.60515158324122,39.28379364463029],[-76.6051521511661,39.28379635513092],[-76.60515271909581,39.28379906473086],[-76.60515328702557,39.2838017743307],[-76.60515385379637,39.28380448392668],[-76.6051544217212,39.28380719442728],[-76.60515498849222,39.28380990402329],[-76.60515555642215,39.28381261362313],[-76.6051561231881,39.28381532411984],[-76.60515668879997,39.28381803371192],[-76.6051572544071,39.28382074420475],[-76.60515782117814,39.28382345380065],[-76.6051583891083,39.28382616340048],[-76.6051589558746,39.28382887389724],[-76.605159524964,39.28383158350091],[-76.60516009289427,39.28383429310072],[-76.60516066198367,39.28383700270449],[-76.605161232232,39.28383971231207],[-76.60516180132171,39.28384242191581],[-76.60516237157017,39.28384513152336],[-76.60516294181885,39.28384784113095],[-76.60516351206756,39.28385055073858],[-76.6051640823163,39.28385326034614],[-76.60516465257011,39.28385596905298],[-76.60516522281897,39.28385867866053],[-76.60516579306764,39.28386138826815],[-76.60516636331656,39.28386409787565],[-76.60516693356554,39.28386680748321],[-76.60516750265548,39.2838695170869],[-76.60516807174544,39.28387222669054],[-76.60516864083552,39.28387493629423],[-76.6051692087665,39.28387764589392],[-76.60516977785159,39.28388035639831],[-76.60517034462357,39.28388306599421],[-76.60517091139582,39.28388577559006],[-76.60517147816293,39.28388848608661],[-76.60517204261708,39.28389119567465],[-76.60517260822519,39.28389390616726],[-76.60517317151533,39.28389661665221],[-76.60517373480558,39.28389932713704],[-76.60517429693657,39.28390203761808],[-76.60517485790868,39.28390474809508],[-76.60517541772202,39.28390745856822],[-76.6051759763711,39.28391016993822],[-76.60517653386634,39.28391288040362],[-76.60517709135642,39.28391559176976],[-76.60517764768765,39.28391830313189],[-76.60517820285985,39.2839210144903],[-76.60517875919118,39.28392372585245],[-76.60517931552234,39.28392643721465],[-76.60517987185375,39.28392914857685],[-76.60518042702611,39.28393185993511],[-76.60518098335746,39.28393457129727],[-76.60518153852992,39.28393728265557],[-76.60518209370241,39.28393999401383],[-76.60518264887496,39.28394270537207],[-76.60518320404753,39.28394541673035],[-76.60518375922015,39.28394812808861],[-76.60518431439262,39.28395083944687],[-76.60518486956532,39.2839535508051],[-76.60518542473807,39.28395626216334],[-76.60518597991091,39.28395897352158],[-76.60518653392467,39.28396168487594],[-76.60518708909756,39.28396439623413],[-76.60518764311139,39.28396710758847],[-76.60518819828435,39.28396981894669],[-76.60518875229326,39.28397253120171],[-76.60518930746615,39.28397524255993],[-76.60518986148037,39.2839779539143],[-76.60519041549442,39.2839806652686],[-76.6051909695083,39.28398337662291],[-76.60519152352248,39.28398608797715],[-76.60519207753165,39.2839888002322],[-76.60519263154607,39.28399151158647],[-76.60519318556034,39.28399422294076],[-76.60519373957443,39.28399693429504],[-76.6051942924299,39.28399964564542],[-76.60519484643933,39.28400235790043],[-76.60519540045377,39.28400506925468],[-76.60519595330915,39.28400778060507],[-76.60519650732365,39.28401049195929],[-76.60519706017418,39.28401320421042],[-76.60519761418877,39.28401591556467],[-76.60519816704432,39.28401862691502],[-76.60519872105405,39.28402133916995],[-76.60519927390969,39.28402405052029],[-76.60519982676537,39.2840267618706],[-76.60520038077517,39.28402947412559],[-76.60520093363098,39.2840321854759],[-76.60520148648702,39.28403489682623],[-76.60520203933785,39.28403760907726],[-76.60520259219375,39.2840403204276],[-76.60520314504974,39.2840430317779],[-76.6052036979007,39.2840457440289],[-76.60520425075678,39.28404845537921],[-76.60520480361299,39.28405116672952],[-76.60520535646415,39.28405387898051],[-76.6052059093203,39.28405659033079],[-76.60520646217152,39.28405930258175],[-76.60520701502776,39.28406201393209],[-76.60520756788404,39.28406472528234],[-76.60520812073538,39.2840674375333],[-76.60520867243288,39.28407014887966],[-76.60520922528927,39.28407286022991],[-76.6052097781407,39.28407557248089],[-76.60521033099725,39.28407828383115],[-76.60521088384876,39.28408099608216],[-76.60521143554647,39.28408370742841],[-76.60521198839811,39.28408641967943],[-76.60521254125477,39.2840891310296],[-76.60521309295237,39.28409184237594],[-76.60521364580416,39.28409455462693],[-76.60521419866116,39.28409726597714],[-76.60521475035387,39.28409997822421],[-76.6052153032108,39.28410268957438],[-76.6052158560677,39.28410540092457],[-76.60521640891965,39.28410811317546],[-76.60521696061775,39.28411082452174],[-76.60521751346984,39.28411353677267],[-76.60521806632691,39.28411624812283],[-76.605218618025,39.28411895946913],[-76.60521917087715,39.28412167171998],[-76.60521972373455,39.28412438307024],[-76.60522027542771,39.28412709531714],[-76.60522082828506,39.2841298066673],[-76.60522138113737,39.2841325189182],[-76.60522193399476,39.28413523026837],[-76.60522248569333,39.28413794161455],[-76.60522303854579,39.28414065386548],[-76.60522359140329,39.28414336521561],[-76.60522414426087,39.28414607656565],[-76.60522469711344,39.28414878881649],[-76.60522524997107,39.28415150016663],[-76.60522580166484,39.2841542124136],[-76.60522635452261,39.28415692376372],[-76.60522690738037,39.28415963511381],[-76.60522746023315,39.28416234736462],[-76.60522801309105,39.28416505871473],[-76.60522856594915,39.28416777006483],[-76.60522911880206,39.2841704823156],[-76.60522967166001,39.28417319366568],[-76.60523022567216,39.28417590592039],[-76.6052307785302,39.28417861727046],[-76.60523133138828,39.28418132862051],[-76.60523188424146,39.28418404087127],[-76.60523243709963,39.28418675222131],[-76.60523299111695,39.28418946357531],[-76.60523354397526,39.28419217492534],[-76.60523409682877,39.28419488717609],[-76.6052346508462,39.28419759853],[-76.6052352037046,39.28420030987998],[-76.6052357577171,39.2842030221347],[-76.60523631057562,39.2842057334847],[-76.60523686459322,39.28420844483862],[-76.60523741861086,39.28421115619248],[-76.60523797262354,39.28421386844715],[-76.60523852548224,39.28421657979717],[-76.60523907950001,39.28421929115097],[-76.60523963351783,39.28422200250485],[-76.60524018753067,39.28422471475948],[-76.60524074154863,39.28422742611335],[-76.60524129556656,39.28423013746722],[-76.60524184958453,39.28423284882108],[-76.60524240360257,39.28423556017491],[-76.60524295877973,39.28423827153265],[-76.60524351279282,39.2842409837873],[-76.60524406681104,39.28424369514114],[-76.60524462198832,39.28424640649884],[-76.60524517600655,39.28424911785267],[-76.60524573118393,39.2842518292104],[-76.60524628636112,39.28425454056811],[-76.60524684037955,39.28425725192191],[-76.60524739555703,39.28425996327962],[-76.60524795073458,39.28426267463733],[-76.60524850591216,39.28426538599505],[-76.60524906108978,39.28426809735269],[-76.60524961626744,39.28427080871038],[-76.60525017260404,39.28427352007197],[-76.6052507277818,39.28427623142967],[-76.60525128527776,39.28427894279509],[-76.60525184393767,39.28428165326376],[-76.60525240606987,39.28428436464479],[-76.6052529693712,39.28428707422819],[-76.60525353498554,39.28428978472017],[-76.60525410176399,39.28429249431532],[-76.60525466969678,39.284295204815],[-76.6052552387935,39.28429791441792],[-76.6052558090492,39.28430062402465],[-76.6052563793101,39.28430333273073],[-76.60525695072513,39.28430604234134],[-76.60525752329926,39.28430875195597],[-76.60525809587831,39.28431146066977],[-76.60525866729341,39.28431417028046],[-76.60525923986755,39.28431687989488],[-76.60525981128777,39.2843195886048],[-76.60526038270305,39.28432229821541],[-76.60526095411824,39.28432500782608],[-76.60526152321543,39.28432771742891],[-76.60526209231269,39.28433042703176],[-76.60525624798454,39.28433047585009],[-76.6051338312785,39.28434585566611],[-76.6049888257199,39.28436407336113],[-76.60475792807843,39.28439308127859],[-76.60472268452266,39.28421991730523],[-76.60461873210707,39.28370784542352],[-76.60459698488509,39.28361399837766],[-76.60458118864173,39.28354692399461],[-76.604572555069,39.28354687331321],[-76.60456784611851,39.28353225970918],[-76.60457336191435,39.28352688541406],[-76.60456898576602,39.28347855740107],[-76.6045539314355,39.28340835355881],[-76.60454011165142,39.28340009208228],[-76.60453745639815,39.28338779674623],[-76.60452184868241,39.28330979313587],[-76.60452127365657,39.28330690605845],[-76.604520737074,39.28330419205673],[-76.60452020048628,39.28330147895574],[-76.60451966622193,39.28329876496183],[-76.6045191307984,39.28329605096407],[-76.60451859537505,39.28329333696625],[-76.6045180587875,39.28329062386527],[-76.60451752104616,39.28328790985963],[-76.60451698098169,39.28328519674695],[-76.6045164374402,39.28328248362248],[-76.60451589041661,39.28327977138714],[-76.6045153387519,39.28327706003689],[-76.60451478245099,39.28327434867103],[-76.6045142157089,39.28327163907155],[-76.60451363505324,39.28326893032595],[-76.60451304395633,39.28326622334674],[-76.60451244705935,39.28326351724872],[-76.60451184668017,39.28326081203983],[-76.60451124630606,39.28325810593013],[-76.60451065288639,39.2832553998438],[-76.60451006643085,39.28325269197939],[-76.60450949388874,39.28324998326111],[-76.60450893874751,39.28324727189909],[-76.60450840448385,39.28324455790516],[-76.60450788877992,39.28324184127133],[-76.60450738467632,39.28323912287505],[-76.60450688637316,39.28323640359748],[-76.60450638922889,39.28323368432394],[-76.60450588860262,39.2832309659393],[-76.60450537753998,39.28322824842038],[-76.60450485139005,39.28322553445364],[-76.60450430436728,39.28322282221814],[-76.60450373182061,39.28322011440051],[-76.60450312679602,39.28321741097741],[-76.60450248698524,39.28321471013937],[-76.60450180658833,39.28321201276777],[-76.60450107979989,39.28320932064457],[-76.60450029963579,39.28320663915073],[-76.60449945796735,39.28320397096132],[-76.60449854897453,39.28320132056042],[-76.60449753668225,39.28319869593383],[-76.60449622500741,39.2831961333525],[-76.60449474390258,39.28319360803274],[-76.60449329874312,39.28319108013169],[-76.60449209373996,39.28318851070346],[-76.60449131571359,39.28318586164417],[-76.60449068758942,39.28318314373098],[-76.60449008985628,39.28318037998122],[-76.60448955253364,39.28317759121344],[-76.60448910914793,39.28317479285366],[-76.60448879321088,39.28317200302979],[-76.60448863591597,39.28316923986224],[-76.60448867193877,39.28316652058221],[-76.60448893363181,39.28316386331377],[-76.6044895865311,39.28316130554573],[-76.6044914528278,39.28315897975606],[-76.60449405083037,39.28315680055202],[-76.60449663481408,39.28315464111745],[-76.60449845442744,39.28315237281921],[-76.60449900285755,39.28314984262295],[-76.60449892156237,39.2831469608107],[-76.60449832631397,39.28314395926807],[-76.60449722378428,39.28314109653626],[-76.60449562180978,39.2831386302598],[-76.60449351548715,39.28313681623864],[-76.60449067260767,39.28313572575182],[-76.60448722308477,39.28313513314539],[-76.6044834453435,39.28313478534175],[-76.60447961666004,39.28313442745816],[-76.60447601545448,39.28313380731777],[-76.60447286097616,39.28313268335386],[-76.60446992847807,39.28313103589369],[-76.60446735402809,39.28312899060136],[-76.6044653768383,39.28312667528982],[-76.60446400783606,39.28312420889662],[-76.60446276334756,39.28312165374728],[-76.60446162588198,39.28311902869876],[-76.60446060462111,39.28311634999579],[-76.60445971104978,39.28311363659313],[-76.60445895550409,39.28311090563994],[-76.60445834947879,39.28310817428948],[-76.60445790446886,39.28310545969486],[-76.60445764129143,39.28310277003314],[-76.60445772635644,39.28309998606327],[-76.60445818260833,39.28309715019836],[-76.6044589805388,39.28309435781979],[-76.6044600871529,39.28309170609885],[-76.60446146945493,39.28308929220671],[-76.60446422786647,39.28308765400074],[-76.60446820416236,39.28308669006283],[-76.6044704094287,39.28308510133768],[-76.60447054919167,39.2830826931698],[-76.60447009679513,39.28308005601595],[-76.60446923372562,39.28307727696034],[-76.60446814494583,39.28307444309894],[-76.60446701309111,39.28307164332151],[-76.6044660185639,39.28306895119713],[-76.60446515770732,39.28306619106498],[-76.60446426577764,39.28306339119464],[-76.60446318552233,39.28306069157547],[-76.60446175735052,39.28305823579213],[-76.60445981469655,39.28305617100865],[-76.60445684917039,39.28305483510061],[-76.60445316569904,39.28305400300337],[-76.60444947749106,39.28305318890523],[-76.60444649427859,39.28305190698319],[-76.60444462800595,39.28304986317428],[-76.60444328891471,39.28304743741574],[-76.6044423128277,39.28304476426926],[-76.60444158674633,39.28304194604117],[-76.60444099533893,39.28303908773231],[-76.60444042677057,39.28303629075216],[-76.60443977899618,39.28303356376471],[-76.60443913972205,39.2830307674472],[-76.6044387102727,39.28302796463021],[-76.60443869773863,39.28302522356819],[-76.60443930918439,39.28302261701956],[-76.60444075798245,39.28302012588597],[-76.60444284391671,39.28301769634813],[-76.60444520427998,39.28301531457404],[-76.60444747404291,39.28301296762464],[-76.60444928933956,39.28301064166373],[-76.60445028746842,39.28300832195877],[-76.60445004906123,39.28300597106703],[-76.60444849770707,39.28300357341827],[-76.60444609181019,39.28300123324287],[-76.60444330364294,39.28299906202423],[-76.60444059853334,39.2829971694208],[-76.60443768923606,39.28299572741163],[-76.60443442110426,39.28299461657532],[-76.60443105400763,39.2829935855735],[-76.60442784428453,39.28299239296435],[-76.60442476055542,39.28299105395512],[-76.60442170836656,39.2829896709147],[-76.60441865268555,39.28298829056469],[-76.6043698979508,39.28298045006805],[-76.60437461773589,39.28296525569152],[-76.60427618223511,39.2829433409483],[-76.60400730490329,39.28288422035308],[-76.60400429274809,39.28288355804663],[-76.60383224143737,39.28284567192548],[-76.6037172641115,39.28282005553518],[-76.6036859967458,39.28281294031277],[-76.60368409486397,39.28281271140762],[-76.60368281936216,39.28281260171499],[-76.60368153902813,39.2828125271358],[-76.6036802573438,39.28281248678088],[-76.60367897430439,39.28281248155123],[-76.60367769107357,39.2828125105498],[-76.60367641112366,39.28281257468926],[-76.60367513330044,39.28281267306478],[-76.60367386223538,39.28281280659282],[-76.60367259677923,39.28281297346799],[-76.60367134039906,39.28281317550351],[-76.60367009310478,39.28281341089794],[-76.60366885720973,39.28281368055972],[-76.60366763503674,39.28281398359598],[-76.6036664265909,39.28281431910601],[-76.6036652341904,39.28281468709768],[-76.60366405784015,39.28281508667011],[-76.60366290101211,39.28281551873588],[-76.6036617648755,39.28281598149737],[-76.6036606494304,39.28281647495456],[-76.60365955699967,39.28281699821459],[-76.60365848874773,39.28281755038056],[-76.60365744583325,39.2828181314564],[-76.60365642942034,39.28281874054527],[-76.60365544183213,39.28281937675436],[-76.60365448191476,39.28282003917882],[-76.60365355314529,39.28282072783052],[-76.60365265553351,39.28282144090796],[-76.60365179140283,39.28282217751815],[-76.603650959599,39.28282293675648],[-76.60365016359943,39.28282371863463],[-76.60364940224983,39.28282452224804],[-76.60364867672435,39.28282534489838],[-76.60364799049523,39.28282618749797],[-76.60364734125935,39.28282704733697],[-76.60364673017581,39.28282792441917],[-76.60364616072688,39.2828288178555],[-76.60364563059915,39.28282972673752],[-76.60364514096686,39.28283064836688],[-76.60364469414856,39.28283158275134],[-76.60364428898956,39.28283252898627],[-76.60364392665439,39.2828334861749],[-76.6036436071579,39.28283445161492],[-76.60364333165417,39.28283542621092],[-76.60364309899923,39.28283640725697],[-76.60364291151623,39.28283739385998],[-76.60364276805633,39.28283838421451],[-76.60364266861419,39.28283937922146],[-76.6036426143693,39.28284037528161],[-76.60364260532134,39.28284137239513],[-76.60364264031666,39.28284236965717],[-76.60364272052907,39.28284336436953],[-76.60364284479473,39.28284435742901],[-76.60364707959657,39.28286537749782],[-76.60380599950622,39.28333338135536],[-76.6038919750762,39.28358704761932],[-76.60409120263286,39.28419585980536],[-76.6043676929764,39.28501280328991],[-76.60436757572006,39.28501283712392],[-76.60435397049473,39.28501676275947],[-76.6043597105771,39.28503271476732],[-76.60401163536437,39.28504793487394],[-76.60367954626146,39.28410166702366],[-76.60358065932076,39.28381513690054],[-76.6034920606308,39.2835525242058],[-76.6032730255112,39.28291934409983],[-76.60288429449645,39.28243708823107],[-76.60289223779898,39.28243246624963],[-76.60293121895889,39.28239329325208],[-76.60295961922544,39.28234706933814],[-76.60297556154087,39.28230052587484],[-76.6029796446194,39.28225334421933],[-76.6029706123442,39.28220319976263],[-76.60295001691138,39.282157095773],[-76.60291437122918,39.28211164079501],[-76.60286982253756,39.28207269073856],[-76.60284277506257,39.28209611460053],[-76.6026220199951,39.2821031352684],[-76.60262207984162,39.28212638685724],[-76.60243662852281,39.28213142332369],[-76.60243552039121,39.28210599915012],[-76.60231607425003,39.28210790076513],[-76.60231623350612,39.28213614471758],[-76.6016734148666,39.28215725674652],[-76.60148267708028,39.28216289981044],[-76.60139938341335,39.28216627608832],[-76.60118854309626,39.28217482207298],[-76.60076921484035,39.28218682078427],[-76.60076647826185,39.28217777323015],[-76.60015444728059,39.28219748271698],[-76.59933934829348,39.28222543840904],[-76.599339464964,39.2822304335366],[-76.59901034477808,39.28223987190781],[-76.59900937944413,39.28224743321817],[-76.59894549644375,39.28224950395805],[-76.59856388391347,39.28226187397792],[-76.59820928003175,39.28227103385073],[-76.59788366663432,39.28228131066393],[-76.59755580989103,39.28228963234032],[-76.59731527121268,39.28229520519533],[-76.59702786386585,39.28230187424347],[-76.59674122972585,39.28231177357711],[-76.59672372860264,39.2821116720724],[-76.59692321200806,39.28210677744818],[-76.59704345671415,39.28210552089541],[-76.59712384320899,39.28210753150307],[-76.59718994214398,39.28210874092388],[-76.59723177519496,39.28211080930281],[-76.5973035337617,39.28211997558834],[-76.59739484703738,39.28212516713246],[-76.59739983193226,39.28212457800469],[-76.59740152363838,39.28212282641461],[-76.59740288143924,39.2821163951176],[-76.59740029715054,39.28211040699609],[-76.59740478914429,39.28210272357182],[-76.59742783408767,39.28210072179209],[-76.59745660259237,39.28210296960498],[-76.5974978444194,39.28210342439819],[-76.59754575500317,39.28210169425603],[-76.59758871275888,39.2820987824403],[-76.59762922744416,39.28209358961538],[-76.597662195092,39.28209298643538],[-76.59769385529412,39.28209607099517],[-76.59770746054919,39.28211152514073],[-76.59771131934167,39.28211575572821],[-76.59782026398427,39.28208618293126],[-76.59783524773798,39.28208296446377],[-76.59788935468205,39.2820824326932],[-76.59794649864158,39.2820746835717],[-76.59800287882861,39.28207449461355],[-76.59804542187703,39.28207174064667],[-76.59810509962418,39.28207255736575],[-76.59814654567026,39.28207317386656],[-76.59817439337745,39.28206896708989],[-76.59818970115434,39.28207074621727],[-76.59818919031477,39.28207621930645],[-76.59813772665068,39.28209095718164],[-76.5981343520212,39.28209414424522],[-76.59813483184863,39.28210171769934],[-76.59814379227156,39.28209907669188],[-76.59816209803341,39.28209541105943],[-76.59819209872212,39.28208720324917],[-76.59820463150696,39.28208186496239],[-76.59820468385753,39.28207896558583],[-76.59820600422083,39.28207462932607],[-76.59821476386666,39.28207182909217],[-76.59824143880837,39.28206390534366],[-76.59825728416621,39.28205876303758],[-76.59833671362283,39.28205641255213],[-76.59850135195205,39.28205306250229],[-76.59861875327479,39.28204855187216],[-76.59876183685265,39.28204480712926],[-76.5987751046889,39.28204495423591],[-76.59878904350889,39.28204204464237],[-76.59879912644674,39.28203458383408],[-76.59881055253814,39.28202182392077],[-76.59881614457296,39.28201060780503],[-76.59881624185277,39.28200529273573],[-76.59880764939456,39.2818848665236],[-76.59879752551606,39.2817347864644],[-76.59879326841184,39.28169543110306],[-76.5987910149956,39.28168235964142],[-76.59878960687077,39.28168008761147],[-76.59878692196956,39.28167957581505],[-76.59878485297148,39.28167939309921],[-76.59878154572787,39.28167887107004],[-76.59870442519193,39.28167963719438],[-76.59869716802561,39.28167971959171],[-76.59869532263049,39.28167873325692],[-76.59869478881245,39.28166245824986],[-76.59868907972302,39.28155462732719],[-76.5986928198438,39.2815540248842],[-76.59870214690854,39.28155396307025],[-76.59871022946645,39.28155405463743],[-76.59884005474458,39.28155016001806],[-76.59889792193506,39.281548057085],[-76.59897012478142,39.28154417632081],[-76.59905555405616,39.28154221424698],[-76.59914991945377,39.28153922511103],[-76.59927350129408,39.28153671209491],[-76.59936721528763,39.28153516178286],[-76.59943334898058,39.28153443702441],[-76.59950180428424,39.28153164568751],[-76.59957460891513,39.28152873852689],[-76.59964595078173,39.28152645867117],[-76.59973492583467,39.2815234074563],[-76.59981373873643,39.28152072689601],[-76.59987307303186,39.28151783220661],[-76.599934706081,39.28151383827905],[-76.59997575601506,39.28151332232901],[-76.60003786907602,39.28151690269593],[-76.60014330696183,39.28152063592623],[-76.60019279128113,39.28152359402996],[-76.60021475171806,39.28152415698852],[-76.60023548679129,39.28152373934559],[-76.60026089128291,39.28151741147059],[-76.6002753654805,39.28150790633512],[-76.6002851122516,39.28149609266926],[-76.60029218902127,39.2814813271244],[-76.60029502135805,39.28147541965081],[-76.6003015453846,39.28145857596588],[-76.60031404382839,39.28142101884849],[-76.60033446634395,39.28135777641307],[-76.60035317487662,39.28129757542263],[-76.60039514913952,39.28116626538062],[-76.60043450813463,39.28105312922537],[-76.60046750380344,39.28095957741817],[-76.60046982740646,39.2809524152477],[-76.60049203247704,39.28088398143733],[-76.60049911883978,39.28086214221786],[-76.6005284359366,39.28076565129813],[-76.60055534896134,39.28066446011803],[-76.60058422661113,39.28056941431046],[-76.60060249751768,39.28051049446631],[-76.60062122583518,39.28043805121441],[-76.60065946409576,39.28030685985653],[-76.60067229615271,39.28026205808438],[-76.60068462762018,39.28021064570861],[-76.6006992686281,39.28015764683109],[-76.60071197615176,39.28011993003335],[-76.60073066909025,39.28006053148998],[-76.60073918671529,39.28003662446011],[-76.60074470847667,39.28001783619247],[-76.60074611695498,39.27999739545473],[-76.60074591925553,39.27997403528808],[-76.60074402585686,39.27995274831912],[-76.60073982530018,39.27992129559976],[-76.60073578733385,39.27989781698955],[-76.60073394568178,39.27988710695882],[-76.60073138428731,39.27987536761131],[-76.60072963291714,39.27986447323085],[-76.6007280995675,39.27985355617158],[-76.60072661145412,39.27984263296069],[-76.60072504911577,39.2798317185051],[-76.60072331515765,39.27982081967977],[-76.60072147103622,39.27980993128905],[-76.60071957008994,39.27979904901051],[-76.60071765987236,39.27978816670031],[-76.60071578675787,39.2797772818139],[-76.60071399598218,39.27976638819971],[-76.60071232696062,39.27975548419014],[-76.60071075883145,39.27974456971433],[-76.60070925100007,39.27973365003893],[-76.60070776404599,39.27972272773208],[-76.6007062573745,39.27971180806049],[-76.60070469272424,39.27970089359629],[-76.60070302834656,39.27968998870141],[-76.6007012735185,39.27967909250664],[-76.60069945028097,39.27966820148381],[-76.60069756094171,39.27965731744234],[-76.60069561014184,39.27964643949715],[-76.60069359903012,39.27963556945379],[-76.60069152065275,39.27962470728851],[-76.60068933441524,39.27961385826796],[-76.60068706815835,39.27960301798291],[-76.60068476594856,39.27959218207936],[-76.6006824660574,39.27958134618364],[-76.60068022300239,39.27957050237418],[-76.60067829203686,39.27955960197679],[-76.60067635642586,39.27954870336508],[-76.60067385694026,39.27953791182863],[-76.60067040849142,39.27952728100482],[-76.60066622810199,39.27951675938709],[-76.60066135591565,39.27950642187523],[-76.60065584145411,39.27949632448482],[-76.60064988611764,39.27948630846544],[-76.60064335588409,39.27947650487279],[-76.60063603631095,39.27946712465702],[-76.60062771666591,39.27945833734585],[-76.60061846705037,39.27945004319264],[-76.60060864537645,39.2794420749714],[-76.60059861765377,39.27943426818609],[-76.60058853244382,39.27942658550977],[-76.60057804907727,39.27941921944816],[-76.60056741786408,39.27941196998202],[-76.60055689607324,39.27940463621527],[-76.60054639756031,39.27939728541216],[-76.60053584081192,39.27938998575361],[-76.60052521651055,39.27938274531473],[-76.60051453863494,39.27937555153235],[-76.60050377803825,39.27936843493325],[-76.60049291259858,39.27936141345752],[-76.60048198890817,39.27935444582841],[-76.60047107453734,39.27934747012311],[-76.60046023472835,39.27934042621236],[-76.60044954636898,39.27933324409817],[-76.60043897451253,39.27932595518846],[-76.60042840032511,39.27931866897212],[-76.60041769798853,39.2793115003189],[-76.6004067882766,39.27930452282185],[-76.6003957609071,39.27929765211426],[-76.60038475100545,39.27929076705286],[-76.60037388673832,39.27928374737137],[-76.60036316461357,39.27927659576026],[-76.60035252404512,39.2792693687615],[-76.60034193823458,39.2792620915053],[-76.6003313850245,39.2792547882369],[-76.60032086791722,39.27924745446444],[-76.60031039507116,39.27924008210878],[-76.60029994552345,39.27923268911388],[-76.60028949831104,39.27922529342371],[-76.60027903595294,39.27921791209325],[-76.60026860504661,39.2792105029452],[-76.60025819045934,39.27920307763797],[-76.6002477467528,39.27919567835284],[-76.60023722849382,39.27918834637032],[-76.6002265925873,39.27918111937574],[-76.60021584485858,39.27917399198431],[-76.60020501326497,39.27916693906982],[-76.60019412109749,39.27915994089467],[-76.60018318815001,39.27915298131252],[-76.60017223655457,39.27914604058189],[-76.6001612861304,39.27913909805267],[-76.60015031941681,39.27913216717691],[-76.60013930724675,39.27912528208427],[-76.6001282193093,39.2791184741983],[-76.60011702644748,39.27911177584724],[-76.60010562610347,39.27910528756733],[-76.6000939938019,39.27909903359589],[-76.60008230319859,39.27909284247817],[-76.60007073029279,39.27908653826383],[-76.6000594522275,39.2790799477087],[-76.60004872767978,39.27907282578515],[-76.6000384657627,39.27906525865722],[-76.60002825047565,39.27905764394671],[-76.60001766467917,39.27905037566831],[-76.60000671427471,39.27904343492596],[-76.59999559265121,39.27903664492779],[-76.5999842985226,39.27903002818842],[-76.59997283522355,39.27902360994057],[-76.59996110003875,39.27901751864352],[-76.59994897872414,39.27901187190812],[-76.59993675829489,39.27900633202476],[-76.59992473387918,39.27900056131153],[-76.59991286234649,39.27899460375897],[-76.59990106898972,39.27898855369282],[-76.59988933163105,39.27898243896125],[-76.59987775057651,39.2789761473105],[-76.5998661893636,39.27896983140558],[-76.59985449166986,39.27896367176739],[-76.59984274265854,39.27895756960211],[-76.59983095047285,39.27895151953278],[-76.59981911862529,39.27894551526607],[-76.59980725060788,39.27893955411164],[-76.59979534058525,39.27893364325556],[-76.59978338386551,39.27892779259031],[-76.5997713804742,39.27892199761217],[-76.59975935490696,39.27891623048087],[-76.59974733166467,39.2789104624555],[-76.59973532478199,39.27890467106479],[-76.59972332022934,39.27889887787924],[-76.59971129466993,39.27889311074299],[-76.59969922942312,39.278887393913],[-76.59968714681408,39.27888167341955],[-76.59967478364155,39.2788763798313],[-76.59966187339974,39.2788719130797],[-76.5996486587234,39.27886799565558],[-76.5996352215174,39.27886449002126],[-76.59962135575554,39.27886257997846],[-76.59960719564295,39.27886210204559],[-76.59959328354302,39.27886388497249],[-76.59957977237195,39.27886711949402],[-76.59956666540305,39.27887122552964],[-76.59955385793285,39.27887586223394],[-76.59954146404273,39.27888114619444],[-76.59952934165291,39.27888678778167],[-76.59951734466293,39.27889259373423],[-76.59950524067546,39.27889825970237],[-76.59949308030856,39.27890385251513],[-76.59948088657391,39.27890940197621],[-76.59946866408191,39.27891491260512],[-76.59945641167862,39.27892038349713],[-76.59944413282578,39.27892581736641],[-76.59943183210837,39.27893122323611],[-76.59941952104994,39.27893661285555],[-76.59940720193286,39.27894199253777],[-76.59939486671044,39.2789473505455],[-76.59938250619743,39.27895267153431],[-76.59937011118318,39.2789579446637],[-76.5993576851243,39.27896317354843],[-76.59934522802072,39.27896835818856],[-76.5993327398827,39.27897349678253],[-76.59932021612015,39.27897858120788],[-76.59930763373693,39.27898357895854],[-76.59929502606832,39.27898853878957],[-76.59928243334242,39.27899352028855],[-76.5992698957618,39.27899858754683],[-76.59925739266343,39.27900370536419],[-76.59924484819669,39.27900875998566],[-76.59923215783175,39.27901358531398],[-76.59921931927121,39.27901817773826],[-76.59920662774391,39.27902300305985],[-76.59919403264193,39.27902799264808],[-76.59918156517087,39.27903316192248],[-76.59916935421374,39.2790386743611],[-76.5991574561273,39.27904460672124],[-76.59914563045328,39.2790506456174],[-76.59913389901861,39.2790568253531],[-76.59912144836922,39.27906188748764],[-76.59910807504804,39.27906553407437],[-76.59909442772664,39.27906844470122],[-76.59908041022246,39.27906979664269],[-76.59906624495811,39.27907001852054],[-76.59905219251354,39.27906914455244],[-76.59903830229914,39.27906704519721],[-76.59902446757513,39.279064765877],[-76.59901068349195,39.27906234440745],[-76.59899694543421,39.27905977716965],[-76.59898323930085,39.27905709834454],[-76.59896950240405,39.2790545311075],[-76.59895569462601,39.27905220142841],[-76.59894184666504,39.27905000942739],[-76.59892797970318,39.27904789842852],[-76.59891408078298,39.2790459053189],[-76.59890022681579,39.27904375112448],[-76.59888646272854,39.2790412792658],[-76.59887274358441,39.27903864812382],[-76.5988590315733,39.27903598547784],[-76.59884529589496,39.27903340922275],[-76.59883154017396,39.27903089324879],[-76.5988178033081,39.27902832239099],[-76.598804125451,39.27902556437428],[-76.59879048300064,39.2790226938815],[-76.59877679095283,39.27901998625594],[-76.59876300914873,39.27901757467338],[-76.59874917777239,39.27901532145425],[-76.59873532864052,39.27901313392857],[-76.59872147355678,39.27901097430461],[-76.59870759474941,39.27900891097963],[-76.59869375150663,39.27900670725545],[-76.59867996163081,39.27900428933022],[-76.59866614319682,39.27900200281722],[-76.59865219633437,39.27900029235256],[-76.59863815792902,39.27899898871856],[-76.5986241481394,39.27899754376079],[-76.5986101383809,39.27899609339685],[-76.598596166724,39.27899446390952],[-76.59858226049775,39.27899253649133],[-76.59856839477288,39.27899041554574],[-76.59855454092386,39.27898824419632],[-76.5985406680888,39.2789861511468],[-76.59852679168596,39.27898407429724],[-76.59851291052568,39.27898201904804],[-76.59849901271255,39.27898003940444],[-76.5984850839872,39.27897819747037],[-76.59847111836604,39.27897652655364],[-76.59845713966041,39.27897491504087],[-76.59844316809792,39.27897327022264],[-76.5984291917676,39.27897164880626],[-76.59841522018598,39.2789700075877],[-76.59840126527921,39.27896828715723],[-76.59838732723087,39.27896645508807],[-76.59837346498358,39.27896433593285],[-76.5983597457764,39.27896172184502],[-76.59834608571175,39.27895889717921],[-76.5983323536,39.27895631096777],[-76.59831855652729,39.27895393981506],[-76.59830474291387,39.27895162445149],[-76.59829094230489,39.27894926409262],[-76.59827714523499,39.27894689293507],[-76.598263348166,39.27894452177588],[-76.59824954990323,39.27894215691633],[-76.59823574692902,39.27893980555051],[-76.59822196169219,39.27893739209102],[-76.59820822258938,39.27893481394796],[-76.59819447990864,39.27893225380635],[-76.59818066029948,39.27892997533895],[-76.59816670595212,39.27892815850078],[-76.598152648206,39.27892720423883],[-76.59813851286312,39.2789268541221],[-76.59812437670489,39.27892685259647],[-76.59811022818724,39.27892719151552],[-76.59809618290184,39.2789283342673],[-76.59808217719694,39.2789302644203],[-76.59806894317808,39.27893386632743],[-76.59805652594711,39.27893915725778],[-76.59804450540861,39.27894500531555],[-76.59803299523283,39.27895139467614],[-76.59802204512246,39.27895834892962],[-76.59801137041546,39.2789655842621],[-76.59800147017211,39.2789733870231],[-76.59799232433791,39.27898181929675],[-76.59798429233005,39.27899085799282],[-76.5979776418596,39.27900050582937],[-76.59797183633562,39.27901055469508],[-76.59796638369755,39.2790207101577],[-76.59796234053525,39.27903124876518],[-76.59795055713413,39.27903451423472],[-76.59793646571923,39.27903377151117],[-76.5979223653392,39.27903297470946],[-76.5979082639332,39.27903215448264],[-76.59789417063011,39.27903133608343],[-76.59788007964528,39.27903051769046],[-76.59786598867609,39.27902969659352],[-76.59785189771743,39.27902887369343],[-76.59783780793337,39.2790280480934],[-76.5978237170009,39.27902722068615],[-76.59780962723792,39.27902639147978],[-76.59779553747528,39.27902556227166],[-76.59778144772318,39.27902473126034],[-76.59776735796629,39.2790239011481],[-76.59775326820973,39.2790230710342],[-76.59773917845358,39.27902224091856],[-76.59772508869257,39.27902141170197],[-76.59771099776273,39.27902058428127],[-76.59770505027011,39.27902030268967],[-76.59770151623002,39.27902014826481],[-76.59769798217467,39.27901999654205],[-76.59769445047299,39.27901983852195],[-76.59769092231461,39.2790196688039],[-76.59768740005838,39.27901948018997],[-76.59768388489893,39.2790192663788],[-76.5976803815131,39.27901902018039],[-76.59767721223841,39.27901789958403],[-76.59767604007041,39.27901531848411],[-76.59767472184728,39.27901274138772],[-76.59767333280467,39.27901018566708],[-76.5976719112549,39.27900763974346],[-76.59767035947202,39.27900516903792],[-76.5976685832171,39.27900283718183],[-76.59766638992814,39.27900067414152],[-76.59766366773657,39.27899878672471],[-76.5976606098878,39.27899743321174],[-76.59765731093167,39.27899669949898],[-76.59765379310879,39.2789963424564],[-76.59765018738781,39.27899615715845],[-76.59764662239921,39.27899594227475],[-76.5976431014105,39.27899573474775],[-76.59763956949054,39.27899561545807],[-76.59763603856092,39.2789955258969],[-76.59763250750876,39.27899545795348],[-76.59762897522097,39.2789954035172],[-76.59762544292298,39.27899535088225],[-76.59762191184019,39.27899528834306],[-76.59761838083908,39.27899521139177],[-76.59761484867393,39.27899513533715],[-76.59761131649861,39.27899506108391],[-76.59760778550775,39.27899498233082],[-76.59760425456292,39.27899489547089],[-76.59760072369468,39.27899479509968],[-76.59759719524148,39.27899467762207],[-76.59759366808522,39.27899453582823],[-76.59759014345634,39.27899435711165],[-76.59758662133441,39.27899414507525],[-76.5975831004737,39.27899391502786],[-76.5975795807975,39.27899368048055],[-76.59757605874721,39.27899345583338],[-76.59757253655901,39.27899325550629],[-76.59756901068438,39.27899309209777],[-76.59756548229774,39.27899296290955],[-76.5975619514808,39.27899285352973],[-76.59755842179726,39.27899274865747],[-76.59755489216995,39.2789926338769],[-76.59755136383956,39.27899249478003],[-76.59754783672432,39.27899234577886],[-76.5975443096347,39.27899219227385],[-76.5975407825706,39.27899203426495],[-76.59753725551673,39.2789918744545],[-76.59753372962699,39.27899171374712],[-76.59753020257824,39.27899155303573],[-76.59752667668343,39.27899139322893],[-76.59752314961945,39.27899123521951],[-76.597519622535,39.27899108081301],[-76.59751609543524,39.27899092910859],[-76.59751256834575,39.27899077560263],[-76.59750904126646,39.27899062029508],[-76.59750551419235,39.27899046408663],[-76.59750198710798,39.27899030967956],[-76.59749846001344,39.27899015707393],[-76.59749493290866,39.27899000626962],[-76.59749140461939,39.27898985996504],[-76.59748787746354,39.27898971816802],[-76.59748434911813,39.27898958177139],[-76.59748082073182,39.27898945258061],[-76.59747729114567,39.27898933059176],[-76.59747376269294,39.27898921311051],[-76.597470233071,39.27898909742662],[-76.59746670342867,39.27898898534566],[-76.59746317260696,39.27898887686358],[-76.59745964291356,39.27898877378983],[-76.59745611203562,39.27898867521579],[-76.59745258112196,39.27898858294682],[-76.59744905017247,39.27898849698297],[-76.59744551918217,39.27898841822498],[-76.59744198814583,39.27898834757364],[-76.59743845589944,39.27898828592564],[-76.59743492476093,39.27898823328901],[-76.59743139236122,39.27898819866316],[-76.59742785987463,39.27898817934995],[-76.59742432731653,39.27898817264707],[-76.59742079354834,39.27898817494754],[-76.59741725974429,39.27898818355315],[-76.59741372708909,39.27898819396412],[-76.59741019328,39.27898820347028],[-76.59740665949644,39.27898820847259],[-76.59740312691274,39.27898820627278],[-76.59739959439548,39.27898819236316],[-76.59739606311896,39.27898816404549],[-76.59739253078578,39.27898811770883],[-76.597389000888,39.27898805066279],[-76.59738547111807,39.27898796109807],[-76.59738194259401,39.27898785622447],[-76.59737841298767,39.27898773783559],[-76.59737488576063,39.27898760864561],[-76.59737135743595,39.27898746864265],[-76.59736783032133,39.27898731963603],[-76.59736430324259,39.27898716432408],[-76.59736077619446,39.2789870036076],[-76.59735725033093,39.27898683839123],[-76.59735372331862,39.27898667136927],[-76.5973501963115,39.2789865034465],[-76.59734667045818,39.27898633642828],[-76.59734314343575,39.27898617120752],[-76.59733961639283,39.27898600958962],[-76.59733608931421,39.27898585427688],[-76.59733256104082,39.27898570526524],[-76.5973290327163,39.278985565261],[-76.59732550434069,39.27898543426406],[-76.5973219759293,39.27898530957222],[-76.5973184463283,39.27898519028086],[-76.59731491670175,39.27898507549308],[-76.5973113870547,39.27898496430818],[-76.59730785739751,39.27898485492464],[-76.59730432773009,39.27898474734251],[-76.59730079806269,39.27898463976029],[-76.59729726724652,39.27898453037248],[-76.59729373759959,39.27898441918704],[-76.59729020796799,39.27898430529927],[-76.59728667952605,39.27898418601091],[-76.59728314995073,39.27898406221473],[-76.59727962157528,39.27898393121639],[-76.5972760944202,39.27898378941304],[-76.5972725673162,39.27898363860209],[-76.59726904025311,39.27898348058504],[-76.59726551437973,39.27898331716742],[-76.59726198735254,39.27898315284495],[-76.59725846148936,39.27898298762561],[-76.59725493445197,39.27898282510443],[-76.5972514085377,39.27898266889233],[-76.59724788026975,39.27898251897742],[-76.59724435309946,39.27898237987532],[-76.59724082353964,39.27898225337561],[-76.59723729392358,39.27898213678403],[-76.59723376310764,39.27898202739433],[-76.59723023226107,39.27898192340896],[-76.59722670140935,39.27898182032428],[-76.5972231705628,39.2789817163387],[-76.59721963973668,39.27898160875009],[-76.59721611011045,39.27898149395931],[-76.59721258169947,39.27898136926423],[-76.59720905336006,39.27898123195858],[-76.59720552742557,39.27898107934809],[-76.59720200275743,39.27898090782581],[-76.59719847936587,39.27898071559023],[-76.59719495839457,39.27898050534758],[-76.59719143866405,39.27898028069687],[-76.59718792016416,39.27898004343956],[-76.59718440172561,39.27897979537318],[-76.5971808856613,39.27897953740646],[-76.59717736963796,39.27897927223367],[-76.59717385365552,39.27897899985477],[-76.59717033885762,39.27897872297603],[-76.59716682407516,39.27897844339495],[-76.597163309308,39.27897816111152],[-76.59715979453577,39.27897787972876],[-76.5971562797636,39.27897759834588],[-76.59715276496584,39.27897732146661],[-76.5971492489887,39.27897704818623],[-76.5971457329809,39.27897678031027],[-76.59714221692204,39.27897652144163],[-76.5971386985043,39.27897626977091],[-76.59713518004568,39.27897602530606],[-76.59713166039231,39.27897578714232],[-76.59712814071338,39.27897555348227],[-76.59712462100379,39.27897532522654],[-76.5971211001148,39.27897510056972],[-76.59711757921049,39.27897487861505],[-76.59711405710122,39.278974664763],[-76.5971105338023,39.27897445631139],[-76.59710701047268,39.27897425326409],[-76.59710348712781,39.27897405291892],[-76.59709996261373,39.27897385437121],[-76.59709643925859,39.27897365582734],[-76.59709291475477,39.27897345547793],[-76.59708939143039,39.27897325152939],[-76.5970858692906,39.27897304308093],[-76.59708234719174,39.27897282742649],[-76.59707882745172,39.27897260457385],[-76.59707530776801,39.27897237181293],[-76.59707179046879,39.27897212735017],[-76.59706827440525,39.27897186938007],[-76.59706476196699,39.27897158530013],[-76.59706125684066,39.27897123819175],[-76.59705775892903,39.27897084516905],[-76.59705426348377,39.27897042603254],[-76.59705076922816,39.27897000149544],[-76.59704727372154,39.27896959316768],[-76.5970437733745,39.27896922085377],[-76.59704026806932,39.27896890527086],[-76.59703675306787,39.27896866441798],[-76.597033231939,39.2789684820936],[-76.59702970709795,39.27896834119155],[-76.59702617743689,39.27896823270028],[-76.59702264646853,39.27896815032662],[-76.59701911308503,39.27896808505903],[-76.59701557848112,39.27896803059637],[-76.5970120427081,39.27896797793112],[-76.59700850812466,39.27896791986525],[-76.59700497593083,39.27896784919674],[-76.59700144382914,39.27896776231471],[-76.59699791044055,39.27896769794727],[-76.59699437346251,39.27896765338421],[-76.59699083645377,39.27896761422551],[-76.5969872994962,39.27896756605924],[-76.59698376613832,39.2789674962869],[-76.5969802376261,39.27896738959974],[-76.5969767151901,39.27896723339133],[-76.59697320007636,39.27896701235299],[-76.59696969586406,39.27896670848165],[-76.59696620254812,39.27896632267808],[-76.59696271767756,39.27896587835373],[-76.59695923533472,39.27896539710667],[-76.59695575656096,39.27896489965803],[-76.59695227543351,39.27896440850651],[-76.59694878950651,39.27896394616286],[-76.59694529750328,39.2789635333403],[-76.59694179593158,39.27896317272906],[-76.59693828837574,39.27896284542545],[-76.5969347783741,39.27896254063243],[-76.59693126481879,39.27896224933857],[-76.5969277512482,39.27896196074684],[-76.59692423771347,39.27896166584981],[-76.59692072771189,39.2789613610564],[-76.59691721654633,39.27896105715964],[-76.5969137053654,39.27896075596496],[-76.59691019417937,39.27896045567099],[-76.5969066818242,39.2789601571744],[-76.59690317063318,39.27895985778096],[-76.59689965947284,39.27895955298289],[-76.59689614948176,39.27895924638724],[-76.59689263830613,39.27895894429125],[-76.59688912591527,39.27895865209933],[-76.5968856111195,39.27895837521207],[-76.59688209507269,39.27895811453416],[-76.59687857784647,39.27895785745517],[-76.59687505943573,39.27895760487581],[-76.59687153982509,39.27895735949831],[-76.59686802015817,39.27895712402897],[-76.59686449925556,39.27895690206668],[-76.596860977107,39.27895669541302],[-76.59685745253303,39.27895650766698],[-76.59685392786183,39.27895633703498],[-76.59685040079592,39.27895617990615],[-76.59684687366355,39.27895603448686],[-76.59684334531076,39.27895589987251],[-76.5968398157427,39.27895577516222],[-76.59683628612349,39.27895565945932],[-76.59683275530442,39.27895555095832],[-76.59682922444435,39.27895544966315],[-76.5968256947177,39.27895535287559],[-76.59682216381164,39.27895525968693],[-76.59681863290552,39.27895516649817],[-76.59681510080465,39.27895507961053],[-76.59681156866289,39.27895499992876],[-76.59680803645963,39.27895493105588],[-76.59680450416938,39.27895487749554],[-76.59680097178189,39.27895484104928],[-76.59679744043565,39.27895482532401],[-76.59679390896139,39.27895483211737],[-76.59679036593847,39.27895483166483],[-76.59678681137194,39.27895482306568],[-76.59678325441071,39.27895482796967],[-76.59677970187033,39.27895487072078],[-76.59677616405351,39.27895497387351],[-76.59677264895014,39.27895515907363],[-76.59676916453476,39.27895545066909],[-76.59676570936671,39.278955898197],[-76.59676226987841,39.27895664573292],[-76.59675892612533,39.27895767823882],[-76.59675576758332,39.27895895458663],[-76.59675287433355,39.27896045523459],[-76.59675021817178,39.27896224854386],[-76.59674774738988,39.27896425597054],[-76.5967454162386,39.27896637016664],[-76.59674321468647,39.27896852083824],[-76.59674142194375,39.27897093053172],[-76.59673972278529,39.27897339189],[-76.59673763818077,39.27897556187899],[-76.59673495110485,39.27897728842527],[-76.59673201704945,39.27897883126851],[-76.59672893065559,39.27898026009239],[-76.5967257738565,39.27898163733093],[-76.59672263091883,39.27898302272388],[-76.59671958493477,39.27898447870916],[-76.59671671900685,39.27898606592331],[-76.59671411507344,39.27898784589966],[-76.59671182853452,39.2789898593627],[-76.59670965847755,39.27899197411124],[-76.59670754951279,39.27899414761913],[-76.59670549936332,39.27899637267245],[-76.59670350688043,39.27899864746573],[-76.59670157211018,39.27900096389226],[-76.59669969275002,39.27900331924185],[-76.59669786884083,39.27900570630857],[-76.59669609692116,39.27900812237818],[-76.59669437818582,39.27901056114951],[-76.59669271150656,39.27901301721403],[-76.59669109458589,39.27901548696084],[-76.59668952630074,39.27901796408074],[-76.59668800667671,39.27902044406996],[-76.59668653458043,39.27902292242088],[-76.59668516661692,39.27902543175524],[-76.59668391893489,39.27902798564011],[-76.59668277997544,39.27903057863106],[-76.596681733554,39.27903320346653],[-76.59668076578855,39.27903585559494],[-76.59667986397665,39.27903852686586],[-76.59667901192856,39.27904121091834],[-76.59667819576225,39.27904390320089],[-76.59667740277007,39.27904659646378],[-76.59667661676238,39.27904928434608],[-76.59667582502638,39.27905196049872],[-76.59667504604408,39.27905463579445],[-76.59667429021029,39.27905731657421],[-76.59667355637635,39.27906000103255],[-76.59667284221918,39.27906269006229],[-76.59667214774909,39.27906538186192],[-76.59667147064287,39.27906807732422],[-76.5966708109007,39.27907077644917],[-76.59667016737374,39.27907347743133],[-76.59666953658004,39.2790761811595],[-76.59666891968367,39.27907888673691],[-76.59666831437174,39.27908159325489],[-76.59666771948537,39.27908430070936],[-76.5966671338605,39.27908700999723],[-76.59666655635341,39.27908971841218],[-76.596665984636,39.27909242774776],[-76.59666542566214,39.27909513802787],[-76.59666487943167,39.27909784925249],[-76.59666434593447,39.27910056322314],[-76.59666382402179,39.27910327813429],[-76.5966633113706,39.27910599487882],[-76.59666280915003,39.27910871165911],[-76.59666231387303,39.27911143026479],[-76.59666182438565,39.27911414979111],[-76.59666134185207,39.2791168693413],[-76.59666086279024,39.27911958980417],[-76.59666038604121,39.27912231117578],[-76.59665991276904,39.27912503255926],[-76.59665943833784,39.27912775393879],[-76.59665896507067,39.27913047442156],[-76.5966584883215,39.27913319579309],[-76.59665801041838,39.27913591625993],[-76.59665752672555,39.27913863580613],[-76.59665703955577,39.27914135534038],[-76.59665654543731,39.27914407394998],[-76.59665605015975,39.27914679255562],[-76.5966555548822,39.27914951116122],[-76.59665505960974,39.27915222886608],[-76.59665456549108,39.27915494747565],[-76.59665407137243,39.2791576660853],[-76.59665357841264,39.27916038469883],[-76.59665308776565,39.27916310422109],[-76.5966525982827,39.27916582284658],[-76.59665211111255,39.27916854238079],[-76.5966516262603,39.27917126192294],[-76.59665114372595,39.27917398147301],[-76.5966506704582,39.27917670195571],[-76.59665021687235,39.27917942610907],[-76.596649778348,39.27918215121488],[-76.59664934561332,39.27918487724133],[-76.59664891171964,39.2791876032638],[-76.59664846856438,39.27919032745291],[-76.59664800919379,39.27919304978482],[-76.5966475255053,39.27919576843019],[-76.5966470105451,39.27919848336509],[-76.59664646195426,39.27920120178752],[-76.59664616985734,39.27920426518252],[-76.5966460593566,39.27920759672793],[-76.59664582186089,39.27921084136393],[-76.596645146466,39.27921364312198],[-76.59664372340633,39.27921564964041],[-76.59664130512168,39.27921657542783],[-76.59663842932757,39.27921704205615],[-76.59663532063014,39.27921729530429],[-76.5966320136654,39.27921735871112],[-76.59662854073594,39.2792172585097],[-76.59662493532393,39.27921701733406],[-76.5966212309012,39.27921665961976],[-76.59661746093455,39.27921621070313],[-76.59661365890595,39.27921569321821],[-76.59660985711817,39.27921513339808],[-76.59660609021219,39.27921455388087],[-76.59660239049573,39.27921397999887],[-76.59659879144579,39.27921343528688],[-76.59659530921624,39.27921293241117],[-76.59659185029413,39.2792124070963],[-76.59658839850007,39.27921185117984],[-76.59658495266474,39.27921126645929],[-76.59658151276267,39.27921065743845],[-76.59657807762453,39.27921002591471],[-76.59657464724015,39.27920937368967],[-76.59657121926594,39.27920870525908],[-76.59656779484554,39.27920802332912],[-76.59656437280975,39.2792073296973],[-76.5965609531432,39.27920662706591],[-76.5965575335074,39.27920591902992],[-76.59655411504605,39.27920520829559],[-76.59655069774882,39.27920449666438],[-76.59654727811323,39.27920378862813],[-76.5965438584521,39.27920308509545],[-76.59654043642189,39.27920239056223],[-76.59653701201746,39.27920170592913],[-76.59653358404915,39.27920103659665],[-76.59653015251686,39.27920038256485],[-76.59652671627707,39.27919974112744],[-76.596523276499,39.27919911048696],[-76.59651983320303,39.27919848704042],[-76.59651638756361,39.27919786808952],[-76.59651294191401,39.27919725093999],[-76.59650949743367,39.27919663199287],[-76.59650605412772,39.27919601034739],[-76.59650261318075,39.27919538150381],[-76.596499175762,39.2791947436646],[-76.59649574420985,39.27919409323477],[-76.59649231852946,39.27919342931354],[-76.5964889010695,39.27919274650439],[-76.5964854918351,39.27919204390661],[-76.5964820920006,39.27919131882197],[-76.5964787814773,39.27919037786076],[-76.59647556847028,39.27918920483742],[-76.5964723612992,39.27918802462793],[-76.59646905895556,39.27918707198457],[-76.59646503499393,39.27918685819052],[-76.59646136598933,39.27918659066922],[-76.59645981733155,39.27918500360762],[-76.59645992367068,39.27918240526967],[-76.59646072427593,39.2791793940649],[-76.59646139580015,39.27917645898155],[-76.59646254637505,39.27917386333043],[-76.59646321897375,39.27917236947269],[-76.59646371897546,39.27917126685415],[-76.59646439157412,39.2791697729964],[-76.59646487536043,39.27916866852067],[-76.59646551323097,39.2791671673375],[-76.59646595534053,39.27916605461169],[-76.5964665214318,39.27916453967045],[-76.59646731969131,39.27916214457994],[-76.5964677274763,39.27916074979714],[-76.5964681708552,39.27915921011369],[-76.59646849141127,39.27915807264964],[-76.59646956679214,39.27915382203717],[-76.59647024969142,39.27915112839753],[-76.59647093374959,39.27914843476184],[-76.59647161896665,39.27914574113016],[-76.59647230418366,39.27914304749841],[-76.59647298939551,39.27914035476743],[-76.59647367345859,39.27913766023102],[-76.59647435519858,39.27913496658731],[-76.59647503346669,39.27913227203095],[-76.59647570825791,39.27912957746262],[-76.59647600564462,39.27912843811743],[-76.59647639577206,39.27912688744181],[-76.59647667117933,39.27912574081499],[-76.59647705088628,39.27912418830206],[-76.59647732745253,39.27912304167923],[-76.59647770252359,39.27912148915036],[-76.59647798024878,39.27912034253151],[-76.5964783541608,39.27911878999866],[-76.59647862956292,39.27911764427256],[-76.59647900000314,39.27911609082705],[-76.5964792672976,39.27911494417233],[-76.59647963078915,39.27911338980214],[-76.59647989113996,39.27911224132205],[-76.59648024768279,39.27911068602721],[-76.59648050223878,39.27910953752727],[-76.59648085067393,39.27910798130382],[-76.59648110059916,39.27910683188713],[-76.59648144324973,39.2791052738423],[-76.59648168853903,39.2791041244097],[-76.59648202539469,39.27910256634495],[-76.59648226837632,39.27910141510291],[-76.59648259943715,39.27909985701824],[-76.5964828412598,39.27909870577218],[-76.59648316884878,39.27909714677483],[-76.59648340950734,39.27909599642557],[-76.59648373477832,39.27909443742021],[-76.59648396501639,39.27909328523363],[-76.59648426596961,39.27909172254169],[-76.59648447420263,39.27909056757722],[-76.596484749679,39.27908900119469],[-76.59648494980436,39.27908784530157],[-76.59648522180382,39.27908627890712],[-76.59648543234964,39.27908512485136],[-76.5964857298207,39.27908356304822],[-76.59648613364918,39.27908184487759],[-76.59648678071495,39.27907974561871],[-76.59648695093404,39.27907793837067],[-76.59648703107734,39.27907709282887],[-76.59648518119948,39.27907670815305],[-76.59648365546363,39.27907638944576],[-76.59648167916114,39.27907602145008],[-76.59648022038414,39.27907574891167],[-76.59647824408677,39.27907538001521],[-76.59647678530976,39.27907510747679],[-76.59647480901761,39.2790747376795],[-76.59647335139958,39.27907446514502],[-76.59647137510741,39.27907409534765],[-76.59646991633565,39.27907382190844],[-76.59646794004351,39.27907345211102],[-76.59646648243067,39.27907317867572],[-76.59646450613862,39.27907280887824],[-76.59646304736685,39.27907253543895],[-76.59646107223884,39.27907216474461],[-76.59645961346716,39.27907189130525],[-76.5964576383392,39.27907152061091],[-76.59645617956754,39.27907124717151],[-76.59645420327554,39.27907087737385],[-76.59645274566793,39.27907060303763],[-76.59645076937602,39.27907023323993],[-76.59644931176332,39.27906995980442],[-76.59644733547651,39.27906958910591],[-76.59644587786389,39.27906931567038],[-76.5964439015771,39.27906894497176],[-76.59644244396452,39.27906867153619],[-76.59644046767778,39.27906830083757],[-76.5964390089062,39.27906802739798],[-76.59643703377338,39.279067657604],[-76.59643557500183,39.27906738416435],[-76.59643359871518,39.27906701346558],[-76.59643214109752,39.27906674093059],[-76.59643016480578,39.27906637113257],[-76.59642870603429,39.2790660976928],[-76.59642673090157,39.27906572789868],[-76.59642527212497,39.27906545535961],[-76.59642329582817,39.27906508646221],[-76.59642183705166,39.27906481392314],[-76.59641986075489,39.27906444502563],[-76.59641840197834,39.2790641724865],[-76.59641642568162,39.27906380358898],[-76.59641496690003,39.27906353195054],[-76.59641299059821,39.27906316395371],[-76.5964115318166,39.27906289231523],[-76.59640955551481,39.27906252431833],[-76.59640809672815,39.27906225358054],[-76.59640611926746,39.27906188557959],[-76.59640466048077,39.27906161484182],[-76.59640268416881,39.27906124864626],[-76.5964012242232,39.27906097790444],[-76.59639924791128,39.27906061170885],[-76.59639778796057,39.27906034186771],[-76.59639581048461,39.27905997656885],[-76.59639435169288,39.27905970673162],[-76.59639237421182,39.27905934233343],[-76.5963909142458,39.27905907519445],[-76.59638893204693,39.27905872519223],[-76.5963874649939,39.27905848144867],[-76.59638547335938,39.27905816023842],[-76.59638400275772,39.27905792909336],[-76.59638200992836,39.27905761418423],[-76.59638054287024,39.27905737134139],[-76.59637856183043,39.27905702134296],[-76.59637518106962,39.2790562044428],[-76.59637233052723,39.27905569652495],[-76.59637075953202,39.27905559204243],[-76.5963686711252,39.27905557585823],[-76.59636673913275,39.27905556831838],[-76.59636470165896,39.27905556311826],[-76.59636320204822,39.2790555417512],[-76.59636117051274,39.27905551135007],[-76.59635967091738,39.27905548728073],[-76.59635763823319,39.27905545507407],[-76.596356138643,39.27905543010394],[-76.59635410596394,39.27905539699645],[-76.5963526063686,39.27905537292703],[-76.59635057368442,39.27905534072022],[-76.59634907408906,39.27905531665076],[-76.59634704141,39.27905528354314],[-76.59634554181466,39.27905525947363],[-76.59634350913561,39.27905522636597],[-76.59634200954025,39.27905520229643],[-76.59633997802021,39.27905516919267],[-76.59633847727105,39.27905514421835],[-76.59633644575607,39.27905511021381],[-76.59633494616585,39.27905508524339],[-76.59633291349706,39.27905505033407],[-76.59633141391197,39.27905502446286],[-76.59632938240732,39.27905498865669],[-76.59632788282734,39.27905496188472],[-76.59632585017394,39.27905492427302],[-76.5963243505991,39.27905489660026],[-76.59632231910982,39.27905485809173],[-76.59632081954011,39.27905482951815],[-76.59631878806104,39.27905478920808],[-76.5963172885016,39.279054758833],[-76.59631525703281,39.27905471672138],[-76.59631375864257,39.2790546845487],[-76.59631172847114,39.27905461812084],[-76.59630991662618,39.27905447497767],[-76.59630811169268,39.27905393191909],[-76.59630769010015,39.27905225324803],[-76.59630801571444,39.27905104193913],[-76.59630845233193,39.27904946890472],[-76.59630875681319,39.2790483052637],[-76.59630916863479,39.27904640516681],[-76.59630917538021,39.27904542335752],[-76.59630918499633,39.279044140703],[-76.59630578980725,39.27904361920173],[-76.59630425093478,39.279043368905],[-76.59630145780872,39.27904295486222],[-76.59629876248752,39.27904266546093],[-76.59629727519454,39.27904251622691],[-76.59629525966915,39.27904232013915],[-76.59629377116592,39.27904217990855],[-76.59629175327645,39.27904199191948],[-76.59629026359383,39.27904185528784],[-76.5962882445095,39.27904167359995],[-76.59628675480121,39.279041541472],[-76.5962847345375,39.27904136338305],[-76.59628324365491,39.2790412339533],[-76.59628122336554,39.27904106036802],[-76.59627973130863,39.27904093363647],[-76.59627771100389,39.27904076275338],[-76.59627621893675,39.27904063782329],[-76.5962741974577,39.27904046963835],[-76.59627270538545,39.279040345609],[-76.59627068389611,39.27904017922552],[-76.59626919181873,39.27904005609683],[-76.59626717032434,39.27903989061405],[-76.59626567824185,39.27903976838607],[-76.59626365674748,39.2790396029032],[-76.596262164665,39.27903948067519],[-76.59626014315015,39.27903931879523],[-76.59625864984204,39.27903920827289],[-76.5962566259016,39.27903906530061],[-76.59625513136798,39.27903896648392],[-76.59625310502246,39.27903883881628],[-76.59625160928371,39.27903874810229],[-76.59624958291775,39.27903862403758],[-76.59624777561692,39.27903849712279],[-76.59624606678727,39.27903837775256],[-76.59624498694174,39.27903770837626],[-76.5962435790928,39.2790368370021],[-76.59624217384379,39.27903591609488],[-76.59624062897501,39.27903488661601],[-76.59623949753993,39.27903411797831],[-76.5962379724813,39.2790330696515],[-76.59623685850768,39.27903228756232],[-76.59623535323358,39.27903122489128],[-76.59623424623946,39.27903043832223],[-76.59623274794487,39.27902937117132],[-76.59623164327897,39.27902858280876],[-76.59623014731261,39.27902751386426],[-76.59622904381597,39.27902672370415],[-76.5962275490138,39.27902565386288],[-76.59622644668134,39.279024862806],[-76.59622495304848,39.27902379116716],[-76.59622385187504,39.27902300011423],[-76.59622235940118,39.27902192847937],[-76.59622125823293,39.27902113652563],[-76.59621976692841,39.27902006309323],[-76.59621866576022,39.27901927113948],[-76.59621717561474,39.27901819771104],[-76.59621607561067,39.27901740486051],[-76.59621458431144,39.27901633052728],[-76.59621348546644,39.27901553768075],[-76.59621199532617,39.27901446335146],[-76.59621089648634,39.27901366960413],[-76.59620940751032,39.27901259437807],[-76.59620830750646,39.27901180152747],[-76.59620681853563,39.27901072540064],[-76.59620572085487,39.27900993165724],[-76.59620423187897,39.2790088564311],[-76.59620313303932,39.27900806268369],[-76.59620164406353,39.27900698745756],[-76.596200545229,39.27900619280932],[-76.59619905741228,39.27900511758713],[-76.59619795857274,39.27900432383966],[-76.59619646959709,39.27900324861342],[-76.59619537075761,39.27900245486594],[-76.59619388178717,39.27900137873896],[-76.59619278294257,39.27900058589218],[-76.59619129396712,39.27899951066589],[-76.59619019396875,39.27899871691437],[-76.59618870498822,39.27899764258878],[-76.59618760498478,39.27899684973801],[-76.59618611484537,39.2789957754084],[-76.59618352470272,39.27899390822792],[-76.59616312621726,39.27899273736338],[-76.59612755241372,39.27899596228815],[-76.5960911298952,39.27901736439866],[-76.59605868160597,39.27903061023808],[-76.596015794198,39.27904081881988],[-76.59596626562995,39.27907323539127],[-76.59593202686595,39.27910007837085],[-76.59585270732164,39.27915877667669],[-76.59579849325398,39.27920067380683],[-76.59576421026448,39.27922589971385],[-76.59573317915711,39.27924445313639],[-76.59572835562018,39.27924380960309],[-76.59572588848178,39.27924578099023],[-76.5957233775283,39.27924771259291],[-76.59572086772845,39.27924964510027],[-76.59571835793365,39.27925157670678],[-76.59571584813357,39.27925350921402],[-76.59571333833843,39.27925544082047],[-76.59571082853809,39.27925737332761],[-76.59570831758373,39.27925930492995],[-76.59570580778825,39.27926123653624],[-76.59570329683362,39.27926316813848],[-76.59570078588403,39.27926509883989],[-76.59569827378044,39.27926702863653],[-76.59569576051257,39.27926895932988],[-76.59569324725489,39.2792708882217],[-76.59569073283811,39.27927281710943],[-76.5956882184314,39.27927474419565],[-76.59568570170666,39.27927667127381],[-76.5956831838279,39.2792785974472],[-76.59568066480037,39.27928052181504],[-76.5956781446137,39.27928244617886],[-76.59567562212432,39.27928436783235],[-76.59567309616816,39.27928628767236],[-76.59567056790935,39.27928820480211],[-76.5956680373427,39.27929012012231],[-76.59566550446316,39.27929203453375],[-76.5956629715886,39.27929394804438],[-76.59566043640109,39.27929586064626],[-76.59565790121856,39.27929777234729],[-76.5956553660359,39.27929968404829],[-76.5956528308531,39.27930159574922],[-76.59565029566504,39.27930350835085],[-76.59564776278965,39.27930542186112],[-76.59564523106792,39.27930733627609],[-76.59564270049484,39.2793092524965],[-76.59564017223438,39.27931116962559],[-76.59563786560292,39.27931324425045],[-76.59563979550173,39.27931545055927],[-76.59564235886234,39.2793173392777],[-76.59564492221793,39.2793192288968],[-76.5956474855788,39.2793211176151],[-76.59565004894493,39.27932300543259],[-76.59565261346502,39.27932489415476],[-76.5956551768263,39.27932678287285],[-76.5956577413518,39.27932867069418],[-76.59566030587744,39.27933055851543],[-76.59566287040322,39.2793324463366],[-76.59566543608814,39.27933433416175],[-76.59566800061418,39.27933622198282],[-76.59567056630446,39.2793381089071],[-76.59567313198978,39.27933999673207],[-76.59567569768033,39.27934188365622],[-76.59567826337107,39.27934377058032],[-76.5956808290619,39.27934565750436],[-76.59568339591186,39.27934754443232],[-76.59568596160295,39.27934943135623],[-76.59568852845831,39.27935131738337],[-76.5956910953087,39.27935320431115],[-76.59569366216434,39.27935509033816],[-76.59569622901493,39.27935697726585],[-76.59569879587085,39.27935886329273],[-76.5957013627269,39.27936074931954],[-76.5957039295831,39.2793626353463],[-76.59570649759837,39.27936452137701],[-76.59570906445991,39.2793664065029],[-76.59571163247547,39.27936829253348],[-76.59571420049116,39.27937017856403],[-76.59571676851216,39.27937206369376],[-76.59571933536913,39.27937394972017],[-76.59572190339037,39.2793758348498],[-76.5957244714066,39.27937772088007],[-76.5957270394281,39.27937960600959],[-76.59572960860875,39.27938149114302],[-76.59573217663053,39.27938337627241],[-76.59573474465246,39.27938526140172],[-76.5957373126745,39.27938714653099],[-76.59573988185565,39.27938903166418],[-76.59574244987796,39.27939091679336],[-76.59574501790044,39.27939280192243],[-76.59574758708204,39.27939468705549],[-76.59575015510478,39.27939657218444],[-76.59575272428661,39.27939845731737],[-76.59575529231473,39.27940034154548],[-76.5957578614969,39.27940222667828],[-76.59576042952017,39.27940411180705],[-76.59576299870255,39.27940599693972],[-76.5957655667261,39.27940788206838],[-76.59576813591389,39.27940976630019],[-76.5957707039377,39.27941165142869],[-76.59577327312068,39.27941353656117],[-76.5957758411499,39.27941542078882],[-76.59577847650232,39.27941728723284],[-76.59578118036255,39.27941913139348],[-76.5957838795973,39.27942097373658],[-76.59578650339637,39.27942283383532],[-76.59578897631353,39.27942473124685],[-76.59579089406154,39.27942683392343],[-76.59578889298822,39.2794291852364],[-76.5957863337431,39.2794310482161],[-76.59578366468278,39.27943286037505],[-76.59578096207372,39.27943466160938],[-76.59577830216172,39.279436495418],[-76.5957757611979,39.27943840439938],[-76.5957736553244,39.27944063825216],[-76.59577167882973,39.27944294731348],[-76.59576907838922,39.27944471737242],[-76.59576604863246,39.27944616618264],[-76.59576284600467,39.27944744325276],[-76.59575964286455,39.27944860682483],[-76.59575674779855,39.2794479780366],[-76.59575419487635,39.27944608665442],[-76.59575168971853,39.27944415219991],[-76.59574918922752,39.27944221235686],[-76.59574669455206,39.27944026893069],[-76.59574420221007,39.27943832281019],[-76.59574171103233,39.2794363757929],[-76.59573921985475,39.27943442877551],[-76.59573672635419,39.27943248265092],[-76.59573423051532,39.27943054012121],[-76.59573171722526,39.27942860924133],[-76.59572896845242,39.2794269180548],[-76.59572600605462,39.27942834277525],[-76.5957232631471,39.27943009702981],[-76.59572059762884,39.27943189748961],[-76.5957179413258,39.27943370788948],[-76.59571529309946,39.27943552462244],[-76.59571265063713,39.27943734677973],[-76.59571001048226,39.27943917074644],[-76.59570737032217,39.27944099561384],[-76.59570472901326,39.2794428186757],[-76.5957020830888,39.27944463811858],[-76.59569943024117,39.27944645213297],[-76.59569676817296,39.2794482571079],[-76.59569409572521,39.27945005303943],[-76.59569142097986,39.27945184535995],[-76.59568874507545,39.2794536376764],[-76.5956860680119,39.2794554299888],[-76.59568339095335,39.27945722140037],[-76.5956807138998,39.27945901191116],[-76.59567803568716,39.2794608024179],[-76.59567535747952,39.27946259202385],[-76.59567267811278,39.27946438162574],[-76.59566999874585,39.2794661712275],[-76.59566731822503,39.27946795992455],[-76.59566463886296,39.27946974862549],[-76.59566195834694,39.27947153642162],[-76.5956592778257,39.27947332511849],[-76.59565659615558,39.27947511200973],[-76.5956539144802,39.27947689980174],[-76.59565123280981,39.27947868669287],[-76.59564855113415,39.27948047448471],[-76.5956458694635,39.27948226137575],[-76.59564318663882,39.279484047362],[-76.5956405049679,39.27948583425294],[-76.59563782213787,39.27948762113976],[-76.59563514047181,39.27948940712982],[-76.59563245764147,39.27949119401656],[-76.59562977481617,39.27949298000247],[-76.59562709198562,39.2794947668891],[-76.59562440916,39.27949655287487],[-76.59562172749325,39.27949833886463],[-76.5956190446623,39.27950012575106],[-76.59561636183119,39.27950191263743],[-76.59561368016405,39.27950369862695],[-76.59561099733263,39.27950548551321],[-76.59560831566007,39.27950727240336],[-76.59560563398226,39.27950906019421],[-76.59560295230945,39.27951084708426],[-76.59560027063135,39.27951263487498],[-76.59559759011215,39.27951442266964],[-76.59559490959275,39.27951621046422],[-76.59559222906807,39.27951799915947],[-76.5955895485484,39.27951978695394],[-76.59558686917734,39.27952157655386],[-76.59558418981122,39.27952336525291],[-76.59558151043476,39.27952515575342],[-76.59557883222226,39.27952694535712],[-76.59557615516343,39.27952873586549],[-76.59557347694039,39.27953052727054],[-76.59557079987616,39.27953231867955],[-76.5955681239708,39.27953411009245],[-76.595565448055,39.27953590330682],[-76.59556277329807,39.2795376965251],[-76.595560105464,39.27953949517167],[-76.59555744222979,39.27954130013946],[-76.59555478592364,39.27954310963486],[-76.59555213191986,39.27954492184038],[-76.5955494825313,39.27954673766477],[-76.59554683313752,39.2795485543899],[-76.59554418490251,39.27955037111887],[-76.59554153550846,39.27955218784387],[-76.59553888497065,39.27955400186256],[-76.59553623096606,39.27955581406771],[-76.59553357234599,39.27955762265388],[-76.59553090912068,39.27955942581952],[-76.59552823897735,39.27956122265593],[-76.5955255584493,39.2795630113497],[-76.5955228698545,39.2795647919087],[-76.59552017433654,39.27956656703922],[-76.59551747536723,39.27956833765401],[-76.59551477408495,39.27957010735999],[-76.59551207280253,39.27957187706589],[-76.59550937498146,39.27957364948595],[-76.59550668177563,39.2795754255249],[-76.59550399548247,39.27957720879371],[-76.59550131379939,39.27957899658214],[-76.59549863442899,39.27958078527922],[-76.595495957361,39.27958257668649],[-76.59549328144152,39.27958436989913],[-76.59549060898864,39.27958616492523],[-76.5954879376894,39.27958796085602],[-76.59548526753363,39.27958975949291],[-76.59548259969056,39.27959155903849],[-76.595479934155,39.27959336039353],[-76.59547726861929,39.27959516174848],[-76.59547460423221,39.27959696490883],[-76.59547193985007,39.27959876716839],[-76.59546927546265,39.27960057032862],[-76.59546661222898,39.27960237439353],[-76.59546394899516,39.27960417845839],[-76.59546128692018,39.27960598252717],[-76.59545862484507,39.27960778659592],[-76.59545596276467,39.27960959156533],[-76.59545330068416,39.27961139653464],[-76.59545063860348,39.27961320150395],[-76.59544797651756,39.27961500737392],[-76.59544531559563,39.27961681234707],[-76.59544265466839,39.27961861822092],[-76.59543999258719,39.27962042318998],[-76.59543733165972,39.27962222906369],[-76.59543467073208,39.27962403493734],[-76.59543200980943,39.27962583991021],[-76.59542934772254,39.27962764577973],[-76.59542668679968,39.27962945075247],[-76.59542402471253,39.27963125662189],[-76.59542136378934,39.27963306159451],[-76.59541870170705,39.27963486656307],[-76.59541609198918,39.2796366347806],[-76.59541115522313,39.27964039647934],[-76.59540859348327,39.27964228736582],[-76.59540602944075,39.27964417554202],[-76.59540346308526,39.27964606280946],[-76.59540089904242,39.27964795098558],[-76.59539833614818,39.27964984096711],[-76.5953957755615,39.27965173275804],[-76.59539321613366,39.27965362455296],[-76.59539065785435,39.27965551815326],[-76.59538809957492,39.2796574117535],[-76.59538554244916,39.27965930625847],[-76.59538298417459,39.27966119895785],[-76.59538042473578,39.27966309255395],[-76.59537786530706,39.27966498434847],[-76.5953753035706,39.27966687433348],[-76.59537273952112,39.27966876340971],[-76.59537017201004,39.27967064977167],[-76.5953676033552,39.27967253342736],[-76.59536503007462,39.27967441526548],[-76.5953624533427,39.27967629258785],[-76.59535987314906,39.27967816719599],[-76.59535728141176,39.27968003365738],[-76.59535466891549,39.27968188203194],[-76.59535204026537,39.2796837177401],[-76.59534940238949,39.27968554530954],[-76.59534675989816,39.27968736925996],[-76.59534412087332,39.27968919502383],[-76.59534148876621,39.2796910271168],[-76.59533887166405,39.27969287007055],[-76.5953362741719,39.27969472930556],[-76.5953337043769,39.2796966093535],[-76.5953312614887,39.27969859162486],[-76.59532893169207,39.27970065985835],[-76.59532658343896,39.27970271271525],[-76.59532398855737,39.2797035045541],[-76.59532159282384,39.27970148669655],[-76.59531904226834,39.27969958720632],[-76.59531649637452,39.27969768322829],[-76.59531396212203,39.27969577028266],[-76.59531142903379,39.27969385644025],[-76.59530890176627,39.27969193811398],[-76.5953063838066,39.27969001351443],[-76.59530390660659,39.2796880548262],[-76.59530146306179,39.27968669796398],[-76.59529623403286,39.27969293034622],[-76.5952923068041,39.27969749449562],[-76.59528838766198,39.27970206317656],[-76.59528450434487,39.27970664999606],[-76.59528066378101,39.2797112594818],[-76.59527683362172,39.27971587350711],[-76.59527297803635,39.279720474834],[-76.5952690900916,39.27972505983552],[-76.59526518596695,39.27972963667429],[-76.59526127491358,39.2797342089852],[-76.59525736038792,39.27973878038326],[-76.59525342505157,39.27974334270182],[-76.59525198578096,39.27974818204896],[-76.59525431477482,39.27975336586201],[-76.59525665421528,39.27975854700866],[-76.59525899481501,39.27976372815931],[-76.59526133309205,39.27976891020262],[-76.59526366556936,39.27977409312673],[-76.59526598527765,39.27977927960974],[-76.59526828989392,39.27978447054456],[-76.59527058290533,39.27978966414163],[-76.59527287475292,39.27979485863539],[-76.59527517472915,39.27980005045483],[-76.59527749095712,39.27980523782636],[-76.59527982227777,39.27981042074607],[-76.59528216055787,39.27981560278892],[-76.59528450232546,39.27982078304218],[-76.5952868487345,39.27982596241063],[-76.59528919630284,39.27983114178301],[-76.59529154619459,39.2798363202626],[-76.59529389608673,39.27984149874213],[-76.5952962448202,39.27984667721761],[-76.59529859238991,39.27985185658978],[-76.5953009399651,39.27985703506115],[-76.59530328985856,39.27986221354045],[-76.59530563627034,39.27986739290846],[-76.59530798035935,39.27987257316916],[-76.59531031516654,39.27987775519938],[-76.59530977814786,39.27987924771595],[-76.59530861345081,39.27988248104734],[-76.59530413747963,39.27988673074134],[-76.59529977123081,39.2798910474697],[-76.59529540150963,39.27989536328514],[-76.59529096250087,39.27989963472428],[-76.5952846726756,39.27989982293027],[-76.59527767090343,39.27989905117111],[-76.59527067500336,39.2798982659203],[-76.59526368141115,39.27989748247861],[-76.5952566889832,39.27989669813973],[-76.59524969656569,39.27989591199892],[-76.59524270415346,39.27989512495695],[-76.59523571174654,39.27989433701384],[-76.59522872050391,39.27989354817352],[-76.59522172810757,39.27989275842808],[-76.59521473687036,39.27989196868624],[-76.59520774447947,39.27989117803922],[-76.595200754417,39.27989038559826],[-76.59519376321107,39.27988959045066],[-76.5951867720105,39.2798887944019],[-76.5951797819742,39.27988799745599],[-76.59517279076874,39.27988720230714],[-76.59516580072761,39.27988640626111],[-76.595158810702,39.27988560751248],[-76.59515182067146,39.27988480966414],[-76.59514482948212,39.27988401181142],[-76.59513783943127,39.2798832175652],[-76.59513084703697,39.27988242781436],[-76.59512385221693,39.27988165697077],[-76.59511684786303,39.27988093203283],[-76.5951107380479,39.27988166581194],[-76.5951061801371,39.27988585216249],[-76.59510163949228,39.27989005928999],[-76.59509712425192,39.27989428271859],[-76.59509263672372,39.27989852425783],[-76.59508816305657,39.27990277395153],[-76.59508369516314,39.27990702726803],[-76.59507922957174,39.27991128329462],[-76.59507476745159,39.27991554023368],[-76.59507030648481,39.27991979807739],[-76.59506584667125,39.27992405682561],[-76.59506138570339,39.27992831466892],[-76.59505692242215,39.27993257160333],[-76.59505245567365,39.27993682672412],[-76.5950479866273,39.27994107823373],[-76.59504351063676,39.27994532791766],[-76.59503901964067,39.27994956674056],[-76.59503450093126,39.27995378745247],[-76.5950299718265,39.27995800182303],[-76.59502545195707,39.27996222253058],[-76.59502095633827,39.27996645863455],[-76.59501647804201,39.27997070560724],[-76.59501201014007,39.27997495892095],[-76.59500754800675,39.27997921675814],[-76.59500309049854,39.27998347641268],[-76.59499863298463,39.27998773696777],[-76.59499418471125,39.27999200295911],[-76.59498974105782,39.27999627166853],[-76.59498529855252,39.28000054218325],[-76.59498085259031,39.28000480908283],[-76.59497639738659,39.28000907054581],[-76.59497193062849,39.2800133256634],[-76.59496746156732,39.28001757807058],[-76.59496299018767,39.28002183046961],[-76.59496032507793,39.28002436413492],[-76.59495851881775,39.28002608106699],[-76.59495404512933,39.28003033165621],[-76.59494957144551,39.28003458134444],[-76.59494509660733,39.28003883012777],[-76.59494061945064,39.280043078903],[-76.5949361434575,39.28004732678121],[-76.59493166515105,39.28005157375057],[-76.59492718683892,39.28005582162049],[-76.59492270853653,39.28006006768872],[-76.59491822906949,39.28006431465355],[-76.59491374960702,39.28006856071744],[-76.59490927014406,39.28007280678118],[-76.59490478836771,39.28007705193598],[-76.59490029966264,39.28008129256286],[-76.5948958074955,39.28008553047539],[-76.59489131302018,39.28008976657825],[-76.59488681853918,39.28009400358165],[-76.59488232752425,39.28009824239837],[-76.59487784574469,39.28010248755211],[-76.59487336165688,39.28010673089619],[-76.59486885215838,39.28011095883948],[-76.59486429647485,39.28011515599733],[-76.59485978698555,39.28011938213876],[-76.59485551193103,39.2801237559131],[-76.5948509043128,39.28012791415845],[-76.59484610649054,39.28012742651007],[-76.59484102283636,39.28012361405816],[-76.59483593336726,39.28011980518904],[-76.5948308438987,39.28011599631969],[-76.59482575326659,39.28011218834691],[-76.59482066262981,39.28010838127459],[-76.59481557199878,39.2801045733013],[-76.59481048020415,39.28010076622456],[-76.5948053884101,39.2800969591476],[-76.59480029777038,39.28009315297513],[-76.59479520597736,39.28008934589769],[-76.59479011418495,39.28008553882003],[-76.59478502239304,39.28008173174217],[-76.59477993059653,39.28007792556483],[-76.59477483880576,39.2800741184865],[-76.59476975167199,39.28007030782094],[-76.59476467036458,39.28006649177072],[-76.5947595937142,39.28006267213323],[-76.59475452055163,39.28005885070604],[-76.59474944623064,39.28005502927465],[-76.5947443719102,39.28005120784303],[-76.5947392940979,39.28004738910143],[-76.59473421162451,39.28004357484735],[-76.59472912332585,39.28003976597751],[-76.59472402571987,39.28003596338066],[-76.594718917627,39.28003217065584],[-76.59471379789339,39.28002838689819],[-76.59470866418047,39.28002461570284],[-76.59470351067797,39.28002085975192],[-76.5946983234008,39.28001713250864],[-76.59469310701077,39.28001342948534],[-76.59468786732837,39.28000974619817],[-76.59468261018463,39.28000607636196],[-76.59467734255398,39.28000241639775],[-76.59467206910318,39.27999876091705],[-76.59466679797609,39.27999510454334],[-76.59466153151122,39.27999144368164],[-76.59465625572349,39.27998779179519],[-76.59465096828994,39.2799841497767],[-76.5946456738722,39.27998051313844],[-76.5946403747881,39.2799768818884],[-76.59463507454564,39.27997325063416],[-76.59462977663193,39.27996961758615],[-76.59462448221632,39.2799659809469],[-76.59461919011923,39.27996234431543],[-76.59461389570468,39.27995870767572],[-76.59460860244971,39.27995507103974],[-76.59460330803627,39.27995143439956],[-76.59459801477718,39.27994779866386],[-76.59459272036482,39.27994416202318],[-76.59458742594789,39.27994052628299],[-76.59458213153147,39.27993689054257],[-76.59457683712074,39.27993325390117],[-76.5945715427054,39.27992961816026],[-76.59456624945472,39.27992598152233],[-76.59456095504045,39.27992234578093],[-76.59455566063194,39.27991870913858],[-76.59455036737774,39.27991507340069],[-76.59454507297025,39.27991143675784],[-76.59453977855817,39.27990780101546],[-76.59453448415178,39.27990416437213],[-76.5945291908998,39.27990052863327],[-76.59452389649448,39.27989689198941],[-76.59451860208972,39.27989325534533],[-76.59451330884451,39.27988961870502],[-76.59450801443569,39.2798859829612],[-76.59450272002739,39.27988234721714],[-76.59449742561966,39.27987871147283],[-76.59449410997671,39.27987643460578],[-76.59449213121246,39.27987507572828],[-76.5944868368058,39.27987143998349],[-76.59448154240484,39.27986780333774],[-76.59447625032753,39.27986416579893],[-76.59447095825593,39.27986052735919],[-76.59446566851308,39.27985688712572],[-76.59446038226318,39.27985324420174],[-76.59445509951136,39.27984959768658],[-76.59444982025248,39.2798459484809],[-76.59444454215831,39.27984229837828],[-76.59443926406462,39.27983864827541],[-76.59443398829974,39.27983499637879],[-76.59442871603297,39.27983134089098],[-76.59442344143844,39.27982768719639],[-76.5944181610187,39.27982403888601],[-76.5944128724454,39.2798203977534],[-76.5944075792059,39.27981676200897],[-76.59440228247965,39.27981312805377],[-76.59439698459502,39.27980949409436],[-76.59439168902884,39.27980586014268],[-76.59438639463254,39.27980222439334],[-76.59438110024188,39.27979858774293],[-76.59437580584662,39.27979495199305],[-76.59437051029295,39.27979131623892],[-76.59436521356534,39.2797876831828],[-76.5943599133511,39.27978405191593],[-76.59435460963985,39.27978042423975],[-76.59434923952742,39.27977685578444],[-76.59434420230598,39.27977425589867],[-76.59433939622714,39.27977825760692],[-76.59433455192725,39.27978225467913],[-76.59432971108829,39.27978625446536],[-76.59432486908977,39.27979025424739],[-76.59432002594718,39.27979425132302],[-76.59431517702465,39.27979824567615],[-76.59431032348621,39.27980223641008],[-76.59430547226006,39.27980622805256],[-76.59430061987439,39.27981021969084],[-76.59429576864198,39.27981421223369],[-76.59429091625523,39.27981820387156],[-76.5942860627192,39.2798221937037],[-76.59428120687501,39.27982618172617],[-76.59427634640467,39.27983016793091],[-76.5942714836364,39.27983415052446],[-76.59426661508819,39.2798381303956],[-76.5942617407754,39.27984210484198],[-76.59425674756623,39.27984599510647],[-76.59425528757019,39.27984998765209],[-76.59426038648341,39.279847880364],[-76.594266213338,39.27984920299577],[-76.59426991172394,39.27985386281041],[-76.59427342861404,39.27985864360107],[-76.59427717217025,39.27986330897606],[-76.59428132498068,39.27986774967285],[-76.59428557075734,39.27987214745397],[-76.59428909683864,39.27987572665722],[-76.59428987695084,39.27987651932144],[-76.59429422962258,39.27988087063174],[-76.5942986125107,39.279885207634],[-76.59430301051246,39.27988953658143],[-76.59430741084822,39.27989386283448],[-76.59431179725094,39.27989819354302],[-76.59431615462303,39.27990253405954],[-76.59432046901556,39.27990689154194],[-76.59432472533592,39.27991127044198],[-76.59432890731725,39.2799156779095],[-76.59433300333882,39.279920119309],[-76.59433699481572,39.27992460178245],[-76.59434086780412,39.27992913158698],[-76.59434394431082,39.27993410992323],[-76.59434583013277,39.27993956155197],[-76.59434675958957,39.27994504590839],[-76.59434569252842,39.27995024953753],[-76.59434251078461,39.27995536569541],[-76.59434447719714,39.27995787120481],[-76.59434644606152,39.27996015063094],[-76.59434841609014,39.27996242916031],[-76.59435038727784,39.27996470769369],[-76.5943523584657,39.279966986227],[-76.59435432733058,39.27996926565299],[-76.59435629503142,39.27997154597571],[-76.59435825925034,39.27997382718713],[-76.59436022345903,39.27997611019999],[-76.59436218651403,39.27997839230812],[-76.59436414840505,39.27998067531291],[-76.59436611029103,39.27998295921842],[-76.59436807102334,39.27998524221918],[-76.59437003291468,39.27998752522386],[-76.59437199480621,39.27998980822854],[-76.59437395785682,39.27999209123716],[-76.59437592090761,39.27999437424577],[-76.59437788512774,39.27999665545686],[-76.59437985050701,39.27999893667192],[-76.59438181820434,39.28000121789493],[-76.59438378590696,39.28000349821718],[-76.5943857536149,39.28000577763863],[-76.59438772248188,39.28000805706402],[-76.594389692508,39.28001033649345],[-76.59439166253425,39.28001261592278],[-76.59439363140682,39.28001489444737],[-76.59439560143332,39.28001717387669],[-76.59439757145995,39.28001945330592],[-76.59439954032774,39.28002173273113],[-76.59440150803664,39.28002401215232],[-76.59440347574052,39.2800262924742],[-76.59440544344457,39.28002857279606],[-76.59440740882557,39.28003085401063],[-76.59440937304262,39.28003313612189],[-76.59441133493667,39.28003541912588],[-76.59441329566667,39.28003770302659],[-76.59441525290961,39.28003998871672],[-76.59441720899365,39.28004227440282],[-76.59441916507271,39.28004456098965],[-76.59442111999289,39.28004684757241],[-76.59442307607215,39.28004913415917],[-76.59442503215669,39.28005141984516],[-76.5944269905645,39.28005370463835],[-76.59442895129041,39.2800559894395],[-76.59443091086258,39.28005827333589],[-76.59443287159391,39.28006055723625],[-76.59443483348947,39.28006284023983],[-76.5944367953851,39.28006512324334],[-76.59443875728091,39.28006740624686],[-76.59444072033583,39.2800696892543],[-76.59444268339091,39.28007197226176],[-76.59444464761019,39.28007425437239],[-76.5944466118348,39.28007653558227],[-76.59444857721329,39.28007881769685],[-76.59445054259712,39.28008109891068],[-76.59445250798106,39.28008338012445],[-76.59445447336513,39.28008566133819],[-76.5944564387493,39.28008794255192],[-76.59445840413362,39.28009022376556],[-76.59446036951807,39.28009250497919],[-76.59446233490266,39.28009478619281],[-76.59446430144634,39.28009706741037],[-76.59446626683112,39.28009934862391],[-76.59446823337505,39.28010162984141],[-76.59447019876015,39.28010391105489],[-76.59447216414536,39.28010619226831],[-76.59447413068968,39.28010847348571],[-76.59447609723925,39.28011075380235],[-76.59447806262484,39.28011303501566],[-76.59448002916953,39.28011531623295],[-76.59448199455538,39.28011759744622],[-76.59448396110548,39.2801198777627],[-76.59448592765054,39.28012215897991],[-76.59448789303673,39.28012444019306],[-76.5944898595821,39.28012672141018],[-76.5944918261327,39.28012900172651],[-76.59449379151924,39.28013128293955],[-76.59449575806494,39.28013356415657],[-76.59449772461592,39.28013584447282],[-76.59449969000289,39.28013812568576],[-76.59450165654897,39.28014040690268],[-76.59450362309518,39.28014268811958],[-76.5945055884877,39.28014496843169],[-76.59450755503416,39.28014724964849],[-76.59450952158075,39.28014953086527],[-76.59451148696849,39.28015181207802],[-76.59451345352048,39.28015409239395],[-76.59451541890847,39.28015637360662],[-76.59451738545556,39.28015865482326],[-76.59451935084381,39.28016093603586],[-76.59452131739116,39.28016321725244],[-76.59452328278475,39.28016549756425],[-76.59452524933235,39.28016777878075],[-76.5945272147211,39.28017005999322],[-76.59452918010999,39.28017234120566],[-76.59453114665796,39.28017462242203],[-76.5945331120471,39.2801769036344],[-76.59453507743629,39.28017918484674],[-76.59453704282569,39.28018146605903],[-76.59453900821005,39.28018374817202],[-76.59454097359969,39.28018602938424],[-76.5945429389894,39.28018831059645],[-76.59454490437929,39.28019059180861],[-76.59454686976416,39.28019287392146],[-76.59454883515431,39.28019515513355],[-76.59455079938556,39.28019743634159],[-76.59455276477081,39.28019971845441],[-76.59455472899717,39.28020200056311],[-76.59455669322885,39.28020428177106],[-76.59455865745545,39.28020656387971],[-76.59456062051807,39.2802088468851],[-76.59456258474498,39.28021112899368],[-76.594564547813,39.28021341109823],[-76.59456651088114,39.28021569320278],[-76.59456847394426,39.28021797620799],[-76.5945704370127,39.28022025831244],[-76.59457240007609,39.28022254131761],[-76.59457436313959,39.28022482432276],[-76.59457632620835,39.2802271064271],[-76.5945782892721,39.28022938943217],[-76.59458025117702,39.28023167243319],[-76.59458221424617,39.28023395453742],[-76.59458417731031,39.2802362375424],[-76.59458614037456,39.28023852054734],[-76.59458810344414,39.28024080265148],[-76.59459006650866,39.28024308565632],[-76.59459202957845,39.28024536776041],[-76.59459399264321,39.28024765076518],[-76.59459595571325,39.28024993286922],[-76.5945979187834,39.28025221497317],[-76.59459988300756,39.28025449798189],[-76.59460184607799,39.28025678008579],[-76.5946038103075,39.28025906219364],[-76.59460577454234,39.28026134340073],[-76.59460773993112,39.28026362551253],[-76.59460970416102,39.28026590762033],[-76.5946116695552,39.28026818883131],[-76.59461363494952,39.28027047004226],[-76.59461560034391,39.28027275125316],[-76.59461756806162,39.28027503157129],[-76.5946195357794,39.2802773118894],[-76.59462150466148,39.28027959131071],[-76.59462347470266,39.28028187073603],[-76.5946254447491,39.28028414926053],[-76.59462741711877,39.28028642689226],[-76.59462938948862,39.28028870452393],[-76.59463136418167,39.28029098126284],[-76.59463333887486,39.28029325800172],[-76.59463531706058,39.28029553205033],[-76.59463733011896,39.280297788204],[-76.59463938943402,39.28030006253249],[-76.59463790317946,39.28030195891505],[-76.59463523413423,39.28030375753629],[-76.59463258700157,39.2803055751491],[-76.594629950243,39.28030740270604],[-76.59462732963297,39.28030924383014],[-76.5946247182484,39.28031109309286],[-76.594622111479,39.28031294597453],[-76.59461950586334,39.28031479976084],[-76.59461690140135,39.28031665445187],[-76.5946142946264,39.2803185082341],[-76.59461168440014,39.28032035750056],[-76.5946090684045,39.28032220224321],[-76.594606443178,39.28032403974779],[-76.59460380641806,39.28032586730419],[-76.59460116159148,39.28032768672574],[-76.59459851099552,39.28032950162357],[-76.59459585808658,39.28033131561256],[-76.5945932098032,39.28033313141895],[-76.59459056611959,39.28033495354655],[-76.59458792821017,39.28033677929707],[-76.59458529029553,39.28033860594827],[-76.59458265468834,39.28034043440887],[-76.59458002370161,39.28034226558768],[-76.59457739847359,39.28034410309164],[-76.59457478132236,39.28034594692875],[-76.59457217916577,39.28034780342828],[-76.59456959776786,39.28034967801465],[-76.5945670244467,39.28035155893419],[-76.59456444881769,39.28035343804419],[-76.59456186626555,39.28035531172566],[-76.59455927333899,39.28035717546282],[-76.59455665964319,39.28035902291452],[-76.59455404594723,39.28036087036617],[-76.59455143225111,39.28036271781775],[-76.59454881856004,39.28036456436849],[-76.59454620371496,39.28036641001448],[-76.59454358655695,39.28036825475164],[-76.59454096825007,39.28037009768327],[-76.5945383476354,39.28037193880535],[-76.59453572355909,39.28037377721307],[-76.59453309718012,39.28037561291053],[-76.59453046503174,39.28037744408423],[-76.59452779021177,39.28037923817922],[-76.59452509578668,39.280381015092],[-76.59452243251,39.28038281733359],[-76.594519953827,39.2803847679376],[-76.59451772334926,39.28038263173372],[-76.59451573237483,39.28038036484514],[-76.59451374838017,39.2803780934768],[-76.59451177136022,39.28037581852946],[-76.59450979899172,39.28037354089589],[-76.59450782895165,39.28037126146873],[-76.59450586007584,39.28036898114479],[-76.59450389119505,39.28036670172161],[-76.59450191883221,39.28036442318712],[-76.59449994414126,39.28036214644612],[-76.5944979624759,39.28035987328398],[-76.59449597732342,39.28035760191135],[-76.59449399217105,39.28035533053865],[-76.59449200701371,39.28035306006667],[-76.59449002069742,39.28035078959068],[-76.59448803438133,39.28034851911465],[-76.59448604806019,39.28034624953933],[-76.59448406058537,39.28034397905918],[-76.59448207310548,39.28034170947981],[-76.5944800844668,39.28033943989639],[-76.59447809698716,39.28033717031688],[-76.59447610834353,39.28033490163412],[-76.59447411970521,39.28033263205059],[-76.59447213106183,39.28033036336774],[-76.59447014126476,39.28032809378013],[-76.59446815262163,39.28032582509721],[-76.59446616281966,39.28032355641031],[-76.59446417417678,39.28032128772733],[-76.59446218437508,39.2803190190403],[-76.59446019457349,39.28031675035325],[-76.59445820477202,39.28031448166617],[-76.59445621612966,39.28031221298308],[-76.59445422632845,39.28030994429592],[-76.59445223652737,39.28030767560873],[-76.5944502455623,39.28030540781828],[-76.59444825460251,39.28030313912699],[-76.59444626363249,39.2803008722372],[-76.59444427150883,39.2802986044426],[-76.59444227938523,39.28029633664799],[-76.59444028725663,39.28029406975406],[-76.5944382951282,39.28029180286012],[-76.594436303005,39.2802895350654],[-76.5944343097178,39.2802872681674],[-76.5944323175897,39.28028500127331],[-76.59443032546692,39.28028273347851],[-76.5944283345032,39.28028046568762],[-76.59442634238069,39.28027819789273],[-76.59442435257624,39.28027593010579],[-76.5944223616129,39.28027366231483],[-76.59442037181385,39.28027139362707],[-76.5944183831739,39.28026912494327],[-76.5944163945393,39.28026685535871],[-76.59441440706372,39.28026458577812],[-76.59441242075245,39.28026231530075],[-76.59441043560543,39.28026004392659],[-76.59440845161755,39.28025777255639],[-76.59440646879388,39.28025550028942],[-76.59440448597037,39.2802532280224],[-76.59440250431112,39.28025095485864],[-76.594400522652,39.28024868169485],[-76.59439854215202,39.28024640853496],[-76.59439656165212,39.2802441353751],[-76.59439458115234,39.28024186221519],[-76.59439260065275,39.28023958905523],[-76.59439061899425,39.28023731589122],[-76.5943886373359,39.2802350427272],[-76.59438665567765,39.28023276956316],[-76.59438467285543,39.2802304972958],[-76.59438268886915,39.28022822592514],[-76.59438070488305,39.28022595455445],[-76.59437871857389,39.2802236840765],[-76.5943767322649,39.2802214135985],[-76.59437474362777,39.28021914491394],[-76.5943727526728,39.28021687622133],[-76.59437075938452,39.28021461022293],[-76.59436876377843,39.28021234421648],[-76.59436676700315,39.28021008000751],[-76.59436476791,39.2802078157905],[-76.594362769976,39.28020555157742],[-76.59436076971899,39.28020328825706],[-76.59435877062113,39.28020102494066],[-76.5943567715234,39.28019876162424],[-76.59435477243089,39.28019649740706],[-76.59435277565649,39.28019423319784],[-76.5943507800464,39.28019196809181],[-76.59434878560566,39.28018970118827],[-76.59434679348308,39.28018743429271],[-76.5943448025247,39.28018516650036],[-76.59434281273063,39.28018289781125],[-76.59434082293667,39.28018062912207],[-76.59433883314284,39.28017836043288],[-76.59433684451332,39.28017609084691],[-76.59433485704284,39.2801738212649],[-76.59433286957254,39.28017155168289],[-76.59433088210231,39.28016928210081],[-76.5943288946374,39.28016701161793],[-76.59432690832645,39.28016474203979],[-76.59432492085661,39.28016247245761],[-76.59432293339208,39.28016020197467],[-76.59432094708151,39.28015793239643],[-76.5943189596172,39.28015566191335],[-76.59431697214792,39.28015339233104],[-76.59431498351972,39.28015112274468],[-76.59431299605065,39.2801488531623],[-76.59431100742277,39.28014658357588],[-76.59430901995394,39.2801443139934],[-76.59430703248529,39.28014204441091],[-76.59430504385774,39.28013977482434],[-76.59430305638935,39.28013750524179],[-76.59430106892103,39.28013523565917],[-76.59429908145289,39.28013296607654],[-76.59429709282585,39.28013069648988],[-76.5942951053579,39.28012842690717],[-76.59429311789015,39.28012615732443],[-76.59429113042252,39.28012388774166],[-76.59428914179598,39.28012161815484],[-76.59428715432855,39.28011934857199],[-76.59428516686131,39.28011707898911],[-76.59428317823517,39.28011480940216],[-76.59428119076816,39.2801125398192],[-76.59427920214227,39.28011027023222],[-76.59427721467554,39.2801080006492],[-76.59427522604474,39.28010573196287],[-76.59427323741923,39.28010346237578],[-76.59427124646561,39.28010119458214],[-76.59426925551207,39.28009892678845],[-76.59426726339458,39.28009665989148],[-76.59426527012336,39.28009439208973],[-76.59426327800608,39.28009212519267],[-76.59426128705309,39.28008985739886],[-76.59425929726436,39.28008758870826],[-76.59425730980398,39.28008531822412],[-76.59425532582075,39.28008304775196],[-76.594253343012,39.28008077458156],[-76.59425137182419,39.28007849604666],[-76.59424946109934,39.28007618349159],[-76.59424754454884,39.28007387632095],[-76.59424546764667,39.28007164065742],[-76.59424241305169,39.28007032940292],[-76.59423911333947,39.28006931995818],[-76.59423583699245,39.28006827816655],[-76.59423258867749,39.28006719863964],[-76.59422934269607,39.28006611641837],[-76.59422609673014,39.28006503149476],[-76.59422285192335,39.28006394657508],[-76.59421960478323,39.28006286434955],[-76.59421634943243,39.28006179921006],[-76.59421310495048,39.28006065754314],[-76.59421020201111,39.28006180859855],[-76.59420725182083,39.28006331799457],[-76.59420428321037,39.28006480570856],[-76.59420131804578,39.28006629883892],[-76.59419836554743,39.2800678064252],[-76.59419541419769,39.28006931581691],[-76.59419246400675,39.28007082521257],[-76.59418951265675,39.28007233460409],[-76.59418656246044,39.28007384490036],[-76.59418361226399,39.28007535519651],[-76.59418066322644,39.2800768654966],[-76.5941777130246,39.28007837669334],[-76.59417476398158,39.280079887894],[-76.5941718137795,39.28008139909064],[-76.59416886474143,39.28008290939043],[-76.59416591569806,39.28008442059088],[-76.59416296665461,39.28008593179125],[-76.59416001645201,39.28008744298759],[-76.59415706740825,39.28008895418781],[-76.59415411721054,39.28009046448319],[-76.59415116700757,39.2800919756793],[-76.59414479128364,39.28009522252054],[-76.59413888053355,39.28009822956342],[-76.59413296747007,39.28010123569729],[-76.59412705556,39.28010424273555],[-76.5941211448032,39.28010725067829],[-76.59411523634843,39.280110261331],[-76.5941093313495,39.28011327559837],[-76.5941034297961,39.28011629528196],[-76.59409753515489,39.28011932219523],[-76.59409165317437,39.28012236446492],[-76.59408578040852,39.28012541667459],[-76.59407990993954,39.28012847249494],[-76.5940740383214,39.2801315265095],[-76.5940681597952,39.28013457239299],[-76.594062274361,39.28013761014548],[-76.59405638546991,39.28014064428268],[-76.59405049542968,39.28014367661405],[-76.59404460423512,39.2801467080404],[-76.59403871189136,39.28014973766096],[-76.59403282070095,39.28015276818592],[-76.59402692950488,39.28015579961138],[-76.59402103946213,39.28015883194129],[-76.59401514825986,39.28016186426686],[-76.59400925706228,39.28016489569143],[-76.59400336471548,39.28016792531017],[-76.59399747121438,39.28017095402384],[-76.59399157656411,39.28017398093179],[-76.59398568191334,39.28017700783938],[-76.59397978610818,39.28018003384194],[-76.5939738903077,39.28018305894343],[-76.59396799335293,39.28018608313991],[-76.59396209524377,39.28018910643132],[-76.59395619713928,39.28019212882166],[-76.59395029672663,39.28019514940225],[-76.59394439285718,39.28019816636748],[-76.59393848899234,39.2802011824317],[-76.59393258397833,39.28020419669014],[-76.59392668011253,39.28020721275375],[-76.59392077738968,39.28021023152331],[-76.59391487928168,39.28021325391158],[-76.5939089834705,39.28021627991058],[-76.5939030899665,39.28021930771872],[-76.59389719645169,39.28022233732808],[-76.59389130524406,39.28022536874666],[-76.59388541634871,39.28022840107371],[-76.59387952743744,39.28023143610268],[-76.59387364083838,39.28023447204013],[-76.59386775538239,39.28023751068352],[-76.59386187684372,39.28024055565589],[-76.59385600059676,39.28024360513967],[-76.59385012550311,39.28024665552792],[-76.5938442504141,39.28024970501516],[-76.59383837070924,39.28025275088307],[-76.59383248641439,39.28025578862792],[-76.59382658368865,39.28025880649199],[-76.59382063951742,39.28026177557118],[-76.59381462515805,39.28026465523174],[-76.59381325940998,39.28026837516607],[-76.59381690073465,39.28027308073602],[-76.59382048395577,39.28027781312783],[-76.59382406601318,39.28028254641625],[-76.5938276469121,39.28028727970055],[-76.59383122664738,39.28029201388149],[-76.59383480638313,39.28029674806228],[-76.59383838380141,39.28030148223498],[-76.59384196005084,39.28030621820503],[-76.59384553514175,39.28031095417096],[-76.593849109069,39.28031569103349],[-76.5938526806736,39.28032042878867],[-76.59385624995554,39.28032516743644],[-76.5938598157507,39.28032990787359],[-76.59386337341277,39.28033465188554],[-76.59386692642907,39.28033939768284],[-76.59387047711753,39.2803441452735],[-76.59387402780652,39.28034889286403],[-76.59387758082424,39.28035363866103],[-76.5938811384887,39.28035838267236],[-76.59388470196406,39.28036312400144],[-76.59388828054283,39.28036785907727],[-76.5938918753943,39.28037258610237],[-76.59389547605666,39.28037731044518],[-76.59389907207323,39.28038203657326],[-76.59390265297702,39.2803867707559],[-76.59390622458878,39.28039150850935],[-76.59390979271889,39.28039624715141],[-76.59391335852122,39.28040098758678],[-76.59391692315984,39.28040572891882],[-76.59392048663992,39.28041047024674],[-76.59392405127949,39.28041521157854],[-76.59392761708374,39.2804199520135],[-76.59393118405258,39.28042469155159],[-76.59393475450914,39.28042942930011],[-76.59393832728415,39.28043416705655],[-76.59394190006479,39.28043890391206],[-76.59394547400495,39.2804436407715],[-76.59394904910972,39.28044837673411],[-76.59395262421492,39.28045311269657],[-76.59395620047961,39.28045784866292],[-76.59395977674484,39.28046258462918],[-76.59396335301048,39.28046732059529],[-76.59396692812274,39.28047205565655],[-76.59397050438935,39.28047679162245],[-76.59397407949746,39.28048152758424],[-76.59397765460089,39.28048626444665],[-76.59398122855092,39.2804910004042],[-76.59398480249632,39.28049573726233],[-76.59398837527803,39.28050047501716],[-76.59399194574226,39.28050521276381],[-76.59399551620177,39.28050995141112],[-76.5939990843438,39.2805146900503],[-76.59400265131703,39.2805194304868],[-76.59400621597273,39.28052417091523],[-76.59400976551562,39.28052891939814],[-76.59401330112021,39.28053367323741],[-76.59401683091484,39.28053842975872],[-76.59402036070993,39.28054318627992],[-76.59402389631073,39.28054794101954],[-76.59402744353807,39.28055268949386],[-76.59403101865378,39.28055742545384],[-76.59403465303316,39.28056213459558],[-76.59403829555173,39.28056683926148],[-76.59403683518839,39.28057089125278],[-76.59403151434952,39.28057450293957],[-76.59402623847886,39.28057815531587],[-76.59402095568463,39.28058180226346],[-76.59401567174633,39.28058544650455],[-76.59401038664846,39.28058909074139],[-76.59400510155005,39.28059273497799],[-76.59399981529728,39.28059637830962],[-76.5939945278953,39.2806000198355],[-76.59398923817993,39.28060366045238],[-76.59398394615637,39.28060729925949],[-76.59397864952719,39.28061093264586],[-76.59397334827696,39.28061456331376],[-76.59396804472887,39.2806181903704],[-76.5939627319495,39.28062181018878],[-76.59395741455424,39.28062542638793],[-76.59395213521957,39.28062907514585],[-76.59394683281282,39.28063270490775],[-76.5939410441668,39.28063583396557],[-76.59393507119498,39.280638767821],[-76.59392908096669,39.28064167909737],[-76.59392308613283,39.28064458495292],[-76.593917088996,39.2806474880979],[-76.59391109071001,39.28065038943707],[-76.59390509242353,39.28065329077596],[-76.59389909413656,39.28065619211451],[-76.59389309583874,39.28065909525431],[-76.59388709985332,39.28066199930249],[-76.59388110616989,39.28066490606061],[-76.59387511478332,39.28066781642946],[-76.5938691268475,39.28067073131372],[-76.5938631458187,39.28067365432847],[-76.59385716939443,39.28067658276336],[-76.59385119526706,39.28067951480899],[-76.59384522344688,39.28068244866378],[-76.59383924932366,39.28068537980804],[-76.59383327173845,39.28068830823769],[-76.59382728955802,39.28069122944508],[-76.59382130161826,39.28069414432689],[-76.59381531023192,39.28069705379194],[-76.59380931538362,39.28069996054238],[-76.59380332053993,39.28070286639177],[-76.59379732684963,39.28070577314558],[-76.5937913354562,39.28070868351013],[-76.59378534751345,39.28071159839009],[-76.5937793653291,39.28071451959501],[-76.59377338659029,39.28071744621612],[-76.59376741131764,39.28072037465046],[-76.59376143487518,39.28072330488196],[-76.59375545959641,39.28072623421641],[-76.5937494808608,39.28072915993552],[-76.5937434986683,39.28073208203937],[-76.59373751302414,39.28073499962714],[-76.59373152738465,39.2807379163138],[-76.59372553943696,39.28074083119071],[-76.59371955149399,39.28074374516657],[-76.59371356239666,39.28074665823733],[-76.59370757329884,39.28074957130782],[-76.59370158420052,39.28075248437796],[-76.59369559625044,39.28075539925333],[-76.5936896082998,39.28075831412838],[-76.59368362035389,39.28076122810238],[-76.59367763240742,39.28076414207606],[-76.59367164330148,39.28076705604546],[-76.59366565420022,39.28076996911375],[-76.59365966625235,39.28077288308653],[-76.59365367830391,39.28077579705895],[-76.59364769034988,39.28077871193188],[-76.5936417023953,39.28078162680446],[-76.59363571558896,39.28078454348221],[-76.59362972994109,39.28078746016372],[-76.59362374544139,39.28079037865039],[-76.59361776093611,39.2807932980375],[-76.59361178104044,39.28079622194407],[-76.59360580344165,39.28079914946134],[-76.59359982815006,39.28080207878781],[-76.59359385284766,39.28080500991544],[-76.59358787870373,39.28080794104682],[-76.5935819022568,39.2808108694676],[-76.59357592350688,39.28081379517786],[-76.59356994015145,39.28081671546726],[-76.5935639521905,39.28081963033586],[-76.59355796077789,39.28082254068836],[-76.59355196706227,39.28082544833033],[-76.59354597104361,39.28082835326174],[-76.59353997387582,39.28083125638731],[-76.59353397671785,39.28083415771107],[-76.59352797724142,39.28083705902655],[-76.59352197892343,39.28083996034566],[-76.59351598060502,39.28084286166452],[-76.59350998343477,39.28084576478857],[-76.59350398741269,39.2808486697178],[-76.5934979936978,39.28085157645622],[-76.59349200112597,39.28085448590058],[-76.59348601316375,39.28085739986442],[-76.59348002749844,39.28086031743898],[-76.5934740452838,39.28086323952893],[-76.59346806537637,39.28086616342818],[-76.59346208661705,39.28086908913254],[-76.59345610785213,39.28087201573737],[-76.59345012909188,39.28087494144115],[-76.59344414918247,39.28087786533912],[-76.59343816696487,39.28088078742726],[-76.59343218244943,39.28088370590407],[-76.59342619678483,39.2808866225751],[-76.5934202088069,39.28088953833705],[-76.59341422083884,39.28089245229721],[-76.59340823402411,39.2808953671618],[-76.5934022471985,39.2808982838276],[-76.5933962615263,39.28090120139782],[-76.59339027931509,39.28090412168203],[-76.59338429709307,39.28090704376739],[-76.59337831487055,39.28090996585246],[-76.59337233379625,39.28091288974277],[-76.59336635388556,39.28091581273596],[-76.59336037165639,39.28091873572086],[-76.5933543905909,39.2809216578087],[-76.59334840721726,39.28092457808673],[-76.59334242268926,39.28092749745972],[-76.59333643701729,39.28093041412611],[-76.59333044904233,39.28093332808195],[-76.59332445991302,39.28093624113276],[-76.5933184696294,39.28093915327847],[-76.59331248050427,39.28094206542789],[-76.59330649137348,39.28094497847772],[-76.59330050454473,39.28094789423755],[-76.59329452116145,39.28095081541355],[-76.59328853893155,39.28095373749399],[-76.59328255325514,39.28095665415765],[-76.5932765595169,39.28095956178546],[-76.59327055081962,39.2809624504451],[-76.59326452716338,39.28096532013661],[-76.59325849889639,39.28096818530801],[-76.59325247754164,39.28097105770917],[-76.59324647460129,39.28097395269289],[-76.59324049927497,39.28097688290166],[-76.5932345538755,39.28097984924432],[-76.59322862343923,39.28098283365376],[-76.59322268954101,39.28098581534858],[-76.59321673033537,39.2809887636273],[-76.59321072737657,39.28099166131138],[-76.59320427620912,39.28099389448108],[-76.59319780665228,39.2809961005638],[-76.59319133364387,39.28099830213046],[-76.5931848606454,39.28100050189522],[-76.5931783864823,39.28100270255638],[-76.59317434289578,39.2810040757271],[-76.59317191233436,39.28100490051493],[-76.59316543703216,39.28100709756838],[-76.59315896862161,39.28100930545447],[-76.5931550477108,39.28100788037767],[-76.59315400211733,39.28100245055759],[-76.59315300639705,39.28099701460493],[-76.59315201531813,39.28099157776755],[-76.59315102656248,39.28098614003741],[-76.5931500354838,39.2809807032],[-76.5931490386052,39.28097526724325],[-76.59314803940867,39.28096983127844],[-76.59314703904818,39.28096439621033],[-76.593146037534,39.28095896023745],[-76.59314503601482,39.28095352516531],[-76.59314403450095,39.28094808919239],[-76.59314303298207,39.28094265412021],[-76.59314203146852,39.28093721814725],[-76.59314103111409,39.28093178217833],[-76.59314002843664,39.28092634710207],[-76.59313902576456,39.28092091112506],[-76.59313802424644,39.28091547605278],[-76.59313702156945,39.28091004097652],[-76.59313602121584,39.28090460500745],[-76.59313502086235,39.28089916903839],[-76.593134022827,39.28089373307736],[-76.59313302826877,39.28088829712837],[-76.59313203951085,39.28088286029868],[-76.59313106351242,39.28087742171162],[-76.59313009099107,39.2808719831366],[-76.5931291138339,39.2808665445455],[-76.59312812507663,39.28086110771573],[-76.59312713400148,39.28085567087791],[-76.59312614060849,39.28085023403207],[-76.59312514489254,39.2808447980789],[-76.59312414569968,39.28083936211368],[-76.59312314070687,39.2808339270291],[-76.59312213107307,39.28082849282918],[-76.5931210785359,39.28082306208371],[-76.59311994597657,39.28081764006865],[-76.59311910679304,39.28081219294769],[-76.59311864101274,39.28080671108962],[-76.59311809637948,39.28080123616451],[-76.59311753435104,39.28079576298065],[-76.5931169700047,39.28079028978875],[-76.59311640450466,39.28078481569209],[-76.59311583784049,39.28077934249215],[-76.59311527001742,39.28077386928819],[-76.59311470335345,39.28076839608821],[-76.59311413668961,39.28076292288823],[-76.59311357002578,39.28075744968822],[-76.59311300452626,39.2807519755915],[-76.59311244133961,39.28074650240355],[-76.59311187931202,39.28074102921956],[-76.59311132076674,39.2807355551469],[-76.59311076338045,39.28073008107823],[-76.59311020831232,39.28072460701754],[-76.59310965440321,39.2807191329609],[-76.59310909933524,39.28071365890023],[-76.59310854426731,39.2807081848395],[-76.5931079868815,39.28070271077078],[-76.5931074283316,39.28069723759876],[-76.59310686515097,39.28069176350994],[-76.59310629964733,39.28068629031382],[-76.59310572603077,39.28068081708957],[-76.59310514893218,39.28067534475401],[-76.59310456719768,39.28066987240241],[-76.5931039843043,39.28066440004674],[-76.59310340141106,39.28065892769106],[-76.59310281967683,39.28065345533944],[-76.59310224258387,39.28064798210306],[-76.59310167012174,39.2806425097835],[-76.59310110461887,39.28063703658726],[-76.59310054955216,39.28063156252643],[-76.5931000002857,39.28062608758487],[-76.59309944754231,39.28062061263129],[-76.59309890522998,39.2806151377138],[-76.59309839538498,39.28060966020652],[-76.593097937705,39.28060418107838],[-76.59309755074428,39.28059869859214],[-76.59309722754364,39.28059321362454],[-76.59309692288691,39.28058772872114],[-76.59309663330747,39.28058224206838],[-76.593096357636,39.28057675546385],[-76.59309609123646,39.28057126889144],[-76.59309583527303,39.28056578145439],[-76.5930955851098,39.28056029313663],[-76.59309533957742,39.28055480573569],[-76.59309509636822,39.28054931744202],[-76.59309485431801,39.28054382915236],[-76.59309460994989,39.28053834085468],[-76.59309436325866,39.28053285344969],[-76.59309410961349,39.28052736602059],[-76.59309384785544,39.28052187856339],[-76.59309357682552,39.28051639107406],[-76.59309329651853,39.28051090445334],[-76.59309300809866,39.28050541780451],[-76.59309271619675,39.28049993204436],[-76.59309242314102,39.28049444537944],[-76.59309213123913,39.28048895961931],[-76.59309184513745,39.28048347297845],[-76.59309156598974,39.28047798636169],[-76.59309129611916,39.28047249887629],[-76.59309104479244,39.28046701145515],[-76.59309080969679,39.28046152318944],[-76.59309058387306,39.2804560349558],[-76.59309036152634,39.28045054673426],[-76.59309013454377,39.28044505849661],[-76.59308989596612,39.28043957111957],[-76.59308964000363,39.28043408368228],[-76.59308935737933,39.28042859705342],[-76.59308905620607,39.28042311126099],[-76.59308874576095,39.28041762543648],[-76.59308843763384,39.28041213961998],[-76.59308813414273,39.28040665381953],[-76.59308782369777,39.28040116799496],[-76.59308781422776,39.28040100042013],[-76.59308751441182,39.28039568217442],[-76.59308721207981,39.28039019637793],[-76.59308692134296,39.2803847097209],[-76.593086641037,39.28037922309994],[-76.59308637000821,39.28037373561037],[-76.59308611172828,39.28036824816493],[-76.59308587662817,39.2803627607998],[-76.59308570296994,39.28035727094522],[-76.59308550612683,39.28035178191105],[-76.59308521886207,39.28034629616668],[-76.59308489218655,39.28034081118658],[-76.59308454928528,39.28033532615023],[-76.59308420870207,39.2803298411219],[-76.59308390057569,39.28032435530527],[-76.59308308570168,39.2803193190156],[-76.59307593898707,39.2803197680586],[-76.59306888160053,39.28032000032661],[-76.59306182193208,39.28032022628101],[-76.59305476229461,39.28032044683045],[-76.59304770152396,39.28032066287174],[-76.59304064076875,39.28032087621037],[-76.59303358117764,39.28032108865185],[-76.59302652043269,39.28032130018816],[-76.59301945969287,39.28032151082326],[-76.59301240012746,39.28032171875973],[-76.59300533942888,39.28032192218803],[-76.59299827874061,39.28032212381446],[-76.59299121807295,39.28032232183743],[-76.59298415742077,39.28032251715776],[-76.59297709678921,39.28032270887468],[-76.59297003510717,39.28032288167147],[-76.59296297231774,39.2803230454564],[-76.59295591060462,39.28032322365683],[-76.59294886876613,39.28032357397156],[-76.5929497796999,39.2803403493456],[-76.59295037506512,39.28035132180805],[-76.59295097043574,39.28036229336967],[-76.59295156580134,39.28037326583202],[-76.5929521611671,39.28038423829429],[-76.59295275653312,39.28039521075655],[-76.59295335189928,39.28040618321874],[-76.59295394727077,39.28041715478018],[-76.59295454263729,39.28042812724235],[-76.59295513800403,39.28043909970445],[-76.59295573337091,39.2804500721665],[-76.59295632873798,39.28046104462852],[-76.59295692411045,39.28047201618976],[-76.59295751947788,39.28048298865175],[-76.5929581148455,39.28049396111365],[-76.59295871021331,39.28050493357551],[-76.59295930558652,39.2805159051366],[-76.5929599009547,39.28052687759836],[-76.59296049632304,39.28053785006012],[-76.59296109169165,39.28054882252185],[-76.59296168706037,39.28055979498354],[-76.59296228243443,39.28057076654444],[-76.59296287780353,39.28058173900602],[-76.59296347317286,39.28059271146758],[-76.59296406854232,39.28060368392909],[-76.59296466391196,39.2806146563906],[-76.59296525928701,39.28062562795131],[-76.59296585465702,39.28063660041271],[-76.59296645002722,39.28064757287407],[-76.5929670453976,39.28065854533541],[-76.5929676407734,39.28066951689595],[-76.59296823614415,39.28068048935718],[-76.59296883151508,39.28069146181844],[-76.59296942688624,39.2807024342796],[-76.59297002225755,39.28071340674074],[-76.5929706176342,39.28072437830109],[-76.59297121300587,39.28073535076213],[-76.59297180837777,39.2807463232232],[-76.59297240374981,39.28075729568417],[-76.59297299912204,39.28076826814508],[-76.59297359449961,39.28077923970525],[-76.59297418987225,39.28079021216611],[-76.59297478524502,39.28080118462692],[-76.59297538061799,39.28081215708775],[-76.59297597599635,39.28082312864777],[-76.59297657136968,39.28083410110847],[-76.5929771667432,39.28084507356913],[-76.59297776211689,39.28085604602975],[-76.59297835749082,39.2808670184904],[-76.59297895287006,39.28087799005018],[-76.5929795482443,39.28088896251072],[-76.59298014361879,39.28089993497119],[-76.59298073899339,39.28091090743163],[-76.59298133436819,39.28092187989202],[-76.59298192974835,39.28093285145165],[-76.59298252512357,39.28094382391201],[-76.59298312049893,39.28095479637228],[-76.59298371587447,39.28096576883252],[-76.59298431125025,39.28097674129271],[-76.59298490663132,39.28098771285214],[-76.5929855020074,39.28099868531226],[-76.59298609738367,39.28100965777239],[-76.59298669276019,39.28102063023244],[-76.592987288142,39.28103160179172],[-76.59298788351882,39.2810425742517],[-76.59298847889589,39.28105354671163],[-76.59298907427309,39.28106451917157],[-76.59298966965046,39.28107549163142],[-76.5929902650332,39.2810864631905],[-76.59299086041099,39.28109743565028],[-76.59299145578892,39.28110840811003],[-76.59299205116704,39.28111938056972],[-76.5929926465454,39.28113035302942],[-76.59299324192905,39.2811413245883],[-76.59299383730772,39.2811522970479],[-76.59299443268655,39.28116326950743],[-76.59299502806566,39.28117424196694],[-76.59299562345004,39.28118521352567],[-76.59299621882944,39.28119618598511],[-76.59299681420909,39.28120715844452],[-76.59299740958886,39.28121813090389],[-76.5929980049688,39.2812291033632],[-76.59299860035412,39.28124007492175],[-76.5929991957345,39.28125104738098],[-76.59299979111502,39.28126201984018],[-76.5930003864957,39.28127299229938],[-76.59300098187664,39.2812839647585],[-76.59300157726287,39.28129493631685],[-76.5930021726441,39.28130590877591],[-76.59300276802554,39.28131688123491],[-76.5930033634072,39.28132785369392],[-76.59300395879418,39.28133882525207],[-76.59300455417615,39.28134979771099],[-76.59300514955838,39.28136077016985],[-76.59300574494073,39.28137174262867],[-76.59300634032327,39.28138271508744],[-76.59300693571114,39.28139368664542],[-76.5930075310941,39.28140465910418],[-76.5930081264772,39.28141563156282],[-76.59300872301951,39.28142660402546],[-76.59300931840814,39.28143757558332],[-76.59300991379178,39.28144854804186],[-76.5930105091756,39.28145952050036],[-76.59301110455966,39.28147049295885],[-76.59301169994386,39.28148146541729],[-76.5930122953334,39.28149243697494],[-76.59301289071801,39.28150340943329],[-76.59301348610276,39.2815143818916],[-76.5930140814877,39.2815253543499],[-76.59301467571382,39.28153632680412],[-76.59301526994528,39.28154729835757],[-76.5930158618538,39.28155827080369],[-76.59301645492143,39.28156924325378],[-76.5930170468303,39.2815802156998],[-76.59301763989829,39.28159118814985],[-76.59301823296651,39.28160216059982],[-76.59301882719393,39.28161313305378],[-76.59301942142153,39.28162410550767],[-76.59302001796733,39.28163507796963],[-76.59302061567745,39.28164604953471],[-76.59302121454166,39.28165702200462],[-76.59302181572917,39.28166799358173],[-76.59302242038879,39.2816789660716],[-76.59302246604628,39.28168959523534],[-76.59300834023168,39.28168991650575],[-76.59299421856214,39.28169032336126],[-76.59298009693377,39.28169072300916],[-76.59296597540343,39.28169110554115],[-76.59295185267771,39.28169149437268],[-76.59293773110056,39.28169188500801],[-76.59292360952325,39.28169227564167],[-76.59290948794579,39.28169266627359],[-76.59289536521435,39.28169305599906],[-76.59288124363657,39.28169344662759],[-76.59286712206375,39.28169383635367],[-76.59285300048566,39.28169422697885],[-76.59283887774842,39.28169461759828],[-76.59282475617003,39.28169500822],[-76.59281063458631,39.28169539974082],[-76.59279651300238,39.28169579125989],[-76.592782390249,39.2816961845748],[-76.59276826865447,39.28169657789199],[-76.5927541470546,39.28169697210821],[-76.59274002544426,39.28169736812423],[-76.59272590382851,39.28169776503933],[-76.5927117822075,39.28169816285342],[-76.59269766173503,39.2816985624714],[-76.59268354009295,39.28169896388511],[-76.59266941844561,39.28169936619787],[-76.59265529678777,39.28169977031042],[-76.59264117628356,39.28170017532606],[-76.59262705461504,39.28170058123668],[-76.59261293409502,39.28170098895114],[-76.592598812421,39.28170139575915],[-76.59258469189548,39.28170180437096],[-76.59257057021078,39.28170221297704],[-76.59255644968493,39.28170262158547],[-76.59254232799992,39.28170303018815],[-76.59252820742718,39.2817034468999],[-76.5925140879409,39.28170387622438],[-76.59249996730574,39.28170430374166],[-76.5924858467894,39.28170471054007],[-76.5924717231219,39.2817050605778],[-76.59245759837277,39.28170539709865],[-76.59244347675909,39.28170579307903],[-76.59242935724076,39.28170622779781],[-76.59241523773258,39.28170666071338],[-76.59240111716355,39.28170707650909],[-76.59238699553369,39.28170747518492],[-76.59237287189102,39.28170782070702],[-76.59235875135772,39.28170823019243],[-76.59235377360807,39.28170091673551],[-76.59235321657627,39.28168994350646],[-76.5923526525906,39.2816789702532],[-76.59235209092307,39.28166799700799],[-76.59235152577875,39.28165702375064],[-76.59235095947555,39.28164605048925],[-76.59235039201354,39.28163507722378],[-76.59234982571071,39.28162410396233],[-76.59234925940804,39.28161313070078],[-76.59234869194655,39.28160215743523],[-76.59234812564424,39.28159118417363],[-76.59234755818309,39.28158021090795],[-76.59234699188113,39.2815692376463],[-76.59234642441517,39.28155826528133],[-76.5923458581136,39.28154729201957],[-76.59234529065317,39.28153631875379],[-76.5923447243519,39.28152534549196],[-76.59234415689183,39.28151437222608],[-76.5923435905909,39.28150339896418],[-76.59234302313118,39.28149242569824],[-76.59234245683061,39.28148145243625],[-76.59234188937123,39.28147047917019],[-76.59234132307101,39.28145950590816],[-76.59234075560681,39.2814485335428],[-76.59234018930695,39.28143756028066],[-76.59233962184825,39.28142658701449],[-76.59233905554875,39.28141561375227],[-76.59233848924947,39.28140464049004],[-76.59233792179127,39.28139366722371],[-76.59233735549232,39.28138269396142],[-76.59233678803452,39.28137172069502],[-76.59233622173588,39.2813607474326],[-76.59233565543742,39.28134977417019],[-76.59233508913914,39.2813388009077],[-76.59233452283584,39.28132782854595],[-76.59233395537892,39.28131685527939],[-76.59233338908122,39.28130588201679],[-76.59233282278363,39.2812949087542],[-76.59233225764521,39.28128393549552],[-76.592331697143,39.28127296225292],[-76.59233113664615,39.28126198810957],[-76.59233057382627,39.28125101485885],[-76.59233000404738,39.28124004248472],[-76.59232943427384,39.28122906920978],[-76.59232886334148,39.2812180959308],[-76.59232829125031,39.28120712264775],[-76.59232771915414,39.28119615026542],[-76.59232714706333,39.28118517698231],[-76.59232657497263,39.28117420369914],[-76.592326002877,39.2811632313167],[-76.59232542962768,39.28115225802942],[-76.59232485753756,39.28114128474616],[-76.59232428428342,39.28113031235954],[-76.5923237110347,39.28111933907219],[-76.59232313894512,39.28110836578877],[-76.5923225656915,39.28109739340207],[-76.59232199360228,39.28108642011863],[-76.59232141803625,39.28107544682303],[-76.59232083898814,39.28106447441613],[-76.59232025994545,39.28105350110838],[-76.59231968437476,39.28104252871344],[-76.5923191146044,39.28103155543785],[-76.59231855526521,39.28102058219839],[-76.59231801679337,39.28100960813056],[-76.59231749107585,39.2809986332062],[-76.59231696187626,39.28098765917047],[-76.59231641296874,39.2809766859671],[-76.59231582813248,39.28096571263892],[-76.59231522358306,39.28095474104389],[-76.59231463062896,39.28094376858824],[-76.5923140620192,39.28093279531633],[-76.59231349920458,39.28092182206444],[-76.59231295378022,39.28091084797215],[-76.59231243849003,39.28089987398437],[-76.59231202173537,39.28088889673552],[-76.592311666418,39.28087791789839],[-76.5923111604053,39.28086694304197],[-76.59231060222767,39.28085596980595],[-76.59231004289637,39.28084499566513],[-76.59230948124204,39.28083402241703],[-76.59230891842891,39.28082304916479],[-76.59230835445697,39.28081207590856],[-76.59230778932618,39.2808011026482],[-76.59230722303664,39.28079012938385],[-76.59230665558306,39.2807791570161],[-76.5923060869758,39.28076818374362],[-76.5923055172098,39.28075721046703],[-76.5923049474439,39.28074623719045],[-76.59230437651922,39.28073526390975],[-76.59230380443056,39.28072429152579],[-76.5923032323472,39.28071331824099],[-76.59230265910509,39.2807023449522],[-76.59230208585792,39.28069137256408],[-76.59230151261617,39.28068039927513],[-76.59230093937454,39.28066942598622],[-76.59230036496892,39.28065845359392],[-76.59229979172764,39.28064748030493],[-76.5922992184866,39.28063650701584],[-76.59229864408152,39.2806255346235],[-76.59229807084078,39.28061456133437],[-76.59229749875924,39.2806035880492],[-76.59229692551374,39.28059261566074],[-76.59229635459153,39.2805816423795],[-76.59229578251046,39.28057066909427],[-76.5922952115886,39.28055969581296],[-76.59229464182079,39.28054872343643],[-76.59229385966826,39.28052690963364],[-76.59229170020865,39.28048721539768],[-76.59228930781224,39.28043622297628],[-76.59228702353752,39.28038678654803],[-76.59228620074134,39.28036720559593],[-76.59228600720157,39.28036276596125],[-76.59174943974743,39.28039033110981],[-76.59175412536992,39.28049330196929],[-76.59175944679484,39.28059011741569],[-76.59176512366692,39.28068961836961],[-76.59177278738397,39.28082875351296],[-76.59177656094033,39.28090593773534],[-76.59178107527883,39.28099135300421],[-76.59178626986103,39.28109370858973],[-76.59178984604532,39.28116471198207],[-76.5917925736482,39.28122668227109],[-76.5917968298262,39.28131386483238],[-76.59180117614295,39.28139605927726],[-76.59180269502168,39.28142678418755],[-76.5918050832679,39.28147219816355],[-76.59180653840231,39.28151098107994],[-76.59180809854499,39.28153997396476],[-76.59180939748641,39.28157024862851],[-76.59181169644673,39.28161224659783],[-76.59181418188845,39.2816641373966],[-76.59181695916962,39.28172473238295],[-76.5917757267954,39.28172569883297],[-76.59167209408149,39.28172873180088],[-76.59163551325948,39.28172983777606],[-76.5915904043979,39.2817309212948],[-76.59150576665375,39.28173342205206],[-76.59144955335636,39.28173526407422],[-76.59141457335929,39.2817363341134],[-76.59138565555959,39.28173672173474],[-76.5913371860341,39.28173791236624],[-76.59130196210741,39.28173907430191],[-76.5912699127709,39.28173963295301],[-76.5912387066138,39.28174049628526],[-76.59120815827919,39.28174124660088],[-76.59118368052187,39.28174187211316],[-76.59115458084891,39.28174244370108],[-76.59115371105885,39.28172000716476],[-76.59115038308254,39.28165370480929],[-76.59114702867937,39.28158676011618],[-76.59114459522215,39.28154121896193],[-76.59114240424786,39.2814910099947],[-76.59113965757186,39.28144290417636],[-76.5911371566472,39.28138775344173],[-76.59113406527572,39.28132766266616],[-76.59113226271201,39.28129171142945],[-76.59113004126918,39.28124860216922],[-76.59112829544983,39.28121507328193],[-76.59112635367057,39.28117371607814],[-76.59112411892848,39.28113191017464],[-76.59111882029438,39.2811286192568],[-76.59107850028794,39.28112900314075],[-76.59106892676999,39.28112920130796],[-76.59105363395005,39.28112951737939],[-76.59101831761828,39.28113007269365],[-76.59101478896123,39.28108513843449],[-76.59101149398023,39.28104329820991],[-76.59100799639121,39.28100041509588],[-76.59100617890053,39.28097450461195],[-76.5909865651288,39.28095434118387],[-76.59097277339757,39.28094016198121],[-76.59095662558903,39.28092413791541],[-76.59095762793783,39.28092377119221],[-76.59095075899754,39.28090919814004],[-76.59093572655252,39.28088004302214],[-76.59091104998012,39.28083178244849],[-76.59090996004846,39.28082965014835],[-76.59090333845876,39.28082424322313],[-76.59085405061715,39.28078635838443],[-76.59079480040377,39.28074035086253],[-76.5907567196649,39.28071122801826],[-76.590755059318,39.28071254365351],[-76.59070017338964,39.28066143314947],[-76.59064784130388,39.28061285545851],[-76.59057964786928,39.28055007146187],[-76.59091403850427,39.2803134889924],[-76.59096044216092,39.28028065832655],[-76.5909144548442,39.28024128342651],[-76.59080566277846,39.28014813122383],[-76.59047121296953,39.28038479695954],[-76.59042721269803,39.28034757891999],[-76.5903546751446,39.28028650460102],[-76.59028454639426,39.28022759326473],[-76.5902380474706,39.28018817217589],[-76.59019505759146,39.28015224566326],[-76.59016405661856,39.2801261342527],[-76.5901237748651,39.28009230873555],[-76.5901219275013,39.28009108896038],[-76.59007970099356,39.28011683765891],[-76.5900717870423,39.28011026148751],[-76.59006467996592,39.28010465284954],[-76.58976661985338,39.2798600186881],[-76.58936852744216,39.27953328074636],[-76.58936117395118,39.27953802638502],[-76.58900566701185,39.27979662814739],[-76.58902082735494,39.27983474026771],[-76.58898738232497,39.27985729456712],[-76.58868514623404,39.28006110992452],[-76.5886566079449,39.28003633536369],[-76.58865299925604,39.28003845573466],[-76.58862923106176,39.28001494813206],[-76.58859642677378,39.27998193374091],[-76.58856010856643,39.2799530901789],[-76.58853761786908,39.27993514114168],[-76.58850946995629,39.27991022018603],[-76.58844763287242,39.27985540463713],[-76.58843657028075,39.27984559889283],[-76.58836134888911,39.27978064153818],[-76.58830279415774,39.27973024845412],[-76.58822586284731,39.27966400322914],[-76.58817879822391,39.27962565934603],[-76.58810825807326,39.27956856028733],[-76.58800576508295,39.27948461263558],[-76.58800277619936,39.27948657932879],[-76.5879991791332,39.27948370588523],[-76.58783705565634,39.27935234797042],[-76.587731240919,39.27925795036148],[-76.58750663569799,39.27924606708877],[-76.58740404634075,39.27929986520716],[-76.58728423264589,39.27936010082725],[-76.58721485613917,39.27939340779577],[-76.58713224266866,39.2794273131429],[-76.58713727015254,39.2795086148603],[-76.58716170372213,39.27953258720125],[-76.58719701337542,39.27956213205494],[-76.58723393907934,39.27959440108248],[-76.58723131933331,39.2795966627023],[-76.58725917492694,39.27962073171944],[-76.58731372142036,39.2796658733031],[-76.5873625665896,39.2797078727839],[-76.58737754438731,39.27972022263009],[-76.58743067154454,39.27976949998346],[-76.58747951659979,39.27981453318633],[-76.58750382018027,39.2798377771794],[-76.58751939243517,39.27985214860718],[-76.58754507952634,39.27987585413711],[-76.58758092483802,39.27990881104432],[-76.58763152339361,39.27995668143917],[-76.5876665170762,39.27998961100872],[-76.58769615846656,39.28001776034223],[-76.58774237252038,39.28006286166167],[-76.5877699107454,39.28008994970038],[-76.58778645107111,39.28010568464219],[-76.58778928737694,39.28010445064105],[-76.58781133903568,39.28012752452743],[-76.58782803828512,39.28014443551762],[-76.5878203736949,39.2801462434778],[-76.5878145583396,39.28014934151525],[-76.58780873940742,39.28015245665441],[-76.58780229705184,39.28015475261268],[-76.58779567974439,39.28015683897943],[-76.58778897741243,39.28015859807017],[-76.5877821841441,39.28015945157374],[-76.58777525864974,39.28015792839788],[-76.58776856634996,39.28015616553612],[-76.58776189180156,39.2801543396828],[-76.58775514415616,39.28015272705361],[-76.58774825622615,39.28015152107684],[-76.58774131290816,39.28015047253898],[-76.58773442761593,39.28014921162412],[-76.58772758635257,39.28014775359608],[-76.58772068624742,39.28014664846058],[-76.5877136680479,39.28014612029973],[-76.58770658455492,39.28014585853537],[-76.5876994971737,39.28014586698608],[-76.58769245795371,39.28014616384986],[-76.5876854785758,39.28014693292351],[-76.58767852647625,39.28014799394002],[-76.58767156991856,39.28014902431448],[-76.5876646063701,39.28015006096933],[-76.58765764375534,39.28015113635988],[-76.58765066111948,39.28015186758799],[-76.58764364418438,39.2801519195193],[-76.5876366014839,39.28015141919152],[-76.58762954693525,39.28015076389033],[-76.58762249211637,39.28015035449631],[-76.58761544707781,39.2801504558693],[-76.58760840626869,39.28015082658509],[-76.58760136462702,39.28015134051901],[-76.58759432161159,39.28015189137896],[-76.58758727436327,39.28015237286487],[-76.58758021783592,39.28015265614967],[-76.58757312601176,39.2801526312489],[-76.5875660423215,39.28015260277323],[-76.58755901683527,39.28015292940243],[-76.5875520950187,39.28015396439567],[-76.58754524787427,39.28015551218527],[-76.58753840691203,39.28015699333968],[-76.58753150483248,39.28015782302679],[-76.58752450807792,39.28015739401396],[-76.58751745859863,39.28015646489165],[-76.58751040422136,39.2801561788971],[-76.5875033477493,39.28015625320029],[-76.5874962861124,39.28015641846211],[-76.58748922289223,39.28015665667975],[-76.58748215935259,39.28015694984247],[-76.58747509907506,39.28015727994755],[-76.58746804680038,39.28015762899635],[-76.58746098877786,39.28015796991762],[-76.58745392375421,39.2801583189208],[-76.58744686534921,39.28015872559565],[-76.58743982603924,39.28015923682579],[-76.58743282177248,39.28015990040768],[-76.5874258615484,39.28016076321263],[-76.58741892566941,39.28016182427072],[-76.58741202463439,39.28016307190897],[-76.5874051805112,39.2801644980979],[-76.58739841536763,39.28016609480827],[-76.58739173504561,39.28016785395367],[-76.58738510011881,39.2801697789987],[-76.58737854408763,39.28017188897712],[-76.58737211436569,39.28017420207076],[-76.58736585951493,39.28017673826701],[-76.58735977026885,39.2801794966326],[-76.58735379000986,39.28018244724347],[-76.5873479477546,39.28018558299546],[-76.5873422794838,39.28018889500733],[-76.58733681885535,39.28019237529048],[-76.58733156126986,39.28019601752347],[-76.58732644766104,39.28019981429266],[-76.58732148392856,39.28020374760352],[-76.58731667712587,39.28020780036641],[-76.58731203314225,39.28021195638816],[-76.58730756020067,39.28021619678177],[-76.5873031713981,39.28022051763877],[-76.5872988655285,39.28022492706188],[-76.58729472598634,39.28022943435172],[-76.58729083386397,39.28023404609854],[-76.58728727255603,39.28023877160312],[-76.5872841370312,39.2802436229091],[-76.58728170471787,39.28024872619739],[-76.58727988076787,39.28025404870729],[-76.58727840735106,39.28025948234209],[-76.58727702664767,39.28026491720335],[-76.58727555937121,39.28027029140926],[-76.5872741290825,39.2802756828596],[-76.58727282269506,39.28028109366127],[-76.58727172250222,39.28028652320274],[-76.58727090964868,39.28029196906687],[-76.5872704467252,39.28029743057276],[-76.58727028155634,39.28030291114014],[-76.58727031682933,39.28030840322104],[-76.58727045520496,39.28031390377107],[-76.58727059936504,39.28031940614292],[-76.58727065198617,39.28032490459006],[-76.58727053427813,39.28033039523259],[-76.58727030183033,39.28033588547196],[-76.58727000447402,39.28034137638399],[-76.58726967814293,39.2803468671942],[-76.58726935993515,39.2803523562314],[-76.58726908576891,39.28035784542335],[-76.58726889158847,39.28036333219409],[-76.58726881447622,39.28036881757458],[-76.58726889152504,39.28037430079452],[-76.58726914585712,39.28037979184351],[-76.5872695844631,39.2803852844407],[-76.58727020972908,39.28039076688463],[-76.58727102868767,39.28039622568851],[-76.58727204487349,39.28040165095634],[-76.58727328950592,39.2804070554086],[-76.5872747915545,39.2804124400477],[-76.58727655234065,39.28041777695466],[-76.58727857780616,39.28042304092902],[-76.58728094352114,39.2804281917018],[-76.58728394195946,39.28043316004123],[-76.58728722131889,39.28043805280261],[-76.58729032420331,39.28044299808893],[-76.5872928930153,39.28044810273536],[-76.58729518539621,39.28045330819678],[-76.58729722123212,39.2804585830163],[-76.58729895077032,39.280463912607],[-76.58730032309387,39.28046928327843],[-76.58730136131946,39.28047470592107],[-76.5873021872406,39.28048016384827],[-76.58730292963598,39.28048563499345],[-76.58730371842256,39.28049110089707],[-76.58730465336768,39.28049654569584],[-76.5873056103442,39.28050198877045],[-76.5873066009526,39.28050742836017],[-76.58730768435889,39.28051285476448],[-76.58730892204728,39.28051825829097],[-76.58731032793617,39.28052363718702],[-76.58731185794201,39.28052899850379],[-76.5873134935105,39.28053434397776],[-76.58731521378512,39.28053967263472],[-76.5873170037042,39.2805449835211],[-76.58731898160536,39.280550256335],[-76.58732110455877,39.28055549903259],[-76.58732322287655,39.28056074171378],[-76.58732518338847,39.28056601536725],[-76.58732686658746,39.28057134209222],[-76.58732841283718,39.28057670076353],[-76.5873298558059,39.28058208159104],[-76.58733118276577,39.28058748092696],[-76.58733238330137,39.28059289603245],[-76.5873334446849,39.28059832325977],[-76.58733438778333,39.2806037617814],[-76.58733526476176,39.28060920997917],[-76.58733607446119,39.2806146678489],[-76.58733681341505,39.28062013357697],[-76.5873374769979,39.28062560534562],[-76.58733806174848,39.28063108044029],[-76.58733856419495,39.28063655794813],[-76.58733898086561,39.28064203695612],[-76.58733933029384,39.28064751933093],[-76.58733962406428,39.280653006014],[-76.58733986334639,39.28065849520797],[-76.58734005045297,39.2806639878216],[-76.58734018423534,39.28066948204947],[-76.5873402647042,39.28067497608999],[-76.58734029534153,39.28068046905472],[-76.58734027382943,39.28068596093543],[-76.58734020249636,39.28069144993881],[-76.58734005120849,39.28069693595902],[-76.58733975853916,39.28070241878025],[-76.58733935577067,39.28070790031384],[-76.58733887767279,39.28071338068207],[-76.58733836017427,39.28071886001108],[-76.58733783919342,39.28072434022862],[-76.58733734719263,39.28072981964718],[-76.58733692123866,39.28073530200005],[-76.5873365624801,39.28074078909282],[-76.58733623615234,39.28074627990259],[-76.5873359109835,39.2807517707164],[-76.58733555106052,39.2807572587058],[-76.587335122804,39.28076273834826],[-76.5873345926083,39.28076820862491],[-76.5873339072016,39.28077366214254],[-76.58733259515076,39.2807790495044],[-76.58733093443631,39.280784402313],[-76.58732953778897,39.28078978757605],[-76.58732843992627,39.28079521442319],[-76.58732755751066,39.2808006636455],[-76.58732692765625,39.28080613086969],[-76.58732645419272,39.28081161125397],[-76.58732594944674,39.28081708972678],[-76.58732525354505,39.2808225540166],[-76.58732439309212,39.28082801322446],[-76.58732322692632,39.28083342632003],[-76.58732144017802,39.28083872734209],[-76.58731927364043,39.28084396487713],[-76.58731744629527,39.28084927116107],[-76.5873158342611,39.28085462323963],[-76.58731460207333,39.28086002889704],[-76.58731373806883,39.28086550070294],[-76.58731370392093,39.28087097272218],[-76.58731421101896,39.28087644754378],[-76.58731502644666,39.28088191714328],[-76.5873160877755,39.28088735427851],[-76.5873173742118,39.28089274716638],[-76.58731886710679,39.28089811375665],[-76.58732046671354,39.28090346630965],[-76.58732207212078,39.28090881798219],[-76.58732360213052,39.28091418019899],[-76.58732513562805,39.28091954062646],[-76.58732665983806,39.28092490372361],[-76.58732812489238,39.28093027471973],[-76.58732948901454,39.28093566247576],[-76.58733070347967,39.28094107492736],[-76.58733166049038,39.28094651349734],[-76.58733236349757,39.28095198270162],[-76.58733279173336,39.2809574662536],[-76.58733277140581,39.28096295363422],[-76.58733210674899,39.28096842614048],[-76.5873312189673,39.28097400054987],[-76.58732847535327,39.28097881900389],[-76.58732280142871,39.28098229493337],[-76.58731693060804,39.28098534861346],[-76.5873110250693,39.28098839316363],[-76.58730625802227,39.28099237670617],[-76.58730559948823,39.28099779248561],[-76.58730548179746,39.28100328042486],[-76.58730537220396,39.28100877109486],[-76.58730527535424,39.28101426271037],[-76.58730520167917,39.28101975530803],[-76.58730515465582,39.28102524890008],[-76.5873051424129,39.28103074081282],[-76.58730517189917,39.28103623197142],[-76.58730525123289,39.28104172150361],[-76.58730539082927,39.28104721214824],[-76.58730559417589,39.28105270211613],[-76.58730586475494,39.28105819051866],[-76.58730620488967,39.28106367646332],[-76.58730661690863,39.2810691581567],[-76.58730708110356,39.28107463643028],[-76.58730756616582,39.28108011387645],[-76.58730807209535,39.28108559049515],[-76.58730859425624,39.28109106627013],[-76.58730912917137,39.28109654118907],[-76.58730967683563,39.28110201615288],[-76.58731023145921,39.28110749024029],[-76.58731079187787,39.28111296434813],[-76.58731135577361,39.28111843846812],[-76.58731191851044,39.28112391258404],[-76.58731247892935,39.28112938669177],[-76.58731303355336,39.28113486077921],[-76.58731357890018,39.28114033573473],[-76.5873141138109,39.28114581155438],[-76.58731463943393,39.28115129004365],[-76.58731515923587,39.28115677301628],[-76.5873156720681,39.28116225866671],[-76.58731618140251,39.28116774790792],[-76.58731668609578,39.28117323803351],[-76.58731718729636,39.28117873084918],[-76.58731768733281,39.28118422456149],[-76.5873181873693,39.28118971827376],[-76.58731868624693,39.28119521198195],[-76.58731918744783,39.28120070479755],[-76.58731968981829,39.28120619581571],[-76.58732019567631,39.28121168504457],[-76.58732070618089,39.28121717248825],[-76.58732122134253,39.28122265634522],[-76.58732174231498,39.28122813752028],[-76.58732227027296,39.28123361331531],[-76.58732280637017,39.28123908463513],[-76.58732335292474,39.28124455148779],[-76.58732390763433,39.28125001116305],[-76.58732447512445,39.28125546547859],[-76.5873250530928,39.28126091172405],[-76.587325645006,39.28126635171314],[-76.58732625204391,39.28127178184697],[-76.58732887567155,39.28127603636305],[-76.5873357846966,39.28127721991863],[-76.58734251241913,39.28127928558511],[-76.58734506515849,39.28128417038627],[-76.58734638701982,39.28128965167245],[-76.58734757829647,39.28129506674411],[-76.58734855037511,39.28130050626705],[-76.58734915481938,39.28130598413207],[-76.58734973144247,39.28131146280006],[-76.5873507893768,39.28131688731164],[-76.58735215084435,39.28132233450781],[-76.58735411832303,39.2813276099855],[-76.58735718930188,39.28133246868323],[-76.58736128119315,39.28133696165426],[-76.58736556816424,39.28134139225698],[-76.58736954845699,39.28134594248451],[-76.58737326845231,39.28135060889679],[-76.5873764828775,39.28135551493757],[-76.58737936503175,39.28136055672708],[-76.58738142784516,39.28136578209642],[-76.58738305184816,39.28137112752734],[-76.58738446571543,39.281376533472],[-76.5873856394595,39.28138197460367],[-76.58738653845163,39.2813874264801],[-76.5873870515478,39.28139286799335],[-76.5873864692171,39.28139833448304],[-76.58738551357686,39.2814038185774],[-76.58738523250344,39.28140930053755],[-76.58738543105879,39.28141481841149],[-76.58738610268729,39.28142030371824],[-76.5873874750726,39.28142566808194],[-76.58738920795055,39.28143102650579],[-76.58739120872131,39.28143635794697],[-76.5873935462745,39.28144157527342],[-76.5873962860277,39.28144659044005],[-76.58739997635693,39.28145117747989],[-76.58740515429429,39.28145506805024],[-76.5874107361606,39.28145845921465],[-76.587416784364,39.28146138181827],[-76.58742316278088,39.28146372548974],[-76.5874300145697,39.28146518807527],[-76.58743705560491,39.28146559833261],[-76.58744410905494,39.281465468175],[-76.58745118266235,39.28146506065263],[-76.58745822937003,39.28146449540174],[-76.58746523396438,39.28146379759028],[-76.58747222082108,39.28146296099855],[-76.58747920101162,39.28146207484102],[-76.58748618562332,39.28146122562986],[-76.58749318689718,39.28146050078215],[-76.58750021140494,39.28145996607677],[-76.58750725378636,39.28145954673142],[-76.58751430726547,39.28145921209644],[-76.5875213696133,39.2814589468509],[-76.58752843512913,39.28145873476115],[-76.5875354992555,39.28145856229969],[-76.58754256088058,39.28145842135574],[-76.58754962425283,39.28145837860068],[-76.58755668948224,39.28145841511894],[-76.58756375680976,39.28145848947623],[-76.58757082417401,39.28145855752784],[-76.58757788942441,39.28145859044185],[-76.58758495796337,39.28145865579443],[-76.5875920287156,39.28145873916969],[-76.58759909727027,39.28145880181918],[-76.58760616154495,39.28145880320131],[-76.58761322061628,39.28145870277854],[-76.58762027358695,39.28145845550942],[-76.58762732291632,39.28145803708205],[-76.58763436149844,39.28145747359359],[-76.58764137640097,39.28145679652538],[-76.58764834022138,39.28145593462093],[-76.58765518773187,39.28145454446039],[-76.58766206603268,39.28145324088079],[-76.58766898328923,39.28145201490324],[-76.58767571946429,39.28145043699185],[-76.58768200294114,39.2814479783458],[-76.58768808241273,39.2814451235482],[-76.58821105311156,39.28136793682756],[-76.58822279238096,39.28136483161488],[-76.58823965874589,39.28136879194756],[-76.58826412151416,39.28137332837127],[-76.58829040334075,39.28137297821858],[-76.58836002103968,39.28137145941766],[-76.58842156359667,39.2813703734719],[-76.58850371529775,39.2813690056944],[-76.58850898632377,39.28136884580875],[-76.58852728775774,39.28139056157224],[-76.58854136453297,39.28140588422809],[-76.58855012799218,39.28141347052929],[-76.58855754059039,39.28141816154812],[-76.58856692324672,39.28142310267318],[-76.5885766087472,39.28142698646114],[-76.58858337924491,39.28142788031289],[-76.58858791876474,39.28142794845701],[-76.58859231005961,39.28142719458555],[-76.58859693413787,39.28142607221618],[-76.58860026366835,39.28146970695046],[-76.58860094274495,39.28147992038319],[-76.58860883961579,39.28157039639852],[-76.5885969291434,39.28157064292776],[-76.5885971745965,39.28159167481152],[-76.58859838401406,39.28166453459239],[-76.58859901193705,39.28171175210574],[-76.58860633703705,39.28178030873848],[-76.58846804322351,39.28178473076251],[-76.58846769079078,39.28178574468807],[-76.58808779209669,39.28180424970033],[-76.58809488678902,39.28186010479356],[-76.58834951022784,39.28184660320594],[-76.58836571421429,39.281858273534],[-76.58837029448222,39.28194261544517],[-76.58847477067987,39.28193971445084],[-76.58849234032708,39.28193954811091],[-76.58850460764455,39.28193933617042],[-76.58855825200133,39.28193622639075],[-76.58862757335214,39.28193234008636],[-76.58869532074199,39.28193064969525],[-76.58869647867017,39.28196062935117],[-76.58869821730833,39.28200539797037],[-76.5886989495142,39.28202424360143],[-76.5887006446006,39.28206333005254],[-76.5886383738682,39.2820949485705],[-76.58860839444964,39.28209429771457],[-76.5886078102554,39.28209950117944],[-76.58856857854362,39.28209959436647],[-76.58851689596575,39.28209976732909],[-76.58847703195248,39.28209996816361],[-76.5884431765498,39.28210014319757],[-76.58840831069602,39.28210087765815],[-76.58829760577798,39.28210314514455],[-76.58816197728163,39.28210593946498],[-76.58807581567167,39.28210849276082],[-76.58800304313382,39.28211127130709],[-76.58792954962499,39.28211445622561],[-76.587871912695,39.28211688424479],[-76.5878284998847,39.2821184478735],[-76.58778155223168,39.28212057016525],[-76.58773798254391,39.28212240253821],[-76.58770088681676,39.28212391082521],[-76.5877033642432,39.28215771976305],[-76.58770690314769,39.28219674964723],[-76.58771152337548,39.28225274379787],[-76.58771224994716,39.28227071927756],[-76.58771738498258,39.28233665425531],[-76.58772046449646,39.28237994583694],[-76.58772432543903,39.28242918159479],[-76.58783344511895,39.28242455358886],[-76.58791452617768,39.28242015139455],[-76.58811049150364,39.28241179775669],[-76.58818945969637,39.28240817613163],[-76.58825750447855,39.28240525118716],[-76.58826455429066,39.28247546336661],[-76.58826915587223,39.28254932856496],[-76.58827386953793,39.28262405348239],[-76.58827451852292,39.28263345431981],[-76.58827782736003,39.28267743486862],[-76.58828318504861,39.28274724027051],[-76.58822594156868,39.2827492906225],[-76.58818189628265,39.28275072605889],[-76.58811304292749,39.28275311757572],[-76.58806136052648,39.28275517383583],[-76.58798455578733,39.28275781482717],[-76.5879856023767,39.28277398629539],[-76.58798900046617,39.28282651810834],[-76.58798924966345,39.28283011032489],[-76.58798944005231,39.28283285201485],[-76.58798963044647,39.28283559280403],[-76.58798981967634,39.28283833448985],[-76.58799001006524,39.28284107617976],[-76.58799020045416,39.28284381786968],[-76.58799039084315,39.28284655955957],[-76.58799058123732,39.28284930034874],[-76.58799077046727,39.28285204203455],[-76.58799096085625,39.28285478372445],[-76.58799115124529,39.28285752541436],[-76.58799134163431,39.28286026710424],[-76.5879915308643,39.28286300879006],[-76.58799172125863,39.28286574957919],[-76.58799191164768,39.28286849126912],[-76.58799210203674,39.28287123295899],[-76.58799229242587,39.28287397464885],[-76.58799248165595,39.28287671633467],[-76.58799267205029,39.28287945712378],[-76.5879928624394,39.2828821988137],[-76.58799305282861,39.28288494050354],[-76.58799324321775,39.2828876821934],[-76.58799343244792,39.28289042387919],[-76.58799362283715,39.28289316556907],[-76.58799381323158,39.28289590635818],[-76.58799400362079,39.28289864804803],[-76.587994192851,39.28290138973382],[-76.5879943832403,39.2829041314237],[-76.58799457362954,39.28290687311353],[-76.58799476286504,39.28290961389857],[-76.58799495325437,39.28291235558841],[-76.58799514364367,39.28291509727823],[-76.58799533287397,39.28291783896402],[-76.5879955232633,39.28292058065386],[-76.5879957136527,39.28292332234368],[-76.58799590288828,39.28292606312871],[-76.58799609327764,39.28292880481857],[-76.58799628366708,39.28293154650836],[-76.58799647289749,39.28293428819413],[-76.5879966632869,39.28293702988394],[-76.58799685251732,39.28293977156972],[-76.58799704291198,39.28294251235878],[-76.58799723214243,39.28294525404452],[-76.58799742253197,39.28294799573433],[-76.58799761176245,39.28295073742008],[-76.58799780215195,39.28295347910989],[-76.58799799138245,39.28295622079562],[-76.58799818177727,39.28295896158468],[-76.58799837100781,39.2829617032704],[-76.58799856023836,39.28296444495615],[-76.58799875062793,39.28296718664593],[-76.58799893985851,39.28296992833165],[-76.58799913024818,39.28297267002142],[-76.58799931948403,39.2829754108064],[-76.58799950871463,39.28297815249214],[-76.58799969910429,39.28298089418191],[-76.58799988833495,39.28298363586762],[-76.58800007756562,39.28298637755334],[-76.58800026795537,39.2829891192431],[-76.5880004571913,39.28299186002809],[-76.58800064642199,39.28299460171375],[-76.58800083681174,39.28299734340353],[-76.58800102604248,39.28300008508924],[-76.5880012164323,39.283002826779],[-76.58800140566306,39.28300556846468],[-76.58800159489385,39.28300831015039],[-76.5880017852889,39.28301105093941],[-76.58800197451971,39.28301379262507],[-76.58800216490955,39.28301653431482],[-76.5880023541404,39.28301927600049],[-76.5880025433713,39.2830220176862],[-76.58800273376119,39.28302475937591],[-76.58800292299732,39.28302750016086],[-76.58800311338723,39.28303024185058],[-76.58800330261815,39.28303298353623],[-76.58800349300815,39.28303572522599],[-76.5880036833981,39.28303846691569],[-76.58800387262906,39.28304120860136],[-76.58800406302434,39.28304394939032],[-76.58800425225533,39.28304669107602],[-76.58800444264534,39.28304943276573],[-76.58800463303538,39.28305217445543],[-76.58800482342549,39.28305491614514],[-76.58800501266177,39.28305765693003],[-76.58800520305184,39.28306039861977],[-76.58800539344199,39.28306314030944],[-76.5880055838321,39.28306588199914],[-76.58800577422222,39.28306862368887],[-76.5880059646124,39.28307136537855],[-76.58800615500779,39.2830741061675],[-76.58800634539796,39.2830768478572],[-76.5880065357882,39.28307958954687],[-76.58800672617838,39.28308233123658],[-76.5880069165686,39.28308507292626],[-76.58800710696411,39.28308781371518],[-76.58800729735435,39.28309055540487],[-76.58800748774466,39.28309329709457],[-76.58800767813493,39.28309603878424],[-76.58800786852521,39.28309878047388],[-76.58800805892079,39.28310152126281],[-76.58800824931112,39.28310426295246],[-76.58800843970143,39.28310700464216],[-76.58800863125084,39.28310974633587],[-76.5880088216412,39.28311248802553],[-76.58800901203686,39.28311522881443],[-76.58800920242724,39.28311797050407],[-76.58800939281765,39.28312071219375],[-76.58800958320812,39.2831234538834],[-76.5880097747628,39.28312619467638],[-76.5880099651533,39.283128936366],[-76.58801015554376,39.28313167805565],[-76.58801034593428,39.28313441974529],[-76.5880105374838,39.28313716143897],[-76.58801072787959,39.28313990222787],[-76.5880109182701,39.2831426439175],[-76.58801110866064,39.28314538560715],[-76.58801130021025,39.28314812730083],[-76.58801149060082,39.28315086899043],[-76.58801168099667,39.2831536097793],[-76.58801187138728,39.28315635146897],[-76.58801206293695,39.28315909316262],[-76.58801225332758,39.28316183485224],[-76.58801244371821,39.28316457654184],[-76.58801263527317,39.28316731733477],[-76.5880128256639,39.2831700590244],[-76.58801301605457,39.28317280071399],[-76.58801320760433,39.28317554240765],[-76.58801339800029,39.28317828319651],[-76.58801358839101,39.28318102488609],[-76.58801377994081,39.28318376657977],[-76.58801397033157,39.28318650826935],[-76.5880141607224,39.28318924995892],[-76.58801435227743,39.28319199075184],[-76.58801454266829,39.28319473244144],[-76.5880147330591,39.28319747413101],[-76.588014924609,39.28320021582464],[-76.58801511499983,39.28320295751421],[-76.58801530539593,39.28320569830305],[-76.58801549694589,39.28320843999671],[-76.58801568733676,39.28321118168625],[-76.58801587888674,39.28321392337988],[-76.58801606928289,39.28321666416869],[-76.58801625967388,39.2832194058583],[-76.58801645122388,39.2832221475519],[-76.58801664161486,39.28322488924143],[-76.58801683200583,39.28322763093099],[-76.58801702356112,39.28323037172385],[-76.58801721395213,39.28323311341344],[-76.5880174043432,39.28323585510295],[-76.58801759589325,39.28323859679654],[-76.58801778628958,39.28324133758535],[-76.58801797668066,39.28324407927492],[-76.5880181682308,39.28324682096851],[-76.58801835862191,39.28324956265804],[-76.58801854901301,39.28325230434753],[-76.58801874056843,39.2832550451404],[-76.58801893095958,39.28325778682994],[-76.58801912135078,39.28326052851946],[-76.58801931290097,39.28326327021304],[-76.5880195032922,39.28326601190253],[-76.58801969368864,39.28326875269128],[-76.58801988523892,39.28327149438491],[-76.58802007563014,39.2832742360744],[-76.58802026602143,39.2832769777639],[-76.58802045757695,39.28327971855673],[-76.58802064796826,39.28328246024628],[-76.58802083835955,39.28328520193577],[-76.58800988188374,39.28328418527948],[-76.58800284464925,39.28328368769671],[-76.5879957988203,39.28328327295352],[-76.58798874670985,39.28328294195887],[-76.58798168973311,39.28328265058026],[-76.58797463267273,39.28328237361316],[-76.58796757683949,39.28328208494005],[-76.5879605246926,39.28328176024893],[-76.58795347884846,39.28328134820544],[-76.58794644402167,39.28328083531471],[-76.58793940678272,39.28328033862886],[-76.5879323584481,39.28327995630058],[-76.58792530630164,39.28327963160729],[-76.58791825051068,39.28327933572526],[-76.58791119466225,39.28327904975096],[-76.58790413886094,39.28327875566957],[-76.58789707962448,39.28327845436957],[-76.5878900192447,39.28327815036286],[-76.58788298736732,39.28327772845573],[-76.5878810666593,39.28327396283311],[-76.58787402652787,39.28327356521712],[-76.58786699661064,39.28327300549921],[-76.58785996665686,39.28327245208607],[-76.58785292938272,39.28327196170025],[-76.58784588231313,39.28327156135595],[-76.58783883513895,39.28327117902609],[-76.58783178558919,39.28327080659587],[-76.58782473598718,39.28327044317273],[-76.58781768518436,39.28327008695096],[-76.5878106331859,39.28326973702997],[-76.58780358115611,39.28326939251305],[-76.58779652910026,39.2832690524994],[-76.58778947702874,39.28326871518756],[-76.58778242378779,39.28326837967268],[-76.58777537169551,39.283268045963],[-76.5877683196085,39.28326771135208],[-76.5877612605412,39.28326738122013],[-76.58775420162804,39.28326722403475],[-76.5877521341164,39.2832637902763],[-76.58775247546485,39.28325830402611],[-76.58775290023236,39.28325282347321],[-76.58774976788688,39.28324973006909],[-76.58774272731362,39.28324940900856],[-76.58773568088772,39.28324909783537],[-76.5877286297891,39.28324879295076],[-76.58772157516633,39.28324849616023],[-76.5877145181941,39.28324820476558],[-76.58770745771866,39.28324791786206],[-76.5877003960581,39.28324763545771],[-76.5876933343871,39.28324735485448],[-76.58768627154143,39.28324707694897],[-76.58767920985485,39.28324679904708],[-76.58767215049164,39.28324652025221],[-76.58766509345178,39.28324624056426],[-76.58765803641195,39.2832459608759],[-76.58765098051555,39.28324568389343],[-76.58764392344968,39.28324540870796],[-76.58763686637337,39.28324513532355],[-76.58762980928141,39.28324486464092],[-76.58762275217386,39.28324459666013],[-76.58761569505059,39.28324433138116],[-76.58760863790644,39.28324406970471],[-76.58760157958761,39.28324381072603],[-76.58759452241215,39.28324355445322],[-76.58758746405152,39.28324330267965],[-76.58758040565955,39.2832430563101],[-76.58757334723619,39.2832428153446],[-76.58756628762245,39.28324257977909],[-76.587559227993,39.28324234691541],[-76.58755216951218,39.28324211585682],[-76.58754510986194,39.28324188659524],[-76.5875380502117,39.28324165733322],[-76.58753099057196,39.2832414262693],[-76.58752393210182,39.28324119340754],[-76.58751687249362,39.28324095693833],[-76.58750981407594,39.28324071506825],[-76.58750275568448,39.28324046869408],[-76.58749569733497,39.28324021511345],[-76.58748864019692,39.28323995252908],[-76.58748158311128,39.28323968093682],[-76.58747452722668,39.28323940214229],[-76.58746747138396,39.28323911614135],[-76.58746041556755,39.28323882563624],[-76.58745335976687,39.28323853242848],[-76.58744630397678,39.28323823741883],[-76.58743924935098,39.28323794151207],[-76.58743219355571,39.28323764740228],[-76.58742513774483,39.2832373559943],[-76.58741808192349,39.28323706638743],[-76.58741102613367,39.28323677137566],[-76.58740397153962,39.28323647006231],[-76.58739691695604,39.28323616694708],[-76.58738986120831,39.28323586472803],[-76.58738280659871,39.28323556611565],[-76.5873757507882,39.28323527470472],[-76.58736869492016,39.28323499320157],[-76.58736163780928,39.28323472610585],[-76.58735457944513,39.283234475219],[-76.5873475197072,39.28323426125822],[-76.58734045741022,39.28323408872311],[-76.58733339381797,39.28323393960287],[-76.58732633019437,39.28323379588665],[-76.58731926663893,39.28323364046036],[-76.58731220557968,39.28323345441644],[-76.58730514712151,39.28323321974003],[-76.58729809248634,39.28323292562627],[-76.58729104044173,39.28323258468154],[-76.58728399090393,39.2832322113177],[-76.58727694260911,39.28323182354559],[-76.58726989314482,39.2832314375705],[-76.5872628435758,39.28323106960988],[-76.58725579148962,39.28323073586896],[-76.58724873564871,39.28323044985486],[-76.58724167852301,39.28323018545414],[-76.58723462015975,39.28322993456011],[-76.58722756173363,39.2832296944746],[-76.58722050210658,39.28322946159052],[-76.58721344243767,39.28322923591199],[-76.58720638274262,39.28322901473675],[-76.58719932303708,39.28322879536257],[-76.58719226217787,39.28322857508315],[-76.58718520248813,39.28322835300589],[-76.5871781428247,39.28322812642451],[-76.58717108319802,39.28322789353748],[-76.5871640247828,39.28322765164665],[-76.58715696643577,39.28322739804572],[-76.58714991049071,39.28322713004058],[-76.58714285349151,39.28322684401606],[-76.58713579888386,39.28322654538885],[-76.58712874432344,39.2832262386545],[-76.58712168979977,39.28322592561452],[-76.58711463643517,39.28322561257819],[-76.58710758189068,39.28322530314033],[-76.5871005261452,39.28322500090394],[-76.58709347151694,39.28322470587715],[-76.58708641570348,39.28322441534961],[-76.5870793598691,39.28322412842457],[-76.58707230401382,39.28322384510212],[-76.58706524698381,39.28322356447742],[-76.58705819111287,39.28322328385637],[-76.58705113408301,39.28322300323079],[-76.58704407821745,39.28322272170814],[-76.58703702235196,39.28322244018507],[-76.58702996533272,39.28322215775673],[-76.58702290946735,39.28322187623283],[-76.58701585360724,39.28322159380772],[-76.58700879658292,39.28322131227888],[-76.58700174071772,39.28322103075367],[-76.58699468485253,39.28322074922806],[-76.58698762782319,39.28322046859869],[-76.58698057195286,39.28322018797292],[-76.58697351491833,39.28321990824348],[-76.58696645903768,39.28321962941836],[-76.58695940199279,39.28321935148954],[-76.58695234610177,39.28321907446512],[-76.58694528905171,39.28321879743615],[-76.58693823314502,39.28321852311309],[-76.5869311760794,39.28321824878554],[-76.58692411899806,39.2832179771598],[-76.58691706191678,39.28321770553359],[-76.58691000481981,39.28321743660924],[-76.58690294771245,39.28321716948599],[-76.58689589057363,39.2832169077667],[-76.58688883224437,39.28321665144743],[-76.58688177388893,39.28321639963142],[-76.58687471551258,39.28321615141801],[-76.58686765711528,39.28321590680712],[-76.58686535336972,39.28321582754437],[-76.58686059870755,39.28321566399731],[-76.58685354028405,39.28321542388929],[-76.58684648069641,39.28321518467754],[-76.5868394222626,39.28321494637019],[-76.58683236383406,39.28321470716168],[-76.58682530425706,39.28321446614713],[-76.5868181788351,39.28321438613714],[-76.5868114658339,39.28321513718024],[-76.58680755003174,39.28321960200004],[-76.58680084664137,39.28322128986986],[-76.58679374953883,39.28322132255347],[-76.5867868701064,39.28322020122405],[-76.5867802994144,39.28321820994244],[-76.5867737773922,39.28321602156463],[-76.58676715064237,39.28321410304691],[-76.58676049329635,39.28321226368833],[-76.58675383009769,39.28321043421713],[-76.58674716103084,39.28320861733568],[-76.58674048492088,39.28320681574197],[-76.5867338017574,39.28320503123759],[-76.58672711035503,39.28320326832214],[-76.58672040954956,39.28320152789229],[-76.58671369814,39.28319981714997],[-76.58670679089995,39.2831984957486],[-76.58669986814671,39.28319725085714],[-76.58669334466487,39.28319531378255],[-76.58668732110222,39.28319251823788],[-76.58668153638115,39.28318931188461],[-76.58667574706122,39.28318609920954],[-76.58666984926947,39.28318300325164],[-76.58666383459351,39.28318007532489],[-76.5866572733639,39.28317825161159],[-76.58665034761316,39.28317712380583],[-76.5866432900146,39.28317634503174],[-76.58663626860783,39.28317572041512],[-76.58662921180476,39.28317540193294],[-76.58662213895292,39.28317525183652],[-76.58661507509512,39.28317514951179],[-76.58660800962699,39.28317512464659],[-76.58660094280559,39.28317513310444],[-76.58659387018906,39.28317514154152],[-76.58658668396524,39.28317535224996],[-76.586579783422,39.28317507034527],[-76.58657490995296,39.28317102948422],[-76.58656970890642,39.28316731174472],[-76.58656443563821,39.28316365590341],[-76.58655914837814,39.28316001442484],[-76.58655385180433,39.28315638011934],[-76.58654855057397,39.2831527494003],[-76.58654325050837,39.28314911778429],[-76.58653795742907,39.2831454807881],[-76.58653271812776,39.28314176471377],[-76.58652664439707,39.28313982290763],[-76.5865195729314,39.28314003221439],[-76.58651251195474,39.28314023164928],[-76.58650545095703,39.28314043468669],[-76.5864983910868,39.28314064313222],[-76.58649133118503,39.28314085698184],[-76.58648427008745,39.2831410771321],[-76.58647721127642,39.28314130269463],[-76.58647015238128,39.28314154266861],[-76.58646309340213,39.28314179705409],[-76.58645603437043,39.28314206044659],[-76.58644897648189,39.283142326545],[-76.58644191859861,39.28314259174218],[-76.58643485959826,39.28314284972895],[-76.58642780181988,39.28314309691044],[-76.58642074182838,39.28314332606844],[-76.58641368312189,39.28314353361225],[-76.58640662225486,39.28314371412509],[-76.5863995605596,39.28314383788652],[-76.58639249622217,39.28314381841692],[-76.58638543004454,39.28314371697098],[-76.5863783639037,39.28314360921939],[-76.58637129735325,39.28314357172546],[-76.58636423366546,39.28314363963046],[-76.58635716980436,39.28314373725961],[-76.58635010583293,39.28314385380396],[-76.58634304177747,39.28314398475981],[-76.58633597883377,39.28314412382601],[-76.58632891470471,39.28314426739142],[-76.5863218517399,39.28314441005974],[-76.58631478764754,39.28314454731912],[-76.5863077236182,39.28314467376909],[-76.58630065968337,39.28314478400528],[-76.58629359481012,39.28314485640571],[-76.5862865289301,39.28314490267995],[-76.58627946304487,39.28314494985457],[-76.58627239814527,39.28314502675741],[-76.58626533525911,39.28314515591117],[-76.5862582733533,39.28314531569392],[-76.58625121132665,39.28314549619335],[-76.58624415037497,39.28314569110837],[-76.5862370893602,39.28314589683188],[-76.58623002831912,39.28314610705871],[-76.58622296613993,39.28314631367805],[-76.58621584071307,39.28314643450167],[-76.58620868306959,39.28314651467702],[-76.58620156328544,39.28314666164178],[-76.58619455375442,39.28314698284182],[-76.58618789579292,39.28314783582937],[-76.58618308346465,39.28315199571458],[-76.58617851451704,39.28315615915928],[-76.58617446855658,39.2831606766447],[-76.58617078905813,39.28316535845908],[-76.58616795484757,39.28317038013674],[-76.58616553932926,39.28317555371685],[-76.58616320948973,39.28318074291168],[-76.58616107177623,39.28318597962308],[-76.58615933811855,39.2831912943228],[-76.58615803862547,39.28319669162076],[-76.58615682479555,39.28320210723579],[-76.5861554048098,39.28320749600233],[-76.5861540227619,39.28321293804755],[-76.58615248451748,39.28321833270275],[-76.58615048605952,39.28322354017929],[-76.58614657702765,39.28322802932165],[-76.5861405134851,39.28323030220192],[-76.58613345086042,39.28323018634113],[-76.58612638715553,39.2832300569647],[-76.58611932237044,39.28322991407254],[-76.58611225883378,39.28322975587143],[-76.58610519772034,39.28322957966317],[-76.58609813930855,39.28322933770826],[-76.58609108100195,39.28322907773807],[-76.5860755388016,39.28322258882056],[-76.58606172368172,39.28322025760411],[-76.58604759561665,39.28321931696221],[-76.58603347780755,39.28321900238505],[-76.58601932557978,39.28321902457031],[-76.58600518226427,39.28321930710581],[-76.58599104162678,39.28321972656503],[-76.58597684390736,39.28322019536334],[-76.58596267627782,39.28322087054072],[-76.58594863626243,39.28322192268521],[-76.58593487998854,39.28322380813331],[-76.58592260951573,39.28322948562545],[-76.58591190559908,39.28323663688256],[-76.58590188185136,39.28324441746766],[-76.58589240995911,39.28325257021095],[-76.5858832151237,39.28326091399128],[-76.58587422812896,39.28326939271727],[-76.58586483753848,39.28327771418767],[-76.58585309024055,39.28328351241777],[-76.58583899786127,39.28328519309719],[-76.58582473526285,39.28328605167876],[-76.58581106197246,39.28328463971135],[-76.58579832988171,39.28327964692487],[-76.5857853808522,39.28327508483753],[-76.58577210617503,39.28327130886733],[-76.58575808729559,39.28326933449962],[-76.58574643704601,39.28326347358392],[-76.58573553596,39.28325635153855],[-76.58572457977031,39.28324933738936],[-76.58571349376751,39.28324252184995],[-76.58570253244636,39.28323559325305],[-76.58569136256773,39.28322845404171],[-76.58568118676573,39.28322098595398],[-76.58568585102049,39.28321162275932],[-76.58569402026964,39.28320265565198],[-76.58570224961295,39.28319371848117],[-76.58571045002044,39.28318477400158],[-76.58571866659447,39.28317583948686],[-76.58572687277193,39.28316689862952],[-76.58573504312777,39.28315793872922],[-76.58574315224733,39.28314894528416],[-76.58575121168425,39.28313992464039],[-76.58575926072469,39.28313089765409],[-76.58576426263357,39.28312226256274],[-76.58577142209286,39.28311333512544],[-76.58577919611419,39.28310416394655],[-76.58578703830601,39.28309502903801],[-76.58578992889649,39.28308650900418],[-76.58577913819902,39.28307934321425],[-76.58576841465394,39.28307219027078],[-76.58575769228057,39.28306503552892],[-76.58574699905868,39.28305785116369],[-76.58573630816758,39.28305066500416],[-76.58572559047363,39.28304350397045],[-76.5857148179918,39.28303639678834],[-76.58570396391707,39.28302936858459],[-76.5856929944376,39.28302245346891],[-76.58568182096211,39.28301573760208],[-76.58567048429327,39.28300918059363],[-76.58565907885446,39.28300268999794],[-76.58564769558139,39.28299617515871],[-76.58563642888683,39.28298954543194],[-76.58562523098225,39.28298284658798],[-76.58561402377076,39.28297615401538],[-76.58560281773616,39.2829694587436],[-76.58559162569624,39.28296274910787],[-76.58558045929911,39.28295601524093],[-76.58556933019834,39.28294924637474],[-76.58555825005247,39.28294243084049],[-76.58554723050459,39.28293555967169],[-76.58553628321857,39.28292862029876],[-76.58552544197468,39.28292158401658],[-76.5855147254437,39.28291442927267],[-76.58550410331199,39.28290718658609],[-76.58549354527638,39.28289988467431],[-76.58548301987466,39.28289255225081],[-76.5854724956447,39.28288521802895],[-76.58546194111901,39.28287791162284],[-76.58545544949848,39.28287013584445],[-76.58546444130776,39.28286162654052],[-76.58547335233553,39.28285305659969],[-76.58548214875945,39.28284446193312],[-76.58549093132557,39.28283585820933],[-76.58549969887481,39.28282724542424],[-76.58550845371468,39.28281862538756],[-76.58551719123547,39.28280999357918],[-76.58552591026755,39.28280135179646],[-76.58553462005688,39.28279270457593],[-76.58554332869562,39.28278405554912],[-76.58555204310623,39.28277541014506],[-76.58556077137048,39.28276677379692],[-76.58556952158044,39.28275815013615],[-76.5855782925771,39.28274953915879],[-76.58558707396074,39.28274093542346],[-76.58559586458293,39.28273233712468],[-76.58560466097704,39.28272374244861],[-76.58561346083563,39.28271514958563],[-76.58562226299954,39.28270655853163],[-76.58563106285386,39.28269796566732],[-76.58563985924472,39.28268937008779],[-76.5856486475413,39.28268077087601],[-76.58565742891315,39.28267216623449],[-76.58566619872951,39.28266355524625],[-76.58567496623093,39.28265494334842],[-76.58568373142793,39.28264632873946],[-76.58569249546377,39.28263771412578],[-76.58570125718997,39.28262909770174],[-76.585710017755,39.28262048127293],[-76.58571877716417,39.28261186393861],[-76.58572753657641,39.28260324570289],[-76.58573629367378,39.28259462655756],[-76.58574505076902,39.28258600741156],[-76.5857538078621,39.28257738826488],[-76.58576256379409,39.28256876911342],[-76.5857713208882,39.28256014906466],[-76.58578007681591,39.28255152991188],[-76.58578883390051,39.2825429107625],[-76.58579759213677,39.28253429251725],[-76.58580635037085,39.28252567427136],[-76.58581510975662,39.28251705692963],[-76.58582387145826,39.2825084395954],[-76.58583263314726,39.28249982406198],[-76.58584139714695,39.28249120943676],[-76.58585016345724,39.28248259571983],[-76.58585893091396,39.28247398380781],[-76.5858677595864,39.28246540814143],[-76.58587664599223,39.28245686960924],[-76.58588561534363,39.28244821877337],[-76.58588731263949,39.28243999988747],[-76.58587631646012,39.2824331045101],[-76.58586743923671,39.28242756144198],[-76.58586530048494,39.28242622527564],[-76.58585427868516,39.28241935142416],[-76.58584326387852,39.28241247129095],[-76.58583225373111,39.28240558757007],[-76.58582124125726,39.28239870564143],[-76.5858102276213,39.28239182460843],[-76.58579921514645,39.28238494357847],[-76.5857882038433,39.28237806075006],[-76.58577719720466,39.28237117343324],[-76.5857661952358,39.28236428072719],[-76.58575520141905,39.28235738174355],[-76.5857442309163,39.28235046032199],[-76.58573333734753,39.28234346440738],[-76.58572255643982,39.28233781823252],[-76.58571309941546,39.28234602235916],[-76.58570430193808,39.28235461433798],[-76.58569553563635,39.28236322624284],[-76.58568679357727,39.28237185444633],[-76.58567806883822,39.28238049351941],[-76.58566935564521,39.28238913983863],[-76.58566064706505,39.28239778977654],[-76.58565193617004,39.28240643880483],[-76.58564321719658,39.28241508149866],[-76.58563448320632,39.28242371513114],[-76.5856257422861,39.28243234423478],[-76.58561700252277,39.2824409733418],[-76.58560826159834,39.28244960244407],[-76.58559951951796,39.28245823064081],[-76.5855907774355,39.28246685883691],[-76.58558203304335,39.28247548522263],[-76.58557328633634,39.28248411069877],[-76.5855645373144,39.28249273526534],[-76.58555578482904,39.28250135711672],[-76.58554702888027,39.28250997625291],[-76.58553826830381,39.28251859357056],[-76.58552949502335,39.28252720273591],[-76.58552070903889,39.28253580374885],[-76.58551191611915,39.28254440113361],[-76.58550312088978,39.28255299670801],[-76.58549432565829,39.28256159228172],[-76.5854855385115,39.28257019238714],[-76.58547676059797,39.28257879882975],[-76.58546799885073,39.28258741523722],[-76.58545925673636,39.28259604342313],[-76.58545052616793,39.28260467885534],[-76.58544179906399,39.28261331610057],[-76.5854330742654,39.28262195515478],[-76.585427670785,39.28262731003777],[-76.58542435408505,39.28263059692699],[-76.58541563736907,39.28263924051225],[-76.58540692526604,39.28264788771617],[-76.58539821778646,39.2826565367373],[-76.5853895149198,39.28266518937708],[-76.58538081783031,39.28267384473892],[-76.58537212535906,39.28268250281868],[-76.58536343865973,39.28269116452118],[-76.58535475772709,39.2826998307472],[-76.58534608373067,39.28270849969937],[-76.58533741550096,39.28271717317505],[-76.58532876921691,39.28272585933821],[-76.58532018761512,39.28273458356116],[-76.5853116498962,39.28274333496124],[-76.58530313181022,39.28275209813995],[-76.58529460794809,39.28276085769456],[-76.58528550562555,39.28276844331332],[-76.58527841280905,39.28276358657743],[-76.58527486062711,39.28276115458585],[-76.58526381320232,39.28275430310826],[-76.58525279377004,39.28274742200328],[-76.58524194213496,39.28274038835993],[-76.5852312478131,39.28273321114889],[-76.58522059777334,39.28272599355896],[-76.58520998036758,39.28271874545725],[-76.58519938627086,39.2827114758186],[-76.58518880499408,39.28270419451428],[-76.58517822488379,39.28269691231233],[-76.58516763544553,39.28268963998492],[-76.58515702620066,39.28268238560182],[-76.58514638665473,39.2826751599351],[-76.5851357016509,39.28266797824428],[-76.58512432896349,39.28266145438313],[-76.58511256424883,39.28265537321242],[-76.5851006968573,39.28264940877713],[-76.5850887675916,39.28264352068697],[-76.58507675076363,39.28263774127855],[-76.58506468490039,39.28263202294763],[-76.58505267857602,39.28262623186395],[-76.58504078199746,39.28262030515144],[-76.58502889131614,39.28261436134406],[-76.58501705315643,39.28260835556833],[-76.58500532815111,39.28260222588585],[-76.58499377576888,39.28259591125479],[-76.58498238439302,39.28258941613802],[-76.58497111203015,39.28258278632617],[-76.58495994812776,39.28257604249944],[-76.5849488844621,39.28256920354494],[-76.58493791280405,39.28256228925039],[-76.58492762509947,39.28255476124951],[-76.5849172931328,39.28254727092335],[-76.58490637976446,39.28254030008362],[-76.58489532425432,39.28253345574825],[-76.58488416617259,39.28252671013323],[-76.58487293926788,39.28252003993804],[-76.58486155961617,39.28251352593475],[-76.58485007736651,39.28250711515548],[-76.5848386160972,39.28250068463246],[-76.58482730171025,39.28249411050528],[-76.58481624845913,39.28248727878099],[-76.58480542251633,39.28248022627125],[-76.58479473063804,39.28247304182222],[-76.58478408540223,39.28246580979655],[-76.58477340169414,39.28245861636672],[-76.58476259209169,39.28245154589548],[-76.5847512824927,39.28244494835793],[-76.58473982945577,39.28243850073969],[-76.58472935280022,39.28243118193088],[-76.5847196381116,39.28242318844096],[-76.58470980930858,39.28241528552388],[-76.58469975805907,39.28240756557514],[-76.58468970332419,39.28239984741475],[-76.58467977897655,39.28239203153127],[-76.58467000019945,39.28238409816169],[-76.58466029013367,39.28237610918682],[-76.58465057888995,39.28236812381007],[-76.58464079426628,39.28236020032564],[-76.58463086288585,39.28235239972605],[-76.5846203212542,39.2823450968912],[-76.5846090213637,39.28233843001524],[-76.58459923269156,39.28233060559689],[-76.58459048955201,39.28232197689054],[-76.58458208514483,39.28231310077071],[-76.58457352239063,39.28230434749484],[-76.58456498525827,39.28229557359138],[-76.58455728733428,39.28228639370881],[-76.5845511901071,39.28227641240307],[-76.5845448496974,39.28226659237431],[-76.58453644207194,39.28225787207171],[-76.58452703235751,39.28224966346076],[-76.58451704801199,39.2822418077173],[-76.58450679553302,39.28223421765041],[-76.58449623641458,39.28222693726133],[-76.58448529762263,39.28221996899391],[-76.58447414557723,39.28221319723821],[-76.58446290475227,39.28220654406818],[-76.58445145402418,39.28220010903996],[-76.58443990068736,39.28219377903692],[-76.58442839866063,39.28218739606923],[-76.58441704720448,39.28218083348045],[-76.58440625516008,39.28217374682392],[-76.58439708977832,39.28216538323463],[-76.58438807446592,39.28215692559544],[-76.58437666567247,39.28215045737991],[-76.5843634986807,39.28214655011781],[-76.58434940359273,39.28214575801316],[-76.5843354117179,39.28214732987536],[-76.58432147641984,39.28214874069943],[-76.58430798533865,39.28214535202471],[-76.58399498858773,39.28199298142766],[-76.58396160106386,39.28197247259434],[-76.5839364923104,39.28195714544319],[-76.5838942161015,39.28193111405108],[-76.5838583565486,39.28190919844577],[-76.58379956046655,39.28187312262724],[-76.58376224364753,39.28185029025582],[-76.58373869891605,39.2818356856115],[-76.58377045163203,39.28180431194164],[-76.58380088363464,39.28177401900351],[-76.5838301635896,39.28174509924314],[-76.58385832325095,39.2817172771402],[-76.5838752925715,39.28170029841337],[-76.58386021553899,39.28169165982236],[-76.58383516467454,39.2816771543493],[-76.58381521914858,39.28166564848733],[-76.58380057666031,39.2816572258099],[-76.58383981775219,39.2816181501013],[-76.5838771974268,39.28158084769397],[-76.58390672309238,39.28155151443242],[-76.58395190294753,39.28150631020939],[-76.58398050076961,39.28147786269617],[-76.58396199752636,39.28146569269912],[-76.58395129241372,39.28145863152806],[-76.58396770669425,39.28144220839368],[-76.58399413488604,39.28141512685672],[-76.58403469794986,39.28137352191484],[-76.58407051541796,39.28133674536245],[-76.58410024559164,39.28130630393483],[-76.58413784717087,39.28126787086866],[-76.58418335585328,39.28122148141237],[-76.58418778137488,39.28121667348914],[-76.58415312463941,39.28119524233325],[-76.58410201623391,39.28116341665362],[-76.58406041607587,39.28113779305114],[-76.58402684628355,39.28117136724025],[-76.5839757122817,39.28122219008902],[-76.58393084545386,39.28126701711238],[-76.58389875114764,39.28129878415391],[-76.5838679486793,39.28132963968636],[-76.5838165403946,39.28138094700419],[-76.58377704764752,39.28142006775455],[-76.58373332698814,39.28146408086873],[-76.58367867849329,39.28151824287197],[-76.58363473452756,39.28156236685179],[-76.58357893158032,39.28161769750965],[-76.58354484554792,39.28165226146844],[-76.58351074038326,39.28163124373037],[-76.58348175899184,39.28161304552605],[-76.58344948733463,39.28159323228703],[-76.58343252757005,39.28158271157403],[-76.58339965940854,39.28161218058737],[-76.58338929228916,39.28162158292012],[-76.58334978137933,39.28159702667836],[-76.583316270315,39.28157650010521],[-76.5832891414938,39.28155981810445],[-76.58324841026656,39.2815350521245],[-76.58320628291969,39.2815090201072],[-76.58317284268546,39.28148848563674],[-76.58311607858606,39.28145367684819],[-76.58307246187834,39.28142687384685],[-76.58302815773972,39.28139990084663],[-76.58298962759903,39.28137613613105],[-76.58295618061554,39.28135558806229],[-76.58292080851933,39.28133385494916],[-76.58287315084378,39.28130461627076],[-76.58282552414572,39.28127543803382],[-76.58280071588582,39.28126014232816],[-76.58278185646569,39.28122974752685],[-76.58276855912203,39.28120823869698],[-76.58275387076483,39.28118459461796],[-76.5827346291432,39.28115317428212],[-76.58271468897276,39.28112110741509],[-76.58268115983002,39.28106707398013],[-76.58266512570677,39.28104109933538],[-76.58263835411545,39.28099980778035],[-76.5826061958417,39.28094997404983],[-76.5825898157364,39.28092450349278],[-76.5825678669562,39.28088970555041],[-76.58255898735693,39.28087558154311],[-76.58254844856638,39.2808584142626],[-76.58253801409934,39.28084144281758],[-76.58252599973649,39.28082213457935],[-76.58250410076312,39.28080882092036],[-76.5824814989812,39.28079499312518],[-76.58245103959656,39.28077654529925],[-76.58242241299814,39.28075921732513],[-76.58240346506498,39.2807476517116],[-76.58238063152784,39.28073342853808],[-76.58235702679667,39.28071888915212],[-76.5823151050403,39.2806931160562],[-76.5823035422802,39.28068590125503],[-76.58227855814532,39.28068596373564],[-76.58224046857589,39.2806860994025],[-76.58216937183657,39.28068635184722],[-76.58212664182741,39.28068663941297],[-76.58208705466319,39.28068719306137],[-76.58204722102029,39.28068768006362],[-76.58200045952621,39.28068823607834],[-76.58198527449748,39.28068836309286],[-76.58198227465606,39.28068664456868],[-76.58193586685286,39.28065825486608],[-76.581902564612,39.28063783851731],[-76.58186927990255,39.28061740060298],[-76.58184577726522,39.28060306504937],[-76.5818121578562,39.28058239262914],[-76.58178973894519,39.28056864281598],[-76.58175636486344,39.28054843424559],[-76.58172884991582,39.28053151720391],[-76.58171054509039,39.28052039874474],[-76.58170623205692,39.28051436267887],[-76.58168738431566,39.28050136418963],[-76.58167549326183,39.28049303571312],[-76.58165886932672,39.28048147285],[-76.58163250586628,39.28046328530526],[-76.58161105546345,39.2804484408755],[-76.58159445758788,39.28043658985136],[-76.58158894350989,39.28038029767873],[-76.5815807410877,39.2803754007312],[-76.58157278764793,39.28037073526566],[-76.58155398544388,39.28035965554389],[-76.58152584912601,39.28034317581253],[-76.58143822398472,39.28029177406166],[-76.5814150610681,39.28027803863847],[-76.58137844684755,39.28025661589136],[-76.58133561740577,39.28023137245751],[-76.5813212189319,39.28022294402975],[-76.58131939885129,39.28022183951067],[-76.5813076858319,39.28022342273794],[-76.58128361289184,39.28022661840959],[-76.58124570721822,39.28023157349654],[-76.58123318946313,39.28022399217576],[-76.5812020355447,39.28020529653684],[-76.58117503293076,39.28018900451825],[-76.58113416613836,39.28016448952034],[-76.5811059279528,39.28014742923144],[-76.58108094575917,39.28013247302325],[-76.5810427561404,39.2801093655269],[-76.58099993251173,39.28008376168393],[-76.58092059007924,39.28003632632633],[-76.58088055956215,39.2800127149863],[-76.58084436977377,39.27999130259207],[-76.58080888174169,39.27997019174456],[-76.58077134517086,39.27994800526836],[-76.58072572381022,39.27992104379469],[-76.58061962892214,39.27985823667292],[-76.58059634820688,39.27984448084804],[-76.5805900650107,39.27985079528919],[-76.58057787157382,39.27986326876929],[-76.58056314384108,39.27987821480378],[-76.58054379165253,39.27989786973126],[-76.58052672965346,39.27991517103048],[-76.58051453220817,39.2799275345963],[-76.58048251489309,39.27996004052264],[-76.58044625654286,39.27999689279172],[-76.58042047608146,39.28002307599503],[-76.58041999452423,39.28002356429056],[-76.58040282276394,39.28004099308782],[-76.5803778101445,39.28006628906944],[-76.58035393447098,39.28009060907618],[-76.5803197019397,39.28012530490732],[-76.58030170075371,39.28014363329164],[-76.5802779383608,39.2801677996566],[-76.58025315982832,39.28019289017258],[-76.58022036370164,39.28022613186919],[-76.58019745809621,39.2802494581643],[-76.5801753944763,39.28027190651694],[-76.58014835159389,39.28029947052217],[-76.58013631067871,39.28029202049873],[-76.57995576202038,39.28018283830725],[-76.57991145574789,39.28015596859561],[-76.5799232870337,39.28013911257302],[-76.5799501122459,39.28010074857789],[-76.58002704283815,39.2799908538989],[-76.58004264574188,39.27996846984745],[-76.58006225453708,39.27994053879733],[-76.58009483591054,39.27989402811727],[-76.58010480434847,39.27987975871614],[-76.5801039399529,39.27987541304169],[-76.58011947123832,39.27983927135099],[-76.58011909471882,39.27982592788494],[-76.58011905734419,39.27982460542941],[-76.58011132561026,39.27979856371868],[-76.58007905863607,39.27976631180042],[-76.58000105333382,39.2797187085481],[-76.57994748539902,39.27969894698735],[-76.57983839504946,39.27966420436277],[-76.57971132987419,39.27965215783328],[-76.57960242606772,39.27963232150411],[-76.5795795054968,39.27962961554012],[-76.57958058034761,39.27962386620557],[-76.57958142047752,39.27961841418379],[-76.57958224902288,39.2796129612198],[-76.57958306946058,39.27960750732603],[-76.57958388642662,39.27960205251906],[-76.57958470222823,39.27959659860861],[-76.57958552150664,39.27959114471066],[-76.57958634773875,39.27958569083756],[-76.57958718439083,39.27958023880326],[-76.57958803726308,39.27957478772777],[-76.57958890287327,39.2795693384994],[-76.57958977891406,39.27956388930836],[-76.57959065726733,39.27955844102631],[-76.57959153446147,39.27955299274012],[-76.57959240470701,39.27954754352826],[-76.57959326337335,39.27954209247343],[-76.57959410813187,39.27953664136882],[-76.57959494594174,39.27953118933852],[-76.57959578259789,39.27952573640331],[-76.57959662619702,39.27952028529451],[-76.57959748022682,39.27951483422302],[-76.57959835278935,39.27950938501937],[-76.57959923808981,39.27950393766283],[-76.57960013034393,39.27949849033114],[-76.5796010237516,39.27949304390433],[-76.57960191368753,39.27948759656433],[-76.57960279435686,39.27948214829039],[-76.57960365070369,39.27947669722708],[-76.57960449777853,39.27947124613053],[-76.57960535411978,39.27946579596796],[-76.5796062139431,39.27946034491706],[-76.57960707376094,39.27945489476687],[-76.57960793357866,39.27944944461668],[-76.57960879339623,39.27944399446645],[-76.5796096532137,39.27943854431624],[-76.57961051303101,39.27943309416599],[-76.57961137284819,39.27942764401573],[-76.57961223382421,39.2794221938696],[-76.57961309364114,39.27941674371932],[-76.57961395345792,39.27941129356901],[-76.5796148144336,39.27940584342283],[-76.57961567425012,39.27940039327249],[-76.57961653522547,39.27939494312628],[-76.57961739504172,39.27938949297592],[-76.57961825601687,39.27938404282969],[-76.57961911583287,39.2793785926793],[-76.57961997680769,39.27937314253306],[-76.57962083662342,39.27936769238261],[-76.57962169643902,39.27936224223222],[-76.57962255741344,39.27935679208591],[-76.57962341722879,39.27935134193543],[-76.579624278203,39.2793458917891],[-76.57962513801806,39.27934044163861],[-76.579625997833,39.27933499148808],[-76.57962685880678,39.27932954134171],[-76.57962771862145,39.27932409119117],[-76.57962857727703,39.27931864103646],[-76.57962943361453,39.27931319087343],[-76.57963028879828,39.27930773980548],[-76.57963114282295,39.27930228873341],[-76.57963199800109,39.2792968385662],[-76.57963285665598,39.27929138841141],[-76.57963371878769,39.27928593826906],[-76.57963458902671,39.27928048905649],[-76.57963548011637,39.27927504172006],[-76.57963637699541,39.27926959530505],[-76.57963725881832,39.27926414703462],[-76.57963810820607,39.27925869594583],[-76.57963892631747,39.27925324204279],[-76.5796397258959,39.27924778627187],[-76.57964051968474,39.27924232957947],[-76.57964132389885,39.27923687382512],[-76.57964214895824,39.27923142084764],[-76.57964301108852,39.27922597070512],[-76.57964391723276,39.27922052522396],[-76.57964486044246,39.27921508347846],[-76.57964582334387,39.27920964360492],[-76.57964679203994,39.2792042037521],[-76.57964775146412,39.27919876386614],[-76.57964868540685,39.27919332118663],[-76.579649577648,39.27918787475482],[-76.57965040734206,39.2791824217938],[-76.57965119418085,39.2791769641756],[-76.5796519682709,39.27917150651177],[-76.57965276205793,39.27916604981916],[-76.5796535766903,39.27916059590343],[-76.57965439943524,39.27915514201668],[-76.57965615297427,39.27915064537056],[-76.57966209305948,39.27914923351178],[-76.57966397069428,39.27914394013307],[-76.57966583211923,39.279138643994],[-76.57966768544715,39.27913334512363],[-76.5796695341496,39.27912804443514],[-76.57967138631803,39.27912274556053],[-76.57967324195772,39.27911744759905],[-76.57967509876146,39.27911214874096],[-76.5796769544006,39.27910685077948],[-76.57967881003948,39.27910155281788],[-76.57968066568341,39.27909625395559],[-76.57968251669121,39.2790909550766],[-76.57968435728404,39.27908565345803],[-76.57968620134815,39.27908035275263],[-76.57968806624667,39.27907505662552],[-76.57969002142691,39.27906978063828],[-76.57969221022168,39.27906458925808],[-76.57969795226114,39.27906139137363],[-76.57970369545376,39.27905819439378],[-76.57970944094774,39.27905500012418],[-76.5797151876002,39.27905180585845],[-76.57972093540043,39.27904861339807],[-76.5797266843591,39.27904542094154],[-76.5797324333119,39.27904222938547],[-76.5797381834232,39.27903903783329],[-76.57974393237498,39.27903584627668],[-76.57974968132623,39.27903265471975],[-76.57975543028232,39.27902946226183],[-76.5797611780896,39.27902626799798],[-76.57976692473741,39.27902307372968],[-76.57977267023637,39.27901987765543],[-76.57977841342759,39.27901667977118],[-76.5797841554753,39.27901347918022],[-76.5797898952099,39.27901027767992],[-76.57979563033479,39.27900707165911],[-76.57980134934039,39.27900384756499],[-76.57980705338024,39.27900060630254],[-76.57981274934953,39.27899735780483],[-76.57981844647188,39.27899411021169],[-76.57982415280148,39.27899087346044],[-76.57982986153377,39.27898762230529],[-76.57983598846937,39.27898499057022],[-76.57984284586874,39.27898543936011],[-76.57984974944056,39.2789867026058],[-76.57985663583084,39.27898793156061],[-76.57986351750019,39.27898917491032],[-76.57987040745324,39.27899038946482],[-76.57987731516965,39.27899154012818],[-76.57988423471065,39.27899265119979],[-76.57989115661243,39.27899375507332],[-76.57989807023634,39.27899488684052],[-76.57990496495435,39.27899607979167],[-76.57991182770327,39.27899738702517],[-76.57991867392823,39.27899874464201],[-76.57992553549195,39.27900005637427],[-76.57993242427746,39.2790012727225],[-76.5799393225269,39.27900245667664],[-76.57994622668342,39.27900362173538],[-76.57995313437038,39.27900477779877],[-76.57996004089324,39.2790059347583],[-76.57996694386478,39.27900710431544],[-76.57997384091908,39.27900829456861],[-76.57998073442205,39.27900949741942],[-76.57998762792528,39.27901070026977],[-76.57999452497494,39.27901189142245],[-76.58000142911729,39.2790130591802],[-76.58000833447213,39.27901421793429],[-76.58001524216641,39.27901537309324],[-76.58002214987164,39.27901652645031],[-76.58002905759311,39.2790176771047],[-76.58003596648433,39.27901882596141],[-76.58004287538118,39.27901997391689],[-76.58004978544791,39.27902112007469],[-76.58005669551481,39.27902226623203],[-76.58006360442832,39.27902341148408],[-76.58007051450633,39.27902455583914],[-76.58007742457924,39.27902570109452],[-76.58008433464704,39.27902684725026],[-76.58009124355078,39.27902799430214],[-76.58009815244941,39.27902914225441],[-76.58010506134293,39.27903029110698],[-76.58011196906169,39.27903144265727],[-76.58011887677006,39.27903259600866],[-76.58012578329833,39.27903375295846],[-76.58013268981621,39.27903491170935],[-76.580139595154,39.27903607405866],[-76.58014649815274,39.27903724000228],[-76.58015340112505,39.27903841044918],[-76.58016030291738,39.27903958449457],[-76.58016720352423,39.27904076303912],[-76.58017410178148,39.27904194697943],[-76.58018099883726,39.27904313812115],[-76.5801878935328,39.27904433646013],[-76.58019478703226,39.27904554109983],[-76.58020167818201,39.27904675113531],[-76.58020856814107,39.27904796657069],[-76.58021545575582,39.27904918650112],[-76.58022234334412,39.27905041093486],[-76.58022922975772,39.2790516380663],[-76.5802361161556,39.2790528678996],[-76.58024300138403,39.27905409952977],[-76.58024988544314,39.27905533295697],[-76.5802567706561,39.27905656728858],[-76.58026365471035,39.27905780161571],[-76.58027053877012,39.27905903504165],[-76.58027742399447,39.27906026757059],[-76.5802843092297,39.27906149829765],[-76.58029119563479,39.27906272722691],[-76.58029808322041,39.27906395255697],[-76.58030497082756,39.27906517428365],[-76.58031186896156,39.27906637983377],[-76.5803184987553,39.27906494608558],[-76.58032442954763,39.27906196683004],[-76.58033027866557,39.27905888369447],[-76.58033610246692,39.27905576984209],[-76.58034189287085,39.27905261983959],[-76.58034764063224,39.27904942915004],[-76.58035325509864,39.27904604431961],[-76.58035669849565,39.27904153118136],[-76.58035701488245,39.27903604755692],[-76.58035736024331,39.27903056403604],[-76.58035788288319,39.27902508835462],[-76.5803581679937,39.27901960191618],[-76.58035845194522,39.27901411547352],[-76.58035873474306,39.27900862812603],[-76.58035901753554,39.27900314167923],[-76.58035929916896,39.27899765522831],[-76.5803595796434,39.27899216877321],[-76.5803598601178,39.27898668231816],[-76.58036013827957,39.27898119495399],[-76.58036041643592,39.27897570849063],[-76.58036069343335,39.2789702220231],[-76.58036097043599,39.27896473465479],[-76.5803612451154,39.27895924817896],[-76.58036151980001,39.27895376080239],[-76.58036179332035,39.27894827432238],[-76.58036206568698,39.27894278693748],[-76.58036233805358,39.27893729955256],[-76.5803626092558,39.27893181306426],[-76.58036287930442,39.27892632567105],[-76.58036314818865,39.27892083917445],[-76.58036341591924,39.27891535177294],[-76.58036368364976,39.27890986437146],[-76.58036395021594,39.2789043778665],[-76.5803642156285,39.27889889045672],[-76.58036447988204,39.27889340304273],[-76.58036474413016,39.27888791652952],[-76.58036501883022,39.27888242645055],[-76.58036562904063,39.27887684118844],[-76.58036552682195,39.27887139299958],[-76.58036300080244,39.27886639734266],[-76.58035860099432,39.27886193995376],[-76.58035358637757,39.27885796678095],[-76.58034813359639,39.27885420101981],[-76.58034293624578,39.27885035870526],[-76.58033868212036,39.27884615675243],[-76.58033565524013,39.27884119173293],[-76.58033316118653,39.27883529902812],[-76.58033170063177,39.278829264092],[-76.58033187594333,39.27882392228406],[-76.58033438448075,39.27882011650917],[-76.58034011680641,39.2788181607128],[-76.58034780564954,39.27881715951074],[-76.58035575343638,39.27881607546222],[-76.5803624441345,39.27881394203512],[-76.58036876096615,39.27881094253801],[-76.58037438267777,39.27880730912131],[-76.580378319351,39.27880306617219],[-76.5803805016875,39.27879778107636],[-76.58038114502048,39.2787918860694],[-76.58037999966618,39.27878644586369],[-76.58037665158625,39.2787820958206],[-76.58037142486577,39.27877832095962],[-76.5803655806302,39.27877470422838],[-76.58036034511866,39.27877084826667],[-76.58035553487429,39.27876681006816],[-76.5803508456739,39.27876268582852],[-76.58034637388171,39.2787584470676],[-76.5803423123832,39.27875381433677],[-76.58034141771182,39.27874851284325],[-76.58034174664459,39.2787430634923],[-76.58034243519076,39.278737558678],[-76.5803432327377,39.27873204434474],[-76.58034391652524,39.27872656023101],[-76.58034474394387,39.27872109014189],[-76.5803456698633,39.27871562220623],[-76.58034648334748,39.27871015657112],[-76.58034696998884,39.27870469247056],[-76.58034694899494,39.27869922835782],[-76.58034664183918,39.27869374610816],[-76.58034613307242,39.27868825503126],[-76.58034541681464,39.27868276951838],[-76.58034448950379,39.27867730396901],[-76.58034334523855,39.27867187637737],[-76.5803419793085,39.27866649933731],[-76.58034043006597,39.27866115497052],[-76.58033873004707,39.27865582898111],[-76.5803368966416,39.27865052053033],[-76.58033494142312,39.27864523236192],[-76.58033288060646,39.27863996633522],[-76.58033072809381,39.27863472340079],[-76.58032849778739,39.27862950450898],[-76.58032620357875,39.27862431241168],[-76.58032389200203,39.27861911755002],[-76.58032157591235,39.2786139019546],[-76.58031922389527,39.27860868623075],[-76.58031680339346,39.27860348827745],[-76.58031427952098,39.2785983277868],[-76.58031162202755,39.27859322446765],[-76.58030879720235,39.2785881953139],[-76.58030577130766,39.27858326182348],[-76.58030251295042,39.27857844099866],[-76.58029895602205,39.27857374071012],[-76.58029506463765,39.27856915362342],[-76.58029087815906,39.27856468708536],[-76.58028643942521,39.27856034845513],[-76.58028178896234,39.27855614418277],[-76.58027696960922,39.27855208162755],[-76.5802720207278,39.27854816813614],[-76.5802669248378,39.27854441985986],[-76.58026158218888,39.27854084995374],[-76.58025602648682,39.27853744232435],[-76.58025030305882,39.2785341755154],[-76.5802444537285,39.27853103256172],[-76.5802385226695,39.27852799110202],[-76.58023255286447,39.27852503417545],[-76.5802265641649,39.27852213663152],[-76.58022053232862,39.2785192821698],[-76.58021446084312,39.27851646900125],[-76.58020835201569,39.2785136989356],[-76.58020220816415,39.27851097198118],[-76.58019603044221,39.27850828904284],[-76.5801898223267,39.27850565013298],[-76.58018358497125,39.27850305615652],[-76.58017732300632,39.27850050803075],[-76.58017103759619,39.27849800485905],[-76.58016473105349,39.27849554755053],[-76.58015832732106,39.27849325833722],[-76.58015178546766,39.27849119922558],[-76.58014515583469,39.27848928482293],[-76.58013848992796,39.2784874288399],[-76.58013183692998,39.2784855458797],[-76.58012525065922,39.27848355056211],[-76.58011870895693,39.27848146622775],[-76.58011216501171,39.27847936927431],[-76.58010566087121,39.27847720490544],[-76.58009923857239,39.27847492012636],[-76.58009293900396,39.27847246013652],[-76.58008665643968,39.27846986869555],[-76.58008044200159,39.27846712436779],[-76.58007448635034,39.27846412785007],[-76.58006897898758,39.27846077983501],[-76.58006378074052,39.27845690057296],[-76.58005907029111,39.27845245647374],[-76.5800557760343,39.2784476346127],[-76.58005459392126,39.27844253566153],[-76.58005497277367,39.27843707568014],[-76.58005631326927,39.27843147231223],[-76.58005804955701,39.27842596674123],[-76.58005998716354,39.27842071500482],[-76.58006250815288,39.27841558875882],[-76.58006527805603,39.27841050754022],[-76.58006792876233,39.27840539617011],[-76.58007027737017,39.27840021796406],[-76.58007257159201,39.27839502515129],[-76.58007483342145,39.27838982231429],[-76.58007707210345,39.27838461398984],[-76.58007929689903,39.27837940201268],[-76.58008151591014,39.27837418821325],[-76.58008374070499,39.27836897623594],[-76.58008595277242,39.27836376061007],[-76.58008812781155,39.27835853494334],[-76.5800902716173,39.27835329925649],[-76.5800923945935,39.27834805809054],[-76.58009450137602,39.27834281146206],[-76.58009660236877,39.27833756391209],[-76.58009870336126,39.27833231636206],[-76.58010081360905,39.27832707154739],[-76.58010293890158,39.27832183038949],[-76.58010508732492,39.27831659742112],[-76.58010726815067,39.27831137267542],[-76.5801094883112,39.27830615978026],[-76.58011175474962,39.27830096056194],[-76.58011407556786,39.27829577685096],[-76.58011645885735,39.27829061227931],[-76.58011891157166,39.27828546687182],[-76.58012144179695,39.27828034516128],[-76.5801240333451,39.27827524078439],[-76.58012664687563,39.27827014279138],[-76.58012927891707,39.27826505026906],[-76.58013192831041,39.2782599632133],[-76.5801345962147,39.2782548816282],[-76.58013728031723,39.27824980460479],[-76.5801399783055,39.27824473123398],[-76.5801426924921,39.27823966242487],[-76.58014541824114,39.27823459816081],[-76.58014815788127,39.27822953664869],[-76.58015090793026,39.27822447877669],[-76.58015366838806,39.27821942454488],[-76.58015643810647,39.27821437214771],[-76.58015921707475,39.27820932338653],[-76.58016200299103,39.2782042755509],[-76.5801647958446,39.27819923044226],[-76.58016759448192,39.27819418715575],[-76.58017039774928,39.27818914478654],[-76.58017320448778,39.27818410333035],[-76.58017601469746,39.2781790627873],[-76.58017882606028,39.27817402314908],[-76.58018163742275,39.27816898351077],[-76.58018444994373,39.27816394387651],[-76.58018726131073,39.27815890333734],[-76.58019007035942,39.27815386278977],[-76.58019287593618,39.27814882132893],[-76.58019567804101,39.27814377895488],[-76.5801984755203,39.27813873476268],[-76.58020126605615,39.27813368874408],[-76.58020405080755,39.27812864090315],[-76.58020682746182,39.27812359033096],[-76.58020959485476,39.27811853792407],[-76.58021235299707,39.27811348188098],[-76.58021510072439,39.2781084230983],[-76.5802178357242,39.27810336066701],[-76.58022055915538,39.27809829459126],[-76.58022326870017,39.27809322486271],[-76.58022596320481,39.27808815057654],[-76.58022850730671,39.2780830316153],[-76.58023084778483,39.27807785247585],[-76.58023305868937,39.27807263414033],[-76.58023521290096,39.27806739938846],[-76.58023738215194,39.27806216919404],[-76.58023963701564,39.27805696452699],[-76.58024193816237,39.27805177263601],[-76.58024424624655,39.27804658347204],[-76.58024655780717,39.27804139432043],[-76.58024887052107,39.27803620607366],[-76.5802511809221,39.27803101691786],[-76.58025348437968,39.27802582593561],[-76.58025578320652,39.27802063403598],[-76.5802580774079,39.27801544031829],[-76.58026037044998,39.27801024659639],[-76.58026266117916,39.27800505196539],[-76.58026495190796,39.27799985733437],[-76.58026724263115,39.27799466360398],[-76.58026953451827,39.27798946897702],[-76.58027182755865,39.27798427525482],[-76.58027412407021,39.27797908244576],[-76.58027642289403,39.27797389054573],[-76.58027872634797,39.27796869956286],[-76.58028103327304,39.27796350949318],[-76.58028334366934,39.27795832033657],[-76.58028565637784,39.277953132089],[-76.58028797140393,39.2779479438496],[-76.58029028990119,39.27794275652335],[-76.5802926755158,39.27793758655137],[-76.58029503682417,39.27793241108793],[-76.58029708913017,39.27792716065755],[-76.5802988717741,39.27792184621004],[-76.58030068567737,39.27791653727877],[-76.5803025470226,39.27791124112768],[-76.58030440953185,39.27790594407998],[-76.58030627204081,39.27790064703224],[-76.58030813339055,39.27789534998032],[-76.58030999589896,39.27789005293245],[-76.58031185956071,39.27788475678946],[-76.58031372206857,39.27787945974156],[-76.58031558572972,39.2778741635985],[-76.58031744939595,39.27786886655466],[-76.58031931421556,39.27786357041566],[-76.58032117903485,39.27785827427664],[-76.58032304501285,39.27785297814171],[-76.5803249109905,39.27784768200676],[-76.58032677812687,39.27784238587592],[-76.58032864641656,39.27783709064989],[-76.58033051586494,39.27783179542796],[-76.58033238647192,39.27782650021018],[-76.58033425707337,39.27782120589304],[-76.58033612999776,39.27781591068347],[-76.58033773524272,39.27781060821206],[-76.58033774924726,39.27780510549007],[-76.58033795209596,39.27779961425193],[-76.58033772022299,39.2777941412774],[-76.58032671863208,39.2777924877983],[-76.58031978731344,39.27779142715271],[-76.58031285601625,39.27779036290379],[-76.58030592589425,39.2777892959563],[-76.58029899695802,39.2777882245088],[-76.5802920680433,39.27778714945797],[-76.58028514029307,39.27778607351008],[-76.58027821135747,39.27778500206141],[-76.58027128124715,39.27778393331038],[-76.58026435113706,39.27778286455898],[-76.58025742222874,39.27778178860531],[-76.580250498015,39.27778070275964],[-76.58024357740088,39.2777795962088],[-76.58023666626103,39.27777845546233],[-76.5802297586729,39.27777730211744],[-76.58022284870314,39.27777615957285],[-76.58021592807391,39.27777505572261],[-76.58020899086794,39.27777401126323],[-76.58020205007341,39.27777298570666],[-76.58019507107413,39.27777175734102],[-76.5801931699081,39.27777653540856],[-76.58019149377093,39.27778186915144],[-76.58018976668785,39.27778719460531],[-76.58018802919003,39.27779251731965],[-76.5801862916919,39.27779784003398],[-76.58018454840952,39.27780316092605],[-76.58018280049106,39.27780848180151],[-76.58018104447571,39.27781379994569],[-76.58017928035277,39.27781911716011],[-76.58017750899876,39.27782448118841],[-76.58017189513377,39.27782523307802],[-76.58016501712339,39.27782397714791],[-76.58015814384495,39.27782270502055],[-76.5801512693652,39.2778214400946],[-76.58014439488566,39.27782017516824],[-76.58013751925809,39.27781890843587],[-76.58013064477373,39.27781764440944],[-76.58012376795573,39.27781638307661],[-76.58011688993638,39.27781512894514],[-76.58011000954077,39.2778138847132],[-76.5801031244403,39.27781265217401],[-76.5800962369795,39.2778114268321],[-76.58008935066725,39.27781020329539],[-76.58008246321765,39.27780897615117],[-76.58007557927705,39.27780774361448],[-76.5800686953527,39.27780650837516],[-76.58006181143395,39.27780527223467],[-76.5800549275154,39.2778040360938],[-76.58004804359715,39.27780279995252],[-76.58004116084334,39.27780156291421],[-76.58003427693087,39.2778003258714],[-76.58002739417755,39.27779908883229],[-76.58002051026558,39.27779785178868],[-76.5800136275128,39.27779661474874],[-76.58000674359592,39.27779537860507],[-76.57999985849902,39.2777941460598],[-76.57999297457731,39.27779291081602],[-76.57999107552547,39.27779008553217],[-76.57999489155117,39.27778546474291],[-76.57999217522409,39.27778149887064],[-76.57998640026776,39.27777833455075],[-76.579980580984,39.27777521871329],[-76.57997493197324,39.27777192333154],[-76.57996934011395,39.27776856690191],[-76.57996376574592,39.27776519251923],[-76.57995817271808,39.27776183788637],[-76.57995255637849,39.27775850568896],[-76.57994693419671,39.27775518157732],[-76.57994130969224,39.27775185835782],[-76.5799364331574,39.27774807031616],[-76.57993351565557,39.27774304442356],[-76.57993028322693,39.27773816152698],[-76.5799270542809,39.27773327774195],[-76.57992390200697,39.27772836360504],[-76.57992075089778,39.27772344857147],[-76.57991760210689,39.27771853354609],[-76.57991445448071,39.277713617624],[-76.57991130686028,39.27770870080107],[-76.57990816155286,39.27770378488712],[-76.57990501625123,39.27769886807229],[-76.57990187095537,39.27769395035665],[-76.57989872681351,39.27768903354578],[-76.57989558267745,39.27768411583409],[-76.57989243970074,39.27767919812646],[-76.57988929672452,39.27767428041872],[-76.57988615374867,39.27766936271093],[-76.57988301077333,39.27766444500302],[-76.57987986779835,39.277659527295],[-76.57987672482388,39.27765460958691],[-76.57987358069086,39.27764969187459],[-76.57987043771186,39.27764477506709],[-76.57986729242077,39.27763985735044],[-76.57986414828373,39.27763494053857],[-76.57986275419798,39.27763276200637],[-76.57986100182926,39.27763002371833],[-76.57985785536985,39.27762510779875],[-76.57985470775199,39.27762019187492],[-76.57985156013453,39.27761527595102],[-76.5798484101943,39.27761036091948],[-76.57984525909553,39.27760544588369],[-76.57984210683294,39.27760053174441],[-76.57983895340654,39.27759561850165],[-76.57983579882159,39.27759070525464],[-76.57983264307815,39.2775857920034],[-76.57982948617088,39.27758087964862],[-76.57982632926405,39.27757596729382],[-76.5798231711934,39.27757105583549],[-76.5798200119642,39.27756614437293],[-76.57981685157652,39.27756123290613],[-76.57981369118394,39.27755632234001],[-76.57981053079713,39.27755141087304],[-76.57980737040543,39.27754650030669],[-76.57980420885518,39.27754158973612],[-76.57980104730544,39.27753667916546],[-76.57979784396488,39.27753178015514],[-76.57979466032144,39.27752688211597],[-76.57978884798216,39.27752846918702],[-76.57978252636583,39.27753092187235],[-76.57977621623718,39.27753339171296],[-76.57976990841527,39.27753586336302],[-76.57976359828035,39.2775383341037],[-76.57975728815039,39.27754080394325],[-76.57975097917355,39.2775432746874],[-76.57974466903732,39.27754574542705],[-76.57973836121322,39.2775482170754],[-76.57973205337265,39.27755069142563],[-76.57972574783889,39.27755316758535],[-76.57971944344762,39.27755564645104],[-76.57971314250604,39.2775581298326],[-76.57970684500883,39.27756061863076],[-76.5797005498077,39.27756311103983],[-76.57969425575978,39.27756560435345],[-76.5796879605524,39.27756809766262],[-76.5796816642017,39.27757058826501],[-76.57967536440579,39.27757307345019],[-76.57966906001096,39.27757555231318],[-76.57966275102794,39.27757802305257],[-76.57965643744078,39.27758048837052],[-76.5796501227102,39.27758295098176],[-76.57964380913285,39.27758541449757],[-76.5796374978462,39.27758788252505],[-76.57963119115753,39.27759035687399],[-76.57962488675965,39.2775928357346],[-76.57961858235598,39.27759531549565],[-76.57961227681429,39.27759779164922],[-76.5796059689756,39.27760026419115],[-76.57959965883462,39.27760273402224],[-76.57959334869318,39.27760520385294],[-76.57958703970492,39.27760767458824],[-76.57958073185914,39.27761014802958],[-76.57957442746307,39.27761262598673],[-76.57956812765427,39.27761511206685],[-76.57956183359707,39.27761760537334],[-76.57955554066633,39.27762010408816],[-76.57954924889941,39.27762260190596],[-76.57954295598378,39.27762509791786],[-76.57953665732109,39.2776275858019],[-76.57953035292192,39.27763006375667],[-76.57952403934149,39.27763252636529],[-76.5795176316135,39.2776348391095],[-76.57951129971337,39.27763726381966],[-76.57950433761313,39.27763690381072],[-76.57949734080773,39.27763614193596],[-76.57949034879839,39.27763535305498],[-76.57948335798551,39.27763455787253],[-76.57947636835311,39.27763375909085],[-76.57946937872089,39.27763296030873],[-76.57946238790313,39.27763216602578],[-76.57945539709092,39.27763137084168],[-76.57944840743777,39.27763057566126],[-76.57944141662585,39.27762978047634],[-76.5794344258034,39.27762898709248],[-76.57942743379547,39.27762819820777],[-76.57942044059673,39.27762741472299],[-76.5794134473501,39.27762663934447],[-76.57940645174833,39.27762587026245],[-76.57939945496108,39.27762510567963],[-76.57939245815795,39.27762434379861],[-76.57938546134966,39.27762358281792],[-76.57937846571112,39.27762282003946],[-76.57937146892448,39.27762205545497],[-76.57936447211662,39.27762129447304],[-76.57935747530892,39.27762053349066],[-76.57935047850671,39.27761977160716],[-76.57934348289028,39.27761900522368],[-76.57933648847036,39.27761823253866],[-76.5793294964539,39.27761744544961],[-76.57932251399215,39.27761661065385],[-76.57931553035564,39.27761577855573],[-76.57930854073234,39.27761497886329],[-76.57930154875389,39.27761418546736],[-76.57929455675423,39.27761339567401],[-76.57928756474945,39.27761260678097],[-76.5792805739197,39.2776118151894],[-76.5792735842865,39.27761101729639],[-76.57926659586579,39.27761021039966],[-76.57926056979841,39.27761109318164],[-76.57925670047098,39.27761570564959],[-76.57925252971675,39.2776201386862],[-76.57924789419069,39.27762262170332],[-76.57924141014044,39.27762021415114],[-76.57923496104029,39.27761797156376],[-76.57922851779402,39.27761571908858],[-76.5792237470766,39.27761852409425],[-76.5792191779274,39.27762271249598],[-76.57921471499967,39.27762696883538],[-76.57921030749235,39.27763126050299],[-76.5792059092239,39.27763555760814],[-76.5792015028691,39.27763985018033],[-76.57919709767269,39.27764414275645],[-76.5791926924704,39.27764843623321],[-76.57918828842655,39.27765272971393],[-76.57918388784827,39.27765702500844],[-76.57917949073027,39.27766132301742],[-76.57917509823146,39.27766562374513],[-76.57917071034659,39.27766992809225],[-76.57916632823982,39.27767423516221],[-76.57916195074692,39.27767854585159],[-76.5791575790322,39.27768285926375],[-76.57915321309027,39.27768717629952],[-76.57914838522055,39.27768711035971],[-76.57914286568892,39.27768368208842],[-76.57913739277737,39.27768020984644],[-76.57913191986636,39.2776767376042],[-76.57912643647201,39.27767327433173],[-76.57912092859073,39.27766983619276],[-76.57911538807252,39.27766642946326],[-76.57910984289238,39.27766302722068],[-76.57910432685736,39.27765959625776],[-76.57909883064245,39.27765614554876],[-76.57909334025487,39.27765268945588],[-76.57908785685352,39.27764922798308],[-76.57908237812586,39.27764576022149],[-76.57907690406127,39.27764228797245],[-76.57907143697761,39.2776388112444],[-76.5790659734033,39.27763532912405],[-76.57906051565101,39.2776318425205],[-76.57905506256175,39.27762835142957],[-76.57904961064261,39.27762485854105],[-76.57904416105262,39.27762136385905],[-76.5790387126221,39.27761786918101],[-76.57903326303853,39.27761437359779],[-76.5790278134448,39.27761087981582],[-76.57902236036408,39.27760738782258],[-76.57901691193574,39.27760389314346],[-76.57901146584719,39.27760039486945],[-76.57900602092343,39.27759689569857],[-76.57900057600021,39.27759339652744],[-76.57899512990791,39.27758989915343],[-76.57898967916431,39.27758640446472],[-76.57898422491239,39.27758291516777],[-76.57897876367528,39.27757943125014],[-76.57897329427801,39.27757595540989],[-76.57896781555093,39.27757248944435],[-76.57896232167799,39.2775690369357],[-76.57895681498239,39.27756559699155],[-76.5789513001266,39.27756216512475],[-76.57894577944461,39.27755873864145],[-76.57894025643456,39.27755531395098],[-76.5789347345893,39.27755188836372],[-76.57892921857673,39.27754845649173],[-76.57892371187901,39.27754501744674],[-76.57891821801032,39.27754156493604],[-76.5789127334725,39.27753810255007],[-76.57890725242811,39.27753463747409],[-76.57890176905029,39.27753117509178],[-76.57889627518378,39.27752772258003],[-76.57889058396637,39.27752432520789],[-76.57889092862187,39.27752054052859],[-76.57889532112353,39.27751624071205],[-76.57889971478896,39.27751193999882],[-76.57890410729495,39.27750763928121],[-76.57890849980039,39.27750333856343],[-76.57891289230525,39.27749903784554],[-76.57891728480963,39.2774947371274],[-76.57892167731349,39.27749043640917],[-76.57892606866318,39.27748613478582],[-76.57893046116595,39.2774818340672],[-76.57893485366816,39.2774775333484],[-76.57893924501626,39.27747323172455],[-76.57894363751745,39.27746893100547],[-76.57894802886446,39.27746462938126],[-76.57895242020567,39.27746032865765],[-76.57895681271056,39.27745602703727],[-76.57896120405069,39.27745172631334],[-76.57896559539557,39.27744742468848],[-76.57896998673995,39.27744312306345],[-76.57897437807848,39.27743882233896],[-76.57897877058069,39.27743452071774],[-76.57898316192352,39.27743021909218],[-76.57898755326575,39.27742591746647],[-76.57899194460211,39.27742161674136],[-76.57899633594333,39.27741731511529],[-76.57900072728395,39.27741301348908],[-76.57900511862407,39.27740871186268],[-76.57900950995834,39.27740441113686],[-76.57901390129739,39.27740010951012],[-76.5790182926359,39.27739580788325],[-76.57902268513284,39.27739150626034],[-76.57902707646493,39.27738720553381],[-76.5790314678019,39.27738290390639],[-76.57903585913292,39.27737860317956],[-76.57904025046876,39.27737430155184],[-76.57904464296304,39.27736999992808],[-76.57904903429248,39.27736569920071],[-76.5790534267857,39.2773613975766],[-76.57905781811408,39.27735709684892],[-76.57906221060088,39.27735279612524],[-76.57906660193353,39.27734849449645],[-76.57907099441928,39.27734419377242],[-76.57907538690449,39.27733989304823],[-76.57907977707663,39.2773355914148],[-76.57908416725357,39.27733128888042],[-76.57908855858355,39.27732698725085],[-76.57909295106663,39.27732268652594],[-76.57909734816884,39.27731838851972],[-76.57910174989033,39.27731409323219],[-76.57910615737917,39.277309802469],[-76.57911057180509,39.2773055144328],[-76.57911498968598,39.27730123001181],[-76.57911940987876,39.27729694649976],[-76.57912383237827,39.27729266479731],[-76.57912825603619,39.27728838309888],[-76.57913267853992,39.27728410049532],[-76.57913709873064,39.27727981698256],[-76.5791415166136,39.27727553165987],[-76.57914592871741,39.27727124361393],[-76.57915033735989,39.27726695285318],[-76.57915474138208,39.27726265937341],[-76.57915914309659,39.27725836408366],[-76.57916354134443,39.27725406697976],[-76.57916793728458,39.27724976806594],[-76.57917232975808,39.27724546733801],[-76.57917671876486,39.27724116479592],[-76.57918110546933,39.27723685954313],[-76.57918548292844,39.27723254975327],[-76.57918984422072,39.27722822999685],[-76.57919419742659,39.27722390570747],[-76.57919855410344,39.27721958233114],[-76.57920292347458,39.27721526800778],[-76.57920731479024,39.27721096637358],[-76.57921174536487,39.27720668920051],[-76.57921620826635,39.27720243286069],[-76.5792206838728,39.27719818377232],[-76.57922515370545,39.27719393106003],[-76.57923835012723,39.27718094786832],[-76.57924710734363,39.27717232919299],[-76.57925587148482,39.27716371504566],[-76.57925609822111,39.27715577291203],[-76.57924515013498,39.27714883113122],[-76.57923414843559,39.2771419405009],[-76.5792231444151,39.27713505076196],[-76.57921214039139,39.27712816192273],[-76.57920113521087,39.27712127307827],[-76.57919013002183,39.27711438603429],[-76.57917912367596,39.27710749898512],[-76.5791681184912,39.27710061193904],[-76.57915711214962,39.27709372488778],[-76.57914610581555,39.27708683693473],[-76.5791351006425,39.27707994898475],[-76.57912409547163,39.27707306103376],[-76.57911309262607,39.27706617218927],[-76.57910208863443,39.2770592815381],[-76.5790910869628,39.2770523908942],[-76.57908008879144,39.2770454966587],[-76.57906909296149,39.27703859882753],[-76.57905810062115,39.27703169920626],[-76.57904710828831,39.27702479868317],[-76.57903611595759,39.27701789815906],[-76.57902512362368,39.27701099853466],[-76.57901412780441,39.27700410069823],[-76.57900312731415,39.27699720914938],[-76.57899208953708,39.27699035169491],[-76.57898091973316,39.2769826974898],[-76.57897145238242,39.27698677104203],[-76.57896271233238,39.27699620585196],[-76.57895398859458,39.27700484444343],[-76.57894529256751,39.2770135002481],[-76.5789366069313,39.27702216239472],[-76.57892791436069,39.27703082091278],[-76.57891919869489,39.27703946493511],[-76.57891047494118,39.27704810442399],[-76.57890174772984,39.27705674029671],[-76.57889301589144,39.27706537435066],[-76.57888428057943,39.27707400749075],[-76.57887554527593,39.27708263882865],[-76.57886680419173,39.27709126744292],[-76.57885804347302,39.27709988427613],[-76.57884928853085,39.27710850383168],[-76.5788405878639,39.27711715600874],[-76.57883197148162,39.2771258616325],[-76.57882323270466,39.27713449025167],[-76.57881445696265,39.27714309802008],[-76.57880568122384,39.27715170488703],[-76.57879690548292,39.27716031175329],[-76.57878812858094,39.27716891861473],[-76.57877935168219,39.27717752457472],[-76.57877057362232,39.27718613052992],[-76.57876179440674,39.27719473557953],[-76.57875301518911,39.27720334062845],[-76.57874423481037,39.27721194567255],[-76.5787354544348,39.27722054981522],[-76.57872667290357,39.27722915305231],[-76.57871789021124,39.27723775628453],[-76.57870910636322,39.2772463586112],[-76.57870032251842,39.27725496003644],[-76.57869153635362,39.27726356145273],[-76.578682750192,39.27727216196757],[-76.57867396287469,39.27728076157678],[-76.5786651732374,39.27728936117704],[-76.57865638360333,39.27729795987585],[-76.57864759281351,39.27730655766911],[-76.578638799709,39.27731515455261],[-76.57863000660777,39.27732375053465],[-76.57862121119186,39.27733234560703],[-76.57861241577916,39.27734093977789],[-76.57860361458037,39.27734953212587],[-76.57859475565185,39.27735808733466],[-76.5785858424491,39.27736660901974],[-76.57857690615101,39.27737511620902],[-76.57856796870254,39.27738362159192],[-76.57855901854109,39.2773921206232],[-76.57855005684159,39.2774006106047],[-76.57854108012725,39.27740909152399],[-76.57853208839806,39.27741756338107],[-76.57852308743269,39.27742602889892],[-76.57851408184543,39.27743449169718],[-76.57850507279528,39.27744295178006],[-76.57849606027682,39.27745141004824],[-76.5784870442955,39.27745986560099],[-76.57847802599949,39.27746832024393],[-76.57846900654773,39.27747677398128],[-76.57845998478665,39.27748522590814],[-76.57845096186983,39.2774936769293],[-76.57844194547103,39.2775022009352],[-76.57843293545639,39.27751082044431],[-76.57842392304674,39.27751945255488],[-76.5784148994469,39.27752801706718],[-76.57840585470812,39.27753643287669],[-76.57839678119959,39.2775446188872],[-76.57838681420334,39.27754635581585],[-76.5783758218614,39.27753945433025],[-76.57836360105264,39.27753391219182],[-76.57835120878948,39.27752855319266],[-76.57833901477399,39.27752298862873],[-76.57832737007972,39.27751684414142],[-76.57832482208914,39.27751518749484],[-76.57831656506025,39.27750982171944],[-76.57830631748017,39.27750221850287],[-76.57829613876166,39.27749453446371],[-76.57828554262304,39.27748727318527],[-76.57827422704646,39.27748074524765],[-76.57826251268378,39.27747462482434],[-76.57825057679665,39.27746872699413],[-76.57823857914505,39.27746288658982],[-76.57822667948884,39.2774569384444],[-76.57821503177205,39.27745072097296],[-76.5782035648656,39.27744430688217],[-76.57819217846887,39.27743780210207],[-76.57818084807283,39.2774312353692],[-76.5781695491791,39.2774246336185],[-76.57815825611968,39.27741802558231],[-76.57814694439615,39.27741143819556],[-76.57813559065836,39.27740490019889],[-76.57812416924894,39.27739843852305],[-76.57811265681775,39.27739208190864],[-76.57810096586059,39.27738592822472],[-76.57808903453042,39.27738004840948],[-76.57807696083155,39.27737433292157],[-76.57806484511828,39.27736866682359],[-76.5780527877502,39.27736293427729],[-76.57804083549739,39.27735706609192],[-76.5780289253326,39.27735113680445],[-76.5780169824517,39.27734525243643],[-76.57800493436831,39.27733951901781],[-76.5779927051193,39.27733404256574],[-76.57798025158816,39.27732886255902],[-76.57796760301605,39.27732393406436],[-76.57795479183712,39.27731925990057],[-76.57794185164967,39.27731484198977],[-76.57792875640507,39.27731077301716],[-76.57791530237438,39.27730740084669],[-76.57790167334836,39.27730441717626],[-76.57788804735016,39.27730150917939],[-76.57787438476683,39.27729871184354],[-76.57786069272885,39.27729599546908],[-76.5778469865596,39.27729331687438],[-76.57783328390568,39.27729063198533],[-76.57781959183868,39.27728792101057],[-76.57780589979951,39.27728520553047],[-76.57779220657032,39.27728249544906],[-76.57777850862597,39.2772797988606],[-76.577764804754,39.27727712476832],[-76.57775109027035,39.27727448126235],[-76.57773736279822,39.27727187824247],[-76.57772361052302,39.27726935349839],[-76.57770983698585,39.27726689623363],[-76.57769605166729,39.27726447135237],[-76.5776822686836,39.27726204377565],[-76.57766849867434,39.27725957841183],[-76.57765475227906,39.27725704016927],[-76.5776410436142,39.27725439396903],[-76.5776273892641,39.27725157951942],[-76.5776138092151,39.27724854915178],[-76.57760027283612,39.27724538652718],[-76.57758675061235,39.27724218251673],[-76.5775732118536,39.27723903068961],[-76.57755962356264,39.27723602280516],[-76.57754595977623,39.27723323713657],[-76.57753225822918,39.27723056482698],[-76.57751853663794,39.27722795009269],[-76.57750479853303,39.27722538393864],[-76.57749104628043,39.27722285826653],[-76.57747728456967,39.27722036408555],[-76.57746351461317,39.27721789239244],[-76.5774497399307,39.2772154359937],[-76.57743596405807,39.27721298499367],[-76.57742218935604,39.27721053219467],[-76.57740841936044,39.27720806770102],[-76.57739463754038,39.27720564279689],[-76.5773808333098,39.27720328356638],[-76.57736701842441,39.27720096212802],[-76.5773532000041,39.27719865058372],[-76.5773393874867,39.27719632104372],[-76.57732559146889,39.27719394562246],[-76.57731182022974,39.27719149642599],[-76.57729808204809,39.27718894556047],[-76.57728438870659,39.27718626064069],[-76.57727075793282,39.27718338408152],[-76.57725718263902,39.27718033837659],[-76.57724364981412,39.27717716761661],[-76.57723014528791,39.27717391588808],[-76.57721665603302,39.27717062998386],[-76.57720317257406,39.27716734409897],[-76.57718979520793,39.27716375863965],[-76.57717648377415,39.27716000046927],[-76.57716310376011,39.27715647084477],[-76.57714952062597,39.27715357552692],[-76.57713566457711,39.27715155206631],[-76.57712164548762,39.27715004956004],[-76.57710760407299,39.27714859831531],[-76.5770936186122,39.27714650952871],[-76.57707959513608,39.27714360451036],[-76.57706593368961,39.2771429599128],[-76.57705296092932,39.27714713148234],[-76.57704024479578,39.2771525803587],[-76.5770270679206,39.27715113672144],[-76.57701386168257,39.27714723118591],[-76.57700066835001,39.27714329957316],[-76.57698744802511,39.27713942460991],[-76.57697417726594,39.27713565034924],[-76.5769608830503,39.27713192284232],[-76.57694760288825,39.2771281710639],[-76.57693432665552,39.27712434363382],[-76.57692514059838,39.27711698282145],[-76.57691457231262,39.27711013677084],[-76.57690247111307,39.27710419767244],[-76.5768897473467,39.27709926518703],[-76.57687564304763,39.2770963121125],[-76.5768594441237,39.27709536740258],[-76.57684446184703,39.27709407757682],[-76.5768341899917,39.27708999793584],[-76.5768307861871,39.2770816328774],[-76.57683219987604,39.27707040272716],[-76.57683578829429,39.27705811300527],[-76.57683892268317,39.27704655306879],[-76.57684150773653,39.27703576851341],[-76.57684451552014,39.27702503232067],[-76.57684784289948,39.27701434231751],[-76.57685138672417,39.27700369903299],[-76.57685507283324,39.27699310039851],[-76.57685894992315,39.27698254298627],[-76.57686296938864,39.27697201491128],[-76.57686707335282,39.27696150425511],[-76.57687120278544,39.27695099819435],[-76.57687529865616,39.27694048390558],[-76.57687930075973,39.27692995126358],[-76.57688319175519,39.27691939299969],[-76.57688703646204,39.27690882285901],[-76.57689091124624,39.27689826183413],[-76.57689489133615,39.27688772731064],[-76.57689979173225,39.27687737085061],[-76.57689869090626,39.2768682061032],[-76.57688509849007,39.2768639631761],[-76.57687164184608,39.27686066293695],[-76.57685795330575,39.27685796357193],[-76.57684424592811,39.2768553136796],[-76.57683052440798,39.2768527033683],[-76.57681678996332,39.27685012273412],[-76.57680304844787,39.27684756188967],[-76.57678930107431,39.27684501183169],[-76.57677555369638,39.27684246267285],[-76.57676180869642,39.27683990361253],[-76.57674806959952,39.27683732655655],[-76.57673434111133,39.27683471981196],[-76.57672062444446,39.27683207437546],[-76.5767069254474,39.27682938126047],[-76.57669324650253,39.27682662966642],[-76.57667958407389,39.27682382948893],[-76.5766659228375,39.27682102390961],[-76.5766522639308,39.27681821653553],[-76.57663860504671,39.2768154055569],[-76.5766249473387,39.2768125918786],[-76.57661128964796,39.27680977549648],[-76.5765976331387,39.27680695551396],[-76.57658397895916,39.2768041337367],[-76.57657032364325,39.2768013083507],[-76.57655667065706,39.27679848116995],[-76.57654301769345,39.27679565038463],[-76.5765293659006,39.27679281780045],[-76.57651571528389,39.27678998251661],[-76.57650206584334,39.27678714453314],[-76.57648841642003,39.27678430384581],[-76.57647476817286,39.27678146045885],[-76.57646111994292,39.27677861436804],[-76.5764474740427,39.2767757664825],[-76.5764338281597,39.27677291589317],[-76.57642018229386,39.27677006260002],[-76.57640653875784,39.27676720751212],[-76.57639289524437,39.27676434881966],[-76.57637925289627,39.27676148922903],[-76.57636561056546,39.2767586269346],[-76.57635196941081,39.27675576194053],[-76.57633832942692,39.27675289514755],[-76.57632469061924,39.27675002565491],[-76.57631105182337,39.27674715435923],[-76.57629741420371,39.27674428036388],[-76.5762837765959,39.27674140456546],[-76.57627014015887,39.27673852696816],[-76.57625650489261,39.27673564757193],[-76.57624286964366,39.2767327654719],[-76.57622923556544,39.27672988157296],[-76.57621560266342,39.27672699497437],[-76.57620196976791,39.2767241074735],[-76.5761883380486,39.27672121727294],[-76.57617470749463,39.27671832617423],[-76.57616107695799,39.27671543237172],[-76.57614744643315,39.27671253676615],[-76.57613381823808,39.27670963936584],[-76.57612019005492,39.27670674016248],[-76.57610656187822,39.27670384005677],[-76.5760929360474,39.27670093545408],[-76.5760793267279,39.2766979831689],[-76.57606573978971,39.27669497061163],[-76.57605217052725,39.27669190947522],[-76.57603861424562,39.27668880965123],[-76.57602506854619,39.27668568464241],[-76.57601152758592,39.27668254253462],[-76.57599798897165,39.27667939592988],[-76.57598444800307,39.27667625562043],[-76.57597090113875,39.27667313240264],[-76.5759573448319,39.27667003797372],[-76.57594377205365,39.27666698491894],[-76.57593009080335,39.2766642413342],[-76.57591946773631,39.27666174028656],[-76.57591624806611,39.27666098192707],[-76.57590882145126,39.27666952229058],[-76.57590449852943,39.27667999789497],[-76.57590078677138,39.27669060091235],[-76.57589718965441,39.27670121965647],[-76.5758936504074,39.27671185122018],[-76.57589014819656,39.27672249102432],[-76.57588665755236,39.27673313447321],[-76.57588315764649,39.27674377608697],[-76.57587962533806,39.27675440947668],[-76.57587603746458,39.27676503185646],[-76.5758723639425,39.27677563501074],[-76.57586848322948,39.27678619417996],[-76.57586444278779,39.27679671854316],[-76.57586035257557,39.2768072319173],[-76.57585629477448,39.27681775171363],[-76.57585221266696,39.27682826601743],[-76.57584810624765,39.27683877572947],[-76.57584398247012,39.27684928087483],[-76.57583985058422,39.27685978508995],[-76.57583571869714,39.2768702893049],[-76.5758315983873,39.27688079536298],[-76.57582749659761,39.27689130509086],[-76.57582342258337,39.27690182122423],[-76.5758193856106,39.27691234469732],[-76.57581539377566,39.27692287824171],[-76.5758114575036,39.27693342279575],[-76.57580758489085,39.27694398109103],[-76.57580393220455,39.27695458521872],[-76.57580059319989,39.27696525533423],[-76.57579744749883,39.27697596578142],[-76.57579437472874,39.27698669000339],[-76.5757912556597,39.27699740414962],[-76.57578836693709,39.27700816596748],[-76.5757853798983,39.27701889500261],[-76.57577936626926,39.27702409501864],[-76.5757781512016,39.27702514452533],[-76.57576471668735,39.27702027870942],[-76.57575113889688,39.27701727875997],[-76.5757374976796,39.27701441999995],[-76.57572381535675,39.27701165206715],[-76.57571011773729,39.27700892281039],[-76.57569643061386,39.2770061827808],[-76.57568265581281,39.27700376310522],[-76.57567909909683,39.27701440090394],[-76.57567521601878,39.27702496095839],[-76.57567130516291,39.27703551460701],[-76.5756673769434,39.27704606458965],[-76.57566344524592,39.27705661455959],[-76.5756595204955,39.27706716545525],[-76.5756556154189,39.27707772092564],[-76.57565174391239,39.2770882828225],[-76.57564791639041,39.27709885388574],[-76.5756441467493,39.27710943596716],[-76.57564044539797,39.27712003270739],[-76.57563690494344,39.27713066245636],[-76.57563355432136,39.27714133162395],[-76.57563034144451,39.27715202921286],[-76.57562721192916,39.27716274061425],[-76.57562411020574,39.27717345571904],[-76.57562161736463,39.27718429282546],[-76.57561843443972,39.27719540757637],[-76.5756087901652,39.27719957119616],[-76.57559490599175,39.27719547389066],[-76.575581184105,39.27719214642337],[-76.57556753944881,39.27718927682225],[-76.575553894756,39.2771864135248],[-76.57554031591306,39.277183391929],[-76.57552663650763,39.27718013216625],[-76.57551550092299,39.27717378926851],[-76.57550597049472,39.27716570378572],[-76.57549302624075,39.27716180172803],[-76.57547944342151,39.27715867111824],[-76.57546556956032,39.27715595200532],[-76.57545174756115,39.27715328171957],[-76.5754380721009,39.27715052638921],[-76.575424382508,39.27714780883825],[-76.57541067995231,39.27714512726946],[-76.5753969655981,39.27714248078623],[-76.57538324063118,39.27713986488906],[-76.57536950621598,39.27713727868139],[-76.57535576468636,39.27713471946932],[-76.57534201489426,39.27713218544719],[-76.57532826033803,39.2771296730246],[-76.57531449752464,39.2771271848912],[-76.57530072876662,39.27712472195611],[-76.57528695176217,39.2771222815087],[-76.57527316884003,39.27711986175586],[-76.5752593800109,39.27711746089614],[-76.57524558643912,39.27711507803291],[-76.57523178814625,39.27711270956325],[-76.575217986302,39.27711035368983],[-76.57520418207072,39.27710800951611],[-76.57519037547387,39.27710567343907],[-76.5751765582157,39.27710337605474],[-76.57516271016269,39.27710118935153],[-76.5751488455349,39.27709906113647],[-76.57513498090799,39.27709693291973],[-76.57512113402183,39.2770947453151],[-76.57510732261662,39.27709243893612],[-76.57509355856759,39.27708996608526],[-76.57507983590753,39.27708735556546],[-76.5750661392899,39.27708465416097],[-76.57505245685562,39.2770819068672],[-76.57503877442778,39.27707915867104],[-76.5750250778241,39.27707645546028],[-76.57501135757339,39.27707383052893],[-76.57499762905469,39.27707123168825],[-76.57498389698465,39.27706864544378],[-76.57497016139018,39.2770660672919],[-76.57495642343038,39.27706349723668],[-76.57494268428023,39.27706093258015],[-76.57492894511488,39.27705837062426],[-76.57491520362184,39.27705581045981],[-76.57490146445846,39.27705324850071],[-76.57488772415337,39.27705068383354],[-76.57487398735846,39.27704811377288],[-76.57486946740794,39.27704734257156],[-76.57486601724274,39.27704675359375],[-76.57486256591321,39.27704616551242],[-76.57485911574271,39.27704557743513],[-76.57485566557223,39.27704498935779],[-76.57485221540186,39.2770444012803],[-76.57484876407257,39.2770438131985],[-76.57484531390232,39.27704322512086],[-76.57484186372665,39.27704263794384],[-76.57483841239758,39.27704204986176],[-76.57483496222746,39.27704146178377],[-76.57483151205201,39.27704087460643],[-76.57482806072306,39.2770402865241],[-76.57482461054775,39.27703969934651],[-76.57482115921353,39.27703911216469],[-76.57481770904371,39.27703852408621],[-76.57481425886853,39.27703793690837],[-76.57481080753452,39.27703734972624],[-76.57480735736483,39.27703676164744],[-76.5748039060309,39.27703617446511],[-76.57480045585598,39.27703558728687],[-76.57479700452754,39.27703499920355],[-76.57479355435274,39.27703441202512],[-76.57479010418339,39.2770338239458],[-76.57478665284974,39.27703323676298],[-76.57478320268049,39.2770326486835],[-76.57477975250588,39.27703206150461],[-76.57477630117778,39.27703147342073],[-76.57477285100873,39.27703088534093],[-76.57476940083973,39.27703029726103],[-76.5747659495118,39.27702970917681],[-76.57476249934291,39.27702912109669],[-76.57475904917403,39.27702853301649],[-76.57475559901066,39.27702794403544],[-76.57475214884188,39.27702735595502],[-76.57474869751971,39.27702676696959],[-76.57474524735646,39.2770261779882],[-76.57474179718791,39.27702558990748],[-76.57473834703016,39.27702500002519],[-76.57473489686713,39.27702441104351],[-76.57473144670415,39.27702382206173],[-76.57472799654659,39.27702323217912],[-76.57472454754804,39.27702264230062],[-76.57472109739062,39.27702205241781],[-76.57471764723863,39.27702146163411],[-76.57471419708135,39.27702087175111],[-76.57471074808842,39.27702028097146],[-76.57470729793658,39.27701969018746],[-76.57470384778487,39.27701909940341],[-76.57470039879753,39.27701850772267],[-76.57469694865134,39.27701791603765],[-76.5746934996641,39.27701732435673],[-76.57469005067686,39.27701673267573],[-76.57468660053624,39.27701614008962],[-76.57468315155458,39.27701554750765],[-76.5746797025676,39.27701495582635],[-76.57467625358603,39.27701436324418],[-76.57467280344558,39.27701377065767],[-76.57466935445876,39.27701317897608],[-76.57466590547739,39.27701258639358],[-76.57466245533176,39.27701199470754],[-76.5746590063505,39.27701140212486],[-76.57465555736391,39.27701081044282],[-76.57465210838272,39.27701021785993],[-76.57464865824811,39.27700962437203],[-76.5746452092671,39.27700903178893],[-76.57464176028613,39.27700843920572],[-76.57463831131061,39.27700784572167],[-76.57463486233517,39.27700725223757],[-76.57463141336517,39.27700665785255],[-76.57462796439519,39.27700606346747],[-76.57462451658428,39.2770054690865],[-76.57462106761986,39.27700487380047],[-76.5746176198144,39.27700427851853],[-76.57461417085551,39.27700368233155],[-76.57461072306097,39.27700308524791],[-76.57460727526652,39.27700248816414],[-76.5746038274721,39.27700189108032],[-76.5746003796886,39.2770012921949],[-76.57459693190509,39.27700069330936],[-76.57459348528059,39.27700009442792],[-76.57459003866697,39.27699949374492],[-76.57458659089446,39.27699889305759],[-76.57458314429171,39.27699829057285],[-76.574579698848,39.27699768809224],[-76.57457625224542,39.27699708560731],[-76.57457280681263,39.276996481325],[-76.57456936138523,39.2769958761418],[-76.57456591596336,39.27699527005782],[-76.57456247054695,39.27699466307295],[-76.57455902629489,39.27699405519145],[-76.57455558088941,39.27699344640488],[-76.57455213664828,39.27699283672172],[-76.57454869358233,39.27699222434037],[-76.57454525170783,39.27699160655862],[-76.5745418110247,39.27699098337654],[-76.57453837269195,39.27699035479824],[-76.5745349343808,39.27698972261691],[-76.57453149725026,39.27698908683664],[-76.57452806130034,39.27698844745755],[-76.57452462652563,39.27698780538027],[-76.57452119176715,39.27698716060068],[-76.5745177581785,39.27698651402367],[-76.57451432459531,39.27698586654579],[-76.574510891023,39.27698521726636],[-76.57450745860965,39.27698456799101],[-76.57450402503746,39.27698391871138],[-76.57450059262423,39.27698326943587],[-76.57449715904676,39.27698262105677],[-76.5744937254585,39.27698197447906],[-76.57449029185955,39.27698132970273],[-76.57448685592657,39.27698068762017],[-76.5744834211418,39.27698004734322],[-76.57447998401223,39.27697941156141],[-76.57447654686109,39.27697877938257],[-76.57447310852943,39.27697815080236],[-76.5744696678476,39.27697752761818],[-76.5744662271388,39.27697690893758],[-76.57446278407444,39.2769762965537],[-76.57445933981874,39.27697568957001],[-76.574455893202,39.2769750897838],[-76.57445244422426,39.27697449719506],[-76.57444899403905,39.27697391270872],[-76.57444554149278,39.27697333541985],[-76.57444208657465,39.27697276712993],[-76.57443862928474,39.27697220783895],[-76.57443516844785,39.27697166024501],[-76.57443170523909,39.27697112164995],[-76.57442823848879,39.2769705938512],[-76.57442477053097,39.27697007415485],[-76.57442129904776,39.27696956255249],[-76.57441782636246,39.2769690581518],[-76.57441435131612,39.27696856094862],[-76.57441087507308,39.27696807004632],[-76.57440739647984,39.27696758454002],[-76.57440391785958,39.27696710353731],[-76.57440043689994,39.27696662612907],[-76.57439695591331,39.27696615322451],[-76.57439347375694,39.27696568211707],[-76.57438999158448,39.27696521371179],[-76.5743865082477,39.27696474620299],[-76.57438302490556,39.27696427959479],[-76.57437954156345,39.27696381298652],[-76.57437605938577,39.2769633454816],[-76.57437257721888,39.27696287617505],[-76.57436909505749,39.27696240596765],[-76.57436561407668,39.27696193216141],[-76.57436213427106,39.27696145565696],[-76.57435865449249,39.27696097464873],[-76.57435517705886,39.27696048914508],[-76.57435170198096,39.2769599973445],[-76.57434822693553,39.27695950013928],[-76.57434475540474,39.27695899664141],[-76.57434128508163,39.27695848504091],[-76.57433781712503,39.27695796534198],[-76.57433435269932,39.27695743664808],[-76.57433088948662,39.27695689895084],[-76.57432742981021,39.27695635135789],[-76.57432397368096,39.27695579206775],[-76.57432052109336,39.27695522198119],[-76.57431707089931,39.27695463929245],[-76.57431362541674,39.27695404400996],[-76.574310181158,39.27695343792264],[-76.57430673925502,39.27695282553842],[-76.57430329854886,39.27695220685304],[-76.57429986020922,39.27695158006929],[-76.57429642190212,39.27695094788091],[-76.57429298595615,39.27695030849493],[-76.57428955120703,39.27694966280778],[-76.57428611764934,39.27694901172026],[-76.57428268645276,39.27694835343509],[-76.57427925644765,39.27694768974957],[-76.57427582763935,39.2769470197629],[-76.57427240118137,39.27694634438005],[-76.57426897591486,39.27694566359686],[-76.57426555183976,39.27694497741323],[-76.57426213011503,39.27694428583348],[-76.57425870958171,39.27694358885338],[-76.57425529139338,39.27694288737781],[-76.57425187439645,39.27694218050188],[-76.5742484597391,39.27694147003128],[-76.57424504627852,39.27694075325952],[-76.57424163399862,39.27694003288895],[-76.57423822406362,39.27693930802287],[-76.57423481646825,39.27693857956216],[-76.57423141005883,39.2769378466018],[-76.57422800599443,39.27693710914606],[-76.5742246031052,39.27693636899217],[-76.57422120256099,39.27693562434283],[-76.57421780435625,39.27693487609884],[-76.57421440733218,39.27693412425595],[-76.57421101264228,39.27693336971914],[-76.57420761912758,39.27693261248417],[-76.57420422911137,39.27693185165874],[-76.57420083911146,39.27693108813099],[-76.57419745261004,39.27693032101275],[-76.57419406727843,39.2769295520971],[-76.57419070306707,39.27692874002122],[-76.57418744453811,39.27692769863322],[-76.57418426586527,39.27692648278616],[-76.57418112595074,39.27692518150683],[-76.57417798485045,39.27692388472693],[-76.57417480030757,39.27692268146903],[-76.57417153237792,39.27692166166488],[-76.57416817403757,39.2769208369989],[-76.57416480161717,39.27692004110629],[-76.57416141981726,39.27691926319487],[-76.57415802981299,39.27691850056659],[-76.5741546327579,39.27691775412647],[-76.5741512298217,39.27691702207714],[-76.57414781868661,39.27691630441021],[-76.57414440284555,39.27691559843613],[-76.57414098229854,39.27691490415481],[-76.57413755705103,39.27691422066549],[-76.5741341271084,39.27691354706749],[-76.57413069478848,39.27691288336919],[-76.57412725894856,39.27691222686417],[-76.57412382191197,39.27691157666006],[-76.57412038367326,39.27691093365761],[-76.5741169442486,39.27691029515458],[-76.57411350363266,39.27690966205171],[-76.57411006416488,39.27690903075444],[-76.5741066258345,39.27690840306425],[-76.57410318749872,39.27690777627473],[-76.57409974799874,39.27690715038164],[-76.57409630848794,39.27690652628992],[-76.5740928678129,39.27690590309466],[-76.57408942712708,39.27690528170077],[-76.57408598643595,39.27690466120757],[-76.57408254573943,39.27690404161499],[-76.57407910387867,39.27690342291883],[-76.57407566200709,39.2769028060241],[-76.57407222013565,39.27690218912925],[-76.57406877825343,39.27690157403577],[-76.57406533520691,39.27690095983878],[-76.57406189216049,39.27690034564164],[-76.57405844910326,39.27689973324591],[-76.57405500488179,39.27689912174664],[-76.57405156181927,39.27689851025143],[-76.57404811758714,39.27689790055343],[-76.57404467335503,39.27689729085535],[-76.57404122911755,39.27689668205788],[-76.57403778372122,39.27689607325612],[-76.57403433947307,39.27689546625996],[-76.57403089406604,39.27689485925949],[-76.57402744865902,39.2768942522589],[-76.5740240032413,39.27689364705976],[-76.57402055782904,39.2768930409597],[-76.57401711240604,39.27689243666106],[-76.57401366698849,39.2768918314616],[-76.57401022040663,39.27689122715853],[-76.57400677497839,39.27689062376034],[-76.57400332839123,39.27689002035785],[-76.5739998818042,39.27688941695524],[-76.57399643521715,39.27688881355254],[-76.57399298978375,39.27688821105468],[-76.57398954319147,39.27688760855256],[-76.57398609659921,39.27688700605026],[-76.57398265000704,39.27688640354791],[-76.5739792034149,39.27688580104548],[-76.57397575682285,39.27688519854289],[-76.57397231023083,39.27688459604023],[-76.57396886363891,39.27688399353747],[-76.57396541704698,39.27688339103459],[-76.57396197045519,39.27688278853163],[-76.5739585250277,39.276882185132],[-76.57395507843601,39.27688158262885],[-76.57395163184974,39.27688097922481],[-76.57394818526359,39.27688037582067],[-76.57394473983639,39.27687977242068],[-76.5739412932557,39.27687916811562],[-76.57393784783405,39.27687856381466],[-76.57393440125894,39.27687795860866],[-76.57393095584274,39.27687735340672],[-76.57392751043207,39.27687674730399],[-76.57392406502147,39.27687614120109],[-76.57392061961633,39.27687553419738],[-76.57391717537556,39.27687492629705],[-76.57391372997596,39.27687431839238],[-76.57391028574072,39.27687370959107],[-76.57390684150555,39.27687310078969],[-76.57390339728126,39.2768724901867],[-76.57389995305702,39.2768718795836],[-76.57389650883826,39.27687126807969],[-76.57389306578392,39.2768706556791],[-76.57388962274041,39.27687004147693],[-76.57388617969697,39.27686942727463],[-76.57388273665906,39.27686881217151],[-76.57387929478551,39.27686819617175],[-76.57387585291738,39.27686757927114],[-76.5738724110602,39.27686696056892],[-76.57386896920306,39.27686634186663],[-76.57386552851032,39.27686572226768],[-76.57386208666408,39.27686510176369],[-76.57385864598227,39.27686448036305],[-76.57385520530593,39.27686385806155],[-76.57385176578863,39.27686323576416],[-76.57384832511781,39.27686261256175],[-76.5738448856114,39.27686198846265],[-76.57384144495153,39.27686136345856],[-76.57383800545064,39.27686073845854],[-76.57383456595528,39.27686011255762],[-76.57383112645992,39.27685948665666],[-76.57382768812894,39.27685885985905],[-76.57382424864457,39.2768582321564],[-76.57382081031915,39.27685760445782],[-76.5738173708403,39.27685697585421],[-76.57381393252041,39.27685634725471],[-76.57381049420601,39.27685571775437],[-76.57380705589163,39.2768550882539],[-76.57380361757737,39.27685445875336],[-76.57380017926859,39.27685382835193],[-76.5737967409598,39.27685319795046],[-76.57379330381546,39.27685256665234],[-76.57378986550685,39.2768519362506],[-76.57378642720367,39.27685130494806],[-76.57378299006491,39.27685067274886],[-76.5737795517619,39.27685004144612],[-76.57377611462327,39.27684940924675],[-76.5737726774793,39.276848777948],[-76.57376923918183,39.2768481457442],[-76.57376580204338,39.27684751354448],[-76.57376236374608,39.27684688134049],[-76.57375892661317,39.27684624823983],[-76.5737554894749,39.27684561603985],[-76.57375205117775,39.27684498383555],[-76.57374861403962,39.27684435163536],[-76.57374517690154,39.27684371943503],[-76.5737417386046,39.27684308723044],[-76.57373830146665,39.27684245502994],[-76.5737348643233,39.27684182373007],[-76.57373142602655,39.27684119152519],[-76.57372798888338,39.27684056022512],[-76.57372455058133,39.27683992892077],[-76.57372111227932,39.27683929761631],[-76.57371767513631,39.27683866631595],[-76.57371423682906,39.27683803591201],[-76.5737107985218,39.27683740550798],[-76.57370736021466,39.27683677510388],[-76.57370392190212,39.27683614560037],[-76.57370048358969,39.27683551609682],[-76.5736970452719,39.27683488749388],[-76.57335006027589,39.27678166513618],[-76.57334664345505,39.27677881171055],[-76.57334428351115,39.27677674398836],[-76.57334194104882,39.27677466011581],[-76.57333959043082,39.27677258341973],[-76.57333720833768,39.27677053723528],[-76.57333476912139,39.27676854669072],[-76.57333224946795,39.27676663422051],[-76.57332962488825,39.27676482495711],[-76.57332687207904,39.27676313953341],[-76.57332405412623,39.27676149440747],[-76.57332122469266,39.27675983122446],[-76.57331837908838,39.27675815897496],[-76.57331551493057,39.27675648845951],[-76.57331262983634,39.27675483047867],[-76.57330972027475,39.27675319402724],[-76.57330678270941,39.27675158900077],[-76.57330381359318,39.27675002709638],[-76.57330081170747,39.27674851821798],[-76.57329777351596,39.27674707226117],[-76.57329469548219,39.27674569912158],[-76.57329157406988,39.2767444086947],[-76.57328840689068,39.27674321268185],[-76.57328519157254,39.27674212008203],[-76.57328192341478,39.2767411416874],[-76.57327860120431,39.27674028650112],[-76.57327524959815,39.27673950146763],[-76.57327188980909,39.27673872811429],[-76.57326852415505,39.27673796644947],[-76.57326515263064,39.27673721737396],[-76.57326177524662,39.27673647908624],[-76.57325839200305,39.27673575158632],[-76.57325500289988,39.27673503487421],[-76.57325160909606,39.2767343289541],[-76.5732482094381,39.27673363292102],[-76.57324480509028,39.2767329458785],[-76.57324139604724,39.2767322687272],[-76.57323798231438,39.27673160056641],[-76.57323456389712,39.27673094049543],[-76.57323114078999,39.27673028941493],[-76.57322771299847,39.27672964642419],[-76.57322428168692,39.2767290106267],[-76.57322084685526,39.27672838202248],[-76.57321740850357,39.27672776061142],[-76.57321396663183,39.27672714639364],[-76.57321052125077,39.2767265375676],[-76.5732070723497,39.27672593593473],[-76.57320362110377,39.27672533879715],[-76.57320016750747,39.27672474705548],[-76.57319671040199,39.27672416070552],[-76.57319325095158,39.27672357885081],[-76.57318978915632,39.2767230014913],[-76.57318632618046,39.27672242773044],[-76.57318286086517,39.27672185756401],[-76.5731793932104,39.27672129099209],[-76.57317592438051,39.2767207271181],[-76.57317245437545,39.27672016594198],[-76.57316898320076,39.27671960656307],[-76.5731655108509,39.27671904988209],[-76.5731620373367,39.27671849409752],[-76.57315856381177,39.27671794011435],[-76.57315508912252,39.2767173870276],[-76.57315161443333,39.27671683394076],[-76.5731481397388,39.27671628175457],[-76.57314466504431,39.27671572956825],[-76.57314119035526,39.2767151764811],[-76.57313771567175,39.2767146224931],[-76.57313424214716,39.27671406850922],[-76.57313076979784,39.27671351182718],[-76.57312729745398,39.2767129542443],[-76.57312382628537,39.27671239396332],[-76.5731203562866,39.27671183188493],[-76.5731168886274,39.27671126621188],[-76.5731134209845,39.27671069783652],[-76.57310995684013,39.2767101258707],[-76.57310649387638,39.276709550306],[-76.57310303209336,39.2767089711424],[-76.57309957381962,39.2767083865869],[-76.57309611788553,39.27670779843672],[-76.57309266430727,39.27670720398963],[-76.57308921307943,39.27670660414645],[-76.573085765361,39.27670599891129],[-76.57308232115187,39.27670538828418],[-76.57307887929316,39.27670477226091],[-76.57307543627566,39.27670415623336],[-76.57307199442795,39.27670353840839],[-76.57306855258567,39.27670291968264],[-76.57306511191325,39.27670229915943],[-76.573061670082,39.27670167863198],[-76.57305822941512,39.27670105720784],[-76.57305478875374,39.27670043488289],[-76.57305134925674,39.27669981166128],[-76.57304790860088,39.27669918843539],[-76.57304446795052,39.27669856430862],[-76.57304102845917,39.27669794018598],[-76.57303758897326,39.27669731516249],[-76.57303414832849,39.27669669013469],[-76.5730307088427,39.276696065111],[-76.57302726935701,39.27669544008718],[-76.57302382871242,39.27669481505907],[-76.57302038922681,39.27669419003507],[-76.57301694973583,39.27669356591176],[-76.57301350909144,39.27669294088331],[-76.57301006960058,39.27669231675975],[-76.57300662894545,39.27669169353264],[-76.5730031882904,39.27669107030542],[-76.57299974878893,39.27669044798306],[-76.57299630812315,39.27668982655712],[-76.57299286629846,39.2766892051269],[-76.57298942562196,39.27668858550226],[-76.57298598378117,39.27668796677404],[-76.57298254194046,39.27668734804571],[-76.57297910008353,39.27668673201953],[-76.57297565706772,39.27668611598903],[-76.57297221520007,39.27668550176416],[-76.57296877100376,39.27668488933222],[-76.57296532796101,39.27668427780517],[-76.57296188374856,39.27668366807526],[-76.57295843953075,39.27668305924604],[-76.57295499413783,39.27668245311471],[-76.57295154873412,39.27668184878476],[-76.57294810216067,39.27668124625202],[-76.57294465557648,39.27668064552067],[-76.57294120898145,39.2766800465907],[-76.57293776128726,39.27667943774821],[-76.57293431365814,39.27667881809663],[-76.57293086607245,39.27667819123905],[-76.57292741736588,39.27667755807189],[-76.57292396865935,39.27667692490466],[-76.57292051762958,39.27667629262962],[-76.57291706541386,39.27667566485401],[-76.572913613144,39.27667504608574],[-76.57291015733234,39.27667443811369],[-76.57290670027507,39.27667384454927],[-76.5729032407861,39.27667326989191],[-76.5728997788601,39.27667271504249],[-76.57289631330555,39.2766721854012],[-76.57289284527594,39.27667168187301],[-76.5728893735798,39.27667120985815],[-76.57288589935983,39.27667077206308],[-76.57288242028186,39.27667037118166],[-76.57287893748311,39.27667001082103],[-76.57287544168143,39.276669692749],[-76.57287190966562,39.27666942228571],[-76.5728683495048,39.27666920666667],[-76.57286476926814,39.27666905312736],[-76.57286118164954,39.2766689707215],[-76.57285759588243,39.27666896578813],[-76.5728540223321,39.27666904917408],[-76.57285047139634,39.27666922632181],[-76.57284695229225,39.27666950627239],[-76.57284347771929,39.27666989717899],[-76.57284005574644,39.27667040627708],[-76.57283667477915,39.27667103442523],[-76.57283327005837,39.27667175796802],[-76.57282985320052,39.27667257244386],[-76.57282644274846,39.27667347792025],[-76.57282305377356,39.27667447355115],[-76.57281970483498,39.27667555670185],[-76.57281641215222,39.27667672833204],[-76.57281319544329,39.27667798581117],[-76.57281006977419,39.27667932919407],[-76.57280705369865,39.27668075674669],[-76.57280416344707,39.27668226762727],[-76.57280141757306,39.27668386010177],[-76.57279890007091,39.27668563536149],[-76.57279664419686,39.27668765207709],[-76.5727945992403,39.27668986322442],[-76.57279271334228,39.27669221997341],[-76.57279093696185,39.27669467350263],[-76.57278921939916,39.27669717498639],[-76.5727875076255,39.2766996773919],[-76.57278575326977,39.27670213010037],[-76.5727839090762,39.27670448970325],[-76.57278204072409,39.27670681949292],[-76.57278018738903,39.27670915744413],[-76.57277834792305,39.27671150175107],[-76.57277651885471,39.27671385150041],[-76.5727746967127,39.27671620577873],[-76.57277288151334,39.27671856188385],[-76.5727710686208,39.27672091979883],[-76.57276925572275,39.27672327861451],[-76.57276744283544,39.27672563562866],[-76.57276562531767,39.27672799172522],[-76.5727638008734,39.27673034329272],[-76.57276196718466,39.27673269032268],[-76.57276012193913,39.27673503190604],[-76.57275826399403,39.27673736533629],[-76.57275638870829,39.27673969149726],[-76.57275449493928,39.27674200768257],[-76.57275258037991,39.27674431208225],[-76.57275064270702,39.27674660558868],[-76.57274866690867,39.27674887913952],[-76.5727466506725,39.27675113182563],[-76.57274459977143,39.27675336727108],[-76.57274252114817,39.27675558730262],[-76.57274042057024,39.27675779644508],[-76.572738303816,39.27675999742174],[-76.57273617666382,39.27676219295601],[-76.57273404720448,39.27676438668024],[-76.57273192005746,39.27676658131367],[-76.57272980099573,39.27676878048027],[-76.5727276981154,39.27677098691183],[-76.57272561603601,39.27677320332742],[-76.57272356168396,39.27677543425609],[-76.5727217605222,39.27677796065609],[-76.57272056361185,39.27678099188132],[-76.57271764591147,39.27678109386282],[-76.57271434141143,39.27678057020665],[-76.57271101855305,39.2767800158576],[-76.57270767848978,39.27677943172063],[-76.57270432236977,39.27677881960137],[-76.57270095133019,39.27677818310708],[-76.57269756652457,39.27677752314274],[-76.57269417025992,39.27677684151823],[-76.57269076252003,39.2767761409358],[-76.57268734445827,39.27677542230042],[-76.57268391721203,39.27677468921926],[-76.57268048309362,39.27677394260152],[-76.57267704325118,39.2767731842529],[-76.57267359650407,39.27677241777216],[-76.57267014748803,39.27677164317622],[-76.57266669386885,39.2767708631588],[-76.5726632402661,39.27677008043905],[-76.57265978550987,39.27676929681423],[-76.57265633074827,39.27676851409009],[-76.57265287945272,39.27676773317994],[-76.57264943043712,39.27676695858338],[-76.5726459848658,39.27676618940382],[-76.5726425461885,39.27676543015764],[-76.57263911439969,39.27676468174565],[-76.57263568948858,39.2767639459693],[-76.57263227375671,39.27676322553924],[-76.57262886378702,39.27676251053462],[-76.57262545382818,39.27676179372846],[-76.5726220438749,39.27676107602143],[-76.57261863509144,39.27676035651704],[-76.5726152263135,39.27675963611178],[-76.57261181754109,39.27675891480568],[-76.57260840993304,39.27675819260298],[-76.57260500116615,39.27675747039596],[-76.57260159355823,39.276756748193],[-76.57259818595587,39.27675602508926],[-76.5725947771892,39.27675530288194],[-76.57259136957606,39.27675458157945],[-76.57258788673039,39.27675384378932],[-76.5725877983336,39.27675004854294],[-76.57258778130699,39.27674729574188],[-76.57258778167513,39.27674454120255],[-76.57258777856643,39.27674178665058],[-76.57258775110404,39.27673903471233],[-76.5725876807342,39.27673628712169],[-76.57258754657992,39.27673354650508],[-76.57258732777512,39.27673081368734],[-76.57258700460176,39.27672809129896],[-76.57258657362104,39.27672537302212],[-76.57258606042707,39.27672264273613],[-76.57258545799576,39.27671991212543],[-76.57258476046732,39.27671719197778],[-76.57258395734092,39.27671449396506],[-76.57258304043357,39.27671182976736],[-76.57258200272113,39.27670921106908],[-76.5725808348562,39.27670665044688],[-76.57257946852185,39.27670413774373],[-76.57257778781998,39.27670167343871],[-76.5725758085957,39.27669932064295],[-76.57257355477954,39.27669714700104],[-76.5725710503075,39.27669521925659],[-76.5725683579731,39.27669350250831],[-76.5725655761085,39.27669183407549],[-76.57256271514402,39.27669021399606],[-76.57255978200595,39.27668864679909],[-76.57255678593332,39.27668713792276],[-76.57255373501683,39.27668569099959],[-76.57255063734179,39.27668431056279],[-76.57254750213626,39.27668300385209],[-76.57254433750187,39.27668177269848],[-76.57254115150762,39.27668062433752],[-76.57253792446804,39.27667955599515],[-76.57253463902099,39.27667856400524],[-76.57253130096105,39.27667764838878],[-76.5725279195596,39.27667680917958],[-76.57252449945781,39.27667604549369],[-76.572521051086,39.27667535736914],[-76.57251758023335,39.27667474572774],[-76.57251409386426,39.27667420879322],[-76.57251060124473,39.27667374750022],[-76.57250710708102,39.27667335015581],[-76.57250361286302,39.27667296181876],[-76.57250011863968,39.27667257438235],[-76.57249662324656,39.27667218874312],[-76.57249312784263,39.27667180490524],[-76.57248963242787,39.27667142286882],[-76.5724861370078,39.27667104173296],[-76.5724826404233,39.27667066149359],[-76.57247914382803,39.27667028305557],[-76.57247564722196,39.27666990641895],[-76.57247214945158,39.27666953067874],[-76.57246865167582,39.27666915583915],[-76.57246515388918,39.27666878280102],[-76.57246165609178,39.2766684115642],[-76.57245815713544,39.27666804032311],[-76.5724546581683,39.27666767088337],[-76.57245115919581,39.27666730234429],[-76.57244765905354,39.2766669356024],[-76.57244416006478,39.27666656976531],[-76.57244065991715,39.27666620392396],[-76.57243715975328,39.2766658407847],[-76.57243365958944,39.27666547764537],[-76.57243015826128,39.27666511540241],[-76.5724266569277,39.27666475406014],[-76.57242315558335,39.27666439451927],[-76.57241965423903,39.27666403497825],[-76.57241615288932,39.27666367633789],[-76.57241265036981,39.27666331949472],[-76.57240914900932,39.27666296265562],[-76.57240564648447,39.27666260671297],[-76.57240214395426,39.27666225167096],[-76.57239864141863,39.27666189752961],[-76.5723951377241,39.27666154338391],[-76.57239163517772,39.2766611910438],[-76.57238813147244,39.2766608386994],[-76.57238462776172,39.27666048725561],[-76.57238112405106,39.27666013581172],[-76.572377620335,39.27665978526852],[-76.57237411661355,39.27665943562591],[-76.57237061289213,39.27665908598323],[-76.5723671080064,39.27665873723694],[-76.57236360427963,39.27665838849476],[-76.57236009938855,39.27665804064905],[-76.57235659565097,39.27665769370814],[-76.57235309075996,39.27665734586219],[-76.57234958586356,39.27665699891691],[-76.5723460809617,39.27665665287223],[-76.57234257605992,39.27665630682744],[-76.5723390711582,39.27665596078258],[-76.57233556625648,39.27665561473757],[-76.57233206019043,39.27665526958901],[-76.57232855528336,39.27665492444459],[-76.57232505037634,39.27665457930001],[-76.57232154431043,39.27665423415113],[-76.57231803940341,39.2766538890064],[-76.57231453333758,39.2766535438573],[-76.57231102842526,39.27665319961309],[-76.57230752235944,39.27665285446378],[-76.5723040174472,39.27665251021936],[-76.57230051138148,39.27665216506984],[-76.57229700647468,39.27665181992447],[-76.57229350040362,39.27665147567549],[-76.57228999549693,39.27665113052992],[-76.5722864894313,39.27665078537996],[-76.57228298453012,39.27665043933342],[-76.57227947846462,39.2766500941833],[-76.57227597356345,39.27664974813655],[-76.57227246750345,39.27664940208548],[-76.5722689626024,39.27664905603848],[-76.57226545770675,39.27664870909063],[-76.5722619528112,39.27664836214273],[-76.57225844675678,39.27664801519047],[-76.57225494186672,39.27664766734159],[-76.57225143697664,39.27664731949262],[-76.57224793209208,39.27664697074278],[-76.57224442720756,39.27664662199282],[-76.5722409223285,39.27664627234204],[-76.57223741861382,39.27664592179464],[-76.57223391374028,39.27664557124286],[-76.57223040886674,39.27664522069104],[-76.57222690516302,39.2766448683418],[-76.57222340145934,39.27664451599247],[-76.57221989660223,39.2766441627381],[-76.57221639290404,39.2766438094878],[-76.57221288921676,39.27664345443591],[-76.5722093855295,39.27664309938392],[-76.57220588300663,39.2766427434353],[-76.57220237933038,39.27664238658164],[-76.57219887681843,39.27664202883133],[-76.57219537315305,39.27664167017594],[-76.57219187065203,39.27664131062391],[-76.57218836815655,39.27664095017106],[-76.57218486682545,39.27664058882156],[-76.57218136434084,39.27664022656699],[-76.57217786302066,39.27663986341582],[-76.57217436170589,39.27663949936375],[-76.57217086040208,39.2766391335101],[-76.5721673590983,39.27663876765638],[-76.57216385780544,39.27663840000105],[-76.57216035767692,39.27663803144905],[-76.57215685755934,39.2766376610955],[-76.5721533574472,39.27663728984108],[-76.57214985734053,39.27663691768581],[-76.57214635723935,39.27663654462969],[-76.5721428583134,39.27663616887546],[-76.57213935939292,39.27663579222037],[-76.57213586048339,39.27663541376371],[-76.57213236274362,39.27663503350964],[-76.5721288650148,39.276634651454],[-76.5721253672914,39.27663426849748],[-76.57212186957896,39.2766338837394],[-76.57211837187742,39.27663349717972],[-76.57211487534025,39.27663310972338],[-76.57211137881394,39.2766327204655],[-76.57210788229314,39.27663233030671],[-76.57210438578326,39.27663193834636],[-76.57210088927884,39.27663154548515],[-76.5720973939388,39.27663115172733],[-76.5720938986043,39.27663075706865],[-76.57209040328064,39.27663036060837],[-76.57208690796246,39.27662996324721],[-76.57208341264973,39.27662956498527],[-76.57207991734792,39.27662916492168],[-76.5720764232051,39.27662876486221],[-76.57207292906772,39.27662836390188],[-76.57206943377695,39.27662796203652],[-76.5720659396505,39.2766275592745],[-76.57206244552958,39.27662715561164],[-76.57205895141408,39.27662675104796],[-76.57205545845758,39.27662634648834],[-76.57205196434765,39.27662594102371],[-76.57204847024312,39.2766255346582],[-76.57204497730305,39.27662512739603],[-76.57204148320405,39.27662472012959],[-76.57203799026405,39.27662431286726],[-76.57203449732953,39.27662390470406],[-76.57203100323612,39.27662349653652],[-76.57202751030707,39.27662308747235],[-76.57202401737808,39.27662267840815],[-76.57202052444916,39.2766222693438],[-76.57201703152569,39.27662185937855],[-76.57201353859685,39.27662145031398],[-76.57201004567341,39.27662104034859],[-76.57200655275007,39.27662063038306],[-76.57200305866787,39.27662022041324],[-76.5719995657446,39.27661981044752],[-76.5719960728159,39.27661940138243],[-76.57199257989272,39.2766189914165],[-76.57198908696958,39.27661858145044],[-76.57198559404107,39.27661817238504],[-76.57198210111257,39.27661776331954],[-76.57197860818407,39.27661735425398],[-76.57197511409132,39.27661694608476],[-76.57197162115752,39.2766165379197],[-76.57196812821832,39.27661613065528],[-76.5719646341202,39.27661572338653],[-76.57196114118109,39.27661531612187],[-76.57195764707762,39.27661490975368],[-76.57195415296881,39.27661450428612],[-76.57195066001351,39.2766140997234],[-76.57194716589929,39.27661369515639],[-76.57194367177972,39.27661329149],[-76.57194017765471,39.27661288872424],[-76.57193668352437,39.27661248685911],[-76.57193318823508,39.27661208498969],[-76.57141661089022,39.27655594714761],[-76.57126670787358,39.27654286951201],[-76.57120993431897,39.2765369378962],[-76.57119628366831,39.27653300035657],[-76.57117348394814,39.27652029558943],[-76.57115502063215,39.27650976488519],[-76.57103239850488,39.27642073761999],[-76.57098562291745,39.27637251183169],[-76.57097602723935,39.2763417786902],[-76.57096716528649,39.27633575262527],[-76.57096423688257,39.27630791998106],[-76.57091099562915,39.27580188070363],[-76.57090212166085,39.27568804823989],[-76.57092084226801,39.27568416317106],[-76.57090529339018,39.27550700049683],[-76.57090160267467,39.27546495277569],[-76.57088097680219,39.27546424508161],[-76.57086089763523,39.27523576001393],[-76.57084994406921,39.27511111073718],[-76.57082156981089,39.27488238815263],[-76.57077031515685,39.27441631293571],[-76.57075804800787,39.27440214228948],[-76.57075562625776,39.27436989591977],[-76.5707636183075,39.27432638029144],[-76.57078666972487,39.2742833628736],[-76.57085316518979,39.27420356738084],[-76.57088069001331,39.27416608978681],[-76.57090473888391,39.2741426595463],[-76.57093339343878,39.27412341397149],[-76.57096382034273,39.27410832019],[-76.57096983919598,39.27410591551226],[-76.57097297282789,39.27410458391666],[-76.5709761041964,39.27410324330504],[-76.57097924123943,39.27410192253095],[-76.57098239653033,39.2741006504648],[-76.5709855779962,39.27409945776156],[-76.57098879822136,39.27409837149023],[-76.57099206744526,39.27409742321503],[-76.57099539476454,39.2740966417937],[-76.57099879153402,39.27409606600063],[-76.57100225208454,39.27409567509746],[-76.57100576160651,39.2740954266942],[-76.57100930760285,39.27409527930983],[-76.57101287525855,39.27409519145505],[-76.57101645206548,39.27409512345044],[-76.57102002437847,39.27409503200936],[-76.57102357853596,39.2740948765475],[-76.57102710202435,39.27409461828614],[-76.57103061301008,39.27409431944454],[-76.57103412400666,39.27409401880131],[-76.57103763500866,39.2740937172573],[-76.57104114601603,39.27409341481239],[-76.57104465587,39.27409311146242],[-76.57104816688825,39.27409280721579],[-76.57105167791191,39.27409250206833],[-76.57105518778206,39.27409219601581],[-76.57105869765769,39.27409188906243],[-76.57106220754412,39.27409158030746],[-76.5710657185949,39.27409127065581],[-76.5710692273333,39.27409096009492],[-76.57107273723597,39.27409064863739],[-76.57107624714955,39.27409033537824],[-76.57107975590964,39.274090021214],[-76.57108326583949,39.27408970525243],[-76.57108677461585,39.27408938838575],[-76.57109028339762,39.27408907061824],[-76.57109379103137,39.2740887510449],[-76.57109729982942,39.27408843057494],[-76.57110080747945,39.27408810829912],[-76.57110431514035,39.27408778422174],[-76.57110782280664,39.27408745924349],[-76.57111133047835,39.27408713336438],[-76.57111483816637,39.27408680478293],[-76.57111834470086,39.27408647529639],[-76.57112185124629,39.27408614400832],[-76.57112535663819,39.27408581181508],[-76.57112886319986,39.27408547782453],[-76.57113236861349,39.27408514202813],[-76.57113587403796,39.27408480443012],[-76.5711393794733,39.27408446503053],[-76.5711428860566,39.27408412743655],[-76.57114639378788,39.2740837916482],[-76.57114990267256,39.2740834567647],[-76.57115341273787,39.27408311828237],[-76.57115692167692,39.27408277439124],[-76.57116042950604,39.274082422389],[-76.57116393391293,39.27408206136655],[-76.5711674360782,39.27408168772504],[-76.57117093485938,39.27408129875811],[-76.57117442911381,39.27408089175917],[-76.57117791768813,39.2740804658233],[-76.57118139944521,39.27408001734327],[-76.57118487440133,39.2740795436169],[-76.57118834140309,39.27407904373914],[-76.57119179487378,39.27407848165902],[-76.57119521568401,39.27407776272621],[-76.5711986117227,39.27407692390098],[-76.57120199079179,39.27407601655547],[-76.57120536301635,39.27407509116956],[-76.57120873619282,39.27407420001611],[-76.5712121192984,39.27407339176933],[-76.57121552012956,39.27407271870209],[-76.57121894881139,39.27407223129421],[-76.57122241089887,39.27407196919981],[-76.57122589508626,39.27407188553767],[-76.57122939697754,39.27407194065804],[-76.57123291325394,39.27407210842663],[-76.57123644060209,39.27407236180827],[-76.57123997570865,39.27407267376793],[-76.57124351641919,39.27407301727479],[-76.57124705710794,39.27407336438451],[-76.57125059793283,39.27407368897547],[-76.57125413442157,39.27407396400833],[-76.57125766326075,39.27407416244809],[-76.57126118880294,39.27407433115039],[-76.57126471548771,39.27407450255907],[-76.57126824100816,39.27407467486415],[-76.57127176769299,39.2740748462726],[-76.5712752943941,39.27407501497866],[-76.57127882227591,39.27407518008594],[-76.57128234904242,39.27407533798287],[-76.5712858770059,39.27407548957874],[-76.57128940502929,39.27407563126622],[-76.57129293312337,39.27407576124395],[-76.5712964624472,39.27407587951609],[-76.5712999918635,39.27407598247542],[-76.57130352137776,39.27407606922127],[-76.57130705099544,39.27407613885276],[-76.57131058073828,39.27407618776702],[-76.57131411175436,39.27407621776975],[-76.57131764287377,39.27407623065816],[-76.57132117408575,39.27407622823373],[-76.57132470653822,39.27407621230232],[-76.57132823905596,39.2740761855618],[-76.57133177162271,39.27407615071446],[-76.57133530422755,39.27407610956179],[-76.57133883686504,39.27407606300454],[-76.57134236951342,39.27407601464571],[-76.57134590332065,39.27407596629094],[-76.57134943595807,39.27407591973337],[-76.57135296856833,39.27407587767944],[-76.5713565011405,39.27407584193062],[-76.57136003365825,39.27407581518916],[-76.57136469734395,39.27407673567804],[-76.57136440416208,39.27403471926999],[-76.57106801826835,39.27404922137991],[-76.57105819462207,39.27386875932527],[-76.57118497513177,39.27386804948141],[-76.57125033849307,39.27388417672559],[-76.57125102552526,39.27388152467552],[-76.57125467213707,39.27388141007865],[-76.57125820732757,39.2738813229987],[-76.57126174471611,39.27388125574351],[-76.57126528548876,39.27388120381359],[-76.57126882850844,39.27388116360177],[-76.57127237262706,39.27388113330223],[-76.57127591787199,39.27388110841135],[-76.5712794642594,39.27388108622677],[-76.57128300949883,39.2738810622364],[-76.57128655360661,39.27388103373794],[-76.57129009775791,39.27388099803342],[-76.5712936385087,39.27388094970561],[-76.57129717818776,39.27388088696156],[-76.57130071334554,39.27388080528484],[-76.57130424631619,39.27388070198159],[-76.57130777364478,39.2738805734362],[-76.5713112965066,39.27388041695066],[-76.5713148149287,39.27388022802118],[-76.57131832661528,39.2738800030364],[-76.5713218315825,39.27387973929404],[-76.57132532984672,39.27387943409185],[-76.57132882028176,39.27387908202115],[-76.57133230173957,39.2738786812762],[-76.57133577990571,39.2738782498931],[-76.57133925696738,39.27387780949818],[-76.57134273408334,39.27387736009569],[-76.57134621010032,39.27387690078067],[-76.57134968616617,39.27387643335882],[-76.57135316112758,39.27387595692516],[-76.57135663613786,39.27387547238473],[-76.57136011004366,39.27387497883245],[-76.57136358283401,39.27387447806992],[-76.57136705567878,39.27387396829978],[-76.57137052741356,39.2738734504186],[-76.57137399687407,39.27387292532288],[-76.57137746637808,39.2738723930211],[-76.5713809347721,39.27387185260827],[-76.57138440205071,39.27387130498513],[-76.57138786821393,39.27387075015168],[-76.57139133210286,39.27387018810371],[-76.57139479602982,39.27386961975045],[-76.5713982576825,39.2738690441826],[-76.57140171705547,39.27386846230098],[-76.57140517646643,39.27386787411404],[-76.57140863359766,39.27386727961333],[-76.57141208844918,39.27386667879882],[-76.57141554217436,39.27386607257549],[-76.57141899477877,39.27386546004264],[-76.57142244393906,39.27386484209249],[-76.57142589197306,39.27386421873353],[-76.57142933888079,39.27386358996579],[-76.57143278234439,39.27386295578077],[-76.57143622467633,39.27386231708768],[-76.5714396635642,39.27386167297732],[-76.57144310131486,39.2738610252597],[-76.57144653678036,39.27386037212897],[-76.57144996879632,39.27385971448175],[-76.57145339967514,39.27385905322723],[-76.5714568271044,39.27385838745617],[-76.57146025224307,39.27385771717285],[-76.57146367508028,39.27385704417872],[-76.57146709562684,39.27385636667228],[-76.57147051271299,39.27385568645082],[-76.57147392634421,39.27385500261362],[-76.5714773376739,39.27385431606561],[-76.57148074670755,39.27385362590605],[-76.5714841522808,39.27385293303147],[-76.57148752012229,39.27385215534707],[-76.57149082741884,39.27385123241837],[-76.57149408214663,39.27385018679355],[-76.57149729342983,39.27384904282664],[-76.57150047272121,39.27384782307855],[-76.57150362799148,39.27384655099829],[-76.5715067706826,39.27384525094824],[-76.57150990877616,39.27384394457606],[-76.57151305256065,39.27384265533907],[-76.5715162123191,39.27384140759549],[-76.57151943304667,39.27384023483789],[-76.57152282927115,39.27383917081242],[-76.57152632598084,39.27383816300091],[-76.57152982504626,39.27383714889257],[-76.57153322832707,39.27383606777795],[-76.57153643653484,39.27383485714202],[-76.57153935501677,39.27383345448661],[-76.57154188330918,39.27383179999473],[-76.57154394524699,39.27382984024329],[-76.57154561481904,39.27382760522749],[-76.57154696356582,39.27382514655205],[-76.5715480549103,39.27382251669276],[-76.5715489511383,39.27381976451828],[-76.5715497156836,39.27381694070287],[-76.5715504108157,39.27381409681735],[-76.5715510999739,39.27381128263534],[-76.57155184659739,39.27380854793038],[-76.57155264615943,39.27380587467064],[-76.57155345035692,39.27380320142778],[-76.57155425802551,39.27380052909837],[-76.57155506801186,39.27379785677739],[-76.57155588031588,39.27379518446485],[-76.5715566960965,39.27379251216502],[-76.57155751418932,39.27378984077436],[-76.5715583346053,39.27378716849138],[-76.57155915733357,39.27378449711762],[-76.57155998122063,39.27378182574807],[-76.5715608062665,39.27377915438274],[-76.57156163363008,39.27377648302588],[-76.5715624609936,39.27377381166897],[-76.57156329066935,39.27377114122127],[-76.57156412035053,39.27376846987285],[-76.5715649500316,39.27376579852438],[-76.57156578087151,39.27376312718014],[-76.57156661171136,39.27376045583591],[-76.5715674425511,39.27375778449161],[-76.5715682722374,39.2737551122424],[-76.57156910191814,39.27375244089391],[-76.57156993160432,39.27374976864466],[-76.57157075897265,39.27374709638693],[-76.57157158634088,39.27374442412923],[-76.57157241139137,39.27374175186301],[-76.57157323644718,39.27373907869611],[-76.57157405802629,39.27373640551646],[-76.57157487844647,39.27373373233259],[-76.5715756965543,39.27373105823951],[-76.57157651234431,39.27372838413798],[-76.57157732581646,39.27372571002797],[-76.57157813697627,39.27372303500879],[-76.57157894465932,39.2737203599769],[-76.57157974887117,39.27371768403156],[-76.57158054961175,39.2737150071728],[-76.57158134687565,39.27371233030131],[-76.57158213950397,39.27370965341295],[-76.57158292866104,39.27370697561114],[-76.57158371434683,39.27370429689591],[-76.57158449539709,39.27370161816374],[-76.57158527065829,39.27369893850969],[-76.57158604244829,39.2736962579422],[-76.57158680844383,39.27369357735357],[-76.5715875686503,39.27369089584306],[-76.57158832422674,39.27368821341489],[-76.57158907401407,39.27368553006481],[-76.57158981685357,39.27368284578863],[-76.57159055505753,39.27368016149554],[-76.57159128631358,39.27367747627632],[-76.57159201062174,39.27367479013097],[-76.57159272798751,39.27367210215878],[-76.5715934395588,39.27366941416544],[-76.57159414302328,39.27366672524173],[-76.57159483953993,39.27366403539195],[-76.5715955291087,39.27366134461606],[-76.57159620941185,39.27365865290557],[-76.57159688276712,39.27365596026896],[-76.57159754801565,39.27365326670206],[-76.57159820399856,39.27365057220053],[-76.57159885188011,39.27364787586792],[-76.57159949164948,39.27364517950576],[-76.57160012099983,39.27364248130402],[-76.57160074224338,39.27363978217195],[-76.5716013530679,39.27363708120031],[-76.57160195462139,39.2736343801949],[-76.57160254691466,39.27363167735412],[-76.57160312878885,39.27362897267381],[-76.57160369791538,39.27362626794703],[-76.57160425662828,39.27362356047997],[-76.57160480259894,39.27362085206564],[-76.57160533815058,39.27361814181177],[-76.57160586211882,39.27361543061486],[-76.57160637566251,39.27361271847919],[-76.57160687879266,39.27361000360319],[-76.57160737265178,39.27360728869341],[-76.57160785609183,39.27360457194406],[-76.57160833026626,39.27360185426016],[-76.57160879517508,39.2735991356417],[-76.57160925082374,39.27359641518792],[-76.57160969836022,39.27359369470454],[-76.57161013779545,39.27359097239007],[-76.5716105691239,39.27358824914531],[-76.57161099234564,39.27358552497015],[-76.571611408625,39.27358279896817],[-76.57161181795102,39.27358007294082],[-76.57161222032923,39.27357734598733],[-76.57161261575959,39.27357461810774],[-76.57161300539555,39.27357189020704],[-76.57161338924796,39.27356916048367],[-76.57161376846486,39.27356643074339],[-76.57161414073389,39.27356370007706],[-76.57161450837279,39.27356096849299],[-76.57161487254051,39.27355823599551],[-76.57161523091385,39.27355550347691],[-76.57161558581593,39.27355277004488],[-76.57161593608255,39.27355003659594],[-76.57161628403675,39.27354730223779],[-76.57161662851433,39.27354456786697],[-76.57161696951528,39.27354183348343],[-76.5716173082039,39.27353909819074],[-76.57161764458012,39.27353636198882],[-76.5716179786332,39.2735336266792],[-76.57161831153272,39.27353089046458],[-76.57161864211456,39.27352815424153],[-76.57161897270177,39.27352541711768],[-76.57161930096574,39.27352268088617],[-76.57161963038858,39.27351994465887],[-76.571619958658,39.27351720752662],[-76.57162028692737,39.27351447039429],[-76.57162061519124,39.27351173416276],[-76.57162094461943,39.27350899703473],[-76.57162127520107,39.27350626081164],[-76.57162160694149,39.27350352459278],[-76.5716219398408,39.27350078837814],[-76.57162227505779,39.27349805217195],[-76.57162261143368,39.27349531596992],[-76.57162295128072,39.27349258068143],[-76.57162329344546,39.27348984540133],[-76.57162363908137,39.27348711103463],[-76.57162398704044,39.2734843757757],[-76.57162433962411,39.27348164233509],[-76.57162469568438,39.27347890890721],[-76.57162505522119,39.27347617549201],[-76.571625420547,39.27347344299867],[-76.5716257893439,39.27347071141877],[-76.57162616509403,39.27346797986421],[-76.57162654431532,39.27346524922309],[-76.57162693048436,39.27346251950804],[-76.57162732244775,39.27345978981415],[-76.57162772019464,39.27345706194285],[-76.57162812489469,39.27345433409694],[-76.57162853538367,39.27345160717291],[-76.57162894124801,39.27344887843046],[-76.57162934133423,39.27344614696466],[-76.57162973448355,39.27344341277121],[-76.57163012416159,39.27344067766433],[-76.57163050922048,39.27343793983837],[-76.57163088964924,39.27343520109468],[-76.5716312677711,39.27343246054107],[-76.57163164242176,39.27342971907402],[-76.57163201476554,39.27342697579706],[-76.57163238595041,39.2734242325158],[-76.57163275714063,39.27342148833382],[-76.57163312717203,39.27341874414766],[-76.5716334972088,39.27341599906069],[-76.57163386840442,39.27341325397796],[-76.57163424191775,39.27341050890365],[-76.5716346165845,39.27340776473438],[-76.57163499356352,39.27340502147423],[-76.57163537401912,39.27340227822684],[-76.5716357591048,39.27339953589701],[-76.57163614766156,39.27339679448069],[-76.57163654200184,39.27339405488691],[-76.57163694097211,39.27339131621083],[-76.57163734687923,39.27338858026234],[-76.57163775973419,39.27338584523991],[-76.57163817952599,39.27338311294519],[-76.57163860741905,39.27338038248143],[-76.5716390434078,39.27337765474954],[-76.57163948981007,39.27337492975791],[-76.57163994430815,39.27337220749814],[-76.57164041037312,39.27336948888356],[-76.5716408868516,39.2733667730093],[-76.57164137489703,39.27336406078029],[-76.57164187566823,39.27336135220074],[-76.57164238916529,39.27335864727067],[-76.57164291538813,39.27335594599005],[-76.57164345548473,39.27335325016465],[-76.5716440094661,39.27335055799291],[-76.57164457964436,39.27334787038412],[-76.5716451648553,39.27334518823476],[-76.57164576742213,39.27334251065249],[-76.57164638502155,39.27333983852966],[-76.57164702113032,39.27333717187894],[-76.57164777407297,39.27333454078418],[-76.57164927892285,39.27333213762333],[-76.57165141306784,39.27332992411702],[-76.57165389194742,39.27332781275375],[-76.57165642638199,39.27332571330302],[-76.57165873297002,39.2733235382577],[-76.5716605225265,39.27332119828793],[-76.57166171873453,39.27331866519168],[-76.57166279823355,39.27331607582228],[-76.57166379683984,39.27331344832567],[-76.57166471684947,39.2733107863133],[-76.57166555706,39.27330809698687],[-76.57166631743888,39.2733053857509],[-76.57166699795344,39.27330265800988],[-76.57166759972992,39.27329991917247],[-76.57166812157145,39.27329717553973],[-76.57166856344539,39.27329443251611],[-76.57166892531366,39.27329169640682],[-76.57166920830254,39.2732889726206],[-76.57166938694952,39.27328625565993],[-76.57166942310971,39.27328352917201],[-76.57166933184303,39.27328079411244],[-76.5716691305217,39.27327805234611],[-76.57166883650703,39.27327530753946],[-76.57166846602316,39.27327255975162],[-76.57166803874384,39.27326981355819],[-76.57166757088771,39.27326706991904],[-76.57166707982162,39.27326433159985],[-76.57166658407654,39.27326160046973],[-76.5716660987016,39.27325887928586],[-76.57166550660176,39.27325617572807],[-76.5716647138869,39.27325349305705],[-76.5716638052035,39.27325082347451],[-76.57166286752663,39.27324815738934],[-76.5716619843439,39.27324548699905],[-76.57166124030734,39.27324280360475],[-76.57166072122753,39.27324009851169],[-76.57166048739843,39.27323736653523],[-76.5716603266163,39.27323462851977],[-76.57166017048048,39.27323188871975],[-76.57166001898014,39.27322914893663],[-76.57165986979763,39.27322640916193],[-76.5716597264094,39.27322366940841],[-76.57165958534436,39.27322092876256],[-76.57165944775603,39.2732181881294],[-76.57165931480856,39.27321544661235],[-76.57165918417884,39.2732127051038],[-76.57165905818462,39.27320996361216],[-76.57165893450816,39.27320722212897],[-76.57165881315485,39.27320447975347],[-76.57165869643708,39.27320173739484],[-76.57165858088356,39.27319899413975],[-76.57165846996556,39.27319625090153],[-76.57165836020648,39.27319350766754],[-76.57165825392397,39.27319076444622],[-76.57165814880032,39.27318802122912],[-76.57165804715879,39.27318527712396],[-76.57165794783496,39.27318253302727],[-76.57165784967,39.27317978893474],[-76.57165775382825,39.27317704394999],[-76.57165766029883,39.27317429987441],[-76.57165756909255,39.27317155490652],[-76.57165747904513,39.27316880994288],[-76.57165739015663,39.27316606498342],[-76.57165730243243,39.2731633191275],[-76.57165721702056,39.27316057418073],[-76.57165713277293,39.27315782833742],[-76.57165704852535,39.27315508249419],[-76.57165696659013,39.27315233756008],[-76.57165688466027,39.27314959172524],[-76.57165680389475,39.27314684499388],[-76.57165672428268,39.2731440991675],[-76.57165664467061,39.27314135334113],[-76.57165656621744,39.27313860751899],[-76.57165648776967,39.27313586079607],[-76.57165640931652,39.27313311497389],[-76.57165633202762,39.2731303682552],[-76.57165625357447,39.27312762243302],[-76.57165617512673,39.2731248757101],[-76.57165609783789,39.27312212899141],[-76.57165601938473,39.27311938316922],[-76.57165594093705,39.2731166364463],[-76.57165586132504,39.27311389061988],[-76.57165578171846,39.27311114389271],[-76.57165570094762,39.27310839806209],[-76.5716556201822,39.27310565133069],[-76.5716555370936,39.27310290549164],[-76.57165545401045,39.27310015875176],[-76.57165536976301,39.27309741290845],[-76.57165528435674,39.27309466706088],[-76.57165519779156,39.27309192120909],[-76.57165510890867,39.27308917534882],[-76.5716550188669,39.27308642948438],[-76.57165492766627,39.27308368361571],[-76.57165483414796,39.27308093773853],[-76.5716547394653,39.27307819275791],[-76.57165464247039,39.27307544686806],[-76.57165454315229,39.2730727018705],[-76.57165444151644,39.27306995686452],[-76.5716543375629,39.27306721185003],[-76.57165423129162,39.27306446682713],[-76.57165412269718,39.27306172269653],[-76.57165401178503,39.27305897855742],[-76.57165389739625,39.27305623440567],[-76.57165378068974,39.27305349024545],[-76.57165366166554,39.2730507460768],[-76.57165354264133,39.27304800190812],[-76.57165342361714,39.27304525773945],[-76.5716533034341,39.27304251356653],[-76.57165318325103,39.27303976939362],[-76.5716530619146,39.27303702431576],[-76.57165293941384,39.27303428013437],[-76.57165281691309,39.27303153595301],[-76.57165269210003,39.27302879086245],[-76.57165256728159,39.27302604667263],[-76.5716524401508,39.27302330157359],[-76.57165231185579,39.2730205573711],[-76.57165218124301,39.27301781316014],[-76.57165204947135,39.27301506894494],[-76.57165191654634,39.27301232382475],[-76.57165178013925,39.27300957959267],[-76.57165164257331,39.27300683535633],[-76.57165150268425,39.27300409201229],[-76.57165135932405,39.27300134775484],[-76.57165121480493,39.27299860349314],[-76.57165106680378,39.27299586011949],[-76.57165091648496,39.2729931167374],[-76.57165076384838,39.27299037334685],[-76.57165060657094,39.27298763084013],[-76.57165044698122,39.27298488742421],[-76.57165028506834,39.27298214490062],[-76.57165011851997,39.27297940236006],[-76.57164994848962,39.27297666070763],[-76.5716497749881,39.27297391814172],[-76.57164959799914,39.27297117736463],[-76.57164941638017,39.2729684356699],[-76.57164923127912,39.27296569486323],[-76.57164904154268,39.27296295403964],[-76.57164884832423,39.27296021410412],[-76.57164865047027,39.27295747415175],[-76.57164844798093,39.27295473418237],[-76.57164823969177,39.27295199509268],[-76.57164802792606,39.27294925599024],[-76.57164780697649,39.27294650244208],[-76.57164755598342,39.27294373437208],[-76.5716472563343,39.27294096342229],[-76.57164688362231,39.27293820121373],[-76.57164641692808,39.2729354575785],[-76.57164583531045,39.27293274595166],[-76.57164511437892,39.27293007525198],[-76.5716442343566,39.27292745801805],[-76.5716431035518,39.27292491733539],[-76.57164152241688,39.27292248940758],[-76.57163959767064,39.27292015750928],[-76.57163745922571,39.27291790229744],[-76.57163523933413,39.2729157008345],[-76.57163305165156,39.2729135391227],[-76.57163077661929,39.2729114491536],[-76.57162839342114,39.27290942364512],[-76.57162594625173,39.27290743663623],[-76.57162347815216,39.27290546126089],[-76.57162103331164,39.27290347245885],[-76.57161864547314,39.27290144783401],[-76.57161629489244,39.2728993945205],[-76.57161396760884,39.27289732147504],[-76.57161165080953,39.27289523946006],[-76.57160933516924,39.27289315744932],[-76.57160700788606,39.27289108440372],[-76.57160465847038,39.27288903019343],[-76.57160227528459,39.2728870028829],[-76.57159984551055,39.2728850141354],[-76.57159735983373,39.27288307112298],[-76.57159480544149,39.27288118460815],[-76.57159219282875,39.27287934381999],[-76.57158956976465,39.27287750659668],[-76.57158693973113,39.27287567205024],[-76.57158430156397,39.27287384107711],[-76.57158165525775,39.27287201457805],[-76.57157899964807,39.2728701934496],[-76.5715763347295,39.27286837859249],[-76.57157365933787,39.27286657090328],[-76.57157097461557,39.27286477308839],[-76.5715682794147,39.27286298334207],[-76.57156557255462,39.27286120526315],[-76.57156285519417,39.27285943885582],[-76.57156012617459,39.27285768411589],[-76.57155738547941,39.27285594374553],[-76.571554630791,39.27285421773637],[-76.57155186442158,39.2728525069975],[-76.57154908520153,39.27285081332627],[-76.57154629197184,39.27284913671843],[-76.5715434847217,39.27284747897546],[-76.57154066344565,39.27284584099816],[-76.57153782813829,39.27284422368719],[-76.57153497647643,39.27284262793487],[-76.57153208863429,39.27284107438658],[-76.57152909816496,39.27283962765495],[-76.571526014372,39.27283828236945],[-76.57152285239681,39.27283702597447],[-76.57151962968757,39.27283584772456],[-76.57151636370344,39.27283473507261],[-76.57151307074457,39.27283367546737],[-76.57150976710587,39.27283265725838],[-76.57150647024636,39.27283166789852],[-76.57150319413225,39.27283069753037],[-76.57149971410756,39.27283010203777],[-76.57149610155435,39.27283015101041],[-76.57149270009438,39.27283074661757],[-76.57148939524471,39.27283165604388],[-76.5714861264124,39.27283274215173],[-76.57148287114366,39.2728338850573],[-76.57147960233291,39.27283496756198],[-76.57136995378056,39.27275232475898],[-76.57071106351283,39.27277682775118],[-76.57070588285288,39.27277460013525],[-76.57070265045861,39.27277349298801],[-76.57069941581761,39.27277237412244],[-76.57069617534968,39.27277126064016],[-76.57069292081196,39.27277017412929],[-76.57068964861351,39.27276913349291],[-76.570686349358,39.27276815941423],[-76.57068301944895,39.27276727169698],[-76.57067964729775,39.27276647029886],[-76.57067622842149,39.27276572998192],[-76.57067277195486,39.27276507329877],[-76.57066928818587,39.27276452370696],[-76.57066578856143,39.27276410466823],[-76.57066228219982,39.27276384143737],[-76.57065877367656,39.27276374393957],[-76.57065525046205,39.27276377609833],[-76.570651717388,39.27276390550373],[-76.57064817695203,39.27276410243961],[-76.57064463165163,39.27276433718977],[-76.57064108746104,39.27276458005077],[-76.57063754572985,39.27276479950078],[-76.57063401126796,39.27276496673276],[-76.57063048658384,39.27276505022911],[-76.57062697533401,39.27276502027784],[-76.5706234671977,39.27276485882599],[-76.57061985740859,39.27276464295635],[-76.57061619130397,39.27276434941484],[-76.57061254568498,39.27276392623767],[-76.57060900084566,39.27276331877173],[-76.57060563591028,39.27276247416106],[-76.57060253231539,39.27276134045891],[-76.5705997377979,39.27275988090848],[-76.57059705929439,39.27275820920119],[-76.5705944571146,39.27275637293263],[-76.57059194503951,39.2727543928708],[-76.57058953452693,39.27275229067598],[-76.57058724052217,39.27275008621972],[-76.57058507564186,39.27274780116652],[-76.57058305136019,39.27274545447443],[-76.57058118376487,39.27274306872152],[-76.5705794831712,39.2727406628615],[-76.57057795996536,39.27273824413857],[-76.57057659708047,39.27273576024584],[-76.57057537711735,39.27273321382199],[-76.57057428263842,39.27273061381096],[-76.57057329852411,39.2727279691651],[-76.5705724073368,39.27272528882836],[-76.57057159163372,39.27272258264534],[-76.57057083630049,39.27271985866774],[-76.57057012504774,39.27271712764517],[-76.57056943928994,39.27271439671581],[-76.57056876389655,39.27271167663358],[-76.5705680825999,39.27270897454504],[-76.57056743035659,39.27270625905123],[-76.57056683631264,39.2727035014342],[-76.57056629696962,39.2727007052842],[-76.57056580649504,39.27269787688528],[-76.57056535792492,39.27269501801356],[-76.57056494658558,39.27269213495718],[-76.57056456666088,39.27268923129814],[-76.57056421349907,39.27268630972156],[-76.57056388010879,39.27268337650728],[-76.5705635618328,39.27268043524138],[-76.57056325401386,39.27267748950988],[-76.57056294851269,39.27267454378687],[-76.57056264298969,39.27267160166681],[-76.57056233045901,39.27266866852879],[-76.57056200394575,39.27266574795042],[-76.57056165994605,39.27266284442265],[-76.57056129264916,39.27265996062656],[-76.57056089622273,39.27265710284616],[-76.57056046369176,39.27265427465905],[-76.57055999271671,39.27265147965971],[-76.5705594751583,39.27264872232227],[-76.57055890519497,39.27264600712923],[-76.57055827932835,39.27264333767092],[-76.5705575917369,39.27264071842978],[-76.57055683544016,39.27263815388416],[-76.57055600462205,39.2726356476159],[-76.57055509577876,39.272633204116],[-76.57055410308874,39.27263082786697],[-76.57055301957153,39.27262852334717],[-76.57055184057535,39.27262629324188],[-76.57055055911441,39.27262414293013],[-76.57054917284906,39.2726220760064],[-76.57054760607183,39.27262015524759],[-76.57054551164337,39.27261867663728],[-76.57054290237657,39.27261762941312],[-76.57053985166658,39.27261694988901],[-76.57053642941577,39.2726165770684],[-76.5705327078605,39.27261644726096],[-76.57052875922078,39.27261649947864],[-76.57052465572757,39.27261667093188],[-76.5705204684529,39.27261689882691],[-76.57051627077571,39.27261712217994],[-76.57051213261475,39.27261727729216],[-76.57050812619556,39.27261730227487],[-76.57050432490793,39.27261713434276],[-76.57050079981316,39.27261671250361],[-76.5704976231532,39.27261597216648],[-76.57049511271154,39.27261448933159],[-76.57049332465326,39.27261217502856],[-76.57049201590169,39.27260936435442],[-76.5704909398982,39.27260639329421],[-76.57048985356613,39.27260359694493],[-76.57048867670976,39.27260101374628],[-76.57048752079471,39.27259841711271],[-76.57048639625076,39.27259580708235],[-76.57048531118443,39.27259318458559],[-76.57048427486663,39.2725905496564],[-76.57048329772708,39.27258790233287],[-76.57048238902571,39.27258524445041],[-76.57048155803894,39.27258257514221],[-76.57048081519643,39.27257989444635],[-76.57048016395838,39.27257720507786],[-76.5704795707233,39.27257450601309],[-76.57047902273834,39.27257179810608],[-76.57047851766943,39.27256908405066],[-76.57047805204532,39.27256636293338],[-76.57047762122521,39.272563635638],[-76.57047722172162,39.27256090395328],[-76.57047685005244,39.27255816876732],[-76.57047650389457,39.27255543097238],[-76.57047645427595,39.27255501283521],[-76.57047617860712,39.27255269145219],[-76.5704758718723,39.27254995019833],[-76.57047557904384,39.27254720899532],[-76.5704752966397,39.27254446873123],[-76.57047502117777,39.27254173029404],[-76.57047475613471,39.27253899369646],[-76.57047453050383,39.27253625544149],[-76.57047434081386,39.27253351461566],[-76.57047418358289,39.272530772107],[-76.57047405070436,39.27252802698513],[-76.57047393752639,39.27252528193527],[-76.57047383594794,39.27252253512631],[-76.57047374132263,39.27251978834279],[-76.57047364669732,39.27251704155924],[-76.57047354511342,39.27251429565104],[-76.57047343078213,39.27251154969622],[-76.5704732978927,39.2725088063758],[-76.5704731383441,39.27250606385863],[-76.57047294865431,39.27250332303278],[-76.57047272070587,39.27250058476932],[-76.57047244869898,39.27249784994778],[-76.57047215352587,39.27249511324001],[-76.57047184677515,39.27249237468831],[-76.57047152497015,39.27248963428003],[-76.57047118462349,39.27248689380392],[-76.57047082224763,39.27248415504882],[-76.570470434366,39.27248141800197],[-76.57047001980347,39.27247868536136],[-76.57046957160674,39.27247595710151],[-76.57046908977055,39.27247323412331],[-76.57046856964297,39.27247051911195],[-76.57046800890632,39.2724678120589],[-76.57046740290885,39.27246511564961],[-76.5704667493383,39.27246242897468],[-76.57046601578482,39.27245974561035],[-76.5704651408617,39.2724570599274],[-76.57046411633148,39.27245439261345],[-76.5704629374225,39.27245176617009],[-76.57046159935213,39.2724492049006],[-76.57046009388293,39.27244672949245],[-76.57045841274474,39.27244436603767],[-76.57045636077525,39.27244219218908],[-76.57045395548815,39.27244018639237],[-76.57045135145857,39.27243827535002],[-76.57044870559035,39.27243638397147],[-76.57044617245307,39.27243443985991],[-76.57043857016302,39.27221755787936],[-76.57053621001006,39.27221455419777],[-76.57080765997287,39.27220249978687],[-76.57079405617488,39.27208405419589],[-76.57043473050489,39.27209911462889],[-76.57042308779432,39.27197307369021],[-76.57052658993913,39.27196855745395],[-76.57052927506092,39.27195840842511],[-76.57053043119701,39.27195349987081],[-76.57053001097181,39.27195074559083],[-76.57052954095434,39.27194798482345],[-76.57052929562819,39.27194524559533],[-76.57052955295903,39.27194255504516],[-76.5705304507354,39.27193993259294],[-76.57053172376074,39.27193734754356],[-76.57053304316716,39.27193475815994],[-76.57053408239376,39.27193212451496],[-76.57053478935228,39.2719294365097],[-76.57053549406939,39.27192673588554],[-76.5705361860991,39.27192402530653],[-76.5705368445712,39.27192130649788],[-76.5705374497689,39.27191858208979],[-76.57053798197005,39.2719158556133],[-76.57053842030983,39.27191312789282],[-76.57053874507154,39.27191040155853],[-76.57053893537407,39.27190768013713],[-76.57053899012404,39.27190495281548],[-76.57053899082241,39.27190215683792],[-76.57053890952066,39.27189931462138],[-76.57053869498404,39.27189646651304],[-76.57053829367116,39.27189365105012],[-76.57053765550619,39.27189090858395],[-76.57053672694781,39.27188827765173],[-76.57053545675586,39.2718857995014],[-76.57053381931576,39.27188349385611],[-76.57053192399005,39.27188128995516],[-76.57052981843316,39.27187916455296],[-76.57052753748687,39.27187710516604],[-76.57052511483963,39.27187509840616],[-76.57052258416893,39.27187313268647],[-76.57051998148614,39.27187119372642],[-76.57051733815118,39.27186926993068],[-76.57051469017551,39.27186734701866],[-76.57051207239004,39.27186541430854],[-76.57050951617083,39.27186345750281],[-76.57050705751853,39.27186146412237],[-76.57040543068072,39.27186634750727],[-76.57034779302353,39.27186901461494],[-76.57030801978794,39.27186778998675],[-76.5702870967347,39.2718667658281],[-76.57027617132715,39.27186688258686],[-76.57027062306454,39.27186642991798],[-76.57026707480114,39.27186620435398],[-76.5702635182731,39.27186600398112],[-76.57025995823032,39.2718658099006],[-76.5702564040527,39.27186560413152],[-76.57025286166544,39.27186536507708],[-76.57024933811982,39.27186507654933],[-76.57024584049442,39.27186471785647],[-76.57024237585145,39.2718642710091],[-76.57023895126943,39.27186371531537],[-76.570235574964,39.27186303369089],[-76.57023225870918,39.27186219555259],[-76.57022900605244,39.27186118920355],[-76.57022580637323,39.27186004613175],[-76.57022264673321,39.27185879781662],[-76.57021951652281,39.2718574739447],[-76.57021640164488,39.27185610599125],[-76.57021329032547,39.27185472453923],[-76.57021017194397,39.27185336107661],[-76.57020703240327,39.27185204707862],[-76.57020386109367,39.27185081223178],[-76.57020064507685,39.2718496880156],[-76.57019737257886,39.27184870501302],[-76.57019403184208,39.27184789110474],[-76.57019063583196,39.27184721030757],[-76.57018719401036,39.27184663112937],[-76.57018371574615,39.2718461373905],[-76.5701802069155,39.27184571560103],[-76.57017667341076,39.27184534956866],[-76.57017312227237,39.27184502490692],[-76.57016956054068,39.27184472722936],[-76.57016599642037,39.27184444125288],[-76.57016243464513,39.27184415078106],[-76.5701588834086,39.27184384233232],[-76.57015534743907,39.27184350061104],[-76.57015183610001,39.27184311033834],[-76.570148355273,39.27184265712358],[-76.57014491200934,39.27184212477869],[-76.5701415121906,39.27184149891291],[-76.57013816285172,39.27184076604065],[-76.57013486989064,39.27183990906872],[-76.57013158330228,39.27183895663878],[-76.57012827978427,39.27183792938317],[-76.57012497556586,39.27183682646042],[-76.57012168571218,39.2718356479258],[-76.57011842412928,39.27183439383012],[-76.57011520588225,39.27183306422855],[-76.57011204603613,39.27183165917625],[-76.5701089596559,39.27183017872837],[-76.57010596064777,39.27182862293581],[-76.57010306523553,39.27182699185797],[-76.57010028732545,39.27182528554572],[-76.57009764314677,39.27182350315775],[-76.57009514544139,39.27182164564148],[-76.5700928104386,39.27181971215555],[-76.57009065339437,39.27181767122895],[-76.57008866162701,39.27181551200609],[-76.57008681883609,39.27181324703801],[-76.570085105234,39.27181089066464],[-76.5700835021973,39.27180845632925],[-76.57008198994914,39.27180595657018],[-76.57008054986065,39.27180340573148],[-76.57007916215508,39.27180081635161],[-76.57007781052118,39.27179820278305],[-76.57007647401795,39.27179557846063],[-76.57007513402728,39.27179295592696],[-76.57007377076157,39.27179034952187],[-76.57007236792053,39.27178777179648],[-76.57007090339874,39.27178523708201],[-76.57006932372016,39.27178277310661],[-76.57007754170861,39.2716809498778],[-76.57054440798825,39.27166539927745],[-76.57053736423953,39.27152545740199],[-76.57010890010632,39.27153702213045],[-76.57010835400253,39.27153381610357],[-76.57010778894087,39.27153106129157],[-76.57010722156707,39.27152830557034],[-76.57010673292362,39.27152556184721],[-76.57010640639267,39.27152283943512],[-76.57010632302207,39.27152015034075],[-76.57010668338432,39.27151747998511],[-76.57010798347467,39.2715148283823],[-76.57011002806377,39.27151247585693],[-76.57011254473286,39.27151062768743],[-76.57011535313725,39.27150902018969],[-76.57011835080036,39.27150754399583],[-76.57012143504899,39.27150612216486],[-76.57012450435265,39.27150468046222],[-76.57012745720797,39.27150314014966],[-76.57013020712193,39.2715014315516],[-76.57013300527407,39.27149960332806],[-76.57013575660115,39.2714976614364],[-76.57013817742697,39.27149556520462],[-76.57013997828669,39.27149327303877],[-76.57014097735686,39.27149076535729],[-76.57014165020655,39.27148816190127],[-76.57014213105955,39.27148549649039],[-76.57014245461562,39.27148278006082],[-76.57014265441033,39.27148002444529],[-76.5701427674665,39.27147723968775],[-76.57014282731419,39.27147443852168],[-76.57014287097081,39.27147163189173],[-76.57014293081848,39.27146883072565],[-76.57014304271574,39.27146604596387],[-76.57014324251038,39.27146329034829],[-76.57042934458804,39.27145202006753],[-76.57044979774405,39.27144469327419],[-76.5704495155383,39.27144096396774],[-76.57044931082552,39.27143821678067],[-76.57044929380676,39.27143547658546],[-76.5704495432832,39.27143274367033],[-76.57044987849207,39.27143001467179],[-76.57045026815545,39.27142728767397],[-76.57045069605516,39.27142456171674],[-76.570451148285,39.27142183674925],[-76.57045160631446,39.27141911090226],[-76.570452056232,39.27141638502555],[-76.57045248066589,39.27141365725412],[-76.5704528657156,39.2714109266363],[-76.57045323457965,39.27140818965394],[-76.57045368583036,39.27140543495753],[-76.5704542090164,39.27140266611197],[-76.57045478209798,39.27139988663973],[-76.57045538419416,39.27139710006741],[-76.5704559932542,39.27139431171908],[-76.57045658840262,39.27139152422054],[-76.57045714759431,39.27138874199515],[-76.57045764878393,39.27138596946606],[-76.57045807224401,39.27138321106492],[-76.57045839594025,39.27138046941353],[-76.57045859898076,39.27137774983995],[-76.57045865817246,39.27137505496175],[-76.57045855378236,39.27137239011136],[-76.57045826377072,39.27136975881124],[-76.57045776725113,39.27136716548875],[-76.57045696910616,39.27136462510916],[-76.5704558240865,39.27136214651456],[-76.570454380918,39.27135972087554],[-76.5704526894907,39.27135733846604],[-76.5704507996839,39.27135499136165],[-76.57044876138218,39.27135267073712],[-76.57044662447015,39.27135036776721],[-76.57044443767369,39.27134807362247],[-76.57044225088282,39.27134577857696],[-76.57044011281239,39.27134347560271],[-76.57043807567017,39.27134115498224],[-76.57043618586431,39.2713388078776],[-76.57043070566661,39.27127964617717],[-76.57044950710345,39.27127619564796],[-76.57044336397996,39.27117779951715],[-76.57054813181968,39.271170374814],[-76.57053556056154,39.27099057268079],[-76.5704688258082,39.27096560797835],[-76.56964363438517,39.27099722157854],[-76.56962983443445,39.27079798167846],[-76.57057226237622,39.27076028436453],[-76.57057938850376,39.27075716674353],[-76.57058428232867,39.27075487236805],[-76.5705875817832,39.27075349995299],[-76.57059093094198,39.27075214843718],[-76.57059424426409,39.27075078237797],[-76.57059743853732,39.27074936453966],[-76.570600430544,39.27074785858733],[-76.57060313358444,39.27074622907411],[-76.57060546676418,39.27074443877276],[-76.57060734107675,39.27074245042643],[-76.570608609836,39.27074018333058],[-76.57060929038077,39.27073764475477],[-76.5706095109487,39.27073490002306],[-76.57060939743809,39.27073201805411],[-76.57060907576334,39.27072906506425],[-76.57060867415117,39.27072610817902],[-76.5706083173464,39.27072321541212],[-76.57060811741746,39.27072044302076],[-76.57060795904832,39.27071769690362],[-76.57060777175207,39.27071494347456],[-76.57060753927242,39.2707121880788],[-76.57060724418874,39.27070943695792],[-76.570606865604,39.27070669634102],[-76.57060667294633,39.2707055948992],[-76.57060638842617,39.27070397067661],[-76.57060579407042,39.270701267103],[-76.57060506280939,39.27069859005184],[-76.57060419926749,39.27069594134154],[-76.57060327075496,39.27069330500448],[-76.57060228888189,39.27069067747998],[-76.57060125828899,39.27068805788421],[-76.57060018825786,39.27068544444965],[-76.57059908110071,39.27068283808544],[-76.57059794378134,39.27068023701551],[-76.57059678326372,39.27067763946386],[-76.57059560302433,39.27067504544314],[-76.57059441118032,39.27067245408229],[-76.57059321238347,39.27066986269601],[-76.57059201242247,39.27066727220618],[-76.57059081710223,39.27066468083257],[-76.5705896322225,39.27066208769562],[-76.5705884647416,39.27065949191992],[-76.5705873181415,39.27065689261752],[-76.57058619590414,39.2706542889003],[-76.57058507714332,39.27065168519582],[-76.57058395722376,39.27064908148709],[-76.57058283614548,39.2706464777741],[-76.57058171506726,39.27064387406112],[-76.57058059398913,39.27064127034807],[-76.57057947174684,39.27063866753153],[-76.57057834951001,39.27063606381425],[-76.57057722726788,39.27063346099772],[-76.57057610503122,39.27063085728043],[-76.57057498278924,39.27062825446383],[-76.5705738617116,39.27062565075077],[-76.5705727394752,39.27062304703343],[-76.57056725712437,39.27061784667554],[-76.57014684727258,39.27063104073812],[-76.56953130831555,39.27065397975641],[-76.56908438406681,39.27067127130605],[-76.56904549262134,39.27008764309446],[-76.56903000042404,39.269784205989],[-76.56902012659253,39.26965874779768],[-76.56901634104544,39.26961270468842],[-76.56916415753594,39.26960680295689],[-76.56988203822041,39.26958272565845],[-76.56987615401724,39.26946795984626],[-76.56987135220915,39.26937957156556],[-76.56970889417913,39.26938398111521],[-76.56963995085307,39.26938622722385],[-76.56964090574847,39.26937667087759],[-76.56963751454312,39.26937502716066],[-76.56963474255608,39.26937331725443],[-76.56963289194836,39.26937216289502],[-76.56963198232114,39.26937158036814],[-76.56963015158804,39.26937039725701],[-76.56962924897928,39.26936980394661],[-76.56962743111332,39.26936860106568],[-76.56962653434783,39.2693679996698],[-76.5696247258398,39.26936678241082],[-76.56962383257812,39.26936617652392],[-76.56962202874915,39.2693649520759],[-76.56962113665722,39.26936434439173],[-76.56961933515687,39.26936311815068],[-76.56961844074193,39.26936251135871],[-76.56961663573794,39.26936128960865],[-76.56961573898356,39.26936068641117],[-76.56961392812009,39.26935947544876],[-76.56961302668131,39.26935888034102],[-76.56961120413699,39.26935768464884],[-76.56961029567991,39.26935710032453],[-76.56960845908792,39.26935592800077],[-76.56960754128396,39.26935535625296],[-76.56960568482299,39.26935421178015],[-76.56960475648599,39.26935365710828],[-76.5696028777947,39.26935254768386],[-76.56960193659614,39.26935201188097],[-76.56960003100653,39.26935094289248],[-76.56959907460694,39.26935042955304],[-76.56959713860431,39.26934940729294],[-76.5695961658285,39.26934891911495],[-76.56959419358061,39.26934794986722],[-76.56959320324789,39.26934749044946],[-76.56959119124555,39.26934657960591],[-76.56959017986314,39.26934615163782],[-76.56958812575041,39.26934530549514],[-76.56958709332373,39.26934490807596],[-76.56958500062632,39.2693441185402],[-76.56958395417922,39.26934373998573],[-76.56958183578595,39.26934298368411],[-76.56958077882771,39.26934261860259],[-76.56957863940664,39.26934189014766],[-76.56957757193722,39.26934153853912],[-76.56957541150466,39.26934083522857],[-76.56957433584712,39.26934049620078],[-76.56957215788503,39.26933981714667],[-76.56957107288602,39.26933948979455],[-76.56956887739982,39.26933883409608],[-76.56956778422368,39.26933851752317],[-76.56956557353645,39.26933788428815],[-76.56956447218859,39.26933757759372],[-76.56956224631126,39.26933696502057],[-76.56956113910381,39.26933666911383],[-76.56955889920067,39.26933607630617],[-76.56955778498029,39.26933579028213],[-76.56955553337436,39.2693352163476],[-76.56955441331083,39.269334938409],[-76.56955215116098,39.2693343833519],[-76.56955102525423,39.26933411349876],[-76.56954875257685,39.26933357461677],[-76.56954762313907,39.26933331375836],[-76.56954534109838,39.26933279015509],[-76.56954420698716,39.26933253558483],[-76.56954191674198,39.26933202726446],[-76.56954077911064,39.26933177988747],[-76.5695384829895,39.26933128505695],[-76.56953734300234,39.26933104397667],[-76.5695350410162,39.26933056083459],[-76.5695338986732,39.26933032605098],[-76.56953159198079,39.26932985460155],[-76.5695304472929,39.2693296243132],[-76.56952813822286,39.26932916276343],[-76.56952699234337,39.26932893787526],[-76.56952468205442,39.26932848622938],[-76.5695235349943,39.26932826493992],[-76.56952122349747,39.26932782139649],[-76.56952007641553,39.26932760370997],[-76.56951776488044,39.26932716647172],[-76.56951662009422,39.26932695239665],[-76.56951430967978,39.26932652146778],[-76.56951316488265,39.26932630919418],[-76.56951085675308,39.26932588367822],[-76.56950971425722,39.26932567411534],[-76.569507410741,39.26932525221928],[-76.56950626939853,39.26932504356135],[-76.56950397165997,39.26932462438871],[-76.56950283378302,39.26932441754499],[-76.56950053832388,39.26932400468601],[-76.56949939924985,39.26932380414324],[-76.56949710023241,39.26932340478268],[-76.56949595878612,39.26932321323883],[-76.56949365388175,39.26932282916967],[-76.56949251007418,39.26932264482326],[-76.56949019928294,39.26932227604551],[-76.56948905311403,39.2693220988966],[-76.5694867387535,39.26932174541872],[-76.56948558906447,39.269321575463],[-76.56948326998673,39.2693212354793],[-76.56948211910067,39.26932107182452],[-76.56947979530582,39.26932074533495],[-76.56947864206388,39.26932058797689],[-76.56947631471614,39.26932027408495],[-76.56947516027718,39.26932012302782],[-76.56947282938195,39.26931982083284],[-76.56947167259808,39.26931967427089],[-76.56946933816087,39.26931938287205],[-76.56946818133879,39.26931924261534],[-76.5694658433651,39.2693189611119],[-76.56946468419801,39.26931882535036],[-76.56946234501092,39.26931855285007],[-76.56946118465773,39.26931842158801],[-76.56945884309837,39.26931815808663],[-76.56945768157006,39.26931802952256],[-76.56945533880271,39.2693177741236],[-76.56945417608823,39.26931765005894],[-76.56945183212385,39.26931740096089],[-76.56945066938754,39.26931728049918],[-76.56944832306735,39.26931703769779],[-76.56944715916131,39.26931691903332],[-76.56944481280283,39.2693166825371],[-76.56944364888041,39.26931656657482],[-76.56944130250014,39.26931633368149],[-76.56944013856129,39.26931622042144],[-76.56943779099493,39.26931599202756],[-76.56943662705062,39.26931587966821],[-76.56943428062668,39.26931565398075],[-76.56943311667149,39.26931554342285],[-76.56943077023112,39.26931532043758],[-76.56942960743474,39.26931520988389],[-76.56942726214231,39.26931498870427],[-76.56942609934049,39.26931487905131],[-76.56942375520686,39.26931465787587],[-76.56942259356389,39.2693145482271],[-76.5694202505836,39.26931432795661],[-76.56941908890232,39.26931422461305],[-76.56941674346783,39.26931402685267],[-76.56941557934874,39.26931394331701],[-76.56941322902763,39.26931378697394],[-76.56941206247612,39.26931372234546],[-76.56940970613687,39.26931360291171],[-76.56940853716395,39.26931355538892],[-76.5694061771679,39.26931346566704],[-76.56940500696507,39.26931342984963],[-76.56940264335596,39.26931336263362],[-76.56940147195063,39.26931333401795],[-76.56939910710626,39.26931327940806],[-76.56939793451474,39.26931325529186],[-76.569395569643,39.26931320518563],[-76.56939439705702,39.26931318016862],[-76.56939203220715,39.26931312645935],[-76.56939086081275,39.26931309604208],[-76.56938849835704,39.26931302973076],[-76.56938732702272,39.26931298940522],[-76.56938496816916,39.26931290238939],[-76.56938379923453,39.26931284856113],[-76.5693814440432,39.26931273093254],[-76.56938027868885,39.26931266000277],[-76.56937792836781,39.26931250365901],[-76.56937676546224,39.26931241111976],[-76.5693744211594,39.2693122178665],[-76.56937325948374,39.26931211362174],[-76.56937091530664,39.26931189965125],[-76.56936975367466,39.26931178820046],[-76.56936740958504,39.26931155981793],[-76.56936624799687,39.26931144116111],[-76.56936390515354,39.2693111983708],[-76.56936274476789,39.26931107251223],[-76.56936040432969,39.26931081531836],[-76.56935924398778,39.26931068225384],[-76.56935690480131,39.26931040975145],[-76.5693557468262,39.2693102685886],[-76.56935341120916,39.26930998078618],[-76.56935225443661,39.26930983242159],[-76.56934992239438,39.26930952841842],[-76.56934876682988,39.2693093719513],[-76.56934643836794,39.26930905084659],[-76.56934528632908,39.26930888628548],[-76.56934296260629,39.26930854808348],[-76.56934181293968,39.26930837452336],[-76.56933949511483,39.26930801922833],[-76.56933834782055,39.26930783666919],[-76.56933603589908,39.26930746338044],[-76.56933489213591,39.2693072718265],[-76.56933258728212,39.26930687964747],[-76.56933144705552,39.26930667819807],[-76.56932914928038,39.26930626532723],[-76.56932801376554,39.26930605128432],[-76.56932572308543,39.2693056150195],[-76.5693245899538,39.26930539017611],[-76.56932230636869,39.26930493051726],[-76.56932117561486,39.26930469577412],[-76.56931889793863,39.26930421722075],[-76.56931777071044,39.2693039743836],[-76.56931549661455,39.26930347872871],[-76.56931437058891,39.2693032286898],[-76.56931210121027,39.26930271954065],[-76.56931097754058,39.26930246320493],[-76.56930871053977,39.26930194415602],[-76.56930758805075,39.26930168422152],[-76.56930532341131,39.26930115797505],[-76.56930420093325,39.26930089623907],[-76.56930193748003,39.26930036549304],[-76.56930081501294,39.2693001019555],[-76.56929855272404,39.26929957031288],[-76.5692974302515,39.26929930767606],[-76.56929516563406,39.26929877782643],[-76.56929404315066,39.26929851699104],[-76.56929177734169,39.26929799254155],[-76.56929065367756,39.26929773530491],[-76.56928838549638,39.26929721985432],[-76.56928725948735,39.26929696711291],[-76.5692849877642,39.26929646245848],[-76.56928386055266,39.26929621691871],[-76.56928158410682,39.26929572665918],[-76.56928045452845,39.26929548921762],[-76.56927817333809,39.26929501695599],[-76.56927704022323,39.26929478940985],[-76.56927475311862,39.26929433694337],[-76.56927361646171,39.26929412019344],[-76.56927132226761,39.26929369022003],[-76.56927018324392,39.26929348156828],[-76.56926788548596,39.26929306599403],[-76.56926674410639,39.269292863639],[-76.56926444280641,39.26929245886088],[-76.56926330024075,39.26929226100533],[-76.56926099540425,39.26929186612261],[-76.569259851647,39.26929167366722],[-76.56925754444376,39.26929128688267],[-76.56925639950033,39.26929109892674],[-76.5692540887715,39.26929072023612],[-76.56925294381169,39.26929053498242],[-76.56925063072151,39.2692901634892],[-76.56924948458112,39.26928998183419],[-76.56924717029386,39.26928961664186],[-76.56924602181944,39.26928943768055],[-76.56924370634063,39.26928907788842],[-76.56924255785529,39.2692889007286],[-76.56924024003158,39.26928854543161],[-76.56923909153528,39.26928837007323],[-76.56923677368972,39.26928801837919],[-76.56923562402372,39.26928784481802],[-76.56923330500301,39.26928749582186],[-76.56923215417277,39.26928732315717],[-76.5692298351411,39.2692869759625],[-76.56922868430539,39.26928680419848],[-76.56922636411502,39.26928645699947],[-76.56922521443266,39.26928628614045],[-76.5692228942368,39.26928593984209],[-76.5692217445654,39.26928576718153],[-76.5692194243751,39.26928541998235],[-76.5692182747037,39.26928524732177],[-76.56921595567765,39.26928489922604],[-76.56921480601179,39.26928472566468],[-76.56921248700765,39.26928437396592],[-76.56921133735273,39.26928419860302],[-76.56920902068265,39.26928384421042],[-76.56920787219745,39.26928366705021],[-76.56920555555473,39.2692833081538],[-76.569204407086,39.26928312829136],[-76.56920209278832,39.26928276489967],[-76.5692009454948,39.26928258233917],[-76.5691986323778,39.26928221534867],[-76.56919748390905,39.26928203548616],[-76.56919516844171,39.26928167389153],[-76.56919401995656,39.26928149673124],[-76.56919170098001,39.2692811405283],[-76.56919055131969,39.26928096606593],[-76.56918823114606,39.26928061616393],[-76.56918708147487,39.26928044350305],[-76.56918476012055,39.26928009719968],[-76.56918360811534,39.26927992723248],[-76.5691812855859,39.26927958362704],[-76.56918013473951,39.26927941366407],[-76.5691778110458,39.26927907095509],[-76.56917666019395,39.26927890189283],[-76.56917433650027,39.26927855918377],[-76.5691731856539,39.26927838922074],[-76.56917086312458,39.26927804561507],[-76.56916971228917,39.26927787385053],[-76.56916739094052,39.26927752664608],[-76.5691662401106,39.26927735398073],[-76.56916391994814,39.26927700227675],[-76.56916277145774,39.26927682601685],[-76.56916045248691,39.26927646891254],[-76.56915930517172,39.26927628995466],[-76.56915698972112,39.26927592565708],[-76.56915584243329,39.2692757421954],[-76.56915352935505,39.2692753688988],[-76.5691523844122,39.26927518094181],[-76.56915007602389,39.26927479865466],[-76.56914893227815,39.26927460439672],[-76.5691466274374,39.26927421041248],[-76.56914548604207,39.26927401075853],[-76.56914318475982,39.26927360327582],[-76.56914204688474,39.26927339642857],[-76.56913975031978,39.26927297545159],[-76.56913861481152,39.2692727605061],[-76.5691363241391,39.26927232333682],[-76.56913519099221,39.2692721011938],[-76.5691329073766,39.26927164693581],[-76.5691317766075,39.26927141489303],[-76.56912950008147,39.26927093814177],[-76.56912837520491,39.26927068990679],[-76.56912610815718,39.26927017896107],[-76.56912498918403,39.26926991273234],[-76.56912273162014,39.2692693666914],[-76.5691216162164,39.26926908516271],[-76.56911936810353,39.26926850943106],[-76.56911825741712,39.26926821440813],[-76.56911601642116,39.26926761167954],[-76.56911490927682,39.26926730586032],[-76.56911267535963,39.26926668243993],[-76.5691115694288,39.2692663676175],[-76.56910934024529,39.26926572800063],[-76.56910823782924,39.26926540688569],[-76.56910601218783,39.26926475647252],[-76.56910490979365,39.26926443175456],[-76.56910268766703,39.26926377504885],[-76.56910158644266,39.26926344853363],[-76.56909936432703,39.26926279002633],[-76.5690982630917,39.26926246531255],[-76.56909604210762,39.26926181131321],[-76.56909493969712,39.26926148929742],[-76.56909271749957,39.26926084430124],[-76.56909161389203,39.26926052858635],[-76.56908938814152,39.26925989618781],[-76.56908828332051,39.26925958947616],[-76.5690860539788,39.2692589759805],[-76.56908494561576,39.26925868006499],[-76.56908271033787,39.26925808996744],[-76.56908160073395,39.26925780755892],[-76.56907935833371,39.26925724535894],[-76.5690782439962,39.2692569791468],[-76.56907599444077,39.26925645024895],[-76.56907487535864,39.26925620203468],[-76.56907261629762,39.26925571183487],[-76.56907149245447,39.26925548432081],[-76.5690692226962,39.2692550382193],[-76.56906809292228,39.2692548332026],[-76.56906581012727,39.26925443479384],[-76.5690646743898,39.26925425767906],[-76.56906237848142,39.26925391957354],[-76.56906123442445,39.26925377665737],[-76.56905892187164,39.2692535078498],[-76.56905777065944,39.2692533982357],[-76.5690554426429,39.26925319512739],[-76.5690542854616,39.26925311431596],[-76.56905194434808,39.26925296880861],[-76.56905078121414,39.26925291409754],[-76.56904842821177,39.26925281808872],[-76.5690472591525,39.26925278497427],[-76.569044896628,39.26925273036579],[-76.5690437239829,39.26925271525349],[-76.5690413531225,39.2692526975458],[-76.56904017696274,39.26925268872593],[-76.56903780131935,39.26925269532136],[-76.56903662275444,39.26925270090494],[-76.56903424237737,39.2692527236967],[-76.5690330626099,39.26925273648197],[-76.5690306798715,39.26925276647115],[-76.56902949892876,39.26925278195439],[-76.56902711734914,39.26925281194772],[-76.56902593641739,39.26925282562941],[-76.56902355604034,39.269252848421],[-76.56902237629474,39.26925285760313],[-76.5690199994871,39.26925286509469],[-76.56901882213019,39.26925286257559],[-76.56901645011646,39.26925284396241],[-76.56901527633994,39.26925282434186],[-76.56901291146501,39.26925277512871],[-76.56901174124697,39.26925274200964],[-76.56900938114956,39.26925266939399],[-76.56900821212861,39.26925262997392],[-76.56900585325565,39.26925254655346],[-76.56900468426205,39.26925250262962],[-76.56900232542739,39.26925241290388],[-76.56900115644476,39.26925236717848],[-76.56899879763745,39.26925227294893],[-76.56899762867123,39.26925222452128],[-76.56899527103367,39.26925212849441],[-76.5689941020675,39.26925208006671],[-76.56899174328211,39.26925198223402],[-76.56899057431042,39.26925193470707],[-76.56898821550863,39.26925183957653],[-76.56898468888848,39.26925169782391],[-76.56898300117557,39.26922372820157],[-76.56898263570962,39.26921807634528],[-76.56897821918574,39.26915095925668],[-76.56897176654822,39.26905142057117],[-76.56896190141407,39.26890129035323],[-76.56895326072491,39.2687672622414],[-76.56894295839854,39.26861128352111],[-76.56906469327312,39.26860581043353],[-76.56927109070557,39.26859646459766],[-76.56985617956283,39.26856998894948],[-76.57025210659843,39.268552947473],[-76.57086683022362,39.2685291730448],[-76.57096154409889,39.26852551068128],[-76.57119012050005,39.26851660100329],[-76.57142942279519,39.26850731927285],[-76.57143051103067,39.2685293668299],[-76.57143116566421,39.2685426222131],[-76.57155429182805,39.26853832172021],[-76.5717953296592,39.2685294896542],[-76.57213344920979,39.26851710149835],[-76.57213257864467,39.26848236472737],[-76.57277172084811,39.2684599186585],[-76.57277342858261,39.26845997891704],[-76.57277513775253,39.26845999324161],[-76.57277684604557,39.26845996072304],[-76.57277855345103,39.26845988316288],[-76.57278025534451,39.26845975874269],[-76.5727819505618,39.26845958835902],[-76.5727836367799,39.26845937290427],[-76.57278531284547,39.26845911147334],[-76.57278697643542,39.26845880495868],[-76.57278862522678,39.26845845425257],[-76.57279025806614,39.26845805844999],[-76.57279187030758,39.26845761933562],[-76.57279346311523,39.26845713601293],[-76.57279503415528,39.26845661117574],[-76.57279657996214,39.26845604300988],[-76.57279809820201,39.26845543420915],[-76.57279959003365,39.26845478477782],[-76.57280105082187,39.26845409469902],[-76.57280248055046,39.26845336667498],[-76.57280387690723,39.2684525997965],[-76.57280523756917,39.26845179495592],[-76.57280656251996,39.2684509548555],[-76.57280784712451,39.26845007947836],[-76.57280909370037,39.26844916883299],[-76.57281029759069,39.26844822650538],[-76.57281145880089,39.26844725159496],[-76.57281257616677,39.2684462449981],[-76.57281364850782,39.26844521031375],[-76.57281467235305,39.26844414662832],[-76.57281564885048,39.26844305574769],[-76.57281657567708,39.2684419385641],[-76.5728174516578,39.26844079777558],[-76.57281827678716,39.26843963428293],[-76.57281904990107,39.26843844898264],[-76.57281976867641,39.268437242767],[-76.57282043309154,39.26843601923907],[-76.57282104199304,39.26843477749384],[-76.57282159536472,39.26843352023361],[-76.57282209204237,39.26843224835483],[-76.57282253200968,39.26843096455981],[-76.57282291410787,39.26842966884435],[-76.57282323831521,39.26842836481134],[-76.57282350347846,39.26842705155592],[-76.5728237095758,39.26842573268105],[-76.57282385660189,39.26842440908747],[-76.5728239445513,39.26842308167591],[-76.57282232577461,39.26840112227961],[-76.57281123688536,39.26822887318803],[-76.57280199176597,39.26808067678717],[-76.57279504659755,39.26797757487268],[-76.5727897986397,39.26788648366037],[-76.57278624200993,39.26787074151584],[-76.57278270439485,39.26786685444468],[-76.57277950490224,39.26786223898158],[-76.57277357154744,39.26785727758664],[-76.5727662293292,39.26785304519174],[-76.57275822138875,39.2678496769131],[-76.57275193929524,39.2678477849656],[-76.57274705934653,39.2678474348287],[-76.57256886621921,39.2678541330725],[-76.57236985544799,39.26786192263959],[-76.57233416991566,39.26786327535608],[-76.57231348172425,39.26786404313467],[-76.5722852571953,39.26786510413562],[-76.57225364583942,39.26786629601613],[-76.5722018887836,39.26786822699704],[-76.5721526582024,39.26787011221261],[-76.57169810339998,39.26788674360944],[-76.57025920214937,39.26793890203368],[-76.56891343916229,39.26799354840171],[-76.56888253747287,39.26749453562064],[-76.56886364043251,39.2672632589031],[-76.56888708325938,39.2672504243463],[-76.56900311922738,39.26724837314379],[-76.56900583902113,39.26723214047518],[-76.56920771562945,39.26722620469196],[-76.56956786156809,39.26721288056224],[-76.56957225454421,39.26723332608309],[-76.56960044925229,39.26723179812679],[-76.56959184102307,39.26708002588844],[-76.56966405539568,39.26701152589418],[-76.57024456722995,39.26698684932513],[-76.57066827181133,39.26697022879102],[-76.57120930514368,39.26694862426825],[-76.57168408546217,39.26692987517821],[-76.57214128185214,39.2669128805595],[-76.57241048565072,39.26689921275121],[-76.5727259803567,39.26688946175297],[-76.57271401876262,39.26667459045928],[-76.572426362025,39.26668712797027],[-76.57243203870381,39.26676832405495],[-76.57223969806496,39.26677467122713],[-76.57193741684362,39.26678721732556],[-76.57167107290259,39.26679825793126],[-76.57142739647652,39.2668076818092],[-76.57118746098166,39.26681856997897],[-76.57086945635818,39.26683101267896],[-76.57086432356712,39.26673183916918],[-76.57088439360375,39.26672765637756],[-76.57090126265413,39.26672411584426],[-76.57091565300084,39.26672096709385],[-76.57095602776371,39.26671383910175],[-76.57097453351645,39.26671002439857],[-76.57099452221655,39.26670645111101],[-76.57101224018578,39.26670260379873],[-76.57102828344793,39.26669841528069],[-76.57104709599642,39.26669292085339],[-76.57106284057717,39.26668964281699],[-76.57107850772076,39.26668633116726],[-76.57109576756474,39.26668523311505],[-76.57111433950976,39.26668522707928],[-76.5711304625175,39.26668586515423],[-76.57114689254882,39.26668651245501],[-76.57116624665117,39.26668727762253],[-76.57118264192025,39.26668792479141],[-76.57119560913293,39.26668843963876],[-76.571209292139,39.26669131170619],[-76.57122200599815,39.26669329117534],[-76.57123587938683,39.26669380572374],[-76.57125020693248,39.26669529385743],[-76.57126468193809,39.26669807603076],[-76.57127888406833,39.26670152647683],[-76.57129163710503,39.26670411860378],[-76.57130787722276,39.2667058965535],[-76.57132013709384,39.26670994431991],[-76.5713328808183,39.26671388665979],[-76.57134361724509,39.26671710736234],[-76.57135382512452,39.26671996762896],[-76.57136308331445,39.26672159127688],[-76.57137309018121,39.26672204755879],[-76.57138198369874,39.26672323029936],[-76.57138999628864,39.26672637259782],[-76.57139816450248,39.26672715545129],[-76.57140692611797,39.26672734596286],[-76.57141504032715,39.26672766922626],[-76.57142390319048,39.26672817177185],[-76.57143288630967,39.26672852522812],[-76.57144529398911,39.26672671222268],[-76.57145716309832,39.26672466305093],[-76.57147140703532,39.26672138488838],[-76.57148361731296,39.26671772008012],[-76.57149665059401,39.26671362770641],[-76.57150914892233,39.26670985135051],[-76.57152186402917,39.26670510115311],[-76.5715342036901,39.26670073421254],[-76.57154562736623,39.2666964567079],[-76.57156000712446,39.26669044970277],[-76.57157505361013,39.26668456402957],[-76.57159042554348,39.26667909029193],[-76.5716027106038,39.26667493662701],[-76.57161722115283,39.26666933723916],[-76.5716286299098,39.2666640742317],[-76.57164110835,39.26665879080411],[-76.57165517815858,39.26665268086998],[-76.57167102780781,39.26664658012808],[-76.57168529414645,39.26664112216245],[-76.57170078692117,39.26663559120196],[-76.57171233162757,39.26662892078161],[-76.57172244543193,39.26662164072636],[-76.57174437380368,39.26660598337449],[-76.57176270865956,39.26658784751226],[-76.57177461109377,39.26657566208613],[-76.57177958901744,39.26656897852279],[-76.57178272389757,39.26656277375282],[-76.57178623537793,39.26655618572797],[-76.57178964658799,39.26654931539699],[-76.57179258398611,39.26654184702971],[-76.57179525861262,39.26653356521135],[-76.57179707889455,39.26652629634423],[-76.5717989850011,39.26651709474154],[-76.57179997638937,39.26650911755055],[-76.5718010444228,39.26650188107042],[-76.57180297070752,39.26649298400079],[-76.57180467456935,39.26648503643057],[-76.57180669727144,39.26647648380587],[-76.57180914235421,39.2664668743186],[-76.57181112652837,39.26645644885628],[-76.57181348338533,39.26644763352471],[-76.57181634359318,39.26643951361979],[-76.57181915855244,39.26642429729814],[-76.57181990479988,39.26641584901201],[-76.57182053894533,39.26640619869232],[-76.5718213025227,39.26639449419229],[-76.57182201858417,39.26638355877505],[-76.57182269138876,39.26637326274542],[-76.57182335282408,39.26636312250724],[-76.57182402964806,39.26635273641539],[-76.57182462552412,39.26634366695148],[-76.57182511963381,39.26633609959786],[-76.57182578106841,39.26632595935956],[-76.57182636864792,39.26631692049142],[-76.57182701049425,39.26630714589351],[-76.57182771154017,39.26629639417791],[-76.57182840722253,39.26628576314565],[-76.57182901885588,39.26627638657702],[-76.571829586814,39.2662677187537],[-76.5718304892638,39.26625393128264],[-76.57183093741776,39.26624706636044],[-76.57183128484208,39.2662374987663],[-76.57183118867256,39.26622751069759],[-76.57183027635516,39.26621604689716],[-76.57182610331377,39.26619650302695],[-76.57182471652982,39.26618627875506],[-76.57182269833896,39.26617603326487],[-76.57182240147353,39.26616723527984],[-76.57182233677001,39.26615798595562],[-76.57182079149018,39.26614714317864],[-76.57181526195438,39.26612714397763],[-76.57181371236399,39.26611759198568],[-76.57180781230598,39.26609908220466],[-76.57180549908108,39.26609029848578],[-76.57180172743887,39.26607970611103],[-76.57179948771713,39.26606987957035],[-76.57179754173332,39.26606034324728],[-76.57179348278696,39.2660505073707],[-76.57178937440531,39.26604137481372],[-76.57178598188433,39.26603343838482],[-76.57178180221098,39.26602421458997],[-76.57177716622053,39.26601533502608],[-76.57177267217709,39.26600674422536],[-76.57176757684684,39.26599947806356],[-76.57176149350448,39.2659921416418],[-76.57175314445925,39.2659844699786],[-76.57174687015936,39.26597709412666],[-76.57174254717027,39.26597069011315],[-76.57173624876609,39.26596423655944],[-76.57172908203678,39.26595842568957],[-76.57172012358087,39.26595284969086],[-76.57171201163851,39.26594813340935],[-76.57170354098304,39.26594294922105],[-76.57169342273622,39.26593754193797],[-76.571685414716,39.2659330791495],[-76.57167047102332,39.26592714623145],[-76.57166195851153,39.26592198620818],[-76.57165380726767,39.26591610328425],[-76.57164326972507,39.26591105117163],[-76.57163119288815,39.26590722389269],[-76.57161782014805,39.26590442146348],[-76.57160460176107,39.26590119623472],[-76.57159138790247,39.26589837276364],[-76.57157848403403,39.26589506670938],[-76.57156344767704,39.26589296891106],[-76.57155180360881,39.26589097176247],[-76.57154217447855,39.26588650845432],[-76.5715315014096,39.26588298534175],[-76.57151971443012,39.26588009230482],[-76.57150794326053,39.26587707591916],[-76.57149516335052,39.26587607897719],[-76.57148038553314,39.26587549540238],[-76.57147124102977,39.26587329298373],[-76.5714626734638,39.26586957757738],[-76.57145238734365,39.26586913919963],[-76.57144237676137,39.26586874236105],[-76.57142846433081,39.26586819526614],[-76.57141352414374,39.26586763541109],[-76.57139792735813,39.2658704582452],[-76.57138138124526,39.26587275336517],[-76.57136350452929,39.26587241698564],[-76.57134777675638,39.26587179389607],[-76.5713345733395,39.26587127279804],[-76.57131857099235,39.26587064059539],[-76.57130067860169,39.26587174808076],[-76.57127934233705,39.26587170351896],[-76.57125851682667,39.26587112756314],[-76.57124022992605,39.26587040413847],[-76.5712216862487,39.26587056162565],[-76.57120537172571,39.26587173250677],[-76.57118674240844,39.26587378939616],[-76.57116809749225,39.2658761263646],[-76.57114932015322,39.26587928344649],[-76.57113113270576,39.26588185267634],[-76.57111121506668,39.26588367785526],[-76.57109080901476,39.26588578859205],[-76.57107254449353,39.26588826385144],[-76.57105354212428,39.26589184075495],[-76.57103805063672,39.26589430181704],[-76.57101945144598,39.26589654885207],[-76.5710017645195,39.26589931986086],[-76.57098333641443,39.26590316818054],[-76.57096682076258,39.26590617135739],[-76.57094733372102,39.26590807194464],[-76.5709338393655,39.26590775601454],[-76.57091663804191,39.26590974691781],[-76.57090013331681,39.26591324194472],[-76.57088252788508,39.26591537368779],[-76.57086547694234,39.26591568249781],[-76.57085069562929,39.26591510153327],[-76.57083297800808,39.26591470710447],[-76.57081539230212,39.26591530129804],[-76.5707973023277,39.26591458753178],[-76.57077862266947,39.26591385179064],[-76.57075643394604,39.26591297260898],[-76.57073707888965,39.26591220917103],[-76.57071855564217,39.2659114775951],[-76.57070184544743,39.26591081749935],[-76.5706861964505,39.26591019731149],[-76.57066880760256,39.26590966444078],[-76.57065268825153,39.26590902631501],[-76.57063936550881,39.26590850019871],[-76.5706283307862,39.26590806711867],[-76.57061294823453,39.26590822525834],[-76.57059313489091,39.26591272691358],[-76.57057304338319,39.26591417394357],[-76.57055680699821,39.26591353537676],[-76.57053729787354,39.2659127641363],[-76.5705175016766,39.26591213416409],[-76.57049367453789,39.26591334592957],[-76.57047354504763,39.26591417577733],[-76.57045387531106,39.26591524330455],[-76.57043592952219,39.26591597934637],[-76.57041543782408,39.26591691955451],[-76.57039492780612,39.26591878027732],[-76.57037800876947,39.26592007764201],[-76.57035815325085,39.26592101566371],[-76.57033933407347,39.26592054867194],[-76.57031974721878,39.2659209409037],[-76.5703027737594,39.26592070044678],[-76.57028683223912,39.26592093036146],[-76.57026719408194,39.2659257757956],[-76.57025099968918,39.26593044917123],[-76.57023298342716,39.26593287116257],[-76.57021784880035,39.26593227171081],[-76.57020728674331,39.26593185743566],[-76.5701800121907,39.26593078027889],[-76.57016310158161,39.26593011126608],[-76.5701463114611,39.26592944629493],[-76.57013523851589,39.26592901032636],[-76.57012015803939,39.2659288452306],[-76.57009394175033,39.26593269192455],[-76.57008418604653,39.26593325972545],[-76.57005155074674,39.26593623979141],[-76.57003818849064,39.26593687995734],[-76.57002677737314,39.26593679494082],[-76.5700079316827,39.26593611341602],[-76.56999292888915,39.26593708806038],[-76.56997882539743,39.26593766515388],[-76.56996373008104,39.26593765401508],[-76.56994867703939,39.26594003637076],[-76.56993347123814,39.26594238573743],[-76.56991683229637,39.26594182307397],[-76.56989921267888,39.26594112710582],[-76.56988190933527,39.26594044310263],[-76.56986811740191,39.2659398980658],[-76.5698516829365,39.26593924786669],[-76.5698353272501,39.26593860065621],[-76.56981704287668,39.26594147378739],[-76.56979925494642,39.26594273725971],[-76.56978078525648,39.26594234622256],[-76.56976291575108,39.26594311216635],[-76.56974853065223,39.26594254602624],[-76.56973210027057,39.26594542683748],[-76.56971213575535,39.2659467561849],[-76.56969463891713,39.26594606874287],[-76.56967607629589,39.26594533325518],[-76.5696582620589,39.2659446284308],[-76.56964378373561,39.26594242884305],[-76.56963091164654,39.26593924609629],[-76.56961430723199,39.26593757647209],[-76.56959684633468,39.26593688644488],[-76.56957848062257,39.26593616517491],[-76.56956074400875,39.26593546332253],[-76.56954477990172,39.26593483101836],[-76.56953111517203,39.26593413868219],[-76.56951750189522,39.26593203232658],[-76.56950237502957,39.26593072750937],[-76.5694867055034,39.26592986297816],[-76.56947074913712,39.26592852809289],[-76.56945877676726,39.26592430823811],[-76.56944710688285,39.26592141812451],[-76.56943279942728,39.26592085223034],[-76.56941975820216,39.26592033781702],[-76.56941029559279,39.26591996263129],[-76.56939945781431,39.2659195382648],[-76.56938689970113,39.2659199948461],[-76.56937466555073,39.26592282433725],[-76.5693605878374,39.2659266000797],[-76.56934559238043,39.26593113810812],[-76.56932899127067,39.26593484424164],[-76.56931544273239,39.26593658257963],[-76.56929966704101,39.26593850911544],[-76.56928615084058,39.26593797402916],[-76.5692762750906,39.26593789096786],[-76.56926640421737,39.26593719540111],[-76.56925879867966,39.26593689367145],[-76.5692524883467,39.26593664263122],[-76.56924244278224,39.26593800017369],[-76.56923086785923,39.26593855672687],[-76.56921729321816,39.26593829525194],[-76.56920775530509,39.26593791707137],[-76.56920006866048,39.26593761413956],[-76.5691917564217,39.26593728729391],[-76.56917989109779,39.26593681499998],[-76.56917046224201,39.26593717854887],[-76.56915747302125,39.26593878650765],[-76.56914666669452,39.26593909816098],[-76.56913725998561,39.26594096697253],[-76.56912774918737,39.26594375688745],[-76.56911803179409,39.26594736484213],[-76.56910918811762,39.26595020944784],[-76.56909743160259,39.26595300012814],[-76.5690850892318,39.26595380246309],[-76.56907673490238,39.26595525447244],[-76.56906567588761,39.26595576876485],[-76.56905468056479,39.26595533568152],[-76.56904420070852,39.26595550620213],[-76.5690327235519,39.26595637295891],[-76.56901955561143,39.26595649758177],[-76.56900788836624,39.26595603680663],[-76.56899688459352,39.26595756736204],[-76.56898266419466,39.26595869337568],[-76.56897101361824,39.26595854072086],[-76.56895876017626,39.26595805617088],[-76.56894614734283,39.26595817201375],[-76.56893214575459,39.26595780444954],[-76.56892094770008,39.26595736250263],[-76.56890983191707,39.26595692085667],[-76.56889844501922,39.26595647280975],[-76.56888358611027,39.26595588590818],[-76.56886115989145,39.26595499919115],[-76.56883554151044,39.26595273338344],[-76.56883179694123,39.2658057862845],[-76.5688211208702,39.26549993707575],[-76.56888396573235,39.26549628819284],[-76.56886506767563,39.26521357834773],[-76.56885372409536,39.26501224643383],[-76.56920599724255,39.26499882878572],[-76.5695822112498,39.26498562934385],[-76.57022753994198,39.26496083104675],[-76.57058269063711,39.26494745853457],[-76.57110181156067,39.26492795067893],[-76.57153008025824,39.26491217605055],[-76.57201333062126,39.26489392316998],[-76.57202066656603,39.2648926050581],[-76.57202535337018,39.26489036211042],[-76.57202855979008,39.26488803449984],[-76.57203378765783,39.26488273000973],[-76.5720355832215,39.26487954873336],[-76.57203881407378,39.2648743225383],[-76.57203939337782,39.26487087650734],[-76.5720402838421,39.26486675243086],[-76.5720296048531,39.26472935170766],[-76.5720271204493,39.26472147894361],[-76.57201966776121,39.26471621921804],[-76.57201115169143,39.26471166902521],[-76.57200433714873,39.26471011468413],[-76.57199688543083,39.264710074014],[-76.57198850697712,39.26471190986978],[-76.57198385494789,39.26471376831461],[-76.57198054781045,39.26471454443344],[-76.57152142214225,39.26473271765868],[-76.57101161696228,39.26475048417922],[-76.57047323191944,39.2647707390713],[-76.57009976012075,39.2647838685317],[-76.56956196513964,39.26480361067192],[-76.56907439848452,39.26482489033206],[-76.56878343352302,39.26483472787559],[-76.56876395566624,39.26462998097125],[-76.5697490722773,39.26459316606015],[-76.56989522637642,39.26458373804423],[-76.56988004111582,39.26444414253551],[-76.57046902015425,39.26442092634887],[-76.57097150121957,39.26440177617264],[-76.57129514158608,39.26438817379454],[-76.57138699484472,39.2643848789835],[-76.57138898668504,39.26438066705266],[-76.57144540135734,39.26437668526971],[-76.57152040495353,39.26435193650619],[-76.57156559989858,39.26433424726412],[-76.57157698783607,39.2643294922171],[-76.57162886354126,39.26430325831054],[-76.57174733807814,39.26425901769716],[-76.57173812302908,39.26424511315351],[-76.57162279792644,39.26429281969451],[-76.57156954455371,39.26431731279094],[-76.57151147643783,39.26433971112257],[-76.57144609895805,39.26435998666244],[-76.57138639533437,39.26436768472335],[-76.5713827943037,39.26430373861776],[-76.57096689743406,39.26432378070282],[-76.57097748151531,39.26431917140375],[-76.57098919935612,39.26431984565137],[-76.57099770508299,39.26432033791821],[-76.57100550943446,39.26431877657175],[-76.57101662768338,39.26431531950225],[-76.57102176097115,39.2643120567535],[-76.57102447413195,39.26431024440931],[-76.57102782470292,39.26430688236892],[-76.57103110372235,39.26430328046257],[-76.57103492463003,39.26429917070046],[-76.57104036541908,39.26429372741214],[-76.57104630992623,39.26428718972797],[-76.57105335633025,39.26427951389361],[-76.5710599278123,39.26427104364755],[-76.57106836737908,39.26426024272948],[-76.57107590635184,39.26425101576747],[-76.57108188411308,39.26424204252412],[-76.57108651252382,39.26423469654508],[-76.5710927481449,39.26422562065455],[-76.57109804127454,39.26421699891192],[-76.5711035331084,39.26421001008784],[-76.5711125666028,39.26420024992203],[-76.57112372959017,39.264191111857],[-76.57113278734185,39.26418270563369],[-76.57114180991353,39.26417360118539],[-76.57115134082181,39.26416378788622],[-76.57116170569087,39.26415422173997],[-76.57116904468354,39.26414606145254],[-76.57117759795189,39.26413561494368],[-76.57118611825933,39.2641260204411],[-76.57119180731543,39.2641174559875],[-76.57119746707357,39.26410606931795],[-76.57120200765483,39.26409388678567],[-76.57120892495148,39.26408129947862],[-76.57121545272337,39.26407123560389],[-76.57122071790938,39.26406033030446],[-76.5712268180835,39.26404796790724],[-76.57123257564444,39.26403554300645],[-76.57124009779018,39.2640239154231],[-76.57125203529692,39.26401238953294],[-76.57126175831446,39.26400011692616],[-76.5712682406018,39.26399105814023],[-76.5712780383447,39.26398060896097],[-76.57128687461142,39.26397183890702],[-76.57129460657677,39.26396115338945],[-76.57129861464416,39.26395195135463],[-76.57130060763632,39.26394773942903],[-76.57130590023692,39.26393497774094],[-76.57130939469592,39.26392543874476],[-76.57131333350951,39.26391542396305],[-76.57131517317649,39.26390551861826],[-76.57131601823194,39.26389664012216],[-76.57131711375521,39.26388773191424],[-76.57131790201048,39.26387943240513],[-76.57131866016553,39.26387151200979],[-76.57131960650874,39.26386159529685],[-76.57131972877424,39.26385248086299],[-76.57131812157388,39.26384481215514],[-76.57131435524437,39.26383682480012],[-76.57130843302323,39.26382855844336],[-76.57130308904172,39.26381990416424],[-76.57129765981168,39.26381116760373],[-76.57129132185835,39.26380094145681],[-76.5712843556521,39.26378902497496],[-76.57127851395602,39.26377778817471],[-76.57127161680869,39.26376614127403],[-76.57126563030975,39.26375489853982],[-76.57125999940133,39.26374406335022],[-76.57125537776123,39.26373150146814],[-76.57125458181703,39.26371479740578],[-76.57125588232894,39.26370111316881],[-76.57125743247565,39.26368485184255],[-76.57125886508292,39.26366982504123],[-76.5712600576071,39.263657328524],[-76.57126114256926,39.26364594946821],[-76.57126240227252,39.26363269024486],[-76.57128551811105,39.26363228101606],[-76.57149390423616,39.26350222923101],[-76.57182303751593,39.26349437524449],[-76.57190822204984,39.26349206907865],[-76.571932124631,39.26344882111909],[-76.57186661789301,39.26322793354516],[-76.57184014805655,39.26319850889929],[-76.57183713463417,39.26317039662094],[-76.57184747832183,39.26316891113402],[-76.57176990877947,39.26291266034852],[-76.57172287421854,39.26274669055294],[-76.57170702591375,39.26274906572926],[-76.5716928463278,39.26270572214639],[-76.5716878141402,39.26270742516205],[-76.57167689948886,39.26266663815792],[-76.57167984305825,39.26265889056967],[-76.5716570206243,39.26259615342288],[-76.57166280351834,39.26259543318372],[-76.57166265278217,39.26259161067023],[-76.57167463940283,39.26258821435452],[-76.57166004977205,39.26254485575825],[-76.57147705945573,39.26257543762063],[-76.57144901577684,39.26256167151276],[-76.57146122765462,39.2625443834774],[-76.57146626105087,39.26253710651596],[-76.57146972154308,39.2625320261951],[-76.57147075475899,39.26252767294488],[-76.57147196539094,39.26252310595901],[-76.5714731217487,39.26251812442123],[-76.57147415550719,39.26251252991293],[-76.57147731578101,39.26250036754948],[-76.57147834852606,39.2624935975336],[-76.57147899531054,39.26248588570623],[-76.57148018385308,39.26247864425577],[-76.57148098125187,39.26247170313567],[-76.57148148500643,39.26246541850555],[-76.57148247182772,39.26245934551735],[-76.57148630431331,39.26245176241493],[-76.57148729569626,39.2624437825149],[-76.5714880195027,39.26243617185457],[-76.57148858942489,39.26242775624575],[-76.57148908948912,39.26242035554898],[-76.57148949283365,39.26241438852382],[-76.57149012876201,39.26240502014195],[-76.57149073703849,39.26239485808144],[-76.57148836668712,39.26238692626554],[-76.57148375247118,39.26238005097072],[-76.57147711834415,39.26237283592074],[-76.57147001970331,39.26236694240534],[-76.57146264647986,39.26235970033662],[-76.57145468574653,39.26235265699492],[-76.57144660518577,39.26234684456693],[-76.57143855897387,39.26234167631376],[-76.5714313789157,39.26233756151806],[-76.57142602243322,39.26233387133423],[-76.57142401707941,39.26232958626219],[-76.57142348195914,39.26232475528516],[-76.57142410110262,39.26231624887831],[-76.57143019690429,39.2623139813702],[-76.57144547196692,39.26231460820471],[-76.57145433395287,39.26231497292977],[-76.57146568888362,39.26231543953087],[-76.57147471808582,39.26231574451306],[-76.57148204316009,39.26231349770196],[-76.57148693795857,39.2623076785789],[-76.5714887273695,39.26230128784528],[-76.57149249470737,39.26229221102913],[-76.57149770573274,39.26228544905332],[-76.57150198372948,39.26227546792635],[-76.57150646119483,39.26226622615786],[-76.57150936421282,39.26225905401655],[-76.57151268619201,39.26225177170851],[-76.57151467715312,39.26224654280145],[-76.5715197634385,39.26223318853985],[-76.57181191604116,39.26224053255532],[-76.57168691346429,39.2618677445863],[-76.57160264921907,39.26160493252407]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000359,"geom:area_square_m":3439801.545134,"geom:bbox":"-76.6118862104,39.2607558464,-76.5687639557,39.286621773","geom:latitude":39.274254,"geom:longitude":-76.585785,"iso:country":"US","lbl:latitude":39.277215,"lbl:longitude":-76.584305,"lbl:max_zoom":18,"mps:latitude":39.277215,"mps:longitude":-76.584305,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"reversegeo:latitude":39.277215,"reversegeo:longitude":-76.584305,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108797011,102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d9e8fc6288e6b0a185c177cfe240a8bd","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797023,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797023,"wof:lastmodified":1566624074,"wof:name":"Northwest Harbor","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797025.geojson b/fixtures/microhoods/1108797025.geojson new file mode 100644 index 0000000..2ed23d5 --- /dev/null +++ b/fixtures/microhoods/1108797025.geojson @@ -0,0 +1 @@ +{"id":1108797025,"type":"Feature","bbox":[-76.59875410163157,39.24300180011954,-76.59129893946017,39.24954822099649],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.59853979590186,39.24820552664212],[-76.59288308177334,39.24954822099649],[-76.59289097361527,39.24954400829252],[-76.59289906090609,39.24953597262726],[-76.59290452981932,39.24952553903625],[-76.5929076289003,39.24951158872259],[-76.59290740019894,39.24950096603067],[-76.59290714019275,39.24949034773402],[-76.5929069111891,39.24948098972436],[-76.59290664212057,39.24947013359254],[-76.59290905365071,39.24945971372095],[-76.59291390138749,39.24944931670868],[-76.59292435351351,39.24944001014531],[-76.59293411195966,39.24942924282666],[-76.59294288674809,39.24941929810437],[-76.59294534845158,39.24940942067038],[-76.59294340880273,39.2493967481955],[-76.59293574112273,39.24938717253089],[-76.592926342842,39.24937816735932],[-76.5929178784253,39.24936772959485],[-76.59291200254995,39.24935559924743],[-76.59291027162912,39.24933097605707],[-76.59290995320467,39.24931822182773],[-76.59290894607602,39.24930415008374],[-76.59290530553878,39.24929313093165],[-76.59290160774657,39.24928138916201],[-76.59289176535603,39.24925589472253],[-76.59288700875004,39.2492435376569],[-76.59287681206959,39.24921497846284],[-76.59287095960538,39.24917655286638],[-76.59287017801275,39.24916981868908],[-76.59286490322087,39.24912924585369],[-76.59285901757605,39.24908772058505],[-76.59285286696579,39.2490685569559],[-76.59285278274406,39.24905920575245],[-76.59285274538506,39.24905481255914],[-76.59285256076444,39.24903327536735],[-76.59285356167315,39.24900601608061],[-76.59285857154799,39.24898633357564],[-76.59286372169464,39.24896219093495],[-76.59286774176906,39.248945816234],[-76.59287232885328,39.24893581645925],[-76.59287556985197,39.24893226424479],[-76.59287915850193,39.2489297040847],[-76.59289142453098,39.24892306379207],[-76.5928982964501,39.24891685247807],[-76.59290357083515,39.24890780720098],[-76.5929038031343,39.24889012945959],[-76.59290199296795,39.24886761019391],[-76.59289590058289,39.24884576967393],[-76.5928880667976,39.24881406416777],[-76.59288486385145,39.24878755325578],[-76.59287405094463,39.24875070842308],[-76.59286942059882,39.2487213947631],[-76.592857026556,39.2487028958697],[-76.59285070817528,39.24867481491604],[-76.59284675151058,39.24865428611617],[-76.59284662038297,39.2486488711219],[-76.59284218414628,39.24863237431497],[-76.59283561091179,39.24861863186321],[-76.59282263549181,39.24860172081161],[-76.59280026131461,39.2485791410317],[-76.59278151734122,39.248563316116],[-76.59275485561358,39.24853649593494],[-76.5927507312535,39.24853106708902],[-76.59271254073967,39.24848700036272],[-76.5927067030084,39.24848035493395],[-76.59267037807562,39.24842633392921],[-76.59266552162651,39.2484198846679],[-76.59262619686218,39.24837221989654],[-76.59262091956319,39.2483664330419],[-76.59259035892725,39.24833005201114],[-76.59257978833504,39.24830209320111],[-76.59256945226187,39.2482807081366],[-76.59256088159219,39.24827226338219],[-76.59254166594272,39.2482609316415],[-76.59250730333714,39.24823240383446],[-76.5924894352542,39.24820973244],[-76.59248594594912,39.24819458916108],[-76.59248604948294,39.24818200393441],[-76.59248596386226,39.24817169430187],[-76.59248598269166,39.24816901997522],[-76.5924880034147,39.24816210275492],[-76.59249102415983,39.24815756344049],[-76.59250652310322,39.24814694308751],[-76.59254734929611,39.24811666661144],[-76.59254770934602,39.24810883745004],[-76.59254100396122,39.2480951278493],[-76.59253286433773,39.24808727729616],[-76.59251774901806,39.24807849905763],[-76.59250301034126,39.24806929425766],[-76.59249272512086,39.24805924017242],[-76.59247940003578,39.24804616065086],[-76.59246602735529,39.24803209011326],[-76.59245062292959,39.24800970740322],[-76.59244739601034,39.24800536348812],[-76.59243448887386,39.24799132428829],[-76.59242013064869,39.24797679723553],[-76.59240400647101,39.24796416107606],[-76.59238810605059,39.2479531101492],[-76.5923727838569,39.24794526257157],[-76.59236335617753,39.24794081695632],[-76.59235678843095,39.24793784592569],[-76.59233878537601,39.24792941794578],[-76.59231795908018,39.24792341494649],[-76.59229633243224,39.24791335118601],[-76.59227682156558,39.24790261468628],[-76.59225631665636,39.24788967234328],[-76.59224388791871,39.24788210592984],[-76.59223470810555,39.24787706665539],[-76.59221399822887,39.24786491897473],[-76.59219821315386,39.24785214974914],[-76.59219131920901,39.24784627258614],[-76.59217250173437,39.24783160300406],[-76.59214371224677,39.24781387938919],[-76.59211492853909,39.24779212843518],[-76.59209238926633,39.2477743715745],[-76.59206118137482,39.24776221261357],[-76.59205862815259,39.24776159662164],[-76.5920457679106,39.24775796325996],[-76.59204014239836,39.24775634033814],[-76.59202023901432,39.24774921002339],[-76.59199812769238,39.24774185764856],[-76.5919439154973,39.24772231795204],[-76.5919036317325,39.2477066026828],[-76.59187909263309,39.2476939480086],[-76.59183761370659,39.24766809757763],[-76.59179880428204,39.24764097911831],[-76.59179730036743,39.24763920297132],[-76.59175707434193,39.24761044106795],[-76.59175583761025,39.24760994764829],[-76.59172417815779,39.24758467718848],[-76.59171507190199,39.24757250221139],[-76.59171502255538,39.24756698300869],[-76.59171493355649,39.24755667606402],[-76.5917148775475,39.24755030110454],[-76.5917160583811,39.24753916355996],[-76.59171698055918,39.24753291450722],[-76.59172329324056,39.24751576864286],[-76.59172629840137,39.24750951152046],[-76.59173916129124,39.24748387163225],[-76.59175206014773,39.247457012222],[-76.5917755571054,39.24742283215372],[-76.59181354214377,39.24737833546549],[-76.59183752471367,39.24735075703067],[-76.59183988207297,39.24734856373883],[-76.59184458515529,39.24734176844962],[-76.59184594498313,39.24733697116034],[-76.59184704928133,39.24732725296477],[-76.59184691140936,39.24731073502509],[-76.59184720864332,39.24730135181329],[-76.59184687694948,39.24728711215344],[-76.59184883626389,39.24727798693602],[-76.59184974328728,39.24727497520458],[-76.59185253052476,39.24726752830163],[-76.59185485448626,39.24726127060897],[-76.5918602797484,39.2472449260407],[-76.5918688111381,39.24723437702936],[-76.59188271563667,39.24722541764221],[-76.59189762473329,39.24722025039348],[-76.59191302310992,39.24721722868158],[-76.59193381712188,39.24720925886339],[-76.59194476010504,39.24720259515234],[-76.5919509739128,39.24719840203581],[-76.59199344503399,39.24717191830894],[-76.5920061345695,39.24716048837033],[-76.59200992854268,39.24715706420788],[-76.59201633536875,39.24714629612109],[-76.59201626555107,39.24714312516006],[-76.59201227284633,39.24713799309718],[-76.59201093604943,39.2471311272693],[-76.5920108547833,39.24712128154595],[-76.59201074936328,39.24710939008486],[-76.59201068079874,39.24710116399415],[-76.59201062103321,39.24709422874069],[-76.59201212870784,39.24708688457897],[-76.59201879292846,39.24707627952535],[-76.59202367689392,39.2470712638824],[-76.59203674299499,39.24705881107071],[-76.59205010960115,39.24704688174965],[-76.59206854861496,39.24703201822098],[-76.59212115382483,39.24698840364093],[-76.59214045905382,39.24697036428473],[-76.59220168047597,39.24693588640862],[-76.59224603411013,39.24690734095483],[-76.59226392379898,39.24689855119658],[-76.59227787670905,39.24689082418683],[-76.59229125858789,39.24688287900701],[-76.59230544691077,39.24687430158163],[-76.5923294450518,39.2468554461769],[-76.59233787019622,39.24684320511134],[-76.59234618333656,39.24682767223417],[-76.59235291420633,39.24681089530041],[-76.59235878733679,39.24679722665567],[-76.5923622548029,39.24678488910637],[-76.592365448849,39.24676973119016],[-76.59236775102667,39.24674950423343],[-76.59237324855339,39.24671812780141],[-76.59237877938575,39.24666945215112],[-76.59238457211738,39.24661914611047],[-76.59238384670704,39.24660667600129],[-76.59236716073113,39.24658662182109],[-76.59234961536086,39.24657258902013],[-76.59234862066802,39.24655335227399],[-76.5923501367536,39.24653525651673],[-76.59235634246761,39.24651450535167],[-76.59236666426112,39.24649858130469],[-76.59236861670432,39.2464837784844],[-76.59236859897852,39.24648202371818],[-76.59236856681026,39.24647895107179],[-76.59236208698556,39.24645504549307],[-76.59234713750404,39.24643096998477],[-76.59233048674807,39.24641830675831],[-76.59232785922597,39.24641732299871],[-76.59232267324981,39.24641462519266],[-76.59231666881253,39.24641061842421],[-76.59231053615795,39.24640614370933],[-76.59230395806182,39.24640116751851],[-76.59229821672511,39.24639512141319],[-76.59229719580163,39.24639396758143],[-76.59229393912862,39.24639038110613],[-76.59229018036686,39.24638526427625],[-76.59228703166373,39.24638083054882],[-76.5922800858746,39.24637109519964],[-76.5922742304917,39.24636191310807],[-76.59227213830073,39.24635788299231],[-76.59227077546446,39.24635494354263],[-76.5922654177824,39.24634704768062],[-76.5922585323034,39.24633972120504],[-76.59224737829288,39.24633232946078],[-76.5922450266171,39.24633112146419],[-76.59223225919287,39.24632367547311],[-76.5922166748745,39.24631292196852],[-76.59220093225713,39.24630270297079],[-76.59218318836889,39.24629299586416],[-76.5921639979212,39.24628060753464],[-76.59214888548303,39.24626837839318],[-76.59213334771776,39.24625436604416],[-76.59212512886994,39.24624623504227],[-76.5921175993682,39.24623910088755],[-76.59211003473717,39.24623203236674],[-76.59210502650919,39.24622723456694],[-76.59209355214855,39.24621592423508],[-76.59208007681578,39.2462026549756],[-76.59206510162431,39.24618791674764],[-76.59205203904529,39.24617539565941],[-76.59204357374607,39.2461670142812],[-76.59204096783252,39.24616449026911],[-76.59203006343697,39.24615358545744],[-76.59201594803088,39.24614486016498],[-76.59200926523428,39.24614158064874],[-76.59200420695704,39.24613944625489],[-76.59200113124257,39.24613824114178],[-76.59198559446936,39.2461321276502],[-76.59196810494608,39.24612433283364],[-76.59194154268873,39.2461118584941],[-76.59193910990142,39.24611105916008],[-76.59193668487626,39.24611032020476],[-76.59192249720395,39.24610610842083],[-76.5919172002251,39.24610438844965],[-76.59190333086566,39.24610002103544],[-76.591898720627,39.2460985412545],[-76.59188752313591,39.24609509831096],[-76.59188113669055,39.24609306648671],[-76.59184656721955,39.24608643912872],[-76.59183961052565,39.24608425669224],[-76.59182970255323,39.2460805849262],[-76.59181218108645,39.24607814867102],[-76.59180561066904,39.24607809339875],[-76.59180214678267,39.24607811378296],[-76.59178658476397,39.2460782083015],[-76.59178316375501,39.24607822613191],[-76.59176788789907,39.2460783162383],[-76.59174494977513,39.24607845356148],[-76.59171190267428,39.24607864850433],[-76.59168278562221,39.24607753387148],[-76.59166070212103,39.24606967078638],[-76.59164848701887,39.24606128174152],[-76.59163592890062,39.24605069812106],[-76.59162042768459,39.24603599673883],[-76.5916079787146,39.24602033674072],[-76.59159812841081,39.24600604144385],[-76.59159053173275,39.245991670214],[-76.5915896645262,39.24598957470251],[-76.59158267124761,39.24597140521158],[-76.59157594348085,39.2459552102366],[-76.59156738295756,39.24593701817766],[-76.59155913393882,39.24592186730925],[-76.59155015493425,39.24590634278219],[-76.5915433554695,39.24589516125584],[-76.59153492132475,39.24588198603657],[-76.59152801358793,39.24586808019617],[-76.59152537320638,39.2458618881063],[-76.59152222803301,39.24585363239152],[-76.59152030337512,39.24584646815578],[-76.59151931923554,39.24584073761926],[-76.5915190733682,39.2458277007824],[-76.59151592061897,39.24581029409184],[-76.59151012842422,39.24579518959999],[-76.59150479110299,39.24578095953916],[-76.59149873340728,39.24576770521055],[-76.59149257576676,39.24575611696325],[-76.59148449966719,39.24574635331083],[-76.59147282114226,39.24573492060141],[-76.59146154247372,39.24572345505287],[-76.59145242664212,39.24571037653971],[-76.5914442067105,39.24569823164165],[-76.5914349375524,39.24568603084679],[-76.59142536207358,39.24567552604081],[-76.5914210197657,39.24566856146767],[-76.5914170345828,39.2456609369701],[-76.59141271851988,39.24565202952134],[-76.59141032956023,39.24564683996267],[-76.5914092968802,39.24564471414823],[-76.5913961777773,39.24562172400746],[-76.59139007167528,39.24561145106165],[-76.59138214734503,39.24559686068908],[-76.5913757100033,39.2455857704895],[-76.59136894423443,39.24557377657215],[-76.59136364844755,39.24555998622549],[-76.59135600162956,39.24554025520618],[-76.59135536010639,39.24553276575044],[-76.59135488109996,39.24551656548749],[-76.5913501458766,39.24550239516353],[-76.59134422368716,39.24549036274526],[-76.59134322750553,39.24548733087979],[-76.59134268902946,39.24546918654202],[-76.5913416918825,39.24545364564226],[-76.59134139724033,39.2454527087138],[-76.59133482412362,39.24544005339658],[-76.5913306052973,39.24542894929794],[-76.59132713801931,39.24541668671912],[-76.59132563418879,39.2454110831817],[-76.5913230337086,39.24539655817662],[-76.59132277431979,39.24536998087452],[-76.59132241465522,39.2453662531256],[-76.59132187166013,39.24536418666425],[-76.59131276351195,39.24534797527774],[-76.59130955634663,39.24534144071684],[-76.59130656327903,39.24533635174065],[-76.59130582023133,39.24533422333025],[-76.59129961628997,39.24532686583964],[-76.59129905650506,39.2453190640995],[-76.59129893946017,39.24530699964238],[-76.59130169392354,39.2452915600775],[-76.59130640213051,39.24527420236242],[-76.59131183031224,39.24525674266379],[-76.59131597629967,39.24523944964824],[-76.59132336578223,39.2452205690515],[-76.59132724942121,39.24520095473142],[-76.59132973108042,39.2451827956835],[-76.59132920651875,39.24516223551984],[-76.59133100550821,39.24513991162421],[-76.59133705924312,39.2451162117457],[-76.59134438145301,39.24509432413323],[-76.5913512784909,39.24507767213344],[-76.59136084741424,39.24505488976569],[-76.59137100397768,39.24503003946648],[-76.59137802184408,39.24500567726985],[-76.59138254921974,39.2449780699276],[-76.59138484075713,39.24495288779055],[-76.59139508916502,39.24492073163956],[-76.59140200409992,39.24490639918849],[-76.59140654320369,39.24489687670232],[-76.5914176293472,39.24487615607386],[-76.59142770827022,39.24485995652116],[-76.59144164245154,39.24483812073653],[-76.59145723795517,39.24481746804161],[-76.59147260057317,39.24479722348505],[-76.59148986072492,39.2447773755638],[-76.59149601983005,39.24476937020783],[-76.59150434750906,39.24475854757341],[-76.59152017218395,39.24473651388153],[-76.59153552626654,39.24471533068132],[-76.5915518734096,39.24469288805036],[-76.59156492038444,39.24467504048843],[-76.59157925834288,39.24465307908238],[-76.59159242435756,39.24463547874316],[-76.59160639481341,39.2446171876056],[-76.59161838430946,39.24460272957048],[-76.5916321447507,39.24458791828585],[-76.59164733523623,39.24457482344229],[-76.59166504758066,39.24455992140993],[-76.5916806218639,39.24454535243086],[-76.59169433238438,39.24452934744097],[-76.59170759786348,39.24450914780359],[-76.59171989563285,39.24448519398055],[-76.59172924627688,39.24446407454819],[-76.59173979542345,39.24444222965673],[-76.59175135344812,39.24441677707368],[-76.59176806547283,39.24439028580469],[-76.59178552336711,39.24436200638994],[-76.591797095388,39.24434197109937],[-76.59180407188106,39.24432980249353],[-76.59181446968424,39.24430908753853],[-76.59181799123363,39.24428975748386],[-76.59181786025779,39.24427264684515],[-76.59181776049623,39.2442623966022],[-76.59181771039808,39.24425700710306],[-76.59182144073354,39.24424125564432],[-76.59184364034616,39.24420001977299],[-76.59186253386721,39.24416199627021],[-76.59187528668879,39.24412899214258],[-76.59187976422724,39.24410255470608],[-76.59188036796067,39.2440821705091],[-76.59188023641579,39.24406455183151],[-76.59187276016013,39.24403711982062],[-76.59186016399218,39.24401165261115],[-76.59184752340761,39.24396872826324],[-76.59184495448864,39.24396280755821],[-76.59183978535354,39.24396225182522],[-76.59183155424246,39.243962349316],[-76.5918301385561,39.24396236691332],[-76.5918157106645,39.24396253563756],[-76.5917991706448,39.24396094951625],[-76.59177924258802,39.24395406857754],[-76.59176010287449,39.24394708048242],[-76.59173993739508,39.24393878179529],[-76.59172073699251,39.24392442155558],[-76.59170258621836,39.24390400276013],[-76.59169166935452,39.24387942503012],[-76.59168933469896,39.24386842657739],[-76.59168888677414,39.24385607542001],[-76.59168852471652,39.24383745608107],[-76.59168545284689,39.24381828144868],[-76.59167680602317,39.24378633427985],[-76.59166224117267,39.24374708557658],[-76.59166203439032,39.24373651428437],[-76.59166777302976,39.24372344871292],[-76.59167523483723,39.24370725624546],[-76.59168192590192,39.24368327841663],[-76.59168559338107,39.24367301695351],[-76.59169577383764,39.24365986864488],[-76.5917131042908,39.24364203866203],[-76.59172701362827,39.2436301049503],[-76.59173993957084,39.24362339049997],[-76.59176090633885,39.24361279735639],[-76.59178448305411,39.24359977759364],[-76.59181326309293,39.24358498788317],[-76.59187515172653,39.24355728899033],[-76.59189472902445,39.24355020761088],[-76.59191380980761,39.24354345148294],[-76.5919365669227,39.24353959600936],[-76.59195614653414,39.24353936500789],[-76.59197481556048,39.24353914705225],[-76.59199332731261,39.24353928525321],[-76.59201161896496,39.24354123774435],[-76.59202660856259,39.24354853295339],[-76.59203864918044,39.24355818964859],[-76.59204545511366,39.24357023591889],[-76.59205578676595,39.24358418065931],[-76.59206458976877,39.2435964347404],[-76.59207284414616,39.24360820590159],[-76.59208626399759,39.24362056159664],[-76.59209853378842,39.2436334807813],[-76.59210947958084,39.24364457490196],[-76.5921205704813,39.24365440664168],[-76.59213160574248,39.24366827725387],[-76.59214299955117,39.24368305258606],[-76.59215610863606,39.24370091091706],[-76.59216759674078,39.24371419579472],[-76.59219296656721,39.24373990281359],[-76.59220459952309,39.2437523747925],[-76.5922169697525,39.24376616806293],[-76.59223022872835,39.24378072647305],[-76.59224389199336,39.24379689866969],[-76.59225272753629,39.24381095979961],[-76.59226003873233,39.24382338613597],[-76.5922686121508,39.24383871464273],[-76.59227900094457,39.24385563301258],[-76.59228725399154,39.24387147925044],[-76.59229677050482,39.24389041502327],[-76.59231689255832,39.24392665544488],[-76.59232651440007,39.2439468193344],[-76.59233242022752,39.2439594884981],[-76.59233926136295,39.24397147181779],[-76.59234221526393,39.24398217335056],[-76.59234614262009,39.243996035473],[-76.59235450103425,39.24400886988616],[-76.59238280340784,39.24403793341585],[-76.59240446197464,39.24405938305762],[-76.5924248016421,39.24408356556561],[-76.59246347047186,39.24413548074384],[-76.59250798768534,39.24419334149309],[-76.59253418661159,39.24423772343485],[-76.59254824858978,39.24427124136099],[-76.59255407472453,39.24428771510056],[-76.5925574574717,39.24430363178911],[-76.59256005081326,39.24432004296445],[-76.59256330752162,39.24433329653032],[-76.59256706722802,39.24434872810922],[-76.59257297357318,39.244362531334],[-76.59258304050275,39.24438327954428],[-76.59258888081737,39.24439567102777],[-76.59259376011845,39.24440919054675],[-76.59259716451572,39.24442133757392],[-76.59260012014342,39.24443679428492],[-76.59260096026065,39.24444603372595],[-76.59260173781442,39.24445810047606],[-76.59259903309676,39.24446916609331],[-76.59259601398676,39.24447788951061],[-76.5925933092623,39.24448895602838],[-76.5925909105246,39.24450221428771],[-76.59259028179005,39.24451023709173],[-76.592589630264,39.24451779051393],[-76.5925885550645,39.24452064763745],[-76.59258559222124,39.24452622755216],[-76.59257836115,39.24453554257212],[-76.59257215135436,39.24454513857388],[-76.59256567133141,39.24455317439961],[-76.59255830471308,39.24456390316131],[-76.59255453314499,39.24456950729161],[-76.59255037163419,39.24457543704906],[-76.59254759133735,39.2445806969211],[-76.59254637800215,39.24458481374606],[-76.5925448517088,39.2445909805447],[-76.59254343097666,39.24460358012893],[-76.59254159145989,39.24461587920307],[-76.59254171748462,39.24462702130032],[-76.5925417751356,39.24464099338866],[-76.59254433967497,39.24465677302101],[-76.59254860091369,39.2446784748181],[-76.59255529693279,39.2447046583031],[-76.59256212506426,39.24472518269007],[-76.59256586312728,39.24474015029406],[-76.59257003183427,39.24475133434481],[-76.59257355275933,39.24476174958966],[-76.59257845114357,39.24477134270516],[-76.59257924828546,39.2447731344064],[-76.59258251918338,39.24478048885786],[-76.5925857436264,39.24478463459508],[-76.59258889596143,39.24478721543958],[-76.59259093128051,39.24479186508594],[-76.59259090964464,39.24479563474523],[-76.59258802005395,39.24480701859321],[-76.59258394015094,39.24481467271386],[-76.59258325256144,39.24482568317639],[-76.59258492907837,39.24483552633456],[-76.5925920427665,39.24484929231067],[-76.59259566434265,39.24485751181965],[-76.59259900877785,39.2448641648236],[-76.59260103199061,39.2448727408964],[-76.59260045112504,39.24487746883877],[-76.59259911085519,39.24488755464491],[-76.5926001716292,39.24489710201399],[-76.59260273965995,39.24490440538378],[-76.59260499562976,39.24490936385973],[-76.59260889581314,39.24491506036951],[-76.59261408090481,39.24491789507883],[-76.59262271368723,39.24492109935819],[-76.59263273861374,39.24492395086075],[-76.59264232775494,39.24492603249109],[-76.59265693902906,39.24492765323573],[-76.59267032859489,39.24492899590478],[-76.59268248087996,39.24492974607495],[-76.59272264352536,39.2449293782765],[-76.59274657182785,39.24493003237461],[-76.59276874376421,39.24492930489544],[-76.59278215115164,39.24492794529515],[-76.59279369069742,39.24492787542672],[-76.59282144503896,39.24492938320128],[-76.5928371705568,39.24493083213729],[-76.59283837811641,39.24493095162419],[-76.59285290857086,39.24493252612473],[-76.59286730310167,39.24493457215699],[-76.59288377580765,39.24493804140899],[-76.59288596623324,39.24493847507035],[-76.59288933485557,39.24493909837658],[-76.59290598735602,39.24494272858647],[-76.59291962926125,39.24494733920498],[-76.59293551176766,39.24495151260903],[-76.59294945697017,39.2449549487672],[-76.5929641246602,39.24495845048271],[-76.59297094211794,39.24496045672009],[-76.59297769330252,39.24496230329052],[-76.59298977362111,39.24496530240897],[-76.59300150222461,39.24496842551428],[-76.59301194446047,39.24497143516553],[-76.59301783185337,39.24497361652893],[-76.59302232830113,39.24497513370454],[-76.59303441826911,39.24497948130868],[-76.59304519159535,39.24498556103748],[-76.59305259153639,39.24499002929961],[-76.59306710168438,39.24499838201828],[-76.5930836066925,39.24501339745936],[-76.5930957123983,39.24502369111266],[-76.59310557511094,39.24503140438377],[-76.59312369218563,39.24505115356242],[-76.59313376356941,39.24506328764618],[-76.59315007063051,39.24508778212387],[-76.59317420795021,39.24512837982446],[-76.59319314680697,39.24515311131105],[-76.59319925118214,39.24516251130888],[-76.593212561848,39.24517500340713],[-76.5932215656107,39.24518180751451],[-76.59323615050107,39.24519127832948],[-76.59324718699231,39.24519834259478],[-76.59325427680172,39.24520316377305],[-76.59326995966923,39.24521024863779],[-76.59328466105528,39.2452179903666],[-76.59330026112873,39.24522335176227],[-76.5933181581176,39.24522613139094],[-76.59333788855504,39.24522917588954],[-76.5933592738606,39.2452288770439],[-76.59337769857362,39.24522568186452],[-76.5933958305384,39.24522060755726],[-76.59342876325726,39.2452083558039],[-76.59345941233232,39.24519899752223],[-76.59350445286397,39.24518232074264],[-76.59351846046357,39.24517548013304],[-76.5935300367388,39.24516839600219],[-76.59353932211836,39.2451598095569],[-76.59354545282635,39.24515288492391],[-76.59355017119569,39.24514599593579],[-76.59355647807075,39.24513420053329],[-76.59356038396963,39.24512717992144],[-76.59356466190478,39.24511952104876],[-76.5935708271943,39.24510898353478],[-76.593579495932,39.24510025443081],[-76.59358932607158,39.24509039977774],[-76.59360245507776,39.24507777405642],[-76.59361512926257,39.24506830757073],[-76.5936299705955,39.24505767577889],[-76.5936518295127,39.24504181857131],[-76.5936974385232,39.24501586122208],[-76.59373188659173,39.24499728850081],[-76.59379858077638,39.24496900081466],[-76.59387333636509,39.24494032121785],[-76.59390503877167,39.24492763720749],[-76.59392842052354,39.24491833023056],[-76.59395288818074,39.24491056282233],[-76.59398235397995,39.24490186778411],[-76.59401490005467,39.24489418324828],[-76.59405873832728,39.24488632877041],[-76.59410380149633,39.24487859921468],[-76.5941572984011,39.24486999532169],[-76.59421680010328,39.24486451802395],[-76.59428213492254,39.24485856092586],[-76.59434041024738,39.24485280729398],[-76.59436280923299,39.2448524784399],[-76.59439984711172,39.24485015720519],[-76.59442226426614,39.24485029770519],[-76.59444581051427,39.24484867928903],[-76.5944750281022,39.24484752544011],[-76.59450816227888,39.2448437467482],[-76.59453729561743,39.2448407117793],[-76.59455755389689,39.24483793530138],[-76.59456655377704,39.24483610448496],[-76.59457571801337,39.2448334869601],[-76.59458302482905,39.24483013789823],[-76.59458832866014,39.24482700170764],[-76.59459434884671,39.24482196195542],[-76.59460066544595,39.24481471633318],[-76.5946067671759,39.24480716280512],[-76.59461517141507,39.24479279117146],[-76.59462047383644,39.2447811787029],[-76.59462061727334,39.24478020095894],[-76.59462276283423,39.24476556990939],[-76.59462359155482,39.24474906160617],[-76.59462131576412,39.24473091668826],[-76.59462030949044,39.24470975045806],[-76.59461829879734,39.24469285492631],[-76.59462325988324,39.24466555161832],[-76.59462881052096,39.24465063687227],[-76.59463900504518,39.24463150542918],[-76.59465605615048,39.24460793613124],[-76.59466902152366,39.24459186426891],[-76.59468042563347,39.24457269646336],[-76.59469016642346,39.24455248162081],[-76.59469494068043,39.24453821274728],[-76.5946969234526,39.24451617768162],[-76.59469741232706,39.24449669745473],[-76.59469968223735,39.24448077512371],[-76.5947036572943,39.24446668814888],[-76.5947166056379,39.24444182467906],[-76.59472192707798,39.24443052573948],[-76.59473932307364,39.24438873768654],[-76.59474910286775,39.24435234959612],[-76.59475739483226,39.24431867039753],[-76.59476647063741,39.24429297565209],[-76.59477319460763,39.24427300350506],[-76.5947752724324,39.24425724264774],[-76.59477593790142,39.24424152375555],[-76.59477213316057,39.24422091084747],[-76.59476796979746,39.24420548875625],[-76.5947656185039,39.24419001436939],[-76.5947672991791,39.24417442328789],[-76.59476993141739,39.24416178822438],[-76.59477817478466,39.24414412459728],[-76.59478680819005,39.24413037707488],[-76.5947958698003,39.24411284508115],[-76.59480152483123,39.24410012496801],[-76.59480637926946,39.24407910597272],[-76.59480945036725,39.24405452727283],[-76.59481340579312,39.2440314919466],[-76.59481437745113,39.24402220112491],[-76.59481921976878,39.24400086861784],[-76.5948223554195,39.24399095652511],[-76.59482846300054,39.24397931709821],[-76.59483456190728,39.24396737047736],[-76.59484340601725,39.24395323364271],[-76.59485164381918,39.24394019095568],[-76.59485869546579,39.24392287451068],[-76.59486280132607,39.2439073728655],[-76.59486615362087,39.24389299008202],[-76.59486735674851,39.24388008165329],[-76.59486706327444,39.24386533408608],[-76.59486556397282,39.243850775123],[-76.59486451434832,39.24382866923398],[-76.5948641634303,39.24381282342605],[-76.59486505647466,39.24380127049114],[-76.5948746036209,39.24377273902478],[-76.59488223723177,39.2437549354662],[-76.59488636602806,39.24374414043763],[-76.59489013955566,39.24373429630004],[-76.59489126227496,39.24372390615444],[-76.59489118857537,39.24370962054079],[-76.59489007352568,39.24369897766293],[-76.59488668783787,39.24368714333382],[-76.59488511085453,39.24367949753516],[-76.59488123091704,39.24367003053332],[-76.59487676060152,39.24366089748239],[-76.5948714649762,39.24365571237369],[-76.59486846976556,39.24365218451883],[-76.59486814925204,39.24364968466834],[-76.59487027910039,39.24364773734077],[-76.59487802361505,39.24364500499831],[-76.5948951447639,39.24363996029942],[-76.59490278611067,39.24363926965182],[-76.59491285268051,39.24363866483858],[-76.59492268312644,39.2436416803173],[-76.59492906943365,39.24364432180082],[-76.59493405769514,39.24364307883081],[-76.59493640470878,39.24364144211724],[-76.5949375936602,39.24363669914561],[-76.5949352835974,39.24363064248417],[-76.59492279154324,39.24362268158648],[-76.59491088380923,39.24361423088153],[-76.59490161961021,39.24360617933203],[-76.59489393241068,39.24359744863605],[-76.59488823795756,39.2435837975874],[-76.59488839083762,39.24356573761521],[-76.59488983612127,39.24354936834987],[-76.59489294220447,39.24352981427717],[-76.59489974040656,39.24350716797985],[-76.59490423909293,39.24347438455398],[-76.59491168508023,39.24344418480626],[-76.5949187177987,39.24340520559802],[-76.59492145158431,39.2433778108109],[-76.59492723198358,39.24335488085872],[-76.59493333532696,39.2433303702628],[-76.59493640445362,39.24331850686121],[-76.59494192707855,39.24329872692297],[-76.59495292238701,39.24327015090056],[-76.59495852682723,39.24325633256016],[-76.59496852233227,39.24324584061112],[-76.5949752611541,39.24324313451791],[-76.59498747189818,39.24324090129182],[-76.59501852727801,39.24324440434133],[-76.59503714967416,39.24324544051507],[-76.59505861940328,39.24324262309135],[-76.59507828918963,39.24324017327627],[-76.59509703134978,39.24323524133086],[-76.59511947512502,39.24322737571976],[-76.59513555196123,39.24321733620005],[-76.59514618686343,39.24320745536358],[-76.59515552968031,39.24320435829678],[-76.59516586269348,39.24320516228922],[-76.59517709347314,39.24321205950372],[-76.59518141111323,39.24321790329518],[-76.59518561980481,39.24322578876345],[-76.59518289777378,39.24324078175368],[-76.59517373522664,39.24325187740887],[-76.59516390280893,39.24325734002051],[-76.59514579586796,39.24326727706109],[-76.59512780017933,39.24327517423144],[-76.59510507659725,39.24328132020395],[-76.59508856870649,39.2432865048671],[-76.59507579643108,39.24328970089485],[-76.59505944223022,39.24329393576834],[-76.59504917526404,39.24329454800979],[-76.59503612308708,39.24329177904893],[-76.59502417494835,39.24329102712308],[-76.59501474570807,39.2432964776014],[-76.59500540562613,39.24330396503461],[-76.5949970866523,39.24331582203705],[-76.59499269294649,39.24332960582272],[-76.5949912449644,39.24334158020898],[-76.59499440769648,39.24336142794537],[-76.59499710836654,39.24338003282222],[-76.59499658451696,39.24339449202635],[-76.59499219196461,39.24340827581565],[-76.59499272169208,39.24342364753442],[-76.59499015864381,39.24345888594301],[-76.59497959346494,39.24350424755595],[-76.59497542110002,39.24353121041384],[-76.59497122448207,39.24355755075351],[-76.59497126989295,39.24357984234091],[-76.59497046392924,39.24359258189583],[-76.59497320374109,39.24359925166423],[-76.59497672092762,39.24360103471838],[-76.5949811632523,39.24360106625829],[-76.59498731896444,39.24359884727254],[-76.59500031912316,39.24358780000199],[-76.59501740491929,39.24356925257529],[-76.59502686033527,39.24356003245206],[-76.59504739936071,39.24353762270813],[-76.59507029535125,39.24351812338101],[-76.59509358123829,39.24349830111581],[-76.5951143003287,39.24347965360931],[-76.59512987388155,39.24345895350738],[-76.59513639534109,39.24344338091352],[-76.59513647283318,39.24343223141162],[-76.59513400620281,39.24341848701629],[-76.59513253455135,39.24340455598912],[-76.59512944752974,39.24339051850437],[-76.59513262919354,39.24337252662593],[-76.59513601994311,39.24336316757697],[-76.59514575727205,39.24335142895365],[-76.5951582987696,39.24333913881797],[-76.59516764634,39.24333196126452],[-76.59518176741372,39.24332747456604],[-76.5951959136106,39.24332345725534],[-76.59521523058115,39.2433178760142],[-76.59523443482493,39.24331418600473],[-76.59525190266244,39.24331211319874],[-76.59526604669249,39.24331233491034],[-76.59528364397237,39.24330868889526],[-76.59529652428421,39.24330360970077],[-76.59531094404602,39.24329691712235],[-76.59532458480841,39.2432823959401],[-76.59533416006713,39.24327144401808],[-76.59533823824982,39.24325955345794],[-76.5953391686825,39.24324508484415],[-76.59533923055375,39.24323362181867],[-76.59533356259334,39.24322059691912],[-76.59532269644826,39.24320866295243],[-76.59530395796347,39.24318816522023],[-76.59529071323279,39.2431728460524],[-76.59527594838158,39.24315961143617],[-76.59525692595797,39.2431501120581],[-76.59521909023053,39.24313141577261],[-76.5951833257427,39.24311800154457],[-76.59515933821056,39.24311036854604],[-76.59513477332733,39.24310322447288],[-76.59512099431461,39.24309852085613],[-76.59510676502681,39.24309233571448],[-76.59509121537174,39.24308367699781],[-76.59508014178407,39.24307583090199],[-76.59506825575657,39.24306785229149],[-76.5950475328674,39.24304819710152],[-76.59503951508714,39.24303934727189],[-76.59502271504853,39.24301960652405],[-76.59501961985016,39.24300964860837],[-76.59502064926731,39.24300180011954],[-76.59502534705082,39.24300273331233],[-76.59503255410841,39.24300566586957],[-76.5950431837708,39.24301274207923],[-76.5950541596151,39.24302167777713],[-76.59506719596877,39.24304386374857],[-76.59508053890993,39.24305698089069],[-76.59509348688422,39.24306602877738],[-76.5951113524987,39.24307666276989],[-76.59512270316297,39.24308183091889],[-76.59513726146396,39.24308658946782],[-76.59515687548576,39.24308720657994],[-76.59515924480834,39.24308713818483],[-76.59518027087735,39.24309202892645],[-76.59520677135309,39.24310162796569],[-76.59524750502906,39.24312180881238],[-76.59527568237506,39.24314125096083],[-76.59530277240962,39.24315899499987],[-76.59532497954542,39.24317170129147],[-76.59535219180492,39.24318771985883],[-76.59536751960107,39.24320015201522],[-76.59537373936709,39.24320782281811],[-76.59538106140664,39.24323021875491],[-76.59537967644046,39.24325208205051],[-76.59537697841712,39.2432675444305],[-76.59537143740327,39.24327837874785],[-76.59535773660221,39.24329164765395],[-76.5953487182135,39.24330164037237],[-76.5953416100439,39.24331346013689],[-76.59533466896458,39.24332888807319],[-76.59532502892203,39.24334266819934],[-76.59530787355206,39.24335556217977],[-76.59528442672274,39.24337193577367],[-76.5952640590724,39.2433852366323],[-76.59524116909449,39.24340065101244],[-76.59522577869782,39.24341239807639],[-76.59521357444463,39.24342750609924],[-76.59520233734152,39.24344588455957],[-76.59519349586488,39.24346811487795],[-76.59517844558522,39.24349131283478],[-76.59516154603347,39.2435137756871],[-76.59514342965893,39.24353611994236],[-76.59512295906713,39.24355994145037],[-76.5950879322307,39.24360035363144],[-76.59504783845105,39.24365315467091],[-76.59502506393612,39.24368363753759],[-76.59500558245072,39.2437155973175],[-76.59499139142504,39.2437441046671],[-76.59498157532099,39.24376699637616],[-76.59497898514941,39.24378465249944],[-76.59497809431832,39.24380414485602],[-76.59497873314668,39.24381338899084],[-76.59498573059611,39.24382464847319],[-76.59499491314145,39.24383097835654],[-76.59500505330867,39.24384042191183],[-76.59501282366817,39.24385103009761],[-76.59501854430175,39.24386091239518],[-76.59501953915931,39.24386480896786],[-76.59502309111842,39.24389704817531],[-76.59502446330623,39.24393876680384],[-76.59502483817194,39.24398067565774],[-76.5950253930064,39.24402210592071],[-76.59502451604133,39.24405886524042],[-76.59502226045531,39.24413036351599],[-76.59502121029155,39.24418895246816],[-76.59502006041231,39.24424126268838],[-76.5950194164528,39.24431271337409],[-76.59501727671874,39.24439943600588],[-76.59501909068678,39.24442057439408],[-76.59502538423396,39.24444253352564],[-76.59503217800683,39.2444580331388],[-76.59504117606323,39.2444731620304],[-76.59505068294517,39.24448215120728],[-76.59506514325344,39.24449743585534],[-76.5950805685441,39.24451190682894],[-76.5950941123449,39.24452925828805],[-76.59510395406905,39.24454514493182],[-76.59511001474701,39.24456224088327],[-76.59511139405308,39.24457428987326],[-76.59511276746122,39.24459041934355],[-76.59510841828363,39.24460938452736],[-76.59510277536971,39.24462241996562],[-76.59509353094694,39.24463179215012],[-76.59508186516489,39.24464547158491],[-76.59507199228086,39.24466286658466],[-76.59506029431039,39.24468015620342],[-76.59505436552868,39.24469131524426],[-76.59504200849555,39.24470737033065],[-76.59503206472095,39.24471911633632],[-76.59502318032806,39.24473177577606],[-76.59502132420171,39.24473528418854],[-76.59502030942564,39.24474787168946],[-76.59502098347772,39.24476637588688],[-76.59502317067385,39.24478159027719],[-76.59502520853871,39.24479577096595],[-76.59502829702423,39.24481829012877],[-76.59502671972882,39.24483607314771],[-76.5950208415635,39.24485257034019],[-76.595011345546,39.24486948562141],[-76.59499809838378,39.24489231324418],[-76.59499079830775,39.2449086956354],[-76.59498253932725,39.24492604394941],[-76.59497311068847,39.24494860730454],[-76.5949634300917,39.24497431618849],[-76.59495698316442,39.24499161580499],[-76.5949496898862,39.24500375827964],[-76.5949331594826,39.2450213419781],[-76.59492222683708,39.24503767039553],[-76.59489384449799,39.24506925623988],[-76.59488614438192,39.2450771726827],[-76.59488200584285,39.2450835719032],[-76.59487751230644,39.24509939828596],[-76.59487149509738,39.2451173119055],[-76.59486828418073,39.24512619595519],[-76.59485909751896,39.24514105942965],[-76.5948471194818,39.24515239215002],[-76.59482851296221,39.24516878235087],[-76.5948094710272,39.24519711709277],[-76.59479608459527,39.24521712659361],[-76.59479062372658,39.24522544619784],[-76.5947886895066,39.24523146929385],[-76.59478935100591,39.24523694286999],[-76.5947916947238,39.24523954608533],[-76.59479670951018,39.2452430115514],[-76.59480118313188,39.24524366654041],[-76.59480682678745,39.24524350766588],[-76.59481831058201,39.24523454227614],[-76.594830911221,39.24521926542273],[-76.59484177910807,39.24520576701867],[-76.5948539898175,39.24519081309518],[-76.59486955659189,39.2451699589808],[-76.59489503557735,39.2451496011643],[-76.59491512657314,39.24513474018234],[-76.59493318626492,39.24512809714341],[-76.5949726439173,39.24510451503267],[-76.59497595944417,39.2451020637586],[-76.59499483360712,39.24508707786136],[-76.59500491437652,39.24507407125071],[-76.59501349735868,39.24505922459839],[-76.59502286985197,39.24503980204139],[-76.59504017981179,39.24501308988678],[-76.59505278481363,39.24498525535198],[-76.59505710516488,39.24496566403565],[-76.59506090197651,39.24493509409724],[-76.59506207404505,39.24492579946335],[-76.59507077676662,39.24490498469941],[-76.59508093313494,39.24489354298461],[-76.595097029407,39.2448838188111],[-76.59510827491889,39.24488025810764],[-76.59512882173274,39.24487523059457],[-76.59514019685501,39.2448716928543],[-76.5951548355506,39.24486384175742],[-76.5951659820839,39.24485468240469],[-76.59517581352313,39.24484516451243],[-76.59518395307549,39.24483635689975],[-76.59519271464376,39.24482430955025],[-76.59520030421399,39.24481220321183],[-76.59520798949049,39.24480078359166],[-76.59521514343324,39.24478949905645],[-76.59521943958609,39.24478226715252],[-76.59522200933348,39.24477793969275],[-76.59522735117898,39.24476630301216],[-76.59523394615061,39.24475654606056],[-76.59524350067679,39.24474662636391],[-76.59525213970062,39.24473757906122],[-76.59526033486493,39.24472835998161],[-76.59526976300674,39.24471825608935],[-76.59528050576243,39.24470859360308],[-76.59528906094809,39.24470124576681],[-76.59529958067874,39.24469168880108],[-76.59530796166372,39.24468340085689],[-76.59531462785438,39.24467354325956],[-76.59532380567538,39.24466081274743],[-76.59532517876544,39.24464855886395],[-76.59532560451662,39.24463524420776],[-76.59532500086793,39.24462225838835],[-76.5953263571891,39.24460969458113],[-76.59532694203524,39.24459448254493],[-76.5953278560009,39.24458026429475],[-76.59533039014201,39.24456754961429],[-76.5953338147776,39.24455326795623],[-76.59533615309306,39.24454076518296],[-76.59533848136049,39.24452636714903],[-76.5953421546258,39.2445123637856],[-76.59534641669002,39.24449749140415],[-76.59535079474247,39.24448401562016],[-76.59535489575545,39.24447057040811],[-76.59535865786346,39.24445601877955],[-76.59536178123079,39.24444337458763],[-76.59536408975426,39.24443223548078],[-76.59536828023502,39.24441935175793],[-76.59537534239307,39.24440566453453],[-76.59537979278117,39.24439555158338],[-76.5953857734744,39.24438462059987],[-76.5953911031522,39.24437612486361],[-76.59539395676977,39.24437178306487],[-76.59539926847215,39.24436034354063],[-76.59540020570842,39.24435077876168],[-76.59540048239455,39.24434125764561],[-76.59539833989662,39.24433058691292],[-76.59539397013683,39.24432350709161],[-76.59538771929923,39.24431395357023],[-76.5953872152874,39.24430441895414],[-76.59538971338884,39.24428542305819],[-76.59539746215428,39.2442758565328],[-76.59540736880699,39.24426491115424],[-76.59541928816323,39.2442557021949],[-76.59543124594592,39.24424849038017],[-76.59544546243725,39.24424029910064],[-76.59545976874452,39.24423362503035],[-76.59547450468465,39.24422900800245],[-76.59549165798703,39.24422281033856],[-76.59552418173308,39.24421021879778],[-76.59553754120807,39.24420666263386],[-76.59555167549796,39.24420354240952],[-76.59556756932054,39.24419901763464],[-76.59558174577687,39.24419581558158],[-76.59559711461027,39.24419295632475],[-76.5956135654382,39.24418988821052],[-76.59562826832396,39.24418781663358],[-76.59564433262393,39.24418305373068],[-76.59566333112794,39.24418074382745],[-76.5956898354884,39.24417998117616],[-76.59570219206317,39.24417962558871],[-76.595717973486,39.24417917189976],[-76.5957316160969,39.24417878290543],[-76.59574819456016,39.24417791399846],[-76.59576445894606,39.24417646030683],[-76.59578026576787,39.24417541128611],[-76.59579918476015,39.2441734334723],[-76.5958146635082,39.24417100243258],[-76.59583137826701,39.24416796492206],[-76.59584687092186,39.24416451515186],[-76.59586233755383,39.24416054914725],[-76.59587776328578,39.24415684872773],[-76.59589678214154,39.24415157171098],[-76.5959122458964,39.24414811012264],[-76.59592747837462,39.24414498372454],[-76.59594392105522,39.24414069679037],[-76.59596058921584,39.24413668536562],[-76.59597571082747,39.24413309107855],[-76.59599171018338,39.24413036995679],[-76.59600371708451,39.24412672621414],[-76.59600833092753,39.24412532607636],[-76.59602377753161,39.24412100868014],[-76.5960405263241,39.24411890806072],[-76.59605757343307,39.24411832987076],[-76.5960757627,39.24411735206181],[-76.59609102670797,39.2441154003588],[-76.59611100162526,39.24411290458021],[-76.59613031027025,39.24411247648217],[-76.59614757029748,39.24411295651896],[-76.59616432912956,39.24411397709439],[-76.59617665142808,39.24411536793774],[-76.59619147573092,39.24411740152988],[-76.59620501650939,39.24411862000987],[-76.59621817133784,39.24412007676645],[-76.59623002691414,39.24412226138134],[-76.59624431749683,39.24412444446103],[-76.59625760897745,39.244126112464],[-76.59626656101156,39.24412900410488],[-76.59627458074121,39.24413511550423],[-76.59627956268322,39.24414252167632],[-76.5962798937745,39.24414948488824],[-76.59628067573585,39.24416597802577],[-76.59628130232684,39.24417312691227],[-76.59628207401836,39.24418144550087],[-76.59628395825796,39.2441878492692],[-76.59628714748489,39.24419455387933],[-76.59629215790378,39.2442014349981],[-76.59629688045239,39.24420536329416],[-76.59630631154671,39.24420977528229],[-76.59631919564421,39.24421341637138],[-76.59633170322034,39.24421502672318],[-76.59634282221057,39.24421514782564],[-76.59635601502853,39.24421481666324],[-76.5963810067508,39.24421726891794],[-76.59639863333489,39.24422092630289],[-76.59641082120338,39.24422722046661],[-76.5964200356153,39.24423368185958],[-76.59642907066153,39.24424112898141],[-76.596438988958,39.24424664878259],[-76.59645158531352,39.24425200213787],[-76.59646217195532,39.24425610731879],[-76.59648101007025,39.24426530050153],[-76.59649202065232,39.24427002506703],[-76.59650596893219,39.24427924377525],[-76.59651978787313,39.24429307939864],[-76.59653696052227,39.24431444349498],[-76.59655016939092,39.24433615697832],[-76.59656668829268,39.24436065171109],[-76.59657950824617,39.24437701326405],[-76.59658827908314,39.24438998570625],[-76.59659789622232,39.24440019388187],[-76.59660727908883,39.24441289639222],[-76.5966127072915,39.24441781885074],[-76.59661801693956,39.24442158791248],[-76.59662441404515,39.24442602187768],[-76.59662997333743,39.24443009625782],[-76.59663616497943,39.24443419713122],[-76.5966437447387,39.24443803704556],[-76.59665105695933,39.24444125540782],[-76.59665867946342,39.24444450456114],[-76.59666692431479,39.24444811345886],[-76.59667543046938,39.24445181062863],[-76.59668302036657,39.24445570191931],[-76.59669328297126,39.24446098147423],[-76.5967024888864,39.24446650150769],[-76.59671869530123,39.24448076506832],[-76.59672727111129,39.24449402057311],[-76.59673223603477,39.24450892109572],[-76.59673345319946,39.24452774061751],[-76.59673558507951,39.24453521894954],[-76.59689745994567,39.24457174633184],[-76.59691721341726,39.24457582889956],[-76.59692086163838,39.24457434163885],[-76.59693777718492,39.24454594790843],[-76.59695565082895,39.24452406644839],[-76.59696917412947,39.24451613743281],[-76.59698086981126,39.24451263034036],[-76.59698833228968,39.24450999507536],[-76.59699890830919,39.2445086378851],[-76.59700454004349,39.24450791498048],[-76.59700874819542,39.24450737454967],[-76.59702046728559,39.24450484487205],[-76.59703030017208,39.24450379409316],[-76.5970401161564,39.24450368005905],[-76.59705274405758,39.24450410442905],[-76.59707168867621,39.24450700868629],[-76.59708659124941,39.24450914962537],[-76.59710240345896,39.2445114468157],[-76.59711687283435,39.24451337458269],[-76.5971326758829,39.24451544924657],[-76.59714531469096,39.24451701402227],[-76.5971624641907,39.24451882126912],[-76.59717735552826,39.24452028928091],[-76.59719268317679,39.24452223889967],[-76.59720806613258,39.24452485347647],[-76.59722295897768,39.24452748528596],[-76.59723921059545,39.24452829048416],[-76.59725314668017,39.24452702586782],[-76.59726615261405,39.24452187032403],[-76.59727885162191,39.24451588771732],[-76.59729408621823,39.2445105533555],[-76.59731027559623,39.24450926043079],[-76.59732423440722,39.24450909392588],[-76.59734002537026,39.24451064517147],[-76.59735449326764,39.24451467260527],[-76.59737037324908,39.24451952368252],[-76.59738667156198,39.24452394201978],[-76.59740204678424,39.2445273086898],[-76.59741921336264,39.24452998700487],[-76.59743498918215,39.24453053292341],[-76.5974548019085,39.2445302982003],[-76.59747100454096,39.24452993669785],[-76.59748539009355,39.2445284673181],[-76.59749955354255,39.24452510375093],[-76.59751413224227,39.24451898974505],[-76.59752869988843,39.2445123730683],[-76.59754036517738,39.24450564014899],[-76.59755335383387,39.24449903246856],[-76.59756734945903,39.244492984916],[-76.59758460450246,39.24448618828216],[-76.59759891079162,39.24448071648369],[-76.59761411658526,39.2444753486531],[-76.59762755260866,39.24447156191641],[-76.59764507460119,39.24446937364094],[-76.59765948173576,39.2444692032281],[-76.59767434379556,39.24446909202198],[-76.59769014398285,39.24447105940912],[-76.59770370707005,39.2444738766638],[-76.5977190720201,39.2444766037085],[-76.59773441337988,39.24447920095909],[-76.59775026278345,39.24448250074957],[-76.59776883883542,39.24448809964414],[-76.5977819814837,39.24449233686854],[-76.59779739367325,39.24449735923364],[-76.59781144689542,39.24450220129044],[-76.5978291309412,39.24450821417727],[-76.59784363685823,39.24451310101807],[-76.59786176860419,39.24451922262552],[-76.59787718921012,39.24452460171488],[-76.59789395550004,39.24452984849386],[-76.59790979667132,39.24453399135771],[-76.59792426455853,39.24453679997565],[-76.59793870679214,39.24453841137709],[-76.59795267343617,39.24453870331758],[-76.59796708057902,39.24453853376776],[-76.59798103937888,39.24453836988708],[-76.59799589834984,39.24453819287321],[-76.59801302838058,39.24453914689733],[-76.59802612483819,39.24454090771206],[-76.59804012983821,39.24454322290891],[-76.5980555005833,39.24454615890851],[-76.59806907616765,39.24454943375614],[-76.59808264809377,39.24455253654208],[-76.59809711295497,39.24455526766186],[-76.59810888522983,39.24455847958276],[-76.59812291425108,39.2445620775522],[-76.59813642779132,39.24456239854606],[-76.59815219154137,39.2445622138002],[-76.59816525380405,39.2445624449704],[-76.59818059472904,39.24456389727892],[-76.59819504264459,39.24456573476218],[-76.59820903692555,39.24456748962154],[-76.59822350487221,39.24457029099656],[-76.59823707776863,39.24457342889799],[-76.59825155564714,39.24457693200544],[-76.59826694442873,39.24458098229479],[-76.59828098208347,39.24458489914834],[-76.59829592426989,39.24458885152304],[-76.59831400135563,39.24459215525643],[-76.59832843628779,39.24459321801433],[-76.59834419925423,39.24459317285977],[-76.59836040674053,39.24459297879484],[-76.59837436555019,39.24459281486734],[-76.59839102136934,39.24459261692729],[-76.59840768182714,39.24459241809996],[-76.59842167213213,39.24459405852222],[-76.59843571856244,39.24459826903914],[-76.59845151065254,39.2446053625929],[-76.59846530104488,39.24461265017057],[-76.59848060562705,39.24462155440755],[-76.59849312688542,39.2446301878995],[-76.59850529705015,39.24463904268021],[-76.59851953110359,39.24464961238254],[-76.59853010698363,39.24465749517951],[-76.59854356673462,39.24466753527901],[-76.5985543959461,39.24467568827099],[-76.59856749496097,39.2446858118068],[-76.59858027608136,39.24469643148062],[-76.59859202637784,39.2447066107537],[-76.59860429829804,39.24471734668496],[-76.59861454332427,39.24472638133183],[-76.5986254107704,39.24473597027931],[-76.59863545614239,39.24474589690729],[-76.5986445540671,39.24475620762754],[-76.59865330617855,39.24476621540605],[-76.59866268274163,39.24477723778699],[-76.59867152795346,39.24478717111819],[-76.59867756683752,39.24479413942068],[-76.59868167332999,39.24479887710977],[-76.59868959814459,39.24480973779129],[-76.59869591709823,39.24481941837561],[-76.59870336067117,39.2448305719638],[-76.5987104095912,39.24484043069307],[-76.59871694510672,39.24484971387492],[-76.59872536429293,39.24485939623161],[-76.59873098090127,39.24486770343739],[-76.59873535715307,39.24488066700066],[-76.59873717511715,39.24489186981711],[-76.59873806394332,39.24490206149332],[-76.59873981128626,39.24491530611971],[-76.5987414064299,39.24492617038471],[-76.5987428710658,39.24493737469561],[-76.59874422100432,39.24494858131675],[-76.59874600732543,39.24496046410797],[-76.59874868376698,39.2449716536442],[-76.59875228201153,39.24498351290253],[-76.59875397141546,39.24499573675508],[-76.59875410163157,39.24500692479482],[-76.59875184631522,39.24501878386385],[-76.59874948824833,39.2450303759529],[-76.59874733796408,39.24504230293866],[-76.5987440521632,39.24505447916043],[-76.59873945078967,39.24506596810004],[-76.59873448127892,39.24507741344487],[-76.59873030358078,39.24508936682918],[-76.59872549158025,39.24510245752248],[-76.59872014128565,39.24511322688646],[-76.59871525093256,39.24512501299292],[-76.59870916050535,39.24513617256332],[-76.59870215989783,39.24514542568991],[-76.59869385051246,39.2451556579859],[-76.59868697357602,39.24516537002755],[-76.59867855689515,39.24517757284585],[-76.59866962163046,39.2451880660261],[-76.5986596922771,39.24519735597837],[-76.59865037073531,39.2452060958342],[-76.59863682608851,39.24521862971759],[-76.5986287575146,39.24522622086642],[-76.59861883868433,39.24523323820225],[-76.598608072105,39.24523960047952],[-76.59859793751771,39.2452454388655],[-76.59858831296964,39.24525142401889],[-76.59857718165937,39.24525795889529],[-76.59856793017036,39.24526311661189],[-76.59855589775512,39.24526736945077],[-76.59854640112452,39.24527265243561],[-76.59853991086378,39.24528137764324],[-76.59853503074928,39.24528970751284],[-76.59852954049029,39.24529961344907],[-76.59852281032805,39.245310199732],[-76.5985161189023,39.24532028621827],[-76.59850863048811,39.24533077892924],[-76.59850090861562,39.24534383714203],[-76.59849594568152,39.24535533834644],[-76.59849155091668,39.2453663352596],[-76.59848649597728,39.24537812709836],[-76.59848049525499,39.24539021115561],[-76.5984743216612,39.24540172713466],[-76.59846373749293,39.24542007029565],[-76.59846142305531,39.24542352945284],[-76.5984531832217,39.2454345609542],[-76.59844491226957,39.24544413039496],[-76.5984363131669,39.24545375456056],[-76.59842785072134,39.24546297564687],[-76.59841793879771,39.24547367714822],[-76.59840912298353,39.24548351945818],[-76.59839957728502,39.24549316830695],[-76.59839211342882,39.24550115694686],[-76.59838040517265,39.24551096503917],[-76.59836906211724,39.24551949258055],[-76.59835818249675,39.24552780462014],[-76.59834651526326,39.2455379362267],[-76.59833761305752,39.24554666488094],[-76.59832909923253,39.24555554439146],[-76.59831966656147,39.24556712037246],[-76.59831025797965,39.24557873787064],[-76.59830099379464,39.24559042702311],[-76.59829185719212,39.24560065555858],[-76.59828262016262,39.24561020636882],[-76.59827047160077,39.2456198210789],[-76.59825881633678,39.24562721887334],[-76.59824421986106,39.24563583075127],[-76.59823139090913,39.24564366950811],[-76.59821940033224,39.24565095355457],[-76.59820619111382,39.24566027638089],[-76.59819513049304,39.24566944982489],[-76.59818497498826,39.24567937580825],[-76.59817476280789,39.24568887643216],[-76.59816304711273,39.24569896461728],[-76.59815156647701,39.2457078429677],[-76.59813992334651,39.24571636675723],[-76.5981300263244,39.24572380838964],[-76.59811671910613,39.24573488557484],[-76.59810596546106,39.24574446630947],[-76.59809543488886,39.24575413608249],[-76.59808620597974,39.24576265371891],[-76.59807387261739,39.245773184762],[-76.59806332392841,39.24578216537918],[-76.59805254944952,39.24579051288019],[-76.59804178053689,39.24579930898382],[-76.59803029030094,39.24580803595963],[-76.59801832751619,39.24581429049773],[-76.59800626854619,39.245821368912],[-76.59799554168694,39.24582928329924],[-76.59798453339398,39.24583963961644],[-76.59797545871854,39.2458503745729],[-76.59796647759241,39.24586136386678],[-76.59795449695693,39.24587076743733],[-76.59794288328045,39.24587755912274],[-76.59793920604167,39.24589029696187],[-76.59792831602624,39.24590349291305],[-76.59791712317893,39.24591227314091],[-76.59790416180532,39.24592077347575],[-76.59789167076006,39.24592988704453],[-76.59787701869676,39.24594154419724],[-76.59786453900408,39.24595049296064],[-76.59785321511673,39.24595847645076],[-76.5978484146177,39.24596765779317],[-76.59784742134035,39.24598082998737],[-76.59784395909288,39.24598751446898],[-76.597833864916,39.24599600480042],[-76.59782238050849,39.24600001262943],[-76.59780968913805,39.24600031504915],[-76.59779764650196,39.24600061698767],[-76.59778588990268,39.24600400324852],[-76.59777410195927,39.24601128524102],[-76.59776240170045,39.24601965206261],[-76.59774922291443,39.2460268527217],[-76.59773374180143,39.24603270784375],[-76.59772166031445,39.24603557143782],[-76.59770948756002,39.24603879953064],[-76.59769627391458,39.24604397332665],[-76.59768267642184,39.24605023934337],[-76.59767182809081,39.24605852079962],[-76.59766231415438,39.24606866602184],[-76.59765353990358,39.24608115848855],[-76.59764803333967,39.24609452149014],[-76.59764203591875,39.24611048333875],[-76.59763792170068,39.24612550042564],[-76.59763447017522,39.24614009822207],[-76.5976333421763,39.24615843227812],[-76.5976336975306,39.24616441012002],[-76.59763397986805,39.24617877300074],[-76.59763429385548,39.24619490961047],[-76.59763185569973,39.24622202170551],[-76.59762713132498,39.24624576338197],[-76.59762440614986,39.24625668131012],[-76.59761655849812,39.24626572338843],[-76.59761315981851,39.24627181447178],[-76.59753336484725,39.24628582359892],[-76.59752295700132,39.24629241309924],[-76.59751765469743,39.24629957407659],[-76.59751519677596,39.24630912014143],[-76.59751529692905,39.24631944693773],[-76.59751797700062,39.24632813236384],[-76.59752478087276,39.2463380966112],[-76.597525692988,39.24634476635334],[-76.59751925221484,39.24635228373675],[-76.59751048869205,39.24635837894436],[-76.59749942220816,39.24636855125796],[-76.59749500656652,39.24637379392687],[-76.59749314435925,39.24638349606548],[-76.59749622971371,39.24639221260685],[-76.59750653275687,39.24639920549403],[-76.5975190200549,39.24640446467567],[-76.59752857866557,39.24640749611492],[-76.59754476771556,39.24641001432318],[-76.59755782474886,39.24641143185866],[-76.59757191552121,39.246413596974],[-76.59758447176682,39.24641732146912],[-76.59760199873604,39.24642557947205],[-76.59761801390168,39.24643384129851],[-76.59762976775023,39.24643953753135],[-76.59764407090779,39.24644654051255],[-76.59765590480552,39.2464538521016],[-76.59766716167034,39.24646200303319],[-76.59768031635316,39.24647092522277],[-76.59769428770667,39.24647924218817],[-76.59770731297203,39.24648606333047],[-76.59772383152713,39.24649401610078],[-76.59773777396262,39.24650069175487],[-76.59775152159675,39.24650596874147],[-76.5977642474685,39.24651022435314],[-76.5977779487356,39.24651325825506],[-76.59779058108668,39.24651336999147],[-76.59780448116973,39.24651300595794],[-76.59781883612557,39.24651087256289],[-76.59783260395317,39.2465076796484],[-76.59784730840256,39.24650315589693],[-76.59786238295746,39.24649873790097],[-76.59787781222668,39.24649509758358],[-76.59789249054352,39.24649314093768],[-76.59790675949415,39.24649248720605],[-76.59792363297959,39.24649218558679],[-76.59794046528388,39.24648954181643],[-76.59795467310579,39.24648474972225],[-76.59797015495218,39.24647877927519],[-76.59798477530343,39.24647294279352],[-76.59800154339837,39.24646608948614],[-76.59801444301127,39.24646094160414],[-76.59803594496522,39.24645258399699],[-76.59805185882692,39.24644642225306],[-76.59806820320962,39.24644013046812],[-76.59808367785968,39.24643358618955],[-76.59809839891426,39.24642612414469],[-76.59811166382786,39.24641681323268],[-76.59812575564555,39.24640754298217],[-76.59813921136028,39.24640033782472],[-76.59815379393835,39.24639339234211],[-76.59816710894628,39.24638730365739],[-76.59818142160425,39.24638260827718],[-76.59819750849866,39.24637964124393],[-76.59821473810956,39.24637617999209],[-76.5982314840036,39.24637262700517],[-76.598249170342,39.24636952221557],[-76.59826558267477,39.24636759307537],[-76.59828244022589,39.24636621222503],[-76.59829877933743,39.24636534844318],[-76.59831950980991,39.24636167936602],[-76.59833450842716,39.24636125327198],[-76.59834782713568,39.24636126280718],[-76.59836196619275,39.24636472420404],[-76.59837495412955,39.24637282694345],[-76.59838688989846,39.2463820052072],[-76.59839949434358,39.24639339264886],[-76.59841135897922,39.24640634039831],[-76.59842257475728,39.24641787711936],[-76.59843361835529,39.24642872415967],[-76.59844614744483,39.24643991947391],[-76.59845981141204,39.24645180235439],[-76.5984700419858,39.24646466163774],[-76.59848123478243,39.24647678287545],[-76.5984889428254,39.2464848288113],[-76.59849731034409,39.24649486770834],[-76.598504997362,39.24650806508709],[-76.59850914112208,39.246524662473],[-76.59851502716157,39.24653962911389],[-76.59852112703516,39.24655304265367],[-76.59852930388367,39.24656627683569],[-76.598541920527,39.24658678281929],[-76.59854659508375,39.24659555971344],[-76.59855068549399,39.24660336267683],[-76.59855685064255,39.24661343006929],[-76.59856366387801,39.24662381764994],[-76.59857108868987,39.24663381188234],[-76.59857694865616,39.2466435602576],[-76.59858080556799,39.24665332250156],[-76.5985844717876,39.24666505318115],[-76.59858665832927,39.24667417827238],[-76.5985882377836,39.24668331299792],[-76.59859024637933,39.2466927671632],[-76.59859178455599,39.24670059742949],[-76.59859312888094,39.24671136445075],[-76.59859403777777,39.24671985102986],[-76.598594690449,39.24673062739629],[-76.59859558034505,39.24674185946364],[-76.59859705833229,39.24675131992144],[-76.59859901827154,39.24676077482079],[-76.59860104414057,39.24677024796095],[-76.59860409054099,39.24678034882522],[-76.59860567348036,39.24678948266136],[-76.59860583842013,39.24680026276462],[-76.59860283279379,39.24681040238818],[-76.59859875808115,39.24681928177942],[-76.59859425742025,39.24683075934231],[-76.59859186730247,39.24683960485898],[-76.59859137186778,39.24685039351348],[-76.59859163233021,39.24686476712291],[-76.59859133740066,39.24687390084388],[-76.59858961320799,39.24688339449077],[-76.5985874496475,39.24689519621489],[-76.59858569049804,39.24690534009954],[-76.59858418733158,39.24691385175971],[-76.59858242144834,39.24692334256149],[-76.59858035183136,39.24693512478959],[-76.59857851970969,39.24694690512732],[-76.59857686321315,39.24695835728365],[-76.59857541038929,39.24697046229535],[-76.5985742555754,39.24698354115966],[-76.59857101112314,39.24700415774544],[-76.59856751430416,39.24702248911027],[-76.59856534872222,39.24703198394949],[-76.59856175488513,39.24704247916661],[-76.59855909624676,39.24705230380387],[-76.59855680740611,39.24706310884471],[-76.59855408899062,39.24707489966266],[-76.59855173482835,39.24708537389666],[-76.59855059682897,39.24709486414222],[-76.59854961665793,39.24710532956271],[-76.59854883877753,39.24711546329004],[-76.59854828146912,39.24712592475175],[-76.59854741834184,39.24713802187041],[-76.59854676461731,39.24714750566483],[-76.59854623415978,39.24715567745587],[-76.5985455054167,39.24716777413319],[-76.59854466821567,39.2471785643202],[-76.59854374179872,39.24718935690444],[-76.59854277671641,39.2472014554758],[-76.59854216796208,39.24721159068189],[-76.59854211692898,39.24722204756907],[-76.59854229043682,39.24723315468065],[-76.59854149309444,39.24724427108315],[-76.59853848090212,39.24725802457851],[-76.59853490098665,39.2472685135364],[-76.59853078606541,39.24727998971224],[-76.59852685627594,39.24729048107653],[-76.59852134396367,39.24730425844962],[-76.59851687359759,39.24731508305209],[-76.59851218472528,39.24732623839116],[-76.5985096029182,39.24733312677284],[-76.59850426809619,39.24734624538693],[-76.598499698774,39.24735674537231],[-76.59849527238205,39.24736593882622],[-76.59848989463224,39.24737579109375],[-76.59848338963215,39.24738729152161],[-76.59847761540534,39.24739678302459],[-76.59845975480098,39.2474269635556],[-76.59845523485258,39.24743876802562],[-76.5984518406818,39.24744631749626],[-76.59844694463165,39.2474568217665],[-76.59844169570435,39.24746765451203],[-76.5984378261155,39.24747814878104],[-76.59843454531774,39.24748961609587],[-76.59842913317854,39.24750062933771],[-76.59842136103299,39.24751372429773],[-76.59841393751493,39.2475245793292],[-76.59840675751957,39.24753477672903],[-76.59839632650029,39.24754810580074],[-76.59838891134252,39.24755604866369],[-76.59837918692877,39.24756549782415],[-76.59837035787531,39.24757374301238],[-76.5983597534416,39.2475833215742],[-76.59834971648311,39.24759354522753],[-76.59834060865232,39.24760376305095],[-76.59833342699802,39.24761363616251],[-76.59832647871436,39.24762546474699],[-76.59832053996371,39.2476359762534],[-76.59831517743916,39.24764517730638],[-76.59830933507797,39.24765667008251],[-76.59830514987785,39.24766683898901],[-76.59830169038653,39.24767732835074],[-76.5982999284346,39.2476904132396],[-76.59829942738803,39.24770218461332],[-76.59829950217001,39.24771394444564],[-76.5982978835274,39.24772606599877],[-76.59829408922833,39.24773819361936],[-76.59829033087068,39.24775031595807],[-76.59828563897058,39.24776506535623],[-76.59827804821795,39.24778314940098],[-76.59826782773813,39.24779836359559],[-76.59825501047196,39.24781327975568],[-76.59824834434374,39.24782314651869],[-76.59824318193452,39.247834443448],[-76.59824175001734,39.24784222752188],[-76.59823486988365,39.24784876339833],[-76.59822573360347,39.24785703995167],[-76.59821584311517,39.24786450412939],[-76.59820515365196,39.24787210609232],[-76.59818990445126,39.24788195158472],[-76.5981798625557,39.24788628235682],[-76.59816777371168,39.24788650490817],[-76.59815583945385,39.24788459135667],[-76.59814348207568,39.24788190799732],[-76.59812988495243,39.24787864119681],[-76.59811817228923,39.2478754429986],[-76.59810460546021,39.24787173672222],[-76.59809256097637,39.24786739880997],[-76.59807945069386,39.24786183309894],[-76.59806664620166,39.2478550487883],[-76.5980552950002,39.24785041689168],[-76.59804245831101,39.24784768233825],[-76.59803122854802,39.24784779161715],[-76.59801871397423,39.24784791090832],[-76.59800690184008,39.24784857306639],[-76.59799568062348,39.24785044608239],[-76.59798660439138,39.24785322901545],[-76.59797680700544,39.24785856857122],[-76.59796753012937,39.24786486832973],[-76.59795826003534,39.247872015737],[-76.59794765318229,39.24787995845124],[-76.59794073109569,39.24788387382159],[-76.59793137971789,39.24788410031852],[-76.59792396669964,39.24788367408799],[-76.59791524187843,39.24788311455405],[-76.59790671096515,39.24788431759324],[-76.59790421600998,39.24788526746963],[-76.59789637595705,39.24788864823808],[-76.59788839384244,39.24789338418108],[-76.59787999636659,39.247899661723],[-76.5978697216713,39.2479052059117],[-76.59786107374066,39.24791009090193],[-76.59785471347321,39.24791462612103],[-76.5978531797715,39.24791992010825],[-76.59785549967411,39.24792369508226],[-76.59786344599566,39.24792589135878],[-76.59787183819145,39.24792790810685],[-76.59788392307993,39.24793145260011],[-76.59789567952431,39.24793612463426],[-76.59790744177289,39.24794099936078],[-76.59792048176833,39.24794670266825],[-76.59793612789971,39.24795596213855],[-76.59794571595599,39.24796447033508],[-76.59795313734334,39.24797282878922],[-76.59795927540137,39.24798257183842],[-76.59796574551746,39.24799361763956],[-76.59797144912598,39.24800336460493],[-76.5979772780913,39.24801409203897],[-76.59798304335837,39.24802481655227],[-76.59798813477336,39.24803424615033],[-76.59799390467758,39.2480449706789],[-76.59799855990246,39.24805471135076],[-76.59800318029667,39.24806610211697],[-76.59800743549071,39.24807488299753],[-76.59801389843365,39.24808658453293],[-76.59802157945938,39.24809696790554],[-76.59803016236829,39.2481076579255],[-76.59804006350552,39.24811775704792],[-76.5980528524591,39.24812708869016],[-76.59806857049064,39.2481357313596],[-76.59808426551155,39.24814332364831],[-76.5980982183019,39.24814987048034],[-76.59811392766699,39.24815677192222],[-76.59812871083231,39.24816254692927],[-76.5981430660693,39.24816737826254],[-76.59815699860351,39.24817136592564],[-76.59817392299031,39.24817564937155],[-76.59818957639474,39.24817934116202],[-76.59820301885429,39.24818251734861],[-76.59821737566443,39.24818584438932],[-76.5982321382948,39.24818910976298],[-76.59824646158641,39.24819201422348],[-76.59826251930606,39.24819468321027],[-76.59828203665371,39.24819769281409],[-76.5983006941494,39.2482009525896],[-76.59831588045263,39.24820345915094],[-76.59832891818824,39.24820711945431],[-76.59834369395921,39.24821113520172],[-76.59835757856122,39.24821356524262],[-76.59837272584714,39.24821375487827],[-76.5983874395249,39.24821379890525],[-76.59841054473027,39.24821352934085],[-76.59842308833957,39.24821340830547],[-76.59843736861785,39.24821326978866],[-76.59845336791273,39.24821254804471],[-76.5984654702796,39.24821178774931],[-76.59848189762766,39.24821096477751],[-76.59849659636292,39.2482099638445],[-76.59851215846047,39.24820911629094],[-76.59852642541108,39.24820826160419],[-76.59853979590186,39.24820552664212]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":267429.282904,"geom:bbox":"-76.5987541016,39.2430018001,-76.5912989395,39.249548221","geom:latitude":39.246589,"geom:longitude":-76.595029,"iso:country":"US","lbl:latitude":39.247141,"lbl:longitude":-76.594775,"lbl:max_zoom":18,"mps:latitude":39.247141,"mps:longitude":-76.594775,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"reversegeo:latitude":39.247141,"reversegeo:longitude":-76.594775,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108797011,102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"9f039d306afe67af9d9362ea8e6a111f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797025,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797025,"wof:lastmodified":1566624075,"wof:name":"Masonville Cove","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108797027.geojson b/fixtures/microhoods/1108797027.geojson new file mode 100644 index 0000000..39b6050 --- /dev/null +++ b/fixtures/microhoods/1108797027.geojson @@ -0,0 +1 @@ +{"id":1108797027,"type":"Feature","bbox":[-76.58911731063931,39.20658334617436,-76.54992059609643,39.23338507322001],"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.5585811106795,39.23338507322001],[-76.54992059609643,39.2171388021647],[-76.5499235731062,39.21714063547613],[-76.5499360074933,39.21714776420995],[-76.54994852567614,39.21715519232335],[-76.5499602354584,39.21716209308025],[-76.54997102510113,39.21716819131394],[-76.54998417273954,39.21717551464426],[-76.54999580793675,39.21718194310188],[-76.55000371609013,39.21718609990767],[-76.55001499551422,39.21719238917952],[-76.55002635626889,39.21719918410067],[-76.55003679357746,39.2172073428667],[-76.55004565997159,39.21721396608116],[-76.55005556752597,39.21722129949976],[-76.55006626126533,39.21722864674115],[-76.55007682075042,39.21723488640601],[-76.55008807179452,39.21724072246864],[-76.55009756111339,39.21724589600704],[-76.5501079326036,39.21725238266333],[-76.55011609132478,39.21725811679013],[-76.5501250829236,39.21726453690172],[-76.55013223741815,39.21727122560942],[-76.55014144220797,39.21727579903361],[-76.55015066678699,39.21728035631887],[-76.55015957804007,39.21728501959539],[-76.55016945493115,39.21729043332069],[-76.55017844315823,39.21729574185051],[-76.5501864017475,39.21730071494539],[-76.55019498109513,39.21730476171304],[-76.55020515633569,39.21730877856558],[-76.55021387491918,39.21731314744458],[-76.55022226914342,39.21731863294991],[-76.55022962492679,39.21732462431716],[-76.55023894445135,39.21733101324853],[-76.55024740553304,39.21733654765044],[-76.55025707360643,39.21734202362272],[-76.55026622473135,39.21734611401227],[-76.55027559930342,39.21734948012817],[-76.5502890307469,39.21735423818419],[-76.55029844983682,39.21735770625713],[-76.55030848096796,39.21736217293924],[-76.550317151318,39.21736629751378],[-76.55032696370043,39.21737129571807],[-76.55033537799575,39.2173752598717],[-76.5503439998113,39.21737863751024],[-76.55035390208356,39.21738224164653],[-76.55036238302944,39.21738573854789],[-76.55037263525877,39.21739040154123],[-76.55038122051421,39.21739406728705],[-76.55039121347069,39.21739779787706],[-76.5504050025573,39.21740240325622],[-76.5504148219531,39.21740574674397],[-76.55042228374762,39.21740908119897],[-76.55042968974377,39.21741226681076],[-76.55043867399142,39.21741528281566],[-76.55044877421486,39.21741834993554],[-76.55045660622812,39.2174217380519],[-76.55046309094743,39.21742429949384],[-76.5504721642911,39.21742677807076],[-76.55048058492284,39.21742901183651],[-76.55048761337949,39.21743055747655],[-76.55049481797158,39.21743208397361],[-76.55050207093494,39.2174332863741],[-76.55050902827084,39.21743435973085],[-76.55051657433492,39.21743554163429],[-76.55052293222862,39.21743582090709],[-76.55053841355668,39.21743798352651],[-76.55055875944169,39.21743888836659],[-76.55059862454955,39.21743902932516],[-76.55066291487111,39.21745127932181],[-76.55087098974847,39.21748922137208],[-76.55089693207326,39.21749197796004],[-76.55090853988484,39.21749268715849],[-76.55093143423356,39.21749070747487],[-76.55096018223385,39.21748231410022],[-76.55120953738898,39.21739931331018],[-76.55148203143924,39.21730502805971],[-76.55150622956447,39.21729663697917],[-76.55154018056369,39.21728489172111],[-76.55162564054777,39.21725542581738],[-76.5516609763184,39.21724333541109],[-76.55185744665663,39.21717600026206],[-76.55193477106003,39.21715707373858],[-76.55200241953288,39.21713664645628],[-76.55205068999052,39.21712196061537],[-76.55209855341498,39.21710699666108],[-76.55215007039924,39.21709421210954],[-76.55219101421072,39.21708559293933],[-76.55227374606481,39.21706833976142],[-76.55228985679946,39.2170647053188],[-76.55230892109047,39.21706040745605],[-76.55233040233553,39.21705478385176],[-76.55235139516633,39.21704875212795],[-76.55237349630697,39.21704270030678],[-76.55239341238068,39.21703792736423],[-76.55241382435088,39.21703274195008],[-76.55243256425682,39.21702901662806],[-76.55245396071231,39.21702508434584],[-76.552473429352,39.21702074926483],[-76.55249243092048,39.21701647815662],[-76.55251243479022,39.21701210367419],[-76.55253137496564,39.21700820254684],[-76.55255108596573,39.21700436290626],[-76.55257006119243,39.2169993089057],[-76.55259004312423,39.21699400381897],[-76.55260793145555,39.21698942938826],[-76.5526258754347,39.21698502811706],[-76.55264359879871,39.21698035396606],[-76.55266098096165,39.21697543169755],[-76.55267721557583,39.2169705077546],[-76.55269180382234,39.21696645849859],[-76.5527139023366,39.21696026337905],[-76.55273129417208,39.21695490696026],[-76.55274876659823,39.21694852125249],[-76.55276233547409,39.21694379071488],[-76.55277910091657,39.21693934079045],[-76.5527942271822,39.21693499181023],[-76.55280845702418,39.21692974673735],[-76.55282065641659,39.21692605407953],[-76.55283489676077,39.21692189898938],[-76.55284661316573,39.21691932686253],[-76.55285949124574,39.21691837426234],[-76.5528712378871,39.21691817220492],[-76.55288435538817,39.21691799969043],[-76.5528959118194,39.21691784554807],[-76.55290643060256,39.21691770726851],[-76.55291597808782,39.21691771391656],[-76.55293326227336,39.216920439772],[-76.55296238219067,39.21692922973531],[-76.55298224608268,39.2169360459516],[-76.55300106578753,39.21694152593105],[-76.5530182638433,39.21694634666409],[-76.55303874988994,39.21695182577806],[-76.55305667720175,39.21695558636058],[-76.55307560956334,39.21696119917195],[-76.55309210392397,39.21696670090746],[-76.55311237842662,39.21697322771281],[-76.55313169056798,39.21697847984708],[-76.55315049352785,39.21698331207664],[-76.55316947000726,39.2169881728881],[-76.55318796775794,39.21699384708114],[-76.55320822641536,39.21700013420151],[-76.55322331996874,39.21700558374459],[-76.55323844115657,39.21701105861279],[-76.55325301531184,39.21701660796297],[-76.55327054030845,39.21702247661171],[-76.55328606434502,39.217026316287],[-76.55330240738391,39.21703010683235],[-76.55332917398941,39.21703582869171],[-76.55334256422047,39.2170405339959],[-76.55335582858343,39.21704481545211],[-76.55336962749749,39.21704732530222],[-76.55338216948589,39.21705046992208],[-76.55339401587347,39.21705300746886],[-76.55340471621196,39.21705548930856],[-76.55341687472347,39.21705737497416],[-76.55342740375526,39.21705726731341],[-76.55343808469402,39.21705712600003],[-76.55344734699385,39.21705700270779],[-76.55345681254292,39.21705604696522],[-76.55346664095386,39.21705447286481],[-76.55347479532536,39.21705265098441],[-76.55350061803489,39.21704698063065],[-76.55351355878095,39.21704343034283],[-76.5535310280697,39.21703974595119],[-76.5535503441289,39.21703591004513],[-76.5535706999536,39.21703135296213],[-76.55359084017569,39.21702719860554],[-76.55360763034747,39.21702433583437],[-76.55362611211264,39.21702095433945],[-76.55364452151741,39.21701876790357],[-76.55366209508944,39.21701654495691],[-76.55367890525544,39.21701381646806],[-76.55369582631576,39.21701205223491],[-76.55371597441733,39.2170090373757],[-76.55373328234015,39.21700633599389],[-76.55375074525735,39.21700366222235],[-76.553766512705,39.21700064961279],[-76.55378447800445,39.2169972670298],[-76.55379933993797,39.21699461849172],[-76.55381647550163,39.21699133453739],[-76.55383709325497,39.21698710538779],[-76.55385125403194,39.21698436409922],[-76.55386671015549,39.21698150702863],[-76.55388232292314,39.21698062686646],[-76.5538967993098,39.21698036392172],[-76.55391081340512,39.21697885163533],[-76.55392550017595,39.21697606639738],[-76.5539395184969,39.21697277507987],[-76.55395680690604,39.21696875304503],[-76.55397162913432,39.21696560259883],[-76.55398902665165,39.21696282945735],[-76.55400576059536,39.21695932686059],[-76.55403120026592,39.21695397291043],[-76.55404811626794,39.21695061332304],[-76.55406422241641,39.21694769023721],[-76.55407966334965,39.21694503665758],[-76.55409600301388,39.21694254502837],[-76.55411257133571,39.21694070553081],[-76.55412773158206,39.21693830850191],[-76.55414315021999,39.21693588542931],[-76.5541584654162,39.21693407629473],[-76.55417747385955,39.21693201005363],[-76.554194602456,39.21692927729599],[-76.55421051299301,39.21692762985466],[-76.55422782307873,39.21692513108404],[-76.55424248204086,39.2169223448001],[-76.5542594647002,39.21691906290268],[-76.55427424490756,39.21691596180165],[-76.55429071720758,39.21691263021987],[-76.55431217398852,39.21690736647311],[-76.55432753154084,39.21690397300252],[-76.5543430603683,39.21690022707386],[-76.55435697797638,39.21689674075525],[-76.55436936361558,39.21689324861754],[-76.55438545288612,39.21688950481156],[-76.55441499870602,39.21688396369433],[-76.5544880445807,39.21687167422001],[-76.55450082022337,39.2168702481406],[-76.55451663860792,39.21686815081789],[-76.55453234704159,39.21686659804863],[-76.5545473468718,39.21686503267888],[-76.55456548665926,39.21686317386057],[-76.55458188159199,39.21686091117209],[-76.55460157573629,39.21685807279277],[-76.55461603286976,39.21685589012065],[-76.55463325727493,39.21685356931993],[-76.55464983393438,39.21684984083913],[-76.55466664950843,39.2168451296091],[-76.55468285205625,39.21684196809716],[-76.55469906005342,39.21683904531082],[-76.55471645129279,39.21683781777912],[-76.5547337454444,39.21683619173095],[-76.55475316618018,39.21683207858356],[-76.55477165754483,39.21682862668384],[-76.55478792637061,39.21682615901074],[-76.55480757217762,39.21682216200828],[-76.5548239269755,39.21681891007556],[-76.55484246519215,39.21681481788669],[-76.55485926140224,39.21681152979061],[-76.55487436396284,39.21680872078934],[-76.55489248823666,39.21680600792071],[-76.55490876925863,39.21680325563019],[-76.55492520525814,39.2168005336509],[-76.55494379754859,39.21679797388072],[-76.55496220206311,39.21679378027834],[-76.55497756934048,39.21678974990701],[-76.55498974373569,39.21678577408385],[-76.55500174990854,39.21678258760711],[-76.55501687288836,39.21677984442203],[-76.55503686189581,39.21677799074131],[-76.55506044813066,39.21677475448459],[-76.55507169924076,39.21677324059172],[-76.55508549933509,39.21677223629545],[-76.55509889380204,39.21677110074723],[-76.55511493712274,39.21676913571089],[-76.55512967046397,39.21676611089106],[-76.55514295916157,39.21676337424786],[-76.55515759857929,39.21676073910691],[-76.55517888086337,39.21675632487831],[-76.5551936971287,39.21675300130531],[-76.55521149511435,39.21674987279115],[-76.55522736809039,39.21674792601024],[-76.55524543421926,39.2167454326575],[-76.5552618961424,39.21674208018228],[-76.55528062798322,39.21673849669892],[-76.55529898254005,39.21673487845391],[-76.55531457663605,39.21673086601288],[-76.55532937392289,39.21672890703499],[-76.55534793703954,39.21672637771687],[-76.55536849913807,39.21672379741891],[-76.55538683065532,39.2167205285762],[-76.5554018111607,39.21671815772536],[-76.55542074103099,39.21671567932818],[-76.55543703693894,39.21671220729628],[-76.55545068175222,39.21670825861447],[-76.55546520254326,39.21670440693064],[-76.55547571386609,39.21669694503787],[-76.5554842205429,39.21668784873921],[-76.55549256551227,39.21667979673412],[-76.55550378883586,39.21667087826947],[-76.55551436240309,39.21666253564457],[-76.55552389109168,39.21665351437568],[-76.55553202058258,39.21664436620109],[-76.55553747614165,39.21663506017047],[-76.55554260834718,39.21662598351504],[-76.55554731184426,39.21661768801493],[-76.55554916948753,39.21660969160538],[-76.55554888169046,39.21659517441892],[-76.55554828814968,39.21658806410284],[-76.55554482649654,39.21657888914203],[-76.5555407449745,39.21657236103228],[-76.55553599283519,39.21656641228745],[-76.55553329135782,39.21656270074385],[-76.55552885753777,39.21655547679665],[-76.55552869816984,39.21654819247243],[-76.55552856657398,39.21654220627976],[-76.55552840431862,39.21653482826321],[-76.5555282744523,39.21652893575838],[-76.5555272009629,39.21652394856827],[-76.55552418793583,39.21651710112416],[-76.55552410225569,39.21651099440056],[-76.55552612442821,39.21650538748737],[-76.55552732815903,39.21649918656149],[-76.55552939996467,39.21649360505805],[-76.55553622949608,39.2164873434685],[-76.55554849855373,39.21647378002558],[-76.55555321105972,39.21646866882234],[-76.55555817333897,39.21646472327564],[-76.55556219740554,39.21646063365349],[-76.5555620343171,39.21645745868116],[-76.5555584544353,39.21645533369099],[-76.55555681325401,39.2164540925037],[-76.55555557159461,39.21645173766176],[-76.5555555337166,39.2164476137397],[-76.55555555126658,39.2164420343643],[-76.55555776604761,39.21643729022799],[-76.55556264793708,39.21643212742049],[-76.55556777985763,39.21642475864458],[-76.5555753901415,39.21641567515803],[-76.55558204799101,39.21640705466899],[-76.55558979743098,39.21639645839524],[-76.55559592272157,39.21638485970583],[-76.5556017759512,39.21637288075669],[-76.55560947164494,39.21635791908977],[-76.55561909572137,39.21633272103487],[-76.55563828846944,39.21629117579377],[-76.55571163063357,39.21615754867677],[-76.55577922133246,39.21606198839586],[-76.55583044411605,39.21599715034155],[-76.55590396751546,39.21588924470631],[-76.55596445479297,39.21580405245404],[-76.55601289083684,39.21574186107871],[-76.55606226789841,39.21568138743041],[-76.55611556182663,39.21562283282938],[-76.55615263609174,39.21557929955001],[-76.55618035619408,39.21553875570707],[-76.55622270861589,39.21548405915938],[-76.5562554851699,39.21543688484739],[-76.5563026812021,39.21538311277176],[-76.55635484382523,39.21533431195216],[-76.5563895111732,39.21530604225406],[-76.55644407057154,39.21528024021151],[-76.55650197834714,39.21525987530693],[-76.556556506234,39.21524671016298],[-76.55661839849483,39.21523709577686],[-76.5566797011917,39.21520765832484],[-76.5567395031828,39.21517784224846],[-76.55680551557853,39.21515668629397],[-76.55686745668504,39.21514200956654],[-76.55693777474994,39.21513061175353],[-76.5570122690722,39.2151150149048],[-76.55708638868832,39.21510230810468],[-76.55715865877202,39.21509409998961],[-76.55723541966256,39.21508862913566],[-76.55730348711776,39.21507974300001],[-76.55737523089677,39.21506939340914],[-76.55753304771278,39.21505765866029],[-76.55760938856274,39.215057333947],[-76.55768288194298,39.21505720743276],[-76.55776003452735,39.21505688027636],[-76.5578347321773,39.21505675280068],[-76.55790350768565,39.21505706146487],[-76.55797587356066,39.21506301980526],[-76.55805937542131,39.21506879304275],[-76.55813473727044,39.21507376630307],[-76.55819837183792,39.21507848908527],[-76.55824122606249,39.21508132213552],[-76.55828600031315,39.21508413177064],[-76.55830035527288,39.21508917703555],[-76.55830516048046,39.21510132234886],[-76.55832377275317,39.21516639192319],[-76.5583557472874,39.21521553191229],[-76.55838816613773,39.21525505051126],[-76.55841059047158,39.21527580603848],[-76.55842712752917,39.21528971418434],[-76.55843095370054,39.21529823196232],[-76.55842549706193,39.21530276127886],[-76.55841228449088,39.21530989349442],[-76.55839719981999,39.21532125864373],[-76.55838670446735,39.21534653111771],[-76.55838670770427,39.21537152061958],[-76.55841313648668,39.21549130875517],[-76.55844856508459,39.21563659584476],[-76.55846329480772,39.21568232720742],[-76.55848716529223,39.21571225631477],[-76.5585173132552,39.21573973728844],[-76.55853259238938,39.21576248185743],[-76.55854561554068,39.21580110592558],[-76.55855852237963,39.21584093299867],[-76.55856852571583,39.21588568543166],[-76.55856918527071,39.21592432334021],[-76.5585657105315,39.21595240294786],[-76.55857004932399,39.21597942830658],[-76.55858711935991,39.21600132746389],[-76.55860898680972,39.21601969288098],[-76.55862914645535,39.21602498783427],[-76.55864323038294,39.2160151736423],[-76.55866830844832,39.21596727791394],[-76.55867853056081,39.21594162516244],[-76.55867944937856,39.21591414576876],[-76.55866385602843,39.21583294921489],[-76.55864206005866,39.21573098702819],[-76.5586259555765,39.21567074613064],[-76.55861220316613,39.21561680153335],[-76.55861176682626,39.21561509110916],[-76.55859919128267,39.21556742217865],[-76.55859097066548,39.21553058351235],[-76.55858232373531,39.21549712928029],[-76.55858380224215,39.21548337630062],[-76.55860202553008,39.21546521482455],[-76.55863833967393,39.21543286831733],[-76.55867555543163,39.21541344240058],[-76.55872718857202,39.21539722702611],[-76.55877283136307,39.21538198176746],[-76.55882107341709,39.21536529690513],[-76.55885915844001,39.2153483378364],[-76.55889432752276,39.21532712331069],[-76.55892180346876,39.21529709633528],[-76.5589419960318,39.21526518096376],[-76.5589674180238,39.2152367847797],[-76.5589963930836,39.21521147811259],[-76.5590271545574,39.21518901381238],[-76.55907028638332,39.21517326267145],[-76.55911322160541,39.21516716715747],[-76.55916453131049,39.21515991946029],[-76.55921393578427,39.21514975055505],[-76.5592576786609,39.21514822408515],[-76.55930710893901,39.21514807463408],[-76.55935090684605,39.21514794274642],[-76.55939332261462,39.21515091064791],[-76.55943255307568,39.21516616404917],[-76.55947186134512,39.21518698366013],[-76.55951205371662,39.21521275276929],[-76.55956355232364,39.21523777791688],[-76.55961556300363,39.21525249731705],[-76.55966947549791,39.2152596761795],[-76.55971693204145,39.2152678513811],[-76.55975939037283,39.21527984424238],[-76.5597929786071,39.21530177096516],[-76.55982479945513,39.21533421938615],[-76.55985094623324,39.21536781032635],[-76.55988031950119,39.21541198493593],[-76.55991747831243,39.21547512406762],[-76.55994430284396,39.21551596161367],[-76.55997077842477,39.21555574843386],[-76.55999670985499,39.21560001099306],[-76.56000645917095,39.21563749754642],[-76.56000777744521,39.21567535243473],[-76.56000790495824,39.21570093421169],[-76.56000519784905,39.21572482450176],[-76.55999653547734,39.21574215458935],[-76.55998550652627,39.21574878532589],[-76.55992993164942,39.21575342854118],[-76.55987839426572,39.21576484633835],[-76.55981193193934,39.2157799995198],[-76.55977424907938,39.21578886958355],[-76.55973754635181,39.21580307413817],[-76.55970526821675,39.21581689803755],[-76.55966977599664,39.21583681626689],[-76.55964585062483,39.21585430614523],[-76.55962565984454,39.21587176679573],[-76.55962499751762,39.21588184585846],[-76.55968172865121,39.21590196150605],[-76.559743377143,39.21591189061905],[-76.55978970300217,39.21591050695545],[-76.55985821554098,39.21590274698487],[-76.55992481745325,39.21589124606952],[-76.55997482814806,39.21588459396779],[-76.5600322101412,39.21587667685955],[-76.56008378963664,39.21586931176933],[-76.5601337660015,39.21586034536325],[-76.5601867917955,39.21585204072907],[-76.56023482115253,39.21584277332808],[-76.56027615377315,39.21583092709849],[-76.56031350996332,39.21581496379614],[-76.56033738456975,39.21579143024798],[-76.5603778813804,39.21576008523414],[-76.56038752370611,39.21573726402183],[-76.56038739661601,39.21571626812703],[-76.56036968617414,39.21569448663652],[-76.56033888020968,39.21568788649713],[-76.56029296749016,39.21568802704476],[-76.5602667358833,39.21568753060784],[-76.56024526879322,39.21567570487286],[-76.56021673068513,39.21564078091373],[-76.56019554128876,39.21560132202948],[-76.5601869778322,39.21555987559601],[-76.56018500904868,39.21551523268217],[-76.56018469006922,39.21547605739062],[-76.56018925404385,39.215440269323],[-76.5602097778457,39.21539573052195],[-76.56022812638766,39.21535428045272],[-76.56023526257589,39.21531150384811],[-76.56024130138147,39.21527521326288],[-76.56025544617945,39.21523830539076],[-76.56027448123008,39.21520621971031],[-76.56030333576614,39.21518141220435],[-76.56033434113573,39.21516848685512],[-76.56036780723284,39.21516620714785],[-76.56040671914033,39.21516673665163],[-76.56044280502068,39.21517747042248],[-76.56047575455749,39.21519429252955],[-76.5605104947353,39.21521590898846],[-76.56054482620559,39.21524425725003],[-76.56056315386314,39.21525236445888],[-76.56059014521709,39.21525786661692],[-76.56060134399793,39.21525838866619],[-76.56061574714664,39.21525680047051],[-76.56063396680291,39.2152481157912],[-76.56064786080616,39.21523917080226],[-76.56066371321911,39.21522530766892],[-76.56067767603209,39.21521104111536],[-76.56069427326241,39.21519694746375],[-76.56071355519808,39.21518144873154],[-76.56073382091735,39.21516733547785],[-76.56076236149691,39.21515038690598],[-76.56078457330626,39.21514008312752],[-76.5608007046317,39.21512941969551],[-76.560816979065,39.21511789655024],[-76.56083354131357,39.21510795355027],[-76.56085420778551,39.2151026171916],[-76.5608798766419,39.21510157916245],[-76.56090775845202,39.21510220774724],[-76.56093297793608,39.21510249487658],[-76.56096110551475,39.21509596045079],[-76.56098604253663,39.21508705673629],[-76.56103467187641,39.21507784890294],[-76.56108394464943,39.21505989596415],[-76.5611116961633,39.2150450693002],[-76.56113789847521,39.21503190598467],[-76.56116261854909,39.2150153790058],[-76.56117571974802,39.21499773304047],[-76.5611890626258,39.21498313802452],[-76.56121136937381,39.21496700826358],[-76.56123994378996,39.21495036146374],[-76.56126841492053,39.21493618601605],[-76.56130063243904,39.21492418734409],[-76.56133058294878,39.21492301929638],[-76.56135968107748,39.21491474899355],[-76.56138516500555,39.21490539414519],[-76.56141117915226,39.21489587012449],[-76.56144023441026,39.21488478830142],[-76.56147041610127,39.21487261983386],[-76.56150174050748,39.21486160322448],[-76.56154549003833,39.21485089696073],[-76.56158031829328,39.21484289212454],[-76.56161451010895,39.21482768855451],[-76.5616443801869,39.21480408885764],[-76.56167694175683,39.21477741402858],[-76.56170974428386,39.21475559620519],[-76.56174794697985,39.21473216272042],[-76.56179379275632,39.21470711563897],[-76.56183106989997,39.21468898607733],[-76.5618725671315,39.21467038853996],[-76.56191089629115,39.2146544067415],[-76.56195145574327,39.21464234805384],[-76.56198642283134,39.21463828093287],[-76.56201909503667,39.2146341881215],[-76.56205334415492,39.21462505770855],[-76.5620904962319,39.21461442300351],[-76.56213634051818,39.21460629967189],[-76.5621767331215,39.21460138438467],[-76.56221312768419,39.21459923308037],[-76.5622471538208,39.21459132954473],[-76.56227870727014,39.21458669742337],[-76.56230944946948,39.21458537083942],[-76.56233801368965,39.21458402711667],[-76.56236951758878,39.21458405182822],[-76.56240140006454,39.21458502736714],[-76.56243089357531,39.21458583725341],[-76.5624616925518,39.21458675919273],[-76.5624920178762,39.21458769016748],[-76.56252400159666,39.21458651678507],[-76.56256128533212,39.21457987108398],[-76.56259886696792,39.21457166993046],[-76.56264005358189,39.21455645970559],[-76.56267497765609,39.21453868051826],[-76.56270826191304,39.21452055111123],[-76.56273752550423,39.21450547747836],[-76.5627713026643,39.21448872088001],[-76.56280102518765,39.21447470826067],[-76.56283023060895,39.21445816791503],[-76.56285694028196,39.2144416894269],[-76.56288622131663,39.21442772198195],[-76.56292131768639,39.21441729824679],[-76.56295743450326,39.21441265591641],[-76.56299395143047,39.21441186320503],[-76.56302950595321,39.21441655356085],[-76.56306101993584,39.21442565440246],[-76.5630929034811,39.21443566820273],[-76.56312033458097,39.21444232441846],[-76.56314535612591,39.21444726918],[-76.56317553453387,39.21445720454739],[-76.56320341733374,39.21446874105936],[-76.56323027285464,39.21448294546003],[-76.56325542541096,39.21450048181384],[-76.5632784085205,39.21451360346381],[-76.56330469478903,39.21452642122696],[-76.56333296609239,39.21453843386553],[-76.56336224145828,39.21455005028609],[-76.56339244438513,39.2145605297606],[-76.56342325939701,39.21456920273455],[-76.56345631723015,39.21458222671284],[-76.56348946588128,39.21459988103787],[-76.56352348793598,39.21461861683781],[-76.56356293739545,39.21464241989335],[-76.5635910898246,39.21466003579026],[-76.56361824203745,39.21468006385745],[-76.56364557582815,39.21470144917075],[-76.56367697877378,39.21472771292794],[-76.56370337666903,39.21474858400425],[-76.56372989990146,39.21477110847493],[-76.56375673361363,39.21478965263837],[-76.56378696233439,39.21480689247272],[-76.56381810707799,39.21482110367272],[-76.56385215544405,39.21483200447403],[-76.56388374822161,39.21484340598188],[-76.5639146968059,39.21486580723497],[-76.56393663499,39.21488620859142],[-76.563950628296,39.21490815679014],[-76.5639550966,39.2149293111364],[-76.56395455537735,39.21494918757534],[-76.5639492731837,39.2149677997158],[-76.56393648063619,39.21498545524231],[-76.56392475638029,39.21499904140247],[-76.56391157748155,39.21500946401527],[-76.56389471472384,39.21501844789978],[-76.563863114815,39.2150272373901],[-76.56383297076866,39.21502956286925],[-76.56380523546031,39.21503128836569],[-76.5637754178956,39.21503663896764],[-76.56374665726258,39.21504184486224],[-76.56372236470418,39.21504278684669],[-76.56369557118249,39.2150397380726],[-76.56366915891267,39.21502891606342],[-76.56364896637092,39.21502104561697],[-76.56362803443818,39.21502081464923],[-76.56360479973496,39.21502956581618],[-76.5635900990918,39.21504698450984],[-76.56359024889596,39.2150638729216],[-76.56359251851369,39.21507422954173],[-76.56358429377308,39.21508117550871],[-76.56356393779748,39.21508557759006],[-76.5635410413593,39.21509034404355],[-76.56352009080267,39.21509540057571],[-76.5635003226873,39.21510231170793],[-76.56347446637614,39.21511143502895],[-76.5634466068352,39.21512149581205],[-76.56341792988202,39.21513530620384],[-76.56339152750628,39.21515056179812],[-76.56337088003605,39.21516564332948],[-76.56335679671331,39.21517775328194],[-76.56335428174577,39.21518677696235],[-76.56336056015739,39.21519543791861],[-76.56337978399209,39.21520191220162],[-76.56340225856125,39.21520776172316],[-76.56342954828908,39.21521241580116],[-76.56345366666925,39.21521382336854],[-76.56348549965197,39.21521479842747],[-76.56351341312653,39.21521556072717],[-76.56441226642191,39.21504211770218],[-76.56442008527986,39.21504242957003],[-76.56444030263043,39.21504173894691],[-76.564480073803,39.21503752947576],[-76.56452893709277,39.21502861111603],[-76.5645717000213,39.21502049521659],[-76.56461533271809,39.21501197537522],[-76.56466605477175,39.21500168655965],[-76.56471310697883,39.21499333610338],[-76.5647607803303,39.21498452673185],[-76.56481195285272,39.21497479350475],[-76.56485857943615,39.21496616667338],[-76.56490838036594,39.21495746962184],[-76.56495224879802,39.2149486379582],[-76.56499151550828,39.21493962347607],[-76.56503510014629,39.21492929182885],[-76.56507208730808,39.21492020131181],[-76.56510933810526,39.21491192696757],[-76.56513470257072,39.21490006398882],[-76.5651468519091,39.21489190198896],[-76.56516111147258,39.21488366583613],[-76.56517819805694,39.21487440515867],[-76.56519534956001,39.21486721201309],[-76.5652135336639,39.2148636582455],[-76.56523663999387,39.21486145947139],[-76.56525681010189,39.21486204494034],[-76.56527567673064,39.21486635391224],[-76.56528550945562,39.21486927824336],[-76.56531350662537,39.21487223833262],[-76.56534174170368,39.21487246362257],[-76.56536998848136,39.21487153414704],[-76.56539799148688,39.21486900037058],[-76.56542586051752,39.21486546352135],[-76.56545371007537,39.2148617022988],[-76.56548164558211,39.21485846564281],[-76.56550971283541,39.21485527090391],[-76.56553785983789,39.2148517215456],[-76.5655660333208,39.21484819659969],[-76.56559417537348,39.2148450768824],[-76.5656222304126,39.21484274141707],[-76.56565014285546,39.21484156922711],[-76.56567782677823,39.21484216712135],[-76.56570494861342,39.21484719927835],[-76.56573173789421,39.2148551090964],[-76.56575859311067,39.2148630308625],[-76.56578613312908,39.2148674700322],[-76.56581431968323,39.21486976052115],[-76.5658427815388,39.21487588664912],[-76.56587053572466,39.21488071482824],[-76.56589453096393,39.214876115027],[-76.5659134852485,39.21485794521561],[-76.56593654470224,39.2148452250012],[-76.56596097059186,39.21483400873688],[-76.56598644287266,39.21482456006791],[-76.56601344234089,39.21481854361458],[-76.56604105001634,39.21481380581174],[-76.5660689152822,39.21480973913643],[-76.56609672437048,39.21480576953125],[-76.5661245789941,39.21480173793387],[-76.5661525230121,39.21479823632],[-76.56618051645768,39.21479593112014],[-76.56620865907627,39.2147959333668],[-76.56623686782214,39.21479837967157],[-76.56626473589395,39.21480200293275],[-76.56629236210918,39.21480692872436],[-76.56631945970761,39.21481271100074],[-76.56634532632467,39.21482116314243],[-76.56637301843874,39.21482610807494],[-76.56640058655657,39.21482443179805],[-76.56642814882227,39.21482029996248],[-76.56645571400355,39.21481493135809],[-76.56648326000656,39.21480909967464],[-76.56651076241214,39.21480358039489],[-76.56653815587916,39.21479826518372],[-76.56656546758842,39.21479268483441],[-76.56659282825366,39.21478724067758],[-76.56662028637012,39.21478195541182],[-76.56664833930937,39.2147801439485],[-76.56667641402619,39.21478254371279],[-76.56670438521623,39.21478577991421],[-76.56673252060943,39.21478696563553],[-76.56676074769736,39.21478697706944],[-76.5667890070836,39.21478662920392],[-76.56681726042581,39.2147865128102],[-76.56684549064946,39.21478695931281],[-76.5668737229737,39.21478763101178],[-76.56690194237893,39.21478852244697],[-76.56693013022881,39.21478965156525],[-76.5669580652258,39.21479274885219],[-76.56698615315652,39.21479507292543],[-76.567014240008,39.21479738437702],[-76.56704215118334,39.21480059145137],[-76.56706992714554,39.2148045150424],[-76.56709762669237,39.21480881757393],[-76.56712527291192,39.21481332077649],[-76.56715281870811,39.21481815238738],[-76.56718023067134,39.21482347442413],[-76.56720780652104,39.21482812597658],[-76.56723604977715,39.21483061720733],[-76.56726425077963,39.21483301189188],[-76.56729117382478,39.21483875997093],[-76.56731718749634,39.21484704309318],[-76.5673427433684,39.21485653517214],[-76.56736796976772,39.21486669981538],[-76.5673929973198,39.21487700334126],[-76.56741764621287,39.21488769009962],[-76.56744179623276,39.21489910554764],[-76.5674656650953,39.21491086585446],[-76.56748864854434,39.21492370022769],[-76.56751196985488,39.21493600798357],[-76.56753728428507,39.21494560632288],[-76.56756324912422,39.21495431347825],[-76.56758919392313,39.21496308000549],[-76.56761451584264,39.2149727828463],[-76.5676394156909,39.21498315250631],[-76.56766459728667,39.21499308271686],[-76.5676901155673,39.21500248900671],[-76.56771545379685,39.21501218017541],[-76.56774061541638,39.21502216164046],[-76.56776547557475,39.21503258967806],[-76.56779035613457,39.21504328171446],[-76.56781197295024,39.21505712617084],[-76.56783167138626,39.21507281916802],[-76.5678506151897,39.21508921739706],[-76.56786935452251,39.21510572746767],[-76.56788770950676,39.21512241447463],[-76.56790539364917,39.21513954759769],[-76.56792227813536,39.2151571732034],[-76.56793950219003,39.21517456225051],[-76.56795918134901,39.21519038847026],[-76.56797945816614,39.21520580973368],[-76.56799701809584,39.215222810871],[-76.56801194112707,39.21524137686455],[-76.56802560917006,39.21526066786932],[-76.56803876390575,39.2152802055986],[-76.56805138528011,39.21529986026618],[-76.56806298532616,39.21531989940977],[-76.56807714854796,39.21533888416341],[-76.56809209069571,39.21535755110393],[-76.56810773917115,39.21537584231372],[-76.56812453808264,39.21539346667311],[-76.56814259999595,39.21541038406061],[-76.56816085974036,39.21542714183416],[-76.56817945081721,39.21544368463646],[-76.56819795937767,39.21546027847666],[-76.56821591116899,39.21547722066911],[-76.5682333352269,39.21549449690848],[-76.5682505977224,39.21551187433901],[-76.568267731198,39.21552933326337],[-76.56828476936492,39.21554685218681],[-76.56830174246082,39.21556440960185],[-76.56831868534401,39.21558198581962],[-76.56833562709403,39.21559955932828],[-76.56835252587759,39.21561715429516],[-76.56836921666101,39.21563487009985],[-76.56838580750934,39.21565264498609],[-76.56840254006057,39.21567035013006],[-76.56841948392739,39.21568796326822],[-76.56843363256043,39.21570689928046],[-76.56844627505026,39.2157265395677],[-76.56845865502797,39.21574631490613],[-76.56847176412614,39.21576577494843],[-76.56848543053344,39.21578499112518],[-76.5684992606271,39.21580414034348],[-76.56851321959276,39.21582323508626],[-76.56852727260475,39.21584228963782],[-76.5685413860065,39.2158613164854],[-76.56855552265661,39.21588032990493],[-76.56856969988024,39.21589933716633],[-76.56858417207516,39.21591820588918],[-76.56859924481796,39.21593676604832],[-76.56861481467313,39.21595527038277],[-76.56863256842486,39.21597225411711],[-76.56865352454196,39.21598685264078],[-76.56867617681682,39.21600016026997],[-76.56869959586027,39.2160124834566],[-76.5687246260864,39.21602263537163],[-76.56874970964488,39.21603277756866],[-76.56877370180973,39.2160443533965],[-76.56879739626912,39.2160563298739],[-76.5688207631137,39.21606867446299],[-76.56884339590474,39.21608176760186],[-76.56886505667872,39.21609589576592],[-76.5688880646667,39.21610860744244],[-76.56891178584854,39.21612057588755],[-76.5689353614541,39.21613268251328],[-76.56895792927807,39.21614580241448],[-76.56897872389713,39.2161607002459],[-76.56899969562495,39.21617541856778],[-76.56902283666824,39.21618796586318],[-76.56904641228776,39.21620007697024],[-76.5690671454283,39.21621499798012],[-76.56908759343933,39.21623015574554],[-76.56910724925632,39.21624591141951],[-76.56912640601374,39.21626204628811],[-76.56914530338955,39.21627837296835],[-76.5691639891435,39.21629484479507],[-76.56918255748408,39.21631139365478],[-76.56920109788972,39.21632796763077],[-76.569219522029,39.21634462044569],[-76.56923773344846,39.21636140849471],[-76.56925563453674,39.21637838816885],[-76.5692730392853,39.21639568039099],[-76.56928983488737,39.21641336491687],[-76.56930635733227,39.21643122138762],[-76.56932296004409,39.21644901869897],[-76.56933999646355,39.21646652304408],[-76.56935781886804,39.21648350151244],[-76.5693764335663,39.2165000595182],[-76.5693956125964,39.21651636196827],[-76.56941540583747,39.2165322036673],[-76.56943586895824,39.21654737944117],[-76.56945705300076,39.2165616831979],[-76.56948048075407,39.21657357748585],[-76.56950679282716,39.21658225665304],[-76.56953363428703,39.2165893767027],[-76.5695616207256,39.21659405622623],[-76.56958648799058,39.21660325523138],[-76.56960742598035,39.21661823274309],[-76.56962769261204,39.21663374105118],[-76.5696475216313,39.21664942520478],[-76.56966739382545,39.21666505636717],[-76.569688182409,39.21667985316006],[-76.56971027709538,39.21669351975413],[-76.56973331164623,39.21670629981836],[-76.56975694247917,39.21671832901118],[-76.56978152865926,39.21672920960275],[-76.56980648225803,39.21673965285562],[-76.569830756415,39.21675081423731],[-76.5698535391911,39.21676368253197],[-76.56987517488413,39.21677800408139],[-76.56989567834209,39.21679323937281],[-76.56991204154843,39.21681046912916],[-76.56992714343535,39.21682870313532],[-76.56994617617342,39.21684510494372],[-76.56996696797074,39.21685996295094],[-76.56998923298389,39.21687343915004],[-76.57001240948053,39.21688612599733],[-76.57003623573627,39.21689802703732],[-76.57006083180123,39.21690863106586],[-76.57008778909875,39.2169157739314],[-76.57011239530276,39.2169262356628],[-76.57013579719701,39.21693842247694],[-76.57015898879784,39.21695091748389],[-76.57018200637812,39.21696365866276],[-76.5702048873632,39.21697658489772],[-76.57022766686791,39.21698963416339],[-76.57025038115407,39.21700274624041],[-76.57027306534188,39.21701585820274],[-76.57029565654203,39.21702902927166],[-76.57031795177191,39.21704250641879],[-76.57034007687542,39.2170561603925],[-76.5703621845037,39.2170698332144],[-76.57038442265963,39.2170833695912],[-76.5704069381663,39.21709661782836],[-76.57042969140794,39.21710961831581],[-76.57045258448967,39.2171224742849],[-76.57047556731973,39.21713523509526],[-76.57049859326933,39.2171479519205],[-76.57052161455725,39.21716067502959],[-76.57054457992291,39.21717345557943],[-76.5705674823587,39.21718630345296],[-76.57059039296838,39.21719914144328],[-76.57061331173564,39.21721197225261],[-76.57063622585753,39.21722480664358],[-76.57065912948987,39.21723765360251],[-76.57068201215655,39.21725052209896],[-76.57070486452866,39.21726342290816],[-76.57072767728802,39.2172763650038],[-76.5707504422691,39.21728935826471],[-76.57077315597627,39.21730240628122],[-76.5707958393889,39.21731548661057],[-76.57081849950917,39.21732859027053],[-76.57084113982732,39.21734171457164],[-76.57086376383356,39.21735485682421],[-76.57088637502355,39.21736801343802],[-76.57090897457152,39.21738118171496],[-76.57093156713118,39.21739435806894],[-76.57095415504565,39.21740753800464],[-76.5709767417996,39.21742071973321],[-76.57099933088332,39.21743390056512],[-76.57102192348736,39.21744707509997],[-76.57104452541252,39.21746024155744],[-76.57106713783833,39.21747339633873],[-76.57108976426062,39.2174865358535],[-76.57111240701147,39.21749965740783],[-76.57113507074456,39.2175127574157],[-76.57115775779214,39.21752583318322],[-76.57118047165523,39.21753888021926],[-76.57120321466066,39.21755189673078],[-76.57122599497937,39.21756487193824],[-76.57124883007323,39.21757779059214],[-76.57127171179845,39.21759065896817],[-76.57129463431625,39.2176034851519],[-76.57131758948275,39.21761627541921],[-76.57134056913243,39.21762903964875],[-76.57136356626857,39.21764178592193],[-76.57138657390529,39.21765452051874],[-76.57140958504047,39.21766725242144],[-76.57143259036691,39.21767998880217],[-76.57145558404044,39.21769273864751],[-76.57147855790639,39.2177055100347],[-76.57150150382091,39.21771830923942],[-76.5715244159345,39.21773114614896],[-76.57154728494538,39.21774402703481],[-76.57157010616737,39.21775696088777],[-76.57159287263092,39.21776995128548],[-76.5716156018034,39.21778298207769],[-76.5716382971913,39.21779604787256],[-76.57166096344827,39.21780914508396],[-76.57168360523872,39.21782226832422],[-76.5717062248949,39.21783541489956],[-76.57172882707054,39.21784858122387],[-76.57175141411945,39.21786176100023],[-76.57177399300579,39.21787495155171],[-76.57179656490925,39.21788814927957],[-76.57181913449433,39.21790134879612],[-76.57184170641459,39.2179145465152],[-76.57186428300773,39.21792773884222],[-76.57188686892728,39.21794092219105],[-76.5719094688431,39.21795409027322],[-76.5719320850821,39.21796724129568],[-76.5719547223086,39.21798036987075],[-76.57197738401833,39.21799347240801],[-76.5720000655467,39.21800655429519],[-76.57202275989711,39.2180196236137],[-76.57204546591701,39.21803267945861],[-76.57206818475348,39.2180457236356],[-76.57209091409602,39.21805875523555],[-76.5721136550972,39.21807177516337],[-76.57213640659893,39.2180847834148],[-76.57215916859046,39.21809778179146],[-76.57218193992466,39.21811076848751],[-76.57220472174858,39.21812374530872],[-76.57222751174636,39.21813671224664],[-76.57225031107043,39.21814967020624],[-76.57227312205853,39.21816261559293],[-76.57229595635546,39.21817553763975],[-76.57231881746766,39.2181884309548],[-76.57234170422625,39.21820129733539],[-76.57236461547328,39.21821413677723],[-76.57238755005082,39.21822694927612],[-76.5724105079534,39.21823973573283],[-76.57243348802298,39.21825249614309],[-76.57245697139089,39.21826571417728],[-76.57248203770745,39.21825758947659],[-76.57250970490875,39.21825099926622],[-76.57253679161026,39.21825427588545],[-76.57256308501891,39.21826314255487],[-76.5725869016154,39.21827525651902],[-76.57260866431285,39.21828903844989],[-76.57262986493416,39.2183034731971],[-76.57265067723205,39.21831835961891],[-76.57267127495902,39.21833349657328],[-76.57269183072046,39.21834868111255],[-76.57272099455834,39.21836972323732],[-76.57274461566602,39.21838181213606],[-76.57276834540018,39.21839374739194],[-76.57279302945071,39.21840431602999],[-76.5728184330044,39.21841385949137],[-76.57284417412419,39.21842292135765],[-76.57287001806269,39.21843183226133],[-76.57289573818944,39.21844092106318],[-76.57292130034914,39.2184502831217],[-76.57294682263513,39.21845972970287],[-76.5729724035147,39.21846906209253],[-76.57299813797546,39.2184780824646],[-76.57302412682715,39.21848658760941],[-76.57305078269229,39.21849374490528],[-76.57307792738548,39.21849991491649],[-76.57310496768041,39.21850630793516],[-76.5731317763174,39.21851328921532],[-76.57315859088493,39.2185202479914],[-76.57318560967518,39.21852656074372],[-76.57321302135769,39.21853185613603],[-76.57324081312818,39.21853633769794],[-76.57326879057668,39.21853940480248],[-76.57329697155903,39.21854059091023],[-76.57332564497743,39.21853999525652],[-76.57335352508038,39.21853671508857],[-76.57337974013045,39.21852916817012],[-76.57340371936523,39.2185167534085],[-76.57342418236138,39.21850172891109],[-76.57344358006932,39.21848553402744],[-76.57346154351636,39.21846828992322],[-76.57347730000265,39.2184500487383],[-76.57349032843454,39.21843080948047],[-76.57350130223622,39.21841066107297],[-76.57351108887903,39.21838996788177],[-76.57352054534145,39.21836910594466],[-76.57353052977018,39.21834844950165],[-76.5735420727896,39.21832838332792],[-76.57355540617743,39.21830887763878],[-76.573568263084,39.21828926842851],[-76.57357823323532,39.2182688641477],[-76.57358620607637,39.21824784097878],[-76.57359358157136,39.21822659404682],[-76.57360033740567,39.21820517551604],[-76.57360644894327,39.21818363844314],[-76.57361189272238,39.21816203318665],[-76.57361664757556,39.2181404137166],[-76.57362013018367,39.2181187283708],[-76.5736204731464,39.21809671003903],[-76.57361865331819,39.21807463430628],[-76.57361591527022,39.21805273989719],[-76.57361211490031,39.21803072632823],[-76.5736055083857,39.21800934572048],[-76.5735948643929,39.2179892412606],[-76.57358162277055,39.21796975790732],[-76.57356638024758,39.21795102844121],[-76.5735495719563,39.21793329134796],[-76.57353212042861,39.21791603293147],[-76.57351454292898,39.21789873442012],[-76.57349679034684,39.21788147490405],[-76.57347881240823,39.21786433436996],[-76.57346056000789,39.21784739100713],[-76.57344198171383,39.21783072479798],[-76.57342302957323,39.21781441483677],[-76.57340365216479,39.21779853930421],[-76.57338380037233,39.21778317819113],[-76.57336305125128,39.21776876323502],[-76.57333919082943,39.21775739691508],[-76.5733132546682,39.21774806241023],[-76.57328693400387,39.21773912284494],[-76.57326160316445,39.21772926357294],[-76.57323633229176,39.2177194468502],[-76.57321110579684,39.2177095690303],[-76.57318624254876,39.21769917457722],[-76.57316170167819,39.21768832009168],[-76.57313722387579,39.2176773775539],[-76.57311279630655,39.21766636313122],[-76.57308840844591,39.2176552939002],[-76.57306404630101,39.21764418602409],[-76.5730396993526,39.21763305567859],[-76.5730153570708,39.21762192084106],[-76.57299100546248,39.21761079767467],[-76.57296663400852,39.21759970235512],[-76.57294223103176,39.21758865105396],[-76.57291778484962,39.21757766084355],[-76.57289307007379,39.21756704707748],[-76.57286805285219,39.21755685467145],[-76.57284320156921,39.21754641334783],[-76.57281826285036,39.21753607078648],[-76.5727934478419,39.21752556923194],[-76.57276899922597,39.21751460600473],[-76.5727450757159,39.2175029772057],[-76.57272148375732,39.21749090372246],[-76.57269817649012,39.21747847546265],[-76.5726751280382,39.21746575899003],[-76.57265231254172,39.2174528181659],[-76.57262974642904,39.2174396170191],[-76.57260749971456,39.2174260666274],[-76.57258562107074,39.21741216086286],[-76.57256415916439,39.21739789449818],[-76.57254306865087,39.21738329799497],[-76.5725222844352,39.21736841255225],[-76.57250182612133,39.21735325175331],[-76.57248171448744,39.21733782648337],[-76.57246197152935,39.21732213772346],[-76.5724426126096,39.21730613418532],[-76.57242366315447,39.21728982406879],[-76.57240515432022,39.21727322550315],[-76.57238719634051,39.21725630105749],[-76.57237040071412,39.217238652113],[-76.57235405265052,39.21722071564629],[-76.57233712810628,39.21720313288472],[-76.57231933885072,39.21718607842994],[-76.57230126137283,39.21716919857413],[-76.57228293871782,39.21715246014518],[-76.57226520399864,39.21713539146813],[-76.57224956666107,39.21711712428777],[-76.57223470781419,39.21709841946113],[-76.5722195690021,39.21707986404234],[-76.57220431643624,39.21706135504738],[-76.57218966062922,39.21704258880094],[-76.57217614497326,39.21702332317268],[-76.57216357804747,39.21700361691655],[-76.57215212280227,39.21698352377314],[-76.57214191570165,39.21696307306521],[-76.57213266348433,39.2169423132668],[-76.57212410030579,39.21692135510568],[-76.57211597534797,39.21690031386824],[-76.5721083617839,39.21687915288933],[-76.57210157492297,39.21685781566877],[-76.57209582772964,39.21683631919731],[-76.57209079680936,39.21681471634272],[-76.57208617390275,39.21679304651618],[-76.57208180019681,39.21677133796373],[-76.57207752035794,39.21674961804307],[-76.57207316863659,39.21672791317323],[-76.5720686895057,39.21670621414402],[-76.57206444096646,39.21668448983269],[-76.572060848159,39.21666271296461],[-76.5720581034321,39.21664086262264],[-76.57205586623482,39.21661895648123],[-76.57205413758346,39.21659701796443],[-76.57205294051164,39.2165750678743],[-76.57205229230662,39.21655311978557],[-76.57205215022162,39.21653115732834],[-76.57205242969367,39.21650918559886],[-76.57205304033755,39.21648721507694],[-76.57205389755258,39.2164652571642],[-76.57205505341875,39.21644331655445],[-76.57205661103619,39.21642138641744],[-76.57205840830882,39.2163994634597],[-76.57206028315167,39.21637754258623],[-76.57206208156913,39.21635562143388],[-76.57206427934511,39.21633372335645],[-76.57206703852584,39.21631185975416],[-76.57206971672501,39.21628998324544],[-76.57207246205054,39.21626811238602],[-76.5720754191417,39.21624626481812],[-76.57207873842204,39.21622445910587],[-76.57208257378309,39.21620271472685],[-76.57208722727832,39.21618106070657],[-76.57209256697251,39.21615948485375],[-76.57209830237444,39.21613796088715],[-76.57210414297705,39.216116465228],[-76.57211048093029,39.21609506416234],[-76.57211726887235,39.21607373860097],[-76.5721235813758,39.21605233203687],[-76.57212907140737,39.21603078555484],[-76.57213466554677,39.21600925656685],[-76.57214103823019,39.21598785382403],[-76.57214748261495,39.21596646575463],[-76.57215300031997,39.21594493648677],[-76.57215730325898,39.21592322533582],[-76.5721616999284,39.21590152443489],[-76.57216688103964,39.21587993178493],[-76.57217225192402,39.21585836054448],[-76.57217796405374,39.21583684729693],[-76.57218418279575,39.21581542867635],[-76.57219103076038,39.21579412674839],[-76.57219833677384,39.21577290756004],[-76.5722058359405,39.21575172510648],[-76.5722132772604,39.21573053343366],[-76.57222098924962,39.21570938958757],[-76.57222883309737,39.2156882696418],[-76.57223623734451,39.21566707873282],[-76.57224242817696,39.21564567441906],[-76.57224582574057,39.21562373927163],[-76.57225005551939,39.21560205487227],[-76.57226035931008,39.21558181854897],[-76.57227374123237,39.21556230235878],[-76.57228152989853,39.21554130291234],[-76.57228705734671,39.21551968179172],[-76.57229376886056,39.21549833882379],[-76.5723007151259,39.21547704715464],[-76.57230775159694,39.21545577382937],[-76.57231488174192,39.21543451976141],[-76.57232211132326,39.21541328947556],[-76.57233128251198,39.21539229686512],[-76.57232142983543,39.2153716681994],[-76.57229554293347,39.21536335782753],[-76.5722903262773,39.21534260823619],[-76.57229353250437,39.21532071382425],[-76.57229937081429,39.21529900105434],[-76.57231435084559,39.21528579615119],[-76.57234349452092,39.21528515471416],[-76.57236652842815,39.21527246917961],[-76.57236989129491,39.2152512869532],[-76.57235985269203,39.21523038377483],[-76.5723617115599,39.21520936451373],[-76.57237069287915,39.21518816763069],[-76.57237818371333,39.21516700404919],[-76.57238307312566,39.21514537429156],[-76.57238789087401,39.21512372265373],[-76.5723935960023,39.21510219765613],[-76.57239962510637,39.21508071347296],[-76.57240654689602,39.21505943611876],[-76.57241511214502,39.21503848723192],[-76.5724257802345,39.21501811259768],[-76.57244045027667,39.21499945231772],[-76.5724569786099,39.21498159509682],[-76.57247319155485,39.2149636151191],[-76.5724873737149,39.21494463057588],[-76.57250272463365,39.2149261565277],[-76.5725183562029,39.21490780240293],[-76.57253338476222,39.21488920827321],[-76.57254692896227,39.2148700151197],[-76.57255871856685,39.21485010305557],[-76.57256935417603,39.21482972648761],[-76.57257948024912,39.21480916340254],[-76.57258966729565,39.21478866539486],[-76.5725995953371,39.21476810428895],[-76.57260922631973,39.21474745382363],[-76.57261871394832,39.21472676410175],[-76.5726282467626,39.21470606913883],[-76.57263721414782,39.21468523970106],[-76.57264303220181,39.21466378806367],[-76.57264986599566,39.21464249055538],[-76.57265911279772,39.21462159997922],[-76.57266713648748,39.21460057073181],[-76.5726712298854,39.21457900471839],[-76.57267203748626,39.21455698175343],[-76.57267143149781,39.2145349167087],[-76.57266800653187,39.21451313685471],[-76.57266592536351,39.21449125920493],[-76.57266541377881,39.21446928548245],[-76.57266295869401,39.21444739205825],[-76.57266006345291,39.21442552225277],[-76.57265911954177,39.21440361811726],[-76.57266246095269,39.21438174670194],[-76.57267291920554,39.21436177032422],[-76.57269289341615,39.21434601813114],[-76.57271748203955,39.21433603062268],[-76.5727447406995,39.2143303027172],[-76.57277199141777,39.21432454685224],[-76.57279924783442,39.21431880541422],[-76.57282652128477,39.21431311897956],[-76.57285382542,39.21430752813307],[-76.57288117273339,39.21430207345538],[-76.57290858708066,39.21429683159976],[-76.57293607986244,39.21429183233334],[-76.5729636192317,39.21428698005739],[-76.5729911733738,39.21428217376859],[-76.57302181358446,39.21427675986535],[-76.57303580038388,39.2142740435557],[-76.5730501665906,39.21427158534752],[-76.57306426525012,39.2142689451071],[-76.57307745287602,39.21426568361454],[-76.5730882600333,39.21426084069605],[-76.57308888815096,39.21424900491171],[-76.57309813724719,39.21424080091328],[-76.57310828192895,39.21423251279629],[-76.57311735178503,39.21422388297546],[-76.573118088359,39.21421403741158],[-76.57311239114523,39.21420328117339],[-76.57310750612234,39.2141928305521],[-76.57310282247919,39.21418239687721],[-76.57309741560432,39.21417226953908],[-76.57309045549405,39.21416279502128],[-76.57308150907457,39.21415416721759],[-76.57307129603231,39.21414666978966],[-76.57305924462403,39.21414083482041],[-76.57304708330227,39.21413517780476],[-76.5730357956542,39.21412865201022],[-76.57302518148572,39.21412142875785],[-76.57301468849442,39.21411408073676],[-76.57300428171025,39.21410664655344],[-76.57299392847895,39.21409916482254],[-76.57298359732042,39.21409167146093],[-76.57297331500196,39.2140841440464],[-76.57296312465301,39.21407653499448],[-76.57295298203495,39.21406888377864],[-76.5729428417295,39.21406123347113],[-76.57293265834001,39.21405362354106],[-76.57292238761687,39.21404609526336],[-76.57291198414727,39.21403869080945],[-76.5729009774508,39.21403185525455],[-76.57288924760786,39.21402569715659],[-76.57287810508869,39.21401891965596],[-76.57286716756555,39.21401194292691],[-76.57285505807802,39.21400633742423],[-76.57284207271631,39.21400177453938],[-76.57282866536215,39.21400018359657],[-76.57281560601093,39.21400387880417],[-76.57280249453325,39.21399987754343],[-76.57278989619026,39.21399488548811],[-76.57277745889151,39.21398968593721],[-76.5727650403161,39.21398445402496],[-76.5727525539393,39.2139793290576],[-76.57274005937765,39.21397421757077],[-76.57272758352305,39.21396907642492],[-76.57271476857237,39.21396448351978],[-76.57270954167026,39.21395505582465],[-76.57271212057968,39.2139442450275],[-76.5727146774231,39.2139334449593],[-76.57271724815517,39.21392264584233],[-76.57271983045464,39.21391184856901],[-76.57272251573613,39.21390106338071],[-76.57272453281725,39.21389009830538],[-76.57272857269311,39.21388184474129],[-76.57273821905973,39.21387785697368],[-76.57274272314568,39.21386712074382],[-76.57274628560911,39.21385622975409],[-76.57274902060918,39.21384545555539],[-76.5727513334244,39.21383460505468],[-76.5727536994536,39.21382376285466],[-76.57275603318546,39.21381289981898],[-76.57275819785234,39.21380203796924],[-76.57276004277003,39.21379120287956],[-76.57274993446208,39.21378382560788],[-76.57274911022057,39.21377359153001],[-76.57275204794348,39.2137626099886],[-76.57275435139476,39.21375177566753],[-76.57275633665063,39.21374090235507],[-76.57275824785454,39.21373001976514],[-76.57276000861225,39.21371912311567],[-76.57276154716126,39.21370820764149],[-76.57276287276474,39.21369727337637],[-76.57276404675358,39.213686326849],[-76.57276505287929,39.21367537430579],[-76.57276570595413,39.21366440246148],[-76.57276654308579,39.21365343939429],[-76.57276678070372,39.21365051181848],[-76.57276743231716,39.21364247741754],[-76.57276844192626,39.21363152308527],[-76.57276974320601,39.21362058963206],[-76.57277139288239,39.21360967906593],[-76.5727727890601,39.21359875406518],[-76.57277343633268,39.21358778400106],[-76.57277389839584,39.2135768042548],[-76.57277429100124,39.21356582155328],[-76.57277485837307,39.21355485209896],[-76.57277645930714,39.21354395937075],[-76.57277684268675,39.21353297033011],[-76.57277724458177,39.21352198315836],[-76.57277829689971,39.21351105059991],[-76.57278052747274,39.21350020250057],[-76.57278335160102,39.21348943042619],[-76.57279285553233,39.21348312532498],[-76.572806829221,39.2134846814021],[-76.57282050512475,39.2134876181925],[-76.57283429973951,39.21349006989215],[-76.57284815435767,39.21349217140455],[-76.57286201490147,39.21349425041731],[-76.57287588019155,39.2134963105293],[-76.57288975137475,39.21349835354624],[-76.57290362495581,39.21350038305853],[-76.57291750206555,39.21350240357424],[-76.57293138037193,39.21350441778719],[-76.57294525985316,39.21350642930037],[-76.57295913933524,39.21350844081195],[-76.57297301763307,39.21351045682148],[-76.5729868935672,39.2135124809278],[-76.57300076712673,39.21351451493243],[-76.57301463712676,39.21351656333496],[-76.57302850239849,39.21351862793271],[-76.5730423652848,39.21352070423032],[-76.57305622697614,39.2135227868274],[-76.5730700863092,39.21352487662052],[-76.57308394328938,39.21352697270889],[-76.5730978002487,39.21352907239869],[-76.5731116560293,39.21353117568567],[-76.57312551179443,39.21353328167329],[-76.57313936639713,39.21353538855584],[-76.5731532209952,39.21353749633749],[-76.57316707675744,39.21353960322102],[-76.57318093253126,39.21354170830131],[-76.5731947883168,39.21354381157852],[-76.57320864528268,39.2135459112552],[-76.57322250224398,39.213548011831],[-76.5732363580482,39.21355011240095],[-76.57325021500573,39.21355221387427],[-76.57326407080072,39.21355431624249],[-76.57327792659117,39.21355641950981],[-76.57329178238244,39.21355852277552],[-76.5733056381745,39.21356062603962],[-76.57331949396199,39.21356273020277],[-76.57333334975573,39.21356483346356],[-76.57334720554482,39.21356693762348],[-76.5733610613348,39.21356904178176],[-76.57337491712559,39.21357114593841],[-76.57338877292254,39.21357324919265],[-76.57340262871499,39.21357535334603],[-76.57341648567153,39.21357745660119],[-76.57343034147641,39.21357955894977],[-76.57344419728207,39.21358166129672],[-76.5734580542465,39.21358376364621],[-76.57347191006467,39.21358586418832],[-76.57348576704153,39.21358796473307],[-76.57349962401923,39.21359006527612],[-76.57351348100856,39.21359216401605],[-76.57352733800414,39.21359426185352],[-76.57354119500592,39.21359635878862],[-76.57355505317183,39.21359845482556],[-76.57356891134935,39.21360054905929],[-76.57358276953317,39.21360264239064],[-76.57359662888103,39.21360473482383],[-76.57361048708266,39.21360682544962],[-76.57362434761173,39.21360891428065],[-76.57363820937522,39.21361099050361],[-76.57365207704257,39.21361304782998],[-76.57366594826554,39.21361509165583],[-76.5736798207121,39.21361712467516],[-76.57369369550224,39.21361915319744],[-76.57370757030947,39.2136211790158],[-76.57372144510119,39.21362320753481],[-76.5737353175455,39.2136252414483],[-76.5737491911431,39.21362727626517],[-76.5737630635836,39.21362931107613],[-76.57377693601948,39.21363134678627],[-76.57379080961945,39.21363338159817],[-76.57380468206233,39.21363541640427],[-76.57381855450602,39.21363745120868],[-76.57383242810837,39.21363948601569],[-76.57384630055364,39.21364152081681],[-76.57386017300512,39.21364355471554],[-76.57387404660986,39.21364558951766],[-76.57388791905751,39.21364762431386],[-76.57390179266926,39.21364965821188],[-76.5739156651239,39.21365169210405],[-76.57392953873723,39.21365372599882],[-76.57394341119347,39.21365575988772],[-76.57395728480837,39.21365779377916],[-76.5739711584295,39.21365982676825],[-76.57398503089352,39.21366185975145],[-76.57399890451623,39.2136638927372],[-76.57401277813973,39.21366592572134],[-76.57402665061153,39.21366795779888],[-76.57404052423661,39.21366999077974],[-76.5740543978679,39.21367202285818],[-76.57406827150544,39.21367405403424],[-76.5740821451437,39.21367608520863],[-76.57409601878278,39.21367811638137],[-76.57410989242263,39.21368014755249],[-76.57412376722662,39.21368217782542],[-76.57413764087347,39.21368420809249],[-76.5741515299465,39.21368617625998],[-76.5741653550834,39.21368780009526],[-76.57417316803746,39.21368019522445],[-76.57417683859808,39.21366958382607],[-76.57418007077867,39.21365889336958],[-76.57418268173416,39.21364810607667],[-76.57418513420808,39.21363729298677],[-76.57418748719932,39.21362646332165],[-76.57418979508043,39.21361562538581],[-76.57419210989737,39.21360478927656],[-76.57419448602816,39.21359396239759],[-76.57419728672839,39.2135832001138],[-76.57419966861477,39.2135723786602],[-76.5741947435448,39.21356298725654],[-76.57418073652708,39.21356176811629],[-76.57416676881486,39.21356017349107],[-76.57415286904788,39.21355825482939],[-76.57413897047195,39.21355633076574],[-76.5741250730817,39.21355440220078],[-76.57411117571924,39.21355246913041],[-76.57409727953701,39.2135505324595],[-76.57408338453509,39.21354859218814],[-76.57406948955007,39.21354664921282],[-76.57405559573996,39.21354470353781],[-76.57404170194141,39.21354275605956],[-76.57402780931231,39.21354080678241],[-76.57401391553145,39.21353885659865],[-76.57400002292009,39.21353690461588],[-76.57398613030409,39.21353495353222],[-76.57397223769426,39.21353300154623],[-76.57395834507984,39.21353105045928],[-76.57394445246072,39.21352910027147],[-76.57393055866822,39.21352715278008],[-76.57391666250129,39.21352521518703],[-76.57390276513938,39.21352328389346],[-76.57388886658794,39.21352135799862],[-76.57387496686309,39.21351943480023],[-76.57386106712819,39.21351751340168],[-76.57384716740489,39.2135155902],[-76.5738332688618,39.21351366339777],[-76.57381937034656,39.21351173209013],[-76.57380547535436,39.21350979268662],[-76.57379158157491,39.213507844278],[-76.57377769134015,39.21350588417047],[-76.5737638035031,39.21350391055824],[-76.57374992039567,39.21350192074753],[-76.57373604202337,39.21349991383751],[-76.57372216724985,39.21349788622094],[-76.5737082983964,39.21349583700546],[-76.57369443545763,39.21349376709184],[-76.57368057611227,39.21349167737247],[-76.57366672149668,39.21348957145456],[-76.57365287044746,39.21348745023464],[-76.57363902179061,39.21348531641089],[-76.5736251766786,39.2134831708882],[-76.57361133393732,39.21348101636465],[-76.57359749239801,39.2134788546376],[-76.57358365320782,39.21347668751275],[-76.57356981404546,39.21347451588246],[-76.57355597605269,39.21347234245322],[-76.57354213689743,39.21347016991891],[-76.57352829773767,39.21346799828374],[-76.57351445855166,39.21346583115071],[-76.57350061701825,39.21346366941224],[-76.57348677312667,39.21346151486977],[-76.57347292801848,39.21345937022986],[-76.57345907936711,39.2134572372856],[-76.57344522832501,39.21345511694195],[-76.57343137256565,39.21345301099202],[-76.5734175132414,39.21345092034079],[-76.57340365388552,39.21344883509249],[-76.57338979101887,39.21344675613526],[-76.57337592812058,39.21344468258093],[-76.57336206403814,39.21344261352461],[-76.57334819876615,39.21344054986694],[-76.57333433232081,39.21343848890574],[-76.57332046469679,39.21343643154176],[-76.57330659589398,39.21343437777499],[-76.57329272707575,39.21343232670883],[-76.57327885824208,39.21343027834334],[-76.57326498824051,39.21342823177347],[-76.5732511170764,39.21342618609854],[-76.57323724706018,39.21342414222774],[-76.57322337588684,39.21342209835109],[-76.57320950586681,39.2134200553777],[-76.57319563468965,39.21341801239853],[-76.57318176351875,39.21341596851695],[-76.57316789351735,39.21341392283639],[-76.57315402351671,39.2134118771542],[-76.57314015353316,39.21340982876807],[-76.57312628471911,39.21340777858298],[-76.57311241592213,39.213405725694],[-76.57309854830004,39.21340367010528],[-76.57308468186378,39.21340161001535],[-76.57307081660242,39.21339954722567],[-76.57305695136898,39.21339747993057],[-76.5730430873267,39.21339540723343],[-76.5730292256281,39.21339333003933],[-76.57301536514238,39.21339124384014],[-76.57300150939193,39.2133891405417],[-76.57298765605019,39.21338702193712],[-76.57297380625879,39.21338489073283],[-76.57295995999607,39.21338275053197],[-76.5729461137775,39.21338060312335],[-76.57293226873935,39.21337845211429],[-76.57291842487072,39.21337629930625],[-76.57290458099753,39.21337414739737],[-76.5728907359402,39.21337199998644],[-76.5728768896825,39.21336985977574],[-76.57286304105564,39.21336772856263],[-76.57284919004343,39.21336560904932],[-76.5728353354662,39.21336350483468],[-76.57282147731321,39.21336141772028],[-76.57280752969105,39.21335976715761],[-76.57279587718631,39.21335636392059],[-76.57279661241506,39.21334540048132],[-76.57279735574892,39.21333443707152],[-76.57279810372485,39.21332347187701],[-76.57279885749007,39.21331250670353],[-76.57279961704452,39.21330154155113],[-76.57280038123572,39.21329057551475],[-76.57280115005825,39.21327960949523],[-76.5728019211963,39.21326864348406],[-76.57280269581325,39.21325767658475],[-76.57280347274572,39.21324670969383],[-76.57280425199369,39.21323574281134],[-76.57280503355729,39.21322477593721],[-76.57280581512057,39.21321380906308],[-76.57280659668363,39.21320284218888],[-76.57280737824651,39.21319187531463],[-76.57280815980366,39.2131809093411],[-76.5728089402027,39.21316994336331],[-76.5728097182857,39.21315897737709],[-76.57281049984212,39.21314801140344],[-76.57281142377545,39.21313705315436],[-76.57281251207993,39.21312610361061],[-76.57281363742578,39.21311515600323],[-76.5728147801287,39.21310421026058],[-76.57281592515253,39.21309326362555],[-76.57281705164974,39.21308231692304],[-76.57281815616301,39.21307136743808],[-76.5728193301438,39.21306041910679],[-76.57282055390803,39.21304947185744],[-76.57282177651942,39.21303852370307],[-76.57282294470966,39.21302757535055],[-76.57282400754804,39.21301662391215],[-76.57282491177718,39.21300566829314],[-76.57282560644471,39.21299470920892],[-76.57282577201723,39.21298373828998],[-76.57282529388038,39.21297275241682],[-76.57282462818769,39.21296176225771],[-76.57282423339196,39.21295078119176],[-76.5728245309311,39.21293981615779],[-76.57282531714145,39.21292884569645],[-76.57282644606964,39.21291787918498],[-76.57282792220606,39.21290694006013],[-76.57282974655135,39.21289605444811],[-76.57283237024731,39.21288529605376],[-76.5728362700605,39.21287471345317],[-76.57283977192307,39.21286406905146],[-76.57284173046632,39.21285320284407],[-76.57284331189076,39.21284227671303],[-76.57284529131813,39.21283140337529],[-76.5728479677373,39.21281784644331],[-76.57284716309648,39.2128068557781],[-76.57283811815768,39.21279846990357],[-76.57283003455666,39.21278946148447],[-76.57282350475917,39.21277950929718],[-76.5728143354421,39.21277158957291],[-76.57280286016072,39.21276530447908],[-76.57279078351921,39.21275947208965],[-76.57277841431643,39.21275396021289],[-76.57276596218338,39.21274876060419],[-76.57275260335186,39.21274491787345],[-76.5727398868563,39.21274035595373],[-76.5727290495822,39.21273330300716],[-76.57271979612312,39.21272493708202],[-76.57271119553714,39.21271621772453],[-76.57270302042379,39.21270721977263],[-76.57269542473811,39.2126979509931],[-76.57268861715892,39.2126883689085],[-76.57268260021846,39.21267843749693],[-76.57267688749032,39.21266836667088],[-76.57267097628363,39.2126583752913],[-76.5726645531628,39.21264859643323],[-76.57265788631406,39.21263891217007],[-76.57265126009054,39.21262921184039],[-76.57264495185464,39.21261939196358],[-76.5726388653286,39.21260948101409],[-76.57263286818338,39.21259953345776],[-76.57262699288833,39.21258954130571],[-76.5726212718966,39.21257949927157],[-76.57261573998251,39.21256940117651],[-76.5726105340957,39.21255919437317],[-76.57260579110975,39.21254883882497],[-76.57260145748026,39.21253838117764],[-76.57259767220675,39.21252781292961],[-76.57259451886767,39.21251709925487],[-76.57259122871558,39.21250641570833],[-76.57258702954569,39.21249593512972],[-76.57258263560401,39.21248549527742],[-76.57257926794776,39.21247479973796],[-76.57257460003353,39.2124644777906],[-76.57256877006151,39.2124544614792],[-76.57256231924919,39.21244467170463],[-76.57255545678153,39.21243478945118],[-76.57254798327376,39.2124250445927],[-76.57253844988438,39.21241856567144],[-76.57252351886511,39.21242065784357],[-76.57251031970965,39.21241992426464],[-76.57250181533098,39.21241139080244],[-76.5724945273346,39.21240141421454],[-76.57248760388215,39.21239185511551],[-76.57248104851985,39.21238212440696],[-76.57247457096486,39.21237235614862],[-76.5724679749774,39.21236264240616],[-76.57246143356919,39.2123529027394],[-76.57245463671953,39.21234328014403],[-76.57244736382998,39.21233387380295],[-76.5724398958877,39.21232455502731],[-76.572432296744,39.21231529612552],[-76.57242461282785,39.21230607835031],[-76.57241688939949,39.21229688475168],[-76.57240885003306,39.21228785574515],[-76.57240071308706,39.21227887952859],[-76.5723931197048,39.21226962695058],[-76.57238587939787,39.21226019640309],[-76.57237878539198,39.21225069882961],[-76.57237190266902,39.21224111104662],[-76.57236513140766,39.21223147322565],[-76.57235847742434,39.21222178088391],[-76.57235146580855,39.21221225478387],[-76.57234390032643,39.21220298609004],[-76.57233613744897,39.21219380945688],[-76.57232841754504,39.212184611361],[-76.57232095311853,39.21217529078856],[-76.5723135619329,39.21216592184035],[-76.57230627410925,39.21215650192376],[-76.57229924745457,39.21214697576557],[-76.57229263978142,39.21213728719177],[-76.57228669017023,39.21212734429326],[-76.5722812164279,39.21211721396475],[-76.57227583555022,39.21210704524078],[-76.57227018079764,39.21209697820741],[-76.57226427190294,39.21208700482946],[-76.57225828642761,39.2120770581955],[-76.5722523485352,39.21206709371902],[-76.57224640957341,39.21205711482578],[-76.57224031415409,39.21204715968297],[-76.57223494700301,39.21203702073278],[-76.57223089960546,39.21202653889146],[-76.57222755748622,39.21201584523492],[-76.57222485992565,39.21200502421537],[-76.57222280646768,39.21199415149686],[-76.57222143287584,39.21198324882857],[-76.57222062584121,39.21197228877399],[-76.57222012699566,39.21196129741476],[-76.57221968028705,39.21195030084083],[-76.57221903199519,39.21193932244844],[-76.57221824236201,39.21192835705244],[-76.57221741102953,39.21191739420675],[-76.57221651484033,39.21190643382697],[-76.57221568703078,39.21189546288697],[-76.57221491949036,39.21188448225811],[-76.57221408822402,39.21187350860313],[-76.57221307272656,39.21186255589522],[-76.57221174901387,39.21185163899576],[-76.57221002039496,39.21184066297006],[-76.57220708102288,39.21182981224295],[-76.5722015181014,39.21181988335981],[-76.57219416246636,39.21181058028965],[-76.57218590528163,39.21180158740431],[-76.57217731019362,39.21179275362558],[-76.57216885158957,39.21178394466497],[-76.57216037660385,39.21177516446898],[-76.57215184585806,39.21176641469563],[-76.57214327095811,39.21175769088334],[-76.57213466120481,39.2117489867605],[-76.57212602705704,39.2117402960598],[-76.57211738012596,39.21173161341883],[-76.57210873087587,39.21172293166959],[-76.5721000897601,39.21171424544534],[-76.57209146606873,39.21170555027622],[-76.57208282611508,39.2116968640549],[-76.57207415364014,39.21168819482919],[-76.57206545792857,39.21167953902983],[-76.57205674827588,39.21167089128599],[-76.572048033983,39.21166224532612],[-76.5720393231767,39.2116535975767],[-76.57203062630492,39.21164494357195],[-76.5720219515107,39.21163627703616],[-76.57201330808404,39.21162759349919],[-76.57200470531508,39.21161888849106],[-76.5719961525047,39.21161015574027],[-76.5719876589375,39.21160139167757],[-76.571979233909,39.21159259093213],[-76.57197151403521,39.21158340632266],[-76.57196451555865,39.21157383250394],[-76.57195721033291,39.2115644359206],[-76.57194877121188,39.21155566935121],[-76.57193950372378,39.21154736636445],[-76.5719300293074,39.21153920044176],[-76.57192049428791,39.21153110005432],[-76.57191082323597,39.21152309285113],[-76.57190122542475,39.21151503727205],[-76.57189190663232,39.21150679534745],[-76.57188290173559,39.21149834378432],[-76.57187408285928,39.21148976678962],[-76.57186535349895,39.21148113066918],[-76.57185661599767,39.21147250082385],[-76.57184783547838,39.21146390054675],[-76.57183909447517,39.21145527609196],[-76.57183037207047,39.21144663999421],[-76.57182164037786,39.21143800836582],[-76.57181287496817,39.21142940003405],[-76.57180404679714,39.211420831107],[-76.57179513028314,39.21141231950693],[-76.57178587568224,39.21140399763819],[-76.57177634223001,39.21139583509031],[-76.57176684472797,39.21138766366503],[-76.5717577002933,39.21137931517263],[-76.57174923185414,39.21137061784142],[-76.57174298176405,39.21136079542177],[-76.5717376492318,39.2113505043406],[-76.57173028661774,39.21134122463467],[-76.57172167665593,39.21133257182396],[-76.57171260330315,39.21132415062393],[-76.57170332208719,39.21131582955204],[-76.57169408854662,39.2113074753245],[-76.57168515704589,39.21129895735553],[-76.57167651020076,39.2112902782841],[-76.5716679865526,39.21128152309522],[-76.57165951752697,39.2112727347761],[-76.57165103107033,39.21126395720214],[-76.5716424574558,39.21125523245551],[-76.57163371998764,39.2112466061961],[-76.57162479312785,39.21123808914005],[-76.5716157651833,39.21122963026512],[-76.57160673257685,39.21122117677718],[-76.5715977894265,39.21121267407204],[-76.57158903216046,39.21120406845486],[-76.57158055605453,39.21119530532588],[-76.57157235425389,39.21118636934678],[-76.57156435129119,39.2111772944718],[-76.57155662714018,39.21116806748127],[-76.57154926292681,39.21115867606049],[-76.5715423397717,39.21114910879555],[-76.57153590749512,39.21113936046379],[-76.57152981181945,39.21112947734257],[-76.57152396570955,39.21111949154231],[-76.5715183076415,39.21110942896112],[-76.57151277146511,39.21109931457935],[-76.57150729565649,39.211089174295],[-76.57150181752827,39.21107903490274],[-76.57149627324617,39.21106892139124],[-76.57149060012853,39.21105885965438],[-76.57148450363971,39.21104892157985],[-76.5714779954454,39.2110390927977],[-76.57147162405921,39.21102923478895],[-76.57146594262576,39.21101920905167],[-76.57146146954304,39.21100887875868],[-76.57145750767874,39.21099825847904],[-76.57145377272239,39.21098745256595],[-76.57145053744375,39.21097654218524],[-76.57144807348179,39.21096560399484],[-76.57144665477463,39.21095471736321],[-76.57144655178116,39.21094396254703],[-76.5714481975599,39.21093333752477],[-76.57145154969335,39.21092277188038],[-76.57145608598898,39.21091226370677],[-76.57146128426547,39.21090180929504],[-76.57146662118377,39.21089140493245],[-76.5714715850002,39.2108810442461],[-76.57147663502894,39.21087059559775],[-76.57148216256982,39.2108602612907],[-76.57148806460141,39.21085042017814],[-76.57149848431267,39.21084850623307],[-76.57151262711952,39.21085322302942],[-76.57152425210927,39.21085362398989],[-76.57152851287923,39.21084214556546],[-76.57153155095196,39.21083143104348],[-76.57153419589221,39.21082062590853],[-76.57153727641753,39.21080978363033],[-76.57153256314218,39.21080049827069],[-76.57151876685462,39.2107976500638],[-76.57150397209045,39.21079755280159],[-76.57149200456757,39.21079405009534],[-76.57148715927548,39.21078323382252],[-76.57148670277273,39.21077234529994],[-76.57148682865798,39.21076126883902],[-76.57148770843443,39.21075017351234],[-76.57148951826358,39.21073922390563],[-76.57149242747946,39.21072856476236],[-76.57149642392676,39.21071809965434],[-76.57150121392424,39.21070775904961],[-76.57150648509668,39.21069750127214],[-76.57151192507455,39.21068728374525],[-76.57151721916173,39.21067706568537],[-76.57152167590426,39.21066630499899],[-76.5715260502965,39.2106553755654],[-76.57153228598311,39.21064569150385],[-76.57154199578382,39.21063842071221],[-76.5715541087631,39.21063277920195],[-76.5715675421354,39.21062802798044],[-76.57158141366806,39.21062358011923],[-76.57159483650209,39.21061884777257],[-76.57160692609408,39.21061324310354],[-76.57161679788963,39.21060618007707],[-76.57162431816518,39.21059756092107],[-76.5716309620278,39.21058834945345],[-76.5716369128148,39.21057867245317],[-76.57164227890763,39.21056860598176],[-76.57164716867138,39.21055822880287],[-76.5716516928087,39.21054761608561],[-76.57165595620567,39.21053684748183],[-76.57166007071723,39.2105259990655],[-76.57166414356128,39.21051514779453],[-76.57166828310285,39.21050437243261],[-76.57167259888644,39.2104937481445],[-76.57167711497138,39.21048331735479],[-76.57168115574525,39.2104727911485],[-76.57168480116478,39.21046215900822],[-76.57168836101125,39.21045150853981],[-76.57169214738701,39.2104409264568],[-76.57169647238867,39.21043050037346],[-76.57170160316858,39.21042028260938],[-76.57170751768943,39.21041027938955],[-76.57171407798809,39.21040051993615],[-76.57172114847164,39.2103910244721],[-76.571728591867,39.21038170782282],[-76.5717362904705,39.21037250380157],[-76.57174412881808,39.2103633588406],[-76.57175198911379,39.21035422206625],[-76.57175975704612,39.21034504081593],[-76.57176731597701,39.21033576422021],[-76.57177460125189,39.21032636141651],[-76.5717817387337,39.21031688961356],[-76.57178877230636,39.21030736788794],[-76.57179573313395,39.21029781256743],[-76.57180265470166,39.21028823908759],[-76.57180956703733,39.21027866016897],[-76.57181650362068,39.21026909214775],[-76.5718234944633,39.21025955044681],[-76.57183057883398,39.2102500514235],[-76.57183797149953,39.21024069404672],[-76.57184550850242,39.21023140205244],[-76.57185282147925,39.21022201015415],[-76.57185974532585,39.21021244028227],[-76.57186667618822,39.21020285872535],[-76.57187360362944,39.21019326814772],[-76.57188047563909,39.21018365304631],[-76.5718872425168,39.2101739988272],[-76.57189385570926,39.21016429270244],[-76.57190026436389,39.21015451917314],[-76.57190641762264,39.21014466364132],[-76.57191193182634,39.21013460130007],[-76.57191625461881,39.21012414907715],[-76.5719201371742,39.21011354571811],[-76.5719244034635,39.2101030545551],[-76.57192937243684,39.21009277854002],[-76.57193444313037,39.21008253081999],[-76.5719395866469,39.21007230318264],[-76.57194479373993,39.2100620928918],[-76.57195005746246,39.21005189992215],[-76.57195536856804,39.21004172153762],[-76.57196072010952,39.21003155771288],[-76.5719661016882,39.2100214048068],[-76.57197145907011,39.21001123199498],[-76.57197683511707,39.21000103583064],[-76.5719826893567,39.20999103237621],[-76.57198948936684,39.20998144673115],[-76.57199699954552,39.20997217894998],[-76.57200486423939,39.20996306829671],[-76.57201294489313,39.20995405031043],[-76.57202110524022,39.20994506504238],[-76.57202920440984,39.20993604802325],[-76.57203710614628,39.20992693750293],[-76.57204468344044,39.20991767446726],[-76.57205196288996,39.20990826441805],[-76.57205906457347,39.20989876364182],[-76.57206610391103,39.20988923291198],[-76.57207319633346,39.2098797312003],[-76.57208046075057,39.20987031659055],[-76.57208801374561,39.20986104895945],[-76.57209589918592,39.20985195008573],[-76.57210399469909,39.20984296007141],[-76.57211224604592,39.2098340489929],[-76.57212060011781,39.2098251914345],[-76.57212900729068,39.20981636019187],[-76.57213741561385,39.20980752985356],[-76.57214577430544,39.20979867321097],[-76.57215403026235,39.20978976394783],[-76.57216213500746,39.2097807766654],[-76.57217010950129,39.20977169162303],[-76.57217782093463,39.20976245158712],[-76.57218494448793,39.20975296709687],[-76.57219117963442,39.20974315238304],[-76.5721966361516,39.20973304387736],[-76.5722016444532,39.20972276348938],[-76.57220652109123,39.20971242767343],[-76.57221157912797,39.20970215557335],[-76.57221713278858,39.20969206543644],[-76.57222311167847,39.20968211827233],[-76.5722292743637,39.20967222132096],[-76.57223565655804,39.20966240443832],[-76.57224229513302,39.20965269748462],[-76.57224922695474,39.20964313122087],[-76.57225647511467,39.20963371654051],[-76.57226385460143,39.20962422036722],[-76.57227136173528,39.20961467691721],[-76.57227908012102,39.20960523872756],[-76.57228709683716,39.20959605834786],[-76.57229549664089,39.20958728922002],[-76.57230436429506,39.20957908388519],[-76.57231489667808,39.20957284562108],[-76.57232947186698,39.20957110078207],[-76.57234322290034,39.20956797023621],[-76.57235612594582,39.20956337372734],[-76.57236774953303,39.20955724302533],[-76.5723788131812,39.20955045811502],[-76.57238963776106,39.20954337957809],[-76.57241061691525,39.20952954073827],[-76.57242392375032,39.20952576180242],[-76.57243705387235,39.20952171739104],[-76.57244947420979,39.2095165218941],[-76.57246195242328,39.20951113654164],[-76.57247435063324,39.20950557704529],[-76.57248640110144,39.20949969650285],[-76.57249783260524,39.20949334980106],[-76.5725083324516,39.20948635654515],[-76.57251611612728,39.20947741310727],[-76.57252232658527,39.20946726409507],[-76.57252963196684,39.2094577595278],[-76.57253817976382,39.20944901794504],[-76.57254688476864,39.20944031927115],[-76.57255580785291,39.20943174569896],[-76.57256501337797,39.20942337673185],[-76.57257456337857,39.2094152936661],[-76.57258451990047,39.20940757599649],[-76.57259528392196,39.20940054856454],[-76.57260684635938,39.20939418161092],[-76.57261872678885,39.20938807614063],[-76.57263044708033,39.20938183677],[-76.572641530267,39.20937506721926],[-76.57265160652885,39.20936745987553],[-76.57266128760473,39.20935952680995],[-76.57267078087395,39.20935143992656],[-76.5726801174514,39.20934322365984],[-76.5726893307516,39.20933490515499],[-76.57269845073168,39.2093265088423],[-76.57270750965912,39.20931806006113],[-76.57271653748562,39.20930958414253],[-76.57272556648407,39.20930110552514],[-76.57273462891641,39.20929265044914],[-76.57274375473447,39.2092842442455],[-76.57275297620559,39.2092759122536],[-76.57276232444487,39.20926767890784],[-76.57277179487515,39.20925953518369],[-76.57278135410361,39.20925145033294],[-76.5727909802075,39.20924341166479],[-76.57280065590069,39.20923540560458],[-76.57281036156509,39.20922742127146],[-76.57282007645202,39.20921944327657],[-76.57282978210127,39.20921146074329],[-76.57283946007432,39.20920345919208],[-76.57284908843741,39.20919542773359],[-76.57285864875213,39.20918735188823],[-76.57286812256365,39.20917921987874],[-76.57287749026484,39.20917101902268],[-76.57288667457938,39.20916269949583],[-76.57289527987395,39.20915401034129],[-76.57290346302229,39.20914505031559],[-76.5729115112285,39.20913600242224],[-76.57291971286543,39.20912704786736],[-76.57292833551898,39.2091183587736],[-76.57293728694238,39.20910987175024],[-76.57294641139262,39.20910149254915],[-76.572955625826,39.2090931677217],[-76.57296484487226,39.20908484561267],[-76.57297398548768,39.20907647277362],[-76.57298303270177,39.20906803563842],[-76.57299223587323,39.20905965672011],[-76.57300129480751,39.20905119530499],[-76.57300981929767,39.20904246080875],[-76.57301742720398,39.20903326898205],[-76.57302408046459,39.2090235953655],[-76.57303022235689,39.20901366226394],[-76.57303632961569,39.20900371192108],[-76.57304288245457,39.20899398569259],[-76.5730504546051,39.20898476941246],[-76.57305948596253,39.20897627005949],[-76.57306885896091,39.20896795030387],[-76.57307727361302,39.2089591865779],[-76.57308378434368,39.2089495295541],[-76.57308903188151,39.20893929143313],[-76.57309398154464,39.20892891170609],[-76.57309959286721,39.20891882894198],[-76.57310658876584,39.20890935834244],[-76.57311447296377,39.20890023417234],[-76.57312301986452,39.20889142588496],[-76.57313208463745,39.2088829500682],[-76.5731415110743,39.20887478993954],[-76.57315111737094,39.20886675657402],[-76.57316086785694,39.20885881290971],[-76.57317074751313,39.20885095348721],[-76.57318074014623,39.20884317554528],[-76.57319083188949,39.20883547452954],[-76.57320100771292,39.20882784678214],[-76.57321125027084,39.20882028863684],[-76.57322158948263,39.20881283082905],[-76.573232574797,39.20880594646657],[-76.57324394481802,39.2087993967918],[-76.57325513285966,39.20879268701558],[-76.57326553423314,39.20878528798084],[-76.57327536549356,39.2087773860367],[-76.57328566217774,39.20876987402162],[-76.57329606385866,39.20876242273987],[-76.57330646216134,39.20875495523089],[-76.57331695027376,39.20874757091951],[-76.57332761674179,39.20874037101545],[-76.57333855591136,39.20873345494776],[-76.57334984828316,39.20872691398817],[-76.57336140989393,39.20872065505064],[-76.57337316135752,39.2087145940737],[-76.57338506241013,39.20870868767331],[-76.57339707047772,39.20870289155621],[-76.57340914181745,39.20869716322668],[-76.5734212338499,39.20869145929225],[-76.57343330515872,39.20868573546399],[-76.57344531200114,39.20867994924617],[-76.57345746627392,39.20867429147416],[-76.5734699003579,39.20866889054036],[-76.57348235627624,39.20866351670806],[-76.57349457720983,39.208657940245],[-76.57350630519784,39.20865192871241],[-76.57351727995852,39.20864525056403],[-76.57352706145055,39.20863753037585],[-76.5735358270528,39.20862892282674],[-76.57354411932724,39.20861989108958],[-76.5735524785311,39.20861089652715],[-76.57356140694088,39.20860236253121],[-76.57357076536942,39.20859413726428],[-76.57358026912348,39.20858600530534],[-76.57358970365523,39.20857783165803],[-76.57359885673249,39.20856948133454],[-76.5736073052975,39.2085606429283],[-76.57361510358382,39.20855134726312],[-76.57362305616621,39.20854219358095],[-76.57363197452847,39.20853378745421],[-76.57364229092043,39.20852645203265],[-76.57365312018001,39.20851951121498],[-76.57366428479871,39.20851283194103],[-76.57367569835152,39.20850634543717],[-76.5736872732446,39.2084999847272],[-76.57369892304743,39.20849368193832],[-76.57371056016639,39.20848737009439],[-76.57372209817619,39.20848098042196],[-76.57373365459547,39.20847460973169],[-76.57374331962487,39.20846660895875],[-76.57375272034989,39.20845827483608],[-76.57376131284691,39.20844956395178],[-76.5737680722713,39.2084401167742],[-76.57377226541786,39.2084295964498],[-76.57377603816272,39.20841890074703],[-76.57377930019558,39.20840783657043],[-76.57378249990016,39.2083967397391],[-76.57378876102499,39.20838736281283],[-76.573798424367,39.20837983313854],[-76.57380887301917,39.20837263960546],[-76.57381995080098,39.20836576092812],[-76.57383151767677,39.20835918668916],[-76.57384343131132,39.20835290376053],[-76.57385555283213,39.20834690082832],[-76.57386774221445,39.20834116567384],[-76.57387995271887,39.20833576928915],[-76.5738926840633,39.20833117559052],[-76.57390585515132,39.20832719962285],[-76.5739192478797,39.20832352712151],[-76.57393264530822,39.20831984292558],[-76.57394583048556,39.20831583367558],[-76.57395881076924,39.20831143093886],[-76.57397172990194,39.20830679917985],[-76.5739840305721,39.20830142473049],[-76.5739952602724,39.20829488708403],[-76.57400581952704,39.2082875867418],[-76.57401601657071,39.20827986802116],[-76.57402609283085,39.20827201734686],[-76.57403628744098,39.20826431753202],[-76.57404684182335,39.20825705590201],[-76.574057998585,39.20825051528244],[-76.57407007607868,39.20824509047083],[-76.57408303977041,39.20824074801256],[-76.57409646669804,39.20823696752123],[-76.57410992698468,39.20823322318077],[-76.5741229965313,39.20822899099782],[-76.57413524088335,39.20822373613228],[-76.57414639917829,39.20821713065348],[-76.57415689437867,39.20820969494768],[-76.5741672632008,39.20820209483981],[-76.57417797226408,39.20819490762351],[-76.57418877786827,39.20818783965989],[-76.57419957886067,39.20818076807545],[-76.57421038560756,39.20817370191555],[-76.5742212084752,39.20816665022569],[-76.57423205436189,39.20815962113789],[-76.57424293593866,39.2081526255076],[-76.57425386010924,39.20814567056605],[-76.5742648165235,39.20813874456551],[-76.57427574882145,39.20813178514747],[-76.57428666620073,39.2081248031547],[-76.57429758130547,39.20811781394644],[-76.57430850561647,39.20811083377836],[-76.5743194540882,39.20810387891883],[-76.5743304393646,39.208096964727],[-76.57434147293206,39.20809010655787],[-76.57435256858716,39.20808332067559],[-76.57436374012633,39.2080766233442],[-76.57437499903595,39.2080700299187],[-76.5743863602704,39.20806355666743],[-76.57439795774116,39.20805726983318],[-76.57440995955433,39.20805132586104],[-76.57442232443641,39.20804584981003],[-76.57443501113029,39.20804096403693],[-76.57444797604722,39.2080367935923],[-76.57446130967729,39.20803350184599],[-76.5744750357222,39.20803099790471],[-76.57448900065535,39.2080290109767],[-76.57450305558118,39.20802727028708],[-76.57451704697264,39.20802550504429],[-76.57453102889352,39.20802396766354],[-76.5745451158241,39.20802287564866],[-76.57455917089149,39.20802169073592],[-76.57457305723847,39.20801987195935],[-76.57458680050358,39.20801739148779],[-76.57460057782438,39.20801483096844],[-76.5746143454522,39.2080121488066],[-76.57462805044096,39.20800929256497],[-76.57464164679648,39.20800620893066],[-76.57465508273576,39.20800284456979],[-76.57466830878582,39.20799914705771],[-76.57468124121966,39.20799498367588],[-76.57469362394127,39.20798981032403],[-76.57470555061194,39.20798384082741],[-76.57471718920114,39.20797744781827],[-76.5747287053575,39.20797100482118],[-76.57473985259436,39.2079642965565],[-76.57475051548354,39.20795707038681],[-76.5747613440859,39.20795001326309],[-76.57477254956798,39.20794324485394],[-76.57478381557199,39.20793642351683],[-76.5747955428966,39.20793029114771],[-76.57480812088144,39.2079255697836],[-76.57482123653108,39.20792174304225],[-76.57483461823931,39.20791834333377],[-76.57484818455721,39.20791524425345],[-76.57486185983552,39.20791231761581],[-76.57487556378815,39.2079094361196],[-76.574889219608,39.20790647157544],[-76.57490275274928,39.20790330480987],[-76.57491622066009,39.20790000989523],[-76.57492967146138,39.20789667167949],[-76.57494311654244,39.20789332173131],[-76.57495656962443,39.20788998892544],[-76.57497003978115,39.20788670482218],[-76.57498353841274,39.20788349918863],[-76.574997078088,39.20788039999454],[-76.57501064188196,39.20787733331446],[-76.57502422406482,39.20787428921899],[-76.57503783590207,39.20787131999431],[-76.57505148285398,39.20786848060798],[-76.57506517733852,39.2078658242511],[-76.57507892482143,39.20786340499046],[-76.57509276265344,39.2078613661858],[-76.57510673842262,39.20785988186047],[-76.57512079667387,39.20785873832811],[-76.57513487977131,39.20785769937482],[-76.57514892771465,39.20785653688528],[-76.57516295857063,39.20785532749153],[-76.5751769993884,39.20785419469868],[-76.5751910502272,39.20785312859838],[-76.57520510498625,39.20785198774558],[-76.57521916018656,39.20785077302853],[-76.57523321558578,39.20784952498156],[-76.57524727324082,39.20784828684968],[-76.5752613305883,39.20784710005961],[-76.57527538854904,39.20784600424916],[-76.57528944570136,39.20784504355154],[-76.57530350296078,39.20784425850525],[-76.5753175589272,39.20784368964055],[-76.57533161404756,39.20784345586231],[-76.57534565701823,39.20784409219471],[-76.57535969730154,39.20784537167468],[-76.57537374075713,39.20784689527662],[-76.57538780017484,39.20784826670236],[-76.57540188140837,39.20784908782697],[-76.57541598420956,39.20784940008561],[-76.5754300969679,39.20784959617755],[-76.57544421608615,39.20784969680789],[-76.57545834258205,39.20784972540054],[-76.57547247170587,39.20784970175558],[-76.57548660216507,39.20784964838798],[-76.57550073382518,39.20784958781674],[-76.57551486193653,39.20784953984188],[-76.5755289875222,39.20784952698671],[-76.57554310582195,39.20784957085286],[-76.5755572155487,39.20784969305438],[-76.57557131657343,39.20784991520964],[-76.57558540413567,39.20785025892016],[-76.57559947543555,39.20785080524634],[-76.57561349178766,39.2078520215546],[-76.57562744800626,39.20785380693842],[-76.57564134786581,39.20785591729943],[-76.57565519398828,39.20785810763407],[-76.57566899107013,39.20786056081836],[-76.57568246812318,39.20786386768667],[-76.57569533994678,39.20786828483174],[-76.57570786616766,39.20787337901514],[-76.57572037236866,39.20787852987419],[-76.57573317828404,39.20788312693326],[-76.57574637634865,39.2078870083857],[-76.57575971366228,39.20789064442636],[-76.57577291862808,39.20789453400779],[-76.57578599349725,39.20789868794754],[-76.57579918687179,39.20790258018641],[-76.57581254093945,39.20790631987167],[-76.57582602094324,39.20790971681233],[-76.57583973963732,39.20791192107701],[-76.57585389200422,39.20791266043319],[-76.57586809312619,39.20791221543447],[-76.57588183318796,39.20791006628788],[-76.57589448352508,39.20790504330684],[-76.57590565421037,39.20789807198791],[-76.57591932361905,39.20789495694233],[-76.57593339479979,39.20789533117848],[-76.57594584563422,39.20790180776564],[-76.57594909964051,39.20791161283666],[-76.57594705341997,39.20792252833459],[-76.57594284692983,39.20793359726541],[-76.57593772702113,39.20794387200764],[-76.57593141032467,39.20795369023131],[-76.57592423729002,39.20796323782722],[-76.57591674356145,39.20797258699214],[-76.57590881635299,39.2079818174881],[-76.57589944591118,39.20798998074417],[-76.57588781989737,39.2079962243857],[-76.57587472912029,39.20800054676647],[-76.57586086619665,39.20800213337962],[-76.57584668531858,39.20800306307193],[-76.57583250725347,39.20800526647955],[-76.57582030277867,39.20801026944687],[-76.57581020707448,39.2080177319673],[-76.57580071135828,39.20802593079392],[-76.5757913429674,39.20803432915305],[-76.57578163040232,39.20804238937433],[-76.57577076662474,39.20804934107295],[-76.57575896200686,39.20805543722835],[-76.57574545988577,39.20806155336766],[-76.57573585310541,39.20806779708868],[-76.57574704164902,39.2080748996804],[-76.57575907744577,39.20808088656207],[-76.5757722072638,39.20808456959227],[-76.57578624401468,39.2080866434986],[-76.57580040578057,39.20808736578021],[-76.57581404650817,39.20808557029009],[-76.57582745693706,39.20808162379726],[-76.57584134442706,39.2080790284001],[-76.57585561374374,39.20807628214919],[-76.57586992029874,39.20807369817204],[-76.57588392407182,39.20807179409058],[-76.5758972862226,39.20807108392793],[-76.57590734558573,39.20807649345527],[-76.57591586810643,39.20808526635495],[-76.5759291367922,39.20808566651611],[-76.575943155356,39.2080847758617],[-76.57595758102056,39.20808318586781],[-76.57597207449344,39.20808148622162],[-76.57598630000982,39.2080802576156],[-76.57600036849733,39.2080793437144],[-76.57601444028586,39.20807845864852],[-76.57602851319955,39.20807757898968],[-76.57604258161608,39.20807667679334],[-76.5760566456753,39.20807572863968],[-76.57607069858616,39.20807470838137],[-76.57608472816122,39.20807352409464],[-76.57609871229253,39.20807200004695],[-76.576112688609,39.2080704273271],[-76.57612670371162,39.20806914569849],[-76.57614076099871,39.20806816778445],[-76.57615483605778,39.2080673160425],[-76.57616892319118,39.20806657513874],[-76.57618301902237,39.20806592884692],[-76.5761971155327,39.20806536272555],[-76.57621121726751,39.20806489120353],[-76.57622532435579,39.20806449266253],[-76.57623943465397,39.20806413826983],[-76.57625354604536,39.20806379468873],[-76.57626765523918,39.20806343128081],[-76.57628176127118,39.20806301561439],[-76.57629586200831,39.2080625170551],[-76.57630999925775,39.20806210870425],[-76.5763241673057,39.20806177793022],[-76.5763383096965,39.20806128402014],[-76.5763523688273,39.20806038445551],[-76.57636628594265,39.20805883581286],[-76.5763800644295,39.20805665251697],[-76.57639375950505,39.208054088788],[-76.57640739717007,39.20805125011142],[-76.57642099765245,39.20804823924956],[-76.57643458696391,39.20804515988623],[-76.57644818648491,39.20804211568878],[-76.5764618210749,39.20803920943607],[-76.57647550221529,39.20803645738367],[-76.57648918782182,39.20803353870097],[-76.5765028952106,39.2080306561266],[-76.57651664929264,39.20802809800096],[-76.5765304761367,39.20802615266861],[-76.5765444074935,39.2080251265103],[-76.57655846933793,39.20802512951514],[-76.57657261290207,39.20802579669014],[-76.57658677692896,39.20802672156114],[-76.57660090477096,39.20802750127385],[-76.57661502013724,39.20802804313314],[-76.57662913499362,39.20802867056329],[-76.57664318875632,39.20802964096954],[-76.57665715129386,39.20803115331621],[-76.57667108598172,39.20803306460756],[-76.57668490093995,39.20803544387231],[-76.57669848085352,39.20803840689554],[-76.57671177288589,39.20804207689394],[-76.57672487892076,39.2080462605669],[-76.57673792031684,39.20805060524526],[-76.57675101959047,39.20805475826425],[-76.57676429809456,39.20805836785542],[-76.57677788318546,39.20806104624073],[-76.57679181150613,39.20806266744266],[-76.57680592856538,39.20806370381482],[-76.57682722202594,39.20806529662787],[-76.57684133380953,39.20806663563972],[-76.57685555700212,39.20806773724505],[-76.57686956087318,39.20806931006792],[-76.57688301468175,39.20807206453414],[-76.57689559491335,39.20807666425507],[-76.57690753838658,39.20808261645597],[-76.57691935836561,39.2080888915913],[-76.57693153412461,39.20809452935327],[-76.57694384180711,39.2080999847307],[-76.57695620188784,39.20810539075266],[-76.5769687434159,39.2081104641379],[-76.57698159427687,39.2081149225015],[-76.57699479402366,39.20811873445867],[-76.57700815909261,39.20812239387723],[-76.57702165493187,39.20812587000595],[-76.57703525644501,39.20812909969958],[-76.57704893738862,39.20813201800713],[-76.5770626726609,39.208134562684],[-76.57707643717058,39.20813666968429],[-76.57709026454908,39.20813794098313],[-76.57710431046014,39.20813751239012],[-76.57711848646123,39.20813623662769],[-76.57713268121677,39.2081351167666],[-76.57714680399155,39.20813500191792],[-76.57716094352153,39.2081351843862],[-76.57717510329151,39.20813546781343],[-76.57718925152051,39.2081359394609],[-76.57720335642773,39.20813668659007],[-76.57721738391676,39.20813779645412],[-76.57723130103297,39.20813935901248],[-76.57724508611034,39.20814151290776],[-76.5772587663471,39.20814416275493],[-76.57727238570305,39.20814712044891],[-76.57728598349047,39.20815020057004],[-76.5772996025056,39.20815321590972],[-76.57731328439218,39.20815597835433],[-76.57732704691387,39.20815842130996],[-76.57734083752409,39.20816081392128],[-76.57735465044453,39.20816315436595],[-76.57736848586279,39.20816541111719],[-76.57738234279788,39.20816755444572],[-76.57739622258971,39.20816955372968],[-76.57741012425194,39.20817138014046],[-76.57742406001647,39.20817292382664],[-76.57743813924714,39.20817351229736],[-76.57745230070329,39.20817351375218],[-76.57746644104016,39.20817356196989],[-76.57748055955555,39.20817358038151],[-76.57749467964673,39.20817352853607],[-76.57750879175147,39.20817365141202],[-76.577522896224,39.20817408412802],[-76.57753699096853,39.20817478974448],[-76.57755104202298,39.20817583299545],[-76.57756509253129,39.20817696812263],[-76.5775791593512,39.208178086192],[-76.57759321884437,39.20817926818882],[-76.5776072450729,39.2081805923879],[-76.57762121439852,39.20818213977459],[-76.57763510318848,39.2081839904335],[-76.57764889127274,39.20818622626324],[-76.5776625856519,39.20818883828129],[-76.57767620892976,39.20819172478054],[-76.57768978716223,39.20819478766954],[-76.5777033429583,39.2081979243403],[-76.57771690123717,39.20820103309423],[-76.57773047040348,39.20820406351764],[-76.5777440125183,39.20820716500399],[-76.5777575334616,39.20821032226111],[-76.57777104735754,39.20821349660613],[-76.57778457064572,39.20821664936463],[-76.57779811512908,39.20821974274616],[-76.57781170199617,39.2082227182761],[-76.57782535597336,39.20822550668311],[-76.57783903582497,39.2082282276229],[-76.5778526862773,39.20823102502189],[-76.57786625432946,39.20823405002081],[-76.57787971396901,39.20823739350526],[-76.57789312769503,39.2082408647341],[-76.57790657215175,39.20824423068038],[-76.5779201216677,39.20824725830878],[-76.57793384820202,39.20824972358312],[-76.57794773531491,39.20825166517794],[-76.57796170502222,39.20825334674192],[-76.57797567237172,39.20825503550211],[-76.57798958652316,39.20825690872972],[-76.57800350894063,39.20825875496187],[-76.57801742541452,39.20826062729377],[-76.57803130526918,39.20826262199871],[-76.57804511426457,39.20826485065071],[-76.57805867175057,39.20826790261282],[-76.57807221963805,39.20827101128814],[-76.57808588795852,39.20827392222277],[-76.57809964674051,39.20827641822024],[-76.57811359839813,39.20827763129424],[-76.57812770885319,39.20827784056488],[-76.57814187616522,39.20827763928133],[-76.5781560048521,39.20827750811822],[-76.57817011902239,39.20827728682301],[-76.57818423237184,39.20827700877381],[-76.57819834643495,39.20827680549047],[-76.5782124640647,39.20827678147398],[-76.57822661080546,39.20827672963619],[-76.57824077143465,39.20827667874738],[-76.57825491622597,39.20827676021497],[-76.57826901662177,39.20827710364905],[-76.57828304406459,39.20827783865971],[-76.57829718147245,39.20827935864559],[-76.57831105626845,39.20828220724122],[-76.57832335810272,39.20828691570332],[-76.57833056736885,39.20829656827511],[-76.57833107714815,39.20830762811484],[-76.5783344176642,39.20831832700464],[-76.57833977221715,39.20832873677436],[-76.57835194037817,39.20833197467574],[-76.5783657163461,39.20832962899696],[-76.57837836404737,39.20832464267171],[-76.5783880544195,39.2083167668177],[-76.57839757403488,39.20830859399182],[-76.57840773916153,39.20830090540323],[-76.57841615287798,39.20829217462108],[-76.57842266102702,39.20828223444709],[-76.57842939100625,39.20827256890763],[-76.57843953742342,39.20826530001373],[-76.5784531192982,39.20826405078066],[-76.57845943276662,39.20826915747939],[-76.57846864989784,39.20826083583271],[-76.57847789583847,39.20825253680831],[-76.57848714984425,39.20824424411766],[-76.5784963957859,39.20823594419104],[-76.57850561404489,39.20822762614858],[-76.57851478847068,39.20821928002366],[-76.57852392022103,39.20821090582047],[-76.57853302659902,39.20820251441056],[-76.57854212144485,39.20819411485146],[-76.57855122205089,39.20818571981623],[-76.57856034457295,39.20817733837072],[-76.57856950053569,39.20816897956421],[-76.57857868301897,39.20816063886787],[-76.57858787934035,39.20815230722832],[-76.57859707912236,39.208143977402],[-76.57860626967705,39.20813564123637],[-76.57861543831685,39.20812729057879],[-76.57862458388912,39.20811892452429],[-76.57863374794141,39.2081105657417],[-76.57864277240985,39.20810211998207],[-76.57865147500743,39.20809347759602],[-76.57866000455697,39.20808472919637],[-76.57866845680384,39.2080759345786],[-76.5786768536769,39.20806710553165],[-76.57868521939935,39.20805825745578],[-76.57869357473685,39.20804940303653],[-76.57870194275468,39.20804055767001],[-76.57871033038369,39.20803172408351],[-76.57871869608176,39.20802287870745],[-76.57872704678499,39.20801402336834],[-76.57873539171322,39.20800516530555],[-76.57874373778641,39.20799630904781],[-76.57875208617317,39.20798745279779],[-76.57876043109509,39.20797859473316],[-76.57876877024731,39.20796973304405],[-76.57877709785143,39.20796086590819],[-76.57878327213155,39.20795215318269],[-76.57877165677762,39.20794922537777],[-76.57876767137286,39.20793870974566],[-76.57876510011549,39.20792792535211],[-76.57876259995369,39.20791725741472],[-76.57876452862675,39.20790637117306],[-76.57876862724089,39.20789584672885],[-76.57877346228533,39.20788550868784],[-76.57877855508596,39.20787524453532],[-76.57878256058595,39.20786831568098],[-76.5787843434087,39.20786523149538],[-76.57879093106563,39.20785553569767],[-76.578797851447,39.20784596269962],[-76.57880499360131,39.20783647877392],[-76.57881225815497,39.20782705023485],[-76.57881955150756,39.20781764611983],[-76.57882688529057,39.2078082574628],[-76.57883432183294,39.20779891691559],[-76.57884192228997,39.20778965982825],[-76.57884974434334,39.20778052153828],[-76.57885058243868,39.2077795742206],[-76.57885774992448,39.20777147848873],[-76.57886582594791,39.20776246631801],[-76.57887399316864,39.20775349951319],[-76.5788822723202,39.2077445961643],[-76.57889068645184,39.20773577436966],[-76.57889925747098,39.20772704952121],[-76.57890800149599,39.20771843699004],[-76.57891687244447,39.2077098978771],[-76.57892585186097,39.20770142040597],[-76.57893493510896,39.20769300546075],[-76.57894411754656,39.20768465482634],[-76.57895339569498,39.20767636939095],[-76.57896276607009,39.20766815094368],[-76.57897222404078,39.20765999946792],[-76.57898179034058,39.20765193305365],[-76.57899154916859,39.20764400604995],[-76.57900146479855,39.20763619040429],[-76.5790114841851,39.20762844989502],[-76.57902155544625,39.20762074740387],[-76.57903162786833,39.20761304401527],[-76.57904164840083,39.20760530440829],[-76.57905160782401,39.20759752134365],[-76.5790615868422,39.20758975276096],[-76.57907157277296,39.2075819896069],[-76.57908154601911,39.2075742173987],[-76.57909148814663,39.20756642075686],[-76.57910137840058,39.2075585851944],[-76.57911120756124,39.20755070347209],[-76.57912100445618,39.20754279551047],[-76.57913076100745,39.20753485677671],[-76.57914046453266,39.20752687821748],[-76.57915010002851,39.20751885167196],[-76.57915965364937,39.20751076898348],[-76.57916914273567,39.20750263471808],[-76.57917857193983,39.20749444528941],[-76.57918250972426,39.20749092293865],[-76.57918784313195,39.20748615260408],[-76.57919253286666,39.20748176009121],[-76.57919685935052,39.2074777067713],[-76.57920551788793,39.20746905067344],[-76.57921372888953,39.20746010742191],[-76.57922152792703,39.20745093119125],[-76.57922896319029,39.20744159601855],[-76.57923604414988,39.20743206680731],[-76.57924219184912,39.20742215592028],[-76.57924695260269,39.20741183290573],[-76.57925153540108,39.20740145070194],[-76.57925609975342,39.20739105492005],[-76.57926063987607,39.20738064463855],[-76.57926514418041,39.20737022161747],[-76.57926960456726,39.20735978492696],[-76.5792740117796,39.2073493336331],[-76.57927835886528,39.20733886861166],[-76.5792826354042,39.20732838982541],[-76.57928683213407,39.20731789724104],[-76.57929094095564,39.20730738992876],[-76.57929495260123,39.20729686875615],[-76.57929885897177,39.20728633279343],[-76.57930265079946,39.2072757829081],[-76.57930569891667,39.20726510334578],[-76.57930740766268,39.2072541901824],[-76.57930841075147,39.20724317360125],[-76.57930935693729,39.20723218564112],[-76.57931048593679,39.20722121815364],[-76.57931151780942,39.20721022869904],[-76.57931221043225,39.20719924073045],[-76.5793123216774,39.20718827860171],[-76.5793115260506,39.20717736726846],[-76.57930952943563,39.2071665119817],[-76.57930691786268,39.20715568331505],[-76.5793043642335,39.20714484584826],[-76.57930232254665,39.20713397688792],[-76.57930044653136,39.20712309050585],[-76.57929861570258,39.20711219888104],[-76.57929673505194,39.20710131338301],[-76.57929471536019,39.20709044540204],[-76.579292466245,39.20707960722506],[-76.57928997960725,39.20706879792215],[-76.57928734234001,39.2070580078963],[-76.57928464829384,39.20704722577383],[-76.57928199132984,39.20703643837953],[-76.5792792603267,39.20702564081103],[-76.57927672627677,39.2070148223299],[-76.57927633853032,39.20700385660982],[-76.57927740645128,39.20699284116142],[-76.57927970018103,39.20698539720868],[-76.57928066582198,39.20698226594649],[-76.57928639097368,39.20697214275781],[-76.57929135832681,39.2069615322305],[-76.57929464965333,39.20695083912713],[-76.57929218586057,39.20694047399177],[-76.57928685937965,39.20693020578527],[-76.57928020226488,39.20692018502663],[-76.57927340879415,39.20691051058005],[-76.57926980500223,39.2069055433518],[-76.57926644352439,39.20690091118278],[-76.57925911965151,39.20689145372371],[-76.57925131366565,39.20688227017496],[-76.5792429020516,39.20687349340937],[-76.5792337965668,39.20686516544721],[-76.57922406381883,39.20685718293713],[-76.57921381728177,39.20684954448435],[-76.57920317040792,39.20684225229715],[-76.57919223548141,39.2068353103813],[-76.57918084717306,39.20682887397914],[-76.57916898025152,39.2068229024649],[-76.57915689557153,39.2068171418524],[-76.57914485514557,39.20681133815981],[-76.57913311982321,39.20680523830192],[-76.57912191442384,39.20679861248484],[-76.57911096478638,39.2067916155607],[-76.5791003169822,39.20678428823012],[-76.57909017744969,39.20677657178202],[-76.57908075610577,39.20676840661711],[-76.57907219789789,39.20675975542265],[-76.57906425207672,39.20675072989712],[-76.57905672927724,39.2067414383561],[-76.5790494668167,39.20673198020292],[-76.57904230315961,39.20672245664656],[-76.57903507794957,39.20671296529709],[-76.57902762848812,39.20670360826001],[-76.57901979441893,39.20669448314537],[-76.57901143166424,39.2066856759112],[-76.57900257755625,39.20667713894999],[-76.57899332032684,39.20666883204287],[-76.57898373888166,39.20666072574706],[-76.57897391442587,39.20665279333034],[-76.578963925865,39.20664500535],[-76.5789538358689,39.20663733680897],[-76.5789436190624,39.20662977140201],[-76.57893329058747,39.20662229387017],[-76.578922871391,39.2066148862729],[-76.57891238125156,39.20660753246704],[-76.57890184458392,39.20660021542535],[-76.5788912811613,39.2065929199055],[-76.5788807142461,39.20658562797523],[-76.5788774187612,39.20658334617436],[-76.58240116922475,39.20771285222587],[-76.58166235464098,39.20777968974691],[-76.58236249596727,39.20785710012412],[-76.58287753947194,39.20790799690264],[-76.5830063684679,39.20791495575222],[-76.58300890735974,39.20791755812778],[-76.58301315626804,39.20792195193121],[-76.58301738186215,39.20792637267517],[-76.5830215528284,39.20793082925607],[-76.58302564132654,39.20793533058288],[-76.58302961488516,39.20793988554804],[-76.58303344565874,39.20794450396127],[-76.58303710349671,39.20794919382244],[-76.58304055708544,39.20795396402805],[-76.58304381338222,39.20795881280139],[-76.58304695940241,39.20796370982503],[-76.5830500113974,39.20796864795044],[-76.58305298097184,39.20797362271497],[-76.58305587625671,39.20797862964363],[-76.58305871002487,39.20798366247632],[-76.58306148923913,39.2079887185354],[-76.58306422783005,39.20799379156492],[-76.5830669327762,39.20799887618507],[-76.58306961567155,39.20800396973456],[-76.58307228813118,39.20800906594926],[-76.58307495828615,39.20801416035412],[-76.58307763658843,39.20801924758161],[-76.58308033463727,39.2080243240698],[-76.5830830408229,39.20802939518215],[-76.58308574004094,39.2080344698728],[-76.58308843113879,39.20803954723683],[-76.58309111294815,39.20804462907174],[-76.5830937854743,39.20804971447675],[-76.58309644524378,39.20805480343943],[-76.58309909109883,39.20805989595581],[-76.58310172418666,39.20806499383143],[-76.58310434103909,39.2080700961532],[-76.58310694166144,39.20807520202035],[-76.58310952372757,39.20808031322623],[-76.58311208723734,39.20808542977078],[-76.58311463103837,39.20809055074919],[-76.58311715280433,39.20809567795473],[-76.58311965138813,39.20810080958174],[-76.58312212562126,39.20810594742764],[-76.58312450592429,39.20811111016168],[-76.58312653601432,39.20811636623361],[-76.58312831331124,39.20812168806529],[-76.58312997235325,39.20812703650029],[-76.58313163608493,39.20813237504331],[-76.5831330587442,39.20813775506663],[-76.58313442693374,39.20814314390423],[-76.58313620314279,39.2081484540217],[-76.58313835723668,39.20815369071667],[-76.58314001754907,39.20815902023957],[-76.58314139040255,39.2081644036889],[-76.58314266356827,39.2081698066013],[-76.58314390427857,39.20817521570387],[-76.58314518440217,39.20818061683935],[-76.58314689371899,39.20818607985196],[-76.58314890364376,39.20819102418103],[-76.58314915473503,39.20819164300983],[-76.58315150134472,39.20819722088417],[-76.58315346397964,39.2082027262326],[-76.58315457653393,39.20820807362652],[-76.58315436828104,39.20821317581927],[-76.58315247495463,39.20821795585114],[-76.58314921247263,39.20822244276857],[-76.58314495084237,39.2082267216588],[-76.58314003344697,39.20823087661346],[-76.5831348013434,39.20823499351783],[-76.583129599062,39.20823915826936],[-76.58312476767055,39.2082434549518],[-76.58312064938389,39.20824796945455],[-76.58311739665774,39.2082527662749],[-76.5831145709517,39.20825779791496],[-76.58311213205437,39.20826301108572],[-76.5831100814197,39.20826835534855],[-76.58310841935447,39.20827377845917],[-76.58310715079138,39.20827922909055],[-76.58310714839646,39.20827924259376],[-76.58310627602667,39.20828465679988],[-76.58310567334743,39.20829008547593],[-76.58310524760702,39.20829554991113],[-76.58310498727495,39.20830104195745],[-76.58310488197857,39.20830655347104],[-76.58310492133982,39.20831207720877],[-76.58310509498608,39.20831760502668],[-76.58310538907126,39.20832312876862],[-76.58310579553299,39.20832864119966],[-76.58310630168815,39.20833413326686],[-76.58310689831139,39.20833959863199],[-76.58310760737996,39.20834504097635],[-76.58310865667093,39.2083505142552],[-76.58311009044031,39.20835597448759],[-76.5831119102109,39.20836135952482],[-76.58311411518976,39.20836660721012],[-76.58311670458923,39.20837165448587],[-76.58311997410627,39.20837642493534],[-76.58312440484669,39.20838081577697],[-76.58312959323621,39.20838474000248],[-76.58313512182251,39.20838810785212],[-76.58314121608836,39.20839077239842],[-76.58314779502899,39.20839292341875],[-76.58315450142463,39.20839486140603],[-76.5831611082804,39.20839679363468],[-76.58316775379376,39.20839864943372],[-76.58317443914362,39.20840042520427],[-76.58318115735663,39.20840212542545],[-76.58318789914914,39.20840375366745],[-76.58319469281085,39.20840522445638],[-76.58320167006258,39.20840618965732],[-76.58320853813132,39.20840741119298],[-76.58321525014972,39.20840918075047],[-76.58322198235362,39.20841106207625],[-76.58322851019624,39.20841323993405],[-76.58323460794642,39.20841590358705],[-76.58324009514432,39.20841922264241],[-76.58324510679402,39.2084230786763],[-76.58324991090517,39.2084271807873],[-76.58325477549805,39.20843123627218],[-76.58325997205041,39.20843495514249],[-76.58326554009707,39.20843830871346],[-76.58327132116577,39.20844146847174],[-76.58327725482297,39.20844447293628],[-76.58328327832471,39.20844735971712],[-76.5832893334632,39.20845018265441],[-76.58329539775362,39.20845302454035],[-76.58330148761686,39.20845584940191],[-76.58330762533681,39.20845860867599],[-76.5833138297449,39.20846125018402],[-76.58332012081999,39.20846372355322],[-76.58332652085106,39.20846597931963],[-76.58333305317417,39.20846798693959],[-76.5833397245405,39.20846977976588],[-76.58334650238854,39.20847138200399],[-76.58335335648829,39.20847281516541],[-76.58336025428879,39.20847410165407],[-76.5833671643916,39.20847526477882],[-76.58337408490914,39.20847623156953],[-76.5833812472431,39.20847624078603],[-76.58338844231233,39.20847599880002],[-76.58339533365631,39.20847660967691],[-76.58340184142448,39.20847846137044],[-76.58340823889556,39.20848075946006],[-76.58341451398358,39.20848339310668],[-76.58342064755523,39.208486268561],[-76.58342662165093,39.20848928937554],[-76.583432383233,39.20849241752923],[-76.58343771026162,39.20849600263817],[-76.58344271576325,39.20849992259724],[-76.58344759104078,39.20850393577516],[-76.58345236660936,39.20850797201928],[-76.58345694565196,39.20851215349225],[-76.58346334502544,39.20851807633382],[-76.58348095932398,39.20852753672324],[-76.58348832995351,39.20853210733367],[-76.58346980721934,39.20862502664239],[-76.58347164974647,39.20866167790904],[-76.58349358074793,39.20866221425561],[-76.58349347709115,39.20866606923602],[-76.5834897910268,39.20867585486203],[-76.58350033002515,39.20869554283743],[-76.58351580383916,39.2087096877983],[-76.58351513180732,39.20872971160537],[-76.58348982308154,39.20874323979844],[-76.58347694777326,39.20875490426515],[-76.58348917678224,39.20878236838828],[-76.58349745915376,39.20880778273318],[-76.58349107869446,39.20881442407258],[-76.58349391667032,39.20883829586903],[-76.58347686860951,39.20883947392984],[-76.58341916206238,39.20924346897872],[-76.58314847654937,39.209606183159],[-76.58299992838401,39.20980846643652],[-76.58288456602041,39.20996482131309],[-76.5827191037681,39.20989411074439],[-76.582715774251,39.20989323865726],[-76.5827122772318,39.2098934829441],[-76.58270898454795,39.2098944215597],[-76.58270570762383,39.20989543679772],[-76.58270244886513,39.20989651335344],[-76.58269921067216,39.20989763682287],[-76.58269599660318,39.20989879280614],[-76.5826928067428,39.20989996689109],[-76.5826896260656,39.20990115452032],[-76.58268645341903,39.20990235478899],[-76.58268328649808,39.20990356588732],[-76.5826801241607,39.20990478510891],[-76.58267696641752,39.20990601065217],[-76.58267381095816,39.20990724160824],[-76.58267065664592,39.20990847436983],[-76.58266750233358,39.20990970713133],[-76.58266434802647,39.20991093899197],[-76.58266119026685,39.20991216723716],[-76.58265803021789,39.20991339097019],[-76.58265486558518,39.20991460657979],[-76.58265169752114,39.20991581497085],[-76.58264853173038,39.20991703057619],[-76.58264537052848,39.20991825340396],[-76.58264221276292,39.20991948254939],[-76.58263905728647,39.20992071620676],[-76.58263590525696,39.20992195438024],[-76.58263275321148,39.20992319525591],[-76.5826296023131,39.20992443793715],[-76.58262645256715,39.2099256815232],[-76.58262330166856,39.20992692420425],[-76.58262014962264,39.2099281650796],[-76.5826169964399,39.20992940234765],[-76.58261384095728,39.20993063690513],[-76.58261068319591,39.20993186514897],[-76.58260752084016,39.20993308707084],[-76.5826043538953,39.20993430177008],[-76.58260118352975,39.20993550744924],[-76.58259800627,39.20993670409597],[-76.58259482444763,39.20993788901622],[-76.58259163459441,39.20993906129685],[-76.58258843786815,39.20994022094202],[-76.58258523427948,39.20994136615017],[-76.58258202036548,39.20994249510741],[-76.5825787984418,39.20994360782205],[-76.58257556620332,39.2099447024842],[-76.58257232365541,39.20994577819321],[-76.58256907194,39.20994683765539],[-76.58256581220967,39.20994788177568],[-76.58256254445372,39.20994891235564],[-76.58255926867224,39.20994992939521],[-76.58255598717562,39.20995093380341],[-76.58255269879541,39.20995192737761],[-76.58254940584729,39.20995291012612],[-76.5825461060103,39.20995388294143],[-76.58254280159481,39.20995484673254],[-76.58253949375337,39.20995580240431],[-76.58253618016504,39.20995675084927],[-76.58253286429267,39.20995769388135],[-76.58252954498377,39.20995863059564],[-76.58252622338556,39.20995956279774],[-76.58252290065063,39.20996049139262],[-76.58251957445798,39.20996141727273],[-76.58251624827581,39.20996234135121],[-76.58251292210421,39.20996326362809],[-76.58250959477459,39.20996418590076],[-76.58250626743965,39.20996510907407],[-76.58250294125713,39.20996603315223],[-76.58249961737437,39.20996695994075],[-76.58249629462814,39.20996789033641],[-76.58249297301852,39.20996882433912],[-76.58248965600833,39.20996976376277],[-76.58248634128728,39.20997070769841],[-76.58248083442258,39.20997229509939],[-76.58231274858798,39.2098909958366],[-76.58202994573679,39.21017820125514],[-76.5820589080511,39.21019305111759],[-76.58205537983098,39.21019780729086],[-76.5820518620044,39.21020256800501],[-76.58204835341365,39.21020733325582],[-76.58204485174822,39.21021210213429],[-76.58204135470844,39.21021687192994],[-76.5820378588154,39.21022164353113],[-76.58203436407979,39.21022641513633],[-76.58203086588071,39.21023118492752],[-76.58202736305516,39.21023595380132],[-76.58202385446636,39.21024071815059],[-76.58202033547778,39.2102454788596],[-76.58201680494206,39.21025023412262],[-76.58201326171198,39.2102549821341],[-76.58200970230878,39.21025972378236],[-76.58200612443262,39.21026445635688],[-76.58200252576779,39.21026917984946],[-76.58199890516711,39.21027389245437],[-76.5819952591623,39.21027859325847],[-76.58199158891122,39.21028328226595],[-76.5819878955611,39.21028796128241],[-76.58198418258549,39.21029263032023],[-76.58198045113157,39.21029729118509],[-76.58197670350974,39.21030194478596],[-76.58197294318832,39.21030659203595],[-76.5819691724776,39.21031123384419],[-76.5819653913723,39.21031587111131],[-76.5819616033353,39.21032050565128],[-76.58195781183491,39.21032513837719],[-76.58195401802895,39.21032976929324],[-76.58195022306461,39.21033440020499],[-76.5819464304049,39.21033903292643],[-76.58194264352333,39.21034366746989],[-76.58193886125673,39.21034830473199],[-76.58193508938899,39.21035294563416],[-76.58193132790426,39.21035759287864],[-76.58192758028137,39.21036224557711],[-76.58192384766227,39.2103669064359],[-76.5819201323679,39.21037157456259],[-76.58191643785597,39.21037625267185],[-76.58191276527893,39.21038094166848],[-76.58190911464744,39.21038563975098],[-76.58190547670935,39.21039034508485],[-76.58190185262782,39.21039505677345],[-76.58189824125026,39.21039977391194],[-76.58189464141358,39.21040449739687],[-76.58189105197582,39.2104092245219],[-76.5818874717685,39.21041395708436],[-76.58188390195482,39.21041869418767],[-76.58188033906656,39.21042343491865],[-76.58187678541934,39.21042817928559],[-76.58187323869751,39.21043292728019],[-76.58186969774852,39.21043767799766],[-76.58186616141457,39.21044243143376],[-76.58186263085874,39.21044718669193],[-76.58185910376537,39.21045194376386],[-76.58185558013977,39.21045670174885],[-76.58185205881875,39.21046146154348],[-76.58184853980768,39.21046622224705],[-76.581845021954,39.21047098295458],[-76.58184150294198,39.21047574365792],[-76.58183798393479,39.21048050346036],[-76.58183446492714,39.21048526326271],[-76.5818309470716,39.2104900239698],[-76.58182744191998,39.2104947901268],[-76.58182394716209,39.21049956082461],[-76.5818204627978,39.21050433606325],[-76.58181698536421,39.21050911402883],[-76.58181351369815,39.21051389561801],[-76.58181004781028,39.21051867902924],[-76.58180658654273,39.21052346425837],[-76.58180312642192,39.21052825129304],[-76.58179966862167,39.21053303743509],[-76.58179620965781,39.21053782447367],[-76.58179274954095,39.2105426106073],[-76.58178928596064,39.21054739492686],[-76.5817858177538,39.21055217832907],[-76.58178234377849,39.21055695810746],[-76.58177886287152,39.21056173515873],[-76.58177537272782,39.21056650767304],[-76.58177187334208,39.21057127655116],[-76.5817683566359,39.21057603726038],[-76.58176481451491,39.21058078797037],[-76.58176125276839,39.21058552870167],[-76.58175767600119,39.21059026397461],[-76.58175409000256,39.21059499380984],[-76.58175049937732,39.21059972272773],[-76.58174691106203,39.21060445255448],[-76.58174332852491,39.21060918420326],[-76.58173975868651,39.21061392220269],[-76.58173620733608,39.21061866657337],[-76.58173267792061,39.21062342183151],[-76.58172917622414,39.21062818889854],[-76.58172570917773,39.21063297050148],[-76.58172228255482,39.21063776936322],[-76.58171891020719,39.21064259273945],[-76.5817155898402,39.21064743701886],[-76.5817123087336,39.21065229945377],[-76.5817090588142,39.2106571746107],[-76.58170582737222,39.21066205794045],[-76.58170260517136,39.21066694490613],[-76.5816993818122,39.21067183186767],[-76.58169614574805,39.21067671337905],[-76.58169288889529,39.21068158580849],[-76.58168959970709,39.21068644370996],[-76.5816862666263,39.21069128343928],[-76.58168288041652,39.21069610045955],[-76.58167942837866,39.21070088842001],[-76.58167591165983,39.21070564912631],[-76.58167234528032,39.21071038803672],[-76.58166874193935,39.21071511150193],[-76.5816651154992,39.2107198249761],[-76.58166147982233,39.2107245339133],[-76.58165784876043,39.21072924556918],[-76.58165423733377,39.21073396540197],[-76.58165065825214,39.21073869796095],[-76.58164712420951,39.21074345049757],[-76.58164365138401,39.2107482284742],[-76.58164024438038,39.21075303641123],[-76.58163680031443,39.21075784601757],[-76.58163331571794,39.21076265638008],[-76.58162983453616,39.21076747666324],[-76.58162639956183,39.21077231512673],[-76.58162305126145,39.21077718182336],[-76.58161983358552,39.21078208501687],[-76.58161678931636,39.21078703476847],[-76.58161395893089,39.21079203932949],[-76.58161138637462,39.21079710786448],[-76.58160909935106,39.21080225488474],[-76.58160705259789,39.21080749824451],[-76.5816052346109,39.21081282529187],[-76.58160364202811,39.21081821709839],[-76.58160226916107,39.21082365652899],[-76.58160111264243,39.21082912555595],[-76.58160016794696,39.21083460614763],[-76.58159943054937,39.21084008027211],[-76.58159889591393,39.21084553169928],[-76.58159860908543,39.21085097950611],[-76.58159865080586,39.21085647622584],[-76.58159900732437,39.21086199748835],[-76.58159966141118,39.21086751981191],[-76.58160059468929,39.21087301790898],[-76.58160178993953,39.2108784664964],[-76.58160323109011,39.21088384209648],[-76.58160491357854,39.21088913298274],[-76.58160689036893,39.2108943897878],[-76.58160914642527,39.21089960975571],[-76.58161165867013,39.2109047792925],[-76.581614401705,39.21090988569657],[-76.58161735244713,39.2109149162747],[-76.58162048666134,39.21091985742871],[-76.58162378009627,39.21092469826275],[-76.58162719657197,39.21092948729002],[-76.58163072900862,39.21093424700486],[-76.58163437399114,39.21093896748641],[-76.58163813387235,39.21094364243763],[-76.5816420087053,39.21094826285083],[-76.58164599621682,39.21095282151174],[-76.58165009992814,39.21095731032576],[-76.58165431641355,39.21096172117368],[-76.58165864803647,39.21096604595682],[-76.58166309830227,39.21097027928306],[-76.58166768568901,39.21097442932523],[-76.58167239972279,39.21097850505383],[-76.58167722647234,39.21098251272462],[-76.58168214852735,39.21098645948183],[-76.58168715195107,39.21099035248199],[-76.581692221649,39.21099419887751],[-76.58169734136337,39.21099800671747],[-76.58170249600495,39.21100178225362],[-76.5817076704845,39.2110055317375],[-76.58171284969679,39.21100926412321],[-76.58171805340498,39.21101296596943],[-76.58172331528237,39.21101662118212],[-76.58172862719213,39.21102023513691],[-76.58173398447634,39.21102381232112],[-76.58173937900874,39.21102735630895],[-76.58174480612081,39.21103087338923],[-76.58175025768094,39.21103436803678],[-76.5817557290313,39.21103784473903],[-76.58176121319822,39.21104130797496],[-76.58176670320793,39.21104476222362],[-76.58177219324475,39.21104821196821],[-76.58177774615642,39.21105160248501],[-76.58178337707464,39.21105492031627],[-76.5817890568886,39.21105819328243],[-76.58179475650327,39.21106144650167],[-76.58180044332906,39.21106470868286],[-76.58180609058667,39.21106800495244],[-76.58181166684959,39.21107136312272],[-76.58181714301224,39.21107481011337],[-76.58182243521577,39.21107842939829],[-76.5818274258801,39.21108232865232],[-76.5818321780706,39.21108641622047],[-76.58183676302635,39.21109058876671],[-76.58184087782179,39.21109516498915],[-76.58184241600392,39.21110038689795],[-76.5818411644489,39.21110587360383],[-76.58183939636578,39.21111118281653],[-76.58183761664023,39.21111650279711],[-76.58183579061598,39.21112181991029],[-76.58183388709989,39.21112712233479],[-76.58183187259365,39.21113239643951],[-76.58182971475142,39.2111376294982],[-76.58182738122215,39.21114280968539],[-76.58182484312827,39.21114792518804],[-76.58182221141199,39.21115301243274],[-76.58181954155502,39.21115808783124],[-76.5818168335414,39.21116315408596],[-76.58181409316566,39.21116821031663],[-76.58181132041722,39.21117325832483],[-76.58180851876973,39.21117829812295],[-76.58180569169134,39.21118333062408],[-76.58180284149786,39.21118835583653],[-76.58179996933649,39.21119337556591],[-76.58179707984398,39.21119838892799],[-76.58179417532006,39.21120339863327],[-76.58179125693329,39.2112084028844],[-76.58178832929916,39.21121340440012],[-76.58178539241763,39.21121840318047],[-76.58178245207803,39.21122339924607],[-76.58177950826978,39.21122839439845],[-76.58177656562957,39.21123338775334],[-76.58177362529933,39.21123838201719],[-76.5817706907633,39.21124337540086],[-76.58176775391112,39.21124836877612],[-76.58176481243771,39.21125336033333],[-76.58176186286948,39.21125835006],[-76.58175890752744,39.21126333706366],[-76.58175594293803,39.21126832133199],[-76.58175297026442,39.21127330196825],[-76.58174998834346,39.21127827986913],[-76.58174699717506,39.21128325503462],[-76.58174399561202,39.21128822565909],[-76.58174098249654,39.2112931917384],[-76.58173795666536,39.21129815416916],[-76.58173492044483,39.21130311115808],[-76.58173187035611,39.21130806359363],[-76.58172880640446,39.21131301057496],[-76.58172572858989,39.21131795210209],[-76.58172263575455,39.21132288817095],[-76.58171952675113,39.2113278169758],[-76.58171640272698,39.21133274032233],[-76.58171326021905,39.21133765639663],[-76.58171008074399,39.21134255792656],[-76.58170686430182,39.21134744491215],[-76.58170361435553,39.21135231916723],[-76.58170033667852,39.21135718341473],[-76.5816970358969,39.21136203857201],[-76.5816937177893,39.21136688646119],[-76.58169038697133,39.21137172980099],[-76.58168704806911,39.21137656950877],[-76.58168370569815,39.21138140830333],[-76.58168036678971,39.21138624891167],[-76.5816770336648,39.2113910904413],[-76.5816737132441,39.21139593742081],[-76.58167041015372,39.21140079076749],[-76.58166712900922,39.21140565320015],[-76.58166387559987,39.21141052473939],[-76.58166065337808,39.21141540900065],[-76.58165746812254,39.21142030780611],[-76.58165432562258,39.21142522117645],[-76.58165123163563,39.21143015453683],[-76.58164819195109,39.21143510790792],[-76.58164520310062,39.2114400803766],[-76.58164225700038,39.21144506831087],[-76.58163934786651,39.2114500707894],[-76.58163646876766,39.21145508508507],[-76.58163361509362,39.21146010757836],[-76.5816307775868,39.21146513733543],[-76.58162795278953,39.21147017164169],[-76.58162513146014,39.211475206861],[-76.5816223089725,39.21148024207613],[-76.58161947839535,39.21148527456],[-76.58161663395525,39.21149030158965],[-76.58161376755784,39.2114953213347],[-76.58161087575068,39.21150033017972],[-76.58160796198615,39.21150533174009],[-76.58160505168419,39.21151033511426],[-76.58160214600267,39.21151534030648],[-76.58159924032071,39.21152034549856],[-76.58159633232796,39.21152534978153],[-76.58159342086653,39.21153035315132],[-76.58159050362593,39.21153535469882],[-76.58158757830111,39.21154035261427],[-76.58158464142383,39.21154534598461],[-76.58158169183613,39.21155033480562],[-76.58157872723292,39.21155531726748],[-76.58157574414061,39.21156029335792],[-76.58157274256449,39.21156526217608],[-76.58156971788378,39.211570221904],[-76.58156663543674,39.21157515980708],[-76.58156340743271,39.21158004044172],[-76.58156007313819,39.21158488106291],[-76.58155668569817,39.21158970167725],[-76.58155051642463,39.21159855147661],[-76.58151974450345,39.21158712972312],[-76.58148458660327,39.21164347794242],[-76.58142063132912,39.21174785669887],[-76.58135242457999,39.21185922202591],[-76.58127495457897,39.2119841164246],[-76.58110217065702,39.21192097739426],[-76.5809542410432,39.21186611136873],[-76.58093899144113,39.21188811254891],[-76.58091504458997,39.21192468343549],[-76.58123422929633,39.21204298760411],[-76.58122126669586,39.21206398900672],[-76.58118409125643,39.21212347996325],[-76.58115160535205,39.2121764740946],[-76.58113956897344,39.21220612179265],[-76.58110149512073,39.21230306220927],[-76.58107494615204,39.21237147547017],[-76.58103344226082,39.21248257290849],[-76.58103656098933,39.2124838631532],[-76.58103962469765,39.21248505861934],[-76.58104157352946,39.21248740040288],[-76.58104195594053,39.21249009690642],[-76.58104202880988,39.21249285806187],[-76.58104185742508,39.21249560843668],[-76.58104136322034,39.21249831892528],[-76.58104077292747,39.21250102636846],[-76.58104011202516,39.21250372995645],[-76.58103937590846,39.21250642516884],[-76.58103855884109,39.21250910297734],[-76.58103765506016,39.21251175885751],[-76.58103665882415,39.21251438468175],[-76.5810355226599,39.21251698028062],[-76.58103424540965,39.21251954565],[-76.58103285603092,39.21252207909163],[-76.58103137767597,39.21252458158897],[-76.58102983814459,39.21252705143975],[-76.5810282522341,39.21252953193429],[-76.58102656336257,39.21253199674794],[-76.58102469222601,39.21253434561076],[-76.58102256069442,39.21253647555466],[-76.58101989317699,39.2125381919277],[-76.58101667480727,39.21253946314938],[-76.5810133732514,39.21254050707697],[-76.58101001604341,39.21254136704634],[-76.58100656855851,39.21254202401747],[-76.5810030955637,39.21254249083248],[-76.58099957624898,39.21254276201245],[-76.58099603377201,39.21254283764002],[-76.58099251560061,39.21254271878546],[-76.58098901604103,39.21254238921438],[-76.5809855229193,39.21254194977087],[-76.58098203091298,39.21254151753745],[-76.5809785494605,39.21254106282211],[-76.58097506681828,39.21254061350712],[-76.58096838912181,39.21254023115077],[-76.58096457177237,39.21255313832881],[-76.58094844001278,39.21261413659096],[-76.58093242497037,39.21267261848346],[-76.580908994541,39.21275859006022],[-76.58088637013034,39.21284845678573],[-76.58086981415386,39.21291421234564],[-76.58084325929592,39.2130196440346],[-76.58084347932179,39.21302513328141],[-76.58084390551565,39.21303061245527],[-76.58084481582388,39.21303607354113],[-76.58084511356674,39.21304153964521],[-76.58084474660177,39.21304701688667],[-76.58084433447381,39.21305249486762],[-76.58084387949323,39.21305797449701],[-76.58084338513909,39.21306345488657],[-76.5808428548956,39.21306893424713],[-76.58084229108385,39.21307441168623],[-76.58084169717759,39.21307988721623],[-76.58084107433993,39.21308535994055],[-76.58084042606046,39.2130908271693],[-76.58083972337612,39.21309629150134],[-76.58083896860788,39.21310175204419],[-76.58083817216611,39.21310721063664],[-76.58083734794553,39.21311266732827],[-76.58083650751963,39.21311812306124],[-76.58083566246742,39.21312357787685],[-76.58083482783073,39.21312903363045],[-76.58083401403597,39.2131344894585],[-76.58083323380393,39.21313994810873],[-76.58083249872416,39.21314540782104],[-76.58083182383334,39.21315087135148],[-76.58083121955245,39.21315633873724],[-76.58083069861827,39.21316181002384],[-76.5808302424887,39.21316728784736],[-76.58082982917446,39.21317277032772],[-76.58082946214383,39.2131782583781],[-76.58082914372864,39.2131837493045],[-76.58082888087087,39.21318924403243],[-76.58082867474974,39.21319473896304],[-76.58082853346518,39.21320023502604],[-76.58082845702782,39.21320573041985],[-76.58082845355351,39.21321122337196],[-76.58082852420024,39.21321671388646],[-76.58082867592066,39.21322220108745],[-76.58082890873067,39.21322768227263],[-76.58082921333539,39.21323316281347],[-76.58082958163476,39.21323864178026],[-76.58083000552372,39.21324411914402],[-76.58083048035991,39.21324959668981],[-76.58083100036463,39.21325507259535],[-76.58083155974305,39.21326054774068],[-76.58083215038995,39.21326602209702],[-76.58083276883174,39.21327149565178],[-76.58083340812097,39.21327696838021],[-76.58083406130498,39.21328244115828],[-76.58083472376289,39.2132879121679],[-76.58083538853671,39.21329338318579],[-76.58083605100009,39.21329885329463],[-76.58083670420051,39.21330432337037],[-76.58083734235368,39.21330979249154],[-76.58083796661226,39.21331526156312],[-76.58083858622342,39.21332073332038],[-76.58083920583468,39.21332620507763],[-76.58083982776179,39.21333167684318],[-76.5808404589575,39.21333714774102],[-76.58084110404803,39.21334261868849],[-76.58084176535975,39.2133480878923],[-76.58084244868752,39.21335355447243],[-76.58084315982084,39.21335901844949],[-76.5808439010754,39.2133644798318],[-76.58084467825142,39.21336993683854],[-76.58084549713827,39.21337538949026],[-76.58084635889924,39.21338083689049],[-76.58084727163428,39.21338627996886],[-76.58084822956454,39.21339171690317],[-76.58084922108452,39.21339715215589],[-76.58085024619955,39.21340258482624],[-76.58085130143597,39.21340801490182],[-76.58085238795158,39.21341344238675],[-76.58085350344133,39.21341886547123],[-76.58085464904717,39.21342428686173],[-76.58085582246923,39.21342970384769],[-76.58085702370226,39.21343511732979],[-76.5808582504304,39.21344052729981],[-76.58085950381684,39.21344593286114],[-76.58086078154057,39.21345133490623],[-76.5808620836016,39.21345673343511],[-76.5808634088526,39.21346212664213],[-76.5808647561304,39.21346751542389],[-76.58086613818247,39.21347289802432],[-76.58086757007213,39.21347827269577],[-76.58086904832037,39.21348364032645],[-76.58087056596916,39.21348900269317],[-76.58087211607653,39.21349435887033],[-76.58087369399483,39.21349971154368],[-76.58087529161891,39.21350506068423],[-76.58087690314866,39.21351040807288],[-76.58087852278916,39.21351575458965],[-76.58088014358783,39.21352110111057],[-76.5808817597552,39.21352644761487],[-76.58088336549108,39.21353179588348],[-76.58088495267958,39.21353714768895],[-76.58088651668913,39.21354250301469],[-76.580888050567,39.21354786273672],[-76.58088954271301,39.21355323041671],[-76.58089098616908,39.21355860783135],[-76.58089239137223,39.21356399231557],[-76.58089376874887,39.2135693830059],[-76.58089512989916,39.21357477634056],[-76.58089648525488,39.21358017055531],[-76.58089784524776,39.21358556388578],[-76.58089921915683,39.21359095366283],[-76.58090061972963,39.21359633813042],[-76.58090205739795,39.21360171552418],[-76.58090354144613,39.21360708227417],[-76.5809050834586,39.21361243752102],[-76.58090669387761,39.21361777769885],[-76.5809083842822,39.21362310284903],[-76.58091016396214,39.21362840850082],[-76.58091204449644,39.21363369469559],[-76.58091401777978,39.2136389614044],[-76.58091607336995,39.21364421219301],[-76.58091819967721,39.21364944882161],[-76.58092038859641,39.2136546712613],[-76.58092262736403,39.21365988397034],[-76.58092490555896,39.21366508691158],[-76.58092721390217,39.21367028275412],[-76.58092954079865,39.213675474159],[-76.58093187582737,39.21368066108898],[-76.58093420854594,39.21368584710986],[-76.5809365285226,39.21369103398597],[-76.58093885198932,39.2136962181721],[-76.58094119168814,39.21370139881308],[-76.58094354530876,39.21370657499977],[-76.5809459139983,39.21371174853789],[-76.58094737966776,39.2137149326287],[-76.58094829429378,39.21371691761345],[-76.58095068734248,39.21372208403223],[-76.58095309199172,39.21372724688919],[-76.58095550707837,39.21373240708105],[-76.58095793144456,39.21373756460366],[-76.58096036393228,39.21374271945282],[-76.58096280453633,39.21374787252935],[-76.58096525209878,39.21375302382914],[-76.5809677066249,39.21375817245139],[-76.58097016463037,39.2137633201852],[-76.58097262843637,39.21376846613814],[-76.58097509456387,39.21377361119846],[-76.58097758505009,39.21377874913948],[-76.58098012077457,39.21378387373029],[-76.58098269128955,39.21378898943743],[-76.58098528732657,39.21379409712859],[-76.58098789728,39.21379920126628],[-76.58099051303397,39.21380430362303],[-76.58099312415139,39.21380940686394],[-76.5809957201899,39.21381451455487],[-76.58099829187569,39.21381962846423],[-76.58100082992422,39.21382475216201],[-76.58100332274054,39.21382988830917],[-76.58100576220876,39.21383503867828],[-76.58100813672318,39.21384020773179],[-76.58101044976824,39.21384539368066],[-76.58101271526522,39.21385059207062],[-76.58101494133015,39.2138558011291],[-76.58101713259454,39.21386102087266],[-76.58101929371132,39.2138662477148],[-76.58102143163313,39.21387148077952],[-76.58102355215485,39.21387671918676],[-76.58102566107662,39.21388196115564],[-76.58102776188275,39.21388720489711],[-76.58102986268388,39.21389244953927],[-76.58103196696966,39.21389769239223],[-76.58103408169278,39.21390293258011],[-76.58103621265346,39.213908168322],[-76.58103836448858,39.21391339873367],[-76.58104054415622,39.21391862203841],[-76.58104275629854,39.21392383645126],[-76.58104500439467,39.21392904108379],[-76.58104726524404,39.21393424305948],[-76.58104952956741,39.21393944504749],[-76.5810517996806,39.21394464705617],[-76.58105408138914,39.21394984640381],[-76.58105637701941,39.21395504129721],[-76.58105869004515,39.21396023174879],[-76.5810610251033,39.21396541687423],[-76.58106338568878,39.21397059308297],[-76.58106577527,39.2139757612881],[-76.58106819733136,39.21398091970057],[-76.58107065536252,39.21398606563042],[-76.58107315398968,39.21399119999502],[-76.58107569554471,39.21399632010029],[-76.5810782846645,39.21400142506202],[-76.58108089812727,39.21400652560671],[-76.58108352896426,39.21401162531255],[-76.58108618413884,39.21401672150208],[-76.58108886715134,39.21402180968387],[-76.58109158495986,39.21402688808125],[-76.58109434338041,39.21403195221102],[-76.58109714705527,39.21403700028821],[-76.58110000295315,39.21404202873455],[-76.58110291687957,39.21404703486844],[-76.5811058934926,39.21405201420259],[-76.58110893859252,39.21405696495611],[-76.58111205915324,39.21406188265004],[-76.5811152598171,39.21406676549933],[-76.58111857772208,39.21407159922407],[-76.58112207668044,39.21407636243327],[-76.58112572535447,39.21408106762602],[-76.581129491259,39.21408572549566],[-76.58113334305094,39.2140903494421],[-76.58113724708198,39.21409495105534],[-76.58114116968785,39.21409954462769],[-76.5811450795466,39.21410413995596],[-76.58114894183609,39.2141087513284],[-76.5811527252238,39.21411339034325],[-76.58115639721389,39.21411806949554],[-76.58115992298963,39.21412280217271],[-76.5811632723815,39.21412759907647],[-76.58116603576677,39.21413260827442],[-76.58116792188926,39.21413793411858],[-76.58116943324319,39.21414338833752],[-76.58117107811788,39.21414878177989],[-76.58117336481334,39.21415392349271],[-76.58117675408644,39.21415863406337],[-76.58118108585931,39.21416296156266],[-76.58118582385106,39.21416712927174],[-76.58119042597512,39.21417136315355],[-76.5811945414812,39.21417584211249],[-76.58119846399957,39.21418045189654],[-76.58120252495749,39.21418495227923],[-76.58120705114527,39.21418910391827],[-76.58121230881251,39.21419272310364],[-76.58121806430628,39.21419596393579],[-76.58122392827212,39.21419907183911],[-76.5812297352992,39.21420221376866],[-76.58123560634633,39.21420529917715],[-76.5812416140217,39.21420818960343],[-76.58124783092836,39.21421074748698],[-76.58125421704928,39.21421308258037],[-76.58126071403757,39.21421527124173],[-76.58126731047885,39.21421728550605],[-76.58127399034286,39.2142190946896],[-76.58128074107326,39.21422066812097],[-76.58128754839254,39.21422207060549],[-76.58129440268169,39.21422336246113],[-76.58130129458178,39.21422455986855],[-76.58130821590775,39.21422567631025],[-76.58131515845865,39.21422672797105],[-76.58132211172833,39.21422772922595],[-76.58132906983163,39.21422869626799],[-76.58133602226768,39.21422964257142],[-76.58134297831046,39.21423056636782],[-76.58134994261272,39.21423146407057],[-76.58135691285871,39.21423233567149],[-76.58136389021163,39.21423318027392],[-76.58137087351354,39.21423399787372],[-76.58137786161714,39.21423478666524],[-76.58138485451185,39.21423554845],[-76.58139185105036,39.21423628142234],[-76.5813988512379,39.21423698468148],[-76.58140585506929,39.21423765912829],[-76.58141286367041,39.21423831017131],[-76.58141987698296,39.21423894771904],[-76.58142689735462,39.21423956637508],[-76.58143392135403,39.21424015892104],[-76.58144095016041,39.21424072175792],[-76.581447981511,39.21424124586987],[-76.58145501774283,39.21424172766213],[-76.58146205542998,39.21424215901539],[-76.58146909459894,39.21424253542588],[-76.58147613529222,39.21424284968754],[-76.58148317644205,39.21424308648317],[-76.58149022538872,39.21424317918125],[-76.58149727973677,39.21424314128491],[-76.5815043381053,39.21424301062202],[-76.58151139914527,39.21424281961591],[-76.5815184626496,39.21424260339626],[-76.5815255249323,39.21424239798129],[-76.5815325846391,39.21424223669494],[-76.58153964764438,39.21424210514566],[-76.58154672522924,39.21424185744726],[-76.58155381006405,39.21424155842971],[-76.58156089004427,39.21424129722723],[-76.58156795537586,39.21424116388305],[-76.58157499281236,39.21424124482481],[-76.58158199371779,39.21424163009989],[-76.58158895455486,39.21424233050507],[-76.58159588860185,39.214243254208],[-76.58160279964046,39.21424434897689],[-76.5816096972259,39.21424556530285],[-76.58161658513963,39.21424685095408],[-76.58162347293687,39.21424815642162],[-76.58163036324655,39.21424942856882],[-76.58163726562906,39.21425061698606],[-76.58164417243648,39.2142518405491],[-76.5816510749851,39.21425319741213],[-76.58165798635035,39.21425443360153],[-76.58166492079744,39.21425528974324],[-76.58167189140163,39.21425551186358],[-76.58167889357885,39.21425509183915],[-76.58168591868895,39.21425431698836],[-76.58169295566971,39.21425349263654],[-76.58169999693837,39.21425292322055],[-76.58170704021626,39.2142526024269],[-76.58171409009668,39.2142523402071],[-76.58172114433812,39.2142521239423],[-76.5817282018463,39.21425194281914],[-76.58173525921652,39.21425178511537],[-76.58174231652305,39.21425163822035],[-76.58174937508299,39.21425147511529],[-76.58175644100409,39.21425124177513],[-76.58176351046784,39.21425099673701],[-76.58177057726029,39.21425081204129],[-76.58177763632547,39.21425075973243],[-76.58178467913892,39.21425091094167],[-76.58179170310913,39.21425131250054],[-76.58179871705762,39.21425184283492],[-76.58180572354951,39.21425245961727],[-76.58181272499618,39.21425314664216],[-76.5818197226669,39.2142538849977],[-76.58182671782039,39.21425465757354],[-76.58183371287855,39.21425544636265],[-76.5818407079422,39.21425623425061],[-76.58184770543845,39.21425700232959],[-76.58185470778403,39.21425773349345],[-76.5818617139269,39.21425840972279],[-76.58186872859967,39.21425901391961],[-76.58187575194002,39.21425952266409],[-76.58188278871751,39.21425991255293],[-76.58188983530994,39.21426020879511],[-76.5818968892317,39.21426044020674],[-76.58190394800788,39.21426063380245],[-76.5819110079897,39.21426081929498],[-76.58191806553378,39.21426102549642],[-76.58192511816526,39.21426127942128],[-76.5819321671268,39.21426156666151],[-76.58193921487748,39.21426186290484],[-76.58194626375965,39.2142621636557],[-76.58195331146801,39.21426246710431],[-76.58196035917116,39.21426277145324],[-76.58196740804291,39.21426307400431],[-76.58197445578328,39.21426337204709],[-76.58198150472401,39.21426366288741],[-76.58198855371789,39.21426394471974],[-76.5819956039439,39.21426421394505],[-76.58200265541277,39.21426446876188],[-76.58200970700358,39.21426470286079],[-76.58201675984778,39.21426492074963],[-76.58202381391888,39.2142651269323],[-76.58203086804298,39.21426532410696],[-76.58203792218308,39.21426551857885],[-76.58204497631792,39.21426571395111],[-76.58205203042094,39.21426591472748],[-76.58205908446574,39.21426612541185],[-76.5820661372784,39.21426634870232],[-76.58207319006998,39.21426657559541],[-76.58208024284563,39.21426680519038],[-76.58208729445285,39.21426703658235],[-76.5820943472074,39.21426726977948],[-76.58210139995144,39.21426750477777],[-76.58210845152699,39.21426774157298],[-76.58211550425517,39.21426797927269],[-76.5821225558096,39.21426821967015],[-76.5821296073588,39.21426846096794],[-76.58213665889743,39.2142687040668],[-76.58214371158876,39.21426894807014],[-76.58215076310627,39.21426919477124],[-76.58215781460265,39.21426944507495],[-76.58216486492,39.21426969897717],[-76.58217191637938,39.21426995558534],[-76.58217896667031,39.2142702139905],[-76.5821860181086,39.2142704742009],[-76.58219306838367,39.21427073530752],[-76.58220011982206,39.21427099551703],[-76.58220717010262,39.21427125572207],[-76.582214221557,39.21427151322848],[-76.58222127302734,39.21427176803221],[-76.58222832335574,39.21427202012905],[-76.58223537487386,39.21427226682507],[-76.58224242641323,39.21427250991756],[-76.58224947915298,39.21427274580774],[-76.58225653192983,39.2142729753921],[-76.5822635847597,39.21427319596843],[-76.58227063763735,39.21427340843744],[-76.58227769172058,39.21427361280334],[-76.5822847458463,39.21427380996267],[-76.58229180000912,39.21427400081628],[-76.58229885536697,39.21427418536823],[-76.58230591075665,39.21427436451518],[-76.5823129650149,39.21427453915379],[-76.58232002046293,39.21427470839154],[-76.58232707961783,39.21427483800768],[-76.58233414132168,39.21427492799811],[-76.58234120545788,39.21427499817959],[-76.5823482696153,39.21427506475755],[-76.58235533135624,39.2142751484414],[-76.58236238941691,39.21427526724214],[-76.58236944253869,39.21427543827021],[-76.58237648828933,39.21427568133404],[-76.58238352539428,39.21427601624637],[-76.58239054773574,39.21427649883386],[-76.58239755761889,39.21427713090619],[-76.58240455529807,39.21427786922683],[-76.58241154680645,39.21427867238133],[-76.58241853355094,39.21427949803802],[-76.58242551924364,39.21428030567489],[-76.58243249898808,39.21428114031363],[-76.58243946659215,39.2142820703915],[-76.58244642932112,39.21428304188758],[-76.58245339099302,39.21428399626462],[-76.58246036118886,39.2142848795099],[-76.58246734372129,39.21428563398697],[-76.582474347024,39.21428620387739],[-76.5824813785263,39.21428650723659],[-76.58248843466438,39.21428655936515],[-76.58249550789755,39.21428646112363],[-76.58250258489568,39.21428631335213],[-76.58250965811291,39.21428621781208],[-76.58251671537715,39.2142862753476],[-76.5825237468267,39.21428658771189],[-76.58253075244573,39.21428715760719],[-76.58253773962136,39.21428791029503],[-76.58254471450856,39.21428878364338],[-76.58255168325684,39.21428971642104],[-76.58255865318971,39.21429064469854],[-76.58256563045677,39.21429150724474],[-76.58257261506326,39.21429230315885],[-76.58257959968573,39.21429309637025],[-76.5825865843137,39.21429388868045],[-76.58259356894709,39.21429468008949],[-76.58260055474915,39.21429546970074],[-76.58260754056198,39.21429625751001],[-76.58261452638553,39.21429704351733],[-76.58262151338832,39.21429782592531],[-76.58262850040182,39.21429860653138],[-76.58263548743673,39.21429938353396],[-76.58264247680872,39.21430015694131],[-76.58264946862377,39.2143009087382],[-76.58265646402383,39.21430164163103],[-76.58266346177692,39.2143023682263],[-76.58267045600348,39.21430310381648],[-76.58267744778202,39.21430386191702],[-76.58268443240686,39.21430465512218],[-76.58269141342575,39.21430547083362],[-76.58269838963325,39.21430631715408],[-76.58270535398124,39.21430721117333],[-76.58271230405873,39.21430816909691],[-76.58271923280711,39.21430920981605],[-76.58272614491092,39.21431032433965],[-76.58273304398156,39.21431148926023],[-76.5827399359356,39.21431268298009],[-76.58274682082605,39.21431389649157],[-76.5827536843186,39.21431520450863],[-76.58276053714677,39.21431655392325],[-76.58276739596057,39.21431787002987],[-76.58277427740465,39.2143190790236],[-76.58278119698167,39.2143201043932],[-76.58278818331222,39.2143208048178],[-76.58279522447847,39.21432123790495],[-76.5828022834738,39.21432159268717],[-76.5828093233182,39.21432205369301],[-76.58281633673624,39.21432267674504],[-76.58282333812552,39.21432337632031],[-76.58283240414521,39.21432446426514],[-76.5828779633478,39.2143597008255],[-76.5829025284676,39.21434282373344],[-76.58290824197313,39.21434948279665],[-76.5829412403495,39.21433279691028],[-76.58295656786787,39.21433536906632],[-76.58296665954418,39.21433689842537],[-76.58297512167844,39.21433789233345],[-76.58300230235179,39.21434056966041],[-76.583044130543,39.2143476452948],[-76.58310243023092,39.21436006791757],[-76.58313536538742,39.21436321875],[-76.58314494942542,39.21436601188758],[-76.5831648368948,39.21438653746511],[-76.58321840106069,39.21436634124475],[-76.58330078724433,39.21433510919287],[-76.5833142409161,39.21433161869799],[-76.5833273135536,39.21432754854723],[-76.5833393210568,39.21432187122306],[-76.583350879795,39.21431551401626],[-76.5833625627451,39.21430930047351],[-76.58337459270774,39.21430354395674],[-76.58338665384213,39.21429780286269],[-76.58339879886249,39.21429217105968],[-76.58341108503032,39.21428675684467],[-76.58342357077022,39.21428166761802],[-76.58343629635023,39.21427694766082],[-76.58344923324537,39.21427252480929],[-76.58346234100311,39.2142683863088],[-76.58347557917058,39.21426451940479],[-76.58348890961099,39.21426091135092],[-76.58350233929829,39.21425755766803],[-76.58351588912255,39.21425445032318],[-76.58352953372605,39.21425156940916],[-76.58354324427751,39.21424889500646],[-76.58355699772443,39.21424640901757],[-76.58357079529354,39.21424409973675],[-76.58358468530015,39.21424202138217],[-76.58359864645313,39.2142402504448],[-76.58361265514019,39.21423886430784],[-76.583626693597,39.21423793046686],[-76.58364077949332,39.21423739764005],[-76.58365490068395,39.21423716489685],[-76.58366904152864,39.21423713489735],[-76.58368317942379,39.21423721297948],[-76.58369729864465,39.21423731621544],[-76.58371140870119,39.21423858773012],[-76.5837256150633,39.21423824538525],[-76.58373905463885,39.21423497998693],[-76.58374791281419,39.2142264864177],[-76.58375261025418,39.2142160657314],[-76.58375108214798,39.21420513834207],[-76.58374222715777,39.21419610002329],[-76.5837339386727,39.2141878050561],[-76.58374406454604,39.21418073381318],[-76.58375806013815,39.21417999887704],[-76.58377253984582,39.21417983945388],[-76.58378644745945,39.21417811244251],[-76.58379953452081,39.21417433774648],[-76.58381230269855,39.21416965212929],[-76.58382493321719,39.21416454806013],[-76.58383760382793,39.21415951799582],[-76.5838504810779,39.21415499039797],[-76.58386352550151,39.21415078406951],[-76.58387658365488,39.21414660571252],[-76.58388951918793,39.21414220893027],[-76.5839024402683,39.2141377094063],[-76.58391504439307,39.21413276016819],[-76.58392700955962,39.21412698264706],[-76.58393872432718,39.21412085833704],[-76.58395026443138,39.21411450460822],[-76.58396164690829,39.21410797827023],[-76.58397289227308,39.21410133524432],[-76.58398363790654,39.21409421213104],[-76.58399399786092,39.21408670842068],[-76.5840048365892,39.21407970363777],[-76.58401648902638,39.21407354306775],[-76.58402850626993,39.21406776752239],[-76.58404060756371,39.21406207334406],[-76.5840525109885,39.21405615777176],[-76.58406400946131,39.21404979127321],[-76.58407524798642,39.21404312659445],[-76.58408646348326,39.21403643931349],[-76.5840978928817,39.21403000320665],[-76.58410973051205,39.21402405046336],[-76.58412189816967,39.21401848982737],[-76.58413422682429,39.21401311892472],[-76.58414654974554,39.21400773809181],[-76.58415874388687,39.21400220186695],[-76.58417092537906,39.21399665028274],[-76.58418309998511,39.2139910878635],[-76.58419524815268,39.21398549202038],[-76.58420734919234,39.21397983655747],[-76.58421939046201,39.21397410521597],[-76.58423147787191,39.21396840376246],[-76.58424357686945,39.21396270054717],[-76.58425558038657,39.21395688979946],[-76.584267380192,39.2139508666453],[-76.58427886920705,39.21394452711554],[-76.58428993233736,39.21393775189952],[-76.58430061333536,39.21393058348906],[-76.58431107335831,39.21392318459567],[-76.58432147008456,39.21391571881935],[-76.5843319623452,39.21390835066484],[-76.58434256279797,39.21390109368869],[-76.5843531068488,39.21389377886182],[-76.58436364975012,39.2138864622283],[-76.58437424906485,39.21387920074132],[-76.58438496580344,39.21387205586998],[-76.58439585752355,39.21386508546818],[-76.5844069542833,39.21385829774925],[-76.58441823890384,39.21385166022418],[-76.5844297375796,39.21384524775056],[-76.58444147881524,39.21383913609487],[-76.58445349109996,39.21383340372583],[-76.58446580320215,39.21382808137183],[-76.58447836008551,39.21382307605738],[-76.58449107555589,39.21381827668121],[-76.58450385880316,39.21381356942332],[-76.58451662480674,39.21380884048421],[-76.5845293206614,39.21380402842353],[-76.58454210834549,39.2137993536053],[-76.58455487418058,39.21379465258564],[-76.58456744362536,39.21378967523039],[-76.58457956399126,39.21378407024116],[-76.58459138689851,39.21377804713608],[-76.5846033707559,39.21377222187059],[-76.58461532078586,39.21376624064907],[-76.5846273557292,39.21376039124089],[-76.58463975939986,39.21375524664657],[-76.58465279521756,39.21375130322795],[-76.58466641767819,39.21374842210349],[-76.58468033639897,39.21374616356486],[-76.58469425750741,39.21374409059393],[-76.58470829942843,39.21374155504744],[-76.58472243618375,39.21373943509496],[-76.58473623025847,39.21373948210804],[-76.58474951301758,39.21374261428663],[-76.58476254554819,39.21374754894188],[-76.58477549511576,39.21375281028563],[-76.58478852781626,39.21375692432708],[-76.58480182672413,39.2137582856214],[-76.5848154954737,39.21375580459021],[-76.58482920669634,39.21375160411669],[-76.58484260624095,39.2137478331123],[-76.58485573293093,39.2137437927083],[-76.58486879910902,39.21373960526147],[-76.58488201519079,39.21373572280748],[-76.58489542042382,39.21373216620302],[-76.58490873840807,39.21372848047674],[-76.58492167782717,39.21372418718428],[-76.58493385443302,39.21371866072538],[-76.58494557790446,39.21371240753379],[-76.58495758907974,39.21370665619285],[-76.58497050496017,39.2137024267672],[-76.58498410303544,39.21369935545486],[-76.5849978257151,39.21369655931981],[-76.58501182533655,39.21369432354751],[-76.58502520007076,39.21369122802028],[-76.58503560117758,39.21368358834537],[-76.58504746100316,39.21367817335209],[-76.58506087370135,39.21367511939097],[-76.58507463987884,39.21367260624601],[-76.58508858052977,39.2136703549428],[-76.5851025143324,39.21366808649888],[-76.58511628519122,39.21366556435778],[-76.58513004891225,39.21366307461793],[-76.58514381381126,39.21366058127752],[-76.58515750338248,39.21365790030674],[-76.5851710422883,39.21365484587839],[-76.58518433810686,39.2136511834628],[-76.58519746502263,39.21364709798236],[-76.58521058052096,39.21364298453589],[-76.58522384094547,39.21363923551574],[-76.5852373277916,39.21363597371611],[-76.58525091719491,39.21363279695085],[-76.58526459662966,39.2136298673162],[-76.58527836381222,39.21362737757121],[-76.5852922141489,39.21362551956594],[-76.58530617677741,39.21362445914713],[-76.58532027300862,39.21362411622042],[-76.58533444382614,39.21362428610001],[-76.58534862789766,39.21362476409178],[-76.58536276273814,39.21362534459698],[-76.58537684262114,39.21362601678594],[-76.58539091079494,39.21362690962319],[-76.58540496874352,39.21362796726552],[-76.58541901562991,39.21362913476239],[-76.58543305409073,39.21363035717548],[-76.58544708445196,39.21363157865747],[-76.58546112418205,39.21363278215525],[-76.58547516379168,39.21363400636889],[-76.58548919376003,39.21363529540298],[-76.58550319994006,39.21363669244518],[-76.5855171716478,39.21363824249663],[-76.58553109474155,39.21363998784425],[-76.58554496415344,39.21364200323488],[-76.5855587775363,39.21364429406498],[-76.58557253284259,39.21364681438751],[-76.58558622918258,39.21364951825952],[-76.58559986449819,39.21365236153544],[-76.58561343045817,39.21365538291952],[-76.58562694106243,39.21365856444558],[-76.5856404198581,39.21366183953895],[-76.58565388922891,39.21366514252171],[-76.58566737271116,39.21366840862073],[-76.58568089386235,39.21367156945983],[-76.58569446917141,39.21367457735579],[-76.58570807379698,39.213677522299],[-76.58572170073381,39.2136804141733],[-76.58573535360266,39.21368322776964],[-76.58574903717171,39.2136859396845],[-76.58576275505645,39.21368852560958],[-76.58577651201459,39.21369096394285],[-76.58579032263629,39.21369333400462],[-76.58580419192619,39.21369557185697],[-76.58581811500883,39.21369752074686],[-76.58583208932438,39.21369902392937],[-76.58584610989742,39.2136999417658],[-76.58586018169751,39.21370041479557],[-76.58587429124165,39.21370057088196],[-76.5858884276411,39.21370049015599],[-76.585902573086,39.21370024822046],[-76.58591671668773,39.21369992520642],[-76.58593084178915,39.21369959762149],[-76.58594495184828,39.21369926818024],[-76.58595906484801,39.21369883155474],[-76.58597317166694,39.21369826339167],[-76.58598726317823,39.21369754023861],[-76.58600133139736,39.21369664134941],[-76.586015386572,39.21369559648594],[-76.58602947314598,39.21369452831129],[-76.58604355460217,39.21369334481694],[-76.58605758293874,39.2136919377398],[-76.58607151364323,39.21369019612687],[-76.58608530218746,39.21368801172743],[-76.5860988973949,39.21368522492271],[-76.58611232563439,39.21368188084494],[-76.58612565278298,39.21367819951697],[-76.58613894820196,39.21367439917246],[-76.58615227893169,39.21367069893772],[-76.58616570865456,39.21366729810986],[-76.58617924579617,39.21366414177089],[-76.58619283210689,39.2136610918959],[-76.58620640694241,39.21365802396325],[-76.58621991195847,39.21365481616182],[-76.58623328535789,39.21365134306512],[-76.58624646306973,39.21364747203252],[-76.58625936154331,39.21364303522428],[-76.58627206201308,39.21363820047208],[-76.58628468579398,39.21363321231538],[-76.58629735534859,39.21362831709909],[-76.58631019082371,39.21362376116006],[-76.58632329980793,39.21361976016409],[-76.58633661038755,39.21361613640376],[-76.5863500595237,39.21361277886072],[-76.58636361617883,39.21360964869196],[-76.58637724699443,39.21360670794702],[-76.58639092093813,39.21360391688214],[-76.58640460921474,39.21360124927318],[-76.58641838258573,39.21359888192259],[-76.58643224120875,39.21359678780753],[-76.58644614420739,39.21359482806351],[-76.58646004837364,39.21359286652046],[-76.58647390935202,39.21359076520248],[-76.58648770922446,39.21358841955589],[-76.58650166862367,39.21358611950892],[-76.58651563443554,39.21358371228989],[-76.58652931792099,39.21358087169959],[-76.58654243496706,39.21357727245587],[-76.58655360523387,39.21357094238999],[-76.58656307135782,39.21356236967991],[-76.58657689817004,39.21355957192574],[-76.58658143794572,39.21356998923758],[-76.58658995254198,39.21357548967734],[-76.58660412628151,39.21357455956034],[-76.58661912173467,39.21357250636007],[-76.58663317280066,39.21357116685289],[-76.58664716926745,39.21356965870564],[-76.58666115901174,39.21356811179944],[-76.5866751607426,39.21356669374548],[-76.58668919084299,39.2135655739483],[-76.58670326239526,39.21356489207494],[-76.58671736880882,39.21356458684916],[-76.58673149480109,39.21356449877883],[-76.58674562739476,39.21356447018159],[-76.58675975246494,39.21356434156952],[-76.58677385703936,39.21356395435939],[-76.58678792712377,39.21356312654422],[-76.58680197248923,39.21356196985528],[-76.58681601577423,39.21356077262217],[-76.58683007848599,39.21355981866667],[-76.5868441790668,39.21355932153876],[-76.58685831138709,39.21355914069501],[-76.58687244896237,39.21355905174772],[-76.58688656761309,39.2135588321189],[-76.58690063969124,39.21355825831746],[-76.58691458127286,39.21355662924048],[-76.58692840851029,39.21355415392603],[-76.58694234003613,39.21355266082823],[-76.58695641937452,39.21355243114401],[-76.58697055688565,39.21355275113924],[-76.58698469776596,39.21355328823287],[-76.58699882764921,39.21355392437195],[-76.58701302872555,39.21355506159411],[-76.58702722134619,39.21355625913714],[-76.58704131131186,39.2135569897126],[-76.5870552020916,39.21355672872641],[-76.58706855837904,39.21355399771792],[-76.5870814482797,39.21354903203087],[-76.58709465022599,39.21354496461818],[-76.58710842571132,39.2135426260191],[-76.58712245617609,39.21354104317003],[-76.58713654209008,39.21354008025164],[-76.58715062352061,39.21353968931168],[-76.58716474541055,39.21353970836773],[-76.5871788838888,39.21353986169681],[-76.58719301394166,39.21353987086957],[-76.58720712742642,39.21353954309027],[-76.58722125455368,39.21353905952217],[-76.58723534871869,39.21353827047168],[-76.58724934860936,39.21353696674199],[-76.58726333982705,39.21353536211925],[-76.58727735494543,39.21353362966804],[-76.58729129865462,39.2135316321344],[-76.58730507911318,39.21352923317743],[-76.58731860216376,39.21352629644819],[-76.58733153733522,39.21352210466373],[-76.58734392957028,39.21351669491428],[-76.58735636785238,39.21351133126527],[-76.58736941488996,39.21350721643638],[-76.58738278294976,39.21350365131038],[-76.5873900891797,39.213501700687],[-76.58739620669711,39.21350006746233],[-76.58740968006518,39.21349651261215],[-76.58741065765281,39.21349626112831],[-76.58742319931865,39.2134930317858],[-76.58743675956431,39.2134896700051],[-76.58745035590896,39.21348647229189],[-76.58746398228598,39.21348348636619],[-76.58747763612843,39.21348075545649],[-76.58749130906438,39.21347832547314],[-76.58750499966408,39.21347624325176],[-76.58751878733753,39.21347479191668],[-76.58753292057919,39.21347484790039],[-76.58754718192337,39.21347617353304],[-76.58756130945272,39.21347840938312],[-76.5875750389337,39.21348119601132],[-76.58758831048209,39.2134846764314],[-76.5876012560708,39.21348925465715],[-76.58761377324196,39.21349462856707],[-76.58762576303727,39.21350049154797],[-76.58763661125265,39.21350732966501],[-76.58764626393653,39.21351546070451],[-76.5876562713659,39.21352332005307],[-76.5876684579628,39.21352998992],[-76.58767607588528,39.21353837233139],[-76.58767727867641,39.21354919133351],[-76.5876766153589,39.21356072890732],[-76.58767778395436,39.2135716540814],[-76.58768431546379,39.21358088391277],[-76.58769511678307,39.21358862264028],[-76.5877067706685,39.2135949077995],[-76.5877197180987,39.21359957249343],[-76.5877290275939,39.21360758431776],[-76.58773786425718,39.21361626376046],[-76.58774716890542,39.21362431339909],[-76.58775173963161,39.21363461547359],[-76.58775706737421,39.21364995016791],[-76.58775748765164,39.21365554369219],[-76.58775764220557,39.2136612335673],[-76.58775827251252,39.21366675036228],[-76.58776012004415,39.21367182554676],[-76.58776355636608,39.21367648114396],[-76.58776814171961,39.21368087324559],[-76.58777349168531,39.21368480052778],[-76.5877792230116,39.21368805986913],[-76.58778541703147,39.21369040384063],[-76.58779250515246,39.21369171865762],[-76.58779977784577,39.2136921558611],[-76.58780674994088,39.21369171554845],[-76.58781372403665,39.21368953403299],[-76.58781835149436,39.21368567512757],[-76.5878205884129,39.21368052060942],[-76.58782203183853,39.21367482193472],[-76.58782401906075,39.21366939630516],[-76.58782779623994,39.21366500115052],[-76.58783257453058,39.21366108962827],[-76.58783772954817,39.21365730824064],[-76.58784319515654,39.21365368017564],[-76.58784890636167,39.21365023132763],[-76.58785479818542,39.21364698488857],[-76.58786080448108,39.21364396584811],[-76.58786686141801,39.2136411992038],[-76.58787306460262,39.21363897083901],[-76.58787999923666,39.21363820070464],[-76.58788729497572,39.21363805788078],[-76.58789444844459,39.21363748938827],[-76.58790115983868,39.21363587984165],[-76.58790779828732,39.21363407006514],[-76.58791440490505,39.21363215838824],[-76.58792098423994,39.21363015923941],[-76.58792753620821,39.21362808703086],[-76.58793406303687,39.21362595708366],[-76.58794056927381,39.21362378382634],[-76.58794705599334,39.21362158167514],[-76.58795352542764,39.21361936505039],[-76.58795998558786,39.21361715019427],[-76.58796646879067,39.21361495523589],[-76.58797296587741,39.21361276212743],[-76.58797945728922,39.21361054918152],[-76.58798592230941,39.21360829470669],[-76.58799234023161,39.21360597520992],[-76.5879986926601,39.21360356810708],[-76.58800495887813,39.21360105170677],[-76.58801111817937,39.21359840251594],[-76.58801715099969,39.21359559974797],[-76.58802310347217,39.21359267509217],[-76.58802901475102,39.21358966561811],[-76.58803487441517,39.21358657128908],[-76.58804067434879,39.21358339387826],[-76.58804640296779,39.2135801342457],[-76.58805205216154,39.21357679326379],[-76.58805761150384,39.21357337179668],[-76.58806307172617,39.21356987071261],[-76.5880684235497,39.21356629268142],[-76.58807365655866,39.21356263676573],[-76.5880787234777,39.21355886856995],[-76.5880834434313,39.21355482982253],[-76.58808788099526,39.21355056669],[-76.58809213530468,39.21354615608677],[-76.58809630664207,39.21354167673282],[-76.58810049182661,39.21353720553432],[-76.58810479114615,39.21353282031043],[-76.58810930257779,39.21352859797152],[-76.58811412296167,39.21352461182063],[-76.58811924653442,39.21352085733368],[-76.58812458916138,39.21351726665665],[-76.58813006551877,39.21351377733625],[-76.58813559145098,39.21351032512158],[-76.58814108396031,39.21350684576596],[-76.58814645773343,39.21350327501444],[-76.5881516286148,39.21349954861629],[-76.58815655972401,39.21349563671628],[-76.58816141481375,39.21349165518917],[-76.5881662146269,39.21348762122255],[-76.58817095335833,39.21348353749845],[-76.58817562521851,39.21347940399647],[-76.58818022672858,39.21347522160528],[-76.58818475208341,39.21347099300679],[-76.5881891978092,39.21346671818891],[-76.58819355810097,39.2134623998335],[-76.58819782717435,39.21345803701956],[-76.5882020420768,39.21345363077791],[-76.58820627811859,39.21344917326573],[-76.58821046935712,39.21344465434309],[-76.58821453710244,39.21344006562679],[-76.58821840381741,39.21343539963857],[-76.58822199082266,39.21343064619373],[-76.58822522174405,39.21342579691724],[-76.58822801789185,39.213420843426],[-76.58823027288608,39.21341576012492],[-76.58823191749855,39.21341050443437],[-76.58823307542039,39.21340511191887],[-76.5882338865273,39.2133996227036],[-76.58823448607883,39.21339407419519],[-76.58823501162426,39.21338850831227],[-76.58823560188631,39.21338296427516],[-76.58823639096143,39.21337748038724],[-76.58823717418953,39.21337200638738],[-76.58823777469475,39.21336649301274],[-76.58823829192556,39.21336096313183],[-76.58823882996703,39.21335543872863],[-76.58823949173069,39.21334994448529],[-76.58824037782796,39.21334450237364],[-76.58824159117557,39.21333913617511],[-76.58824323470066,39.2133338678695],[-76.58824552692636,39.21332875317131],[-76.58824849444241,39.21332379938002],[-76.58825190021476,39.21331894801389],[-76.58825550488838,39.21331414148381],[-76.58825907143458,39.21330932040733],[-76.58826235818798,39.21330442628653],[-76.58826512927257,39.21329940064386],[-76.5882673582136,39.21329421636302],[-76.58826938740806,39.2132889331962],[-76.5882712062992,39.21328357452657],[-76.58827278465127,39.21327816276769],[-76.58827409570738,39.21327271944435],[-76.58827511386352,39.21326726698633],[-76.588275810047,39.21326182691033],[-76.58827608459042,39.21325641417991],[-76.58827558221408,39.21325099421968],[-76.58827449631761,39.21324556230349],[-76.58827311057944,39.21324012032742],[-76.58827171214647,39.21323467110056],[-76.5882705823864,39.21322921561011],[-76.58826998994064,39.2132237529971],[-76.588269915224,39.21321826607794],[-76.58827009648505,39.21321276564443],[-76.58827026615666,39.21320726697178],[-76.58827016151244,39.21320174932107],[-76.5882698070039,39.21319618935772],[-76.58826940044773,39.21319061930316],[-76.58826914080807,39.21318507318433],[-76.5882692270541,39.21317958412755],[-76.58826985699193,39.21317418615573],[-76.58827123305912,39.21316891330797],[-76.58827347786146,39.21316378853405],[-76.58827638318198,39.2131587759729],[-76.58827968411958,39.21315383055671],[-76.5882831169413,39.21314890542031],[-76.58828641791449,39.21314395369857],[-76.58828932214334,39.21313892942305],[-76.5882915658847,39.21313378753018],[-76.58829284844239,39.2131284657119],[-76.58829319877948,39.21312296136753],[-76.58829299971926,39.21311735150575],[-76.58829263754278,39.21311171584986],[-76.58829250084155,39.21310613503187],[-76.58829297590171,39.21310068787423],[-76.58829445132497,39.21309545320752],[-76.58829684265311,39.21309041902526],[-76.58829974971034,39.2130855055554],[-76.58830305919582,39.21308068267468],[-76.58830665662978,39.21307592385875],[-76.58831042523249,39.21307119987294],[-76.5883142505347,39.21306648239131],[-76.58831801806724,39.21306174308823],[-76.58832161336103,39.21305695363773],[-76.58832492079421,39.21305208480935],[-76.588328080273,39.21304717132352],[-76.58833124328243,39.21304224794142],[-76.58833438090664,39.21303730915684],[-76.58833746422454,39.21303235036453],[-76.58834046432541,39.21302736515756],[-76.58834335229868,39.21302234712901],[-76.5883460980705,39.21301729076875],[-76.58834867388296,39.21301219057471],[-76.58835104850964,39.21300704013191],[-76.58835313294983,39.21300181210464],[-76.58835491797178,39.212996501056],[-76.58835648681827,39.2129911288966],[-76.58835791808463,39.21298572022334],[-76.58835929270305,39.21298029603803],[-76.5883606904268,39.21297488094158],[-76.58836219218267,39.21296949683661],[-76.58836387657657,39.21296416651836],[-76.58836582453002,39.21295891279019],[-76.58836811695934,39.2129537593563],[-76.58837085675454,39.21294873450171],[-76.58837401155226,39.2129438282044],[-76.58837746690419,39.21293900853543],[-76.58838111067286,39.21293424447492],[-76.58838482609941,39.21292950318522],[-76.58838849989381,39.21292475274146],[-76.58839201876579,39.21291996121909],[-76.5883952682673,39.21291509668929],[-76.58839813511345,39.21291012632655],[-76.58840050946688,39.21290502182147],[-76.58840240980689,39.21289979134595],[-76.58840393555526,39.21289446227215],[-76.58840517457556,39.21288905832856],[-76.58840622053148,39.21288360146247],[-76.5884071624445,39.21287811540643],[-76.58840809282033,39.21287262210365],[-76.58840910183307,39.21286714619155],[-76.5884102808356,39.21286170870845],[-76.58841172115999,39.21285633429579],[-76.5884133630607,39.21285094257453],[-76.58841517421087,39.21284551721718],[-76.58841732398959,39.21284020204199],[-76.58841997714435,39.21283514085106],[-76.58842332156999,39.21283047932906],[-76.58842794913276,39.21282638709705],[-76.58843360626086,39.21282286236483],[-76.58843967030955,39.21281985160394],[-76.58844585435298,39.21281731417366],[-76.58845236260717,39.21281517692611],[-76.58845906379881,39.21281331419229],[-76.5884658185703,39.21281159667172],[-76.58847254750263,39.21280994211487],[-76.58847931527555,39.21280837867272],[-76.58848611391437,39.21280688379775],[-76.58849293313911,39.21280543313286],[-76.58849975920646,39.21280400050724],[-76.58850658184686,39.21280255976212],[-76.58851338731182,39.21280108562752],[-76.58852016648439,39.21279955284954],[-76.58852690561605,39.21279793615811],[-76.58853359212667,39.21279620848571],[-76.58854022378387,39.21279435541202],[-76.58854684193756,39.21279243473204],[-76.58855344770899,39.21279045275516],[-76.58856002724015,39.21278840312733],[-76.5885665678516,39.2127862758955],[-76.5885730556957,39.21278406290409],[-76.58857947925107,39.21278175420411],[-76.58858582235418,39.21277934163189],[-76.58859207463101,39.21277681704407],[-76.5885982222391,39.21277417138426],[-76.58860426880351,39.21277137854256],[-76.58861022481288,39.21276842684565],[-76.5886121818855,39.21276739150299],[-76.58911731063931,39.21324259015762],[-76.58911192676203,39.21324571773399],[-76.58909997613087,39.21325208404404],[-76.58908832053685,39.21325869009291],[-76.58907778609142,39.21326604681405],[-76.58906835660503,39.21327415054796],[-76.5890592948529,39.21328253751327],[-76.58905052476845,39.21329114619066],[-76.58904197028528,39.21329991506063],[-76.58903355881064,39.21330878261592],[-76.58902521312004,39.21331768733303],[-76.58901686061557,39.21332656860533],[-76.589008500181,39.21333541922274],[-76.58900032322386,39.21334437857584],[-76.58899228588501,39.21335342218998],[-76.58898431893587,39.21336250748604],[-76.58897635776378,39.21337159460334],[-76.58896833313483,39.21338064186344],[-76.58896017929402,39.21338960669938],[-76.58895182931812,39.2133984483414],[-76.58894321512072,39.21340712691678],[-76.58893423863522,39.21341558082874],[-76.58892482714876,39.21342376928734],[-76.58891509143345,39.2134317593383],[-76.58890515610923,39.213439626183],[-76.58889514464845,39.2134474432172],[-76.58888517820264,39.21345528472927],[-76.58887538139687,39.21346322501996],[-76.58886587653538,39.21347133928261],[-76.58885678593796,39.2134797000083],[-76.58884823538776,39.2134883815019],[-76.58884010250758,39.21349732118085],[-76.58883202031208,39.21350630607586],[-76.58882398188511,39.21351533075803],[-76.58881598954775,39.21352439433469],[-76.58880804677882,39.21353349591726],[-76.5888001547467,39.21354263370836],[-76.58879231577244,39.21355180681525],[-76.58878453218225,39.21356101344457],[-76.58877680630238,39.21357025180296],[-76.58876913928543,39.21357952279516],[-76.58876153462607,39.21358882283037],[-76.58875399348226,39.21359815191268],[-76.58874651818014,39.21360750824869],[-76.58873911220385,39.21361689004897],[-76.5887317755483,39.21362629821441],[-76.58872451170794,39.21363572915406],[-76.5887173230039,39.2136451819753],[-76.58871021175199,39.21365465668634],[-76.58870317912577,39.21366415058889],[-76.58869622744103,39.21367366369107],[-76.58868936018717,39.21368319330288],[-76.5886825785222,39.21369273942827],[-76.58867695135379,39.21370267693573],[-76.58867302529949,39.2137131924015],[-76.58867018099856,39.21372406386426],[-76.58866780256363,39.21373506937462],[-76.58866527295949,39.21374598517773],[-76.58866233560701,39.21375672840315],[-76.58865943413811,39.21376747355581],[-76.58865657893213,39.21377822787831],[-76.58865376536285,39.21378899045374],[-76.58865098881421,39.21379975856349],[-76.58864824349682,39.21381053218735],[-76.5886455259421,39.21382131041229],[-76.58864283036587,39.21383209231734],[-76.58864015214684,39.21384287608469],[-76.58863748549042,39.21385366259482],[-76.58863482694372,39.21386444823253],[-76.58863217070676,39.21387523477901],[-76.58863007980165,39.21388617553914],[-76.58862866638344,39.21389729883039],[-76.58862714784608,39.21390837851556],[-76.5886247380884,39.21391919204849],[-76.58862065449307,39.21392951509339],[-76.58861486567079,39.21393936915879],[-76.58860863368284,39.21394916762341],[-76.58860203036608,39.21395890263202],[-76.58859507668787,39.21396855263929],[-76.5885877947996,39.2139780916002],[-76.58858020683708,39.213987496172],[-76.58857233493083,39.21399674391272],[-76.58856420006397,39.21400581057473],[-76.58855582553552,39.21401467191865],[-76.5885472323234,39.21402330459764],[-76.58853819309799,39.21403157359829],[-76.58852819165342,39.21403923930425],[-76.58851742312247,39.21404639788233],[-76.58850611611274,39.21405316363234],[-76.58849450154763,39.21405965086226],[-76.58848280804538,39.21406597207053],[-76.58847121102308,39.21407222875979],[-76.58845954497852,39.21407840683791],[-76.5884477718052,39.21408448815559],[-76.58843589502912,39.21409046371738],[-76.58842391817622,39.21409632452787],[-76.58841184478804,39.21410205888917],[-76.58839967722759,39.21410765870259],[-76.58838741903111,39.21411311317117],[-76.58837507372469,39.21411841329936],[-76.58836259430929,39.21412347695128],[-76.58834974307733,39.2141279618971],[-76.58833661294216,39.21413201979381],[-76.58832335308475,39.21413588356606],[-76.58831011038038,39.21413978432904],[-76.58829703286223,39.21414395320195],[-76.5882842570259,39.21414861405736],[-76.58827171450771,39.21415377476253],[-76.5882593216159,39.21415929089893],[-76.58824702474334,39.21416502175682],[-76.58823477258842,39.2141708284359],[-76.58822250920767,39.2141765738212],[-76.58821018446785,39.21418211721503],[-76.58819774358878,39.21418732060564],[-76.5881851341164,39.21419204418793],[-76.58817230358653,39.21419614995824],[-76.58815919838739,39.2141994981074],[-76.58814574579762,39.2142018496731],[-76.58813196647208,39.21420323715587],[-76.58811792980543,39.21420387428424],[-76.58810370636076,39.21420397298917],[-76.58808936437448,39.21420374699525],[-76.58807497671992,39.2142034091424],[-76.58806061164884,39.21420317045297],[-76.58804633970271,39.2142032464612],[-76.5880321811885,39.21420392909134],[-76.58801777819083,39.21420583682409],[-76.58800328092704,39.21420822524102],[-76.58798898022604,39.2142100639692],[-76.5879751680649,39.21421032444159],[-76.58796212698583,39.21420800778368],[-76.58794966753328,39.21420383575672],[-76.58793752742066,39.21419870912138],[-76.58792562660403,39.21419285279188],[-76.58791388157596,39.21418648986865],[-76.58790221229211,39.21417984526581],[-76.58789053525012,39.21417314118307],[-76.58787876924754,39.21416660253036],[-76.58786683308702,39.21416045331693],[-76.5878546455712,39.21415491755196],[-76.58784198499572,39.21415048718374],[-76.58782824006822,39.21414834279023],[-76.587813923417,39.21414734488244],[-76.58779971404407,39.21414601856476],[-76.58778613127362,39.21414306853712],[-76.58777279610918,39.21413935371403],[-76.58775907499823,39.21413669775258],[-76.58774493434898,39.21413450421778],[-76.58773092660878,39.21413375059588],[-76.58771746258246,39.21413587777797],[-76.58770443978253,39.21414058814644],[-76.58769189866608,39.2141458992251],[-76.58767954156086,39.21415122716306],[-76.58766724742738,39.21415667782712],[-76.58765499909047,39.21416221782818],[-76.58764278168572,39.21416781468577],[-76.58763057920099,39.21417343411407],[-76.587618377935,39.21417904273601],[-76.5876061618759,39.21418460626565],[-76.5875939161643,39.21419009132188],[-76.58758162477797,39.21419546542027],[-76.58756927170504,39.21420069427489],[-76.58755684324419,39.21420574450862],[-76.58754429827057,39.21421051959338],[-76.58753042672963,39.21421203188996],[-76.5875160120027,39.21421216858494],[-76.58750194913958,39.21421312802706],[-76.5874878840388,39.21421407394789],[-76.58748700019915,39.21421413209403],[-76.58747381783729,39.21421500995461],[-76.58745975049318,39.21421594325328],[-76.58745350566774,39.21421635907878],[-76.5874456842909,39.21421687925661],[-76.58743161920954,39.21421782156764],[-76.58741755520721,39.21421877739252],[-76.58740349457356,39.21421975124318],[-76.58738943820487,39.21422078816182],[-76.58737541745471,39.21422207201792],[-76.5873614505262,39.21422385779651],[-76.58734935869774,39.21422955865498],[-76.58734004528532,39.21423775723911],[-76.58733258592983,39.21424711534188],[-76.5873269333436,39.21425720222416],[-76.58732260350446,39.21426781981378],[-76.58731800027083,39.21427825898798],[-76.58731058812386,39.21428726324845],[-76.58730029316087,39.21429479720437],[-76.58728923524124,39.21430191141458],[-76.58727851397796,39.21430907725154],[-76.58726809822366,39.21431647386112],[-76.58725859047104,39.21432463572391],[-76.58724918650402,39.21433287091423],[-76.58723911564937,39.2143404939295],[-76.58722757856358,39.21434677142472],[-76.58721543102423,39.21435248918817],[-76.58720388187433,39.21435904858298],[-76.5871948226396,39.21436733902836],[-76.58719066402872,39.2143791723685],[-76.58719223816463,39.21438944410411],[-76.58720307407351,39.21439383389387],[-76.587218382905,39.21439566498509],[-76.5872332269526,39.21439717556311],[-76.58724762177928,39.21439768018865],[-76.5872595960805,39.21439268243719],[-76.58727048830318,39.21438519202155],[-76.58728258581795,39.21437951461164],[-76.58729700616485,39.21437841683197],[-76.58730827905795,39.21438512225451],[-76.58731668053771,39.2143945721655],[-76.58731229423567,39.21440354653174],[-76.58730150598683,39.21441127782538],[-76.58729096455822,39.21441877848541],[-76.58727907739961,39.21442113455661],[-76.58726514705818,39.21441841114413],[-76.5872510876245,39.2144181752323],[-76.58723691339793,39.21441856405685],[-76.58722270658211,39.21441898159001],[-76.58720882757531,39.21441798514807],[-76.58719570488786,39.21441376927231],[-76.58718195498938,39.2144104825959],[-76.58716832665401,39.21441098412858],[-76.5871602940863,39.21442034110435],[-76.58715914274886,39.21443135630464],[-76.58716345269163,39.21444169531525],[-76.5871695444041,39.21445168658705],[-76.58717628362612,39.21446144052878],[-76.58718590556747,39.21447069026524],[-76.58718890815652,39.21448004192393],[-76.58718279278384,39.2144896569632],[-76.58717443710577,39.2144994190552],[-76.5871678357373,39.21450937377986],[-76.58716282821155,39.21451963677365],[-76.58716355232963,39.21453032258035],[-76.58716669969934,39.21454126102363],[-76.58716683626449,39.2145522285092],[-76.58716518607464,39.21456320592295],[-76.58716115735959,39.21457360657634],[-76.58715510582392,39.2145835920594],[-76.58715012600257,39.21459386866162],[-76.58714386455584,39.21460371018144],[-76.58713706011302,39.21461333900785],[-76.58712994491198,39.21462284243275],[-76.58712229979727,39.21463207375854],[-76.5871139212642,39.21464118179874],[-76.58710418412464,39.21464895460499],[-76.58709054064164,39.21465125673603],[-76.58707637280304,39.21465233105792],[-76.58706235670891,39.21465359507598],[-76.58704834096133,39.2146555959322],[-76.58703485836375,39.21465870572247],[-76.58702297232917,39.21466444420319],[-76.58701201052553,39.21467154251106],[-76.58700136762336,39.21467875904177],[-76.58699086289882,39.21468610847253],[-76.58698000353527,39.21469311255598],[-76.58696834153963,39.21469935085217],[-76.58695691120383,39.21470577552337],[-76.58694687471947,39.2147134472762],[-76.58693753984116,39.21472173402866],[-76.58692817521639,39.21472995852178],[-76.58691873221787,39.21473811968364],[-76.58690739931943,39.21474530945579],[-76.58689968937728,39.21475373434003],[-76.58689842215,39.21476455906423],[-76.58689843606575,39.21477590174333],[-76.58689766644345,39.21478717770874],[-76.58689645859374,39.2147983449385],[-76.58689020420991,39.21480676413662],[-76.58687644119149,39.21481169339919],[-76.58686912123703,39.21481975934198],[-76.58687474145438,39.21483456273997],[-76.58687491192812,39.21483730531644],[-76.58687510092852,39.21484004795812],[-76.58687530266602,39.21484279064459],[-76.58687550903525,39.21484553334742],[-76.58687571540446,39.2148482760502],[-76.58687591482621,39.21485101872855],[-76.58687610151082,39.21485376136208],[-76.5868762673477,39.21485650482292],[-76.58687640771568,39.21485924729338],[-76.586876514504,39.21486198964562],[-76.58687658423366,39.21486473276813],[-76.58687661226777,39.21486747754544],[-76.58687666795049,39.21487024674114],[-76.58687675129225,39.21487303855378],[-76.5868768322448,39.21487584296889],[-76.58687688309145,39.21487864727801],[-76.58687687493666,39.21488144237161],[-76.58687677774266,39.21488421643384],[-76.5868765626348,39.21488695675203],[-76.58687620071224,39.21488965511749],[-76.58687566426353,39.21489229792088],[-76.58687491513496,39.21489487511931],[-76.58687357612786,39.21489733674275],[-76.58687159069801,39.21489964926321],[-76.58686916270722,39.21490180168818],[-76.58686649833851,39.21490378213266],[-76.58686379682739,39.21490557868702],[-76.58686104388569,39.21490725885953],[-76.58685817907119,39.21490886207178],[-76.58685521744725,39.21491038657521],[-76.5868521763931,39.21491183062945],[-76.58684907212496,39.2149131933908],[-76.58684592086935,39.21491447221406],[-76.58684273883719,39.21491566715623],[-76.58683952953368,39.21491677282507],[-76.58683626977943,39.21491779274199],[-76.58683296528552,39.21491874043884],[-76.58682962637887,39.21491963216607],[-76.58682626340212,39.21492048147179],[-76.58682288320855,39.21492130459414],[-76.58681949614068,39.21492211508122],[-76.5868161125308,39.21492292828275],[-76.58681273923729,39.21492375953611],[-76.58680938429225,39.21492462148052],[-76.58680600645073,39.21492543830518],[-76.58680259766507,39.21492620007319],[-76.58679918659492,39.21492695642834],[-76.58679580074214,39.21492775701048],[-76.58679246877682,39.21492864966186],[-76.58678921819565,39.21492968492306],[-76.58678605933072,39.21493087814375],[-76.58678294287893,39.21493214537767],[-76.58677986083963,39.21493346858112],[-76.5867768040124,39.21493483691228],[-76.58677376666529,39.21493624044243],[-76.58677074424516,39.21493766564377],[-76.58676772637801,39.21493910437278],[-76.58676470966338,39.21494054400657],[-76.58676168605355,39.21494197460821],[-76.58675864866913,39.21494338444325],[-76.58675559178342,39.21494476268228],[-76.58675250965396,39.21494610119796],[-76.58674942519805,39.21494744150692],[-76.58674634527414,39.21494879894657],[-76.58674326761874,39.21495016450118],[-76.58674018649478,39.21495152914272],[-76.58673710079137,39.21495288476024],[-76.58673400476616,39.2149542232265],[-76.58673089499783,39.21495553552161],[-76.58672776690186,39.21495681352246],[-76.58672461821486,39.21495804821325],[-76.58672144319955,39.21495923056594],[-76.58671823958221,39.21496035336626],[-76.58671500393613,39.21496140849518],[-76.58671172134993,39.21496237157911],[-76.58670838954974,39.21496323540368],[-76.58670501308336,39.2149640143975],[-76.58670160343561,39.21496472481505],[-76.58669816630704,39.21496538198966],[-76.58669471203504,39.21496600037015],[-76.58669124746751,39.2149665970956],[-76.58668778177866,39.21496718751156],[-76.58668432299541,39.21496778515795],[-76.5866808779603,39.2149684080745],[-76.58667743986739,39.21496903191623],[-76.58667397781464,39.21496959442035],[-76.58667049979208,39.2149701154322],[-76.58666701608476,39.21497061840834],[-76.58666353351433,39.21497112499151],[-76.58666006468162,39.21497165864635],[-76.58665661640828,39.21497224101568],[-76.58665319781089,39.21497289735346],[-76.58664981803746,39.21497364750904],[-76.58664648624125,39.21497451043112],[-76.58664318868965,39.21497545814714],[-76.58663991969283,39.21497647352214],[-76.58663667468707,39.21497754483001],[-76.5866334479458,39.2149786612411],[-76.58663023606866,39.2149798101326],[-76.5866270321763,39.21498097977009],[-76.58662383285252,39.21498216023297],[-76.58662063238646,39.21498333798939],[-76.58661742620414,39.21498450311462],[-76.58661420859457,39.2149856420769],[-76.58661097957867,39.21498675127314],[-76.58660775398404,39.21498786948917],[-76.5866045352634,39.21498900034023],[-76.58660131997448,39.21499013840957],[-76.5865981058329,39.2149912782844],[-76.58659488939111,39.2149924154487],[-76.5865916683752,39.21499354268819],[-76.58658844164825,39.21499465639577],[-76.58658520461005,39.21499575115054],[-76.58658195613931,39.21499682064311],[-76.58657869279386,39.21499785945667],[-76.58657541228399,39.2149988630792],[-76.58657210317737,39.21499980624855],[-76.58656874596763,39.21500065826954],[-76.58656535672931,39.21500144261903],[-76.58656194573167,39.21500218545584],[-76.5865585290388,39.21500291205846],[-76.58655511691984,39.21500364858566],[-76.58655172543882,39.21500442031594],[-76.58654836718085,39.21500525341624],[-76.58654505473612,39.21500617315281],[-76.58654180299513,39.21500720750227],[-76.58653863490119,39.21500839347757],[-76.58653553440597,39.21500970309783],[-76.58653247743959,39.21501109394168],[-76.5865294410902,39.21501252359164],[-76.58652640245634,39.21501394782881],[-76.58652333746282,39.2150153251324],[-76.58652022204521,39.21501661218019],[-76.5865170332967,39.21501776565396],[-76.58651377693877,39.21501879728404],[-76.58651047473076,39.21501974858304],[-76.58650713815209,39.21502063670616],[-76.5865037752192,39.21502147699498],[-76.5865003939378,39.21502228659247],[-76.5864970057927,39.21502308175324],[-76.58649361879495,39.21502387871947],[-76.58649024095561,39.21502469373348],[-76.58648688260149,39.21502554304575],[-76.58648354478049,39.21502644557632],[-76.58648021949715,39.21502738238066],[-76.5864768953507,39.21502832279204],[-76.58647356209813,39.21502923614779],[-76.58647020835434,39.21503008907894],[-76.5864668250343,39.21503085092691],[-76.58646340531115,39.21503150094971],[-76.58645996281243,39.2150320851352],[-76.58645650553339,39.21503262242789],[-76.5864530368902,39.21503312274839],[-76.58644955913569,39.21503359691409],[-76.58644607569647,39.21503405304401],[-76.58644258882015,39.21503450285628],[-76.58643910308595,39.2150349553748],[-76.58643561959413,39.21503542051204],[-76.58643214407131,39.21503590909756],[-76.58642867877568,39.21503643104789],[-76.58642522253872,39.21503698816053],[-76.58642177311808,39.21503756781654],[-76.58641832706627,39.21503816549998],[-76.58641488441472,39.21503877580626],[-76.58641144402122,39.21503939602891],[-76.58640800474886,39.21504002256093],[-76.58640456662913,39.21504064999766],[-76.58640112851984,39.2150412756328],[-76.58639768813134,39.21504189495432],[-76.5863942454847,39.21504250435922],[-76.5863908006113,39.21504309844288],[-76.58638735120586,39.21504367539561],[-76.58638389613665,39.21504423070952],[-76.58638043543519,39.21504475898009],[-76.58637696795927,39.21504525750095],[-76.58637349034007,39.21504570824455],[-76.58636999914059,39.2150461048934],[-76.58636649891902,39.21504646007436],[-76.58636299193878,39.21504678280331],[-76.58635947928958,39.21504708479424],[-76.5863559643822,39.21504737686849],[-76.58635245062747,39.21504766984749],[-76.58634893912034,39.21504797454444],[-76.5863454332769,39.21504830088004],[-76.58634193534472,39.21504866057229],[-76.58633844642401,39.21504906353363],[-76.58633497107824,39.21504952149039],[-76.58633150473345,39.21505002451775],[-76.58632804285767,39.21505055548499],[-76.58632458661926,39.21505111259462],[-76.58632113486554,39.21505169494183],[-76.58631768991239,39.2150523025348],[-76.58631425060713,39.21505293446861],[-76.58631081927602,39.21505358894998],[-76.58630739476125,39.21505426597476],[-76.58630397822063,39.21505496554708],[-76.58630057198582,39.2150556849728],[-76.58629717373573,39.21505642514456],[-76.58629378463868,39.21505718426484],[-76.58629040008407,39.21505795871433],[-76.58628702122981,39.21505874849709],[-76.58628364577048,39.21505955180342],[-76.5862802760115,39.21506037044302],[-76.58627691081064,39.21506120170952],[-76.58627355016792,39.21506204560293],[-76.58627019407808,39.21506290302399],[-76.58626684370957,39.21506377217533],[-76.58626349906757,39.21506465215604],[-76.586260158989,39.21506554386296],[-76.58625682347906,39.21506644639523],[-76.58625349370088,39.21506735885624],[-76.58625016965976,39.21506828034518],[-76.58624685135568,39.21506921086199],[-76.58624354448376,39.21507016664093],[-76.5862402559181,39.21507116031712],[-76.5862369822269,39.21507218467217],[-76.58623371882044,39.21507323248371],[-76.58623046342487,39.21507429653747],[-76.58622721260839,39.21507536961506],[-76.58622396293399,39.21507644539894],[-76.58622071096991,39.21507751667075],[-76.58621745328958,39.21507857531138],[-76.58621418529806,39.21507961499918],[-76.58621090587948,39.21508062852396],[-76.58620761160202,39.21508160866735],[-76.58620430357105,39.2150825644411],[-76.58620098750806,39.21508350757549],[-76.5861976657289,39.21508443807873],[-76.58619433708077,39.21508535504594],[-76.5861910004164,39.21508625667149],[-76.58618765805153,39.21508714296358],[-76.58618430883877,39.2150880121166],[-76.58618095162545,39.21508886322567],[-76.58617758873272,39.21508969539827],[-76.58617421784461,39.21509050862619],[-76.58617084129283,39.21509130021526],[-76.58616745667752,39.21509208456957],[-76.58616406396717,39.2150928670937],[-76.58616066206683,39.21509363697437],[-76.5861572510448,39.21509438250169],[-76.5861538298114,39.21509509196167],[-76.58615039728213,39.21509575273958],[-76.58614695352001,39.21509635402625],[-76.58614349743543,39.21509688410771],[-76.58614002793873,39.21509733126994],[-76.58613654506652,39.21509768920758],[-76.58613304642442,39.21509797142396],[-76.58612953658104,39.21509818874451],[-76.58612601546284,39.21509835377991],[-76.58612248764912,39.21509847555414],[-76.58611895306632,39.21509856667785],[-76.58611541513051,39.2150986370717],[-76.58611187493136,39.2150986984496],[-76.58610833588482,39.21509876073226],[-76.58610479907543,39.21509883653443],[-76.58610126792438,39.21509893487595],[-76.58609774123174,39.21509906295882],[-76.58609421561825,39.21509920455717],[-76.58609068996279,39.21509935336145],[-76.58608716429677,39.2150995039672],[-76.58608363748857,39.21509965186642],[-76.58608011188556,39.21509979166281],[-76.58607658520859,39.21509991704278],[-76.58607305864187,39.21510002350663],[-76.58606953221165,39.21510010655057],[-76.58606600479679,39.21510015986519],[-76.58606247757618,39.21510017985151],[-76.58605894931837,39.2151001791161],[-76.58605541995516,39.21510016936883],[-76.58605188833391,39.21510014970497],[-76.58604835678615,39.2151001174303],[-76.58604482530136,39.21510007434641],[-76.58604129389538,39.21510001775096],[-76.58603776257344,39.2150999467432],[-76.5860342324881,39.215099862228],[-76.58603070365531,39.21509976150308],[-76.5860271760749,39.21509964456838],[-76.58602365206285,39.21509951143215],[-76.58602012931892,39.21509935938386],[-76.58601661015386,39.21509918933251],[-76.58601309015118,39.21509896433045],[-76.58600955961434,39.21509856003581],[-76.58600602287561,39.2150980278083],[-76.58600248993103,39.21509744064644],[-76.58599896962393,39.21509687064396],[-76.58599546847115,39.21509639168776],[-76.5859919976371,39.21509607497888],[-76.58598856363336,39.21509599530521],[-76.58598518099824,39.21509624099441],[-76.58598189392968,39.21509697704538],[-76.58597868106779,39.21509809348752],[-76.58597550514109,39.21509942894951],[-76.58597232890443,39.21510081755643],[-76.5859691150864,39.21510209793698],[-76.58596582980013,39.21510312404513],[-76.58596249313722,39.21510402476343],[-76.58595912324638,39.21510486501208],[-76.58595572824878,39.21510564211741],[-76.58595231509196,39.21510635610397],[-76.58594889420256,39.21510700610767],[-76.58594542384029,39.21510740281737],[-76.58594052647658,39.21510747291324],[-76.58593775346772,39.21505281276799],[-76.58565556403848,39.21505745292304],[-76.58550560238385,39.21506036071402],[-76.58550955430275,39.21512049817774],[-76.58541961162602,39.21512313411723],[-76.58542118523572,39.21514317393876],[-76.5854176613436,39.21514302006679],[-76.58541413869347,39.2151428517866],[-76.58541061156326,39.21514245919612],[-76.58540714150978,39.21514240550068],[-76.58540376194125,39.21514311688762],[-76.585400404432,39.2151440166155],[-76.58539703429595,39.2151448973823],[-76.58539363597954,39.2151456465355],[-76.58539023417356,39.21514639837858],[-76.58538682211442,39.21514712136038],[-76.58538339195447,39.21514777131485],[-76.58537993586167,39.21514830137379],[-76.58537644814642,39.21514869440224],[-76.58537293782487,39.21514899276878],[-76.58536941280788,39.21514922983019],[-76.5853658810064,39.21514943894328],[-76.58536235151026,39.21514964986603],[-76.58535883106181,39.2151498977526],[-76.58535532758245,39.2151502141584],[-76.58535185015147,39.21515063064278],[-76.585348404406,39.21515117334825],[-76.58534498470365,39.21515181703316],[-76.58534158420724,39.2151525427568],[-76.5853382007115,39.2151533315951],[-76.58533482969506,39.21515416461563],[-76.58533146547356,39.21515502378272],[-76.585328106989,39.2151558919778],[-76.58532474740431,39.21515675026028],[-76.58532138790366,39.21515759413049],[-76.58531804552986,39.21515847949705],[-76.58531471569322,39.21515939913746],[-76.58531139269884,39.21516033681759],[-76.58530806970968,39.21516127359681],[-76.58530473988857,39.21516219053466],[-76.58530139755116,39.21516306959541],[-76.58529803469713,39.21516389273516],[-76.58529464447902,39.21516464281485],[-76.5852912337601,39.2151653342713],[-76.58528781501455,39.21516601218752],[-76.58528438941082,39.21516667476617],[-76.58528095810682,39.21516732201125],[-76.58527752109737,39.21516795482366],[-76.58527407838233,39.21516857320326],[-76.5852706311303,39.21516917535268],[-76.58526717932537,39.2151697639742],[-76.58526372414131,39.21517033636965],[-76.58526026556758,39.21517089434048],[-76.58525680360952,39.21517143698603],[-76.58525333942497,39.21517196431031],[-76.58524987301392,39.21517247631333],[-76.58524640437645,39.21517297299516],[-76.5852429324335,39.21517344084015],[-76.58523944249508,39.21517381764265],[-76.58523593565596,39.21517411421585],[-76.58523241755856,39.21517435580146],[-76.58522889271346,39.2151745631335],[-76.58522536560517,39.21517476144963],[-76.58522184189168,39.21517497328934],[-76.58521832492046,39.21517522028326],[-76.58521481245997,39.21517548801093],[-76.58521129999944,39.21517575573851],[-76.58520778641254,39.21517601805731],[-76.58520427174663,39.21517626686047],[-76.58520075373315,39.215176494033],[-76.58519723468801,39.21517669958306],[-76.58519371456913,39.21517689071665],[-76.58519019219749,39.21517707103287],[-76.58518666985746,39.21517724594438],[-76.58518314752263,39.21517741995503],[-76.58517962516672,39.21517759756862],[-76.5851761039214,39.21517778329305],[-76.58517258376558,39.21517798073137],[-76.58516906580978,39.21517819799458],[-76.58516555212265,39.2151784774266],[-76.58516204279353,39.21517880371449],[-76.58515853460125,39.21517913360946],[-76.58515502434044,39.21517942116031],[-76.58515150878983,39.21517962311821],[-76.585147985781,39.2151797142536],[-76.58514446072992,39.21517975854108],[-76.5851409335472,39.21517977129356],[-76.58513740420126,39.2151797579157],[-76.58513387381308,39.21517972471685],[-76.58513034235125,39.21517967710159],[-76.58512681093679,39.21517962137941],[-76.5851232795328,39.21517956385557],[-76.58511974926573,39.21517950993875],[-76.58511621893553,39.215179466831],[-76.58511269100538,39.21517940931913],[-76.58510642167514,39.21517924573138],[-76.58510576563474,39.21516766207515],[-76.58508344910852,39.21516894785499],[-76.58508564154715,39.21518135755471],[-76.58508211286433,39.21518142885091],[-76.58507858739209,39.21518154519737],[-76.58507506724106,39.21518174173202],[-76.58507154817426,39.21518195088129],[-76.58506803021801,39.21518216814149],[-76.58506451107746,39.21518238990124],[-76.58506099307381,39.21518261526803],[-76.58505747508059,39.21518283883317],[-76.58505395711374,39.21518305789441],[-76.58505043802575,39.21518327064613],[-76.58504691900089,39.21518347258862],[-76.58504339773388,39.21518366191211],[-76.58503987541415,39.21518383321617],[-76.58503635198389,39.21518399640919],[-76.58503282854835,39.21518416050282],[-76.58502930280748,39.21518432278667],[-76.58502577708235,39.21518448236813],[-76.585022251373,39.21518463924719],[-76.58501872570052,39.21518478982078],[-76.58501519890693,39.21518493408491],[-76.58501167216069,39.215185070242],[-76.58500814547233,39.21518519649063],[-76.58500461884714,39.21518531193003],[-76.58500109229037,39.21518541565934],[-76.58499756697049,39.21518550588132],[-76.58499404174532,39.21518557988939],[-76.58499051660968,39.21518563858445],[-76.58498699183721,39.2151856351268],[-76.58498346674382,39.21518548844377],[-76.58497994458226,39.21518523637972],[-76.58497643088414,39.21518492309235],[-76.58497293126011,39.21518457922816],[-76.58496946860042,39.21518405263611],[-76.58496542565807,39.2151833537441],[-76.5849663699319,39.215164239816],[-76.58491632499268,39.21516496629344],[-76.58482748296453,39.2151726356317],[-76.58470418709328,39.21533063316178],[-76.5846255457833,39.21542748870434],[-76.58462452645419,39.21543011897881],[-76.58462353717309,39.2154327592682],[-76.58462251553323,39.21543538863366],[-76.58462140025917,39.21543799064426],[-76.58462014857085,39.21544055433922],[-76.5846187997377,39.21544309697236],[-76.58461734456999,39.21544560590021],[-76.58461576695686,39.2154480639509],[-76.58461405192428,39.21545045755967],[-76.58461223177837,39.21545280665816],[-76.58461033424604,39.21545512215379],[-76.5846083743383,39.21545741130595],[-76.5846063740294,39.21545967869634],[-76.58460434949346,39.21546193068767],[-76.58460228689853,39.21546415642158],[-76.58460014697519,39.21546633864428],[-76.58459796665073,39.21546849910521],[-76.5845957874735,39.21547066137169],[-76.58459364985512,39.21547284540397],[-76.58459155492714,39.21547505571],[-76.58458946692555,39.21547726964362],[-76.58458739161885,39.21547949082838],[-76.58458533016504,39.21548171926837],[-76.58458328601677,39.21548395857896],[-76.58458126381107,39.21548620787578],[-76.58457925775828,39.21548846713836],[-76.58457723552597,39.2154907209389],[-76.58457520983023,39.21549297292562],[-76.58457318989774,39.21549522943658],[-76.5845711895919,39.21549749592558],[-76.584569220471,39.21549977603663],[-76.58456729638797,39.21550207702506],[-76.58456542773789,39.21550440343159],[-76.58456362838952,39.21550675980913],[-76.58456190988528,39.21550915250411],[-76.5845602641407,39.21551157788472],[-76.5845586738291,39.21551402868337],[-76.58455712394479,39.21551649673999],[-76.58455559599777,39.21551897568362],[-76.58455407382445,39.21552145735001],[-76.58455254009812,39.21552393447155],[-76.58455097980782,39.21552639978892],[-76.58454937331618,39.21552884512547],[-76.5845477067649,39.21553126412678],[-76.58454598362249,39.21553365770587],[-76.58454423967943,39.21553604400503],[-76.58454247725159,39.21553842303246],[-76.58454069518092,39.21554079478411],[-76.58453889463597,39.21554315746248],[-76.58453707560622,39.21554551286916],[-76.58453523926006,39.21554785920668],[-76.58453338443434,39.21555019737177],[-76.58453151345024,39.21555252647177],[-76.58452962399706,39.21555484559777],[-76.58452771838017,39.21555715655948],[-76.58452579545747,39.21555945665052],[-76.5845238367442,39.21556173859923],[-76.58452183646656,39.21556399968279],[-76.58451980501951,39.21556624444188],[-76.58451774933489,39.21556847560343],[-76.58451567632335,39.21557069949736],[-76.5845135963852,39.21557291976358],[-76.58451151645215,39.21557513912905],[-76.58450944459288,39.21557736392769],[-76.58450739005498,39.21557959689469],[-76.58450535975446,39.21558184345916],[-76.58450336062832,39.21558410544725],[-76.58450137188649,39.21558637377755],[-76.58449939122376,39.21558864664027],[-76.58449741748736,39.21559092313063],[-76.5844954518353,39.21559320325274],[-76.5844934954149,39.21559548881216],[-76.58449154707355,39.21559777890403],[-76.58448961027976,39.21560007444144],[-76.5844876827229,39.21560237451546],[-76.5844857667084,39.21560468093575],[-76.58448386224664,39.21560699190081],[-76.58448197164307,39.21560930922041],[-76.58448009950831,39.21561163651395],[-76.5844782458476,39.21561397288064],[-76.58447640720296,39.21561631560594],[-76.58447457894268,39.21561866467349],[-76.5844727599194,39.21562101827762],[-76.58447094667508,39.2156233737037],[-76.58446913458329,39.21562573003463],[-76.58446732133352,39.21562808636141],[-76.58446550577823,39.21563044087847],[-76.58446368560165,39.21563279357756],[-76.5844619069787,39.21563516894331],[-76.58446016068287,39.2156375606375],[-76.58445841785013,39.21563995414552],[-76.58445665077451,39.21564233495673],[-76.58445483176057,39.21564468675903],[-76.58445292962844,39.2156469950295],[-76.58445092246183,39.21564924527803],[-76.58444885524601,39.21565146738972],[-76.58444675569235,39.21565367497433],[-76.58444462150078,39.21565586532147],[-76.5844424526765,39.21565803753025],[-76.58444024808279,39.2156601879936],[-76.58443800772481,39.21566231581078],[-76.58443573161315,39.21566441918023],[-76.58443341976364,39.21566649539965],[-76.58443106987615,39.21566854175859],[-76.58442868655612,39.21567056277718],[-76.58442628593028,39.21567257292511],[-76.58442386798801,39.21567457400385],[-76.58442143389783,39.215676564216],[-76.58441898250176,39.21567854355742],[-76.58441651380514,39.21568051112736],[-76.5844140289711,39.21568246602921],[-76.58441152684709,39.21568440735807],[-76.58440900627504,39.21568633510984],[-76.58440646842352,39.21568824748704],[-76.58440391329775,39.21569014358898],[-76.58440134089778,39.21569202341566],[-76.58439874891299,39.21569388605808],[-76.5843961408224,39.2156957306278],[-76.58439350624164,39.21569755078254],[-76.58439082443327,39.21569932843327],[-76.58438809768684,39.21570106809207],[-76.58438533523942,39.21570277429543],[-76.58438254167537,39.21570445516665],[-76.58437972738429,39.21570611614731],[-76.5843768981191,39.21570776356306],[-76.58437406078517,39.21570940464476],[-76.5843712223037,39.21571104392074],[-76.58436839189602,39.21571268862991],[-76.5843655741569,39.21571434509406],[-76.58436277939705,39.21571603226607],[-76.58435990639322,39.21571763448747],[-76.58435681049552,39.21571893776105],[-76.58435366747041,39.21572018141605],[-76.58435051179232,39.2157214106137],[-76.58434734231906,39.21572262264753],[-76.58434415906653,39.21572381481535],[-76.58434096204525,39.21572498531555],[-76.58433775126043,39.21572613324739],[-76.58433452904387,39.21572725591684],[-76.58433129193749,39.21572835060924],[-76.58432804569411,39.21572942365042],[-76.58432479023462,39.21573048855186],[-76.58432152789072,39.21573154261947],[-76.5843182552044,39.21573258313865],[-76.58431497336527,39.2157336047089],[-76.58431168239441,39.21573460372722],[-76.58430837882855,39.21573557837973],[-76.58430506386254,39.21573652236523],[-76.58430173519112,39.21573743387405],[-76.58429839399848,39.21573830840637],[-76.58429503800048,39.21573914054946],[-76.58429165915489,39.21573991946547],[-76.58428825860902,39.21574064696002],[-76.58428483979455,39.21574133025147],[-76.58428140613783,39.21574197745909],[-76.58427796223371,39.2157425949045],[-76.58427451150314,39.2157431916077],[-76.58427105623045,39.21574377298145],[-76.58426760099994,39.21574434714898],[-76.58426414923784,39.21574492222945],[-76.5842606974915,39.21574549460759],[-76.5842572411556,39.21574605976308],[-76.58425378141965,39.21574661229552],[-76.58425031598894,39.21574714859363],[-76.58424684721615,39.21574766236028],[-76.58424337164868,39.21574814998012],[-76.5842398916235,39.21574860785827],[-76.58423640601953,39.2157490296854],[-76.58423291369999,39.21574941185423],[-76.58422941579641,39.21574975887278],[-76.58422591227188,39.21575007704629],[-76.58422240425797,39.21575037088275],[-76.58421889289687,39.21575064308851],[-76.58421537700417,39.21575089816326],[-76.5842118600432,39.21575113792087],[-76.58420834083485,39.21575136596024],[-76.58420481935808,39.21575158588444],[-76.5842012990709,39.21575180040811],[-76.58419777879425,39.21575201313008],[-76.58419425850703,39.21575222765351],[-76.58419074051984,39.21575244488731],[-76.5841872203328,39.21575264229606],[-76.58418369795113,39.21575281897897],[-76.58418017449068,39.21575298214628],[-76.58417664991447,39.21575313810322],[-76.58417312650671,39.21575329226265],[-76.58416960190934,39.21575345182249],[-76.58416607955401,39.21575362400104],[-76.58416255825635,39.21575381329807],[-76.58415904028482,39.21575402782867],[-76.58415552450776,39.21575426308486],[-76.58415200981477,39.21575451095573],[-76.58414849622172,39.21575476873898],[-76.58414498373378,39.21575503553385],[-76.58414147120891,39.21575530863394],[-76.58413795981555,39.2157555862418],[-76.58413444841166,39.21575586565112],[-76.58413093700243,39.21575614596112],[-76.58412742560371,39.21575642446946],[-76.58412391422611,39.21575669937463],[-76.58412040172745,39.21575696797029],[-76.58411688811826,39.21575722845489],[-76.58411337340394,39.21575747992761],[-76.58410985756855,39.21575772509082],[-76.58410634177535,39.21575796304786],[-76.5841028237137,39.21575819288969],[-76.58409930569957,39.21575841462457],[-76.58409578658546,39.21575862644689],[-76.58409226753467,39.21575882745992],[-76.58408874624186,39.215759015854],[-76.5840852250018,39.21575919524035],[-76.58408170263012,39.21575937011865],[-76.58407817912689,39.21575954048895],[-76.58407465681321,39.21575970545869],[-76.58407113221533,39.21575986501553],[-76.58406760880702,39.21576001917181],[-76.58406408427243,39.2157601679193],[-76.5840605597747,39.21576031036135],[-76.58405703415602,39.21576044649385],[-76.5840535085742,39.21576057632094],[-76.5840499830452,39.21576069714028],[-76.58404645417423,39.21576079542816],[-76.5840429242825,39.21576087029202],[-76.58403939100671,39.21576092983051],[-76.58403585779419,39.21576097855973],[-76.5840323245922,39.21576102548737],[-76.58402879253235,39.21576107512129],[-76.58402526156183,39.21576113646905],[-76.58402173281743,39.21576121313792],[-76.5840182062465,39.21576131413546],[-76.58401468412782,39.2157614457752],[-76.5840111664298,39.21576161346173],[-76.58400765426289,39.21576182530598],[-76.58400415317402,39.21576212276361],[-76.58400066535766,39.21576252656021],[-76.58399718751411,39.21576300695847],[-76.58399371519639,39.21576353241523],[-76.58399024512589,39.21576406959001],[-76.58398677169228,39.21576458783632],[-76.58398329160659,39.21576505561528],[-76.58397980041644,39.21576544228453],[-76.58397629482214,39.2157657181066],[-76.58397277476048,39.21576589389063],[-76.58396924354165,39.21576599757253],[-76.58396570679173,39.21576605709649],[-76.58396216781559,39.21576610129918],[-76.58395863223414,39.21576615902552],[-76.58395510219957,39.21576625820732],[-76.58395158449068,39.21576642769356],[-76.58394808241756,39.21576669542025],[-76.58394460044836,39.21576708932739],[-76.58394113750958,39.21576759499865],[-76.58393768799627,39.21576818088689],[-76.58393424516132,39.21576881273855],[-76.5839308057157,39.21576945901457],[-76.58392736174908,39.21577008635809],[-76.58392390766188,39.2157706623211],[-76.58392045024324,39.21577121395117],[-76.58391699396671,39.21577176828752],[-76.58391353652164,39.21577232442117],[-76.58391008023443,39.21577288055883],[-76.5839066239419,39.21577343759714],[-76.58390316765986,39.21577399283384],[-76.5838997102304,39.21577454626482],[-76.58389625165876,39.21577509698928],[-76.58389279310822,39.21577564411059],[-76.58388933227337,39.21577618581901],[-76.58388587147546,39.21577672122204],[-76.58388240839857,39.21577725031138],[-76.58387894304799,39.21577777218634],[-76.5838754765922,39.21577828504947],[-76.58387200672064,39.21577878799177],[-76.58386853685957,39.21577928913247],[-76.5838650646298,39.21577979927247],[-76.58386159352625,39.21578031482101],[-76.58385812010152,39.21578083126202],[-76.58385464668198,39.21578134680217],[-76.58385117097822,39.21578185692945],[-76.58384769416928,39.21578235804489],[-76.58384421627622,39.21578284654547],[-76.58384073500433,39.21578331881987],[-76.58383725152741,39.21578377217],[-76.58383376587707,39.21578420119123],[-76.58383027805867,39.21578460498278],[-76.58382678694592,39.21578497813606],[-76.58382329255987,39.2157853170479],[-76.58381979491647,39.21578561901615],[-76.58381629063693,39.21578586781468],[-76.5838127775848,39.2157860328094],[-76.58380925453889,39.21578612480535],[-76.58380572605702,39.21578615642962],[-76.58380219090729,39.21578614028874],[-76.58379865365822,39.21578608720836],[-76.58379511538841,39.21578601070392],[-76.5837915760241,39.21578592338616],[-76.58378804013354,39.21578583608056],[-76.58378450764295,39.21578576139785],[-76.58378097988432,39.21578566961701],[-76.58377745665548,39.215785397696],[-76.58377393704296,39.21578510146666],[-76.58377042218538,39.21578498180703],[-76.58376690474431,39.21578510534896],[-76.58376338112288,39.21578529552654],[-76.58375985713715,39.2157855478566],[-76.58375633972413,39.21578586416534],[-76.58375283814726,39.21578624448548],[-76.58374935933833,39.21578669154407],[-76.58374591807588,39.21578725223413],[-76.5837425243642,39.21578799775273],[-76.58373915669878,39.21578884335025],[-76.5837338907347,39.21579015332234],[-76.58372829757634,39.21578999386121],[-76.58372365003902,39.21578872258792],[-76.58372047979357,39.2157219139595],[-76.583718194948,39.21569745326498],[-76.58369286430299,39.21569316847098],[-76.58334301128707,39.21571779815002],[-76.58290984205773,39.21574870458952],[-76.58282819284264,39.21575214269331],[-76.58233069035502,39.21577205214997],[-76.58195425163234,39.21578652585011],[-76.58156543610336,39.2158008695389],[-76.58157173466623,39.21590220189464],[-76.58165281899905,39.21589955623831],[-76.58227970616717,39.21587725480379],[-76.58227968427326,39.21586778752179],[-76.58248721222802,39.21585956418395],[-76.58277813655623,39.21584676648995],[-76.58289811960834,39.21584400334405],[-76.58290073719408,39.21588490808567],[-76.58288666393393,39.21588579577708],[-76.5828725850796,39.21588665011799],[-76.58285850285688,39.21588748642963],[-76.58284441949708,39.21588831913238],[-76.58283033840523,39.21588915994857],[-76.58281626064391,39.21589002509597],[-76.58280219076559,39.21589092810255],[-76.58278812984344,39.21589188338448],[-76.58277408011391,39.21589290446155],[-76.58276004611874,39.21589400666311],[-76.58274603547427,39.21589566742996],[-76.58273230085632,39.21589823986581],[-76.58271991383863,39.21590381308802],[-76.58270728612946,39.21589989933291],[-76.58269492247955,39.2158942047714],[-76.58268269018517,39.21588862147173],[-76.58266947574236,39.21588523978885],[-76.58265523881799,39.21588481443316],[-76.58264116858537,39.21588558050046],[-76.58262710827327,39.21588682581664],[-76.58261306687409,39.21588800544146],[-76.58259903758173,39.21588929230054],[-76.58258507826471,39.21589088837452],[-76.58257126230379,39.21589311460249],[-76.58255751965389,39.21589567347761],[-76.58254368437689,39.21589783657891],[-76.58252973944289,39.21589954619586],[-76.58251576061218,39.21590111246649],[-76.58250178864373,39.21590269317235],[-76.5824878122283,39.21590424233342],[-76.58247381690923,39.21590585538092],[-76.58246017681178,39.2159084992829],[-76.58244792579491,39.21591398018001],[-76.58243692932135,39.21592115270182],[-76.58243425977571,39.21593166612165],[-76.58243328901057,39.21594276118485],[-76.58243283624505,39.21595378963191],[-76.58243311668086,39.21596478195428],[-76.58243416392486,39.21597573376768],[-76.58243588311146,39.21598663032201],[-76.58243787335644,39.21599751072593],[-76.58243996193661,39.21600840679294],[-76.58243994284405,39.21601933409391],[-76.58243733640242,39.21603014319407],[-76.58243177207122,39.21604024186275],[-76.5824257209671,39.21605021629284],[-76.58241942382963,39.21606008625741],[-76.5824115822213,39.21606912561073],[-76.58240255718864,39.21607757164176],[-76.58239283861141,39.2160856107536],[-76.58238270185629,39.21609328175879],[-76.5823724761602,39.21610091461381],[-76.58236214172163,39.21610852906528],[-76.58235151947022,39.21611585784491],[-76.58234043149366,39.21612263368831],[-76.58232870214255,39.21612859834701],[-76.58231652312412,39.21613403624904],[-76.58230409204639,39.21613921292702],[-76.58229144817332,39.21614414653629],[-76.58227862845314,39.21614885522395],[-76.58226567330254,39.21615335805011],[-76.58225261968028,39.21615767136041],[-76.58223950684508,39.21616181421091],[-76.58222636830841,39.21616579843113],[-76.58221306533225,39.2161693902249],[-76.58219956328452,39.21617257145328],[-76.58218593423592,39.21617549190235],[-76.5821722479411,39.21617830135003],[-76.58215857762843,39.21618114958657],[-76.58214499305768,39.21618418548919],[-76.58213156513062,39.21618756064148],[-76.58211828232062,39.21619126599467],[-76.58210500378581,39.21619503171387],[-76.58209173991582,39.21619886324079],[-76.5820785079897,39.2162027759502],[-76.5820653264336,39.21620678702258],[-76.58205221367382,39.21621091363842],[-76.58203918467349,39.21621517116431],[-76.58202626017463,39.21621957678889],[-76.58201345629297,39.21622414678377],[-76.58200079259151,39.21622890193658],[-76.58198846510551,39.21623417803602],[-76.5819765323967,39.21624005906331],[-76.5819649040268,39.21624636814354],[-76.58195349186828,39.21625292931055],[-76.58194220779369,39.2162595665983],[-76.58193108983475,39.21626631076887],[-76.58192021357242,39.21627330531566],[-76.58190949268601,39.21628046075392],[-76.58189884201819,39.21628768670225],[-76.58188817293255,39.21629489366759],[-76.58187742097677,39.21630201476255],[-76.58186668860843,39.21630915214034],[-76.58185598732729,39.21631631935369],[-76.58184529409657,39.21632349560254],[-76.58183458820585,39.21633065829361],[-76.58182384661835,39.2163377866268],[-76.58181304861307,39.21634485981036],[-76.58180217231646,39.21635185614755],[-76.58179119239695,39.21635875122707],[-76.58178005473903,39.21636549261071],[-76.58176878121095,39.21637210289587],[-76.58175742018643,39.21637862639321],[-76.58174601771262,39.21638510920656],[-76.58173461984725,39.21639159563835],[-76.58172327723211,39.21639813811436],[-76.58171213574818,39.21640493712783],[-76.5817010045828,39.21641175329188],[-76.5816895539371,39.21641815575853],[-76.58167748848545,39.21642375884181],[-76.58166493926262,39.21642872785135],[-76.58165211195417,39.21643333285368],[-76.5816391650935,39.21643778879968],[-76.58162626298771,39.21644231336305],[-76.5816135400601,39.21644708627844],[-76.58160081238755,39.21645187809196],[-76.58158810531218,39.21645671141344],[-76.58157553382685,39.21646172267076],[-76.58156321406135,39.21646705189898],[-76.58155133572812,39.21647292857295],[-76.58154000339316,39.21647948998422],[-76.58152884344732,39.21648627270037],[-76.58151745355063,39.2164927762543],[-76.58150553361884,39.21649863656118],[-76.58149347447085,39.21650434413851],[-76.5814813600316,39.21651000197449],[-76.58146918692805,39.21651559294222],[-76.58145694946074,39.2165211017081],[-76.58144464425145,39.21652651204601],[-76.58143226676405,39.21653180772572],[-76.5814198101358,39.21653697431026],[-76.5814072709938,39.2165419946727],[-76.58139460461896,39.21654679388872],[-76.58138169279967,39.21655119228129],[-76.58136859514919,39.21655529185119],[-76.58135539080655,39.21655922169232],[-76.58134216006341,39.21656311180339],[-76.58132897974268,39.21656709127015],[-76.58131592785705,39.21657128377785],[-76.58130297339154,39.21657564687916],[-76.58129006589567,39.21658009572081],[-76.5812771835968,39.21658459149153],[-76.58126430703828,39.21658909538832],[-76.5812514121262,39.21659356949247],[-76.58123854084421,39.21659815988019],[-76.581225746702,39.2166030216767],[-76.58121276032853,39.21660729547695],[-76.58119927934136,39.21661002537442],[-76.58118519211652,39.2166108965983],[-76.5811709394756,39.21661114929468],[-76.58115682649431,39.21661167542429],[-76.58114270577941,39.21661194209982],[-76.58112860330559,39.21661166837045],[-76.58111451104163,39.21661103796679],[-76.58110042565161,39.21661022382676],[-76.58108634635455,39.21660935836232],[-76.58107226930461,39.21660850461431],[-76.58105819969161,39.21660756801938],[-76.58104415541618,39.2166064585634],[-76.58103015564332,39.21660506822107],[-76.58101618845365,39.21660345459983],[-76.58100222366018,39.2166018274738],[-76.58098816524762,39.21660056302637],[-76.58097431251196,39.21659858859584],[-76.5809606571467,39.21659574201217],[-76.5809470811616,39.21659259124657],[-76.58093373476652,39.21658899541291],[-76.58092079067185,39.21658472903211],[-76.58090843435862,39.21657936489608],[-76.58089654145184,39.21657337547042],[-76.5808853053979,39.21656674973614],[-76.58087439464589,39.21655974683473],[-76.58086237422772,39.21655378127124],[-76.58084955611548,39.21654857581842],[-76.58084042993214,39.21654096225315],[-76.58083576463102,39.21653034160148],[-76.58083362099798,39.21651939486631],[-76.58083405104793,39.21650833391704],[-76.58083325289465,39.21649740099546],[-76.58083021268303,39.21648670327619],[-76.58082628832257,39.21647611049236],[-76.5808219325062,39.21646563507026],[-76.58081729466724,39.21645526763501],[-76.5808122926982,39.21644498987768],[-76.58080699724442,39.21643480024901],[-76.58080146504521,39.21642469895171],[-76.58079568570577,39.21641468144459],[-76.5807897509005,39.21640471472631],[-76.5807837731732,39.21639476136603],[-76.58077786622032,39.216384784838],[-76.58077214491227,39.21637474591815],[-76.58076666378915,39.21636462498427],[-76.58076133699308,39.21635445055461],[-76.58075605776985,39.21634426008053],[-76.58075071820218,39.21633409191013],[-76.58074521269404,39.21632398349892],[-76.58073949958619,39.21631393019413],[-76.58073371490558,39.21630383970128],[-76.58072746582147,39.21629395562923],[-76.58072028629765,39.2162845645626],[-76.58071203028481,39.21627569120126],[-76.58070297541394,39.21626718700733],[-76.58069321947734,39.21625915952302],[-76.58068286378341,39.21625170909675],[-76.58067209694498,39.21624466255163],[-76.5806610485095,39.21623784830147],[-76.58064979759442,39.21623120267347],[-76.58063842100148,39.21622466198657],[-76.58062699667975,39.21621816436544],[-76.58061560144166,39.21621164432759],[-76.58060431558398,39.21620503460147],[-76.58059316637247,39.21619822809168],[-76.58058203710873,39.21619137751383],[-76.58057078055707,39.21618470843764],[-76.58055925527653,39.21617844555271],[-76.58054707596534,39.21617312614853],[-76.58054197279905,39.21617195310731],[-76.58031519078511,39.21608564018861],[-76.58031024267976,39.21608135189159],[-76.58029687967755,39.21607843241139],[-76.5802835531049,39.21607503114233],[-76.58027166226255,39.21606910741639],[-76.58025986655684,39.21606295703282],[-76.58024769651708,39.21605705572615],[-76.58023421003207,39.21605485011612],[-76.5802199483736,39.21605586292329],[-76.58020616130518,39.2160582763388],[-76.58019270024855,39.21606175924475],[-76.58018008265975,39.21606653328298],[-76.58015816771153,39.2160773921597],[-76.58014623746726,39.21608342253999],[-76.58013429920591,39.21608943757712],[-76.58012165123337,39.21609406106998],[-76.58010819405602,39.21609708187967],[-76.58009437525662,39.2160993762655],[-76.58008039274075,39.21610135388979],[-76.58006643977647,39.21610342529937],[-76.58005271311092,39.21610600015277],[-76.58003942196162,39.2161095331921],[-76.58002657067229,39.21611407307533],[-76.58001388154979,39.21611899546848],[-76.58000106544995,39.2161236543779],[-76.57998813037726,39.21612806694694],[-76.57997514487046,39.21613239195837],[-76.57996203009732,39.21613644897381],[-76.57994875405141,39.21614016761776],[-76.57993540477513,39.2161437373693],[-76.57992199714066,39.21614718890815],[-76.5799085483839,39.21615054481551],[-76.57989507111971,39.21615382585449],[-76.57988157795754,39.21615705368894],[-76.57986806078647,39.21616022919061],[-76.57985451737595,39.21616333793902],[-76.57984094317428,39.21616636640614],[-76.5798273371087,39.21616930017566],[-76.57981369810666,39.2161721248312],[-76.57980001783345,39.21617487907648],[-76.57978628833816,39.21617753676041],[-76.57977250115144,39.21617996363629],[-76.579758652436,39.21618202547405],[-76.57974469690322,39.21618354826082],[-76.57973056854976,39.2161843362908],[-76.5797164164464,39.2161844414423],[-76.57970238615172,39.21618372641721],[-76.57968844117086,39.21618190103347],[-76.57967448463798,39.21618007110281],[-76.57966014303472,39.21617932523181],[-76.57964601099042,39.21617819367489],[-76.5796331087471,39.21617451190761],[-76.57962102614731,39.21616890720603],[-76.57960950893444,39.21616227403552],[-76.5795984956284,39.21615521750058],[-76.57958801534905,39.21614790435014],[-76.57957808469614,39.21614007341741],[-76.57956854499007,39.21613192680963],[-76.57955924918396,39.21612365766794],[-76.57955018002063,39.21611524701411],[-76.57954130154536,39.21610670462807],[-76.57953255444193,39.21609807443551],[-76.57952388053606,39.21608940306861],[-76.57951524029255,39.21608071830996],[-76.5795066616405,39.21607199683937],[-76.57949813180001,39.21606324581721],[-76.57948963565909,39.216054475098],[-76.57948115579549,39.21604569362714],[-76.57947267709717,39.21603691125899],[-76.57946418328912,39.21602813874465],[-76.57945567554525,39.21601937338598],[-76.57944722707701,39.21601057130709],[-76.57943880999248,39.21600174952286],[-76.57943038129332,39.21599293400183],[-76.57942190028642,39.21598415252233],[-76.57941332397338,39.21597543105298],[-76.57940461167176,39.21596679557049],[-76.57939571224036,39.2159582783197],[-76.57938659548212,39.21594989450558],[-76.57937730670061,39.21594161996938],[-76.57936789469458,39.21593342696175],[-76.57935840826802,39.21592528683267],[-76.57934890553658,39.21591716285843],[-76.57933945762505,39.21590897242211],[-76.579329955106,39.21590081331657],[-76.57932024894203,39.2158928237278],[-76.57931018777981,39.21588514183332],[-76.5792996540115,39.21587787800751],[-76.57928875830271,39.21587092095016],[-76.57927759840003,39.21586418994138],[-76.57926625456923,39.21585762311494],[-76.57925480359148,39.21585116039376],[-76.57924332573786,39.21584473901105],[-76.57923187569808,39.21583831412376],[-76.57922038026076,39.21583192960771],[-76.57920881025333,39.21582562319106],[-76.57919714347764,39.21581942812305],[-76.5791853623778,39.21581337586804],[-76.57917344707135,39.21580749968358],[-76.57916131707367,39.21580189836694],[-76.57914898990846,39.21579654585815],[-76.57913656592135,39.21579131370545],[-76.57912414777374,39.21578607346533],[-76.57911183465873,39.21578069578115],[-76.57909973041733,39.2157750486106],[-76.5790878455937,39.21576911127359],[-76.57907605647002,39.21576304816931],[-76.57906423114811,39.21575703627849],[-76.57905224004557,39.21575125259015],[-76.57903996527133,39.21574585521867],[-76.5790274546636,39.21574078308254],[-76.57901479811464,39.21573591309718],[-76.57900207386263,39.2157311347472],[-76.57898936247244,39.21572633572402],[-76.57897674334028,39.21572140551645],[-76.57896429120942,39.21571623719979],[-76.57895200491133,39.21571083257144],[-76.57893980389187,39.21570530213845],[-76.57892761104387,39.21569976092412],[-76.57891534814507,39.21569431674151],[-76.57890309821508,39.21568883387054],[-76.57889084717176,39.21568334378804],[-76.57887848622178,39.21567803256519],[-76.57886590888229,39.21567308718228],[-76.5788529690067,39.21566874402009],[-76.5788397308953,39.2156648997195],[-76.57882640383167,39.21566121543706],[-76.57881316846644,39.21565729908085],[-76.57879997055319,39.21565312073031],[-76.57878665743176,39.21564942928715],[-76.5787730701013,39.21564706641072],[-76.57875899336,39.21564697804903],[-76.5787447455309,39.21564781687575],[-76.57873057870273,39.21564807949178],[-76.57871639459097,39.21564832763159],[-76.5787024441803,39.21564958638394],[-76.57868861470192,39.21565193100973],[-76.57867487409474,39.21565491010264],[-76.57866160207253,39.21565873490799],[-76.578649157287,39.21566365352762],[-76.57863753177465,39.21566983708157],[-76.57862642172987,39.2156767710341],[-76.57861551920733,39.21568385796268],[-76.57860459612304,39.21569089707506],[-76.57859425373175,39.21569842739568],[-76.57858538350322,39.21570686558437],[-76.57857776384695,39.21571608743874],[-76.57857071179588,39.21572566443706],[-76.57856360678271,39.21573518990024],[-76.57855632526154,39.21574460393299],[-76.57854911764294,39.21575405246044],[-76.57854213526869,39.21576359457676],[-76.5785354496794,39.21577327287565],[-76.57852906427418,39.21578309998032],[-76.57852345327105,39.2157931676721],[-76.57851858411983,39.2158034974529],[-76.57851409723813,39.21581399795327],[-76.57851060525859,39.2158246569611],[-76.57850862470562,39.21583546191926],[-76.57850742981199,39.21584636698354],[-76.57850668727461,39.21585734033029],[-76.57850632778879,39.21586835288558],[-76.57850628317557,39.21587938098433],[-76.57850648296136,39.2158903973499],[-76.5785068601359,39.21590137651979],[-76.5785074689991,39.21591233940691],[-76.57850833956665,39.21592330143248],[-76.57850943944308,39.21593425797611],[-76.57851073622241,39.21594520621911],[-76.57851219750924,39.21595614154123],[-76.57851379206605,39.21596705932633],[-76.5785155083404,39.215977955029],[-76.5785174540363,39.21598882633376],[-76.57851959668898,39.21599968033025],[-76.57852187374323,39.21601052129765],[-76.57852422610675,39.2160213553292],[-76.57852659006112,39.21603218760072],[-76.57852890651401,39.21604302420549],[-76.57853108390289,39.21605387922712],[-76.57853307465594,39.21606476870883],[-76.57853504221876,39.21607566351186],[-76.57853715815865,39.21608653182432],[-76.57853959752214,39.21609734094588],[-76.5785425318713,39.21610805996546],[-76.57854602959966,39.2161186765177],[-76.57854995506818,39.2161292171388],[-76.57855417961756,39.21613970298546],[-76.57855857341441,39.21615015791237],[-76.5785630066413,39.21616060307211],[-76.57856735178588,39.21617106142707],[-76.57857151721053,39.21618155967153],[-76.57857557472889,39.21619209446033],[-76.57857963223776,39.21620263105045],[-76.5785837941495,39.216213136488],[-76.57858816719782,39.21622357692659],[-76.57859285926372,39.21623392032547],[-76.5785979863712,39.21624412836766],[-76.57860365292751,39.21625416899994],[-76.5786097174021,39.21626408585225],[-76.57861599880891,39.21627393682538],[-76.57862231268795,39.21628377980777],[-76.5786284780476,39.21629367360092],[-76.57863431159623,39.21630367429606],[-76.57863976227218,39.21631380062616],[-76.57864498785466,39.21632400271418],[-76.57865006723856,39.21633425472071],[-76.57865507700849,39.21634452989727],[-76.5786600937436,39.21635480239632],[-76.57866519402297,39.21636504637011],[-76.57867045674718,39.2163752350784],[-76.57867595850081,39.21638534177281],[-76.57868173872885,39.216395353984],[-76.57868773362155,39.21640529220072],[-76.57869388864349,39.21641517514359],[-76.57870014809582,39.2164250224298],[-76.57870645860095,39.21643485278408],[-76.57871276330202,39.21644468581948],[-76.57871900882682,39.21645453936005],[-76.57872514063438,39.21646443302716],[-76.57873110303106,39.21647438553728],[-76.57873690645438,39.21648439422557],[-76.57874260891903,39.21649443948314],[-76.57874823015821,39.2165045132738],[-76.5787537922209,39.21651460756969],[-76.57875931598744,39.21652471614028],[-76.5787648235123,39.21653483005702],[-76.57877033683913,39.21654494219271],[-76.57877587569574,39.21655504541192],[-76.57878146328919,39.21656513169092],[-76.57878720632151,39.21657517258776],[-76.5787930595366,39.216585184154],[-76.57879885592315,39.2165952108292],[-76.57880442848047,39.21660529525149],[-76.57880959975395,39.21661548542608],[-76.57881331773878,39.21662607213261],[-76.57881612781271,39.21663686456156],[-76.57881866107405,39.21664766680624],[-76.57882093007302,39.21665851043908],[-76.57882287329404,39.21666941956044],[-76.57882484090744,39.2166803161583],[-76.57882846887179,39.2166908529981],[-76.57883396471166,39.21670098848784],[-76.57883990021155,39.21671099133882],[-76.57884568613467,39.21672102788238],[-76.57885162059206,39.21673101181253],[-76.57885793359476,39.21674081964714],[-76.5788661481967,39.21674981189286],[-76.57887342735823,39.21675896562394],[-76.57887551886105,39.21676986626834],[-76.57887788597778,39.21678076429865],[-76.5788833801835,39.21679078718231],[-76.57888988230492,39.21680053444053],[-76.57889674508475,39.21681019291448],[-76.57890336416277,39.21681994059163],[-76.57890922102713,39.21682992874405],[-76.57891466831416,39.21684005414669],[-76.57891989744866,39.21685025623345],[-76.57892496645638,39.21686051359373],[-76.57892993222093,39.21687080211068],[-76.5789348539314,39.2168810994771],[-76.57893970722269,39.2168914137126],[-76.57894438418633,39.21690178136209],[-76.57894896254388,39.21691217928405],[-76.57895352814926,39.21692257986241],[-76.57895816569857,39.21693295547684],[-76.57896295988249,39.21694327940774],[-76.57896799655515,39.21695352403895],[-76.57897388022207,39.21696348706202],[-76.57898054127295,39.21697319074661],[-76.57898702362708,39.21698295684433],[-76.5789933029194,39.21699279337485],[-76.5789995532005,39.21700264061029],[-76.57900575473187,39.21701250748766],[-76.57901189359124,39.21702239846086],[-76.57901806494982,39.21703227693938],[-76.57902436399473,39.21704210363033],[-76.57903079649441,39.21705188215752],[-76.5790372417227,39.21706166253154],[-76.57904379374082,39.21707140005078],[-76.57905055129004,39.21708104192336],[-76.57905761889054,39.21709053717961],[-76.57906523574323,39.21709977498082],[-76.57907328688499,39.21710880986203],[-76.57908140305052,39.21711781525016],[-76.57908921150569,39.21712696365886],[-76.57909641266522,39.21713639453553],[-76.57910323062826,39.21714600509421],[-76.57910982565171,39.21715571844264],[-76.57911631268817,39.21716548184705],[-76.57912280552151,39.21717524437113],[-76.57912941564115,39.21718495146703],[-76.57913626263161,39.21719455041756],[-76.57914399660878,39.21720376341146],[-76.57915205806586,39.21721281994272],[-76.57915901337127,39.21722231478975],[-76.57916430772421,39.21723246485287],[-76.57916890333382,39.21724289165198],[-76.5791738899717,39.21725318563681],[-76.57917965369676,39.21726327072459],[-76.57918497110282,39.21727343978575],[-76.57918843459287,39.21728399764136],[-76.57919003025995,39.2172949460433],[-76.5791913548319,39.21730591599258],[-76.57919257293086,39.21731687565143],[-76.57919226258396,39.217327819921],[-76.57918952024153,39.2173386077418],[-76.57918627472543,39.21734930277937],[-76.57918350094485,39.21736051025089],[-76.57918923031598,39.21736994575204],[-76.57919852920826,39.21737869144366],[-76.57920910484336,39.21738596082955],[-76.57922293855304,39.21738803718762],[-76.57923709856038,39.2173874204799],[-76.57925116628888,39.21738615667928],[-76.57926532007801,39.21738678482436],[-76.57927705233114,39.21739291796286],[-76.57928509950962,39.21740185012544],[-76.57929146994812,39.2174117563254],[-76.57929682567932,39.2174219111059],[-76.57930126600459,39.21743236256431],[-76.57930477778042,39.21744298364368],[-76.57930751970045,39.2174537659051],[-76.57931035087493,39.21746453317314],[-76.57931395765453,39.21747514648565],[-76.57931801078382,39.21748567132003],[-76.57932245565732,39.217496138107],[-76.57932713930157,39.21750656701617],[-76.57933104077362,39.21751708590167],[-76.5793325165789,39.21752794289244],[-76.57933133848573,39.21753915608672],[-76.57933317886801,39.21754965407212],[-76.57934146649521,39.21755866005545],[-76.57934976550142,39.21756770030866],[-76.57935766895088,39.21757685624483],[-76.57936410893019,39.21758656091476],[-76.5793682705536,39.21759714828977],[-76.579369460296,39.21760801326221],[-76.57936890636532,39.21761903052215],[-76.57936859449146,39.21763004144344],[-76.57937026793772,39.21764096309712],[-76.57937441629923,39.2176514441321],[-76.5793796084994,39.21766164696403],[-76.57938520889654,39.2176717512721],[-76.57939091376821,39.21768181271687],[-76.5793965862238,39.21769187314435],[-76.57940235033087,39.21770190507505],[-76.57940830826783,39.21771186203457],[-76.57941458075649,39.21772169491262],[-76.57942159717223,39.21773124851215],[-76.57942892232877,39.21774068161243],[-76.5794357427588,39.21775028405163],[-76.57944135524139,39.21776030552829],[-76.57944603944868,39.21777064525652],[-76.57945022471313,39.21778115524562],[-76.57945752826869,39.21779971226967],[-76.57945858273798,39.21780233191419],[-76.57945964879768,39.2178049497987],[-76.57946072413183,39.2178075659149],[-76.57946180526127,39.21781018115104],[-76.57946288871207,39.21781279549473],[-76.5794639721629,39.21781540983837],[-76.57946505097661,39.21781802506618],[-76.57946612399526,39.21782064117404],[-76.57946718541832,39.21782325994263],[-76.5794682352458,39.21782588137197],[-76.5794692676825,39.21782850634216],[-76.57947028040716,39.21783113574559],[-76.57947127110393,39.21783376957394],[-76.57947223513544,39.21783640871141],[-76.57947316090085,39.21783905671962],[-76.57947400782858,39.21784172065926],[-76.57947479097744,39.21784439968368],[-76.57947553007037,39.21784708755803],[-76.57947624134009,39.2178497807373],[-76.57947694449342,39.21785247568908],[-76.57947765924256,39.21785516798006],[-76.57947840182021,39.21785785406527],[-76.5794791931019,39.2178605286149],[-76.57948005163108,39.21786318899296],[-76.57948099480929,39.21786582985719],[-76.57948200406639,39.21786845834726],[-76.57948303301964,39.21787108510635],[-76.57948408514837,39.21787370924615],[-76.5794851604578,39.21787632986584],[-76.57948626127995,39.21787894427148],[-76.57948738993072,39.21788155247139],[-76.57948854642085,39.21788415266402],[-76.57948973307151,39.2178867439569],[-76.57949095220934,39.21788932455678],[-76.57949220384506,39.21789189266223],[-76.57949349145257,39.21789444828561],[-76.57949481504778,39.21789698872465],[-76.57949617811005,39.21789951309103],[-76.57949764678216,39.21790199820149],[-76.57949930343987,39.21790441732782],[-76.57950109470461,39.21790678919505],[-76.57950296139744,39.21790913430911],[-76.57950484897646,39.21791147229174],[-76.57950670058393,39.21791382275639],[-76.5795084593514,39.21791620711802],[-76.57951006843174,39.21791864318846],[-76.57951149763248,39.21792114527214],[-76.57951287576006,39.21792366789075],[-76.57951423298027,39.21792620124381],[-76.57951556697722,39.21792874532298],[-76.57951687659293,39.21793130012416],[-76.57951815952214,39.21793386383749],[-76.57951941460686,39.21793643645882],[-76.57952063952584,39.21793901888064],[-76.57952183196845,39.21794161019389],[-76.57952299194,39.21794420949782],[-76.57952411597196,39.21794681587921],[-76.57952520173777,39.21794943113126],[-76.57952625040592,39.21795205345665],[-76.57952725734998,39.21795468193795],[-76.57952822140656,39.21795731747186],[-76.57952914488638,39.21795996096739],[-76.57953003125253,39.21796261423851],[-76.57953088167373,39.21796527548788],[-76.57953170078719,39.21796794383128],[-76.57953249091418,39.21797061837628],[-76.57953325436524,39.21797330003198],[-76.57953399579362,39.21797598521183],[-76.57953471634664,39.2179786757216],[-76.57953542066676,39.21798136977631],[-76.5795361099174,39.21798406647939],[-76.57953678873567,39.21798676494661],[-76.5795374594375,39.21798946518633],[-76.57953812434427,39.21799216630603],[-76.57953878809845,39.21799486652083],[-76.57953945069998,39.21799756583069],[-76.57954011910209,39.21800026335981],[-76.5795407921522,39.21800295820326],[-76.57954146172305,39.21800565393495],[-76.57954211158719,39.21800835319916],[-76.57954274174452,39.21801105599589],[-76.57954335220042,39.2180137614244],[-76.57954394179694,39.2180164694805],[-76.57954451052868,39.21801918106491],[-76.57954505609045,39.21802189436792],[-76.57954557731887,39.21802461028606],[-76.57954607653522,39.21802732792691],[-76.57954654910769,39.21803004727381],[-76.57954696026506,39.21803277360696],[-76.57954721729519,39.21803551920509],[-76.57954737930244,39.21803827617286],[-76.57954750887058,39.21804103572677],[-76.57954767438376,39.21804378730246],[-76.57954794073103,39.21804652392616],[-76.57954837282804,39.21804923412022],[-76.57954902396814,39.21805191357178],[-76.57954980360029,39.21805460068992],[-76.57955068860244,39.21805728908637],[-76.57955169530891,39.21805995810164],[-76.57955283542199,39.21806258705979],[-76.57955412526536,39.21806515710287],[-76.57955557886795,39.21806764576159],[-76.5795572195226,39.21807003059997],[-76.57955923524707,39.21807224022913],[-76.57956157490413,39.21807430599321],[-76.57956408638891,39.21807629670727],[-76.57956661411741,39.21807828207479],[-76.57956900597424,39.21808033271247],[-76.57957110870187,39.21808251653047],[-76.57957287927937,39.21808486310051],[-76.57957450340338,39.21808730192623],[-76.57957599161294,39.2180898132282],[-76.57957734748865,39.21809237900364],[-76.57957857113178,39.2180949821381],[-76.57957966727551,39.21809760553374],[-76.5795806371739,39.21810023298098],[-76.57958122111067,39.21810291939779],[-76.57958134013582,39.21810569963183],[-76.5795813177445,39.21810850368024],[-76.57958148319517,39.21811126606495],[-76.57958216229369,39.21811391769227],[-76.5795833457444,39.21811646393353],[-76.57958467990737,39.21811898098894],[-76.57958614043865,39.21812147327522],[-76.57958770185219,39.21812394250259],[-76.57958934211452,39.21812639399674],[-76.57959103690301,39.21812882857146],[-76.5795927653474,39.21813125065577],[-76.57959450195636,39.21813366286073],[-76.57959622471246,39.21813606780976],[-76.57959798349911,39.21813845036835],[-76.57959986760278,39.21814079013836],[-76.57960183758848,39.21814309778795],[-76.57960385515244,39.21814538849311],[-76.579605880849,39.21814767472345],[-76.57960787407445,39.2181499689445],[-76.57960979653046,39.21815228543144],[-76.57961160761337,39.21815463664986],[-76.57961326902472,39.21815703687496],[-76.57961474016079,39.21815949857233],[-76.57961599085577,39.21816203154241],[-76.57961712320837,39.21816460282209],[-76.57961818130153,39.2181671990576],[-76.57961917210444,39.21816981667078],[-76.57962010373349,39.21817245388912],[-76.57962097967865,39.21817510802286],[-76.57962181037229,39.21817777730771],[-76.57962260046233,39.21818045905805],[-76.57962335690719,39.21818315149724],[-76.5796240878288,39.21818585195199],[-76.57962479787494,39.21818855773668],[-76.57962549632008,39.21819126708286],[-76.57962618780677,39.2181939782057],[-76.57962688162013,39.21819668753533],[-76.57962758240267,39.21819939328673],[-76.57962829710762,39.21820209458418],[-76.57962903386743,39.21820478695278],[-76.57962979731934,39.21820746950841],[-76.57963052598947,39.21821015914567],[-76.57963119319645,39.21821286387602],[-76.57963181749982,39.21821557836131],[-76.57963241861708,39.2182182972674],[-76.57963301509722,39.21822101705769],[-76.57963362665767,39.21822373239806],[-76.57963427302138,39.21822643705372],[-76.57963497157924,39.21822912748389],[-76.57963574437005,39.21823179746196],[-76.57963660878478,39.21823444344719],[-76.5796375833883,39.21823705920061],[-76.57963879808166,39.21823961005699],[-76.579640327119,39.21824207196138],[-76.5796420591324,39.21824447874438],[-76.57964388161183,39.21824686153031],[-76.57964568088921,39.2182492514394],[-76.57964734560188,39.2182516814015],[-76.5796487666977,39.2182541852558],[-76.5796499208465,39.21825679174358],[-76.57965079896577,39.21825947020587],[-76.57965138393655,39.21826217824464],[-76.57965173607998,39.21826489806038],[-76.57965195727643,39.21826763362111],[-76.57965208692369,39.21827038056406],[-76.57965216442477,39.2182731336257],[-76.57965222918818,39.21827588664176],[-76.57965232061167,39.21827863524934],[-76.57965250348312,39.21828138958922],[-76.5796527407207,39.21828415403235],[-76.5796528703253,39.21828690818139],[-76.57965273264061,39.2182896271434],[-76.57965197243504,39.21829226460699],[-76.57965055730132,39.21829481775371],[-76.57964937933356,39.21829740868191],[-76.5796492268892,39.21830027351743],[-76.57967489210309,39.21841346379011],[-76.57969935586323,39.21851718345284],[-76.57973035601732,39.21864546376322],[-76.57975926721006,39.21875750812774],[-76.57978778137188,39.2188650390529],[-76.57964683418533,39.21887447078845],[-76.57951184517367,39.21888268513071],[-76.57937425397971,39.21888915779126],[-76.57922959335686,39.21889793526176],[-76.57909095003664,39.21890685303878],[-76.57890451557589,39.21891812766797],[-76.57878594689633,39.21892498586919],[-76.57868960676664,39.21893018344656],[-76.57869112561087,39.21900677141252],[-76.57869295835471,39.21909466709384],[-76.57869737834766,39.21925278695569],[-76.57870163703053,39.21938149576809],[-76.57870261186915,39.21953201778222],[-76.57870387780859,39.21967368346717],[-76.57870482648923,39.21979114045175],[-76.57870604782946,39.22000161292772],[-76.57870769119812,39.22017979575624],[-76.57871009589897,39.22033798580235],[-76.5787123495805,39.2206559213533],[-76.57879321283048,39.22065751232833],[-76.57878255416583,39.22074537664633],[-76.57895773449536,39.22075000562193],[-76.57903661916804,39.22075191991649],[-76.57903703557086,39.2207537608019],[-76.5790365491298,39.2207592412013],[-76.57903618542746,39.22076472384248],[-76.57903637291324,39.22077021296461],[-76.57903643996556,39.22077570165478],[-76.57903617236232,39.22078118734298],[-76.57903583875755,39.22078667189365],[-76.57903547851303,39.22079215724953],[-76.57903512521656,39.22079764263032],[-76.57903481707731,39.22080312907384],[-76.57903458536163,39.22080861669232],[-76.57903438259096,39.22081410531536],[-76.57903419602712,39.22081959489728],[-76.57903402104876,39.22082508361999],[-76.57903385532917,39.22083057327672],[-76.57903369539963,39.22083606295417],[-76.57903354009676,39.22084155354896],[-76.57903338595725,39.22084704324721],[-76.57903323065969,39.22085253294122],[-76.57903307073003,39.22085802261864],[-76.57903290385225,39.22086351227111],[-76.57903272655233,39.22086900188624],[-76.57903254577828,39.22087449148884],[-76.57903239626,39.22087998300515],[-76.57903226988603,39.22088547730679],[-76.57903215625016,39.22089097165408],[-76.57903204377232,39.22089646600555],[-76.57903191971427,39.22090196031549],[-76.57903177481727,39.22090745364986],[-76.57903159751181,39.22091294416566],[-76.57903137505967,39.22091843181717],[-76.57903109703868,39.22092391656696],[-76.57903075187939,39.22092939657209],[-76.57903032800691,39.22093487089013],[-76.57902975943027,39.22094033658215],[-76.57902895702486,39.22094578612209],[-76.57902798560745,39.22095122514725],[-76.5790269076951,39.22095665658414],[-76.57902579042063,39.22096208607823],[-76.57902469860632,39.22096751836599],[-76.57902369939592,39.22097295729137],[-76.57902296978459,39.22097843411577],[-76.5790224623043,39.22098394686734],[-76.57902167493064,39.22098940006426],[-76.57902013678286,39.22099471905424],[-76.57901787749387,39.22099998411296],[-76.57901500091762,39.22100506229754],[-76.5790115011151,39.22100978333936],[-76.57900631620565,39.22101394435686],[-76.57899960277328,39.22101496427759],[-76.57899267577764,39.22101528442697],[-76.57898570068984,39.22101551252388],[-76.57897868439404,39.22101565940245],[-76.57897163377426,39.22101573589664],[-76.57896455456184,39.22101575193556],[-76.5789574547935,39.22101571925827],[-76.57895034019525,39.22101564869457],[-76.57894321996184,39.22101555198764],[-76.57893609751389,39.22101543815752],[-76.57892898320414,39.22101531895149],[-76.57892188160054,39.22101520519527],[-76.57891479958717,39.22101510772297],[-76.57890774067003,39.22101502114247],[-76.57890068319945,39.22101488592462],[-76.57889362599056,39.22101470656911],[-76.57888657014279,39.22101449298847],[-76.57887951326524,39.22101425778495],[-76.57887245760452,39.22101401267683],[-76.5788654031019,39.22101376757237],[-76.57885834851913,39.22101353597897],[-76.57885129496093,39.22101332690828],[-76.57884424118899,39.22101315386755],[-76.57883718945534,39.22101302767431],[-76.57883007025748,39.22101295168214],[-76.5788229405172,39.22101328640716],[-76.57881636950903,39.22101489413679],[-76.57881052076166,39.22101812405963],[-76.578804448861,39.2210209045931],[-76.5787976615014,39.22102228274723],[-76.57879057816332,39.22102299416267],[-76.57878349322803,39.22102319392914],[-76.57877645125843,39.22102317856316],[-76.57876939828574,39.22102306587307],[-76.57876234000388,39.22102287209335],[-76.57875527862745,39.22102261434671],[-76.57874821752355,39.22102231066093],[-76.57874116122282,39.22102197816697],[-76.57873411078171,39.2210216339835],[-76.57872704529873,39.22102109247491],[-76.5787199383336,39.22102012564908],[-76.57871286345114,39.22101921658788],[-76.57870589752976,39.22101887540848],[-76.5786991198225,39.22101960232799],[-76.57869257278561,39.22102146325577],[-76.57868614826326,39.22102394976394],[-76.57867971633809,39.22102651281147],[-76.57867315056156,39.22102860427045],[-76.57866634309187,39.22102985803719],[-76.57865934331433,39.22103073368655],[-76.57865223774373,39.22103128827816],[-76.57864510521622,39.22103150678183],[-76.57863803036348,39.2210313732874],[-76.57863108535697,39.22103082499932],[-76.5786242484476,39.22102962403387],[-76.57861746734103,39.22102799629889],[-76.57861069389918,39.22102624788659],[-76.57860387881513,39.22102468668654],[-76.57859697751553,39.22102360349039],[-76.57858999053477,39.22102290822215],[-76.57858295004809,39.22102244786478],[-76.57857588083881,39.22102214413949],[-76.57856880771187,39.22102191516439],[-76.57856175306512,39.22102169436229],[-76.57855469809763,39.22102152760532],[-76.57854764046132,39.22102142028985],[-76.57854057908366,39.22102135799948],[-76.57853351751353,39.221021328136],[-76.57852645699448,39.22102131629152],[-76.5785193918915,39.2210212963231],[-76.57851228911392,39.22102118524025],[-76.5785051747241,39.22102107951991],[-76.57849809426212,39.22102111083951],[-76.57849109209933,39.22102141267374],[-76.57848420681994,39.22102231304492],[-76.57847769832699,39.22102470285674],[-76.57847222857538,39.22102807194328],[-76.578467783642,39.22103242475861],[-76.57846358378032,39.22103685051634],[-76.57845947861894,39.2210413198515],[-76.57845546925712,39.22104584267662],[-76.57845153955748,39.22105040632282],[-76.57844801127577,39.22105523623993],[-76.57844467002045,39.22106016321209],[-76.5784402589839,39.22106426753297],[-76.57843464270448,39.22106754421191],[-76.57842839953702,39.22107030069051],[-76.57842192853298,39.22107261676994],[-76.57841538747476,39.22107463894328],[-76.57840870176786,39.22107644801268],[-76.57840190852778,39.22107803420286],[-76.57839504487,39.22107938773858],[-76.57838814661837,39.22108052135946],[-76.57838122449733,39.22108157922866],[-76.57837428066257,39.22108258837735],[-76.57836731861485,39.22108354431426],[-76.57836034069166,39.22108444344455],[-76.57835334924116,39.22108528037207],[-76.57834635006941,39.22108605241529],[-76.57833934321393,39.22108675326898],[-76.57833233447559,39.22108738115225],[-76.57832532389708,39.22108792885918],[-76.57831827801903,39.22108837555153],[-76.57831119127596,39.22108868337661],[-76.57830409279491,39.22108882271331],[-76.578297005929,39.22108876121749],[-76.57828995865256,39.22108846836316],[-76.57828297546594,39.22108791361191],[-76.57827604743144,39.22108704198403],[-76.57826915582827,39.22108588584031],[-76.5782622990758,39.22108451633675],[-76.57825547211401,39.22108300551741],[-76.57824867104628,39.22108142452995],[-76.57824189428123,39.22107984633176],[-76.5782351572101,39.22107821422905],[-76.57822846606715,39.22107645347957],[-76.57822180084507,39.22107461805814],[-76.57821514618458,39.22107275925402],[-76.57820848091502,39.22107093193868],[-76.57820178851905,39.22106918739717],[-76.5781950501528,39.22106757870778],[-76.57818824579262,39.22106616254763],[-76.5781813671344,39.22106497221565],[-76.5781744319016,39.22106394832414],[-76.5781674648299,39.2210630207012],[-76.57816048717568,39.2210621200632],[-76.57815352368009,39.22106117533746],[-76.5781465920773,39.22106012533473],[-76.57813967107886,39.22105904474323],[-76.57813275012339,39.22105795694523],[-76.57812583272785,39.22105685474717],[-76.57811892241978,39.22105572915386],[-76.57811202155268,39.22105457386839],[-76.57810513249082,39.22105338079221],[-76.57809822490086,39.22105218764901],[-76.57809119948412,39.22105114000811],[-76.57808417545581,39.22105005363827],[-76.57807730583838,39.22104870659707],[-76.57807074020704,39.22104687242584],[-76.57806460006107,39.22104437230638],[-76.57805880707463,39.22104133026464],[-76.57805323622654,39.22103793321342],[-76.57804776947032,39.2210343635865],[-76.57804228530156,39.22103080110291],[-76.57803666336841,39.2210274263867],[-76.57803078577965,39.22102439574952],[-76.57802459145458,39.22102165942889],[-76.57801814930156,39.22101931405591],[-76.57801154185195,39.22101750225047],[-76.57800449419503,39.22101630049111],[-76.57799730576117,39.22101598819521],[-76.57799049946921,39.22101704195401],[-76.57798397782554,39.22102008295479],[-76.57798080122659,39.22102457903264],[-76.57797962014259,39.22103001459302],[-76.57797961354427,39.22103580117685],[-76.57798066704544,39.22104131052951],[-76.57798341237522,39.22104624766543],[-76.57798747813439,39.22105094633895],[-76.57799119378691,39.22105570860948],[-76.57799295707669,39.22106084398848],[-76.57799266354594,39.22106639173472],[-76.57799163352026,39.22107193593187],[-76.57799045726108,39.22107733908151],[-76.57798903563541,39.22108271882936],[-76.5779875260429,39.22108809105465],[-76.5779860858724,39.2210934734381],[-76.57798484126783,39.22109887994505],[-76.57798373896036,39.22110431038395],[-76.57798269218415,39.22110975003029],[-76.57798161417868,39.22111518325882],[-76.57798042397359,39.22112059446524],[-76.57797903480835,39.22112596802416],[-76.57797744767494,39.22113133186341],[-76.57797578838002,39.22113675669611],[-76.57797385847746,39.22114211840193],[-76.5779714376097,39.22114727746835],[-76.57796830077642,39.22115209616776],[-76.57796441893066,39.22115659060974],[-76.57795998714604,39.2211608677876],[-76.57795516156264,39.22116496069092],[-76.57795010064723,39.22116890051599],[-76.57794496053991,39.22117272025235],[-76.57793975741006,39.22117642716442],[-76.5779342359348,39.22117991944668],[-76.57792841871617,39.22118309629305],[-76.57792234341058,39.22118585695155],[-76.57791600726293,39.22118827527619],[-76.5779094248136,39.22119043779411],[-76.57790266633639,39.22119221144256],[-76.57789580208906,39.22119346586128],[-76.57788887869248,39.22119415077418],[-76.57788187755558,39.22119447149216],[-76.57787481656428,39.22119453617309],[-76.57786772061142,39.22119444309143],[-76.57786060995772,39.22119429050498],[-76.57785350834865,39.22119417488261],[-76.57784643492971,39.22119418727194],[-76.57783935729643,39.22119412938483],[-76.57783227628006,39.22119405617188],[-76.5778252252611,39.2211941965512],[-76.57781822964749,39.22119475689258],[-76.57781127396053,39.22119561373365],[-76.5778043415689,39.221196642707],[-76.57779742359935,39.22119777802379],[-76.57779051232065,39.22119895660163],[-76.5777836000015,39.22120011535819],[-76.57777667084744,39.22120118397585],[-76.57776970290963,39.22120215336781],[-76.57776274065459,39.22120314079541],[-76.57775583542734,39.22120427525482],[-76.57774903856217,39.22120568754377],[-76.5777423934156,39.22120748681261],[-76.57773586350409,39.22120957654667],[-76.5777293769006,39.22121178353756],[-76.57772286515237,39.22121393458923],[-76.57771626655118,39.2212158907597],[-76.57770960498696,39.22121772419722],[-76.57770295146433,39.22121956847266],[-76.57769637930369,39.22122155716522],[-76.57768990866917,39.22122380474646],[-76.57768365028072,39.22122638728025],[-76.57767824380811,39.22122981690974],[-76.5776747546769,39.22123467396781],[-76.57767161196075,39.22123969891664],[-76.57766991571629,39.22124490652413],[-76.57767162909245,39.22125044797969],[-76.57767779462077,39.2212525752882],[-76.57768490291117,39.22125293145335],[-76.57769196771018,39.22125300641834],[-76.57769904695722,39.22125298865465],[-76.57770610851794,39.22125302397285],[-76.57771316896877,39.22125305117964],[-76.57772022833664,39.22125306577116],[-76.57772728774738,39.2212530731562],[-76.57773434831607,39.22125308054498],[-76.57774140768932,39.22125309423446],[-76.57774846698756,39.22125312053419],[-76.57775552616258,39.221253167551],[-76.57776258402961,39.22125323978447],[-76.57776964170925,39.22125334354412],[-76.5777766992871,39.22125346441781],[-76.57778375680604,39.22125359519943],[-76.57779081312417,39.22125373318256],[-76.57779787055748,39.22125387837551],[-76.57780492678997,39.22125403076991],[-76.57781198415377,39.22125418767187],[-76.57781904033811,39.22125434817231],[-76.57782609650106,39.22125451227532],[-76.577833152648,39.22125467908022],[-76.57784020995295,39.22125484588884],[-76.5778472660946,39.22125501359366],[-76.57785432224696,39.22125517949651],[-76.57786137841009,39.22125534359741],[-76.57786843575268,39.22125550409903],[-76.57787549195871,39.22125566099302],[-76.57788254819688,39.22125581248202],[-76.57788960563059,39.22125595766943],[-76.57789666310715,39.22125609565033],[-76.5779037194793,39.22125622461908],[-76.57791077705771,39.2212563454847],[-76.57791783470569,39.22125645463997],[-76.57792489360277,39.22125654848612],[-76.57793195144356,39.22125662521321],[-76.57793901052801,39.22125668753191],[-76.57794606968748,39.22125673723951],[-76.57795313005853,39.22125677794325],[-76.57796018931435,39.22125681143629],[-76.57796724859699,39.22125684042516],[-76.57797430904834,39.2212568676162],[-76.57798136834701,39.22125689390197],[-76.57798842762432,39.22125692379027],[-76.57799548803287,39.22125695818615],[-76.57800254723519,39.22125700068428],[-76.57800960638404,39.22125705218956],[-76.57801666429455,39.22125711720171],[-76.57802372327748,39.22125719662974],[-76.57803078100066,39.22125729316759],[-76.57803783743205,39.22125741221987],[-76.57804489485551,39.22125755919949],[-76.57805194981313,39.22125773139162],[-76.57805900465839,39.22125792249929],[-76.57806605941799,39.2212581280187],[-76.5780731141295,39.22125834164456],[-76.57808016880897,39.2212585606745],[-76.5780872234991,39.22125877790255],[-76.57809427822146,39.22125898972557],[-76.57810133300806,39.22125919073903],[-76.57810838788566,39.22125937643921],[-76.57811544404979,39.22125954052484],[-76.57812250151645,39.22125968029369],[-76.57812955793752,39.221259801142],[-76.5781366167603,39.22125990758603],[-76.57814367451066,39.2212599996133],[-76.57815073348867,39.22126007993445],[-76.5781577925362,39.22126014854528],[-76.57816485280068,39.2212602072515],[-76.57817191196067,39.22126025694553],[-76.57817897116342,39.22126029943304],[-76.57818603040904,39.22126033471405],[-76.57819308967608,39.22126036639159],[-76.57820018654782,39.22126050089271],[-76.57820731878863,39.22126072469769],[-76.57821444209165,39.22126089352258],[-76.57822151330281,39.22126086398835],[-76.5782284881205,39.22126049091027],[-76.57823534448633,39.22125958864861],[-76.57824212716781,39.22125783398431],[-76.57824860838967,39.22125536121593],[-76.57825451591198,39.22125238194904],[-76.57825948543145,39.22124862013685],[-76.57826372627719,39.22124412247148],[-76.57826780541657,39.2212395539641],[-76.57827141480799,39.22123471984018],[-76.57827505617414,39.22122996149647],[-76.57827993185909,39.22122620475088],[-76.57828582824685,39.22122314977695],[-76.57829223128022,39.22122058214329],[-76.57829878555371,39.22121848255731],[-76.57830565471173,39.2212175704289],[-76.57831282448386,39.22121790876133],[-76.57831991315437,39.22121844857651],[-76.57832681641032,39.22121959485043],[-76.57833337372003,39.22122166408068],[-76.57833954545153,39.22122450479401],[-76.57834455867493,39.22122820339061],[-76.57834825615325,39.22123291153743],[-76.57835191153143,39.22123768889288],[-76.57835594101805,39.2212422613138],[-76.57836106675892,39.22124592878664],[-76.57836736387289,39.2212485222346],[-76.57837394259774,39.22125049605688],[-76.57838071217185,39.22125211835962],[-76.57838758472978,39.2212533645062],[-76.57839449640656,39.22125445856113],[-76.57840143519941,39.22125547164294],[-76.57840839405853,39.22125642084106],[-76.57841536360745,39.22125732503822],[-76.57842233679636,39.22125820132386],[-76.57842930888626,39.22125906769659],[-76.57843629028332,39.2212599268961],[-76.57844328111584,39.22126075730412],[-76.5784502780595,39.22126153368691],[-76.57845727894257,39.22126223171563],[-76.57846427927201,39.22126282795386],[-76.57847143489356,39.22126301489483],[-76.57847803064664,39.22126134061569],[-76.57848405653786,39.22125851309337],[-76.57848999012592,39.22125543302098],[-76.57849613935241,39.22125270232441],[-76.57850289110995,39.22125069351425],[-76.57850962634463,39.22124873688958],[-76.57851540769836,39.22124594091544],[-76.57851928455052,39.22124150228591],[-76.57852232393118,39.22123631750556],[-76.57852640464777,39.2212318706001],[-76.57853166928341,39.22122794229133],[-76.57853764469999,39.22122483804566],[-76.57854417588528,39.22122331035803],[-76.57855105967576,39.22122266399776],[-76.57855816295148,39.22122249944149],[-76.57856536768189,39.22122260638371],[-76.5785725546999,39.22122277091175],[-76.57857963824438,39.22122280895869],[-76.57858673821501,39.22122281103299],[-76.5785938315242,39.22122295991002],[-76.5786008580865,39.22122342832365],[-76.57860776136008,39.22122437731036],[-76.57861455665062,39.22122576458857],[-76.57862128659855,39.22122742997261],[-76.57862798914257,39.22122922497008],[-76.57863470220535,39.22123100379093],[-76.57864146256745,39.2212326179386],[-76.5786483209058,39.22123391896633],[-76.57865528161717,39.22123494652431],[-76.5786622612205,39.22123591289667],[-76.5786691727555,39.22123703125597],[-76.57867593387796,39.2212385174937],[-76.57868252931982,39.22124040758618],[-76.57868902726732,39.22124252972939],[-76.57869545943072,39.2212448092725],[-76.57870185519344,39.22124717335782],[-76.57870824627115,39.22124954643376],[-76.57871466204175,39.22125185654345],[-76.57872109196558,39.22125412346617],[-76.57872750551186,39.22125641825392],[-76.57873407390223,39.22125876944544],[-76.57873748583054,39.2212594960106],[-76.57874088812073,39.22126028559568],[-76.5787442880255,39.22126108688222],[-76.57874769393419,39.221261852159],[-76.57875111309419,39.22126253100843],[-76.57875455505288,39.22126307572347],[-76.57875802818896,39.22126344039448],[-76.57876153090615,39.22126369887953],[-76.57876505947387,39.22126389440269],[-76.57876860348604,39.2212640242243],[-76.57877215601047,39.22126408561715],[-76.57877570894101,39.22126407855208],[-76.57877925535088,39.22126399940115],[-76.57878278714458,39.22126384633374],[-76.578786296232,39.22126361661849],[-76.57878977575581,39.22126329491751],[-76.57879322387552,39.22126280105488],[-76.57879664738427,39.22126216117753],[-76.57880005526839,39.22126142215829],[-76.57880345536685,39.22126062906424],[-76.57880685551868,39.22125982696248],[-76.57881026471559,39.22125906182502],[-76.5788136896438,39.22125837781407],[-76.57881712581562,39.22125775059247],[-76.5788205643034,39.22125712337915],[-76.5788240062171,39.22125650428497],[-76.57882745266137,39.22125590232179],[-76.5788309035987,39.22125532379487],[-76.57883436361317,39.22125477682771],[-76.57883783034602,39.2212542686181],[-76.57884130722316,39.2212538072853],[-76.57884479215303,39.22125335498906],[-76.57884828175763,39.22125289550331],[-76.57885177599431,39.22125243603404],[-76.57885527365161,39.22125198558476],[-76.57885877467606,39.22125155316304],[-76.57886227901959,39.22125114687574],[-76.57886578431813,39.22125077482138],[-76.57886929052354,39.22125044510678],[-76.57887279757713,39.22125016764031],[-76.57887630428343,39.22124994872318],[-76.57887980942573,39.22124979825957],[-76.57888331522916,39.22124973157069],[-76.57888682844968,39.2212497811089],[-76.5788903468246,39.22124993785823],[-76.57889386812873,39.22125018649746],[-76.57889738899486,39.22125050899889],[-76.57890090486563,39.22125089273536],[-76.57890441353196,39.22125131968328],[-76.57890791160523,39.22125177541796],[-76.57891139687082,39.22125224281678],[-76.57891487051883,39.22125271647923],[-76.57891834177606,39.22125320274395],[-76.57892181064253,39.22125370161088],[-76.57892527828153,39.22125421218344],[-76.5789287435405,39.22125473355669],[-76.57893220757741,39.22125526573482],[-76.57893566923954,39.22125580781289],[-76.57893912853226,39.22125635889019],[-76.57894258546094,39.22125691806588],[-76.57894604117826,39.22125748624491],[-76.57894949570017,39.22125806072505],[-76.57895294670536,39.22125864239866],[-76.57895639651521,39.22125923037338],[-76.57895984397699,39.22125982374421],[-76.57896329025418,39.22126042161459],[-76.5789667341886,39.22126102398038],[-76.5789701757857,39.22126162994081],[-76.57897361969887,39.22126223590941],[-76.57897710313978,39.22126281589714],[-76.5789806097519,39.2212633941663],[-76.5789841033908,39.22126401202316],[-76.5789875502496,39.2212647071791],[-76.57899091649453,39.2212655218494],[-76.57899416716073,39.22126649374141],[-76.57899725675956,39.22126767763945],[-76.57900006265723,39.22126924875565],[-76.57900265251037,39.22127112446098],[-76.57900514190324,39.22127314663293],[-76.57900764989401,39.2212751571614],[-76.57901029204552,39.22127700152689],[-76.5790130170149,39.22127874530211],[-76.5790157606196,39.22128047112851],[-76.57901851935348,39.22128218439821],[-76.57902128741043,39.22128388779274],[-76.57902406244769,39.2212855858075],[-76.5790268386484,39.22128728292564],[-76.57902961252793,39.22128898093616],[-76.57903310863313,39.22129113643079],[-76.57905488855678,39.22129436908201],[-76.57909283634619,39.22129441510823],[-76.57921860164062,39.22129907723599],[-76.57933404841482,39.22130027657972],[-76.57944458443782,39.22130412451944],[-76.57944172035954,39.22138178665918],[-76.57943661687965,39.22150574173062],[-76.57943127341404,39.22164323014658],[-76.5792413436873,39.22162793963015],[-76.57896000947385,39.22160513630579],[-76.57862349047595,39.22157886975722],[-76.57830396964269,39.22155279213251],[-76.57809129775936,39.22153627404452],[-76.57781173800306,39.22151314736055],[-76.57743860301439,39.22148267055799],[-76.57715806513704,39.22146031886825],[-76.57701423636723,39.22144885970764],[-76.57625705365277,39.22138961335341],[-76.57624010259457,39.22153895273085],[-76.57625353203582,39.22154019835632],[-76.57625457823558,39.22152944502541],[-76.57701167380509,39.22158801819163],[-76.57721980912892,39.22160518396661],[-76.57756345871309,39.22163248007286],[-76.57792016486421,39.2216610706097],[-76.5782553207779,39.2216887349874],[-76.57858315099466,39.22171583073377],[-76.57885460996296,39.2217391652126],[-76.57909203116873,39.22175904681239],[-76.57942640034376,39.22178732475626],[-76.57940997814285,39.22224166216992],[-76.57940527046802,39.22236603118615],[-76.57964062182204,39.22236972985734],[-76.5796428093545,39.22237189055451],[-76.57964515040966,39.22237394010495],[-76.57964759132307,39.22237594497398],[-76.57965001350534,39.2223779840055],[-76.57965246128731,39.22238000241071],[-76.57965497783641,39.22238194629754],[-76.57965760516737,39.2223837608689],[-76.57966038876368,39.22238539224094],[-76.57966333777237,39.22238686026354],[-76.5796664112248,39.22238823865383],[-76.57966958954624,39.22238950842537],[-76.579672855494,39.22239064789769],[-76.57967619066207,39.22239163628693],[-76.57967957548634,39.22239245280514],[-76.57968299152886,39.22239308207295],[-76.57968642663323,39.22239362133108],[-76.5796898793802,39.22239411471252],[-76.57969334511095,39.22239456670452],[-76.57969682495153,39.22239498271576],[-76.57970031424307,39.22239536723352],[-76.57970381411161,39.22239572566644],[-76.57970732221447,39.22239606251005],[-76.57971083620352,39.22239638316064],[-76.57971435488878,39.22239669301855],[-76.57971787593276,39.22239699567857],[-76.57972139929818,39.22239729744602],[-76.57972492033157,39.22239760190739],[-76.57972844015364,39.22239791537206],[-76.57973195642165,39.2223982423356],[-76.57973546679284,39.2223985872935],[-76.5797389700772,39.22239895564617],[-76.57974246393202,39.22239935188913],[-76.57974595423282,39.22239976163095],[-76.57974944569698,39.22240017047605],[-76.57975293832992,39.22240057752369],[-76.5797564298048,39.22240098456705],[-76.57975992242716,39.22240139341597],[-76.5797634150389,39.22240180406629],[-76.57976690647125,39.22240221831544],[-76.57977039671904,39.22240263706413],[-76.5797738869295,39.22240306211805],[-76.57977737362854,39.2224034934647],[-76.579780860285,39.22240393201736],[-76.57978434340878,39.22240438046584],[-76.57978782416319,39.22240483791352],[-76.57979130137423,39.22240530705853],[-76.57979477503655,39.22240578880162],[-76.57979824630819,39.22240628314701],[-76.5798017128571,39.22240679278858],[-76.57980517468863,39.22240731682564],[-76.57980863178676,39.22240785796045],[-76.57981208413015,39.22240841979605],[-76.5798155328716,39.22240900323736],[-76.57981897685835,39.22240960737947],[-76.579822414927,39.22241023311897],[-76.57982584940432,39.22241087866267],[-76.57982927798486,39.22241154220075],[-76.57983270066336,39.22241222463395],[-76.57983611860317,39.22241292506565],[-76.57983952950417,39.22241364078528],[-76.57984293451912,39.22241437269781],[-76.57984633365331,39.22241511990239],[-76.57984972575403,39.22241588149421],[-76.579853110832,39.22241665567163],[-76.57985648888717,39.22241744243475],[-76.57985984464115,39.22241827956159],[-76.57986316394692,39.22241920933804],[-76.57986645506546,39.22242020567121],[-76.5798697308844,39.2224212433853],[-76.57987299850647,39.22242229638324],[-76.57987627198284,39.22242333859269],[-76.57987955841092,39.22242434481723],[-76.57988287068909,39.22242528807968],[-76.57988621823088,39.22242614319195],[-76.5798896209468,39.2224268723925],[-76.57989306946594,39.22242749366346],[-76.57989654616185,39.22242805017907],[-76.57990003109731,39.22242858420457],[-76.5799035043405,39.22242913710451],[-76.57990694594892,39.22242975204487],[-76.57991033598535,39.22243047129088],[-76.57991365567611,39.22243133621121],[-76.57991695025939,39.22243233435688],[-76.57992023610761,39.22243343876313],[-76.57992346450851,39.22243466186652],[-76.57992658789703,39.22243601790923],[-76.57992955755562,39.22243752022858],[-76.57993232592462,39.22243918216611],[-76.57993485932481,39.22244101981526],[-76.5799371994831,39.22244302701991],[-76.5799393941136,39.22244516431663],[-76.57994149326262,39.22244738954791],[-76.57994354232821,39.22244966324196],[-76.57994559135663,39.22245194324132],[-76.5799476869147,39.22245418827674],[-76.5799498767272,39.22245635708327],[-76.57995222011012,39.22245840663582],[-76.57995475882217,39.2224603253736],[-76.57995739868898,39.22246217601421],[-76.57996003858263,39.22246402215092],[-76.5799625750376,39.22246593097196],[-76.5799649046046,39.22246796696309],[-76.57996693779464,39.22247018385082],[-76.57996871996318,39.22247254936941],[-76.57997036846676,39.22247499728133],[-76.57997199837247,39.22247745683676],[-76.57997372587892,39.22247986179395],[-76.57997566836399,39.22248214231222],[-76.5799778339446,39.22248429661901],[-76.57998014708157,39.22248636948294],[-76.57998255667185,39.22248838594295],[-76.57998501624463,39.22249037105454],[-76.57998747469685,39.22249234985659],[-76.57998993901396,39.22249431606864],[-76.57999246730058,39.22249623566909],[-76.57999502350297,39.22249813465147],[-76.57999756808238,39.22250004079841],[-76.58000006265834,39.22250198189678],[-76.58000246885557,39.22250398483251],[-76.58000476923414,39.22250606125343],[-76.58000699401504,39.22250819235126],[-76.58000916182291,39.22251036197869],[-76.58001129242969,39.22251255579395],[-76.58001340561262,39.22251475855467],[-76.58001551301084,39.22251696039382],[-76.58001884107843,39.22252091321169],[-76.58001925858362,39.22252374855659],[-76.58000731276401,39.22259722919429],[-76.58000628686409,39.22267649858032],[-76.58000305555807,39.22277933616061],[-76.5799989132676,39.22290207138722],[-76.57998516742695,39.22290159612641],[-76.57998367432532,39.2229474665538],[-76.57991487820728,39.22302138145714],[-76.57972823495032,39.22301858560518],[-76.5794991517387,39.22301519782568],[-76.5792295494538,39.22301186791293],[-76.57904674970021,39.22300969098099],[-76.57887072412956,39.2230074146653],[-76.57866616903564,39.22300461050027],[-76.5784532532554,39.22300111928101],[-76.57813891637367,39.22299573724197],[-76.57783832502822,39.22299069475673],[-76.57760423294516,39.22298872920933],[-76.57737864012387,39.22298596238186],[-76.57706276466932,39.222981683481],[-76.57683176839019,39.22297831963115],[-76.57681215276035,39.22299389003058],[-76.57680598178266,39.22326935123073],[-76.57682318763959,39.22328329787852],[-76.5768225826157,39.22329426448287],[-76.57697930435747,39.22329642204637],[-76.57712801436581,39.22329801997499],[-76.57727203176778,39.22329982420634],[-76.57742579901382,39.22330202457853],[-76.57759589860088,39.22330384845596],[-76.57788029783795,39.22330791362489],[-76.57804153886815,39.22331000315241],[-76.57821583091834,39.22331257623996],[-76.57836664902203,39.22331509266407],[-76.57843796095044,39.22331593343875],[-76.57856911261801,39.22331765653584],[-76.57868390820482,39.22331907575997],[-76.5788795941424,39.22332173907264],[-76.57907265805946,39.22332403504587],[-76.57925286918767,39.2233267926644],[-76.57943988174499,39.22333052650178],[-76.57967072355693,39.22333456564906],[-76.57991443735857,39.22333881796106],[-76.57997615090086,39.2234095923412],[-76.57997352662389,39.22345169435916],[-76.58005707235502,39.22344789208027],[-76.58006009453301,39.2234528580782],[-76.5800632920257,39.22345774903791],[-76.58006707351916,39.22346238896827],[-76.58007121284582,39.22346683561061],[-76.58007544976948,39.22347122855527],[-76.58007966112585,39.22347563672152],[-76.5800823483506,39.22348064836084],[-76.58007828898535,39.22348500441549],[-76.58007357422012,39.22348915184663],[-76.58006903711888,39.22349341431215],[-76.58006526342176,39.22349802991197],[-76.58006203123975,39.22350292038519],[-76.58005883250243,39.22350783439825],[-76.58005518224748,39.22351252970797],[-76.58005102957333,39.2235169971243],[-76.58004682034564,39.22352143191011],[-76.58004302702253,39.22352603662961],[-76.58003983645852,39.22353093896128],[-76.58003706501782,39.22353605447561],[-76.58003492856297,39.22354130557728],[-76.580033670585,39.22354664269405],[-76.58003334982554,39.22355212008284],[-76.5800335463353,39.22355766417866],[-76.5800338113624,39.2235631760916],[-76.58003426420302,39.22356865354623],[-76.58003492437919,39.22357412453654],[-76.58003554864489,39.22357959719984],[-76.58003605472992,39.22358507934887],[-76.58003664308528,39.22359055368528],[-76.58003754085064,39.22359599399839],[-76.58003884420383,39.22360139072393],[-76.58004035035631,39.22360676475483],[-76.58004181710834,39.2236121431486],[-76.5800429999652,39.22361754935143],[-76.58004392535975,39.22362301768751],[-76.5800448145242,39.22362854174217],[-76.58004542690686,39.22363406570727],[-76.58004551269141,39.22363953374133],[-76.58004479773676,39.22364489081667],[-76.58004288140678,39.22365012649201],[-76.58004012376243,39.2236552582696],[-76.58003706784395,39.22366030340589],[-76.5800340737391,39.22366527489936],[-76.58003092364714,39.22367018638325],[-76.58002765220868,39.22367505509617],[-76.58002431374067,39.22367990014892],[-76.58002096950851,39.22368474067704],[-76.58001765417957,39.22368958941545],[-76.58001432036907,39.22369442998067],[-76.5800109680771,39.22369926237267],[-76.58000760538876,39.22370409022339],[-76.58000423923109,39.22370891716089],[-76.5800008800053,39.22371374682537],[-76.57999753348582,39.22371858193997],[-76.5799942089158,39.22372342614075],[-76.57999090629527,39.22372827942777],[-76.5799875770814,39.22373312541332],[-76.57998422243767,39.22373796320072],[-76.5799808573869,39.22374279824845],[-76.57997749579926,39.22374763511006],[-76.57997415038668,39.22375247833487],[-76.57997083618274,39.22375733157985],[-76.5799675670523,39.22376220029926],[-76.57996435686532,39.2237670890467],[-76.57996121949738,39.2237720014749],[-76.57995816881328,39.22377694303815],[-76.57995521404024,39.22378192007496],[-76.57995232948768,39.22378696852454],[-76.57994959156119,39.22379209316421],[-76.5799471033818,39.22379728535532],[-76.57994496921786,39.22380253826476],[-76.57994329450135,39.22380784416298],[-76.5799421649557,39.2238131988529],[-76.57994149476167,39.22381862274525],[-76.57994118903274,39.22382410288954],[-76.57994116682173,39.22382961917892],[-76.5799413494815,39.22383515421714],[-76.57994165606493,39.22384068789729],[-76.57994200561934,39.22384620101337],[-76.57994236230871,39.22385168262772],[-76.57994287888035,39.22385715310415],[-76.57994353792604,39.22386261868579],[-76.57994429774477,39.22386808102501],[-76.57994511432483,39.223873540865],[-76.579945942491,39.22387899984571],[-76.57994673938416,39.22388445961523],[-76.57994746213467,39.22388992362329],[-76.57994811535333,39.22389539548947],[-76.57994874423144,39.22390087087165],[-76.5799493986031,39.22390634364274],[-76.57995012830771,39.22391180677482],[-76.57995098202146,39.22391725413672],[-76.579952008431,39.22392267779567],[-76.57995338600111,39.22392805767246],[-76.57995508460081,39.22393339726237],[-76.57995689331305,39.22393872103232],[-76.57995859540883,39.22394405703156],[-76.5799599799762,39.22394942882627],[-76.57996088935823,39.22395486287557],[-76.57996139195002,39.22396034771418],[-76.57996160373924,39.22396585313071],[-76.57996163840822,39.223971347104],[-76.57996154919604,39.22397683522921],[-76.57996134300849,39.22398232473738],[-76.57996103606368,39.22398781478566],[-76.57996064227983,39.22399330182085],[-76.57996017442221,39.22399878138466],[-76.57995959080581,39.22400425242719],[-76.57995884394442,39.22400971567922],[-76.57995801836094,39.22401517414557],[-76.57995719972578,39.22402063263684],[-76.5799564737199,39.22402609416194],[-76.57995592832984,39.22403156353965],[-76.5799556087043,39.22403704363392],[-76.57995545463443,39.22404253242768],[-76.57995542792543,39.22404802618116],[-76.57995549500926,39.22405352207189],[-76.57995561884906,39.22405901636419],[-76.57995576239738,39.22406450712387],[-76.57995584218801,39.22407000846473],[-76.57995588255105,39.22407551867224],[-76.57995595301318,39.22408103078902],[-76.57995612196984,39.22408653334973],[-76.57995645547878,39.22409201848382],[-76.57995702539903,39.22409747653984],[-76.57995789779379,39.22410289874644],[-76.57995911667511,39.22410828436039],[-76.57996062758181,39.22411363859142],[-76.57996235519158,39.22411896927697],[-76.57996422650872,39.22412428246124],[-76.57996616390007,39.22412958507255],[-76.57996809552264,39.22413488406009],[-76.57996995417646,39.22414018458799],[-76.5799718174842,39.22414548152941],[-76.57997372716822,39.22415076962898],[-76.57997569019841,39.22415604530848],[-76.57997771004887,39.22416130858041],[-76.57997979369468,39.22416655496583],[-76.5799819434574,39.22417178357227],[-76.57998414075986,39.22417700244016],[-76.57998638792365,39.22418221067714],[-76.57998869656141,39.22418740292002],[-76.57999107249012,39.22419257468577],[-76.57999352846451,39.22419772331764],[-76.57999607494463,39.22420284254768],[-76.57999878849103,39.22420791103114],[-76.58000164125131,39.22421293857683],[-76.58000455781777,39.2242179474345],[-76.58000746626753,39.22422295806457],[-76.58001029004001,39.22422799181179],[-76.58001295720156,39.2242330709382],[-76.58001539930876,39.22423821501609],[-76.58001767785126,39.22424340534904],[-76.58001984734888,39.22424862681903],[-76.58002193332185,39.22425387231109],[-76.58002395665807,39.22425913469373],[-76.58002594402511,39.22426440865778],[-76.58002791515811,39.2242696861668],[-76.58002989556665,39.22427496190739],[-76.58003190961816,39.22428022785982],[-76.58003397934797,39.22428547869814],[-76.58003612560145,39.22429071449702],[-76.58003831938946,39.22429594145817],[-76.58004052013149,39.22430116754337],[-76.58004268957401,39.22430639892117],[-76.58004478829982,39.22431164265681],[-76.5800467780553,39.22431690491882],[-76.58004862058134,39.22432219277658],[-76.58005028778051,39.2243275574739],[-76.58005160929368,39.22433301911912],[-76.58005228218506,39.22433849555831],[-76.58005201852599,39.2243439127981],[-76.58005086570132,39.22434928722208],[-76.58004919413973,39.22435464627826],[-76.58004738358775,39.22436000844018],[-76.58004581265014,39.22436538947503],[-76.58004452533366,39.22437078954022],[-76.5800432113813,39.22437618951015],[-76.58004188701138,39.22438158854199],[-76.58004056725761,39.22438699029263],[-76.58003926949635,39.2243923939235],[-76.58003801108279,39.22439780219908],[-76.58003680938799,39.22440321518147],[-76.58003568060904,39.22440863563094],[-76.58003464212243,39.22441406270894],[-76.5800337112832,39.22441949917995],[-76.58003290083033,39.22442494508946],[-76.58003217252593,39.22443040390383],[-76.58003151826897,39.22443587469328],[-76.58003093923881,39.22444135385891],[-76.5800304365988,39.22444684050406],[-76.58003001499732,39.22445233194315],[-76.58002967445037,39.22445782547374],[-76.58002941843746,39.22446332020764],[-76.5800292481327,39.22446881344667],[-76.58002916586825,39.22447430249681],[-76.5800291751237,39.22447978646976],[-76.58002927471432,39.22448526986519],[-76.58002946343943,39.22449075988499],[-76.5800297424785,39.22449625293032],[-76.58003011416363,39.22450174630712],[-76.58003058082697,39.22450723732144],[-76.58003114480601,39.22451272237851],[-76.5800318061168,39.22451819877609],[-76.5800325694076,39.22452366382846],[-76.58003343470507,39.22452911303181],[-76.58003440433613,39.22453454459287],[-76.58003549798794,39.22453995858218],[-76.5800367214297,39.2245453586234],[-76.58003805033648,39.22455074553027],[-76.58003946731054,39.22455612374448],[-76.58004095034312,39.22456149408806],[-76.58004247972568,39.22456686009352],[-76.58004403344397,39.22457222348372],[-76.58004559179486,39.22457758689045],[-76.58004713507493,39.22458295294562],[-76.58004864127018,39.22458832337188],[-76.58005008951392,39.22459370169778],[-76.58005146126614,39.22459908965855],[-76.58005276116454,39.22460448636998],[-76.58005406104711,39.22460988578363],[-76.58005536556222,39.22461528521385],[-76.58005666775608,39.22462068553651],[-76.58005796298563,39.22462608853658],[-76.58005924546595,39.22463149329254],[-76.58006051056455,39.22463689978786],[-76.58006175248055,39.22464230980334],[-76.58006296659221,39.22464772152087],[-76.58006414709315,39.22465313762198],[-76.58006528936173,39.22465855628864],[-76.58006638643877,39.22466397929747],[-76.5800674360135,39.22466940573944],[-76.58006843112673,39.22467483739116],[-76.58006936599341,39.22468027333123],[-76.58007021048219,39.22468571705492],[-76.5800709066465,39.22469117556114],[-76.58007147303154,39.22469664621387],[-76.58007193165673,39.22470212638963],[-76.58007230453623,39.22470761436558],[-76.58007261485287,39.22471310662157],[-76.58007288346276,39.22471860143066],[-76.58007313353815,39.22472409707422],[-76.58007338710908,39.22472958912716],[-76.58007366386828,39.22473507675915],[-76.58007390473233,39.22474056336195],[-76.58007408072805,39.22474605243492],[-76.58007420807384,39.22475154313544],[-76.58007430183527,39.22475703371576],[-76.58007437821493,39.22476252603543],[-76.58007445228372,39.22476801744603],[-76.58007454024948,39.22477350890641],[-76.58007461895598,39.22477899943281],[-76.58007463047788,39.22478449242116],[-76.58007469065511,39.22478998288132],[-76.58007489096535,39.22479547294198],[-76.58007504136097,39.22480098264121],[-76.58007531223963,39.2248064855653],[-76.58007597366837,39.22481194304626],[-76.58007719371825,39.22481733046354],[-76.58007867799715,39.22482268729898],[-76.58008033611618,39.22482802313768],[-76.58008211243964,39.22483334588761],[-76.58008395367449,39.22483865896117],[-76.58008580419023,39.22484396936556],[-76.58008761067788,39.22484928321548],[-76.58008938009652,39.22485459873431],[-76.58009116227034,39.22485991159644],[-76.58009295835204,39.2248652227067],[-76.58009476951037,39.22487053026773],[-76.58009659574533,39.22487583427962],[-76.58009843820967,39.22488113564713],[-76.58010029807215,39.22488643257295],[-76.58010217880701,39.22489172506958],[-76.58010417317267,39.22489699455241],[-76.58010626145516,39.22490224545486],[-76.58010836017662,39.22490749369226],[-76.58011038585938,39.22491275518002],[-76.58011225617828,39.22491804673839],[-76.5801138957728,39.22492338251018],[-76.58011542522186,39.22492873950658],[-76.58011691524842,39.22493410446893],[-76.58011837049546,39.22493947561225],[-76.58011979675334,39.2249448529573],[-76.580121197507,39.22495023471495],[-76.58012257855216,39.22495562000523],[-76.58012394336305,39.22496100884048],[-76.58012529774076,39.22496639943994],[-76.58012664516485,39.2249717909153],[-76.58012799142575,39.22497718328724],[-76.58012934231918,39.22498257567572],[-76.5801307001773,39.22498796538677],[-76.58013206962711,39.22499335333772],[-76.58013345762241,39.22499873865264],[-76.58013486765348,39.22500411864171],[-76.58013628579673,39.22500949775895],[-76.58013770741438,39.22501487688864],[-76.58013913135377,39.22502025512581],[-76.58014055877291,39.22502563247463],[-76.58014198735043,39.22503100982754],[-76.58014341940232,39.22503638719288],[-76.58014485377599,39.22504176366574],[-76.58014629046603,39.22504714014681],[-76.58014773063587,39.22505251573958],[-76.58014917196405,39.2250578913364],[-76.58015061677197,39.22506326604492],[-76.5801520638963,39.22506864076167],[-76.58015351334232,39.22507401458595],[-76.58015496162517,39.22507938930679],[-76.58015638671989,39.22508476844857],[-76.58015779093739,39.22509015292029],[-76.58015918007868,39.2250955409412],[-76.58016055878673,39.22510093072628],[-76.5801619351682,39.22510632230459],[-76.58016331503475,39.2251117120938],[-76.58016470301347,39.22511710101121],[-76.5801661060741,39.22512248547862],[-76.58016753231801,39.22512786642586],[-76.58016898523535,39.22513324116308],[-76.58017047178534,39.22513860791349],[-76.58017199891647,39.22514396670207],[-76.58017357243524,39.22514931484719],[-76.58017519813731,39.22515465146886],[-76.58017688297657,39.22515997569108],[-76.58017868029962,39.2251652750939],[-76.58018073156869,39.2251705204575],[-76.58018298925433,39.22517571971896],[-76.58018539188755,39.22518088797158],[-76.58018787685177,39.22518603850307],[-76.58019038268323,39.22519118550601],[-76.58019475502331,39.22520050798746],[-76.58000812760953,39.2253395357079],[-76.58029801348076,39.22557725489087],[-76.58062103141513,39.22584089812167],[-76.58087133405277,39.22604825419067],[-76.58107595285045,39.22621822200458],[-76.58139006891437,39.22647428365855],[-76.58159773053067,39.22664342276204],[-76.58159953895915,39.22664489657603],[-76.58159353650387,39.22682607206079],[-76.58156304331717,39.22682636690128],[-76.58156282566934,39.22683185546583],[-76.58156260917953,39.22683734403449],[-76.58156239153159,39.22684283259902],[-76.58156217388361,39.22684832116356],[-76.5815619562409,39.22685380882731],[-76.58156173859287,39.22685929739182],[-76.58156151978669,39.22686478595219],[-76.58156130213858,39.22687027451666],[-76.58156108564853,39.22687576308528],[-76.58156102442406,39.22687730860184],[-76.58156086800035,39.22688125164974],[-76.58156065151024,39.22688674021833],[-76.58156043502014,39.22689222878693],[-76.58156021968806,39.22689771735962],[-76.5815600055141,39.22690320593644],[-76.5815597913401,39.22690869451325],[-76.58155957832422,39.22691418309418],[-76.58155936530825,39.22691967167511],[-76.58155915229226,39.22692516025602],[-76.58155893927623,39.22693064883688],[-76.58155872741831,39.22693613742191],[-76.58155851671847,39.22694162601107],[-76.58155830833479,39.22694711460845],[-76.58155810226734,39.22695260321409],[-76.5815578996689,39.2269580927329],[-76.58155770055008,39.22696358136329],[-76.58155750606367,39.22696907001021],[-76.5815573162044,39.22697455957437],[-76.58155713098284,39.22698004825428],[-76.58155694923038,39.22698553784733],[-76.58155677095216,39.22699102745275],[-76.58155659499548,39.22699651616568],[-76.58155642134967,39.22700200578765],[-76.58155625002009,39.22700749541782],[-76.58155607984864,39.2270129850521],[-76.5815559096771,39.22701847468637],[-76.58155573950555,39.22702396432069],[-76.58155556933401,39.22702945395496],[-76.58155539916771,39.22703494268846],[-76.58155522667987,39.22704043231445],[-76.5815494461509,39.22704263572616],[-76.58154284587036,39.22704460651664],[-76.58153629339692,39.22704671889928],[-76.58153005579975,39.22704924766282],[-76.58152424237258,39.2270523166035],[-76.5815186553579,39.22705568090558],[-76.58151315108469,39.22705915449644],[-76.58150758358175,39.22706254859317],[-76.58150184801256,39.22706576914106],[-76.5814962437992,39.22706910365501],[-76.58149104044395,39.22707280711543],[-76.58148613316861,39.22707677555928],[-76.58148163434785,39.22708100308182],[-76.58147749670593,39.22708545438427],[-76.58147352865367,39.22709001708693],[-76.58146955023625,39.22709456984394],[-76.58146538264097,39.22709899401575],[-76.58146081824027,39.22710314743988],[-76.58145568519664,39.22710690699763],[-76.58145032489,39.22711051531487],[-76.58144514675831,39.22711426119969],[-76.58144020041485,39.22711817635637],[-76.58143530478911,39.22712213222874],[-76.5814304425996,39.2271261134419],[-76.58142559192694,39.22713010550522],[-76.58142073548974,39.22713409304392],[-76.58141585369547,39.22713805977411],[-76.5814109788123,39.22714203283417],[-76.58140612005718,39.22714602036397],[-76.58140124977345,39.22714999884472],[-76.58139634145185,39.22715394656313],[-76.58139136974118,39.22715784181013],[-76.58138629774629,39.22716165652999],[-76.58138107129575,39.22716534639147],[-76.58137575148852,39.22716895935361],[-76.58137041554141,39.227172559647],[-76.58136514298229,39.22717621241138],[-76.58135998797717,39.22717996287881],[-76.58135489059065,39.22718376219355],[-76.58135305364571,39.22718515905322],[-76.5813498404475,39.22718760221158],[-76.58134483987982,39.2271914802389],[-76.5813398877508,39.22719539266834],[-76.58133503246778,39.22719937930676],[-76.58133029939243,39.22720346006182],[-76.58132558016085,39.22720754987389],[-76.58132076526162,39.22721156187757],[-76.5813156540955,39.22721534042351],[-76.58131010142989,39.22721876789255],[-76.58130489124329,39.22722244790004],[-76.581300284012,39.22722659485957],[-76.58129595351787,39.22723094818348],[-76.58129181808677,39.2272354138996],[-76.58128774019463,39.22723994197442],[-76.58128385031068,39.22724460043193],[-76.58128066599241,39.22724941183622],[-76.58128092316669,39.22725489939128],[-76.58128456340158,39.22725958110912],[-76.5812891897816,39.22726377452017],[-76.5812943596179,39.22726752668705],[-76.5812994491779,39.22727134072103],[-76.58130440262224,39.22727525875943],[-76.58130939564498,39.22727914270925],[-76.58131455628228,39.22728288403307],[-76.58131980975564,39.2272865941606],[-76.58132520646988,39.22729017058299],[-76.58133089252851,39.22729338682534],[-76.58133699267911,39.22729610281124],[-76.5813434287006,39.22729842455345],[-76.58135002156791,39.22730046581204],[-76.58135673350367,39.22730215168777],[-76.58136376666263,39.22730278479884],[-76.58137081833928,39.22730243792929],[-76.58137776738819,39.22730142591929],[-76.58138462208657,39.22730011271258],[-76.58139145651212,39.22729870214915],[-76.58139831355281,39.22729738444608],[-76.58140523278175,39.22729632278535],[-76.58141219958947,39.22729544144941],[-76.58141919695468,39.22729468092628],[-76.58142620998116,39.22729401413943],[-76.58143322839457,39.22729341583052],[-76.58144026008407,39.22729292295955],[-76.58144730397642,39.2272925211102],[-76.58145435115726,39.22729215079939],[-76.5814613950442,39.22729174984996],[-76.5814684232536,39.22729125786568],[-76.58147542476715,39.22729057932475],[-76.5814823827385,39.22728962499014],[-76.58148933063171,39.22728861206864],[-76.58149630289377,39.22728778749617],[-76.58150341465185,39.22728726788355],[-76.58151040218586,39.22728758555094],[-76.58151699181235,39.22728998079426],[-76.58151723287023,39.22729525841002],[-76.58151153759773,39.22729812329467],[-76.58150474607577,39.22730031138925],[-76.58149796367817,39.22730193382753],[-76.58149110806252,39.22730320650262],[-76.58148417585593,39.22730430865716],[-76.58147723900075,39.22730541349707],[-76.58147036713879,39.2273066915176],[-76.5814635804525,39.22730825538809],[-76.58145683566589,39.22730998064681],[-76.58145009214331,39.22731168789408],[-76.58144331387093,39.22731319954823],[-76.58143646021844,39.22731433530891],[-76.58142948976386,39.22731485271904],[-76.58142242165916,39.22731484282552],[-76.58141531410882,39.22731464813147],[-76.58140822531729,39.22731461113998],[-76.58140116840129,39.2273148643122],[-76.58139412093644,39.22731528236002],[-76.58138712404688,39.22731596181335],[-76.58138022687355,39.22731721091349],[-76.58137332684701,39.22731835461207],[-76.58136627845724,39.22731873302074],[-76.58135919303848,39.22731851678353],[-76.58135227998747,39.22731754811051],[-76.58134553236098,39.22731582607612],[-76.58133897331695,39.22731374440293],[-76.58133290137931,39.2273109573563],[-76.58132759975653,39.22730735965485],[-76.581322545276,39.22730348809753],[-76.58131745111186,39.2272996686435],[-76.58131241168796,39.22729579713945],[-76.58130706931534,39.22729223622355],[-76.58130128692135,39.22728905566749],[-76.5812952166766,39.2272861785472],[-76.58128890267476,39.22728378697699],[-76.58128213069014,39.22728226842779],[-76.58127508585174,39.22728145601537],[-76.5812680702269,39.22728079593823],[-76.58126103040384,39.22728011505643],[-76.58125397630626,39.22727949807848],[-76.58124692132694,39.22727903062606],[-76.58123987654234,39.22727879831261],[-76.58123285419228,39.22727888585494],[-76.5812258531611,39.22727928604276],[-76.58121886014632,39.22727989794156],[-76.58121187427132,39.22728067380701],[-76.5812048946595,39.22728156589469],[-76.58119791811272,39.2272825273528],[-76.58119094260171,39.2272835095321],[-76.58118396724457,39.22728446558894],[-76.5811769900067,39.2272853477749],[-76.58117002057261,39.22728628133262],[-76.58116306327196,39.22728731762189],[-76.58115610061621,39.22728828002786],[-76.58114911628039,39.22728899103905],[-76.58114209602199,39.22728931278562],[-76.58113505073692,39.22728936150678],[-76.58112798800589,39.22728922640658],[-76.58112091784831,39.22728897597988],[-76.58111385029396,39.22728867692008],[-76.5811067930458,39.2272883977137],[-76.5810997454826,39.22728804738006],[-76.58109270313646,39.22728759797904],[-76.58108566319171,39.22728713417374],[-76.58107862053218,39.22728673791661],[-76.58107157464772,39.22728649568061],[-76.5810645151098,39.22728640832925],[-76.5810574389118,39.22728639658327],[-76.58105036320217,39.22728649833663],[-76.58104330397673,39.22728675057832],[-76.58103627720465,39.22728719480108],[-76.58102929303249,39.22728787788159],[-76.58102233983652,39.22728880698463],[-76.58101541453561,39.22728991544162],[-76.58100851059025,39.22729113386933],[-76.58100162839918,39.22729239471086],[-76.58099475892055,39.22729366010122],[-76.58098790083157,39.22729495795987],[-76.58098105065248,39.22729628917511],[-76.58097420956267,39.22729765014809],[-76.58096737642526,39.22729903727164],[-76.58096055240374,39.22730044964908],[-76.58095373636652,39.22730188277252],[-76.58094692831891,39.22730333574122],[-76.58094014305598,39.22730485274609],[-76.58093338056703,39.22730643558869],[-76.58092663061517,39.22730805270518],[-76.58091988064699,39.22730967252357],[-76.5809131227418,39.22731126348837],[-76.58090634435169,39.22731279312672],[-76.5808995340762,39.22731423077146],[-76.58089266229868,39.22731549254459],[-76.58088572213428,39.22731656761209],[-76.58087875465864,39.22731756061082],[-76.5808717974783,39.2273185752646],[-76.58086489398498,39.22731971621859],[-76.58085808177992,39.22732108809733],[-76.5808513928278,39.22732276938255],[-76.58084479971647,39.22732469512047],[-76.58083827967171,39.22732679947296],[-76.58083180871316,39.22732902470464],[-76.58082536518222,39.22733131218755],[-76.58081892743083,39.2273336014923],[-76.58081247262093,39.22733583758992],[-76.58080603275988,39.22733809175611],[-76.58079962039017,39.22734039736449],[-76.58079322174734,39.22734273184645],[-76.58078682771001,39.22734507084834],[-76.5807804245083,39.22734739270238],[-76.58077400185746,39.22734967395163],[-76.58076754830921,39.22735189203572],[-76.58076105010439,39.22735402348527],[-76.58075449353171,39.22735603672407],[-76.5807478510888,39.22735788211111],[-76.5807411388139,39.2273595894293],[-76.58073437963016,39.22736119929557],[-76.58073119854512,39.22736192566919],[-76.58072759532376,39.22736274871959],[-76.58072080880726,39.22736428011976],[-76.58071403152881,39.22736581605646],[-76.5807072370644,39.22736732040408],[-76.58070042093586,39.2273687670242],[-76.5806935798124,39.22737013158383],[-76.58068671035274,39.22737139155161],[-76.58067980802541,39.22737252979655],[-76.58067287963027,39.22737357156473],[-76.58066593195117,39.22737454480449],[-76.58065897294601,39.22737547476607],[-76.58065200708768,39.22737638848871],[-76.58064504465035,39.22737731123092],[-76.58063809127036,39.2273782691355],[-76.58063115488957,39.22737929015479],[-76.58062424115494,39.22738039863005],[-76.58061733870338,39.22738155758876],[-76.58061043855183,39.22738271925765],[-76.5806033958358,39.22738370386422],[-76.58059623120991,39.22738454391031],[-76.5805904302114,39.22738686970744],[-76.58058748185898,39.2273921143095],[-76.58058488501325,39.22739725928042],[-76.58058242910158,39.22740246510706],[-76.58057969724426,39.22740752672385],[-76.58057626332301,39.22741223452839],[-76.58057160200417,39.22741631370773],[-76.58056632869405,39.2274200835346],[-76.58056143866175,39.22742406100905],[-76.58055761047835,39.22742865570766],[-76.58055461822676,39.22743368486605],[-76.5805522954106,39.22743890558009],[-76.58055161329122,39.2274443897799],[-76.5805532929067,39.22744963200359],[-76.58055574762632,39.22745482295056],[-76.58055824051122,39.22746002304167],[-76.58056051086106,39.22746525206308],[-76.58056297697681,39.22747047457786],[-76.58056525187473,39.22747571802787],[-76.58056692308705,39.22748101066488],[-76.58056765337616,39.22748638911636],[-76.5805676997229,39.22749187501865],[-76.58056721882514,39.22749740948029],[-76.58056631069115,39.22750292349883],[-76.58056507299709,39.22750835076577],[-76.58056345601803,39.22751367849251],[-76.58056114803205,39.22751893709226],[-76.58055815692441,39.22752396805629],[-76.580554485969,39.22752860925624],[-76.58054994319373,39.22753281316557],[-76.58054491764143,39.22753679195649],[-76.58053995452096,39.22754078898585],[-76.58053560136788,39.22754504581738],[-76.58053232799605,39.22754982535576],[-76.58053012747816,39.22755512397315],[-76.58052881761476,39.22756061223459],[-76.58052830605078,39.22756604389775],[-76.5805285655269,39.22757152425616],[-76.58052914212719,39.22757703997751],[-76.58052955775877,39.22758255332202],[-76.58052935397943,39.22758803292557],[-76.58052877389429,39.2275934967718],[-76.58052803978363,39.22759895916676],[-76.58052717019876,39.22760441657363],[-76.58052618485434,39.227609864559],[-76.58052509998541,39.22761529957782],[-76.58052393645957,39.22762071810146],[-76.58052269196578,39.22762611922092],[-76.58052131205615,39.22763150544399],[-76.58051979674664,39.22763687406831],[-76.58051814953814,39.22764222060255],[-76.58051637625333,39.22764753966282],[-76.580514480393,39.22765282675778],[-76.58051243070908,39.22765807817255],[-76.58051024685246,39.22766330028289],[-76.58050797740582,39.22766850317092],[-76.58050566863051,39.22767369781135],[-76.58050337141478,39.22767889609616],[-76.58050113319406,39.22768410630185],[-76.58049900369322,39.22768934121711],[-76.58049703150057,39.22769461002333],[-76.58049519926007,39.22769990995616],[-76.58049339014993,39.2277052153763],[-76.58049160069038,39.22771052717209],[-76.58048983089749,39.22771584264124],[-76.58048808191874,39.22772116358943],[-76.58048635144313,39.2277264891076],[-76.58048464063414,39.22773181829913],[-76.5804829494865,39.22773715206485],[-76.58048127800544,39.22774248950389],[-76.58047962503296,39.22774783061219],[-76.58047799057427,39.22775317448894],[-76.58047637694035,39.22775852204322],[-76.58047478066216,39.22776387236183],[-76.58047320405595,39.22776922545306],[-76.58047164481083,39.22777458040787],[-76.58047010523762,39.22777993813533],[-76.58046858418368,39.22778529773051],[-76.5804671348696,39.22779066839139],[-76.58046581861238,39.22779606114652],[-76.58046460996523,39.2278014705003],[-76.58046348115427,39.22780689275028],[-76.58046240441104,39.22781232329339],[-76.58046135428337,39.2278177575347],[-76.58046030184993,39.2278231899662],[-76.58045922048966,39.22782861779041],[-76.58045803143385,39.22783404342808],[-76.5804567473899,39.22783947232929],[-76.58045546680412,39.22784490394518],[-76.58045428696488,39.22785033772274],[-76.58045330515509,39.22785577400973],[-76.58045262098986,39.22786121045981],[-76.58045235606767,39.22786664840849],[-76.58045279294588,39.22787209336967],[-76.58045377412945,39.2278775429788],[-76.5804550263264,39.22788299175508],[-76.58045627624455,39.22788843421777],[-76.58045732701225,39.22789386786157],[-76.58045836157694,39.2278992996459],[-76.58045941351912,39.22790473059152],[-76.5804604874872,39.22791015801275],[-76.58046158811375,39.22791558192614],[-76.58046272118946,39.22792100235241],[-76.58046389019933,39.22792641750245],[-76.58046507542853,39.22793183180958],[-76.58046622004878,39.2279372585825],[-76.58046736117888,39.22794268804525],[-76.58046854288098,39.22794811134752],[-76.58046980806459,39.22795351873423],[-76.58047120311878,39.22795889956173],[-76.58047276979495,39.2279642440708],[-76.58047454635934,39.22796954429115],[-76.58047650028851,39.22797481632052],[-76.58047860840924,39.22798006187765],[-76.58048085568171,39.22798527820649],[-76.58048323053539,39.22799046346404],[-76.58048571794116,39.22799561309272],[-76.58048830516485,39.22800072614617],[-76.58049097831427,39.22800580167406],[-76.58049375002774,39.22801085683626],[-76.58049663540363,39.22801588448054],[-76.58049965190968,39.22802086845532],[-76.58050281470278,39.22802579169998],[-76.58050614008735,39.22803063895957],[-76.58050964322018,39.22803539317343],[-76.58051337636628,39.22804002930658],[-76.58051738243522,39.22804453760386],[-76.5805215882624,39.22804895203324],[-76.58052592184659,39.22805330566622],[-76.58053030539602,39.22805763155342],[-76.58053466689891,39.22806196456793],[-76.58053896804633,39.22806631988603],[-76.58054330871981,39.22807065012343],[-76.58054768890877,39.22807495708165],[-76.58055208769751,39.22807925239604],[-76.58056069748525,39.22808767570945],[-76.58056575910452,39.22809151759853],[-76.58057088582459,39.22809531828425],[-76.58057588001236,39.22809920407004],[-76.58058054404022,39.22810330035854],[-76.58058494392698,39.22810760648494],[-76.58058916809539,39.22811205430611],[-76.5805930728408,39.22811665952261],[-76.58059651793863,39.22812143694655],[-76.58059941992857,39.22812639889071],[-76.58060191215564,39.22813151880828],[-76.58060414899751,39.22813673870026],[-76.58060628251567,39.22814200055959],[-76.58060846476087,39.22814724818053],[-76.58061084663133,39.2281524244525],[-76.58061342344124,39.22815753836652],[-76.58061609537286,39.2281626264978],[-76.58061879514804,39.22816770662151],[-76.58062145433563,39.22817279560791],[-76.58062400333053,39.22817791302539],[-76.5806263760125,39.22818307665329],[-76.58062850967731,39.22818831419166],[-76.58063037769314,39.22819362464457],[-76.58063195935706,39.22819898361706],[-76.58063322002081,39.22820437477139],[-76.58063406341533,39.22820982208457],[-76.58063460430236,39.22821530795108],[-76.58063501428285,39.22822079965535],[-76.58063535482317,39.22822628300445],[-76.58063554012536,39.2282317739059],[-76.58063561539402,39.22823726621576],[-76.5806356501226,39.22824275928157],[-76.58063574272074,39.22824825885953],[-76.58063582256344,39.22825376109425],[-76.58063579357325,39.22825925753543],[-76.58063555619822,39.22826473972042],[-76.58063502130435,39.22827020012448],[-76.58063420849477,39.22827565323011],[-76.58063316065774,39.22828109288509],[-76.58063190911076,39.22828651109429],[-76.58063047939669,39.22829189713973],[-76.58062888895671,39.22829723937351],[-76.5806270474507,39.22830253837361],[-76.58062497339824,39.22830779600788],[-76.58062272355332,39.22831301157814],[-76.58062035581743,39.22831818619215],[-76.58061776383344,39.22832328704188],[-76.58061491401533,39.22832831400731],[-76.5806119786489,39.22833331454438],[-76.58060911958611,39.22833833787351],[-76.58060634139576,39.22834339482027],[-76.58060353893198,39.22834844357325],[-76.58060060476461,39.22835343690809],[-76.58059743375848,39.22835833121185],[-76.58059411749507,39.22836330786797],[-76.58059059184758,39.22836824324083],[-76.58058659044244,39.22837274454028],[-76.58058171042134,39.2283763887628],[-76.58057483147272,39.22837845398527],[-76.58056773856886,39.22837850700647],[-76.58056095597237,39.22837739733157],[-76.58055416029651,39.22837575705154],[-76.58054743161058,39.22837375579872],[-76.58054085343711,39.2283715668209],[-76.58053440179381,39.22836932875214],[-76.58052793085642,39.22836702395651],[-76.5805215138856,39.22836460225233],[-76.58051523342324,39.22836201078872],[-76.58050917083712,39.22835919941297],[-76.58050340749489,39.22835611797236],[-76.58049789397991,39.22835270143434],[-76.58049253312029,39.22834893053535],[-76.58048752619273,39.2283448465297],[-76.58048308142249,39.22834049069679],[-76.58047940701887,39.22833590701817],[-76.58047683698852,39.22833101832007],[-76.58047547987366,39.22832568356847],[-76.58047482728145,39.22832009191112],[-76.58047434757115,39.22831444682495],[-76.58047354855881,39.22830893841652],[-76.58047277477013,39.22830347333554],[-76.58047205544067,39.22829800394534],[-76.58047110427624,39.22829256885675],[-76.58046990682266,39.22828706623031],[-76.58046860120692,39.22828144431455],[-76.58046634530268,39.22827631533055],[-76.58046225133955,39.2282721760365],[-76.5804563141976,39.22826891291594],[-76.58044961500185,39.22826662711715],[-76.58044290511356,39.22826517089585],[-76.5804360288379,39.22826404106166],[-76.58042902952091,39.22826315399718],[-76.58042196316293,39.2282624405427],[-76.58041488462759,39.2282618279314],[-76.58040784762028,39.22826124339214],[-76.58040078263144,39.22826069027971],[-76.58039366944578,39.2282602576987],[-76.58038657243452,39.22826002785009],[-76.58037955481055,39.22826008293057],[-76.58037262120163,39.22826081569573],[-76.58036655663426,39.22826382873329],[-76.58036193526048,39.22826799632257],[-76.58035765201467,39.2282725650658],[-76.58035432357393,39.22827744438779],[-76.58035257095015,39.22828259417243],[-76.5803523808398,39.22828810985465],[-76.5803528129288,39.22829377638975],[-76.58035286805607,39.22829934159073],[-76.58035153879884,39.22830457936364],[-76.58034814360765,39.22830958275409],[-76.58034322814808,39.2283137348787],[-76.58033732772144,39.22831640890843],[-76.58033055384763,39.22831813579988],[-76.58032353471174,39.22831962130643],[-76.58031692640053,39.22832155326564],[-76.58031156461834,39.22832499398024],[-76.58030783127634,39.22832979528699],[-76.58030464149722,39.22833472734843],[-76.58030168949006,39.22833979627747],[-76.58029930195102,39.22834498612745],[-76.58029779978561,39.2283502809312],[-76.58029710648239,39.22835569302603],[-76.58029695235506,39.22836119442425],[-76.58029711879769,39.22836673660302],[-76.58029738486697,39.22837227463413],[-76.5802976106623,39.2283777683831],[-76.58029811335928,39.22838324510672],[-76.58029874693668,39.2283887204967],[-76.58029925541922,39.22839419814173],[-76.58029946272713,39.22839968461832],[-76.580299569261,39.22840517343694],[-76.5802996201936,39.22841066385824],[-76.58029963058065,39.22841615593615],[-76.58029961201426,39.22842164791049],[-76.58029957722853,39.2284271407276],[-76.58029954128999,39.22843263263981],[-76.58029951578006,39.22843812368856],[-76.58029947058174,39.22844361466683],[-76.58029939295015,39.22844910642992],[-76.58029930026805,39.22845459723843],[-76.58029920758598,39.22846008804689],[-76.58029912879624,39.22846557980582],[-76.5802990789706,39.22847106986674],[-76.58029907546529,39.2284765609941],[-76.58029911829087,39.22848205138631],[-76.58029915414635,39.22848754535673],[-76.58029919231276,39.22849304023614],[-76.58029925248387,39.22849853519426],[-76.58029935899125,39.2285040285165],[-76.58029953268684,39.22850951937667],[-76.58029979559117,39.2285150051511],[-76.58030016971436,39.2285204850178],[-76.58030066895948,39.22852595812567],[-76.58030126668389,39.22853142528026],[-76.58030194202517,39.22853688910927],[-76.58030268340721,39.22854234867052],[-76.58030347228384,39.22854780660003],[-76.58030429707364,39.22855326285638],[-76.58030514156259,39.22855871738159],[-76.58030598952612,39.2285641719192],[-76.5803068293774,39.22856962732858],[-76.58030764258628,39.22857508354348],[-76.58030841408618,39.22858054231153],[-76.58030910558925,39.228586015206],[-76.58030973679975,39.22859149959493],[-76.58031033902493,39.22859698928488],[-76.58031094356645,39.22860247898311],[-76.5803115805733,39.22860796249196],[-76.5803122790257,39.2286134354112],[-76.58031307255771,39.22861888975405],[-76.58031398898073,39.22862432291764],[-76.5803150619342,39.22862972601449],[-76.58031632500966,39.22863509826394],[-76.58031797953221,39.22864047281382],[-76.58032009643625,39.22864580127574],[-76.58032266002438,39.22865099621816],[-76.58032565343024,39.22865597200686],[-76.58032912003773,39.2286606387192],[-76.58033383216585,39.22866483067119],[-76.58033953286919,39.22866832355112],[-76.58034565368281,39.22867088833053],[-76.58035238859684,39.22867242751805],[-76.58035948957166,39.22867336539387],[-76.58036652864052,39.2286741958554],[-76.58037350367624,39.22867508283654],[-76.58038049029356,39.22867596985865],[-76.58038748637848,39.22867682268469],[-76.58039449212268,39.22867760888729],[-76.58040150426459,39.2286782924237],[-76.58040852300114,39.22867883996589],[-76.58041554389672,39.22867921816923],[-76.58042258784043,39.22867941990214],[-76.58042969155746,39.22867950204484],[-76.58043682387901,39.22867944737124],[-76.5804439502045,39.22867923143657],[-76.5804510359119,39.2286788333993],[-76.5804580464007,39.22867822881463],[-76.58046494704884,39.22867739684101],[-76.58047168979124,39.2286760436532],[-76.58047813666606,39.22867360487139],[-76.58048410942118,39.22867045458202],[-76.58048947507338,39.22866694991842],[-76.58049440192595,39.2286630284278],[-76.58049899244165,39.22865879406588],[-76.58050332333256,39.22865439663592],[-76.58050743335819,39.22864994076668],[-76.58051124552436,39.22864532439511],[-76.58051488454875,39.22864060921988],[-76.58051850050559,39.2286358777481],[-76.58052224459004,39.22863121879629],[-76.58052626111227,39.22862671034709],[-76.58053056046887,39.22862235694149],[-76.58053502143808,39.22861809329032],[-76.58053951931834,39.22861385499262],[-76.58054396536363,39.22860956876827],[-76.58054860052428,39.22860542193938],[-76.58055378366808,39.22860163828031],[-76.58055967025896,39.2285985642452],[-76.58056655035179,39.22859689717144],[-76.58057362653139,39.22859693416821],[-76.58057983278749,39.22859915154065],[-76.58058577878273,39.22860229398195],[-76.58059140271018,39.22860584512592],[-76.58059664729778,39.22860950120584],[-76.58060153209911,39.2286134811806],[-76.58060615277884,39.22861766739023],[-76.58061060391807,39.22862192955996],[-76.58061493529028,39.22862627237154],[-76.58061911903087,39.22863070743554],[-76.58062312387526,39.2286352337395],[-76.58062686855135,39.22863988522258],[-76.58063009261348,39.22864483390348],[-76.5806331668659,39.2286498514089],[-76.58063658302808,39.22865463052907],[-76.58064083610766,39.22865889559304],[-76.58064617986047,39.22866262678953],[-76.58065227635508,39.22866558510574],[-76.58065875140629,39.22866759085077],[-76.5806654747028,39.22866913718503],[-76.58067237576101,39.2286703923021],[-76.58067937409444,39.22867145319836],[-76.58068639038011,39.22867241597358],[-76.58069337119439,39.2286733056587],[-76.58070058510499,39.22867335935381],[-76.58070764462992,39.22867366831777],[-76.58071410200422,39.22867552987218],[-76.58072037630272,39.22867799429319],[-76.58072341873027,39.22867938064854],[-76.5807265200583,39.22868079513829],[-76.58073250132713,39.22868385032267],[-76.58073828933405,39.22868707596407],[-76.58074383216996,39.22869043674688],[-76.58074900924822,39.22869415203007],[-76.58075390908789,39.22869813745668],[-76.5807586541556,39.22870224753837],[-76.58076336454342,39.22870634668668],[-76.58076808541885,39.2287104350629],[-76.58077279230142,39.22871453960295],[-76.58077745499416,39.22871867461138],[-76.5807820479382,39.22872285350864],[-76.58078654210547,39.22872708880186],[-76.58079091076824,39.22873139570886],[-76.58079513534294,39.22873578317102],[-76.58079929467911,39.22874023525602],[-76.58080337605855,39.2287447483153],[-76.58080733775068,39.22874932850529],[-76.58081113570884,39.22875398197409],[-76.5808147247388,39.22875871306429],[-76.58081806195717,39.22876352702733],[-76.5808210962354,39.22876845250554],[-76.58082377739032,39.22877355417567],[-76.58082612768717,39.22877878797924],[-76.58082817177667,39.22878409815605],[-76.58082993430959,39.22878942894596],[-76.58083138778275,39.22879473070801],[-76.58083036203239,39.22880015783196],[-76.58082926533181,39.22880563604675],[-76.58082870604265,39.22881111077616],[-76.58082820810317,39.22881659112934],[-76.58082770090914,39.22882206964786],[-76.5808271150089,39.22882753977829],[-76.5808267237546,39.22883338983114],[-76.58082221232488,39.22883678496355],[-76.58081597587451,39.22883908849825],[-76.58080944614277,39.22884124055536],[-76.58080271357144,39.22884322344228],[-76.58079586628064,39.22884502035895],[-76.58078899702852,39.22884661362106],[-76.580782178938,39.2288479764665],[-76.58077520000035,39.22884892347867],[-76.58076808027135,39.22884939257548],[-76.58076095867544,39.22884939326097],[-76.58075396370312,39.22884893680335],[-76.58074698014495,39.22884811647203],[-76.58074000546134,39.22884697009052],[-76.58073312767146,39.22884549797332],[-76.5807264324729,39.22884370132731],[-76.58072245630649,39.22884235667555],[-76.58072002321202,39.22884153458203],[-76.58071397884123,39.22883876832133],[-76.58070814517664,39.22883562358576],[-76.58070233739605,39.22883241048323],[-76.58069636721338,39.22882943730785],[-76.58069016847597,39.22882672724342],[-76.58068392332962,39.22882383505583],[-76.58067764268021,39.22882087518275],[-76.5806713245345,39.22881798903916],[-76.5806649703734,39.22881531805233],[-76.58065857935635,39.22881300454215],[-76.5806521518061,39.22881118993175],[-76.58064568573981,39.22881001383461],[-76.58063910148482,39.22881002363873],[-76.58063236562326,39.22881138676924],[-76.5806255668741,39.22881359280242],[-76.58061879513619,39.22881612771541],[-76.58061214144533,39.22881848109285],[-76.58060534183645,39.22882044030872],[-76.58059862399091,39.22882267455346],[-76.58059316381843,39.22882590594861],[-76.58058902249329,39.22883016984323],[-76.58058516638184,39.22883477434995],[-76.5805816260801,39.2288396376074],[-76.58057843795355,39.22884468137796],[-76.58057564067342,39.22884982923365],[-76.58057327060526,39.2288550029369],[-76.58057119394496,39.22886030649978],[-76.5805692762234,39.22886595652904],[-76.58056788940976,39.22887172375505],[-76.58056742063033,39.22887736184731],[-76.58056825932795,39.22888262448379],[-76.58057067983643,39.22888734149701],[-76.58057409180078,39.22889185217197],[-76.58057822259897,39.22889623300122],[-76.58058292404682,39.22890047354663],[-76.58058804678056,39.22890456696895],[-76.58059344493235,39.22890850283839],[-76.58059896799078,39.22891227251007],[-76.58060446892442,39.22891586645083],[-76.58061008575672,39.22891905455481],[-76.58061699603437,39.22892090962565],[-76.5806242808231,39.22892230123311],[-76.58063067906015,39.22892437426328],[-76.58063523688645,39.22892802878809],[-76.58063869894286,39.22893268736753],[-76.58064141400529,39.22893792968411],[-76.58064360639068,39.22894342595389],[-76.58064550156865,39.22894884729803],[-76.58064699998096,39.22895418615462],[-76.58064799389149,39.22895964301206],[-76.58064873962859,39.228965154831],[-76.58064949118315,39.22897066216682],[-76.58065050835816,39.22897610199256],[-76.58065204630806,39.22898141396698],[-76.58065427306028,39.2289865824763],[-76.58065707951498,39.22899164676499],[-76.58066035581825,39.2289965776156],[-76.58066398982135,39.2290013421995],[-76.58066787513954,39.22900591221245],[-76.58067207990142,39.22901032212734],[-76.58067665511885,39.22901456311862],[-76.58068155711196,39.22901857918201],[-76.58068674682822,39.22902231523052],[-76.58069220006354,39.22902575136055],[-76.58069794638709,39.22902897955702],[-76.58070394308572,39.22903197624704],[-76.58071013596575,39.22903470070199],[-76.58071647081752,39.2290371148956],[-76.58072129759094,39.22903857158005],[-76.58072298319928,39.22903908113589],[-76.5807297966513,39.22904046835068],[-76.58073676347013,39.22904157687188],[-76.58074372307969,39.22904272950505],[-76.58075051496243,39.22904423914724],[-76.5807571578298,39.229046075239],[-76.58076373840599,39.22904806514084],[-76.58077028609699,39.22905013239167],[-76.58077683494118,39.22905220054704],[-76.58078341781888,39.22905419315832],[-76.580790037057,39.22905610843218],[-76.58079666091736,39.2290580255238],[-76.58080329416566,39.22905992193066],[-76.58080994622125,39.22906177156386],[-76.58081662186031,39.22906355011957],[-76.58082332934408,39.22906523150459],[-76.58083022933863,39.22906647760054],[-76.5808372598951,39.22906699183031],[-76.5808444280026,39.22906715975161],[-76.58085148704527,39.22906677240414],[-76.58085790487917,39.2290649406219],[-76.58086376371674,39.22906166740095],[-76.58087027058696,39.22905927114859],[-76.58087702124047,39.22905717122133],[-76.58088382967061,39.22905666317365],[-76.58089067015608,39.22905739561038],[-76.5808975592395,39.22905852816547],[-76.58090445577521,39.2290599679118],[-76.58091131862294,39.22906162102171],[-76.58091810664229,39.2290633936674],[-76.5809247763233,39.2290652010205],[-76.5809307774917,39.22906822744049],[-76.58093671702969,39.22907109960715],[-76.58094635195188,39.22907069532817],[-76.58095139926014,39.22906677334813],[-76.58095625370976,39.22906275699847],[-76.58095985169098,39.22905812633654],[-76.58096277757441,39.22905316359054],[-76.58096538587002,39.22904804657848],[-76.58096784980594,39.22904285969113],[-76.58097033912507,39.22903768910832],[-76.5809729855163,39.2290325929499],[-76.58097571053894,39.22902751779009],[-76.580978439041,39.22902244174181],[-76.58098110624577,39.22901735106224],[-76.58098364505518,39.22901223290091],[-76.58098598955034,39.22900707080848],[-76.58098720319899,39.22900159571233],[-76.58098829841856,39.22899617063694],[-76.58099200652548,39.22899132598209],[-76.58099833674962,39.22898942271802],[-76.58100537766863,39.2289887686665],[-76.58101264274609,39.22898859642986],[-76.58101980474638,39.22898901293325],[-76.58102660827105,39.22899011995359],[-76.58103334980633,39.22899191854927],[-76.58103987097839,39.2289943586123],[-76.58104587440353,39.22899739494303],[-76.58105115439918,39.22900094753905],[-76.5810561306037,39.22900475577207],[-76.58106093318688,39.22900874263983],[-76.58106559944332,39.22901286864132],[-76.58107016667304,39.22901709337465],[-76.58107467101243,39.22902137733465],[-76.58107915090902,39.22902568192513],[-76.5810836425046,39.22902996674007],[-76.58108818193024,39.22903419317501],[-76.5810928967791,39.22903832835657],[-76.58109770901405,39.22904244677073],[-76.58110227274123,39.22904667689493],[-76.58110623859231,39.22905114719432],[-76.58110935090806,39.22905600358322],[-76.5811117081045,39.22906125091684],[-76.58111337856059,39.22906668496275],[-76.581114417958,39.22907209423707],[-76.58111278193826,39.22907770564596],[-76.58111123284371,39.2290831101862],[-76.58111404631097,39.22908777724592],[-76.58111778808905,39.22909253679549],[-76.58112210707291,39.22909722273952],[-76.5811269281958,39.22910160240953],[-76.58113217639611,39.2291054422363],[-76.5811377777704,39.22910850865462],[-76.58114387356,39.22911061480685],[-76.58115058341002,39.22911189713722],[-76.58115770192343,39.22911261974122],[-76.58116502717789,39.22911304672677],[-76.58117235377124,39.2291134430902],[-76.58117947980254,39.22911406933655],[-76.58118647190274,39.22911482121339],[-76.58119347594058,39.22911551278029],[-76.58120048712938,39.22911617014277],[-76.58120749836611,39.22911681939802],[-76.58121450717509,39.2291174875605],[-76.58122150761682,39.22911819983081],[-76.58122848161244,39.22911907594779],[-76.58123543267895,39.22912010871786],[-76.58124240104887,39.22912095688986],[-76.58124942419731,39.22912135396746],[-76.58125647797307,39.22912146740898],[-76.5812635476017,39.22912144579007],[-76.5812706183938,39.22912142327415],[-76.58127776093806,39.22912141002151],[-76.58128509432746,39.2291212434163],[-76.58129135404864,39.22912324385395],[-76.5812951561654,39.22912818286768],[-76.58129218777961,39.22913269688306],[-76.58128637066564,39.2291365566802],[-76.58128005882328,39.22913887708521],[-76.58127324632964,39.22914066244369],[-76.58126678219489,39.22914288321917],[-76.581260839977,39.22914596069401],[-76.58125489240884,39.22914935612383],[-76.58124947790311,39.22915309304819],[-76.58124515562913,39.22915721039397],[-76.58124279136368,39.22916199589587],[-76.58124266074714,39.22916764690677],[-76.58124343866861,39.22917340474848],[-76.58124445836243,39.22917881845504],[-76.58124622779495,39.22918416457579],[-76.58124835100593,39.22918942007942],[-76.58125104744406,39.22919449116712],[-76.5812538842155,39.2291995294267],[-76.58125623712418,39.22920472089364],[-76.58125814236485,39.22921001615438],[-76.58125907057158,39.22921542863357],[-76.5812592419099,39.22922093929964],[-76.58125930325562,39.2292264441686],[-76.58125905983191,39.22923197767592],[-76.58125895667217,39.229237490065],[-76.58125955817927,39.2292429184934],[-76.58126108109798,39.22924823490946],[-76.58126311632425,39.22925348469415],[-76.58126541347937,39.22925870388605],[-76.58126771986817,39.22926392851546],[-76.58126978976031,39.22926919193532],[-76.58127143419078,39.22927452499871],[-76.58127283511715,39.22927990673612],[-76.58127405632281,39.22928532296271],[-76.58127512799928,39.22929076027447],[-76.58127608034363,39.22929620436673],[-76.58127682881587,39.22930165403711],[-76.58127701068014,39.22930714762577],[-76.58127717515084,39.22931264475548],[-76.58127741899762,39.22931823314688],[-76.58127782037471,39.22932381849709],[-76.5812798152442,39.22932884204232],[-76.58128460376747,39.22933286217904],[-76.5812897482324,39.22933681782862],[-76.58129339326038,39.22934149055237],[-76.58129428480906,39.22934703171148],[-76.581293847774,39.22935259875754],[-76.58129139871582,39.22935762176288],[-76.58128833663741,39.22936250656391],[-76.58128491826129,39.22936731983319],[-76.58128126277633,39.22937207911064],[-76.58127748822936,39.22937679922987],[-76.58127371497814,39.2293814959333],[-76.58127002864121,39.22938618393895],[-76.58126634462542,39.22939087105197],[-76.58126263749382,39.22939554997542],[-76.58125889801839,39.22940021437091],[-76.5812551169711,39.2294048579001],[-76.58125128397099,39.22940947331973],[-76.58124738979001,39.22941405429138],[-76.58124342520539,39.22941859357595],[-76.58123938098382,39.22942308573588],[-76.58123519821868,39.22942750353764],[-76.5812308434138,39.22943183154849],[-76.58122635355572,39.22943608251125],[-76.58122176217255,39.22944026645408],[-76.58121710507679,39.229444398818],[-76.58121239267587,39.22944848234242],[-76.58120699734505,39.22945210583508],[-76.5812006121683,39.22945428725438],[-76.58119356518564,39.22945498002947],[-76.58118649576859,39.2294545674704],[-76.58117942493361,39.22945360993558],[-76.58117353942583,39.22945079922729],[-76.58116808744688,39.22944733700216],[-76.58116277580213,39.22944364557937],[-76.58115742221462,39.22943999634316],[-76.5811518982137,39.22943657079212],[-76.5811463031141,39.22943322155317],[-76.58114068006526,39.22942989833678],[-76.58113506516116,39.22942656884369],[-76.58112949219567,39.22942319806425],[-76.58112399610481,39.22941975369516],[-76.58111858854969,39.22941622226639],[-76.5811132415647,39.22941263250301],[-76.58110792369885,39.22940901491917],[-76.58110260117436,39.22940540182237],[-76.58109724252968,39.22940182552827],[-76.58109181515582,39.22939831654694],[-76.58108628642768,39.22939490809066],[-76.58108070182702,39.22939154717588],[-76.58107510217081,39.2293881862071],[-76.58106948040925,39.22938484227394],[-76.58106382486504,39.22938153154868],[-76.58105812617731,39.22937827021187],[-76.58105237498509,39.22937507444411],[-76.58104656076938,39.2293719604219],[-76.58104067301109,39.22936894432156],[-76.58103470350736,39.22936604232786],[-76.58102861374145,39.22936330474682],[-76.5810223792327,39.22936075851433],[-76.5810160338492,39.22935835601009],[-76.58100961608642,39.22935605053109],[-76.5810031598232,39.22935379265552],[-76.58099670124413,39.22935153477128],[-76.58099027538083,39.22934922836153],[-76.58098391957071,39.22934682671909],[-76.5809776502087,39.22934429927611],[-76.58097143116349,39.22934168463702],[-76.58096524723011,39.22933900796935],[-76.58095908551482,39.22933629534954],[-76.58095293197619,39.22933357104853],[-76.58094677373624,39.22933085844048],[-76.58094059558493,39.22932818359369],[-76.58093438580238,39.22932556988645],[-76.58092812918368,39.22932304248629],[-76.58092181400382,39.22932062567236],[-76.58091542621597,39.22931834461617],[-76.5809089260441,39.229316266734],[-76.58090228656889,39.22931443967098],[-76.5808955405269,39.22931281129882],[-76.58088871833323,39.22931133038182],[-76.58088185272979,39.22930994389107],[-76.5808749752952,39.22930859969418],[-76.58086811876613,39.22930724566296],[-76.58086127841429,39.2293058979946],[-76.58085440503343,39.22930465199569],[-76.5808475045633,39.22930348246573],[-76.58084058872903,39.22930236512558],[-76.5808336658024,39.22930127208067],[-76.58082674519231,39.22930017904361],[-76.5808198257725,39.22929908060576],[-76.58081289570617,39.2292980199621],[-76.58080594898446,39.22929703402304],[-76.58079898191485,39.22929615970735],[-76.58079195690051,39.22929529148968],[-76.58078490650675,39.22929460243565],[-76.58077791528673,39.22929448378459],[-76.58077081579474,39.22929524480581],[-76.58076411629364,39.22929711160827],[-76.58075827987982,39.22930011377024],[-76.58075282857874,39.22930379919595],[-76.5807481653547,39.22930798556621],[-76.58074467147979,39.22931263370803],[-76.58074224436639,39.22931785675303],[-76.58074054915136,39.22932328778956],[-76.58073941121566,39.22932868568633],[-76.58073901267545,39.22933419882137],[-76.58073917931982,39.22933971307447],[-76.58073970057752,39.2293451916624],[-76.58074056232739,39.22935067236732],[-76.58074190751194,39.22935607282832],[-76.5807438419222,39.22936132586499],[-76.58074621120988,39.22936648407178],[-76.58074884953024,39.22937158558972],[-76.5807516072899,39.22937666231247],[-76.58075433375319,39.22938174342724],[-76.58075686414819,39.22938688149139],[-76.58075933298585,39.22939204906125],[-76.58076227203094,39.22939702284184],[-76.58076581592202,39.2294017537713],[-76.580769600089,39.22940639458036],[-76.58077358399103,39.22941094602496],[-76.58077772709807,39.22941540705956],[-76.5807819748758,39.22941979460408],[-76.5807862028271,39.22942420549786],[-76.58079040977256,39.22942864333977],[-76.58079461318553,39.22943309107749],[-76.58079883401932,39.22943753077021],[-76.5808030920635,39.22944194537393],[-76.58080740594431,39.22944631874118],[-76.58081179429871,39.22945063292289],[-76.58081627923258,39.22945487088333],[-76.58082087822474,39.22945901466927],[-76.58082561221234,39.22946304904232],[-76.58083049983765,39.22946695515273],[-76.58083558292711,39.22947071063033],[-76.58084087305707,39.22947431641732],[-76.58084634118852,39.22947778682235],[-76.58085195942992,39.22948113795976],[-76.58085770106395,39.22948438324587],[-76.58086353704098,39.22948753879082],[-76.5808694394801,39.22949061890753],[-76.58087538164271,39.22949364061527],[-76.58088133565859,39.22949661642537],[-76.58088728873479,39.22949955529995],[-76.5808932861458,39.22950243938514],[-76.58089932555937,39.22950527137488],[-76.58090540230026,39.22950805845878],[-76.58091151052987,39.22951080872286],[-76.58091764557838,39.229513528456],[-76.58092379929609,39.22951622483522],[-76.58092996817126,39.22951890415346],[-76.58093614404908,39.22952157448861],[-76.58094232342312,39.22952424123284],[-76.58094850044937,39.22952691337301],[-76.58095466698884,39.22952959628471],[-76.58096081952462,39.22953229716168],[-76.58096695221802,39.22953502408997],[-76.58097305808816,39.22953778244941],[-76.58097913944613,39.22954057314902],[-76.58098521378646,39.22954337553332],[-76.58099128344688,39.22954618600761],[-76.58099734842193,39.22954900547262],[-76.58100340755887,39.22955183302348],[-76.58100945969949,39.22955466865604],[-76.58101550600725,39.22955751147371],[-76.58102154531875,39.22956036237303],[-76.58102757764456,39.22956321955257],[-76.58103360181588,39.22956608480971],[-76.58103961784875,39.2295689554421],[-76.58104562457957,39.22957183234643],[-76.58105162200846,39.22957471552272],[-76.58105761129883,39.22957760407427],[-76.58106062429898,39.22958221870089],[-76.58105869959584,39.22958748498097],[-76.58105651098107,39.22959272509728],[-76.58105393043593,39.22959784761435],[-76.5810510032082,39.22960283918204],[-76.5810480424519,39.22960782072138],[-76.58104505742702,39.22961279316627],[-76.58104204927044,39.2296177601238],[-76.58103902146726,39.22962271980492],[-76.58103597747598,39.22962767492434],[-76.58103291961828,39.22963262458948],[-76.58102984904168,39.22963757060604],[-76.58102676921528,39.22964251388714],[-76.58102368360834,39.22964745534598],[-76.58102059337895,39.22965239498669],[-76.58101750199626,39.22965733372239],[-76.5810144106132,39.22966227245805],[-76.58101132385164,39.22966721301164],[-76.5810082440333,39.22967215449069],[-76.58100517802211,39.22967711133218],[-76.5810009361627,39.22968113617556],[-76.58099404328824,39.22967985048133],[-76.58098748488598,39.229677821038],[-76.58098092649469,39.22967578979272],[-76.58097437044667,39.22967375405161],[-76.58096781557845,39.22967171471121],[-76.58096126189533,39.22966967087077],[-76.5809547105555,39.22966762253444],[-76.58094816155366,39.229665570603],[-76.5809416149057,39.22966351237416],[-76.58093507176451,39.22966144875281],[-76.58092853097195,39.22965937973481],[-76.58092199252795,39.22965730532015],[-76.58091545875953,39.22965522371561],[-76.58090892850316,39.22965313581781],[-76.58090240291708,39.22965104163089],[-76.58089587735265,39.22964894384053],[-76.58088935528428,39.22964684245923],[-76.58088283439047,39.22964473837937],[-76.58087631467644,39.22964263070033],[-76.58086979613165,39.22964052122347],[-76.5808632787666,39.22963840814738],[-76.58085676372896,39.2296362932777],[-76.58085024986576,39.22963417570949],[-76.58084373717709,39.22963205544279],[-76.58083722449946,39.2296299333742],[-76.58083071414917,39.22962780951201],[-76.58082420380987,39.22962568384793],[-76.58081769579799,39.22962355639028],[-76.58081118779707,39.2296214271307],[-76.58080468096001,39.22961929697419],[-76.58079817413935,39.22961716411501],[-76.58079166847716,39.22961503125962],[-76.58078516282075,39.22961289750309],[-76.5807786583335,39.22961076194883],[-76.58077215384665,39.22960862639421],[-76.58076566118643,39.2296064494457],[-76.58075918980433,39.22960419960989],[-76.58075273265028,39.22960189397634],[-76.58074628729632,39.22959955145271],[-76.5807398466818,39.22959719093013],[-76.58073340838402,39.2295948304155],[-76.58072696534762,39.22959248789908],[-76.58072051282838,39.2295901822803],[-76.5807180451817,39.22958932313173],[-76.58071404723995,39.22958793246269],[-76.58070756269584,39.22958575463917],[-76.58070105444102,39.2295836695106],[-76.58069451773649,39.22958169507569],[-76.58068794669032,39.22957984842809],[-76.58068133771631,39.22957814847131],[-76.58067464691985,39.22957677160088],[-76.58066772724716,39.22957630009427],[-76.5806606379998,39.22957649815971],[-76.58065345875855,39.22957703009151],[-76.58064627141547,39.22957756109322],[-76.58063915902072,39.22957775637229],[-76.58063209546184,39.22957772302802],[-76.58062502967171,39.22957767526293],[-76.58061796535907,39.22957757345602],[-76.58061090969622,39.22957737980035],[-76.58060386754471,39.22957705557985],[-76.58059684631101,39.22957652335408],[-76.58058984128289,39.22957579661792],[-76.58058284480897,39.22957499424667],[-76.58057584577942,39.22957423240075],[-76.58056883423191,39.22957362904656],[-76.58056180141537,39.22957329314677],[-76.58055474854112,39.22957321569793],[-76.58054768311149,39.22957330304606],[-76.58054061381353,39.22957345703742],[-76.58053354932377,39.22957358131992],[-76.58052646714968,39.22957356231519],[-76.5805193814532,39.22957355140446],[-76.58051235181259,39.22957385416411],[-76.58050537348126,39.22957468586297],[-76.58049845356773,39.22957601950313],[-76.58049186033873,39.2295779281056],[-76.58048571994608,39.2295806229032],[-76.58048005963944,39.22958400040402],[-76.58047499914754,39.22958779080288],[-76.58047047459608,39.2295920235972],[-76.58046614728542,39.22959639311367],[-76.58046171847676,39.22960069110583],[-76.58045723300302,39.22960497448283],[-76.58045284567942,39.22960930775325],[-76.580448713659,39.22961375183089],[-76.58044499523696,39.229618370336],[-76.58044209477352,39.22962333315937],[-76.58043985282089,39.22962857577598],[-76.5804376512704,39.2296338410564],[-76.58043487664601,39.22963887188767],[-76.58043129076596,39.22964359986016],[-76.58042716654587,39.22964809530921],[-76.58042276318456,39.2296523978947],[-76.58041800850872,39.22965656951225],[-76.58041261975877,39.22966004976831],[-76.5804062980999,39.2296626466298],[-76.58039940498692,39.22966414700375],[-76.58039247048399,39.22966422400128],[-76.58038539367291,39.22966368796112],[-76.58037833710384,39.22966266647395],[-76.58037148330288,39.22966123856001],[-76.58036494398596,39.22965931454093],[-76.58035861036593,39.22965688051625],[-76.58035235670974,39.22965424230065],[-76.580346053799,39.22965170749801],[-76.58033967339072,39.22964935167264],[-76.58033330708315,39.22964696166776],[-76.58032694783138,39.22964455367222],[-76.5803205862478,39.22964214837035],[-76.58031421411866,39.22963976374828],[-76.5803078232146,39.22963742049451],[-76.58030140415826,39.22963513749174],[-76.58029494757278,39.22963293362288],[-76.58028844522835,39.22963082957627],[-76.58028186427066,39.22962889729666],[-76.58027511792547,39.22962731752992],[-76.58026826012839,39.2296259787726],[-76.58026135424531,39.22962474163067],[-76.580251896707,39.22962294678994],[-76.58023744266168,39.22962469575292],[-76.58022666539117,39.22963102750667],[-76.58022826461665,39.22964144801266],[-76.58023496186624,39.22965133187189],[-76.58024257053086,39.22966083706062],[-76.58025025362605,39.22967009480125],[-76.58025846649491,39.22967907519491],[-76.58026744472073,39.22968750254536],[-76.5802773712396,39.22969538651434],[-76.58028827063117,39.22970248758281],[-76.58030012836637,39.22970832468342],[-76.58031276233955,39.22971313947392],[-76.58032580108724,39.22971746658823],[-76.58033886187347,39.22972178837525],[-76.5803515689276,39.22972658450649],[-76.58036410346332,39.22973196012008],[-76.58037584925724,39.2297381228941],[-76.58038517489362,39.22974616954782],[-76.58038905923704,39.22975678738368],[-76.58038919847725,39.22976771791209],[-76.58038840903468,39.22977881356583],[-76.58038703336803,39.22979013592118],[-76.58038823999074,39.22980075319181],[-76.58039580826978,39.22980965110188],[-76.58040430313596,39.22981834694662],[-76.58041347784246,39.22982684975234],[-76.5804230868164,39.22983516584723],[-76.58043288332136,39.22984330245626],[-76.58044271364109,39.22985120498321],[-76.58045442462931,39.22985757840651],[-76.5804658454881,39.22986405077791],[-76.58047422977656,39.2298726462359],[-76.5804810928453,39.22988230998254],[-76.58048719847827,39.22989236285963],[-76.58049176088892,39.22990269937024],[-76.58049619889302,39.22991311740673],[-76.58050160847755,39.22992336326391],[-76.5805076544832,39.22993331594043],[-76.58051515659832,39.22994243970098],[-76.58052606904484,39.22994969392538],[-76.58053473260333,39.22995807148798],[-76.5805388983082,39.22996870833915],[-76.58054172325146,39.22997947011067],[-76.58054411689523,39.22999030870832],[-76.58054780223631,39.2300008979028],[-76.5805521287889,39.23001136327975],[-76.58055679641812,39.23002173259137],[-76.58056198256821,39.23003196503611],[-76.58056827139848,39.2300417915673],[-76.58057506843836,39.23005146227813],[-76.58058255556456,39.23006077424285],[-76.5805910560563,39.23006950702521],[-76.5806004884219,39.23007773149529],[-76.58061057011128,39.23008543943702],[-76.58062111503043,39.23009276350039],[-76.58063212899134,39.23009970010293],[-76.58064362353484,39.23010606012252],[-76.58065603536377,39.2301112443009],[-76.58066903398193,39.23011571445647],[-76.5806812312061,39.23012115278542],[-76.58069271736304,39.2301275614121],[-76.58070380924215,39.23013444604105],[-76.58071435061858,39.23014178449565],[-76.580714780583,39.2301421301284],[-76.5807241059641,39.23014964709611],[-76.5807328887644,39.23015823765281],[-76.58074128062461,39.23016713127502],[-76.58074999111213,39.23017580804664],[-76.58075866827552,39.23018444056051],[-76.58076468983703,39.23019442376197],[-76.58076850557342,39.23020510169067],[-76.58076827042943,39.23021589486251],[-76.58076263248523,39.23022607062098],[-76.58075504451682,39.23023559445755],[-76.58074982897917,39.23024543393272],[-76.58074928656882,39.23025667729623],[-76.58075205313632,39.2302675253277],[-76.58075807164036,39.23027724278911],[-76.58076559761233,39.2302866530648],[-76.58077416967168,39.23029563110019],[-76.58078333923046,39.23030404287863],[-76.58079373854169,39.23031132046619],[-76.58080534754815,39.23031772231391],[-76.58081667125735,39.23032438526772],[-76.58082693476477,39.23033191008094],[-76.58083690474547,39.23033971668903],[-76.58084654547709,39.23034777433804],[-76.58085578749058,39.23035607917689],[-76.58086463658744,39.23036462942487],[-76.58087316916962,39.23037343166024],[-76.58088121488491,39.23038250238958],[-76.58088858833011,39.23039185716502],[-76.58089513987224,39.23040153418572],[-76.58090097142482,39.23041153471654],[-76.58090629561367,39.23042174421732],[-76.5809113239279,39.23043204454063],[-76.58091615524789,39.23044236217588],[-76.58092038217251,39.23045284519749],[-76.58092437357992,39.23046339673785],[-76.5809286434445,39.2304738655],[-76.58093360361416,39.23048413495246],[-76.58093894656194,39.2304943075866],[-76.58094457724332,39.23050439567394],[-76.58095048765747,39.23051438117029],[-76.5809566709618,39.23052424603569],[-76.58096380634152,39.23053371255309],[-76.58097164296134,39.23054289332485],[-76.58097846612624,39.23055247222462],[-76.58098390552242,39.23056259295575],[-76.58098886894687,39.23057290205136],[-76.58099418174356,39.23058308358288],[-76.58100017211721,39.23059306395721],[-76.58100678934761,39.23060280245838],[-76.58101458593889,39.23061189931186],[-76.5810237229042,39.23062035058837],[-76.58103393970279,39.23062795088117],[-76.5810449872094,39.23063491548731],[-76.58105685969745,39.23064103720732],[-76.58106963536699,39.23064542905492],[-76.58108309512457,39.23064851631524],[-76.58109693761405,39.23065092575411],[-76.58111089844603,39.23065310411398],[-76.5811247343709,39.23065544867021],[-76.58113863775283,39.23065754935495],[-76.5811525893913,39.2306595195976],[-76.58116641774295,39.23066177404417],[-76.58117995242813,39.23066472644418],[-76.58119310538848,39.23066857915828],[-76.58120599652776,39.23067303265575],[-76.58121875606675,39.23067780545806],[-76.58123150728771,39.2306826142604],[-76.58124437693125,39.23068717847249],[-76.58125746469611,39.23069128586661],[-76.58127068714558,39.23069514062144],[-76.58128400449249,39.23069881195481],[-76.58129739342445,39.23070232500528],[-76.58131083410368,39.23070570492379],[-76.58132431015626,39.23070897867525],[-76.5813378436088,39.23071214273511],[-76.58135144287648,39.23071514488834],[-76.58136510829915,39.23071792748632],[-76.5813788459916,39.23072043560352],[-76.58139266883161,39.2307226458656],[-76.58140657661731,39.23072459250134],[-76.58142054489936,39.2307262970422],[-76.58143454458506,39.23072778280459],[-76.58144855948639,39.23072904522684],[-76.58146263597222,39.23072988089882],[-76.58147675611741,39.23073038343728],[-76.58149088066652,39.23073072835379],[-76.58150499747484,39.23073101108742],[-76.58151912329313,39.23073114071936],[-76.58153324563082,39.23073107486861],[-76.58154735440935,39.23073075494874],[-76.5815614478377,39.23073009177647],[-76.58157553634548,39.23072928085752],[-76.58158962890178,39.23072856903678],[-76.58160380146225,39.23072784218635],[-76.58161795207747,39.23072749808615],[-76.58163168600998,39.23072927022557],[-76.58164502916013,39.2307330875357],[-76.58165855056679,39.23073633348626],[-76.5816722043177,39.23073913402236],[-76.58168590516625,39.23074180411207],[-76.58169965545538,39.23074433925986],[-76.58171365002684,39.23074630148163],[-76.5817271968262,39.23074917008925],[-76.58173995869703,39.23075375187821],[-76.58175231022474,39.23075917803317],[-76.58176437708964,39.23076495447545],[-76.58177596620648,39.23077122103839],[-76.5817873032913,39.23077780377562],[-76.5817990522446,39.23078387363565],[-76.58181116821194,39.23078957368193],[-76.58182345671099,39.23079508427779],[-76.58183599216066,39.23080015887528],[-76.58184885719815,39.2308045320396],[-76.58186237059307,39.23080756895778],[-76.58187625304855,39.2308098883691],[-76.58188996634546,39.23081261162503],[-76.58190351120726,39.23081581259196],[-76.58191696312609,39.23081925913831],[-76.58193006284891,39.23082331335385],[-76.5819427855981,39.23082805261718],[-76.58195543607188,39.23083306816024],[-76.58196783652264,39.23083845212998],[-76.58197979170296,39.23084431822979],[-76.58199110982937,39.23085078197708],[-76.5820017895581,39.23085787489437],[-76.5820120124827,39.23086544179414],[-76.58202194877387,39.23087330042472],[-76.58203176974992,39.23088127034017],[-76.58204164442336,39.23088916928462],[-76.58205156472934,39.2308969900231],[-76.58206130582937,39.23090495424692],[-76.58207101784986,39.23091293998502],[-76.58208086257318,39.23092081269689],[-76.5820910029557,39.23092843514386],[-76.5821016799497,39.23093560280653],[-76.58211278297651,39.230942408972],[-76.58212392325282,39.23094918374174],[-76.58213471314815,39.23095625812254],[-76.58214541823581,39.23096357360858],[-76.5821560215196,39.23097106618427],[-76.5821655593767,39.23097912876114],[-76.582173072785,39.23098815967207],[-76.5821784292555,39.23099823591259],[-76.58218278551165,39.23100882203525],[-76.58218740281055,39.23101933252091],[-76.58219349550487,39.23102927986788],[-76.58220096746864,39.23103886010321],[-76.58220844665387,39.23104839442407],[-76.5822145193915,39.23105819126914],[-76.5822179285522,39.23106852810715],[-76.58221927930512,39.2310793053046],[-76.58221930583397,39.23109034622018],[-76.5822185429352,39.23110150412921],[-76.58221751959331,39.23111263588945],[-76.58221663496016,39.23112361771366],[-76.58221531516769,39.23113454394232],[-76.58221363410622,39.23114545447262],[-76.58221185692561,39.23115636285913],[-76.58221024993917,39.23116728175998],[-76.58220907830771,39.23117822292826],[-76.58220851560003,39.23118921400504],[-76.5822083406879,39.23120023979086],[-76.58220825725121,39.23121126950533],[-76.58220796666357,39.23122227055837],[-76.58220716913529,39.23123321125648],[-76.58220556834553,39.23124406081926],[-76.58220288077162,39.23125477860336],[-76.58219928352014,39.23126538145307],[-76.58219516427559,39.23127592299334],[-76.58219091421837,39.23128645325851],[-76.58218692218102,39.2312970276792],[-76.58218358050257,39.231307696294],[-76.58218092041199,39.23131846642033],[-76.58217862249381,39.23132929548541],[-76.5821765652552,39.23134016323986],[-76.58217463182004,39.23135105215275],[-76.58217270300642,39.23136194288362],[-76.5821706596271,39.23137281699263],[-76.5821683894385,39.23138365696544],[-76.58216591440362,39.23139447008645],[-76.5821632634613,39.231405259161],[-76.58216044126533,39.23141602060252],[-76.58215751029417,39.23142676544272],[-76.58215461281954,39.2314375257153],[-76.58215165053839,39.2314482767493],[-76.58214850895976,39.2314589893123],[-76.58214507243427,39.23146963416771],[-76.58214122992936,39.23148018479771],[-76.58213695132129,39.23149064289665],[-76.58213232106763,39.23150102407822],[-76.58212742943817,39.23151134037392],[-76.58212236785023,39.23152160562088],[-76.58211724040308,39.23153184360977],[-76.58211230765473,39.23154225794308],[-76.58210711241985,39.23155259927948],[-76.58210095417382,39.23156244085911],[-76.58209318538766,39.23157140385165],[-76.58208392329509,39.23157964180631],[-76.58207366716866,39.23158733755653],[-76.58206288185877,39.23159461886586],[-76.58205198806158,39.23160163766189],[-76.58204075320556,39.23160855165311],[-76.5820289982864,39.23161487918735],[-76.58201665503348,39.23162001920322],[-76.582003406928,39.23162363368296],[-76.58198917206994,39.23162586285574],[-76.58197488109055,39.23162641097763],[-76.58196132063773,39.23162484757675],[-76.58194816955016,39.23162083642045],[-76.58193541095048,39.23161547369412],[-76.58192314942178,39.23160988123721],[-76.58191140649403,39.23160374655711],[-76.58189991938177,39.23159724436939],[-76.581888386508,39.23159084290448],[-76.5818765074432,39.2315850121984],[-76.58186367815057,39.23158064186824],[-76.58184978757377,39.231578102638],[-76.58183584531717,39.23157647210568],[-76.58182170238919,39.23157587584924],[-76.58180733263396,39.2315742654091],[-76.58179433491843,39.23157784292476],[-76.58178151452039,39.23158336764919],[-76.58177068619399,39.23159047492862],[-76.58176304002906,39.23159925908178],[-76.58175720605813,39.23160929276349],[-76.58175253121131,39.23161995841652],[-76.58174841104672,39.23163064135908],[-76.5817443268326,39.2316413163225],[-76.58174101013383,39.23165225254363],[-76.58173980070583,39.23166310799752],[-76.58174179913877,39.23167363799172],[-76.58174634322525,39.23168398969523],[-76.58175207146361,39.2316942645481],[-76.58175839014396,39.23170615479553],[-76.58177024407485,39.23171212504413],[-76.58178206765584,39.23171813571837],[-76.58179389358178,39.23172414189584],[-76.58180575568966,39.2317301013606],[-76.58181768899048,39.23173596919859],[-76.5818297249995,39.2317417040863],[-76.58184186594818,39.23174732044409],[-76.58185411776012,39.23175279577365],[-76.58186649922628,39.23175808600377],[-76.5818790279847,39.23176314615841],[-76.5818917472493,39.23176791513868],[-76.58190463825008,39.23177243341262],[-76.58191761803374,39.23177682319027],[-76.58193059786144,39.23178120576046],[-76.58194349246371,39.23178570332502],[-76.58195621541805,39.23179043718113],[-76.58196868029174,39.23179553042733],[-76.58198089388539,39.23180100830973],[-76.58199292968531,39.23180678281391],[-76.58200476929821,39.23181283045435],[-76.58201639316232,39.23181912954272],[-76.58202778056258,39.23182565748598],[-76.58203891426412,39.23183239080252],[-76.58204979287014,39.23183937002249],[-76.58206039857815,39.23184666804542],[-76.58207066541887,39.23185427652952],[-76.58208052859167,39.23186218533565],[-76.5820899198373,39.23187038160991],[-76.58209880556791,39.23187886523294],[-76.58210728086691,39.23188761762705],[-76.58211545849808,39.23189656803236],[-76.58212344543429,39.23190564566849],[-76.58213135213362,39.23191477796576],[-76.5821392855636,39.23192389504441],[-76.58214735618768,39.231932923434],[-76.58215593471648,39.23194165277172],[-76.58216458204218,39.23195030398608],[-76.5821701550079,39.23196040801799],[-76.58217091886135,39.23197113268058],[-76.58215810250108,39.23197576749281],[-76.58214476060195,39.2319793681428],[-76.58213135550957,39.23198288209181],[-76.5821179585743,39.23198579705186],[-76.58210780874758,39.23197876908895],[-76.58210016379971,39.23196944045211],[-76.58209264276503,39.23196011495826],[-76.58208535983083,39.23195067681378],[-76.58207762363224,39.23194150368484],[-76.58206908581437,39.23193274656226],[-76.58206031726826,39.23192403095403],[-76.58205109858804,39.23191563892263],[-76.58204116152201,39.23190788658621],[-76.5820303544494,39.23190095265917],[-76.58201898047376,39.23189450313175],[-76.58200720483846,39.23188840617804],[-76.58199517179074,39.23188255511927],[-76.5819830232563,39.23187684416911],[-76.58197090348246,39.23187116664884],[-76.58195879744449,39.2318655171003],[-76.58194660980438,39.23185995733752],[-76.58193433814489,39.23185450446658],[-76.58192198005416,39.23184917469294],[-76.58190953196737,39.23184398331701],[-76.58189699147263,39.2318389465442],[-76.58188433052378,39.23183410661099],[-76.581871523492,39.23182948864786],[-76.58185860658891,39.23182504053871],[-76.58184561834251,39.2318207101757],[-76.58183259498055,39.2318164427405],[-76.5818195761998,39.23181218432793],[-76.5818065433579,39.23180795378793],[-76.58179346486506,39.23180380505445],[-76.58178033949942,39.23179974893247],[-76.58176716255927,39.2317957971154],[-76.58175392458254,39.23179198289814],[-76.58174041010007,39.23178870635848],[-76.58173054619544,39.23178643458109],[-76.58172683219546,39.23178557912026],[-76.58171357496998,39.23178188733544],[-76.58170084355974,39.23177721557643],[-76.58168844946861,39.2317719072683],[-76.58167635326102,39.23176616854846],[-76.5816645168028,39.23176018123802],[-76.58165289752748,39.23175389654332],[-76.58164166055676,39.23174720335666],[-76.5816310079048,39.23174001952681],[-76.5816209662684,39.23173233524049],[-76.58161130183161,39.2317243226135],[-76.58160178176672,39.23171618259004],[-76.58159217326732,39.23170811251115],[-76.58158227733749,39.23170027200564],[-76.58157215810773,39.23169258833919],[-76.58156200049534,39.23168493245907],[-76.58155199054357,39.23167718072138],[-76.58154231082666,39.23166920856902],[-76.58153312301289,39.23166090127907],[-76.58152439344558,39.23165227044173],[-76.58151603246084,39.23164339770813],[-76.58150795271624,39.23163436383681],[-76.5815000761511,39.23162524691707],[-76.58149250039848,39.23161598874657],[-76.58148519650355,39.23160658922222],[-76.58147801460292,39.23159712527644],[-76.58147080482803,39.2315876747424],[-76.5814634231277,39.2315783109702],[-76.58145594855633,39.23156898379823],[-76.58144831832742,39.23155973443821],[-76.58144031854796,39.23155069544244],[-76.58143174008005,39.23154197866209],[-76.58142271303404,39.23153351790359],[-76.58141349407099,39.23152519517957],[-76.58140199140821,39.23151878656808],[-76.5813902519563,39.23151246538708],[-76.58137830663625,39.23150648756742],[-76.58136583401428,39.23150154556061],[-76.58135262409705,39.23149809260903],[-76.58133889260401,39.23149568629977],[-76.58132488231284,39.23149381315501],[-76.5813108336216,39.23149197049799],[-76.58129698461751,39.23148965474306],[-76.5812832508593,39.23148704394284],[-76.58126947515228,39.23148447622864],[-76.5812557101675,39.23148185810758],[-76.5812420074125,39.2314790969834],[-76.58122841841087,39.23147609755762],[-76.58121499582323,39.23147276813896],[-76.58120178883554,39.2314690170237],[-76.58118869627123,39.2314649141115],[-76.58117568995664,39.23146052325704],[-76.58116282204223,39.23145583924176],[-76.58115014816376,39.23145085505802],[-76.58113772279867,39.23144556369408],[-76.58112560040861,39.23143996084045],[-76.58111384372708,39.23143401429318],[-76.58110258054326,39.23142746238241],[-76.58109178162627,39.23142035184428],[-76.58108136966948,39.23141282922968],[-76.58107127083005,39.23140504290328],[-76.581061410107,39.23139714122568],[-76.58105182934925,39.23138909822379],[-76.58104257437451,39.23138080416636],[-76.58103353580282,39.23137234513774],[-76.58102460078507,39.23136380630885],[-76.581015657625,39.23135527375564],[-76.58100659577909,39.23134683445884],[-76.58099730355644,39.23133857359354],[-76.58098766926082,39.23133057723548],[-76.58097766620605,39.2313228533963],[-76.58096741196442,39.2313153016087],[-76.58095693205857,39.23130791475745],[-76.5809462531534,39.23130068843385],[-76.5809354030666,39.23129361913401],[-76.58092440614662,39.23128670244096],[-76.58091329022713,39.23127993214862],[-76.58090204714766,39.23127331723553],[-76.58089055381075,39.23126691311035],[-76.58087881117252,39.23126075400591],[-76.58086683991539,39.23125486792005],[-76.58085465608907,39.23124928283413],[-76.58084227804888,39.23124402853924],[-76.58082972495853,39.23123899791132],[-76.58081701131714,39.23123408921435],[-76.58080414710155,39.23122937814912],[-76.58079113997222,39.23122494040821],[-76.58077799990066,39.2312208525932],[-76.5807647356947,39.23121719220237],[-76.5807513385181,39.23121408261049],[-76.58073753753588,39.2312122768003],[-76.58072340159231,39.23121149217372],[-76.58070914086002,39.23121104939487],[-76.5807084681621,39.23121101186157],[-76.58069496898133,39.23121027004113],[-76.58068095698508,39.23120889404186],[-76.58066696787805,39.23120736859369],[-76.58065298848928,39.23120576661252],[-76.58063901150263,39.23120415022589],[-76.58062502958064,39.23120258516421],[-76.58061103539633,39.23120113535648],[-76.58059701930638,39.23119986472338],[-76.58058297385607,39.23119885881209],[-76.58056888673971,39.23119824008431],[-76.58055476909377,39.23119788787565],[-76.5805406392062,39.23119764731792],[-76.5805265107271,39.23119736442694],[-76.58051240078106,39.23119688523117],[-76.58049828802595,39.23119629342657],[-76.5804841518998,39.23119573666706],[-76.58047002678836,39.23119507995894],[-76.58045594707212,39.2311941892094],[-76.58044194597353,39.23119293032149],[-76.58042806385586,39.23119113679578],[-76.58041431870433,39.2311887051072],[-76.58040065580019,39.23118587917074],[-76.58038701329963,39.2311829326016],[-76.58037333283862,39.2311801381264],[-76.58035955039497,39.23117774593225],[-76.58034566396621,39.23117570286616],[-76.5803317502984,39.23117376148876],[-76.58031788498478,39.23117167345602],[-76.58030414938314,39.23116919494826],[-76.58029047369921,39.23116637706028],[-76.58027685395267,39.23116330535164],[-76.58026341594113,39.2311598595681],[-76.58025028430941,39.23115591855063],[-76.58023763497947,39.23115111180834],[-76.58022560464674,39.23114523895704],[-76.58021420707101,39.23113871530424],[-76.58020314608713,39.2311318757807],[-76.58019233818887,39.23112473990489],[-76.58018195509086,39.2311172569468],[-76.58017216619169,39.23110937616808],[-76.58016303666363,39.23110104465624],[-76.58015441316313,39.23109234023053],[-76.58014612690678,39.23108340551078],[-76.58013801259614,39.23107438132779],[-76.5801299805559,39.23106535113304],[-76.58012224012698,39.2310561688488],[-76.5801146716704,39.23104689259765],[-76.58010710670628,39.23103761365614],[-76.58009938140901,39.23102841971432],[-76.58009144120544,39.2310193339972],[-76.580083401102,39.23101029836558],[-76.5800753819065,39.23100125289965],[-76.58006750673236,39.23099213948935],[-76.58005989638212,39.23098289911562],[-76.58005274017727,39.23097344147743],[-76.58004595913232,39.23096380502566],[-76.58003930933127,39.23095410688939],[-76.58003257589799,39.23094444988924],[-76.5800258981923,39.23093477056862],[-76.58001924835409,39.23092507963725],[-76.58001249051388,39.23091543786175],[-76.5800055015903,39.2309058979475],[-76.579998439602,39.23089637488614],[-76.57999129752537,39.23088688126337],[-76.5799839544675,39.23087749141113],[-76.57997629069897,39.2308682787645],[-76.57996811910823,39.23085935164801],[-76.57995920847169,39.23085083534277],[-76.57994997132327,39.23084249802378],[-76.5799408957234,39.23083406670058],[-76.57993243022653,39.23082528986018],[-76.5799243482417,39.23081629280055],[-76.57991645919337,39.23080718203216],[-76.57990872004238,39.23079798892828],[-76.57990108662335,39.23078873945327],[-76.57989351590247,39.23077946407965],[-76.57988597187494,39.23077017979324],[-76.57987848597682,39.2307608587825],[-76.57987112436807,39.23075147696335],[-76.57986395202387,39.23074201475118],[-76.57985703509887,39.23073244896272],[-76.57985062435611,39.23072267960853],[-76.5798447697571,39.23071267984424],[-76.5798389918019,39.23070264612443],[-76.57983282842223,39.23069276505752],[-76.57982643868286,39.23068297055529],[-76.57981996073728,39.23067320726413],[-76.57981336668274,39.23066349309966],[-76.57980662631599,39.23065384326694],[-76.57979970014189,39.23064427744169],[-76.57979246158348,39.2306348519196],[-76.57978501864967,39.23062551664388],[-76.57977754205075,39.23061619475873],[-76.57977020132286,39.23060681210672],[-76.57976285720761,39.23059741502971],[-76.57975545393685,39.23058803305355],[-76.57974833391836,39.23057854129546],[-76.57974183491666,39.23056881665769],[-76.57973606602383,39.23055882169819],[-76.57973073358713,39.23054866255814],[-76.5797256820592,39.23053839813196],[-76.57972075937795,39.23052808552495],[-76.57971581116497,39.23051778183399],[-76.57971066796975,39.23050754680448],[-76.57970509796043,39.23049741293497],[-76.57969944214658,39.23048729587263],[-76.57969417481814,39.23047709642889],[-76.57968976796978,39.23046671180374],[-76.57968645120728,39.23045609417755],[-76.57968381516747,39.23044533126141],[-76.57968163488201,39.23043446999099],[-76.5796796934846,39.23042355823167],[-76.57967777297219,39.23041264024156],[-76.57967565880041,39.23040176299369],[-76.57967333473898,39.23039092913222],[-76.57967102806147,39.23038009353129],[-76.57966871327218,39.23036925880207],[-76.57966635907376,39.23035842933626],[-76.5796639341636,39.23034761042646],[-76.57966140839743,39.23033680736945],[-76.57965888738202,39.23032598451223],[-76.57965629575094,39.23031515599737],[-76.57965315905554,39.23030444803612],[-76.57964903880385,39.23029397796061],[-76.57964421450974,39.23028368011436],[-76.57963899355245,39.2302734772304],[-76.57963356499634,39.23026332224467],[-76.57962811674226,39.23025316898966],[-76.57962283901794,39.23024296950471],[-76.57961790232473,39.23023268206396],[-76.5796132347921,39.23022231721935],[-76.57960876101097,39.2302118963195],[-76.57960445773793,39.23020143279285],[-76.57960029943446,39.23019093645649],[-76.5795964972232,39.23018035131764],[-76.57959321238262,39.23016962841131],[-76.57958986020395,39.2301589331877],[-76.5795858362473,39.23014843823265],[-76.57958071597288,39.23013825192029],[-76.57957486610334,39.23012825035598],[-76.57956847088359,39.23011841798555],[-76.57956166698806,39.23010875349704],[-76.57955458759,39.23009926006965],[-76.57954695539176,39.23009002048231],[-76.57953868555376,39.23008108397371],[-76.57952991819306,39.23007245464886],[-76.5795207657904,39.23006410949027],[-76.57951131227261,39.23005595782013],[-76.57950168555014,39.23004791362192],[-76.57949201581768,39.23003989629218],[-76.57948243214375,39.2300318198186],[-76.57947306588656,39.23002360270112],[-76.57946397751607,39.2300152037208],[-76.57945506471899,39.23000668916851],[-76.5794462682047,39.2299980966645],[-76.57943753563706,39.22998946295324],[-76.57942881005253,39.22998082386169],[-76.57942003796218,39.22997221522917],[-76.57941121822905,39.22996363344858],[-76.5794024869455,39.22995497992208],[-76.57939381386042,39.22994627796152],[-76.57938515590293,39.22993756434435],[-76.5793764676966,39.22992887403834],[-76.57936770501767,39.22992024291607],[-76.57935882364787,39.22991170594935],[-76.57934977820001,39.22990329990739],[-76.57934052445039,39.22989506066273],[-76.57933088218458,39.22988710557128],[-76.57932011176877,39.22987994542504],[-76.5793085392178,39.22987348500899],[-76.57929669040688,39.22986751902912],[-76.57928342036587,39.22986353056448],[-76.57926944260068,39.22986365881579],[-76.57925533922402,39.22986543954138],[-76.57924063650829,39.22986457793873],[-76.57923773534814,39.2298549850705],[-76.57923799250005,39.22984344883745],[-76.57923586290826,39.22983245172094],[-76.57923326581476,39.22982138627096],[-76.57922892156725,39.22981100995761],[-76.57922157161711,39.22980203708923],[-76.57921171787653,39.2297942019337],[-76.5792009341711,39.2297867480752],[-76.57919080358094,39.22977892093311],[-76.57918228756243,39.22977010692226],[-76.5791745705987,39.22976052741261],[-76.57916856908241,39.22975052798529],[-76.57916622295853,39.22974030656088],[-76.5791703062878,39.22972943710935],[-76.5791721215965,39.22971842170715],[-76.5791720666685,39.22970717170281],[-76.57916890548422,39.22969670414616],[-76.57916125177437,39.22968759236559],[-76.57915202744611,39.22967889201293],[-76.57914508675648,39.22966946121029],[-76.57914114368194,39.22965881880079],[-76.57913954733922,39.22964774342474],[-76.57914048925933,39.22963694377999],[-76.57914356995693,39.22962620945376],[-76.57914882259192,39.22961053224297],[-76.57915234548476,39.22959983643381],[-76.57915606867913,39.22958915125125],[-76.57915898601328,39.22957842624729],[-76.57916019799389,39.22956759153942],[-76.57915999605082,39.22955652476605],[-76.5791585165906,39.22954546512224],[-76.57915571262502,39.22953471960456],[-76.57915100143019,39.22952451041702],[-76.57914433036713,39.22951473017829],[-76.57913702778947,39.22950519719005],[-76.57912831420886,39.22949630770155],[-76.57912068890836,39.22948729240281],[-76.57911889430846,39.22947644871557],[-76.57912073660333,39.22946537485959],[-76.5791242390623,39.22945480418567],[-76.57912849153006,39.22944431637008],[-76.57913299749916,39.22943385198273],[-76.57913726511651,39.22942334800714],[-76.57914113118903,39.22941278584258],[-76.57914492323455,39.22940220719848],[-76.57914866901154,39.22939161847972],[-76.57915239165628,39.22938102427327],[-76.57915611776906,39.22937043097981],[-76.57915986816997,39.229359843178],[-76.5791636544298,39.22934926271083],[-76.57916741408835,39.22933867584269],[-76.57917116334372,39.22932808533402],[-76.57917493341273,39.22931750030447],[-76.57917875552278,39.22930692807221],[-76.57918266321757,39.22929637596379],[-76.57918668656637,39.22928585129316],[-76.57919105919045,39.22927540984533],[-76.57919574407678,39.22926504338056],[-76.57920040351972,39.22925467051894],[-76.57920469746557,39.22924421527679],[-76.5792086283268,39.22923366144884],[-76.57921241816989,39.22922306027473],[-76.57921595002152,39.22921241133518],[-76.57921910576627,39.22920171150439],[-76.57922170017483,39.22919094750745],[-76.57922313736522,39.22918002172585],[-76.5792238499847,39.22916902038371],[-76.57922434474875,39.22915803897842],[-76.57922403347692,39.22914704837804],[-76.57922276173504,39.22913611558729],[-76.57922102429416,39.22912520184487],[-76.57921880001425,39.22911435661769],[-76.57921516606284,39.22910373603499],[-76.57921170005501,39.22909311425268],[-76.5792105301531,39.22908219533841],[-76.57921001396595,39.22907119139224],[-76.57920909682956,39.22906022474204],[-76.57920782282332,39.22904928383571],[-76.57920656155704,39.22903834297502],[-76.57920561422969,39.22902738972813],[-76.57920501445409,39.22901641971166],[-76.57920458381646,39.22900544219453],[-76.57920428176546,39.22899445973367],[-76.57920406542287,39.2289834766793],[-76.57920392898193,39.22897249571287],[-76.57920401839588,39.22896151285383],[-76.57920419583438,39.22895052940952],[-76.57920426323815,39.22893954737228],[-76.57920412102784,39.22892856278194],[-76.57920399631794,39.22891755663566],[-76.57920364801092,39.22890656229864],[-76.5792027678049,39.22889561829967],[-76.57920094432318,39.22888476279827],[-76.5791980547598,39.2288740025602],[-76.5791947514241,39.22886329398449],[-76.57919146065814,39.22885261427854],[-76.57918792176692,39.22884198142413],[-76.57918431678242,39.2288313618442],[-76.57918052868379,39.22882076322637],[-76.57917657946521,39.22881018745083],[-76.57917333727184,39.22879952052927],[-76.57917141525861,39.22878868088778],[-76.5791703706718,39.22877772458875],[-76.57916972129038,39.22876672286625],[-76.57916905326678,39.22875573999314],[-76.57916885564755,39.2287447254779],[-76.57916840761828,39.22873375240128],[-76.57916618314503,39.22872294320226],[-76.57916135928403,39.2287126020952],[-76.57915433487993,39.22870304668277],[-76.57914592202708,39.22869424024227],[-76.57913695493714,39.22868573627664],[-76.57912781332685,39.22867736680107],[-76.57911853337643,39.22866908510495],[-76.57910927319139,39.22866079086801],[-76.57910018970298,39.22865238646838],[-76.57909122615163,39.22864387350401],[-76.57908220712903,39.22863534052284],[-76.57907352613209,39.22862663940708],[-76.57906559292485,39.22861761308938],[-76.57905897185422,39.22860801227699],[-76.57905383370083,39.22859774750478],[-76.57904934781321,39.2285872508695],[-76.57904507018418,39.22857679011126],[-76.57904135393535,39.22856618994413],[-76.57903760987094,39.2285555932802],[-76.57903368028602,39.22854503288261],[-76.57902969505817,39.22853448129308],[-76.57902521787713,39.22852408017032],[-76.57901965003694,39.22851401382782],[-76.57901314931215,39.22850423779252],[-76.57900662408127,39.22849449319613],[-76.57899997693772,39.22848480040717],[-76.5789932856798,39.22847512547511],[-76.57898668612508,39.22846541574123],[-76.57898031523843,39.22845562035255],[-76.57897413717095,39.22844573017273],[-76.57896814840537,39.22843575239538],[-76.57896263066333,39.22842563848842],[-76.57895786221843,39.22841533540344],[-76.57895392812213,39.22840475787174],[-76.57895090201947,39.22839398632678],[-76.5789489059784,39.2283831383077],[-76.57894797131618,39.22837220581988],[-76.57894771690874,39.2283612037101],[-76.57894767915867,39.22835018796501],[-76.57894751151024,39.22833920328121],[-76.57894743533872,39.22832822162781],[-76.57894744140562,39.2283172384678],[-76.5789474729516,39.22830625539922],[-76.57894748364572,39.22829527315656],[-76.5789475835271,39.22828428943225],[-76.57894769035718,39.22827330573283],[-76.5789476315524,39.22826232504233],[-76.57894732722272,39.22825134347097],[-76.57894698708171,39.22824034645794],[-76.57894646042213,39.22822935868428],[-76.57894554674229,39.22821840375175],[-76.57894396670736,39.22820751849095],[-76.57894113746566,39.22819675305605],[-76.57893796290809,39.22818601881023],[-76.57893563776679,39.22817520293841],[-76.57893434287595,39.22816427816531],[-76.57893357874246,39.228153299448],[-76.57893315056448,39.22814230572184],[-76.57893289486844,39.22813132612611],[-76.57893285113784,39.2281203427869],[-76.5789330066277,39.22810935655921],[-76.5789333334999,39.22809837454947],[-76.57893381089741,39.22808739848431],[-76.57893469020985,39.22807641665477],[-76.57893651625017,39.22806554361252],[-76.57893983629675,39.22805486869624],[-76.5789432420175,39.22804419859109],[-76.5789455774632,39.22803335620094],[-76.57894704366333,39.22802242421774],[-76.57894729512618,39.2280114635558],[-76.57894675573415,39.22800047483503],[-76.57894580275551,39.22798950714994],[-76.57894471196484,39.22797853806963],[-76.57894316462483,39.22796760878725],[-76.57894069223619,39.22795682121151],[-76.57893738413038,39.22794614954026],[-76.57893353581827,39.22793556330638],[-76.57892936737697,39.2279250578946],[-76.57892498426064,39.22791462287395],[-76.57892038889786,39.22790423933676],[-76.57891566595504,39.22789388686885],[-76.5789109000987,39.22788354505612],[-76.57890617831141,39.22787319349268],[-76.57890162012646,39.22786279117168],[-76.57889707471423,39.22785238349157],[-76.57889225546121,39.22784206310504],[-76.57888690127534,39.22783191554984],[-76.57888107021296,39.22782191581253],[-76.57887491191867,39.2278120229941],[-76.57886855048332,39.22780220871487],[-76.57886213797453,39.22779241406914],[-76.57885571754225,39.22778258876812],[-76.57884900908375,39.22777289935151],[-76.57884171500677,39.22776353211307],[-76.57883308581816,39.22775490592734],[-76.57882314134521,39.22774699744496],[-76.5788139497941,39.22773867820657],[-76.57880624698488,39.22772949145622],[-76.57879904526509,39.22771998042197],[-76.57879246122081,39.22771021037834],[-76.5787866207243,39.22770024303004],[-76.57878183537727,39.2276898732173],[-76.57877849785909,39.22767908973865],[-76.57877689898979,39.22766826205601],[-76.57877815661195,39.22765735184468],[-76.57878055056422,39.22764641058096],[-76.57878242771895,39.22763551340218],[-76.57878453286361,39.22762464406487],[-76.57878740738123,39.22761390900217],[-76.57879100387923,39.22760329273062],[-76.57879504694247,39.22759275733],[-76.5787993640634,39.22758229317337],[-76.57880395286698,39.22757191016074],[-76.57880887470695,39.22756161301614],[-76.57881400811905,39.22755137788345],[-76.57881924669465,39.22754118096054],[-76.57882456041858,39.22753100592568],[-76.57882995044358,39.22752085368379],[-76.57883541328468,39.22751072602397],[-76.578840951258,39.22750062295446],[-76.57884654008033,39.22749053808268],[-76.57885214972063,39.22748045778916],[-76.57885779865538,39.22747039114805],[-76.57886350191343,39.22746034271712],[-76.57886927681864,39.22745032066551],[-76.57887513955257,39.22744033045596],[-76.5788810970426,39.22743037571635],[-76.57888707542521,39.22742041294444],[-76.57889314629043,39.22741047842812],[-76.57889942856677,39.22740063294616],[-76.57890604119898,39.22739093457516],[-76.57891308809735,39.22738143773442],[-76.57892043419426,39.22737206897634],[-76.5789279928602,39.22736278925658],[-76.57893573979584,39.22735359488488],[-76.57894365070736,39.22734448127011],[-76.57895170244294,39.2273354465277],[-76.57895987187219,39.22732648516985],[-76.57896825824635,39.2273176561033],[-76.57897717914061,39.22730911359929],[-76.57898637593165,39.22730072251417],[-76.57899553803027,39.22729232229613],[-76.57900435601626,39.22728375059601],[-76.57901251929515,39.22727484776298],[-76.57901988125585,39.2272655340028],[-76.57902668783571,39.22725593540591],[-76.57903308449345,39.22724613086177],[-76.5790392155295,39.22723619925571],[-76.57904522409687,39.22722621766722],[-76.5790512544959,39.22721626498165],[-76.57905728706,39.2272063375253],[-76.57906308274198,39.22719631914119],[-76.57906867038808,39.22718622794851],[-76.57907359389372,39.22717700632675],[-76.57907408577191,39.22717608569419],[-76.57907957657612,39.22716591938906],[-76.57908487791182,39.22715567403652],[-76.57908898528531,39.22714521902452],[-76.57909131091765,39.22713446036611],[-76.57909244378439,39.22712348574732],[-76.57909297596673,39.22711244501913],[-76.57909338968982,39.2271014597143],[-76.5790934316624,39.2270904721755],[-76.57909310882803,39.22707948332843],[-76.57909246504042,39.2270685194529],[-76.57909058857335,39.22705762592131],[-76.57908807808828,39.22704681929292],[-76.57908603131524,39.22703593595975],[-76.57908406563763,39.22702504841348],[-76.57908037929761,39.22701449519042],[-76.57907562042499,39.22700415340676],[-76.57907064476711,39.22699384777728],[-76.57906611790497,39.22698344196921],[-76.5790618322846,39.22697297757475],[-76.5790576209024,39.22696249362925],[-76.57905339560268,39.22695201323678],[-76.57904907054609,39.22694155950969],[-76.57904451465745,39.22693116710811],[-76.57903960266283,39.22692086891166],[-76.5790346651537,39.22691057692886],[-76.5790300756304,39.22690019341383],[-76.57902590607213,39.22688968889907],[-76.57902195694668,39.22687911941797],[-76.57901804725167,39.22686854107037],[-76.57901399483207,39.22685800905109],[-76.57900961983327,39.22684758126566],[-76.5790047401004,39.2268373129088],[-76.57899918165496,39.22682724749463],[-76.5789929943815,39.22681737078945],[-76.57898634757836,39.22680764736938],[-76.57897941052784,39.22679804451276],[-76.57897235368611,39.22678852679989],[-76.57896494836567,39.22677918438897],[-76.57895705182496,39.22677006631069],[-76.57894883811743,39.22676111644031],[-76.57894049884979,39.2267522480897],[-76.57893218301352,39.22674333478359],[-76.57892379286794,39.22673445363829],[-76.57891521317767,39.22672570242516],[-76.5789063286967,39.22671718071701],[-76.57889702188423,39.22670898447539],[-76.57888698344328,39.22670132157086],[-76.57887617615397,39.22669421889309],[-76.57886492307716,39.22668749114003],[-76.57885354263036,39.22668095479454],[-76.57884214461626,39.22667445171366],[-76.57883061859235,39.22666805266257],[-76.57881888845313,39.22666189698869],[-76.578806876919,39.22665612673764],[-76.57879452422085,39.22665086059748],[-76.57878197880655,39.2266458685017],[-76.57876931782728,39.2266410300228],[-76.57875656226794,39.22663632181597],[-76.57874372963906,39.22663172052369],[-76.57873084093085,39.22662720190026],[-76.57871791365396,39.22662274258833],[-76.57870496879323,39.22661831924303],[-76.57869202502279,39.22661390761026],[-76.57867909517796,39.22660949152221],[-76.57866613605063,39.22660513117577],[-76.57865313716425,39.22660083554121],[-76.57864011019622,39.22659658844639],[-76.57862706333871,39.2265923755083],[-76.5786140047787,39.22658818324464],[-76.57860094270848,39.22658399727231],[-76.57858788764192,39.2265798023159],[-76.5785748466186,39.22657558308748],[-76.5785618301363,39.22657132701379],[-76.57854884639269,39.22656701881104],[-76.57853590358552,39.22656264319556],[-76.57852301222329,39.22655818579253],[-76.57851017942049,39.22655361870344],[-76.57849744892549,39.2265487907547],[-76.57848492777107,39.22654362035991],[-76.5784727262985,39.22653805386878],[-76.57846095834483,39.22653203404045],[-76.57844969498788,39.22652548816727],[-76.57843884205205,39.22651847806485],[-76.5784282584276,39.2265111680688],[-76.57841780529427,39.22650372702691],[-76.57840734269507,39.22649632017966],[-76.57839683101354,39.22648898791969],[-76.5783863682529,39.22648160899406],[-76.5783759764973,39.22647416997038],[-76.57836567435145,39.22646665830464],[-76.57835548275214,39.22645905875886],[-76.57834543077513,39.22645135071965],[-76.57833553123983,39.22644352072138],[-76.57832572712083,39.22643561539964],[-76.5783159567603,39.22642768137352],[-76.57830616078986,39.22641976977395],[-76.57829627755166,39.22641192721991],[-76.57828626519346,39.22640418058432],[-76.57827619722686,39.2263964373512],[-76.57826596864136,39.22638882865675],[-76.57825543242402,39.22638153773143],[-76.57824425631563,39.22637493360105],[-76.57822413273091,39.22636633992538],[-76.57821462755766,39.22635821858088],[-76.57820511540584,39.22635010261518],[-76.57819565326876,39.22634195079733],[-76.57818630975287,39.22633371653338],[-76.57817710233148,39.22632538277145],[-76.57816792630415,39.22631702840365],[-76.57815866768426,39.22630873589198],[-76.57814921247991,39.22630058859906],[-76.57813935593886,39.22629274162348],[-76.57812904805381,39.22628522991577],[-76.57811865292246,39.22627778365034],[-76.57810846843769,39.2262701651918],[-76.57809838529897,39.22626244801101],[-76.5780881681937,39.22625486276212],[-76.57807756664681,39.2262476580603],[-76.57806573959374,39.2262416577962],[-76.57805367824893,39.22623591160885],[-76.57804160394208,39.22623020320632],[-76.57802953312225,39.22622449301352],[-76.57801762786313,39.22621859695361],[-76.57800605024397,39.22621233004909],[-76.57799481656401,39.22620567794619],[-76.5779837204792,39.22619886870078],[-76.57797254512084,39.22619214744554],[-76.57796108063835,39.22618574762816],[-76.57794935386079,39.226179636917],[-76.57793748951356,39.22617367974303],[-76.57792556921527,39.22616778361956],[-76.57791367456859,39.22616185876224],[-76.57790189067182,39.2261558117961],[-76.57789033193478,39.22614948909967],[-76.57787932311737,39.22614261440125],[-76.57786881265267,39.22613529020428],[-76.577858473379,39.22612780718432],[-76.57784817371859,39.22612028467166],[-76.57783778090881,39.22611284649619],[-76.57782716570416,39.22610560929413],[-76.57781630715701,39.2260985901049],[-76.57780530074585,39.22609170279717],[-76.57779424194905,39.22608486123959],[-76.57778322854536,39.2260779820116],[-76.57777235600246,39.22607098078343],[-76.57776173143877,39.22606376155723],[-76.57775162267988,39.22605607938414],[-76.57774182827636,39.22604811819907],[-76.57773197326273,39.22604022255193],[-76.57772168266285,39.22603273879398],[-76.57771071545899,39.22602588314545],[-76.57769936872363,39.22601936121982],[-76.57768774946814,39.22601309503434],[-76.57767592978387,39.2260070362062],[-76.57766398175161,39.22600113815435],[-76.57765197395632,39.22599535788821],[-76.5776396743556,39.22598996030223],[-76.57762708427343,39.22598491747706],[-76.57761444745647,39.22597994384224],[-76.57760200072434,39.22597475019945],[-76.57758998898201,39.22596905098272],[-76.57757842296874,39.22596279308484],[-76.5775670869679,39.22595622254283],[-76.5775559993431,39.22594936734696],[-76.5775451819375,39.22594225459931],[-76.57753465659418,39.22593491140189],[-76.57752445568102,39.22592734777985],[-76.57751467363632,39.22591945778133],[-76.57750521163052,39.22591130680759],[-76.5774959253681,39.22590301053962],[-76.57748666939521,39.22589468465424],[-76.57747730172179,39.22588644664224],[-76.57746767574147,39.22587841127547],[-76.57745772864355,39.22587062426739],[-76.57744766647801,39.22586290710488],[-76.57743749268171,39.22585526610576],[-76.57742718505774,39.22584773361805],[-76.57741672257808,39.22584034019251],[-76.57740608653096,39.22583311638814],[-76.57739525357205,39.22582609274739],[-76.57738418291063,39.22581931236056],[-76.577372853658,39.22581278235874],[-76.57736132754174,39.22580644441344],[-76.57734966864858,39.2258002329986],[-76.57733794219644,39.22579408709611],[-76.57732621226664,39.2257879420807],[-76.57731454639342,39.2257817369426],[-76.57730300520538,39.22577540344111],[-76.57729159473428,39.22576890106289],[-76.57728024847538,39.22576231244011],[-76.57726889637443,39.22575573280296],[-76.57725746836122,39.22574926008388],[-76.57724589207058,39.22574298860395],[-76.57723409743761,39.22573701539478],[-76.5772219478279,39.22573153092915],[-76.57720919333863,39.22572688200718],[-76.57719607921305,39.22572272631563],[-76.57718290328086,39.2257186424622],[-76.57716996337203,39.22571420905479],[-76.57715724782523,39.22570943956312],[-76.57714460012016,39.22570455771721],[-76.57713198401268,39.22569962103627],[-76.57711936555852,39.22569468975018],[-76.57710670850817,39.22568982227892],[-76.57709398832682,39.22568505456524],[-76.57708122256845,39.22568035604582],[-76.57706843577827,39.22567568897648],[-76.57705565248017,39.22567101921598],[-76.57704289605596,39.22566630991666],[-76.57703018987155,39.22566152693323],[-76.5770175561614,39.2256566316122],[-76.57700497177441,39.22565162206875],[-76.576992506733,39.22564640847742],[-76.57698034968944,39.22564081676711],[-76.57696867766157,39.22563468183273],[-76.57695743236921,39.22562806651889],[-76.5769464284895,39.22562116922968],[-76.57693550041932,39.22561418303562],[-76.57692447561767,39.22560729918058],[-76.57691318733941,39.22560070802848],[-76.57690159012357,39.22559445895816],[-76.57688981804719,39.2255884020229],[-76.57687793406048,39.22558246808959],[-76.57686599996646,39.2255765862196],[-76.57685407870467,39.22557068908137],[-76.57684223322548,39.22556470754201],[-76.57683054869779,39.22555853651747],[-76.57681906368227,39.22555211849708],[-76.57680761479513,39.22554566277309],[-76.57679602350616,39.2255393938964],[-76.5767841136065,39.22553353552545],[-76.57677190990987,39.22552800487794],[-76.57675954315341,39.22552262947579],[-76.5767470012085,39.22551750115466],[-76.57673427194635,39.22551271175011],[-76.57672134092746,39.22550835218859],[-76.5767081860458,39.22550443950521],[-76.57669479996245,39.22550084486205],[-76.57668122997643,39.2254975990561],[-76.5766675267858,39.22549474550745],[-76.5766537422628,39.22549232493833],[-76.57663991208246,39.22549037531001],[-76.57662585107876,39.22548887433588],[-76.5766116127633,39.225487976242],[-76.57659738115723,39.22548789517663],[-76.57658334489798,39.22548884800719],[-76.57656950844218,39.22549066990733],[-76.57655559463848,39.22549264465913],[-76.57654164049187,39.22549478140383],[-76.57652769789078,39.22549711816134],[-76.57651381757626,39.22549969114591],[-76.57650005374738,39.22550253928661],[-76.5764864548183,39.22550570059081],[-76.576473073846,39.2255092112812],[-76.57645996271354,39.22551311027863],[-76.57644717440277,39.2255174464163],[-76.57643479104408,39.2255224298722],[-76.57642276537574,39.2255280235439],[-76.57641101944267,39.22553409383499],[-76.57639947299505,39.22554050353762],[-76.57638804344005,39.2255471199392],[-76.57637665283892,39.22555380674104],[-76.57636521976244,39.22556043033395],[-76.57635366511913,39.22556685351409],[-76.5763419281106,39.22557297877795],[-76.57633013595766,39.22557902907695],[-76.57631827825374,39.22558500167119],[-76.57630629644125,39.22559081167609],[-76.5762941342522,39.2255963787192],[-76.57628181925499,39.22560174073264],[-76.57626940544479,39.22560697087444],[-76.57625693187951,39.22561212243141],[-76.57624443877005,39.22561724959547],[-76.57623196749054,39.22562240566199],[-76.57621954215664,39.22562762494753],[-76.57620703860275,39.22563275477225],[-76.5761944787037,39.22563781683381],[-76.57618193489253,39.22564289966997],[-76.5761694807603,39.22564809182287],[-76.57615718989265,39.2256534827353],[-76.5761451335805,39.2256591582387],[-76.57613338997199,39.22566521950256],[-76.57612195437534,39.2256716764186],[-76.57611073142702,39.22567840163273],[-76.57609962000502,39.22568526236535],[-76.57608852130377,39.22569212584516],[-76.57607733535427,39.22569886019747],[-76.57606596451983,39.22570533085363],[-76.57605430650982,39.22571140683117],[-76.57604195030311,39.22571648762773],[-76.57602860085137,39.22572013980356],[-76.57601497110907,39.22572340813451],[-76.57600170854569,39.22572724888386],[-76.57598851131992,39.22573120246506],[-76.5759753151593,39.22573517136188],[-76.57596222221983,39.22573930907569],[-76.57594933581012,39.22574377001288],[-76.57593674888575,39.22574869683243],[-76.57592441895747,39.22575402902869],[-76.5759122622642,39.2257596356863],[-76.57590020652916,39.22576540214519],[-76.575888181781,39.22577121555535],[-76.57587611573754,39.22577696215739],[-76.57586393844369,39.22578252639892],[-76.57585157644864,39.22578779631795],[-76.57583896551792,39.22579266809279],[-76.57582616284077,39.2257972617335],[-76.57581321546344,39.22580165037315],[-76.57580014301972,39.22580584309042],[-76.57578696396939,39.22580985166215],[-76.57577369678815,39.22581368516283],[-76.57576035994114,39.22581735446851],[-76.57574697074608,39.22582086864958],[-76.57573354308397,39.22582423045854],[-76.5757200172776,39.22582734870096],[-76.5757063943613,39.22583024409853],[-76.5756927006054,39.2258329779991],[-76.57567896346521,39.22583560725088],[-76.57566520805824,39.22583819229689],[-76.57565146067078,39.22584079178277],[-76.57563774873654,39.22584346615982],[-76.57562409739434,39.22584627226799],[-76.57561053291973,39.22584927055447],[-76.57559708275146,39.22585252056992],[-76.5755838212236,39.22585618021936],[-76.57557083297434,39.22586042726228],[-76.57555803224461,39.22586507762986],[-76.57554532409132,39.22586993370833],[-76.57553261358788,39.22587479518156],[-76.57551980578594,39.22587946533653],[-76.57550683892393,39.2258838142377],[-76.57549384109329,39.22588811258182],[-76.57548082946086,39.22589239466058],[-76.57546779490181,39.22589663702067],[-76.5754547294442,39.2259008171139],[-76.57544162280526,39.22590491148276],[-76.57542846701828,39.22590889667816],[-76.57541525180592,39.22591274834192],[-76.57540196690688,39.22591643941351],[-76.57538858484486,39.22591991664763],[-76.57537512048651,39.22592321162526],[-76.57536159782893,39.22592637847985],[-76.57534804086352,39.22592947224572],[-76.57533447475606,39.22593254525902],[-76.57532092350338,39.22593565165333],[-76.57530740993877,39.22593884645875],[-76.57529395807506,39.22594218110651],[-76.57528053458613,39.2259456122387],[-76.5752671566762,39.2259491678417],[-76.5752538920858,39.22595294634559],[-76.57524080507021,39.22595704796925],[-76.57522791057136,39.22596149168324],[-76.57521513405635,39.2259661529104],[-76.5752024388701,39.22597096395975],[-76.57518978949412,39.22597586074748],[-76.57517715157881,39.22598077739249],[-76.57516448845308,39.22598564890594],[-76.57515178868144,39.22599045092542],[-76.57513911869522,39.22599530709806],[-76.57512647391601,39.2260002083995],[-76.57511384175012,39.22600513046316],[-76.57510120613517,39.22601004800904],[-76.57508855448293,39.22601493576985],[-76.57507587187837,39.22601977027131],[-76.57506314459133,39.22602452353955],[-76.57505036001751,39.22602917300949],[-76.5750375020946,39.22603369340115],[-76.57502455593442,39.22603805673646],[-76.57501150891656,39.22604224315258],[-76.57499837248196,39.22604627611111],[-76.57498516611881,39.22605018901147],[-76.5749719093209,39.22605401435214],[-76.57495862388708,39.22605778644174],[-76.57494532700034,39.22606153686965],[-76.57493203930686,39.22606529903947],[-76.5749187802895,39.22606910725134],[-76.57490556828903,39.22607299309897],[-76.57489242510442,39.22607699089086],[-76.57487936907644,39.22608113222074],[-76.57486642084059,39.22608545229371],[-76.57485362741507,39.22609002874714],[-76.57484114481272,39.22609511076096],[-76.57482891340555,39.22610059903373],[-76.57481683567718,39.22610633917909],[-76.57480481413818,39.22611217230696],[-76.57479275244123,39.2261179422336],[-76.57478055307564,39.22612349367187],[-76.57476811969958,39.22612866953725],[-76.57475541329377,39.22613341023688],[-76.57474254053679,39.22613788730508],[-76.57472954043746,39.22614216213617],[-76.5747164462678,39.22614628709568],[-76.57470329244181,39.22615031725591],[-76.57469011339506,39.22615430408585],[-76.57467694238883,39.22615830175283],[-76.57466381384779,39.22616236352744],[-76.57465073120305,39.22616649662845],[-76.5746376485783,39.22617062612493],[-76.5746245613521,39.22617475019859],[-76.57461147184588,39.22617886795715],[-76.57459837774356,39.22618297939209],[-76.57458528137205,39.22618708271032],[-76.5745721804044,39.22619117970505],[-76.57455907485682,39.22619526767387],[-76.5745459658766,39.22619934842258],[-76.57453285232178,39.2262034192447],[-76.5745197341817,39.22620748194169],[-76.57450659772633,39.22621150853969],[-76.57449338686733,39.22621538894042],[-76.574480151962,39.22621922331275],[-76.5744669617192,39.22622314161794],[-76.5744538825585,39.22622726930497],[-76.57444089038631,39.22623156845381],[-76.57442796005373,39.22623598402585],[-76.57441508241453,39.22624049617089],[-76.57440225296054,39.22624508415456],[-76.57438946021325,39.22624973082055],[-76.57437669955101,39.22625443435054],[-76.57436397558462,39.22625919836435],[-76.57435129061406,39.22626402557273],[-76.57433865041358,39.22626891869885],[-76.57432603886696,39.22627386147043],[-76.57431343293092,39.22627883398663],[-76.5743009165529,39.22628393563764],[-76.57428858289671,39.22628927395402],[-76.57427654002467,39.22629498264291],[-76.57426487521809,39.22630118452695],[-76.5742533850749,39.22630761494035],[-76.57424183522666,39.22631395866131],[-76.57422998782549,39.22631990135611],[-76.57421763491828,39.22632516483054],[-76.57420484892023,39.22632984032582],[-76.57419186416735,39.22633424846821],[-76.57417892191701,39.22633871441318],[-76.57416625997907,39.22634355879986],[-76.57415407476337,39.2263490534753],[-76.57414212506637,39.22635486427643],[-76.57413029713797,39.2263608403606],[-76.57411856455228,39.22636694650166],[-76.5741069020417,39.22637314747752],[-76.5740952831805,39.22637940806195],[-76.5740836815429,39.22638569302881],[-76.57407207070325,39.22639196715175],[-76.57406042538862,39.22639819610954],[-76.57404871801506,39.22640434467163],[-76.57403695433548,39.2264104191644],[-76.57402518144846,39.22641648371402],[-76.574013390154,39.22642252747769],[-76.57400157011021,39.22642853690633],[-76.5739897121334,39.22643449845477],[-76.57397780357077,39.22644039766472],[-76.57396583178594,39.22644621737548],[-76.57395378067896,39.22645193861223],[-76.57394167209705,39.22645758757685],[-76.57392953131867,39.22646319768985],[-76.5739173859492,39.22646880057873],[-76.57390526126154,39.22647443056474],[-76.57389318369758,39.22648012017198],[-76.57388118429917,39.22648590734581],[-76.57386926766621,39.22649179750766],[-76.57385738895697,39.226497736448],[-76.57384550335648,39.22650366545356],[-76.57383356601225,39.22650953211627],[-76.5738216733781,39.22651547460558],[-76.57380980595538,39.2265214613233],[-76.57379786389707,39.22652734057623],[-76.57378574505076,39.22653295886097],[-76.57377335415337,39.22653817260785],[-76.57376068524684,39.22654300971923],[-76.5737478027744,39.22654753888823],[-76.57373475861314,39.22655179993736],[-76.57372160927255,39.2265558327062],[-76.57370838021487,39.22655963998942],[-76.57369500476749,39.22656313867324],[-76.57368153208564,39.22656643612881],[-76.57366801933928,39.2265696550696],[-76.57365452830905,39.22657292182891],[-76.57364111615405,39.22657636092192],[-76.57362779645229,39.22658002554383],[-76.5736145200865,39.22658380201817],[-76.57360123578566,39.22658754963724],[-76.57358789110981,39.22659112949074],[-76.57357443478269,39.22659440177162],[-76.57356073797217,39.22659702731916],[-76.57354682921488,39.22659907559693],[-76.57353291939062,39.2266011085559],[-76.57351922167888,39.22660369085798],[-76.57350583291719,39.22660708948554],[-76.57349260946661,39.22661092378817],[-76.57347949094277,39.22661502780338],[-76.57346642270328,39.22661924369634],[-76.57345334549494,39.22662341001243],[-76.57344400319501,39.22663028773199],[-76.57344392131567,39.22663061531776],[-76.57331134446828,39.22670046258501],[-76.57331055685611,39.22670009040262],[-76.57330665815365,39.22670227953276],[-76.5733030948704,39.22670434917792],[-76.57330026377352,39.22670599271435],[-76.57329743499272,39.22670763625921],[-76.5732953314227,39.22670885817391],[-76.57329163252649,39.22671075347547],[-76.57328868641913,39.22671226327832],[-76.57328573914819,39.22671377397768],[-76.57328354002297,39.22671490096307],[-76.57327973187968,39.22671666705577],[-76.5732766925658,39.22671807653306],[-76.57327365208825,39.22671948690682],[-76.57327138276722,39.22672053887216],[-76.57326753662763,39.22672226789442],[-76.57326446854451,39.2267236466403],[-76.57326140161939,39.22672502539037],[-76.57325911390903,39.22672605386838],[-76.57325529192131,39.22672781090214],[-76.57325224571193,39.22672921134595],[-76.57324920182946,39.22673060999657],[-76.57324693371996,39.22673165295807],[-76.57324320035403,39.22673350219308],[-76.57324022667201,39.22673497496256],[-76.573237255317,39.22673644593885],[-76.57323504247702,39.226737542247],[-76.5732314668351,39.22673954788979],[-76.57322861862878,39.22674114722415],[-76.57322577043314,39.22674274475692],[-76.5732236485152,39.2267439359772],[-76.5732203757396,39.22674622826761],[-76.57321775776359,39.22674805993894],[-76.57321513628608,39.22674989610132],[-76.57321317773668,39.2267512680711],[-76.57321009831578,39.22675376193791],[-76.57320763803678,39.22675575452092],[-76.57320517542513,39.22675774979777],[-76.57320333778402,39.22675923750669],[-76.57320025249064,39.22676174486352],[-76.57319779566375,39.22676374106203],[-76.57319534232728,39.22676573457085],[-76.57319351629398,39.2267672178179],[-76.57319023990125,39.22676953351456],[-76.57318763343974,39.22677137603642],[-76.57318503280113,39.22677321317467],[-76.5731830997615,39.22677457983203],[-76.57317948399923,39.22677651596739],[-76.57317659905016,39.22677806202098],[-76.57317370946306,39.22677960895841],[-76.57317155417448,39.22678076402522],[-76.5731676714894,39.22678240643657],[-76.57316456673206,39.22678372019045],[-76.57316145385155,39.22678503661705],[-76.57315913050707,39.22678601992461],[-76.57315516825285,39.22678760529713],[-76.57315200820891,39.22678886840606],[-76.57314884931752,39.22679013241983],[-76.57314649611628,39.22679107328197],[-76.57314266951154,39.22679282669216],[-76.57313962448232,39.22679422263346],[-76.57313658410166,39.22679561588921],[-76.57313432181694,39.22679665256428],[-76.57313070466662,39.22679862652576],[-76.57312781954231,39.22680020140242],[-76.5731249332597,39.22680177627475],[-76.57312278132484,39.22680295117],[-76.57311925158396,39.22680502633622],[-76.57311643661657,39.2268066825378],[-76.57311361932737,39.2268083396316],[-76.5731115179808,39.22680957596355],[-76.5731080215862,39.22681169088499],[-76.57310523190718,39.22681337870551],[-76.57310244222266,39.2268150674267],[-76.5731003592647,39.22681632724559],[-76.57309683983173,39.22681842136495],[-76.57309403288885,39.22682009110684],[-76.5730912271039,39.22682176085288],[-76.57308913380918,39.22682300622149],[-76.57308557296516,39.22682505334944],[-76.57307775420978,39.22682951078546],[-76.57306636652854,39.22683601081501],[-76.57305493971852,39.22684246926536],[-76.57304342779648,39.22684882922007],[-76.57303178592637,39.22685503556867],[-76.57301994741441,39.22686100879992],[-76.573007915697,39.22686675523176],[-76.57299579542588,39.2268723977507],[-76.57298368893646,39.22687805923487],[-76.57297167903323,39.22688383636879],[-76.57295965182678,39.22688960172845],[-76.57294761999673,39.22689536526844],[-76.57293564222769,39.2269011902569],[-76.57292377952037,39.22690713997014],[-76.5729120893796,39.22691328127516],[-76.57290088587897,39.22691996301526],[-76.57289004593461,39.2269270460228],[-76.57287904382645,39.22693394017655],[-76.57286741827168,39.22694012494946],[-76.57285546131831,39.22694595270775],[-76.57284333636743,39.226951598797],[-76.57283107000697,39.22695707142093],[-76.5728186876505,39.22696238148126],[-76.57280621588055,39.22696753808254],[-76.57279357900399,39.2269724175426],[-76.57278058630773,39.22697676424701],[-76.57276746391352,39.22698091590976],[-76.57275447363871,39.22698524460448],[-76.57274187148813,39.22699012598697],[-76.57272977576625,39.22699572352882],[-76.57271800852074,39.22700177805908],[-76.57270641926334,39.22700808545401],[-76.57269486098562,39.22701444070183],[-76.57268318434701,39.22702064148451],[-76.57267122043794,39.22702646559558],[-76.57265891745236,39.22703186150198],[-76.57264657538178,39.22703720862272],[-76.57263450342268,39.22704289631911],[-76.57262268088067,39.22704889929405],[-76.57261094453386,39.22705501247663],[-76.57259915645481,39.22706106151441],[-76.57258720169393,39.22706690276497],[-76.57257519629393,39.22707269068402],[-76.57256316672331,39.22707845329204],[-76.57255109002581,39.22708415627577],[-76.57253894903042,39.22708976624396],[-76.57252672077006,39.22709525068488],[-76.57251438687746,39.22710058250829],[-76.57250193085716,39.22710580849451],[-76.57248930255464,39.22711079514565],[-76.57247644290315,39.22711535038074],[-76.57246329858864,39.22711928844515],[-76.57244994277102,39.22712276904312],[-76.5724364599631,39.22712598975279],[-76.57242288445852,39.22712902546371],[-76.57240925633027,39.22713195288796],[-76.57239560987173,39.22713484691504],[-76.57238198168159,39.22713778424447],[-76.57236841068546,39.22714083978259],[-76.5723549263109,39.22714412713483],[-76.57234149990316,39.22714759665391],[-76.57232806790422,39.22715103282229],[-76.57232143969368,39.22715259674231],[-76.57231456559822,39.22715422011814],[-76.57230092710577,39.22715694391616],[-76.57228700047794,39.2271590505303],[-76.57227290739664,39.22716033502638],[-76.57225886480254,39.22716054417563],[-76.57224482747867,39.2271594940544],[-76.57223083358829,39.22715757844188],[-76.57221702411199,39.22715523382861],[-76.5722045357749,39.22715217070416],[-76.57220352158151,39.22715192199591],[-76.57219002342971,39.22714865251416],[-76.57217613587072,39.22714658144803],[-76.57216192062941,39.22714545950686],[-76.57214802135546,39.22714610153881],[-76.57213482963736,39.22715002227893],[-76.57212862808073,39.22715189400802],[-76.57212156212991,39.22715402741443],[-76.57210812359925,39.22715739237237],[-76.5720946644872,39.22716071311559],[-76.57208119397187,39.22716400409006],[-76.57206771542994,39.22716728152201],[-76.57205423689759,39.22717055715092],[-76.57204076522576,39.22717384721573],[-76.57202730380212,39.22717716614128],[-76.57201386181002,39.22718052747272],[-76.57200044494228,39.22718394744482],[-76.57198705548257,39.22718743147057],[-76.57197368656905,39.22719096511257],[-76.57196033020344,39.22719453032604],[-76.57194697955107,39.22719810816971],[-76.57193362891365,39.22720168330958],[-76.5719202702712,39.22720524130393],[-76.57190691620018,39.22720880922203],[-76.5718935655424,39.22721238705961],[-76.57188021719413,39.22721596580486],[-76.57186686540271,39.22721953913136],[-76.57185350790084,39.22722309892387],[-76.57184014239944,39.2272266406701],[-76.57182678599868,39.22723020947137],[-76.57181343303834,39.22723378368832],[-76.57180006408029,39.22723732181427],[-76.57178666316618,39.22724078145443],[-76.5717732143323,39.22724412111469],[-76.5717597141532,39.22724733267555],[-76.57174617975635,39.22725045673452],[-76.57173261680192,39.22725351493092],[-76.57171903560979,39.22725652441719],[-76.57170544416185,39.22725950594034],[-76.5716918481455,39.22726247663589],[-76.5716782555861,39.22726545004487],[-76.57166464936724,39.22726838376813],[-76.57165102833073,39.22727127780153],[-76.5716373993222,39.22727414928476],[-76.57162376689249,39.22727701174619],[-76.57161014128003,39.22727989584955],[-76.57159655307458,39.22728291430384],[-76.57158298073925,39.22728598956352],[-76.57156938797515,39.22728899538714],[-76.57155574078867,39.22729180734323],[-76.57154200403384,39.22729430009524],[-76.57152817206153,39.2272964502023],[-76.57151430156031,39.2272984596457],[-76.57150040044135,39.22730036088229],[-76.5714864755067,39.22730217825787],[-76.57147253472735,39.22730393432109],[-76.57145858258905,39.22730565340924],[-76.57144462590449,39.22730735806667],[-76.57143067031762,39.22730907263505],[-76.57141672379933,39.22731081966286],[-76.57140279084065,39.22731262258681],[-76.57138887824897,39.22731450485198],[-76.57137499054788,39.2273164844904],[-76.57136112320822,39.22731854437086],[-76.5713472693954,39.22732066555199],[-76.57133342574384,39.22732283000594],[-76.57131958773525,39.22732501879985],[-76.57130575200392,39.22732721390593],[-76.57129191286808,39.22732939728783],[-76.57127806580942,39.22733155001269],[-76.57126420857712,39.22733366126299],[-76.5712503590809,39.22733583379281],[-76.57123651848984,39.22733806580487],[-76.57122267787067,39.22734030231913],[-76.57120882713218,39.22734248835116],[-76.57119495850488,39.22734456802441],[-76.57118106305016,39.22734648725949],[-76.5711671318296,39.22734819197698],[-76.57115315367565,39.227349613677],[-76.57113912081344,39.22735069738363],[-76.57112504435112,39.22735152150508],[-76.57111094108922,39.22735218068454],[-76.57109682319589,39.22735276954814],[-76.57108270863527,39.22735338184243],[-76.57106860956975,39.22735411309438],[-76.57105454165256,39.22735505614137],[-76.57104050239313,39.22735623979919],[-76.57102647841627,39.22735757754432],[-76.57101246223557,39.22735896666057],[-76.57099844172117,39.22736030621654],[-76.57098440705415,39.22736149618989],[-76.57097034727389,39.22736243385187],[-76.57095626233694,39.22736312640855],[-76.57094216719979,39.2273637819943],[-76.57092806528243,39.22736440962945],[-76.57091395893916,39.2273650030172],[-76.57089984704459,39.22736555674868],[-76.5708857319313,39.22736606813013],[-76.57087161480096,39.22736652995972],[-76.57085749683361,39.22736693863859],[-76.57084337806177,39.22736728876226],[-76.57082926082909,39.22736757583536],[-76.57081514632635,39.22736779445761],[-76.57080103573351,39.22736794103023],[-76.57078693024675,39.2273680092521],[-76.5707728069162,39.22736796390895],[-76.57075865451463,39.22736774640915],[-76.57074449868954,39.22736732892233],[-76.57073036163611,39.22736668000244],[-76.57071626669654,39.22736577000924],[-76.57070223953484,39.22736456841007],[-76.57068830349336,39.22736304556465],[-76.57067450168623,39.22736096652765],[-76.57066082618664,39.2273583015444],[-76.57064722583397,39.22735527562234],[-76.57063365063641,39.22735211197168],[-76.57062004944932,39.22734903289747],[-76.57060637111707,39.22734626250644],[-76.57059259791899,39.22734385838349],[-76.5705787656445,39.2273416477101],[-76.57056490618383,39.22733952791418],[-76.57055105025829,39.227337398221],[-76.570537227442,39.22733515605009],[-76.5705234684728,39.22733269792433],[-76.57050979109852,39.22732996175508],[-76.57049616103093,39.22732706361724],[-76.57048253804395,39.22732414388505],[-76.57046888305321,39.22732134563925],[-76.57045515582145,39.22731881105547],[-76.57044132552362,39.22731665802285],[-76.57042740756371,39.22731482894795],[-76.57041343984083,39.22731318524959],[-76.57039945909581,39.2273115883424],[-76.57038549976446,39.22730989783094],[-76.57037159029575,39.22730800572599],[-76.57035770815675,39.22730599932067],[-76.57034383912855,39.22730393170869],[-76.5703299736954,39.22730184429111],[-76.57031610584328,39.22729977397784],[-76.57030222490377,39.22729776126484],[-76.57028832369363,39.22729584485923],[-76.57027439625331,39.22729405266338],[-76.57026044504612,39.22729236036522],[-76.57024647829333,39.22729074907848],[-76.57023249727304,39.22728919899085],[-76.57021850905375,39.22728769031094],[-76.5702045172135,39.22728620593711],[-76.57019052533023,39.22728472876766],[-76.57017653221305,39.22728326420296],[-76.57016253551852,39.22728181673826],[-76.57014853525199,39.22728038547282],[-76.57013453257169,39.22727897041085],[-76.57012052630847,39.22727757334967],[-76.57010651878407,39.227276193397],[-76.57009250768218,39.22727483054431],[-76.57007849415011,39.2272734865974],[-76.5700644758279,39.2272721687538],[-76.57005045143744,39.22727089682607],[-76.57003642103867,39.22726966090575],[-76.57002238819321,39.22726844659345],[-76.57000835298292,39.22726724037783],[-76.569994318964,39.22726602876018],[-76.5699802873763,39.22726479823346],[-76.56996626177613,39.22726353529899],[-76.56995224226712,39.22726222284231],[-76.56993822876198,39.22726087527563],[-76.56992421765548,39.22725951420437],[-76.56991020416231,39.22725816483283],[-76.56989618582442,39.22725685057215],[-76.56988216145092,39.22725557682279],[-76.56986812744186,39.22725436428929],[-76.56985408009916,39.22725324989012],[-76.56984001937913,39.22725224083133],[-76.56982595143788,39.22725127678326],[-76.56981188710236,39.22725029112804],[-76.56979783603593,39.22724921814429],[-76.56978380555852,39.22724799660589],[-76.56976978479955,39.22724670033681],[-76.56975576770654,39.22724537255231],[-76.56974175430125,39.22724400964923],[-76.56972774807994,39.22724260803741],[-76.56971374906993,39.22724116321292],[-76.5696997596039,39.22723967248211],[-76.56968577970905,39.2272381313411],[-76.56967180938555,39.22723653978991],[-76.56965782038532,39.22723497248965],[-76.56964381392658,39.22723341953612],[-76.56962981589743,39.22723181346593],[-76.5696158521805,39.22723008771633],[-76.56960194634242,39.22722817571622],[-76.56958812542949,39.22722601000638],[-76.56957441301923,39.22722352221417],[-76.5695608130722,39.22722063218487],[-76.5695473184761,39.2272173669158],[-76.5695339323177,39.22721379037358],[-76.56952065419853,39.22720996831357],[-76.56950748488904,39.22720596469394],[-76.56949443466492,39.22720180387338],[-76.56948153670183,39.22719736256704],[-76.56946875242147,39.22719270008474],[-76.56945603844382,39.22718790364303],[-76.56944334790877,39.22718306134615],[-76.56943063395089,39.2271782621994],[-76.56941786142244,39.2271735727313],[-76.56940511465284,39.22716883741661],[-76.569392362067,39.22716410658306],[-76.56937953566926,39.22715951599875],[-76.56936656283116,39.2271552014147],[-76.5693533920218,39.22715125722349],[-76.56934008999679,39.22714756116417],[-76.56932675283078,39.2271439307312],[-76.56931855794791,39.22714161628696],[-76.56931347660947,39.22714018161764],[-76.56930035504783,39.22713613851551],[-76.56928735770167,39.22713185626075],[-76.56927442947836,39.22712744364532],[-76.56926154227702,39.22712295100972],[-76.56924867147687,39.22711842780641],[-76.56923578897143,39.22711392527661],[-76.56922286782348,39.22710949286432],[-76.56920985299485,39.22710523035384],[-76.56919676908468,39.22710109189573],[-76.56918374603211,39.22709684916927],[-76.56917091607085,39.22709227746526],[-76.56915828621531,39.22708736600013],[-76.56914571253596,39.22708235835657],[-76.5691330382491,39.2270775169863],[-76.56912020601666,39.2270729389629],[-76.56910731761675,39.22706845621439],[-76.56909439529966,39.22706402828742],[-76.56908146129369,39.22705961833164],[-76.56906853898529,39.22705518950107],[-76.56905564944469,39.22705070494109],[-76.56904281373133,39.2270461295987],[-76.56903002016011,39.22704148054579],[-76.56901725468606,39.22703678205188],[-76.56900450912582,39.22703204669777],[-76.56899177760687,39.22702728797358],[-76.56897905195127,39.22702251755938],[-76.56896632628644,39.22701774894534],[-76.56895359242361,39.22701299561301],[-76.56894084450096,39.22700826925102],[-76.56892807432976,39.22700358334096],[-76.5689152737211,39.2269989513644],[-76.56890243912956,39.22699438501843],[-76.56888956004448,39.22698989867693],[-76.56887662827154,39.22698550672218],[-76.56886359810827,39.22698129726259],[-76.56885046604731,39.22697727568992],[-76.56883725785707,39.22697339435758],[-76.56882399696778,39.22696960921338],[-76.56881070914245,39.22696587351159],[-76.56879741898585,39.22696214050203],[-76.56878415108645,39.22695836613694],[-76.56877093120733,39.22695450367044],[-76.5687577347819,39.2269505935474],[-76.56874452431279,39.22694670769226],[-76.56873131385062,39.22694282093489],[-76.56871811629333,39.22693890720006],[-76.56870494683858,39.22693494312345],[-76.56869181953711,39.22693090353485],[-76.5686787461232,39.22692676325561],[-76.56866573134977,39.22692250248607],[-76.56865276720868,39.22691810498289],[-76.56863989089078,39.22691354926395],[-76.56862714423616,39.22690881116218],[-76.56861456445226,39.22690386649327],[-76.56860229568586,39.22689824558073],[-76.56859238722468,39.22689052552092],[-76.5685844104322,39.2268814893169],[-76.56857728471387,39.22687190766657],[-76.56857102012913,39.22686203102344],[-76.56856523698949,39.22685202013214],[-76.56855972330544,39.22684188322125],[-76.56855456009552,39.22683162869569],[-76.56854982723644,39.22682126225366],[-76.56854560457766,39.22681079409747],[-76.56854190951249,39.22680022068786],[-76.56853861688258,39.22678955507656],[-76.56853560144746,39.2267788238265],[-76.5685327425882,39.22676805531927],[-76.56852991621712,39.22675727702276],[-76.56852699825214,39.22674651550423],[-76.56852386574734,39.22673580093816],[-76.56852044219089,39.22672514565416],[-76.56851701297086,39.2267144696313],[-76.56851360356558,39.22670377296323],[-76.56851015477469,39.2266930779518],[-76.56850660623948,39.22668240689452],[-76.56850290105949,39.2266717848041],[-76.56849897888702,39.2266612321764],[-76.56849478050529,39.22665077401566],[-76.5684902478722,39.22664043262782],[-76.56848519919194,39.22663020284055],[-76.56847902175382,39.22662009411128],[-76.56847174497682,39.22661041101112],[-76.56846349073689,39.22660148997836],[-76.56845392935716,39.22659402880482],[-76.5684404442201,39.22659018784457],[-76.56842741454655,39.2265857234172],[-76.56842027864028,39.22657744514549],[-76.56843078135587,39.22656874711343],[-76.56843440425934,39.22655936801681],[-76.5684298801063,39.22654915817114],[-76.56842298312559,39.22653872701648],[-76.56841756822644,39.22652854091831],[-76.56842525404831,39.22652046487503],[-76.56843409761022,39.22651397755782],[-76.56843299934073,39.22650279485733],[-76.56842930132683,39.22649214036226],[-76.56842528642265,39.22648160450537],[-76.56841697717672,39.22647468659827],[-76.56840273210186,39.22647697984356],[-76.5683889725111,39.22647942620328],[-76.56837521741491,39.22648189509738],[-76.56836146683524,39.2264843829228],[-76.56834771963032,39.22648688697306],[-76.56833397465851,39.2264894045416],[-76.56832023309981,39.22649193202965],[-76.56830649265443,39.22649446672639],[-76.56829275218614,39.2264970050246],[-76.56827901286401,39.22649954512694],[-76.56826527239924,39.22650208252116],[-76.56825153080825,39.22650461450495],[-76.56823778810751,39.22650713837606],[-76.56822357551307,39.22650942090979],[-76.56821414534838,39.22651409728979],[-76.56821763032295,39.22652530858989],[-76.5682229012231,39.22653574458408],[-76.56822930036148,39.22654557400069],[-76.56823500096212,39.22655562424028],[-76.56824033023567,39.22656579381791],[-76.5682503168917,39.22658520990503],[-76.56824724074728,39.22658656597108],[-76.56824418401123,39.22658796804811],[-76.5682411455747,39.22658940802511],[-76.56823811855487,39.22659087506737],[-76.56823509953213,39.22659236015456],[-76.5682320827871,39.2265938515555],[-76.56822906605842,39.2265953402541],[-76.56822604246307,39.22659681541563],[-76.5682230085816,39.22659826801981],[-76.5682199610054,39.22659968724472],[-76.56821689284054,39.22660106405722],[-76.5682138006839,39.22660238673467],[-76.56821068111604,39.22660364625668],[-76.56820752724846,39.22660483268938],[-76.56820433682527,39.22660593611586],[-76.5682011041217,39.22660694570574],[-76.5681978257236,39.22660785153791],[-76.56819450502316,39.22660866713645],[-76.56819115571507,39.22660942588065],[-76.56818778125174,39.22661013138623],[-76.56818438276383,39.22661078816131],[-76.56818096139861,39.22661139801162],[-76.5681775206029,39.22661196545376],[-76.56817406151295,39.22661249409499],[-76.56817058642856,39.22661298664612],[-76.56816709649145,39.22661344581373],[-76.5681635939849,39.22661387701084],[-76.56816008006156,39.22661428114249],[-76.56815655816291,39.22661466362601],[-76.56815302943608,39.22661502626716],[-76.56814949616992,39.22661537357823],[-76.56814595950063,39.22661570916663],[-76.56814242173341,39.22661603484224],[-76.56813888515718,39.22661635511749],[-76.56813534975004,39.22661667359537],[-76.56813182012789,39.22661699299524],[-76.56812829742692,39.22661731692434],[-76.56812478278344,39.22661764898999],[-76.56812127733902,39.22661799189871],[-76.56811777525384,39.22661835373606],[-76.56811424756418,39.22661873619702],[-76.56811070135575,39.22661911678814],[-76.56810714369767,39.22661947571834],[-76.56810358168106,39.22661978959344],[-76.5681000223861,39.22662003682087],[-76.56809647289299,39.22662019580793],[-76.56809294144539,39.22662024406558],[-76.56808943280738,39.22662015999257],[-76.5680859563808,39.22661992110409],[-76.56808251808219,39.22661950670397],[-76.56807909895996,39.22661898608248],[-76.56807568478807,39.22661841323395],[-76.5680722732228,39.22661779265361],[-76.56806886772766,39.22661712615587],[-76.56806546711704,39.22661641824014],[-76.56806207138554,39.22661566980722],[-76.56805868166381,39.22661488536523],[-76.56805529794099,39.22661406671561],[-76.56805192134772,39.22661321836642],[-76.56804855071495,39.22661234211495],[-76.56804518833695,39.22661144157274],[-76.56804183188116,39.22661051943354],[-76.56803848480537,39.22660957841242],[-76.56803514592958,39.22660862210816],[-76.56803181523189,39.22660765412371],[-76.56802849270686,39.22660667535999],[-76.56802518064322,39.22660569032919],[-76.56802187786646,39.22660470172936],[-76.56801858435469,39.22660371316354],[-76.5680153024789,39.22660271563267],[-76.56801203234322,39.22660169202231],[-76.56800877394765,39.22660064233254],[-76.56800552728123,39.22659956836483],[-76.56800229118036,39.22659847101563],[-76.56799906563965,39.22659735118579],[-76.56799585063708,39.22659621247824],[-76.56799264501454,39.22659505488883],[-76.56798944760848,39.226593879314],[-76.56798626071323,39.2265926893653],[-76.56798308085989,39.22659148412916],[-76.56797991034283,39.22659026721724],[-76.56797674684573,39.22658903862093],[-76.56797359035221,39.22658780104252],[-76.5679704420149,39.22658655538707],[-76.56796729951209,39.22658530254672],[-76.56796416282734,39.22658404522388],[-76.56796103430425,39.22658277892315],[-76.56795794082049,39.22658146410929],[-76.56795487890177,39.22658010076952],[-76.5679518450135,39.22657869879934],[-76.56794883099401,39.22657726717659],[-76.56794583099254,39.22657581578817],[-76.56794283684208,39.22657435451269],[-76.56793984385531,39.22657289234063],[-76.56793684270708,39.22657143914621],[-76.56793382985725,39.22657000572575],[-76.56793079599176,39.22656860015201],[-76.56792773641776,39.22656723231628],[-76.5679246441263,39.22656591210123],[-76.56792153549536,39.22656461254389],[-76.56791841985563,39.22656332286923],[-76.56791529720701,39.22656204307725],[-76.56791216755508,39.22656077226718],[-76.56790903089431,39.22655951133979],[-76.56790588723022,39.2265582593943],[-76.56790273772079,39.22655701643501],[-76.56789958236621,39.2265557824619],[-76.5678964211663,39.22655455747498],[-76.5678932541212,39.22655334147422],[-76.56789008239443,39.22655213356317],[-76.5678869059805,39.22655093464255],[-76.56788372488488,39.2265497438116],[-76.56788053910218,39.22654856197112],[-76.56787734980132,39.22654738732381],[-76.56787415347524,39.22654622526144],[-76.56787091968958,39.22654512881792],[-76.5678676473027,39.22654409528667],[-76.56786435033253,39.22654310490218],[-76.56786104166622,39.22654213339092],[-76.56785773416912,39.22654116008228],[-76.56785444187551,39.22654016250853],[-76.56785117881974,39.22653911820186],[-76.56784795670907,39.22653800648744],[-76.56784478490152,39.22653681208652],[-76.56784163533382,39.22653557903389],[-76.56783850214424,39.22653431901819],[-76.56783538298917,39.22653303653457],[-76.56783227554688,39.22653173247534],[-76.56782917979537,39.22653041044345],[-76.56782609456016,39.22652907313699],[-76.567823016345,39.22652772414621],[-76.56781994514441,39.22652636437179],[-76.56781687977289,39.22652499831332],[-76.56781381790864,39.22652362686304],[-76.56781075836625,39.22652225452043],[-76.56780770114015,39.22652088218625],[-76.56780465092314,39.22651949996923],[-76.56780161822046,39.22651809439638],[-76.5677985983667,39.22651667085523],[-76.5677955890183,39.226515233841],[-76.5677925843518,39.22651378873688],[-76.56778958317615,39.22651234094325],[-76.56778658083161,39.22651089494675],[-76.56778357381084,39.22650945613923],[-76.56778055861771,39.22650802811088],[-76.56777753289201,39.22650661805919],[-76.56777449198496,39.22650522866945],[-76.56777139147165,39.22650392823719],[-76.56776565233723,39.22650212175864],[-76.56772050270293,39.2263725478181],[-76.56772495006325,39.2263673892247],[-76.56769857008358,39.2262833259803],[-76.56769850223989,39.2262824853039],[-76.56769844595532,39.22628164827321],[-76.56769830734667,39.22628082715329],[-76.5676962251878,39.22628118159714],[-76.56769513978142,39.22628122083662],[-76.5676940681023,39.22628128805081],[-76.56769299754835,39.22628136067382],[-76.56769194167681,39.22628149460379],[-76.56768994816542,39.22628193584881],[-76.56765540114444,39.22614537755545],[-76.5676556866836,39.22614241954921],[-76.56765391589632,39.226140899718],[-76.56765013087079,39.22614113348932],[-76.56764641586342,39.2261412801429],[-76.56764266836335,39.226141437486],[-76.56763903623458,39.22614166731628],[-76.56763567196259,39.22614203325001],[-76.56763288394855,39.22614266973852],[-76.56763433520335,39.22614550262909],[-76.56763468573456,39.22614822787521],[-76.56763491918785,39.22615097070556],[-76.56763511555447,39.2261537179032],[-76.56763532006077,39.22615645972618],[-76.56763546896715,39.2261592031459],[-76.5676357927203,39.22616214177788],[-76.5676344658551,39.22616379612428],[-76.56763065176457,39.22616366767485],[-76.56762715436467,39.22616402411013],[-76.56762365806242,39.22616439045795],[-76.56762016171082,39.2261647649124],[-76.56761666647338,39.22616514657715],[-76.56761317120295,39.22616553364632],[-76.56760967589962,39.22616592611993],[-76.5676061817269,39.22616632310149],[-76.56760268870131,39.22616672188873],[-76.5675991945011,39.22616712337391],[-76.56759570260604,39.22616752666903],[-76.56759220955838,39.22616792905899],[-76.56758867611974,39.2261683078798],[-76.56758504565835,39.22616864400647],[-76.56758153152883,39.22616908505194],[-76.56757853265154,39.22616992523905],[-76.5675784385086,39.22617283260587],[-76.5675783140624,39.22617558132396],[-76.56757826953073,39.22617832943568],[-76.56757838834628,39.22618106914148],[-76.56757867163425,39.22618380585013],[-76.56757907307616,39.22618653849014],[-76.56757957302803,39.22618925978303],[-76.56758016686302,39.22619196881086],[-76.56758111644942,39.22619464401905],[-76.56758311418307,39.22619693215093],[-76.56758643667061,39.22619753260031],[-76.56758999423892,39.22619718539572],[-76.5675932211036,39.22619618210651],[-76.56759673410984,39.22619592571617],[-76.56760119555794,39.22619568002615],[-76.56761485127458,39.22624413818131],[-76.5676081489489,39.2262458880238],[-76.56760147385783,39.22624772984565],[-76.56759478741029,39.22624953469336],[-76.56758805216785,39.22625117451841],[-76.56758122953403,39.22625252126803],[-76.56757432379024,39.22625363260784],[-76.56756739139887,39.22625474565061],[-76.56756043713503,39.22625583699365],[-76.56755346346846,39.22625688142433],[-76.56754647288001,39.22625785192841],[-76.56753947132482,39.22625872150445],[-76.56753246127823,39.22625946403899],[-76.56752544522101,39.22626005251777],[-76.5675184279503,39.22626045993518],[-76.5675114119415,39.22626066017774],[-76.56750438761695,39.22626070455448],[-76.56749734292397,39.226260670488],[-76.56749028248939,39.22626055889616],[-76.56748321211472,39.22626036799873],[-76.5674761352689,39.22626009870926],[-76.5674690565898,39.22625975014412],[-76.56746198302605,39.22625932232883],[-76.56745491805746,39.22625881437553],[-76.56744786515297,39.22625822719771],[-76.5674408312666,39.22625755992026],[-76.56743381987275,39.22625681255598],[-76.56742683677287,39.22625598332473],[-76.56741988543038,39.22625507404078],[-76.56741297051059,39.22625407931668],[-76.56740608406055,39.22625297390135],[-76.56739922257846,39.22625176228573],[-76.56739238134415,39.2262504588649],[-76.56738556029177,39.22624907444802],[-76.56737875355405,39.22624762162432],[-76.567371959896,39.22624611300014],[-76.56736517693555,39.22624455937605],[-76.56735839995257,39.22624297514715],[-76.56735162772857,39.22624137021751],[-76.56734485554325,39.22623975898214],[-76.56733808333085,39.22623815225015],[-76.56733130522386,39.22623656261084],[-76.56732451998752,39.22623500267061],[-76.56731772407599,39.22623348412642],[-76.56731091510176,39.22623201867956],[-76.5673040907047,39.22623061352768],[-76.56729724983646,39.22622925065129],[-76.56729039719535,39.22622791925831],[-76.56728353630504,39.22622661125476],[-76.56727667070024,39.22622531674514],[-76.56726980392108,39.2262240249331],[-76.56726293949133,39.22622272772465],[-76.5672560821038,39.2262214152285],[-76.56724923297145,39.22622007844141],[-76.5672423991088,39.22621870657983],[-76.5672355817289,39.22621729064047],[-76.56722878436089,39.22621582162854],[-76.56722201170315,39.22621428875205],[-76.56721526377217,39.22621268930873],[-76.56720853590258,39.22621102868607],[-76.56720182690881,39.22620931138355],[-76.5671951390797,39.22620754191351],[-76.5671884700661,39.22620572567199],[-76.5671818186879,39.22620386625772],[-76.56717518722847,39.22620196908386],[-76.56716857219142,39.22620003774055],[-76.56716197586013,39.22619807764094],[-76.56715539705442,39.22619609238382],[-76.56714881725578,39.22619408009925],[-76.56714219173199,39.22619196946086],[-76.56713565061882,39.22618969068775],[-76.56712935064449,39.22618718130349],[-76.56712344509044,39.22618437431505],[-76.56711899450181,39.22618017918788],[-76.56711710099006,39.22617485580814],[-76.56711788292505,39.22616931439908],[-76.56711629648638,39.22616396332696],[-76.567114777432,39.22615857737295],[-76.56711332574545,39.22615315923937],[-76.56711193214544,39.22614771159428],[-76.56711058964483,39.22614224071741],[-76.56710928897343,39.22613674747531],[-76.56710802198597,39.22613123814342],[-76.56710678056481,39.22612571449334],[-76.56710555657033,39.22612018189977],[-76.56710434188474,39.2261146421342],[-76.56710312605222,39.2261091005629],[-76.56710190441838,39.22610356077168],[-76.56710066538034,39.22609802632093],[-76.56709940312548,39.22609250079231],[-76.56709810720908,39.22608698775044],[-76.56709677065497,39.22608149167344],[-76.56709538534007,39.2260760152337],[-76.56709394197209,39.22607056290083],[-76.56709243242234,39.22606513824794],[-76.56709084972034,39.22605974485249],[-76.56708918457382,39.22605438718407],[-76.56708742770148,39.22604906791074],[-76.5670855732854,39.22604379151498],[-76.56708361087526,39.22603856246214],[-76.5670815323534,39.2260333825238],[-76.56707933074375,39.22602825617806],[-76.56707699559047,39.22602318879112],[-76.5670745210922,39.22601818214313],[-76.5670718979566,39.22601324070364],[-76.56706911689696,39.22600836804149],[-76.5670661709428,39.22600356773412],[-76.56706305080183,39.22599884425114],[-76.56705972860834,39.22599420919985],[-76.56705618347257,39.22598966970936],[-76.56705242816666,39.22598522042217],[-76.56704847545716,39.22598085688143],[-76.56704433812709,39.22597657192801],[-76.56704002777394,39.2259723629024],[-76.56703555602822,39.22596822174043],[-76.56703093680353,39.22596414579107],[-76.5670261805667,39.22596012788676],[-76.56702130124796,39.22595616267407],[-76.5670163092976,39.22595224568777],[-76.56701121864579,39.22594837157448],[-76.5670060409064,39.22594453497238],[-76.56700078885163,39.22594073052392],[-76.56699547293721,39.22593695286297],[-76.56699010825137,39.22593319664057],[-76.56698470409191,39.22592945648631],[-76.56697927554707,39.22592572705112],[-76.56697383307261,39.22592200296896],[-76.56696838943517,39.22591827978307],[-76.56696295741224,39.22591455123511],[-76.56695754861776,39.2259108119632],[-76.56695217581824,39.22590705751064],[-76.56694685062769,39.22590328251556],[-76.56694158466546,39.22589948071539],[-76.5669363930143,39.22589564766194],[-76.56693128497194,39.22589177798482],[-76.56692627447406,39.22588786543002],[-76.56692136848565,39.22588390732092],[-76.56691649850869,39.22587993132893],[-76.56691163784652,39.22587594726405],[-76.56690678532998,39.22587195692356],[-76.56690193979554,39.225867961204],[-76.56689710007963,39.22586396100178],[-76.56689226502411,39.22585995631264],[-76.56688743345991,39.22585594893388],[-76.56688260422347,39.22585193976195],[-76.56687777615664,39.22584792879256],[-76.56687294924843,39.22584391782723],[-76.5668681223353,39.22583990776245],[-76.56686329310102,39.22583589858972],[-76.56685846154005,39.22583189120972],[-76.56685362648346,39.22582788741974],[-76.56684878676745,39.22582388811624],[-76.56684394123411,39.225819893295],[-76.56683908756163,39.22581590384814],[-76.56683422690264,39.22581192068075],[-76.56682935808814,39.22580794559006],[-76.56682447763819,39.22580397946403],[-76.56681958671652,39.22580002140616],[-76.56681468414844,39.2257960741144],[-76.5668097676179,39.22579213758026],[-76.56680483711924,39.22578821270449],[-76.56679989148347,39.22578430128429],[-76.56679492955796,39.22578040241468],[-76.56678994667736,39.22577652148306],[-76.56678476590439,39.22577280646488],[-76.56677935232577,39.2257692851554],[-76.56677379324387,39.2257658849137],[-76.56676817479183,39.22576253489621],[-76.5667625831304,39.2257591597555],[-76.56675710554545,39.22575568955308],[-76.56675182819212,39.22575204984233],[-76.56674672079514,39.22574826753491],[-76.56674166229696,39.22574444307111],[-76.56673664570513,39.22574058363144],[-76.56673166403813,39.22573669459478],[-76.56672671147236,39.22573278134425],[-76.56672177869923,39.22572885105181],[-76.56671685989525,39.22572490910061],[-76.56671194808433,39.22572095996879],[-76.56670703511038,39.22571701173323],[-76.56670211631348,39.22571306888062],[-76.5666971823905,39.22570913768207],[-76.5666922275179,39.22570522352081],[-76.56668724355059,39.22570133267215],[-76.56668222815033,39.22569746873057],[-76.56667719879303,39.22569361464584],[-76.56667216244928,39.2256897668405],[-76.56666711796092,39.22568592531034],[-76.56666206764959,39.22568208916312],[-76.5666570103628,39.22567825749383],[-76.5666519495803,39.22567442941454],[-76.56664688298585,39.22567060491668],[-76.5666418140593,39.2256667831123],[-76.56663674164251,39.22566296399714],[-76.56663166690456,39.225659145774],[-76.5666265910036,39.22565532844707],[-76.56662151509767,39.2256515120207],[-76.5666164403559,39.22564769469763],[-76.56661136561465,39.22564387737432],[-76.56660629320663,39.22564005735709],[-76.56660122312081,39.22563623644739],[-76.56659614372684,39.22563242270935],[-76.56659104572148,39.22562862241406],[-76.56658593375352,39.22562483287631],[-76.56658081247743,39.22562105051016],[-76.56657568771105,39.22561727083328],[-76.56657056410886,39.22561349025966],[-76.56656544631964,39.22560970610413],[-76.5665603390088,39.22560591297933],[-76.5665552468197,39.22560210910081],[-76.56655017557577,39.22559828908533],[-76.56654512876229,39.22559445114432],[-76.56654011220276,39.22559058989457],[-76.566535130546,39.22558670265092],[-76.56653018961549,39.22558278403022],[-76.56652531499924,39.22557881611132],[-76.56652050785529,39.22557479889861],[-76.56651575307902,39.22557074044327],[-76.56651103901797,39.22556665241243],[-76.56650635172007,39.2255625437623],[-76.56650167954389,39.22555842435848],[-76.56649700737375,39.22555430405376],[-76.56649232241018,39.22555019270933],[-76.56648761301169,39.22554610019083],[-76.56648286522629,39.2255420354545],[-76.56647808138105,39.22553799670732],[-76.56647330451793,39.22553395258108],[-76.56646853115713,39.22552990396373],[-76.56646375779687,39.22552585534613],[-76.56645898095186,39.22552180851704],[-76.5664541959623,39.22551776796308],[-76.56644939817372,39.22551373727026],[-76.56644458525905,39.22550971823144],[-76.56643975256387,39.22550571443259],[-76.5664348954283,39.22550173036041],[-76.56643001152521,39.22549776780784],[-76.56642509388396,39.22549383035221],[-76.56642014131909,39.22548992249308],[-76.56641512708441,39.22548606214718],[-76.56641001741929,39.22548227801472],[-76.56640483095224,39.2254785539505],[-76.5663995921131,39.22547487202915],[-76.56639432069943,39.22547121430826],[-76.56638903997212,39.22546756465974],[-76.56638377205033,39.2254639042489],[-76.56637853788972,39.22546021513767],[-76.56637336074563,39.22545648209869],[-76.56636824645251,39.22545269794723],[-76.56636317173307,39.22544888151373],[-76.56635812611495,39.22544504086652],[-76.56635310028386,39.2254411840782],[-76.56634808493122,39.22543731832057],[-76.56634307074268,39.22543345166621],[-76.56633804724044,39.22542959308425],[-76.56633300628489,39.22542574794922],[-76.56632794554885,39.22542191805418],[-76.56632287201387,39.22541809802017],[-76.56631778918168,39.22541428335624],[-76.56631270633902,39.22541047049364],[-76.56630762699871,39.22540665313979],[-76.56630255928384,39.22540282862253],[-76.56629750785983,39.2253989915543],[-76.56629247854457,39.22539513745271],[-76.56628747947217,39.22539126184402],[-76.56628251645523,39.22538736114649],[-76.56627759416446,39.22538342907202],[-76.56627277541185,39.22537942081374],[-76.56626813231257,39.22537528529375],[-76.56626359392047,39.22537107179275],[-76.56625908926762,39.22536683319448],[-76.56625454622224,39.22536262327908],[-76.56624989381636,39.22535849493015],[-76.56624505877674,39.2253544992214],[-76.5662401004135,39.22535059583689],[-76.56623511297207,39.22534671306263],[-76.56623009877407,39.22534285000642],[-76.56622506247388,39.22533900308231],[-76.56622000755682,39.2253351705016],[-76.5662149363555,39.22533134957065],[-76.5662098535133,39.22532753850502],[-76.56620476021031,39.22532373370593],[-76.56619966225358,39.22531993249253],[-76.56619456080655,39.22531613396833],[-76.5661894605292,39.22531233364666],[-76.56618436489575,39.22530853154039],[-76.56617927625535,39.22530472225354],[-76.5661741980824,39.22530090579889],[-76.5661691350311,39.22529707859054],[-76.5661640882762,39.22529323793055],[-76.56615906362451,39.22528938113801],[-76.56615406224519,39.22528550641567],[-76.56614910390829,39.22528160032498],[-76.56614421655102,39.22527763954895],[-76.56613938504667,39.22527363574175],[-76.56613459309393,39.22526960325565],[-76.56612982092827,39.22526555462849],[-76.56612505109038,39.22526150420813],[-76.5661202672954,39.22525746364461],[-76.5661154497569,39.22525344907866],[-76.56611058335906,39.22524947036307],[-76.56610571349853,39.2252454898329],[-76.56610087276133,39.22524148148607],[-76.56609605533507,39.22523744890417],[-76.56609125422715,39.22523339926759],[-76.56608646709935,39.22522933617081],[-76.56608168697016,39.2252252649927],[-76.56607690916876,39.22522119202142],[-76.56607212671896,39.22521712173508],[-76.56606733611365,39.22521305952541],[-76.56606253269283,39.22520900987907],[-76.56605770831692,39.22520497817062],[-76.56605286063115,39.22520097069681],[-76.56604798266507,39.225196991035],[-76.5660430685897,39.22519304546907],[-76.56603811490326,39.22518913848997],[-76.5660331146186,39.22518527637726],[-76.56602806423406,39.225181463622],[-76.56602295677347,39.22517770470216],[-76.566017786408,39.22517400590169],[-76.56601255079386,39.22517037171583],[-76.56600723830066,39.22516681020851],[-76.56600177434845,39.22516339676949],[-76.5659961403143,39.225160146643],[-76.56599035833388,39.22515703829225],[-76.56598445170104,39.22515405018466],[-76.56597844370962,39.2251511607876],[-76.56597235534838,39.22514834675849],[-76.56596620990554,39.22514558746546],[-76.56596003067497,39.22514286137602],[-76.56595383864538,39.22514014514744],[-76.56594765709956,39.22513741904876],[-76.56594150818988,39.22513465884086],[-76.56593541636275,39.22513184389616],[-76.56592940143771,39.22512895266937],[-76.56592346693316,39.2251259779673],[-76.56591757328694,39.22512295027],[-76.56591170531189,39.22511989114012],[-76.56590584549897,39.22511682303233],[-76.56589997751387,39.22511376570338],[-76.56589408501127,39.22511074071153],[-76.56588815164575,39.22510776961489],[-76.5658821599084,39.2251048748683],[-76.56587606894134,39.22510210946655],[-76.56586985070271,39.22509951384097],[-76.56586355891586,39.22509701432634],[-76.5658572519587,39.22509453367161],[-76.56585098821463,39.22509199372497],[-76.5658448249034,39.22508931723111],[-76.5658387480014,39.22508652485604],[-76.56583270734188,39.22508367676646],[-76.56582669704648,39.22508078735301],[-76.56582070544059,39.2250778718858],[-76.56581472202446,39.22507494293692],[-76.56580873975581,39.22507201579351],[-76.5658027469713,39.22506910392415],[-76.5657967343236,39.22506622080591],[-76.56579069360697,39.22506338262247],[-76.56578461316896,39.22506060104086],[-76.56577848364569,39.22505789224044],[-76.56577229685345,39.22505526880177],[-76.56576601889938,39.22505278104316],[-76.56575964626504,39.22505043615777],[-76.56575320000533,39.22504819999392],[-76.56574670348019,39.22504604020991],[-76.56574017773889,39.22504392355489],[-76.56573364382534,39.22504181767857],[-76.56572712394683,39.22503968933437],[-76.56572063914732,39.22503750617204],[-76.56571420344503,39.22503524842639],[-76.56570778178333,39.22503296731205],[-76.56570136831678,39.22503067181525],[-76.56569495953806,39.22502836732764],[-76.56568855543621,39.22502605565079],[-76.56568215250388,39.2250237421763],[-76.56567574840282,39.22502143049869],[-76.565669341964,39.22501912241523],[-76.56566293200176,39.22501682242535],[-76.5656565138562,39.22501453501578],[-76.56565008751082,39.22501226288874],[-76.56564364946378,39.22501001053517],[-76.56563719737687,39.22500778154954],[-76.5656307277208,39.22500558492659],[-76.56562424286119,39.22500341256802],[-76.56561774862719,39.22500125819001],[-76.5656112462098,39.22499911639224],[-76.5656047414491,39.22499697908934],[-76.5655982378524,39.22499484088958],[-76.56559173894351,39.22499269369902],[-76.56558524938788,39.22499053213028],[-76.56557877154022,39.22498834988659],[-76.56557231124053,39.22498613888257],[-76.56556587084359,39.22498389282143],[-76.56555945385117,39.22498160721231],[-76.56555305794168,39.22497928294741],[-76.56554668191838,39.22497692632766],[-76.56554032228505,39.22497454094336],[-76.56553397552337,39.22497213398765],[-76.56552764045864,39.2249697081585],[-76.5655213124145,39.22496727064492],[-76.56551499021629,39.22496482414478],[-76.56550867150385,39.22496237585568],[-76.56550236330825,39.22495991229192],[-76.56549616386202,39.2249572779824],[-76.56548998543809,39.22495461492543],[-76.56548368655814,39.22495214328816],[-76.56547727423663,39.22494985228712],[-76.56547083618422,39.2249476026263],[-76.56546437825737,39.22494538351808],[-76.5654579086233,39.22494318508402],[-76.56545143198053,39.22494099653223],[-76.56544495417458,39.22493880887657],[-76.56543848222006,39.22493661133363],[-76.56543202312615,39.22493439402082],[-76.56542558159123,39.22493214614619],[-76.56541916111729,39.22492986321877],[-76.56541273607203,39.22492757036553],[-76.56540631225693,39.22492526580633],[-76.56539990481531,39.22492293518483],[-76.56539352423599,39.22492056773051],[-76.56538718680387,39.2249181517935],[-76.56538090418243,39.22491567390543],[-76.56537004862568,39.22490934176351],[-76.56535052583105,39.22490111200946],[-76.56532363046553,39.22489024448949],[-76.56530036272427,39.22488082083652],[-76.5652627865365,39.22486818875043],[-76.56524602674,39.22486170501464],[-76.56522777653622,39.22485483112267],[-76.56520823544214,39.2248467580125],[-76.56517651046715,39.22483311077782],[-76.5651557461555,39.22482470344179],[-76.56513463766234,39.2248161443967],[-76.56511466454309,39.22480808318168],[-76.56509000397453,39.22479841832152],[-76.56507027141846,39.22479097862717],[-76.56504986332703,39.22478322025252],[-76.56502876115914,39.22477401084906],[-76.56500802796187,39.22476450014749],[-76.56498678198007,39.22475589372537],[-76.56495808229744,39.22474579860712],[-76.56493734171643,39.22473862989143],[-76.5649158057792,39.2247310411628],[-76.56489353663503,39.22472233995205],[-76.56486825562615,39.22471301323923],[-76.56484324306608,39.22470372534899],[-76.56481183662412,39.224691791577],[-76.56478456272771,39.22468111169229],[-76.56476415324015,39.22467302447792],[-76.56474294698506,39.22466474784377],[-76.56472214044419,39.22465625560039],[-76.56470033110531,39.2246473668943],[-76.56467974583192,39.2246390538183],[-76.56465998839097,39.2246305870737],[-76.56463811619703,39.22462269708694],[-76.5646148020852,39.22461557641719],[-76.56459263583073,39.22460672780268],[-76.56457316600249,39.2245978207285],[-76.56454892154377,39.2245877447404],[-76.5645255627659,39.22457922407612],[-76.56450059003531,39.22457100998883],[-76.56447452175999,39.22456184961565],[-76.56445413009563,39.22455313366902],[-76.56443000132187,39.22454308330726],[-76.56440915382491,39.22453504935253],[-76.56440598322878,39.22453387017518],[-76.56434278822579,39.22451023246833],[-76.56432881016632,39.2245130279447],[-76.56431231308534,39.22452207628573],[-76.56429395494672,39.22453225449892],[-76.56427570938486,39.22454239259213],[-76.56427005454063,39.22454519644194],[-76.564257637811,39.22455135310913],[-76.56423167859975,39.22456235703066],[-76.56421307638787,39.22457040938667],[-76.56417680630713,39.22458768406854],[-76.56416356177043,39.22459342239256],[-76.56414453473097,39.22460464750623],[-76.5641333952359,39.22461705130371],[-76.56413096490054,39.22462488986686],[-76.56411821703382,39.224631406502],[-76.5641001686256,39.22464054813741],[-76.56406420335675,39.22466399965898],[-76.56406396660923,39.22467087082448],[-76.5640674756618,39.22468577283829],[-76.56407978551215,39.22472249738983],[-76.56409818591857,39.22477732049696],[-76.56411485539626,39.2248339630512],[-76.56412353147188,39.22486233558798],[-76.56412476490041,39.22487930724554],[-76.56412548934463,39.22489410883727],[-76.5641266278304,39.22491730272464],[-76.56412868230167,39.22494032075853],[-76.5641365280761,39.22498302430873],[-76.56413710412546,39.22499502212411],[-76.56413499250797,39.22500093330202],[-76.56412074126207,39.22501840593541],[-76.56410026086085,39.22504771058648],[-76.56407119842919,39.22508500569728],[-76.56404118657316,39.22512301339341],[-76.5640114850271,39.2251617806903],[-76.56397867978738,39.22520392968406],[-76.56393855493984,39.22525348109948],[-76.56390676270314,39.22529397550174],[-76.56387726780613,39.22533339119138],[-76.56384565720961,39.22537409252978],[-76.56380623552725,39.22542169722548],[-76.56376546572642,39.22546873931456],[-76.56372931833434,39.22551364030473],[-76.56370399778395,39.2255480451186],[-76.56366882755373,39.22559203813349],[-76.56363579889029,39.22563090285768],[-76.5635954961499,39.22568727328824],[-76.56354547528234,39.22575122365241],[-76.56351033814363,39.22579771370046],[-76.56347930696239,39.22583621738909],[-76.56344766253888,39.22587669599805],[-76.56341202865306,39.22592239778781],[-76.56336351955358,39.22598321357957],[-76.56331041747416,39.22605114733156],[-76.5632471947895,39.22613220017495],[-76.56318518964862,39.22620921932256],[-76.56309342373166,39.22631713336493],[-76.56308760946257,39.22632925241878],[-76.56306081677324,39.22636189058546],[-76.56299801937952,39.22643867067735],[-76.56294044414376,39.22651390192496],[-76.56288581915231,39.22658809562419],[-76.5628144903639,39.22668126774086],[-76.56274347563807,39.22677155488726],[-76.56267378533506,39.22685249053502],[-76.56259354363394,39.22693915990928],[-76.56254513947465,39.22700057385885],[-76.56247619070567,39.227087022213],[-76.56245248656684,39.22711622086609],[-76.56241403614833,39.22716358458793],[-76.56237004342607,39.2272226836943],[-76.56233048976513,39.2272821650528],[-76.56230055900922,39.22732512597173],[-76.56228335400276,39.22735023046579],[-76.56226834523652,39.22737076088706],[-76.5622534002261,39.22738996559792],[-76.56224331497772,39.22740369368265],[-76.56223237423309,39.22741585752627],[-76.56221821044741,39.22743157552987],[-76.56220699824063,39.22744324833496],[-76.56219791952776,39.22745507862636],[-76.56219269809883,39.22746605225228],[-76.56219147093381,39.22747668136654],[-76.56219410647891,39.22750548368537],[-76.562203352186,39.22754677383314],[-76.56221477269715,39.2275781437098],[-76.56222384306277,39.22760861755245],[-76.56223294022173,39.22764075793445],[-76.5622386790423,39.22766383386584],[-76.56224200988336,39.22768693954927],[-76.56224363030385,39.22770982987249],[-76.56224270748467,39.22773064342332],[-76.56223939432206,39.22775275779073],[-76.56223894321595,39.22777220031408],[-76.56224028446442,39.22779209450694],[-76.56224122146934,39.22780730044115],[-76.56223772656945,39.22782507868316],[-76.56223741012353,39.22784033759209],[-76.56224249790696,39.22785799381168],[-76.56225278022143,39.22787017015163],[-76.5622649291815,39.22788126891498],[-76.56227759163689,39.22789680682705],[-76.56228641252532,39.22791403018036],[-76.5622935283803,39.2279388056069],[-76.56229658693006,39.22796024563279],[-76.56230678193907,39.22797794611653],[-76.56231867372891,39.22799413151181],[-76.56232903622181,39.22801059134523],[-76.56233921817173,39.2280275945746],[-76.56235024535943,39.22804538553279],[-76.56235862108488,39.22806212079953],[-76.5623666474029,39.22808293258695],[-76.56237238123249,39.22810739478809],[-76.56237846897305,39.22812667522915],[-76.56238532900888,39.22814598827488],[-76.56239306373429,39.2281671358639],[-76.5623989728637,39.22818476811378],[-76.56240540042936,39.22820491186489],[-76.56241157859988,39.22822267663064],[-76.56241925092878,39.22824192424306],[-76.56242680650183,39.22826057330274],[-76.56243305467517,39.22827731684529],[-76.56243963558086,39.22829550917879],[-76.56244319708237,39.22831333805127],[-76.56244492390243,39.22833325889771],[-76.56244970737649,39.22835144633117],[-76.56245449369611,39.22836597751543],[-76.56245853255338,39.22838415226394],[-76.56246481194177,39.2284020354052],[-76.5624699264984,39.22841649034523],[-76.56247886502656,39.22844095367549],[-76.56248304718167,39.22845542225392],[-76.56248502325542,39.22848601825162],[-76.56248963152835,39.22849599083166],[-76.56249770525862,39.22850348387524],[-76.56250363991082,39.22851717080399],[-76.56250606625461,39.22853690869536],[-76.56251119775746,39.22855143575845],[-76.56251357552974,39.22856439601218],[-76.56251313413102,39.22857757545636],[-76.56251642941311,39.22858936901879],[-76.56252431388437,39.2286016408847],[-76.56252939772693,39.22861694964463],[-76.5625304069164,39.22863135414913],[-76.56253151222671,39.22864688768706],[-76.56253253184033,39.22866129223026],[-76.56253378582284,39.22867600481235],[-76.56253988821959,39.22868878618073],[-76.56254201409584,39.22870014931537],[-76.56254951960798,39.22871152259154],[-76.56255507318834,39.22872916701714],[-76.56256153640774,39.22873714767987],[-76.5625653490164,39.22874919268396],[-76.56257294342088,39.22876850935267],[-76.56257859022934,39.22878418232061],[-76.56258411884914,39.22879854871924],[-76.56258805943676,39.2288150125167],[-76.56258988530014,39.22882807700292],[-76.5625927625771,39.22884681490573],[-76.56260001704536,39.22886002663178],[-76.56260621005036,39.22887652854779],[-76.56260968327994,39.228897229665],[-76.56261524769516,39.22891424808621],[-76.56262105719694,39.22892927129575],[-76.56262732071151,39.22894560953144],[-76.56263286196604,39.228961312729],[-76.56263891285944,39.22898020567946],[-76.56264453593006,39.2289940968154],[-76.5626502993277,39.22901209422103],[-76.56265520564129,39.22902821751632],[-76.56265785498854,39.22904616998928],[-76.56266210944065,39.22906508326765],[-76.56266374110116,39.22907639861765],[-76.56266628721434,39.22909174475413],[-76.56267103527661,39.22910479310276],[-76.56267625714942,39.22912026721065],[-76.56267801574846,39.22913617069653],[-76.5626836138353,39.22915167683208],[-76.56269730198488,39.22918351088859],[-76.56270243851378,39.22919610759151],[-76.5627064576437,39.22921581087389],[-76.56271099101635,39.22923175171999],[-76.5627171475499,39.22924835528028],[-76.56272294787352,39.22926506470571],[-76.56272762004197,39.22927953239496],[-76.5627329146488,39.22929580035599],[-76.56273875804578,39.22931115877364],[-76.56274554963424,39.22932657567068],[-76.5627506534049,39.22934167370974],[-76.56275509627224,39.22935914914226],[-76.56275922592484,39.22937576676775],[-76.56276419032513,39.22939337385459],[-76.56276790581074,39.22940747226195],[-76.56277241780992,39.22942406698998],[-76.56277677105993,39.2294399224884],[-76.56278140782275,39.22945468910115],[-76.56278658408591,39.22946986667651],[-76.56279161290402,39.22948340969089],[-76.56279877788604,39.22950703226172],[-76.56280346687139,39.22952234764169],[-76.56280834843133,39.22953911669372],[-76.56281341060695,39.22955457938918],[-76.56281879797177,39.22957008473136],[-76.56282411531222,39.2295875580125],[-76.56282881456129,39.22960365350308],[-76.56283360868649,39.22962296242209],[-76.56283859540484,39.22964052454868],[-76.5628436466436,39.22965720145046],[-76.5628513593246,39.2296842355016],[-76.56285668560679,39.22970101161174],[-76.56286153348499,39.22971629515217],[-76.56286706527648,39.22973298915552],[-76.56287256168066,39.22975016404213],[-76.56287706564373,39.2297650616687],[-76.56288153051584,39.22977953668454],[-76.56288604268109,39.22979385514084],[-76.56289013709471,39.2298071757808],[-76.56289429433899,39.22982044981399],[-76.56289826309714,39.22983518060391],[-76.56289998042713,39.22984425332982],[-76.56292629377805,39.2299245106494],[-76.56294592150186,39.22999564791182],[-76.56296404362834,39.23005737544176],[-76.56297048002796,39.23008291123975],[-76.56297594381672,39.23009861953176],[-76.56297717233042,39.23010544659795],[-76.56297474096048,39.23011453089835],[-76.56296986690035,39.23012230808272],[-76.56296246838504,39.23013190084334],[-76.56294586488684,39.23015517367233],[-76.56291377351334,39.23020637149121],[-76.56285921460649,39.23029363204235],[-76.56281538686817,39.23035897517569],[-76.56278247553925,39.23040298800053],[-76.56275130044277,39.23044660283431],[-76.56273333803,39.23046389120604],[-76.5627275197253,39.23046625749271],[-76.56271425451405,39.23046951392833],[-76.56270020682541,39.23047137844772],[-76.56268821264362,39.23047587187989],[-76.56267968487954,39.23048188072354],[-76.56267271641741,39.23048651358316],[-76.56265580264134,39.23049338024725],[-76.56261484678909,39.23050648078222],[-76.56254634919019,39.23052029386331],[-76.56248572420587,39.23052784611799],[-76.56243803400214,39.2305350186918],[-76.56237797943875,39.23054792093542],[-76.56228667673176,39.23056925950873],[-76.56220484703552,39.23059038653135],[-76.56209594911243,39.23061186830797],[-76.56199394495708,39.23063350181793],[-76.56190914150726,39.23064851386691],[-76.56181635790452,39.23066485713903],[-76.5616982587373,39.23068206513648],[-76.56161379925945,39.23069274551536],[-76.56154209361732,39.23070534349094],[-76.56143960944509,39.23072926180155],[-76.56130850819474,39.23076519754013],[-76.56121739595828,39.23079047599677],[-76.56101814213484,39.23083467617642],[-76.56090951074266,39.230858636791],[-76.56076405122487,39.23088774976398],[-76.56063805569181,39.23091098667911],[-76.560496111911,39.23093735069562],[-76.56038964121103,39.23096115407774],[-76.56031788127773,39.2309755193299],[-76.56026517434441,39.23098306767108],[-76.56024486485714,39.23098760896984],[-76.56022164388122,39.23099211053163],[-76.5601687023865,39.23101022227318],[-76.56013671278744,39.23102310782829],[-76.560100257697,39.23103926627986],[-76.56008119235422,39.23105329920512],[-76.5600710904335,39.2310656407331],[-76.56006614690442,39.23107952030566],[-76.56006435548083,39.23109572939355],[-76.56005945670442,39.23111154490496],[-76.56005351493648,39.23112970033066],[-76.56004882611272,39.23114639848991],[-76.56004905001089,39.23116260071871],[-76.56004913737966,39.2311838269742],[-76.56005059830954,39.23120394411584],[-76.56005260931313,39.23122687734889],[-76.56005891829231,39.23124964743629],[-76.56006390444091,39.23126141496937],[-76.5600780230162,39.23130328829529],[-76.5600870088625,39.23132826541033],[-76.56009696558517,39.23135413072684],[-76.5601110674855,39.23138636386171],[-76.56012411733005,39.23141623301427],[-76.56013720300929,39.23144424579649],[-76.56014983565362,39.23147135339926],[-76.56016121377905,39.2314975555218],[-76.5601722455848,39.23152263938091],[-76.56018262390626,39.2315477649283],[-76.56019196700643,39.23157304243014],[-76.56020189690332,39.23160007143996],[-76.5602163238522,39.23163612597563],[-76.56022548427617,39.23165836356583],[-76.5602365480791,39.23168128116721],[-76.56024638030475,39.23170220613702],[-76.56025595493531,39.23172432997666],[-76.56026504496306,39.23174783919742],[-76.56027204195841,39.23176950028753],[-76.56027670210959,39.23179389549071],[-76.56028103790734,39.23181886057143],[-76.56028756783746,39.2318488007591],[-76.56029501871838,39.23187516200351],[-76.56030989142988,39.23190882662986],[-76.5589431297836,39.23216026196598],[-76.55890580158291,39.23228344445429],[-76.55885984721095,39.23244308860906],[-76.55879315944266,39.23266921325692],[-76.55869818688281,39.23299077247439],[-76.55863426726124,39.23321170992283],[-76.5585811106795,39.23338507322001]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000411,"geom:area_square_m":3933593.763563,"geom:bbox":"-76.5891173106,39.2065833462,-76.5499205961,39.2333850732","geom:latitude":39.219877,"geom:longitude":-76.568204,"iso:country":"US","lbl:latitude":39.220096,"lbl:longitude":-76.56628,"lbl:max_zoom":18,"mps:latitude":39.220096,"mps:longitude":-76.56628,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":16,"mz:min_zoom":18,"name:eng_x_preferred":["Curtis Bay"],"name:fra_x_preferred":["Curtis Bay"],"name:heb_x_preferred":["קרטיס ביי"],"name:jpn_x_preferred":["カーチス・ベイ"],"reversegeo:latitude":39.220096,"reversegeo:longitude":-76.56628,"src:geom":"mz","src:geom_alt":[],"wof:belongsto":[1108797011,102191575,85633793,85949461,102081589,85688501],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5195683"},"wof:country":"US","wof:geomhash":"250a51fe2ad64854dfd78b2f6c11f8fa","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102081589,"locality_id":85949461,"microhood_id":1108797027,"neighbourhood_id":1108797011,"region_id":85688501}],"wof:id":1108797027,"wof:lastmodified":1566624072,"wof:name":"Curtis Bay","wof:parent_id":1108797011,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800005.geojson b/fixtures/microhoods/1108800005.geojson new file mode 100644 index 0000000..dda2c64 --- /dev/null +++ b/fixtures/microhoods/1108800005.geojson @@ -0,0 +1 @@ +{"id":1108800005,"type":"Feature","bbox":[-93.3035049649144,44.94658273494618,-93.29317485010857,44.95290355623492],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.30338063925454,44.94837713295004],[-93.30337668244296,44.94880951825074],[-93.30336858039213,44.95002037125667],[-93.30336587970852,44.95096647517038],[-93.30336520453761,44.95153748038136],[-93.30336655487943,44.9517333868896],[-93.30337060590483,44.95184710816605],[-93.30337735761387,44.95187864421069],[-93.30338816034829,44.95191161369215],[-93.30340301410814,44.95194601661042],[-93.30341989338069,44.95197850823813],[-93.30343879816597,44.95200908857531],[-93.30346242914754,44.95203680199387],[-93.30349078632545,44.95206164849382],[-93.3035049649144,44.95207407174379],[-93.3033922113737,44.95216246763498],[-93.30316670429232,44.95233925941736],[-93.30297428058516,44.95249024882648],[-93.3028149402522,44.95261543586231],[-93.30269273431888,44.95271386524086],[-93.30260766278518,44.9527855369621],[-93.30254352154945,44.95284191867577],[-93.3025003106117,44.95288301038187],[-93.30247870514283,44.95290355623492],[-93.30178800530973,44.95274635581992],[-93.30040660564356,44.9524319549899],[-93.29937291899208,44.95220021517433],[-93.29868694535531,44.9520511363732],[-93.2983047986246,44.95196990752031],[-93.2982652896892,44.95196315844647],[-93.29822647879992,44.95195652861566],[-93.29780517215686,44.95194601661775],[-93.2970408786954,44.95193837152659],[-93.29578776150065,44.95193741589029],[-93.29404582057259,44.95194314970885],[-93.29317485010857,44.95194601661814],[-93.2931816018176,44.95136402228869],[-93.29319510523564,44.9502000336298],[-93.29319510523564,44.94916790927078],[-93.29318281558017,44.94834856961027],[-93.2931816018176,44.94826764921162],[-93.2931843025012,44.94750882312307],[-93.29321265967911,44.94658273494618],[-93.29831821687928,44.94659040428745],[-93.30084749224278,44.94659420365256],[-93.30339693757001,44.9465961151035],[-93.30339018586099,44.94733391615258],[-93.30338063925454,44.94837713295004]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000057,"geom:area_square_m":499745.780846,"geom:bbox":"-93.3035049649,44.9465827349,-93.2931748501,44.9529035562","geom:latitude":44.949401,"geom:longitude":-93.298424,"iso:country":"US","lbl:latitude":44.949293,"lbl:longitude":-93.298424,"lbl:max_zoom":18,"mps:latitude":44.949293,"mps:longitude":-93.298424,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":12,"name:deu_x_preferred":["Uptown"],"name:eng_x_variant":["Hennepin and Lk"],"name:fra_x_preferred":["Uptown"],"name:jpn_x_preferred":["アップタウン"],"name:kor_x_preferred":["업타운"],"reversegeo:latitude":44.949293,"reversegeo:longitude":-93.298424,"src:geom":"mz","wof:belongsto":[85872647,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"8f72d17f7b1ed8e8e5daf55229609ae6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800005,"neighbourhood_id":85872647,"region_id":85688727}],"wof:id":1108800005,"wof:lastmodified":1566623866,"wof:name":"Uptown","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867013],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800007.geojson b/fixtures/microhoods/1108800007.geojson new file mode 100644 index 0000000..2351b69 --- /dev/null +++ b/fixtures/microhoods/1108800007.geojson @@ -0,0 +1 @@ +{"id":1108800007,"type":"Feature","bbox":[-93.2796701535017,44.95194151932117,-93.27645675775334,44.96985515119786],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.27652820557617,44.96655160752974],[-93.27654731893814,44.9664226181048],[-93.2765676697662,44.96628511108299],[-93.27658191534582,44.96618863988783],[-93.27659209075983,44.96608712896408],[-93.27659819600825,44.96598057831174],[-93.27660124863245,44.96558388836326],[-93.27660124863245,44.96489705911865],[-93.27660023109104,44.96422030126436],[-93.27659819600824,44.96355361480039],[-93.27659616092544,44.96312523492963],[-93.27659412584262,44.96293516165207],[-93.27659209075982,44.96282572546762],[-93.27659005567702,44.96279692637631],[-93.27658496797001,44.96277316711821],[-93.27657682763879,44.96275444769335],[-93.27656868730757,44.96273716821948],[-93.27656054697636,44.96272132869659],[-93.27655444172794,44.96269756939914],[-93.27655430478332,44.96269650352644],[-93.27655037156232,44.96266589032713],[-93.27654731893813,44.96233757636814],[-93.27654528385531,44.96171262752216],[-93.27655037156234,44.96070318101348],[-93.27656258205914,44.9593092368421],[-93.27657072239036,44.95796710338855],[-93.27657479255598,44.95667678065284],[-93.27658496797,44.95500909429404],[-93.27660124863243,44.95296404431213],[-93.27660938896365,44.95194151932117],[-93.27737254501535,44.95194151932117],[-93.2796701535017,44.95194151932117],[-93.27966201317057,44.95289781974778],[-93.27965082021512,44.95387858081487],[-93.27963657463548,44.9552121708459],[-93.27962945184564,44.95619651069293],[-93.27962945184565,44.95683160035595],[-93.27962639922144,44.95751708516947],[-93.27962029397304,44.95825296513348],[-93.27961317118321,44.95897803548501],[-93.279605030852,44.95969229622404],[-93.27960401331059,44.9603640683617],[-93.279610118559,44.96099335189797],[-93.2796091010176,44.96149735140337],[-93.2796009606864,44.96187606687788],[-93.27959485543798,44.96210286387175],[-93.27959078527236,44.96217774238497],[-93.27958162739975,44.96224686093623],[-93.2795673818201,44.96231021952552],[-93.27954906607486,44.96237573798943],[-93.27952668016401,44.96244341632797],[-93.27950327671175,44.96251037460686],[-93.27947885571811,44.96257661282613],[-93.27945545226585,44.96263997105603],[-93.27943372545742,44.96269866865178],[-93.279433066355,44.96270044929656],[-93.27941373306835,44.96275012781761],[-93.2793974524059,44.9627890066192],[-93.27938117174347,44.96283364520401],[-93.27936489108104,44.96288404357209],[-93.27935369812562,44.96292364226997],[-93.2793475928772,44.96295244129769],[-93.27934250517019,44.96299995963854],[-93.27933843500459,44.96306619729255],[-93.27933639992179,44.96326418914205],[-93.27933639992179,44.96359393518704],[-93.2793374174632,44.96408782861972],[-93.279339452546,44.96474586944008],[-93.2793404700874,44.96516344328855],[-93.2793404700874,44.96534055016512],[-93.27934555779441,44.96548453921736],[-93.27935573320845,44.9655954104453],[-93.27935878583264,44.96572140016712],[-93.27935513335255,44.96584802767992],[-93.27935471566703,44.96586250838284],[-93.27934861041861,44.96623255361516],[-93.27934047008739,44.96683153586406],[-93.2793353823804,44.96745066926921],[-93.27933334729758,44.96808995383061],[-93.27933232975619,44.96877098488294],[-93.27933232975617,44.96949376242622],[-93.27933232975617,44.96985515119786],[-93.27899959371763,44.96985299153106],[-93.27833412164053,44.96984867219745],[-93.27796068394589,44.96984363297441],[-93.27787928063371,44.96983787386192],[-93.2777887194489,44.96983283463812],[-93.27768900039148,44.969828515303],[-93.27735219418733,44.969828515303],[-93.27677830083644,44.96983283463812],[-93.27649135416101,44.96983499430568],[-93.27648524891259,44.96960534783338],[-93.27647303841579,44.96914605488879],[-93.27646591562596,44.96853053646988],[-93.27646388054316,44.96775879257666],[-93.27646082791895,44.96732396598416],[-93.27645675775334,44.96722605669238],[-93.27645675775334,44.96714542542188],[-93.27646082791895,44.96708207217262],[-93.27647405595718,44.96696040475538],[-93.27649644186802,44.96678042317014],[-93.27652086286167,44.96660116095328],[-93.27652820557617,44.96655160752974]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":462218.051712,"geom:bbox":"-93.2796701535,44.9519415193,-93.2764567578,44.9698551512","geom:latitude":44.960719,"geom:longitude":-93.278038,"iso:country":"US","lbl:latitude":44.9607,"lbl:longitude":-93.27806,"lbl:max_zoom":18,"mps:latitude":44.9607,"mps:longitude":-93.27806,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.9607,"reversegeo:longitude":-93.27806,"src:geom":"mz","wof:belongsto":[85872643,102191575,1108799997,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"7d7d26abba45ba521df4757e658d207b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799997,"microhood_id":1108800007,"neighbourhood_id":85872643,"region_id":85688727}],"wof:id":1108800007,"wof:lastmodified":1566623865,"wof:name":"Eat Street","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781119],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800011.geojson b/fixtures/microhoods/1108800011.geojson new file mode 100644 index 0000000..9f6a77a --- /dev/null +++ b/fixtures/microhoods/1108800011.geojson @@ -0,0 +1 @@ +{"id":1108800011,"type":"Feature","bbox":[-93.31848026223358,44.98788117358254,-93.30822590118555,44.99156101038129],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.30826778239266,44.98788117358254],[-93.31848026223358,44.98794007541377],[-93.3184732203198,44.9915557864014],[-93.3184732101358,44.99156101038129],[-93.30822590118555,44.9915047283449],[-93.3082376114089,44.99047777240265],[-93.30826103185561,44.98842386051815],[-93.30826778239266,44.98788117358254]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000037,"geom:area_square_m":324070.531018,"geom:bbox":"-93.3184802622,44.9878811736,-93.3082259012,44.9915610104","geom:latitude":44.989723,"geom:longitude":-93.313361,"iso:country":"US","lbl:latitude":44.98972,"lbl:longitude":-93.31336,"lbl:max_zoom":18,"mps:latitude":44.98972,"mps:longitude":-93.31336,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Homewood"],"name:ceb_x_preferred":["Homewood"],"name:deu_x_preferred":["Homewood"],"name:fra_x_preferred":["Homewood"],"name:ido_x_preferred":["Homewood"],"name:ita_x_preferred":["Homewood"],"name:nld_x_preferred":["Homewood"],"name:pol_x_preferred":["Homewood"],"name:srp_x_preferred":["Хомвуд"],"name:ukr_x_preferred":["Гоумвуд"],"name:vol_x_preferred":["Homewood"],"reversegeo:latitude":44.98972,"reversegeo:longitude":-93.31336,"src:geom":"mz","wof:belongsto":[85872601,102191575,1108799979,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"68c64438474ac7658172b661001534b7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799979,"microhood_id":1108800011,"neighbourhood_id":85872601,"region_id":85688727}],"wof:id":1108800011,"wof:lastmodified":1566623867,"wof:name":"Homewood","wof:parent_id":85872601,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781075],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800013.geojson b/fixtures/microhoods/1108800013.geojson new file mode 100644 index 0000000..feda781 --- /dev/null +++ b/fixtures/microhoods/1108800013.geojson @@ -0,0 +1 @@ +{"id":1108800013,"type":"Feature","bbox":[-93.29321265967911,44.94658273494618,-93.28424700879994,44.95194660340287],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.28427976047531,44.9483576555709],[-93.28429579516381,44.94660056498356],[-93.28813644155785,44.94659288528083],[-93.29321265967911,44.94658273494618],[-93.2931843025012,44.94750882312307],[-93.2931816018176,44.94826764921162],[-93.29318281558017,44.94834856961027],[-93.29319510523564,44.94916790927078],[-93.29319510523564,44.9502000336298],[-93.2931816018176,44.95136402228869],[-93.29317485010857,44.95194601661814],[-93.28807386526336,44.95194635188172],[-93.28424700879994,44.95194660340287],[-93.28427976047531,44.9483576555709]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":417899.907388,"geom:bbox":"-93.2932126597,44.9465827349,-93.2842470088,44.9519466034","geom:latitude":44.949271,"geom:longitude":-93.288733,"iso:country":"US","lbl:latitude":44.949269,"lbl:longitude":-93.288733,"lbl:max_zoom":18,"mps:latitude":44.949269,"mps:longitude":-93.288733,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Lyn-Lake"],"reversegeo:latitude":44.949269,"reversegeo:longitude":-93.288733,"src:geom":"mz","wof:belongsto":[85872583,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6708294"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"6d9d870f6303c657d81b3348a1adeac8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800013,"neighbourhood_id":85872583,"region_id":85688727}],"wof:id":1108800013,"wof:lastmodified":1566623868,"wof:name":"Lyn-Lake","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781117],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800089.geojson b/fixtures/microhoods/1108800089.geojson new file mode 100644 index 0000000..63226de --- /dev/null +++ b/fixtures/microhoods/1108800089.geojson @@ -0,0 +1 @@ +{"id":1108800089,"type":"Feature","bbox":[-93.27476116588689,44.94652788425046,-93.23709617066588,44.95195908493007],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.26264375740541,44.95194851600283],[-93.25245844194427,44.95195349400204],[-93.24101903361733,44.95195908493007],[-93.24101615782419,44.95195509281979],[-93.24077402096515,44.95164250096745],[-93.24051591903846,44.9513186087228],[-93.24024185204414,44.95098341608583],[-93.23984405577569,44.95050981020309],[-93.23932253023311,44.94989779107456],[-93.23882761313658,44.9492923566045],[-93.23813571900081,44.94837140244724],[-93.2380385413138,44.94820423541687],[-93.23784418593978,44.94786990135611],[-93.23768357281818,44.94759288064544],[-93.23755670194903,44.94737317328484],[-93.23742578200958,44.94713818090936],[-93.23729081299985,44.94688790351899],[-93.23709617066588,44.94655144807502],[-93.24740555345831,44.94654195137247],[-93.26267646933059,44.94652788425046],[-93.26267872278062,44.94668099542014],[-93.27474394697425,44.94666647273572],[-93.27475301846434,44.9471993750582],[-93.27476116588689,44.94825655432903],[-93.27475914852276,44.94835292901159],[-93.27475030265683,44.94877551881979],[-93.27472586038921,44.94915609117391],[-93.27468783908402,44.94939827139142],[-93.27464438616381,44.94960585380937],[-93.27459550162857,44.94977883842776],[-93.27454661709334,44.94993644624508],[-93.27449773255809,44.9500786772613],[-93.27443255317777,44.95024397222419],[-93.27435107895238,44.95043233113371],[-93.27425602568941,44.9506206894251],[-93.27414739338889,44.95080904709834],[-93.27398987655312,44.95104737601832],[-93.27378347518209,44.95133567618504],[-93.27329315055067,44.95194331118901],[-93.26264375740541,44.95194851600283]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000191,"geom:area_square_m":1669970.88441,"geom:bbox":"-93.2747611659,44.9465278843,-93.2370961707,44.9519590849","geom:latitude":44.949201,"geom:longitude":-93.256561,"iso:country":"US","lbl:latitude":44.949243,"lbl:longitude":-93.256561,"lbl:max_zoom":18,"mps:latitude":44.949243,"mps:longitude":-93.256561,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:bar_x_preferred":["Midtown"],"name:bul_x_preferred":["Мидтаун"],"name:deu_x_preferred":["Midtown"],"name:fra_x_preferred":["Midtown"],"name:kor_x_preferred":["미드타운"],"name:por_x_preferred":["Midtown"],"name:spa_x_preferred":["Midtown"],"name:zho_x_preferred":["中城"],"reversegeo:latitude":44.949243,"reversegeo:longitude":-93.256561,"src:geom":"mz","wof:belongsto":[420781061,102191575,1108799995,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"b41964e27bba648c2721793317be95eb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799995,"microhood_id":1108800089,"neighbourhood_id":420781061,"region_id":85688727}],"wof:id":1108800089,"wof:lastmodified":1566623867,"wof:name":"Midtown","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781057],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800091.geojson b/fixtures/microhoods/1108800091.geojson new file mode 100644 index 0000000..d570a05 --- /dev/null +++ b/fixtures/microhoods/1108800091.geojson @@ -0,0 +1 @@ +{"id":1108800091,"type":"Feature","bbox":[-93.2303159344535,44.97251110850535,-93.22314157547073,44.97478454134844],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.23028954320657,44.97478454134844],[-93.22709789182758,44.97476066398493],[-93.22625828023257,44.97475438268761],[-93.22491587930519,44.97474576592715],[-93.22459715424569,44.97461651389879],[-93.22395970412666,44.97435800984211],[-93.22364097906716,44.97422875781375],[-93.22366331012228,44.97419429040939],[-93.22370797223253,44.97412535560068],[-93.2237445139591,44.97406360144243],[-93.22377293530198,44.97400902793466],[-93.22379932654896,44.97394870977764],[-93.22382368769999,44.97388264697137],[-93.22383586827551,44.97381658408899],[-93.22383586827551,44.97375052113053],[-93.22382977798776,44.97368158578319],[-93.22381759741222,44.97360977804699],[-93.22380135664487,44.9735365340607],[-93.22378105568566,44.9734618538243],[-93.22375872463054,44.97340081704219],[-93.2237343634795,44.97335342371437],[-93.22369173146517,44.97329166869009],[-93.22363082858756,44.97321555196935],[-93.22356282037423,44.97312650960941],[-93.22348770682517,44.97302454161027],[-93.22337300640567,44.97285794533436],[-93.2232187191157,44.97262672078169],[-93.22314157547073,44.97251110850535],[-93.22377801054179,44.97251972560158],[-93.2250508806839,44.97253695979403],[-93.22568731575495,44.97254557689025],[-93.225686300707,44.97264754546904],[-93.22568427061107,44.97285148262661],[-93.22568325556311,44.97295345120539],[-93.22604765778082,44.97295345120539],[-93.22677646221626,44.97295345120539],[-93.22710323346395,44.97295345120539],[-93.22710356161532,44.97304638819998],[-93.22710399390125,44.97316881754122],[-93.22774583301823,44.97316815852629],[-93.22895577018681,44.97316672235959],[-93.2297495376917,44.97316528619287],[-93.23012713553291,44.9731638500261],[-93.2303159344535,44.97316313194272],[-93.23030933664177,44.97356848429415],[-93.23028954320657,44.97478454134844]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000012,"geom:area_square_m":104488.765025,"geom:bbox":"-93.2303159345,44.9725111085,-93.2231415755,44.9747845413","geom:latitude":44.973787,"geom:longitude":-93.226781,"iso:country":"US","lbl:latitude":44.973855,"lbl:longitude":-93.226496,"lbl:max_zoom":18,"mps:latitude":44.973855,"mps:longitude":-93.226496,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Stadium Village"],"name:por_x_preferred":["Stadium Village"],"reversegeo:latitude":44.973855,"reversegeo:longitude":-93.226496,"src:geom":"mz","wof:belongsto":[420525029,102191575,1108800003,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7596500"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"04517df43009f42e52793585127621b1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108800003,"microhood_id":1108800091,"neighbourhood_id":420525029,"region_id":85688727}],"wof:id":1108800091,"wof:lastmodified":1566623866,"wof:name":"Stadium Village","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781067],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800093.geojson b/fixtures/microhoods/1108800093.geojson new file mode 100644 index 0000000..caca6a6 --- /dev/null +++ b/fixtures/microhoods/1108800093.geojson @@ -0,0 +1 @@ +{"id":1108800093,"type":"Feature","bbox":[-93.25996859922103,44.97384845143168,-93.2448010157333,44.98179359181258],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.2495925778704,44.97384845143168],[-93.25572996280104,44.97651603589807],[-93.25996859922103,44.978313668339],[-93.25983792649967,44.97844213655954],[-93.25965529490995,44.97864676315087],[-93.25944733485159,44.97890136697875],[-93.2592487063343,44.97913899630362],[-93.25905940935812,44.97935965112548],[-93.25886478007271,44.97958690580572],[-93.25866481847814,44.97982076034435],[-93.25851284766625,44.97999897975283],[-93.25840886763707,44.98012156403117],[-93.25829688914412,44.9802762083095],[-93.25817691218737,44.98046291258782],[-93.25789963210954,44.98087969218365],[-93.25728563750887,44.98179359181258],[-93.25674428157052,44.98154673359805],[-93.25541737390687,44.98094120295156],[-93.25417072275513,44.9804756986245],[-93.25300432811531,44.98015022061684],[-93.2520144978017,44.97990800375359],[-93.25120123181429,44.97974904803472],[-93.25017796128739,44.97958725335631],[-93.24894468622098,44.97942261971835],[-93.24808326632645,44.97932232560014],[-93.24759370160376,44.97928637100171],[-93.24689680755864,44.97921162313587],[-93.24599258419109,44.97909808200266],[-93.24509103604058,44.97896372463141],[-93.2448010157333,44.97891365804671],[-93.24500691552785,44.9784599106368],[-93.24521438191448,44.97804098749425],[-93.24543316464948,44.97763540279549],[-93.24564440315224,44.97727517756528],[-93.24584809742275,44.9769603118036],[-93.24613477824792,44.97660008147744],[-93.24650444562772,44.97619448658681],[-93.24696841591056,44.97578622038301],[-93.24752668909639,44.9753752828661],[-93.24810382286284,44.97495900543775],[-93.2486998172099,44.97453738809801],[-93.24924677404738,44.97412644174663],[-93.2495925778704,44.97384845143168]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00006,"geom:area_square_m":521881.915974,"geom:bbox":"-93.2599685992,44.9738484514,-93.2448010157,44.9817935918","geom:latitude":44.977851,"geom:longitude":-93.252283,"iso:country":"US","lbl:latitude":44.977496,"lbl:longitude":-93.252284,"lbl:max_zoom":18,"mps:latitude":44.977496,"mps:longitude":-93.252284,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.977496,"reversegeo:longitude":-93.252284,"src:geom":"mz","wof:belongsto":[85872659,102191575,1108799999,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ecdc833b1afa550eedb553b06824539c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799999,"microhood_id":1108800093,"neighbourhood_id":85872659,"region_id":85688727}],"wof:id":1108800093,"wof:lastmodified":1566623866,"wof:name":"Mill District","wof:parent_id":85872659,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781073],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800095.geojson b/fixtures/microhoods/1108800095.geojson new file mode 100644 index 0000000..c01638b --- /dev/null +++ b/fixtures/microhoods/1108800095.geojson @@ -0,0 +1 @@ +{"id":1108800095,"type":"Feature","bbox":[-93.2812505601883,44.97087267934671,-93.26381799929051,44.98451043118974],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.26670250344097,44.98380274465904],[-93.26381799929051,44.98256852064104],[-93.26430892074686,44.98196300065437],[-93.26544493734005,44.98057401121671],[-93.26627260657224,44.9795867751255],[-93.26748976720782,44.97815180863665],[-93.26852553551306,44.97694655224493],[-93.27015129179763,44.9749545741599],[-93.2717336006239,44.9731061813512],[-93.27258561306878,44.97200400573366],[-93.2729183036425,44.97161364678972],[-93.27356563023804,44.97087267934671],[-93.27413685979671,44.97110778389839],[-93.27540565105986,44.97163649967584],[-93.27674597654854,44.97220116860179],[-93.27751967567191,44.9725241214805],[-93.27772674843,44.97260535831202],[-93.27791217267247,44.97267261169203],[-93.2780759483993,44.97272588162054],[-93.27823690040674,44.97277249277552],[-93.27839502869472,44.97281244515696],[-93.27852586102824,44.97284307530469],[-93.27862939740727,44.97286438321869],[-93.27871975642898,44.97288902048225],[-93.27879693809336,44.97291698709536],[-93.27886282488004,44.97295094653047],[-93.27891741678897,44.9729908987876],[-93.27898424481545,44.97306281272017],[-93.27906330895945,44.97316668832818],[-93.27928920651371,44.973448348778],[-93.27966193747825,44.97390779406965],[-93.27999325389118,44.97431197029469],[-93.2802831557525,44.97466087745315],[-93.28048740479116,44.97490191580822],[-93.28060600100714,44.97503508535989],[-93.28069071259,44.97513962331959],[-93.28074153953972,44.9752155296873],[-93.28078577781076,44.97529077011183],[-93.28082342740315,44.97536534459319],[-93.28087143063343,44.97546189171326],[-93.2809297875016,44.97558041147205],[-93.28104085379911,44.97584275110248],[-93.2812505601883,44.97636281744109],[-93.28121533280851,44.97640923667065],[-93.2811567365049,44.97649213841062],[-93.2810981402013,44.97659953359948],[-93.28103954389768,44.97673142223722],[-93.28099026973328,44.97686331057162],[-93.28095031770808,44.97699519860267],[-93.28092634649298,44.97711483966391],[-93.28091835608794,44.97722223375533],[-93.28091036568291,44.97735788906198],[-93.28090237527788,44.97752180558384],[-93.28088905793615,44.97767724326654],[-93.28087041365771,44.97782420211007],[-93.28084377897426,44.97795891409561],[-93.28080915388577,44.97808137922313],[-93.28076121145554,44.9782038440891],[-93.2806999516836,44.9783263086935],[-93.28061472069652,44.97846101941309],[-93.28050551849435,44.97860797624786],[-93.28034837386194,44.97877377316858],[-93.2801432867993,44.97895841017527],[-93.27992887759747,44.97911478606621],[-93.27970514625642,44.97924290084141],[-93.27908855333436,44.97955470690118],[-93.27807909883128,44.98005020424549],[-93.27723477936566,44.98049388799852],[-93.27655559493748,44.98088575816027],[-93.27603222340753,44.9812220489362],[-93.2756646647758,44.98150276032633],[-93.27494286485408,44.98207359437953],[-93.27386682364238,44.98293455109579],[-93.27328885101133,44.9834215464401],[-93.27320894696093,44.98353458041247],[-93.27310373996127,44.98368623382204],[-93.27297323001233,44.98387650666884],[-93.27286402781014,44.98403475304448],[-93.27277613335474,44.98416097294899],[-93.2726749215576,44.98429566997336],[-93.27256039241873,44.98443884411762],[-93.27250312784929,44.98451043118974],[-93.27201571314201,44.98417321527767],[-93.27104088372744,44.98349878345354],[-93.27036036756508,44.98302592538396],[-93.26997416465494,44.98275464106892],[-93.26971447649122,44.98257566850721],[-93.26958130307393,44.98248900769885],[-93.26944147098578,44.9823957529709],[-93.26929498022676,44.98229590432338],[-93.26916713374615,44.98221395298339],[-93.26905793154398,44.98214989895091],[-93.26900333044289,44.98211787193467],[-93.26864243048203,44.98238256365575],[-93.26792063056031,44.98291194709792],[-93.2673013741699,44.98336597046762],[-93.26678466131082,44.98374463376485],[-93.26670250344097,44.98380274465904]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000123,"geom:area_square_m":1075415.682051,"geom:bbox":"-93.2812505602,44.9708726793,-93.2638179993,44.9845104312","geom:latitude":44.977923,"geom:longitude":-93.273311,"iso:country":"US","lbl:latitude":44.977945,"lbl:longitude":-93.273442,"lbl:max_zoom":18,"mps:latitude":44.977945,"mps:longitude":-93.273442,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_variant":["West Downtown Cultural District"],"reversegeo:latitude":44.977945,"reversegeo:longitude":-93.273442,"src:geom":"mz","wof:belongsto":[85872619,102191575,1108799999,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0b6b05450f6717d3c07b0f77d13a3e93","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799999,"microhood_id":1108800095,"neighbourhood_id":85872619,"region_id":85688727}],"wof:id":1108800095,"wof:lastmodified":1566623866,"wof:name":"WeDo","wof:parent_id":85872619,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781101],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800097.geojson b/fixtures/microhoods/1108800097.geojson new file mode 100644 index 0000000..a852911 --- /dev/null +++ b/fixtures/microhoods/1108800097.geojson @@ -0,0 +1 @@ +{"id":1108800097,"type":"Feature","bbox":[-93.27514110794537,44.99868831869124,-93.24731855814142,45.01497162234666],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.24738449025959,45.00791568000337],[-93.24738449025959,45.00734975618143],[-93.24735424195465,45.00515229866146],[-93.24736180403087,45.0030670420464],[-93.24734667987842,45.00074643647951],[-93.24731855814142,44.99868831869124],[-93.24747505682257,44.99868882170848],[-93.24814077919427,44.99869827447026],[-93.24901771468794,44.99870489140308],[-93.25010586330353,44.99870867250692],[-93.25148142218003,44.99870961778291],[-93.25314439131739,44.99870772723106],[-93.25485815854739,44.99870772723106],[-93.25662272387,44.99870961778291],[-93.2575339187559,44.99870893232902],[-93.2591358926628,44.99870772723087],[-93.2623976649258,44.99870205557492],[-93.2652116118986,44.9987030008508],[-93.26757773358119,44.99871056305847],[-93.26918322066639,44.99871245361052],[-93.27002807315418,44.99870867250692],[-93.27066973327149,44.99871245360977],[-93.27110820101832,44.99872379691904],[-93.27227120998094,44.99878807554013],[-93.27511779413521,44.99894950337023],[-93.2751108908357,44.9991613571411],[-93.27509708423669,44.99958506468283],[-93.27505980641936,44.99998045743631],[-93.27499905738374,45.00034753540152],[-93.27490517251047,45.00070680099347],[-93.2747781517996,45.00105825421215],[-93.2746428471293,45.00146242219058],[-93.27449925849959,45.00191930492876],[-93.27438052174811,45.00235275468086],[-93.27428663687485,45.00276277144687],[-93.27420379728079,45.00315521349786],[-93.27413200296596,45.00353008083384],[-93.27407953788972,45.00388151694916],[-93.27404640205208,45.00420952184382],[-93.27401326621447,45.00459609603723],[-93.27398013037684,45.00504123952939],[-93.27398289169665,45.00564061345173],[-93.27400081581135,45.00599002428822],[-93.27402155017386,45.00639421780426],[-93.2740740152501,45.00722199815197],[-93.27414028692533,45.00812395449488],[-93.2742203651996,45.00934019645717],[-93.27431425007285,45.01087072403885],[-93.27441641890553,45.01199517917825],[-93.27461339709421,45.01308291648148],[-93.27463681146358,45.0132291310609],[-93.2746836402023,45.01352156021974],[-93.27475583450783,45.01382502277466],[-93.27485339438014,45.01413951872567],[-93.27495290544992,45.01444021948812],[-93.27505436771716,45.01472712506202],[-93.27514110794537,45.01497162234664],[-93.26313918206775,45.01497162234665],[-93.24734378635118,45.01497162234666],[-93.24733155572594,45.01354067949631],[-93.24735424195465,45.01138622856238],[-93.24738449025959,45.00944554953211],[-93.24738449025959,45.00791568000337]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00044,"geom:area_square_m":3843703.469673,"geom:bbox":"-93.2751411079,44.9986883187,-93.2473185581,45.0149716223","geom:latitude":45.00684,"geom:longitude":-93.260875,"iso:country":"US","lbl:latitude":45.006838,"lbl:longitude":-93.260875,"lbl:max_zoom":18,"mps:latitude":45.006838,"mps:longitude":-93.260875,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":45.006838,"reversegeo:longitude":-93.260875,"src:geom":"mz","wof:belongsto":[85872675,102191575,1108800001,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"d20a565907a422118ec5b4beacf88e65","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108800001,"microhood_id":1108800097,"neighbourhood_id":85872675,"region_id":85688727}],"wof:id":1108800097,"wof:lastmodified":1566623866,"wof:name":"Northeast Minneapolis Arts District","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781099],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800101.geojson b/fixtures/microhoods/1108800101.geojson new file mode 100644 index 0000000..542b76e --- /dev/null +++ b/fixtures/microhoods/1108800101.geojson @@ -0,0 +1 @@ +{"id":1108800101,"type":"Feature","bbox":[-93.25126082505498,44.97164441166516,-93.24566085727514,44.97554223849188],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.2473410451354,44.97551193293329],[-93.24566085727514,44.97554223849188],[-93.2456849342287,44.97548546423607],[-93.24573308813585,44.97537191572445],[-93.24576786595767,44.97527303375037],[-93.24578926769418,44.97518881831382],[-93.24581133823496,44.97510223714083],[-93.24583407758,44.97501329023139],[-93.24585146649092,44.97491677319703],[-93.2458635049677,44.97481268603775],[-93.24587019301036,44.97470008241852],[-93.2458715306189,44.97457896233934],[-93.24587219942316,44.97434760268494],[-93.24587219942318,44.97400600345535],[-93.24587420583597,44.97375713685706],[-93.24587821866157,44.97360100289009],[-93.24587888746584,44.97348224628003],[-93.24587621224879,44.97340086702687],[-93.24586350496773,44.97324094666676],[-93.24584076562269,44.97300248519969],[-93.2458247143203,44.97281985359294],[-93.24581535106059,44.9726930518465],[-93.24579996856247,44.97258375613639],[-93.24577856682595,44.97249196646262],[-93.24575515867663,44.97239307946638],[-93.24572974411453,44.97228709514768],[-93.24571168639935,44.97218442266105],[-93.24570098553107,44.97208506200651],[-93.24569872416988,44.97204695754928],[-93.24676757176084,44.97185113159003],[-93.24734081579255,44.97175494955444],[-93.24769592271487,44.97170757619325],[-93.24796478938461,44.97167671172295],[-93.24814741580181,44.9716623561435],[-93.24832699844536,44.97165158945758],[-93.24850353731532,44.97164441166516],[-93.2486861637325,44.97164441166516],[-93.24887487769692,44.97165158945758],[-93.24910417530961,44.9716680983727],[-93.24937405657057,44.97169393841052],[-93.24967944852375,44.97173341620952],[-93.25002035116917,44.9717865317697],[-93.25033893280803,44.97184610726185],[-93.25063519344036,44.97191214268597],[-93.25095681885284,44.97199612236956],[-93.25126082505498,44.9720854203137],[-93.25121204654619,44.97214638567921],[-93.2509027330243,44.97254667206852],[-93.25055947045733,44.97294161862292],[-93.25018225884529,44.97333122534238],[-93.2497446933753,44.97372616638362],[-93.24924677404738,44.97412644174663],[-93.2486998172099,44.97453738809801],[-93.24810382286284,44.97495900543775],[-93.24752668909639,44.9753752828661],[-93.2473410451354,44.97551193293329]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":124585.096027,"geom:bbox":"-93.2512608251,44.9716444117,-93.2456608573,44.9755422385","geom:latitude":44.973319,"geom:longitude":-93.247925,"iso:country":"US","lbl:latitude":44.973245,"lbl:longitude":-93.247877,"lbl:max_zoom":18,"mps:latitude":44.973245,"mps:longitude":-93.247877,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.973245,"reversegeo:longitude":-93.247877,"src:geom":"mz","wof:belongsto":[85872621,102191575,1108800003,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7c054cdc9836a9f189b901794b1c3bbf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108800003,"microhood_id":1108800101,"neighbourhood_id":85872621,"region_id":85688727}],"wof:id":1108800101,"wof:lastmodified":1566623870,"wof:name":"Seven Corners","wof:parent_id":85872621,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781071],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800109.geojson b/fixtures/microhoods/1108800109.geojson new file mode 100644 index 0000000..384601a --- /dev/null +++ b/fixtures/microhoods/1108800109.geojson @@ -0,0 +1 @@ +{"id":1108800109,"type":"Feature","bbox":[-93.31420213877239,44.91524841683133,-93.29628702199057,44.93052077229587],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.2980101961823,44.91957110954737],[-93.2980596741414,44.91947628947393],[-93.29819735586186,44.91921021583306],[-93.29830061715221,44.91901827682074],[-93.29836945801243,44.91890047243696],[-93.29851144228665,44.91870751608042],[-93.29872656997486,44.91843940775112],[-93.2989158823405,44.91820074984662],[-93.29907937938353,44.91799154236693],[-93.29924431061116,44.91779147435507],[-93.29941067602337,44.91760054581104],[-93.29954405519005,44.91746242708476],[-93.29964444811121,44.91737711817625],[-93.2997534461399,44.91728876238046],[-93.2998710492761,44.91719735969739],[-93.29999869170445,44.91710900363925],[-93.3001363734249,44.91702369420603],[-93.30035150111311,44.91689776086816],[-93.30064407476908,44.91673120362564],[-93.30108293525304,44.91650878769421],[-93.30166808256496,44.91623051307387],[-93.30212271907938,44.91601926757646],[-93.30244684479628,44.91587505120195],[-93.30271647149884,44.91576638097865],[-93.30293159918705,44.91569325690656],[-93.30311517481432,44.91564044504684],[-93.30326719838067,44.91560794539951],[-93.30340488010111,44.91558255504195],[-93.30352821997569,44.91556427397418],[-93.3036831119112,44.9155449772847],[-93.30386955590764,44.91552466497353],[-93.30402875039692,44.91550739950476],[-93.30416069537903,44.91549318087839],[-93.30429837709949,44.915473884163],[-93.30444179555828,44.91544950935857],[-93.30460529260131,44.91541904083365],[-93.30478886822858,44.91538247858824],[-93.30496097037916,44.91534794755916],[-93.30512159905302,44.91531544774641],[-93.3053051746803,44.91528802601873],[-93.30551169726098,44.91526568237614],[-93.30572252239543,44.91525247931366],[-93.30593765008364,44.91524841683133],[-93.3061226598955,44.91525044807221],[-93.30627755183102,44.91525857303631],[-93.30647403511958,44.91527076047902],[-93.3067121097612,44.91528701040033],[-93.30702189363222,44.91530935403108],[-93.30740338673264,44.91533779137126],[-93.30778487983306,44.91537029116793],[-93.308735744215,44.91546372799959],[-93.30875436693263,44.91546730296604],[-93.30909285617741,44.91553228208009],[-93.30935746323391,44.91557900037763],[-93.30964649117539,44.91562638805574],[-93.3096486027053,44.91562673425237],[-93.30973908347613,44.91564248300941],[-93.30986157911663,44.91566380415934],[-93.3099963924679,44.91569021009852],[-93.310152718588,44.91572626433297],[-93.31033055747692,44.91577196686269],[-93.31047899558178,44.91581868496536],[-93.31059803290259,44.915866418641],[-93.31073212916155,44.91593040198923],[-93.31088128435871,44.91601063501002],[-93.3110634258014,44.91610508636224],[-93.3112785534896,44.91621375604585],[-93.31151591103892,44.91632750351685],[-93.31177549844938,44.91644632877523],[-93.3119762842917,44.91653976391049],[-93.31211826856591,44.91660780892265],[-93.3122401742559,44.9166697602914],[-93.31234200136166,44.91672561801675],[-93.31242590116007,44.916774874338],[-93.31249187365114,44.91681752925514],[-93.31258007600331,44.91686983225191],[-93.31269050821658,44.91693178332831],[-93.31279950624527,44.91699779668988],[-93.31290707008938,44.91706787233661],[-93.31301104847202,44.91714556478612],[-93.31311144139318,44.9172308740384],[-93.31321111722205,44.91731516758217],[-93.31331007595861,44.91739844541746],[-93.3134076005106,44.91748629323656],[-93.313503690878,44.91757871103948],[-93.31359045904557,44.91766503524035],[-93.31366790501333,44.91774526583917],[-93.31372957495061,44.91781280165854],[-93.31377546885744,44.91786764269844],[-93.31382566531802,44.91793111604461],[-93.31384708467965,44.9179594552185],[-93.31388016433237,44.91800322169703],[-93.31394685391572,44.91811848886583],[-93.31402573406805,44.91827691755102],[-93.3140924236514,44.91841960460929],[-93.31414692266574,44.91854655004066],[-93.31418206018814,44.91864252067821],[-93.31419783621863,44.91870751652195],[-93.31420213877239,44.91876895784359],[-93.31419496784945,44.91882684464312],[-93.31418707983421,44.91886746694207],[-93.31417847472669,44.91889082474043],[-93.31416771834228,44.91891976808188],[-93.314154810681,44.91895429696642],[-93.31413258081989,44.91899288804401],[-93.31410102875893,44.91903554131466],[-93.31406373995964,44.91908631896577],[-93.314020714422,44.91914522099734],[-93.31396549831535,44.91922138729361],[-93.31389809163971,44.91931481785458],[-93.31382279694884,44.91942094256581],[-93.31373961424275,44.91953976142726],[-93.31368152976694,44.91962760605413],[-93.3136485435214,44.91968447644639],[-93.31361842564505,44.91974287009185],[-93.31359117613788,44.91980278699049],[-93.31355603861547,44.91989977089676],[-93.31351301307782,44.92003382181066],[-93.31346138243266,44.92018208982643],[-93.31340114667995,44.92034457494405],[-93.31334521348101,44.92049385779231],[-93.31329358283585,44.92062993837119],[-93.31325342566738,44.92073199868448],[-93.3132247419756,44.9208000387322],[-93.31319534119154,44.92086553990038],[-93.31316522331522,44.92092850218901],[-93.31309925082418,44.92102548420281],[-93.31299742371843,44.92115648594178],[-93.31280094042987,44.92142153413061],[-93.31250980095848,44.92182062876932],[-93.31228463397815,44.92212324906346],[-93.31212543948888,44.92232939501304],[-93.31202361238313,44.9224578553065],[-93.31197915266088,44.92250862994387],[-93.31193541003094,44.9225507728683],[-93.31189238449332,44.9225842840798],[-93.31180346504885,44.9226411515108],[-93.31166865169759,44.92272137516133],[-93.31156395622266,44.92279296707479],[-93.31148937862407,44.92285592725119],[-93.31141551811778,44.92293259637766],[-93.3113423747038,44.92302297445417],[-93.31126851419751,44.92311690656532],[-93.31119393659894,44.92321439271109],[-93.3111265299233,44.92331898701829],[-93.3110662941706,44.92343068948691],[-93.31101681480231,44.92352360551138],[-93.31097809181844,44.92359773509168],[-93.31094510557293,44.92366475628616],[-93.31091785606574,44.92372466909483],[-93.31089634329693,44.92379778292098],[-93.31088056726645,44.92388409776461],[-93.3108504493901,44.9240501261948],[-93.31080598966787,44.92429586821153],[-93.31076798377629,44.92449083659494],[-93.31073643171533,44.92463503134501],[-93.31071276766963,44.92473403821094],[-93.31069699163916,44.9247878571927],[-93.31067906433182,44.92483710659997],[-93.31065898574758,44.92488178643276],[-93.31063603879417,44.92492697395497],[-93.3106102234716,44.92497266916662],[-93.31058225687212,44.92501887206527],[-93.31055213899577,44.92506558265092],[-93.31052704076548,44.92510366191318],[-93.31050696218125,44.92513310985205],[-93.31047325884343,44.92517525082779],[-93.31042593075202,44.92523008484041],[-93.31037358301455,44.92529761181721],[-93.31031621563102,44.92537783175818],[-93.31025096023225,44.92547582174178],[-93.31017781681828,44.92559158176801],[-93.31010682468117,44.92569211006257],[-93.31003798382095,44.92577740662546],[-93.30997487969907,44.92586321077707],[-93.30991751231556,44.92594952251739],[-93.30984221762469,44.92607086633962],[-93.30974899562646,44.92622724224378],[-93.30967728639706,44.92634147774467],[-93.30962708993647,44.92641357284231],[-93.30958549858342,44.92648211387872],[-93.3095525123379,44.9265471008539],[-93.30950733552338,44.9266603200315],[-93.30944996813984,44.92682177141152],[-93.3094069426022,44.92694463674687],[-93.30937825891044,44.92702891603754],[-93.30935172649556,44.92711217979584],[-93.30932734535757,44.92719442802179],[-93.30930870095793,44.92728479937435],[-93.30929579329664,44.92738329385353],[-93.30928001726616,44.92745640309693],[-93.30926137286653,44.92750412710453],[-93.30924057719,44.92754982026857],[-93.30921763023659,44.92759348258903],[-93.309191814914,44.92763866797696],[-93.30916313122223,44.92768537643235],[-93.30914161845341,44.92773919263908],[-93.30912727660753,44.92780011659717],[-93.30911508603853,44.92785393271637],[-93.30910504674641,44.92790064099673],[-93.30909500745429,44.92796004166999],[-93.30908496816218,44.9280321347362],[-93.30905126482435,44.92825856638675],[-93.30899389744083,44.92863933662167],[-93.30895230608778,44.9290109660256],[-93.30892649076517,44.92937345459856],[-93.30889852416571,44.9296983727023],[-93.30886840628936,44.92998572033682],[-93.30884832770514,44.9301512243256],[-93.308838288413,44.93019488466863],[-93.30882179529024,44.93023956033293],[-93.30879884833683,44.9302852513185],[-93.30877088173737,44.93032688085591],[-93.30873789549184,44.93036444894514],[-93.30870275796944,44.93039795560215],[-93.30866546917015,44.93042740082693],[-93.30861455561727,44.93045126160493],[-93.30855001731081,44.93046953793615],[-93.3084783080814,44.93048222983126],[-93.30839942792906,44.93048933729027],[-93.30825529237796,44.93050152150204],[-93.30802176301769,44.93052077229587],[-93.30801027865849,44.93046060649802],[-93.30799395411358,44.93039030017029],[-93.3079749088112,44.93032095685691],[-93.30794634085761,44.93025065035471],[-93.30790825025284,44.9301793806637],[-93.30783342942203,44.93003973008765],[-93.3077218783652,44.92983169862659],[-93.30764841791314,44.92969301081843],[-93.30761304806585,44.92962366666319],[-93.30756135367365,44.92956973228405],[-93.30749333473656,44.92953120768101],[-93.30741715352701,44.92950809291609],[-93.30733281004501,44.92950038798928],[-93.30724030429056,44.92949075682883],[-93.30713963626366,44.92947919943474],[-93.30705529278165,44.92945993710221],[-93.30698727384457,44.92943296983125],[-93.3069233360437,44.92940118695594],[-93.30686347937905,44.92936458847626],[-93.30682402839554,44.92931739565237],[-93.30680498309314,44.92925960848424],[-93.30679954157819,44.92916137006123],[-93.30680770385061,44.92902268038333],[-93.30681450574431,44.92886665402475],[-93.30681994725929,44.92869329098551],[-93.30683345991885,44.92861543254271],[-93.30679457537505,44.92860278373327],[-93.30673433962235,44.92858602988559],[-93.30666693294671,44.92856978372537],[-93.30660096045565,44.92855962987451],[-93.3065364221492,44.92855556833302],[-93.30647116675044,44.92855506064036],[-93.3064051942594,44.92855810679652],[-93.30624026303178,44.928567752955],[-93.30597637306758,44.92858399911579],[-93.30562284656662,44.92860278373224],[-93.3051796835289,44.92862410680433],[-93.30480105879765,44.92863578372435],[-93.30448697237287,44.9286378144923],[-93.30423240460848,44.92863426064783],[-93.3040373555045,44.92862512219095],[-93.30381577398565,44.92860786065366],[-93.30356766005191,44.92858247603595],[-93.30334464434847,44.92855404524854],[-93.30314672687531,44.92852256829141],[-93.30286634378835,44.92847230663817],[-93.30250349508756,44.92840326028882],[-93.30211267978731,44.92832558302907],[-93.3016938978876,44.92823927485894],[-93.30138769947804,44.92817022826058],[-93.30119408455865,44.92811844323401],[-93.3009954499932,44.92805955039102],[-93.3007917957817,44.92799354973161],[-93.30058312192415,44.92792653359807],[-93.30036942842051,44.9278585019904],[-93.30018155023947,44.92779910120581],[-93.30001948738104,44.92774833124433],[-93.29986602963011,44.92769553043399],[-93.29972117698671,44.92764069877478],[-93.29956843632809,44.92757672842429],[-93.2994078076542,44.92750361938251],[-93.29922208075006,44.92741680224347],[-93.29901125561562,44.92731627700715],[-93.29881477232706,44.92721067453522],[-93.29863263088437,44.92709999482769],[-93.29847917313344,44.92700505384673],[-93.2983543990743,44.92692585159236],[-93.29823034210742,44.9268527417338],[-93.29810700223285,44.92678572427104],[-93.29794278809752,44.92670144458557],[-93.2977376997014,44.92659990267737],[-93.2975706171969,44.92650902254262],[-93.29744154058396,44.92642880418133],[-93.29732106907856,44.92634401628781],[-93.29720920268069,44.92625465886206],[-93.29711956614393,44.92617342473527],[-93.29705215946831,44.92610031390743],[-93.2969811673312,44.92600841748148],[-93.29690658973261,44.92589773545744],[-93.29685065653368,44.92580939282297],[-93.29681336773439,44.92574338957809],[-93.29678038148886,44.92566672415403],[-93.29675169779708,44.92557939655079],[-93.29671727736697,44.92546820591084],[-93.29667712019851,44.92533315223417],[-93.29664413395298,44.92520723727215],[-93.29661831863041,44.92509046102476],[-93.29658891784635,44.92496708410162],[-93.29655593160082,44.92483710650275],[-93.29650788641712,44.92469494312201],[-93.29644478229525,44.9245405939594],[-93.29639315165008,44.92439842993534],[-93.29635299448162,44.92426845104984],[-93.29632144242069,44.92414558013704],[-93.29629849546727,44.92402981719693],[-93.29628702199057,44.92391506949404],[-93.29628702199057,44.92380133702838],[-93.29630279802103,44.92366526388173],[-93.29633435008196,44.92350685005412],[-93.29636159958913,44.9233738228086],[-93.29638454654254,44.92326618214518],[-93.29641609860347,44.9231636186975],[-93.29645625577194,44.92306613246557],[-93.29650645223252,44.92293005751979],[-93.29656668798523,44.92275539386018],[-93.29665273906052,44.92249847428594],[-93.29676460545838,44.92215929879708],[-93.29685065653366,44.92189628461348],[-93.29691089228636,44.92170943173515],[-93.296978298962,44.92152156273439],[-93.29705287656057,44.92133267761122],[-93.29713749345127,44.92114988499435],[-93.29723214963408,44.92097318488378],[-93.29736983135454,44.92073250587077],[-93.29755053861264,44.9204278479553],[-93.29772837750156,44.92010897082176],[-93.2979033480213,44.91977587447015],[-93.2980101961823,44.91957110954737]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000178,"geom:area_square_m":1561321.525569,"geom:bbox":"-93.3142021388,44.9152484168,-93.296287022,44.9305207723","geom:latitude":44.92197,"geom:longitude":-93.305004,"iso:country":"US","lbl:latitude":44.922004,"lbl:longitude":-93.304833,"lbl:max_zoom":18,"mps:latitude":44.922004,"mps:longitude":-93.304833,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Lake Harriet"],"reversegeo:latitude":44.922004,"reversegeo:longitude":-93.304833,"src:geom":"mz","wof:belongsto":[1108800221,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5ae4572a10b8af5ccaac148496f34d8d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800109,"neighbourhood_id":1108800221,"region_id":85688727}],"wof:id":1108800109,"wof:lastmodified":1566623870,"wof:name":"Lake Harriet","wof:parent_id":1108800221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800111.geojson b/fixtures/microhoods/1108800111.geojson new file mode 100644 index 0000000..d07d161 --- /dev/null +++ b/fixtures/microhoods/1108800111.geojson @@ -0,0 +1 @@ +{"id":1108800111,"type":"Feature","bbox":[-93.32053278757105,44.93359059560046,-93.30356367329182,44.95048746218973],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.30399788385921,44.93769855121819],[-93.30401070280035,44.93762142039545],[-93.3040278687335,44.93755560051562],[-93.30404718040826,44.93749332471946],[-93.30406863782466,44.937434593007],[-93.30411012216305,44.93733788797774],[-93.30417163342344,44.9372032096317],[-93.30422813795332,44.93708523929349],[-93.3042796357527,44.93698397696311],[-93.30434615374358,44.93687157553455],[-93.30442769192592,44.93674803500782],[-93.30450779961386,44.93663512686632],[-93.30458647680736,44.93653285111002],[-93.3046830351812,44.93641842352649],[-93.30479747473538,44.93629184411571],[-93.30490762280628,44.93618349197003],[-93.3050134793939,44.93609336708944],[-93.3051336409258,44.93599868516925],[-93.30526810740197,44.93589944620943],[-93.30541902456406,44.93579058692178],[-93.30558639241204,44.93567210730627],[-93.30581527152042,44.93552375416488],[-93.30610566188918,44.9353455274976],[-93.30644254332681,44.93515008503074],[-93.30682591583333,44.93493742676431],[-93.3071120147188,44.93477489477112],[-93.30730083998321,44.93466248905116],[-93.30747178406727,44.93456932383],[-93.30762484697101,44.93449539910765],[-93.30778363185243,44.93442957565856],[-93.30794813871158,44.93437185348275],[-93.30810191686251,44.93431818193957],[-93.30824496630524,44.93426856102901],[-93.30843879830014,44.93420982600428],[-93.30868341284722,44.93414197686535],[-93.30890299374181,44.93408222906241],[-93.30909754098394,44.93403058259545],[-93.30927134605686,44.93398298679571],[-93.30942440896058,44.93393944166316],[-93.30955672969512,44.93389488381775],[-93.30966830826044,44.93384931325949],[-93.30979705275891,44.93379310950554],[-93.3099429631905,44.93372627255593],[-93.31008458213881,44.93366044821308],[-93.31024266017403,44.93359059560046],[-93.31026450814008,44.93368079511242],[-93.31028472029388,44.93373838754646],[-93.3103109960938,44.93379061416852],[-93.31033525067836,44.93383246698654],[-93.31035748404753,44.93386394600052],[-93.31038375984747,44.93389470956627],[-93.31041407807815,44.93392475768379],[-93.31045197586653,44.93394872462721],[-93.31049745321255,44.93396661039651],[-93.31055051011626,44.93398056129413],[-93.31061114657766,44.93399057732009],[-93.31067329895056,44.9339977316238],[-93.31073696723502,44.93400202420527],[-93.31080265673484,44.93400488592619],[-93.31087036745005,44.93400631678654],[-93.31095626910367,44.934008820792],[-93.31106036169571,44.93401239794256],[-93.31116698080697,44.93401704823783],[-93.31127612643743,44.9340227716778],[-93.31141053726017,44.93403493398382],[-93.31157021327513,44.93405353515586],[-93.31171371956708,44.93407320946534],[-93.31184105613596,44.93409395691224],[-93.31195171767799,44.93411613520843],[-93.31204570419314,44.93413974435393],[-93.31216394529282,44.93417515804305],[-93.31230644097707,44.93422237627578],[-93.31244034649595,44.93426852133066],[-93.31256566184946,44.93431359320765],[-93.31267379687226,44.93435401478644],[-93.31276475156433,44.93438978606704],[-93.31284964261026,44.93442770359802],[-93.31292847001006,44.93446776737939],[-93.31302447774058,44.93452035103281],[-93.31313766580183,44.93458545455829],[-93.31325085386308,44.93465341969338],[-93.3133640419243,44.93472424643806],[-93.31347520877017,44.93479185370946],[-93.31358435440066,44.93485624150758],[-93.313694005335,44.93492027152472],[-93.31380416157316,44.93498394376086],[-93.3138936003537,44.93502937280672],[-93.3139623216766,44.93505655866228],[-93.31403609603794,44.9350844599212],[-93.31411492343774,44.93511307658346],[-93.31419425614138,44.93513668532218],[-93.31427409414887,44.93515528613736],[-93.31437768143707,44.93517460236176],[-93.31450501800596,44.93519463399539],[-93.31460860529415,44.93520715376531],[-93.31468844330163,44.93521216167154],[-93.31478546163984,44.93521573874729],[-93.31489966030878,44.93521788499254],[-93.3150158801931,44.9352182427001],[-93.3151341212928,44.93521681186994],[-93.3152276025041,44.93521287708658],[-93.31529632382698,44.93520643835001],[-93.31549743475723,44.9351853335892],[-93.31583093529483,44.93514956280415],[-93.31618161616315,44.9351134342883],[-93.31654947736219,44.93507694804164],[-93.31686983999981,44.93505047761982],[-93.31714270407603,44.93503402302282],[-93.31736251124855,44.93502329176298],[-93.31752926151734,44.93501828384028],[-93.31774502625909,44.93501971467514],[-93.31800980547378,44.93502758426756],[-93.31825942557313,44.93503366531579],[-93.31849388655712,44.93503795781983],[-93.31869600809506,44.93504797365986],[-93.31886579018693,44.93506371283587],[-93.3190785231056,44.93508410221408],[-93.31933420685108,44.93510914179449],[-93.31950045181603,44.93512702720573],[-93.31957725800045,44.93513775844779],[-93.3196555800964,44.93515313988939],[-93.3197354181039,44.93517317153051],[-93.31982081445368,44.93519999960559],[-93.31991176914573,44.93523362411463],[-93.3199926177609,44.93526760631089],[-93.3200633602992,44.93530194619438],[-93.32013208162209,44.93534022082805],[-93.32019878172962,44.9353824302119],[-93.32025790227945,44.93542571268225],[-93.32030944327163,44.93547006823908],[-93.32035289940228,44.93551478146694],[-93.32038827067142,44.9355598523658],[-93.32042061011748,44.93560313470565],[-93.32044991774049,44.93564462848649],[-93.32047215110966,44.93568862616677],[-93.320487310225,44.93573512774645],[-93.3205029746442,44.93578520632395],[-93.32051914436724,44.93583886189924],[-93.3205287451403,44.93589287512722],[-93.32053177696336,44.9359472460079],[-93.32053278757105,44.93601342100307],[-93.32053177696336,44.93609140011274],[-93.32052722922876,44.93618118324073],[-93.32051914436722,44.93628277038703],[-93.32050954359417,44.93637505716826],[-93.3204984269096,44.93645804358441],[-93.32048074127502,44.93655354932334],[-93.32045648669049,44.93666157438503],[-93.32042717906748,44.9367663799714],[-93.32039281840603,44.93686796608243],[-93.32036148956765,44.93695703265965],[-93.32033319255234,44.93703357970303],[-93.32030590614471,44.93710333043713],[-93.32027963034479,44.93716628486192],[-93.32025082802562,44.93722745074549],[-93.32021949918725,44.93728682808784],[-93.32018513852579,44.93735192846722],[-93.32014774604127,44.93742275188364],[-93.32010782703753,44.93749429059809],[-93.32006538151455,44.93756654461056],[-93.32002546251081,44.93763665238127],[-93.31998807002631,44.93770461391023],[-93.31995648903727,44.93775799992376],[-93.3199542146687,44.9377618446251],[-93.31992389643801,44.93780834452589],[-93.31989408351117,44.93785377131697],[-93.31986477588816,44.93789812499833],[-93.31983445765749,44.9379431940257],[-93.3198031288191,44.93798897839909],[-93.31976775754997,44.93804477804021],[-93.31972834385007,44.93811059294903],[-93.31969701501168,44.9381653194349],[-93.31967377103483,44.93820895749779],[-93.31965153766565,44.93826082235434],[-93.31963031490415,44.93832091400451],[-93.31961465048495,44.93837277878222],[-93.31960454440807,44.93841641668745],[-93.3195959542427,44.93846506217569],[-93.31958887998888,44.93851871524694],[-93.31958382695043,44.93857308364032],[-93.31958079512738,44.93862816735583],[-93.31958180573507,44.9386825356476],[-93.31958685877352,44.93873618851565],[-93.31959090120428,44.93878125689616],[-93.31959393302733,44.93881774078916],[-93.31960403910423,44.93885815918841],[-93.31962121943496,44.93890251209393],[-93.31964143158876,44.93895151485503],[-93.3196646755656,44.93900516747175],[-93.31968842484632,44.93905953540452],[-93.31971267943088,44.93911461865335],[-93.31974400826925,44.93917113257889],[-93.31978241136147,44.93922907718112],[-93.31984001599977,44.93930884028877],[-93.31991682218418,44.93941042190183],[-93.31997745864555,44.93949447701242],[-93.32002192538391,44.93956100562056],[-93.32006133908381,44.93962574575426],[-93.32009569974525,44.93968869741354],[-93.32012601797595,44.9397444954279],[-93.32015229377588,44.93979313979734],[-93.32017806427197,44.93984786465501],[-93.32020332946422,44.9399086700009],[-93.32022909996032,44.93998056327655],[-93.32025537576024,44.94006354448196],[-93.32027861973711,44.94014938697562],[-93.3202988318909,44.94023809075754],[-93.32031500161393,44.94031928322792],[-93.3203271289062,44.94039296438677],[-93.3203372349831,44.94046056498921],[-93.32034531984462,44.94052208503521],[-93.32035087818691,44.94059433521739],[-93.32035391000998,44.94067731553573],[-93.32035643652921,44.94077031055323],[-93.32035845774458,44.94087332026989],[-93.32035694183304,44.94099242497431],[-93.32035188879459,44.94112762466648],[-93.32034683575614,44.94125924735367],[-93.32034178271772,44.94138729303587],[-93.32033420316004,44.94149924340352],[-93.32032409708314,44.9415950984566],[-93.3203134857024,44.94169596067722],[-93.3203023690178,44.94180183006536],[-93.32028720990246,44.941941677381],[-93.32026800835635,44.94211550262416],[-93.32024577498719,44.94228396241212],[-93.32022050979492,44.94244705674488],[-93.32019069686808,44.94262338402682],[-93.32015633620664,44.94281294425794],[-93.32012904979902,44.94295851195146],[-93.32010883764522,44.94306008710737],[-93.32008559366835,44.94317167647891],[-93.32005931786843,44.94329328006607],[-93.32003809510694,44.94339163577995],[-93.32002192538391,44.94346674362055],[-93.32000474505318,44.94354328198273],[-93.31998655411478,44.94362125086651],[-93.31996482604944,44.94370601506826],[-93.31993956085721,44.943797574588],[-93.31991025323421,44.94389235283532],[-93.31987690318044,44.94399034981021],[-93.3198470902536,44.94407690176969],[-93.31982081445368,44.94415200871376],[-93.3197940333499,44.94422461200436],[-93.31976674694226,44.94429471164151],[-93.31973642871156,44.94436731474214],[-93.31970307865782,44.94444242130627],[-93.31966821269253,44.9445168124743],[-93.31963183081571,44.94459048824625],[-93.31959039590043,44.94467203217751],[-93.31954390794671,44.9447614442681],[-93.31950247303143,44.94483833857976],[-93.3194660911546,44.94490271511252],[-93.31942718275855,44.94497174097294],[-93.31938574784328,44.94504541616102],[-93.31933673337033,44.94512552886612],[-93.3192801393397,44.94521207908823],[-93.3192326407783,44.9452839657713],[-93.31919423768609,44.94534118891533],[-93.31914774973237,44.94540484958532],[-93.31909317691714,44.94547494778128],[-93.31903860410188,44.94554468824909],[-93.31898403128665,44.94561407098875],[-93.31893350090215,44.94567737373451],[-93.31888701294844,44.94573459648638],[-93.31883345074088,44.94580040256575],[-93.3187728142795,44.94587479197261],[-93.31871773616041,44.94594274376185],[-93.31866821638363,44.94600425793344],[-93.31861111704916,44.94606899079319],[-93.31854643815701,44.94613694234111],[-93.31848681230333,44.94620203270065],[-93.31843223948809,44.94626426187182],[-93.31836200225365,44.94633507427902],[-93.31827610060003,44.94641446992222],[-93.31819575728869,44.94648850090638],[-93.31812097231966,44.9465571672315],[-93.3180492191737,44.94662404529523],[-93.3179804978508,44.94668913509758],[-93.31790116514716,44.94676137752554],[-93.3178112210628,44.94684077257911],[-93.31769449587463,44.94694055264026],[-93.3175509895827,44.94706071770899],[-93.31742769544455,44.94716550434677],[-93.3173246134602,44.94725491255362],[-93.31723062694506,44.94734539351464],[-93.31714573589913,44.94743694722983],[-93.31705831833398,44.94753636865658],[-93.3169683742496,44.9476436577949],[-93.31688752563443,44.94774522467625],[-93.31681577248847,44.94784106930063],[-93.31674452464634,44.94793977478392],[-93.31667378210807,44.94804134112613],[-93.3166156721659,44.94813468188671],[-93.31657019481986,44.94821979706568],[-93.31653684476609,44.9482834545897],[-93.31651562200462,44.94832565445877],[-93.31649894697773,44.94837500679945],[-93.31649090188772,44.9484124913665],[-93.31648681968545,44.94843151161173],[-93.31647974543162,44.94848944686566],[-93.31647772421624,44.94854881256126],[-93.31647570300086,44.94861211205409],[-93.3164736817855,44.94867934534418],[-93.3164736817855,44.94874264470609],[-93.31647570300086,44.9488020101398],[-93.31647671360855,44.94883169285666],[-93.3159451339638,44.94900692692184],[-93.31488197467425,44.94935739505219],[-93.31396535349973,44.94965851022706],[-93.31319527044018,44.94991027244644],[-93.31262831952627,44.95009623278737],[-93.31226450075799,44.95021639124982],[-93.3119310002204,44.95031509271114],[-93.31162781791349,44.95039233717134],[-93.31138931449873,44.95044454867988],[-93.31121548997609,44.9504717272368],[-93.31100730479201,44.95048603174008],[-93.3107647589465,44.95048746218973],[-93.31057375409316,44.95048317084003],[-93.31043429023197,44.95047315769098],[-93.31028370968622,44.95045384660818],[-93.31012201245585,44.95042523759162],[-93.30996233644089,44.95039519810778],[-93.3098046816413,44.95036372815663],[-93.30963489954944,44.95031866886236],[-93.3094529901653,44.95026002022495],[-93.30926198531195,44.95019064308144],[-93.3090618849894,44.95011053743182],[-93.3088173179285,44.95001183562611],[-93.30852828412925,44.94989453766431],[-93.30816092823406,44.94974326571924],[-93.30771525024292,44.94955801979091],[-93.30742217401291,44.94943642967661],[-93.30728169954405,44.94937849537635],[-93.30715335236746,44.9493244948395],[-93.30703713248315,44.94927442806605],[-93.30684461171828,44.94918395004772],[-93.30657579007281,44.94905306078448],[-93.30633880256958,44.9489339727896],[-93.30613364920859,44.94882668606307],[-93.3059421390514,44.94872655162277],[-93.305764272098,44.94863356946868],[-93.30561571276763,44.94855846842321],[-93.30547625561813,44.94849155341239],[-93.30548751433383,44.94843657237767],[-93.30551105896447,44.9483828786982],[-93.30554061659042,44.94832880391765],[-93.30556779598453,44.948292862848],[-93.30560355834521,44.94825439069471],[-93.30565434089738,44.94820832531022],[-93.30572014364104,44.94815466669451],[-93.30578809212635,44.94810455153163],[-93.30585818635328,44.94805797982158],[-93.30591326038873,44.94800887699616],[-93.3059533142327,44.94795724305537],[-93.30598406986289,44.94791168366451],[-93.30600552727928,44.94787219882358],[-93.30601840172912,44.94783170152154],[-93.30602269321241,44.9477901917584],[-93.30602126271798,44.94774260735129],[-93.30601411024584,44.94768894830022],[-93.30600552727927,44.94763933894947],[-93.30599551381829,44.94759377929906],[-93.30598049362679,44.94754366363587],[-93.3059604667048,44.9474889919599],[-93.30592184335526,44.9473958474095],[-93.3058646235782,44.94726422998464],[-93.30571370641611,44.946982769069],[-93.30546909186904,44.94655146466255],[-93.30524808048001,44.9461631871163],[-93.30505067224904,44.94581793643026],[-93.30484754204036,44.94546509003855],[-93.30463868985396,44.94510464794117],[-93.30444128162299,44.9447609097693],[-93.30425531734743,44.94443387552295],[-93.3040922409827,44.94414430213218],[-93.30395205252883,44.94389218959701],[-93.3038304605025,44.94367348886064],[-93.30372746490374,44.94348819992305],[-93.30365880117122,44.9433621425483],[-93.30362446930498,44.94329531673634],[-93.30360086614692,44.94323405968264],[-93.30358799169709,44.94317837138718],[-93.30358083922495,44.9431186329675],[-93.30357940873051,44.94305484442357],[-93.30357726298888,44.94298093060576],[-93.30357440200002,44.94289689151405],[-93.30357011051674,44.94281082725193],[-93.30356438853904,44.94272273781939],[-93.30356367329182,44.94263110440721],[-93.3035679647751,44.94253592701536],[-93.30357440200001,44.94242151137368],[-93.30358298496658,44.9422878574822],[-93.30359371367479,44.94211268922086],[-93.30360658812462,44.9418960065897],[-93.30361731683284,44.94170008034176],[-93.30362589979941,44.94152491047707],[-93.30363090652992,44.94139024209431],[-93.30363233702435,44.94129607519349],[-93.30363305227156,44.94120494579482],[-93.30363305227156,44.94111685389829],[-93.30363734375484,44.94100597935662],[-93.3036459267214,44.94087232216978],[-93.30365450968796,44.94075486564694],[-93.30366309265455,44.94065360978807],[-93.30367882809324,44.94054324067223],[-93.30370171600407,44.94042375829942],[-93.30372603440932,44.94031338879428],[-93.30375178330902,44.94021213215684],[-93.30377395597264,44.94010226847852],[-93.3037925524002,44.93998379775933],[-93.30381114882775,44.93984558154001],[-93.30382974525531,44.93968761982057],[-93.30385406366057,44.93940966602244],[-93.30388410404355,44.93901172014563],[-93.30391271393209,44.93865933870762],[-93.30393989332622,44.93835252170844],[-93.30396135074263,44.93810747236584],[-93.30397708618133,44.93792419067982],[-93.30398924538396,44.93778799496145],[-93.30399782835052,44.93769888521074],[-93.30399788385921,44.93769855121819]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000221,"geom:area_square_m":1936699.889483,"geom:bbox":"-93.3205327876,44.9335905956,-93.3035636733,44.9504874622","geom:latitude":44.941791,"geom:longitude":-93.311904,"iso:country":"US","lbl:latitude":44.942221,"lbl:longitude":-93.311742,"lbl:max_zoom":18,"mps:latitude":44.942221,"mps:longitude":-93.311742,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":44.942221,"reversegeo:longitude":-93.311742,"src:geom":"mz","wof:belongsto":[1108800221,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0984de0ce18f73cf350cdea80be462ce","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800111,"neighbourhood_id":1108800221,"region_id":85688727}],"wof:id":1108800111,"wof:lastmodified":1566623869,"wof:name":"Lake Calhoun","wof:parent_id":1108800221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800119.geojson b/fixtures/microhoods/1108800119.geojson new file mode 100644 index 0000000..28699b4 --- /dev/null +++ b/fixtures/microhoods/1108800119.geojson @@ -0,0 +1 @@ +{"id":1108800119,"type":"Feature","bbox":[-93.3103297244135,44.92952560699859,-93.29355147006413,44.93769855121819],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.29357248492228,44.93768082184764],[-93.29357767723633,44.93707803405509],[-93.29358170910898,44.93632882407395],[-93.2935857409816,44.93529847356786],[-93.2935756613,44.93426953172946],[-93.29355147006413,44.93324199855872],[-93.29355147006414,44.93192757572967],[-93.29357566130001,44.93032626324228],[-93.29358775691794,44.92952560699859],[-93.29440219519165,44.92952560699859],[-93.29603107173907,44.92952560699859],[-93.29713782077933,44.92952560699859],[-93.29772244231245,44.92952560699859],[-93.298234490138,44.92952846146735],[-93.298673964256,44.92953417040487],[-93.29935736666884,44.92953559763932],[-93.30028469737654,44.92953274317071],[-93.30109107190498,44.9295355976389],[-93.30177649025413,44.92954416104391],[-93.302347000233,44.92955700614758],[-93.30280260184156,44.92957413294992],[-93.3032561875138,44.92958983251484],[-93.30370775724973,44.92960410484233],[-93.30433269750925,44.92961694993452],[-93.30513100829239,44.9296283677914],[-93.30612486489869,44.92964692180054],[-93.30764161964689,44.92967968251575],[-93.30764841791314,44.92969301081843],[-93.3077218783652,44.92983169862659],[-93.30783342942203,44.93003973008765],[-93.30790825025284,44.9301793806637],[-93.30794634085761,44.93025065035471],[-93.3079749088112,44.93032095685691],[-93.30799395411358,44.93039030017029],[-93.30801027865849,44.93046060649802],[-93.30802176301769,44.93052077229587],[-93.30802388244591,44.93053187584007],[-93.30803340509709,44.93060507128482],[-93.30803884661208,44.93068019283227],[-93.30805245039949,44.93075916665288],[-93.30807421645937,44.93084199274664],[-93.30809870327673,44.93091518781827],[-93.30812591085154,44.93097875186775],[-93.30817216372877,44.93104905746453],[-93.30823746190839,44.93112610460861],[-93.30831636387542,44.93118774227426],[-93.30840886962987,44.93123397046149],[-93.30851769992923,44.93127345701556],[-93.3086428547735,44.93130620193648],[-93.30876392848153,44.93133509450116],[-93.30888092105333,44.93136013470962],[-93.30897206642904,44.93138324873966],[-93.30903736460866,44.93140443659131],[-93.30910674392449,44.93142851368413],[-93.30918020437656,44.93145548001816],[-93.30923597990497,44.93148437250339],[-93.30927407050974,44.93151519113983],[-93.30930263846332,44.93154600975974],[-93.3093216837657,44.93157682836311],[-93.30933528755313,44.93160668387011],[-93.30934344982559,44.93163557628073],[-93.30934753096182,44.93166543175568],[-93.30934753096182,44.93169625029497],[-93.30935433285552,44.93174729343733],[-93.30936793664296,44.93181856118275],[-93.30938970270282,44.93189271806162],[-93.30941963103514,44.93196976407391],[-93.30946588391237,44.93204873612528],[-93.30952846133448,44.93212963421573],[-93.30961416519523,44.93221919980552],[-93.3097229954946,44.93231743289466],[-93.30984815033885,44.93242529645814],[-93.30998962972801,44.93254279049597],[-93.31009573926988,44.93263524471229],[-93.31016647896446,44.9327026591071],[-93.31021817335666,44.93276429506527],[-93.31025082244645,44.93282015258679],[-93.31028075077879,44.93287697311186],[-93.31030795835363,44.93293475664047],[-93.31032428289855,44.93299735538966],[-93.3103297244135,44.93306476935942],[-93.31032020176231,44.93313122019669],[-93.31029571494497,44.93319670790147],[-93.3102739488851,44.93327471519155],[-93.3102549035827,44.93336524206694],[-93.31024402055277,44.93344613832329],[-93.31024129979528,44.93351740396059],[-93.31024266017403,44.93359059560046],[-93.31008458213881,44.93366044821308],[-93.3099429631905,44.93372627255593],[-93.30979705275891,44.93379310950554],[-93.30966830826044,44.93384931325949],[-93.30955672969512,44.93389488381775],[-93.30942440896058,44.93393944166316],[-93.30927134605686,44.93398298679571],[-93.30909754098394,44.93403058259545],[-93.30890299374181,44.93408222906241],[-93.30868341284722,44.93414197686535],[-93.30843879830014,44.93420982600428],[-93.30824496630524,44.93426856102901],[-93.30810191686251,44.93431818193957],[-93.30794813871158,44.93437185348275],[-93.30778363185243,44.93442957565856],[-93.30762484697101,44.93449539910765],[-93.30747178406727,44.93456932383],[-93.30730083998321,44.93466248905116],[-93.3071120147188,44.93477489477112],[-93.30682591583333,44.93493742676431],[-93.30644254332681,44.93515008503074],[-93.30610566188918,44.9353455274976],[-93.30581527152042,44.93552375416488],[-93.30558639241204,44.93567210730627],[-93.30541902456406,44.93579058692178],[-93.30526810740197,44.93589944620943],[-93.3051336409258,44.93599868516925],[-93.3050134793939,44.93609336708944],[-93.30490762280628,44.93618349197003],[-93.30479747473538,44.93629184411571],[-93.3046830351812,44.93641842352649],[-93.30458647680736,44.93653285111002],[-93.30450779961386,44.93663512686632],[-93.30442769192592,44.93674803500782],[-93.30434615374358,44.93687157553455],[-93.3042796357527,44.93698397696311],[-93.30422813795332,44.93708523929349],[-93.30417163342344,44.9372032096317],[-93.30411012216305,44.93733788797774],[-93.30406863782466,44.937434593007],[-93.30404718040826,44.93749332471946],[-93.3040278687335,44.93755560051562],[-93.30401070280035,44.93762142039545],[-93.30399788385921,44.93769855121819],[-93.29978081406362,44.93768320809427],[-93.29704183212897,44.9376753979909],[-93.2952654933919,44.93767051667613],[-93.29445179785242,44.93766856414996],[-93.29393737677405,44.93767051667594],[-93.29372223015685,44.93767637425405],[-93.29357248492228,44.93768082184764]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000114,"geom:area_square_m":993969.095016,"geom:bbox":"-93.3103297244,44.929525607,-93.2935514701,44.9376985512","geom:latitude":44.933377,"geom:longitude":-93.300699,"iso:country":"US","lbl:latitude":44.933602,"lbl:longitude":-93.300696,"lbl:max_zoom":18,"mps:latitude":44.933602,"mps:longitude":-93.300696,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Lakewood Cemetery"],"reversegeo:latitude":44.933602,"reversegeo:longitude":-93.300696,"src:geom":"mz","wof:belongsto":[85872581,102191575,1108799985,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ec3137bad76006f451750287b94a3ff9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799985,"microhood_id":1108800119,"neighbourhood_id":85872581,"region_id":85688727}],"wof:id":1108800119,"wof:lastmodified":1566623869,"wof:name":"Lakewood Cemetery","wof:parent_id":85872581,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800121.geojson b/fixtures/microhoods/1108800121.geojson new file mode 100644 index 0000000..99e9262 --- /dev/null +++ b/fixtures/microhoods/1108800121.geojson @@ -0,0 +1 @@ +{"id":1108800121,"type":"Feature","bbox":[-93.31259686464882,44.95104881860833,-93.30129892178736,44.9630909451926],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.31210148343442,44.95461795940088],[-93.3121497878929,44.95483643598845],[-93.31218965461,44.95505306571577],[-93.31220389272323,44.95519009590569],[-93.31221101177985,44.95530294412303],[-93.31221101177985,44.95539161036778],[-93.31221243559118,44.95551151099661],[-93.31221528321385,44.95566264600951],[-93.31222240227046,44.95587121136053],[-93.31223379276106,44.95613720704967],[-93.31224233562901,44.95630748437186],[-93.3122480308743,44.95638204332709],[-93.31226796423286,44.95644854178701],[-93.31230213570464,44.95650697975161],[-93.31235196910102,44.95660672706668],[-93.31241746442194,44.95674778373222],[-93.3124786883089,44.95687171185772],[-93.3125356407619,44.95697851144318],[-93.31257265985633,44.95707221283466],[-93.3125897455922,44.95715281603213],[-93.31259686464882,44.9572283814369],[-93.31259401702619,44.95729890904894],[-93.31258405034691,44.95736742150696],[-93.31256696461101,44.95743391881093],[-93.31252140264863,44.95750444616292],[-93.31244736445974,44.95757900356291],[-93.31236620721424,44.95765356086601],[-93.31227793091212,44.95772811807224],[-93.31217114506276,44.95778856981224],[-93.31204584966618,44.95783491608603],[-93.31191628283564,44.95787521716961],[-93.31178244457112,44.95790947306298],[-93.3116315205707,44.95791954832821],[-93.31146351083439,44.95790544296531],[-93.31129550109806,44.95789335265212],[-93.31112749136176,44.95788327738866],[-93.31097514355002,44.95788126233617],[-93.31083845766285,44.95788730749468],[-93.31071458607761,44.95790443543535],[-93.31060352879429,44.95793264615819],[-93.31050386200155,44.95797596972415],[-93.31041558569943,44.95803440613322],[-93.31034866656717,44.95810090265024],[-93.31030310460476,44.95817545927522],[-93.31027747600092,44.95824094813817],[-93.31027178075561,44.95829736923908],[-93.31027605218961,44.95836285793185],[-93.31029029030285,44.95843741421644],[-93.31030168079346,44.95852406056025],[-93.31031022366139,44.95862279696328],[-93.3103159189067,44.95870339802086],[-93.31031876652932,44.958765863733],[-93.31031307128403,44.958839411963],[-93.31029883317079,44.95892404271087],[-93.31027747600092,44.95900162080106],[-93.31024899977443,44.95907214623357],[-93.31020628543469,44.95914468658418],[-93.31014933298171,44.95921924185289],[-93.31005963286825,44.95930991701093],[-93.30993718509433,44.95941671205831],[-93.30983467067894,44.95949731201763],[-93.3097520896221,44.95955171688892],[-93.3096481513954,44.95960108423397],[-93.30952285599884,44.95964541405281],[-93.30940610347021,44.9596766464153],[-93.30929789380953,44.95969478132144],[-93.30918256509223,44.95970384877451],[-93.30906011731831,44.95970384877451],[-93.30894051716703,44.9596937738263],[-93.30882376463842,44.95967362392987],[-93.3087198264117,44.95964239156739],[-93.30862870248694,44.95960007673883],[-93.30853330712819,44.95954869439288],[-93.30843364033544,44.95948824452952],[-93.30832827829741,44.9594026070577],[-93.30821722101409,44.95929178197741],[-93.3080278541079,44.9590963258817],[-93.30776017757886,44.95881623877055],[-93.30751385821969,44.95856133832878],[-93.30728889603039,44.95833162455637],[-93.3071280053507,44.95815329373325],[-93.30703118618061,44.9580263458594],[-93.30694718131247,44.9578893224062],[-93.30687599074622,44.95774222337366],[-93.30683185259517,44.95762031232611],[-93.30681476685928,44.95752358926357],[-93.30681334304795,44.9573996625133],[-93.30682758116119,44.95724853207528],[-93.30682900497251,44.95712762753381],[-93.30681761448191,44.95703694888888],[-93.30679056206675,44.95696037572758],[-93.30674784772701,44.9568979080499],[-93.30669801433064,44.95684450821967],[-93.30664106187766,44.95680017623688],[-93.3065684475001,44.95676088195594],[-93.30648017119796,44.95672662537686],[-93.30638762346186,44.95670445935122],[-93.30629080429179,44.956694383879],[-93.30621249466893,44.95668934614289],[-93.30615269459328,44.95668934614289],[-93.30606868972512,44.95670546689221],[-93.30596048006447,44.95673770839085],[-93.30583660847921,44.95678607058447],[-93.30569707496937,44.95685055347307],[-93.3055717795728,44.95692108153835],[-93.30546072228947,44.95699765478032],[-93.30536247930807,44.9570752354587],[-93.3052770506286,44.95715382357348],[-93.30518877432647,44.95724550953997],[-93.30509765040169,44.95735029335816],[-93.30500367885426,44.95749940828903],[-93.30490685968418,44.95769285433259],[-93.3048043452688,44.95793466066424],[-93.30469613560811,44.95822482728397],[-93.30459646881538,44.95849181974052],[-93.3045053448906,44.95873563803389],[-93.30443984956966,44.95894016270754],[-93.30439998285259,44.95910539376148],[-93.30437435424874,44.95926256435556],[-93.30436296375812,44.95941167448976],[-93.30435442089018,44.95955876925023],[-93.30434872564487,44.95970384863695],[-93.30435157326752,44.95985900253427],[-93.30436296375812,44.9600242309422],[-93.30437720187136,44.96018845139268],[-93.30439428760727,44.96035166388574],[-93.30441706858846,44.96048364412676],[-93.30444554481495,44.96058439211576],[-93.3044825639094,44.96069924456506],[-93.30452812587178,44.96082820147468],[-93.30458223070212,44.96095010580928],[-93.30464487840041,44.96106495756886],[-93.3047189165893,44.96121607781156],[-93.30480434526878,44.96140346653739],[-93.30487268821236,44.96156768313534],[-93.30492394542004,44.96170872760544],[-93.3049623883258,44.96185279408768],[-93.30498801692964,44.96199988258208],[-93.30500652647686,44.96214294090803],[-93.30501791696747,44.96228196906554],[-93.30502218840144,44.96239681823155],[-93.3050193407788,44.96248748840604],[-93.30500652647687,44.96257211378632],[-93.30498374549568,44.96265069437239],[-93.30494530258991,44.9627262525327],[-93.30489119775956,44.96279878826724],[-93.30482427862731,44.96286527928718],[-93.30474454519313,44.96292572559251],[-93.30465342126836,44.96297911978576],[-93.30455090685297,44.96302546186693],[-93.3044426971923,44.9630597146963],[-93.30432879228633,44.96308187827387],[-93.30420492070108,44.9630909451926],[-93.30407108243655,44.9630869154525],[-93.30395575371925,44.96307583366372],[-93.30385893454917,44.96305769982625],[-93.30376638681307,44.96302344699207],[-93.30373147670396,44.96300352674088],[-93.30367811051094,44.96297307516118],[-93.30359125802013,44.96292068840737],[-93.30350582934066,44.96286628673066],[-93.30335063390626,44.96273632670406],[-93.30312567171697,44.96253080832759],[-93.30276971888578,44.9621983494682],[-93.30228277541272,44.96173895012591],[-93.30193963688347,44.96139943659299],[-93.30174030329803,44.96117980886946],[-93.30159507454292,44.96102264381705],[-93.30151619672307,44.96094066844793],[-93.30150395061814,44.96092794143576],[-93.30143703148588,44.9608443211423],[-93.30139431714613,44.96077178293669],[-93.30136156948566,44.96068816236718],[-93.30133878850447,44.9605934594338],[-93.30133309325916,44.96049271144481],[-93.30134448374977,44.96038591840019],[-93.30136441710832,44.96030128985761],[-93.3013928933348,44.96023882581707],[-93.30144699816515,44.96015721942724],[-93.30152673159934,44.96005647068816],[-93.3015993459769,44.95996781167943],[-93.30166484129782,44.95989124240109],[-93.30175311759996,44.95979351561966],[-93.30186417488328,44.95967463133514],[-93.30197523216661,44.95955272430338],[-93.30208628944993,44.95942779452437],[-93.30224433250697,44.95924946661961],[-93.30244936133772,44.95901774058912],[-93.30268286639496,44.9587426903398],[-93.3029448476787,44.95842431587165],[-93.3031470288868,44.95816840641741],[-93.30328941001929,44.95797496197709],[-93.30338480537804,44.95783894616869],[-93.30343321496306,44.95776035899223],[-93.30347023405751,44.95768680936748],[-93.30349586266136,44.95761829729442],[-93.3035214912652,44.95754373993371],[-93.30354711986905,44.95746313728536],[-93.30357132466156,44.95736842899395],[-93.30359410564277,44.95725961505947],[-93.30360834375603,44.95714979337645],[-93.3036140390013,44.95703896394489],[-93.30361973424661,44.95694223993807],[-93.30362542949189,44.95685962135602],[-93.30362115805792,44.95678103284658],[-93.30360691994468,44.95670647440977],[-93.30357132466158,44.95662687812334],[-93.30351437220858,44.9565422439873],[-93.30345030069897,44.95646768525986],[-93.30337911013274,44.95640320194102],[-93.30330649575518,44.95634980165323],[-93.30323245756628,44.95630748439648],[-93.30312709552827,44.95626113688412],[-93.3029904096411,44.95621075911613],[-93.3028522999426,44.9561654190931],[-93.30271276643279,44.95612511681503],[-93.30256041862104,44.95608582206769],[-93.30239525650738,44.95604753485108],[-93.30224433250696,44.95600622492756],[-93.30210764661979,44.95596189229713],[-93.30198519884587,44.95591252182098],[-93.30187698918519,44.95585811349912],[-93.30178301763777,44.9558107580746],[-93.30170328420357,44.95577045554744],[-93.30162497458072,44.95570294870302],[-93.30154808876918,44.95560823754136],[-93.30147405058031,44.95549841265733],[-93.30140286001406,44.95537347405094],[-93.30135017899505,44.95526868667815],[-93.30131600752327,44.95518405053893],[-93.30129892178736,44.95509236123033],[-93.30129892178736,44.95499361875236],[-93.301306040844,44.95491099739954],[-93.30132027895723,44.95484449717188],[-93.30135445042905,44.95476590586953],[-93.30140855525937,44.95467522349251],[-93.30147120295766,44.95456841957524],[-93.3015423935239,44.95444549411772],[-93.30162355076939,44.95432861394877],[-93.30171467469418,44.95421777906838],[-93.3018200367322,44.95408981483749],[-93.30193963688347,44.9539447212561],[-93.30202506556296,44.95382683253494],[-93.30207632277065,44.953736148674],[-93.30212757997833,44.95362128217184],[-93.30217883718603,44.95348223302842],[-93.30223151820505,44.95335426725177],[-93.30228562303537,44.95323738484187],[-93.30233688024308,44.95313360115873],[-93.30238528982811,44.95304291620238],[-93.3024251565452,44.95297540623827],[-93.30247870514283,44.95290355623492],[-93.3025003106117,44.95288301038187],[-93.30254352154945,44.95284191867577],[-93.30260766278518,44.9527855369621],[-93.30269273431888,44.95271386524086],[-93.3028149402522,44.95261543586231],[-93.30297428058516,44.95249024882648],[-93.30316670429232,44.95233925941736],[-93.3033922113737,44.95216246763498],[-93.3035049649144,44.95207407174379],[-93.30377350586966,44.95187911291832],[-93.3040753538705,44.95164937239545],[-93.30434872564484,44.95147102080553],[-93.30459362119268,44.95134405814854],[-93.30481288813668,44.95124027106888],[-93.30500652647683,44.95115965956654],[-93.30516884096784,44.95110323148321],[-93.30529245229025,44.95107280331261],[-93.30529983160972,44.95107098681888],[-93.30539807459112,44.95105284919391],[-93.30546356991206,44.95104881860833],[-93.30557605100671,44.95104982625462],[-93.30573551787509,44.95105587213279],[-93.30589925617743,44.95106695623966],[-93.30606726591373,44.95108307857523],[-93.30626944712184,44.95110726206499],[-93.30650579980173,44.95113950670894],[-93.3067521191609,44.95117275897817],[-93.30700840519933,44.95120701887268],[-93.3072661150491,44.95124127874674],[-93.3075252487102,44.95127553860033],[-93.3077672966354,44.9513108060744],[-93.3079922588247,44.95134708116893],[-93.3082058305234,44.9513823486009],[-93.30840801173152,44.95141660837029],[-93.3087867455439,44.95148311251411],[-93.30961967516883,44.95163123529146],[-93.31080001475712,44.95189019701167],[-93.31124139626777,44.95199297554393],[-93.3113410630605,44.95202320443167],[-93.31143218698527,44.95206048669773],[-93.3115147680421,44.95210482234214],[-93.31158880623099,44.95214815032631],[-93.31165430155194,44.95219047065024],[-93.3117155254389,44.95225092817307],[-93.31177247789189,44.9523295228948],[-93.31181376842031,44.95239602605782],[-93.31183939702413,44.95245043766215],[-93.31186217800533,44.95251794826158],[-93.31188211136387,44.95259855785612],[-93.3118949256658,44.95267614449006],[-93.31190062091109,44.9527507081634],[-93.3118949256658,44.95282224889971],[-93.3118778399299,44.95289076669897],[-93.31186075419402,44.95297742140453],[-93.3118436684581,44.95308221301638],[-93.31182943034486,44.95318398161816],[-93.31181803985427,44.95328272720988],[-93.31181376842031,44.95337341180641],[-93.31181661604293,44.95345603540775],[-93.31182231128824,44.95353362088655],[-93.31183085415617,44.95360616824278],[-93.31184793989208,44.95368476109613],[-93.31187356849591,44.95376939944659],[-93.31189919709976,44.95386713640062],[-93.31192482570361,44.95397797195821],[-93.31195472574143,44.95408175416903],[-93.31198889721323,44.95417848303308],[-93.31201737343972,44.95426815862167],[-93.3120401544209,44.95435078093482],[-93.31208429257197,44.95454020672376],[-93.31210148343442,44.95461795940088]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000075,"geom:area_square_m":660146.971482,"geom:bbox":"-93.3125968646,44.9510488186,-93.3012989218,44.9630909452","geom:latitude":44.955794,"geom:longitude":-93.306758,"iso:country":"US","lbl:latitude":44.954474,"lbl:longitude":-93.308556,"lbl:max_zoom":18,"mps:latitude":44.954474,"mps:longitude":-93.308556,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":44.954474,"reversegeo:longitude":-93.308556,"src:geom":"mz","wof:belongsto":[1108800221,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2040828749dff95130f2566d0feb6ff3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800121,"neighbourhood_id":1108800221,"region_id":85688727}],"wof:id":1108800121,"wof:lastmodified":1566623863,"wof:name":"Lake of the Isles","wof:parent_id":1108800221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800215.geojson b/fixtures/microhoods/1108800215.geojson new file mode 100644 index 0000000..c2dd956 --- /dev/null +++ b/fixtures/microhoods/1108800215.geojson @@ -0,0 +1 @@ +{"id":1108800215,"type":"Feature","bbox":[-93.32731248941094,44.95328340029408,-93.30946466368087,44.9684105448165],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.32701853625555,44.95933022650016],[-93.32704690325289,44.95942920577144],[-93.32706903543271,44.95951747618607],[-93.32708412555533,44.95959293307103],[-93.32709217362073,44.95965557642632],[-93.32709016160437,44.95971821971322],[-93.32707808950629,44.95978086293172],[-93.32705897535098,44.95984706534351],[-93.32703281913844,44.95991682694859],[-93.32700968095043,44.9599780462601],[-93.32698956078693,44.96003072327805],[-93.32695535650899,44.96008838319421],[-93.32690706811663,44.96015102600857],[-93.3268527436752,44.96021224505881],[-93.32679238318472,44.96027204034491],[-93.32672397462886,44.9603254289495],[-93.3266475180076,44.96037241087258],[-93.32655898928824,44.96042152829374],[-93.3264583884708,44.96047278121298],[-93.32629742716287,44.9605311525266],[-93.32607610536446,44.96059664223459],[-93.32587691574591,44.96065074238788],[-93.32569985830722,44.96069345298648],[-93.32553688498294,44.96074043460294],[-93.32538799577313,44.9607916872373],[-93.325266268784,44.96083938062425],[-93.32517170401559,44.96088351476381],[-93.32508015727171,44.9609404619714],[-93.32499162855234,44.96101022224704],[-93.32491617793926,44.96108282978538],[-93.32485380543245,44.96115828458642],[-93.32480954107277,44.96123729846246],[-93.32478338486024,44.96131987141352],[-93.32477030675396,44.9613974614159],[-93.32477030675396,44.96147006846958],[-93.32477332477848,44.96155264106412],[-93.32477936082753,44.96164517919951],[-93.3247843908684,44.96176974942636],[-93.32478841490109,44.96192635174465],[-93.32478841490109,44.96204593879742],[-93.3247843908684,44.96212851058466],[-93.32477734881118,44.96219542214558],[-93.32476728872942,44.96224667348019],[-93.32475320461498,44.9622993484133],[-93.32473509646786,44.96235344694493],[-93.32471195827985,44.96240683360475],[-93.32468379005095,44.96245950839278],[-93.32466065186294,44.96250435311582],[-93.32464254371578,44.96254136777386],[-93.32462141754412,44.96257624695096],[-93.32459727334793,44.9626089906471],[-93.32455200298008,44.96266024158745],[-93.32448560644058,44.96272999977199],[-93.32441417986018,44.96280758784133],[-93.32433772323893,44.96289300579545],[-93.32426327863402,44.96297130548958],[-93.32419084604544,44.96304248692373],[-93.32413450958768,44.96310726196288],[-93.3240942692607,44.96316563060707],[-93.32406308300729,44.9632247110024],[-93.32404095082745,44.96328450314891],[-93.32402384868848,44.9633457188511],[-93.32401177659037,44.963408358109],[-93.32399769247593,44.96350943484752],[-93.32398159634516,44.96364894906667],[-93.32396650622255,44.96378348033134],[-93.32395242210808,44.96391302864154],[-93.32394236202634,44.96403332326815],[-93.32393632597729,44.96414436421119],[-93.32393129593642,44.96423832180633],[-93.32392727190373,44.96431519605355],[-93.32393129593642,44.96439349378914],[-93.32394336803452,44.96447321501309],[-93.32396047017349,44.96455151253882],[-93.32398260235331,44.96462838636636],[-93.32400976457403,44.96470098933921],[-93.3240419568356,44.9647693214574],[-93.32409426926068,44.96486043076742],[-93.32416670184925,44.96497431726931],[-93.32422002028251,44.96505830848524],[-93.32425422456043,44.96511240441523],[-93.32428339879749,44.96518144780373],[-93.3243075429937,44.96526543865074],[-93.32432565114082,44.9653280758475],[-93.32433772323891,44.96536935939401],[-93.32434074126344,44.96541989609655],[-93.3243347052144,44.96547968595511],[-93.3243186090836,44.96554872891184],[-93.32429245287108,44.96562702496673],[-93.32426227262583,44.9656996266784],[-93.32422806834788,44.96576653404686],[-93.32418581600454,44.96583344133728],[-93.32413551559583,44.96590034854965],[-93.32411036539146,44.96593380215585],[-93.3240811911544,44.96593878460116],[-93.32402284268028,44.96594874949177],[-93.32388099552767,44.96596654393136],[-93.32365564969659,44.96599216791991],[-93.32338402748947,44.96601708012049],[-93.32306612890633,44.96604128053309],[-93.32271302003707,44.96606334560751],[-93.32232470088172,44.96608327534374],[-93.32182169679446,44.96610320507304],[-93.32088900536975,44.96613169017456],[-93.32054610703032,44.96614547477154],[-93.31986031035147,44.9661730439655],[-93.31936349741652,44.96619578854342],[-93.31905566822545,44.96621370850529],[-93.31874491660535,44.96623714228975],[-93.31843124255622,44.96626608989681],[-93.31814094793933,44.96629710517219],[-93.31787403275464,44.96633018811591],[-93.31759153128183,44.96636809562735],[-93.31729344352085,44.9664108277065],[-93.31701094204803,44.96645700588113],[-93.31674402686338,44.96650663015122],[-93.31652289640016,44.96654798368577],[-93.3163475506584,44.96658106648481],[-93.31610109247694,44.96663689363169],[-93.31578352185579,44.96671546512644],[-93.31503635416732,44.96690568984948],[-93.31385958941158,44.96720756780083],[-93.31271691966116,44.96750875495526],[-93.3116083449161,44.9678092513128],[-93.3101773288348,44.96820830150006],[-93.30946466368087,44.9684105448165],[-93.3103200397229,44.96777743408606],[-93.31083326599051,44.96736906130761],[-93.31112044523167,44.96709949246858],[-93.31137492584635,44.96688423913498],[-93.31159670783458,44.9667233013068],[-93.31182701989928,44.96652715753766],[-93.31206586204044,44.96629580782752],[-93.3122663188375,44.96609563944517],[-93.31242839029044,44.96592665239061],[-93.31258050998748,44.96573352359675],[-93.31272267792863,44.9655162530636],[-93.31294445991685,44.96519537429999],[-93.31324585595213,44.9647708873059],[-93.31357995061387,44.96429509537928],[-93.31394674390208,44.96376799852015],[-93.31421259795206,44.96337870962954],[-93.31437751276383,44.96312722870744],[-93.3144727652844,44.96293308497262],[-93.3144983555138,44.96279627842507],[-93.31451257230792,44.96263029932854],[-93.31451541566675,44.962435147683],[-93.31454100589616,44.96223395969287],[-93.31458934299616,44.96202673535815],[-93.31462346330204,44.96180341499755],[-93.3146433668138,44.96156399861107],[-93.31464194513438,44.96128635455027],[-93.31461919826381,44.96097048281513],[-93.31460782482851,44.96071496786726],[-93.31460782482851,44.96051980970667],[-93.31462915001968,44.96028642358501],[-93.31467180040204,44.9600148095023],[-93.31472013750204,44.95971502631975],[-93.31480340293933,44.95920400570143],[-93.31482810496193,44.95904766132573],[-93.31487750900715,44.95873497257432],[-93.3149200513794,44.95845044396093],[-93.31495573207869,44.95819407548555],[-93.31499278511258,44.95797460783486],[-93.31503121048107,44.95779204100886],[-93.31507375285331,44.95761821358398],[-93.31512041222932,44.95745312556024],[-93.31516295460156,44.95730454599689],[-93.31520137997003,44.95717247489394],[-93.3153001880604,44.95697922293789],[-93.31545937887269,44.95672479012875],[-93.31560484633907,44.95651891263476],[-93.31573659045958,44.95636159045594],[-93.31589029193348,44.95620523897833],[-93.31606595076082,44.95604985820192],[-93.31630061997545,44.95585271802111],[-93.3165942995774,44.95561381843592],[-93.31674113937838,44.95549436864332],[-93.31769806928722,44.95465528055769],[-93.31809745453249,44.95430501775753],[-93.31825640382407,44.9541626331206],[-93.31843044323826,44.95400814534108],[-93.31861957277505,44.95384155441894],[-93.3187714800094,44.95370059258617],[-93.31888616494129,44.95358525984274],[-93.31894350740724,44.95352759347102],[-93.31903404814294,44.95350623549675],[-93.31921512961432,44.95346351954821],[-93.31937810293859,44.95343077064132],[-93.3195229681157,44.9534079887761],[-93.31970807361982,44.95337381595113],[-93.31993341945092,44.95332825216642],[-93.32011953096321,44.95329977479533],[-93.32026640815667,44.95328838383785],[-93.32043239950548,44.95328340029408],[-93.32061750500958,44.953284824164],[-93.32081870664449,44.95329407931581],[-93.32103600441017,44.95331116574949],[-93.32131466867452,44.95333893118562],[-93.32165469943749,44.95337737562419],[-93.32220498590895,44.95344002572557],[-93.32296552808887,44.95352688148976],[-93.32346249612708,44.9535852599238],[-93.32369589002357,44.95361516102769],[-93.32388803758491,44.95364577404591],[-93.32403893881109,44.95367709897847],[-93.3241687138656,44.9537077119648],[-93.32427736274846,44.95373761300488],[-93.3243860116313,44.95377748102371],[-93.32449466051413,44.95382731602128],[-93.32459727334793,44.95387715097557],[-93.32469385013269,44.95392698588659],[-93.32478942090927,44.95398180423158],[-93.32488398567767,44.95404160601056],[-93.32496346032346,44.95409357656422],[-93.32502784484663,44.95413771589256],[-93.32511234953328,44.95420677247061],[-93.32521697438344,44.95430074629833],[-93.32530147907009,44.95437549813442],[-93.32536586359326,44.95443102797886],[-93.32543024811643,44.9544815743356],[-93.3254946326396,44.95452713720462],[-93.32557611930174,44.95457697154563],[-93.32567470810284,44.95463107735863],[-93.32575217073227,44.95467165669925],[-93.32580850719006,44.9546987095675],[-93.32587691574592,44.95472576242298],[-93.32595739639987,44.95475281526572],[-93.32604190108654,44.9547798680957],[-93.32613042980589,44.95480692091292],[-93.32622298255795,44.95484038095309],[-93.32631955934269,44.95488024821619],[-93.32641211209474,44.95491869162367],[-93.32650064081412,44.95495571117554],[-93.32658212747626,44.95499629026848],[-93.32665657208116,44.95504042890249],[-93.32672699265339,44.95508385559074],[-93.32679338919289,44.95512657033321],[-93.32686481577328,44.95518352325252],[-93.32694127239455,44.95525471434866],[-93.32701269897494,44.95532732917304],[-93.32707909551445,44.95540136772564],[-93.32713341995587,44.95547327046336],[-93.3271756722992,44.95554303738617],[-93.32721289460166,44.95561921136575],[-93.32724508686324,44.9557017924021],[-93.32727224908396,44.9557829495147],[-93.32729438126381,44.95586268270356],[-93.32730745937008,44.95593956817934],[-93.32731148340278,44.95601360594203],[-93.32731248941094,44.95608052461934],[-93.3273104773946,44.95614032421128],[-93.32730041731286,44.95620368322884],[-93.32728230916571,44.95627060167205],[-93.32726520702674,44.95633467245356],[-93.32724911089596,44.95639589557338],[-93.32722094266707,44.95646922082867],[-93.32718070234009,44.9565546482194],[-93.32712335987414,44.95667139868547],[-93.32704891526922,44.95681947222688],[-93.3269905667951,44.95694974821227],[-93.32694831445177,44.95706222664165],[-93.32691008614114,44.95718965441952],[-93.32687588186322,44.95733203154587],[-93.32684570161797,44.95747156079734],[-93.32681954540544,44.95760824217392],[-93.32679841923377,44.95773709257487],[-93.32678232310298,44.9578581120002],[-93.3267732690294,44.95798980928335],[-93.32677125701306,44.95813218442432],[-93.32677628705395,44.95826388115195],[-93.32678835915203,44.95838489946625],[-93.32680445528283,44.95850022258071],[-93.32682457544632,44.95860985049534],[-93.32684268359345,44.95871307140963],[-93.32685877972425,44.95880988532357],[-93.32689097198583,44.95893232613406],[-93.32693926037821,44.95908039384109],[-93.32698151272155,44.959212088412],[-93.32701772901582,44.95932740984675],[-93.32701853625555,44.95933022650016]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00014,"geom:area_square_m":1228682.665422,"geom:bbox":"-93.3273124894,44.9532834003,-93.3094646637,44.9684105448","geom:latitude":44.960307,"geom:longitude":-93.319983,"iso:country":"US","lbl:latitude":44.960165,"lbl:longitude":-93.319847,"lbl:max_zoom":18,"mps:latitude":44.960165,"mps:longitude":-93.319847,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Cedar Lake"],"name:deu_x_preferred":["Cedar Lake"],"name:fin_x_preferred":["Cedar Lake"],"name:fra_x_preferred":["Cedar Lake"],"name:ita_x_preferred":["Cedar Lake"],"name:pol_x_preferred":["Cedar Lake"],"name:swe_x_preferred":["Cedar Lake"],"name:ukr_x_preferred":["Сідар-Лейк"],"name:vol_x_preferred":["Cedar Lake"],"reversegeo:latitude":44.960165,"reversegeo:longitude":-93.319847,"src:geom":"mz","wof:belongsto":[1108800221,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6eed8741de3e7a31df797333c3216b3a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800215,"neighbourhood_id":1108800221,"region_id":85688727}],"wof:id":1108800215,"wof:lastmodified":1566623872,"wof:name":"Cedar Lake","wof:parent_id":1108800221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800217.geojson b/fixtures/microhoods/1108800217.geojson new file mode 100644 index 0000000..e5f1c5a --- /dev/null +++ b/fixtures/microhoods/1108800217.geojson @@ -0,0 +1 @@ +{"id":1108800217,"type":"Feature","bbox":[-93.24606411527031,44.91657878471873,-93.23464788327729,44.92511348865212],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.23467896933757,44.92509766825827],[-93.23465592004743,44.92419396103325],[-93.23464788327729,44.92383475794178],[-93.23464788327729,44.92374655661116],[-93.23465792923997,44.92366902470609],[-93.23467802116535,44.9236021622266],[-93.23470012228324,44.92355165968547],[-93.23472423259368,44.92351751708273],[-93.23475939346307,44.92350115708598],[-93.23480560489142,44.92350257969523],[-93.23493821159884,44.92351182665266],[-93.23515721358534,44.92352889795827],[-93.23535110066513,44.92354312404346],[-93.2355198728382,44.92355450490822],[-93.23570270935903,44.92357015359185],[-93.2358996102276,44.92359007009433],[-93.23609450190366,44.92360073964898],[-93.23628738438717,44.92360216225577],[-93.23649031283337,44.92359789443465],[-93.23670328724225,44.92358793618563],[-93.2369393673653,44.92355521619295],[-93.23719855320252,44.92349973445661],[-93.2374557298472,44.92344140744092],[-93.23771089729937,44.92338023514586],[-93.2379540095963,44.92331266101199],[-93.238185066738,44.9232386850393],[-93.23837895381779,44.92316044110965],[-93.23853567083563,44.92307792922306],[-93.23866626835053,44.92298901540462],[-93.23877074636245,44.92289369965437],[-93.23888225654824,44.92277348769557],[-93.2390007989079,44.92262837952822],[-93.2390952309571,44.92247615779324],[-93.2391655526959,44.92231682249064],[-93.23921879629812,44.92217598116429],[-93.23925496176378,44.92205363381422],[-93.23927203990033,44.92195404862866],[-93.23927003070779,44.92187722560764],[-93.23926098934135,44.92180182513807],[-93.23924491580107,44.92172784721994],[-93.23922884226077,44.92165315787766],[-93.23921276872048,44.92157775711122],[-93.23920071356527,44.92147959364263],[-93.23919267679511,44.9213586674719],[-93.23916555269588,44.92120573094014],[-93.23911934126754,44.92102078404734],[-93.23907714822428,44.92083725924125],[-93.23903897356607,44.9206551565219],[-93.23900783108175,44.92048230071403],[-93.23898372077132,44.92031869181766],[-93.23893148176536,44.92009888576621],[-93.2388511140639,44.91982288255969],[-93.23878380611393,44.91964362248769],[-93.23872955791543,44.91956110555023],[-93.23865220400278,44.91947645442617],[-93.23855174437595,44.91938966911553],[-93.23844726636406,44.91930217231556],[-93.23833876996707,44.91921396402626],[-93.23819109431564,44.91911793063449],[-93.23800423940973,44.91901407214024],[-93.23777619605683,44.91888531571743],[-93.23750696425691,44.91873166136607],[-93.23731207258086,44.91861713181498],[-93.23719152102866,44.91854172706417],[-93.23708302463169,44.91846063126629],[-93.23698658338994,44.91837384442132],[-93.23692530301756,44.9182955938924],[-93.2368991835146,44.91822587967952],[-93.23687105481908,44.91813766969533],[-93.23684091693103,44.91803096393982],[-93.23678064115492,44.91794844473846],[-93.23669022749078,44.91789011209124],[-93.2365596299759,44.91784814102149],[-93.23638884861029,44.9178225315292],[-93.23627030625065,44.91779549927395],[-93.23620400289694,44.91776704425574],[-93.2360914881149,44.91763259373211],[-93.2359327619045,44.91739214770306],[-93.23583933445154,44.91724275800672],[-93.23581120575604,44.91718442464311],[-93.23579814600456,44.91714529859297],[-93.23580015519707,44.91712537985633],[-93.23589056886121,44.91706206661154],[-93.23606938699697,44.91695535885859],[-93.23644008301997,44.91675474725488],[-93.23677963655861,44.91657878471873],[-93.2373030312144,44.91658757135882],[-93.2384382249976,44.9166181611131],[-93.24020832362234,44.91667080393823],[-93.24125410833764,44.91670068229474],[-93.2415755791435,44.91670779618262],[-93.24180261790013,44.91671419868108],[-93.24193522460754,44.91671988979013],[-93.24208490945153,44.91673625172093],[-93.24225167243208,44.91676328447349],[-93.24242144920142,44.91679600830998],[-93.24259423975957,44.9168344232304],[-93.24296694497511,44.91691338706923],[-93.24353956484805,44.91703289982649],[-93.24438041192462,44.91721003408233],[-93.24548948620483,44.91744478983675],[-93.24604402334494,44.91756216771397],[-93.24604402334494,44.91764326459617],[-93.24604402334495,44.91780545836058],[-93.24604603253748,44.918282073826],[-93.24605005092255,44.91907311099241],[-93.24605306471135,44.92004623786861],[-93.24605507390388,44.92120145445458],[-93.24605808769269,44.92207639392113],[-93.24606210607777,44.92267105626825],[-93.24606411527031,44.92305374453629],[-93.24606411527031,44.92322445872526],[-93.24606411527031,44.92330981581974],[-93.24586319601666,44.92330768189856],[-93.24546135750933,44.9233034140562],[-93.24518408893928,44.92329985752072],[-93.2450313903065,44.92329701229214],[-93.24493695825728,44.92329843490629],[-93.24490079279161,44.92330412536319],[-93.24486563192222,44.92331977411268],[-93.24483147564911,44.9233453811548],[-93.24481238832,44.9233702768797],[-93.24480836993493,44.92339446128739],[-93.24480435154986,44.92342718134489],[-93.24480033316479,44.9234684370522],[-93.24479631477972,44.92392153170545],[-93.24479077708062,44.92511348865212],[-93.2408144004317,44.92510286451735],[-93.23467896933757,44.92509766825827]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000068,"geom:area_square_m":599129.520173,"geom:bbox":"-93.2460641153,44.9165787847,-93.2346478833,44.9251134887","geom:latitude":44.920964,"geom:longitude":-93.241372,"iso:country":"US","lbl:latitude":44.920648,"lbl:longitude":-93.242623,"lbl:max_zoom":18,"mps:latitude":44.920648,"mps:longitude":-93.242623,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Hiawatha Golf Course"],"reversegeo:latitude":44.920648,"reversegeo:longitude":-93.242623,"src:geom":"mz","wof:belongsto":[85872557,102191575,1108799987,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"945170f1c662cc5e6e10f4e8820f1fd2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799987,"microhood_id":1108800217,"neighbourhood_id":85872557,"region_id":85688727}],"wof:id":1108800217,"wof:lastmodified":1566623872,"wof:name":"Hiawatha Golf Club","wof:parent_id":85872557,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800219.geojson b/fixtures/microhoods/1108800219.geojson new file mode 100644 index 0000000..16146f7 --- /dev/null +++ b/fixtures/microhoods/1108800219.geojson @@ -0,0 +1 @@ +{"id":1108800219,"type":"Feature","bbox":[-93.3267436050712,44.96576871155167,-93.32155962009318,44.96976262203282],"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.32411036539146,44.96593380215585],[-93.32471342376206,44.96584299136479],[-93.32500000421243,44.96580484769332],[-93.32519011203593,44.96578276449554],[-93.32539724444064,44.96577071911499],[-93.32562140142656,44.96576871155167],[-93.32582569640105,44.9657767418079],[-93.32601012936414,44.96579480988369],[-93.32617753774602,44.96582592709842],[-93.32632792154669,44.96587009345212],[-93.32645418719065,44.96592128622171],[-93.32655633467792,44.96597950540722],[-93.32663720143864,44.966063822686],[-93.32669678747288,44.96617423805806],[-93.3267322553504,44.96628465321758],[-93.3267436050712,44.96639506816457],[-93.32672799920509,44.96654462973711],[-93.32668543775206,44.96673333793521],[-93.32665138858964,44.96687888389205],[-93.32662585171784,44.96698126760764],[-93.3265761966893,44.96711978633047],[-93.32650242350407,44.96729444006058],[-93.32641162573762,44.96742894328666],[-93.32630380338996,44.96752329600872],[-93.32613355757788,44.96767285457681],[-93.32590088830135,44.96787761899093],[-93.32575617936108,44.96802316210547],[-93.32569943075706,44.96810948392042],[-93.32564268215303,44.96821688407753],[-93.32558593354901,44.9683453625768],[-93.32550222935805,44.96848488183088],[-93.3253915695802,44.96863544183975],[-93.32522416119832,44.96881209829239],[-93.3250000042124,44.96901485118877],[-93.3247673349359,44.9692266368147],[-93.32452615336877,44.96944745517017],[-93.32434881398119,44.96960905376913],[-93.32423531677314,44.9697114326116],[-93.32417856816912,44.96976262203282],[-93.32404662766476,44.96976262203282],[-93.32378274665601,44.96976262203282],[-93.32354298380399,44.9697576034702],[-93.32332733910867,44.96974756634494],[-93.32311595055866,44.96972949951125],[-93.32290881815396,44.96970340296914],[-93.32261372541302,44.96965020609728],[-93.32223067233582,44.96956990889568],[-93.32192139244387,44.96951068967012],[-93.32168588573717,44.96947254842059],[-93.3215681323838,44.96945347779583],[-93.3215652949536,44.96942738111032],[-93.32155962009318,44.9693751877393],[-93.32156103880828,44.96930291987847],[-93.32156955109889,44.96921057752782],[-93.3215837382499,44.96912224993214],[-93.3216036002613,44.96903793709144],[-93.32162913713312,44.96895061294032],[-93.32166034886534,44.9688602774788],[-93.32170432903345,44.96876391948117],[-93.32176107763749,44.96866153894744],[-93.32182208238682,44.96856417691059],[-93.32188734328145,44.96847183337061],[-93.3220121902103,44.96831525024346],[-93.3221966231734,44.96809442752917],[-93.32247327261803,44.96777122097656],[-93.32284213854423,44.96734563058563],[-93.32330595392938,44.96682213748408],[-93.32411036539146,44.96593380215585]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000013,"geom:area_square_m":110853.321281,"geom:bbox":"-93.3267436051,44.9657687116,-93.3215596201,44.969762622","geom:latitude":44.967783,"geom:longitude":-93.324244,"iso:country":"US","lbl:latitude":44.96778,"lbl:longitude":-93.324298,"lbl:max_zoom":18,"mps:latitude":44.96778,"mps:longitude":-93.324298,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":44.96778,"reversegeo:longitude":-93.324298,"src:geom":"mz","wof:belongsto":[1108800221,102191575,1108799977,404511883,85633793,85969169,102087709,85688727],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6a229a3c20013986509ccaf01ecda501","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799977,"microhood_id":1108800219,"neighbourhood_id":1108800221,"region_id":85688727}],"wof:id":1108800219,"wof:lastmodified":1566623872,"wof:name":"Brownie Lake","wof:parent_id":1108800221,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800229.geojson b/fixtures/microhoods/1108800229.geojson new file mode 100644 index 0000000..0fbf6d7 --- /dev/null +++ b/fixtures/microhoods/1108800229.geojson @@ -0,0 +1 @@ +{"id":1108800229,"type":"Feature","bbox":[-93.03555127941203,44.96304281055732,-93.01611886208073,44.97753807507841],"geometry":{"type":"Polygon","coordinates":[[[-93.03552957019036,44.96304966085955],[-93.03555127941203,44.96505419027213],[-93.03552855431057,44.96852712131409],[-93.035471741557,44.9726670305683],[-93.03546037900628,44.97753807507841],[-93.02528713166049,44.97751496032485],[-93.02529089611495,44.97702366087582],[-93.01611886208073,44.97706125186195],[-93.02028751676404,44.97562366413713],[-93.02020713368617,44.9723880342182],[-93.02019909537837,44.97031235827934],[-93.02024732522509,44.96621765398925],[-93.02024732522509,44.96304281055732],[-93.03552957019036,44.96304966085955]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000222,"geom:area_square_m":1937952.204294,"geom:bbox":"-93.0355512794,44.9630428106,-93.0161188621,44.9775380751","geom:latitude":44.970281,"geom:longitude":-93.027808,"iso:country":"US","lbl:latitude":44.970283,"lbl:longitude":-93.027808,"lbl:max_zoom":18,"mps:latitude":44.970283,"mps:longitude":-93.027808,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.970283,"reversegeo:longitude":-93.027808,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"22373afe02fd7ef96f24f5f5a001b322","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800229,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800229,"wof:lastmodified":1566623863,"wof:name":"Hazel Park","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781021],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800231.geojson b/fixtures/microhoods/1108800231.geojson new file mode 100644 index 0000000..6c7c123 --- /dev/null +++ b/fixtures/microhoods/1108800231.geojson @@ -0,0 +1 @@ +{"id":1108800231,"type":"Feature","bbox":[-93.02028751676404,44.97028961072962,-93.00509955709003,44.98080611823618],"geometry":{"type":"Polygon","coordinates":[[[-93.02019909537837,44.97031235827934],[-93.02020713368617,44.9723880342182],[-93.02028751676404,44.97562366413713],[-93.01578606440371,44.97717601930892],[-93.01135695681346,44.97868284402402],[-93.00509955709003,44.98080611823618],[-93.00510996177073,44.97752372446602],[-93.00512123529705,44.97390037338204],[-93.00513240969079,44.97030843010418],[-93.00896957940091,44.97028961072962],[-93.01352729991575,44.97029529761789],[-93.02019909537837,44.97031235827934]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00012,"geom:area_square_m":1048644.192642,"geom:bbox":"-93.0202875168,44.9702896107,-93.0050995571,44.9808061182","geom:latitude":44.974409,"geom:longitude":-93.011853,"iso:country":"US","lbl:latitude":44.974404,"lbl:longitude":-93.011853,"lbl:max_zoom":18,"mps:latitude":44.974404,"mps:longitude":-93.011853,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:epo_x_preferred":["Parko Lincoln"],"name:eus_x_preferred":["Lincoln Park"],"name:fas_x_preferred":["پارک لینکلن"],"name:jpn_x_preferred":["リンカーン・パーク"],"name:kor_x_preferred":["링컨 공원"],"name:nld_x_preferred":["Lincoln Park"],"name:nor_x_preferred":["Lincoln Park"],"name:por_x_preferred":["Lincoln Park"],"name:spa_x_preferred":["Lincoln Park"],"name:zho_x_preferred":["林肯公园"],"reversegeo:latitude":44.974404,"reversegeo:longitude":-93.011853,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"a26a4db07e532dda81f216a331f64d1a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800231,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800231,"wof:lastmodified":1566623862,"wof:name":"Lincoln Park","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781025],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800233.geojson b/fixtures/microhoods/1108800233.geojson new file mode 100644 index 0000000..026421d --- /dev/null +++ b/fixtures/microhoods/1108800233.geojson @@ -0,0 +1 @@ +{"id":1108800233,"type":"Feature","bbox":[-93.02024732522509,44.96303599843238,-93.0050502494359,44.97031235827934],"geometry":{"type":"Polygon","coordinates":[[[-93.02024732522509,44.96304281055732],[-93.02024732522509,44.96621765398925],[-93.02019909537837,44.97031235827934],[-93.01352729991575,44.97029529761789],[-93.00896957940091,44.97028961072962],[-93.00513240969079,44.97030843010418],[-93.00513250740879,44.97027701922598],[-93.00509136329458,44.96665648916887],[-93.0050502494359,44.96303599843238],[-93.02024732522509,44.96304281055732]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00011,"geom:area_square_m":961728.425678,"geom:bbox":"-93.0202473252,44.9630359984,-93.0050502494,44.9703123583","geom:latitude":44.966664,"geom:longitude":-93.012664,"iso:country":"US","lbl:latitude":44.966667,"lbl:longitude":-93.012664,"lbl:max_zoom":18,"mps:latitude":44.966667,"mps:longitude":-93.012664,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.966667,"reversegeo:longitude":-93.012664,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b128d1765d567f5cbac40fc61cd51cb3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800233,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800233,"wof:lastmodified":1566623862,"wof:name":"Beaver Lake Heights","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781027],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800235.geojson b/fixtures/microhoods/1108800235.geojson new file mode 100644 index 0000000..5f11726 --- /dev/null +++ b/fixtures/microhoods/1108800235.geojson @@ -0,0 +1 @@ +{"id":1108800235,"type":"Feature","bbox":[-93.02529089611495,44.97702366087582,-93.0050873084804,44.98474566447127],"geometry":{"type":"Polygon","coordinates":[[[-93.02523087022615,44.98473845883355],[-93.0227115971023,44.98473135267695],[-93.0050873084804,44.98474566447127],[-93.00509850456847,44.98113816016437],[-93.00509955709003,44.98080611823618],[-93.01135695681346,44.97868284402402],[-93.01578606440371,44.97717601930892],[-93.01611886208073,44.97706125186195],[-93.02529089611495,44.97702366087582],[-93.02526817101352,44.97998951686172],[-93.02523408336137,44.98365442777838],[-93.02523087022615,44.98473845883355]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000134,"geom:area_square_m":1174675.54162,"geom:bbox":"-93.0252908961,44.9770236609,-93.0050873085,44.9847456645","geom:latitude":44.981291,"geom:longitude":-93.016168,"iso:country":"US","lbl:latitude":44.980898,"lbl:longitude":-93.016707,"lbl:max_zoom":18,"mps:latitude":44.980898,"mps:longitude":-93.016707,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.980898,"reversegeo:longitude":-93.016707,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"eb7fc4d1736c275a1838edff982827a3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800235,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800235,"wof:lastmodified":1566623862,"wof:name":"Hayden Heights","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781029],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800237.geojson b/fixtures/microhoods/1108800237.geojson new file mode 100644 index 0000000..74d346a --- /dev/null +++ b/fixtures/microhoods/1108800237.geojson @@ -0,0 +1 @@ +{"id":1108800237,"type":"Feature","bbox":[-93.03547174155707,44.98473135267695,-93.00506461026804,44.99198064044592],"geometry":{"type":"Polygon","coordinates":[[[-93.0050873084804,44.98474566447127],[-93.0227115971023,44.98473135267695],[-93.02523087022615,44.98473845883355],[-93.03546016760228,44.98476731278686],[-93.03544901645562,44.98751197564687],[-93.03547174155707,44.99002727849387],[-93.03545469773097,44.99018799696869],[-93.03540356625274,44.99030853552905],[-93.0351933590645,44.99055764775047],[-93.0337933261965,44.99196881685526],[-93.03033989185391,44.99195732042215],[-93.02522168601821,44.99194009572936],[-93.0251753166133,44.99194019445252],[-93.02013229246921,44.99195093134439],[-93.01504313822582,44.99196149768282],[-93.01005375524505,44.99197117813494],[-93.00506461026804,44.99198064044592],[-93.00507582831013,44.98836659657139],[-93.0050872871068,44.98475255128076],[-93.0050873084804,44.98474566447127]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000218,"geom:area_square_m":1905112.332033,"geom:bbox":"-93.0354717416,44.9847313527,-93.0050646103,44.9919806404","geom:latitude":44.988332,"geom:longitude":-93.020159,"iso:country":"US","lbl:latitude":44.988342,"lbl:longitude":-93.020159,"lbl:max_zoom":18,"mps:latitude":44.988342,"mps:longitude":-93.020159,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:bar_x_preferred":["Hillcrest"],"name:cat_x_preferred":["Hillcrest"],"name:ceb_x_preferred":["Hillcrest"],"name:deu_x_preferred":["Hillcrest"],"name:ita_x_preferred":["Hillcrest"],"name:nld_x_preferred":["Hillcrest"],"name:pol_x_preferred":["Hillcrest"],"name:por_x_preferred":["Hillcrest"],"name:srp_x_preferred":["Хилкрест"],"name:ukr_x_preferred":["Гіллкрест"],"name:vol_x_preferred":["Hillcrest"],"reversegeo:latitude":44.988342,"reversegeo:longitude":-93.020159,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"48cacf4c338c3d1b5de0ad64f8f88cbb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800237,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800237,"wof:lastmodified":1566623862,"wof:name":"Hillcrest","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781031],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800239.geojson b/fixtures/microhoods/1108800239.geojson new file mode 100644 index 0000000..1fac0f9 --- /dev/null +++ b/fixtures/microhoods/1108800239.geojson @@ -0,0 +1 @@ +{"id":1108800239,"type":"Feature","bbox":[-93.04524010223079,44.98476731278686,-93.0337933261965,44.99199669949226],"geometry":{"type":"Polygon","coordinates":[[[-93.0337933261965,44.99196881685526],[-93.0351933590645,44.99055764775047],[-93.03540356625274,44.99030853552905],[-93.03545469773097,44.99018799696869],[-93.03547174155707,44.99002727849387],[-93.03544901645562,44.98751197564687],[-93.03546016760228,44.98476731278686],[-93.04524010223079,44.98479489921501],[-93.04487789034481,44.99199669949226],[-93.04057848757182,44.99199104482641],[-93.03545810047491,44.99197435886481],[-93.0337933261965,44.99196881685526]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000071,"geom:area_square_m":617479.984874,"geom:bbox":"-93.0452401022,44.9847673128,-93.0337933262,44.9919966995","geom:latitude":44.988422,"geom:longitude":-93.040152,"iso:country":"US","lbl:latitude":44.988385,"lbl:longitude":-93.040151,"lbl:max_zoom":18,"mps:latitude":44.988385,"mps:longitude":-93.040151,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.988385,"reversegeo:longitude":-93.040151,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d49fe23d48c03b43335faf86574d5876","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800239,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800239,"wof:lastmodified":1566623862,"wof:name":"Frost Lake","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781033],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800241.geojson b/fixtures/microhoods/1108800241.geojson new file mode 100644 index 0000000..18dc009 --- /dev/null +++ b/fixtures/microhoods/1108800241.geojson @@ -0,0 +1 @@ +{"id":1108800241,"type":"Feature","bbox":[-93.0455356198961,44.97754384080083,-93.03546016760228,44.98479489921501],"geometry":{"type":"Polygon","coordinates":[[[-93.03546016760228,44.98476731278686],[-93.03557765758966,44.98457327896599],[-93.03655353792136,44.98322119311241],[-93.03756556196907,44.98178669741785],[-93.03844505905815,44.98055385461791],[-93.03928841243123,44.97933518902254],[-93.04011971789902,44.97820740314575],[-93.04034059616339,44.9779034369104],[-93.04040485165848,44.97774719195681],[-93.04043296343757,44.97761935485993],[-93.0404404988087,44.97754384080083],[-93.0455356198961,44.97754973966573],[-93.04552248745614,44.97918027950515],[-93.04524010223079,44.98479489921501],[-93.03546016760228,44.98476731278686]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000054,"geom:area_square_m":468835.22858,"geom:bbox":"-93.0455356199,44.9775438408,-93.0354601676,44.9847948992","geom:latitude":44.981554,"geom:longitude":-93.041567,"iso:country":"US","lbl:latitude":44.98148,"lbl:longitude":-93.041973,"lbl:max_zoom":18,"mps:latitude":44.98148,"mps:longitude":-93.041973,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.98148,"reversegeo:longitude":-93.041973,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"b5b111fd5b9f405caf412f3178e6c667","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800241,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800241,"wof:lastmodified":1566623861,"wof:name":"East Phalen","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781035],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800245.geojson b/fixtures/microhoods/1108800245.geojson new file mode 100644 index 0000000..73d84be --- /dev/null +++ b/fixtures/microhoods/1108800245.geojson @@ -0,0 +1 @@ +{"id":1108800245,"type":"Feature","bbox":[-93.0404404988087,44.97751496032485,-93.02523087022615,44.98476731278686],"geometry":{"type":"Polygon","coordinates":[[[-93.0404404988087,44.97754384080083],[-93.04043296343757,44.97761935485993],[-93.04040485165848,44.97774719195681],[-93.04034059616339,44.9779034369104],[-93.04011971789902,44.97820740314575],[-93.03928841243123,44.97933518902254],[-93.03844505905815,44.98055385461791],[-93.03756556196907,44.98178669741785],[-93.03655353792136,44.98322119311241],[-93.03557765758966,44.98457327896599],[-93.03546016760228,44.98476731278686],[-93.02523087022615,44.98473845883355],[-93.02523408336137,44.98365442777838],[-93.02526817101352,44.97998951686172],[-93.02528713166049,44.97751496032485],[-93.03546037900628,44.97753807507841],[-93.0404404988087,44.97754384080083]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000092,"geom:area_square_m":806165.706781,"geom:bbox":"-93.0404404988,44.9775149603,-93.0252308702,44.9847673128","geom:latitude":44.980904,"geom:longitude":-93.031721,"iso:country":"US","lbl:latitude":44.981143,"lbl:longitude":-93.031721,"lbl:max_zoom":18,"mps:latitude":44.981143,"mps:longitude":-93.031721,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.981143,"reversegeo:longitude":-93.031721,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"de5d41ffa0cf341fc691fc548f3befab","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800245,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800245,"wof:lastmodified":1566623862,"wof:name":"Prosperity Heights","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781037],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800247.geojson b/fixtures/microhoods/1108800247.geojson new file mode 100644 index 0000000..4406e30 --- /dev/null +++ b/fixtures/microhoods/1108800247.geojson @@ -0,0 +1 @@ +{"id":1108800247,"type":"Feature","bbox":[-93.04555595227413,44.96964739150994,-93.03546037900628,44.97754973966573],"geometry":{"type":"Polygon","coordinates":[[[-93.0354854356483,44.97166915083663],[-93.03566512499118,44.97166597277746],[-93.03600579804092,44.97164990534876],[-93.03646002877389,44.97162178734658],[-93.03681915494714,44.97159266511473],[-93.03708317656069,44.97156253865323],[-93.03734152029006,44.97153040374182],[-93.03759418613528,44.97149626038052],[-93.03783123779904,44.97146111278055],[-93.03805267528136,44.97142496094192],[-93.03826843487951,44.97138579642127],[-93.03847851659353,44.97134361921861],[-93.03868859830753,44.97130244620621],[-93.03889868002153,44.97126227738409],[-93.03913999009843,44.97120704518598],[-93.03941252853821,44.97113674961188],[-93.0397276511092,44.9710544032324],[-93.04008535781142,44.97096000604753],[-93.04080644910002,44.97076719379729],[-93.04189092497498,44.97047596648167],[-93.04310031430154,44.9701495889845],[-93.04495379198781,44.96964739150994],[-93.04495157350775,44.97002444549755],[-93.04485349855649,44.97036513577341],[-93.04417579075701,44.97124967429846],[-93.04398083482639,44.9717264686149],[-93.04397640824013,44.97247661385249],[-93.04406725037484,44.97336343405768],[-93.04457195547616,44.97434632098371],[-93.04479318708816,44.97456494296854],[-93.04555595227413,44.97502524669413],[-93.0455356198961,44.97754973966573],[-93.03546037900628,44.97753807507841],[-93.035471741557,44.9726670305683],[-93.0354854356483,44.97166915083663]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":542847.006826,"geom:bbox":"-93.0455559523,44.9696473915,-93.035460379,44.9775497397","geom:latitude":44.974302,"geom:longitude":-93.040391,"iso:country":"US","lbl:latitude":44.974211,"lbl:longitude":-93.040391,"lbl:max_zoom":18,"mps:latitude":44.974211,"mps:longitude":-93.040391,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.974211,"reversegeo:longitude":-93.040391,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"9f0965f9c3d39d889ed0eddd81e334c0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800247,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800247,"wof:lastmodified":1566623861,"wof:name":"Phalen Village","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781039],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800249.geojson b/fixtures/microhoods/1108800249.geojson new file mode 100644 index 0000000..e4ec268 --- /dev/null +++ b/fixtures/microhoods/1108800249.geojson @@ -0,0 +1 @@ +{"id":1108800249,"type":"Feature","bbox":[-93.04595305852973,44.96304966085955,-93.0354854356483,44.97166915083663],"geometry":{"type":"Polygon","coordinates":[[[-93.04495379198781,44.96964739150994],[-93.04310031430154,44.9701495889845],[-93.04189092497498,44.97047596648167],[-93.04080644910002,44.97076719379729],[-93.04008535781142,44.97096000604753],[-93.0397276511092,44.9710544032324],[-93.03941252853821,44.97113674961188],[-93.03913999009843,44.97120704518598],[-93.03889868002153,44.97126227738409],[-93.03868859830753,44.97130244620621],[-93.03847851659353,44.97134361921861],[-93.03826843487951,44.97138579642127],[-93.03805267528136,44.97142496094192],[-93.03783123779904,44.97146111278055],[-93.03759418613528,44.97149626038052],[-93.03734152029006,44.97153040374182],[-93.03708317656069,44.97156253865323],[-93.03681915494714,44.97159266511473],[-93.03646002877389,44.97162178734658],[-93.03600579804092,44.97164990534876],[-93.03566512499118,44.97166597277746],[-93.0354854356483,44.97166915083663],[-93.03552855431057,44.96852712131409],[-93.03555127941203,44.96505419027213],[-93.03552957019036,44.96304966085955],[-93.03958130718776,44.96305147706018],[-93.04595305852973,44.9630713909462],[-93.04594465805297,44.96450348832913],[-93.0456524788024,44.96518458690078],[-93.0451693731499,44.96566053062944],[-93.04497283835,44.96641010719143],[-93.04495839459847,44.96886512948375],[-93.04495379198781,44.96964739150994]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000076,"geom:area_square_m":662451.120727,"geom:bbox":"-93.0459530585,44.9630496609,-93.0354854356,44.9716691508","geom:latitude":44.966897,"geom:longitude":-93.040185,"iso:country":"US","lbl:latitude":44.966993,"lbl:longitude":-93.040185,"lbl:max_zoom":18,"mps:latitude":44.966993,"mps:longitude":-93.040185,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.966993,"reversegeo:longitude":-93.040185,"src:geom":"mz","wof:belongsto":[85873321,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"836ea3d6809e206fbfc5ffcdd7417878","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800249,"neighbourhood_id":85873321,"region_id":85688727}],"wof:id":1108800249,"wof:lastmodified":1566623861,"wof:name":"Parkway/Greenbrier","wof:parent_id":85873321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781043],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800251.geojson b/fixtures/microhoods/1108800251.geojson new file mode 100644 index 0000000..f7f9184 --- /dev/null +++ b/fixtures/microhoods/1108800251.geojson @@ -0,0 +1 @@ +{"id":1108800251,"type":"Feature","bbox":[-93.16705517443833,44.96746110429428,-93.14658756101126,44.97356432949158],"geometry":{"type":"Polygon","coordinates":[[[-93.1670433138741,44.97343013879578],[-93.14658877795647,44.97356432949158],[-93.14658756101126,44.96746110429428],[-93.16705517443833,44.97027656268315],[-93.1670433138741,44.97343013879578]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000095,"geom:area_square_m":828510.607033,"geom:bbox":"-93.1670551744,44.9674611043,-93.146587561,44.9735643295","geom:latitude":44.971112,"geom:longitude":-93.155732,"iso:country":"US","lbl:latitude":44.971112,"lbl:longitude":-93.155732,"lbl:max_zoom":18,"mps:latitude":44.971112,"mps:longitude":-93.155732,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["Energy Park"],"name:eng_x_preferred":["Energy Park"],"reversegeo:latitude":44.971112,"reversegeo:longitude":-93.155732,"src:geom":"mz","wof:belongsto":[420525031,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5376959"},"wof:country":"US","wof:geomhash":"b16f8520df55bebdf0e54b6944e2d833","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800251,"neighbourhood_id":420525031,"region_id":85688727}],"wof:id":1108800251,"wof:lastmodified":1566623864,"wof:name":"Energy Park","wof:parent_id":420525031,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781017],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800255.geojson b/fixtures/microhoods/1108800255.geojson new file mode 100644 index 0000000..f5e975c --- /dev/null +++ b/fixtures/microhoods/1108800255.geojson @@ -0,0 +1 @@ +{"id":1108800255,"type":"Feature","bbox":[-93.12631595522662,44.94132073319854,-93.11611643699405,44.95174103367444],"geometry":{"type":"Polygon","coordinates":[[[-93.11613440589605,44.95126647359849],[-93.11611643699405,44.94243073233967],[-93.11795853286192,44.94132073319854],[-93.12623089814777,44.94134261456671],[-93.12623656112045,44.94219239412877],[-93.12625073863941,44.94345679283379],[-93.12627342266974,44.94513460497532],[-93.12629327119629,44.94689665243967],[-93.12631028421903,44.94874293522684],[-93.12631595522662,44.95018180584569],[-93.12631028421903,44.95121326429623],[-93.12630744871524,44.95172899352149],[-93.12514205665681,44.95173300690581],[-93.12281127253993,44.95174103367444],[-93.12133113956062,44.95173501359587],[-93.12070165771884,44.95171494667007],[-93.12006934037328,44.95167681947373],[-93.1194341875239,44.95162063200684],[-93.11853816832568,44.95153033052503],[-93.11738128277864,44.95140591502828],[-93.11638602094771,44.95129554625723],[-93.11613440589605,44.95126647359849]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000104,"geom:area_square_m":907042.852826,"geom:bbox":"-93.1263159552,44.9413207332,-93.116116437,44.9517410337","geom:latitude":44.946536,"geom:longitude":-93.121281,"iso:country":"US","lbl:latitude":44.94653,"lbl:longitude":-93.121213,"lbl:max_zoom":18,"mps:latitude":44.94653,"mps:longitude":-93.121213,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.94653,"reversegeo:longitude":-93.121213,"src:geom":"mz","wof:belongsto":[85873309,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"f95117fa581087a9a4ae5fa185ef4a9d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800255,"neighbourhood_id":85873309,"region_id":85688727}],"wof:id":1108800255,"wof:lastmodified":1566623864,"wof:name":"Ramsey Hill","wof:parent_id":85873309,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781015],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800257.geojson b/fixtures/microhoods/1108800257.geojson new file mode 100644 index 0000000..cff25ab --- /dev/null +++ b/fixtures/microhoods/1108800257.geojson @@ -0,0 +1 @@ +{"id":1108800257,"type":"Feature","bbox":[-93.11613440589605,44.94158274587385,-93.10566061047254,44.95126647359849],"geometry":{"type":"Polygon","coordinates":[[[-93.11611643699405,44.94243073233967],[-93.11613440589605,44.95126647359849],[-93.1155523828329,44.95119922421186],[-93.1148321648698,44.95112898933309],[-93.11422536705835,44.95108484162093],[-93.11354201064454,44.95104069387479],[-93.11278209562832,44.9509965460947],[-93.11206471316899,44.95096845204692],[-93.11138986326652,44.95095641173148],[-93.1107745589437,44.95094838485395],[-93.10992571652048,44.95094465379309],[-93.10566061047254,44.95092469556354],[-93.1079542117884,44.94828409836263],[-93.1080332898166,44.9467554515586],[-93.10842952472792,44.94613060219565],[-93.11005186719265,44.94506877262531],[-93.1095194088452,44.94480596747938],[-93.10854944915818,44.94451557509338],[-93.11372935545052,44.94222942441584],[-93.11478649590666,44.9420362267289],[-93.11612037511505,44.94158274587385],[-93.11611643699405,44.94243073233967]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000066,"geom:area_square_m":576136.525516,"geom:bbox":"-93.1161344059,44.9415827459,-93.1056606105,44.9512664736","geom:latitude":44.947177,"geom:longitude":-93.112235,"iso:country":"US","lbl:latitude":44.947511,"lbl:longitude":-93.112334,"lbl:max_zoom":18,"mps:latitude":44.947511,"mps:longitude":-93.112334,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.947511,"reversegeo:longitude":-93.112334,"src:geom":"mz","wof:belongsto":[85873309,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1a0722c70f1513afc72c336d7650f1a4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800257,"neighbourhood_id":85873309,"region_id":85688727}],"wof:id":1108800257,"wof:lastmodified":1566623864,"wof:name":"Cathedral Hill","wof:parent_id":85873309,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780993],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800259.geojson b/fixtures/microhoods/1108800259.geojson new file mode 100644 index 0000000..430a591 --- /dev/null +++ b/fixtures/microhoods/1108800259.geojson @@ -0,0 +1 @@ +{"id":1108800259,"type":"Feature","bbox":[-93.13641447508923,44.93996181702958,-93.13641447508923,44.93996181702958],"geometry":{"type":"Point","coordinates":[-93.13641447508923,44.93996181702958]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-93.1364144751,44.939961817,-93.1364144751,44.939961817","geom:latitude":44.939962,"geom:longitude":-93.136414,"iso:country":"US","lbl:latitude":44.939962,"lbl:longitude":-93.136414,"lbl:max_zoom":18,"mps:latitude":44.939962,"mps:longitude":-93.136414,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.939962,"reversegeo:longitude":-93.136414,"src:geom":"mz","wof:belongsto":[85873307,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"ec65d7b72386347b8615a5dcd1b43485","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800259,"neighbourhood_id":85873307,"region_id":85688727}],"wof:id":1108800259,"wof:lastmodified":1613672351,"wof:name":"Victoria and Grand","wof:parent_id":85873307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780999],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800263.geojson b/fixtures/microhoods/1108800263.geojson new file mode 100644 index 0000000..977ba09 --- /dev/null +++ b/fixtures/microhoods/1108800263.geojson @@ -0,0 +1 @@ +{"id":1108800263,"type":"Feature","bbox":[-93.14661459368291,44.93409322062574,-93.11229492879083,44.9413965318118],"geometry":{"type":"Polygon","coordinates":[[[-93.12692059264802,44.93409322062574],[-93.14656945506603,44.93417054029428],[-93.14661459368291,44.9413965318118],[-93.11795853286192,44.94132073319854],[-93.11229492879083,44.94130490014756],[-93.11567644533642,44.93990037664859],[-93.11803094286083,44.9390070076942],[-93.11996312942006,44.93819822279491],[-93.12141218435302,44.93760231366458],[-93.12231826607778,44.93713355486141],[-93.12364751938554,44.93636612929225],[-93.12534022082754,44.93517147801564],[-93.12692059264802,44.93409322062574]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000189,"geom:area_square_m":1655285.344697,"geom:bbox":"-93.1466145937,44.9340932206,-93.1122949288,44.9413965318","geom:latitude":44.938086,"geom:longitude":-93.133168,"iso:country":"US","lbl:latitude":44.937739,"lbl:longitude":-93.133167,"lbl:max_zoom":18,"mps:latitude":44.937739,"mps:longitude":-93.133167,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Crocus Hill"],"name:ces_x_preferred":["Crocus Hill"],"name:fra_x_preferred":["Crocus Hill"],"name:pol_x_preferred":["Crocus Hill"],"reversegeo:latitude":44.937739,"reversegeo:longitude":-93.133167,"src:geom":"mz","wof:belongsto":[85873307,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"c95e45fcfd408378efc984b594dd441e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800263,"neighbourhood_id":85873307,"region_id":85688727}],"wof:id":1108800263,"wof:lastmodified":1566623870,"wof:name":"Crocus Hill","wof:parent_id":85873307,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780995],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800561.geojson b/fixtures/microhoods/1108800561.geojson new file mode 100644 index 0000000..e9ce8db --- /dev/null +++ b/fixtures/microhoods/1108800561.geojson @@ -0,0 +1 @@ +{"id":1108800561,"type":"Feature","bbox":[-93.08462622346298,44.92852696525784,-93.07611292897552,44.93562913430978],"geometry":{"type":"Polygon","coordinates":[[[-93.07869489528485,44.92970411853651],[-93.08277588179516,44.93225642090498],[-93.08462622346298,44.93227339814631],[-93.0845382927218,44.93238092055822],[-93.08446634938811,44.93249410182695],[-93.08442638086939,44.93262991905501],[-93.08440239975815,44.93298077874088],[-93.0844103934619,44.93350140529225],[-93.0843544375357,44.93367117379943],[-93.08421055086829,44.9338183060997],[-93.0823480178959,44.93383528287932],[-93.08231604308094,44.93309961782592],[-93.08158062233647,44.93309395882745],[-93.08158861604022,44.93334295423278],[-93.08086918270325,44.93334861320672],[-93.08086778350297,44.93479729219126],[-93.0815462992955,44.93479562985566],[-93.08153266011402,44.93561781681078],[-93.08046949751605,44.93562913430978],[-93.07943830973306,44.93532356105419],[-93.07943596150706,44.93479297700912],[-93.08006981232883,44.93479630168117],[-93.08005382492135,44.9340107093082],[-93.07936636639937,44.93400738459351],[-93.07937011382565,44.93349574633339],[-93.08023907930774,44.93349507449266],[-93.0802216927,44.93226773906643],[-93.07937436010312,44.93227905722564],[-93.07934238528814,44.9320583527186],[-93.07932639788065,44.93194517059111],[-93.07926244825069,44.9318263291172],[-93.07903862454586,44.93163391859044],[-93.07831119750514,44.9311302526888],[-93.07797546194789,44.93089256612256],[-93.07775163824307,44.93079635937561],[-93.07739192157459,44.93065487857264],[-93.07629678416163,44.93029834540344],[-93.07656057638519,44.92987389826867],[-93.07611292897552,44.92973308707416],[-93.07632875897662,44.92936455756659],[-93.07666399568265,44.92945843233457],[-93.07713612305477,44.92852696525784],[-93.07847107158004,44.92883257467763],[-93.07855900232121,44.92886087176388],[-93.07824724787521,44.92932494198934],[-93.07865492676615,44.92932494198934],[-93.07869489528485,44.92970411853651]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":154092.312467,"geom:bbox":"-93.0846262235,44.9285269653,-93.076112929,44.9356291343","geom:latitude":44.932032,"geom:longitude":-93.080307,"iso:country":"US","lbl:latitude":44.932272,"lbl:longitude":-93.081081,"lbl:max_zoom":18,"mps:latitude":44.932272,"mps:longitude":-93.081081,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.932272,"reversegeo:longitude":-93.081081,"src:geom":"mz","wof:belongsto":[1108800545,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"fc8d70be921a2de97ba22a04d06ef95e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800561,"neighbourhood_id":1108800545,"region_id":85688727}],"wof:id":1108800561,"wof:lastmodified":1566623874,"wof:name":"District del Sol","wof:parent_id":1108800545,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780977],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800563.geojson b/fixtures/microhoods/1108800563.geojson new file mode 100644 index 0000000..2591358 --- /dev/null +++ b/fixtures/microhoods/1108800563.geojson @@ -0,0 +1 @@ +{"id":1108800563,"type":"Feature","bbox":[-93.09173134678814,44.93744835121926,-93.08258703727635,44.94417101522119],"geometry":{"type":"Polygon","coordinates":[[[-93.08774379516787,44.94417101522119],[-93.08709871711653,44.94351299333013],[-93.08666010926642,44.94307413130734],[-93.08625738751311,44.94268042218621],[-93.08596232405031,44.94239184235629],[-93.08577491887797,44.9422083918176],[-93.08564034601488,44.94207080369376],[-93.08555860546099,44.94197907798477],[-93.08546490287483,44.94186759571438],[-93.08535923825639,44.94173635688261],[-93.08522067804918,44.94156560465893],[-93.08504922225323,44.94135533904335],[-93.0848049974276,44.94106392876571],[-93.08448800357228,44.94069137382601],[-93.08417898440514,44.9403272837889],[-93.0838779399262,44.93997165865436],[-93.0835360251703,44.93956381545041],[-93.08315324013745,44.93910375417705],[-93.08286814503487,44.93875588433238],[-93.08268073986252,44.93852020591638],[-93.08258703727635,44.93840236670838],[-93.08273157849969,44.93834309392672],[-93.08302066094637,44.9382245483634],[-93.08324494905155,44.93813422783653],[-93.08340444281524,44.93807213234609],[-93.08356692708699,44.93802485507098],[-93.0837324018668,44.93799239601117],[-93.08392778172731,44.93795993693301],[-93.08415306666852,44.9379274778365],[-93.08438532946188,44.93789572435536],[-93.08462457010741,44.93786467648958],[-93.08487078860509,44.93783433424145],[-93.08512398495495,44.93780469761097],[-93.08547287756299,44.93776165389106],[-93.08591746642925,44.93770520308171],[-93.08656441300818,44.93761982106259],[-93.0874137172998,44.93750550783371],[-93.08783836944559,44.93744835121926],[-93.08803673981417,44.93768191570241],[-93.08843348055133,44.93814904466873],[-93.08884218332076,44.93863592705964],[-93.08926284812249,44.93914256287515],[-93.08958283248587,44.93955534881632],[-93.08980213641092,44.93987428488315],[-93.08996761119074,44.94010431342791],[-93.09007925682532,44.94024543445061],[-93.09024074426105,44.94047898841711],[-93.09045207349791,44.94080497532743],[-93.09060060206535,44.94103288340953],[-93.09068632996333,44.94116271266344],[-93.09077305469734,44.94130030310049],[-93.09086077626736,44.94144565472069],[-93.09094351365727,44.94158395012087],[-93.09102126686706,44.94171518930102],[-93.09108705804458,44.94183019978252],[-93.09114088718982,44.94192898156536],[-93.09119671000713,44.94202352969449],[-93.09125452649646,44.94211384416991],[-93.09131832400193,44.9422055696602],[-93.09138810252355,44.94229870616537],[-93.0914469158489,44.9423777309895],[-93.09149476397799,44.94244264413258],[-93.09158248554802,44.94254565821514],[-93.09173134678814,44.94271029284327],[-93.08986498644425,44.94339404879545],[-93.08774379516787,44.94417101522119]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000033,"geom:area_square_m":285804.000872,"geom:bbox":"-93.0917313468,44.9374483512,-93.0825870373,44.9441710152","geom:latitude":44.940581,"geom:longitude":-93.087311,"iso:country":"US","lbl:latitude":44.940386,"lbl:longitude":-93.087242,"lbl:max_zoom":18,"mps:latitude":44.940386,"mps:longitude":-93.087242,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.940386,"reversegeo:longitude":-93.087242,"src:geom":"mz","wof:belongsto":[1108800545,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"8969bb9aca50b73254b9a739f6a9ff82","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800563,"neighbourhood_id":1108800545,"region_id":85688727}],"wof:id":1108800563,"wof:lastmodified":1566623874,"wof:name":"West Side Flats","wof:parent_id":1108800545,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780981],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800565.geojson b/fixtures/microhoods/1108800565.geojson new file mode 100644 index 0000000..18f3ab0 --- /dev/null +++ b/fixtures/microhoods/1108800565.geojson @@ -0,0 +1 @@ +{"id":1108800565,"type":"Feature","bbox":[-93.09776550475912,44.92958304791023,-93.0843544375357,44.93592673908351],"geometry":{"type":"Polygon","coordinates":[[[-93.09775705513779,44.92958304791023],[-93.09776550475912,44.93067776252458],[-93.09776268821868,44.93111445086932],[-93.09775142205692,44.93125801781592],[-93.09774578897603,44.93132980128922],[-93.0975021582276,44.93154514955586],[-93.09701489673073,44.93197584608915],[-93.09665860436452,44.93228790062833],[-93.09643328112897,44.93248131317341],[-93.09629104583652,44.93260693150405],[-93.09623189848719,44.93266475562024],[-93.09619387519119,44.93271560092495],[-93.09617697594854,44.93275946741818],[-93.09617134286765,44.93280133995083],[-93.09617697594854,44.93284121852288],[-93.09618260902943,44.93288907276283],[-93.09618824211032,44.93294490267067],[-93.09620936616365,44.93299275684416],[-93.09624598118941,44.93303263528331],[-93.09628400448541,44.93307251369476],[-93.09632343605163,44.93311239207851],[-93.09636145934763,44.93314030693939],[-93.09639807437341,44.93315625827739],[-93.09644595556097,44.93316921873726],[-93.0965051029103,44.93317918831901],[-93.09656284198941,44.93319713355806],[-93.09661917279828,44.9332230544544],[-93.09667268706673,44.93326093880849],[-93.09672338479471,44.93331078662031],[-93.09676985771205,44.93337259782757],[-93.09681210581871,44.93344637243025],[-93.09682900506138,44.93351416523544],[-93.09682055544005,44.93357597624311],[-93.09679520657605,44.9336347963384],[-93.0967529584694,44.93369062552128],[-93.09667409533695,44.93373349433582],[-93.09655861717873,44.933763402782],[-93.0964487721014,44.93378334174266],[-93.09634456010497,44.9337933112178],[-93.09625302254052,44.93380627153188],[-93.0961741594081,44.9338222226849],[-93.09606853914143,44.9338531280192],[-93.09593616174055,44.93389898753477],[-93.09582913320367,44.93394983173088],[-93.09574745353078,44.93400566060751],[-93.09550382278235,44.93419507894495],[-93.09509824095838,44.93451808674318],[-93.0948954500464,44.9346795906423],[-93.0948067290224,44.93466064892102],[-93.09462928697442,44.93462276547845],[-93.0944631110882,44.9345918605519],[-93.09430820136377,44.93456793414137],[-93.09417441569266,44.93456594027452],[-93.09406175407491,44.93458587895135],[-93.0939279684038,44.9346167838779],[-93.09377305867937,44.93465865505416],[-93.09355055198426,44.93472345558511],[-93.09326044831852,44.93481118547074],[-93.09299428524652,44.9348789766895],[-93.09275206276831,44.93492682924141],[-93.09249998239855,44.93498664485653],[-93.09223804413723,44.93505842353486],[-93.09177472323415,44.93518303891077],[-93.09111001968932,44.93536049098426],[-93.09048474771069,44.9355249826408],[-93.0898989072983,44.93567651388039],[-93.08948910066366,44.93577919613727],[-93.08925532780678,44.93583302941144],[-93.0890271880308,44.93587589662447],[-93.08880468133569,44.93590779777635],[-93.08857935810016,44.9359247452627],[-93.08835121832416,44.93592673908351],[-93.08806815600951,44.93590979159599],[-93.08773017115621,44.93587390280013],[-93.08743020959889,44.93583302941664],[-93.08716827133757,44.93578717144553],[-93.08686549323983,44.93573333811715],[-93.08652187530562,44.93567152943149],[-93.08625430396341,44.93561071759679],[-93.08606277921321,44.93555090261302],[-93.085858580031,44.93546516763626],[-93.08564170641681,44.93535351266651],[-93.08543469069416,44.93521095276557],[-93.08523753286306,44.93503748793343],[-93.08505164119374,44.93483311760999],[-93.0848770156862,44.93459784179525],[-93.08473759693422,44.93440044882611],[-93.08463338493779,44.9342409387026],[-93.08456297142668,44.93410037010854],[-93.08447847521333,44.93395057763949],[-93.0843544375357,44.93367117379943],[-93.0844103934619,44.93350140529225],[-93.08440239975815,44.93298077874088],[-93.08442638086939,44.93262991905501],[-93.08446634938811,44.93249410182695],[-93.0845382927218,44.93238092055822],[-93.08462622346298,44.93227339814631],[-93.08476717060887,44.93210994077372],[-93.08483054276887,44.93202370221641],[-93.08491222244174,44.93193198015364],[-93.0849861566284,44.93184623984547],[-93.08505234532885,44.93176648129189],[-93.08509740997594,44.93170566535045],[-93.08512135056972,44.93166379202113],[-93.08514388289328,44.93161593674277],[-93.0851650069466,44.93156209951536],[-93.08517979378394,44.93150726524895],[-93.08518824340527,44.93145143394355],[-93.08519246821594,44.93136070787383],[-93.08519246821594,44.93123508703979],[-93.08518824340527,44.93092103220707],[-93.08517979378394,44.93041854337565],[-93.08517204829772,44.93004466616048],[-93.0851650069466,44.92979940056156],[-93.08516148627105,44.9296767677621],[-93.08550299179991,44.92967776478095],[-93.08618600285764,44.92967975881866],[-93.08707180482736,44.92967975881866],[-93.08816039770905,44.92967776478095],[-93.08906450719165,44.92967726627153],[-93.08978413327517,44.92967826329041],[-93.09026153688046,44.92967876179984],[-93.09049671800756,44.92967876179984],[-93.09065655667776,44.92967527223343],[-93.09074105289108,44.92966829310062],[-93.0908311821853,44.92965682737923],[-93.0909269445604,44.92964087506928],[-93.09100792009818,44.92962641828512],[-93.09107410879861,44.92961345702677],[-93.09116142155239,44.92960298831664],[-93.09126985835948,44.92959501215473],[-93.09146419965013,44.92959152258396],[-93.09174444542434,44.92959251960433],[-93.09226198473097,44.92959351662466],[-93.09301681757003,44.92959451364499],[-93.09398711575307,44.92959501215515],[-93.0951728792801,44.92959501215515],[-93.09626288043201,44.9295930181144],[-93.09775705513779,44.92958304791023]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000068,"geom:area_square_m":591370.242696,"geom:bbox":"-93.0977655048,44.9295830479,-93.0843544375,44.9359267391","geom:latitude":44.932398,"geom:longitude":-93.090676,"iso:country":"US","lbl:latitude":44.932593,"lbl:longitude":-93.090547,"lbl:max_zoom":18,"mps:latitude":44.932593,"mps:longitude":-93.090547,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.932593,"reversegeo:longitude":-93.090547,"src:geom":"mz","wof:belongsto":[1108800545,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"bfa5b2ab325fd7aa3698d0af888d8b85","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800565,"neighbourhood_id":1108800545,"region_id":85688727}],"wof:id":1108800565,"wof:lastmodified":1566623874,"wof:name":"The Bluffs","wof:parent_id":1108800545,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780985],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800569.geojson b/fixtures/microhoods/1108800569.geojson new file mode 100644 index 0000000..05a328e --- /dev/null +++ b/fixtures/microhoods/1108800569.geojson @@ -0,0 +1 @@ +{"id":1108800569,"type":"Feature","bbox":[-93.12919706654338,44.92078170703476,-93.08986498644425,44.94656202969599],"geometry":{"type":"Polygon","coordinates":[[[-93.12621869599796,44.92078170703476],[-93.12621329405486,44.92277067820062],[-93.12620533770203,44.92403681549881],[-93.12619340317278,44.92510434342208],[-93.12618743590815,44.92594018927827],[-93.12618743590816,44.92654435306736],[-93.12618743590816,44.9268464349619],[-93.12618246318765,44.92686192616982],[-93.12617251774661,44.92689290858566],[-93.12615262686452,44.92692107440581],[-93.12612279054137,44.92694642363028],[-93.12606709607152,44.92698092671514],[-93.12598554345499,44.92702458366038],[-93.125918909,44.92706401571579],[-93.12586719270658,44.92709922288136],[-93.12581945458959,44.92714287972706],[-93.12577569464898,44.9271949862529],[-93.12574188014943,44.92727103348257],[-93.12571801109092,44.92737102141605],[-93.12570806564989,44.9274900208538],[-93.1257120438263,44.92762803179578],[-93.12571602200272,44.92835609322069],[-93.12572000017911,44.92967420512849],[-93.12572198926732,44.93084724740157],[-93.12572198926732,44.93187522003993],[-93.12572198926732,44.93242581838122],[-93.12572198926732,44.93249904242543],[-93.12572198926732,44.93253565444755],[-93.12666680616641,44.93253987890563],[-93.12919706654338,44.93255119218645],[-93.12866477769164,44.93286757103076],[-93.12715356279031,44.9339342695648],[-93.12534022082754,44.93517147801564],[-93.12364751938554,44.93636612929225],[-93.12231826607778,44.93713355486141],[-93.12141218435302,44.93760231366458],[-93.11996312942006,44.93819822279491],[-93.11803094286083,44.9390070076942],[-93.11567644533642,44.93990037664859],[-93.11229492879083,44.94130490014756],[-93.11013304219202,44.94247397351421],[-93.10919734297542,44.94313403466542],[-93.10761270377532,44.94448030181126],[-93.10628091335694,44.94544506027605],[-93.10527326035164,44.94613038886448],[-93.10469725381857,44.94656202969599],[-93.10462761154892,44.94612881334741],[-93.10441474200712,44.94564429968396],[-93.10405778259447,44.94528679991402],[-93.10126725604759,44.94380248184883],[-93.09997751759191,44.94349360609799],[-93.09868690959075,44.94336302598531],[-93.09721671834797,44.94328292816367],[-93.09484767034813,44.94363358842378],[-93.09283765923789,44.94390869449967],[-93.08986498644425,44.94339404879545],[-93.09430607897319,44.9417670192345],[-93.10144598917051,44.93658122632948],[-93.10518474237671,44.93191464946633],[-93.110623928659,44.92672411800296],[-93.11562456299491,44.92432267119172],[-93.12253272540313,44.92252870793213],[-93.12621869599796,44.92078170703476]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000391,"geom:area_square_m":3423831.754397,"geom:bbox":"-93.1291970665,44.920781707,-93.0898649864,44.9465620297","geom:latitude":44.934186,"geom:longitude":-93.112756,"iso:country":"US","lbl:latitude":44.932538,"lbl:longitude":-93.114695,"lbl:max_zoom":18,"mps:latitude":44.932538,"mps:longitude":-93.114695,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.932538,"reversegeo:longitude":-93.114695,"src:geom":"mz","wof:belongsto":[1108800553,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d1fb5a766d74e39012f91c41bb52dc77","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800569,"neighbourhood_id":1108800553,"region_id":85688727}],"wof:id":1108800569,"wof:lastmodified":1566623874,"wof:name":"Uppertown","wof:parent_id":1108800553,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780989],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800571.geojson b/fixtures/microhoods/1108800571.geojson new file mode 100644 index 0000000..2bbd971 --- /dev/null +++ b/fixtures/microhoods/1108800571.geojson @@ -0,0 +1 @@ +{"id":1108800571,"type":"Feature","bbox":[-93.20777042679448,44.94839102215807,-93.19241916646762,44.95996080381587],"geometry":{"type":"Polygon","coordinates":[[[-93.19242263575072,44.95534873755998],[-93.19255693349052,44.9553788711661],[-93.19276743033495,44.95543227175915],[-93.19293821079363,44.95548848285191],[-93.19306927486656,44.95554750444438],[-93.19320232475879,44.95560652597614],[-93.19333736047031,44.95566554744721],[-93.19344658053109,44.95570630035174],[-93.19352998494114,44.95572878468973],[-93.19363126172478,44.95573581104638],[-93.19375041088199,44.9557273794217],[-93.19384374438849,44.95571332670907],[-93.19391126224423,44.95569365290852],[-93.1939767942807,44.95566976328185],[-93.19404034049788,44.95564165782908],[-93.19410587253435,44.95562198400827],[-93.1941733903901,44.95561074181945],[-93.19569254214463,44.95560512072504],[-93.19866332779787,44.95560512072504],[-93.20014872062451,44.95560512072504],[-93.20014872062451,44.95500505623022],[-93.20014872062451,44.95380492724057],[-93.20015467808237,44.95291255057569],[-93.2001665929981,44.95232792623557],[-93.20017255045596,44.95203561406551],[-93.19994616705725,44.95185291593498],[-93.19949340025984,44.95148751967393],[-93.19913992442676,44.95120363388548],[-93.19888573955804,44.95100125856963],[-93.19871694491864,44.95085790917697],[-93.1986335405086,44.95077358570748],[-93.19856403683355,44.95068785671668],[-93.19850843389351,44.95060072220458],[-93.19845283095347,44.95047985787836],[-93.19839722801345,44.95032526373805],[-93.1983138236034,44.9500751008041],[-93.1982026177233,44.94972936907651],[-93.19807751110822,44.94923465796712],[-93.19789532482483,44.94839102215807],[-93.1984558954641,44.9483967601367],[-93.20268814035711,44.9484080633173],[-93.20501832962455,44.95195308446824],[-93.20775122178088,44.95304755268744],[-93.20775879793382,44.95325445990252],[-93.20776096274675,44.95412708417891],[-93.20776427732977,44.95557218597321],[-93.20776966779728,44.95918480721753],[-93.20777042679448,44.95971676033648],[-93.20151289077789,44.95996080381587],[-93.19241916646762,44.95636371200128],[-93.19242263575072,44.95534873755998]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000095,"geom:area_square_m":829422.139248,"geom:bbox":"-93.2077704268,44.9483910222,-93.1924191665,44.9599608038","geom:latitude":44.95501,"geom:longitude":-93.202094,"iso:country":"US","lbl:latitude":44.955755,"lbl:longitude":-93.203896,"lbl:max_zoom":18,"mps:latitude":44.955755,"mps:longitude":-93.203896,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.955755,"reversegeo:longitude":-93.203896,"src:geom":"mz","wof:belongsto":[1108800559,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"e6cda6ddb80429eacd88f861b4b6df76","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800571,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800571,"wof:lastmodified":1566623873,"wof:name":"Desnoyer Park","wof:parent_id":1108800559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781001],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800577.geojson b/fixtures/microhoods/1108800577.geojson new file mode 100644 index 0000000..d8f7f24 --- /dev/null +++ b/fixtures/microhoods/1108800577.geojson @@ -0,0 +1 @@ +{"id":1108800577,"type":"Feature","bbox":[-93.20268814035711,44.94148647191623,-93.19243818601025,44.9484080633173],"geometry":{"type":"Polygon","coordinates":[[[-93.19244649349218,44.94836890998975],[-93.19243818601025,44.94441860910619],[-93.19244900204589,44.94148647191623],[-93.20045079021502,44.94149547557926],[-93.20160201470435,44.9450962662848],[-93.20263530033415,44.94832767542709],[-93.20268814035711,44.9484080633173],[-93.1984558954641,44.9483967601367],[-93.19573508110075,44.94836890998975],[-93.19244649349218,44.94836890998975]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000063,"geom:area_square_m":549706.575614,"geom:bbox":"-93.2026881404,44.9414864719,-93.192438186,44.9484080633","geom:latitude":44.945078,"geom:longitude":-93.197026,"iso:country":"US","lbl:latitude":44.944937,"lbl:longitude":-93.197026,"lbl:max_zoom":18,"mps:latitude":44.944937,"mps:longitude":-93.197026,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.944937,"reversegeo:longitude":-93.197026,"src:geom":"mz","wof:belongsto":[85867015,102191575,1108799987,404511883,85633793,85969169,102087709,85688727,1108800559,404514465,85953191,102087007],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"7afed1b1c1013664e01ee024ff185809","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087709,"localadmin_id":404511883,"locality_id":85969169,"macrohood_id":1108799987,"microhood_id":1108800577,"neighbourhood_id":85867015,"region_id":85688727},{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800577,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800577,"wof:lastmodified":1566623873,"wof:name":"Shadow Falls","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781013],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800579.geojson b/fixtures/microhoods/1108800579.geojson new file mode 100644 index 0000000..af47af1 --- /dev/null +++ b/fixtures/microhoods/1108800579.geojson @@ -0,0 +1 @@ +{"id":1108800579,"type":"Feature","bbox":[-93.16711083655974,44.94144640631964,-93.15681813044533,44.95569215269985],"geometry":{"type":"Polygon","coordinates":[[[-93.15684782755257,44.95569215269985],[-93.15684390185898,44.95514765619021],[-93.15683795460967,44.95439430228241],[-93.15683002494396,44.95343751962187],[-93.15682407769465,44.95278516385293],[-93.1568201128618,44.95243723497556],[-93.1568201128618,44.95218470526027],[-93.15682407769465,44.95202757470705],[-93.15682606011109,44.95179748946781],[-93.15682606011107,44.95149444954256],[-93.15682407769464,44.95090940529316],[-93.15682011286177,44.95004235671961],[-93.15681813044533,44.94904200422249],[-93.15681813044534,44.94790834780179],[-93.15682011286178,44.94693602725824],[-93.15682407769465,44.94612504259185],[-93.15682804252752,44.94515548996678],[-93.15683200736039,44.94402736938302],[-93.15683597219326,44.94294272631527],[-93.1568416702868,44.94144640631964],[-93.16699253024026,44.94145782813195],[-93.1670037860724,44.94281223199312],[-93.16700775090527,44.94398807675734],[-93.16700775090527,44.94538559694878],[-93.16700576848885,44.94665680984073],[-93.167001803656,44.94780171543317],[-93.16699783882314,44.94884838879004],[-93.16699387399028,44.94979682991134],[-93.16700576848886,44.95037908077474],[-93.1670335223189,44.95059514138026],[-93.16705731131609,44.95082943983715],[-93.16707713548041,44.9510819761454],[-93.16709299481187,44.95129803431087],[-93.16710488931045,44.95147761433357],[-93.16711083655974,44.95165438788257],[-93.16711083655974,44.9518283549579],[-93.16710488931045,44.95199951561055],[-93.16709299481187,44.95216786984057],[-93.16707515306399,44.9523937439838],[-93.16705136406681,44.95267713804027],[-93.16702955748607,44.95293387519087],[-93.16700973332175,44.95316395543558],[-93.16699783882316,44.95342489877655],[-93.16699387399031,44.95371670521377],[-93.16699189157387,44.95433117219631],[-93.16699189157387,44.95566541501512],[-93.15684782755257,44.95569215269985]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000145,"geom:area_square_m":1268198.468356,"geom:bbox":"-93.1671108366,44.9414464063,-93.1568181304,44.9556921527","geom:latitude":44.948568,"geom:longitude":-93.161919,"iso:country":"US","lbl:latitude":44.948565,"lbl:longitude":-93.161919,"lbl:max_zoom":18,"mps:latitude":44.948565,"mps:longitude":-93.161919,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.948565,"reversegeo:longitude":-93.161919,"src:geom":"mz","wof:belongsto":[1108800559,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"0d2961bc2293033c0ebbfe8c276ac3a0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800579,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800579,"wof:lastmodified":1566623873,"wof:name":"Snelling-Hamline","wof:parent_id":1108800559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781011],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800581.geojson b/fixtures/microhoods/1108800581.geojson new file mode 100644 index 0000000..69291f5 --- /dev/null +++ b/fixtures/microhoods/1108800581.geojson @@ -0,0 +1 @@ +{"id":1108800581,"type":"Feature","bbox":[-93.18251262416912,44.95190682850555,-93.17664184471323,44.95783659224004],"geometry":{"type":"Polygon","coordinates":[[[-93.1771817746358,44.95583470131937],[-93.1771922302872,44.95490982255723],[-93.17719503123159,44.9544460068647],[-93.1771922302872,44.95426166747105],[-93.17718522792622,44.9541367922556],[-93.17717402414863,44.95407138121834],[-93.17715861895445,44.95401588090022],[-93.17713901234366,44.95397029130122],[-93.17710820195529,44.95389695138235],[-93.17706618778935,44.95379586114359],[-93.17700736795702,44.95366404702757],[-93.1769317424583,44.95350150903428],[-93.17686171884839,44.95335185479356],[-93.17679729712725,44.95321508430541],[-93.17674828060032,44.95308822446367],[-93.17671466926754,44.95297127526836],[-93.17668806029577,44.95285135253162],[-93.176668453685,44.95272845625344],[-93.176654448963,44.95259862197273],[-93.17664604612983,44.95246184968948],[-93.17664184471323,44.9522755214653],[-93.17664184471323,44.95203963730021],[-93.17664184471323,44.95192169521766],[-93.17677068815549,44.95191872187532],[-93.17702837504001,44.95191277519064],[-93.17733087703488,44.95190881073404],[-93.17767819414007,44.95190682850555],[-93.17798209660714,44.95191178407578],[-93.17824258443606,44.95192367744473],[-93.17848766707078,44.95194052637767],[-93.17871734451133,44.95196233087461],[-93.17896382761825,44.95199008203625],[-93.17922711639156,44.95202377986259],[-93.17947640044288,44.95205846877988],[-93.17971167977223,44.95209414878815],[-93.17993435485178,44.9521328021024],[-93.18014442568153,44.95217442872265],[-93.1803572974557,44.95222299306597],[-93.18057297017427,44.95227849513236],[-93.18076763580984,44.95232805051113],[-93.18094129436246,44.95237165920229],[-93.18114996472002,44.95242716110765],[-93.18139364688257,44.95249455622725],[-93.18176477201516,44.95260655075275],[-93.1822633401178,44.95276314468418],[-93.18251262416912,44.95284144164989],[-93.18248461472515,44.95294847984839],[-93.18242859583721,44.95316255624537],[-93.18237537789368,44.9533766318438],[-93.18232496089453,44.95359070664369],[-93.18229555097838,44.9537354051611],[-93.18228714814518,44.95381072739605],[-93.18228574767298,44.95388604953212],[-93.18229134956178,44.95396137156935],[-93.18229555097837,44.95402380951997],[-93.18229835192277,44.954073363384],[-93.18230395381156,44.95411994398079],[-93.18231235664476,44.95416355131034],[-93.18231795853355,44.95421806041015],[-93.18232075947795,44.95428347128022],[-93.18232356042235,44.95444303345479],[-93.18232636136673,44.95469674693387],[-93.18231935900575,44.95562436095288],[-93.18229614471726,44.95783659224004],[-93.17724316808173,44.95584670952778],[-93.1771817746358,44.95583470131937]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000025,"geom:area_square_m":216377.348537,"geom:bbox":"-93.1825126242,44.9519068285,-93.1766418447,44.9578365922","geom:latitude":44.954472,"geom:longitude":-93.179765,"iso:country":"US","lbl:latitude":44.954472,"lbl:longitude":-93.179767,"lbl:max_zoom":18,"mps:latitude":44.954472,"mps:longitude":-93.179767,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.954472,"reversegeo:longitude":-93.179767,"src:geom":"mz","wof:belongsto":[1108800559,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"01990267e44155688d841776ab5b763f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800581,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800581,"wof:lastmodified":1566623875,"wof:name":"Iris Park","wof:parent_id":1108800559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781003],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800619.geojson b/fixtures/microhoods/1108800619.geojson new file mode 100644 index 0000000..6c9136b --- /dev/null +++ b/fixtures/microhoods/1108800619.geojson @@ -0,0 +1 @@ +{"id":1108800619,"type":"Feature","bbox":[-93.09240654278037,44.94573493319359,-93.08099091484358,44.95271174553782],"geometry":{"type":"Polygon","coordinates":[[[-93.08099091484358,44.94985922263056],[-93.08597953918658,44.94746312674571],[-93.08780593214135,44.94658153958468],[-93.08793653012077,44.94651011421476],[-93.0880572343139,44.94644008925859],[-93.08816804472067,44.94637146471614],[-93.08829468518559,44.94628743451861],[-93.08843715570859,44.94618799866599],[-93.0885667643094,44.94610256775674],[-93.08868351098798,44.94603114179085],[-93.08879135325888,44.94596601804933],[-93.08889029112208,44.9459071965322],[-93.08900901655792,44.94584207262861],[-93.08914752956642,44.9457706463386],[-93.08921678607065,44.94573493319359],[-93.08941367241843,44.94593800675559],[-93.08980744511398,44.94634415387959],[-93.0902121009745,44.94676010146981],[-93.09062763999995,44.94718584952625],[-93.09122819282962,44.9478076569067],[-93.09201375946344,44.94862552361118],[-93.09240654278037,44.94903445696342],[-93.09192966227971,44.94926132592039],[-93.09097590127843,44.94971506383433],[-93.09029224064366,44.95003926127519],[-93.08987868037548,44.95023391824296],[-93.08967190024137,44.95033124672685],[-93.08966497459095,44.95038446202162],[-93.08965112329008,44.95049089261114],[-93.08964419763966,44.95054410790591],[-93.08961352690207,44.95054550830574],[-93.08955218542688,44.95054830910539],[-93.08948589705854,44.95055461090354],[-93.08941466179704,44.95056441370019],[-93.08932957523467,44.95058191868652],[-93.08923063737147,44.95060712586252],[-93.08911784820742,44.95064843758187],[-93.08899120774251,44.95070585384455],[-93.0886449252213,44.95087039967215],[-93.08807900064379,44.95114207506465],[-93.08769808987046,44.95132762623551],[-93.0875021929013,44.95142705318473],[-93.08735180734924,44.95151247623198],[-93.08724693321425,44.95158389537727],[-93.0871410697006,44.95165531443368],[-93.08703421680835,44.95172673340122],[-93.08694616211008,44.95179115044476],[-93.08687690560585,44.95184856556429],[-93.08680863848024,44.95191158208355],[-93.08674136073326,44.95198020000255],[-93.08666715733585,44.95206212125971],[-93.08658834614663,44.95215462528635],[-93.0862050277752,44.95200486543439],[-93.08486020365969,44.95192175100414],[-93.08345704976897,44.95227628984351],[-93.08255793143019,44.95271174553782],[-93.08099091484358,44.94985922263056]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000039,"geom:area_square_m":343570.930062,"geom:bbox":"-93.0924065428,44.9457349332,-93.0809909148,44.9527117455","geom:latitude":44.949418,"geom:longitude":-93.086627,"iso:country":"US","lbl:latitude":44.949352,"lbl:longitude":-93.087016,"lbl:max_zoom":18,"mps:latitude":44.949352,"mps:longitude":-93.087016,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.949352,"reversegeo:longitude":-93.087016,"src:geom":"mz","wof:belongsto":[85873317,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"21f92e2341cd9b8573f0d720eab82496","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800619,"neighbourhood_id":85873317,"region_id":85688727}],"wof:id":1108800619,"wof:lastmodified":1566623873,"wof:name":"Lowertown","wof:parent_id":85873317,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780991],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800625.geojson b/fixtures/microhoods/1108800625.geojson new file mode 100644 index 0000000..c1a0349 --- /dev/null +++ b/fixtures/microhoods/1108800625.geojson @@ -0,0 +1 @@ +{"id":1108800625,"type":"Feature","bbox":[-93.15684782755257,44.9413965318118,-93.14660818572733,44.95571914230818],"geometry":{"type":"Polygon","coordinates":[[[-93.1568416702868,44.94144640631964],[-93.15683597219326,44.94294272631527],[-93.15683200736039,44.94402736938302],[-93.15682804252752,44.94515548996678],[-93.15682407769465,44.94612504259185],[-93.15682011286178,44.94693602725824],[-93.15681813044534,44.94790834780179],[-93.15681813044533,44.94904200422249],[-93.15682011286177,44.95004235671961],[-93.15682407769464,44.95090940529316],[-93.15682606011107,44.95149444954256],[-93.15682606011109,44.95179748946781],[-93.15682407769465,44.95202757470705],[-93.1568201128618,44.95218470526027],[-93.1568201128618,44.95243723497556],[-93.15682407769465,44.95278516385293],[-93.15683002494396,44.95343751962187],[-93.15683795460967,44.95439430228241],[-93.15684390185898,44.95514765619021],[-93.15684782755257,44.95569215269985],[-93.14660818572733,44.95571914230818],[-93.14661459368291,44.9413965318118],[-93.15171721772494,44.94143791934868],[-93.15293699653286,44.94144201275586],[-93.1568416702868,44.94144640631964]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000146,"geom:area_square_m":1276367.726977,"geom:bbox":"-93.1568478276,44.9413965318,-93.1466081857,44.9557191423","geom:latitude":44.948569,"geom:longitude":-93.151715,"iso:country":"US","lbl:latitude":44.948572,"lbl:longitude":-93.151715,"lbl:max_zoom":18,"mps:latitude":44.948572,"mps:longitude":-93.151715,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.948572,"reversegeo:longitude":-93.151715,"src:geom":"mz","wof:belongsto":[1108800559,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"314e202d886bc198da0dd7039cf2a54d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800625,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800625,"wof:lastmodified":1566623865,"wof:name":"Lexington-Hamline","wof:parent_id":1108800559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85873299],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800627.geojson b/fixtures/microhoods/1108800627.geojson new file mode 100644 index 0000000..2a57004 --- /dev/null +++ b/fixtures/microhoods/1108800627.geojson @@ -0,0 +1 @@ +{"id":1108800627,"type":"Feature","bbox":[-93.0409012785575,44.92837745463078,-93.00482339568737,44.95271924631474],"geometry":{"type":"Polygon","coordinates":[[[-93.00482339568737,44.9329654947302],[-93.00705512122056,44.93299312437294],[-93.00912309304842,44.93300942711862],[-93.01036203385397,44.93300616657152],[-93.01109895031824,44.93299475465279],[-93.01133384244122,44.93297519136242],[-93.01157564315605,44.93294095557512],[-93.01182435246274,44.93289204729088],[-93.01210760472868,44.93281868473957],[-93.01242539995391,44.9327208679212],[-93.01273628658727,44.932608378331],[-93.01304026462878,44.93248121596896],[-93.01337648276561,44.93231492613153],[-93.01374494099773,44.9321095088187],[-93.01408115913455,44.93190572108468],[-93.01438513717605,44.93170356292946],[-93.01471674958496,44.93149162210982],[-93.0150759963613,44.93126989862575],[-93.01541682022602,44.93109382369443],[-93.01573922117915,44.93096339731586],[-93.01612149659499,44.93083623132242],[-93.01656364647356,44.9307123257141],[-93.01719002546818,44.93053950933008],[-93.01800063357888,44.93031778217035],[-93.01883887605698,44.93009279342299],[-93.01970475290248,44.929864543088],[-93.02031731471341,44.92968194238462],[-93.02067656148975,44.92954499131285],[-93.02099435671497,44.92939825762181],[-93.02127070038905,44.9292417413115],[-93.02185102210467,44.92891240202929],[-93.02279305598057,44.92837745463078],[-93.02283441629734,44.92841715550808],[-93.02338219962328,44.92897118844932],[-93.02384520695833,44.92948828153843],[-93.02422343830243,44.92996843477541],[-93.02456906349619,44.93041165001286],[-93.02488208253958,44.93081792725076],[-93.02527335634383,44.93128883511279],[-93.02574288490894,44.93182437359894],[-93.02622545593418,44.93230450800123],[-93.02672106941958,44.93272923831968],[-93.02728841643575,44.9332001307375],[-93.0279274969827,44.93371718525469],[-93.02854049260937,44.93420192004582],[-93.02912740331574,44.93465433511088],[-93.02962301680112,44.93506519921132],[-93.03002733306552,44.93543451234714],[-93.030346873339,44.93574842709938],[-93.03058163762154,44.93600694346807],[-93.03084248682438,44.93637163321203],[-93.03112942094748,44.93684249633129],[-93.03155982213217,44.93753954719239],[-93.0321336903784,44.93846278579535],[-93.03296840782748,44.93982452003823],[-93.0340639744794,44.94162474992103],[-93.03472261871656,44.94272334415102],[-93.03494434053896,44.94312030272819],[-93.03516606236137,44.94344340714402],[-93.03538778418378,44.94369265739849],[-93.03564211215655,44.9439419065708],[-93.03592904627965,44.94419115466094],[-93.03620945917271,44.94439886080153],[-93.03648335083568,44.94456502499255],[-93.03682245479938,44.94474503559161],[-93.03722677106376,44.94493889259871],[-93.0376636934785,44.94514659573328],[-93.03813322204361,44.94536814499533],[-93.03855058076815,44.94557123116572],[-93.03891576965214,44.94575585424445],[-93.03922226746546,44.94593124566155],[-93.03947007420814,44.94609740541704],[-93.03969831726062,44.94627279570597],[-93.03990699662289,44.94645741652833],[-93.04007654860473,44.94663280580189],[-93.04020697320614,44.94679896352665],[-93.04034391903764,44.94697896712059],[-93.04051623262468,44.94725325501611],[-93.0409012785575,44.95271924631474],[-93.04038304641807,44.95271109636472],[-93.03972440218092,44.95269032880844],[-93.03899402441297,44.95265802371571],[-93.03827668910519,44.95261879607155],[-93.03757239625754,44.95257264587599],[-93.03691701263543,44.95252188061188],[-93.03631053823881,44.95246650027922],[-93.03498346791939,44.95229343586291],[-93.03293580167714,44.95200268736296],[-93.03133483969475,44.95178577921116],[-93.03018058197219,44.95164271140754],[-93.02915674885107,44.95152041129454],[-93.02826334033136,44.95141887887215],[-93.02751013825818,44.95135426729946],[-93.02689714263153,44.95132657657646],[-93.0261863285538,44.95130119340351],[-93.02537769602502,44.95127811778059],[-93.02463427579694,44.95127119509483],[-93.02395606786956,44.95128042534622],[-93.02304635627468,44.95131503875275],[-93.02190514101228,44.95137503531443],[-93.02069871344918,44.9514396469183],[-93.01942707358535,44.95150887356436],[-93.01835759185373,44.95155040954197],[-93.0174902682543,44.95156425485115],[-93.01673054495105,44.95156194729888],[-93.01607842194396,44.95154348688516],[-93.01551759615786,44.95151810380202],[-93.01504806759277,44.95148579804945],[-93.01452310857206,44.95143964692609],[-93.01394271909577,44.95137965043197],[-93.01330037793377,44.95131042361334],[-93.01259608508612,44.95123196647022],[-93.0118591860881,44.95114658650067],[-93.01108968093975,44.95105428370472],[-93.01030713333125,44.95096428834117],[-93.0095115432626,44.95087660041002],[-93.00875508057439,44.95078429716874],[-93.00803774526658,44.95068737861732],[-93.00695848168985,44.95053969269497],[-93.00500817810523,44.95027113429979],[-93.00500256572857,44.94862430329221],[-93.00495177353275,44.94463912970852],[-93.00490569506731,44.9410392235011],[-93.00486473212709,44.93743307580873],[-93.00482387810028,44.93382713339664],[-93.00482339568737,44.9329654947302]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000595,"geom:area_square_m":5205592.016791,"geom:bbox":"-93.0409012786,44.9283774546,-93.0048233957,44.9527192463","geom:latitude":44.942341,"geom:longitude":-93.020651,"iso:country":"US","lbl:latitude":44.940759,"lbl:longitude":-93.01919,"lbl:max_zoom":18,"mps:latitude":44.940759,"mps:longitude":-93.01919,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.940759,"reversegeo:longitude":-93.01919,"src:geom":"mz","wof:belongsto":[1108800557,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"94463847ae5169ebc6119a6520d8aaac","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800627,"neighbourhood_id":1108800557,"region_id":85688727}],"wof:id":1108800627,"wof:lastmodified":1566623865,"wof:name":"Battle Creek","wof:parent_id":1108800557,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800629.geojson b/fixtures/microhoods/1108800629.geojson new file mode 100644 index 0000000..47eada3 --- /dev/null +++ b/fixtures/microhoods/1108800629.geojson @@ -0,0 +1 @@ +{"id":1108800629,"type":"Feature","bbox":[-93.02279305598057,44.8907560477912,-93.00432023434075,44.93300942711862],"geometry":{"type":"Polygon","coordinates":[[[-93.02279305598057,44.92837745463078],[-93.02185102210467,44.92891240202929],[-93.02127070038905,44.9292417413115],[-93.02099435671497,44.92939825762181],[-93.02067656148975,44.92954499131285],[-93.02031731471341,44.92968194238462],[-93.01970475290248,44.929864543088],[-93.01883887605698,44.93009279342299],[-93.01800063357888,44.93031778217035],[-93.01719002546818,44.93053950933008],[-93.01656364647356,44.9307123257141],[-93.01612149659499,44.93083623132242],[-93.01573922117915,44.93096339731586],[-93.01541682022602,44.93109382369443],[-93.0150759963613,44.93126989862575],[-93.01471674958496,44.93149162210982],[-93.01438513717605,44.93170356292946],[-93.01408115913455,44.93190572108468],[-93.01374494099773,44.9321095088187],[-93.01337648276561,44.93231492613153],[-93.01304026462878,44.93248121596896],[-93.01273628658727,44.932608378331],[-93.01242539995391,44.9327208679212],[-93.01210760472868,44.93281868473957],[-93.01182435246274,44.93289204729088],[-93.01157564315605,44.93294095557512],[-93.01133384244122,44.93297519136242],[-93.01109895031824,44.93299475465279],[-93.01036203385397,44.93300616657152],[-93.00912309304842,44.93300942711862],[-93.00705512122056,44.93299312437294],[-93.00482339568737,44.9329654947302],[-93.00482186324923,44.93022840391141],[-93.00481995185466,44.92662996523858],[-93.00481803647402,44.92303216706457],[-93.00481612133285,44.91943436694961],[-93.00471700201037,44.91583371368726],[-93.00461789606892,44.91223310161757],[-93.00454886762303,44.90864561501898],[-93.00448008805856,44.90505817049473],[-93.00440590588657,44.90148668956435],[-93.00433173417655,44.89791520766035],[-93.00432610402153,44.89433688011827],[-93.00432023434075,44.89075850767689],[-93.00665579128251,44.8907560477912],[-93.00827903077916,44.89476805659748],[-93.00910722699817,44.89683305587064],[-93.00958979802343,44.89806183013384],[-93.00988325337661,44.89892104091084],[-93.00998759305773,44.89941068820163],[-93.01007236904866,44.89991880809495],[-93.01013758134937,44.90044540059078],[-93.01021583611022,44.9009627500497],[-93.0103071333312,44.90147085647168],[-93.01037886686197,44.90191891092908],[-93.01043103670256,44.90230691342188],[-93.01052885515361,44.90266719936675],[-93.01067232221519,44.90299976876369],[-93.01095273510822,44.90363718299363],[-93.01137009383277,44.90457944205659],[-93.01210699283077,44.90639459154508],[-93.01316343210226,44.90908263145913],[-93.01381555510935,44.9107591730377],[-93.01406336185202,44.91142421628083],[-93.01425247752408,44.91200612406847],[-93.0143829021255,44.91250489640064],[-93.0145394116472,44.91323918772048],[-93.0147220060892,44.91420899802798],[-93.01491764299132,44.91511875900726],[-93.0151263223536,44.91596847065831],[-93.01531543802565,44.9166796352795],[-93.01548499000748,44.91725225287084],[-93.01564802075926,44.91777406946294],[-93.01580453028096,44.91824508505578],[-93.01603929456351,44.91878074425128],[-93.0163523136069,44.91938104704944],[-93.01684792709229,44.92038768390869],[-93.01752613501965,44.92180065482902],[-93.01814565187638,44.92301043226374],[-93.01870647766248,44.92401701621282],[-93.01918904868772,44.92476040456683],[-93.01959336495212,44.92524059732575],[-93.02008245720742,44.925771574326],[-93.02065632545367,44.92635333556757],[-93.02134757584118,44.92701819690063],[-93.02215620836996,44.92776615832518],[-93.02279305598057,44.92837745463078]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00039,"geom:area_square_m":3412986.572846,"geom:bbox":"-93.022793056,44.8907560478,-93.0043202343,44.9330094271","geom:latitude":44.916602,"geom:longitude":-93.010147,"iso:country":"US","lbl:latitude":44.917107,"lbl:longitude":-93.010007,"lbl:max_zoom":18,"mps:latitude":44.917107,"mps:longitude":-93.010007,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.917107,"reversegeo:longitude":-93.010007,"src:geom":"mz","wof:belongsto":[1108800557,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"277c974f7ae53c6f8c1a87fa754eda60","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800629,"neighbourhood_id":1108800557,"region_id":85688727}],"wof:id":1108800629,"wof:lastmodified":1566623865,"wof:name":"Highwood Hills","wof:parent_id":1108800557,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800631.geojson b/fixtures/microhoods/1108800631.geojson new file mode 100644 index 0000000..a9f5953 --- /dev/null +++ b/fixtures/microhoods/1108800631.geojson @@ -0,0 +1 @@ +{"id":1108800631,"type":"Feature","bbox":[-93.02533856864459,44.95027113429979,-93.00500817810523,44.96304508541915],"geometry":{"type":"Polygon","coordinates":[[[-93.02524920406177,44.95127692127093],[-93.02526031388372,44.95377715383828],[-93.02528639880401,44.9575058917333],[-93.02533856864459,44.96162198931888],[-93.02532228317855,44.96304508541915],[-93.0050502494359,44.96303599843238],[-93.00503867203311,44.95943253340558],[-93.00502712241476,44.95582910866569],[-93.00501484266921,44.95222670700791],[-93.00500817810523,44.95027113429979],[-93.00695848168985,44.95053969269497],[-93.00803774526658,44.95068737861732],[-93.00875508057439,44.95078429716874],[-93.0095115432626,44.95087660041002],[-93.01030713333125,44.95096428834117],[-93.01108968093975,44.95105428370472],[-93.0118591860881,44.95114658650067],[-93.01259608508612,44.95123196647022],[-93.01330037793377,44.95131042361334],[-93.01394271909577,44.95137965043197],[-93.01452310857206,44.95143964692609],[-93.01504806759277,44.95148579804945],[-93.01551759615786,44.95151810380202],[-93.01607842194396,44.95154348688516],[-93.01673054495105,44.95156194729888],[-93.0174902682543,44.95156425485115],[-93.01835759185373,44.95155040954197],[-93.01942707358535,44.95150887356436],[-93.02069871344918,44.9514396469183],[-93.02190514101228,44.95137503531443],[-93.02304635627468,44.95131503875275],[-93.02395606786956,44.95128042534622],[-93.02463427579694,44.95127119509483],[-93.02524920406177,44.95127692127093]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00024,"geom:area_square_m":2102413.345495,"geom:bbox":"-93.0253385686,44.9502711343,-93.0050081781,44.9630450854","geom:latitude":44.957108,"geom:longitude":-93.01502,"iso:country":"US","lbl:latitude":44.957262,"lbl:longitude":-93.01502,"lbl:max_zoom":18,"mps:latitude":44.957262,"mps:longitude":-93.01502,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Conway"],"name:ceb_x_preferred":["Conway"],"name:ces_x_preferred":["Conway"],"name:deu_x_preferred":["Conway"],"name:eng_x_variant":["SunRay"],"name:fas_x_preferred":["کانوی"],"name:fin_x_preferred":["Conway"],"name:fra_x_preferred":["Conway"],"name:hun_x_preferred":["Conway"],"name:ita_x_preferred":["Conway"],"name:jpn_x_preferred":["コンウェイ"],"name:kor_x_preferred":["콘웨이"],"name:nld_x_preferred":["Conway"],"name:pol_x_preferred":["Conway"],"name:por_x_preferred":["Conway"],"name:rus_x_preferred":["Конуэй"],"name:slv_x_preferred":["Conway"],"name:spa_x_preferred":["Conway"],"name:srp_x_preferred":["Конвеј"],"name:swe_x_preferred":["Conway"],"name:ukr_x_preferred":["Конвей"],"name:urd_x_preferred":["کونوے"],"name:vol_x_preferred":["Conway"],"reversegeo:latitude":44.957262,"reversegeo:longitude":-93.01502,"src:geom":"mz","wof:belongsto":[1108800557,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"d02c0c31ee3c2635f8807a69b6740eb6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800631,"neighbourhood_id":1108800557,"region_id":85688727}],"wof:id":1108800631,"wof:lastmodified":1566623867,"wof:name":"Conway","wof:parent_id":1108800557,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781049],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800633.geojson b/fixtures/microhoods/1108800633.geojson new file mode 100644 index 0000000..3cd338d --- /dev/null +++ b/fixtures/microhoods/1108800633.geojson @@ -0,0 +1 @@ +{"id":1108800633,"type":"Feature","bbox":[-93.04090377125738,44.95127692127093,-93.02524920406177,44.96305147706018],"geometry":{"type":"Polygon","coordinates":[[[-93.02532228317855,44.96304508541915],[-93.02533856864459,44.96162198931888],[-93.02528639880401,44.9575058917333],[-93.02526031388372,44.95377715383828],[-93.02524920406177,44.95127692127093],[-93.02537769602502,44.95127811778059],[-93.0261863285538,44.95130119340351],[-93.02689714263153,44.95132657657646],[-93.02751013825818,44.95135426729946],[-93.02826334033136,44.95141887887215],[-93.02915674885107,44.95152041129454],[-93.03018058197219,44.95164271140754],[-93.03133483969475,44.95178577921116],[-93.03293580167714,44.95200268736296],[-93.03498346791939,44.95229343586291],[-93.03631053823881,44.95246650027922],[-93.03691701263543,44.95252188061188],[-93.03757239625754,44.95257264587599],[-93.03827668910519,44.95261879607155],[-93.03899402441297,44.95265802371571],[-93.03972440218092,44.95269032880844],[-93.04038304641807,44.95271109636472],[-93.0409012785575,44.95271924631474],[-93.04090377125738,44.95275463190049],[-93.03945530342794,44.9539867575516],[-93.03949343349679,44.95765367801504],[-93.03631052913,44.95768667890498],[-93.03629458095209,44.96033014084892],[-93.03959748282298,44.96034013806201],[-93.03958130718776,44.96305147706018],[-93.02532228317855,44.96304508541915]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00015,"geom:area_square_m":1314634.765799,"geom:bbox":"-93.0409037713,44.9512769213,-93.0252492041,44.9630514771","geom:latitude":44.957377,"geom:longitude":-93.031952,"iso:country":"US","lbl:latitude":44.957397,"lbl:longitude":-93.031019,"lbl:max_zoom":18,"mps:latitude":44.957397,"mps:longitude":-93.031019,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["Eastview"],"name:por_x_preferred":["Eastview"],"reversegeo:latitude":44.957397,"reversegeo:longitude":-93.031019,"src:geom":"mz","wof:belongsto":[1108800557,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"06ab04451582e69d04e6688a17a478f1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800633,"neighbourhood_id":1108800557,"region_id":85688727}],"wof:id":1108800633,"wof:lastmodified":1566623867,"wof:name":"Eastview","wof:parent_id":1108800557,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781047],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800635.geojson b/fixtures/microhoods/1108800635.geojson new file mode 100644 index 0000000..a98870e --- /dev/null +++ b/fixtures/microhoods/1108800635.geojson @@ -0,0 +1 @@ +{"id":1108800635,"type":"Feature","bbox":[-93.12862859386367,44.91963951297063,-93.09599194741953,44.93289610249069],"geometry":{"type":"Polygon","coordinates":[[[-93.0960729326705,44.92959336560356],[-93.09606425133421,44.92904173356805],[-93.09603822721473,44.9273881012791],[-93.0960349741998,44.92574133130577],[-93.0960325623838,44.92327865437154],[-93.09599194741953,44.91967010507852],[-93.09932170912836,44.91969884498182],[-93.10578437917638,44.9197546551792],[-93.11083172710495,44.91972654695758],[-93.11434628982477,44.9197068653229],[-93.11587906988801,44.91969825761293],[-93.12025519857328,44.91967364032944],[-93.1209261656051,44.91966978658895],[-93.12576987111662,44.91964161914974],[-93.12597325910507,44.91964075025151],[-93.12862859386367,44.91963951297063],[-93.12253272540313,44.92252870793213],[-93.11562456299491,44.92432267119172],[-93.110623928659,44.92672411800296],[-93.10518474237671,44.93191464946633],[-93.10439842496478,44.93289610249069],[-93.10338028192318,44.93207366832902],[-93.10288094413065,44.93166604617589],[-93.10264347404038,44.93146568737924],[-93.10244341362188,44.93127914586965],[-93.10228076287514,44.93110642164709],[-93.10217016036735,44.93095442398383],[-93.10211160609853,44.93082315287988],[-93.10208232896412,44.9307575173279],[-93.10201564215794,44.93079321389338],[-93.10188226854561,44.93086460702435],[-93.10173425636606,44.93094751504015],[-93.10157160561931,44.93104193794075],[-93.10139594281281,44.93114442113563],[-93.10120726794658,44.93125496462477],[-93.10103323164755,44.93135053854895],[-93.10087383391574,44.9314311429082],[-93.10061847224334,44.93154514020941],[-93.10026714663034,44.93169253045262],[-93.0999385921219,44.93182610258201],[-93.099632808718,44.93194585659759],[-93.09926521803034,44.93208863981931],[-93.09883582005891,44.93225445224717],[-93.09846497635631,44.93239378047183],[-93.09815268692255,44.93250662449326],[-93.09794124095177,44.9325860758324],[-93.09783063844398,44.93263213448923],[-93.09772654196607,44.93266322407386],[-93.097628951518,44.9326793445863],[-93.09754599963716,44.93268510191263],[-93.09747768632353,44.93268049605285],[-93.0974191320547,44.93266898139973],[-93.09737033683066,44.93265055795326],[-93.09729063796476,44.93261486249278],[-93.09718003545697,44.93256189501832],[-93.0970531678745,44.93249050396282],[-93.09691003521735,44.93240068932631],[-93.09671322781377,44.93225675511758],[-93.09670320950141,44.9322488337362],[-93.09701489673073,44.93197584608915],[-93.0975021582276,44.93154514955586],[-93.09774578897603,44.93132980128922],[-93.09775142205692,44.93125801781592],[-93.09776268821868,44.93111445086932],[-93.09776550475912,44.93067776252458],[-93.09775705513779,44.92958304791023],[-93.09626288043201,44.9295930181144],[-93.0960729326705,44.92959336560356]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000224,"geom:area_square_m":1962817.22588,"geom:bbox":"-93.1286285939,44.919639513,-93.0959919474,44.9328961025","geom:latitude":44.924377,"geom:longitude":-93.106937,"iso:country":"US","lbl:latitude":44.925404,"lbl:longitude":-93.103973,"lbl:max_zoom":18,"mps:latitude":44.925404,"mps:longitude":-93.103973,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["Cherokee Heights","Cherokee","Riverview"],"reversegeo:latitude":44.925404,"reversegeo:longitude":-93.103973,"src:geom":"mz","wof:belongsto":[1108800545,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"3689a82dc07e87eb15a4b3a704a6c0fc","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800635,"neighbourhood_id":1108800545,"region_id":85688727}],"wof:id":1108800635,"wof:lastmodified":1566623867,"wof:name":"Cherokee/Riverview","wof:parent_id":1108800545,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420780979],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800637.geojson b/fixtures/microhoods/1108800637.geojson new file mode 100644 index 0000000..979b737 --- /dev/null +++ b/fixtures/microhoods/1108800637.geojson @@ -0,0 +1 @@ +{"id":1108800637,"type":"Feature","bbox":[-93.20017255045596,44.94836890998975,-93.19242263575072,44.95573581104638],"geometry":{"type":"Polygon","coordinates":[[[-93.19789532482483,44.94839102215807],[-93.19807751110822,44.94923465796712],[-93.1982026177233,44.94972936907651],[-93.1983138236034,44.9500751008041],[-93.19839722801345,44.95032526373805],[-93.19845283095347,44.95047985787836],[-93.19850843389351,44.95060072220458],[-93.19856403683355,44.95068785671668],[-93.1986335405086,44.95077358570748],[-93.19871694491864,44.95085790917697],[-93.19888573955804,44.95100125856963],[-93.19913992442676,44.95120363388548],[-93.19949340025984,44.95148751967393],[-93.19994616705725,44.95185291593498],[-93.20017255045596,44.95203561406551],[-93.2001665929981,44.95232792623557],[-93.20015467808237,44.95291255057569],[-93.20014872062451,44.95380492724057],[-93.20014872062451,44.95500505623022],[-93.20014872062451,44.95560512072504],[-93.19866332779787,44.95560512072504],[-93.19569254214463,44.95560512072504],[-93.1941733903901,44.95561074181945],[-93.19410587253435,44.95562198400827],[-93.19404034049788,44.95564165782908],[-93.1939767942807,44.95566976328185],[-93.19391126224423,44.95569365290852],[-93.19384374438849,44.95571332670907],[-93.19375041088199,44.9557273794217],[-93.19363126172478,44.95573581104638],[-93.19352998494114,44.95572878468973],[-93.19344658053109,44.95570630035174],[-93.19333736047031,44.95566554744721],[-93.19320232475879,44.95560652597614],[-93.19306927486656,44.95554750444438],[-93.19293821079363,44.95548848285191],[-93.19276743033495,44.95543227175915],[-93.19255693349052,44.9553788711661],[-93.19242263575072,44.95534873755998],[-93.19244649349218,44.94836890998975],[-93.19573508110075,44.94836890998975],[-93.19789532482483,44.94839102215807]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":438560.98483,"geom:bbox":"-93.2001725505,44.94836891,-93.1924226358,44.955735811","geom:latitude":44.952238,"geom:longitude":-93.195963,"iso:country":"US","lbl:latitude":44.952297,"lbl:longitude":-93.195705,"lbl:max_zoom":18,"mps:latitude":44.952297,"mps:longitude":-93.195705,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":44.952297,"reversegeo:longitude":-93.195705,"src:geom":"mz","wof:belongsto":[1108800559,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"84fce141ede4a30a17651969d3669b9e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800637,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800637,"wof:lastmodified":1566623867,"wof:name":"Town and Country Club","wof:parent_id":1108800559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108800641.geojson b/fixtures/microhoods/1108800641.geojson new file mode 100644 index 0000000..49e9a9f --- /dev/null +++ b/fixtures/microhoods/1108800641.geojson @@ -0,0 +1 @@ +{"id":1108800641,"type":"Feature","bbox":[-93.19244900204589,44.94145782813195,-93.16699189157387,44.95983207052751],"geometry":{"type":"Polygon","coordinates":[[[-93.18229614471726,44.95783659224004],[-93.18231935900575,44.95562436095288],[-93.18232636136673,44.95469674693387],[-93.18232356042235,44.95444303345479],[-93.18232075947795,44.95428347128022],[-93.18231795853355,44.95421806041015],[-93.18231235664476,44.95416355131034],[-93.18230395381156,44.95411994398079],[-93.18229835192277,44.954073363384],[-93.18229555097837,44.95402380951997],[-93.18229134956178,44.95396137156935],[-93.18228574767298,44.95388604953212],[-93.18228714814518,44.95381072739605],[-93.18229555097838,44.9537354051611],[-93.18232496089453,44.95359070664369],[-93.18237537789368,44.9533766318438],[-93.18242859583721,44.95316255624537],[-93.18248461472515,44.95294847984839],[-93.18251262416912,44.95284144164989],[-93.1822633401178,44.95276314468418],[-93.18176477201516,44.95260655075275],[-93.18139364688257,44.95249455622725],[-93.18114996472002,44.95242716110765],[-93.18094129436246,44.95237165920229],[-93.18076763580984,44.95232805051113],[-93.18057297017427,44.95227849513236],[-93.1803572974557,44.95222299306597],[-93.18014442568153,44.95217442872265],[-93.17993435485178,44.9521328021024],[-93.17971167977223,44.95209414878815],[-93.17947640044288,44.95205846877988],[-93.17922711639156,44.95202377986259],[-93.17896382761825,44.95199008203625],[-93.17871734451133,44.95196233087461],[-93.17848766707078,44.95194052637767],[-93.17824258443606,44.95192367744473],[-93.17798209660714,44.95191178407578],[-93.17767819414007,44.95190682850555],[-93.17733087703488,44.95190881073404],[-93.17702837504001,44.95191277519064],[-93.17677068815549,44.95191872187532],[-93.17664184471323,44.95192169521766],[-93.17664184471323,44.95203963730021],[-93.17664184471323,44.9522755214653],[-93.17664604612983,44.95246184968948],[-93.176654448963,44.95259862197273],[-93.176668453685,44.95272845625344],[-93.17668806029577,44.95285135253162],[-93.17671466926754,44.95297127526836],[-93.17674828060032,44.95308822446367],[-93.17679729712725,44.95321508430541],[-93.17686171884839,44.95335185479356],[-93.1769317424583,44.95350150903428],[-93.17700736795702,44.95366404702757],[-93.17706618778935,44.95379586114359],[-93.17710820195529,44.95389695138235],[-93.17713901234366,44.95397029130122],[-93.17715861895445,44.95401588090022],[-93.17717402414863,44.95407138121834],[-93.17718522792622,44.9541367922556],[-93.1771922302872,44.95426166747105],[-93.17719503123159,44.9544460068647],[-93.1771922302872,44.95490982255723],[-93.1771817746358,44.95583470131937],[-93.1761922944453,44.9556411646288],[-93.16699189157387,44.95566541501512],[-93.16699189157387,44.95433117219631],[-93.16699387399031,44.95371670521377],[-93.16699783882316,44.95342489877655],[-93.16700973332175,44.95316395543558],[-93.16702955748607,44.95293387519087],[-93.16705136406681,44.95267713804027],[-93.16707515306399,44.9523937439838],[-93.16709299481187,44.95216786984057],[-93.16710488931045,44.95199951561055],[-93.16711083655974,44.9518283549579],[-93.16711083655974,44.95165438788257],[-93.16710488931045,44.95147761433357],[-93.16709299481187,44.95129803431087],[-93.16707713548041,44.9510819761454],[-93.16705731131609,44.95082943983715],[-93.1670335223189,44.95059514138026],[-93.16700576848886,44.95037908077474],[-93.16699387399028,44.94979682991134],[-93.16699783882314,44.94884838879004],[-93.167001803656,44.94780171543317],[-93.16700576848885,44.94665680984073],[-93.16700775090527,44.94538559694878],[-93.16700775090527,44.94398807675734],[-93.1670037860724,44.94281223199312],[-93.16699253024026,44.94145782813195],[-93.19244900204589,44.94148647191623],[-93.19243818601025,44.94441860910619],[-93.19244649349218,44.94836890998975],[-93.19241916646762,44.95636371200128],[-93.18738193346636,44.95437119617621],[-93.18736333038666,44.95983207052751],[-93.18229614471726,44.95783659224004]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000357,"geom:area_square_m":3120923.54382,"geom:bbox":"-93.192449002,44.9414578281,-93.1669918916,44.9598320705","geom:latitude":44.948654,"geom:longitude":-93.179945,"iso:country":"US","lbl:latitude":44.946828,"lbl:longitude":-93.180187,"lbl:max_zoom":18,"mps:latitude":44.946828,"mps:longitude":-93.180187,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":44.946828,"reversegeo:longitude":-93.180187,"src:geom":"mz","wof:belongsto":[1108800559,102191575,404514465,85633793,85953191,102087007,85688727],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"da5d031430a57c969efeada5b73c39f4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087007,"localadmin_id":404514465,"locality_id":85953191,"microhood_id":1108800641,"neighbourhood_id":1108800559,"region_id":85688727}],"wof:id":1108800641,"wof:lastmodified":1566623867,"wof:name":"Merriam Park","wof:parent_id":1108800559,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420781009],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108815091.geojson b/fixtures/microhoods/1108815091.geojson new file mode 100644 index 0000000..19b6012 --- /dev/null +++ b/fixtures/microhoods/1108815091.geojson @@ -0,0 +1 @@ +{"id":1108815091,"type":"Feature","bbox":[-122.284682582903,37.79554212928525,-122.27769087401379,37.80122724714742],"geometry":{"type":"Polygon","coordinates":[[[-122.28397081498494,37.80122724714742],[-122.27769087401379,37.79872524848933],[-122.27969829461784,37.79554212928525],[-122.280130526006,37.7957430800749],[-122.280674533076,37.7957180837926],[-122.281480543319,37.7959560816072],[-122.281330541133,37.7962400728311],[-122.282268553047,37.7965830684222],[-122.283161565121,37.7959560909266],[-122.282792559888,37.7965520721875],[-122.281891547034,37.7979530279956],[-122.281889547006,37.7979560279006],[-122.283080562244,37.7984510205775],[-122.284081575054,37.7989510120458],[-122.284682582903,37.7990510125283],[-122.284481579871,37.799650994599],[-122.284182575326,37.8005509677297],[-122.284153574886,37.8006349652166],[-122.283981572255,37.801151949787],[-122.28397081498494,37.80122724714742]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":190917.833493,"geom:bbox":"-122.284682583,37.7955421293,-122.277690874,37.8012272471","geom:latitude":37.798388,"geom:longitude":-122.281181,"iso:country":"US","lbl:latitude":37.797901,"lbl:longitude":-122.280257,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"src:geom":"mz","wof:belongsto":[85872423,102191575,1108794093,85633793,85921881,102086959,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"e2697f5bfd1442aad924c2bf409aafec","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086959,"locality_id":85921881,"macrohood_id":1108794093,"microhood_id":1108815091,"neighbourhood_id":85872423,"region_id":85688637}],"wof:id":1108815091,"wof:lastmodified":1566623927,"wof:name":"Ironworks District","wof:parent_id":85872423,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[1108785889],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108815095.geojson b/fixtures/microhoods/1108815095.geojson new file mode 100644 index 0000000..23f5c23 --- /dev/null +++ b/fixtures/microhoods/1108815095.geojson @@ -0,0 +1 @@ +{"id":1108815095,"type":"Feature","bbox":[-122.27769562034494,37.80156538039969,-122.27120353968733,37.80620196279775],"geometry":{"type":"Polygon","coordinates":[[[-122.27598272609977,37.80620196279775],[-122.27120353968733,37.80432230231403],[-122.27294815419627,37.80156538039969],[-122.27769562034494,37.80343675679683],[-122.27598272609977,37.80620196279775]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":160169.434909,"geom:bbox":"-122.27769562,37.8015653804,-122.27120354,37.8062019628","geom:latitude":37.803883,"geom:longitude":-122.274456,"iso:country":"US","lbl:latitude":37.80388,"lbl:longitude":-122.274455,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"src:geom":"mz","wof:belongsto":[85872277,102191575,1108794093,85633793,85921881,102086959,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:belongsto","wof:hierarchy"],"wof:country":"US","wof:geomhash":"fb6db943229b0605c96f650fe05a6cde","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086959,"locality_id":85921881,"macrohood_id":1108794093,"microhood_id":1108815095,"neighbourhood_id":85872277,"region_id":85688637}],"wof:id":1108815095,"wof:lastmodified":1566623928,"wof:name":"City Center","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[1108785885],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108815097.geojson b/fixtures/microhoods/1108815097.geojson new file mode 100644 index 0000000..d919404 --- /dev/null +++ b/fixtures/microhoods/1108815097.geojson @@ -0,0 +1 @@ +{"id":1108815097,"type":"Feature","bbox":[-122.267371332394,37.81155989412252,-122.24855418937238,37.83791598725163],"geometry":{"type":"Polygon","coordinates":[[[-122.24855418937238,37.83791598725163],[-122.25152522697248,37.83345775589148],[-122.25510320464218,37.82835572781309],[-122.25765614006053,37.82423107598905],[-122.26024775631862,37.82012147139694],[-122.2626459683783,37.8162255383026],[-122.2656261355303,37.81155989412252],[-122.26616931611,37.8116585632641],[-122.267371332394,37.8119585611777],[-122.266870324312,37.8125585420233],[-122.26616931228,37.813759505269],[-122.265769305338,37.8144594839094],[-122.265268296735,37.8152604592651],[-122.264767288274,37.8159604374249],[-122.264266279572,37.8167604128461],[-122.263665268984,37.8177613822491],[-122.262764253373,37.819062341929],[-122.261663233645,37.8208632869295],[-122.261663233222,37.8210632814307],[-122.26126222673,37.821363271208],[-122.260862218937,37.8222632445116],[-122.260662214912,37.822764229769],[-122.259263189821,37.8247591681947],[-122.259312190503,37.8247791678832],[-122.258411173654,37.8262801223725],[-122.258210169719,37.8266801104431],[-122.257409154635,37.8279810709683],[-122.256809143429,37.8288810434729],[-122.255907126332,37.8302820008747],[-122.255607120777,37.8306809885516],[-122.25500610909,37.8316819583701],[-122.253604082141,37.8337828944679],[-122.253604081614,37.8339828890085],[-122.253103072021,37.8346828675963],[-122.252903067853,37.8350838557371],[-122.252202054267,37.8360838252569],[-122.25170104454,37.836784803867],[-122.251501040311,37.837184792059],[-122.251301036072,37.837584780255],[-122.249797990528,37.8375847739111],[-122.24855418937238,37.83791598725163]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000054,"geom:area_square_m":526623.71449,"geom:bbox":"-122.267371332,37.8115598941,-122.248554189,37.8379159873","geom:latitude":37.825268,"geom:longitude":-122.257937,"iso:country":"US","lbl:latitude":37.825681,"lbl:longitude":-122.257796,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"src:geom":"mz","wof:belongsto":[85872355,102191575,1108794075,85633793,85921881,102086959,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:belongsto","wof:parent_id"],"wof:country":"US","wof:geomhash":"37bfd7b433be837308705e814a4b4859","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086959,"locality_id":85921881,"macrohood_id":1108794075,"microhood_id":1108815097,"neighbourhood_id":85872355,"region_id":85688637}],"wof:id":1108815097,"wof:lastmodified":1566623927,"wof:name":"Broadway Auto Row","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[1108785883],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108815099.geojson b/fixtures/microhoods/1108815099.geojson new file mode 100644 index 0000000..6a9f9be --- /dev/null +++ b/fixtures/microhoods/1108815099.geojson @@ -0,0 +1 @@ +{"id":1108815099,"type":"Feature","bbox":[-122.27969829461784,37.79129523336785,-122.27038198739436,37.79702718287569],"geometry":{"type":"Polygon","coordinates":[[[-122.27876175187959,37.79702718287569],[-122.27038198739436,37.79373441228435],[-122.27183046934358,37.79129523336785],[-122.273679446834,37.792450135779],[-122.274280453193,37.7934501113609],[-122.274781460117,37.7930501252945],[-122.275382467431,37.7933501203205],[-122.275682470909,37.7936501136521],[-122.276683483283,37.7940511080861],[-122.277906498294,37.7947090965717],[-122.27969829461784,37.79554212928525],[-122.27876175187959,37.79702718287569]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":186630.748265,"geom:bbox":"-122.279698295,37.7912952334,-122.270381987,37.7970271829","geom:latitude":37.794315,"geom:longitude":-122.274818,"iso:country":"US","lbl:latitude":37.794304,"lbl:longitude":-122.274888,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Jack London Square"],"name:eng_x_preferred":["Jack London Square"],"name:fra_x_preferred":["Jack London Square"],"name:nld_x_preferred":["Jack London Square"],"name:pol_x_preferred":["Jack London Square"],"name:ron_x_preferred":["Jack London Square"],"name:urd_x_preferred":["جیک لندن اسکوائر"],"src:geom":"mz","wof:belongsto":[85872423,102191575,1108794093,85633793,85921881,102086959,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1833634"},"wof:country":"US","wof:geomhash":"884c142ef2badcf6db5093525a8e4029","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086959,"locality_id":85921881,"macrohood_id":1108794093,"microhood_id":1108815099,"neighbourhood_id":85872423,"region_id":85688637}],"wof:id":1108815099,"wof:lastmodified":1566623927,"wof:name":"Jack London Square","wof:parent_id":85872423,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[1108794055],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108826371.geojson b/fixtures/microhoods/1108826371.geojson new file mode 100644 index 0000000..fab1d78 --- /dev/null +++ b/fixtures/microhoods/1108826371.geojson @@ -0,0 +1 @@ +{"id":1108826371,"type":"Feature","bbox":[-117.16981782682264,32.98501826673261,-117.16514133423621,32.99278259979683],"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.16976942517654,32.99276600088032],[-117.16894979285287,32.99275293133911],[-117.16541842023462,32.99278259979683],[-117.16543610657494,32.99106181276197],[-117.16545968836205,32.98950911980389],[-117.16514133423621,32.98940527630672],[-117.16520618415075,32.98918769905936],[-117.1652651386185,32.98897012127564],[-117.16530051129914,32.98878715772421],[-117.1652828249588,32.9885349640992],[-117.16524745227815,32.98837177960494],[-117.16520028870396,32.98811463978961],[-117.16520618415075,32.98786738926074],[-117.16522976593785,32.98763497313212],[-117.16527692951206,32.98741244647807],[-117.1653181976395,32.98726904011487],[-117.1653358839798,32.98707123785229],[-117.1653358839798,32.98680914917165],[-117.165329988533,32.98513769739333],[-117.16981782682264,32.98501826673261],[-117.16980783471634,32.98605567250117],[-117.16980773810559,32.98621436919664],[-117.16980756942436,32.98646961593724],[-117.16980757063264,32.98646973136548],[-117.16980756993203,32.98646997598771],[-117.16980758994647,32.98647126488808],[-117.16980759735014,32.98647166061791],[-117.16980761837995,32.98647366961922],[-117.16980762249385,32.986474062625],[-117.16980766994159,32.98647921846903],[-117.16980765770144,32.98648023001015],[-117.1698076520611,32.9864806258369],[-117.16980546826846,32.9865791952441],[-117.16980545607736,32.98657958837107],[-117.16980603711676,32.98663416112957],[-117.16980603179283,32.98663458718755],[-117.16980093732609,32.98723616027138],[-117.1698003272714,32.98730873360142],[-117.16978416052797,32.98921791348458],[-117.16978415817721,32.98921831203531],[-117.1697842907146,32.98923097341402],[-117.16978429482852,32.98923136641973],[-117.16977756158005,32.9907681249829],[-117.16977755591056,32.99076851806129],[-117.16977948005044,32.99076850925355],[-117.16978027245393,32.99076849786547],[-117.16978081706705,32.99076849381662],[-117.16977475542343,32.99174661363126],[-117.16977475301503,32.99174700668541],[-117.16976939790827,32.99276272348586],[-117.16976942517654,32.99276600088032]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000034,"geom:area_square_m":353967.483371,"geom:bbox":"-117.169817827,32.9850182667,-117.165141334,32.9927825998","geom:latitude":32.988891,"geom:longitude":-117.167574,"iso:country":"US","lbl:latitude":32.988921,"lbl:longitude":-117.167576,"lbl:max_zoom":18,"mps:latitude":32.988921,"mps:longitude":-117.167576,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":18,"reversegeo:latitude":32.988921,"reversegeo:longitude":-117.167576,"src:geom":"mz","wof:belongsto":[85871215,102191575,85633793,85922227,102083569,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"fe28504793b2f96f028e51b139c9f272","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102083569,"locality_id":85922227,"microhood_id":1108826371,"neighbourhood_id":85871215,"region_id":85688637}],"wof:id":1108826371,"wof:lastmodified":1566624123,"wof:name":"Santa Monica","wof:parent_id":85871215,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887361],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108826373.geojson b/fixtures/microhoods/1108826373.geojson new file mode 100644 index 0000000..d90c65b --- /dev/null +++ b/fixtures/microhoods/1108826373.geojson @@ -0,0 +1 @@ +{"id":1108826373,"type":"Feature","bbox":[-117.23484616225464,32.70790945608907,-117.22015738987807,32.71984454378045],"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.22485247882817,32.71851594872804],[-117.22429025669115,32.71919969937057],[-117.22426829998818,32.71918563188423],[-117.22426815593758,32.71918554232064],[-117.22428085028113,32.71915798148623],[-117.22412389611539,32.71907674059415],[-117.22409481856144,32.71909346142337],[-117.22340106509542,32.71868940773658],[-117.2233523596782,32.71869528917917],[-117.22325760897894,32.71864114602077],[-117.22325747155381,32.71864106739783],[-117.22326688474546,32.71861078678108],[-117.22283885913113,32.71839919568593],[-117.22256902715816,32.71841162247832],[-117.22248446915556,32.71840954070197],[-117.22238371647545,32.71841308360546],[-117.22236773798373,32.7184156117931],[-117.22235186503418,32.71841857066561],[-117.2223361072586,32.71842194915307],[-117.22232048747483,32.71842575257259],[-117.22230501862629,32.71842997532519],[-117.2222897169378,32.71843461453449],[-117.22228709303377,32.71843549276035],[-117.22227459854324,32.71843965907929],[-117.22225967641631,32.71844510610877],[-117.22224496681227,32.71845095549488],[-117.22223048264426,32.71845719889039],[-117.22221624329724,32.7184638251484],[-117.22220226177534,32.71847083416645],[-117.2221885477104,32.71847821487466],[-117.22217512051779,32.71848595887446],[-117.22216199314106,32.71849406056693],[-117.22214917524236,32.7185025116303],[-117.22213668298606,32.71851130369174],[-117.22212453253657,32.7185204283784],[-117.22211272377248,32.71852987469711],[-117.22209579634959,32.71854453408974],[-117.22204422966595,32.71860966561729],[-117.22197815688892,32.71864073623286],[-117.22131252324435,32.71937360910531],[-117.22121520891977,32.71947772561855],[-117.22098063348064,32.71972968590946],[-117.22088066638482,32.71980468588419],[-117.22085484234366,32.7198213803325],[-117.22070552985451,32.71984454378045],[-117.2206513188667,32.71984125990922],[-117.22058514769466,32.71983724557421],[-117.22046106377442,32.71978874844757],[-117.22034654528714,32.71972368477132],[-117.22027435517597,32.71966378506667],[-117.22019226057293,32.71959022058815],[-117.22017217913562,32.71953815650701],[-117.22015823691537,32.71945306179032],[-117.22015738987807,32.71937610965397],[-117.22016939597592,32.71928531377356],[-117.22024867664034,32.7191032872457],[-117.22028307715748,32.71897933284077],[-117.22030848072907,32.71892416241977],[-117.2203179011637,32.71889385449379],[-117.22032063789078,32.71884710797823],[-117.22030949287708,32.71872076334569],[-117.22027955115867,32.71836369294093],[-117.22027867374096,32.71828398976882],[-117.22028785207752,32.71823169552185],[-117.22036758541067,32.71809089327942],[-117.22044750004821,32.7179665807284],[-117.22049882081431,32.71790296075307],[-117.2206147162764,32.71777233743855],[-117.2206658170919,32.71771474664625],[-117.22072989696814,32.71763854508814],[-117.2207588864542,32.71760407300133],[-117.22097398096045,32.71735501225491],[-117.22105431797507,32.71726917537634],[-117.22135646128676,32.71695346386909],[-117.22165219132617,32.71664604771871],[-117.22179049954833,32.71651028011095],[-117.22200613401229,32.71631068679102],[-117.22230246596986,32.71605823488449],[-117.22253137499759,32.71588327548757],[-117.2225419335829,32.71587282752596],[-117.22255171255165,32.71586185249652],[-117.22256067331696,32.71585038918321],[-117.22256878385453,32.71583848181514],[-117.22257600888904,32.71582617464713],[-117.22258232295891,32.71581351735367],[-117.22258770373226,32.71580054859036],[-117.22259213237075,32.7157873289736],[-117.22259558660333,32.71577390265551],[-117.22259805728393,32.71576032467891],[-117.2225995351454,32.71574663909342],[-117.22260001110241,32.71573290643828],[-117.22259948892197,32.71571917340893],[-117.2225979659904,32.71570549774501],[-117.22259544601411,32.71569192064511],[-117.22259194591544,32.7156785024435],[-117.2225874759936,32.71566529253228],[-117.22258204979873,32.71565234027808],[-117.22257569063375,32.71563969497053],[-117.22256094315054,32.71561643227891],[-117.22256352696117,32.7155559442691],[-117.22256791670083,32.71554273595407],[-117.22257522359169,32.7155304831111],[-117.22258517308444,32.71551964416052],[-117.22259739893639,32.71551061777804],[-117.22261144646242,32.71550374286912],[-117.222626788517,32.71549927370659],[-117.22264286444441,32.71549737412608],[-117.22265907032639,32.71549811760336],[-117.22267480759388,32.71550147312821],[-117.22268948968083,32.71550731889451],[-117.22270257447256,32.71551543654747],[-117.22271357421032,32.71552552484778],[-117.2227226452322,32.7155381982334],[-117.22287506787029,32.71579810623085],[-117.2228839793631,32.71580957700782],[-117.22289525953543,32.71581944044947],[-117.22290851453997,32.7158273615929],[-117.2229276244563,32.71583316690552],[-117.22293725772685,32.71583609505394],[-117.22295561685544,32.71583455946712],[-117.22297146249252,32.71583152651844],[-117.22298678398784,32.71582695852651],[-117.22300137722748,32.715820920318],[-117.22301504153062,32.71581349318372],[-117.22351499552009,32.71545223908051],[-117.2235331895545,32.71543811919552],[-117.22354408238813,32.71542792412163],[-117.22355405110413,32.71541707119754],[-117.22356303788364,32.71540562409594],[-117.22357099466075,32.71539364641269],[-117.22357787987166,32.71538120169228],[-117.22358365198275,32.71536835622751],[-117.22358827933503,32.71535518722719],[-117.22359173664987,32.71534176085571],[-117.22359400858373,32.71532815969016],[-117.22359507961094,32.7153144498179],[-117.22359494085967,32.71530071101634],[-117.22359359643133,32.71528702021187],[-117.22359105686864,32.71527344878308],[-117.22358732955432,32.7152600763789],[-117.22358244125553,32.71524697150119],[-117.22357641238897,32.71523421644443],[-117.22356928260402,32.71522186861471],[-117.22356108851135,32.71521000468152],[-117.22343305392556,32.71509832560737],[-117.22341476213853,32.71509416853148],[-117.22339877160509,32.71509172211493],[-117.22338260414213,32.71509032977931],[-117.2233663540567,32.71508999352882],[-117.22335012540879,32.71509071529068],[-117.22333401575628,32.71509249704346],[-117.22331810947149,32.71509532437874],[-117.22330251365278,32.71509917996023],[-117.22328730933047,32.71510404116032],[-117.22327260023081,32.71510987967535],[-117.22325846723248,32.71511665913632],[-117.22324499443476,32.71512434040041],[-117.22323225937456,32.71513287887952],[-117.22322034599974,32.71514222168934],[-117.2232093187222,32.71515231335131],[-117.2230388390613,32.71531857022099],[-117.22293222184972,32.71537987897622],[-117.22290912607201,32.71539116247828],[-117.22289334385755,32.71539433784271],[-117.22287712235959,32.71539453451638],[-117.22286123855753,32.71539174637032],[-117.22284645147205,32.71538610759242],[-117.22283346956405,32.71537788469917],[-117.22282290844183,32.71536747412058],[-117.222815280744,32.71535536929739],[-117.22281095053536,32.71534215279521],[-117.22281011334611,32.71532845523367],[-117.22281282193758,32.71531493309512],[-117.22281894689641,32.71530223330435],[-117.22282818605443,32.71529096292068],[-117.22284010316653,32.71528165859911],[-117.22326592386963,32.71497870934247],[-117.2232882481378,32.71497000173559],[-117.22330346929857,32.71496519537294],[-117.22331900791565,32.71496116708525],[-117.22333480559391,32.71495792832744],[-117.22335080071772,32.71495549332836],[-117.22336693486164,32.71495387079457],[-117.22338316257375,32.71495306658182],[-117.22339941558481,32.71495308122892],[-117.2234156386597,32.71495391792033],[-117.22343177647227,32.71495557159567],[-117.22344776391309,32.71495803452332],[-117.22345925065858,32.71496070063336],[-117.22347575392203,32.71496453375045],[-117.22349176603764,32.71496687554239],[-117.2235079368217,32.71496827608291],[-117.22350953692029,32.71496832117176],[-117.22352417837693,32.71496872507156],[-117.22353178037652,32.71496848915874],[-117.22354041918226,32.71496822307301],[-117.2235565812146,32.71496677070305],[-117.22357258326075,32.71496437409993],[-117.22358835067004,32.71496104484703],[-117.223603808883,32.71495680277283],[-117.22428416643395,32.714739793272],[-117.22509337174262,32.71441457145221],[-117.225409406788,32.71418119315027],[-117.22694981563272,32.71294865336213],[-117.22802329568275,32.71212383171233],[-117.22829349825102,32.71186332681419],[-117.22845491054228,32.71176035069522],[-117.22869260264233,32.71150010283501],[-117.22931037611535,32.71092075597331],[-117.2301205319827,32.71010075502633],[-117.23087514294325,32.7092591939661],[-117.23089026435808,32.70924233514426],[-117.23090014630905,32.70923142458653],[-117.23091008391741,32.70922054931614],[-117.23092007724436,32.70920971482973],[-117.23093012616754,32.70919891013413],[-117.23094022752801,32.70918814349995],[-117.23095038454585,32.70917741215317],[-117.23096059731287,32.70916672433858],[-117.23097086248649,32.70915607183715],[-117.23098118331755,32.70914545462305],[-117.2309915565858,32.7091348754703],[-117.23100198554202,32.70912433435313],[-117.23101247018613,32.70911383127153],[-117.23102300076607,32.70910336630303],[-117.23103359028461,32.70909293934416],[-117.23104423224038,32.70908255044669],[-117.23105492341323,32.70907220238467],[-117.23106567027396,32.70906189235815],[-117.23107646957192,32.70905162039292],[-117.23108732133763,32.70904138923731],[-117.2310982255405,32.70903119614299],[-117.23110917896047,32.70902104388409],[-117.23112018484818,32.70901093243473],[-117.23113124317308,32.70900085904663],[-117.23114235074564,32.7089908292422],[-117.23115351075529,32.70898083749898],[-117.23116471998205,32.70897088659113],[-117.23117598167653,32.70896097649275],[-117.23118729258805,32.70895110722972],[-117.23119865268602,32.70894127605369],[-117.23121006534352,32.70893149393196],[-117.23122152715686,32.70892174714895],[-117.23123304149914,32.70891204667196],[-117.23124459527574,32.70890238435948],[-117.2312562048014,32.70889276557887],[-117.23126786357467,32.70888319038173],[-117.23127956831429,32.70887365604568],[-117.23129132230153,32.70886416529313],[-117.23130312550578,32.70885471537577],[-117.23131497470698,32.70884530906777],[-117.23132687318642,32.70883594909144],[-117.2313388208829,32.70882662995032],[-117.23135081457634,32.70881735441846],[-117.23136285426669,32.70880812249587],[-117.23137493995398,32.70879893418256],[-117.23138707491951,32.7087897922009],[-117.23139925585147,32.70878069108019],[-117.23141148281088,32.708771636317],[-117.23142375576728,32.708762625163],[-117.23143607150057,32.70875366039239],[-117.23144843648144,32.70874473920504],[-117.23146084420866,32.70873586165276],[-117.23147330121414,32.70872703043205],[-117.23148579449506,32.70871824564639],[-117.23149834030501,32.70870950716635],[-117.23151092886125,32.7087008123213],[-117.23152356341446,32.70869216108536],[-117.23153623430439,32.70868356178103],[-117.23154895444205,32.70867500605983],[-117.23156171735658,32.70866649672187],[-117.23157452304804,32.70865803376712],[-117.23158736826576,32.70864961722141],[-117.23160026273125,32.70864124425889],[-117.23161319678415,32.70863292320192],[-117.23162617361402,32.70862464852815],[-117.23163919319025,32.7086164174892],[-117.231652252354,32.70860823835581],[-117.23166535429469,32.70860010560557],[-117.23167849576166,32.70859201926427],[-117.23169168328698,32.70858398202845],[-117.23170490383718,32.70857599125334],[-117.23171817044573,32.7085680495837],[-117.23173147658063,32.70856015432298],[-117.2317448223337,32.70855231371605],[-117.2317582043318,32.70854451679558],[-117.23177162588689,32.70853676903229],[-117.23178509350036,32.70852907037436],[-117.23179859742017,32.7085214208995],[-117.23181214089699,32.70851382058171],[-117.2318257206801,32.708506269447],[-117.23183934002029,32.70849876746932],[-117.2318529956668,32.70849131467465],[-117.23186669090101,32.70848391378533],[-117.23188042241098,32.70847655933066],[-117.2318941870073,32.7084692568331],[-117.23190799769272,32.70846200618909],[-117.23192184143383,32.70845480475389],[-117.23193572148143,32.7084476525016],[-117.2319496378661,32.70844055218046],[-117.23196358730651,32.70843350106806],[-117.23197757633471,32.70842650186095],[-117.23199159844943,32.70841955461085],[-117.23200565687054,32.70841265654359],[-117.23201975162887,32.70840581040741],[-117.23203387947368,32.70839901622825],[-117.23204804362507,32.70839227123188],[-117.23206223761224,32.70838557821831],[-117.2320764679366,32.70837893713585],[-117.23209073137815,32.70837235075863],[-117.23210503112635,32.70836581356409],[-117.23211936074108,32.70835933110074],[-117.23213372666243,32.70835289782001],[-117.23214812241973,32.70834651652209],[-117.23216255129425,32.7083401899294],[-117.23217701000475,32.70833391531937],[-117.23219150180194,32.70832769266629],[-117.23220602668583,32.70832152196998],[-117.23222058143632,32.7083154060047],[-117.23223516924293,32.70830933924799],[-117.23224978697745,32.70830333271878],[-117.23226443451749,32.70829737542402],[-117.23227911189358,32.7082914701119],[-117.2322938191364,32.70828561953078],[-117.23230855624604,32.7082798236806],[-117.23232331994114,32.70827407983894],[-117.23233811675371,32.70826839070234],[-117.23235294015181,32.70826275357424],[-117.23236779341676,32.70825717117706],[-117.2323826765486,32.70825164351072],[-117.23239758304595,32.70824617062708],[-117.23241251941023,32.70824075247432],[-117.23242748236011,32.70823538633006],[-117.23285185763093,32.70810442632376],[-117.2331402763424,32.70801806902673],[-117.23370822489203,32.70793108401844],[-117.23373104591258,32.70792781262964],[-117.23374710129809,32.70792567263092],[-117.23376318094051,32.70792366711463],[-117.23377928152779,32.70792179061012],[-117.23379540634141,32.70792004583973],[-117.23381154891072,32.70791843560357],[-117.23382770920514,32.70791695715343],[-117.23384388397412,32.70791561051514],[-117.23386007324831,32.70791439843705],[-117.23387627696646,32.70791331542254],[-117.2338924919394,32.70791236699409],[-117.23390871816707,32.70791155315178],[-117.23392495233767,32.70791086842492],[-117.23394119454315,32.70791032105832],[-117.23395744147166,32.70790990558147],[-117.23397368987261,32.70790962202014],[-117.23398994302735,32.7079094730968],[-117.23400619765461,32.70790945608907],[-117.23402245053448,32.7079095737711],[-117.23403869835502,32.7079098206724],[-117.23405494767906,32.70791020223752],[-117.23407119197452,32.70791071577019],[-117.23408742477088,32.70791136407046],[-117.23410365582028,32.70791214706056],[-117.23411987534001,32.70791306207002],[-117.23413608004881,32.70791410637653],[-117.23415227328948,32.70791528819899],[-117.23416845500077,32.70791660204085],[-117.23418461865067,32.70791804520564],[-117.2342007643006,32.70791962319005],[-117.23421689191996,32.70792133324572],[-117.2342330014782,32.70792317262437],[-117.23424908653533,32.70792514687452],[-117.23426514706078,32.70792725324788],[-117.2342811862746,32.70792948897021],[-117.23429719445555,32.70793185686762],[-117.23431317810497,32.70793435688825],[-117.23432913391098,32.70793698356155],[-117.23434505546426,32.70793974518417],[-117.23436094595426,32.7079426362337],[-117.23437679887965,32.70794565676196],[-117.23439262399253,32.70794880669118],[-117.23440840832102,32.70795208887343],[-117.23442415502362,32.70795549503794],[-117.23443986419267,32.70795903342957],[-117.23445552601468,32.70796269862959],[-117.23447114702186,32.70796649333444],[-117.2344867239328,32.70797041482174],[-117.23450225677834,32.70797446583987],[-117.23455578788338,32.7079838424898],[-117.23461466934364,32.70800712244643],[-117.2346853211196,32.70804103865959],[-117.2347521840418,32.70808005612787],[-117.23480260078438,32.70811474677669],[-117.23482820665765,32.70823066774306],[-117.23484247778228,32.70832052145132],[-117.23484616225464,32.70841664389886],[-117.23483975207236,32.70852641096388],[-117.23482488099035,32.70862175808706],[-117.23480056297765,32.70871365703052],[-117.23476107911651,32.70880381906543],[-117.23471791219113,32.7088777199509],[-117.23466655850402,32.70894777777625],[-117.23459693238048,32.70902379460955],[-117.23452956070587,32.70908336543318],[-117.23443512182631,32.70913660253753],[-117.23433434437649,32.70918119655718],[-117.23419885065385,32.70922766170425],[-117.2340281187792,32.7092668219338],[-117.23385947624476,32.70932075510351],[-117.23355606883132,32.70933533202587],[-117.23309280608662,32.70941087520988],[-117.23243574166219,32.70957120818412],[-117.23218499876607,32.70975200009612],[-117.23169180667132,32.71019270151874],[-117.23091028267216,32.71095476602876],[-117.23019980467228,32.7116750328879],[-117.22964959352046,32.71219063136366],[-117.22906666019327,32.71268724465663],[-117.22672651922613,32.71450883836325],[-117.22601752511282,32.7150751512895],[-117.22552718429377,32.715422596946],[-117.22502125361488,32.71583063152251],[-117.22467379589948,32.71616320142571],[-117.22430458113607,32.71658664367776],[-117.2242910782591,32.71660720490151],[-117.22428357250793,32.71661939620241],[-117.22427635417921,32.71663170616761],[-117.22426942330338,32.71664413754551],[-117.22426278301009,32.71665667931728],[-117.22425643655036,32.71666933145729],[-117.22425039033523,32.71668208566938],[-117.22424464108336,32.71669493923097],[-117.22423919526655,32.7167078893424],[-117.22423404951236,32.71672092503631],[-117.22422921351323,32.7167340407391],[-117.2242246808279,32.71674724199872],[-117.224220457746,32.71676050952586],[-117.22421654757935,32.7167738487914],[-117.22421295020656,32.71678724880228],[-117.22420966559741,32.71680070681015],[-117.22420669694233,32.71681421729285],[-117.22420404418065,32.71682777475377],[-117.22420170725175,32.7168413736964],[-117.22419968937648,32.71685501134673],[-117.22419799043337,32.71686867671167],[-117.22419661042265,32.71688236979123],[-117.22419555250434,32.71689608231488],[-117.2241948133668,32.71690980881169],[-117.22419439623081,32.71692354650774],[-117.22419430100538,32.71693728715812],[-117.22419452440936,32.71695102804025],[-117.22419506963307,32.71696476363186],[-117.22419593658553,32.7169784856881],[-117.22419712520616,32.71699218871233],[-117.22419863224414,32.71700587273029],[-117.22420045760843,32.71701952949703],[-117.22420260120802,32.7170331507677],[-117.22420506301282,32.71704673379404],[-117.22420784296206,32.71706027307938],[-117.22421093774412,32.71707376315283],[-117.22421434729854,32.7170871985178],[-117.22421807159492,32.71710057642598],[-117.22422210729134,32.7171138886581],[-117.22422645107612,32.71712712974328],[-117.22422921320832,32.71713493848519],[-117.22423110617002,32.71714029690745],[-117.22423606598004,32.71715338195718],[-117.22432727645948,32.71746324526385],[-117.22440116897016,32.71767704679991],[-117.22456144267828,32.71805782606843],[-117.22466137511705,32.71827417022845],[-117.22481317313449,32.71847636174628],[-117.22485247882817,32.71851594872804]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":280726.903345,"geom:bbox":"-117.234846162,32.7079094561,-117.22015739,32.7198445438","geom:latitude":32.714125,"geom:longitude":-117.226529,"iso:country":"US","lbl:latitude":32.717453,"lbl:longitude":-117.223363,"lbl:max_zoom":18,"mps:latitude":32.717453,"mps:longitude":-117.223363,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Shelter Island"],"reversegeo:latitude":32.717453,"reversegeo:longitude":-117.223363,"src:geom":"mz","wof:belongsto":[85828937,102191575,1108802083,85633793,85922227,102083569,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7493960"},"wof:country":"US","wof:geomhash":"97470ed61372374dad988a4d891a078a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102083569,"locality_id":85922227,"macrohood_id":1108802083,"microhood_id":1108826373,"neighbourhood_id":85828937,"region_id":85688637}],"wof:id":1108826373,"wof:lastmodified":1566624123,"wof:name":"Shelter Island","wof:parent_id":85828937,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887367],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108826375.geojson b/fixtures/microhoods/1108826375.geojson new file mode 100644 index 0000000..397e6ed --- /dev/null +++ b/fixtures/microhoods/1108826375.geojson @@ -0,0 +1 @@ +{"id":1108826375,"type":"Feature","bbox":[-117.05127154104959,32.67023113696015,-117.02161564069108,32.69785974265487],"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.0488278116965,32.68825228692992],[-117.04818479491524,32.68848447753749],[-117.04775332006767,32.68861416947325],[-117.0473218452201,32.68872656896588],[-117.0469211900045,32.68883464527551],[-117.04655135442086,32.68893839840214],[-117.04623802149584,32.68902702079153],[-117.04598119122942,32.68910051244366],[-117.04570895114702,32.6891869731146],[-117.04542130124865,32.68928640280434],[-117.04513365135027,32.68940528594483],[-117.04484600145187,32.68954362253607],[-117.04456091985617,32.68968628191093],[-117.04427840656312,32.68983326406941],[-117.04400616648073,32.68998673045995],[-117.04374419960898,32.69014668108253],[-117.04346425461858,32.69029798548376],[-117.04316633150955,32.69044064366362],[-117.04286840840052,32.69056384831215],[-117.04257048529146,32.69066759942934],[-117.04225972066911,32.69074541272202],[-117.04193611453344,32.69079728819018],[-117.04151491289653,32.69087510130201],[-117.04099611575836,32.69097885205748],[-117.04044393068558,32.69108044122576],[-117.03985835767816,32.69117986880681],[-117.03912639141888,32.69130739526457],[-117.03824803190776,32.69146302059902],[-117.0375212022538,32.6915948696811],[-117.03694590245703,32.6917029425108],[-117.03649901779347,32.69178940071177],[-117.03618054826313,32.691854244284],[-117.0358389640088,32.69193205649155],[-117.0354742650305,32.69202283733441],[-117.03515836380282,32.6921157795269],[-117.03489126032574,32.69221088306903],[-117.034621588546,32.69232111656534],[-117.03434934846362,32.69244648001582],[-117.03405913026256,32.69259778043154],[-117.03375093394287,32.69277501781251],[-117.03337853005657,32.69299980600015],[-117.03294191860368,32.69327214499448],[-117.03219454252843,32.69372604008736],[-117.03113640183079,32.69436149127878],[-117.02978033802414,32.69517849081411],[-117.02812635110843,32.69617703869338],[-117.02692952206694,32.69689028375902],[-117.0258265479491,32.69752138227935],[-117.02581281412974,32.69752873018273],[-117.02579903754571,32.69753602063539],[-117.02578521819704,32.69754325363746],[-117.02577135935827,32.69755043191671],[-117.02575745773063,32.69755754999694],[-117.02574351333843,32.69756461062646],[-117.02572953268236,32.6975716137644],[-117.02571550598714,32.69757855672362],[-117.02570144302805,32.6975854421913],[-117.02568733730448,32.69759227020818],[-117.02567319531704,32.69759904073339],[-117.02565901051678,32.69760574831118],[-117.02564478947686,32.69761240114558],[-117.02563794568333,32.6976155637238],[-117.02563052562414,32.69761899103246],[-117.02561622875805,32.69762552340722],[-117.02560189562823,32.69763199829023],[-117.02558751968567,32.69763841022574],[-117.02557311072974,32.69764476464902],[-117.02555866223565,32.69765105885266],[-117.02554417745371,32.69765729281616],[-117.02553911582017,32.69765944648044],[-117.02552965963437,32.69766346651907],[-117.0255151022527,32.69766957725397],[-117.02550051185783,32.69767563047659],[-117.02548588517521,32.69768162345905],[-117.02547122540693,32.69768755068423],[-117.02545652939928,32.69769342316586],[-117.02544180033014,32.69769923263853],[-117.0254270381996,32.69770497910223],[-117.02541223978137,32.69771066532566],[-117.02539741482666,32.69771629124752],[-117.0253825535602,32.69772185418079],[-117.02538125752824,32.69772232957264],[-117.02538046050358,32.69772262592375],[-117.0253676592324,32.69772735410507],[-117.02535998979324,32.69773014806565],[-117.02535273511783,32.69773279374812],[-117.02533777794193,32.69773817038217],[-117.0253227942054,32.69774348396625],[-117.0253077741815,32.69774873731004],[-117.02529272434668,32.69775392762423],[-117.02527764470105,32.69775905490891],[-117.02526253849497,32.69776411914359],[-117.02524739925188,32.69776912311752],[-117.0252322301739,32.69777406131349],[-117.0252170410362,32.69777893641859],[-117.02520181558712,32.69778374853495],[-117.02519393836876,32.6977862029794],[-117.02518656685224,32.69778850032917],[-117.02518216126687,32.69778985279412],[-117.02517128828251,32.69779318634543],[-117.02515598312839,32.69779780656331],[-117.02514065143815,32.6978023664794],[-117.02512529316354,32.69780686059711],[-117.02510990835293,32.69781129441306],[-117.02509450018422,32.69781565966179],[-117.02507906545533,32.69781996186045],[-117.02506360419055,32.69782420375729],[-117.02504811956777,32.69782837708691],[-117.02503261163527,32.69783248734594],[-117.02501708039317,32.69783653453445],[-117.02500152581725,32.69784051590394],[-117.0249859479076,32.69784443145456],[-117.02497034668838,32.6978482839346],[-117.02495472538587,32.69785207057522],[-117.02493908077386,32.69785579414523],[-117.02492341280409,32.69785944914794],[-117.02492275110801,32.69785960996987],[-117.0249226245856,32.69785963824985],[-117.02492219318177,32.69785974265487],[-117.02489224254862,32.6977739253198],[-117.0248759600185,32.6977279987838],[-117.02478282462532,32.69748671744907],[-117.02462320092837,32.69707716556509],[-117.02462308355427,32.69707712507518],[-117.02278515750487,32.69653453555799],[-117.02274700895387,32.69644951943481],[-117.02270890689606,32.69636460745149],[-117.02205918753077,32.69492297518882],[-117.0220119994097,32.69473087958837],[-117.02198178458403,32.69462112669651],[-117.02198183150867,32.69462091751802],[-117.02199430423076,32.69456607865587],[-117.02202356561652,32.69443072506316],[-117.0220317908771,32.69439268953044],[-117.02203838145397,32.69436322300791],[-117.0220693255116,32.69422479705894],[-117.02210057618426,32.6940816802705],[-117.02213500476054,32.69393029812549],[-117.02215988171396,32.69380950593343],[-117.02215994736873,32.69380920868613],[-117.02215993417599,32.69380881573569],[-117.02215951409956,32.69375973870851],[-117.02215949765667,32.69375934577842],[-117.02215153408801,32.69358972630715],[-117.02215152457882,32.69358938280635],[-117.02211317523356,32.69347899651999],[-117.02209150142029,32.69341660700293],[-117.02209147847735,32.69341621411355],[-117.02208958747997,32.69338363444572],[-117.02208955803665,32.69338324159703],[-117.02208401421585,32.69330396334355],[-117.02218989845332,32.69314663676506],[-117.02237112129043,32.69287862403307],[-117.02237279946289,32.69287613988638],[-117.02295693945108,32.69277078554443],[-117.022956796465,32.69277041814406],[-117.02291204719384,32.6926552871163],[-117.02267431612084,32.69204695747396],[-117.02257124968449,32.69178374896168],[-117.022236712803,32.6906981326432],[-117.02218764078444,32.69053639769247],[-117.02161564069108,32.68865122159443],[-117.02161572690753,32.68865113860041],[-117.0216247836945,32.68864279524674],[-117.02165836103076,32.68861192028886],[-117.02206734514691,32.68805996308014],[-117.0225534266146,32.6877106095392],[-117.0228156116385,32.68752205864141],[-117.02325914630721,32.68720321326681],[-117.02327636360027,32.68713989568617],[-117.02327674439134,32.68713856578089],[-117.0232969624042,32.68706830595021],[-117.02331906368963,32.68699395280756],[-117.02347303647242,32.68676211444647],[-117.02357726578214,32.68671813894785],[-117.02357782597356,32.68671790181205],[-117.0241008749752,32.68649721947863],[-117.02410120812647,32.68649703598705],[-117.02425828543129,32.68640921136573],[-117.02427669144912,32.68639891814714],[-117.02430499428444,32.68638309878889],[-117.02433402149471,32.6863561325265],[-117.02477566585652,32.68594587897964],[-117.02495907246349,32.68592067433622],[-117.02502611284022,32.68591159246456],[-117.02517168430224,32.68589186119248],[-117.02536320889661,32.68586557972226],[-117.02542680048643,32.68585682715102],[-117.025551511622,32.68583965628393],[-117.02571380449987,32.68581732906031],[-117.02585338414245,32.68579824759149],[-117.02591183473798,32.68579031868369],[-117.02598089702113,32.68569986847631],[-117.02606281728963,32.6855911368425],[-117.02608531896985,32.68556110270437],[-117.02611691728804,32.68545921543169],[-117.02635384138316,32.68468264612774],[-117.02662677603179,32.68450499129153],[-117.02758181243667,32.68388334171207],[-117.02758503233076,32.68388057017289],[-117.02795935243034,32.68357588114333],[-117.02806949681325,32.68348618195419],[-117.02833676717133,32.68326851914151],[-117.02833688976685,32.68326841667368],[-117.02874593011843,32.68321636097745],[-117.02893409896838,32.68299272654322],[-117.02893890402343,32.68298701781877],[-117.02934227275865,32.68239237393266],[-117.02944258882808,32.68224449527274],[-117.03020854542132,32.68165006775072],[-117.03073718522883,32.68123946190066],[-117.03100920230152,32.68102828257068],[-117.03100935399237,32.68102816342493],[-117.03252101436655,32.68049344707741],[-117.03252098488106,32.68049305423138],[-117.03248774276977,32.68004015847458],[-117.03286744964907,32.67961448141381],[-117.03358737570562,32.67925014491647],[-117.03485562926738,32.6781253519019],[-117.03498535849909,32.67802824104538],[-117.03500137617092,32.67801612268183],[-117.03501588600173,32.6780051078142],[-117.03503037286137,32.67799406835472],[-117.03504483354905,32.67798300982086],[-117.03505927451523,32.67797192667449],[-117.03507368930946,32.67796082445371],[-117.03508808440662,32.67794970036877],[-117.03510245330737,32.6779385544611],[-117.03511680251107,32.67792738668929],[-117.0351311255428,32.67791619984308],[-117.03514542560339,32.67790498840515],[-117.03515970274167,32.67789375787213],[-117.03517395693318,32.67788250549576],[-117.03518818492837,32.67787123129662],[-117.03520239325086,32.67785993798179],[-117.03521657535251,32.67784862009594],[-117.03523073453186,32.67783728311504],[-117.03524487076447,32.67782592429084],[-117.03525898082523,32.67781454639226],[-117.03527307116434,32.67780314388134],[-117.035287135356,32.67779172504444],[-117.03530117655197,32.67778027886759],[-117.03531519162497,32.67776881911306],[-117.03532918047719,32.67775733478764],[-117.03534315288184,32.67774582857751],[-117.03535709909009,32.67773430054478],[-117.03537101915093,32.67772275618614],[-117.035384916265,32.67771118998421],[-117.0353987871827,32.67769960195974],[-117.03541263515362,32.67768799209199],[-117.03542646345188,32.67767636310861],[-117.03544025905455,32.6776647123441],[-117.03545403498454,32.67765304246402],[-117.03546778469364,32.67764134801309],[-117.03548151152944,32.67762963996389],[-117.03549521539398,32.67761790732314],[-117.03550889308667,32.67760615560823],[-117.03552254458292,32.67759438207088],[-117.03553617640652,32.67758258941794],[-117.03554977878412,32.67757077496319],[-117.03556335821499,32.67755893866528],[-117.03557691149841,32.67754708604165],[-117.03559044185954,32.67753521432313],[-117.03560394927396,32.67752332076147],[-117.03561742724236,32.67751140539809],[-117.03563088553813,32.67749947091924],[-117.03564431441234,32.67748751738696],[-117.03565772033984,32.67747554201156],[-117.03567110334501,32.67746354754146],[-117.03568445692875,32.67745153401794],[-117.03569778756565,32.67743949865134],[-117.03571109203074,32.67742744421071],[-117.03572437357353,32.67741537067534],[-117.03573856591268,32.67740485247232],[-117.03576343245527,32.67738360761254],[-117.03577706748816,32.67737181766069],[-117.03579064360828,32.6773599813586],[-117.03580415751702,32.67734809323031],[-117.03581761251291,32.67733615875181],[-117.03583100859608,32.67732417792313],[-117.03584434249235,32.6773121480167],[-117.03585761742688,32.67730006626348],[-117.03587083022347,32.67728794092915],[-117.03588398083322,32.67727576651713],[-117.03589707250573,32.6772635430067],[-117.03591010204038,32.67725127591524],[-117.03592306938816,32.67723895974608],[-117.03593597457356,32.67722659724767],[-117.03594881434704,32.67721418844066],[-117.0359615952568,32.67720173878031],[-117.03597431395521,32.67718923729406],[-117.0359869672662,32.67717669224763],[-117.03599955841483,32.67716410087198],[-117.03601208742566,32.67715146591547],[-117.03602455102464,32.67713878465052],[-117.03603695246127,32.67712605705641],[-117.03604928853504,32.67711328865049],[-117.0360615591969,32.67710047393624],[-117.0360820348947,32.67707737979382],[-117.03609585973481,32.67706574800804],[-117.03610963221038,32.67705407532736],[-117.036123355571,32.67704236173106],[-117.03613702654246,32.67703060449148],[-117.03615065167307,32.67701880906399],[-117.03616422441456,32.67700696999327],[-117.03617774804111,32.67699509000704],[-117.03619122257713,32.67698317185356],[-117.03620464472411,32.67697121005698],[-117.03621801450652,32.67695920736561],[-117.03623133517395,32.67694716375873],[-117.03624460350134,32.67693508200547],[-117.03625782596335,32.67692295931599],[-117.03627098958609,32.67691079852157],[-117.03628410731898,32.6768985940427],[-117.03629716946223,32.67688635143819],[-117.03631017926539,32.67687407068733],[-117.03632313995371,32.67686174902112],[-117.03633604505231,32.67684938922927],[-117.03634890106049,32.67683699127048],[-117.03636170470419,32.67682455241706],[-117.03637445273378,32.67681207268978],[-117.03638714847234,32.67679956031292],[-117.03639979184639,32.67678700704151],[-117.03641238288044,32.6767744156239],[-117.03642491832497,32.67676178608082],[-117.0364374014295,32.67674911839156],[-117.03644983219404,32.67673641255615],[-117.03646220736904,32.67672366859534],[-117.036474526979,32.67671088925745],[-117.03648679422453,32.67669806902514],[-117.03649900595404,32.67668521891244],[-117.03651116527008,32.67667232240866],[-117.03652326907019,32.67665939602455],[-117.03653531725624,32.67664642876676],[-117.03654730990186,32.67663342888039],[-117.03655925020752,32.67662039084795],[-117.03657113167421,32.67660731471106],[-117.03658296085001,32.67659420592474],[-117.03659473121134,32.67658106178232],[-117.03660644598321,32.67656787951468],[-117.03661810843975,32.67655466184942],[-117.03662971210629,32.67654141157634],[-117.03664126018349,32.6765281231781],[-117.03665275596987,32.67651480213065],[-117.03667649095595,32.67649463071677],[-117.03689089763598,32.67627623380495],[-117.03689096208763,32.67627617292691],[-117.03777360856712,32.67541652684173],[-117.0381406598351,32.67505903812518],[-117.03929725620463,32.67361751770181],[-117.03942528941725,32.67345238799232],[-117.03942538579379,32.67345226369336],[-117.03942551109553,32.67345210347887],[-117.03948358433802,32.67337720642843],[-117.04001359559588,32.67294428333908],[-117.04116947129188,32.67200012093971],[-117.04117008421522,32.67199961953027],[-117.04146756735301,32.67175662110711],[-117.04177961441346,32.67159697515051],[-117.04177972439909,32.67159691947442],[-117.04177958252674,32.67159659056751],[-117.04171772293944,32.6714362565077],[-117.04167089573293,32.6713148900886],[-117.04166492498592,32.6712994517179],[-117.04162982501191,32.67120815809572],[-117.04161667710602,32.67117401840123],[-117.04160504877598,32.6711445386222],[-117.04160518492883,32.6711445020176],[-117.0418838458345,32.67107058926704],[-117.04188437439548,32.67107046493829],[-117.0418844520101,32.67107042321244],[-117.0420378239625,32.67102975250463],[-117.04203811568956,32.67102967092417],[-117.04216756817469,32.67099503824315],[-117.04219042606444,32.67098894912827],[-117.04233235365182,32.67095099289131],[-117.04279602208204,32.67082699599655],[-117.04279612231801,32.67082694038223],[-117.04299050434372,32.67077498055691],[-117.04334371826536,32.67068050994607],[-117.04336858256936,32.6706738772414],[-117.04357189722073,32.6706218617534],[-117.04380948613826,32.67056109392587],[-117.04381757266337,32.67055622650675],[-117.04400839430753,32.67045769293453],[-117.0440856420078,32.67041779581529],[-117.04442790872905,32.67023113696015],[-117.04455097695286,32.67038106243817],[-117.04464668161887,32.67042788987503],[-117.04515454550041,32.67053180587391],[-117.04515124831602,32.67054526173693],[-117.04514823426983,32.67055876524623],[-117.04514550006317,32.67057231092618],[-117.04514304892069,32.67058589600738],[-117.04514087754357,32.67059951501434],[-117.04513899238113,32.67061316240838],[-117.0451373901841,32.67062683821057],[-117.04513607412764,32.67064053415488],[-117.0451354821068,32.67064839589222],[-117.04513504093778,32.67065424751402],[-117.04513460079056,32.67066237487478],[-117.04513429383917,32.67066797551868],[-117.04513383278243,32.67068171267223],[-117.04513365771814,32.67069545347802],[-117.04513376864637,32.67070919793608],[-117.04513416544341,32.67072293230472],[-117.04513484490961,32.67073666210164],[-117.04513533269902,32.67074354940718],[-117.04513581346937,32.67075037903982],[-117.04513688411647,32.67076208342851],[-117.04513706462424,32.67076408316126],[-117.04513860149977,32.67077776070339],[-117.04514042414561,32.67079141716273],[-117.04514167349001,32.6707995143864],[-117.04514252596408,32.67080504158803],[-117.04514491670336,32.67081863391627],[-117.04514758656603,32.67083218871376],[-117.04514810180449,32.67083455183589],[-117.0451505355273,32.67084570323208],[-117.04515377001177,32.67085916918438],[-117.04515728027145,32.67087258663346],[-117.04516043180752,32.67088370041746],[-117.04516106950629,32.67088595006171],[-117.04516513766679,32.6708992539725],[-117.04516801793996,32.67090803329376],[-117.045169481479,32.67091249563833],[-117.04517410091816,32.67092567231095],[-117.04517898941141,32.67093877578722],[-117.0451841534575,32.67095180602519],[-117.04518958648354,32.67096475482178],[-117.04519528851438,32.67097762492529],[-117.04520125620162,32.67099040536335],[-117.04520748954538,32.67100309613588],[-117.04521084720227,32.67100967908566],[-117.0452206681519,32.67100544353109],[-117.04523522309009,32.67099933869997],[-117.04524987704374,32.6709934036344],[-117.0452646202153,32.67098763290064],[-117.04527945915315,32.67098203195332],[-117.04529438413397,32.67097660360366],[-117.04530939510832,32.67097134235498],[-117.04532448887645,32.67096625372479],[-117.04533965896458,32.67096134050348],[-117.04535490859725,32.67095659992153],[-117.0453654575332,32.67095345630393],[-117.04537023454999,32.67095203474835],[-117.04537723557206,32.67095003815188],[-117.04538563029942,32.6709476422775],[-117.04540109262099,32.67094342527818],[-117.04541662156434,32.67093938924701],[-117.04543221383072,32.67093552870832],[-117.04544786944498,32.67093184641048],[-117.04546357865902,32.67092834241623],[-117.04731099297308,32.67039419507681],[-117.04757402920383,32.67109335729131],[-117.0478373182527,32.67182000221194],[-117.04818378747042,32.67276049270965],[-117.04829343184512,32.67302638311042],[-117.04829751482049,32.67303623472841],[-117.04830274428971,32.67304924792605],[-117.04830780193826,32.67306230621193],[-117.04831268779104,32.67307541233441],[-117.04831740504754,32.67308856077586],[-117.04832195048324,32.67310175430554],[-117.04832474377102,32.67311021529537],[-117.04832632082369,32.67311499019637],[-117.04832868930157,32.67312247272767],[-117.0483305225428,32.67312826565783],[-117.04833454586738,32.67314157800479],[-117.04833840379507,32.67315492715304],[-117.04834208330314,32.67316831043851],[-117.04834559091525,32.67318173056738],[-117.04834892008274,32.67319518208523],[-117.04835207727953,32.67320866220155],[-117.04835376839476,32.67321634426167],[-117.04835505275715,32.67322217097949],[-117.04835612653271,32.67322735041846],[-117.0483578594885,32.67323570558663],[-117.04836048772513,32.67324926608605],[-117.0483629407164,32.67326285245674],[-117.04836521516305,32.67327645922312],[-117.04836730781548,32.67329008640622],[-117.04836923489606,32.6733037311525],[-117.04837097365849,32.67331739360928],[-117.04837253707566,32.67333107094411],[-117.04837317622896,32.6733374185558],[-117.04837392189802,32.67334476317801],[-117.04837447614285,32.6733510646153],[-117.04837513135007,32.67335846754163],[-117.0483761589079,32.67337218132869],[-117.04837701107033,32.67338590449711],[-117.04837768131358,32.67339963434075],[-117.04837817613637,32.67341337081744],[-117.04838895481059,32.6738860406015],[-117.04839151313901,32.67488647296521],[-117.04839866029984,32.67534817235188],[-117.04840716923168,32.67589781448724],[-117.04840682614817,32.67590406951545],[-117.04840613153199,32.67591779995439],[-117.04840552467824,32.67593153257346],[-117.04840500236223,32.67594527014203],[-117.04840456775888,32.67595900439399],[-117.04840422094293,32.67597274357441],[-117.04840416390128,32.67597577552417],[-117.04840395861505,32.67598648220767],[-117.04840378407464,32.67600022576934],[-117.04840369399753,32.67601396603553],[-117.0484036887884,32.67602272274646],[-117.0484036916831,32.67602770848179],[-117.04840377710644,32.67604145035985],[-117.04840394701809,32.67605519169074],[-117.04840420141811,32.67606893247446],[-117.04840454678073,32.67608266992057],[-117.04840497663176,32.6760964068195],[-117.04840549097126,32.67611014317126],[-117.04840609302393,32.67612387620648],[-117.04840678278978,32.67613760592516],[-117.04840755701936,32.6761513323483],[-117.04840841893733,32.6761650527066],[-117.048409365344,32.6761787725177],[-117.04841039943909,32.67619248626394],[-117.048411518023,32.67620619946297],[-117.04841272424568,32.67621990110047],[-117.0484140149323,32.67623359944245],[-117.04841539330754,32.67624729171953],[-117.04841685937149,32.6762609779317],[-117.04841840984973,32.67627465535173],[-117.0484200447921,32.67628832947617],[-117.04842176737345,32.67630199203912],[-117.04842357441903,32.6763156513065],[-117.04842546910373,32.67632929901233],[-117.04842744820286,32.67634293792597],[-117.04857062481626,32.67708135337881],[-117.04863155669608,32.67735031033571],[-117.0486319724322,32.67735387242944],[-117.04863364962266,32.67736754078133],[-117.04863546969636,32.67738119721363],[-117.04863742612932,32.67739483902015],[-117.04863953191997,32.67740846611662],[-117.04864177404512,32.67742207583896],[-117.04864415575436,32.67743566816605],[-117.04864667382314,32.67744924586736],[-117.04864933792561,32.67746280063464],[-117.04865214161235,32.67747633800668],[-117.04865508158413,32.67748985250791],[-117.0486581610906,32.67750334411719],[-117.04865882995145,32.67750614873723],[-117.04866138015666,32.67751681558287],[-117.04866422954765,32.67752822258163],[-117.04866473873265,32.67753026140834],[-117.04866823356895,32.67754368161461],[-117.0486718678904,32.67755707343225],[-117.048675641722,32.67757043960959],[-117.04867954856442,32.67758378018874],[-117.04868360134165,32.67759708684049],[-117.0486877838554,32.67761036516676],[-117.04869210582969,32.67762361235603],[-117.04869656401492,32.67763682842934],[-117.04870115511183,32.6776500079111],[-117.04870588566943,32.6776631562558],[-117.04870713315101,32.67766561906304],[-117.04871349055799,32.67767826488839],[-117.04871977672435,32.67769093865992],[-117.04872600132423,32.67770363206936],[-117.04873215465847,32.67771635067663],[-117.04873824322632,32.67772909443964],[-117.0487442637035,32.67774185513446],[-117.0487502161646,32.67775464100599],[-117.04875610060964,32.67776745205436],[-117.0487619137392,32.67778028280394],[-117.04876766857655,32.67779313591887],[-117.04877334884874,32.67780600875607],[-117.04877896110474,32.67781890677007],[-117.0487845085195,32.67783182169493],[-117.04878998464349,32.67784475906934],[-117.04879539272639,32.67785771887227],[-117.04910261303684,32.67840817367762],[-117.04925453753037,32.67867654051848],[-117.0493902894174,32.67895325750882],[-117.04976120539581,32.67971767969409],[-117.05000304518212,32.68022458069755],[-117.05027140932232,32.68078902731144],[-117.05027337347025,32.68079453077541],[-117.05027799418981,32.68080770726186],[-117.05028251111912,32.68082090640976],[-117.05028692105829,32.68083413373687],[-117.05029122720715,32.68084738372549],[-117.05029542959055,32.680860659124],[-117.05029952818356,32.68087395718394],[-117.05030050343754,32.68087721055891],[-117.05030351973635,32.68088727792657],[-117.05030740749864,32.68090062133076],[-117.05031118819569,32.6809139846692],[-117.05031486182746,32.68092736794201],[-117.05031572994136,32.68093063300631],[-117.05031843169357,32.68094077662472],[-117.05032189446935,32.68095420249343],[-117.05032525017972,32.68096764829648],[-117.05032850207436,32.68098111401286],[-117.05033022323927,32.68098849077307],[-117.05033164685358,32.68099459416692],[-117.05033468456729,32.68100809425536],[-117.0503364245943,32.68101611678759],[-117.05033761519047,32.68102161152987],[-117.05034043872304,32.68103514599044],[-117.05034315511504,32.68104869214048],[-117.05034576444135,32.68106225822491],[-117.05034826662704,32.68107583599882],[-117.05035066169701,32.68108942821044],[-117.05035294962619,32.68110303211154],[-117.05035513043961,32.68111665045046],[-117.05035720086242,32.68113028049993],[-117.05035916739413,32.68114392221775],[-117.05036102351025,32.68115757289785],[-117.05036276923565,32.68117123528851],[-117.05036441104487,32.68118490659926],[-117.05036594243829,32.68119858687226],[-117.05036645515409,32.68120351432977],[-117.05036736666564,32.68121227608643],[-117.05036823545005,32.68122134320256],[-117.05036868372687,32.6812259742418],[-117.05036989034728,32.68123967861108],[-117.05037098652677,32.68125338919436],[-117.0503719820146,32.68126710592827],[-117.05037286378666,32.6812808261489],[-117.05037363836747,32.68129455256245],[-117.05037430248217,32.68130828244158],[-117.05037485940552,32.68132201851359],[-117.05037530908753,32.68133575528188],[-117.05037564502861,32.68134949278853],[-117.0503758802776,32.68136323644585],[-117.05037600173573,32.68137697534495],[-117.05037601597725,32.68139071768863],[-117.05037591970245,32.68140445800125],[-117.05037585710369,32.6814086608446],[-117.05037571618604,32.68141819901012],[-117.05037540542787,32.6814319407152],[-117.05037498412835,32.68144567764097],[-117.05037445558698,32.68145941526292],[-117.0503738164792,32.68147314535725],[-117.05037307007963,32.68148687065112],[-117.05037221641312,32.68150059389291],[-117.05037125220493,32.68151431235536],[-117.05037018067986,32.68152802326899],[-117.05036899863802,32.68154173215162],[-117.05036771247903,32.68155542796774],[-117.05036769752749,32.68155557098616],[-117.05036631577818,32.68156911900455],[-117.05036480851047,32.68158280251365],[-117.05036319712546,32.68159647295618],[-117.05036147522341,32.6816101413677],[-117.05035964592928,32.68162379398544],[-117.05035770931782,32.68163743905438],[-117.05035566536411,32.68165107382621],[-117.0503535107434,32.68166469007704],[-117.05035125208,32.68167830150625],[-117.05034888274955,32.68169189441451],[-117.05034640932637,32.68170547700443],[-117.05034382528594,32.68171904657003],[-117.05034344002743,32.68172100049696],[-117.05034113707781,32.68173259757236],[-117.05033834150217,32.6817461355292],[-117.05033801102218,32.68174767957593],[-117.05033543525919,32.68175965496501],[-117.05033242489833,32.68177316133418],[-117.05032931359445,32.68178664637066],[-117.05032608514855,32.6818001156766],[-117.05032461872274,32.68180576784038],[-117.0503210549763,32.68181917610757],[-117.05031737401285,32.68183256039924],[-117.05031443247803,32.68184290830933],[-117.0503135790821,32.68184592069424],[-117.05030966695924,32.68185925976193],[-117.0503060101655,32.68187136859827],[-117.0503056441187,32.68187257481183],[-117.0503015072858,32.6818858631167],[-117.0502972564854,32.68189912742484],[-117.05029288841783,32.68191236226075],[-117.05028840638265,32.6819255730998],[-117.05028381682952,32.68193875440332],[-117.05027911000903,32.68195190623452],[-117.0502742924457,32.68196503129949],[-117.05026936083972,32.68197812412271],[-117.0502643184658,32.68199118743135],[-117.0502591620742,32.68200422124654],[-117.05025389486461,32.68201722005044],[-117.05024851361229,32.6820301866126],[-117.05024302479175,32.6820431181423],[-117.05023742195327,32.68205602017855],[-117.05023171152158,32.68206888443402],[-117.05022589029669,32.68208171642654],[-117.05021995820374,32.68209450791109],[-117.05021391854235,32.68210726436322],[-117.050207764813,32.68211998582505],[-117.05020150346525,32.68213266675777],[-117.05019513449902,32.68214530716134],[-117.05018865471446,32.68215791255356],[-117.05018207053621,32.68217047464709],[-117.05017537548964,32.68218299623264],[-117.05016857607427,32.6821954772678],[-117.05016166901538,32.68220791502549],[-117.05015484940677,32.68221996193],[-117.0501546510631,32.68222030952667],[-117.05014753199166,32.6822326634564],[-117.05014030525165,32.68224497136023],[-117.05013297411773,32.68225723596534],[-117.05012553853992,32.68226945177509],[-117.05011799531843,32.68228162430714],[-117.05011034767793,32.68229375079209],[-117.05010259884332,32.68230582846055],[-117.05009474558969,32.68231786008187],[-117.0500867878422,32.682329837411],[-117.05007872897532,32.68234177416861],[-117.05007125526511,32.68235265445765],[-117.05007056561449,32.68235365663402],[-117.05006230428421,32.68236548751338],[-117.05005479205435,32.68237606296928],[-117.05005393850989,32.68237726959718],[-117.05004547151621,32.68238900011598],[-117.05003690652812,32.68240067630033],[-117.05002823704598,32.68241229819243],[-117.05001947286904,32.68242387122562],[-117.05001060739787,32.68243538444876],[-117.05000164398201,32.68244684883402],[-117.04999257929691,32.68245825615749],[-117.04998341984205,32.682469606377],[-117.04997416236762,32.68248089951365],[-117.04996481014838,32.68249213829461],[-117.04995535988459,32.6825033172442],[-117.04994581157624,32.68251443636258],[-117.04993617174792,32.68252549835578],[-117.0494437385163,32.68305640200252],[-117.04944522759418,32.68305754121445],[-117.04945727125731,32.68306676949619],[-117.04946929877359,32.68307600887539],[-117.04948131019286,32.68308526484874],[-117.0494933055151,32.68309453741625],[-117.04950528144074,32.68310382110235],[-117.04951724454409,32.68311312410989],[-117.04952919150058,32.68312243821489],[-117.04954111911032,32.68313176893514],[-117.04955303384789,32.68314111348023],[-117.04956492923864,32.68315047464055],[-117.04957681175735,32.68315984962568],[-117.04958867490431,32.68316923847774],[-117.04960052520404,32.68317864390295],[-117.04961235613212,32.68318806319509],[-117.04962417093823,32.68319749633311],[-117.0496359728972,32.68320694604426],[-117.04964775545947,32.68321640687407],[-117.04965952194976,32.68322588704642],[-117.04967126904334,32.68323537833746],[-117.04968300328976,32.68324488620165],[-117.04969472141424,32.6832544079117],[-117.04969946246524,32.68325827176592],[-117.04970641691723,32.68326394350986],[-117.04971810604773,32.68327349289071],[-117.04972977258164,32.68328305890796],[-117.04973823041854,32.68329001268723],[-117.0497414229936,32.68329263877112],[-117.04975305728365,32.68330223248027],[-117.04976467220202,32.68331184005638],[-117.0497762742732,32.68332146420574],[-117.04978785697264,32.68333110222209],[-117.04979942355021,32.68334075408439],[-117.04981097400585,32.68335041979267],[-117.04982250508975,32.68336009936797],[-117.04983402332653,32.68336979551648],[-117.04984552219155,32.68337950553206],[-117.04985700488481,32.68338922389702],[-117.04986847153096,32.68339896435288],[-117.04987991880536,32.68340871867584],[-117.04989134993295,32.68341848409642],[-117.04990276493864,32.683428263363],[-117.04991416384728,32.68343805922396],[-117.04992554335932,32.68344786620364],[-117.0499369100242,32.68345768975659],[-117.04994825406753,32.68346752719773],[-117.0499595852388,32.68347737846382],[-117.04997089378844,32.68348724361807],[-117.05065885006823,32.68408744508893],[-117.05127154104959,32.68463041372854],[-117.0504527184813,32.68500952689283],[-117.05043851451825,32.68501620173738],[-117.05042435010047,32.68502293679035],[-117.05041022192817,32.68502972657604],[-117.05039613330113,32.68503657657016],[-117.05038208416941,32.685043481276],[-117.05036807783276,32.68505044616909],[-117.05035410774154,32.6850574657951],[-117.0503401771705,32.68506454288119],[-117.05032628936958,32.68507167740627],[-117.05031244106388,32.68507886664318],[-117.05029863552826,32.68508611331915],[-117.05028486951278,32.68509341745526],[-117.05027114624237,32.68510077628209],[-117.05025746574195,32.68510819254806],[-117.05024382798653,32.68511566350473],[-117.05023022972631,32.68512318917337],[-117.05021667751087,32.68513077500833],[-117.05020316799052,32.68513841003748],[-117.05018970446511,32.68514609973635],[-117.05017628048458,32.68515384964377],[-117.05016290569893,32.68516164870329],[-117.05014957368319,32.68516950520195],[-117.05013628441232,32.68517741639154],[-117.05012304111133,32.6851853795026],[-117.05010984708,32.68519340001075],[-117.05009669576862,32.68520147246151],[-117.05008359040208,32.68520959408543],[-117.05007053108021,32.68521777587589],[-117.050057520978,32.68522600956683],[-117.05004455682072,32.68523429243103],[-117.05003163543317,32.68524263273456],[-117.0500187697401,32.68525102214812],[-117.05000595004178,32.68525946623158],[-117.04999317631321,32.68526796223669],[-117.04998045177929,32.68527650739406],[-117.04996777646504,32.68528510445201],[-117.04995515042032,32.68529375890714],[-117.04994257354528,32.68530245976632],[-117.04993004913977,32.68531121250501],[-117.04991757070395,32.68532001716539],[-117.04990514473765,32.68532887370536],[-117.04989276794103,32.68533777664932],[-117.04988044363884,32.68534673422126],[-117.04986817178118,32.68535574092444],[-117.04985594911815,32.68536479678004],[-117.04984377892463,32.68537390451532],[-117.04983166115059,32.68538305863352],[-117.04983086711196,32.68538366295503],[-117.04981959584605,32.68539226463149],[-117.04980757971123,32.68540151703356],[-117.04979562254562,32.68541082127313],[-117.04978371454968,32.68542017191687],[-117.04977186224812,32.68542957167097],[-117.04976006239107,32.68543902055648],[-117.04974831497857,32.68544851857342],[-117.04973662323543,32.68545806295247],[-117.049724983887,32.68546765096625],[-117.04971340675766,32.6854772907967],[-117.049701875573,32.68548697980076],[-117.04969040653272,32.68549671237646],[-117.04967899313692,32.68550648856596],[-117.04966763223547,32.68551631938367],[-117.04965632695365,32.68552619106691],[-117.04964508059123,32.68553610909123],[-117.04963388664831,32.68554607349884],[-117.04962275812454,32.68555608420539],[-117.04961168199549,32.68556613854693],[-117.04960066153585,32.68557623925073],[-117.04958970322056,32.68558638352626],[-117.04957879732487,32.68559657418518],[-117.04956795357354,32.68560680841591],[-117.04955716871662,32.68561708623947],[-117.04954643950433,32.68562740767709],[-117.04953577243634,32.68563777268656],[-117.04952516103789,32.68564818405835],[-117.0495146150088,32.68565863623262],[-117.0495041213495,32.6856691292937],[-117.04949369310938,32.68567966865394],[-117.04948332373883,32.68569024885887],[-117.04947301323784,32.68570086990851],[-117.04946276488133,32.68571153453009],[-117.04945258189417,32.68572223995426],[-117.04944245130176,32.68573298901364],[-117.04943238605388,32.68574377612729],[-117.04942238295038,32.68575460681296],[-117.04941244196645,32.68576547832236],[-117.04940256307718,32.68577638790716],[-117.04939274630745,32.68578733831571],[-117.04938299490715,32.68579832952692],[-117.04937329912664,32.68580936160405],[-117.04936367191571,32.68582042896621],[-117.0493541068493,32.68583153990043],[-117.0493446038526,32.6858426861619],[-117.04933516622552,32.68585387322604],[-117.04932579069308,32.68586509836578],[-117.04931648050531,32.68587636155993],[-117.04930723566218,32.68588766280856],[-117.04929805616374,32.68589900211175],[-117.0492889387351,32.68591037674212],[-117.04927988665116,32.68592178942703],[-117.04927089991197,32.68593324016647],[-117.04926198174245,32.68594472619114],[-117.04925312564285,32.68595624754305],[-117.04924433488804,32.68596780694956],[-117.04923561270292,32.68597940164124],[-117.04922695583771,32.68599103163923],[-117.04921836429237,32.68600269694347],[-117.04920984129193,32.68601439478468],[-117.04920138363629,32.68602613068053],[-117.04919299452564,32.68603789911334],[-117.04918467398478,32.6860497028314],[-117.049176418739,32.68606153910752],[-117.04916822876336,32.68607340519338],[-117.04916011065745,32.68608531204011],[-117.04915205782167,32.68609724869663],[-117.04914407353095,32.68610921789016],[-117.04913615778527,32.68612121962073],[-117.04912831383463,32.6861332538673],[-117.04912053515423,32.68614531792368],[-117.04911282501898,32.68615741451713],[-117.0491051867037,32.68616954637494],[-117.04909761360888,32.68618170254593],[-117.04909011235904,32.68619389672963],[-117.04908268282952,32.68620611518438],[-117.04907531859537,32.68621836619742],[-117.0490680293814,32.68623064695709],[-117.04906080543786,32.68624295752669],[-117.04905365651454,32.68625529784303],[-117.04904657283679,32.68626766522096],[-117.04903956417932,32.68628006234565],[-117.04903262404227,32.68629248925927],[-117.04902575565075,32.68630494319238],[-117.0490189590047,32.68631742414497],[-117.04901306831354,32.68632837931252],[-117.04901223412911,32.68632993486546],[-117.04900785937039,32.68633817294845],[-117.04900557774914,32.68634247262658],[-117.04899899633985,32.68635503463782],[-117.04899248345109,32.68636762643809],[-117.04898604553298,32.6863802424885],[-117.04897967611059,32.6863928855796],[-117.0489733816839,32.68640555566925],[-117.04896715897794,32.68641825003017],[-117.04896100799282,32.68643096866239],[-117.04895493200341,32.68644371429323],[-117.04894892448495,32.68645648421644],[-117.04894299193731,32.68646927838986],[-117.04893713433567,32.68648209406531],[-117.04893135172985,32.68649493673939],[-117.04892563757015,32.68650780095753],[-117.04891999838144,32.686520689426],[-117.04891443416368,32.68653360214483],[-117.04890894161716,32.68654653363837],[-117.04890352401685,32.68655948663391],[-117.04889817816255,32.68657246664922],[-117.04889291050435,32.68658546814551],[-117.04888771451753,32.6865984884166],[-117.04888259345212,32.68661152744139],[-117.04887754738276,32.68662459346491],[-117.04887257295994,32.68663767551493],[-117.04886767673344,32.68665077904599],[-117.04886285542835,32.6866639013308],[-117.04885810577,32.68667703964212],[-117.04885343435781,32.68669020493115],[-117.04884883784224,32.68670338622569],[-117.04884431299831,32.68671658629505],[-117.04883986630108,32.68672980234884],[-117.04883549127554,32.68674303717751],[-117.04883120092154,32.68675629069684],[-117.04882697571455,32.68676956028486],[-117.04882283517908,32.68678284856358],[-117.04881876629054,32.68679615286885],[-117.048814772299,32.68680947317964],[-117.04881085647918,32.68682281222326],[-117.0488070155314,32.68683616452412],[-117.04880325273064,32.6868495328095],[-117.0487995648269,32.68686291710041],[-117.04879595179536,32.68687631464855],[-117.04879241688595,32.68688972543288],[-117.04878895364863,32.68690315499219],[-117.04878557825846,32.68691659497622],[-117.04878227126561,32.68693005100796],[-117.04878016010083,32.68693881861805],[-117.0487799840046,32.68693947115046],[-117.0487765210138,32.68695221083745],[-117.04877300892275,32.68696562971891],[-117.04876961725311,32.68697906705948],[-117.04876635257958,32.68699253106208],[-117.04876499483422,32.68699836115476],[-117.04876486339052,32.68699891994927],[-117.0487632148275,32.68700601348174],[-117.04876019427189,32.68701951712992],[-117.04875731038773,32.68703303913208],[-117.04875454370023,32.68704658236281],[-117.0487519071594,32.68706014124125],[-117.0487493942904,32.68707371855784],[-117.04874700831822,32.68708731154322],[-117.048744745993,32.68710092021842],[-117.04874379978061,32.68710697302077],[-117.04874373519144,32.68710737746686],[-117.04874261378991,32.68711454179308],[-117.04874060523386,32.68712817905759],[-117.04873872680002,32.68714182922153],[-117.04873697196352,32.68715548957872],[-117.04873534399944,32.68716916285638],[-117.04873384288281,32.68718284630621],[-117.04873246861368,32.68719653992824],[-117.04873122116734,32.6872102409741],[-117.04873092201254,32.68721381319736],[-117.04873067548131,32.68721673643662],[-117.04865812836546,32.68781912515433],[-117.04865673129993,32.6878328161749],[-117.04865576023073,32.68784653192085],[-117.0486552183583,32.68786026687453],[-117.04865509905845,32.68787400733643],[-117.04865540878143,32.6878877477678],[-117.04865594812047,32.68789777350518],[-117.04865597172802,32.68789822685273],[-117.04865614415304,32.68790147444808],[-117.04865730512374,32.68791518188051],[-117.04865889481917,32.6879288563025],[-117.0486609066898,32.68794249225945],[-117.04866334063618,32.68795607875798],[-117.04866619658387,32.68796960755316],[-117.04866859347418,32.68797946184562],[-117.0486686947828,32.68797988170794],[-117.04866947118356,32.68798306767269],[-117.04867316111061,32.68799645089263],[-117.04867726626568,32.68800974621959],[-117.04868178654944,32.68802294266019],[-117.0486867121871,32.68803603752936],[-117.04869204310417,32.6880490225819],[-117.0486977758765,32.68806187860066],[-117.04870245312192,32.68807159169013],[-117.04870390400431,32.68807460562765],[-117.04871043061327,32.68808718990012],[-117.04871733942863,32.6880996287749],[-117.04872463357597,32.68811190848931],[-117.04873230973084,32.68812402081934],[-117.04873845065264,32.68813313624914],[-117.0487403515686,32.68813595762519],[-117.04874877203953,32.68814771332595],[-117.04875544029878,32.68815655873538],[-117.0488278116965,32.68825228692992]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000409,"geom:area_square_m":4257568.643065,"geom:bbox":"-117.051271541,32.670231137,-117.021615641,32.6978597427","geom:latitude":32.684459,"geom:longitude":-117.037181,"iso:country":"US","lbl:latitude":32.684262,"lbl:longitude":-117.038642,"lbl:max_zoom":18,"mps:latitude":32.684262,"mps:longitude":-117.038642,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":32.684262,"reversegeo:longitude":-117.038642,"src:geom":"mz","wof:belongsto":[420552065,102191575,85633793,85922227,102083569,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"a6b7d1662ad12deddeaa0810565c45dd","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102083569,"locality_id":85922227,"microhood_id":1108826375,"neighbourhood_id":420552065,"region_id":85688637}],"wof:id":1108826375,"wof:lastmodified":1566624124,"wof:name":"South Bay Terraces","wof:parent_id":420552065,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887373],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108826435.geojson b/fixtures/microhoods/1108826435.geojson new file mode 100644 index 0000000..2d8545f --- /dev/null +++ b/fixtures/microhoods/1108826435.geojson @@ -0,0 +1 @@ +{"id":1108826435,"type":"Feature","bbox":[-89.9872879996017,29.90532185957562,-89.96139178437612,29.93019592615992],"geometry":{"type":"Polygon","coordinates":[[[-89.96139178437612,29.9228502788167],[-89.98576259891753,29.90532185957562],[-89.98580799980566,29.90536899986274],[-89.98622599978084,29.90581600001158],[-89.98634299991984,29.90593600005641],[-89.98723500017358,29.90685099982066],[-89.9872879996017,29.90706900035623],[-89.98721200011954,29.90735100014037],[-89.98701399927056,29.90808499984959],[-89.98695100010383,29.90867699990635],[-89.98678399960359,29.90991600017428],[-89.98672000046543,29.91039600006793],[-89.98668199985347,29.91070599978423],[-89.98663799969788,29.91116100027581],[-89.9865780004649,29.91165300019331],[-89.98655300009712,29.91186700013514],[-89.98649200042675,29.91247300043428],[-89.98645399984044,29.91280199939646],[-89.98640700052225,29.9132910006001],[-89.98631099955692,29.9139669998815],[-89.98620499989256,29.91477299966772],[-89.98611100040708,29.91550500049274],[-89.98603300064742,29.91621800060646],[-89.98601200080017,29.91634399984819],[-89.98598299965477,29.91648399928507],[-89.98595500021257,29.91664600017095],[-89.98590400006115,29.9168909997677],[-89.98580299954186,29.91769800026792],[-89.98570700050603,29.91863000033982],[-89.98561199968078,29.91954800050062],[-89.98552599980539,29.92016900058984],[-89.98551299967953,29.92026500010459],[-89.98548800028996,29.92044600025639],[-89.98537599993178,29.92134299948903],[-89.98526800053884,29.92224500005939],[-89.98514200078245,29.92316899932549],[-89.98511100010167,29.92341500011946],[-89.98506000078032,29.92392000021507],[-89.98503899927579,29.92408999958911],[-89.98500000062599,29.92441099998805],[-89.98493699974178,29.92488999984604],[-89.98489699994848,29.92534800033518],[-89.98492699991311,29.9256420001832],[-89.98493599988576,29.92573600017683],[-89.98499199930613,29.9262969998978],[-89.98505100050255,29.93017299941023],[-89.98505134957425,29.93019592615992],[-89.98391579308782,29.92968673699997],[-89.98381003538279,29.92963931403997],[-89.98315896639117,29.92934736532113],[-89.98185144972292,29.92880604171602],[-89.98055155615894,29.9282678545465],[-89.97761722724492,29.92713139539023],[-89.96751874304306,29.92346326367891],[-89.96291170210145,29.92299412703895],[-89.96199779640129,29.92290763869291],[-89.96139178437612,29.9228502788167]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000291,"geom:area_square_m":3115608.928367,"geom:bbox":"-89.9872879996,29.9053218596,-89.9613917844,29.9301959262","geom:latitude":29.918714,"geom:longitude":-89.978063,"iso:country":"US","lbl:latitude":29.91866,"lbl:longitude":-89.97847,"lbl:max_zoom":18,"mps:latitude":29.91866,"mps:longitude":-89.97847,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["Cutoff","Cut-Off"],"reversegeo:latitude":29.91866,"reversegeo:longitude":-89.97847,"src:geom":"mz","wof:belongsto":[420521765,102191575,1108746803,85633793,85948111,102086693,85688735,1108739497],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"1fe6a7ad56b9ffde3d07a2d8ee9bfcef","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108746803,"microhood_id":1108826435,"neighbourhood_id":420521765,"region_id":85688735},{"continent_id":102191575,"country_id":85633793,"county_id":102086693,"locality_id":85948111,"macrohood_id":1108739497,"microhood_id":1108826435,"neighbourhood_id":420521765,"region_id":85688735}],"wof:id":1108826435,"wof:lastmodified":1566624122,"wof:name":"Cut Off","wof:parent_id":420521765,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85813311],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108827613.geojson b/fixtures/microhoods/1108827613.geojson new file mode 100644 index 0000000..b0760ed --- /dev/null +++ b/fixtures/microhoods/1108827613.geojson @@ -0,0 +1 @@ +{"id":1108827613,"type":"Feature","bbox":[-118.366045,33.99710022987493,-118.335095,34.021562],"geometry":{"type":"Polygon","coordinates":[[[-118.365874,34.021562],[-118.35220815421451,34.02151189980395],[-118.345901,34.017528],[-118.345389,34.017207],[-118.345227,34.017105],[-118.344032,34.016354],[-118.341683,34.014877],[-118.341501,34.01466],[-118.337791,34.012327],[-118.335629,34.010966],[-118.335509,34.010914],[-118.335376,34.010874],[-118.335293,34.010868],[-118.335226,34.010871],[-118.335157,34.010887],[-118.335096,34.010925],[-118.335095,34.008465],[-118.3357113078643,34.00824145920434],[-118.33569107105525,34.00811406527479],[-118.33606497053776,34.00796429643224],[-118.33621815395493,34.00790307358894],[-118.3363581581886,34.0078466955138],[-118.33643391850642,34.00781454072959],[-118.3365491750523,34.00775788781272],[-118.33663311992066,34.0077095662211],[-118.33670222911208,34.00766437668369],[-118.33678940611884,34.00759955835518],[-118.33683216143478,34.00756509052996],[-118.3368716127471,34.00752960174665],[-118.33689626701009,34.0075065199181],[-118.33693078118162,34.00747413639091],[-118.33701126124792,34.007384949262],[-118.33707034793575,34.00730921828225],[-118.33713598963018,34.00722247648888],[-118.33718029903159,34.00716430404148],[-118.33723445037522,34.00709202071],[-118.33728039650705,34.00703075255727],[-118.3373230637881,34.00697464570971],[-118.33735589811006,34.00693471021751],[-118.3375955075424,34.0070326194587],[-118.33764147972538,34.00697787685868],[-118.33769075321705,34.00692312528721],[-118.33774003748847,34.00687146483425],[-118.337759752814,34.00685114483402],[-118.33779590551262,34.00681600798477],[-118.33783205910953,34.00678121441737],[-118.33789123203562,34.00672712175932],[-118.33794548578722,34.00668059946923],[-118.33801454916457,34.00662441866705],[-118.33806553125189,34.00658477492452],[-118.33810665073572,34.00655408966016],[-118.3382037101089,34.00648546516812],[-118.3383205369099,34.00640991508833],[-118.3383978890424,34.00636401443339],[-118.33844233139445,34.00633915845653],[-118.33848348501424,34.00631671673068],[-118.33851640826941,34.00629910649513],[-118.33853616491744,34.00628909052311],[-118.33855098172974,34.00628149178783],[-118.3385674469506,34.00627354603007],[-118.33859872898371,34.00625800153413],[-118.33866623827564,34.0062258677442],[-118.33873046332688,34.00619717884474],[-118.33884245719167,34.00615049392339],[-118.33889187082052,34.0061311202432],[-118.33894293734944,34.0061124286887],[-118.3390005921227,34.006091314674],[-118.33904671612096,34.0060743545007],[-118.3391093125266,34.00605116504205],[-118.33916037905556,34.00603247346996],[-118.33922956370546,34.00600686154139],[-118.33929380941795,34.00598332355187],[-118.33956231495809,34.00588433256227],[-118.33974839288435,34.00579999837364],[-118.33980108087239,34.00577408850036],[-118.33982413164259,34.00576303213923],[-118.33983894575994,34.00575474675581],[-118.3398751658322,34.00573644012155],[-118.33989985602777,34.00572263139261],[-118.33992454712165,34.00570916596217],[-118.33995911249717,34.00568983388381],[-118.34002330071748,34.00565255706676],[-118.34012039422663,34.00559320395801],[-118.34039350093764,34.00540901335287],[-118.34050372961288,34.00533451009484],[-118.34054979611896,34.00530346692723],[-118.3406057324151,34.00526552567622],[-118.34063370056315,34.00524655541675],[-118.34066331352648,34.00522654928743],[-118.34067812045733,34.00521654659337],[-118.34071431897002,34.00519308806683],[-118.34075709674383,34.00516480169677],[-118.34082950275238,34.00512028773044],[-118.34091179921218,34.00507334157471],[-118.34097105657989,34.00504088637388],[-118.34100892056912,34.00502120115885],[-118.34104513974307,34.00500289436645],[-118.34112746315232,34.00496316050373],[-118.34122461954358,34.00491960634232],[-118.34132343602145,34.00487879635729],[-118.34142391617922,34.00484107236743],[-118.34144862613775,34.00483241529137],[-118.3414749836065,34.00482306713761],[-118.34149475283098,34.00481648477971],[-118.34152605552535,34.00480609181717],[-118.34160349479444,34.00478217221095],[-118.34165622320664,34.00476690968159],[-118.34173532166403,34.00474538947331],[-118.34184079825145,34.00471967364384],[-118.34194793672214,34.0046970438267],[-118.3420567388727,34.00467750002418],[-118.34214082118329,34.0046645527366],[-118.34224305036096,34.00465155406302],[-118.34235518615957,34.00464058840876],[-118.34240136315843,34.00463702205747],[-118.34242610186303,34.00463523478591],[-118.34245413918138,34.00463343783326],[-118.34249537364954,34.00463125959601],[-118.34253496150579,34.00462977392643],[-118.34260588978569,34.00462751153832],[-118.34278075583886,34.00462667152066],[-118.34488740668976,34.00461826538548],[-118.34533282284866,34.00461664864906],[-118.34562976545742,34.00461545490039],[-118.3458722800414,34.00461682141873],[-118.34588712829473,34.00461712227615],[-118.34602571947846,34.00462084650399],[-118.3461115211645,34.00462472264971],[-118.34619402513516,34.00462929434185],[-118.34631448921475,34.00463753589801],[-118.34642010683764,34.00464616320608],[-118.34645641404649,34.00464949423296],[-118.34650097407784,34.00465383134438],[-118.34656864147324,34.00466085010692],[-118.34658679642514,34.00466285929739],[-118.34663961197394,34.00466888984732],[-118.34675020177194,34.00468299886013],[-118.34684924282865,34.00469679733234],[-118.34688225771198,34.00470185456231],[-118.3468987642553,34.0047042115248],[-118.34694168486126,34.00471095772449],[-118.34704898952027,34.0047285102031],[-118.34717610831952,34.00475047127532],[-118.34735605434565,34.00478121006473],[-118.34763670780335,34.00482951991809],[-118.3480774958419,34.00490484650619],[-118.34842088135082,34.00496362295847],[-118.34868007405638,34.00500821371023],[-118.34880554175213,34.00502949108201],[-118.34889138925224,34.00504435589817],[-118.34907297470379,34.00507199665983],[-118.34910928820081,34.00507670013849],[-118.34917530718768,34.00508406589273],[-118.34922811914323,34.00508906575836],[-118.34931063299535,34.00509569650014],[-118.34938654063684,34.00510062859804],[-118.34948389016587,34.0051044689767],[-118.34955318441024,34.00510564186716],[-118.34962577457341,34.00510611847023],[-118.34972804866685,34.00510410482212],[-118.34988474000522,34.00509643746912],[-118.3499985322972,34.00508717721814],[-118.35014528737022,34.00507026450468],[-118.35024421074763,34.00505589491375],[-118.35032004382897,34.00504296555652],[-118.35044202516308,34.00501959783458],[-118.35051289684912,34.00500393544765],[-118.35057058036844,34.00499037234844],[-118.35066616021638,34.00496536405204],[-118.35069746919896,34.00495668539255],[-118.3507271288747,34.00494835599351],[-118.35079797989947,34.00492754031168],[-118.35085399434901,34.00490951648287],[-118.35091000790024,34.00489114860148],[-118.3509264803076,34.00488526179333],[-118.35094624773544,34.00487833464675],[-118.35096436675471,34.00487175601661],[-118.35101872201594,34.00485133202537],[-118.35110601490534,34.00481741713774],[-118.35115542044933,34.0047970072826],[-118.35121799619371,34.00476969037391],[-118.35133819167703,34.0047140400204],[-118.35140239427041,34.00468156532016],[-118.35149128346607,34.00463493616261],[-118.35165584674128,34.00453793864548],[-118.35180226584438,34.00444133570763],[-118.35190259508522,34.00436925485062],[-118.35192726282293,34.00435063514418],[-118.35196015104378,34.00432546505971],[-118.35200289827489,34.00429099143743],[-118.3520867344471,34.00421998952334],[-118.35215576548511,34.00415899185912],[-118.35220177000744,34.00411454811225],[-118.35223298556527,34.0040838872752],[-118.3523200565708,34.00399741772731],[-118.35236769782355,34.00394987816771],[-118.35241533907634,34.00390233858151],[-118.35251883757348,34.0037996782448],[-118.3528014017478,34.00351856922034],[-118.35364908618587,34.00267661428477],[-118.35391850171936,34.00240893771044],[-118.35399242857568,34.00233590263597],[-118.35408278651686,34.00224770579828],[-118.35415672415296,34.00217741785004],[-118.35423396669096,34.00210849416827],[-118.35429642206108,34.00205369700859],[-118.35436874901787,34.00199268810724],[-118.35443943924417,34.0019344316478],[-118.35450849094346,34.00187927169689],[-118.35459563650916,34.00181169348444],[-118.35464825622526,34.00177169375259],[-118.35467950412242,34.00174927539566],[-118.35473542155391,34.0017089233808],[-118.35479134078204,34.00166891540863],[-118.3549377401222,34.00156990524056],[-118.35514831510628,34.00143292294971],[-118.35527827886999,34.00134838698872],[-118.35538685554343,34.00127765220552],[-118.35545595126015,34.00123313918084],[-118.35553161815315,34.0011817374106],[-118.3556746784554,34.00107380558188],[-118.35575029683939,34.0010114122716],[-118.35583247112834,34.00093903880424],[-118.35591133602375,34.00086426948026],[-118.35594911467302,34.00082603133318],[-118.35601645597998,34.00075679302325],[-118.35607884217984,34.00068619477791],[-118.35617075061319,34.00057532211731],[-118.35622652161929,34.00050096505515],[-118.35630686244673,34.00038566024243],[-118.35637240981805,34.00028276553221],[-118.35640515161356,34.00022393296446],[-118.3564477155883,34.00014721031375],[-118.3565065821889,34.00002510036001],[-118.35653109182311,33.99997006949827],[-118.35655884347719,33.99990129073868],[-118.35657678013845,33.99985212014356],[-118.35659473207107,33.9998067268353],[-118.35661427761504,33.99974793340902],[-118.35662565298149,33.99970771226239],[-118.35663540868546,33.99967436579171],[-118.35665004852967,33.99962589139747],[-118.35667757111334,33.99950352897176],[-118.35668890156403,33.99945266013478],[-118.3566985638432,33.99939733100525],[-118.35671463650026,33.99929801656835],[-118.3567274976802,33.99921932099925],[-118.35673875267238,33.99915059152975],[-118.3569043490102,33.99813888501051],[-118.35691567856254,33.99808801610116],[-118.35693193537423,33.99803198005561],[-118.35694494657281,33.99798831956382],[-118.356961261775,33.99794602269623],[-118.35696942207105,33.99792538925286],[-118.35698738927505,33.99788377455015],[-118.35699720067458,33.99786348070032],[-118.35700866138097,33.99784318088761],[-118.35701847188218,33.99782288628331],[-118.35702993708016,33.9978036172037],[-118.35705285939126,33.99776336236719],[-118.35706597209945,33.99774374472788],[-118.35709220200745,33.99770519610178],[-118.35710531830891,33.9976862658601],[-118.3571184355087,33.99766767894751],[-118.35714796852196,33.99763049542814],[-118.35716273862188,33.99761259070166],[-118.35717094652861,33.99760329239689],[-118.35719392812854,33.9975767760241],[-118.35721199055396,33.99755748752496],[-118.35722677233194,33.99754233019787],[-118.3572612694355,33.99750856730167],[-118.357279343539,33.99749202620344],[-118.35734178363779,33.99743482347124],[-118.35735492868534,33.99742276283321],[-118.35761781885658,33.997179140409],[-118.35770326031822,33.99710022987493],[-118.35773793888144,33.99710905754492],[-118.35783391758135,33.99718021733459],[-118.35811853979595,33.99738992860524],[-118.35815918317269,33.99763608558075],[-118.35820829317095,33.99793339686159],[-118.35821507814629,33.99797699929071],[-118.35822011859334,33.99799828065812],[-118.35825907942555,33.9982368863143],[-118.3582997084292,33.99847960828092],[-118.35831323436244,33.99855650819878],[-118.3583521655502,33.99878790089487],[-118.35837078852437,33.99889947818463],[-118.3583927361634,33.99901688370822],[-118.35842633315504,33.99915830038043],[-118.35844478005937,33.99922865934339],[-118.3584648753723,33.9992986704529],[-118.35850836012025,33.99943765134954],[-118.35855843760409,33.99957524084286],[-118.3585951140205,33.99966512431281],[-118.35862176793331,33.99972584145861],[-118.35868836094365,33.99986784529385],[-118.3587349556591,33.99996216485528],[-118.35879149741972,34.00006813422631],[-118.35888795761659,34.00025058032903],[-118.35894450656373,34.00035826595209],[-118.3589644635361,34.0003959896988],[-118.35898605005237,34.00042890021719],[-118.3590773700892,34.00056670929042],[-118.35914547496417,34.0006760776052],[-118.35918038439442,34.00073848754587],[-118.35922031720372,34.00081805676519],[-118.35927029497456,34.00093194526127],[-118.35930536430492,34.00103110735277],[-118.35932544883806,34.00109837042178],[-118.35934223565577,34.00116598643811],[-118.35935737406496,34.00123395167724],[-118.35936246841091,34.00126794097897],[-118.35937266159446,34.00133660841258],[-118.35938127194645,34.0014210795942],[-118.35938479963058,34.00147430877283],[-118.35938494785259,34.00150865693529],[-118.3593851832112,34.00156361307264],[-118.35938374321181,34.00161239244225],[-118.35938382855174,34.00163231377977],[-118.35938224122863,34.00164674501721],[-118.3593807401438,34.00168144089523],[-118.3593759386486,34.00171580386839],[-118.35937278735858,34.00175016161455],[-118.35936798586339,34.00178452530458],[-118.35936318257158,34.00181854417485],[-118.35935673176952,34.00185291156082],[-118.35934539503064,34.00190206386923],[-118.3593340726648,34.00195465005309],[-118.35931456574839,34.00202203080116],[-118.35929343916953,34.00209628599476],[-118.35926741228081,34.00218223468617],[-118.3592560081683,34.00221558613006],[-118.35924952143364,34.00224171082287],[-118.35921372267124,34.00235688428006],[-118.35880383578015,34.00371692597268],[-118.35872738825113,34.0039709875019],[-118.35868672241655,34.00410575468185],[-118.35819713070524,34.00573463425597],[-118.35811741510524,34.00599660649117],[-118.35807675196558,34.00613240258794],[-118.35783273809338,34.00693893997886],[-118.35781647768843,34.00699428877008],[-118.35780023435146,34.00705376004768],[-118.35778235608065,34.00711667019154],[-118.35777262732616,34.00715654304553],[-118.35776292462276,34.00720225561427],[-118.35774839796629,34.00727752201329],[-118.35772918120574,34.00741325499875],[-118.35772287952405,34.00748300021638],[-118.35771695423642,34.00764067756021],[-118.35771715006915,34.00768636008156],[-118.3577208385517,34.00777737282214],[-118.35772433120151,34.00782270229709],[-118.35773120241514,34.0078862262224],[-118.35774147465042,34.00797378349301],[-118.3577500661378,34.00805378975532],[-118.35778935754999,34.00836899235316],[-118.35781846116856,34.00861621439795],[-118.35782557852058,34.00873744298146],[-118.35782757008555,34.00881746863011],[-118.35782778568122,34.00886796027333],[-118.3578262217143,34.00888788661099],[-118.35782326715533,34.00896861433077],[-118.35782018144235,34.00901877302206],[-118.35781226009817,34.00909539308744],[-118.35780748016253,34.00913490757698],[-118.3573292371673,34.01002638053059],[-118.35723171327342,34.01018390442447],[-118.35710623716729,34.01036533274282],[-118.35694533274282,34.01052480884895],[-118.35659718937953,34.0109028566367],[-118.35622633274282,34.0112298566367],[-118.35608095221222,34.01132890442447],[-118.355931,34.011461],[-118.355839,34.011587],[-118.355729,34.011761],[-118.355633,34.011941],[-118.355553,34.012126],[-118.355489,34.012315],[-118.355446,34.01248],[-118.355388,34.012822],[-118.355479,34.018237],[-118.355562,34.018316],[-118.356862,34.01832],[-118.357942,34.018324],[-118.358289,34.018322],[-118.358595,34.018306],[-118.358823,34.018281],[-118.359049,34.018247],[-118.359145,34.01823],[-118.359661,34.01812],[-118.359971,34.018071],[-118.360126,34.018054],[-118.360363,34.018035],[-118.360679,34.018027],[-118.360994,34.018037],[-118.36114,34.018048],[-118.361386,34.018076],[-118.361618,34.018113],[-118.361848,34.018159],[-118.362117,34.01822],[-118.362381,34.018271],[-118.362608,34.018303],[-118.362912,34.018331],[-118.363091,34.018339],[-118.364072,34.018344],[-118.365032,34.018347],[-118.366045,34.01835],[-118.365903,34.021009],[-118.365874,34.021562]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000313,"geom:area_square_m":3210403.596313,"geom:bbox":"-118.366045,33.9971002299,-118.335095,34.021562","geom:latitude":34.011516,"geom:longitude":-118.350125,"iso:country":"US","lbl:latitude":34.011023,"lbl:longitude":-118.362372,"lbl:max_zoom":18,"mps:latitude":34.011602,"mps:longitude":-118.349083,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:deu_x_preferred":["Baldwin Hills"],"name:eng_x_preferred":["Baldwin Hills"],"name:eng_x_variant":["Baldwin Hls"],"name:nld_x_preferred":["Baldwin Hills"],"name:spa_x_preferred":["Baldwin Hills"],"name:zho_x_preferred":["鮑德溫山"],"reversegeo:latitude":34.011602,"reversegeo:longitude":-118.349083,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1041531571,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q804862"},"wof:country":"US","wof:geomhash":"9ee2cfe162c056798641095d10f422a4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1108827613,"neighbourhood_id":1041531571,"region_id":85688637}],"wof:id":1108827613,"wof:lastmodified":1566624122,"wof:name":"Baldwin Hills","wof:parent_id":1041531571,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865473],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108827615.geojson b/fixtures/microhoods/1108827615.geojson new file mode 100644 index 0000000..74ae968 --- /dev/null +++ b/fixtures/microhoods/1108827615.geojson @@ -0,0 +1 @@ +{"id":1108827615,"type":"Feature","bbox":[-118.29180053971,33.87270612830339,-118.281193,33.92372],"geometry":{"type":"Polygon","coordinates":[[[-118.281193,33.92372],[-118.281239,33.923295],[-118.28125323250077,33.9232039119951],[-118.28126325830814,33.92320390937341],[-118.28140993882099,33.92320356723033],[-118.28146071249915,33.92310899182454],[-118.28171615024682,33.92310324321794],[-118.28194851476643,33.92309789116941],[-118.28197195001556,33.92320534577799],[-118.28209885411742,33.92320539199339],[-118.28210292168903,33.92294502370118],[-118.28210712670287,33.92272553014161],[-118.28210998873536,33.92259637366173],[-118.28212626531,33.92155661914793],[-118.2821290393076,33.92140170346645],[-118.28213170550735,33.92121449933212],[-118.28213290475827,33.92108122654267],[-118.28213695077031,33.92081433147681],[-118.28214225172881,33.92043099587994],[-118.28214611807779,33.92011051828652],[-118.28214742512651,33.92000918876349],[-118.2821501569033,33.91984156351317],[-118.28215261918551,33.91959390813422],[-118.28215810968851,33.91926690102843],[-118.28216052436,33.91900516324156],[-118.28216207934376,33.91897733721053],[-118.28216730214882,33.91857064361242],[-118.28217002494245,33.91840061443182],[-118.28217256717471,33.91817665955118],[-118.2821724503937,33.91814196836365],[-118.28217380235822,33.9180540338143],[-118.28217523247615,33.91798945578525],[-118.28217793460851,33.91781290120618],[-118.28217905390937,33.91765592721645],[-118.28218038251767,33.91756112350548],[-118.28218306937869,33.91738010272942],[-118.28218845118555,33.91702080929423],[-118.28219118925054,33.91685524534008],[-118.28219629168134,33.91641283066572],[-118.28219760681493,33.91631390386797],[-118.28219882493045,33.91618647014351],[-118.28220284399303,33.91591167636262],[-118.28220705439676,33.91569389940489],[-118.28221231223614,33.91529785421177],[-118.28221364264107,33.91520339377988],[-118.28222412238718,33.91440065442526],[-118.28222669336552,33.91418528675282],[-118.2822332690334,33.91369134615862],[-118.2822339930755,33.91341690291502],[-118.28223536390465,33.91284534833162],[-118.28223893560617,33.91145939595266],[-118.2822406298288,33.91098367117148],[-118.28224087237396,33.9105663418519],[-118.28224061096422,33.91048871600525],[-118.28224291424459,33.91019400359352],[-118.28224343886073,33.90986048253595],[-118.28224361493051,33.90942357456635],[-118.28224473333306,33.90926625858028],[-118.28224976120369,33.90684505190478],[-118.28225176714174,33.90646206725078],[-118.28225350448348,33.90599939543333],[-118.28225823770671,33.90446917817521],[-118.28225884227291,33.90415935746922],[-118.28226015560983,33.90406008839418],[-118.28225976484269,33.9039439937413],[-118.28226107907795,33.90384506812743],[-118.2822608688722,33.9037825557708],[-118.282267646661,33.90139157209475],[-118.28226880818266,33.90124730795861],[-118.2822689986255,33.90081452228708],[-118.28227006672238,33.90064243708677],[-118.2822748754041,33.89913489044932],[-118.28227646003224,33.89862687919418],[-118.28227572790529,33.89840945847418],[-118.28227989069833,33.89719936795619],[-118.28311595812313,33.89692949234248],[-118.28302086246717,33.89462736843769],[-118.28298501968732,33.89377081290816],[-118.282924033961,33.89229811420531],[-118.28290786967577,33.89190211988744],[-118.2828899339128,33.89146937701393],[-118.28276247734703,33.88836083929904],[-118.28274994495051,33.88806410258299],[-118.28273018201426,33.88757743802509],[-118.28262800943048,33.88512420103796],[-118.2826155210514,33.88484051702979],[-118.28260298865487,33.88454343546488],[-118.28259575272526,33.8843517914739],[-118.28258674711455,33.88412374170804],[-118.2823967570252,33.87956037280392],[-118.28236620981399,33.87880513260205],[-118.28234652592946,33.87834045144418],[-118.28230346608463,33.87729328371888],[-118.28228019073563,33.87674033599349],[-118.28226768978013,33.87645184266756],[-118.28215469609043,33.87371182828765],[-118.28215468890392,33.87370976752469],[-118.28185812448591,33.87270612830339],[-118.28715042591311,33.87274069030036],[-118.29075933929508,33.8727639802408],[-118.29091252450893,33.87276498415603],[-118.29091255056007,33.87277254037011],[-118.29091425825743,33.87279005368934],[-118.29091604859977,33.87283126714485],[-118.29093897540245,33.87326777412324],[-118.29094604783869,33.87340720924877],[-118.29096195430742,33.87371905028051],[-118.29096901057397,33.87385367697598],[-118.29097079193319,33.87389248607253],[-118.29097255442778,33.87392579905185],[-118.29097428907458,33.87395086973591],[-118.29099237575453,33.87441624082741],[-118.2910013669922,33.87463398449398],[-118.29101578135925,33.87499048143633],[-118.29102645334483,33.87521783887055],[-118.29103183515167,33.87534457084766],[-118.29103375844473,33.87542425286376],[-118.29104089196639,33.87558120541682],[-118.29105524884125,33.87592087263238],[-118.29108405511747,33.87662699648939],[-118.29109668453204,33.87694365415841],[-118.29118307461461,33.87905275359039],[-118.29119203980113,33.87926259791009],[-118.2912315566905,33.88020569770566],[-118.29124422563095,33.8805333468684],[-118.29125129537225,33.88067175138551],[-118.29126035488189,33.88090873139453],[-118.29127108435962,33.88115223182406],[-118.29127654342162,33.88130094569382],[-118.29127834095048,33.88134422009256],[-118.29128012500462,33.88138371562505],[-118.29128021483618,33.88140947619762],[-118.29128190366892,33.88142149436494],[-118.29128198721224,33.88144553740644],[-118.29128380719901,33.88149533725897],[-118.29128554813401,33.881522124729],[-118.2912855894565,33.88153414660933],[-118.29128915756483,33.88161279517021],[-118.29129088322848,33.88163546071458],[-118.29129094790719,33.88165400809395],[-118.2913069244445,33.88198508372986],[-118.29131750390361,33.88218530713753],[-118.29132470839218,33.88236252466047],[-118.29132638105526,33.882369733989],[-118.29132643944577,33.88238656445373],[-118.29132823697464,33.88242983830188],[-118.2913282648224,33.88243773820425],[-118.29132993119727,33.88244323002683],[-118.29132997072314,33.88245456492677],[-118.2913300228254,33.88246967787578],[-118.29133172513288,33.88248547319785],[-118.29133178711665,33.88250333428793],[-118.29133720844938,33.88264140076131],[-118.29134975342232,33.88293298373491],[-118.29135870513413,33.88313870713655],[-118.29136050266301,33.88318198134895],[-118.29136233253125,33.88323452905677],[-118.29136949120574,33.88339835133598],[-118.29137138305774,33.88346876129007],[-118.29137489816544,33.88353229605538],[-118.29137679091572,33.88360270440739],[-118.29138206222983,33.8836974921897],[-118.29138565279602,33.88378266634593],[-118.29139112084115,33.88393412820601],[-118.29140371252649,33.88423910715375],[-118.2914073102792,33.88432634351308],[-118.29143252509091,33.88494523227766],[-118.29143434417936,33.88499468928249],[-118.29144508443689,33.88524093878712],[-118.29144855912041,33.88529279541613],[-118.29146294384306,33.88563967478807],[-118.29146829959879,33.88575850660781],[-118.2915097361879,33.88677854152655],[-118.29151516919872,33.88691969808605],[-118.291518805579,33.88701792520115],[-118.29152422960668,33.88715667789283],[-118.29152778424026,33.88723120412664],[-118.29153133528058,33.88730504348379],[-118.291533222641,33.88737407808316],[-118.29153853168431,33.88747951431748],[-118.29153863588888,33.88750939689191],[-118.29154043341778,33.88755267112448],[-118.29154215369157,33.88757361918602],[-118.29154222465847,33.88759388416182],[-118.2915457424611,33.88765810639233],[-118.29154754268495,33.88770206735784],[-118.29155291640699,33.88782604997004],[-118.29155295054296,33.88783601128608],[-118.29155301611998,33.88785490258528],[-118.29155474358026,33.8878779109934],[-118.2915565393125,33.88792049897817],[-118.2915584078083,33.8879840386311],[-118.29156385429387,33.88812897323291],[-118.29156731640097,33.88817705254584],[-118.29157821386367,33.88846829743462],[-118.29158182149787,33.88855827965802],[-118.29158720330473,33.88868466743733],[-118.2916015538914,33.88902124298342],[-118.29160518218683,33.88911706500782],[-118.29160692132523,33.88914350855069],[-118.29161056040043,33.88924242213811],[-118.2916286551652,33.8897081371219],[-118.29163228885054,33.88980567721751],[-118.29164861752746,33.89023739201156],[-118.29165232487462,33.8903558833544],[-118.29167574036082,33.89093012556504],[-118.29167947286082,33.89105582975986],[-118.29171014853115,33.89182274705882],[-118.29171377323333,33.89191753838433],[-118.29171565610216,33.8919852001772],[-118.29172105677364,33.89211673926749],[-118.29172109809615,33.89212876114622],[-118.29172290370987,33.89217409633512],[-118.29172644307211,33.89224450053747],[-118.29172820466837,33.89227712703732],[-118.29173014323274,33.89236093176227],[-118.29173553761603,33.89249075446718],[-118.29174627787357,33.89273631644402],[-118.2917516938164,33.89287232171528],[-118.29177511828576,33.89344896817425],[-118.29178235511368,33.89363477327761],[-118.29180053971,33.89412556184431],[-118.29176974546206,33.8942719594403],[-118.29170813720323,33.89455891386711],[-118.29170166663823,33.89459327761508],[-118.29170171514727,33.89462522093778],[-118.29170047367553,33.89472380380656],[-118.29170071172908,33.89479215534393],[-118.29169823327722,33.89550041739184],[-118.29169846414425,33.89556670807174],[-118.29169787664607,33.89587137699683],[-118.29169827010814,33.89598438074678],[-118.29169681753233,33.89604037216996],[-118.29169699180548,33.89609051992178],[-118.29169533531213,33.89656143490824],[-118.29169569733318,33.89666550868267],[-118.29169456365928,33.89681320753517],[-118.29169150489574,33.8973545393925],[-118.29169135308047,33.89778423408574],[-118.29169034067912,33.89796696818495],[-118.2916904556635,33.89799994219612],[-118.29169054549502,33.89802570297042],[-118.29168886115386,33.8984887185481],[-118.29168931300646,33.89861855205682],[-118.29168787929528,33.89868003849266],[-118.29168695133558,33.89888681625409],[-118.29168738432355,33.8990111554186],[-118.29168769514064,33.89910045918879],[-118.29168636293907,33.89919114151645],[-118.29168641414304,33.89920591149767],[-118.29168468398778,33.89965553164618],[-118.29168476393785,33.89967854432705],[-118.29168427166108,33.90001069004901],[-118.29168448815506,33.90007285920733],[-118.2916820564156,33.90079451768653],[-118.29168251365809,33.90092572630722],[-118.29168112486262,33.90100026511478],[-118.29167945579285,33.90194106227381],[-118.29167828618633,33.90207845681941],[-118.29167734565023,33.90275511548195],[-118.29167749656719,33.90279839390849],[-118.2916750154204,33.90350596913314],[-118.29167380179643,33.90363065571247],[-118.29167429766649,33.90377319949133],[-118.29167444858345,33.90381647740107],[-118.29167140688789,33.9043629621974],[-118.29167190545289,33.90450619142489],[-118.29166922757503,33.90515709457389],[-118.29166943598416,33.90521720295994],[-118.29166982225972,33.90532814550834],[-118.29166852329585,33.90542844496909],[-118.29166858977118,33.90544733609925],[-118.29166872092522,33.90548511909266],[-118.29166812174891,33.90578635281535],[-118.29166690902326,33.90591138274537],[-118.2916671111442,33.90596943061583],[-118.29166742645286,33.90606010861993],[-118.29166763216708,33.90611918675202],[-118.29166606640354,33.90661620712978],[-118.29166457879343,33.90666223692888],[-118.29166335349139,33.90725714779585],[-118.29166380264901,33.90738629621318],[-118.29166255758403,33.90750205217311],[-118.29166286390954,33.90758998195422],[-118.29166151284338,33.90814882824154],[-118.29166027855814,33.90826767566767],[-118.29166038725431,33.9082989324439],[-118.29165917183373,33.90842327502929],[-118.29165939012434,33.90848578771057],[-118.29165760696849,33.90892063833822],[-118.29165807588906,33.9090552817996],[-118.29165689909604,33.90919061615675],[-118.2916570661827,33.90923870297931],[-118.29165762134154,33.90939807668052],[-118.29165625410569,33.90947879746929],[-118.29165676255214,33.90962477655678],[-118.29165550491074,33.90973709706797],[-118.29165566570917,33.90978312294517],[-118.2916545401201,33.90993322650607],[-118.2916551976869,33.91012214031],[-118.29165524889088,33.91013690914308],[-118.29165536028196,33.91016885260677],[-118.29165375409424,33.91018087865013],[-118.29165390231626,33.91022346966189],[-118.29165397957136,33.91024579584551],[-118.29165418977715,33.91030624731127],[-118.29165488686984,33.9105064959335],[-118.29165376667066,33.91065797295844],[-118.29165255394504,33.9107830024525],[-118.29165310910388,33.91094272067704],[-118.29165193500579,33.91107874163947],[-118.2916509729101,33.91127590127284],[-118.29165145440713,33.9114143237461],[-118.29165045278557,33.91159980491544],[-118.29164962813215,33.91183646564861],[-118.29164997218689,33.91193538720696],[-118.29164883761467,33.91208274276604],[-118.29164890498834,33.91210232126982],[-118.29164904422721,33.91214216412993],[-118.29164913136381,33.91216723849272],[-118.29164808123322,33.91233898135309],[-118.29164858518809,33.91248392898348],[-118.29164624148353,33.91275734569442],[-118.29164667357318,33.91288168475766],[-118.29164559828978,33.91304621422497],[-118.2916458049023,33.91310563566256],[-118.29164482573864,33.91329764444544],[-118.29164515991194,33.91339381790214],[-118.29164440083552,33.91364902600296],[-118.29164337406115,33.91382763856625],[-118.2916436884715,33.91391797273958],[-118.2916423490834,33.91400659368065],[-118.29164242274523,33.91402788935153],[-118.29164271020616,33.91411032485378],[-118.29164276859663,33.91412715501873],[-118.29164282249556,33.91414261198965],[-118.2916428728012,33.91415703794657],[-118.29164156305751,33.91425424591632],[-118.2916421020467,33.91440915371953],[-118.29164233471036,33.91447613194532],[-118.29164097016944,33.91455754122602],[-118.29164108066222,33.91458914085516],[-118.29164133039387,33.91466092806014],[-118.29164153071817,33.91471863226774],[-118.29164001705692,33.91475710519672],[-118.29164017516041,33.91480244400937],[-118.29164019133007,33.91480725312174],[-118.29164057491072,33.91491750927207],[-118.29163945920313,33.91507036132417],[-118.29163973678256,33.91515004797795],[-118.29163868665196,33.91532179079109],[-118.29163894806173,33.91539701254182],[-118.29163760867362,33.91548563418122],[-118.29163620999677,33.91555742510386],[-118.29163342971094,33.91570547141961],[-118.29163197264356,33.91576043231793],[-118.2916305533054,33.91582604004537],[-118.2916305883397,33.91583600107238],[-118.29163072039205,33.91587412759706],[-118.29162649381865,33.91608022627485],[-118.29162497386918,33.91611698251315],[-118.29162360573498,33.91619735998533],[-118.29161834430238,33.91657966724744],[-118.29161868386555,33.91667721462292],[-118.29161876381563,33.91670022718164],[-118.29161736154546,33.91677098908328],[-118.29161758792091,33.91683590573169],[-118.29161797150152,33.91694616223914],[-118.29161685669227,33.91709935729273],[-118.29161578949369,33.91726629167672],[-118.29161595658036,33.91731437841557],[-118.29161369013089,33.91761012028304],[-118.2916141536616,33.91774339104747],[-118.2916127504931,33.9178138076818],[-118.2916129741736,33.91787803771589],[-118.2916124387777,33.91819781999831],[-118.29161113981378,33.91829811922364],[-118.29161149285171,33.91839944556342],[-118.29161160154786,33.91843070160566],[-118.2916107283854,33.91865327971868],[-118.29160958572835,33.91879857516974],[-118.29160861195459,33.91899229981602],[-118.29160656199912,33.91935055548063],[-118.2916055981068,33.919547029552],[-118.29160468182523,33.91975724162887],[-118.29160512828791,33.91988570244585],[-118.29160407905566,33.92005778979699],[-118.29160422727769,33.92010038034523],[-118.29160208030416,33.9204304710944],[-118.2916025411399,33.92056305388554],[-118.29160276032884,33.92062591025172],[-118.2916007067801,33.92098313557309],[-118.29159940062965,33.92108137413747],[-118.2915994446471,33.92109408219858],[-118.29159956052979,33.92112739985138],[-118.29159978421029,33.92119163036928],[-118.29159883918258,33.92186725993892],[-118.29159765789801,33.92200122026713],[-118.29159787259536,33.9220630461476],[-118.29159557560317,33.92282386210972],[-118.29159605620185,33.92296194007979],[-118.29159407451834,33.92333977435491],[-118.29152396689605,33.92367566003093],[-118.281193,33.92372]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000465,"geom:area_square_m":4777367.607589,"geom:bbox":"-118.29180054,33.8727061283,-118.281193,33.92372","geom:latitude":33.898676,"geom:longitude":-118.286962,"iso:country":"US","lbl:latitude":33.89949,"lbl:longitude":-118.287032,"lbl:max_zoom":18,"mps:latitude":33.89949,"mps:longitude":-118.287032,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":33.89949,"reversegeo:longitude":-118.287032,"src:geom":"mz","wof:belongsto":[420780757,102191575,1108692885,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"61c99df5d77a46d7ed688e68c8d37866","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692885,"microhood_id":1108827615,"neighbourhood_id":420780757,"region_id":85688637}],"wof:id":1108827615,"wof:lastmodified":1566624123,"wof:name":"Harbor Gateway North","wof:parent_id":420780757,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865781],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108827619.geojson b/fixtures/microhoods/1108827619.geojson new file mode 100644 index 0000000..5d296a2 --- /dev/null +++ b/fixtures/microhoods/1108827619.geojson @@ -0,0 +1 @@ +{"id":1108827619,"type":"Feature","bbox":[-118.2363476383673,33.9289190887701,-118.23025027073935,33.93245520448072],"geometry":{"type":"Polygon","coordinates":[[[-118.23355580479932,33.929077487872],[-118.23354621333807,33.9298839268799],[-118.23510940166327,33.92989811736666],[-118.23634421782393,33.92990379356071],[-118.2363476383673,33.93070980927416],[-118.23632711510697,33.93149027496683],[-118.23354621333804,33.93149595105533],[-118.2335462133381,33.9321146423713],[-118.2335462133381,33.93245520448072],[-118.23163070904462,33.93245236646877],[-118.2306202046414,33.93243926628474],[-118.23062581324054,33.93242050144305],[-118.2307760690482,33.93191735809665],[-118.23084303485936,33.93169431004664],[-118.23077457964145,33.93137637841733],[-118.2307395013279,33.93120779615782],[-118.23069775032846,33.93101003196155],[-118.23060592184517,33.93058326030864],[-118.23059257198172,33.93052386447624],[-118.23057086958278,33.93042360945837],[-118.23053245672294,33.93024095090452],[-118.23039054356927,33.92958173932458],[-118.23025027073935,33.9289190887701],[-118.23291744337806,33.92904689327266],[-118.23355580479932,33.929077487872]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":150471.805185,"geom:bbox":"-118.236347638,33.9289190888,-118.230250271,33.9324552045","geom:latitude":33.930679,"geom:longitude":-118.232932,"iso:country":"US","lbl:latitude":33.931145,"lbl:longitude":-118.232753,"lbl:max_zoom":18,"mps:latitude":33.930734,"mps:longitude":-118.232264,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Imperial Cts"],"reversegeo:latitude":33.930734,"reversegeo:longitude":-118.232264,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85854791,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"66d57201ed83bd3677db8f56b59a9685","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1108827619,"neighbourhood_id":85854791,"region_id":85688637}],"wof:id":1108827619,"wof:lastmodified":1566624122,"wof:name":"Imperial Courts","wof:parent_id":85854791,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867333],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108827623.geojson b/fixtures/microhoods/1108827623.geojson new file mode 100644 index 0000000..3c550d0 --- /dev/null +++ b/fixtures/microhoods/1108827623.geojson @@ -0,0 +1 @@ +{"id":1108827623,"type":"Feature","bbox":[-118.2367737487082,33.94314255013186,-118.23050960268377,33.94822084096077],"geometry":{"type":"Polygon","coordinates":[[[-118.23284436127211,33.94602080777985],[-118.23280824233319,33.94440878514147],[-118.23180564260818,33.94440257815305],[-118.23179067843319,33.94314255013186],[-118.23491819100819,33.9431611713714],[-118.2349256730957,33.94393084570868],[-118.2367737487082,33.94394325975386],[-118.23676626662069,33.94818255030511],[-118.23394001812387,33.94818058425474],[-118.23051434399184,33.94822084096077],[-118.23050960268377,33.94709697927647],[-118.23492271306094,33.94705136776966],[-118.23491326907234,33.94603502599323],[-118.23438407243681,33.9460312462884],[-118.23414337873787,33.94602965302951],[-118.23300750307857,33.94602189166733],[-118.23284436127211,33.94602080777985]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":206319.048212,"geom:bbox":"-118.236773749,33.9431425501,-118.230509603,33.948220841","geom:latitude":33.94586,"geom:longitude":-118.234258,"iso:country":"US","lbl:latitude":33.946286,"lbl:longitude":-118.236594,"lbl:max_zoom":18,"mps:latitude":33.944952,"mps:longitude":-118.234258,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":33.944952,"reversegeo:longitude":-118.234258,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85854791,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"33f0504a62f5d4d4a475e9b5763bbaf9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1108827623,"neighbourhood_id":85854791,"region_id":85688637}],"wof:id":1108827623,"wof:lastmodified":1566624122,"wof:name":"Jordan Downs","wof:parent_id":85854791,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867337],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108827631.geojson b/fixtures/microhoods/1108827631.geojson new file mode 100644 index 0000000..dda8b99 --- /dev/null +++ b/fixtures/microhoods/1108827631.geojson @@ -0,0 +1 @@ +{"id":1108827631,"type":"Feature","bbox":[-118.24337356513139,33.99296672307665,-118.2389336825578,33.99664577265641],"geometry":{"type":"Polygon","coordinates":[[[-118.24016214679929,33.99296672307665],[-118.24137368338391,33.99298276287512],[-118.24217653796694,33.99299412439741],[-118.24297455607658,33.99300615424305],[-118.24337356513139,33.99301216916586],[-118.2433711468947,33.99333630415413],[-118.2433663104213,33.99398457413069],[-118.2433622800268,33.99459608239457],[-118.24335905571121,33.99517082894577],[-118.2433574435534,33.99575359116391],[-118.24335744355344,33.99634436904901],[-118.24335744355344,33.99663975799155],[-118.24275288437946,33.99664176287984],[-118.24154376603153,33.99664577265641],[-118.2405071485679,33.99664577265641],[-118.23964303198858,33.99664176287984],[-118.23914165091365,33.99663842139925],[-118.23900300534308,33.99663574821465],[-118.2389336825578,33.99663441162235],[-118.2389336825578,33.99651745947065],[-118.2389336825578,33.99628355516723],[-118.2389336825578,33.99616660301552],[-118.23948101012996,33.99616927621476],[-118.24057566527428,33.99617462261322],[-118.24112299284644,33.99617729581245],[-118.24112379892534,33.99599217597063],[-118.24112541108313,33.99562193628699],[-118.24112621716203,33.99543681644516],[-118.24065627316415,33.99543748475075],[-118.23971638516835,33.9954388213619],[-118.23924644117047,33.99543948966748],[-118.23924644117047,33.99528711545109],[-118.23924644117048,33.99498236701832],[-118.23924724724938,33.99481796321197],[-118.23924885940716,33.99479390403206],[-118.23925530803835,33.99476984484534],[-118.23926659314293,33.9947457856518],[-118.23928029648421,33.99472373138586],[-118.2392964180622,33.9947036820475],[-118.23931979435025,33.99468363270442],[-118.23935042534838,33.99466358335659],[-118.23938105634653,33.99464687556411],[-118.23941168734468,33.99463350932697],[-118.23944151226394,33.99462482127243],[-118.23947053110429,33.99462081140047],[-118.23948504052446,33.99461880646449],[-118.23948423444556,33.99443769313356],[-118.23948262228777,33.99407546647168],[-118.23948181620887,33.99389435314075],[-118.23956161801982,33.99389702641148],[-118.23972122164174,33.99390237295293],[-118.23982036934626,33.9939063828589],[-118.23985906113342,33.99390905612936],[-118.23989130428936,33.99390838781171],[-118.23991709881412,33.99390437790594],[-118.23994289333888,33.99389301650375],[-118.23996868786362,33.99387430360514],[-118.24000899180855,33.9938495758373],[-118.24006380517366,33.99381883320026],[-118.24008178208159,33.99380355596677],[-118.2400960483296,33.99379143214643],[-118.24010572127638,33.99376737267583],[-118.24012426109105,33.99355685132448],[-118.24016214679929,33.99296672307665]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000013,"geom:area_square_m":131551.47964,"geom:bbox":"-118.243373565,33.9929667231,-118.238933683,33.9966457727","geom:latitude":33.99482,"geom:longitude":-118.241524,"iso:country":"US","lbl:latitude":33.994309,"lbl:longitude":-118.241789,"lbl:max_zoom":18,"mps:latitude":33.994309,"mps:longitude":-118.241789,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":33.994309,"reversegeo:longitude":-118.241789,"src:geom":"mz","wof:belongsto":[85865791,102191575,1108692435,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"419ef218d2528a5d307d964217e0bd5f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692435,"microhood_id":1108827631,"neighbourhood_id":85865791,"region_id":85688637}],"wof:id":1108827631,"wof:lastmodified":1566624121,"wof:name":"Pueblo del Rio Public Housing","wof:parent_id":85865791,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420551249],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108827633.geojson b/fixtures/microhoods/1108827633.geojson new file mode 100644 index 0000000..ca7a9d2 --- /dev/null +++ b/fixtures/microhoods/1108827633.geojson @@ -0,0 +1 @@ +{"id":1108827633,"type":"Feature","bbox":[-118.36154605061662,34.15765857718626,-118.35183977148095,34.16491342135124],"geometry":{"type":"Polygon","coordinates":[[[-118.35183977148095,34.15831517017607],[-118.35254631094556,34.15804772207455],[-118.35315489466568,34.15783025897569],[-118.35357848276632,34.1577034945654],[-118.35373884111844,34.15767251867064],[-118.35390179286765,34.15765857718626],[-118.36152582900739,34.15766434334005],[-118.36152795531964,34.1581558655843],[-118.36153018673483,34.1594356879944],[-118.36153335688945,34.16016833428245],[-118.36153377909766,34.16026588290398],[-118.36153405218548,34.16032908369417],[-118.36153515441835,34.1613478606141],[-118.36153809460427,34.16202726609975],[-118.36153970348697,34.16239925731394],[-118.36154209659885,34.16333421908092],[-118.3615446855435,34.16431452032647],[-118.36154581472582,34.16457556607291],[-118.36154605061662,34.16491342135124],[-118.35717015601116,34.1648444660885],[-118.35716323269529,34.16129146791202],[-118.35649219566962,34.16129207446116],[-118.35584264454893,34.16129261336823],[-118.35520796773268,34.1612931054461],[-118.35488567107338,34.16129336486482],[-118.35442784468883,34.16129367705926],[-118.35390390499433,34.16129383761635],[-118.35366259594943,34.16129385694272],[-118.35356673223389,34.16129379376049],[-118.35346260581436,34.16129375510786],[-118.35311551744982,34.16129408216869],[-118.35309882405689,34.16125497311834],[-118.35301534900744,34.16105736933583],[-118.35291352407168,34.16081963079526],[-118.35279334385969,34.16054072765009],[-118.35274826819538,34.16043403493016],[-118.35261139728541,34.16011602316335],[-118.35241442009979,34.15965392162023],[-118.35235768250645,34.1595249358905],[-118.35232929933674,34.15945735178811],[-118.35226086028851,34.15929714335318],[-118.35218741133593,34.15912458477852],[-118.35214903081544,34.15903745051806],[-118.35208726445312,34.15889164872691],[-118.35201381909381,34.15871977691559],[-118.35197876952635,34.15863881496141],[-118.35194872716832,34.15856917554685],[-118.35192202115321,34.15850708250949],[-118.35188029350998,34.1584099971903],[-118.35183977148095,34.15831517017607]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":495158.94003,"geom:bbox":"-118.361546051,34.1576585772,-118.351839771,34.1649134214","geom:latitude":34.160634,"geom:longitude":-118.357777,"iso:country":"US","lbl:latitude":34.157819,"lbl:longitude":-118.348828,"lbl:max_zoom":18,"mps:latitude":34.16016,"mps:longitude":-118.35914,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":34.16016,"reversegeo:longitude":-118.35914,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85852321,102191575,1108692439,85633793,85923517,102086957,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"4a3bdaf16bd462195730c7a4a4bd5e25","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086957,"locality_id":85923517,"macrohood_id":1108692439,"microhood_id":1108827633,"neighbourhood_id":85852321,"region_id":85688637}],"wof:id":1108827633,"wof:lastmodified":1566624121,"wof:name":"Toluca Woods","wof:parent_id":85852321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85886615],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108828497.geojson b/fixtures/microhoods/1108828497.geojson new file mode 100644 index 0000000..beb942b --- /dev/null +++ b/fixtures/microhoods/1108828497.geojson @@ -0,0 +1 @@ +{"id":1108828497,"type":"Feature","bbox":[-71.11899156766793,42.37352823982862,-71.11899156766793,42.37352823982862],"geometry":{"type":"Point","coordinates":[-71.11899156766793,42.37352823982862]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":0,"geom:bbox":"-71.1189915677,42.3735282398,-71.1189915677,42.3735282398","geom:latitude":42.373528,"geom:longitude":-71.118992,"iso:country":"US","lbl:latitude":42.373528,"lbl:longitude":-71.118992,"lbl:max_zoom":18,"mps:latitude":42.373528,"mps:longitude":-71.118992,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":12,"name:ceb_x_preferred":["Harvard Square"],"name:deu_x_preferred":["Harvard Square"],"name:eng_x_preferred":["Harvard Square"],"name:eng_x_variant":["Harvard Sq","Harvardsquare"],"name:fra_x_preferred":["Harvard Square"],"name:ind_x_preferred":["Lapangan Harvard"],"name:jpn_x_preferred":["ハーバード・スクエア"],"name:lat_x_preferred":["Quadratum Harvardianum"],"name:nld_x_preferred":["Harvard Square"],"name:nld_x_variant":["Harbor Gateway North"],"name:zho_x_preferred":["哈佛广场"],"reversegeo:latitude":42.373528,"reversegeo:longitude":-71.118992,"src:geom":"mz","wof:belongsto":[85876611,102191575,404476475,85633793,85950329,102084643,85688645],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1587858"},"wof:country":"US","wof:geomhash":"8961f40095f67696db5f01dbc5ac089e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102084643,"localadmin_id":404476475,"locality_id":85950329,"microhood_id":1108828497,"neighbourhood_id":85876611,"region_id":85688645}],"wof:id":1108828497,"wof:lastmodified":1613672353,"wof:name":"Harvard Square","wof:parent_id":85876611,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865509],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831863.geojson b/fixtures/microhoods/1108831863.geojson new file mode 100644 index 0000000..ec692d1 --- /dev/null +++ b/fixtures/microhoods/1108831863.geojson @@ -0,0 +1 @@ +{"id":1108831863,"type":"Feature","bbox":[-122.46152360299993,37.7445755717636,-122.4546098639999,37.75194603600005],"geometry":{"type":"Polygon","coordinates":[[[-122.4546098639999,37.74860639000008],[-122.45462559500983,37.74710371374282],[-122.45550295665242,37.74710167330792],[-122.45583841845692,37.74647321668353],[-122.45622548976985,37.74655483472849],[-122.45631838688494,37.74653034932445],[-122.45638547924588,37.7463344658005],[-122.4564990201643,37.74611409621635],[-122.45714929996998,37.7454978740815],[-122.45740734751193,37.74548971216448],[-122.45865629761495,37.74571008360783],[-122.46012200765314,37.7445755717636],[-122.46073099985215,37.74505712927495],[-122.46097356454156,37.74497550957829],[-122.46099420834491,37.74511426300904],[-122.46103549595162,37.7452122064506],[-122.46110258831254,37.74529382588624],[-122.46131418729688,37.74546114544787],[-122.4613810969999,37.74556949700008],[-122.45917437499992,37.74728631900007],[-122.45914669799993,37.74738865800003],[-122.4588566799999,37.74765706600004],[-122.4587859419999,37.74781189900006],[-122.4588161559999,37.74804011500004],[-122.45894158999994,37.74820127500004],[-122.45921234699989,37.74846312300008],[-122.45961093599993,37.74884859100007],[-122.45962571599989,37.74894167000008],[-122.45973077699995,37.74897831400006],[-122.4599848769999,37.74922388900006],[-122.4604881009999,37.74971022400007],[-122.46064659799993,37.74990558600007],[-122.46071278099993,37.75004401000007],[-122.46113072599991,37.75091814600006],[-122.46150345299992,37.75139897500009],[-122.46152360299993,37.75150356000006],[-122.46115958899992,37.75169349900005],[-122.46102392599994,37.75172671600006],[-122.46066796799994,37.75181387100008],[-122.46057485799992,37.75182118400005],[-122.45898510099994,37.75194603600005],[-122.45703195499993,37.75140150000004],[-122.45644843399992,37.75148331200006],[-122.45644154799993,37.75133891400009],[-122.45586859699989,37.75128510300004],[-122.45519019299991,37.75126469900005],[-122.45464353699992,37.75119989300003],[-122.4546098639999,37.74860639000008]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":315014.278585,"geom:bbox":"-122.461523603,37.7445755718,-122.454609864,37.751946036","geom:latitude":37.748756,"geom:longitude":-122.457807,"iso:country":"US","lbl:latitude":37.749268,"lbl:longitude":-122.457115,"lbl:max_zoom":18,"mps:latitude":37.749268,"mps:longitude":-122.457115,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":37.749268,"reversegeo:longitude":-122.457115,"src:geom":"mz","wof:belongsto":[85887429,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6b4f8ea098c734c6ab51adc91a4f3f36","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831863,"neighbourhood_id":85887429,"region_id":85688637}],"wof:id":1108831863,"wof:lastmodified":1566624116,"wof:name":"West of Twin Peaks","wof:parent_id":85887429,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420552249,420782037],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831947.geojson b/fixtures/microhoods/1108831947.geojson new file mode 100644 index 0000000..4f13ae4 --- /dev/null +++ b/fixtures/microhoods/1108831947.geojson @@ -0,0 +1 @@ +{"id":1108831947,"type":"Feature","bbox":[-122.47843101552074,37.77846363068153,-122.47383465403195,37.78253350069038],"geometry":{"type":"Polygon","coordinates":[[[-122.47843101552074,37.78231386954811],[-122.47412366727893,37.78253350069038],[-122.47383465403195,37.7786665878624],[-122.47816045844334,37.77846363068153],[-122.47843101552074,37.78231386954811]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":163355.273249,"geom:bbox":"-122.478431016,37.7784636307,-122.473834654,37.7825335007","geom:latitude":37.780493,"geom:longitude":-122.476136,"iso:country":"US","lbl:latitude":37.780281,"lbl:longitude":-122.481793,"lbl:max_zoom":18,"mps:latitude":37.780495,"mps:longitude":-122.476137,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:bel_x_preferred":["Малая Русь"],"name:bul_x_preferred":["Малорусия"],"name:cat_x_preferred":["Petita Rússia"],"name:deu_x_preferred":["Kleinrussland"],"name:fra_x_preferred":["Petite Russie"],"name:jpn_x_preferred":["小ロシア"],"name:kat_x_preferred":["მალოროსია"],"name:kor_x_preferred":["소러시아"],"name:lav_x_preferred":["Mazkrievija"],"name:lit_x_preferred":["Mažoji Rusija"],"name:nld_x_preferred":["Klein-Rusland"],"name:nor_x_preferred":["Lillerussland"],"name:pol_x_preferred":["Małorosja"],"name:por_x_preferred":["Pequena Rússia"],"name:ron_x_preferred":["Rusia Mică"],"name:rus_x_preferred":["Малая Русь"],"name:spa_x_preferred":["Rusia Menor"],"name:swe_x_preferred":["Lillryssland"],"name:ukr_x_preferred":["Мала Русь"],"name:vie_x_preferred":["Tiểu Nga"],"name:zho_x_preferred":["小俄羅斯"],"reversegeo:latitude":37.780495,"reversegeo:longitude":-122.476137,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865919,102191575,1108830805,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ba72568dc2a70f23017cd3595aad66e7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830805,"microhood_id":1108831947,"neighbourhood_id":85865919,"region_id":85688637}],"wof:id":1108831947,"wof:lastmodified":1566624112,"wof:name":"Little Russia","wof:parent_id":85865919,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887433],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831949.geojson b/fixtures/microhoods/1108831949.geojson new file mode 100644 index 0000000..0b034a1 --- /dev/null +++ b/fixtures/microhoods/1108831949.geojson @@ -0,0 +1 @@ +{"id":1108831949,"type":"Feature","bbox":[-122.42373098399992,37.77777356092018,-122.4181417507571,37.78216929735218],"geometry":{"type":"Polygon","coordinates":[[[-122.41899295244343,37.78216929735218],[-122.4181417507571,37.77797098478192],[-122.41971036783109,37.77777356092018],[-122.41980694934945,37.77824737730258],[-122.42152043870095,37.7780209987432],[-122.42171027134052,37.77895809618193],[-122.42335402499992,37.77874737100007],[-122.42335586247138,37.77874805479004],[-122.42373098399992,37.78061162100005],[-122.42043951799991,37.78103084100007],[-122.42063824899992,37.78196076500006],[-122.41899295244343,37.78216929735218]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":145470.71188,"geom:bbox":"-122.423730984,37.7777735609,-122.418141751,37.7821692974","geom:latitude":37.779794,"geom:longitude":-122.420596,"iso:country":"US","lbl:latitude":37.779283,"lbl:longitude":-122.419267,"lbl:max_zoom":18,"mps:latitude":37.779584,"mps:longitude":-122.420541,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":18,"mz:note":"development name","mz:tier_metro":1,"reversegeo:latitude":37.779584,"reversegeo:longitude":-122.420541,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866841,102191575,1108830801,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"54b1b6907f5eae130734d8cb4a174330","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830801,"microhood_id":1108831949,"neighbourhood_id":85866841,"region_id":85688637}],"wof:id":1108831949,"wof:lastmodified":1566624112,"wof:name":"Opera Plaza","wof:parent_id":85866841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85839649],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831951.geojson b/fixtures/microhoods/1108831951.geojson new file mode 100644 index 0000000..aeae576 --- /dev/null +++ b/fixtures/microhoods/1108831951.geojson @@ -0,0 +1 @@ +{"id":1108831951,"type":"Feature","bbox":[-122.41029851820134,37.77480659399124,-122.39272283299994,37.79115280800005],"geometry":{"type":"Polygon","coordinates":[[[-122.39429677738373,37.78008659367037],[-122.40099092249855,37.77480659399124],[-122.40875153241724,37.7809669297217],[-122.41029851820134,37.78222544815116],[-122.4089521589999,37.78328785200005],[-122.40206572999996,37.78872115200006],[-122.40104304499994,37.7878896130001],[-122.40050309599991,37.78745049800006],[-122.3958134209999,37.79115280800005],[-122.39272283299994,37.78868666100004],[-122.39670517799993,37.78554213000007],[-122.39361807599994,37.78307785400006],[-122.39584349899991,37.78132125600007],[-122.39429677738373,37.78008659367037]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000144,"geom:area_square_m":1408898.703298,"geom:bbox":"-122.410298518,37.774806594,-122.392722833,37.791152808","geom:latitude":37.78283,"geom:longitude":-122.400798,"iso:country":"US","lbl:latitude":37.787561,"lbl:longitude":-122.396272,"lbl:max_zoom":18,"mps:latitude":37.782125,"mps:longitude":-122.400931,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":37.782125,"reversegeo:longitude":-122.400931,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865939,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3ac6b04c8cedec43558bc00843216c5a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831951,"neighbourhood_id":85865939,"region_id":85688637}],"wof:id":1108831951,"wof:lastmodified":1566624112,"wof:name":"Financial District South","wof:parent_id":85865939,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887417],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831957.geojson b/fixtures/microhoods/1108831957.geojson new file mode 100644 index 0000000..2070f7b --- /dev/null +++ b/fixtures/microhoods/1108831957.geojson @@ -0,0 +1 @@ +{"id":1108831957,"type":"Feature","bbox":[-122.41137472917664,37.79742018500008,-122.40546048228286,37.80145928320362],"geometry":{"type":"Polygon","coordinates":[[[-122.40564526799994,37.79896930800004],[-122.40546048228286,37.79803820507034],[-122.40667846668107,37.79787508251107],[-122.40668454575828,37.79786259326819],[-122.40701616299992,37.79782230100005],[-122.40861884499992,37.79762756100007],[-122.4102635239999,37.79742018500008],[-122.41045615899992,37.79837270300004],[-122.41064427299995,37.79930285300009],[-122.41083363899992,37.80023915900006],[-122.41095373999991,37.80083298100004],[-122.41137472917664,37.80112406662467],[-122.40857854330682,37.80145928320362],[-122.40839274907663,37.80057845790016],[-122.4075844439999,37.80063802000006],[-122.40602391399995,37.80083450800004],[-122.40583404799992,37.79990085500009],[-122.40564526799994,37.79896930800004]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":158820.414943,"geom:bbox":"-122.411374729,37.797420185,-122.405460482,37.8014592832","geom:latitude":37.799383,"geom:longitude":-122.40838,"iso:country":"US","lbl:latitude":37.798941,"lbl:longitude":-122.409846,"lbl:max_zoom":18,"mps:latitude":37.799118,"mps:longitude":-122.40838,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:bul_x_preferred":["Норт Бийч"],"name:ceb_x_preferred":["North Beach"],"name:ces_x_preferred":["North Beach"],"name:deu_x_preferred":["North Beach"],"name:eng_x_preferred":["Little Italy"],"name:eng_x_variant":["North Beach"],"name:epo_x_preferred":["Norda Marbordo"],"name:fra_x_preferred":["North Beach"],"name:ita_x_preferred":["North Beach"],"name:jpn_x_preferred":["ノースビーチ"],"name:nld_x_preferred":["North Beach"],"name:por_x_preferred":["North Beach"],"name:slk_x_preferred":["North Beach"],"name:spa_x_preferred":["North Beach"],"name:zho_x_preferred":["北滩"],"reversegeo:latitude":37.799118,"reversegeo:longitude":-122.40838,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85837317,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2000502"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e7749977ad6ff092307e61cdc35d2001","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831957,"neighbourhood_id":85837317,"region_id":85688637}],"wof:id":1108831957,"wof:lastmodified":1566624112,"wof:name":"Little Italy","wof:parent_id":85837317,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85830943],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831961.geojson b/fixtures/microhoods/1108831961.geojson new file mode 100644 index 0000000..7cb1e8f --- /dev/null +++ b/fixtures/microhoods/1108831961.geojson @@ -0,0 +1 @@ +{"id":1108831961,"type":"Feature","bbox":[-122.47616443275558,37.74305181200009,-122.46689028023502,37.75068726823606],"geometry":{"type":"Polygon","coordinates":[[[-122.47616443275558,37.75052401932261],[-122.47190373265913,37.75068726823606],[-122.47175922603563,37.74881013525287],[-122.46959162668331,37.74890807380329],[-122.4694264762565,37.74716148353242],[-122.46849750510549,37.74721045391477],[-122.46824977946521,37.74703089568772],[-122.46816720425181,37.74644324753505],[-122.46689028023502,37.7465114704051],[-122.4674419399999,37.74521772200006],[-122.46745800699989,37.74521745400006],[-122.46760642099991,37.74505542500009],[-122.46752287599992,37.74493556200008],[-122.46757090799991,37.74492837800005],[-122.46758596099994,37.74488983500004],[-122.46819318299993,37.74486397800007],[-122.46807329099994,37.74338394500006],[-122.47564446799993,37.74305181200009],[-122.47577324199995,37.74491871700008],[-122.47616443275558,37.75052401932261]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":489407.251688,"geom:bbox":"-122.476164433,37.743051812,-122.46689028,37.7506872682","geom:latitude":37.746509,"geom:longitude":-122.472343,"iso:country":"US","lbl:latitude":37.743902,"lbl:longitude":-122.471993,"lbl:max_zoom":18,"mps:latitude":37.746116,"mps:longitude":-122.472897,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":37.746116,"reversegeo:longitude":-122.472897,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85887419,102191575,1108830803,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"228ffc61c18c60b8a704a6bebc15d77f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830803,"microhood_id":1108831961,"neighbourhood_id":85887419,"region_id":85688637}],"wof:id":1108831961,"wof:lastmodified":1566624117,"wof:name":"Inner Parkside","wof:parent_id":85887419,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865965],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831963.geojson b/fixtures/microhoods/1108831963.geojson new file mode 100644 index 0000000..e091eb2 --- /dev/null +++ b/fixtures/microhoods/1108831963.geojson @@ -0,0 +1 @@ +{"id":1108831963,"type":"Feature","bbox":[-122.45037744064987,37.74848972990983,-122.44671579399994,37.75413976600004],"geometry":{"type":"Polygon","coordinates":[[[-122.44772718693214,37.75020047303411],[-122.44772718699994,37.75020047300006],[-122.44816045576742,37.74987310590895],[-122.44912297309891,37.74848972990983],[-122.45037450367734,37.74883863691469],[-122.45037744064987,37.7491943497684],[-122.45036127402344,37.7494229770854],[-122.45025612436751,37.74983382902401],[-122.45002838515683,37.75078183607104],[-122.45002097854484,37.7511360770475],[-122.44981615330846,37.75117025246129],[-122.44965661697734,37.75126129415421],[-122.44954617106767,37.75140539928367],[-122.44922253965385,37.75278371336776],[-122.44919918513622,37.75325453635541],[-122.44928295428836,37.75365420620105],[-122.44956737199993,37.75413976600004],[-122.4494355789999,37.75408875500005],[-122.44930859899989,37.75388792000007],[-122.4485966439999,37.75412195600006],[-122.44815816699992,37.75410987800007],[-122.44713416999991,37.75398055200009],[-122.44700291899994,37.75387241000004],[-122.44686935399994,37.75376236100004],[-122.44673419799994,37.75357302100008],[-122.44671579399994,37.75338821100007],[-122.44677725399993,37.75324943600009],[-122.44735741499994,37.75272109900004],[-122.44753609499992,37.75248195400007],[-122.44739786399992,37.75226150900005],[-122.44727683899993,37.75213049500007],[-122.44709531299992,37.75193115900004],[-122.4470288409999,37.75177512500005],[-122.44703392999992,37.75165880700007],[-122.44708957099994,37.75150506000006],[-122.44716949699995,37.75141726000004],[-122.44738333499993,37.75118235400004],[-122.44763266699994,37.75090845400007],[-122.44776895899992,37.75083086400008],[-122.44792812499992,37.75079809800008],[-122.44839925699989,37.75085906000004],[-122.44873003499993,37.75090186000006],[-122.44892497199993,37.75078025100004],[-122.44918511899994,37.75063740200005],[-122.4493048039999,37.75054717000006],[-122.44942330399994,37.75041175500007],[-122.4495641709999,37.75009963800005],[-122.44968179499995,37.74982308300008],[-122.4497165489999,37.74953977900009],[-122.44967765699994,37.74942465400005],[-122.44964031399991,37.74931411400007],[-122.44954309299993,37.74918179800005],[-122.4494004799999,37.74910603500007],[-122.4492452959999,37.74910598100007],[-122.44905115099994,37.74918280900005],[-122.44888505499989,37.74933887500003],[-122.44862558599993,37.74968552400009],[-122.44851157699992,37.74983783800008],[-122.44826420599992,37.75016831900007],[-122.44813345099993,37.75025012300006],[-122.44795768199992,37.75027024800005],[-122.44772718693214,37.75020047303411]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":94325.333259,"geom:bbox":"-122.450377441,37.7484897299,-122.446715794,37.754139766","geom:latitude":37.75175,"geom:longitude":-122.448582,"iso:country":"US","lbl:latitude":37.752854,"lbl:longitude":-122.443764,"lbl:max_zoom":18,"mps:latitude":37.751906,"mps:longitude":-122.448407,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:ara_x_preferred":["قمم التوأم"],"name:bos_x_preferred":["Twin Peaks"],"name:bul_x_preferred":["Туин Пийкс"],"name:ceb_x_preferred":["Twin Peaks"],"name:deu_x_preferred":["Twin Peaks"],"name:eng_x_preferred":["Twin Peaks"],"name:epo_x_preferred":["Ĝemelaj Pintoj"],"name:fra_x_preferred":["Twin Peaks"],"name:jpn_x_preferred":["ツインピークス"],"name:nld_x_preferred":["Twin Peaks"],"name:ron_x_preferred":["Twin Peaks"],"name:rus_x_preferred":["Твин-Пикс"],"name:spa_x_preferred":["Twin Peaks"],"name:swe_x_preferred":["Twin Peaks"],"name:zho_x_preferred":["雙峰"],"reversegeo:latitude":37.751906,"reversegeo:longitude":-122.448407,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869489,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1344297"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"640571719ebccbecbe3ccc587a1101a7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831963,"neighbourhood_id":85869489,"region_id":85688637}],"wof:id":1108831963,"wof:lastmodified":1566624117,"wof:name":"Twin Peaks","wof:parent_id":85869489,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865963],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831965.geojson b/fixtures/microhoods/1108831965.geojson new file mode 100644 index 0000000..351b99e --- /dev/null +++ b/fixtures/microhoods/1108831965.geojson @@ -0,0 +1 @@ +{"id":1108831965,"type":"Feature","bbox":[-122.4075342289999,37.76073350151088,-122.3967748496725,37.76643249033869],"geometry":{"type":"Polygon","coordinates":[[[-122.3967748496725,37.76513048433316],[-122.39773962562252,37.7650723484988],[-122.39761558141828,37.76379755129672],[-122.40051467167767,37.76362103918309],[-122.40039062747343,37.76234761788159],[-122.40329237582296,37.76217180276716],[-122.40317364779888,37.76089345321387],[-122.40606299172794,37.76076246491583],[-122.40628789944333,37.76074762337927],[-122.40706211549617,37.76073350151088],[-122.4075342289999,37.76578329800009],[-122.39689708975862,37.76643249033869],[-122.3967748496725,37.76513048433316]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00004,"geom:area_square_m":389769.523611,"geom:bbox":"-122.407534229,37.7607335015,-122.39677485,37.7664324903","geom:latitude":37.763973,"geom:longitude":-122.403001,"iso:country":"US","lbl:latitude":37.765418,"lbl:longitude":-122.401082,"lbl:max_zoom":18,"mps:latitude":37.764125,"mps:longitude":-122.403001,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.764125,"reversegeo:longitude":-122.403001,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85842947,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6a707f13e0a3663a20c951f35ad2295f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831965,"neighbourhood_id":85842947,"region_id":85688637}],"wof:id":1108831965,"wof:lastmodified":1566624117,"wof:name":"Potrero Flats","wof:parent_id":85842947,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887453],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831971.geojson b/fixtures/microhoods/1108831971.geojson new file mode 100644 index 0000000..909630d --- /dev/null +++ b/fixtures/microhoods/1108831971.geojson @@ -0,0 +1 @@ +{"id":1108831971,"type":"Feature","bbox":[-122.45754707599991,37.73671972244293,-122.44596432999992,37.74553423700007],"geometry":{"type":"Polygon","coordinates":[[[-122.44596432999992,37.74119873400008],[-122.44608615672816,37.74109285865735],[-122.44628227286,37.74101531579397],[-122.44648871089356,37.740990828558],[-122.44675191938636,37.74098674735562],[-122.4470254497808,37.74104490452923],[-122.4472628535194,37.7411336706577],[-122.44744864774961,37.74124896443834],[-122.4476757295865,37.74144384112511],[-122.44780991430834,37.74163157525029],[-122.44782023620999,37.74178665960326],[-122.449069186313,37.74189276976283],[-122.44896596729623,37.74177033494983],[-122.44882146067275,37.74168054929159],[-122.4487079197543,37.74158260117658],[-122.44846019411402,37.74123161936676],[-122.44995686985727,37.74044802606522],[-122.4498897774964,37.74036640128594],[-122.4497039832662,37.74004398252788],[-122.44960076424941,37.73971748108863],[-122.4495697985444,37.73952157953383],[-122.44957495949525,37.73931343356382],[-122.44871308070515,37.7392767018613],[-122.4487388854593,37.73899917285319],[-122.44892984064035,37.73826045086398],[-122.44892467968954,37.73801148764881],[-122.44930659005162,37.73803189450123],[-122.44947174047849,37.73801556901974],[-122.44975043182377,37.73796659255368],[-122.44996203080817,37.73788088366013],[-122.45016330789088,37.73775844221148],[-122.45035942402274,37.73757069826358],[-122.4505297354004,37.73743805279597],[-122.45073101248312,37.73730744779566],[-122.45185868024143,37.73671972244293],[-122.45201866971745,37.73682583986566],[-122.45207027922581,37.73696052714471],[-122.45201866971745,37.73712378412414],[-122.45160063269948,37.7377482387483],[-122.45143548227264,37.73811148117191],[-122.45139419466594,37.7383645254025],[-122.45138903371509,37.73851145391367],[-122.45140967751847,37.73868491080844],[-122.45141225799388,37.73882571669476],[-122.45128323422291,37.73932567746061],[-122.45128839517376,37.73951749824593],[-122.45138129228886,37.73967666830747],[-122.45170608599994,37.73985812600006],[-122.45186163699992,37.74011560900004],[-122.4519103429999,37.74017198800004],[-122.45195823499989,37.74021050200008],[-122.45203941699992,37.74025457900007],[-122.45211641999992,37.74027973400007],[-122.4521754989999,37.74029044500008],[-122.4522661929999,37.74029404400005],[-122.45232632299991,37.74028806200005],[-122.4524451929999,37.74025159400009],[-122.4525716089999,37.74020938800004],[-122.45270419199994,37.74018156400007],[-122.45284036099991,37.74016866400007],[-122.45295738199991,37.74017004800004],[-122.45316515999991,37.74017926400006],[-122.4532826549999,37.74018883500008],[-122.45339969799994,37.74017717100008],[-122.45345194599992,37.74016476100007],[-122.4534533559999,37.74027957800007],[-122.45411750999995,37.74045340300006],[-122.4543989259999,37.74073421500009],[-122.4549021709999,37.74033844200005],[-122.4551545299999,37.74059112200007],[-122.45527519899991,37.74054352600007],[-122.45547426199994,37.74082074600005],[-122.45575877199991,37.74067051700007],[-122.4559561129999,37.74053746300007],[-122.45615013799994,37.74040664300009],[-122.45636611299994,37.74031466400004],[-122.45654278799992,37.74055912000006],[-122.45695111599991,37.74036411300006],[-122.45699391099993,37.74042037200007],[-122.4574675529999,37.74096880600007],[-122.45754707599991,37.74103592000006],[-122.45694041899992,37.74135730700004],[-122.45636074099991,37.74166815100006],[-122.45615599799993,37.74180435000005],[-122.4559417559999,37.74202897900005],[-122.45581237199991,37.74223437100005],[-122.45574984799993,37.74233902100008],[-122.45536911699992,37.74297625900005],[-122.45527107499993,37.74304866400007],[-122.45528424399993,37.74313062500005],[-122.4543644869999,37.74395604400007],[-122.45420490099991,37.74398466000008],[-122.4541428149999,37.74410460400009],[-122.45393238299994,37.74429232600005],[-122.4535337609999,37.74455641700007],[-122.45336484099994,37.74459289500004],[-122.45328103899993,37.74473152000007],[-122.45238616299991,37.74527019100009],[-122.45217148099994,37.74537861500005],[-122.45190586899992,37.74551343200005],[-122.45162398699989,37.74553423700007],[-122.45150431199994,37.74546053400007],[-122.45096372099994,37.74479619900006],[-122.4505184809999,37.74424903100004],[-122.44992921499994,37.74352102100005],[-122.44977187299992,37.74334185700008],[-122.44952567099995,37.74311248400005],[-122.44931111599993,37.74297703500008],[-122.44910455399992,37.74288956700008],[-122.44880174699995,37.74281260200007],[-122.44847738999994,37.74276985100005],[-122.44804203299992,37.74273200900006],[-122.44769833299989,37.74270213300008],[-122.44737498199993,37.74267402600009],[-122.4470936319999,37.74264481600005],[-122.44680910299991,37.74258001800007],[-122.44661390399995,37.74249770600005],[-122.4464634389999,37.74240930700006],[-122.4463490149999,37.74232565900007],[-122.44625422399992,37.74222030300007],[-122.44617695999995,37.74209861800006],[-122.44610547999991,37.74181518500006],[-122.44607494999991,37.74154609000004],[-122.4460211569999,37.74137768500009],[-122.44597848399991,37.74129107000005],[-122.44596432999992,37.74119873400008]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000038,"geom:area_square_m":370963.016993,"geom:bbox":"-122.457547076,37.7367197224,-122.44596433,37.745534237","geom:latitude":37.741661,"geom:longitude":-122.451712,"iso:country":"US","lbl:latitude":37.744624,"lbl:longitude":-122.453398,"lbl:max_zoom":18,"mps:latitude":37.74258,"mps:longitude":-122.452106,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.74258,"reversegeo:longitude":-122.452106,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420552235,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c874fb56df27a4a93c98e80f234a7973","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831971,"neighbourhood_id":420552235,"region_id":85688637}],"wof:id":1108831971,"wof:lastmodified":1566624117,"wof:name":"Twin Peaks West","wof:parent_id":420552235,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887471],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831973.geojson b/fixtures/microhoods/1108831973.geojson new file mode 100644 index 0000000..21c0974 --- /dev/null +++ b/fixtures/microhoods/1108831973.geojson @@ -0,0 +1 @@ +{"id":1108831973,"type":"Feature","bbox":[-122.40210511999993,37.72243160300008,-122.37910964799994,37.74510099800005],"geometry":{"type":"Polygon","coordinates":[[[-122.37955189299993,37.73110941400006],[-122.37964817699992,37.73096006500003],[-122.37977895799992,37.73079941500004],[-122.37990119199992,37.73071900400004],[-122.37999510499992,37.73065722400008],[-122.38031149599993,37.73052928900006],[-122.3804741749999,37.73051689200008],[-122.38064047799992,37.73050421800008],[-122.38092055499993,37.73053090500008],[-122.38143938799993,37.73058171700006],[-122.38178200199991,37.73061680500007],[-122.38209002899993,37.73063512100003],[-122.38227021699993,37.73061959200004],[-122.38262836299992,37.73051211000006],[-122.38288787199991,37.73034197000004],[-122.3834311839999,37.72973755200007],[-122.3839937489999,37.72911170200007],[-122.38455630499993,37.72848584800005],[-122.3851188509999,37.72785999300004],[-122.38568220299993,37.72723322700006],[-122.38624189299992,37.72660616400009],[-122.3868001059999,37.72598566500005],[-122.38736826099989,37.72535410300009],[-122.38793049499992,37.72472910900007],[-122.38849620799994,37.72410023400005],[-122.38961954099995,37.72285144100005],[-122.39149191399991,37.72391410400007],[-122.39335876099994,37.72497357100008],[-122.39424349299992,37.72547564900009],[-122.39492615199993,37.72397256300007],[-122.39526464599993,37.72322233400007],[-122.39562275999992,37.72243160300008],[-122.39581586599991,37.72243328300004],[-122.39662620099995,37.72262621400006],[-122.39766813499995,37.72287427600008],[-122.39834811499992,37.72303615800007],[-122.39921440699993,37.72324238900006],[-122.40007300199994,37.72344678000007],[-122.40078474699993,37.72361620800007],[-122.40118291699991,37.72458825300004],[-122.40130284499992,37.72497427100006],[-122.40138367399993,37.72523443700004],[-122.40147123999992,37.72551628900004],[-122.4016885399999,37.72629529200009],[-122.40174797999993,37.72650838000004],[-122.40187511799991,37.72696475900005],[-122.40199062999994,37.72737906500004],[-122.40210511999993,37.72778970300004],[-122.40195514399994,37.72795745600007],[-122.40170249699992,37.72824004600005],[-122.40139458699991,37.72858444500008],[-122.40083401499993,37.72921143700006],[-122.3998669739999,37.73029192800004],[-122.3989704579999,37.73016461300006],[-122.39807430999991,37.73003734300005],[-122.39739019399991,37.72994018000009],[-122.39717687799993,37.72990988300006],[-122.39640930799993,37.72980086100006],[-122.39537693299991,37.72965421900005],[-122.39488573699992,37.72958444500006],[-122.39358151699992,37.72939917100007],[-122.39262453499992,37.72927845300006],[-122.3921466189999,37.73064213800006],[-122.3920729539999,37.73085518200008],[-122.39179715599994,37.73164354500005],[-122.39152135099994,37.73243190700003],[-122.39124449299993,37.73322326100003],[-122.3906937729999,37.73479735800004],[-122.39221365999992,37.73566095900009],[-122.39409283299995,37.73672865100008],[-122.3951193289999,37.73731363100006],[-122.39594482699994,37.73778405300004],[-122.39780954499992,37.73884664700006],[-122.39725361899991,37.73946411700007],[-122.39734729599991,37.73965213500009],[-122.3969525899999,37.74008865100006],[-122.39670893699991,37.74007836800007],[-122.39557435099994,37.74134624600003],[-122.39504606299994,37.74193657900008],[-122.39482947099992,37.74187373600006],[-122.39478767499992,37.74195130300006],[-122.3948148039999,37.74202556300008],[-122.39382903599994,37.74313356900007],[-122.39378101799991,37.74310662900007],[-122.39371947899991,37.74352754100005],[-122.3934565209999,37.74382562400007],[-122.3933068529999,37.74383978300006],[-122.3921823399999,37.74510099800005],[-122.38792635099992,37.74270315300004],[-122.38655454199994,37.74195024000005],[-122.38470553999991,37.74089751600008],[-122.3809425529999,37.73876357600005],[-122.37910964799994,37.73768029300004],[-122.37933558999993,37.73739879000004],[-122.37940635299992,37.73713619800009],[-122.37940991199991,37.73675961200007],[-122.3794145149999,37.73627245500006],[-122.3794145679999,37.73524467400006],[-122.37942086499993,37.73447938300006],[-122.37943074399993,37.73408161600008],[-122.3795465049999,37.73404099000004],[-122.37982696599994,37.73373540300008],[-122.3799245379999,37.73358350900008],[-122.37993172499989,37.73338073200006],[-122.3799231349999,37.73320956500004],[-122.3795960629999,37.73246457100004],[-122.37934572899991,37.73183698400004],[-122.37934710899992,37.73167941000008],[-122.37934829799991,37.73154360200004],[-122.3794751719999,37.73122841700007],[-122.37955189299993,37.73110941400006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000264,"geom:area_square_m":2576941.529705,"geom:bbox":"-122.40210512,37.722431603,-122.379109648,37.745100998","geom:latitude":37.733111,"geom:longitude":-122.389884,"iso:country":"US","lbl:latitude":37.734317,"lbl:longitude":-122.385986,"lbl:max_zoom":18,"mps:latitude":37.734291,"mps:longitude":-122.385873,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":15,"mz:min_zoom":13,"mz:tier_metro":1,"name:bul_x_preferred":["Хънтърс Пойнт"],"name:eng_x_preferred":["Bayview-Hunters Point"],"name:eng_x_variant":["Bayview","Bayview District"],"name:epo_x_preferred":["Golfvido-Ĉasista Punkto"],"name:fra_x_preferred":["Bayview"],"name:jpn_x_preferred":["ハンターズ・ポイント"],"name:zho_x_preferred":["灣景獵人角"],"reversegeo:latitude":37.734291,"reversegeo:longitude":-122.385873,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865995,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2892361"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f1af05d62bc9a387a1ba2b0bcf73766c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831973,"neighbourhood_id":85865995,"region_id":85688637}],"wof:id":1108831973,"wof:lastmodified":1566624117,"wof:name":"Bayview-Hunters Point","wof:parent_id":85865995,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85804963],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831975.geojson b/fixtures/microhoods/1108831975.geojson new file mode 100644 index 0000000..e70a68b --- /dev/null +++ b/fixtures/microhoods/1108831975.geojson @@ -0,0 +1 @@ +{"id":1108831975,"type":"Feature","bbox":[-122.50983449699993,37.73787469500007,-122.4941813989999,37.74922777595294],"geometry":{"type":"Polygon","coordinates":[[[-122.50514509445257,37.74922777595294],[-122.50500091038853,37.74737827925013],[-122.4948367479999,37.7478171210001],[-122.4941813989999,37.73849645300004],[-122.5064356069999,37.73795985200007],[-122.50704669699991,37.73795092500006],[-122.50876360699993,37.73787469500007],[-122.5088979439999,37.73912685100004],[-122.50872437599992,37.74025457300007],[-122.50924675199991,37.74134487800006],[-122.50905383299994,37.74245669800007],[-122.50926853699991,37.74323553000005],[-122.50968252099995,37.74443947000009],[-122.50933587999992,37.74593838600003],[-122.50983449699993,37.74780779000008],[-122.50974541359474,37.74890608011592],[-122.50514509445257,37.74922777595294]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000146,"geom:area_square_m":1425227.120446,"geom:bbox":"-122.509834497,37.737874695,-122.494181399,37.749227776","geom:latitude":37.743162,"geom:longitude":-122.502174,"iso:country":"US","lbl:latitude":37.740847,"lbl:longitude":-122.501431,"lbl:max_zoom":18,"mps:latitude":37.742823,"mps:longitude":-122.502174,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":37.742823,"reversegeo:longitude":-122.502174,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865975,102191575,1108830803,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"82739092b107a801b9be95134ecd01ca","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830803,"microhood_id":1108831975,"neighbourhood_id":85865975,"region_id":85688637}],"wof:id":1108831975,"wof:lastmodified":1566624117,"wof:name":"Outer Parkside","wof:parent_id":85865975,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865977],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831979.geojson b/fixtures/microhoods/1108831979.geojson new file mode 100644 index 0000000..b8f3c4a --- /dev/null +++ b/fixtures/microhoods/1108831979.geojson @@ -0,0 +1 @@ +{"id":1108831979,"type":"Feature","bbox":[-122.40668454575828,37.79553183200005,-122.4004855359999,37.79938214000003],"geometry":{"type":"Polygon","coordinates":[[[-122.40668454575828,37.79786259326819],[-122.40667846668107,37.79787508251107],[-122.40546048228286,37.79803820507034],[-122.40564526799994,37.79896930800004],[-122.40405312999991,37.79917221700003],[-122.4024206659999,37.79938214000003],[-122.40222863899993,37.79842970100009],[-122.40105129299991,37.79858005300008],[-122.40086317599992,37.79765413900009],[-122.40068133699992,37.79677684200004],[-122.4004855359999,37.79587500300005],[-122.4016760259999,37.79571937900005],[-122.40331694499991,37.79553183200005],[-122.40441216099993,37.79630209700008],[-122.40514297699991,37.79621095400006],[-122.40528839699994,37.79690905600006],[-122.40551293599992,37.79706459000005],[-122.4066679309999,37.79786461200007],[-122.40668454575828,37.79786259326819]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":147486.905672,"geom:bbox":"-122.406684546,37.795531832,-122.400485536,37.79938214","geom:latitude":37.797424,"geom:longitude":-122.403221,"iso:country":"US","lbl:latitude":37.797022,"lbl:longitude":-122.402881,"lbl:max_zoom":18,"mps:latitude":37.797404,"mps:longitude":-122.403278,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Jackson Square"],"name:urd_x_preferred":["جیکسن اسکوائر، سن فرانکسکو"],"name:urd_x_variant":["جیکسن اسکوائر"],"reversegeo:latitude":37.797404,"reversegeo:longitude":-122.403278,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85837317,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{"wd:id":"Q14682502"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"efedadc7a995d5520a7ab2aad0377926","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108831979,"neighbourhood_id":85837317,"region_id":85688637}],"wof:id":1108831979,"wof:lastmodified":1566624117,"wof:name":"Jackson Square","wof:parent_id":85837317,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887427],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831991.geojson b/fixtures/microhoods/1108831991.geojson new file mode 100644 index 0000000..86037c9 --- /dev/null +++ b/fixtures/microhoods/1108831991.geojson @@ -0,0 +1 @@ +{"id":1108831991,"type":"Feature","bbox":[-122.49546568843195,37.75379310461891,-122.47642360096837,37.76544798600008],"geometry":{"type":"Polygon","coordinates":[[[-122.47642360096837,37.75425598040927],[-122.48716466428958,37.75379310461891],[-122.48761882796337,37.75937501918472],[-122.48972449590563,37.7593097360684],[-122.49001350915262,37.76303078174766],[-122.4953396104183,37.76276966184225],[-122.49546568843195,37.76463846901854],[-122.48368543599992,37.76516017700004],[-122.47730839499991,37.76544798600008],[-122.47701088699989,37.76169937400005],[-122.47681389199994,37.75983393500007],[-122.47642360096837,37.75425598040927]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000142,"geom:area_square_m":1392717.005579,"geom:bbox":"-122.495465688,37.7537931046,-122.476423601,37.765447986","geom:latitude":37.760115,"geom:longitude":-122.483511,"iso:country":"US","lbl:latitude":37.758326,"lbl:longitude":-122.485106,"lbl:max_zoom":18,"mps:latitude":37.759609,"mps:longitude":-122.482378,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":37.759609,"reversegeo:longitude":-122.482378,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865975,102191575,1108830803,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d3067d176adcc0a92be3662f13a0ed02","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830803,"microhood_id":1108831991,"neighbourhood_id":85865975,"region_id":85688637}],"wof:id":1108831991,"wof:lastmodified":1566624118,"wof:name":"Central Sunset","wof:parent_id":85865975,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85851557],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108831999.geojson b/fixtures/microhoods/1108831999.geojson new file mode 100644 index 0000000..7450194 --- /dev/null +++ b/fixtures/microhoods/1108831999.geojson @@ -0,0 +1 @@ +{"id":1108831999,"type":"Feature","bbox":[-122.48396265117957,37.77261711115047,-122.4777669469999,37.78417398600004],"geometry":{"type":"Polygon","coordinates":[[[-122.48314587509587,37.77261711115047],[-122.48396265117957,37.78392994037676],[-122.47857883799992,37.78417398600004],[-122.4777669469999,37.77286365500004],[-122.48314587509587,37.77261711115047]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000061,"geom:area_square_m":596869.367777,"geom:bbox":"-122.483962651,37.7726171112,-122.477766947,37.784173986","geom:latitude":37.778397,"geom:longitude":-122.480864,"iso:country":"US","lbl:latitude":37.777569,"lbl:longitude":-122.479776,"lbl:max_zoom":18,"mps:latitude":37.778396,"mps:longitude":-122.480864,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":37.778396,"reversegeo:longitude":-122.480864,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865923,102191575,1108830805,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e428d324d6104b942ed21ecc4fea89d4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830805,"microhood_id":1108831999,"neighbourhood_id":85865923,"region_id":85688637}],"wof:id":1108831999,"wof:lastmodified":1566624118,"wof:name":"Central Richmond","wof:parent_id":85865923,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85844431],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832003.geojson b/fixtures/microhoods/1108832003.geojson new file mode 100644 index 0000000..d85db73 --- /dev/null +++ b/fixtures/microhoods/1108832003.geojson @@ -0,0 +1 @@ +{"id":1108832003,"type":"Feature","bbox":[-122.4577759954168,37.76481006800009,-122.45544345908708,37.76603641039182],"geometry":{"type":"Polygon","coordinates":[[[-122.4555949916503,37.76603641039182],[-122.45544345908708,37.76510359580028],[-122.45771818799994,37.76481006800009],[-122.45775613299992,37.76535415000006],[-122.4577759954168,37.76575360319814],[-122.45725885743434,37.7658195801826],[-122.45691342299995,37.76587361400004],[-122.4555949916503,37.76603641039182]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":20808.919844,"geom:bbox":"-122.457775995,37.764810068,-122.455443459,37.7660364104","geom:latitude":37.765424,"geom:longitude":-122.456633,"iso:country":"US","lbl:latitude":37.765514,"lbl:longitude":-122.456046,"lbl:max_zoom":18,"mps:latitude":37.765429,"mps:longitude":-122.456634,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:tier_metro":1,"reversegeo:latitude":37.765429,"reversegeo:longitude":-122.456634,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865957,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e484b9c009dc5f76b8fdf338a6014bcf","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832003,"neighbourhood_id":85865957,"region_id":85688637}],"wof:id":1108832003,"wof:lastmodified":1566624119,"wof:name":"Park View Commons","wof:parent_id":85865957,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85840617],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832009.geojson b/fixtures/microhoods/1108832009.geojson new file mode 100644 index 0000000..32478ab --- /dev/null +++ b/fixtures/microhoods/1108832009.geojson @@ -0,0 +1 @@ +{"id":1108832009,"type":"Feature","bbox":[-122.44396075299994,37.74148499500006,-122.43531551699994,37.74866450000007],"geometry":{"type":"Polygon","coordinates":[[[-122.43562104599994,37.74153426300006],[-122.4355887827228,37.74162098971103],[-122.4358003817072,37.74211072873602],[-122.436094555905,37.74252292323743],[-122.43646614436538,37.74287798002714],[-122.43718867748282,37.74339627826007],[-122.43752930023817,37.74360441274957],[-122.43784927919017,37.74361257487448],[-122.43960400247539,37.74466548144152],[-122.43990204738633,37.74489809831411],[-122.44011880732157,37.74519192910814],[-122.44020654348583,37.74538781565609],[-122.44024783109252,37.74555921596025],[-122.4402684748959,37.74582447755321],[-122.4401884801579,37.74648660715021],[-122.44023299335888,37.74674829464116],[-122.44046523614662,37.74700947109746],[-122.44074650796735,37.7471339376781],[-122.44104068216515,37.74717678678038],[-122.44135033921548,37.74712577594153],[-122.44204964805415,37.74689724695184],[-122.44265347930228,37.74665647457428],[-122.44320054009118,37.74652180493678],[-122.44339149527222,37.74651364313269],[-122.4436392209125,37.74655445214412],[-122.44376308373265,37.74658709933708],[-122.4438766246511,37.74666055546857],[-122.44396075299994,37.74676521700007],[-122.44258420699992,37.74807934400008],[-122.44251900899991,37.74818321500004],[-122.44204662499993,37.74841158200007],[-122.4419167019999,37.74847439000007],[-122.44163401399993,37.74854977100006],[-122.44140809499993,37.74861001200009],[-122.4409315,37.74862936600005],[-122.44041229699991,37.74864196500005],[-122.43824612599991,37.74866450000007],[-122.4378610039999,37.74463429400004],[-122.4356803419999,37.74476073600005],[-122.43560321199993,37.74400035000008],[-122.43555900699994,37.74316144500006],[-122.43553609299994,37.74269722200006],[-122.4355089369999,37.74259248700008],[-122.4354624749999,37.74227259400004],[-122.43538708499995,37.74192300500005],[-122.43531551699994,37.74171462500004],[-122.43533105499989,37.74161619500006],[-122.43546046299991,37.74148499500006],[-122.43562104599994,37.74153426300006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":178760.355008,"geom:bbox":"-122.443960753,37.741484995,-122.435315517,37.7486645","geom:latitude":37.746096,"geom:longitude":-122.439183,"iso:country":"US","lbl:latitude":37.742244,"lbl:longitude":-122.437673,"lbl:max_zoom":18,"mps:latitude":37.745925,"mps:longitude":-122.439118,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.745925,"reversegeo:longitude":-122.439118,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85814471,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"232a57f6c51c80802608a16551ad76b0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832009,"neighbourhood_id":85814471,"region_id":85688637}],"wof:id":1108832009,"wof:lastmodified":1566624119,"wof:name":"Vista del Monte","wof:parent_id":85814471,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85854011],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832011.geojson b/fixtures/microhoods/1108832011.geojson new file mode 100644 index 0000000..070efd2 --- /dev/null +++ b/fixtures/microhoods/1108832011.geojson @@ -0,0 +1 @@ +{"id":1108832011,"type":"Feature","bbox":[-122.44018848015799,37.73402005425737,-122.43394990199994,37.74015348000006],"geometry":{"type":"Polygon","coordinates":[[[-122.43394990199994,37.73813599400006],[-122.43445208330063,37.7386564690072],[-122.43457078516992,37.7387574819916],[-122.43473206488359,37.73741369191981],[-122.43469706718575,37.73725604752235],[-122.43493108405038,37.73721434057464],[-122.4351220392314,37.73711026441915],[-122.43520977539568,37.73703679880956],[-122.43529106037138,37.73693476311971],[-122.43539169891272,37.73684344105804],[-122.43550282063552,37.73678821411414],[-122.43538282852857,37.73649843141453],[-122.43536734567603,37.73636272292934],[-122.43542153565984,37.73622395309325],[-122.4358376373212,37.73588978201619],[-122.43507736475071,37.73557703733652],[-122.43538008677336,37.73533903417876],[-122.4355516883888,37.73479835856715],[-122.43582263830784,37.7348534594471],[-122.43640195503954,37.73490958067158],[-122.43667290495856,37.73404122750811],[-122.43677580141593,37.73402005425737],[-122.43861051943928,37.73438433536581],[-122.43897178599798,37.73449861926577],[-122.43918854593322,37.73461290298935],[-122.4395704562953,37.73476800204632],[-122.43993438599995,37.73485680900006],[-122.43975237981208,37.73543622527131],[-122.43973947743497,37.73559336335576],[-122.43971883363162,37.73635456000502],[-122.43974463838582,37.73724431345992],[-122.43976012123835,37.73737083716535],[-122.43980140884506,37.73748919785534],[-122.43988398405847,37.73769122687177],[-122.43992785214058,37.73774632559875],[-122.43998978355069,37.73781468877707],[-122.44012396827249,37.73794121150772],[-122.44018848015799,37.73815548338094],[-122.44007751971495,37.73844934094146],[-122.43984140621403,37.73864983683674],[-122.4396272267542,37.73870085351732],[-122.43954904899994,37.73868842100006],[-122.43946503699993,37.73864326300009],[-122.43879776199992,37.73850955300009],[-122.43790249599994,37.73833015100007],[-122.43764726599994,37.73827900400005],[-122.43747008199995,37.73826575700008],[-122.43739820399992,37.73828796800007],[-122.4373091249999,37.73827451100004],[-122.4369252489999,37.73841103300003],[-122.43666957499994,37.73869363700004],[-122.43668035299993,37.73875232600005],[-122.43583957599992,37.74015348000006],[-122.43553503599992,37.74005096500008],[-122.43525337799991,37.74004951900008],[-122.43493973699992,37.74008060100005],[-122.43432911399992,37.74011573500007],[-122.43431099499992,37.73944659500006],[-122.43420970099993,37.73921161300007],[-122.4341579799999,37.73909163200005],[-122.43404041299993,37.73877872000008],[-122.43394990199994,37.73813599400006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":215611.876842,"geom:bbox":"-122.44018848,37.7340200543,-122.433949902,37.74015348","geom:latitude":37.736969,"geom:longitude":-122.437171,"iso:country":"US","lbl:latitude":37.736377,"lbl:longitude":-122.437643,"lbl:max_zoom":18,"mps:latitude":37.736377,"mps:longitude":-122.437643,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":37.736377,"reversegeo:longitude":-122.437643,"src:geom":"mz","wof:belongsto":[85865961,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3444a6b8e0e91520fc1da1decdcf821a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832011,"neighbourhood_id":85865961,"region_id":85688637}],"wof:id":1108832011,"wof:lastmodified":1566624120,"wof:name":"Glenridge","wof:parent_id":85865961,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420552251],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832015.geojson b/fixtures/microhoods/1108832015.geojson new file mode 100644 index 0000000..d165217 --- /dev/null +++ b/fixtures/microhoods/1108832015.geojson @@ -0,0 +1 @@ +{"id":1108832015,"type":"Feature","bbox":[-122.38961954099995,37.71966724900005,-122.37510938987994,37.73110941400006],"geometry":{"type":"Polygon","coordinates":[[[-122.37955189299993,37.73110941400006],[-122.37935991865724,37.73102678437726],[-122.37863421862211,37.73041556179574],[-122.37830435496973,37.73023666642722],[-122.37790851858692,37.73010249461723],[-122.37748440817678,37.73002795461774],[-122.37706972244241,37.73003540862106],[-122.37666446138381,37.73012485660244],[-122.37627804967681,37.7301472185809],[-122.37574084315729,37.73005777062654],[-122.37510938987994,37.72973724790281],[-122.37668331073537,37.72853713887143],[-122.37768232636819,37.72863404280695],[-122.37828550561818,37.72896947852763],[-122.37854939654004,37.72894711619352],[-122.37958611087596,37.72773954012375],[-122.37819125886035,37.72756809254228],[-122.3777671484502,37.72749354999175],[-122.37783312118069,37.72655430742655],[-122.380146879085,37.72396387433956],[-122.38207245699994,37.72221307600006],[-122.38237422499992,37.72230887600006],[-122.38254910799992,37.72238677300004],[-122.3835603409999,37.72300260900005],[-122.38380222399991,37.72319498100006],[-122.3839560109999,37.72345515100005],[-122.38433692899991,37.72349849600005],[-122.38489274799991,37.72391469700005],[-122.38504120499994,37.72410941300006],[-122.38519661599992,37.72410108900004],[-122.3856092389999,37.72414393000008],[-122.38620886699994,37.72446945400009],[-122.3864458299999,37.72447218400004],[-122.3866929489999,37.72439818000004],[-122.38680468299992,37.72430402600008],[-122.38692208399993,37.72416067900008],[-122.3859635099999,37.72362678700006],[-122.3854597539999,37.72336345000008],[-122.38515192999989,37.72322553700008],[-122.38471472899994,37.72303886300006],[-122.38423908199991,37.72268492000006],[-122.38368416299994,37.72234871300009],[-122.3829521959999,37.72198546100009],[-122.38280151899994,37.72183919200006],[-122.38272614399995,37.72173052000005],[-122.38278216499992,37.72141647600006],[-122.38287718599992,37.72120859500006],[-122.3830398639999,37.72100959000005],[-122.38333258199992,37.72068832800005],[-122.38340066799992,37.72050937600005],[-122.38335647999992,37.72033496600005],[-122.38345282599994,37.72030305500004],[-122.38399947399989,37.71969539900005],[-122.38408586999992,37.71966724900005],[-122.38421660499989,37.71980830200005],[-122.38774624699994,37.72181325800005],[-122.38961954099995,37.72285144100005],[-122.38849620799994,37.72410023400005],[-122.38455630499993,37.72848584800005],[-122.38288787199991,37.73034197000004],[-122.38262836299992,37.73051211000006],[-122.38227021699993,37.73061959200004],[-122.38209002899993,37.73063512100003],[-122.38186417799994,37.73062169100007],[-122.3816406099999,37.73060232500006],[-122.38143938799993,37.73058171700006],[-122.38064047799992,37.73050421800008],[-122.38031149599993,37.73052928900006],[-122.37999510499992,37.73065722400008],[-122.37990119199992,37.73071900400004],[-122.37977895799992,37.73079941500004],[-122.37964817699992,37.73096006500003],[-122.37955189299993,37.73110941400006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000069,"geom:area_square_m":673547.202779,"geom:bbox":"-122.389619541,37.719667249,-122.37510939,37.731109414","geom:latitude":37.725804,"geom:longitude":-122.382786,"iso:country":"US","lbl:latitude":37.720532,"lbl:longitude":-122.374312,"lbl:max_zoom":18,"mps:latitude":37.726118,"mps:longitude":-122.382294,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.726118,"reversegeo:longitude":-122.382294,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869357,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1a57ed695d437dbdd4edc72f130ba14a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832015,"neighbourhood_id":85869357,"region_id":85688637}],"wof:id":1108832015,"wof:lastmodified":1566624120,"wof:name":"South Basin","wof:parent_id":85869357,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887461],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832017.geojson b/fixtures/microhoods/1108832017.geojson new file mode 100644 index 0000000..16a3a23 --- /dev/null +++ b/fixtures/microhoods/1108832017.geojson @@ -0,0 +1 @@ +{"id":1108832017,"type":"Feature","bbox":[-122.42578213269523,37.74783036992087,-122.4209640929999,37.75849850800006],"geometry":{"type":"Polygon","coordinates":[[[-122.4224873629999,37.74801344900004],[-122.42287797599994,37.74794804300006],[-122.42476720659238,37.74783036992087],[-122.42578213269523,37.75822585788632],[-122.42127172799991,37.75849850800006],[-122.4211175399999,37.75690200800005],[-122.4209640929999,37.75529478100009],[-122.42143524699992,37.75526822100005],[-122.4215951519999,37.75204680900003],[-122.42287883299991,37.75197162500007],[-122.42257106199992,37.74877289700004],[-122.4224873629999,37.74801344900004]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000036,"geom:area_square_m":350691.938169,"geom:bbox":"-122.425782133,37.7478303699,-122.420964093,37.758498508","geom:latitude":37.753928,"geom:longitude":-122.423502,"iso:country":"US","lbl:latitude":37.753807,"lbl:longitude":-122.420277,"lbl:max_zoom":18,"mps:latitude":37.753965,"mps:longitude":-122.423458,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.753965,"reversegeo:longitude":-122.423458,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869187,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["parent_id"],"wof:country":"US","wof:geomhash":"f2ada09ed8403afe296d1f7040b875b2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832017,"neighbourhood_id":85869187,"region_id":85688637}],"wof:id":1108832017,"wof:lastmodified":1566624120,"wof:name":"Baja Noe","wof:parent_id":85869187,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887409],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832021.geojson b/fixtures/microhoods/1108832021.geojson new file mode 100644 index 0000000..a07e954 --- /dev/null +++ b/fixtures/microhoods/1108832021.geojson @@ -0,0 +1 @@ +{"id":1108832021,"type":"Feature","bbox":[-122.4394803809999,37.78058848600006,-122.43233071984264,37.78435505600004],"geometry":{"type":"Polygon","coordinates":[[[-122.43233071984264,37.78142968069945],[-122.4389267549999,37.78058848600006],[-122.4391139359999,37.78152035200009],[-122.4394803809999,37.78330848700006],[-122.4378479429999,37.78371763700005],[-122.43456209899995,37.78415186300003],[-122.43291424799992,37.78435505600004],[-122.43270617899992,37.78329259100008],[-122.43233071984264,37.78142968069945]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":191711.505345,"geom:bbox":"-122.439480381,37.780588486,-122.43233072,37.784355056","geom:latitude":37.782463,"geom:longitude":-122.435895,"iso:country":"US","lbl:latitude":37.782315,"lbl:longitude":-122.433309,"lbl:max_zoom":18,"mps:latitude":37.782475,"mps:longitude":-122.435895,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:tier_metro":1,"reversegeo:latitude":37.782475,"reversegeo:longitude":-122.435895,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85856855,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5c94a4d3a174c0cbdf01b102cbd2b958","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832021,"neighbourhood_id":85856855,"region_id":85688637}],"wof:id":1108832021,"wof:lastmodified":1566624114,"wof:name":"Marcus Garvey Square","wof:parent_id":85856855,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85832413],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832023.geojson b/fixtures/microhoods/1108832023.geojson new file mode 100644 index 0000000..89d64c2 --- /dev/null +++ b/fixtures/microhoods/1108832023.geojson @@ -0,0 +1 @@ +{"id":1108832023,"type":"Feature","bbox":[-122.43042686839824,37.77791929500006,-122.42335402499992,37.78111712600008],"geometry":{"type":"Polygon","coordinates":[[[-122.42720275599993,37.78111712600008],[-122.42701675699993,37.78019303000008],[-122.42373098399992,37.78061162100005],[-122.42335402499992,37.77874737100007],[-122.42664149799992,37.77832856300006],[-122.42984919899993,37.77791929500006],[-122.43042686839824,37.780712763857],[-122.42720275599993,37.78111712600008]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":151407.759944,"geom:bbox":"-122.430426868,37.777919295,-122.423354025,37.781117126","geom:latitude":37.7795,"geom:longitude":-122.427174,"iso:country":"US","lbl:latitude":37.779579,"lbl:longitude":-122.428037,"lbl:max_zoom":18,"mps:latitude":37.779548,"mps:longitude":-122.428303,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.779548,"reversegeo:longitude":-122.428303,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85856855,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"26bc6dda92e65014b79369d8aa379b36","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832023,"neighbourhood_id":85856855,"region_id":85688637}],"wof:id":1108832023,"wof:lastmodified":1566624114,"wof:name":"Thomas Paine Square","wof:parent_id":85856855,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85852165],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832025.geojson b/fixtures/microhoods/1108832025.geojson new file mode 100644 index 0000000..3815400 --- /dev/null +++ b/fixtures/microhoods/1108832025.geojson @@ -0,0 +1 @@ +{"id":1108832025,"type":"Feature","bbox":[-122.43200332499993,37.78495387900006,-122.42610311399994,37.78878689400005],"geometry":{"type":"Polygon","coordinates":[[[-122.42798892699994,37.78495387900006],[-122.42814855354747,37.78578426879576],[-122.42978377856512,37.78556482243523],[-122.43016927203925,37.78744078813827],[-122.43181282304992,37.78723154563868],[-122.43200332499993,37.78815907400008],[-122.43035591799992,37.78836831100006],[-122.42871211099992,37.78857706700006],[-122.42705967299992,37.78878689400005],[-122.42686464299993,37.78786244200006],[-122.42666680699995,37.78692466600006],[-122.4266384639999,37.78678243300004],[-122.4265621319999,37.78679229300008],[-122.42649670299994,37.78646824000003],[-122.42622334299995,37.78650296600006],[-122.42619771599993,37.78650622100008],[-122.42612250699995,37.78613372400008],[-122.42610311399994,37.78604058000008],[-122.42637002299995,37.78600715800007],[-122.42636173999995,37.78591262300006],[-122.4262540169999,37.78537908600003],[-122.4262256259999,37.78527419500006],[-122.42789421399993,37.78506425400008],[-122.42798892699994,37.78495387900006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000013,"geom:area_square_m":123010.183217,"geom:bbox":"-122.432003325,37.784953879,-122.426103114,37.788786894","geom:latitude":37.787067,"geom:longitude":-122.428588,"iso:country":"US","lbl:latitude":37.787084,"lbl:longitude":-122.42926,"lbl:max_zoom":18,"mps:latitude":37.787159,"mps:longitude":-122.428588,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:note":"dup","mz:tier_metro":1,"reversegeo:latitude":37.787159,"reversegeo:longitude":-122.428588,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866845,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0d09e3b211d5dae4428b7aa581421f52","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832025,"neighbourhood_id":85866845,"region_id":85688637}],"wof:id":1108832025,"wof:lastmodified":1566624115,"wof:name":"Little Osaka","wof:parent_id":85866845,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85830987],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832027.geojson b/fixtures/microhoods/1108832027.geojson new file mode 100644 index 0000000..433236f --- /dev/null +++ b/fixtures/microhoods/1108832027.geojson @@ -0,0 +1 @@ +{"id":1108832027,"type":"Feature","bbox":[-122.4213933069999,37.78216929735218,-122.4158831170161,37.78631358562203],"geometry":{"type":"Polygon","coordinates":[[[-122.41899295244343,37.78216929735218],[-122.41927408579963,37.78356838993415],[-122.42092111915203,37.78335628929462],[-122.4213933069999,37.78568580200005],[-122.41645144687263,37.78631358562203],[-122.4164491229999,37.78631021800004],[-122.4158831170161,37.78351640563838],[-122.4175289576748,37.78331110021431],[-122.41733887999993,37.78237894200004],[-122.41899295244343,37.78216929735218]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":146216.743162,"geom:bbox":"-122.421393307,37.7821692974,-122.415883117,37.7863135856","geom:latitude":37.784478,"geom:longitude":-122.418524,"iso:country":"US","lbl:latitude":37.784791,"lbl:longitude":-122.418032,"lbl:max_zoom":18,"mps:latitude":37.78464,"mps:longitude":-122.418301,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:fra_x_preferred":["Little Saigon"],"name:ind_x_preferred":["Little Saigon"],"name:vie_x_preferred":["Little Saigon"],"name:zho_x_preferred":["小西貢"],"reversegeo:latitude":37.78464,"reversegeo:longitude":-122.418301,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865903,102191575,1108830801,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dcabf68cb5841ff815e6f3ff4caa49f9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830801,"microhood_id":1108832027,"neighbourhood_id":85865903,"region_id":85688637}],"wof:id":1108832027,"wof:lastmodified":1566624114,"wof:name":"Little Saigon","wof:parent_id":85865903,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85882193],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832029.geojson b/fixtures/microhoods/1108832029.geojson new file mode 100644 index 0000000..5ab2f6c --- /dev/null +++ b/fixtures/microhoods/1108832029.geojson @@ -0,0 +1 @@ +{"id":1108832029,"type":"Feature","bbox":[-122.42798892699994,37.78205693900009,-122.42409920687078,37.78548043246951],"geometry":{"type":"Polygon","coordinates":[[[-122.4262256259999,37.78527419500006],[-122.42471866074713,37.78548043246951],[-122.42409920687078,37.78247983772838],[-122.42739639799993,37.78205693900009],[-122.42758432499994,37.78298604600008],[-122.42777887099993,37.78392473400004],[-122.42798892699994,37.78495387900006],[-122.42789421399993,37.78506425400008],[-122.42622878599991,37.78527379800005],[-122.42622922307264,37.78527562183291],[-122.4262256259999,37.78527419500006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":98808.11614,"geom:bbox":"-122.427988927,37.782056939,-122.424099207,37.7854804325","geom:latitude":37.783764,"geom:longitude":-122.426053,"iso:country":"US","lbl:latitude":37.782778,"lbl:longitude":-122.425965,"lbl:max_zoom":18,"mps:latitude":37.783763,"mps:longitude":-122.426055,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:tier_metro":1,"reversegeo:latitude":37.783763,"reversegeo:longitude":-122.426055,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882165,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5a758f1c4a452e8f41b785e5382d4cd4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832029,"neighbourhood_id":85882165,"region_id":85688637}],"wof:id":1108832029,"wof:lastmodified":1566624114,"wof:name":"Laguna Heights","wof:parent_id":85882165,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829033],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832033.geojson b/fixtures/microhoods/1108832033.geojson new file mode 100644 index 0000000..5b1d267 --- /dev/null +++ b/fixtures/microhoods/1108832033.geojson @@ -0,0 +1 @@ +{"id":1108832033,"type":"Feature","bbox":[-122.43098925399994,37.78164149189941,-122.42739639799993,37.78392473400004],"geometry":{"type":"Polygon","coordinates":[[[-122.42739639799993,37.78205693900009],[-122.43060513777111,37.78164149189941],[-122.43098925399994,37.78350775300004],[-122.43023749999992,37.78359535700008],[-122.4278367579999,37.78388331000008],[-122.42777887099993,37.78392473400004],[-122.42758432499994,37.78298604600008],[-122.42739639799993,37.78205693900009]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":59579.733603,"geom:bbox":"-122.430989254,37.7816414919,-122.427396398,37.783924734","geom:latitude":37.782774,"geom:longitude":-122.429194,"iso:country":"US","lbl:latitude":37.783377,"lbl:longitude":-122.428391,"lbl:max_zoom":18,"mps:latitude":37.782772,"mps:longitude":-122.429194,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":19,"mz:tier_metro":1,"name:fra_x_preferred":["St-Francis Square"],"name:spa_x_preferred":["St. Francis Square"],"reversegeo:latitude":37.782772,"reversegeo:longitude":-122.429194,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85856855,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4b85ddce148c382d64ff628a367296f1","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832033,"neighbourhood_id":85856855,"region_id":85688637}],"wof:id":1108832033,"wof:lastmodified":1566624114,"wof:name":"St. Francis Square","wof:parent_id":85856855,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85846645],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832035.geojson b/fixtures/microhoods/1108832035.geojson new file mode 100644 index 0000000..8b44c62 --- /dev/null +++ b/fixtures/microhoods/1108832035.geojson @@ -0,0 +1 @@ +{"id":1108832035,"type":"Feature","bbox":[-122.42739639799993,37.78019303000008,-122.42373098399992,37.78247983772838],"geometry":{"type":"Polygon","coordinates":[[[-122.42409920687078,37.78247983772838],[-122.42373098399992,37.78061162100005],[-122.42701675699993,37.78019303000008],[-122.42720275599993,37.78111712600008],[-122.42739639799993,37.78205693900009],[-122.42409920687078,37.78247983772838]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":61543.521694,"geom:bbox":"-122.427396398,37.78019303,-122.423730984,37.7824798377","geom:latitude":37.781336,"geom:longitude":-122.42556,"iso:country":"US","lbl:latitude":37.781336,"lbl:longitude":-122.425557,"lbl:max_zoom":18,"mps:latitude":37.781336,"mps:longitude":-122.425557,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":37.781336,"reversegeo:longitude":-122.425557,"src:geom":"mz","wof:belongsto":[85882165,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"23f20d9bba31b1e0adb3cca48882425d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832035,"neighbourhood_id":85882165,"region_id":85688637}],"wof:id":1108832035,"wof:lastmodified":1566624114,"wof:name":"Malcolm X Square","wof:parent_id":85882165,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420558999],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832037.geojson b/fixtures/microhoods/1108832037.geojson new file mode 100644 index 0000000..b21da83 --- /dev/null +++ b/fixtures/microhoods/1108832037.geojson @@ -0,0 +1 @@ +{"id":1108832037,"type":"Feature","bbox":[-122.42409920687078,37.78061162100005,-122.42043951799991,37.78382900088511],"geometry":{"type":"Polygon","coordinates":[[[-122.42373098399992,37.78061162100005],[-122.42409920687078,37.78247983772838],[-122.42245898625742,37.7826785650943],[-122.42265214929417,37.78362086771461],[-122.4210093467094,37.78382900088511],[-122.42063824899992,37.78196076500006],[-122.42043951799991,37.78103084100007],[-122.4220867919999,37.78082104700007],[-122.42373098399992,37.78061162100005]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":76625.382164,"geom:bbox":"-122.424099207,37.780611621,-122.420439518,37.7838290009","geom:latitude":37.782054,"geom:longitude":-122.422167,"iso:country":"US","lbl:latitude":37.782149,"lbl:longitude":-122.420577,"lbl:max_zoom":18,"mps:latitude":37.78187,"mps:longitude":-122.421836,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Van Ness"],"reversegeo:latitude":37.78187,"reversegeo:longitude":-122.421836,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882165,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8e4333b5c8b4ecae4053e8056495d761","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832037,"neighbourhood_id":85882165,"region_id":85688637}],"wof:id":1108832037,"wof:lastmodified":1566624113,"wof:name":"Van Ness","wof:parent_id":85882165,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869755],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832039.geojson b/fixtures/microhoods/1108832039.geojson new file mode 100644 index 0000000..8f2e07c --- /dev/null +++ b/fixtures/microhoods/1108832039.geojson @@ -0,0 +1 @@ +{"id":1108832039,"type":"Feature","bbox":[-122.42335586247138,37.77303605000009,-122.41750610104906,37.77895809618193],"geometry":{"type":"Polygon","coordinates":[[[-122.42335586247138,37.77874805479004],[-122.42335402499992,37.77874737100007],[-122.42171027134052,37.77895809618193],[-122.42152043870095,37.7780209987432],[-122.41980694934945,37.77824737730258],[-122.41971036783109,37.77777356092018],[-122.4181417507571,37.77797098478192],[-122.41804516923874,37.77751559294627],[-122.41969038544798,37.77729974150085],[-122.41950388320565,37.77637052015515],[-122.4179918828838,37.77656005066961],[-122.41789197096826,37.77655478593965],[-122.4177487638893,37.776491609151],[-122.41750897529202,37.77653899174755],[-122.41750610104906,37.77653678483668],[-122.42194124699989,37.77303605000009],[-122.4221068569999,37.77316732000008],[-122.42222936799993,37.77315174300008],[-122.42335586247138,37.77874805479004]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":167999.450124,"geom:bbox":"-122.423355862,37.77303605,-122.417506101,37.7789580962","geom:latitude":37.776278,"geom:longitude":-122.421052,"iso:country":"US","lbl:latitude":37.775768,"lbl:longitude":-122.420354,"lbl:max_zoom":18,"mps:latitude":37.776287,"mps:longitude":-122.4211,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:tier_metro":1,"name:bul_x_preferred":["Антракт"],"name:cat_x_preferred":["Intermedi"],"name:fin_x_preferred":["Väliaika"],"name:heb_x_preferred":["הפסקה"],"name:lat_x_preferred":["Intermissio"],"name:por_x_preferred":["Intervalo"],"name:spa_x_preferred":["Intermedio"],"reversegeo:latitude":37.776287,"reversegeo:longitude":-122.4211,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866841,102191575,1108830801,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0359bc32848b80dc41c6bc93b082918c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830801,"microhood_id":1108832039,"neighbourhood_id":85866841,"region_id":85688637}],"wof:id":1108832039,"wof:lastmodified":1566624113,"wof:name":"Intermission","wof:parent_id":85866841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887425],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832043.geojson b/fixtures/microhoods/1108832043.geojson new file mode 100644 index 0000000..442e42b --- /dev/null +++ b/fixtures/microhoods/1108832043.geojson @@ -0,0 +1 @@ +{"id":1108832043,"type":"Feature","bbox":[-122.40714880056757,37.78776600113053,-122.4025388399474,37.79092453742741],"geometry":{"type":"Polygon","coordinates":[[[-122.40272931474462,37.79092453742741],[-122.4025388399474,37.78999787443935],[-122.4038443556438,37.78983469730701],[-122.40349799433659,37.78796076634441],[-122.40503996823305,37.78776600113053],[-122.40531306080221,37.78916092984817],[-122.40685836509591,37.78896090395116],[-122.40714880056757,37.79036629439128],[-122.40272931474462,37.79092453742741]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":77498.725995,"geom:bbox":"-122.407148801,37.7877660011,-122.40253884,37.7909245374","geom:latitude":37.78958,"geom:longitude":-122.404819,"iso:country":"US","lbl:latitude":37.789763,"lbl:longitude":-122.403576,"lbl:max_zoom":18,"mps:latitude":37.789666,"mps:longitude":-122.404659,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:tier_metro":1,"name:deu_x_preferred":["French Quarter"],"name:eus_x_preferred":["Frantziar Auzoa"],"name:fas_x_preferred":["فرنچ کوارتر"],"name:fin_x_preferred":["Ranskalaiskorttelit"],"name:heb_x_preferred":["הרובע הצרפתי"],"name:ind_x_preferred":["French Quarter"],"name:ita_x_preferred":["Quartiere francese"],"name:jpn_x_preferred":["フレンチ・クオーター"],"name:nor_x_preferred":["French Quarter"],"name:pol_x_preferred":["French Quarter"],"name:por_x_preferred":["Bairro Francês"],"name:rus_x_preferred":["Французский квартал"],"name:ukr_x_preferred":["Французький квартал"],"name:zho_x_preferred":["法国区"],"reversegeo:latitude":37.789666,"reversegeo:longitude":-122.404659,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866851,102191575,1108830801,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3f0b10744a96900e3aecb7216bb5202b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830801,"microhood_id":1108832043,"neighbourhood_id":85866851,"region_id":85688637}],"wof:id":1108832043,"wof:lastmodified":1566624113,"wof:name":"French Quarter","wof:parent_id":85866851,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85882187],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832047.geojson b/fixtures/microhoods/1108832047.geojson new file mode 100644 index 0000000..9f228c4 --- /dev/null +++ b/fixtures/microhoods/1108832047.geojson @@ -0,0 +1 @@ +{"id":1108832047,"type":"Feature","bbox":[-122.40027246721925,37.7597803221394,-122.39918117429204,37.76113323482623],"geometry":{"type":"Polygon","coordinates":[[[-122.40027246721925,37.76107517732665],[-122.39929757687474,37.76113323482623],[-122.39918117429204,37.75983774791148],[-122.40014860359146,37.7597803221394],[-122.40027246721925,37.76107517732665]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":12363.800415,"geom:bbox":"-122.400272467,37.7597803221,-122.399181174,37.7611332348","geom:latitude":37.760457,"geom:longitude":-122.399725,"iso:country":"US","lbl:latitude":37.758562,"lbl:longitude":-122.403532,"lbl:max_zoom":18,"mps:latitude":37.760456,"mps:longitude":-122.399727,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":19,"mz:tier_metro":1,"reversegeo:latitude":37.760456,"reversegeo:longitude":-122.399727,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85842947,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"df6a12ee2ff0bfba66a5ef85bbbb26b6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832047,"neighbourhood_id":85842947,"region_id":85688637}],"wof:id":1108832047,"wof:lastmodified":1566624113,"wof:name":"Victoria Mews","wof:parent_id":85842947,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85853735],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832051.geojson b/fixtures/microhoods/1108832051.geojson new file mode 100644 index 0000000..20612b4 --- /dev/null +++ b/fixtures/microhoods/1108832051.geojson @@ -0,0 +1 @@ +{"id":1108832051,"type":"Feature","bbox":[-122.4467927799999,37.78248803100007,-122.4378479429999,37.78827839800005],"geometry":{"type":"Polygon","coordinates":[[[-122.4378479429999,37.78371763700005],[-122.4394803809999,37.78330848700006],[-122.4427930999999,37.78288533600005],[-122.44582051099991,37.78248803100007],[-122.4460330259999,37.78350919800005],[-122.44624722299994,37.78443831200008],[-122.44642170899994,37.78537026400005],[-122.44661046499994,37.78630229700008],[-122.4467927799999,37.78726185300008],[-122.44540219699991,37.78743816400004],[-122.44375326599993,37.78764721000005],[-122.44210952499992,37.78785557200007],[-122.4404401139999,37.78806716500009],[-122.43877333799992,37.78827839800005],[-122.4378479429999,37.78371763700005]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000039,"geom:area_square_m":381639.254726,"geom:bbox":"-122.44679278,37.782488031,-122.437847943,37.788278398","geom:latitude":37.785397,"geom:longitude":-122.442324,"iso:country":"US","lbl:latitude":37.787486,"lbl:longitude":-122.441203,"lbl:max_zoom":18,"mps:latitude":37.785387,"mps:longitude":-122.442326,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:tier_metro":1,"reversegeo:latitude":37.785387,"reversegeo:longitude":-122.442326,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865927,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8033cbe5a74cd0deb42f0fe3ee283df9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832051,"neighbourhood_id":85865927,"region_id":85688637}],"wof:id":1108832051,"wof:lastmodified":1566624115,"wof:name":"Zion District","wof:parent_id":85865927,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85887475],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832055.geojson b/fixtures/microhoods/1108832055.geojson new file mode 100644 index 0000000..aea4250 --- /dev/null +++ b/fixtures/microhoods/1108832055.geojson @@ -0,0 +1 @@ +{"id":1108832055,"type":"Feature","bbox":[-122.443866,37.765885,-122.438338,37.770847],"geometry":{"type":"Polygon","coordinates":[[[-122.439301,37.768166],[-122.440137,37.767757],[-122.440604,37.766955],[-122.441938,37.765953],[-122.442009,37.765907],[-122.442167,37.765888],[-122.442361,37.765885],[-122.442575,37.765928],[-122.442811,37.766011],[-122.443004,37.766145],[-122.443042,37.766215],[-122.443105,37.766414],[-122.443533,37.766691],[-122.443695,37.766954],[-122.443764,37.767067],[-122.443866,37.767536],[-122.443356,37.768944],[-122.443167,37.769037],[-122.442411,37.769493],[-122.442384,37.7696],[-122.442506,37.769686],[-122.442647,37.76969],[-122.442765,37.769661],[-122.443019,37.769825],[-122.443155,37.769972],[-122.443265,37.77018],[-122.443312,37.77047],[-122.441998,37.770638],[-122.440358,37.770847],[-122.440263,37.770725],[-122.439673,37.770543],[-122.439461,37.770406],[-122.439254,37.770025],[-122.43915,37.769938],[-122.438823,37.769684],[-122.438351,37.769185],[-122.438338,37.769007],[-122.43882,37.768401],[-122.439301,37.768166]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":166268.279174,"geom:bbox":"-122.443866,37.765885,-122.438338,37.770847","geom:latitude":37.768565,"geom:longitude":-122.441388,"iso:country":"US","lbl:latitude":37.768566,"lbl:longitude":-122.44133,"lbl:max_zoom":18,"mps:latitude":37.768566,"mps:longitude":-122.44133,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Buena Vista Park"],"name:eng_x_variant":["Buena Vista"],"name:fra_x_preferred":["Buena Vista Park"],"name:nld_x_preferred":["Buena Vista Park"],"name:por_x_preferred":["Buena Vista Park"],"reversegeo:latitude":37.768566,"reversegeo:longitude":-122.44133,"src:geom":"mz","wof:belongsto":[102191575,85633793,102087579,85922583,1108831841,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bf9907f38a531cad7f27e68f51aaad17","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832055,"neighbourhood_id":1108831841,"region_id":85688637}],"wof:id":1108832055,"wof:lastmodified":1587164336,"wof:name":"Buena Vista Park","wof:parent_id":1108831841,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420558707],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832057.geojson b/fixtures/microhoods/1108832057.geojson new file mode 100644 index 0000000..63385fe --- /dev/null +++ b/fixtures/microhoods/1108832057.geojson @@ -0,0 +1 @@ +{"id":1108832057,"type":"Feature","bbox":[-122.4717114939999,37.70820041700005,-122.46117040399992,37.71428699859847],"geometry":{"type":"Polygon","coordinates":[[[-122.47159806099991,37.71384935400004],[-122.4717114939999,37.71422893500006],[-122.46259717501712,37.71428699859847],[-122.46258872399994,37.71402953800004],[-122.46255498499995,37.71390392600006],[-122.46256899899996,37.71315016400007],[-122.46258129899994,37.71227351900008],[-122.46257005099996,37.71137030100007],[-122.4620632569999,37.7113727280001],[-122.46254570966337,37.71117103101306],[-122.46249740599991,37.71104927100006],[-122.46139397399992,37.71068528100005],[-122.46117040399992,37.71058935500007],[-122.46220495926612,37.71057270700004],[-122.46356259399994,37.71055519100008],[-122.46423380099993,37.71054183400009],[-122.46476669799986,37.71048150200007],[-122.46543943199991,37.71030182000003],[-122.46599365399993,37.71015378800006],[-122.46679157999986,37.70982584300008],[-122.46707274799991,37.70968023000007],[-122.46713197199995,37.70964955900006],[-122.46717656399994,37.70962474200011],[-122.46733537199992,37.70952432800003],[-122.4675942629999,37.70936063000004],[-122.46771822399991,37.70928224800007],[-122.46782939499991,37.70919440100003],[-122.4680740629999,37.70900106600003],[-122.46832335199993,37.70880407700007],[-122.46838119599995,37.70875836900007],[-122.4684736329999,37.70868532400002],[-122.46850697199994,37.70865288000005],[-122.46863646599991,37.70852686000006],[-122.4687654939999,37.70840129400005],[-122.4689719059999,37.70820041700005],[-122.46950512199992,37.70820282300008],[-122.47133250999771,37.70820776099796],[-122.47121509099993,37.70893946300004],[-122.4712425749999,37.71090661400007],[-122.47125214499994,37.71159154200006],[-122.4712554969999,37.71183144700007],[-122.47125300573371,37.71209467500007],[-122.47131086699994,37.71247481900008],[-122.4713367449999,37.71268562600005],[-122.47138937799993,37.71298713700008],[-122.4714719909999,37.71342747800006],[-122.47159806099991,37.71384935400004]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":413154.099916,"geom:bbox":"-122.471711494,37.708200417,-122.461170404,37.7142869986","geom:latitude":37.711784,"geom:longitude":-122.467374,"iso:country":"US","lbl:latitude":37.714291,"lbl:longitude":-122.467324,"lbl:max_zoom":18,"mps:latitude":37.711846,"mps:longitude":-122.467474,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Ingleside Hts"],"reversegeo:latitude":37.711846,"reversegeo:longitude":-122.467474,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[1108831825,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b6cfabb57e61d54db46cf7b8b7d95723","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832057,"neighbourhood_id":1108831825,"region_id":85688637}],"wof:id":1108832057,"wof:lastmodified":1566624115,"wof:name":"Ingleside Heights","wof:parent_id":1108831825,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865987],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832059.geojson b/fixtures/microhoods/1108832059.geojson new file mode 100644 index 0000000..845277c --- /dev/null +++ b/fixtures/microhoods/1108832059.geojson @@ -0,0 +1 @@ +{"id":1108832059,"type":"Feature","bbox":[-122.39146818599994,37.70838459600009,-122.37437190899993,37.72036816000008],"geometry":{"type":"Polygon","coordinates":[[[-122.3881305089999,37.71629821500005],[-122.38791176699993,37.71632787400006],[-122.38684966599993,37.71750900100005],[-122.38626501399995,37.71717894700004],[-122.38240221751171,37.71505532614253],[-122.3813533484336,37.71621587624163],[-122.38515706099992,37.71838264473556],[-122.38415639499993,37.71952096300004],[-122.38408586999992,37.71966724900005],[-122.38399947399989,37.71969539900005],[-122.38345282599994,37.72030305500004],[-122.38332965899991,37.72036816000008],[-122.38327802099991,37.72033884700005],[-122.38324029599994,37.72025338700007],[-122.3832300169999,37.72012066900004],[-122.38284980999993,37.71992313100009],[-122.38277495199992,37.71990303900009],[-122.38222466299993,37.71959997000005],[-122.38173001799993,37.71933326800007],[-122.38138597199992,37.71885633600004],[-122.38123849999994,37.71876804300007],[-122.3807927069999,37.71877962500008],[-122.38055683099992,37.71875077100009],[-122.38033188899993,37.71867573200007],[-122.38019649199993,37.71851788500004],[-122.37999645899993,37.71847060300007],[-122.37971346099994,37.71835597200004],[-122.37943930799992,37.71811243700006],[-122.3790574389999,37.71777997100008],[-122.37859493199994,37.71754046900008],[-122.37788235199992,37.71718889400006],[-122.3771925939999,37.71685068700009],[-122.37651296699994,37.71636569700007],[-122.37623237299994,37.71620878500005],[-122.37614388999992,37.71612813000007],[-122.37612095899993,37.71600552700005],[-122.3766775119999,37.71523582100008],[-122.37714303999991,37.71469871200009],[-122.3773211199999,37.71436933900009],[-122.37770177899989,37.71407882800008],[-122.3783990369999,37.71355163300007],[-122.3784468309999,37.71345884900006],[-122.37866097699992,37.71324426400008],[-122.3788280409999,37.71315060800003],[-122.3789338279999,37.71302668200008],[-122.37933787799994,37.71242996400008],[-122.37942888899994,37.71221308300005],[-122.37985017199992,37.71164481700004],[-122.3800451969999,37.71151084600007],[-122.3801190339999,37.71108080500005],[-122.38011245599989,37.71082510500008],[-122.38002709299991,37.71058988600004],[-122.37987421899993,37.71049240700006],[-122.37972359799994,37.71049273600005],[-122.37939090399993,37.71030383600004],[-122.37921548999992,37.71014856600004],[-122.3789438849999,37.70993623600009],[-122.3788985939999,37.70978587700006],[-122.37881814699995,37.70974939100006],[-122.37867133499992,37.70948116100004],[-122.37858807599991,37.70940179800004],[-122.37846072999992,37.70928811500005],[-122.37837105599993,37.70888643400008],[-122.37828550599994,37.70878478900005],[-122.3781087669999,37.70870039300007],[-122.37796492199993,37.70861787500007],[-122.37778062699994,37.70857651900008],[-122.3775374499999,37.70866795400008],[-122.37699087899995,37.70886242700004],[-122.37680649899994,37.70897140200009],[-122.37672609399993,37.70906077500007],[-122.37667795199991,37.70911428700003],[-122.37638651399993,37.70954310000008],[-122.37643095199991,37.70956833300005],[-122.37636826999994,37.70966777000007],[-122.37602301499993,37.70969046500005],[-122.37581988499994,37.70966019500008],[-122.3755571019999,37.70958556400007],[-122.37531600599993,37.70938124800006],[-122.37493324699994,37.70919015000004],[-122.3745708109999,37.70902879800008],[-122.37443941499993,37.70893870000009],[-122.37437190899993,37.70873073500007],[-122.37438717299995,37.70867782900007],[-122.3745967189999,37.70852675900005],[-122.37561363399993,37.70840640300008],[-122.37609886899992,37.70838459600009],[-122.37943190099992,37.70843673300004],[-122.37976420399991,37.70851755200005],[-122.38017304499994,37.70870488500009],[-122.38057140699993,37.70880256400005],[-122.38134242899991,37.70887025500008],[-122.38158601999993,37.70886361700008],[-122.38184216799993,37.70887497600006],[-122.38221854699992,37.70906021700006],[-122.3828428679999,37.70913745300004],[-122.38337315199993,37.70918769000008],[-122.3837866529999,37.70920030600007],[-122.38407519599991,37.70926196000005],[-122.38444588699991,37.70929070900007],[-122.38502119799995,37.70948031200004],[-122.38556569699995,37.70975006600008],[-122.38585241999994,37.70994428400007],[-122.38608539799992,37.70999617900009],[-122.3867970089999,37.70977712900009],[-122.38681347799991,37.70961770300005],[-122.38720238299993,37.70950093800008],[-122.38809867799989,37.70867183600006],[-122.3886590159999,37.70888432400005],[-122.38969577299991,37.70961211200006],[-122.3899709079999,37.70955413200005],[-122.39038927699994,37.70925105400005],[-122.39055967099989,37.70921276400009],[-122.39146818599994,37.70969525600009],[-122.39136819981323,37.71002519336739],[-122.39094927311322,37.71031334240656],[-122.39046337890154,37.71040923591055],[-122.38881894442882,37.71048969423401],[-122.38654167161991,37.71116925533345],[-122.38774145157184,37.71228464217606],[-122.38795353246482,37.71303294715943],[-122.38806062210723,37.71366590336956],[-122.38875919999992,37.71466371900004],[-122.38859737199994,37.71472912100006],[-122.38827189699992,37.71510377600003],[-122.3883959069999,37.71518100100008],[-122.38858666599992,37.71548070300008],[-122.38851735399993,37.71556048700006],[-122.3885365399999,37.71567482300009],[-122.38852575599992,37.71575400500006],[-122.38846533399993,37.71588602500009],[-122.38840190499991,37.71602461200007],[-122.3883215599999,37.71611709700005],[-122.38848736499995,37.71638558600006],[-122.38857176399989,37.71643349300007],[-122.38851287499995,37.71651920000005],[-122.3881305089999,37.71629821500005]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000091,"geom:area_square_m":887569.679955,"geom:bbox":"-122.391468186,37.708384596,-122.374371909,37.72036816","geom:latitude":37.713573,"geom:longitude":-122.382873,"iso:country":"US","lbl:latitude":37.712228,"lbl:longitude":-122.382876,"lbl:max_zoom":18,"mps:latitude":37.712228,"mps:longitude":-122.382876,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Candlestick","Candlestick Point","Candlestick Pt."],"reversegeo:latitude":37.712228,"reversegeo:longitude":-122.382876,"src:geom":"mz","wof:belongsto":[85869105,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b7caf777069f3456a64ab549610d4857","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832059,"neighbourhood_id":85869105,"region_id":85688637}],"wof:id":1108832059,"wof:lastmodified":1566624115,"wof:name":"Candlestick Point","wof:parent_id":85869105,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832061.geojson b/fixtures/microhoods/1108832061.geojson new file mode 100644 index 0000000..c7d1454 --- /dev/null +++ b/fixtures/microhoods/1108832061.geojson @@ -0,0 +1 @@ +{"id":1108832061,"type":"Feature","bbox":[-122.39116163270094,37.71629821500005,-122.38684966599993,37.71931393750656],"geometry":{"type":"Polygon","coordinates":[[[-122.38684966599993,37.71750900100005],[-122.38791176699993,37.71632787400006],[-122.3881305089999,37.71629821500005],[-122.38851808399994,37.71652221100004],[-122.39116163270094,37.71805857612529],[-122.39003568304463,37.71931393750656],[-122.38684966599993,37.71750900100005]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":59601.411482,"geom:bbox":"-122.391161633,37.716298215,-122.386849666,37.7193139375","geom:latitude":37.717775,"geom:longitude":-122.389008,"iso:country":"US","lbl:latitude":37.717775,"lbl:longitude":-122.389017,"lbl:max_zoom":18,"mps:latitude":37.717775,"mps:longitude":-122.389017,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["بريت هارت"],"name:azb_x_preferred":["بریت هارت"],"name:bel_x_preferred":["Фрэнсіс Брэт Гарт"],"name:bul_x_preferred":["Франсис Брет Харт"],"name:ces_x_preferred":["Francis Bret Harte"],"name:deu_x_preferred":["Bret Harte"],"name:fra_x_preferred":["Bret Harte"],"name:hye_x_preferred":["Ֆրենսիս Բրեթ Հարթ"],"name:ita_x_preferred":["Bret Harte"],"name:kat_x_preferred":["ფრენსის ბრეტ ჰარტი"],"name:kur_x_preferred":["Bret Harte"],"name:nld_x_preferred":["Francis Bret Harte"],"name:nor_x_preferred":["Bret Harte"],"name:pol_x_preferred":["Bret Harte"],"name:por_x_preferred":["Bret Harte"],"name:ron_x_preferred":["Bret Harte"],"name:rus_x_preferred":["Гарт"],"name:slv_x_preferred":["Bret Harte"],"name:spa_x_preferred":["Bret Harte"],"name:swe_x_preferred":["Bret Harte"],"name:tur_x_preferred":["Bret Harte"],"reversegeo:latitude":37.717775,"reversegeo:longitude":-122.389017,"src:geom":"mz","wof:belongsto":[85869105,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"895f945b69fed8a26f460cd7a35bb6b4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832061,"neighbourhood_id":85869105,"region_id":85688637}],"wof:id":1108832061,"wof:lastmodified":1566624119,"wof:name":"Bret Harte","wof:parent_id":85869105,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832063.geojson b/fixtures/microhoods/1108832063.geojson new file mode 100644 index 0000000..491615a --- /dev/null +++ b/fixtures/microhoods/1108832063.geojson @@ -0,0 +1 @@ +{"id":1108832063,"type":"Feature","bbox":[-122.48598032899991,37.78696609865469,-122.46651412673268,37.81100322500004],"geometry":{"type":"Polygon","coordinates":[[[-122.47758017099994,37.81099311300005],[-122.47712332299994,37.81100322500004],[-122.4764664569999,37.81083647600008],[-122.47596765399993,37.80957458300009],[-122.47494932299992,37.80925997300005],[-122.4730093899999,37.80907264800004],[-122.4706010839999,37.80859892400008],[-122.4693044679999,37.80772703100007],[-122.46879005799991,37.80700281300005],[-122.46830302099994,37.80681790100004],[-122.46720353699993,37.80601222900009],[-122.46881085551384,37.80468027918604],[-122.4689305336568,37.80440303337693],[-122.46899805532371,37.80424661300896],[-122.46901061611509,37.80410234660535],[-122.46896893183386,37.80397236098417],[-122.46876113647774,37.80374234525186],[-122.46866980389436,37.80356685532709],[-122.46864726897952,37.80338863309013],[-122.4688883379388,37.80125991150005],[-122.4688515516832,37.80110291700603],[-122.46869354947992,37.80098024818844],[-122.46821013247605,37.80081317731955],[-122.46803337444841,37.80067645472496],[-122.46794334738502,37.8005064188141],[-122.46783800350188,37.80018319535756],[-122.4677070753879,37.79999794382649],[-122.46756500408893,37.79989119708382],[-122.46728886763225,37.79977842776385],[-122.46700567470637,37.79973524997726],[-122.46683332027001,37.79976513231817],[-122.46669417379906,37.79975240301928],[-122.46659034983419,37.799694963626],[-122.46652516517553,37.79957864194299],[-122.46651412673268,37.79946713126772],[-122.4665699953352,37.79934176554628],[-122.46675852723482,37.79912877714527],[-122.46681910726039,37.7990124464016],[-122.46686857032613,37.79887953073273],[-122.46689228899791,37.79851809680236],[-122.466836024594,37.79714301405635],[-122.46686028663294,37.79656594250091],[-122.46691578581859,37.79634349964823],[-122.4669963809129,37.79621046146197],[-122.46715101388699,37.79605263359672],[-122.46739153271427,37.7959241325444],[-122.46814558618698,37.79564800426267],[-122.46851232969583,37.79548121965681],[-122.46883488614692,37.79522919739587],[-122.46907228849977,37.79509159194896],[-122.46937165552697,37.7949793001758],[-122.46981293949139,37.7949011931776],[-122.47024593791039,37.79487264233323],[-122.47121165893864,37.79464890293891],[-122.47197549665738,37.7943957237516],[-122.47279077581877,37.7942554165795],[-122.47356793433855,37.79417350321015],[-122.47478713434921,37.79380734681249],[-122.47520772384793,37.79363711384747],[-122.47537515484477,37.79347059267415],[-122.47551654054625,37.79317843006062],[-122.47549114339553,37.79245195143615],[-122.47550138166184,37.79206423456379],[-122.47557602858316,37.79161614932268],[-122.4757711497851,37.79101477350153],[-122.47589302792869,37.78998617484493],[-122.47594882107651,37.78945624024905],[-122.4759418192779,37.78878882782356],[-122.47576604495357,37.78696609865469],[-122.47884645799991,37.78700686800005],[-122.4821746479999,37.78724520800006],[-122.48237050799992,37.78709062900003],[-122.4841736059999,37.78731086500005],[-122.48431022499994,37.78735203400004],[-122.48464285299991,37.78737878500004],[-122.48463982999994,37.78753212700008],[-122.4841506649999,37.78755465300009],[-122.48414271299993,37.78777522900009],[-122.4839504329999,37.78802775100007],[-122.4839269609999,37.78831520100005],[-122.48370738599994,37.78877695000006],[-122.4838230019999,37.78928250300004],[-122.4842660519999,37.78941170900003],[-122.4850531269999,37.79036813300007],[-122.48598032899991,37.79080370600008],[-122.4832938639999,37.79467123700005],[-122.48351786399991,37.79473001800005],[-122.48195780099991,37.79853524300006],[-122.47992731799991,37.80274953300005],[-122.47840512999994,37.80809330700004],[-122.47789620299994,37.80844904200006],[-122.4779827939999,37.81054499200008],[-122.47758017099994,37.81099311300005]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00025,"geom:area_square_m":2442398.092416,"geom:bbox":"-122.485980329,37.7869660987,-122.466514127,37.811003225","geom:latitude":37.798455,"geom:longitude":-122.475998,"iso:country":"US","lbl:latitude":37.81012,"lbl:longitude":-122.476703,"lbl:max_zoom":18,"mps:latitude":37.799728,"mps:longitude":-122.475039,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Fort Winfield Scott"],"name:und_x_variant":["Fort Scott"],"reversegeo:latitude":37.799728,"reversegeo:longitude":-122.475039,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865991,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3855a73fd3f9bd9111a0ca1bc9842897","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832063,"neighbourhood_id":85865991,"region_id":85688637}],"wof:id":1108832063,"wof:lastmodified":1566624120,"wof:name":"Fort Winfield Scott","wof:parent_id":85865991,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85820267],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832065.geojson b/fixtures/microhoods/1108832065.geojson new file mode 100644 index 0000000..245c215 --- /dev/null +++ b/fixtures/microhoods/1108832065.geojson @@ -0,0 +1 @@ +{"id":1108832065,"type":"Feature","bbox":[-122.47263327099989,37.71422893500005,-122.4625971750171,37.71793603500004],"geometry":{"type":"Polygon","coordinates":[[[-122.47253191999994,37.71787177500005],[-122.4626396249999,37.71793603500004],[-122.46262048199992,37.71614379300007],[-122.46261521299994,37.71561930300004],[-122.4625971750171,37.71428699859846],[-122.47171149399992,37.71422893500005],[-122.47218809599991,37.71561080200007],[-122.47237507199992,37.71612321800006],[-122.47263327099989,37.71690825300004],[-122.47257245399993,37.71717386800009],[-122.47253191999994,37.71787177500005]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000035,"geom:area_square_m":344733.350467,"geom:bbox":"-122.472633271,37.714228935,-122.462597175,37.717936035","geom:latitude":37.716109,"geom:longitude":-122.467453,"iso:country":"US","lbl:latitude":37.71608,"lbl:longitude":-122.467453,"lbl:max_zoom":18,"mps:latitude":37.71608,"mps:longitude":-122.467453,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":37.71608,"reversegeo:longitude":-122.467453,"src:geom":"mz","wof:belongsto":[1108831825,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4a8d913f8224d414862ce4c53a2c3280","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832065,"neighbourhood_id":1108831825,"region_id":85688637}],"wof:id":1108832065,"wof:lastmodified":1566624120,"wof:name":"Merced Heights","wof:parent_id":1108831825,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865983],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832081.geojson b/fixtures/microhoods/1108832081.geojson new file mode 100644 index 0000000..3066c24 --- /dev/null +++ b/fixtures/microhoods/1108832081.geojson @@ -0,0 +1 @@ +{"id":1108832081,"type":"Feature","bbox":[-122.4389267549999,37.77779418800009,-122.43176321999994,37.78142968069945],"geometry":{"type":"Polygon","coordinates":[[[-122.4389267549999,37.78058848600006],[-122.43233071984264,37.78142968069945],[-122.43176321999994,37.77863203700008],[-122.43836550099991,37.77779418800009],[-122.43874018299994,37.77965962900004],[-122.4389267549999,37.78058848600006]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":184954.805173,"geom:bbox":"-122.438926755,37.777794188,-122.43176322,37.7814296807","geom:latitude":37.779611,"geom:longitude":-122.435346,"iso:country":"US","lbl:latitude":37.778805,"lbl:longitude":-122.43439,"lbl:max_zoom":18,"mps:latitude":37.779611,"mps:longitude":-122.435346,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":18,"mz:tier_metro":1,"reversegeo:latitude":37.779611,"reversegeo:longitude":-122.435346,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85856855,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7e804af0f934a56cd1fb476f0e3cbf3f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832081,"neighbourhood_id":85856855,"region_id":85688637}],"wof:id":1108832081,"wof:lastmodified":1566624120,"wof:name":"Martin Luther King Square","wof:parent_id":85856855,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85832725],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832169.geojson b/fixtures/microhoods/1108832169.geojson new file mode 100644 index 0000000..3b67100 --- /dev/null +++ b/fixtures/microhoods/1108832169.geojson @@ -0,0 +1 @@ +{"id":1108832169,"type":"Feature","bbox":[-73.98285297152182,40.77958270925085,-73.9815996593584,40.78064993291162],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98285297152182,40.78001665680811],[-73.98238472664292,40.78064993291162],[-73.9815996593584,40.78031830160994],[-73.98182329870355,40.77958270925085],[-73.98285297152182,40.78001665680811]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":7054.775425,"geom:bbox":"-73.9828529715,40.7795827093,-73.9815996594,40.7806499329","geom:latitude":40.780127,"geom:longitude":-73.982173,"iso:country":"US","lbl:latitude":40.778115,"lbl:longitude":-73.982182,"lbl:max_zoom":18,"mps:latitude":40.78014,"mps:longitude":-73.98218,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:cat_x_preferred":["Ansonia"],"name:ceb_x_preferred":["Ansonia"],"name:deu_x_preferred":["Ansonia"],"name:fra_x_preferred":["Ansonia"],"name:ita_x_preferred":["Ansonia"],"name:nld_x_preferred":["Ansonia"],"name:pol_x_preferred":["Ansonia"],"name:por_x_preferred":["Ansonia"],"name:srp_x_preferred":["Ансонија"],"name:ukr_x_preferred":["Ансонія"],"name:vol_x_preferred":["Ansonia"],"reversegeo:latitude":40.78014,"reversegeo:longitude":-73.98218,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85853285,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"470cbc58cabbf4e523b501110bab8a80","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":1108832169,"neighbourhood_id":85853285,"region_id":85688543}],"wof:id":1108832169,"wof:lastmodified":1566624112,"wof:name":"Ansonia","wof:parent_id":85853285,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869077],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832185.geojson b/fixtures/microhoods/1108832185.geojson new file mode 100644 index 0000000..9bfc4ff --- /dev/null +++ b/fixtures/microhoods/1108832185.geojson @@ -0,0 +1 @@ +{"id":1108832185,"type":"Feature","bbox":[-122.4522330439999,37.76147820200001,-122.44583817199991,37.76722025600008],"geometry":{"type":"Polygon","coordinates":[[[-122.4522330439999,37.76284256000012],[-122.44812203023758,37.76335952319719],[-122.44844442308778,37.76504329933966],[-122.44765172671912,37.76514366700076],[-122.44801315999995,37.76700668000006],[-122.44636925899994,37.76722025600008],[-122.44596264999991,37.76521618500005],[-122.44583817199991,37.76457714700006],[-122.44607364799994,37.76418782200005],[-122.44610110999992,37.76414241500002],[-122.44641626399995,37.76380349400005],[-122.44650470599991,37.76370838100006],[-122.44659362399995,37.76360674900006],[-122.44674759799994,37.76334299600006],[-122.44699434299991,37.76272223400009],[-122.44683254699991,37.76184923600006],[-122.44678340399993,37.76178141300005],[-122.4519577689999,37.76147820200001],[-122.4522330439999,37.76284256000012]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":148186.743793,"geom:bbox":"-122.452233044,37.761478202,-122.445838172,37.767220256","geom:latitude":37.763706,"geom:longitude":-122.44833,"iso:country":"US","lbl:latitude":37.764768,"lbl:longitude":-122.445482,"lbl:max_zoom":18,"mps:latitude":37.764279,"mps:longitude":-122.447312,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:deu_x_preferred":["Ashbury Heights"],"name:fin_x_preferred":["Ashbury Heights"],"name:ita_x_preferred":["Ashbury Heights"],"name:nld_x_preferred":["Ashbury Heights"],"name:swe_x_preferred":["Ashbury Heights"],"reversegeo:latitude":37.764279,"reversegeo:longitude":-122.447312,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882171,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3d6182fa749d77845bf30fd0f296b09b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108832185,"neighbourhood_id":85882171,"region_id":85688637}],"wof:id":1108832185,"wof:lastmodified":1566624113,"wof:name":"Ashbury Heights","wof:parent_id":85882171,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869089],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108832255.geojson b/fixtures/microhoods/1108832255.geojson new file mode 100644 index 0000000..0fa975c --- /dev/null +++ b/fixtures/microhoods/1108832255.geojson @@ -0,0 +1 @@ +{"id":1108832255,"type":"Feature","bbox":[-122.4283540639999,37.75808875600004,-122.42578213269523,37.76143286276525],"geometry":{"type":"Polygon","coordinates":[[[-122.4283540639999,37.76128957200009],[-122.42607514240494,37.76143286276525],[-122.42578213269523,37.7582258578863],[-122.42805018599988,37.75808875600004],[-122.4283540639999,37.76128957200009]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":71616.022977,"geom:bbox":"-122.428354064,37.758088756,-122.425782133,37.7614328628","geom:latitude":37.759761,"geom:longitude":-122.427065,"iso:country":"US","lbl:latitude":37.759759,"lbl:longitude":-122.427066,"lbl:max_zoom":18,"mps:latitude":37.759759,"mps:longitude":-122.427066,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Mission Dolores Park"],"name:eng_x_variant":["Mission-Dolores","Mission Dolores","Mission-Dolores Park"],"name:fra_x_preferred":["Dolores Park"],"name:ita_x_preferred":["Mission Dolores Park"],"reversegeo:latitude":37.759759,"reversegeo:longitude":-122.427066,"src:geom":"mz","wof:belongsto":[85865951,102191575,1108830809,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"29e95144d525d9c9990e60e76c0dacec","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830809,"microhood_id":1108832255,"neighbourhood_id":85865951,"region_id":85688637}],"wof:id":1108832255,"wof:lastmodified":1566624119,"wof:name":"Mission Dolores Park","wof:parent_id":85865951,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108833223.geojson b/fixtures/microhoods/1108833223.geojson new file mode 100644 index 0000000..7be9607 --- /dev/null +++ b/fixtures/microhoods/1108833223.geojson @@ -0,0 +1 @@ +{"id":1108833223,"type":"Feature","bbox":[-122.42684865799993,37.80603695631461,-122.42055996499994,37.81079766800008],"geometry":{"type":"Polygon","coordinates":[[[-122.42668243095036,37.80809020201065],[-122.42671753399992,37.80816884700005],[-122.42681590099994,37.80862391300008],[-122.42681099299995,37.80870159300008],[-122.4268266609999,37.80877599500008],[-122.42682627699992,37.80882358100007],[-122.42683007199992,37.80896979100004],[-122.42684865799993,37.80901893200007],[-122.4268239139999,37.80906603300008],[-122.4268171499999,37.80913893600007],[-122.42679496699992,37.80930577500004],[-122.42669468199995,37.80960900500008],[-122.42656271599992,37.80986076800008],[-122.42637427699992,37.81011943300007],[-122.42612348499989,37.81035966800005],[-122.4259034879999,37.81050900400004],[-122.42568023299992,37.81062237700007],[-122.42536057399991,37.81073266000004],[-122.42497818599992,37.81079766800008],[-122.42466508699994,37.81079265900007],[-122.42444428699991,37.81074347500004],[-122.4243116319999,37.81065445900003],[-122.4242867019999,37.81049350700005],[-122.4243656839999,37.81042118100004],[-122.42455534499993,37.81041190000008],[-122.42462592699991,37.81045462900005],[-122.42467258999994,37.81054863200006],[-122.42468788399992,37.81059404200005],[-122.42474861999995,37.81063060900004],[-122.4249031139999,37.81063492000004],[-122.42509045399993,37.81061863500008],[-122.42528291799994,37.81057935800004],[-122.42546086199991,37.81052554500008],[-122.42563116299993,37.81045471500005],[-122.42580586499992,37.81036110700006],[-122.42600027999993,37.81022423700006],[-122.42617988199993,37.81005282700005],[-122.42636515599992,37.80980580000005],[-122.42649969899992,37.80955209600006],[-122.4265768379999,37.80933098200006],[-122.42661855499995,37.80912382800005],[-122.42663209999989,37.80889465200005],[-122.42662977799989,37.80882909300004],[-122.42656919299992,37.80845626100006],[-122.42652144899989,37.80815076200008],[-122.42648716199994,37.80816368300009],[-122.42642142099993,37.80783169500006],[-122.4263561549999,37.80765146500005],[-122.42628937099994,37.80754611300006],[-122.42611698999991,37.80764095000006],[-122.42604390199995,37.80769296100004],[-122.42578890899989,37.80740595300006],[-122.4259339539999,37.80745852300004],[-122.42612151599991,37.80734833100007],[-122.42586528899994,37.80714718400009],[-122.42557513299994,37.80697268600005],[-122.4252597709999,37.80682744200004],[-122.42492444699991,37.80671342500005],[-122.4246021969999,37.80663627700005],[-122.4244284859999,37.80661301600009],[-122.42413577299993,37.80660680500006],[-122.42393201899989,37.80662661000008],[-122.42370644599993,37.80667286700009],[-122.4233998439999,37.80679873100007],[-122.42315539099991,37.80691808800009],[-122.42286717499991,37.80708554100005],[-122.42266961699994,37.80721099900006],[-122.42241092199993,37.80738209000009],[-122.42074326699992,37.80759010600008],[-122.42055996499994,37.80665773200008],[-122.42548118002593,37.80603695631461],[-122.4255231989059,37.80619238008077],[-122.42558392926513,37.80633492470069],[-122.42564445725307,37.8064837148673],[-122.42573335602891,37.80661475091685],[-122.42586632009584,37.80677846994232],[-122.42600297282678,37.80691443610017],[-122.42616042487337,37.80706042944253],[-122.42627623575424,37.80720180696639],[-122.42639681489676,37.80739008387452],[-122.42648031340968,37.80758849558094],[-122.426576976144,37.80787843493859],[-122.426643999432,37.80801877008545],[-122.42668243095036,37.80809020201065]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":47745.23139,"geom:bbox":"-122.426848658,37.8060369563,-122.420559965,37.810797668","geom:latitude":37.807343,"geom:longitude":-122.423676,"iso:country":"US","lbl:latitude":37.806913,"lbl:longitude":-122.422333,"lbl:max_zoom":18,"mps:latitude":37.806913,"mps:longitude":-122.422333,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_variant":["Fort Mason"],"reversegeo:latitude":37.806913,"reversegeo:longitude":-122.422333,"src:geom":"sfgov","wof:belongsto":[1108831839,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"54a477150a3a2c252bda3e49cfe791e5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108833223,"neighbourhood_id":1108831839,"region_id":85688637}],"wof:id":1108833223,"wof:lastmodified":1566624116,"wof:name":"Aquatic Park - Ft. Mason","wof:parent_id":1108831839,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1108954443.geojson b/fixtures/microhoods/1108954443.geojson new file mode 100644 index 0000000..5a22141 --- /dev/null +++ b/fixtures/microhoods/1108954443.geojson @@ -0,0 +1 @@ +{"id":1108954443,"type":"Feature","bbox":[-122.41857897799072,37.76905345300008,-122.3949745201391,37.78244496180918],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.41857897799072,37.77289161646141],[-122.41793737239027,37.77098408054646],[-122.41766044301804,37.77045054212438],[-122.41775319299988,37.76981507800006],[-122.41557701499994,37.76959116000007],[-122.41338523799993,37.76950200400007],[-122.41093108799993,37.76941119100006],[-122.41087336999995,37.76932059800005],[-122.41083123799991,37.76923173300007],[-122.41081379399994,37.76905345300008],[-122.40845217799995,37.76916314500004],[-122.40814313899993,37.76924605200011],[-122.40843631999988,37.76931803300005],[-122.40973588899996,37.77034851600006],[-122.40474849299991,37.77428104000009],[-122.4032050809999,37.77305110100008],[-122.4016566799999,37.77181712500006],[-122.3949745201391,37.77709463943072],[-122.40170325776246,37.78244496180918],[-122.40395110838752,37.78067358546855],[-122.40186526125963,37.77904865078447],[-122.40630190861735,37.77552778238551],[-122.4109658389481,37.77922081790359],[-122.41802597515044,37.77358421849926],[-122.41849497374116,37.77315330136606],[-122.41857897799072,37.77289161646141]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000138,"geom:area_square_m":1346052.133106,"geom:bbox":"-122.418578978,37.769053453,-122.39497452,37.7824449618","geom:latitude":37.774907,"geom:longitude":-122.407374,"iso:country":"US","lbl:latitude":37.777177,"lbl:longitude":-122.401477,"lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:eng_x_preferred":["West Soma"],"name:eng_x_variant":["W Soma","W SoMa","West South Of Market"],"src:geom":"mz","src:geom_alt":[],"src:lbl_centroid":"mz","wof:belongsto":[85865939,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:geomhash":"e03e0f52cf99416c1647823e2a5fb873","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":1108954443,"neighbourhood_id":85865939,"region_id":85688637}],"wof:id":1108954443,"wof:lang":["eng"],"wof:lastmodified":1566623953,"wof:name":"West Soma","wof:parent_id":85865939,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/1360667265.geojson b/fixtures/microhoods/1360667265.geojson new file mode 100644 index 0000000..0b2bf09 --- /dev/null +++ b/fixtures/microhoods/1360667265.geojson @@ -0,0 +1 @@ +{"id":1360667265,"type":"Feature","bbox":[-73.99624065189892,40.76741100483427,-73.97597327721863,40.78140900000022],"geometry":{"type":"Polygon","coordinates":[[[-73.98814000000014,40.78140900000022],[-73.97597327721863,40.77623954591348],[-73.98143901556422,40.76876258414195],[-73.9815487527886,40.7685590292784],[-73.9815653359019,40.7683070847208],[-73.98175441806094,40.76839972773867],[-73.98203857354812,40.76838782301206],[-73.98226824820435,40.76829862188325],[-73.98238479751805,40.76809721308691],[-73.9823209197466,40.76789446179218],[-73.98215553284577,40.76775620447476],[-73.98238873834039,40.76741100483427],[-73.99365035365902,40.77214557163436],[-73.99415893763998,40.77249300913782],[-73.99383108203094,40.77293178785091],[-73.99389125243705,40.77295519487672],[-73.9939625855146,40.7729446539089],[-73.99401262480508,40.77288284663189],[-73.9941220580824,40.77292405902601],[-73.9941366525886,40.77290187017439],[-73.99430134239115,40.77297002866391],[-73.99428153513445,40.77299380206933],[-73.99437655275108,40.77303955110149],[-73.994294029824,40.77315624399205],[-73.9950232758608,40.77348119657636],[-73.99508939189289,40.77338847503913],[-73.99501396371676,40.77335803542691],[-73.99505028469926,40.77329715318996],[-73.99624065189892,40.77378979139769],[-73.99619583747099,40.77385235618404],[-73.99609880736975,40.77395180529908],[-73.99617945997389,40.77398695435157],[-73.99609524522644,40.77408618643776],[-73.99557226516117,40.7738707313943],[-73.99401742413596,40.77321375261053],[-73.99393587681134,40.77317951258621],[-73.99386194292889,40.77326953169884],[-73.99382239352721,40.77338175862288],[-73.9937670193185,40.77348398122484],[-73.9936984637443,40.77356214105259],[-73.99335832646875,40.77392688832796],[-73.99262266386557,40.77497405603711],[-73.99257784276612,40.77495601635942],[-73.99252774395156,40.77500211043983],[-73.99246974581534,40.77502415955176],[-73.99240383719189,40.77501814039066],[-73.99226708903538,40.77511603385879],[-73.99217809026365,40.77527929389717],[-73.99205908493734,40.77549759819252],[-73.99212537239494,40.77550907505339],[-73.992226867797,40.77548221102612],[-73.99232934660881,40.77546890095852],[-73.99236175680113,40.77550189976664],[-73.99238604296028,40.77555718042463],[-73.99208768471273,40.77598397082137],[-73.99092717414975,40.77756687876324],[-73.99039616003671,40.7775850656792],[-73.98946126750647,40.77887512458442],[-73.98917577843805,40.77928752401578],[-73.98886861740007,40.77969292291161],[-73.9888718744998,40.77971373825301],[-73.98921902288058,40.7796978952094],[-73.98927785904425,40.77972343927104],[-73.98940905418014,40.77973770647196],[-73.98949861492704,40.77972504438976],[-73.98959649338823,40.77969814668339],[-73.98967981290251,40.77967756865804],[-73.98975270293793,40.77967124421156],[-73.98984224780651,40.77968075267066],[-73.99004010212049,40.77970767769822],[-73.99013797752484,40.77969976970478],[-73.99033584033225,40.77966179439498],[-73.99043059869705,40.7796649730555],[-73.99062219939673,40.7796760649143],[-73.99074506950548,40.77967132818405],[-73.9908721142822,40.77964600764388],[-73.99096167222436,40.77963968375175],[-73.99105747282954,40.77965235262577],[-73.99115742949704,40.77966977560646],[-73.99124281740447,40.7796713670845],[-73.99125531828975,40.77965078251649],[-73.99129488712012,40.77963020920889],[-73.9913219676499,40.77963179604137],[-73.99135945556942,40.77958588333738],[-73.99155105922748,40.77957482143741],[-73.99141982585985,40.77975528028723],[-73.98888614411703,40.779878898533],[-73.98893965670626,40.77995617844039],[-73.98892610353084,40.78005929201363],[-73.98891168026469,40.78009603714661],[-73.98891926146857,40.78022609434394],[-73.98838105020263,40.78098107404578],[-73.98823241384699,40.78123314421556],[-73.98821042083166,40.78122548254206],[-73.98814000000014,40.78140900000022]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000139,"geom:area_square_m":1304957.893427,"geom:bbox":"-73.9962406519,40.7674110048,-73.9759732772,40.781409","geom:latitude":40.774385,"geom:longitude":-73.985251,"iso:country":"US","lbl:latitude":40.774397,"lbl:longitude":-73.985248,"lbl:max_zoom":18,"mps:latitude":40.774397,"mps:longitude":-73.985248,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Lincoln Square"],"name:eng_x_preferred":["Lincoln Square"],"name:eng_x_variant":["Lincoln Sq","San Juan Hill"],"name:fra_x_preferred":["Lincoln Square"],"name:hun_x_preferred":["Lincoln Square"],"name:jpn_x_preferred":["リンカーン・スクエア"],"name:nld_x_preferred":["Lincoln Square"],"name:por_x_preferred":["Lincoln Square"],"name:zho_x_preferred":["林肯廣場"],"name:zho_x_variant":["Charlottesville"],"src:geom":"whosonfirst","src:geom_alt":[],"src:lbl_centroid":"mz","wd:wordcount":26,"wof:belongsto":[85853285,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"gp:id":23511890,"qs_pg:id":890620,"wd:id":"Q1139313"},"wof:country":"US","wof:geomhash":"99e0e72d992a802090273f8d8d89efe8","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":1360667265,"neighbourhood_id":85853285,"region_id":85688543}],"wof:id":1360667265,"wof:lang":["eng"],"wof:lastmodified":1566625476,"wof:name":"Lincoln Square","wof:parent_id":85853285,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865685],"wof:tags":[],"zs:blockids":[340170158012007,340170158012006,340170152012032,340170152012033,340170152012034],"zs:housing10":0,"zs:pop10":0}} \ No newline at end of file diff --git a/fixtures/microhoods/420561633.geojson b/fixtures/microhoods/420561633.geojson new file mode 100644 index 0000000..b999cee --- /dev/null +++ b/fixtures/microhoods/420561633.geojson @@ -0,0 +1 @@ +{"id":420561633,"type":"Feature","bbox":[-122.39753901958,37.792339744389,-122.39310801029,37.796684756991],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.39685505629,37.796307492857],[-122.396710217,37.795629260355],[-122.39668741822,37.795633499327],[-122.39663310349,37.795446984308],[-122.39647686481,37.794650051196],[-122.39640511572,37.79464475241],[-122.39637359977,37.794622497504],[-122.39632934332,37.794569509605],[-122.39600211382,37.793834033649],[-122.39589348435,37.793712160125],[-122.39619858563,37.793464703264],[-122.39627335221,37.793462848659],[-122.3965789564,37.793242547764],[-122.39657887258,37.793157831761],[-122.39753901958,37.792424527567],[-122.39742100239,37.792339744389],[-122.39657342434,37.793015887528],[-122.39647820592,37.793030194565],[-122.39631325006,37.79288341483],[-122.39548578858,37.793546305832],[-122.39524371922,37.793354221721],[-122.3950824514,37.793480732347],[-122.39436613396,37.79405691596],[-122.39399850368,37.793768327948],[-122.39317238331,37.794349079539],[-122.39310801029,37.794459294654],[-122.39469587803,37.796095545869],[-122.39526450634,37.796684756991],[-122.39553272724,37.796553350601],[-122.39640578628,37.796414525854],[-122.39685505629,37.796307492857]]]]},"properties":{"edtf:cessation":"2016-02-07","edtf:inception":"2016-01-30","geom:area":0.000008,"geom:area_square_m":74923.858815,"geom:bbox":"-122.39753902,37.7923397444,-122.39310801,37.796684757","geom:latitude":37.794893,"geom:longitude":-122.395268,"geom:src":"mapzen","iso:country":"US","lbl:latitude":37.794906,"lbl:longitude":-122.395229,"mps:latitude":37.794906,"mps:longitude":-122.395229,"mz:categories":[],"mz:hierarchy_label":1,"mz:hours":[],"mz:is_current":0,"name:eng_x_preferred":["Super Bowl City"],"src:geom":"mapzen","src:lbl:centroid":"mapshaper","wof:belongsto":[420561633,85865899,102191575,1108830801,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:category":["secure event area"],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"0c116fa7d36fb3b3d790f20b6f5f1dfa","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"macrohood_id":1108830801,"microhood_id":420561633,"neighbourhood_id":85865899,"region_id":85688637}],"wof:id":420561633,"wof:lang":["eng"],"wof:lastmodified":1501284302,"wof:name":"Super Bowl City","wof:parent_id":85865899,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":["football","sportsball","superbowl","superbowl50"]}} \ No newline at end of file diff --git a/fixtures/microhoods/420564211.geojson b/fixtures/microhoods/420564211.geojson new file mode 100644 index 0000000..a93a841 --- /dev/null +++ b/fixtures/microhoods/420564211.geojson @@ -0,0 +1 @@ +{"id":420564211,"type":"Feature","bbox":[-122.40421235561,37.782103580399,-122.40047335625,37.785024709434],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.4005484581,37.785024709434],[-122.40421235561,37.78213749838],[-122.40416944027,37.782103580399],[-122.40268349648,37.783286460783],[-122.40264594555,37.783261022695],[-122.40047335625,37.784961115692],[-122.4005484581,37.785024709434]]]]},"properties":{"edtf:cessation":"2016-02-07","edtf:inception":"2016-01-30","geom:area":0,"geom:area_square_m":3376.421626,"geom:bbox":"-122.404212356,37.7821035804,-122.400473356,37.7850247094","geom:latitude":37.783764,"geom:longitude":-122.402084,"iso:country":"US","lbl:latitude":37.78385,"lbl:longitude":-122.401967,"mz:hierarchy_label":1,"mz:is_current":0,"name:eng_x_preferred":["NFL Experience"],"src:geom":"mapzen","src:lbl:centroid":"mapshaper","wof:belongsto":[85887417,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"110238bd2653d781e3d9bf38f0ad39aa","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420564211,"neighbourhood_id":85887417,"region_id":85688637}],"wof:id":420564211,"wof:lastmodified":1509747474,"wof:name":"NFL Experience","wof:parent_id":85887417,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":["football","sportsball","superbowl","superbowl50"]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780691.geojson b/fixtures/microhoods/420780691.geojson new file mode 100644 index 0000000..d045ba3 --- /dev/null +++ b/fixtures/microhoods/420780691.geojson @@ -0,0 +1 @@ +{"id":420780691,"type":"Feature","bbox":[-122.41949290037154,37.74372601874967,-122.40778505802155,37.74848745334203],"geometry":{"type":"Polygon","coordinates":[[[-122.41822689771652,37.74815872271392],[-122.40778505802155,37.74848745334203],[-122.40801572799681,37.74823295233822],[-122.41057187318802,37.74713858804851],[-122.4106228351593,37.74698800564904],[-122.41033852100372,37.74374934946549],[-122.41111636161803,37.74372601874967],[-122.41190493106842,37.74392751105308],[-122.41324603557585,37.7438744868159],[-122.41330772638321,37.74424989759765],[-122.41443425416946,37.74422868799969],[-122.41495460271835,37.744515017059],[-122.41493046283722,37.74473559572711],[-122.41487145423889,37.74475044234462],[-122.41485536098479,37.74479074029144],[-122.41493582725523,37.74505161594257],[-122.41514772176741,37.74499010875808],[-122.41530597209929,37.74498162500448],[-122.41546690464018,37.74501343907546],[-122.41568684577942,37.74509827653119],[-122.418165,37.746082],[-122.4184200167656,37.74574091710011],[-122.41949290037154,37.74619479189546],[-122.41822689771652,37.74815872271392]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":309633.481755,"geom:bbox":"-122.4194929,37.7437260187,-122.407785058,37.7484874533","geom:latitude":37.746475,"geom:longitude":-122.413834,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845410,"wof:geomhash":"63c9dafba67ecff981ae95cf840e2c26","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780691,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780691,"wof:lastmodified":1566630756,"wof:name":"Precitaville","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780693.geojson b/fixtures/microhoods/420780693.geojson new file mode 100644 index 0000000..630d809 --- /dev/null +++ b/fixtures/microhoods/420780693.geojson @@ -0,0 +1 @@ +{"id":420780693,"type":"Feature","bbox":[-122.42283761501311,37.739297291502,-122.41567611694337,37.74620115460644],"geometry":{"type":"Polygon","coordinates":[[[-122.41949558258055,37.74620115460644],[-122.41841733455658,37.74574303801685],[-122.418165,37.746082],[-122.41568148136139,37.74509615559598],[-122.41567611694337,37.74494132716161],[-122.41570025682448,37.74479286123539],[-122.4164217710495,37.74368996217433],[-122.416727,37.743723],[-122.41757243871689,37.74240463984],[-122.417435,37.742315],[-122.417414,37.742179],[-122.41693407297134,37.74185953765459],[-122.41859972476959,37.739297291502],[-122.42283761501311,37.7410259689624],[-122.41949558258055,37.74620115460644]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":261153.09517,"geom:bbox":"-122.422837615,37.7392972915,-122.415676117,37.7462011546","geom:latitude":37.74282,"geom:longitude":-122.419164,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845410,"wof:geomhash":"3263f405c8800b16a9187dc16a572c41","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780693,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780693,"wof:lastmodified":1566630755,"wof:name":"Sutro Vista","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780695.geojson b/fixtures/microhoods/420780695.geojson new file mode 100644 index 0000000..2e01679 --- /dev/null +++ b/fixtures/microhoods/420780695.geojson @@ -0,0 +1 @@ +{"id":420780695,"type":"Feature","bbox":[-122.41777628660202,37.73964515131508,-122.40603625774382,37.74460197603551],"geometry":{"type":"Polygon","coordinates":[[[-122.41777628660202,37.74056569927519],[-122.41693139076233,37.74185741662659],[-122.416341,37.74201],[-122.41585046052933,37.74212466567811],[-122.41519063711168,37.74216708607374],[-122.41508066654205,37.74219041728097],[-122.41463541984558,37.74240676085235],[-122.41439670324326,37.74246190715176],[-122.41416603326797,37.74246190715176],[-122.41394877433777,37.74242797097238],[-122.41352766752242,37.74236434059408],[-122.41272300481795,37.74224980577529],[-122.41255939006804,37.74224768475846],[-122.411647439003,37.74238767173915],[-122.41052627563477,37.742444939064],[-122.41029292345047,37.74252553744619],[-122.40999251604079,37.74275460605318],[-122.40998178720473,37.74292640704323],[-122.40937560796736,37.74291368105763],[-122.40937829017638,37.74319577322483],[-122.40941584110259,37.74323819300662],[-122.40948289632797,37.74326364486399],[-122.40981549024582,37.74331454855253],[-122.41020977497101,37.74360724408223],[-122.41033583879471,37.74374934946549],[-122.41038680076598,37.74432837305714],[-122.40869432687758,37.74442381607145],[-122.40869164466856,37.74452562181772],[-122.40859508514404,37.74460197603551],[-122.40779042243958,37.7444089693884],[-122.40707159042358,37.74435382453964],[-122.40698307752609,37.74433261497152],[-122.40698844194412,37.74430292156588],[-122.40686237812042,37.74427534910712],[-122.40603625774382,37.74407597871514],[-122.406835,37.74296],[-122.407672,37.741806],[-122.408037,37.74072],[-122.40817397832869,37.73964515131508],[-122.41137653589249,37.7398360492983],[-122.4113416671753,37.74018178550367],[-122.41777628660202,37.74056569927519]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":268060.379757,"geom:bbox":"-122.417776287,37.7396451513,-122.406036258,37.744601976","geom:latitude":37.741782,"geom:longitude":-122.411127,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845410,"wof:geomhash":"116396c3472c43b691c00359457b5821","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780695,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780695,"wof:lastmodified":1566630755,"wof:name":"Hill People of Powhattan","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780697.geojson b/fixtures/microhoods/420780697.geojson new file mode 100644 index 0000000..23cf0fe --- /dev/null +++ b/fixtures/microhoods/420780697.geojson @@ -0,0 +1 @@ +{"id":420780697,"type":"Feature","bbox":[-122.41757780313492,37.74185529559851,-122.40937560796736,37.74509403466072],"geometry":{"type":"Polygon","coordinates":[[[-122.41567611694337,37.74494132716161],[-122.41568684577942,37.74509403466072],[-122.41545617580414,37.74501131813782],[-122.41529524326324,37.74498586688141],[-122.41515040397645,37.74499010875808],[-122.41493850946425,37.74504949500604],[-122.41485267877579,37.74478649840334],[-122.41486608982085,37.74475044234462],[-122.41493046283722,37.74473135383587],[-122.414946,37.744504],[-122.414431,37.744232],[-122.41330772638321,37.74424565567853],[-122.41324335336684,37.74387872875626],[-122.4119022488594,37.74393387395899],[-122.41111904382704,37.74373238167289],[-122.41034388542174,37.74375147043929],[-122.41019904613495,37.74360300212631],[-122.40981012582779,37.74331454855253],[-122.40948289632797,37.74325728190047],[-122.40941315889359,37.74324031399507],[-122.40937829017638,37.74319577322483],[-122.40937560796736,37.74290731806403],[-122.40999251604079,37.74291792305308],[-122.40999251604079,37.74275460605318],[-122.41028487682343,37.74252977946387],[-122.41052091121674,37.7424385760301],[-122.41163939237593,37.74238767173915],[-122.41255939006804,37.74224556374158],[-122.41272300481795,37.74224980577529],[-122.4135249853134,37.742368582621],[-122.41395145654678,37.74243009198404],[-122.41417676210402,37.74246827018367],[-122.41439402103424,37.74246402816245],[-122.41463541984558,37.74240888186461],[-122.415075,37.742196],[-122.4151960015297,37.74216496505453],[-122.41585850715637,37.74212466567811],[-122.41634666919707,37.74200800946477],[-122.41693139076233,37.74185529559851],[-122.41741955280304,37.7421798121877],[-122.4174302816391,37.74231343625206],[-122.41757780313492,37.74240463984],[-122.41672217845918,37.74372177680053],[-122.4164217710495,37.74369632510068],[-122.41570562124251,37.74478013557072],[-122.41567611694337,37.74494132716161]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000013,"geom:area_square_m":129209.098265,"geom:bbox":"-122.417577803,37.7418552956,-122.409375608,37.7450940347","geom:latitude":37.743206,"geom:longitude":-122.413912,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"e668cd8da3d64b6db28df0561c74b6ee","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780697,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780697,"wof:lastmodified":1566630756,"wof:name":"Sutrito Canine Republic","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780701.geojson b/fixtures/microhoods/420780701.geojson new file mode 100644 index 0000000..ba7e8d2 --- /dev/null +++ b/fixtures/microhoods/420780701.geojson @@ -0,0 +1 @@ +{"id":420780701,"type":"Feature","bbox":[-122.41061747074127,37.74407385775066,-122.404453,37.74888404899492],"geometry":{"type":"Polygon","coordinates":[[[-122.40802109241487,37.74823507318356],[-122.410569190979,37.74713434629496],[-122.41061747074127,37.74698376388687],[-122.41038680076598,37.74432413114256],[-122.40868896245956,37.74442169511691],[-122.40868896245956,37.74453198467222],[-122.40858972072601,37.74459349223741],[-122.40779042243958,37.74440260652335],[-122.40707695484161,37.74435594549615],[-122.40698307752609,37.74433261497152],[-122.40699380636215,37.74429867964982],[-122.40686237812042,37.74427959102453],[-122.40603625774382,37.74407385775066],[-122.40586191415787,37.74430716348171],[-122.40553736686707,37.74502404376274],[-122.404582,37.747304],[-122.404453,37.74805],[-122.404582,37.748322],[-122.405033,37.748678],[-122.40549981594086,37.74881830333848],[-122.40621328353882,37.74888404899492],[-122.40778505802155,37.74848957418004],[-122.40802109241487,37.74823507318356]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":209600.292727,"geom:bbox":"-122.410617471,37.7440738578,-122.404453,37.748884049","geom:latitude":37.746446,"geom:longitude":-122.407507,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"094fad2dd724e5ed63ed82bc22a361b9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780701,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780701,"wof:lastmodified":1566630754,"wof:name":"Santana Rancho","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780703.geojson b/fixtures/microhoods/420780703.geojson new file mode 100644 index 0000000..3bc3f7c --- /dev/null +++ b/fixtures/microhoods/420780703.geojson @@ -0,0 +1 @@ +{"id":420780703,"type":"Feature","bbox":[-122.41910398006439,37.73696192201913,-122.41134703159332,37.74056782034024],"geometry":{"type":"Polygon","coordinates":[[[-122.41910398006439,37.73852944881128],[-122.41776823997496,37.74056782034024],[-122.41134703159332,37.74018178550367],[-122.41137385368347,37.73983817038426],[-122.41136044263838,37.73974696363408],[-122.41162061691284,37.73696192201913],[-122.41660952568054,37.73725888498814],[-122.41652101278306,37.73830248825895],[-122.41910398006439,37.73852944881128]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":200849.05685,"geom:bbox":"-122.41910398,37.736961922,-122.411347032,37.7405678203","geom:latitude":37.738858,"geom:longitude":-122.414713,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"4abccb4f6510b7f28e82f0d7f9054e59","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780703,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780703,"wof:lastmodified":1566630756,"wof:name":"Cortlandia","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780705.geojson b/fixtures/microhoods/420780705.geojson new file mode 100644 index 0000000..24c18f2 --- /dev/null +++ b/fixtures/microhoods/420780705.geojson @@ -0,0 +1 @@ +{"id":420780705,"type":"Feature","bbox":[-122.41180568933486,37.7346964795946,-122.407436,37.73983817038426],"geometry":{"type":"Polygon","coordinates":[[[-122.41137117147446,37.73983817038426],[-122.40817934274672,37.73964515131508],[-122.408294,37.738344],[-122.407865,37.736936],[-122.407436,37.73602],[-122.408294,37.735952],[-122.408831,37.735867],[-122.409431,37.735646],[-122.41076499223709,37.73477284395134],[-122.4111485481262,37.73511648258192],[-122.41180568933486,37.7346964795946],[-122.41137117147446,37.73974272145691],[-122.41137117147446,37.73983817038426]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":150813.346364,"geom:bbox":"-122.411805689,37.7346964796,-122.407436,37.7398381704","geom:latitude":37.737439,"geom:longitude":-122.409905,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"c95922bb3091d4a05579a6419faa9d0b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780705,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780705,"wof:lastmodified":1566630756,"wof:name":"Alemanistan","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780707.geojson b/fixtures/microhoods/420780707.geojson new file mode 100644 index 0000000..584d314 --- /dev/null +++ b/fixtures/microhoods/420780707.geojson @@ -0,0 +1 @@ +{"id":420780707,"type":"Feature","bbox":[-122.4202251434326,37.73464556997969,-122.41162329912186,37.73852520656434],"geometry":{"type":"Polygon","coordinates":[[[-122.41910934448242,37.73852520656434],[-122.41652101278306,37.73830460938883],[-122.41660684347153,37.73725252150842],[-122.41162329912186,37.73695980085077],[-122.41180300712584,37.73470284329401],[-122.41196393966673,37.73464556997969],[-122.4202251434326,37.73506557325582],[-122.42014467716216,37.73614738890403],[-122.41970479488374,37.73623223652165],[-122.41939902305603,37.73639556791179],[-122.41918712854385,37.73656102012147],[-122.41892963647841,37.73689192343152],[-122.41880089044571,37.73723343106604],[-122.4187982082367,37.73756433137068],[-122.41894036531448,37.7379037147621],[-122.41909593343733,37.73806280019127],[-122.4193212389946,37.73818582602208],[-122.41910934448242,37.73852520656434]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":208786.531526,"geom:bbox":"-122.420225143,37.73464557,-122.411623299,37.7385252066","geom:latitude":37.736215,"geom:longitude":-122.41597,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"0ba60592120cdded3b1697633822ca81","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780707,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780707,"wof:lastmodified":1566630755,"wof:name":"Baja Cortlandia","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780709.geojson b/fixtures/microhoods/420780709.geojson new file mode 100644 index 0000000..e7a8cd5 --- /dev/null +++ b/fixtures/microhoods/420780709.geojson @@ -0,0 +1 @@ +{"id":420780709,"type":"Feature","bbox":[-122.42471784353256,37.73506769447845,-122.41859704256058,37.74102809001421],"geometry":{"type":"Polygon","coordinates":[[[-122.42269814014435,37.73520981625555],[-122.42283225059508,37.73523739209114],[-122.42471784353256,37.73538587718321],[-122.4240580201149,37.73728646006055],[-122.42391854524611,37.73931638141218],[-122.42367446422577,37.73976605342829],[-122.42284029722212,37.74102809001421],[-122.41859704256058,37.739297291502],[-122.41932392120361,37.73819218942154],[-122.41909861564638,37.73806067905446],[-122.41893500089644,37.73790159362073],[-122.4187982082367,37.73756433137068],[-122.41880625486372,37.73723767338699],[-122.4189269542694,37.73690252928237],[-122.41918712854385,37.73655889894162],[-122.41939634084702,37.73639132554259],[-122.41970747709274,37.73623011533238],[-122.4201473593712,37.73615163128719],[-122.42023050785065,37.73506769447845],[-122.42269814014435,37.73520981625555]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000025,"geom:area_square_m":241853.171575,"geom:bbox":"-122.424717844,37.7350676945,-122.418597043,37.74102809","geom:latitude":37.737784,"geom:longitude":-122.421716,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":1,"mz:min_zoom":16,"name:ceb_x_preferred":["Holly Park"],"name:deu_x_preferred":["Holly Park"],"src:geom":"burritojustice","wd:wordcount":123,"wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"cb69e897a10a9040c46abba3fddd9ea5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780709,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780709,"wof:lastmodified":1566630754,"wof:name":"Holly Park","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780711.geojson b/fixtures/microhoods/420780711.geojson new file mode 100644 index 0000000..485d657 --- /dev/null +++ b/fixtures/microhoods/420780711.geojson @@ -0,0 +1 @@ +{"id":420780711,"type":"Feature","bbox":[-122.43230044842,37.732083,-122.42367446423,37.73985938124],"geometry":{"type":"Polygon","coordinates":[[[-122.4242028594,37.73985938124],[-122.42392122746,37.739808475176],[-122.42367446423,37.739761811252],[-122.42391854525,37.739310018109],[-122.4240526557,37.73728858122],[-122.42471247911,37.735387998397],[-122.427971,37.732083],[-122.429258,37.732371],[-122.430353,37.732473],[-122.431211,37.732473],[-122.43189543486,37.732405512268],[-122.43188738823,37.732579458571],[-122.43198126554,37.732997352285],[-122.43230044842,37.733118265255],[-122.42909789085,37.734683752194],[-122.4278908968,37.735402846889],[-122.42663294077,37.73630435692],[-122.42518186569,37.737585542878],[-122.42467492819,37.738296124869],[-122.42436915636,37.739040637787],[-122.4242028594,37.73985938124]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":187084.873612,"geom:bbox":"-122.432300448,37.732083,-122.423674464,37.7398593812","geom:latitude":37.734751,"geom:longitude":-122.427429,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[420552245,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:country":"US","wof:created":1458845411,"wof:geomhash":"90bb73b53450ca8aeaac740fadde49ff","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780711,"neighbourhood_id":420552245,"region_id":85688637}],"wof:id":420780711,"wof:lastmodified":1566630757,"wof:name":"Lost Tribe of College Hill","wof:parent_id":420552245,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780713.geojson b/fixtures/microhoods/420780713.geojson new file mode 100644 index 0000000..1a4f474 --- /dev/null +++ b/fixtures/microhoods/420780713.geojson @@ -0,0 +1 @@ +{"id":420780713,"type":"Feature","bbox":[-122.42797404527664,37.731777,-122.41951704025269,37.73539224082335],"geometry":{"type":"Polygon","coordinates":[[[-122.42471784353256,37.73539224082335],[-122.42283225059508,37.7352352708734],[-122.42270082235336,37.73521193747403],[-122.4201688170433,37.73506345203315],[-122.42024660110474,37.73410041065895],[-122.41951704025269,37.73398162054671],[-122.4196243286133,37.73224853598639],[-122.420847,37.732286],[-122.422006,37.732083],[-122.422714,37.731947],[-122.424323,37.731811],[-122.425568,37.731777],[-122.426233,37.731794],[-122.42797404527664,37.73208307413966],[-122.42471784353256,37.73539224082335]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":211162.735355,"geom:bbox":"-122.427974045,37.731777,-122.41951704,37.7353922408","geom:latitude":37.733433,"geom:longitude":-122.423346,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"name:bar_x_preferred":["Saint Marys"],"name:bre_x_preferred":["St. Mary's"],"name:ceb_x_preferred":["St. Mary's"],"name:ita_x_preferred":["St. Mary's"],"name:nor_x_preferred":["St. Marys"],"name:pol_x_preferred":["St Mary’s"],"name:por_x_preferred":["St. Marys"],"name:rus_x_preferred":["Сент-Мэрис"],"name:spa_x_preferred":["St. Mary's"],"name:srp_x_preferred":["Сент Мериз"],"name:swe_x_preferred":["St. Mary's"],"name:ukr_x_preferred":["Сент-Меріс"],"name:vol_x_preferred":["St. Mary's"],"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"803293948ab17a369b8e83d3626c70f6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780713,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780713,"wof:lastmodified":1566630755,"wof:name":"St. Mary's","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780715.geojson b/fixtures/microhoods/420780715.geojson new file mode 100644 index 0000000..091af3f --- /dev/null +++ b/fixtures/microhoods/420780715.geojson @@ -0,0 +1 @@ +{"id":420780715,"type":"Feature","bbox":[-122.420246,37.73222308034173,-122.41075962781908,37.73511011891809],"geometry":{"type":"Polygon","coordinates":[[[-122.42016613483429,37.73506769447845],[-122.41196393966673,37.73464556997969],[-122.41180300712584,37.73469860082779],[-122.41114318370819,37.73511011891809],[-122.41075962781908,37.73476435902669],[-122.41389513015746,37.73324554185194],[-122.4148741364479,37.73278310250274],[-122.4159550666809,37.73244369563805],[-122.41750001907349,37.73222308034173],[-122.41868,37.732235],[-122.4196243286133,37.73224853598639],[-122.419517,37.733983],[-122.420246,37.734102],[-122.42016613483429,37.73506769447845]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":164139.740989,"geom:bbox":"-122.420246,37.7322230803,-122.410759628,37.7351101189","geom:latitude":37.733782,"geom:longitude":-122.416479,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":1,"mz:min_zoom":16,"src:geom":"burritojustice","wd:wordcount":125,"wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"67a58382e4de974f358009560a5f6d54","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780715,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780715,"wof:lastmodified":1566630755,"wof:name":"The Crescent","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780719.geojson b/fixtures/microhoods/420780719.geojson new file mode 100644 index 0000000..5a92ad3 --- /dev/null +++ b/fixtures/microhoods/420780719.geojson @@ -0,0 +1 @@ +{"id":420780719,"type":"Feature","bbox":[-122.420697,37.742824,-122.417027,37.744691],"geometry":{"type":"Polygon","coordinates":[[[-122.420375,37.744691],[-122.417027,37.743333],[-122.417349,37.742824],[-122.420697,37.744182],[-122.420375,37.744691]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":20938.380846,"geom:bbox":"-122.420697,37.742824,-122.417027,37.744691","geom:latitude":37.743757,"geom:longitude":-122.418862,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"163f3f369e2ce9fb5c85c51467c4103f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780719,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780719,"wof:lastmodified":1566630757,"wof:name":"Esmereldia","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780721.geojson b/fixtures/microhoods/420780721.geojson new file mode 100644 index 0000000..a40e330 --- /dev/null +++ b/fixtures/microhoods/420780721.geojson @@ -0,0 +1 @@ +{"id":420780721,"type":"Feature","bbox":[-122.422177,37.74023481238621,-122.41766095161438,37.742434],"geometry":{"type":"Polygon","coordinates":[[[-122.421877,37.742434],[-122.41766095161438,37.74075235276521],[-122.41798549890518,37.74023481238621],[-122.422177,37.741959],[-122.421877,37.742434]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":25599.120466,"geom:bbox":"-122.422177,37.7402348124,-122.417660952,37.742434","geom:latitude":37.741333,"geom:longitude":-122.419896,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"1fcec3922833454bcffddcd590db70bb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780721,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780721,"wof:lastmodified":1566630757,"wof:name":"Eugeniaia","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780723.geojson b/fixtures/microhoods/420780723.geojson new file mode 100644 index 0000000..b5b8a3b --- /dev/null +++ b/fixtures/microhoods/420780723.geojson @@ -0,0 +1 @@ +{"id":420780723,"type":"Feature","bbox":[-122.41741687059402,37.74763487153412,-122.41716474294664,37.74819053541917],"geometry":{"type":"Polygon","coordinates":[[[-122.41741687059402,37.74818629372592],[-122.4171781539917,37.74819053541917],[-122.41716474294664,37.74763911325896],[-122.41740077733992,37.74763487153412],[-122.41741687059402,37.74818629372592]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0,"geom:area_square_m":1280.403856,"geom:bbox":"-122.417416871,37.7476348715,-122.417164743,37.7481905354","geom:latitude":37.747913,"geom:longitude":-122.41729,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"cfa2acef04f5ce2e1c7abc10621abfa7","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780723,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780723,"wof:lastmodified":1566630755,"wof:name":"Principality of Chicken John","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780725.geojson b/fixtures/microhoods/420780725.geojson new file mode 100644 index 0000000..4622792 --- /dev/null +++ b/fixtures/microhoods/420780725.geojson @@ -0,0 +1 @@ +{"id":420780725,"type":"Feature","bbox":[-122.41913348436354,37.74671,-122.40503042936324,37.750442],"geometry":{"type":"Polygon","coordinates":[[[-122.41745978593826,37.74849805753151],[-122.41719692945479,37.74866136185791],[-122.417006,37.748814],[-122.416212,37.749289],[-122.41471,37.748881],[-122.413766,37.748831],[-122.412629,37.748797],[-122.411599,37.748966],[-122.41044,37.748627],[-122.406084,37.750442],[-122.40503042936324,37.74867620768788],[-122.40549713373184,37.74881618250986],[-122.406213,37.748881],[-122.40778505802155,37.74848533250395],[-122.40801841020583,37.74823083149286],[-122.41057455539703,37.74713646717174],[-122.4106228351593,37.74697528036182],[-122.41071939468385,37.74695407154488],[-122.41353571414946,37.74677167546847],[-122.41358399391174,37.74717040119229],[-122.41372346878052,37.7472149395706],[-122.41389513015746,37.7472170604451],[-122.416212,37.747524],[-122.418293,37.74671],[-122.41913348436354,37.74678227990384],[-122.41818398237228,37.748239314874],[-122.41745978593826,37.74849805753151]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":206710.130168,"geom:bbox":"-122.419133484,37.74671,-122.405030429,37.750442","geom:latitude":37.748249,"geom:longitude":-122.412271,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"e73d307a0101659c7a06e69ec54ea3cc","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780725,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780725,"wof:lastmodified":1566630755,"wof:name":"Serpentinia","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780727.geojson b/fixtures/microhoods/420780727.geojson new file mode 100644 index 0000000..c6ed62d --- /dev/null +++ b/fixtures/microhoods/420780727.geojson @@ -0,0 +1 @@ +{"id":420780727,"type":"Feature","bbox":[-122.42136240005493,37.74363905874399,-122.42011249065399,37.74462318552649],"geometry":{"type":"Polygon","coordinates":[[[-122.42112636566162,37.74452137991442],[-122.42102444171904,37.74457652463832],[-122.4208527803421,37.74461894362878],[-122.42071866989136,37.74462318552649],[-122.4206006526947,37.74461894362878],[-122.42044508457184,37.74456379893645],[-122.42030024528502,37.74447896086805],[-122.4202036857605,37.74438988079159],[-122.42014467716216,37.74427959102453],[-122.42011785507202,37.74419475263036],[-122.42011249065399,37.744092946429],[-122.42013931274413,37.74399114008758],[-122.42019832134247,37.74390205942399],[-122.42027878761292,37.74380449476462],[-122.42036998271942,37.74373238167289],[-122.42046654224394,37.7436942041253],[-122.42067843675613,37.74363905874399],[-122.42087423801422,37.74365178460486],[-122.42104053497314,37.74370692997667],[-122.42120683193207,37.74380449476462],[-122.42128729820251,37.74388509166637],[-122.42134630680083,37.74399962395471],[-122.42136240005493,37.74414384954719],[-122.4213409423828,37.7442668652716],[-122.42127656936647,37.74438139696917],[-122.42119610309602,37.74445350942857],[-122.42112636566162,37.74452137991442]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":9344.937959,"geom:bbox":"-122.4213624,37.7436390587,-122.420112491,37.7446231855","geom:latitude":37.744134,"geom:longitude":-122.42074,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"32ecec63e7bc931a051136e3f9fae3fb","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780727,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780727,"wof:lastmodified":1566630757,"wof:name":"NanoTokyo","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/420780729.geojson b/fixtures/microhoods/420780729.geojson new file mode 100644 index 0000000..752119a --- /dev/null +++ b/fixtures/microhoods/420780729.geojson @@ -0,0 +1 @@ +{"id":420780729,"type":"Feature","bbox":[-122.4240553379059,37.73967696767981,-122.41776287555693,37.74816508525605],"geometry":{"type":"Polygon","coordinates":[[[-122.4240553379059,37.73982120169508],[-122.42314875125885,37.73967696767981],[-122.41776287555693,37.74816508525605],[-122.41899132728577,37.74808873471423],[-122.4240553379059,37.73982120169508]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":89182.299933,"geom:bbox":"-122.424055338,37.7396769677,-122.417762876,37.7481650853","geom:latitude":37.744056,"geom:longitude":-122.420913,"iso:country":"US","lbl:max_zoom":18,"mz:hierarchy_label":1,"mz:is_current":-1,"mz:min_zoom":16,"src:geom":"burritojustice","wof:belongsto":[85865945,102191575,85633793,85922583,102087579,85688637],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:created":1458845411,"wof:geomhash":"f111ae51c40794837304474a75d9803c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102087579,"locality_id":85922583,"microhood_id":420780729,"neighbourhood_id":85865945,"region_id":85688637}],"wof:id":420780729,"wof:lastmodified":1566630757,"wof:name":"Liminal Zone of Deliciousness","wof:parent_id":85865945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/772967579.geojson b/fixtures/microhoods/772967579.geojson new file mode 100644 index 0000000..db6653d --- /dev/null +++ b/fixtures/microhoods/772967579.geojson @@ -0,0 +1 @@ +{"id":772967579,"type":"Feature","bbox":[-122.330603,47.612764,-122.312479,47.639717],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.322881,47.639717],[-122.322315,47.639533],[-122.321331,47.639541],[-122.321315,47.638465],[-122.321359,47.637277],[-122.321358,47.636135],[-122.321303,47.635998],[-122.321216,47.635904],[-122.319567,47.635913],[-122.317245,47.635924],[-122.313594,47.635943],[-122.313591,47.63567],[-122.31352,47.635359],[-122.31351,47.63533],[-122.3135,47.635301],[-122.313489,47.635272],[-122.313478,47.635243],[-122.313468,47.63522],[-122.313456,47.635191],[-122.313444,47.635163],[-122.313431,47.635134],[-122.313417,47.635106],[-122.313403,47.635077],[-122.313389,47.635049],[-122.313376,47.635026],[-122.313361,47.634998],[-122.313345,47.63497],[-122.313329,47.634943],[-122.313312,47.634915],[-122.313295,47.634887],[-122.313278,47.63486],[-122.31326,47.634833],[-122.313241,47.634805],[-122.313222,47.634778],[-122.313203,47.634751],[-122.313183,47.634725],[-122.313163,47.634698],[-122.313146,47.634677],[-122.313125,47.634651],[-122.31285,47.634376],[-122.312822,47.634354],[-122.312795,47.634331],[-122.312773,47.634312],[-122.312747,47.634288],[-122.312722,47.634263],[-122.312698,47.634238],[-122.312676,47.634212],[-122.312654,47.634186],[-122.312634,47.634159],[-122.312615,47.634132],[-122.312597,47.634105],[-122.31258,47.634077],[-122.312567,47.634055],[-122.312553,47.634027],[-122.31254,47.633998],[-122.312528,47.633969],[-122.312517,47.63394],[-122.312508,47.633911],[-122.3125,47.633882],[-122.312493,47.633852],[-122.312488,47.633822],[-122.312483,47.633793],[-122.312481,47.633763],[-122.312479,47.633733],[-122.312479,47.633703],[-122.31248,47.633673],[-122.312483,47.633643],[-122.312484,47.632981],[-122.312497,47.632333],[-122.31252,47.630636],[-122.312546,47.628692],[-122.312557,47.627643],[-122.312566,47.626892],[-122.312584,47.626071],[-122.312607,47.624381],[-122.312598,47.623713],[-122.312656,47.621443],[-122.312703,47.620567],[-122.312728,47.61967],[-122.312746,47.618519],[-122.312751,47.617629],[-122.312761,47.616539],[-122.312761,47.615355],[-122.328027,47.615298],[-122.329822,47.614561],[-122.329724,47.61478],[-122.329255,47.616067],[-122.329216,47.616175],[-122.328842,47.617595],[-122.328837,47.617622],[-122.328831,47.617648],[-122.328827,47.617674],[-122.328822,47.617701],[-122.328817,47.617727],[-122.328812,47.617753],[-122.328807,47.61778],[-122.328802,47.617806],[-122.328798,47.617832],[-122.328793,47.617859],[-122.328789,47.617885],[-122.328785,47.617912],[-122.32878,47.617938],[-122.328776,47.617964],[-122.328772,47.617991],[-122.328767,47.618017],[-122.328763,47.618044],[-122.328759,47.61807],[-122.328755,47.618096],[-122.328751,47.618123],[-122.328747,47.618149],[-122.328744,47.618176],[-122.32874,47.618202],[-122.328736,47.618228],[-122.328732,47.618255],[-122.328729,47.618281],[-122.328725,47.618308],[-122.328722,47.618334],[-122.328719,47.618361],[-122.328715,47.618387],[-122.328712,47.618414],[-122.328709,47.61844],[-122.328705,47.618465],[-122.3287,47.618513],[-122.328697,47.618539],[-122.328694,47.618566],[-122.328691,47.618592],[-122.328688,47.618619],[-122.328686,47.618645],[-122.328683,47.618672],[-122.328681,47.618698],[-122.328678,47.618725],[-122.328676,47.618751],[-122.328673,47.618778],[-122.32867,47.618804],[-122.328668,47.618831],[-122.328666,47.618857],[-122.328664,47.618884],[-122.328661,47.61891],[-122.32866,47.618937],[-122.328657,47.618963],[-122.328656,47.61899],[-122.328654,47.619016],[-122.328651,47.619043],[-122.32865,47.619069],[-122.328648,47.619096],[-122.328647,47.619122],[-122.328645,47.619149],[-122.328644,47.619176],[-122.328637,47.620731],[-122.328667,47.622282],[-122.328668,47.623853],[-122.328678,47.625458],[-122.328669,47.626945],[-122.328665,47.626973],[-122.328662,47.627],[-122.328658,47.627026],[-122.328654,47.627052],[-122.32865,47.627079],[-122.328645,47.627105],[-122.328641,47.627132],[-122.328636,47.627158],[-122.328631,47.627184],[-122.328626,47.627211],[-122.328621,47.627237],[-122.328615,47.627263],[-122.328609,47.627289],[-122.328603,47.627316],[-122.328598,47.627342],[-122.328591,47.627368],[-122.328585,47.627394],[-122.328578,47.62742],[-122.328571,47.627447],[-122.328564,47.627473],[-122.328557,47.627499],[-122.32855,47.627525],[-122.328542,47.627551],[-122.328534,47.627577],[-122.328526,47.627603],[-122.328518,47.627629],[-122.32851,47.627655],[-122.328501,47.627681],[-122.328492,47.627707],[-122.328484,47.627733],[-122.328475,47.627758],[-122.328465,47.627784],[-122.328453,47.62782],[-122.328443,47.627845],[-122.328433,47.627871],[-122.328423,47.627897],[-122.328412,47.627922],[-122.328402,47.627948],[-122.328392,47.627974],[-122.328381,47.627999],[-122.32837,47.628025],[-122.328358,47.62805],[-122.328347,47.628075],[-122.328335,47.628101],[-122.328324,47.628126],[-122.328312,47.628151],[-122.3283,47.628177],[-122.328288,47.628202],[-122.328275,47.628227],[-122.328263,47.628252],[-122.32825,47.628277],[-122.328237,47.628301],[-122.328223,47.628326],[-122.328209,47.628351],[-122.328195,47.628376],[-122.328181,47.628401],[-122.328166,47.628425],[-122.328152,47.62845],[-122.328136,47.628474],[-122.328121,47.628499],[-122.328106,47.628523],[-122.32809,47.628547],[-122.328074,47.628572],[-122.328058,47.628596],[-122.328041,47.62862],[-122.328024,47.628644],[-122.328007,47.628668],[-122.32799,47.628692],[-122.327973,47.628716],[-122.327955,47.628739],[-122.327937,47.628763],[-122.327919,47.628787],[-122.3279,47.62881],[-122.327882,47.628833],[-122.327863,47.628857],[-122.327844,47.62888],[-122.327825,47.628903],[-122.327805,47.628926],[-122.327786,47.628949],[-122.327766,47.628972],[-122.327746,47.628995],[-122.327725,47.629017],[-122.327705,47.62904],[-122.327684,47.629063],[-122.327662,47.629085],[-122.327641,47.629107],[-122.32762,47.62913],[-122.327598,47.629152],[-122.327576,47.629174],[-122.327554,47.629196],[-122.327532,47.629218],[-122.327509,47.629239],[-122.327486,47.629261],[-122.327464,47.629282],[-122.327435,47.629309],[-122.327411,47.629331],[-122.327388,47.629352],[-122.327364,47.629373],[-122.32734,47.629394],[-122.327315,47.629415],[-122.327291,47.629436],[-122.327266,47.629456],[-122.327242,47.629477],[-122.326022,47.630564],[-122.325085,47.631397],[-122.325063,47.631419],[-122.325042,47.631442],[-122.325021,47.631464],[-122.325,47.631487],[-122.32498,47.631509],[-122.32496,47.631532],[-122.324939,47.631555],[-122.324919,47.631578],[-122.324899,47.631601],[-122.324879,47.631623],[-122.324859,47.631646],[-122.32484,47.63167],[-122.324821,47.631693],[-122.324802,47.631716],[-122.324783,47.631739],[-122.324763,47.631762],[-122.324745,47.631786],[-122.324726,47.631809],[-122.324708,47.631832],[-122.32469,47.631856],[-122.324671,47.631879],[-122.324653,47.631903],[-122.324635,47.631927],[-122.324618,47.63195],[-122.3246,47.631974],[-122.324583,47.631998],[-122.324566,47.632022],[-122.324548,47.632046],[-122.324531,47.63207],[-122.324515,47.632094],[-122.324498,47.632118],[-122.324482,47.632142],[-122.324465,47.632166],[-122.324449,47.63219],[-122.324433,47.632214],[-122.324418,47.632239],[-122.324402,47.632263],[-122.324387,47.632288],[-122.324371,47.632312],[-122.324356,47.632336],[-122.324341,47.632361],[-122.324326,47.632386],[-122.324311,47.63241],[-122.324297,47.632435],[-122.324282,47.63246],[-122.324268,47.632484],[-122.324254,47.632509],[-122.32424,47.632534],[-122.324226,47.632559],[-122.324213,47.632584],[-122.323796,47.633606],[-122.323696,47.633836],[-122.323603,47.634065],[-122.323516,47.634296],[-122.323435,47.634528],[-122.32336,47.634761],[-122.323327,47.63487],[-122.323291,47.634994],[-122.323224,47.635241],[-122.323217,47.635268],[-122.323204,47.635317],[-122.323197,47.635343],[-122.323191,47.635369],[-122.323184,47.635395],[-122.323178,47.635421],[-122.323171,47.635447],[-122.323165,47.635474],[-122.323159,47.6355],[-122.323152,47.635526],[-122.323146,47.635552],[-122.32314,47.635579],[-122.323134,47.635605],[-122.323128,47.635631],[-122.323123,47.635657],[-122.323117,47.635684],[-122.323111,47.63571],[-122.323106,47.635736],[-122.3231,47.635762],[-122.323095,47.635789],[-122.32309,47.635815],[-122.323085,47.635841],[-122.323079,47.635868],[-122.323075,47.635894],[-122.323069,47.63592],[-122.323064,47.635947],[-122.32306,47.635973],[-122.323055,47.635999],[-122.32305,47.636026],[-122.323046,47.636052],[-122.323041,47.636079],[-122.323037,47.636105],[-122.323033,47.636131],[-122.323028,47.636158],[-122.323024,47.636184],[-122.32302,47.636211],[-122.323016,47.636237],[-122.323012,47.636263],[-122.323008,47.63629],[-122.323005,47.636316],[-122.323001,47.636343],[-122.322997,47.636369],[-122.322994,47.636396],[-122.322991,47.636422],[-122.322988,47.636448],[-122.322984,47.636475],[-122.322981,47.636501],[-122.322978,47.636528],[-122.322975,47.636554],[-122.322972,47.636581],[-122.322969,47.636607],[-122.322966,47.636634],[-122.322964,47.63666],[-122.322961,47.636687],[-122.322959,47.636713],[-122.322956,47.63674],[-122.322954,47.636766],[-122.322951,47.636793],[-122.322949,47.636819],[-122.322947,47.636846],[-122.322945,47.636872],[-122.32291,47.638448],[-122.322881,47.639717]]],[[[-122.313369,47.614251],[-122.314419,47.613811],[-122.315113,47.613523],[-122.316141,47.613103],[-122.316659,47.612919],[-122.316752,47.612896],[-122.319063,47.612934],[-122.319442,47.612941],[-122.31945,47.614089],[-122.313697,47.614114],[-122.313369,47.614251]]],[[[-122.328757,47.613531],[-122.330603,47.612764],[-122.330343,47.613395],[-122.329881,47.614429],[-122.329465,47.613981],[-122.328967,47.613444],[-122.328757,47.613531]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000315,"geom:area_square_m":2627797.129573,"geom:bbox":"-122.330603,47.612764,-122.312479,47.639717","geom:latitude":47.624896,"geom:longitude":-122.320206,"gn:elevation":14,"iso:country":"US","lbl:latitude":47.625223,"lbl:longitude":-122.320352,"lbl:max_zoom":18,"mps:latitude":47.622861,"mps:longitude":-122.320748,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":14,"mz:tier_locality":6,"mz:tier_metro":1,"name:bre_x_preferred":["Broadway"],"name:cat_x_preferred":["Broadway"],"name:ceb_x_preferred":["Broadway"],"name:ces_x_preferred":["Broadway"],"name:cym_x_preferred":["Broadway"],"name:dan_x_preferred":["Broadway"],"name:deu_x_preferred":["Broadway"],"name:eng_x_preferred":["Broadway"],"name:est_x_preferred":["Broadway"],"name:fas_x_preferred":["برادوی"],"name:fin_x_preferred":["Broadway"],"name:fra_x_preferred":["Broadway"],"name:heb_x_preferred":["ברודוויי"],"name:hye_x_preferred":["Բրոդվեյ"],"name:ita_x_preferred":["Broadway"],"name:jpn_x_preferred":["ブロードウェイ"],"name:kat_x_preferred":["ბროდვეი"],"name:kor_x_preferred":["브로드웨이"],"name:krc_x_preferred":["Бродвей"],"name:mkd_x_preferred":["Бродвеј"],"name:new_x_preferred":["ब्रोदवे"],"name:nld_x_preferred":["Broadway"],"name:nor_x_preferred":["Broadway"],"name:pnb_x_preferred":["براڈوے"],"name:pol_x_preferred":["Broadway"],"name:por_x_preferred":["Broadway"],"name:rus_x_preferred":["Бродвей"],"name:spa_x_preferred":["Broadway"],"name:srp_x_preferred":["Бродвеј"],"name:swe_x_preferred":["Broadway"],"name:tam_x_preferred":["பிராட்வே"],"name:tha_x_preferred":["บรอดเวย์"],"name:tur_x_preferred":["Broadway"],"name:ukr_x_preferred":["Бродвей"],"name:vol_x_preferred":["Broadway"],"name:zho_x_preferred":["百老汇"],"name:zho_x_variant":["百老匯"],"qs:gn_adm0_cc":"US","qs:gn_fcode":"PPL","qs:gn_local":5809844,"qs:gn_namadm1":"WA","qs:gn_name":"Broadway","qs:local_max":71223,"qs:local_sum":929008,"qs:localhoods":138,"qs:name":"Broadway","qs:name_adm0":"United States","qs:name_adm1":"Washington","qs:name_adm2":"King","qs:name_local":"Seattle","qs:photo_max":2664,"qs:photo_sum":21647,"qs:placetype":"Suburb","qs:quad_count":210,"qs:woe_adm0":23424977,"qs:woe_adm1":2347606,"qs:woe_adm2":12590456,"qs:woe_funk":"Parented by a neighborhood","qs:woe_lau":0,"qs:woe_local":2490383,"qs:woe_ver":"7.10.0","reversegeo:latitude":47.625223,"reversegeo:longitude":-122.320352,"src:geom":"mz","src:geom_alt":["quattroshapes","zetashapes"],"src:lbl_centroid":"mz","src:population":"zetashapes","wd:wordcount":855,"wof:belongsto":[102191575,85633793,102086191,101730401,85882415,85688623],"wof:breaches":[],"wof:concordances":{"gn:id":5788165,"gp:id":2369586,"qs_pg:id":915901},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geom_alt":["quattroshapes","zetashapes"],"wof:geomhash":"2a13a5edec511415eefffe4d84c1801f","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":772967579,"neighbourhood_id":85882415,"region_id":85688623}],"wof:id":772967579,"wof:lang":["eng"],"wof:lastmodified":1587587486,"wof:name":"Broadway","wof:parent_id":85882415,"wof:placetype":"microhood","wof:population":19562,"wof:population_rank":6,"wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85807733],"wof:tags":[],"zs:blockids":[530330074013004,530330075004007,530330075003000,530330075001003,530330075001005,530330075001010,530330075001009,530330075002001,530330065002000,530330065002005,530330065003005,530330073001009,530330073001006,530330074013005,530330074011004,530330074013009,530330065002009,530330074023005,530330074022002,530330074022003,530330074012003,530330065003009,530330074012004,530330074021001,530330075003003,530330065003013,530330074021008,530330075004002,530330065003014,530330066001023,530330076003011,530330073002002,530330073002009,530330073002011,530330065002008,530330065001034,530330066001016,530330074011005,530330074023006,530330074023007,530330074012005,530330074012007,530330074021000,530330075003007,530330075005002,530330075003008,530330074022000,530330075005004,530330075005005,530330074023003,530330066001021,530330073001010,530330073001034,530330076001007,530330065003007,530330075003010,530330075005000,530330065003017,530330075001004,530330073002012,530330065002001,530330065002004,530330065001029,530330065003004,530330073001001,530330074013002,530330073001023,530330074021006,530330074023004,530330074022004,530330074012000,530330074021002,530330075003004,530330075003006,530330073001007,530330066001014,530330074011001,530330074013003,530330065001031,530330065003018,530330075001002,530330065003019,530330076003004,530330075004004,530330079005004,530330073002008,530330065002003,530330065002002,530330065002012,530330073001000,530330073001013,530330074023001,530330074014003,530330065003008,530330065003010,530330075003005,530330075003014,530330074021010,530330075004000,530330066001018,530330074013010,530330074013001,530330079005006,530330073001030,530330073001003,530330075002005,530330073001022,530330073002010,530330065001028,530330066001045,530330074011002,530330074021004,530330074021003,530330074023009,530330075003002,530330065003012,530330075003011,530330074022005,530330075005008,530330075005001,530330073001031,530330064002009,530330074013007,530330066001015,530330075005007,530330065003016,530330065003020,530330075001001,530330075001006,530330079005005,530330073001026,530330073001025,530330066001010,530330066001037,530330065001035,530330074011003,530330074014001,530330074021007,530330074011000,530330075005003,530330075003013,530330075003012,530330073001012,530330073001002,530330074021005,530330066001036,530330076003010,530330065001033,530330075003001,530330075003009,530330075001008,530330075001000,530330076003003,530330075002006,530330075002000,530330065002007,530330065003003,530330073001014,530330073001024,530330073002013,530330074013006,530330065002010,530330065002011,530330074014002,530330074014004,530330074014000,530330074014005,530330073002001,530330073002000,530330074023000,530330074012002,530330074012006,530330074021009,530330074022001,530330075005010,530330074013011,530330073001008,530330073001032,530330074013008,530330074013000,530330074023002,530330065003001,530330065003015,530330065003021,530330075001007,530330075002002,530330075002003,530330075002004,530330066001017,530330073002003,530330065001026,530330066001011,530330065001030,530330065001027,530330065002006,530330065003006,530330074011006,530330074012001,530330065003011,530330065003002,530330084001000,530330075005006,530330075005009,530330075004001,530330075004003,530330073001011,530330066001035,530330073001033],"zs:housing10":14120,"zs:pop10":19562}} \ No newline at end of file diff --git a/fixtures/microhoods/890536713.geojson b/fixtures/microhoods/890536713.geojson new file mode 100644 index 0000000..7dee42c --- /dev/null +++ b/fixtures/microhoods/890536713.geojson @@ -0,0 +1 @@ +{"id":890536713,"type":"Feature","bbox":[-122.38834255339306,47.49637561575688,-122.370397005649,47.508193],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37563853870212,47.49645122254288],[-122.375652,47.496434],[-122.37565593713586,47.49643115797901],[-122.3757700434923,47.49637561575688],[-122.37581384710548,47.49642026427009],[-122.3758878430584,47.49652812671902],[-122.37593668808141,47.49660642512399],[-122.37600633253369,47.49670393546428],[-122.37622890950868,47.49689349664508],[-122.37626963993677,47.49691972092205],[-122.37634631106764,47.4969811887649],[-122.37640661784901,47.49703658130231],[-122.37647707626479,47.49709320641885],[-122.37650973499085,47.49713719222695],[-122.3765736888469,47.49717908164175],[-122.3766652354324,47.4972304932861],[-122.37673898489615,47.49726158102801],[-122.37680070657342,47.49729638872547],[-122.37687965723966,47.49733233275065],[-122.37692101835918,47.49736274702046],[-122.37696520274436,47.49738601060368],[-122.37706579300618,47.49743537104067],[-122.37713969641986,47.497471640784],[-122.3772101699066,47.49749454681855],[-122.3772789936333,47.49753007161914],[-122.37737945511482,47.49757506311561],[-122.37754664569562,47.4976531227064],[-122.37763088024542,47.49769666365748],[-122.37771223651202,47.49774547086655],[-122.37776909006102,47.49778664228342],[-122.37783534436811,47.49783783969091],[-122.37789443208175,47.49788613576641],[-122.37793399105442,47.49792398622568],[-122.37797715263228,47.49798098179026],[-122.3780100067649,47.49803151981657],[-122.37804996480962,47.49808281793273],[-122.37808782722043,47.49813165959787],[-122.37811120844272,47.49816973009995],[-122.37810285063154,47.49822905475441],[-122.37811848466092,47.4982787558405],[-122.37822385733958,47.49838700389965],[-122.37827899005788,47.49843835273929],[-122.37833236899081,47.4984987653],[-122.37840337176968,47.49853948696619],[-122.37849229886783,47.49857062434268],[-122.37858057289085,47.49861385273041],[-122.3786732809936,47.49867017373961],[-122.37876485637887,47.49872239729043],[-122.37884424138143,47.49877285840903],[-122.37893645498525,47.4988124767583],[-122.379015369326,47.49884704926158],[-122.3791036272277,47.49888972046668],[-122.37917429774609,47.49891917792299],[-122.37923903211995,47.49895312905059],[-122.37930494780707,47.49899280541661],[-122.37936448802449,47.49902215703447],[-122.37944044285213,47.49905925449835],[-122.37952563571079,47.49910085310543],[-122.37959870356217,47.49914291686162],[-122.37966475818791,47.49918726094566],[-122.37975898642215,47.49922655111946],[-122.37984285193819,47.49925749948358],[-122.37991031990812,47.49928125910572],[-122.37997781154321,47.49930583194197],[-122.38003736902226,47.49933574034109],[-122.38008180800234,47.49936748251503],[-122.38018863469362,47.49942223906294],[-122.38036654317679,47.49948618130696],[-122.38045260243575,47.49952284035125],[-122.38059202320733,47.4995851214516],[-122.38070178630532,47.49963653863811],[-122.38080430927921,47.49968257030416],[-122.38089637091932,47.49971696235402],[-122.38100072955046,47.49975667045885],[-122.38109715363034,47.49980171380102],[-122.38118019716114,47.49983897042446],[-122.38128795570675,47.499890971394],[-122.38140072926572,47.49994153260389],[-122.38150024432404,47.49998841894591],[-122.38160472551984,47.50003223799533],[-122.38166414666236,47.50005747725923],[-122.38174823464614,47.50009583290176],[-122.38182102843243,47.50012855902924],[-122.38191104515204,47.50016216388617],[-122.38200964740618,47.50021236112235],[-122.38207923722047,47.50023938907461],[-122.38217167468629,47.50028637138113],[-122.38225859370185,47.50031783301014],[-122.38231984177365,47.50033644890782],[-122.38239191852601,47.50037908145055],[-122.38245591416494,47.50042208111947],[-122.38252388054488,47.50046254162591],[-122.38258273888944,47.50050286909523],[-122.3826426420394,47.50054429629616],[-122.38272065545371,47.50058243473705],[-122.38278849244266,47.50061852677928],[-122.38285011648671,47.50064977613068],[-122.38289710291555,47.50066503019565],[-122.38295945258399,47.50068667268504],[-122.38300146445997,47.50070473682018],[-122.38304462672781,47.5007274550555],[-122.38311632146387,47.50075719588347],[-122.38319209361198,47.50078795256115],[-122.38326277740025,47.50081770709786],[-122.3833296281395,47.50085462621603],[-122.38339104910058,47.50087902337445],[-122.38345231425967,47.50089819510031],[-122.38349727121987,47.50091321970929],[-122.38354744676771,47.50093365714908],[-122.38357844190823,47.50095542728183],[-122.38364134610872,47.50099569933506],[-122.38370305261104,47.50102968933412],[-122.3837808230203,47.50105960406665],[-122.38383708260376,47.50108051496453],[-122.38389667667118,47.50111149174487],[-122.38394735817977,47.50114893139946],[-122.38398168883003,47.50118081014048],[-122.38403825813361,47.50121212824608],[-122.38407919472098,47.50122802146367],[-122.38414852584842,47.50124626873701],[-122.38418048415267,47.50126639770161],[-122.38422066191764,47.50129078447207],[-122.38425893211375,47.50131905317379],[-122.38432279999213,47.50135768349401],[-122.38434569854606,47.5013793070995],[-122.38439406409249,47.50140688085136],[-122.38447820468677,47.50144686236878],[-122.38456223964786,47.50148328876626],[-122.38463200375195,47.50151605453242],[-122.38468315067098,47.5015351069263],[-122.38475493717883,47.50156784498806],[-122.38482868103146,47.50159837069499],[-122.384884101257,47.50162503392377],[-122.38493848568037,47.50165089735234],[-122.38499298409926,47.50168057226879],[-122.3850463817147,47.50170726305986],[-122.38513871152816,47.50175043107315],[-122.3852043905049,47.50178188103869],[-122.38529880733574,47.50182720526688],[-122.38533901920087,47.50185270520651],[-122.38539229530515,47.50187528433946],[-122.38547677160993,47.50189251022952],[-122.38550951374982,47.50190495880451],[-122.38557096831555,47.50193042520262],[-122.38563168262064,47.50196498475873],[-122.38567867104805,47.50198023767305],[-122.38571403869045,47.50197894022673],[-122.38576938581804,47.50200311907999],[-122.38583788722771,47.50202741779546],[-122.38590125904831,47.5020493016527],[-122.38596668636853,47.50207227173819],[-122.38602592395078,47.50209121291307],[-122.38609365039956,47.50212344830832],[-122.38615903707613,47.50214504755323],[-122.38619287996022,47.50216048002679],[-122.38622477457051,47.50217842444074],[-122.38624190919427,47.5022102804252],[-122.38627777494612,47.50222568520974],[-122.3863289474051,47.50224555081],[-122.38637811420222,47.50226600082848],[-122.38641080703934,47.50227677879717],[-122.38644176290722,47.50226320233242],[-122.38648781416966,47.50228095269232],[-122.38656390944392,47.50232241333652],[-122.38664696037644,47.5023596659703],[-122.38671874925217,47.502392402791],[-122.38675654772703,47.50240478184361],[-122.38678960054874,47.50242763699869],[-122.3868105599709,47.50245202888198],[-122.38684208001742,47.50249135729223],[-122.38688046534563,47.50248946119244],[-122.38690754019994,47.50251539724677],[-122.38688315828936,47.50254589320578],[-122.38689230199333,47.50258115766157],[-122.38691346569145,47.50261240176997],[-122.38694596441042,47.50265060309671],[-122.38699142998048,47.50268262835709],[-122.38702975119725,47.50271252366933],[-122.38707852013394,47.50275354430232],[-122.387124630378,47.50280719735325],[-122.38715960984528,47.50286074542923],[-122.38719884640011,47.50292134789975],[-122.38722495356534,47.50298268668485],[-122.38726565964355,47.50305864977759],[-122.38729053499631,47.50311259371048],[-122.38732904612345,47.50318280298132],[-122.38735781944497,47.50323176611386],[-122.38738197866232,47.50329561648211],[-122.38740205957787,47.50335840864297],[-122.3874358153671,47.50340481861283],[-122.38746891238046,47.50346306289087],[-122.38750880985157,47.50351187373888],[-122.38754850313354,47.5035538319791],[-122.38758671237876,47.50361389138106],[-122.38762361741895,47.50366411408805],[-122.38765261214814,47.50372048617098],[-122.38768033404679,47.50376809268457],[-122.3877082365347,47.50382173783061],[-122.38773218271524,47.50387843592154],[-122.38774162089217,47.50392355082484],[-122.38776595833109,47.50395942116681],[-122.38779496787963,47.50398233139715],[-122.38783788928112,47.50399682519764],[-122.38786914979887,47.5040273739136],[-122.38790870406933,47.50406466411832],[-122.38794527518488,47.50410366617857],[-122.38797552413371,47.50413422871586],[-122.38800252811615,47.50415772336267],[-122.38802939240756,47.50417654974258],[-122.38806358835615,47.50420375933388],[-122.38810301315762,47.50423668116395],[-122.38814865196,47.50427444499056],[-122.38818913657452,47.50430898013801],[-122.38822022634868,47.50433379007944],[-122.38824729515773,47.50435946864965],[-122.38828260086476,47.50438996186715],[-122.3883076397076,47.50441541130161],[-122.38833254702952,47.50443644997937],[-122.38832349734616,47.50447222039245],[-122.38834255339306,47.50451754610902],[-122.38735627927244,47.5041813933785],[-122.38675382264105,47.503756435474],[-122.38604782032112,47.50316622542353],[-122.38577628393608,47.50293133680538],[-122.3851879028576,47.50250253674265],[-122.38515859135046,47.50248639939486],[-122.38512739266949,47.50247482918925],[-122.38509377932061,47.50246710539561],[-122.38505876370728,47.50246325664558],[-122.38502329758799,47.5024612563468],[-122.38498786280753,47.50246032645551],[-122.38494791127575,47.50246057264097],[-122.38491054979222,47.50246288264619],[-122.38487593104604,47.50247235310614],[-122.38484809856674,47.50248892842295],[-122.38482707506752,47.50251333728137],[-122.3848115838081,47.50253668498922],[-122.38480016770507,47.50256100504225],[-122.38479231433463,47.50258604787503],[-122.38478851830064,47.50261146382095],[-122.3847887732306,47.50263703851743],[-122.38479256541686,47.50266247924456],[-122.38480089478081,47.50268742943035],[-122.38501347532532,47.5032699950188],[-122.38519636282479,47.50375549479465],[-122.38513216114657,47.50402869193324],[-122.38510644510892,47.50404840880338],[-122.38507865775163,47.50406652611682],[-122.38504829044132,47.50408292236307],[-122.3850163474491,47.50409736901584],[-122.38498232217314,47.50410983017641],[-122.38494671741971,47.50412021403488],[-122.38491003518791,47.50412838421822],[-122.3848722749851,47.5041343414341],[-122.38483393986817,47.50413794999776],[-122.3847955366846,47.50413928862343],[-122.38475655681619,47.50413823615155],[-122.38471852007041,47.50413489992645],[-122.38468092087307,47.50412924368532],[-122.38464375949835,47.50412131129773],[-122.38460805091854,47.50411121630509],[-122.3845737974671,47.50409900219871],[-122.38454150598865,47.50408474769593],[-122.38451118261442,47.50406862399397],[-122.3844828293748,47.50405071670634],[-122.38445695593808,47.50403114733208],[-122.38443407401049,47.50401012333332],[-122.38441368335425,47.50398782282407],[-122.38439679769,47.50396431759867],[-122.38438241476229,47.50393992143835],[-122.3843715495525,47.50391474858883],[-122.38436420971647,47.5038890565674],[-122.38368647601264,47.50314296343509],[-122.38298777640767,47.50279701983307],[-122.38228815978354,47.50255609662305],[-122.38225931756484,47.50253870966102],[-122.38222652999869,47.50252471820787],[-122.38219081715106,47.50251440878686],[-122.38215320106836,47.50250815213081],[-122.38211469650014,47.50250602108954],[-122.38207631608233,47.50250808713922],[-122.38203907018998,47.50251429332862],[-122.38200346211559,47.50252454750596],[-122.38197049409138,47.50253853591447],[-122.38194167165379,47.50255585264576],[-122.38191698283238,47.50257611213701],[-122.38189792933629,47.50259877937172],[-122.38188398754984,47.50262326236744],[-122.38200601626191,47.50286598301571],[-122.38217311331836,47.50351905327271],[-122.38189663193305,47.5041560225407],[-122.38169759065843,47.50516956645081],[-122.38154722171264,47.5062789055647],[-122.381501,47.506372],[-122.381494,47.507341],[-122.375968,47.50729],[-122.375935,47.508187],[-122.374693,47.508188],[-122.373407,47.508193],[-122.373451,47.506396],[-122.372178,47.506349],[-122.371404,47.506358],[-122.37047284462967,47.50639762363278],[-122.37043300173146,47.50614248570067],[-122.37039955069869,47.50586675361628],[-122.370397005649,47.50578042373847],[-122.370404,47.505686],[-122.370449,47.505503],[-122.37044850110217,47.50550299757424],[-122.3704982386117,47.50531936215803],[-122.37055211316712,47.50481332670196],[-122.37054972340627,47.50390874330179],[-122.37055093640573,47.50388126367762],[-122.37055366769069,47.50385380631959],[-122.37055741267336,47.503826420878],[-122.37056217009027,47.50379906455017],[-122.37056743714506,47.50377183013288],[-122.37057422448403,47.50374470359341],[-122.37058253387426,47.50371772737621],[-122.3705913529083,47.50369087341983],[-122.37060118814439,47.50366417663326],[-122.37061204086369,47.50363768052048],[-122.37062391105438,47.50361138473032],[-122.37063679871508,47.5035852892625],[-122.37065070637875,47.50355948007267],[-122.37066563203787,47.50353387154828],[-122.37068157715892,47.50350854860645],[-122.37069854280723,47.50348351228525],[-122.37071652969485,47.50345880434124],[-122.37073503200831,47.50343443267518],[-122.37075506015083,47.50341034008506],[-122.37077560673875,47.50338666866845],[-122.3707961836297,47.5033640255627],[-122.37213623462632,47.50211756868258],[-122.3724394697284,47.50190352134382],[-122.37324795218477,47.50129398123584],[-122.3737842262829,47.50085316501335],[-122.37381350316466,47.50083404473081],[-122.37384071856823,47.50081362429582],[-122.37386587755229,47.50079207492004],[-122.37388897960003,47.5007693966119],[-122.37390952373528,47.50074572497984],[-122.3739280185251,47.50072118123327],[-122.37394345591368,47.50069586504091],[-122.37395685081327,47.50066989109271],[-122.37396769992951,47.50064335150675],[-122.37397600834518,47.50061641819555],[-122.37398127203107,47.50058914081834],[-122.3739840013375,47.50056168337882],[-122.37398420007284,47.50053417463561],[-122.37398136293376,47.50050662109399],[-122.37405523962695,47.49989144437008],[-122.37414758628616,47.49952481454247],[-122.37425500300441,47.49927455922489],[-122.37495740055641,47.49742254456911],[-122.37563853870212,47.49645122254288]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000098,"geom:area_square_m":814571.484566,"geom:bbox":"-122.388342553,47.4963756158,-122.370397006,47.508193","geom:latitude":47.503057,"geom:longitude":-122.377496,"iso:country":"US","lbl:latitude":47.502908,"lbl:longitude":-122.377628,"lbl:max_zoom":18,"mps:latitude":47.502908,"mps:longitude":-122.377628,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.502908,"reversegeo:longitude":-122.377628,"src:geom":"seagv","wof:belongsto":[85803355,102191575,890536787,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"822a519ea1286e4db585df8dbbf07bde","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536787,"microhood_id":890536713,"neighbourhood_id":85803355,"region_id":85688623}],"wof:id":890536713,"wof:lastmodified":1566631087,"wof:name":"Arroyo Heights","wof:parent_id":85803355,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420549565],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536715.geojson b/fixtures/microhoods/890536715.geojson new file mode 100644 index 0000000..52eb86d --- /dev/null +++ b/fixtures/microhoods/890536715.geojson @@ -0,0 +1 @@ +{"id":890536715,"type":"Feature","bbox":[-122.3009136175138,47.6612455880889,-122.29565078056527,47.66622523964977],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.30090620979551,47.66410906615871],[-122.30089775246643,47.66454245850674],[-122.3008965070278,47.66455368948725],[-122.30089316919884,47.6645792244294],[-122.30089033826785,47.66460475284062],[-122.30088649179329,47.66463025116592],[-122.30088315222665,47.66465574331119],[-122.3008793057547,47.66468124198705],[-122.30087545807051,47.66470669785956],[-122.30087110174226,47.66473211711521],[-122.30086674714752,47.66475757951809],[-122.30086188391762,47.66478300565495],[-122.3008575263679,47.66480838210676],[-122.30085215449743,47.66483377197726],[-122.30084729003495,47.6648591549593],[-122.30084141004176,47.66488450855663],[-122.30083603572875,47.66490981246896],[-122.30083015451591,47.6649351232624],[-122.30082427155965,47.66496039090813],[-122.30081788169261,47.664985665084],[-122.30059341544963,47.6658771737749],[-122.3005954097455,47.66620539519496],[-122.30035124581799,47.66621163496679],[-122.29994446514377,47.66622523964977],[-122.29940599507499,47.66620709984672],[-122.29906868328085,47.66617328510933],[-122.29879076145387,47.66612996546804],[-122.29844752262866,47.66606723046177],[-122.298169647382,47.66599290701619],[-122.29787852381745,47.66588704301725],[-122.29747536673159,47.66571160505181],[-122.2971112422517,47.66551337333509],[-122.29682830568031,47.66533192955141],[-122.29613440230943,47.66485836743778],[-122.29567616423166,47.66448723909587],[-122.29565078056527,47.66124569274778],[-122.29569212291418,47.6612455880889],[-122.29673128937964,47.66125002144754],[-122.29811744606995,47.66125323979036],[-122.29876384587044,47.66125473617559],[-122.29969796372362,47.66125813754369],[-122.3009123402069,47.66125076590333],[-122.3009136175138,47.66278758859882],[-122.30090405159584,47.66394033062531],[-122.30090620979551,47.66410906615871]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":194958.281514,"geom:bbox":"-122.300913618,47.6612455881,-122.295650781,47.6662252396","geom:latitude":47.663514,"geom:longitude":-122.298414,"iso:country":"US","lbl:latitude":47.663565,"lbl:longitude":-122.298556,"lbl:max_zoom":18,"mps:latitude":47.663565,"mps:longitude":-122.298556,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["University Village"],"name:fra_x_preferred":["University Village"],"reversegeo:latitude":47.663565,"reversegeo:longitude":-122.298556,"src:geom":"mz","wof:belongsto":[85843839,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7894977"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"353c3df657a04d225270327a7d15f7f0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536715,"neighbourhood_id":85843839,"region_id":85688623}],"wof:id":890536715,"wof:lastmodified":1566631088,"wof:name":"University Village","wof:parent_id":85843839,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420549575],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536717.geojson b/fixtures/microhoods/890536717.geojson new file mode 100644 index 0000000..8d65818 --- /dev/null +++ b/fixtures/microhoods/890536717.geojson @@ -0,0 +1 @@ +{"id":890536717,"type":"Feature","bbox":[-122.34730756666228,47.66499698028807,-122.3400174680942,47.67553732436083],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.34701944121849,47.67420547450223],[-122.3469761549175,47.67457193378778],[-122.34691967206201,47.67493212392308],[-122.34677906074185,47.67553732436083],[-122.34676768459384,47.67551262590005],[-122.34675479088969,47.67548811922534],[-122.34674139517202,47.67546379014411],[-122.3467310817032,47.67544074856916],[-122.34671970310622,47.67541596449804],[-122.34670781898362,47.67539127313056],[-122.34669593787444,47.67536666700956],[-122.34668354925687,47.67534206762877],[-122.34667116440049,47.67531759700569],[-122.34665827328301,47.67529317592531],[-122.34664487641437,47.67526880402978],[-122.34663148206128,47.67524451808897],[-122.34661758321447,47.67522032448633],[-122.34660368510748,47.6751961736916],[-122.34658928250757,47.67517211523479],[-122.34657437365982,47.67514810667075],[-122.34655946855456,47.67512422616207],[-122.34654456523899,47.67510038879812],[-122.34652864938533,47.67507665016842],[-122.34651324304639,47.67505299075898],[-122.3464968252197,47.67502943042042],[-122.34648091689732,47.67500594895128],[-122.34646399657916,47.67498256691032],[-122.34644707875846,47.67495927012148],[-122.34643016344535,47.67493605893561],[-122.34641274365391,47.67491294043686],[-122.34639481833564,47.67488991428804],[-122.34637689604504,47.67486697373494],[-122.3463589775087,47.67484416158725],[-122.34634004697064,47.67482144851522],[-122.34632162470035,47.67479877186062],[-122.34630270042565,47.67477627279604],[-122.34628326990966,47.6747538236216],[-122.34626333615441,47.67473150958477],[-122.3462439131485,47.67470931722001],[-122.34622347815429,47.67468722428024],[-122.34620304565928,47.67466521659145],[-122.34618261692978,47.67464333765803],[-122.34616168370603,47.67462155070787],[-122.34614075372846,47.67459989251978],[-122.34611931927766,47.67457832701623],[-122.34609738157963,47.67455689629802],[-122.34607595412052,47.67453558760965],[-122.34605351642212,47.6745144204382],[-122.34603108124394,47.67449333921867],[-122.34600864982153,47.67447238640293],[-122.34598571340803,47.67445152627745],[-122.3459622749946,47.67443084373888],[-122.34593934609282,47.67441024042053],[-122.34591540769091,47.67438982177777],[-122.34589147179926,47.67436948873545],[-122.34586753966359,47.67434928409634],[-122.34584310430344,47.67432921494211],[-122.34581867268905,47.67430927384004],[-122.34579373733115,47.6742894682293],[-122.34576880698505,47.67426983417496],[-122.34574337162974,47.6742502921071],[-122.3457179400406,47.67423087879264],[-122.34569200646351,47.67421164341366],[-122.34566607664232,47.674192536437],[-122.3456401505768,47.6741735578627],[-122.34489790585654,47.67369168817437],[-122.34439354458372,47.67318780751118],[-122.34436943800196,47.67316156385798],[-122.34435001514687,47.67313932836622],[-122.34433008159631,47.67311697118694],[-122.3443111600506,47.67309451494367],[-122.34429223478801,47.67307193028892],[-122.34427381277662,47.67304921014802],[-122.3442553882926,47.67302640439858],[-122.34423746883316,47.67300350631],[-122.34421954565646,47.6729804798103],[-122.3442021257399,47.67295731817591],[-122.34418521208079,47.67293410665484],[-122.3441682947039,47.67291076672292],[-122.34415188235984,47.67288733480359],[-122.34413597450812,47.67286381020224],[-122.34412006293806,47.67284015719035],[-122.34410414888379,47.67281641821979],[-122.34408924860017,47.67279262333525],[-122.34407434406792,47.67276869969643],[-122.34405943831538,47.67274473360374],[-122.34404554330312,47.67272062529734],[-122.344031647579,47.67269647417953],[-122.34401774761587,47.6726721946586],[-122.34400435390504,47.67264786525279],[-122.3439914652221,47.67262344386117],[-122.34397908228088,47.67259897294275],[-122.34396669685289,47.6725744160666],[-122.34395430894835,47.6725497735835],[-122.34394293428721,47.67252507519545],[-122.34393155713849,47.67250029084985],[-122.34392017751243,47.67247542089755],[-122.34390981288081,47.67245053748582],[-122.34389944399726,47.67242552532086],[-122.34388907513392,47.67240051350574],[-122.34387971877449,47.67237540262613],[-122.34387036065046,47.67235024859902],[-122.34386100182105,47.67232505211228],[-122.34385265568825,47.67229979902717],[-122.34384380010489,47.6722744670578],[-122.34383595899035,47.67224912163702],[-122.34382811539545,47.67222369061013],[-122.34382077930773,47.67219825320478],[-122.34381394768843,47.67217272276987],[-122.3438071166055,47.67214719267847],[-122.34380079073502,47.67212161306901],[-122.34379446414619,47.67209599064949],[-122.3437891520203,47.67207035477931],[-122.34378383741172,47.67204463330332],[-122.34377852404218,47.67201895427897],[-122.3437737156875,47.67199318327111],[-122.3437694143052,47.67196740554139],[-122.34376561988435,47.67194162073907],[-122.34376182475297,47.67191579347775],[-122.34375853658204,47.67188995914387],[-122.3437557546667,47.6718640756295],[-122.34375297274391,47.67183819176419],[-122.34375173962857,47.67181323009002],[-122.34375149286447,47.67178727014429],[-122.34374972487916,47.67176137283573],[-122.3437469429649,47.67173548897016],[-122.34374314785784,47.67170966170802],[-122.34373884775809,47.67168392677964],[-122.3437330282075,47.67165829728395],[-122.34372568974811,47.67163277391548],[-122.34371784755425,47.67160738603398],[-122.34370899464234,47.67158213965899],[-122.34369913352194,47.67155712109751],[-122.3436882616964,47.67153224439292],[-122.34367638113541,47.67150759515732],[-122.34366349288929,47.67148317372749],[-122.34364959591025,47.671458979766],[-122.34363469320657,47.67143509887119],[-122.34361877908995,47.67141131737269],[-122.34360337640564,47.67138770036906],[-122.34358696354315,47.67136422521328],[-122.34357004694581,47.67134088519112],[-122.34355262786814,47.67131772345586],[-122.3435352118027,47.67129464696577],[-122.34351729450123,47.67127179156511],[-122.34349836475295,47.67124903557264],[-122.34347944174895,47.67122649323316],[-122.34346052250258,47.67120407964969],[-122.34344059328829,47.67118185072827],[-122.34342016211599,47.67115980008538],[-122.34339973644477,47.67113792029219],[-122.34337880777711,47.67111621879097],[-122.34335737714214,47.67109469521676],[-122.34333544527455,47.67107339272982],[-122.34331301019682,47.67105222536662],[-122.34329058259857,47.67103131481565],[-122.34326714431275,47.67101054611425],[-122.34324371299735,47.67099003458244],[-122.34321977847293,47.67096965817329],[-122.34319585195756,47.67094953891981],[-122.34317142367128,47.67092964005705],[-122.3431459864829,47.67090992653955],[-122.34312106247776,47.67089041996071],[-122.34309513100888,47.67087118399498],[-122.34306920505196,47.67085211922756],[-122.34304277962752,47.67083331834018],[-122.3430158524434,47.67081473819262],[-122.34298842505801,47.67079637876386],[-122.34296100463209,47.67077827615208],[-122.3429335904618,47.67076038824933],[-122.34290516932843,47.67074277024827],[-122.34287675444044,47.67072536660487],[-122.34284784007495,47.67070822648864],[-122.34281893267811,47.6706913435395],[-122.34278901708586,47.67067468803833],[-122.34275961768883,47.67065832542483],[-122.34272921010668,47.67064219060939],[-122.34269881124467,47.67062635540535],[-122.3426684186264,47.67061073455798],[-122.34263752725347,47.67059542004547],[-122.34260613641241,47.67058036940861],[-122.3425742455736,47.67056558230303],[-122.34254287093682,47.67055108843584],[-122.34251048881812,47.67053686447174],[-122.34153613223717,47.67023717910374],[-122.34092426832272,47.67004841034423],[-122.340890520367,47.67003955991961],[-122.34085726301949,47.67003010317239],[-122.34082449772518,47.67002012572237],[-122.34079222200192,47.67000954196437],[-122.34075993066256,47.66999840140298],[-122.34072863760552,47.66998669062196],[-122.34069732913655,47.66997446585464],[-122.34066651377346,47.66996172072341],[-122.340636697406,47.66994844783302],[-122.34060686491688,47.66993461849827],[-122.34057803371454,47.66992030454534],[-122.34054918710346,47.66990547660735],[-122.34052134177965,47.66989016405221],[-122.34049398975652,47.66987437360137],[-122.34046713280509,47.66985814840204],[-122.3404407691549,47.66984144530774],[-122.34041540679212,47.66982425759838],[-122.3403905402231,47.66980667795144],[-122.34036617067879,47.66978874881922],[-122.34034029097177,47.66977122538393],[-122.34031591949874,47.66975321062843],[-122.3402889292746,47.66973240268579],[-122.34026450072068,47.66971241793715],[-122.34024107541768,47.66969203418836],[-122.34021763967569,47.66967130766822],[-122.34019521019559,47.66965026809837],[-122.34017378521617,47.66962887268342],[-122.34015285777123,47.66960712742779],[-122.34013242861258,47.66958507619396],[-122.34011300642453,47.66956275437114],[-122.34009408302076,47.66954012586227],[-122.34007616483598,47.66951718432012],[-122.34005874720481,47.66949397923938],[-122.3400174680942,47.66947036112583],[-122.34001809482918,47.66943946227097],[-122.34001884612697,47.66939536607483],[-122.34002177151346,47.66919871656398],[-122.34002640939573,47.6687810557474],[-122.34003226823538,47.66875561452903],[-122.34003761890217,47.66873013756339],[-122.34004246209781,47.66870466695851],[-122.34004730404793,47.66867915355058],[-122.34005163781667,47.66865360404471],[-122.34005597159135,47.66862805488947],[-122.34005979665608,47.66860246929235],[-122.34006311426259,47.66857689040708],[-122.34006643114445,47.668551268712],[-122.34006974750359,47.66852564702369],[-122.3400725556844,47.66849998923759],[-122.34007485692835,47.66847433815659],[-122.34007715640985,47.66844864427951],[-122.34008247183569,47.66791435313604],[-122.34008690066935,47.66708693567628],[-122.34008796920061,47.66640613183271],[-122.34009982450614,47.66572989785856],[-122.34020254554142,47.66503763796116],[-122.34044927938534,47.66504259987762],[-122.34269794646369,47.66502259374965],[-122.34321869111089,47.66501080804646],[-122.34452028762816,47.6649984316009],[-122.34509195943241,47.66501059680446],[-122.34606754932659,47.66504147413908],[-122.34609343510802,47.66502433571787],[-122.34612502648795,47.66501149118999],[-122.346159298506,47.66500358124918],[-122.34623032913245,47.6650034517696],[-122.34644983981697,47.66499698028807],[-122.34730756666228,47.66500529130312],[-122.34709887726677,47.67166898835517],[-122.34701944121849,47.67420547450223]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":419409.055856,"geom:bbox":"-122.347307567,47.6649969803,-122.340017468,47.6755373244","geom:latitude":47.668794,"geom:longitude":-122.344157,"iso:country":"US","lbl:latitude":47.668162,"lbl:longitude":-122.344226,"lbl:max_zoom":18,"mps:latitude":47.668162,"mps:longitude":-122.344226,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Woodland Park"],"name:deu_x_preferred":["Woodland Park"],"name:fra_x_preferred":["Woodland Park"],"name:ita_x_preferred":["Woodland Park"],"name:nld_x_preferred":["Woodland Park"],"name:srp_x_preferred":["Вудланд Парк"],"reversegeo:latitude":47.668162,"reversegeo:longitude":-122.344226,"src:geom":"mz","wof:belongsto":[85841499,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8cde82246173996a5147efbb738f17ab","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536717,"neighbourhood_id":85841499,"region_id":85688623}],"wof:id":890536717,"wof:lastmodified":1566631091,"wof:name":"Woodland Park","wof:parent_id":85841499,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420549625],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536719.geojson b/fixtures/microhoods/890536719.geojson new file mode 100644 index 0000000..8d4b867 --- /dev/null +++ b/fixtures/microhoods/890536719.geojson @@ -0,0 +1 @@ +{"id":890536719,"type":"Feature","bbox":[-122.29406337207612,47.6279945035246,-122.28533927832011,47.6424772926843],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.2854214883383,47.63078832955444],[-122.28755661948577,47.62933601609871],[-122.28877488814973,47.62849780923597],[-122.28951801396298,47.6279945035246],[-122.289518,47.627996],[-122.289559,47.628218],[-122.289551,47.629005],[-122.289546,47.629495],[-122.28956,47.629513],[-122.289574,47.629529],[-122.289615,47.629543],[-122.289671,47.629546],[-122.290787,47.629547],[-122.290824,47.629526],[-122.290835,47.62952],[-122.290856,47.629484],[-122.290882,47.628605],[-122.29392641112508,47.62858341038011],[-122.29391601952452,47.62896115406951],[-122.2938773368936,47.63064147478469],[-122.29275687917725,47.63201934793673],[-122.2927585155506,47.63255305417296],[-122.29323164095322,47.63313373458674],[-122.29371563178461,47.6336365218582],[-122.29383139800956,47.633868308344],[-122.29394630154609,47.63419407973226],[-122.29406337207612,47.63486084292902],[-122.29398443727042,47.63592936622373],[-122.29302399514488,47.63774018171134],[-122.29299538377705,47.63780695516967],[-122.29298974415227,47.63786974826665],[-122.29302543622582,47.63792844404703],[-122.2936166603473,47.63854709073543],[-122.29369989087195,47.63869167831594],[-122.29372515685056,47.63883295784514],[-122.29373398310307,47.63896946449622],[-122.29373221721339,47.63913729468486],[-122.29372471233766,47.63932390213819],[-122.29372930723382,47.63947418590258],[-122.2937226913393,47.63966449451993],[-122.29372585707722,47.6398927108625],[-122.2937207486109,47.64001334337078],[-122.29370249870475,47.64013929232669],[-122.2936543788781,47.64021662012616],[-122.2935256442823,47.64038250661955],[-122.29340606790066,47.64057277737149],[-122.29325130549773,47.64078792880203],[-122.29317056185457,47.64097331661102],[-122.2930297442143,47.64112915809815],[-122.292987,47.641164],[-122.29293565151913,47.64122576702578],[-122.29291944604294,47.64124156568717],[-122.29289982996538,47.64126542398521],[-122.2928827771253,47.64129027742219],[-122.29286879164486,47.64131599143165],[-122.29285837486921,47.64134238796187],[-122.29285101464018,47.64136925948544],[-122.29284670855962,47.64139652039623],[-122.2928439242241,47.64142380461843],[-122.29284113987585,47.64145108848975],[-122.2928383567358,47.64147841551515],[-122.29283658866761,47.6415057723472],[-122.29283521715908,47.64152694571045],[-122.292827,47.641529],[-122.2923089692393,47.64177711589473],[-122.28965026321741,47.64194422343852],[-122.28962408251981,47.64130239903044],[-122.28790581020611,47.64193420204501],[-122.28764540945622,47.64202161310302],[-122.28731527585688,47.64210474390494],[-122.2869377396601,47.64217917770662],[-122.28663741144076,47.64221187403403],[-122.28636204259048,47.64223996824575],[-122.28611488470509,47.64228494494267],[-122.28546576320184,47.6424772926843],[-122.28533927832011,47.64247241950074],[-122.2854214883383,47.63078832955444]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000104,"geom:area_square_m":866531.077513,"geom:bbox":"-122.294063372,47.6279945035,-122.285339278,47.6424772927","geom:latitude":47.635472,"geom:longitude":-122.289535,"iso:country":"US","lbl:latitude":47.635415,"lbl:longitude":-122.289619,"lbl:max_zoom":18,"mps:latitude":47.635415,"mps:longitude":-122.289619,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Broadmoor"],"name:fra_x_preferred":["Broadmoor"],"reversegeo:latitude":47.635415,"reversegeo:longitude":-122.289619,"src:geom":"mz","wof:belongsto":[420549517,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4972252"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2379f6ac33b82b972a481f5c8dc0a005","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536719,"neighbourhood_id":420549517,"region_id":85688623}],"wof:id":890536719,"wof:lastmodified":1566631090,"wof:name":"Broadmoor","wof:parent_id":420549517,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85807697],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536721.geojson b/fixtures/microhoods/890536721.geojson new file mode 100644 index 0000000..125add9 --- /dev/null +++ b/fixtures/microhoods/890536721.geojson @@ -0,0 +1 @@ +{"id":890536721,"type":"Feature","bbox":[-122.291568,47.70831,-122.276333,47.717648],"geometry":{"type":"Polygon","coordinates":[[[-122.285402,47.70831],[-122.286742,47.708325],[-122.288082,47.70834],[-122.289389,47.708356],[-122.289711,47.708359],[-122.290761,47.70837],[-122.290756,47.708503],[-122.290744,47.709017],[-122.290707,47.710179],[-122.29071,47.710179],[-122.290692,47.710722],[-122.290655,47.71181],[-122.29066,47.712556],[-122.290658,47.712581],[-122.290656,47.712607],[-122.290655,47.712633],[-122.290655,47.712659],[-122.290654,47.712685],[-122.290655,47.712711],[-122.290657,47.712737],[-122.290659,47.712763],[-122.290661,47.712789],[-122.290664,47.712815],[-122.290668,47.712841],[-122.290673,47.712867],[-122.290678,47.712893],[-122.290679,47.712901],[-122.290683,47.712919],[-122.290689,47.712945],[-122.290696,47.712971],[-122.290703,47.712996],[-122.290712,47.713022],[-122.29072,47.713047],[-122.290729,47.713073],[-122.290739,47.713098],[-122.290749,47.713123],[-122.29076,47.713148],[-122.290772,47.713173],[-122.290784,47.713198],[-122.290796,47.713222],[-122.290809,47.713247],[-122.290828,47.713277],[-122.290826,47.713278],[-122.290857,47.713324],[-122.290958,47.71349],[-122.29105,47.713614],[-122.291396,47.714133],[-122.29147,47.714272],[-122.29151,47.71437],[-122.291551,47.714498],[-122.291568,47.714662],[-122.291515,47.715361],[-122.291499,47.715529],[-122.289277,47.715521],[-122.288848,47.715525],[-122.288793,47.715525],[-122.283898,47.715567],[-122.283888,47.717278],[-122.283895,47.717344],[-122.283898,47.717367],[-122.283115,47.717374],[-122.28291,47.717303],[-122.282797,47.717274],[-122.282695,47.717208],[-122.282419,47.717235],[-122.282384,47.717234],[-122.281626,47.71731],[-122.281592,47.717264],[-122.281533,47.717347],[-122.280922,47.717499],[-122.280407,47.717648],[-122.280073,47.717294],[-122.279486,47.717056],[-122.279211,47.716728],[-122.279247,47.716243],[-122.279214,47.715766],[-122.278855,47.715598],[-122.278597,47.715744],[-122.27785,47.716165],[-122.277826,47.71612],[-122.277801,47.716062],[-122.277784,47.716009],[-122.277767,47.71596],[-122.277721,47.715817],[-122.277747,47.715792],[-122.277691,47.715658],[-122.277625,47.715505],[-122.277589,47.715464],[-122.277566,47.715416],[-122.277538,47.715391],[-122.277507,47.71536],[-122.277476,47.715301],[-122.277425,47.715181],[-122.277412,47.715159],[-122.277387,47.71512],[-122.277349,47.715031],[-122.277311,47.714932],[-122.277303,47.714906],[-122.277282,47.714857],[-122.277271,47.714818],[-122.277258,47.714781],[-122.277198,47.714639],[-122.27719,47.714611],[-122.277183,47.714557],[-122.277178,47.714504],[-122.277169,47.71444],[-122.277169,47.714352],[-122.277213,47.714336],[-122.277202,47.714301],[-122.27719,47.714259],[-122.277176,47.714208],[-122.277126,47.714092],[-122.277092,47.714011],[-122.277075,47.713979],[-122.277056,47.713943],[-122.276997,47.713809],[-122.27697,47.713741],[-122.276942,47.713643],[-122.276922,47.713597],[-122.276905,47.713554],[-122.276889,47.713504],[-122.276854,47.713418],[-122.276841,47.71337],[-122.276794,47.713257],[-122.276777,47.713206],[-122.276762,47.713159],[-122.27672,47.713053],[-122.27668,47.712935],[-122.276665,47.712891],[-122.276652,47.712857],[-122.276628,47.712759],[-122.276584,47.712622],[-122.276543,47.712523],[-122.276522,47.712497],[-122.276513,47.712458],[-122.276495,47.712398],[-122.276475,47.712349],[-122.276466,47.712316],[-122.276432,47.712258],[-122.276426,47.712183],[-122.276417,47.712156],[-122.276409,47.712101],[-122.276501,47.712082],[-122.276505,47.712029],[-122.276514,47.712004],[-122.276526,47.711974],[-122.276546,47.711914],[-122.276541,47.711852],[-122.276539,47.711802],[-122.276532,47.711772],[-122.276528,47.71172],[-122.276522,47.711681],[-122.27651,47.711587],[-122.276522,47.711562],[-122.276515,47.71152],[-122.276507,47.711484],[-122.276506,47.711458],[-122.276477,47.711436],[-122.276435,47.711428],[-122.276423,47.711399],[-122.276407,47.711345],[-122.276399,47.7113],[-122.2764,47.71127],[-122.276412,47.711246],[-122.276408,47.711192],[-122.2764,47.711164],[-122.276391,47.711133],[-122.276385,47.711095],[-122.276366,47.711046],[-122.276338,47.710955],[-122.276333,47.710927],[-122.276374,47.710918],[-122.276372,47.710905],[-122.276708,47.710858],[-122.276837,47.710862],[-122.277225,47.710886],[-122.277291,47.711138],[-122.277578,47.711604],[-122.277861,47.712327],[-122.277911,47.7124],[-122.277951,47.712449],[-122.277993,47.712494],[-122.278043,47.71253],[-122.278093,47.712565],[-122.27817,47.71255],[-122.278248,47.712544],[-122.278307,47.712518],[-122.278382,47.712494],[-122.278455,47.712495],[-122.278531,47.712485],[-122.278605,47.712485],[-122.278676,47.712474],[-122.278762,47.712451],[-122.278826,47.712436],[-122.278899,47.712425],[-122.279004,47.712421],[-122.279115,47.712407],[-122.278872,47.711836],[-122.278668,47.711406],[-122.278582,47.711227],[-122.278372,47.710791],[-122.278006,47.710053],[-122.277729,47.709432],[-122.278952,47.709167],[-122.280174,47.708903],[-122.281482,47.70862],[-122.282693,47.708357],[-122.285402,47.70831]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000103,"geom:area_square_m":853909.023195,"geom:bbox":"-122.291568,47.70831,-122.276333,47.717648","geom:latitude":47.712486,"geom:longitude":-122.284063,"iso:country":"US","lbl:latitude":47.711949,"lbl:longitude":-122.284066,"lbl:max_zoom":18,"mps:latitude":47.711949,"mps:longitude":-122.284066,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":17,"name:afr_x_preferred":["Chelsea"],"name:ara_x_preferred":["تشيلسي"],"name:bul_x_preferred":["Челси"],"name:cat_x_preferred":["Chelsea"],"name:ceb_x_preferred":["Chelsea"],"name:ces_x_preferred":["Chelsea"],"name:dan_x_preferred":["Chelsea"],"name:deu_x_preferred":["Chelsea"],"name:eus_x_preferred":["Chelsea"],"name:fas_x_preferred":["چلسی"],"name:fin_x_preferred":["Chelsea"],"name:fra_x_preferred":["Chelsea"],"name:heb_x_preferred":["צ'לסי"],"name:hrv_x_preferred":["Chelsea"],"name:hun_x_preferred":["Chelsea"],"name:ilo_x_preferred":["Chelsea"],"name:ind_x_preferred":["Chelsea"],"name:ita_x_preferred":["Chelsea"],"name:jpn_x_preferred":["チェルシー"],"name:kat_x_preferred":["ჩელსი"],"name:mlg_x_preferred":["Chelsea"],"name:msa_x_preferred":["Chelsea"],"name:nld_x_preferred":["Chelsea"],"name:nor_x_preferred":["Chelsea"],"name:pol_x_preferred":["Chelsea"],"name:por_x_preferred":["Chelsea"],"name:rus_x_preferred":["Челси"],"name:sco_x_preferred":["Chelsea"],"name:slk_x_preferred":["Chelsea"],"name:spa_x_preferred":["Chelsea"],"name:srp_x_preferred":["Челси"],"name:swe_x_preferred":["Chelsea"],"name:tha_x_preferred":["เชลซี"],"name:tur_x_preferred":["Chelsea"],"name:ukr_x_preferred":["Челсі"],"name:vie_x_preferred":["Chelsea"],"name:vol_x_preferred":["Chelsea"],"name:zho_x_preferred":["切尔西"],"reversegeo:latitude":47.711949,"reversegeo:longitude":-122.284066,"src:geom":"mz","wof:belongsto":[85869455,102191575,890536775,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9bcc47d79d83684dd56bb7032c20a490","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536775,"microhood_id":890536721,"neighbourhood_id":85869455,"region_id":85688623}],"wof:id":890536721,"wof:lastmodified":1617131438,"wof:name":"Chelsea","wof:parent_id":85869455,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85810585],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536723.geojson b/fixtures/microhoods/890536723.geojson new file mode 100644 index 0000000..807bbce --- /dev/null +++ b/fixtures/microhoods/890536723.geojson @@ -0,0 +1 @@ +{"id":890536723,"type":"Feature","bbox":[-122.39919410788632,47.51378284296515,-122.38742144142277,47.52258765640904],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.394841,47.513837],[-122.394877,47.513838],[-122.3953,47.51385],[-122.39571475953619,47.5138552075087],[-122.39574029642013,47.51390124630963],[-122.39575939798527,47.51393088906508],[-122.39578360570411,47.51396208978422],[-122.39580797775788,47.51399877235131],[-122.39584165806085,47.51404218191092],[-122.39586797846692,47.51407635234946],[-122.39588817370083,47.5141087222712],[-122.39590970049058,47.51415174200676],[-122.39592274120913,47.51418172539285],[-122.39594145551253,47.51423219588241],[-122.39596316341031,47.51428125424169],[-122.3959902812587,47.51434202032171],[-122.39602789217247,47.51441528128226],[-122.3960529296412,47.51447414802199],[-122.3960786344743,47.51452152350716],[-122.39609704476466,47.51456184386039],[-122.39614401365871,47.51464345929168],[-122.3961664284916,47.51468235394309],[-122.39618966650629,47.51471493886794],[-122.39621550253743,47.51476668226237],[-122.39623848552776,47.51482450638711],[-122.39627567725505,47.51488376284299],[-122.3963202125165,47.51495170123747],[-122.39636183779895,47.51499007421967],[-122.39640036273265,47.51506002360011],[-122.39643364922502,47.51512400358626],[-122.3964569030654,47.51519086422245],[-122.39648825682445,47.51525786994652],[-122.39653780070621,47.51535783043972],[-122.39656009283478,47.51539261318599],[-122.39661214572374,47.51544125378333],[-122.39667823546831,47.51548558797654],[-122.39676188232694,47.51554176270967],[-122.39682329246936,47.51559875767892],[-122.3968918498598,47.51565788226893],[-122.39694968356962,47.51573056482277],[-122.39701082358995,47.51577852313642],[-122.39710475026928,47.51584004021898],[-122.39720067479311,47.51590067261745],[-122.39730687088348,47.51596639104796],[-122.39738227065092,47.51601745170873],[-122.39750067913764,47.51608548640566],[-122.39760264862069,47.51614522164972],[-122.3976876294802,47.5162120454991],[-122.39781199211441,47.51627614197194],[-122.39790076460193,47.51633443052278],[-122.39801709381197,47.51640056539039],[-122.39816355885084,47.51647618234279],[-122.39819901681976,47.51649441668896],[-122.39829703752727,47.51654053808759],[-122.39838174745623,47.51658144433797],[-122.3984597853215,47.51661918639267],[-122.39853500849338,47.51664745552961],[-122.39860249153311,47.51667069007829],[-122.39870028527022,47.51672606864931],[-122.39872912667066,47.51674298026166],[-122.39876989036009,47.51676941083401],[-122.39881591748846,47.51680262355587],[-122.39886374549609,47.51681156163326],[-122.39887913180131,47.5167847857191],[-122.39893002236848,47.51679462429775],[-122.3989753100585,47.51682004934727],[-122.39904343927155,47.51686478265494],[-122.3991105726173,47.51691004384278],[-122.39915830788425,47.51694957410356],[-122.39918768821464,47.51700126801747],[-122.39919410788632,47.51706339030252],[-122.39916545088805,47.51711999749429],[-122.39913396051044,47.51714965169661],[-122.39909750675125,47.5171656638399],[-122.39911123613246,47.51720163571211],[-122.399111759821,47.51723590414508],[-122.39908651595766,47.51727138454068],[-122.39905659894133,47.51730290251451],[-122.39902844677935,47.51734262180313],[-122.39907035543274,47.51735661132398],[-122.39903769134094,47.51738088319826],[-122.39900330142646,47.51739823815202],[-122.39897720927925,47.51742233377801],[-122.39893881814265,47.51745808135201],[-122.3989001105244,47.51748329323824],[-122.39886939968405,47.51750522445588],[-122.39885771550975,47.51753734781732],[-122.39883010633106,47.51756146431691],[-122.39877983574593,47.5175891492132],[-122.39873929339942,47.51758696609075],[-122.39870119702948,47.51761568282763],[-122.39864907707295,47.51764917736038],[-122.39859565830743,47.51767313529317],[-122.39855287117247,47.51769728925341],[-122.39851217890023,47.51772381400426],[-122.39845666501012,47.51776223950034],[-122.39839706617336,47.51779943560179],[-122.39826733513412,47.51789372478135],[-122.39821718479119,47.51792543529911],[-122.39815909660727,47.51796239670912],[-122.39805799678517,47.51803289778961],[-122.39795686275731,47.51810228557698],[-122.39785793259139,47.51817768369091],[-122.39775289231466,47.51825179492885],[-122.39764514642292,47.51833691191131],[-122.39752689777393,47.51840927688637],[-122.39742356719479,47.51847295304135],[-122.39729569629017,47.51856190261412],[-122.39716678084977,47.5186497952167],[-122.39707311959329,47.5187322324032],[-122.39698744450932,47.51877728478301],[-122.39694686878457,47.51880774888967],[-122.396916292523,47.5188342194297],[-122.39689462206258,47.51885396923305],[-122.39685892240034,47.51887832505994],[-122.396813625778,47.51892007960139],[-122.39678199680593,47.51894519330161],[-122.39674242330751,47.51897534379703],[-122.3966911722854,47.51902103614667],[-122.39662376931089,47.51906802162191],[-122.39655120177036,47.51911152231977],[-122.39645795040803,47.51917394482646],[-122.3964203095851,47.51920106945567],[-122.39636369634849,47.51923668114201],[-122.3962975097453,47.51929050508404],[-122.39626189939605,47.51931785863891],[-122.39623336212392,47.51934485794095],[-122.39617984902871,47.5193826120976],[-122.39605062537201,47.51946035332308],[-122.39592888455297,47.51955140217765],[-122.39589037934796,47.5195834656182],[-122.39584507311032,47.51962496261599],[-122.39578877097412,47.51967098094157],[-122.39568176726115,47.51974730241287],[-122.39558113632307,47.51983369007638],[-122.39553600162513,47.51988092596936],[-122.3954797566962,47.51992887129843],[-122.39542855292338,47.51997619061198],[-122.3953792482854,47.52001937026128],[-122.39533985412126,47.52005555890315],[-122.39524278339465,47.52012570222537],[-122.39516965344458,47.52018429078514],[-122.39513233973081,47.52022237869628],[-122.39501985599514,47.52031852609183],[-122.39493037468957,47.52040557413888],[-122.3948482121798,47.52050049057384],[-122.394741236391,47.520611643357],[-122.39471685059942,47.52064214100201],[-122.39466183564996,47.52073120001364],[-122.39462995634499,47.52078180948696],[-122.39459630027245,47.52084066936399],[-122.39455175515604,47.5209076476138],[-122.3945012301919,47.52097770753238],[-122.3944221977616,47.52110959845916],[-122.39439122302689,47.52115663891546],[-122.39432029034015,47.52128867572183],[-122.3943012655102,47.52132925389233],[-122.39428534110583,47.52137197432406],[-122.39425778720103,47.52143186425626],[-122.39424665737715,47.52146573579496],[-122.39423360111925,47.52153665199504],[-122.39420332825746,47.52167472742287],[-122.39419353101204,47.52171929194743],[-122.39418492889254,47.5218375756377],[-122.39418182673366,47.52186915199189],[-122.39418489703672,47.52197167970947],[-122.39418344584303,47.52202461281355],[-122.39418575397835,47.52206789697914],[-122.3942053769504,47.52221625536298],[-122.39421843784008,47.5223482515799],[-122.3942222650664,47.52244224281497],[-122.39421866001457,47.5224908354249],[-122.39420909874634,47.52258765640904],[-122.38991806276444,47.52082506621921],[-122.38742144142277,47.52078571698757],[-122.387454,47.518962],[-122.387445,47.518687],[-122.387454,47.518529],[-122.387466,47.51831],[-122.38746973811818,47.51751284671851],[-122.38928114838293,47.5175277222225],[-122.39174516877824,47.51752787462241],[-122.39167119524679,47.51706745304372],[-122.39165080913696,47.51685748850848],[-122.39152645426245,47.51557669072162],[-122.39128685861759,47.51426362017081],[-122.39117200110157,47.51378284296515],[-122.394841,47.513837]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":460535.424364,"geom:bbox":"-122.399194108,47.513782843,-122.387421441,47.5225876564","geom:latitude":47.517977,"geom:longitude":-122.393066,"iso:country":"US","lbl:latitude":47.517181,"lbl:longitude":-122.394449,"lbl:max_zoom":18,"mps:latitude":47.517181,"mps:longitude":-122.394449,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.517181,"reversegeo:longitude":-122.394449,"src:geom":"mz","wof:belongsto":[85819027,102191575,890536787,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"63f906ddc72808e31b2ea9b27f6d4f87","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536787,"microhood_id":890536723,"neighbourhood_id":85819027,"region_id":85688623}],"wof:id":890536723,"wof:lastmodified":1566631088,"wof:name":"Endolyne","wof:parent_id":85819027,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85818093],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536727.geojson b/fixtures/microhoods/890536727.geojson new file mode 100644 index 0000000..104ba88 --- /dev/null +++ b/fixtures/microhoods/890536727.geojson @@ -0,0 +1 @@ +{"id":890536727,"type":"Feature","bbox":[-122.35563886145184,47.726909,-122.34502161995354,47.73413044755841],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.34502161995354,47.72691396361174],[-122.345091,47.726913],[-122.347677,47.726909],[-122.347726,47.727768],[-122.348818,47.727769],[-122.348839,47.727769],[-122.349539,47.727769],[-122.35032,47.727782],[-122.350449,47.727808],[-122.350574,47.727855],[-122.350812,47.72801],[-122.351166,47.72824],[-122.35153,47.728412],[-122.351759,47.728487],[-122.351929,47.728544],[-122.352354,47.728632],[-122.352868,47.728678],[-122.35555248715599,47.72873885236594],[-122.35555248925456,47.72874208845121],[-122.35556086163379,47.72930059471264],[-122.355562,47.729644],[-122.355565,47.730496],[-122.35556500890097,47.73049600002651],[-122.35556104409415,47.73104363738394],[-122.35555567335653,47.73231583135377],[-122.35557453327606,47.73351341076283],[-122.35563886145184,47.73413044755841],[-122.35557128507823,47.73413032109389],[-122.35537364790179,47.73413030240614],[-122.3542584405689,47.73413009751478],[-122.35303857518649,47.73412999129127],[-122.35177247204074,47.73412971578599],[-122.35050586280717,47.7341295189496],[-122.34797315298475,47.73412907633159],[-122.34780142665862,47.73412904334449],[-122.34764392571378,47.73412899216135],[-122.34528802062208,47.73412845607133],[-122.34510257699218,47.73412842922823],[-122.34510122458934,47.73402964933431],[-122.34509379111215,47.73321614361929],[-122.3450857402533,47.73292225578047],[-122.34506666774644,47.73169160529321],[-122.34505362616535,47.73047612718302],[-122.34504109022896,47.72926055665333],[-122.34502837907213,47.72805638458298],[-122.34502161995354,47.72691396361174]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000065,"geom:area_square_m":541524.715508,"geom:bbox":"-122.355638861,47.726909,-122.34502162,47.7341304476","geom:latitude":47.730988,"geom:longitude":-122.349985,"iso:country":"US","lbl:latitude":47.730949,"lbl:longitude":-122.34956,"lbl:max_zoom":18,"mps:latitude":47.730949,"mps:longitude":-122.34956,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Foy"],"name:deu_x_preferred":["Foy"],"name:fra_x_preferred":["Foy"],"name:nld_x_preferred":["Foy"],"name:pol_x_preferred":["Foy"],"name:rus_x_preferred":["Фой"],"name:swe_x_preferred":["Foy"],"name:ukr_x_preferred":["Фой"],"reversegeo:latitude":47.730949,"reversegeo:longitude":-122.34956,"src:geom":"mz","wof:belongsto":[85865529,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bbb88e79f2b5a1a743dba5b0b31a9354","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536727,"neighbourhood_id":85865529,"region_id":85688623}],"wof:id":890536727,"wof:lastmodified":1566631092,"wof:name":"Foy","wof:parent_id":85865529,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85820503],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536729.geojson b/fixtures/microhoods/890536729.geojson new file mode 100644 index 0000000..825daf6 --- /dev/null +++ b/fixtures/microhoods/890536729.geojson @@ -0,0 +1 @@ +{"id":890536729,"type":"Feature","bbox":[-122.27953944035733,47.66796008669547,-122.26354911908494,47.67578422676622],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.26354911908494,47.6755309511604],[-122.27340367620315,47.66857424597409],[-122.2740767990026,47.66831260431208],[-122.27407679900263,47.6683126043121],[-122.27447511142039,47.66825752514342],[-122.27452022537796,47.66825588323345],[-122.27455875379252,47.66825462470485],[-122.27459728576595,47.66825349457377],[-122.27463582129852,47.66825249284024],[-122.27467435987104,47.66825161951081],[-122.27471290371943,47.6682509177267],[-122.27475144994084,47.66825030153653],[-122.27478999972251,47.66824981374388],[-122.27482855373242,47.66824949715888],[-122.27486711183236,47.66824930931564],[-122.27490567229663,47.66824920671552],[-122.27494423751921,47.66824927566724],[-122.27498280578412,47.66824947302305],[-122.27502137814025,47.66824979912062],[-122.27505995523627,47.66825029606838],[-122.27509853471739,47.6682508789609],[-122.27513711724197,47.66825159025747],[-122.27517570503655,47.66825247274848],[-122.2751766405167,47.66825249622472],[-122.27521429521701,47.66825344118426],[-122.27525128126281,47.66825455376178],[-122.27525238267941,47.6682545868935],[-122.2752909799877,47.66825581212444],[-122.27532958204782,47.66825720855631],[-122.2753681871532,47.6682587333922],[-122.27540679635275,47.66826038696984],[-122.27544490165799,47.66826217536909],[-122.27548351798829,47.66826408574175],[-122.2755221390721,47.66826616731542],[-122.27556025507477,47.66826834090765],[-122.2755988821132,47.66827063682364],[-122.27563751338664,47.66827310394719],[-122.27567564061849,47.66827566307669],[-122.27571427902625,47.66827838699525],[-122.27575241458078,47.66828124572357],[-122.27579055200556,47.66828419040364],[-122.27582920112664,47.66828729986563],[-122.27586734739532,47.6682905441379],[-122.27590549671325,47.6682939168145],[-122.27594364960991,47.66829741823972],[-122.27598180607582,47.66830104806267],[-122.27601996729936,47.66830484908682],[-122.27605813142415,47.66830873569864],[-122.27609629859961,47.66831275071477],[-122.27613446935523,47.66831689447944],[-122.2761726448697,47.66832120944538],[-122.27621031582636,47.66832561642651],[-122.27625459253693,47.66833036790864],[-122.2762927561883,47.6683342547993],[-122.27633091627062,47.66833801291578],[-122.27636907040691,47.66834155665119],[-122.27640721860647,47.66834488635629],[-122.27644536376499,47.66834808763156],[-122.27648400940741,47.66835106846088],[-122.2765221438788,47.66835388447893],[-122.27652400804836,47.66835401176198],[-122.27656078001202,47.66835652250337],[-122.27659718104148,47.66835884275321],[-122.27659890377511,47.66835895256254],[-122.27663753040733,47.66836124813297],[-122.27667564414915,47.66836333574507],[-122.27671425941116,47.6683652028971],[-122.27675287110995,47.66836694162554],[-122.27679147685798,47.66836846597254],[-122.27682957039289,47.66836982552286],[-122.27686816544639,47.66837096461243],[-122.27690675521714,47.66837193213071],[-122.27694534075341,47.66837272841532],[-122.27698392153538,47.66837335347292],[-122.27702249637376,47.66837376449993],[-122.27706106711682,47.6683740467592],[-122.27709963124589,47.66837407217783],[-122.27713819179827,47.6683739688221],[-122.2771767464151,47.66837365178668],[-122.27721529574602,47.66837316318001],[-122.27725384082959,47.66837250298887],[-122.27729237997627,47.66837162911811],[-122.27733091435525,47.66837058366952],[-122.27736944345655,47.66836936700048],[-122.27740796711964,47.66836793594354],[-122.27744648602355,47.66836633365961],[-122.27748500016799,47.66836456014872],[-122.27752350903313,47.66836261541745],[-122.27756201245832,47.66836045629825],[-122.2776005111228,47.66835812595213],[-122.27763849756597,47.66835563081295],[-122.27767698550876,47.66835291485874],[-122.27771546868962,47.66835002767758],[-122.2777534396481,47.66834697570395],[-122.27779353699417,47.66834740963234],[-122.27783202850121,47.66834482238703],[-122.27787052119403,47.66834227793225],[-122.27790901573316,47.66833981872713],[-122.27794700742623,47.66833749469244],[-122.27798550672676,47.6683352070263],[-122.27802400893248,47.66833300529832],[-122.27806251231492,47.66833084601],[-122.27810100617587,47.6683283442808],[-122.27813948759601,47.66832541380866],[-122.2781774518919,47.6683221048662],[-122.27821591188523,47.6683184039056],[-122.27825385354326,47.66831428096985],[-122.27829178395662,47.66830977244588],[-122.27832970365361,47.66830487867797],[-122.27836761262361,47.66829959931525],[-122.27840500392576,47.66829394078856],[-122.27844238398974,47.66828789702484],[-122.27847975384377,47.66828146766013],[-122.27851711297737,47.66827465305182],[-122.27855395273063,47.66826741648371],[-122.27859128988207,47.66825983069339],[-122.27862760243133,47.6682518725231],[-122.27866441118701,47.66824352232713],[-122.27870070174973,47.66823479297584],[-122.27873698210684,47.66822567837508],[-122.27877274546012,47.66821622742314],[-122.27880849808707,47.66820639122869],[-122.27884373251864,47.66819617588021],[-122.27887895740324,47.66818561774216],[-122.2789141720788,47.66817467435538],[-122.27894886974784,47.66816339461886],[-122.27898355616777,47.6681517296471],[-122.27901772661895,47.66813972831305],[-122.2790513783523,47.66812734783347],[-122.27908552971255,47.66811466127266],[-122.27911865542548,47.66810160235144],[-122.27915177157708,47.6680882002911],[-122.2794430120332,47.66796008669547],[-122.27944432897212,47.66813508463378],[-122.27947380930019,47.67120074565806],[-122.27948320606608,47.67199438354555],[-122.27950204036294,47.67296304469179],[-122.27951306386011,47.67394277282834],[-122.27951337272351,47.67396054514585],[-122.27952656969369,47.67471990666924],[-122.27953944035733,47.67578422676622],[-122.27736177539175,47.67578241481781],[-122.27723380815628,47.67577949544182],[-122.27586158896987,47.67578012593193],[-122.2756476379228,47.67553160214851],[-122.27562726708119,47.67551073820999],[-122.27560839337112,47.67548895577541],[-122.27559254190588,47.67546636399464],[-122.27557819468625,47.6754431101898],[-122.2755668744674,47.67541921860558],[-122.27555757196781,47.6753948729423],[-122.27555130357953,47.67537014597122],[-122.27554705833374,47.67534517929694],[-122.27554534680007,47.6753200949121],[-122.27554668110555,47.67529501478955],[-122.27555004633881,47.67526999459507],[-122.27555689428937,47.67524244543475],[-122.27556585873408,47.67521803980782],[-122.2755717670089,47.6751932015131],[-122.27557411650118,47.67516815135723],[-122.27557411650118,47.67516815135721],[-122.27557411413686,47.67516783725328],[-122.27557392754035,47.67514304769838],[-122.27557018930922,47.67511807460656],[-122.27556341342215,47.67509335406061],[-122.27555360702006,47.67506914323185],[-122.27554077248264,47.67504552772647],[-122.27552542395628,47.67502275829738],[-122.27550705627436,47.67500092627328],[-122.27548567592731,47.67498024671616],[-122.2754623004818,47.67496083484863],[-122.27543642700603,47.67494282514011],[-122.2754080514373,47.67492608988671],[-122.27537377528539,47.67491615568205],[-122.27533901368778,47.67490704186553],[-122.27530376461914,47.67489861930484],[-122.2751670092073,47.67487151671933],[-122.27492124718023,47.67486631497288],[-122.27474766225231,47.67486529811568],[-122.27470772737828,47.6748709015675],[-122.27467240513,47.67487816044446],[-122.27463815612663,47.67488750524453],[-122.2746054837987,47.67489880079344],[-122.27457438643701,47.6749120042957],[-122.2745448621849,47.67492703013891],[-122.274517413298,47.67494370069679],[-122.27449254491708,47.67496192359306],[-122.27446974477934,47.67498153438604],[-122.27444951446635,47.67500231228885],[-122.27443185226369,47.67502421415503],[-122.27441725910711,47.67504697708948],[-122.27438762281255,47.67518607834523],[-122.27437966998185,47.67521038544014],[-122.2743686563805,47.67523413108689],[-122.27435457779622,47.67525714476557],[-122.27433742775227,47.67527921176247],[-122.27431720201781,47.67530016085556],[-122.27429491104832,47.67531985080776],[-122.27427004478301,47.6753381592622],[-122.27424259559083,47.67535482975356],[-122.27421306624423,47.67536968429651],[-122.27418145436137,47.6753826369314],[-122.27418145436137,47.67538263693142],[-122.27390257013924,47.67544584413337],[-122.27233091442568,47.67575781061252],[-122.27153669160377,47.67575738510637],[-122.27041111943285,47.67575830693933],[-122.26932424328831,47.67574544814028],[-122.26861129494554,47.67574779113911],[-122.26758903033392,47.67574074254418],[-122.26697440837427,47.67573853868236],[-122.26562668669665,47.67572562785581],[-122.26523850543256,47.67572716561349],[-122.2638275540654,47.67572166888811],[-122.26355506564944,47.6757227334236],[-122.26354911908494,47.6755309511604]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00008,"geom:area_square_m":669192.575229,"geom:bbox":"-122.27953944,47.6679600867,-122.263549119,47.6757842268","geom:latitude":47.672575,"geom:longitude":-122.273586,"iso:country":"US","lbl:latitude":47.67173,"lbl:longitude":-122.274385,"lbl:max_zoom":18,"mps:latitude":47.67173,"mps:longitude":-122.274385,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":15,"name:eng_x_preferred":["Hawthorne Hills"],"name:eng_x_variant":["Hawthorne Hls"],"name:fra_x_preferred":["Hawthorne Hills"],"reversegeo:latitude":47.67173,"reversegeo:longitude":-122.274385,"src:geom":"mz","wof:belongsto":[85858185,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5685611"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0cde3a952d8cf05253e0920b525bb060","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536729,"neighbourhood_id":85858185,"region_id":85688623}],"wof:id":890536729,"wof:lastmodified":1566631092,"wof:name":"Hawthorne Hills","wof:parent_id":85858185,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85824323],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536731.geojson b/fixtures/microhoods/890536731.geojson new file mode 100644 index 0000000..985d026 --- /dev/null +++ b/fixtures/microhoods/890536731.geojson @@ -0,0 +1 @@ +{"id":890536731,"type":"Feature","bbox":[-122.32725814703363,47.65305023829209,-122.3221543708228,47.6614210322597],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32243968747275,47.65636689424472],[-122.32246481894808,47.65465851425748],[-122.32249357469485,47.65369659611737],[-122.32260139849646,47.65368871659226],[-122.32273680275183,47.65366967988718],[-122.32279529431545,47.65365738989647],[-122.32308081132396,47.65360155745321],[-122.32318282629713,47.65358569881311],[-122.32327168017224,47.65357082618353],[-122.32336455901424,47.65355478717452],[-122.32344236712176,47.65354391510606],[-122.3235061810378,47.65354033792952],[-122.32358084367465,47.6535259080165],[-122.32363435891195,47.65351698188449],[-122.32368568825892,47.6535025999815],[-122.32377008521367,47.65347381854432],[-122.32385250737181,47.65344694763162],[-122.32393720251942,47.65342857316895],[-122.32400770604461,47.65341064132127],[-122.32407931869994,47.6533959940858],[-122.32413076621849,47.65338572352103],[-122.32419149042158,47.65338055857676],[-122.32424847999354,47.65338666741095],[-122.32434268713769,47.65341696713229],[-122.32439597359415,47.65343546329344],[-122.3244572240661,47.65344862841636],[-122.32450418964518,47.65345898146293],[-122.32454914353467,47.65346991783134],[-122.32458582637491,47.65347547848739],[-122.32470247084383,47.6534391190756],[-122.32470564638166,47.65340835830172],[-122.32470564638169,47.65340835830171],[-122.32478671192938,47.65339229950042],[-122.3248357106608,47.65339031506496],[-122.3248491784058,47.65338976962489],[-122.32502795353226,47.65339728206573],[-122.3251617445434,47.65339278768422],[-122.32522566824845,47.65339306427752],[-122.3252885304428,47.65339168374404],[-122.32532603865099,47.65339063534719],[-122.32538278500932,47.65338826370705],[-122.325439562093,47.6533869628154],[-122.32549017541184,47.65338300083119],[-122.32553145728289,47.65337204891279],[-122.32563124618346,47.65334936231532],[-122.32567333679584,47.65333124474548],[-122.32571549868037,47.65331561113745],[-122.3257940058231,47.65329376028281],[-122.32585667117053,47.65328552709644],[-122.325894116063,47.65328229416294],[-122.32592837728254,47.65327417629031],[-122.32599886444552,47.65325568641331],[-122.32603607374661,47.65324423068976],[-122.32607854286717,47.65323930401191],[-122.32611716709812,47.65324179646483],[-122.3261641653145,47.65325326239977],[-122.32616565080156,47.65325351546368],[-122.32624776648439,47.65326750448713],[-122.32630165065585,47.65327146817791],[-122.32644235960382,47.65326058332326],[-122.32648981235982,47.65325254923908],[-122.32653929328893,47.6532444885417],[-122.3266079962746,47.65323454759523],[-122.32665143196863,47.65322793703041],[-122.32671914419768,47.6532188232731],[-122.32676943493334,47.65320363967094],[-122.32680946608737,47.65318447750222],[-122.32689893700253,47.65312049514438],[-122.32694140376016,47.65308017922743],[-122.32697026505893,47.65305023829209],[-122.32689021284239,47.65772300663935],[-122.32725814703363,47.65772355104048],[-122.32721031037904,47.6614210322597],[-122.3221543708228,47.66139278900869],[-122.32228164811129,47.65974067701292],[-122.32238941856497,47.65804788303213],[-122.32243968747275,47.65636689424472]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000038,"geom:area_square_m":312461.09042,"geom:bbox":"-122.327258147,47.6530502383,-122.322154371,47.6614210323","geom:latitude":47.657515,"geom:longitude":-122.324746,"iso:country":"US","lbl:latitude":47.657522,"lbl:longitude":-122.324713,"lbl:max_zoom":18,"mps:latitude":47.657522,"mps:longitude":-122.324713,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":12,"name:eng_x_preferred":["Latona"],"name:und_x_variant":["Loosna"],"reversegeo:latitude":47.657522,"reversegeo:longitude":-122.324713,"src:geom":"mz","wof:belongsto":[85854291,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5a4172fc8b9aee143bf1481427f6b6d6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536731,"neighbourhood_id":85854291,"region_id":85688623}],"wof:id":890536731,"wof:lastmodified":1566631086,"wof:name":"Latona","wof:parent_id":85854291,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829871],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536733.geojson b/fixtures/microhoods/890536733.geojson new file mode 100644 index 0000000..52d4b42 --- /dev/null +++ b/fixtures/microhoods/890536733.geojson @@ -0,0 +1 @@ +{"id":890536733,"type":"Feature","bbox":[-122.28006484776071,47.69033839748447,-122.26679677673654,47.69937325340653],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.28003196476993,47.69737816292293],[-122.28006484776071,47.69937325340653],[-122.27252843128683,47.69932738769818],[-122.27252625827406,47.69930429844656],[-122.27252403342204,47.69922399560474],[-122.27252025676836,47.69916097837221],[-122.27252170700885,47.6991033787134],[-122.27252036262098,47.6990548546501],[-122.27251970692134,47.69899453979615],[-122.27249997047038,47.69894187766497],[-122.27250058015937,47.69889058679276],[-122.27251209529281,47.69879310171056],[-122.27250647089676,47.69873670535914],[-122.2725001018789,47.69865341297535],[-122.27250298479916,47.6986108764483],[-122.27249939805137,47.69855471127921],[-122.2724702553194,47.69852903087625],[-122.2724573838314,47.69850425865916],[-122.27246644028587,47.69846464288232],[-122.27248648110641,47.69841833332989],[-122.27251294335763,47.69834726522333],[-122.27253049017379,47.69828423565875],[-122.27254509826061,47.69822509896447],[-122.2725636831986,47.69816291335641],[-122.27259155272581,47.69806933478111],[-122.27261222539303,47.69797254794779],[-122.2726226846468,47.69794692414985],[-122.272638836493,47.69787020255034],[-122.27264114965223,47.69780710806602],[-122.2726364236468,47.69770982839788],[-122.27263482879539,47.69765226718383],[-122.27263409704051,47.69758921150003],[-122.27263918981782,47.6975164849638],[-122.27265644533506,47.69740633171809],[-122.2726601860948,47.69732145514129],[-122.27265891281098,47.69727550033715],[-122.27266504623232,47.69724033455883],[-122.27268431150667,47.69716605815388],[-122.27269413723785,47.69708093345777],[-122.27269196763478,47.69703927427521],[-122.27268700152861,47.69696997388714],[-122.27267457962333,47.69688812918638],[-122.27265444154372,47.69682094827446],[-122.27262844820702,47.6967623242679],[-122.27260416565552,47.69669215416899],[-122.27258381728977,47.6966540236655],[-122.27256961918678,47.69661800029178],[-122.27254852171063,47.69658947619285],[-122.27248265455349,47.69652094478948],[-122.27245879298643,47.69650260951772],[-122.2724491654001,47.69649676664905],[-122.27242781082212,47.69648380680498],[-122.2724007594831,47.69647032762727],[-122.27239074609784,47.69646533814326],[-122.27235793933164,47.69645397060547],[-122.27232151775547,47.69642208390239],[-122.27229295823403,47.69638075789052],[-122.27227873449328,47.69633435135493],[-122.27227286592756,47.69631520449474],[-122.27225587189422,47.69625153986485],[-122.27225101212376,47.69623192072383],[-122.27223643756187,47.69617308243009],[-122.2722277155352,47.6961147972877],[-122.27221800824381,47.69605759574652],[-122.2721997942014,47.69598653470614],[-122.27218289171039,47.69592616803837],[-122.27215716506599,47.69587713751785],[-122.27212737871533,47.6958281582404],[-122.2720991277634,47.69579254204862],[-122.27207266961152,47.69575918603156],[-122.27202990880875,47.69571833930447],[-122.27197486105317,47.69567379153499],[-122.27191073947782,47.69563154376451],[-122.2718453015434,47.69561510367392],[-122.27179037759727,47.69561168419069],[-122.27174315621966,47.69559308625077],[-122.27172796659346,47.69555788954745],[-122.27172891193446,47.69551867626807],[-122.2717104422289,47.69547503799022],[-122.27167685282504,47.69539868699213],[-122.27164430045562,47.69532313679981],[-122.27159785711906,47.6952592867249],[-122.27153306882187,47.69519292633638],[-122.27146838687321,47.69513042033758],[-122.27144526734617,47.69510217847272],[-122.27143029147454,47.69507469092036],[-122.27142250358557,47.69505011136653],[-122.27142240339818,47.69500979730199],[-122.27145613865149,47.69498139504192],[-122.27153664756928,47.6949554444242],[-122.27163491861903,47.69494760677901],[-122.27167874545019,47.69495365124794],[-122.27178034280519,47.69495592508922],[-122.27181783651258,47.69495326708751],[-122.27187531881675,47.69493908886311],[-122.27198462633122,47.69492648406406],[-122.27217912406913,47.69491031919829],[-122.27236079673902,47.69487100899627],[-122.27272329466096,47.69483515616443],[-122.27288748748626,47.6948245994643],[-122.27296897459794,47.69483398106146],[-122.27304997091737,47.69486230544456],[-122.27311264483079,47.69488893334684],[-122.27320126316661,47.69493579825436],[-122.27331426389905,47.69498316894566],[-122.27342785421246,47.69501519428984],[-122.27352096283657,47.6950408804266],[-122.27360263701114,47.69503869155569],[-122.27342389765177,47.69498234074128],[-122.27320633471726,47.69489897452551],[-122.27311361114404,47.69485053367837],[-122.27307944420308,47.69483034284885],[-122.27305270888834,47.69481454370639],[-122.2729676987296,47.69478794064839],[-122.27287187243766,47.69477407014134],[-122.27273197936974,47.69478213514206],[-122.27243919571839,47.69480558293575],[-122.27213293124593,47.69485550613382],[-122.27178516515276,47.69491006497339],[-122.27176206672233,47.69484592033082],[-122.27174087775145,47.69477738164626],[-122.27177719631675,47.69476895448575],[-122.27186000023208,47.6947525716186],[-122.27186223313947,47.69472319594509],[-122.2718686549816,47.69469843742001],[-122.27187383367547,47.69466546852743],[-122.27187165771944,47.69462355250348],[-122.2718703722934,47.69461533655264],[-122.27186548970754,47.69458412892197],[-122.27185723917806,47.69454284655975],[-122.27184105028638,47.69450821947586],[-122.27180758432927,47.69447299619547],[-122.27179364588747,47.69444630949799],[-122.27179958151635,47.69440399136679],[-122.27176960269328,47.69427468349889],[-122.27174538546662,47.69424345650347],[-122.2717472004826,47.69419900523447],[-122.27171527183869,47.69414594022194],[-122.27165864195878,47.69408084784624],[-122.27162293435369,47.69403798408991],[-122.27159195396153,47.69401918114782],[-122.27152445753366,47.6940016532448],[-122.27150018012054,47.69396824216564],[-122.27145141430309,47.69393047006395],[-122.27138177390269,47.69390885610294],[-122.27128601893006,47.69389746826232],[-122.2712436400843,47.69390704289551],[-122.27120313981774,47.69391110989185],[-122.27117768060744,47.69387167239398],[-122.27116160575943,47.69380444033786],[-122.2711347611347,47.6937883272355],[-122.27108577735542,47.69377934822782],[-122.27100578328488,47.69375045284885],[-122.27094600481789,47.69371830337472],[-122.27089442248396,47.69368879227437],[-122.27085740651945,47.69367199350112],[-122.27084978601995,47.69366985006705],[-122.27080419569968,47.693657026779],[-122.2707748210403,47.69363678811939],[-122.27076279380879,47.69362850155141],[-122.2707339272326,47.69361267076911],[-122.27067642231927,47.69358927552997],[-122.2705901262668,47.69355279027797],[-122.27051205716448,47.69352005733719],[-122.27043397222889,47.69348676720207],[-122.27031669036232,47.6934312220003],[-122.27023458403195,47.69339935367795],[-122.27017184468941,47.69337024018388],[-122.27013063287856,47.69334856679778],[-122.27009057931498,47.69333206298619],[-122.27000066080095,47.69329842869116],[-122.26997567613547,47.69328908309681],[-122.26992379160635,47.69324860789076],[-122.26985047214848,47.69320403254776],[-122.26981361554733,47.69319297226481],[-122.26977987941729,47.69318461477577],[-122.26974976351576,47.69316031653227],[-122.26969791718047,47.6931212116376],[-122.26963918643956,47.69309016227335],[-122.26957297927359,47.69304575438618],[-122.26951066481824,47.69299525649905],[-122.26945462261621,47.69295127709243],[-122.26938439413657,47.69290829066369],[-122.26937315883941,47.69290052649701],[-122.26935127182423,47.69288540144341],[-122.2692837318497,47.69282948536001],[-122.26922982986919,47.69278946345285],[-122.26916621060866,47.69274682216022],[-122.26914033520002,47.69272898260116],[-122.26909087222514,47.69270261467835],[-122.26901055847091,47.69266206832668],[-122.26898007216619,47.69264270183211],[-122.26892612260967,47.69260092377702],[-122.26888432376494,47.69257634429096],[-122.2688332237016,47.69254584103579],[-122.26876922449935,47.69250778834341],[-122.26872544811964,47.69248511877178],[-122.26864552673511,47.69244036891661],[-122.26858399018575,47.69239958614398],[-122.26852538240037,47.69235456779494],[-122.26850201644773,47.69233566815033],[-122.26843883097732,47.69229032168688],[-122.26834389446354,47.69223492167],[-122.26825259249598,47.69220085414322],[-122.26814663867405,47.69216928460563],[-122.26806229067196,47.69212964546441],[-122.26801821214593,47.6920960115983],[-122.26797338709409,47.69205770579983],[-122.26795062377829,47.69203825311801],[-122.26789634638877,47.69198456817848],[-122.26783297541023,47.69191407492187],[-122.26777990510345,47.69184893590013],[-122.26773046340446,47.69178649331923],[-122.26773046340446,47.69178649331921],[-122.2677291341539,47.69178518757683],[-122.26768141504724,47.69173831237433],[-122.26765901251338,47.69171751537502],[-122.26765277259403,47.69169377317709],[-122.26766432290495,47.69167083542543],[-122.26768556824628,47.69163132355332],[-122.26768890640615,47.69160514756238],[-122.26768890640615,47.69160514756236],[-122.26767509661487,47.69156462035244],[-122.26766972707881,47.69151721774464],[-122.2676653542339,47.69148753959731],[-122.2676566251128,47.69142878290257],[-122.26765052638277,47.69139175784667],[-122.26763364957887,47.69133207534826],[-122.26760860514013,47.69119717768437],[-122.26748318216387,47.69099353791898],[-122.26735181008108,47.69079502791389],[-122.26731983661794,47.6907584993437],[-122.26728165780499,47.69071785053232],[-122.26726239833228,47.69070071192307],[-122.2672405456393,47.69068126565352],[-122.26721259180906,47.69064858152515],[-122.267180221654,47.69061073372357],[-122.26713913620912,47.69059351362971],[-122.26710398432442,47.69057056368247],[-122.26707450782449,47.69053254710494],[-122.26704415598964,47.69049959691326],[-122.26699799294684,47.69048231184164],[-122.26696003689797,47.69047263116516],[-122.26695044925218,47.69047018583931],[-122.26688617575283,47.69042206729191],[-122.26685344983646,47.69039505936608],[-122.26679677673654,47.69034641698286],[-122.26731094903874,47.6903445328384],[-122.26752409869844,47.69034262172028],[-122.26800267284287,47.69033839748447],[-122.26806707914604,47.69042807148318],[-122.26827884535012,47.69070688417174],[-122.26844380849265,47.69090844055849],[-122.26881625467136,47.69121517645801],[-122.26923103378951,47.69145548517291],[-122.26938395318535,47.69155664650378],[-122.2697729486679,47.6918139792329],[-122.2702430084646,47.69212547837714],[-122.27064833650955,47.69235394824123],[-122.2712053817636,47.69261644773089],[-122.27187126073531,47.69281253527664],[-122.27188876718992,47.69276642905903],[-122.27190227565816,47.69274093844884],[-122.27192910255695,47.69271977776797],[-122.27198462690284,47.69268998665643],[-122.2720208170607,47.69267697663601],[-122.27205964599656,47.69266757531869],[-122.2721001001523,47.69266188043223],[-122.27213558496729,47.69266006156708],[-122.2721767455622,47.69266155544875],[-122.27221189281859,47.6926658673718],[-122.27225071221633,47.69267446004346],[-122.27225677095448,47.69267643127333],[-122.27228810751087,47.69268662672116],[-122.27231791470308,47.6926997459154],[-122.27234887743361,47.69271794871722],[-122.27237272299622,47.6927357703733],[-122.27284156482699,47.69281922047677],[-122.27288264064366,47.69281763049122],[-122.27292366846561,47.69281432730527],[-122.2729646505239,47.69280935406009],[-122.27300456970016,47.69280268043465],[-122.27307720772671,47.69278595369911],[-122.27311496944053,47.69277468008608],[-122.2731516718282,47.69276183485767],[-122.27318229983021,47.69274962299925],[-122.27321638876496,47.69273406898061],[-122.27327640479638,47.69270152081287],[-122.27330581962124,47.69268216970182],[-122.27333020700749,47.69266459589666],[-122.27335651542913,47.69264305605655],[-122.27338076559275,47.6926205142226],[-122.27340295696051,47.69259696970104],[-122.27342722488963,47.6925750702603],[-122.27345456353454,47.69255407436986],[-122.27351095277514,47.69251891610362],[-122.27354399333312,47.69250217526121],[-122.27360975718808,47.6924755527249],[-122.27364196447168,47.69246537712117],[-122.2736802638897,47.69245521085428],[-122.27371963158733,47.69244695860657],[-122.2737545051964,47.69244141964568],[-122.27379498986636,47.6924368377499],[-122.27383603803506,47.69243426223895],[-122.27445882829872,47.6923760482895],[-122.27504087952505,47.69222182040129],[-122.27535583808128,47.69213827577684],[-122.27544114040889,47.69219379230456],[-122.27547494933333,47.69220476088406],[-122.27551232721197,47.69221628410136],[-122.2755450773048,47.69222568072166],[-122.27557832321077,47.69223464252227],[-122.27564426642161,47.69225111650651],[-122.27568359853406,47.69225987314882],[-122.27571780414006,47.69226685205953],[-122.27575760895817,47.69227435990451],[-122.27579739713988,47.69228126813624],[-122.27583206528811,47.69228661335362],[-122.27587232669731,47.69229227313121],[-122.27591307626352,47.69229724126865],[-122.27594820812246,47.69230099524381],[-122.2759889232139,47.69230472135209],[-122.27602784204325,47.69230762759643],[-122.27603012763693,47.69230779827201],[-122.27607131356584,47.69231019031508],[-122.27611247994994,47.69231189714367],[-122.27614804102268,47.69231281784751],[-122.276189171729,47.69231323984295],[-122.27626021961476,47.69231242598056],[-122.27630130035075,47.6923110487869],[-122.27633678767644,47.69230931421412],[-122.27637783273065,47.69230665253831],[-122.27641885925757,47.69230330528415],[-122.27645429965489,47.69229990029405],[-122.27652968864217,47.69229089121424],[-122.2765645778342,47.69228590818274],[-122.27660450446955,47.69227953292054],[-122.27664441257885,47.69227247243166],[-122.27667875002533,47.69226591101437],[-122.27671811710327,47.69225765773099],[-122.27675191880543,47.69225007508115],[-122.27679074365827,47.69224058620083],[-122.27682904466326,47.69223050413187],[-122.27686732728428,47.69221977965397],[-122.27726282456564,47.69203864118071],[-122.27772214713276,47.69179786888401],[-122.27804539509607,47.69162929657085],[-122.27807549863863,47.69161653338141],[-122.27811168295263,47.69160339301618],[-122.27814944100456,47.69159207493782],[-122.27818827039171,47.69158275678833],[-122.2782281700884,47.69157543893066],[-122.27826306697033,47.69157075500318],[-122.27830408922327,47.69156727866004],[-122.27834516813519,47.69156585827707],[-122.27838071563107,47.69156630709574],[-122.27842190294193,47.69156878390302],[-122.27849170243847,47.6915778815136],[-122.27853101612187,47.69158599442699],[-122.27856936909387,47.69159604739694],[-122.2786016331142,47.69160622074087],[-122.27863754589957,47.69161981785914],[-122.2786719855326,47.69163519026191],[-122.27872714512577,47.69166546605876],[-122.27875612438388,47.69168527763586],[-122.27878311156903,47.69170648571757],[-122.27880759763067,47.69172901042267],[-122.27882906961494,47.69175268768664],[-122.27884853997574,47.69177741833053],[-122.27886379726704,47.69180198795641],[-122.27886448363037,47.69180309324344],[-122.2788779089687,47.69182948589493],[-122.2791881955264,47.69225325370786],[-122.27998593826543,47.69293611942047],[-122.2800064623378,47.69489460833962],[-122.28000787634282,47.69560167474384],[-122.28002009181644,47.69671484351924],[-122.28003196476993,47.69737816292293]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000061,"geom:area_square_m":510984.426662,"geom:bbox":"-122.280064848,47.6903383975,-122.266796777,47.6993732534","geom:latitude":47.695395,"geom:longitude":-122.275515,"iso:country":"US","lbl:latitude":47.695805,"lbl:longitude":-122.276717,"lbl:max_zoom":18,"mps:latitude":47.695805,"mps:longitude":-122.276717,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":47.695805,"reversegeo:longitude":-122.276717,"src:geom":"mz","wof:belongsto":[85869455,102191575,890536775,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1a8005e217bd7d12fae7e7f32de5dea9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536775,"microhood_id":890536733,"neighbourhood_id":85869455,"region_id":85688623}],"wof:id":890536733,"wof:lastmodified":1566631088,"wof:name":"Lavilla","wof:parent_id":85869455,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85829979],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536735.geojson b/fixtures/microhoods/890536735.geojson new file mode 100644 index 0000000..2154bbc --- /dev/null +++ b/fixtures/microhoods/890536735.geojson @@ -0,0 +1 @@ +{"id":890536735,"type":"Feature","bbox":[-122.41743540579773,47.6685170293626,-122.41282951874524,47.67120350035842],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.41743540579773,47.66978426943595],[-122.41587617312634,47.67042552134254],[-122.41311497105774,47.67113783682368],[-122.41311497105771,47.67113783682369],[-122.41286404725709,47.67119671450534],[-122.41282951874524,47.67120350035842],[-122.412861991586,47.66954904304613],[-122.41289749730964,47.66941309842393],[-122.41296666846789,47.66926068068432],[-122.41305636564404,47.66913999836024],[-122.41319842384097,47.6690239369214],[-122.41340075831836,47.66892758519533],[-122.41387238819648,47.66873260086214],[-122.41409022224445,47.66864378681048],[-122.4142736014642,47.66857911011298],[-122.41444753148743,47.66854416198201],[-122.41464650176333,47.6685170293626],[-122.41741782993283,47.66853514621697],[-122.41743540579773,47.66978426943595]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":73707.576354,"geom:bbox":"-122.417435406,47.6685170294,-122.412829519,47.6712035004","geom:latitude":47.66964,"geom:longitude":-122.414975,"iso:country":"US","lbl:latitude":47.669594,"lbl:longitude":-122.414931,"lbl:max_zoom":18,"mps:latitude":47.669594,"mps:longitude":-122.414931,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Lawtonwood"],"name:und_x_variant":["Lawton Wood"],"reversegeo:latitude":47.669594,"reversegeo:longitude":-122.414931,"src:geom":"mz","wof:belongsto":[85688623,102191575,85633793,101730401,102086191,85831927],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1dd214060e409a94ae8bc28db410315b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536735,"neighbourhood":85831927,"region_id":85688623}],"wof:id":890536735,"wof:lastmodified":1566631089,"wof:name":"Lawtonwood","wof:parent_id":85831927,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85830035],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536737.geojson b/fixtures/microhoods/890536737.geojson new file mode 100644 index 0000000..740b842 --- /dev/null +++ b/fixtures/microhoods/890536737.geojson @@ -0,0 +1 @@ +{"id":890536737,"type":"Feature","bbox":[-122.34020254554144,47.66500247441277,-122.3216002887554,47.67310782877587],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32199160708142,47.66500247441277],[-122.34020254554144,47.66503763796115],[-122.34009982450611,47.66572989785856],[-122.34008796920062,47.66640613183271],[-122.34008690066935,47.66708693567627],[-122.34008247183569,47.66791435313605],[-122.34007715640986,47.66844864427951],[-122.34007485692835,47.66847433815658],[-122.3400725556844,47.66849998923759],[-122.34006974750359,47.66852564702367],[-122.34006643114445,47.66855126871198],[-122.34006311426259,47.66857689040707],[-122.34005979665608,47.66860246929234],[-122.34005597159135,47.66862805488945],[-122.34005163781666,47.66865360404471],[-122.3400473040479,47.66867915355058],[-122.34004246209781,47.66870466695849],[-122.34003761890214,47.66873013756338],[-122.34003226823539,47.66875561452903],[-122.34002640939573,47.66878105574741],[-122.34002177151346,47.66919871656398],[-122.34001884612698,47.66939536607482],[-122.34001809482918,47.66943946227094],[-122.3400174680942,47.66947036112582],[-122.34001331308818,47.66974714483661],[-122.34001053143642,47.6698962357192],[-122.34000929040607,47.67020352854389],[-122.33904991715849,47.67019260601268],[-122.33821350169184,47.67018712056507],[-122.33797966274497,47.67019020937283],[-122.33797623920354,47.67058026246144],[-122.33718010117647,47.67124795742288],[-122.33700419213496,47.67072784101674],[-122.3366962239636,47.67085233983823],[-122.3366565986478,47.67086832925596],[-122.3366245050338,47.67088156307754],[-122.33659191012619,47.67089501795171],[-122.33655982638315,47.6709085941779],[-122.33652825382514,47.67092229245817],[-122.33649617872436,47.67093616863725],[-122.33646461552684,47.67095020968043],[-122.33643305653521,47.67096437876571],[-122.33640200820906,47.67097866991285],[-122.33637096481714,47.67099313226294],[-122.33633992512132,47.67100772301312],[-122.33630889036944,47.67102248531715],[-122.33627785931314,47.67103737602126],[-122.33624733943138,47.6710523884305],[-122.33621682448279,47.67106757204298],[-122.33618682018947,47.67108287736795],[-122.33615681960158,47.67109831144447],[-122.33612682270876,47.67111387392164],[-122.33609683126782,47.6711296075955],[-122.33606735121043,47.67114550614328],[-122.3360378741194,47.67116148993138],[-122.33600840197055,47.67117764527417],[-122.3359794392395,47.67119387952805],[-122.33595048195974,47.6712102849792],[-122.3359215291023,47.67122686199208],[-122.3358925792207,47.6712435245965],[-122.33586414123201,47.67126035171853],[-122.33583621266158,47.67127725775288],[-122.33580778206039,47.67129434167801],[-122.33577986212505,47.6713115476694],[-122.33356189920572,47.67310782877587],[-122.33355830594958,47.67231530791759],[-122.33337186498161,47.67232581752052],[-122.33203967452742,47.67230423447019],[-122.32921081182498,47.67227624874275],[-122.32460190502653,47.67225192816661],[-122.32297518561542,47.67224060659674],[-122.3216002887554,47.67223359833682],[-122.3216215221541,47.67215992948486],[-122.32182096620521,47.67122136014388],[-122.32193067913323,47.67032145130551],[-122.32195601685544,47.66946985849449],[-122.32196779535356,47.66895982146169],[-122.32197623181985,47.66859888150832],[-122.32196761425182,47.66773106591216],[-122.32198393035914,47.66686570943951],[-122.32198759562328,47.66598385217608],[-122.32199126076306,47.66510199488264],[-122.32199160708142,47.66500247441277]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000124,"geom:area_square_m":1034753.473197,"geom:bbox":"-122.340202546,47.6650024744,-122.321600289,47.6731078288","geom:latitude":47.668492,"geom:longitude":-122.33057,"iso:country":"US","lbl:latitude":47.668681,"lbl:longitude":-122.330589,"lbl:max_zoom":18,"mps:latitude":47.668681,"mps:longitude":-122.330589,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Meridian"],"name:epo_x_preferred":["Meridian"],"reversegeo:latitude":47.668681,"reversegeo:longitude":-122.330589,"src:geom":"mz","wof:belongsto":[85854291,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q14713815"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"04d9c596da32baa5c7922306141dbe8e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536737,"neighbourhood_id":85854291,"region_id":85688623}],"wof:id":890536737,"wof:lastmodified":1566631086,"wof:name":"Meridian","wof:parent_id":85854291,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85833815],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536739.geojson b/fixtures/microhoods/890536739.geojson new file mode 100644 index 0000000..8806305 --- /dev/null +++ b/fixtures/microhoods/890536739.geojson @@ -0,0 +1 @@ +{"id":890536739,"type":"Feature","bbox":[-122.25413996329297,47.50860225776353,-122.24781336688991,47.51472066346493],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.25413996329297,47.51373291013724],[-122.25251833813496,47.51472066346493],[-122.25060252817794,47.51320666125219],[-122.24869037430402,47.51172303399957],[-122.24822022091503,47.51130557612909],[-122.24836193877289,47.50993070999478],[-122.24836375157675,47.50977383880713],[-122.24836375157675,47.50977383880711],[-122.24801086054835,47.50916609360937],[-122.24784675485164,47.50889741262571],[-122.24784401245974,47.50887092712398],[-122.2478387443801,47.50884455836595],[-122.24783095708554,47.50881856388295],[-122.24782014750912,47.50879303557679],[-122.24781336688991,47.5087668572811],[-122.24781619094894,47.50874043090381],[-122.24782865801329,47.50871516967455],[-122.24784878561296,47.50869259762705],[-122.24787660680477,47.50867391431246],[-122.24790856033165,47.50865839265126],[-122.24794207237068,47.50864439408178],[-122.2479766403632,47.5086320101486],[-122.24801226496481,47.50862128401183],[-122.24804945441038,47.50861229497622],[-122.2480872061862,47.50860539842686],[-122.24812607151514,47.50860225776353],[-122.24816555317375,47.50860317996116],[-122.24820362454894,47.5086080611107],[-122.24824079039645,47.50861685210667],[-122.24827552654432,47.50862931502966],[-122.248306814083,47.50864516284835],[-122.24833464266716,47.50866405244567],[-122.24835748335238,47.50868553222345],[-122.24837532281983,47.50870913064665],[-122.24838814647988,47.50873429126054],[-122.24900905798732,47.50948787385813],[-122.24902840246475,47.50951098207243],[-122.24904624601476,47.50953470915294],[-122.24906208089178,47.50955897509112],[-122.24907590710306,47.50958378023868],[-122.24908822771276,47.50960903233738],[-122.24909853449454,47.50963465278846],[-122.24910733386342,47.50966063457749],[-122.24911360932904,47.50968681910305],[-122.24911837272714,47.5097131937517],[-122.24912111646475,47.50973972238402],[-122.24912183871284,47.50976631868423],[-122.24912053600023,47.50979285494239],[-122.24907693020667,47.510087173313],[-122.24908118886152,47.51011359707393],[-122.24908847337365,47.51013968338614],[-122.24909878194059,47.51016534663476],[-122.24911210705534,47.51019032930044],[-122.24912844756886,47.51021458892903],[-122.24914678685867,47.51023792410109],[-122.2491681334065,47.51026023625558],[-122.24919197715774,47.51028136047604],[-122.24921831410852,47.51030116835575],[-122.24924663704482,47.51031958057973],[-122.24927694195154,47.51033646839053],[-122.24930871994188,47.51035171002705],[-122.24934298001347,47.51036520692002],[-122.24937769781569,47.5103769414892],[-122.24941438879864,47.51038680920167],[-122.24945203825426,47.51039473672024],[-122.24949014066235,47.51040068823095],[-122.24952869328338,47.51040462024714],[-122.24956769767608,47.51040653309983],[-122.25025677431654,47.51063284688051],[-122.25413996329297,47.51373291013724]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000012,"geom:area_square_m":98402.050627,"geom:bbox":"-122.254139963,47.5086022578,-122.247813367,47.5147206635","geom:latitude":47.512096,"geom:longitude":-122.250751,"iso:country":"US","lbl:latitude":47.512135,"lbl:longitude":-122.2507,"lbl:max_zoom":18,"mps:latitude":47.512135,"mps:longitude":-122.2507,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":17,"reversegeo:latitude":47.512135,"reversegeo:longitude":-122.2507,"src:geom":"mz","wof:belongsto":[85843635,102191575,890536785,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4ca93dc0020dda9f770e652ab40aeb27","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536785,"microhood_id":890536739,"neighbourhood_id":85843635,"region_id":85688623}],"wof:id":890536739,"wof:lastmodified":1566631085,"wof:name":"Tamill","wof:parent_id":85843635,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85851787],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536741.geojson b/fixtures/microhoods/890536741.geojson new file mode 100644 index 0000000..9bc3f49 --- /dev/null +++ b/fixtures/microhoods/890536741.geojson @@ -0,0 +1 @@ +{"id":890536741,"type":"Feature","bbox":[-122.32359042466285,47.53878576729704,-122.31406828732075,47.55200511659389],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32067970096485,47.53878576729704],[-122.32359042466285,47.54053151833026],[-122.32002203245423,47.55144377477467],[-122.31967676664947,47.55200511659389],[-122.31886522572304,47.55124663053871],[-122.318454621823,47.55076666221078],[-122.31783246820312,47.55011122550763],[-122.31728360650905,47.54961112258916],[-122.31692987650366,47.54927847457665],[-122.3162067036386,47.54862983209186],[-122.31406828732075,47.54751132073058],[-122.31851961564439,47.54529643475194],[-122.32067970096485,47.53878576729704]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000046,"geom:area_square_m":387518.376331,"geom:bbox":"-122.323590425,47.5387857673,-122.314068287,47.5520051166","geom:latitude":47.545584,"geom:longitude":-122.319729,"iso:country":"US","lbl:latitude":47.547752,"lbl:longitude":-122.318864,"lbl:max_zoom":18,"mps:latitude":47.547752,"mps:longitude":-122.318864,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":47.547752,"reversegeo:longitude":-122.318864,"src:geom":"mz","wof:belongsto":[85821315,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"23d3ea73819ef1e7ad82902f3ce32a91","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536741,"neighbourhood_id":85821315,"region_id":85688623}],"wof:id":890536741,"wof:lastmodified":1566631088,"wof:name":"Van Asselt","wof:parent_id":85821315,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85853483],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536745.geojson b/fixtures/microhoods/890536745.geojson new file mode 100644 index 0000000..9669cac --- /dev/null +++ b/fixtures/microhoods/890536745.geojson @@ -0,0 +1 @@ +{"id":890536745,"type":"Feature","bbox":[-122.37256526700872,47.56299416115089,-122.35720848379091,47.57148701532461],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.357216854542,47.57102908819047],[-122.35720848379091,47.56472637622379],[-122.36029039579644,47.56472132066673],[-122.36048651010043,47.56388953995276],[-122.3605572028796,47.5634624653125],[-122.3606067830794,47.56302663826543],[-122.3632401533934,47.56299416115089],[-122.3632196335351,47.56471559861772],[-122.37256526700872,47.56469929712145],[-122.37233939265676,47.56508961954079],[-122.37123618743003,47.56688258936244],[-122.37081173579575,47.56756672750586],[-122.37076969703666,47.56859586038864],[-122.37071134780695,47.56944998022016],[-122.37070225984752,47.5698626513575],[-122.37066530139232,47.57077235103201],[-122.37064947323432,47.57083666047686],[-122.37064777398517,47.57089919315453],[-122.37064657768127,47.57094445287635],[-122.37064487414088,47.57098967698763],[-122.37064368035965,47.5710350223146],[-122.3706420071511,47.57108127403871],[-122.37064034479376,47.57112791099311],[-122.37063716776733,47.57117469723661],[-122.3706339907352,47.57122148348004],[-122.37063082127906,47.57126852653886],[-122.37062866051349,47.57131542750052],[-122.37062649974399,47.57136232846209],[-122.37062679205597,47.57140653968227],[-122.37062772135549,47.57143801782784],[-122.37043400116457,47.57146402972101],[-122.37038900950849,47.5714669087883],[-122.37018580707762,47.57148053807666],[-122.36932599596383,47.57148701532461],[-122.36863244824922,47.5714810009436],[-122.36753699155395,47.57148297703058],[-122.36643429603154,47.57147989900597],[-122.36533529529646,47.57148190166892],[-122.3642362932187,47.57148385090801],[-122.36314111632586,47.57147806878952],[-122.36203842116944,47.57147494813873],[-122.36094584980627,47.57147163761121],[-122.36090786643075,47.57147171937447],[-122.36086987928826,47.57147167271695],[-122.36083188963474,47.57147154044135],[-122.36079389747032,47.57147132254765],[-122.36075843502329,47.57147102783853],[-122.36072246406822,47.57147065395913],[-122.36068699711869,47.57147018800996],[-122.36065102239849,47.57146968569992],[-122.36061504391282,47.57146905497038],[-122.3605795706885,47.57146837497423],[-122.36054358843857,47.57146761581399],[-122.36050810840062,47.57146672108733],[-122.3604721211318,47.57146579069365],[-122.36043663785932,47.57146476788049],[-122.36040064556194,47.57146366590257],[-122.36036515851647,47.57146251430812],[-122.36032916120153,47.57146124109679],[-122.36029366736518,47.57145987547351],[-122.36025817279406,47.57145846702944],[-122.36022216920924,47.57145697977072],[-122.36018666962187,47.57145540009356],[-122.36015116699785,47.57145373445603],[-122.36011515587916,47.57145198999634],[-122.36007964876873,47.57145015346957],[-122.36004413914064,47.57144823097543],[-122.36000812049997,47.57144622966561],[-122.35997260659421,47.57144417874797],[-122.35993709068968,47.57144204185606],[-122.35990157103394,47.57143977689577],[-122.3598655436109,47.57143747557102],[-122.35983048223703,47.57143357623984],[-122.35979541835904,47.57142959129248],[-122.3597598459799,47.57142552717082],[-122.35972477583942,47.57142132818813],[-122.35968970318501,47.57141704323836],[-122.35965412078589,47.57141263666198],[-122.35961904312491,47.57140818047959],[-122.35958396044144,47.57140355272467],[-122.35954887651997,47.57139888250705],[-122.35951378883105,47.57139408351963],[-122.35947869915815,47.57138919890907],[-122.35944157144637,47.57138391344689],[-122.35940443996866,47.57137849921364],[-122.35936730421712,47.57137295656705],[-122.35933270801513,47.57136763709323],[-122.35929760279663,47.57136223845033],[-122.35926300158148,47.57135674739361],[-122.35922789010628,47.57135113471558],[-122.35919328263476,47.57134542962412],[-122.35915867266246,47.57133963891665],[-122.35912405893534,47.57133371979051],[-122.35908944217911,47.57132771470452],[-122.35905482344107,47.57132162399559],[-122.35902020220298,47.5713154476707],[-122.35898557721096,47.57130914292709],[-122.35895094920086,47.57130275257449],[-122.35891631920968,47.57129627659899],[-122.35888219144059,47.57128966506502],[-122.3588475551867,47.5712829747041],[-122.3586280264631,47.5712407192875],[-122.35835816710453,47.57119198345118],[-122.35811997781573,47.57115241946617],[-122.35788136491821,47.57111564534043],[-122.3576413155965,47.57108171781942],[-122.35740084333631,47.5710506233086],[-122.357216854542,47.57102908819047]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000098,"geom:area_square_m":819241.339967,"geom:bbox":"-122.372565267,47.5629941612,-122.357208484,47.5714870153","geom:latitude":47.567801,"geom:longitude":-122.364119,"iso:country":"US","lbl:latitude":47.568099,"lbl:longitude":-122.36412,"lbl:max_zoom":18,"mps:latitude":47.568099,"mps:longitude":-122.36412,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":15,"name:eng_x_preferred":["Youngstown"],"name:und_x_variant":["Humphries"],"reversegeo:latitude":47.568099,"reversegeo:longitude":-122.36412,"src:geom":"mz","wof:belongsto":[85869543,102191575,890536773,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"622b78d41de14737c39d8c50c05eca1e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536773,"microhood_id":890536745,"neighbourhood_id":85869543,"region_id":85688623}],"wof:id":890536745,"wof:lastmodified":1566631092,"wof:name":"Youngstown","wof:parent_id":85869543,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85859435],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536747.geojson b/fixtures/microhoods/890536747.geojson new file mode 100644 index 0000000..c11240c --- /dev/null +++ b/fixtures/microhoods/890536747.geojson @@ -0,0 +1 @@ +{"id":890536747,"type":"Feature","bbox":[-122.344605,47.571314,-122.325936,47.596482],"geometry":{"type":"Polygon","coordinates":[[[-122.32905,47.594217],[-122.329049,47.594217],[-122.329049,47.594324],[-122.329046,47.594724],[-122.329049,47.595074],[-122.329048,47.595958],[-122.329042,47.596482],[-122.328738,47.596328],[-122.328736,47.596327],[-122.328513,47.596214],[-122.328189,47.596051],[-122.328189,47.596041],[-122.327718,47.59581],[-122.327712,47.59581],[-122.327684,47.595796],[-122.32766,47.595799],[-122.32736,47.595835],[-122.32711,47.595835],[-122.327104,47.595835],[-122.327087,47.595835],[-122.326376,47.595835],[-122.326376,47.595782],[-122.326378,47.595312],[-122.326387,47.595272],[-122.326467,47.595177],[-122.325936,47.594906],[-122.325973,47.594786],[-122.325969,47.594431],[-122.32597,47.592606],[-122.32597,47.592553],[-122.32597,47.592409],[-122.326062,47.592391],[-122.326166,47.571331],[-122.344605,47.571314],[-122.344483,47.57175],[-122.344491,47.571788],[-122.344493,47.571881],[-122.344492,47.57192],[-122.344468,47.571959],[-122.344468,47.571962],[-122.344473,47.572013],[-122.344425,47.572044],[-122.344367,47.572061],[-122.34429,47.572121],[-122.344233,47.572192],[-122.344195,47.572255],[-122.344184,47.572273],[-122.344175,47.57229],[-122.344143,47.572347],[-122.344093,47.572395],[-122.344056,47.572421],[-122.344154,47.57242],[-122.344124,47.572516],[-122.344075,47.572627],[-122.344059,47.572666],[-122.344014,47.572811],[-122.343929,47.572995],[-122.343852,47.573205],[-122.343773,47.57342],[-122.343704,47.573588],[-122.343671,47.573637],[-122.343632,47.573657],[-122.343582,47.573666],[-122.343387,47.573665],[-122.343185,47.573665],[-122.343014,47.573668],[-122.343011,47.573841],[-122.34301,47.574014],[-122.34301,47.574199],[-122.34301,47.5742],[-122.343009,47.574344],[-122.34301,47.574499],[-122.343003,47.574636],[-122.343003,47.574773],[-122.343004,47.574886],[-122.343004,47.574887],[-122.343004,47.575003],[-122.343003,47.575156],[-122.343003,47.575274],[-122.343004,47.575406],[-122.343004,47.575582],[-122.343003,47.575731],[-122.343003,47.575861],[-122.343003,47.576033],[-122.343003,47.576034],[-122.343,47.576171],[-122.343,47.57622],[-122.343001,47.576317],[-122.343,47.576439],[-122.343,47.576581],[-122.343,47.576743],[-122.342999,47.576908],[-122.343,47.577042],[-122.342999,47.577147],[-122.343,47.577268],[-122.343,47.577382],[-122.342999,47.577498],[-122.343,47.577614],[-122.343,47.577725],[-122.342999,47.57784],[-122.343,47.57793],[-122.343,47.577931],[-122.343,47.577932],[-122.343,47.577986],[-122.342914,47.577988],[-122.342795,47.577987],[-122.34269,47.577987],[-122.342535,47.577988],[-122.34253,47.578065],[-122.34253,47.578071],[-122.342526,47.578193],[-122.342526,47.5783],[-122.342526,47.578302],[-122.342524,47.578434],[-122.342523,47.578539],[-122.342521,47.578687],[-122.342521,47.578748],[-122.342515,47.578824],[-122.342496,47.578848],[-122.342492,47.578854],[-122.342464,47.578885],[-122.342437,47.578915],[-122.342373,47.578955],[-122.342306,47.578945],[-122.3423,47.578942],[-122.342189,47.578885],[-122.342077,47.578824],[-122.341972,47.578746],[-122.341885,47.578682],[-122.341776,47.578613],[-122.341769,47.578609],[-122.34176,47.578602],[-122.341682,47.578547],[-122.341592,47.578486],[-122.341481,47.578414],[-122.341369,47.578348],[-122.341276,47.578284],[-122.341193,47.578237],[-122.34112,47.578181],[-122.341049,47.578127],[-122.340978,47.578093],[-122.340923,47.578081],[-122.340887,47.578086],[-122.340819,47.578054],[-122.340765,47.578022],[-122.340739,47.578006],[-122.340711,47.577982],[-122.340699,47.577972],[-122.340611,47.577939],[-122.340484,47.57791],[-122.340433,47.577911],[-122.340391,47.577897],[-122.340306,47.577883],[-122.340262,47.577874],[-122.340247,47.577872],[-122.340234,47.577873],[-122.340209,47.577877],[-122.340179,47.577936],[-122.340191,47.578059],[-122.340188,47.578168],[-122.340189,47.578273],[-122.34019,47.578393],[-122.34019,47.578461],[-122.340208,47.578499],[-122.340216,47.578516],[-122.340292,47.578572],[-122.340442,47.578667],[-122.34059,47.578766],[-122.34077,47.57889],[-122.340865,47.578954],[-122.340976,47.579029],[-122.341111,47.57912],[-122.341168,47.579159],[-122.341241,47.579207],[-122.341363,47.579289],[-122.341485,47.579372],[-122.341555,47.57942],[-122.341734,47.579546],[-122.341906,47.579659],[-122.342066,47.579761],[-122.342279,47.579912],[-122.342453,47.580029],[-122.342986,47.580386],[-122.343005,47.580415],[-122.343009,47.580439],[-122.343008,47.580628],[-122.343008,47.580691],[-122.343009,47.581177],[-122.34301,47.58145],[-122.343011,47.581723],[-122.343011,47.582132],[-122.34301,47.582541],[-122.34301,47.582589],[-122.34301,47.582685],[-122.343011,47.583462],[-122.343011,47.584652],[-122.343009,47.585497],[-122.342562,47.5855],[-122.342566,47.585527],[-122.342574,47.585604],[-122.342578,47.58567],[-122.342581,47.585729],[-122.342572,47.585799],[-122.342552,47.585851],[-122.342546,47.585882],[-122.342544,47.585894],[-122.342543,47.585941],[-122.342543,47.585942],[-122.342544,47.585988],[-122.342546,47.58604],[-122.342543,47.58609],[-122.342549,47.586136],[-122.342575,47.586203],[-122.342603,47.586253],[-122.34265,47.586252],[-122.342695,47.586251],[-122.342718,47.586247],[-122.342775,47.586238],[-122.342779,47.586317],[-122.342779,47.58632],[-122.34278,47.586458],[-122.342783,47.586613],[-122.342784,47.586777],[-122.342779,47.58692],[-122.342782,47.587048],[-122.342782,47.587052],[-122.342782,47.587053],[-122.342783,47.587199],[-122.342785,47.587296],[-122.342869,47.587322],[-122.342988,47.587375],[-122.34298,47.587635],[-122.342705,47.587641],[-122.342568,47.587643],[-122.342578,47.587835],[-122.342586,47.588063],[-122.342592,47.58821],[-122.34259,47.588219],[-122.342573,47.588289],[-122.342573,47.588339],[-122.342575,47.588439],[-122.342601,47.588498],[-122.342607,47.588512],[-122.342688,47.588561],[-122.342768,47.588584],[-122.34285,47.588632],[-122.342859,47.58864],[-122.34289,47.588668],[-122.342901,47.588689],[-122.342911,47.588709],[-122.342947,47.588773],[-122.342965,47.588862],[-122.342958,47.588951],[-122.342944,47.589027],[-122.342926,47.589109],[-122.34288,47.589168],[-122.342885,47.589238],[-122.342814,47.589264],[-122.342751,47.589289],[-122.342674,47.589334],[-122.342608,47.589369],[-122.342522,47.589402],[-122.342428,47.589436],[-122.342361,47.589475],[-122.342363,47.589523],[-122.342604,47.589602],[-122.342774,47.589649],[-122.342925,47.589694],[-122.34293,47.589788],[-122.342929,47.589924],[-122.342922,47.590039],[-122.342777,47.590041],[-122.342463,47.590046],[-122.342156,47.590044],[-122.34184,47.590042],[-122.341617,47.590046],[-122.341234,47.590045],[-122.340859,47.590046],[-122.34052,47.590047],[-122.34035,47.590048],[-122.339774,47.590045],[-122.339641,47.590045],[-122.339374,47.590045],[-122.339007,47.59004],[-122.338548,47.590046],[-122.338266,47.590053],[-122.338266,47.590055],[-122.338265,47.590212],[-122.338268,47.590279],[-122.329058,47.590283],[-122.329043,47.592397],[-122.32905,47.592918],[-122.329049,47.593517],[-122.329052,47.593907],[-122.32905,47.594217]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000334,"geom:area_square_m":2787659.631912,"geom:bbox":"-122.344605,47.571314,-122.325936,47.596482","geom:latitude":47.581328,"geom:longitude":-122.334161,"iso:country":"US","lbl:latitude":47.582402,"lbl:longitude":-122.333981,"lbl:max_zoom":18,"mps:latitude":47.582402,"mps:longitude":-122.333981,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":13,"name:deu_x_preferred":["SoDo"],"name:eng_x_preferred":["SoDo"],"name:fra_x_preferred":["SoDo"],"reversegeo:latitude":47.582402,"reversegeo:longitude":-122.333981,"src:geom":"mz","wof:belongsto":[85869361,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7548990"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a8ff0d855d6dec3ef25d7974134544e3","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536747,"neighbourhood_id":85869361,"region_id":85688623}],"wof:id":890536747,"wof:lastmodified":1617130352,"wof:name":"SoDo","wof:parent_id":85869361,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866043],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536749.geojson b/fixtures/microhoods/890536749.geojson new file mode 100644 index 0000000..b7f91f4 --- /dev/null +++ b/fixtures/microhoods/890536749.geojson @@ -0,0 +1 @@ +{"id":890536749,"type":"Feature","bbox":[-122.35735791021176,47.60233736648863,-122.33492826034218,47.61702667903253],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.35522109853791,47.61496784184354],[-122.3525375973482,47.61702667903253],[-122.34124669338033,47.61033051417719],[-122.33902796812124,47.60784968150822],[-122.33492826034218,47.60326597032015],[-122.33605482276074,47.60280898914938],[-122.33715467674294,47.60234035352926],[-122.33941126218082,47.60233736648863],[-122.339412885323,47.60242847431893],[-122.33941461059538,47.60248809035406],[-122.33965799241959,47.60249253708746],[-122.33984254753362,47.60249557744396],[-122.33984856002697,47.60256323412189],[-122.3396722456574,47.60256475477608],[-122.3394188342903,47.60256399659736],[-122.3394213404113,47.60265059390333],[-122.33932201025783,47.60265053786877],[-122.3393211702243,47.60276160051252],[-122.33931963191952,47.60284855144061],[-122.33949918543263,47.6028538437653],[-122.33986106337026,47.60285509346765],[-122.3398722684564,47.60292705141239],[-122.33954280418394,47.60292511570463],[-122.33940896247192,47.60292333144223],[-122.33940803066339,47.60296117498751],[-122.33921538462977,47.60295879799899],[-122.33921378663032,47.60311374291096],[-122.33921126041368,47.60323661019682],[-122.33943640859012,47.60324129878871],[-122.33964943061615,47.60324726183926],[-122.33965238799489,47.6033144019714],[-122.3394638563209,47.60331415575035],[-122.33922365305969,47.60331459350759],[-122.3392196304104,47.60342077124337],[-122.33921357283091,47.60352667617756],[-122.339004967738,47.60353329290779],[-122.33901016610997,47.60364290470584],[-122.33903535672582,47.60370782268274],[-122.33901069710033,47.60380137753731],[-122.33901081153029,47.60387541059891],[-122.33930280955532,47.60387840086047],[-122.33955110536931,47.60387729883329],[-122.33957394365099,47.60389593349498],[-122.33984073851119,47.6039036264173],[-122.34010142315365,47.60391032845183],[-122.34012486624187,47.60398486614184],[-122.34021135892108,47.60406653808855],[-122.34031774488079,47.60417013987177],[-122.3404345173916,47.60428238649949],[-122.34049389713904,47.60433781150093],[-122.34046486654067,47.60438536715994],[-122.34029961912671,47.6043842571793],[-122.340026948225,47.60438375533305],[-122.33986882502167,47.60438366403504],[-122.33971875218856,47.6043815383587],[-122.33950381771493,47.60437971380443],[-122.33934766554869,47.60437766776759],[-122.33922502835843,47.60437792011464],[-122.33933921194352,47.60450584027958],[-122.33940321873537,47.60451103405077],[-122.33942517744973,47.60453430768126],[-122.33947291720635,47.60453778882592],[-122.33949750641837,47.604581892557],[-122.3396402514258,47.60461097869914],[-122.33978259295448,47.6046261031896],[-122.34013645692718,47.6046302004801],[-122.34043341334255,47.60462926638492],[-122.34043527666725,47.60476360030033],[-122.34043828357848,47.60493742129209],[-122.34020518843661,47.60493858078355],[-122.3400035029846,47.60493932385903],[-122.33980379670969,47.60493841218449],[-122.33990959948714,47.60505684598762],[-122.34001963763521,47.60518152156019],[-122.34010379590795,47.60514750287046],[-122.340231365503,47.60514251451115],[-122.34037125320982,47.60514284652785],[-122.34042403349083,47.60518036434822],[-122.34043269509412,47.60523444728936],[-122.34057066786714,47.60523866062541],[-122.34070739676608,47.6052349213176],[-122.34091524168275,47.60523683723473],[-122.34111397567327,47.60523913077936],[-122.34131165629684,47.60524006701796],[-122.34149010208742,47.60524181488421],[-122.34163808838164,47.60524178108017],[-122.34177906845679,47.60524483908073],[-122.34188859150636,47.6052466861629],[-122.34192718957341,47.6052494732286],[-122.34196228204453,47.6052712009711],[-122.3420028269959,47.60534114187224],[-122.3420495309832,47.60541374293074],[-122.34208119876091,47.60545719527034],[-122.34211403920922,47.60550611608485],[-122.34213857524041,47.60554829206226],[-122.34215564489843,47.60557767105773],[-122.34215431767466,47.60560180963288],[-122.34212860968296,47.605624086685],[-122.34209061603127,47.60564215661858],[-122.34204806806459,47.60564297774098],[-122.34200954171304,47.60564267468678],[-122.34195685363792,47.60564337331593],[-122.34189911589016,47.60564469587662],[-122.34184740176737,47.60564401062082],[-122.34175207881509,47.60564253223065],[-122.34165067690392,47.60564113469936],[-122.34149049127963,47.60563995894076],[-122.34132934835681,47.60564072391843],[-122.34100585079793,47.60563541394204],[-122.34076760733592,47.60563390092478],[-122.34064180809499,47.60563008354218],[-122.34051103856673,47.60562963070356],[-122.34042294353385,47.60563272556735],[-122.34038235862485,47.60563133522589],[-122.3404553513067,47.60573675015409],[-122.3405285400094,47.60581392801566],[-122.34056533361735,47.6058244086721],[-122.34069532121141,47.60583284077043],[-122.34087593801631,47.60583948754297],[-122.34102517742038,47.6058476641788],[-122.34106778884849,47.60584902743881],[-122.3410817787937,47.60587707647925],[-122.3411629726089,47.60588067025455],[-122.34126129576191,47.60588073810985],[-122.34132721907757,47.60588204957793],[-122.34139105276044,47.60588120351522],[-122.34152795830425,47.60588350193698],[-122.34158476259651,47.6058849337833],[-122.34170444275982,47.60588746033402],[-122.34194165117475,47.60588817121127],[-122.34208358286521,47.60588903140117],[-122.34222652823614,47.60588987761987],[-122.34239886447135,47.60589059110971],[-122.34251643192721,47.60589014571987],[-122.34255416711646,47.60589812832416],[-122.34257524311037,47.60592582593043],[-122.34261676280848,47.60599438242785],[-122.34265377603006,47.60604736085821],[-122.34270678294884,47.60612754727961],[-122.34275549881964,47.60619956437764],[-122.34278445362736,47.6062542778625],[-122.34279831788412,47.60627795799207],[-122.342775649359,47.60630019486552],[-122.34273732127343,47.60630674437636],[-122.34266431209882,47.60630578498257],[-122.34258827953987,47.60630542229825],[-122.34250008785295,47.6063052211946],[-122.34239767093662,47.60630383777474],[-122.34230032040998,47.60630238671969],[-122.34226092372474,47.60630702231831],[-122.34218880492068,47.60633676982435],[-122.34213778124229,47.60635993959317],[-122.34207439192409,47.60630619675408],[-122.34199417951402,47.60630151942115],[-122.34195182169594,47.60630893601718],[-122.34186760740465,47.60634102888383],[-122.34180953106879,47.60636566293164],[-122.34174144850455,47.60639479998581],[-122.34169744584027,47.60641539119711],[-122.34166743822897,47.60642924199562],[-122.34161650164025,47.60645540947981],[-122.34158465754861,47.60647583981898],[-122.34153545718846,47.60652696230908],[-122.34150706640867,47.60656161375876],[-122.34150109322644,47.60660033843171],[-122.341501780535,47.60665902549499],[-122.34151410152425,47.60669943559633],[-122.34155125686098,47.60675733917217],[-122.34159867839728,47.60680221101052],[-122.34165800499994,47.60683818460267],[-122.3417409286239,47.60686643373016],[-122.34182750830507,47.60688092371672],[-122.34189333729549,47.60687893692993],[-122.34196696313141,47.60686617874423],[-122.34202936389482,47.6068508271611],[-122.34206451705514,47.60683965023095],[-122.34209069935216,47.60686865113838],[-122.34211988098635,47.60689624134651],[-122.34216399491511,47.6068794611755],[-122.34219635896285,47.60691193619407],[-122.34221942181584,47.60693823659961],[-122.34226758104991,47.60692114582572],[-122.3423062476479,47.60696120610332],[-122.34238263191034,47.60704356756744],[-122.34240975512368,47.60707007100028],[-122.34244484552178,47.60705670959581],[-122.34249027927508,47.60708545507384],[-122.34251630242763,47.60710897396466],[-122.34255435290595,47.60709283142214],[-122.34258339951515,47.60711575319138],[-122.3426255035765,47.60716947803015],[-122.34267467660158,47.60715237363718],[-122.34278289181736,47.60710899371281],[-122.34283009373766,47.60709384332398],[-122.34285415403089,47.60711957337082],[-122.34293780620105,47.60720783627106],[-122.34298395602676,47.6072612503888],[-122.3430316426013,47.6072628025078],[-122.34312384944596,47.60726157902161],[-122.34329105291386,47.60725991722226],[-122.34345321401479,47.60725913601926],[-122.34363273592716,47.60726279425941],[-122.34374930819757,47.60726287502992],[-122.34382230257287,47.60726327693957],[-122.34388181983257,47.60728827879612],[-122.34398609249278,47.60735351712967],[-122.34412219011088,47.60743259971955],[-122.34420576012836,47.60748303120923],[-122.34423913954252,47.60751549218544],[-122.34422272613885,47.60754368732437],[-122.34417724845422,47.60754840432504],[-122.3439360758916,47.6075510494821],[-122.34368468326092,47.60755083068184],[-122.34357517094946,47.60754954247422],[-122.34356013579635,47.60759031512723],[-122.34355927633214,47.60766547484504],[-122.34354978444581,47.60772262637747],[-122.34349486681333,47.60775133246386],[-122.34352333851385,47.60778934281913],[-122.34355606992669,47.60783440885253],[-122.34355890530708,47.60789718053591],[-122.34356202925348,47.60793497031813],[-122.34354081105954,47.60797226927314],[-122.34350690059868,47.60799135630171],[-122.34347214470039,47.60801623866247],[-122.3434665630792,47.60806841125468],[-122.34346603184815,47.60811995946363],[-122.34347202882981,47.60815197016465],[-122.34355154653542,47.60820245627478],[-122.34361977506086,47.60824816479413],[-122.3436816695997,47.60828517447093],[-122.34377860432167,47.60834202727439],[-122.34381990750472,47.60836808488446],[-122.3438831922217,47.60838313985665],[-122.34399482846771,47.60838769878847],[-122.34405966223089,47.60838628098868],[-122.34423104949961,47.60838893233741],[-122.34441449318996,47.60838786755323],[-122.3445888094201,47.60838666608574],[-122.3447124928869,47.60838720845509],[-122.34483313671103,47.60838779106892],[-122.34492837768114,47.60838626857375],[-122.34510981803638,47.60838604320144],[-122.34525678387624,47.60838546136551],[-122.34533383269735,47.6083858084519],[-122.34544625544694,47.60845230811874],[-122.34555350109952,47.60851506310303],[-122.34563812729816,47.60856685081696],[-122.34572571417227,47.60861585692258],[-122.34586253944055,47.60861515218326],[-122.34592236336003,47.6086157278462],[-122.34595811445529,47.60862510700304],[-122.34605614571358,47.60868468517425],[-122.34617691538577,47.60875929905245],[-122.34627808269423,47.60882213418974],[-122.34636586985516,47.60887799246539],[-122.34641437069641,47.60890750956032],[-122.34624851021864,47.60892068310415],[-122.34605284945228,47.608919985669],[-122.34596063226255,47.60892095436061],[-122.34567687867263,47.60892361217853],[-122.34551872601436,47.60892297228801],[-122.34533726014789,47.60892238470747],[-122.34520447898585,47.60892277815338],[-122.34503413423211,47.60892118523127],[-122.34490132995539,47.60892076471168],[-122.34479964054272,47.60894460871448],[-122.34491922036945,47.60901319867647],[-122.34503110471998,47.60907859191053],[-122.3450842063568,47.6091094621811],[-122.34517604564145,47.60916526752673],[-122.34525339646393,47.60921085424516],[-122.34533796002387,47.60926045783324],[-122.34550523716749,47.60936573045378],[-122.34568873475614,47.60947104451443],[-122.34590412359196,47.60959238647301],[-122.3460909182651,47.609706438963],[-122.34627133119069,47.60981016493577],[-122.34642702638244,47.60990050940058],[-122.34648694447772,47.60993912925502],[-122.34657786314956,47.60999803014964],[-122.34671091568586,47.61007659327678],[-122.34682121343683,47.6101395638029],[-122.34697792433786,47.61022989402914],[-122.34710895155693,47.61030848329709],[-122.34725036768221,47.61039571778752],[-122.34731438981196,47.61043599609567],[-122.34739966787177,47.61044034544881],[-122.34750921876588,47.61044274355071],[-122.34759843822201,47.61044318445565],[-122.34764900065757,47.61047378762278],[-122.3477574409071,47.61054252329586],[-122.34788319635686,47.61061406998072],[-122.3479368231019,47.61064544615688],[-122.34798357946889,47.61064975117279],[-122.34816009678805,47.61065425634452],[-122.34828397821639,47.6106613899661],[-122.34839962413305,47.61066422025309],[-122.34863099707648,47.61067266441094],[-122.34875979274119,47.61067450529856],[-122.34880173809086,47.61068765694426],[-122.34891106684096,47.61075200932335],[-122.34904719703961,47.61083164245353],[-122.34918021551252,47.61090883230094],[-122.3492761645943,47.6109662503459],[-122.34926009595245,47.61100622364413],[-122.34928606797807,47.61102781380641],[-122.3493714756674,47.61107136254412],[-122.34941884772294,47.61109678067685],[-122.34949413865675,47.61114102076974],[-122.3495230313639,47.61115845884349],[-122.34955892827377,47.61113797227826],[-122.3495867677998,47.61115405344646],[-122.34966202651813,47.61119718020482],[-122.34977359935222,47.61126891384927],[-122.34989323976,47.61133916894235],[-122.35002612470977,47.61141168948946],[-122.35014475199397,47.61148195783066],[-122.35017986083318,47.61150398265542],[-122.35012582755466,47.61152826728936],[-122.3500602726411,47.61153985227612],[-122.35000367776173,47.61158062277639],[-122.34997105273818,47.61160903484512],[-122.34999317199483,47.61163753152329],[-122.34993670604777,47.61168271312628],[-122.34984267523103,47.61176074295386],[-122.34977125592451,47.61181460726573],[-122.34973778460287,47.61184877185325],[-122.34978774328827,47.61189334935145],[-122.34984246515539,47.61192745226459],[-122.34990432105768,47.61196283099528],[-122.35004355999982,47.61204460710659],[-122.35022924637506,47.61215481195462],[-122.35036548642026,47.61223799823461],[-122.35041999300311,47.61226469177826],[-122.35054674236903,47.61226574405843],[-122.35065518728149,47.61226485508081],[-122.35069166828136,47.61226436862778],[-122.35102406456022,47.61226049242917],[-122.35127857606088,47.61226258164185],[-122.35154215198719,47.61226262142048],[-122.35191706892198,47.61225680471855],[-122.35225556907145,47.61225365773398],[-122.35247862656179,47.61225479319323],[-122.35253144123465,47.61225820121311],[-122.35260335972056,47.61229095923105],[-122.35281763549075,47.61240793328803],[-122.35300494836677,47.61250414477016],[-122.35312235244764,47.61256701410085],[-122.3531613881392,47.61258457307602],[-122.35317695264453,47.61263153678367],[-122.35317889793038,47.61269813330419],[-122.3531755047494,47.6127555040414],[-122.35315403554397,47.61278402495102],[-122.35306386952163,47.61278604345259],[-122.35285511703201,47.61278883121314],[-122.35269098424882,47.61279213649257],[-122.3525368729432,47.61279145223722],[-122.35238580955473,47.61279098400227],[-122.35233207733074,47.61279088735885],[-122.35237243879943,47.61281913973261],[-122.35250973733274,47.61290368065848],[-122.35263878503041,47.61298340419102],[-122.35268418134225,47.6130104755789],[-122.35266171419822,47.61303956671865],[-122.35256759078327,47.61304493651073],[-122.3523901711768,47.61304456287948],[-122.35221773860265,47.6130413805579],[-122.35208283338666,47.61303881112577],[-122.35202704179669,47.61303762781313],[-122.35196691941873,47.6130617373087],[-122.35199279734563,47.61308002928515],[-122.3521018312908,47.61313397155946],[-122.35217486028225,47.61317001389011],[-122.3522398466953,47.61320834907378],[-122.35232934668501,47.61325295470289],[-122.35245943256535,47.613333478859],[-122.35261207659246,47.61342274186357],[-122.35272862206006,47.61349085021507],[-122.35283792851598,47.61355408525117],[-122.35292545568065,47.61356581248112],[-122.3529994885435,47.61356675175892],[-122.35305117065961,47.6135660615566],[-122.35319605134472,47.61356301292781],[-122.35341696772225,47.61356006209609],[-122.35363794038555,47.61355903801163],[-122.35384886699752,47.61356114685071],[-122.35403544125155,47.61356250954946],[-122.3543151739622,47.61356014188268],[-122.35454521812056,47.6135573241244],[-122.35478749567324,47.61355682691996],[-122.35485244830394,47.61355925767323],[-122.35498132397669,47.61356357548136],[-122.35502291249094,47.61356439027902],[-122.3551045914963,47.613584120208],[-122.35514167464353,47.6136041895673],[-122.35526312953628,47.61366674566592],[-122.35538452009938,47.61372707483358],[-122.35549975910368,47.6137850440477],[-122.35564700223617,47.61386272139556],[-122.35571743024937,47.6138963545309],[-122.35573587575233,47.61393775215793],[-122.35573824165998,47.61401861035937],[-122.35573923321094,47.61410445681472],[-122.35568365901435,47.6141280792371],[-122.3555462009408,47.61412499066736],[-122.355381911284,47.6141230754393],[-122.35518217752895,47.61412244756409],[-122.35504739660482,47.61412424998726],[-122.35497040310467,47.6141260938203],[-122.35486289580523,47.61412453220873],[-122.35475543661252,47.61412459769424],[-122.3547339394364,47.61418683785377],[-122.35473988549788,47.61425149577435],[-122.35469629132734,47.61426878802409],[-122.3546294075915,47.614269682191],[-122.35449053289345,47.61427016775288],[-122.35432078192225,47.61427217949761],[-122.35419305433307,47.61427251570386],[-122.35407749521349,47.61427294606683],[-122.3541521018441,47.61432816043343],[-122.3542166330521,47.61436817127058],[-122.35428473433457,47.61440890580849],[-122.35435811270527,47.61445676730263],[-122.35442815270324,47.61449447637604],[-122.35446354820502,47.61450882755272],[-122.35451983155549,47.614509446115],[-122.35457252843833,47.61450874166903],[-122.35467400307385,47.6145120120579],[-122.35477443485993,47.61451426828108],[-122.35485247359614,47.61451348215261],[-122.35493557250554,47.61451237104178],[-122.35503395206398,47.6145137973857],[-122.35512465821976,47.61451284167892],[-122.35523473196146,47.61451548238785],[-122.35528894909766,47.61451475727833],[-122.35541872900122,47.61451524949062],[-122.35556073957385,47.61451797724285],[-122.35566616664258,47.61451772374471],[-122.35578823977959,47.61451467652211],[-122.35597426546335,47.61451450122478],[-122.35621002072114,47.61451614506156],[-122.35639196549752,47.61451508096364],[-122.35648132490374,47.61452005444807],[-122.3565852104024,47.61451909245011],[-122.3566724303224,47.61452023856383],[-122.35671069339827,47.61452863771307],[-122.35676441301139,47.61456287962006],[-122.3568453294422,47.61460841061152],[-122.3569401796256,47.61466240979233],[-122.35702784384034,47.61471333436626],[-122.35712533587245,47.61477098260648],[-122.35719287783061,47.61480983746941],[-122.35725521972094,47.61484422060777],[-122.35731354043928,47.61487977157402],[-122.35734652381498,47.61489826694887],[-122.35735791021176,47.61494087288106],[-122.35735455885161,47.6149649107201],[-122.3573174846893,47.61497980265058],[-122.35727390794746,47.6149803862274],[-122.3572227509621,47.61498175675991],[-122.35715985249777,47.61498028537771],[-122.35710556215528,47.61497852741817],[-122.35704832513599,47.61497997963632],[-122.35693670997476,47.61497667549101],[-122.35685813103811,47.61497635626331],[-122.35677851870955,47.61497536570398],[-122.35669129802433,47.61497421967156],[-122.35659443730094,47.61497277441723],[-122.35654268111429,47.61497098226789],[-122.3564667085155,47.6149731128174],[-122.3563278319573,47.61497360062113],[-122.3561919628242,47.6149729340009],[-122.35607232071551,47.61497247862864],[-122.35596937996007,47.61497111384952],[-122.3558958276475,47.6149693561256],[-122.3558192754193,47.61496900941521],[-122.35573875002723,47.61497145765782],[-122.35567944065093,47.61497139400657],[-122.3556165667911,47.61497077853454],[-122.3555374889845,47.61497072233655],[-122.35544221371435,47.6149714825599],[-122.35539705206442,47.61496985895155],[-122.3553433012871,47.61496920659276],[-122.35529818975579,47.61496929610673],[-122.35522109853791,47.61496784184354]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000075,"geom:area_square_m":625134.12371,"geom:bbox":"-122.35735791,47.6023373665,-122.33492826,47.617026679","geom:latitude":47.610071,"geom:longitude":-122.345118,"iso:country":"US","lbl:latitude":47.610773,"lbl:longitude":-122.34494,"lbl:max_zoom":18,"mps:latitude":47.610773,"mps:longitude":-122.34494,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":47.610773,"reversegeo:longitude":-122.34494,"src:geom":"mz","wof:belongsto":[85867285,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"34d56fd25f9eaf3e3fb00867db5ca1d8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890536749,"neighbourhood_id":85867285,"region_id":85688623}],"wof:id":890536749,"wof:lastmodified":1566631088,"wof:name":"Seattle Waterfront","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85882215],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536751.geojson b/fixtures/microhoods/890536751.geojson new file mode 100644 index 0000000..73ed9ba --- /dev/null +++ b/fixtures/microhoods/890536751.geojson @@ -0,0 +1 @@ +{"id":890536751,"type":"Feature","bbox":[-122.32630543127316,47.59671463737196,-122.32246003979394,47.59918373409383],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32248108830672,47.59671463737196],[-122.32630276395443,47.59671791650037],[-122.32630543127316,47.59916543409195],[-122.32246003979394,47.59918373409383],[-122.32248108830672,47.59671463737196]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000009,"geom:area_square_m":78578.731804,"geom:bbox":"-122.326305431,47.5967146374,-122.32246004,47.5991837341","geom:latitude":47.597947,"geom:longitude":-122.324385,"iso:country":"US","lbl:latitude":47.597945,"lbl:longitude":-122.324384,"lbl:max_zoom":18,"mps:latitude":47.597945,"mps:longitude":-122.324384,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["الحي الصيني"],"name:ast_x_preferred":["Barriu chinu"],"name:aze_x_preferred":["Çin qəsəbəsi"],"name:cat_x_preferred":["Barri xinès"],"name:cdo_x_preferred":["Dòng-ìng-gă̤"],"name:dan_x_preferred":["Chinatown"],"name:deu_x_preferred":["Chinatown"],"name:est_x_preferred":["Hiinalinn"],"name:eus_x_preferred":["Chinatown"],"name:fas_x_preferred":["محله چینی‌ها"],"name:fin_x_preferred":["Chinatown"],"name:fra_x_preferred":["Quartier chinois"],"name:fry_x_preferred":["Chinatown"],"name:heb_x_preferred":["צ'יינטאון"],"name:hun_x_preferred":["Kínai negyed"],"name:ind_x_preferred":["Pecinan"],"name:isl_x_preferred":["Kínahverfi"],"name:ita_x_preferred":["Chinatown"],"name:jpn_x_preferred":["中華街"],"name:kaz_x_preferred":["Чайнатаун"],"name:kor_x_preferred":["차이나타운"],"name:lit_x_preferred":["Kinų kvartalas"],"name:msa_x_preferred":["Pekan Cina"],"name:nld_x_preferred":["Chinatown"],"name:nno_x_preferred":["Chinatown"],"name:nor_x_preferred":["Chinatown"],"name:pol_x_preferred":["Chinatown"],"name:por_x_preferred":["Chinatown"],"name:ron_x_preferred":["Chinatown"],"name:rus_x_preferred":["Китайский квартал"],"name:sah_x_preferred":["Чайнатаун"],"name:sco_x_preferred":["Chinatown"],"name:spa_x_preferred":["Barrio chino"],"name:swe_x_preferred":["Chinatown"],"name:tam_x_preferred":["சீன நகர்"],"name:tgl_x_preferred":["China Town"],"name:tur_x_preferred":["Çin mahallesi"],"name:ukr_x_preferred":["Китайський квартал"],"name:zho_x_preferred":["唐人街"],"reversegeo:latitude":47.597945,"reversegeo:longitude":-122.324384,"src:geom":"mz","wof:belongsto":[85866041,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4855e1a61fe1a4c9a3e36aaeb0cec55c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890536751,"neighbourhood_id":85866041,"region_id":85688623}],"wof:id":890536751,"wof:lastmodified":1566631088,"wof:name":"Chinatown","wof:parent_id":85866041,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85894383],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536753.geojson b/fixtures/microhoods/890536753.geojson new file mode 100644 index 0000000..dd260e2 --- /dev/null +++ b/fixtures/microhoods/890536753.geojson @@ -0,0 +1 @@ +{"id":890536753,"type":"Feature","bbox":[-122.314481755881,47.6568501740319,-122.311860455974,47.6712616735057],"geometry":{"type":"Polygon","coordinates":[[[-122.313033921224,47.670984942952],[-122.311860455974,47.6706627702009],[-122.311926841677,47.6612436713539],[-122.311962658231,47.6582708973507],[-122.312601386782,47.6582768667764],[-122.312601386782,47.6568501740319],[-122.314481755881,47.6568919600119],[-122.314204737219,47.6712616735057],[-122.313806268406,47.6711638059513],[-122.313033921224,47.670984942952]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000033,"geom:area_square_m":278572.673668,"geom:bbox":"-122.314481756,47.656850174,-122.311860456,47.6712616735","geom:latitude":47.664013,"geom:longitude":-122.31316,"iso:country":"US","lbl:latitude":47.663988,"lbl:longitude":-122.313142,"lbl:max_zoom":18,"mps:latitude":47.663988,"mps:longitude":-122.313142,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["ذي آف"],"name:eng_x_preferred":["The Ave"],"name:fra_x_preferred":["The Ave"],"reversegeo:latitude":47.663988,"reversegeo:longitude":-122.313142,"src:geom":"mz","wof:belongsto":[85853121,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7715010"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6f0b7e0f137cde31a868a32432e1f4be","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536753,"neighbourhood_id":85853121,"region_id":85688623}],"wof:id":890536753,"wof:lastmodified":1566631086,"wof:name":"The Ave","wof:parent_id":85853121,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783241],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536755.geojson b/fixtures/microhoods/890536755.geojson new file mode 100644 index 0000000..5984230 --- /dev/null +++ b/fixtures/microhoods/890536755.geojson @@ -0,0 +1 @@ +{"id":890536755,"type":"Feature","bbox":[-122.31967042444217,47.59748144353966,-122.31275101911191,47.59920800652936],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.31275101911191,47.59748144353966],[-122.31967042444217,47.59748644496506],[-122.31966468931975,47.59918172421866],[-122.31886182458084,47.59918663863539],[-122.31763368048729,47.59919362910927],[-122.31722720932827,47.59919139135505],[-122.31718514319839,47.59919116860005],[-122.31665855493887,47.59918826748308],[-122.31533682728077,47.59920099495621],[-122.3145758544982,47.59920640720475],[-122.3141370613602,47.59920800652936],[-122.31411062496355,47.59918718574717],[-122.3140846856268,47.59916601593704],[-122.31405924403886,47.59914453955837],[-122.31403480872669,47.59912279316272],[-122.31401036611857,47.59910078959184],[-122.31398692753017,47.59907847321516],[-122.31396399017208,47.59905593621522],[-122.31394155004251,47.59903309265528],[-122.31391961113269,47.59901002812179],[-122.31389816998944,47.59898665772387],[-122.31387723023543,47.59896310881884],[-122.31385729676248,47.59893929025107],[-122.31383786346984,47.59891525072454],[-122.31381893088569,47.59889099058363],[-122.31380049848094,47.59886650948446],[-122.31378256800126,47.59884185057457],[-122.31376564448773,47.59881696446289],[-122.31374922116156,47.59879185774467],[-122.31373235615011,47.59876902723374],[-122.3128722187954,47.59763886078336],[-122.31283756859563,47.59759642466714],[-122.31275101911191,47.59748144353966]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":89247.505831,"geom:bbox":"-122.319670424,47.5974814435,-122.312751019,47.5992080065","geom:latitude":47.598309,"geom:longitude":-122.316519,"iso:country":"US","lbl:latitude":47.598337,"lbl:longitude":-122.316516,"lbl:max_zoom":18,"mps:latitude":47.598337,"mps:longitude":-122.316516,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:fra_x_preferred":["Little Saigon"],"name:ind_x_preferred":["Little Saigon"],"name:vie_x_preferred":["Little Saigon"],"name:zho_x_preferred":["小西貢"],"reversegeo:latitude":47.598337,"reversegeo:longitude":-122.316516,"src:geom":"mz","wof:belongsto":[85866041,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"847122f78b7cae2f6bb05ead1c28f7e0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890536755,"neighbourhood_id":85866041,"region_id":85688623}],"wof:id":890536755,"wof:lastmodified":1566631085,"wof:name":"Little Saigon","wof:parent_id":85866041,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783245],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536757.geojson b/fixtures/microhoods/890536757.geojson new file mode 100644 index 0000000..402a644 --- /dev/null +++ b/fixtures/microhoods/890536757.geojson @@ -0,0 +1 @@ +{"id":890536757,"type":"Feature","bbox":[-122.32774097137765,47.59916543409194,-122.32172653320877,47.60171401860287],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32774097137765,47.59916672866909],[-122.32773759648377,47.60171198554303],[-122.3272034019434,47.60171401860287],[-122.32631545106284,47.6017107647772],[-122.3254081653117,47.60170480167609],[-122.32496738244964,47.60170848249626],[-122.32389334656379,47.60094083087117],[-122.32325897957698,47.60048398499494],[-122.32257749241644,47.59999159286038],[-122.32228316935563,47.59974707965715],[-122.32172653320877,47.59918985382637],[-122.32246003979394,47.59918373409383],[-122.32630543127316,47.59916543409194],[-122.32774097137765,47.59916672866909]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000011,"geom:area_square_m":95124.91392,"geom:bbox":"-122.327740971,47.5991654341,-122.321726533,47.6017140186","geom:latitude":47.600285,"geom:longitude":-122.325393,"iso:country":"US","lbl:latitude":47.600437,"lbl:longitude":-122.325395,"lbl:max_zoom":18,"mps:latitude":47.600437,"mps:longitude":-122.325395,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Japantown"],"name:ind_x_preferred":["Japantown"],"name:jpn_x_preferred":["日本人街"],"name:kor_x_preferred":["저팬타운"],"name:zho_x_preferred":["日本街"],"reversegeo:latitude":47.600437,"reversegeo:longitude":-122.325395,"src:geom":"mz","wof:belongsto":[85866041,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6e358da60fbb9f244b0229c8982002c0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890536757,"neighbourhood_id":85866041,"region_id":85688623}],"wof:id":890536757,"wof:lastmodified":1566631089,"wof:name":"Japantown","wof:parent_id":85866041,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783247],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536759.geojson b/fixtures/microhoods/890536759.geojson new file mode 100644 index 0000000..b4f8cd0 --- /dev/null +++ b/fixtures/microhoods/890536759.geojson @@ -0,0 +1 @@ +{"id":890536759,"type":"Feature","bbox":[-122.27998593826543,47.6901062104303,-122.26729896229267,47.69293611942047],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.26729896229267,47.6901062104303],[-122.26946549772232,47.6901109731394],[-122.27995353357532,47.69013760467237],[-122.27995934395311,47.69043141357676],[-122.27998593826543,47.69293611942047],[-122.2791881955264,47.69225325370786],[-122.2788779089687,47.69182948589493],[-122.27886448363037,47.69180309324346],[-122.27884853997574,47.69177741833053],[-122.27882906961494,47.69175268768664],[-122.27880759763067,47.69172901042267],[-122.27878311156903,47.69170648571757],[-122.27875612438388,47.69168527763586],[-122.27872714512577,47.69166546605876],[-122.2786719855326,47.69163519026191],[-122.27863754589957,47.69161981785914],[-122.2786016331142,47.69160622074087],[-122.27856936909387,47.69159604739694],[-122.27853101612187,47.69158599442699],[-122.27849170243847,47.6915778815136],[-122.27842190294193,47.69156878390302],[-122.27838071563107,47.69156630709574],[-122.27834516813519,47.69156585827707],[-122.27830408922327,47.69156727866004],[-122.27826306697033,47.69157075500318],[-122.2782281700884,47.69157543893066],[-122.27818827039171,47.69158275678833],[-122.27814944100456,47.69159207493782],[-122.27811168295263,47.69160339301618],[-122.27807549863863,47.69161653338141],[-122.27804539509607,47.69162929657085],[-122.27772214713276,47.69179786888401],[-122.27726282456564,47.69203864118071],[-122.27686732728428,47.69221977965397],[-122.27682904466326,47.69223050413187],[-122.27679074365827,47.69224058620083],[-122.27675191880543,47.69225007508115],[-122.27671811710327,47.69225765773099],[-122.27667875002533,47.69226591101437],[-122.27664441257885,47.69227247243166],[-122.27660450446955,47.69227953292054],[-122.2765645778342,47.69228590818274],[-122.27652968864217,47.69229089121424],[-122.27645429965489,47.69229990029405],[-122.27641885925757,47.69230330528415],[-122.27637783273065,47.69230665253831],[-122.27633678767644,47.69230931421412],[-122.27630130035075,47.6923110487869],[-122.27626021961476,47.69231242598056],[-122.276189171729,47.69231323984295],[-122.27614804102268,47.69231281784751],[-122.27611247994994,47.69231189714367],[-122.27607131356584,47.69231019031508],[-122.27603012763693,47.69230779827201],[-122.2759889232139,47.69230472135209],[-122.27594820812246,47.69230099524381],[-122.27591307626352,47.69229724126865],[-122.27587232669731,47.69229227313121],[-122.27583206528811,47.69228661335362],[-122.27579739713988,47.69228126813624],[-122.27575760895817,47.69227435990451],[-122.27571780414006,47.69226685205953],[-122.27568359853406,47.69225987314882],[-122.27564426642161,47.69225111650651],[-122.27557832321077,47.69223464252227],[-122.2755450773048,47.69222568072166],[-122.27551232721197,47.69221628410136],[-122.27547494933333,47.69220476088406],[-122.27544114040889,47.69219379230456],[-122.27535583808128,47.69213827577684],[-122.27504087952505,47.69222182040129],[-122.27445882829872,47.6923760482895],[-122.27383603803506,47.69243426223895],[-122.27379498986636,47.6924368377499],[-122.2737545051964,47.69244141964568],[-122.27371963158733,47.69244695860657],[-122.2736802638897,47.69245521085428],[-122.27364196447168,47.69246537712117],[-122.27360975718808,47.6924755527249],[-122.27354399333312,47.69250217526121],[-122.27351095277514,47.69251891610362],[-122.27345456353454,47.69255407436986],[-122.27342722488963,47.6925750702603],[-122.27340295696051,47.69259696970104],[-122.27338076559275,47.6926205142226],[-122.27335651542913,47.69264305605655],[-122.27333020700749,47.69266459589666],[-122.27330581962124,47.69268216970182],[-122.27327640479638,47.69270152081287],[-122.27321638876496,47.69273406898061],[-122.27318229983021,47.69274962299925],[-122.2731516718282,47.69276183485767],[-122.27311496944053,47.69277468008608],[-122.27307720772671,47.69278595369911],[-122.27300456970016,47.69280268043465],[-122.2729646505239,47.69280935406009],[-122.27292366846561,47.69281432730527],[-122.27288264064366,47.69281763049122],[-122.27284156482699,47.69281922047677],[-122.27237272299622,47.6927357703733],[-122.27234887743361,47.69271794871722],[-122.27231791470308,47.6926997459154],[-122.27228810751087,47.69268662672116],[-122.27225071221633,47.69267446004346],[-122.27221189281859,47.6926658673718],[-122.2721767455622,47.69266155544875],[-122.27213558496729,47.69266006156708],[-122.2721001001523,47.69266188043223],[-122.27205964599656,47.69266757531869],[-122.2720208170607,47.69267697663601],[-122.27198462690284,47.69268998665643],[-122.27192910255695,47.69271977776797],[-122.27190227565816,47.69274093844884],[-122.27188876718992,47.69276642905903],[-122.27187126073531,47.69281253527664],[-122.2712053817636,47.69261644773089],[-122.27064833650955,47.69235394824123],[-122.2702430084646,47.69212547837714],[-122.2697729486679,47.6918139792329],[-122.26923103378951,47.69145548517291],[-122.26881625467136,47.69121517645801],[-122.26844380849265,47.69090844055849],[-122.26827884535012,47.69070688417174],[-122.26806707914604,47.69042807148318],[-122.26800267284287,47.69033839748447],[-122.26752409869844,47.69034262172028],[-122.26729896229267,47.6901062104303]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":202452.315977,"geom:bbox":"-122.279985938,47.6901062104,-122.267298962,47.6929361194","geom:latitude":47.691198,"geom:longitude":-122.274175,"iso:country":"US","lbl:latitude":47.691263,"lbl:longitude":-122.274177,"lbl:max_zoom":18,"mps:latitude":47.691263,"mps:longitude":-122.274177,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:afr_x_preferred":["Inverness"],"name:ara_x_preferred":["إنفرنيس"],"name:ast_x_preferred":["Inverness"],"name:azb_x_preferred":["اینورنس"],"name:aze_x_preferred":["İnverness"],"name:bre_x_preferred":["Inbhir Nis"],"name:bul_x_preferred":["Инвърнес"],"name:cat_x_preferred":["Inverness"],"name:ceb_x_preferred":["Inverness"],"name:ces_x_preferred":["Inverness"],"name:cym_x_preferred":["Inverness"],"name:dan_x_preferred":["Inverness"],"name:deu_x_preferred":["Inverness"],"name:ell_x_preferred":["Ινβερνές"],"name:epo_x_preferred":["Inverness"],"name:est_x_preferred":["Inverness"],"name:eus_x_preferred":["Inverness"],"name:fas_x_preferred":["اینورنس"],"name:fin_x_preferred":["Inverness"],"name:fra_x_preferred":["Inverness"],"name:gla_x_preferred":["Inbhir Nis"],"name:gle_x_preferred":["Inbhir Nis"],"name:glg_x_preferred":["Inverness"],"name:glv_x_preferred":["Inbhir Nis"],"name:heb_x_preferred":["אינוורנס"],"name:hun_x_preferred":["Inverness"],"name:hye_x_preferred":["Ինվերնես"],"name:ind_x_preferred":["Inverness"],"name:isl_x_preferred":["Inverness"],"name:ita_x_preferred":["Inverness"],"name:jpn_x_preferred":["インヴァネス"],"name:kaz_x_preferred":["Инвернесс"],"name:kor_x_preferred":["인버네스"],"name:lav_x_preferred":["Invernesa"],"name:lit_x_preferred":["Invernesas"],"name:lmo_x_preferred":["Inverness"],"name:nld_x_preferred":["Inverness"],"name:nno_x_preferred":["Inverness"],"name:nor_x_preferred":["Inverness"],"name:oci_x_preferred":["Inverness"],"name:oss_x_preferred":["Инвернесс"],"name:pms_x_preferred":["Inverness"],"name:pnb_x_preferred":["انورنس"],"name:pol_x_preferred":["Inverness"],"name:por_x_preferred":["Inverness"],"name:que_x_preferred":["Inverness"],"name:ron_x_preferred":["Inverness"],"name:rus_x_preferred":["Инвернесс"],"name:scn_x_preferred":["Inverness"],"name:sco_x_preferred":["Innerness"],"name:slk_x_preferred":["Inverness"],"name:spa_x_preferred":["Inverness"],"name:srp_x_preferred":["Инвернес"],"name:swe_x_preferred":["Inverness"],"name:tat_x_preferred":["Инвернесс"],"name:tgl_x_preferred":["Inverness"],"name:tha_x_preferred":["อินเวอร์เนสส์"],"name:tur_x_preferred":["Inverness"],"name:ukr_x_preferred":["Інвернесс"],"name:urd_x_preferred":["اینورنس"],"name:vec_x_preferred":["Inverness"],"name:vie_x_preferred":["Inverness"],"name:vol_x_preferred":["Iverness"],"name:war_x_preferred":["Inverness"],"name:wuu_x_preferred":["因弗尼斯"],"name:zea_x_preferred":["Inverness"],"name:zho_x_preferred":["印威內斯"],"reversegeo:latitude":47.691263,"reversegeo:longitude":-122.274177,"src:geom":"mz","wof:belongsto":[85853783,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1cbd62b07ee5ad32788085f1f5c43221","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536759,"neighbourhood_id":85853783,"region_id":85688623}],"wof:id":890536759,"wof:lastmodified":1566631089,"wof:name":"Inverness","wof:parent_id":85853783,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783299],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536763.geojson b/fixtures/microhoods/890536763.geojson new file mode 100644 index 0000000..866ed58 --- /dev/null +++ b/fixtures/microhoods/890536763.geojson @@ -0,0 +1 @@ +{"id":890536763,"type":"Feature","bbox":[-122.32988098462414,47.61344367615079,-122.31276054577522,47.61535450398699],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32896675157174,47.61344367615079],[-122.32946546193169,47.613981348214],[-122.32988098462414,47.61442933358047],[-122.32982239310326,47.6145606088912],[-122.32802708434079,47.61529783097547],[-122.31276069729883,47.61535450398699],[-122.31276054577522,47.6150845950237],[-122.312762325012,47.61454105685885],[-122.31276311931408,47.61449768877453],[-122.31336893558462,47.61425108602596],[-122.3136966284827,47.61411383470124],[-122.31944951684386,47.61408932243653],[-122.32083192911786,47.61407610179049],[-122.32259219860522,47.6140530785371],[-122.3232853610579,47.6140440049172],[-122.3235825420994,47.6141021513662],[-122.32432688216186,47.61409240118454],[-122.32634565317507,47.61408662617141],[-122.32690645668649,47.6140930624744],[-122.3274062588716,47.61409339954918],[-122.32875666531443,47.61353094458827],[-122.32896675157174,47.61344367615079]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":173848.429253,"geom:bbox":"-122.329880985,47.6134436762,-122.312760546,47.615354504","geom:latitude":47.614673,"geom:longitude":-122.321303,"iso:country":"US","lbl:latitude":47.614696,"lbl:longitude":-122.321309,"lbl:max_zoom":18,"mps:latitude":47.614696,"mps:longitude":-122.321309,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":47.614696,"reversegeo:longitude":-122.321309,"src:geom":"mz","wof:belongsto":[85882415,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a63240b4e96ed8a04ec05d0cebda03c5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536763,"neighbourhood_id":85882415,"region_id":85688623}],"wof:id":890536763,"wof:lastmodified":1566631085,"wof:name":"Pike/Pine","wof:parent_id":85882415,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783301],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536765.geojson b/fixtures/microhoods/890536765.geojson new file mode 100644 index 0000000..ca330fa --- /dev/null +++ b/fixtures/microhoods/890536765.geojson @@ -0,0 +1 @@ +{"id":890536765,"type":"Feature","bbox":[-122.34766710284609,47.6128853467793,-122.3306062462192,47.61857069006798],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.33784826557635,47.6128853467793],[-122.34766710284609,47.61857069006798],[-122.34693264638751,47.61857043476453],[-122.34542574154436,47.61856030447601],[-122.3438844761504,47.61855395198598],[-122.34256567090871,47.61854467150086],[-122.34201936647905,47.61855054411171],[-122.3415350575198,47.61854411027589],[-122.34012366597236,47.61854108395138],[-122.33670585302139,47.61852120472014],[-122.33372255597206,47.61853889628769],[-122.33243855099391,47.61852325558071],[-122.3306062462192,47.61848964206088],[-122.33784826557635,47.6128853467793]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":402149.710927,"geom:bbox":"-122.347667103,47.6128853468,-122.330606246,47.6185706901","geom:latitude":47.616654,"geom:longitude":-122.338696,"iso:country":"US","lbl:latitude":47.616096,"lbl:longitude":-122.337856,"lbl:max_zoom":18,"mps:latitude":47.616096,"mps:longitude":-122.337856,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":47.616096,"reversegeo:longitude":-122.337856,"src:geom":"mz","wof:belongsto":[85805569,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"62aa1435443ca07c57664cd2d129b1c8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890536765,"neighbourhood_id":85805569,"region_id":85688623}],"wof:id":890536765,"wof:lastmodified":1566631086,"wof:name":"Denny Triangle","wof:parent_id":85805569,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783303],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536767.geojson b/fixtures/microhoods/890536767.geojson new file mode 100644 index 0000000..11f14e2 --- /dev/null +++ b/fixtures/microhoods/890536767.geojson @@ -0,0 +1 @@ +{"id":890536767,"type":"Feature","bbox":[-122.3503572861107,47.61855280917197,-122.34364226249599,47.62377869530984],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.34364226249599,47.62377869530984],[-122.34372207631867,47.61855280917197],[-122.3438844761504,47.61855395198598],[-122.34542574154436,47.61856030447601],[-122.34693264638751,47.61857043476453],[-122.34840429365858,47.61857094632191],[-122.34987664340531,47.61857815599873],[-122.3503572861107,47.61858049046027],[-122.34980511092735,47.61901106331322],[-122.34910268613778,47.61955708600251],[-122.3479276405436,47.62046435778007],[-122.34763428383032,47.6206791827023],[-122.34626045345644,47.62177806666197],[-122.34443244644076,47.62314328403111],[-122.34364226249599,47.62377869530984]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":144572.714041,"geom:bbox":"-122.350357286,47.6185528092,-122.343642262,47.6237786953","geom:latitude":47.620303,"geom:longitude":-122.345911,"iso:country":"US","lbl:latitude":47.620336,"lbl:longitude":-122.345405,"lbl:max_zoom":18,"mps:latitude":47.620336,"mps:longitude":-122.345405,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.620336,"reversegeo:longitude":-122.345405,"src:geom":"mz","wof:belongsto":[85869671,102191575,890536793,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a8239c0ad0edf0d2b4eceaf489979220","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536793,"microhood_id":890536767,"neighbourhood_id":85869671,"region_id":85688623}],"wof:id":890536767,"wof:lastmodified":1566631088,"wof:name":"Uptown Triangle","wof:parent_id":85869671,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783307],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536803.geojson b/fixtures/microhoods/890536803.geojson new file mode 100644 index 0000000..8e4cf35 --- /dev/null +++ b/fixtures/microhoods/890536803.geojson @@ -0,0 +1 @@ +{"id":890536803,"type":"Feature","bbox":[-122.3139856689014,47.50985416291564,-122.27848527913814,47.54888157377989],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.3139856689014,47.54745020987705],[-122.31298375408149,47.54794687866195],[-122.31112198033092,47.54888157377989],[-122.31060690290138,47.54855250386669],[-122.3099158434702,47.54805134444226],[-122.3087155947278,47.54742766140452],[-122.3079009950123,47.54696039765147],[-122.30750666201145,47.5466749478593],[-122.30692077315888,47.54618534537477],[-122.30631641888664,47.54563308458287],[-122.30614702484156,47.54547864360772],[-122.30558836402312,47.5449305430344],[-122.30489959035312,47.54427388804336],[-122.30363807292588,47.54307028692713],[-122.3033911870718,47.54271633613309],[-122.30333262026969,47.54263200652712],[-122.30289704804035,47.54199507128617],[-122.30230761510578,47.54137631859012],[-122.30139783454834,47.5405615797171],[-122.30024125394522,47.53962731589024],[-122.2998029196134,47.53930363506382],[-122.29977009250482,47.53928824940093],[-122.2997367681656,47.53927316987781],[-122.29970345176952,47.53925839032602],[-122.29966963815208,47.53924391726431],[-122.29963532798962,47.53922979315136],[-122.29960102559089,47.53921592584157],[-122.29956622613818,47.53920240783753],[-122.29953143686707,47.53918923259394],[-122.29949614864051,47.53917632069122],[-122.29946087128077,47.53916379435871],[-122.29942509548293,47.53915153135975],[-122.29938933055075,47.53913965393073],[-122.29935306786585,47.53912808264469],[-122.29931681363679,47.5391168113215],[-122.29928006406266,47.53910593174746],[-122.29924332346127,47.53909535212927],[-122.29920608630952,47.5390851214562],[-122.29916885881542,47.53907523354874],[-122.2991316409782,47.53906568840691],[-122.29909392658885,47.53905649220939],[-122.2990562218551,47.53904763877716],[-122.29901706582616,47.53904116014466],[-122.29897699792842,47.53903824968585],[-122.29893743811328,47.53903541794666],[-122.29889788072016,47.53903267215129],[-122.29885781954081,47.53903001847738],[-122.29881826627576,47.5390274007069],[-122.29877820992967,47.53902491856928],[-122.29873815650318,47.53902252166675],[-122.2986986111679,47.53902020383576],[-122.29865856085165,47.53901793567285],[-122.29861902033812,47.53901578902767],[-122.29857897656511,47.5390137348469],[-122.29853893399888,47.53901172345542],[-122.2984988945284,47.53900984046662],[-122.29845936366593,47.53900803654378],[-122.29841932953339,47.53900632473377],[-122.2983792960987,47.53900465607058],[-122.2983392667852,47.5390031154459],[-122.29829974557066,47.5390016542454],[-122.29758201628887,47.53898357083071],[-122.2970042217322,47.53897387736641],[-122.29410461399355,47.53892503137987],[-122.29286060528753,47.53889303181489],[-122.29142766596847,47.53885611688487],[-122.29133729400729,47.53882814283238],[-122.29068682139474,47.53862668267675],[-122.29018642520396,47.53845229967492],[-122.28900583406285,47.53804465067378],[-122.286859359811,47.53730368757673],[-122.28688439107927,47.53725752496542],[-122.28689279931713,47.53723235403314],[-122.2868991790791,47.53720703777385],[-122.2869050490613,47.5371815992281],[-122.28690939675343,47.53715600888061],[-122.28691222402766,47.53713035234512],[-122.28691403826124,47.53710466595003],[-122.28691483893756,47.53707894970197],[-122.28691412091386,47.53705321006303],[-122.2869118853766,47.5370274894858],[-122.28690863987943,47.5370018678169],[-122.28690438373812,47.53697630189526],[-122.28689810869533,47.53695093307507],[-122.28689031923086,47.53692571243481],[-122.28688102011307,47.53690081083728],[-122.28686970620134,47.53687623474399],[-122.28685688332635,47.53685202085351],[-122.28684255372008,47.53682821195559],[-122.28682621306622,47.53680489978731],[-122.28680837047037,47.5367821641751],[-122.28678852809418,47.53676031051577],[-122.28676568197093,47.53673965243454],[-122.28674084683509,47.53672026223681],[-122.28671352008176,47.53670227445524],[-122.2866847176761,47.53668580560262],[-122.28665791983897,47.53666862530167],[-122.28663357968166,47.53664884303059],[-122.28660724573726,47.53663015742601],[-122.28657993154265,47.53661259799159],[-122.28655012045773,47.53659627046296],[-122.2865193310008,47.53658115506673],[-122.28648756793544,47.5365674226653],[-122.2864543244282,47.53655503762263],[-122.28641960234668,47.53654408555106],[-122.28638441469593,47.53653459561186],[-122.28634774727288,47.53652649583812],[-122.28511294254993,47.53620488750647],[-122.28507726403163,47.53619591761623],[-122.28504157427531,47.53618656248974],[-122.28500688374953,47.53617672322888],[-122.28497167514058,47.53616646238888],[-122.28493746762042,47.53615580267824],[-122.28490274134447,47.5361446785783],[-122.28486901498557,47.53613311350679],[-122.28483527789137,47.53612116249189],[-122.28480203454338,47.5361087769725],[-122.28476928546016,47.53609595694244],[-122.28473652564352,47.53608275096953],[-122.28470426009278,47.53606911048651],[-122.28467249067455,47.53605512110747],[-122.28464070933242,47.53604070298263],[-122.28460992910234,47.53602588669374],[-122.28457913867905,47.5360106851582],[-122.28454884385197,47.5359951340329],[-122.28450259838324,47.53597019030072],[-122.28447328851698,47.53595364139426],[-122.28444498214726,47.5359367799336],[-122.28441666505852,47.53591953288335],[-122.28438884461293,47.53590193658293],[-122.28436152149412,47.53588403419371],[-122.28433469451018,47.53586578291253],[-122.2843083646875,47.53584718237569],[-122.28428303664079,47.53582822613976],[-122.28425770197966,47.53580901307043],[-122.28423286344346,47.53578945075964],[-122.28420852223374,47.5357695823621],[-122.28418620996412,47.53574985932757],[-122.28416386909984,47.53572910865313],[-122.28414202674291,47.53570809434596],[-122.28412018015487,47.53568690881385],[-122.2840993377232,47.53566545319327],[-122.2840784910601,47.53564382634814],[-122.28405864975375,47.53562197256962],[-122.2840388042058,47.53559994721608],[-122.28401996572305,47.5355777377268],[-122.28400112078029,47.53555531422332],[-122.28398277777151,47.53553271303377],[-122.28396544010656,47.5355098845617],[-122.28394809940018,47.53548692766976],[-122.28393176642912,47.53546382945383],[-122.28391542802318,47.53544051686043],[-122.28389959170421,47.53541706939885],[-122.28388476244483,47.53539343780399],[-122.28386992962439,47.53536967779657],[-122.28385610556182,47.53534577610246],[-122.28384227742926,47.53532174635354],[-122.28382945805288,47.53529757491842],[-122.28381714074978,47.53527326826553],[-122.28380481989362,47.53524883355156],[-122.28379350847428,47.53522430031303],[-122.28378269964445,47.5351996318506],[-122.28377239408655,47.53517487132539],[-122.28376259231803,47.53515001873096],[-122.28375329382015,47.53512507407402],[-122.2837444991103,47.53510003734808],[-122.283736208178,47.53507490820243],[-122.28372892616743,47.535049680891],[-122.28372164348085,47.53502441041809],[-122.28371486406145,47.53499904788325],[-122.28370909577862,47.53497362962245],[-122.2837038319622,47.5349481624543],[-122.2836990714006,47.53492260287366],[-122.28369481699382,47.53489703648101],[-122.28345850939562,47.53388025101712],[-122.2834502187953,47.53385512185061],[-122.28344192769464,47.53382999304098],[-122.28343414156028,47.53380481496743],[-122.28342686038165,47.53377958727919],[-122.28341957801901,47.53375431678698],[-122.2834077772906,47.53371218108206],[-122.2834009993857,47.53368686133206],[-122.28339422029632,47.53366149877812],[-122.28338794737104,47.53363613011504],[-122.28338217939852,47.53361071183767],[-122.28337590476632,47.53358530002618],[-122.2833706412432,47.53355983249178],[-122.28336537772519,47.53353436495718],[-122.28336011302129,47.53350885461874],[-122.28335535446881,47.53348333782065],[-122.28335059540291,47.53345782102897],[-122.28334583566873,47.53343226142696],[-122.28334208600307,47.53340664611569],[-122.2833378319049,47.53338108006058],[-122.28333408276492,47.53335546474243],[-122.28333083925531,47.53332984297145],[-122.2833275945579,47.53330417839683],[-122.28332435157273,47.53327855661907],[-122.28332161249789,47.53325288524076],[-122.28331887395356,47.5332272142066],[-122.28331664103739,47.53320153671977],[-122.28331491307567,47.53317580997007],[-122.28331268068172,47.53315013247654],[-122.2833114583386,47.53312439892333],[-122.28330973038202,47.53309867217357],[-122.28330850924233,47.53307298177472],[-122.28330779305485,47.53304724211311],[-122.28330707685834,47.53302150210062],[-122.28330686681382,47.53299575597977],[-122.2833066574424,47.53297005266909],[-122.28330644739826,47.53294430654824],[-122.28330674296728,47.53291855362394],[-122.28330754587728,47.53289283739481],[-122.28330834878648,47.53286712116568],[-122.28330914998583,47.53284136213961],[-122.28331047877147,47.53281636746885],[-122.28327487760203,47.53153683184921],[-122.28136891108481,47.53153436219077],[-122.28064831180176,47.53153647497745],[-122.28063107944894,47.52942173074354],[-122.28050885591115,47.52884730097085],[-122.28008525210619,47.52795272802854],[-122.27960506007904,47.52691492045609],[-122.2790454545683,47.52591406732615],[-122.27903247882884,47.52588411336503],[-122.27902000681213,47.52585406770602],[-122.27900753531806,47.52582402168819],[-122.27899506095558,47.52579389041929],[-122.27898359584893,47.52576366031768],[-122.27897213075559,47.52573343021489],[-122.27896066330105,47.52570311450382],[-122.2789497019308,47.52567279235178],[-122.27893924375151,47.52564237815833],[-122.27892878491521,47.52561192115378],[-122.27891882992832,47.52558141456733],[-122.27890938036333,47.52555085908105],[-122.27889993029146,47.52552030360059],[-122.27889098391572,47.52548965572181],[-122.2788820363731,47.52545896538957],[-122.27887359489985,47.5254282682663],[-122.27886515173141,47.52539752834545],[-122.27885771953147,47.52536673309243],[-122.27885028614347,47.52533589468448],[-122.27884285224627,47.52530505628267],[-122.27883592375579,47.52527416863087],[-122.27882949963522,47.52524323174242],[-122.2788230750043,47.52521229486018],[-122.27881715577806,47.52518130872819],[-122.27881174211649,47.52515031651414],[-122.27880632725481,47.52511928079458],[-122.27880141676953,47.52508819618944],[-122.27879650680805,47.52505711157753],[-122.27879210239917,47.52502602053288],[-122.27878820354194,47.52499492305557],[-122.27878430402023,47.52496378276795],[-122.27878091004902,47.52493263604777],[-122.27877802094854,47.52490143973398],[-122.27877513186121,47.52487024377098],[-122.27877224344645,47.52483909061807],[-122.27877036597324,47.52480788178352],[-122.27876848730547,47.52477662979448],[-122.27876711589869,47.52474541452086],[-122.27876574397558,47.52471419925383],[-122.2787648781155,47.5246829775478],[-122.27876401105965,47.52465171268734],[-122.27876415680514,47.52462047810995],[-122.278763797008,47.52458924996492],[-122.2787644482859,47.5245580086043],[-122.27876510009071,47.5245267675879],[-122.27876575189472,47.52449552657152],[-122.27913043376134,47.52321312521167],[-122.27988748797654,47.52082760803428],[-122.27989472613835,47.52079671131526],[-122.279900951585,47.52076578502453],[-122.27990768251946,47.52073485194515],[-122.27991340073079,47.52070388894342],[-122.27991962377942,47.52067287704457],[-122.27992534130688,47.52064187123207],[-122.2799300871929,47.52061233433074],[-122.27993576259276,47.52057982969766],[-122.27994097289141,47.52054878752504],[-122.27994567597513,47.52051770899283],[-122.27995037905328,47.52048663046043],[-122.27995457544533,47.52045551591284],[-122.27995877182268,47.52042440101421],[-122.27996246097774,47.52039324940537],[-122.27996615133584,47.52036214130167],[-122.27996983929417,47.52033094688902],[-122.27997302242707,47.52029980207504],[-122.27997569886784,47.52026862089517],[-122.27997837530539,47.52023743971525],[-122.27998105173974,47.52020625853527],[-122.27998322096548,47.5201750409961],[-122.27998539070659,47.52014382345027],[-122.27998705441847,47.52011261199799],[-122.27998871762018,47.52008140090316],[-122.27999038014991,47.52005014699812],[-122.27999153784965,47.52001894234107],[-122.27999218886232,47.51998770131832],[-122.27999283986452,47.51995645994472],[-122.27999349087564,47.51992521892196],[-122.27999363587129,47.51989398434367],[-122.27999378086676,47.51986274976538],[-122.27999341865025,47.51983147847712],[-122.2799930581498,47.51980025033672],[-122.27999219163625,47.51976902864077],[-122.27999132511403,47.51973780659396],[-122.27999045741464,47.5197065420944],[-122.27998908489164,47.51967532684288],[-122.2799872068759,47.51964411802918],[-122.27998532885267,47.51961290886461],[-122.2799834496535,47.51958165724728],[-122.27998106682107,47.51955049768148],[-122.27997868332147,47.51951929530545],[-122.2799757932863,47.51948809902952],[-122.27997290378224,47.51945690309776],[-122.27996950945939,47.51942575641386],[-122.2799661151406,47.51939460972986],[-122.27996272133406,47.51936346268833],[-122.27995882101409,47.51933232244845],[-122.27995492121671,47.51930118220186],[-122.27995051660325,47.51927009120295],[-122.27994611199503,47.51923900020387],[-122.27994120190193,47.51920791564229],[-122.27993629248465,47.51917687389064],[-122.2799308775837,47.51914583857638],[-122.27992546268916,47.51911480326186],[-122.27991954298209,47.5190838171948],[-122.27991362379998,47.51905283112085],[-122.27990770529486,47.51902188785674],[-122.27990128012085,47.51899090822619],[-122.27989485733018,47.51896001420246],[-122.27988792854178,47.51892912662235],[-122.27988099976157,47.51889823904182],[-122.27987356669055,47.51886740070175],[-122.27986613363808,47.5188365627121],[-122.27985870125457,47.51880576718123],[-122.27985076339388,47.51877497808714],[-122.27984232125445,47.51874423858411],[-122.27983387859732,47.51871349873617],[-122.2798254376656,47.51868280203548],[-122.27981649191915,47.51865215423054],[-122.27980754619297,47.51862150677575],[-122.27979809565326,47.51859090821658],[-122.27978864684005,47.51856035280446],[-122.27977919751025,47.51852979704728],[-122.2797692439057,47.51849929088062],[-122.27975878601757,47.51846883395349],[-122.2797488331064,47.51843837059523],[-122.27973787042978,47.51840796291311],[-122.27972690895366,47.51837759803351],[-122.27971594867797,47.51834727595644],[-122.27970498908482,47.51831699668845],[-122.27969352454107,47.51828672384941],[-122.27968155468155,47.51825650026241],[-122.27966958772909,47.51822636227471],[-122.27965762027256,47.51819622429237],[-122.27964514787742,47.51816609308931],[-122.27963267734431,47.5181360471478],[-122.27961970202551,47.51810605080212],[-122.27960672841739,47.51807609690112],[-122.27959324883713,47.51804614979216],[-122.27957977112955,47.51801628829533],[-122.2795662939456,47.51798642643948],[-122.27955231368387,47.51795665697595],[-122.27921630338587,47.51673235832067],[-122.2787437862556,47.51312054999165],[-122.27855060045607,47.51067768081303],[-122.27851168400507,47.51018624869298],[-122.27848527913814,47.50985416291564],[-122.27860271604038,47.50985686717216],[-122.27897375188662,47.50986529785381],[-122.28075907820765,47.5099057949841],[-122.28245520324413,47.50994011856936],[-122.2839014324343,47.50999269025844],[-122.28446098591976,47.5100130045643],[-122.2848835329693,47.5100000215653],[-122.28532290841414,47.51001004259064],[-122.28553905386829,47.51001499089028],[-122.28592578488015,47.51002379800963],[-122.28604929694264,47.51002663096677],[-122.28652360148176,47.51003748616975],[-122.28984424707349,47.51011349555001],[-122.29004976246355,47.51011818588522],[-122.29025527789055,47.51012287584857],[-122.2913380349146,47.51014766841531],[-122.29131571336075,47.51220757021397],[-122.29130444954592,47.51330622207072],[-122.29130027817739,47.51369975000866],[-122.29129866916934,47.51384119700313],[-122.29128555456586,47.51501840478659],[-122.29126501871724,47.51688904415554],[-122.2912636782966,47.51698584487384],[-122.29126579323611,47.51830963868382],[-122.29126688795542,47.51914473021381],[-122.29126766172747,47.51966081303807],[-122.29126865181141,47.52018464750537],[-122.29126879958321,47.52064217134946],[-122.29126890235639,47.52091718266502],[-122.29126974612595,47.52139958935042],[-122.2912701394728,47.5218478130974],[-122.29127078369741,47.52228690795258],[-122.29127092217863,47.52232803575639],[-122.2912713447912,47.52275920741282],[-122.29127213423565,47.52327584704199],[-122.29127494806286,47.5242809191766],[-122.29214926882923,47.5242966432882],[-122.29221409961278,47.52444344970561],[-122.29365091648307,47.5277211549335],[-122.29570372201057,47.53240244102682],[-122.29593733539167,47.53322477222518],[-122.29784671148765,47.53302194771209],[-122.29824653503861,47.53385035794256],[-122.3021518821078,47.53737823793603],[-122.30986610940064,47.54383162964239],[-122.31304965064474,47.54655964058528],[-122.3139856689014,47.54745020987705]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000427,"geom:area_square_m":3562280.237635,"geom:bbox":"-122.313985669,47.5098541629,-122.278485279,47.5488815738","geom:latitude":47.527119,"geom:longitude":-122.289836,"iso:country":"US","lbl:latitude":47.524764,"lbl:longitude":-122.285406,"lbl:max_zoom":18,"mps:latitude":47.524764,"mps:longitude":-122.285406,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["S Beacon Hill","S Beacon Hl","South Beacon Hl"],"reversegeo:latitude":47.524764,"reversegeo:longitude":-122.285406,"src:geom":"seagv","wof:belongsto":[85805013,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dab12b61ca0422e483f4050e3f3389d0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536803,"neighbourhood_id":85805013,"region_id":85688623}],"wof:id":890536803,"wof:lastmodified":1566631087,"wof:name":"South Beacon Hill","wof:parent_id":85805013,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869663],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890536877.geojson b/fixtures/microhoods/890536877.geojson new file mode 100644 index 0000000..54a1798 --- /dev/null +++ b/fixtures/microhoods/890536877.geojson @@ -0,0 +1 @@ +{"id":890536877,"type":"Feature","bbox":[-122.39254025841026,47.70147561414143,-122.36077099220473,47.71116229228146],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37677113722633,47.70153723304239],[-122.39254025841026,47.70147561414143],[-122.39246606611373,47.70149955365599],[-122.39239799450233,47.70153227524281],[-122.3923285704935,47.70155379019237],[-122.39228642293233,47.7015705616291],[-122.39221416713013,47.7015992275271],[-122.39217884445316,47.70160656561576],[-122.39211751703677,47.7016271554301],[-122.39207939602737,47.70164275806026],[-122.39198168963719,47.70166932935674],[-122.39192244044055,47.70169151920072],[-122.3918563494472,47.70172258517062],[-122.39182208330644,47.70173127998575],[-122.39177886259274,47.70174613796181],[-122.39172445884735,47.70176059180486],[-122.39168122857265,47.70177515013567],[-122.39163104214187,47.70179477344443],[-122.39160305544816,47.70180968035879],[-122.391543633765,47.70182613100427],[-122.39150039619034,47.70184043209539],[-122.39145098570249,47.70185207568183],[-122.3913668354503,47.70189050085543],[-122.39132560342335,47.70190396053994],[-122.39126943266967,47.70192722162434],[-122.39119510464326,47.70195454389937],[-122.39115292300409,47.70197020170889],[-122.3910998138749,47.7019939775221],[-122.3910584828045,47.70200413958695],[-122.39100211403513,47.7020208051426],[-122.39095467553172,47.70203049362126],[-122.39091046369907,47.70204617908144],[-122.39087343153355,47.70206425136884],[-122.39084136714078,47.70207865680168],[-122.39080029920079,47.70209759813462],[-122.3907632335711,47.7021145568274],[-122.39071392152785,47.70212949761751],[-122.39063763732875,47.70215933119573],[-122.39059431653743,47.70217089120608],[-122.39055905924911,47.70218041310099],[-122.3905219690904,47.70219655812268],[-122.39046350439153,47.70221106682906],[-122.39038349564149,47.70225217654964],[-122.39034618328309,47.70226091252341],[-122.39029798485967,47.70227913679227],[-122.39023167008008,47.70230279317941],[-122.39017227230408,47.70232005669526],[-122.39013433889012,47.70234195410661],[-122.39008817039978,47.7023601509117],[-122.39005096495964,47.70237244111874],[-122.3899956271905,47.7023896490937],[-122.38996152406347,47.70240382519607],[-122.38989431713463,47.70243160636485],[-122.38985090663277,47.70244016817691],[-122.38981165379916,47.70245192925419],[-122.38967028212623,47.70251255626394],[-122.38960192000137,47.70253568322253],[-122.38949469179303,47.70258350474992],[-122.38943939466978,47.70260208282706],[-122.38940534051902,47.70261788594146],[-122.38934943115002,47.70264992579467],[-122.3893184143634,47.70266543015112],[-122.3892631825225,47.70268619245887],[-122.38918261405031,47.70270867149761],[-122.38910025402696,47.70273914431029],[-122.38905817757791,47.70275835568204],[-122.38902602246256,47.70276976269464],[-122.38893585304136,47.70281075277116],[-122.3888458804753,47.70285833818387],[-122.38877773940118,47.70288887364124],[-122.38865556175098,47.70294619549089],[-122.38862140915883,47.70295874365519],[-122.38855140186155,47.70299478851749],[-122.38851833017232,47.70300950676064],[-122.38847726782937,47.70302870442712],[-122.3884080625375,47.70305762597457],[-122.38836697626714,47.70307600965032],[-122.38830291918723,47.70310730302779],[-122.38826172642499,47.70312213197613],[-122.38823165870417,47.70313543822446],[-122.38816086481039,47.7031791628584],[-122.38807758708329,47.70321294595141],[-122.38803325748768,47.70322477599677],[-122.38795598789667,47.70325573518975],[-122.38791097183426,47.70327854235784],[-122.38787817024031,47.70330229694727],[-122.38781638109921,47.70334152814021],[-122.38778235161027,47.70335818751543],[-122.38771636187957,47.70339280577958],[-122.3876300216974,47.70342607364049],[-122.38757592646087,47.70345093275918],[-122.38746112504384,47.70351727857618],[-122.38742518513315,47.70353799104462],[-122.38739345587416,47.70356365880833],[-122.3873556433936,47.70358966676377],[-122.38725716956819,47.703624727951],[-122.38720416330857,47.70365205663771],[-122.38714736708553,47.70368847752978],[-122.38711729927124,47.70370178347675],[-122.38706010013284,47.70372475636169],[-122.38701405284262,47.70374706338384],[-122.38694781615428,47.7037734586125],[-122.38690009807225,47.70380782735882],[-122.38685703819542,47.70382816566192],[-122.38681714644319,47.70385257356837],[-122.38677517456316,47.70387533878714],[-122.38673737050698,47.70390164615274],[-122.38667854354826,47.70393809447614],[-122.3866423340686,47.70394981296478],[-122.38656131351813,47.70399123379763],[-122.38647477561227,47.70405192349084],[-122.38642685206759,47.70407943982096],[-122.38637078305604,47.70410625318016],[-122.38630584800995,47.70414222751428],[-122.38625887405674,47.70416754562715],[-122.38619498722223,47.70420461962958],[-122.38615493098085,47.70422354545923],[-122.38609115026195,47.70426417374373],[-122.38605230489986,47.70428963831289],[-122.38600333382767,47.70431609753344],[-122.3859386683903,47.70436110819429],[-122.3858737416823,47.70439738189755],[-122.38584189592359,47.70441919492119],[-122.38581499547784,47.70443657052157],[-122.38575391513066,47.70446563667328],[-122.38570610602072,47.70449700700715],[-122.38567213141673,47.70451555010294],[-122.38558670523935,47.7045795231754],[-122.38553666866795,47.70460432602815],[-122.385504699772,47.70462202748553],[-122.3854608112024,47.70464867452833],[-122.38541286225774,47.70467537683781],[-122.38537897828456,47.70469696020923],[-122.38535621978167,47.70471702151697],[-122.38532337516301,47.7047394049959],[-122.38524474207108,47.70479283134988],[-122.38520691993625,47.70481858142668],[-122.38513826705187,47.70486613084255],[-122.38509827516518,47.70488724026773],[-122.38505044864748,47.70491805389669],[-122.38499387086173,47.70496188236282],[-122.38492308838644,47.70500616176232],[-122.38488348138834,47.7050401619585],[-122.3848436773419,47.70506756743588],[-122.38473444193905,47.70515050097282],[-122.38466467406796,47.70519476604578],[-122.38458818544434,47.70525201896926],[-122.3845306322178,47.70529723139931],[-122.38449373417545,47.705319927055],[-122.3844328247193,47.70535477431108],[-122.38438804265594,47.70538554587409],[-122.38433653086233,47.70542900533115],[-122.38427077460189,47.70547158772251],[-122.384198927108,47.70551425259269],[-122.38416314180766,47.70554023186651],[-122.38411070536185,47.70558674574583],[-122.38405502608859,47.70562670597736],[-122.3839833086212,47.70567373899812],[-122.38390872548354,47.70572685238184],[-122.38388302676066,47.70575050915911],[-122.38381367542479,47.70580877812003],[-122.38377202026668,47.70584224911256],[-122.38372172715553,47.70589254670645],[-122.38365112256693,47.70594286359136],[-122.3835897361572,47.70599579728323],[-122.38354413478844,47.70603317772694],[-122.38350934781482,47.70605858620326],[-122.38345773695887,47.70609879054223],[-122.38334525501625,47.70617516909633],[-122.3832783259577,47.70621253968157],[-122.38321963273145,47.70625365412642],[-122.38315716573912,47.70630441705963],[-122.38309653153638,47.70634855695576],[-122.38306882566008,47.70637305475036],[-122.38303311383785,47.70640151759653],[-122.38296561841656,47.70645397697578],[-122.38289100935363,47.70650627573973],[-122.38283306920411,47.70653859680134],[-122.38277261460243,47.70658877515393],[-122.38272115775484,47.70663416103343],[-122.38268956354051,47.70666449573883],[-122.38266386327876,47.70668815224722],[-122.38261014732045,47.70672589985153],[-122.38258532339496,47.70674487463501],[-122.3825344235048,47.7067749146548],[-122.38249242311893,47.70679686469933],[-122.38242671214833,47.70684107321241],[-122.3823892307313,47.70687834283089],[-122.38234461730904,47.70691485260276],[-122.38231696112314,47.70694102089916],[-122.38228859068916,47.70697730994063],[-122.38226389806908,47.70700069539384],[-122.38220220629726,47.70704347823096],[-122.38214058901711,47.70708874496327],[-122.38204403530084,47.70715449463486],[-122.38201192445484,47.70716752720583],[-122.38195014340705,47.7072073119851],[-122.3819081010345,47.70722789109536],[-122.38187715388462,47.70724587770329],[-122.38183210691804,47.70726786887926],[-122.38180754420412,47.70729562287311],[-122.38177282907206,47.70732351476089],[-122.38174922398042,47.70734932779823],[-122.38146214478928,47.70759919594827],[-122.3813885719601,47.70765229353457],[-122.38130726154479,47.70771839256295],[-122.38125377149004,47.70776380535327],[-122.38120119055532,47.70780564999065],[-122.3811051415222,47.70788840083983],[-122.38107658263334,47.70791839412561],[-122.38104017971142,47.7079578338365],[-122.38097495609875,47.70801848706324],[-122.38088617572197,47.70810662345915],[-122.38083879291925,47.70815251014383],[-122.38080316797719,47.70818397020373],[-122.38073150711558,47.70826720394194],[-122.38068756249837,47.70832624005117],[-122.38065447419933,47.70837467449071],[-122.38062405364414,47.70841039108934],[-122.38057418114938,47.70847499167522],[-122.38045008589683,47.70867324553601],[-122.38042707787089,47.70871914415308],[-122.38038500465902,47.70877284194888],[-122.38036083337448,47.70881378610432],[-122.38034021273864,47.70887164881196],[-122.3803271378168,47.7089100434313],[-122.380035730266,47.70881048558709],[-122.37749270909688,47.70883227707372],[-122.3728596975809,47.70889493674346],[-122.37082529877597,47.70890962408215],[-122.36827977132198,47.70882953174548],[-122.36616762250053,47.7087562383982],[-122.36611972250665,47.71033363179051],[-122.36612188078104,47.71107780494403],[-122.36592192092546,47.71096172923412],[-122.36549384604808,47.71111778023438],[-122.36509114443537,47.71115275405936],[-122.36498071623592,47.71116229228146],[-122.36488454778326,47.71113873456621],[-122.36476638632344,47.71110990251479],[-122.36502353736871,47.71082342002148],[-122.36508595772445,47.71071864144154],[-122.36515044623134,47.71058067384624],[-122.36536864990447,47.71017912029583],[-122.36538067102701,47.71015625146849],[-122.36538758836697,47.71013250849706],[-122.36538992138543,47.71010831294706],[-122.3653871759088,47.7100841000051],[-122.36537987644867,47.71006046244529],[-122.36536701896972,47.71003775666576],[-122.36535013810312,47.71001638988552],[-122.36496839014802,47.70952178561721],[-122.36482418897002,47.70935029013739],[-122.36479779238472,47.70933342114942],[-122.36476843364433,47.70931942013469],[-122.36473612535721,47.70930871476479],[-122.36470188975018,47.70930154822254],[-122.36466624277898,47.70929817119419],[-122.36463025969293,47.70930062526989],[-122.3645927586239,47.70930327100088],[-122.36455897813957,47.70931152242075],[-122.36452783887351,47.70932325165466],[-122.36449983856492,47.70933810911333],[-122.36390253277133,47.70964466716394],[-122.36387713344695,47.70966163191986],[-122.36384915296254,47.70967717440899],[-122.3638196045014,47.70969119538888],[-122.36378848250995,47.7097035240062],[-122.36375629482275,47.70971415274047],[-122.36372304146295,47.70972308229251],[-122.36368820952441,47.7097301479178],[-122.36365332509321,47.70973541476869],[-122.36361787423493,47.70973871846607],[-122.36309212455527,47.70976813873978],[-122.36279382249582,47.70976108734684],[-122.36297134630492,47.70956410789802],[-122.3634111784664,47.70935915192151],[-122.36357827386044,47.70925648255552],[-122.36359696009312,47.70923575247192],[-122.36361461649874,47.70921452167358],[-122.36363022688248,47.70919280450354],[-122.36364480693211,47.70917058697776],[-122.36365734095304,47.70914788273083],[-122.36366885020738,47.70912484933209],[-122.3636783184922,47.709101500774],[-122.36368625416667,47.70907782988208],[-122.36369265872591,47.70905392262641],[-122.3636975362539,47.70902986459123],[-122.36370088770548,47.70900574105185],[-122.36370220377445,47.70898147390843],[-122.36370199733383,47.70895722685204],[-122.3636997600307,47.70893300705765],[-122.36370419293459,47.70875600158448],[-122.3629371597895,47.70874821532203],[-122.36291824343436,47.7076403927141],[-122.36184791241297,47.70693719599592],[-122.36079157225117,47.70693318873227],[-122.36078562089915,47.70650637041654],[-122.36077099220473,47.70578447254834],[-122.36077229118771,47.70512071459288],[-122.36098715305906,47.70512310535788],[-122.36286474958185,47.70513425998224],[-122.3638610676021,47.70515319192272],[-122.36526828533513,47.70519281456509],[-122.36552712285355,47.70513672303873],[-122.36556039758506,47.70514583014258],[-122.36559563429383,47.70515259721107],[-122.36563181787866,47.70515703788711],[-122.36566894328384,47.70515898096001],[-122.36570549012407,47.70515853250538],[-122.36574247274837,47.70515563606855],[-122.36606730640091,47.70516784953497],[-122.3674712203737,47.70516430249616],[-122.36878709791043,47.70517147836838],[-122.37009830699635,47.70517531749861],[-122.37139499443794,47.70518602083714],[-122.3727598123107,47.70518250762356],[-122.37408066742296,47.70518621351664],[-122.37476980812605,47.70518885035846],[-122.37541629069565,47.7051913321766],[-122.37541758854779,47.70441412006815],[-122.37541992896155,47.70350099227523],[-122.37542256554721,47.7025978430057],[-122.37543033046117,47.70159381162663],[-122.37543048253879,47.70153052857633],[-122.37631424954141,47.70154011976011],[-122.3766300095783,47.70153811552466],[-122.37677113722633,47.70153723304241],[-122.37677113722633,47.70153723304239]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000125,"geom:area_square_m":1041582.356184,"geom:bbox":"-122.392540258,47.7014756141,-122.360770992,47.7111622923","geom:latitude":47.705586,"geom:longitude":-122.375538,"iso:country":"US","lbl:latitude":47.705172,"lbl:longitude":-122.379268,"lbl:max_zoom":18,"mps:latitude":47.705172,"mps:longitude":-122.379268,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Blue Ridge"],"name:eng_x_variant":["Blue Rdg"],"name:fra_x_preferred":["Blue Ridge"],"reversegeo:latitude":47.705172,"reversegeo:longitude":-122.379268,"src:geom":"mz","wof:belongsto":[85837313,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4929689"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"59c5933e34e6abe23aaca10a7d9c3e19","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890536877,"neighbourhood_id":85837313,"region_id":85688623}],"wof:id":890536877,"wof:lastmodified":1566631089,"wof:name":"Blue Ridge","wof:parent_id":85837313,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85806519],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537369.geojson b/fixtures/microhoods/890537369.geojson new file mode 100644 index 0000000..6e0947a --- /dev/null +++ b/fixtures/microhoods/890537369.geojson @@ -0,0 +1 @@ +{"id":890537369,"type":"Feature","bbox":[-122.33431663446532,47.59028056888641,-122.32991210450093,47.59245401468937],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.33431663446532,47.59028056888641],[-122.33430878809058,47.59245401468937],[-122.33328671766526,47.59245186050829],[-122.32991210450093,47.59244520370022],[-122.32991991288496,47.59028228132443],[-122.33431663446532,47.59028056888641]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":79495.269846,"geom:bbox":"-122.334316634,47.5902805689,-122.329912105,47.5924540147","geom:latitude":47.591365,"geom:longitude":-122.332116,"iso:country":"US","lbl:latitude":47.591365,"lbl:longitude":-122.332118,"lbl:max_zoom":18,"mps:latitude":47.591365,"mps:longitude":-122.332118,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.591365,"reversegeo:longitude":-122.332118,"src:geom":"mz","wof:belongsto":[85866047,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"928593566ed8618418ce25f3b9c6df7e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890537369,"neighbourhood_id":85866047,"region_id":85688623}],"wof:id":890537369,"wof:lastmodified":1566631081,"wof:name":"Safeco Field","wof:parent_id":85866047,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537371.geojson b/fixtures/microhoods/890537371.geojson new file mode 100644 index 0000000..b48b232 --- /dev/null +++ b/fixtures/microhoods/890537371.geojson @@ -0,0 +1 @@ +{"id":890537371,"type":"Feature","bbox":[-122.33328671766526,47.59244520370022,-122.32984191803376,47.59649825917563],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.33328671334827,47.59649825871272],[-122.32984191803376,47.59649825917563],[-122.32991210450093,47.59244520370022],[-122.33328671766526,47.59245186050829],[-122.33328671334827,47.59649825871272]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":115145.696789,"geom:bbox":"-122.333286718,47.5924452037,-122.329841918,47.5964982592","geom:latitude":47.59448,"geom:longitude":-122.331581,"iso:country":"US","lbl:latitude":47.594473,"lbl:longitude":-122.33158,"lbl:max_zoom":18,"mps:latitude":47.594473,"mps:longitude":-122.33158,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["ملعب سينشري لينك فيلد"],"name:bul_x_preferred":["Сенчърилинк Фийлд"],"name:cat_x_preferred":["CenturyLink Field"],"name:ces_x_preferred":["CenturyLink Field"],"name:dan_x_preferred":["CenturyLink Field"],"name:deu_x_preferred":["CenturyLink Field"],"name:eus_x_preferred":["CenturyLink Field"],"name:fas_x_preferred":["ورزشگاه سنچوری لینک فیلد"],"name:fin_x_preferred":["CenturyLink Field"],"name:fra_x_preferred":["CenturyLink Field"],"name:glg_x_preferred":["CenturyLink Field"],"name:hin_x_preferred":["क्वेस्ट फील्ड"],"name:hun_x_preferred":["CenturyLink Field"],"name:ind_x_preferred":["CenturyLink Field"],"name:ita_x_preferred":["CenturyLink Field"],"name:jpn_x_preferred":["センチュリーリンク・フィールド"],"name:kor_x_preferred":["센추리링크 필드"],"name:nld_x_preferred":["CenturyLink Field"],"name:nor_x_preferred":["CenturyLink Field"],"name:pol_x_preferred":["CenturyLink Field"],"name:por_x_preferred":["CenturyLink Field"],"name:rus_x_preferred":["Сенчури Линк-филд"],"name:spa_x_preferred":["CenturyLink Field"],"name:swe_x_preferred":["CenturyLink Field"],"name:tur_x_preferred":["CenturyLink Field"],"name:ukr_x_preferred":["Сенчурі Лінк Філд"],"name:vie_x_preferred":["CenturyLink Field"],"reversegeo:latitude":47.594473,"reversegeo:longitude":-122.33158,"src:geom":"mz","wof:belongsto":[85866047,102191575,890536791,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9c69039abd8587f97fd9e61425a66c7d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536791,"microhood_id":890537371,"neighbourhood_id":85866047,"region_id":85688623}],"wof:id":890537371,"wof:lastmodified":1566631081,"wof:name":"CenturyLink Field","wof:parent_id":85866047,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537375.geojson b/fixtures/microhoods/890537375.geojson new file mode 100644 index 0000000..e1d655b --- /dev/null +++ b/fixtures/microhoods/890537375.geojson @@ -0,0 +1 @@ +{"id":890537375,"type":"Feature","bbox":[-122.33524324879062,47.69773933894475,-122.32958992116771,47.70147672797173],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32958992116771,47.69775218564124],[-122.33522147159402,47.69773933894475],[-122.33524324879062,47.70147672797173],[-122.32994511636413,47.70147672775465],[-122.32992295520268,47.70070757455697],[-122.32982830533427,47.69958995302498],[-122.32958992116771,47.69775218564124]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00002,"geom:area_square_m":168510.259493,"geom:bbox":"-122.335243249,47.6977393389,-122.329589921,47.701476728","geom:latitude":47.699591,"geom:longitude":-122.332519,"iso:country":"US","lbl:latitude":47.699611,"lbl:longitude":-122.332519,"lbl:max_zoom":18,"mps:latitude":47.699611,"mps:longitude":-122.332519,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["NSC"],"name:lat_x_preferred":["Collegium Seattli Septentrionalis"],"reversegeo:latitude":47.699611,"reversegeo:longitude":-122.332519,"src:geom":"mz","wof:belongsto":[420783233,102191575,890536781,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7c7887d04da1e5f6a525940248d4683e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536781,"microhood_id":890537375,"neighbourhood_id":420783233,"region_id":85688623}],"wof:id":890537375,"wof:lastmodified":1566631085,"wof:name":"North Seattle College","wof:parent_id":420783233,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537379.geojson b/fixtures/microhoods/890537379.geojson new file mode 100644 index 0000000..5ec0f5b --- /dev/null +++ b/fixtures/microhoods/890537379.geojson @@ -0,0 +1 @@ +{"id":890537379,"type":"Feature","bbox":[-122.41052169130589,47.66774054966434,-122.40782313742261,47.67158206826592],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.40823949919006,47.66774394323874],[-122.40936913532654,47.66774101814911],[-122.4096006416303,47.66774054966434],[-122.40946228700633,47.6684736570594],[-122.41015742794382,47.66848503573073],[-122.41052169130589,47.67150659067338],[-122.41036078573946,47.67151519857133],[-122.4093925505518,47.67158206826592],[-122.40921853192869,47.67156665234332],[-122.40897134557115,47.67151467327137],[-122.40877555123487,47.67141703881473],[-122.40867259366537,47.67123474483345],[-122.40865706922088,47.67119134348913],[-122.40860090286864,47.67104597693644],[-122.40858742426401,47.67100310465592],[-122.40856697909655,47.67093127955265],[-122.40854763149015,47.67086218185511],[-122.40852098261074,47.67078658662157],[-122.40848921190877,47.67070943434089],[-122.40822684983301,47.67008950020367],[-122.40818578287222,47.67004045396669],[-122.4081500532231,47.67000007412311],[-122.4080206417571,47.66981540308178],[-122.40789222203529,47.66959644220112],[-122.4078305359298,47.66950325089597],[-122.40782313742261,47.66946003722882],[-122.40782519198102,47.66942736104871],[-122.40783306872937,47.66938586455616],[-122.4078318478824,47.66934556430681],[-122.40784204788112,47.66921324750182],[-122.40784607575112,47.66914519755035],[-122.40786028945766,47.66907837775194],[-122.407870114566,47.66896718831055],[-122.40790631608567,47.66882217291946],[-122.40791748598188,47.66875539518374],[-122.40793582366827,47.66869070324037],[-122.40796989758431,47.66859271778617],[-122.40798341565599,47.66855319935935],[-122.40799556552341,47.6685187557614],[-122.40803239345405,47.66849493925876],[-122.40805863778579,47.66845674465024],[-122.40808005929492,47.66839338099012],[-122.40813141017324,47.66824597121025],[-122.4082078023202,47.66795369983036],[-122.40823600965048,47.66787983109249],[-122.40823949919006,47.66774394323874]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":62624.039974,"geom:bbox":"-122.410521691,47.6677405497,-122.407823137,47.6715820683","geom:latitude":47.669684,"geom:longitude":-122.4092,"iso:country":"US","lbl:latitude":47.669654,"lbl:longitude":-122.409219,"lbl:max_zoom":18,"mps:latitude":47.669654,"mps:longitude":-122.409219,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ang_x_preferred":["Penwiðsteort"],"name:ara_x_preferred":["لاندز إند"],"name:aze_x_preferred":["Lends End"],"name:bre_x_preferred":["Penn an Wlas"],"name:bul_x_preferred":["Ландс Енд"],"name:cat_x_preferred":["Land's End"],"name:ces_x_preferred":["Land's End"],"name:cor_x_preferred":["Pedn an Wlas"],"name:dan_x_preferred":["Land's End"],"name:deu_x_preferred":["Land’s End"],"name:eng_x_variant":["Lands End"],"name:eus_x_preferred":["Land's End"],"name:fas_x_preferred":["لندز اند"],"name:fin_x_preferred":["Land’s End"],"name:fra_x_preferred":["Land's End"],"name:gle_x_preferred":["Land's End"],"name:glg_x_preferred":["Land's End"],"name:heb_x_preferred":["לנדס אנד"],"name:isl_x_preferred":["Land’s End"],"name:ita_x_preferred":["Land's End"],"name:jpn_x_preferred":["ランズ・エンド"],"name:lat_x_preferred":["Antivestaeum promunturium"],"name:lit_x_preferred":["Žemės Kraštas"],"name:nld_x_preferred":["Land's End"],"name:nno_x_preferred":["Land's End"],"name:nor_x_preferred":["Land's End"],"name:pol_x_preferred":["Land’s End"],"name:por_x_preferred":["Land's End"],"name:rus_x_preferred":["Лендс-Энд"],"name:slv_x_preferred":["Land's End"],"name:spa_x_preferred":["Land's End"],"name:swe_x_preferred":["Land's End"],"name:zho_x_preferred":["兰兹角"],"reversegeo:latitude":47.669654,"reversegeo:longitude":-122.409219,"src:geom":"mz","wof:belongsto":[85688623,102191575,85633793,101730401,102086191,85831927],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5966fe6b17165b1a0284a9db73aec38a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537379,"neighbourhood":85831927,"region_id":85688623}],"wof:id":890537379,"wof:lastmodified":1566631080,"wof:name":"Land's End","wof:parent_id":85831927,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537383.geojson b/fixtures/microhoods/890537383.geojson new file mode 100644 index 0000000..a7ea0a4 --- /dev/null +++ b/fixtures/microhoods/890537383.geojson @@ -0,0 +1 @@ +{"id":890537383,"type":"Feature","bbox":[-122.32249357469485,47.6474884950659,-122.29015095905548,47.66125813754369],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.29019349967218,47.65843864729283],[-122.290389713353,47.65844345106294],[-122.29056494692729,47.6584835243466],[-122.29072466818673,47.65858524724853],[-122.29086981801589,47.65874551168925],[-122.29211786209578,47.66027158768642],[-122.2932117932485,47.65993153986614],[-122.29349381472164,47.65981641897601],[-122.29368115181731,47.65969594435898],[-122.2938095362806,47.65955450699428],[-122.29413552798536,47.65944482222564],[-122.294668784171,47.65925901966988],[-122.29568299208044,47.65892334722184],[-122.29669044218885,47.65862402619074],[-122.2967106113789,47.65841826064061],[-122.29668193420488,47.65825024881025],[-122.2966808848254,47.65806716188782],[-122.29673263909535,47.65788246628529],[-122.2968337084058,47.65757639197874],[-122.29689759277223,47.65733755782355],[-122.2969137293177,47.65714060214726],[-122.29688447807366,47.65691342249062],[-122.29687800205404,47.65655987406767],[-122.29693716542228,47.65641179867173],[-122.29699501625358,47.65621044780622],[-122.29705840249993,47.65598175717808],[-122.29709688789603,47.65554277590159],[-122.29717305343816,47.65524301176885],[-122.29726599769774,47.65497830537313],[-122.29728004829411,47.65457393076384],[-122.2974223458648,47.65442098793181],[-122.29749129425632,47.6543332014019],[-122.29750374555357,47.65430699239934],[-122.29753371871486,47.65425450919786],[-122.29755316871035,47.65422465449213],[-122.29757543720119,47.65418679433424],[-122.29759369570962,47.65415065671594],[-122.29760520999584,47.65412720190655],[-122.2976253338618,47.65408525660174],[-122.29763577247992,47.65405963045683],[-122.29763902559016,47.65403105481182],[-122.29763704648535,47.65399680556394],[-122.2976331163468,47.65396532320931],[-122.29763092132892,47.65392340760951],[-122.29764334902315,47.65389638498446],[-122.2976788633408,47.65386053965069],[-122.29770841666118,47.65382918374857],[-122.29774737440611,47.65380756084809],[-122.29780490548663,47.65379696710677],[-122.29783284616617,47.65378041316985],[-122.29787784368055,47.65375708438653],[-122.29792102838533,47.65374144837801],[-122.29797131234682,47.65372572069929],[-122.29805873484932,47.65369580560146],[-122.29812354911738,47.65369167280968],[-122.29817082926196,47.65367735493192],[-122.29827440670617,47.65368069231079],[-122.2983416124153,47.65368942481475],[-122.29838032858125,47.65369522463219],[-122.29844320754033,47.6536944157091],[-122.29851033605568,47.65370040729943],[-122.29855675647673,47.65369158393666],[-122.2985941673714,47.65365108701747],[-122.2986173874038,47.653611029236],[-122.29861057612621,47.65358532520829],[-122.29855683467984,47.65355037070386],[-122.29848850908719,47.65350189406727],[-122.29845026647459,47.65347689448887],[-122.2984029809051,47.65345500995436],[-122.29834074636614,47.65344265747329],[-122.29825222029484,47.65343338531951],[-122.29820333139723,47.65342660232253],[-122.2981382471767,47.65342114160805],[-122.29805002160762,47.65342253328205],[-122.29800250277849,47.65342837149599],[-122.29793589949163,47.65344100991698],[-122.29788448586983,47.65345263904928],[-122.29783119791233,47.65346977622715],[-122.29774193523035,47.6534703670901],[-122.29774225449516,47.65344568496451],[-122.29776696812054,47.65342261740031],[-122.2978028065411,47.65339829278093],[-122.29783935811659,47.65336329077915],[-122.29788313969846,47.65333282302441],[-122.29796131832646,47.6532989138089],[-122.29800849749596,47.65328104122625],[-122.29807443447089,47.65328075016561],[-122.29811461501589,47.65326652326959],[-122.2981488877954,47.65325867057363],[-122.29820359860132,47.65325603893989],[-122.29825211687913,47.65324967395762],[-122.29834545850672,47.65324984412555],[-122.29844394840515,47.65325269014251],[-122.29850579703597,47.65325133743776],[-122.29855020402734,47.65324309697208],[-122.2986220396719,47.65323613174301],[-122.29867099982201,47.65320945284559],[-122.29871535296235,47.65319928545908],[-122.29881265122206,47.65319584826332],[-122.29887237810354,47.65319122385841],[-122.2989187593783,47.65318102994105],[-122.2989602398499,47.65317694003937],[-122.29903347581043,47.65318366662094],[-122.29909847530737,47.65318612883965],[-122.29913904188982,47.65318560670306],[-122.29917949255002,47.65318097298072],[-122.29923299591967,47.65317150152073],[-122.29929774785971,47.65316518404065],[-122.29935814941386,47.65314851158722],[-122.29935831895254,47.65301059630239],[-122.29935731084271,47.65286691212661],[-122.29936029503783,47.6527928399694],[-122.29939781851586,47.65279235691146],[-122.29939699680108,47.65265526829317],[-122.29941255265922,47.65259530137967],[-122.29953417371966,47.65259099377739],[-122.29953745709845,47.65256353166373],[-122.2995296779925,47.65253951078277],[-122.29948206846204,47.65250610593992],[-122.29943134737883,47.65247029905943],[-122.29936746517426,47.65243547584686],[-122.29931586902579,47.65240460715408],[-122.29928698594307,47.65238771315121],[-122.29924812332703,47.65237668848328],[-122.29920728689575,47.65236761710922],[-122.29916212368202,47.65234900473369],[-122.29912309932095,47.65233224087429],[-122.29907024798747,47.65232880841772],[-122.29902334954502,47.65232062891044],[-122.2989489534363,47.65230869056526],[-122.29885495625183,47.6522852222261],[-122.29880393275641,47.65227465398927],[-122.2987587764871,47.65225629828015],[-122.29871563444489,47.65223740245812],[-122.29866540783455,47.65221911195682],[-122.29861103268954,47.6521976188279],[-122.29858115931899,47.65218155130071],[-122.29853989831233,47.65215740415716],[-122.29850491545182,47.65214003144654],[-122.29845975940498,47.65212167561879],[-122.29841036242763,47.65209681919492],[-122.29834302722352,47.6520834183651],[-122.29829793403674,47.65206728964789],[-122.29825686633212,47.6520499951392],[-122.29820180135053,47.65203999245162],[-122.29812852849975,47.65203189492782],[-122.29810535212695,47.65200147440159],[-122.29810344277278,47.65196970915407],[-122.29809645407286,47.65193770915675],[-122.29806711556796,47.65190462572473],[-122.29802569335176,47.65187473959506],[-122.29798361181574,47.65185745803055],[-122.2979171909809,47.6518404894783],[-122.29787202867688,47.65182187624002],[-122.29783406505477,47.65180672682595],[-122.29780008104582,47.6517887837129],[-122.29778221590837,47.65176682067852],[-122.29778310892044,47.65172649353441],[-122.29779066908806,47.65167074274531],[-122.29779328192485,47.65161942520147],[-122.29779669239137,47.65156042897302],[-122.29779984565033,47.65152829853515],[-122.29782232467039,47.65146194494992],[-122.29783845258535,47.6514222357886],[-122.29781153765154,47.65140313095016],[-122.29777530934487,47.65137754791682],[-122.29777553570075,47.65134956818085],[-122.29779921381436,47.6512897539662],[-122.297811602192,47.65126136091299],[-122.29783160225732,47.65121504716817],[-122.29784710205337,47.65118905582167],[-122.2978584992378,47.65116148941807],[-122.29787781691152,47.6511269662804],[-122.29789018952368,47.65109801642468],[-122.29789819756218,47.65105815441662],[-122.29789937638861,47.65102797761747],[-122.29790180399709,47.65097010766309],[-122.29790459403439,47.65092508606011],[-122.29791131000246,47.65087538707726],[-122.29792636208278,47.65083350657275],[-122.29795482898898,47.65079967965716],[-122.29798365228211,47.65077848706932],[-122.29797078822368,47.65075397484974],[-122.29794992653142,47.65073367820176],[-122.29795931837712,47.65070695148552],[-122.29799321963661,47.65068595084777],[-122.29812522472012,47.65069029390555],[-122.29826739378136,47.65069531996762],[-122.29836387365964,47.65069900575756],[-122.29845502813157,47.65069371994778],[-122.29849194839763,47.65067186605718],[-122.29851885019141,47.65065451103285],[-122.2985554300508,47.65062057957537],[-122.29858131050999,47.65060298076406],[-122.2986233243518,47.65058187519848],[-122.29865312939755,47.65055955581219],[-122.29869779907453,47.65052470630098],[-122.29872622720582,47.65048950877846],[-122.29871687104647,47.65044550017332],[-122.29868754868085,47.65041297369311],[-122.29865478815157,47.65040242731636],[-122.29862816413521,47.65042963274426],[-122.29861060496101,47.65045453671317],[-122.2985739171435,47.65048461342939],[-122.2985328720716,47.65050407869586],[-122.29850789976409,47.65048190713842],[-122.29851728404044,47.6504549235562],[-122.29854721534002,47.6504010696739],[-122.29856245988478,47.6503660418221],[-122.29857797475339,47.65034060716908],[-122.29859904213627,47.65029620744112],[-122.2986260694136,47.65024731787402],[-122.298652904044,47.65019157590729],[-122.29865403654411,47.6501597715217],[-122.29865709573518,47.65012434345731],[-122.29866244664098,47.65009822567007],[-122.29866321583033,47.65005353012479],[-122.2986719281718,47.65000269140448],[-122.2986788979565,47.64996202878189],[-122.29869695264046,47.6499187386211],[-122.29871636172386,47.6498875133052],[-122.29873086233948,47.64986209167991],[-122.2987537100129,47.6498088858863],[-122.29880193295968,47.64975616779105],[-122.29880707492775,47.64972264081668],[-122.29882126643206,47.64968625522131],[-122.29883007099222,47.64963871445369],[-122.29884231165904,47.64960509612062],[-122.29885760284283,47.64957173825852],[-122.29887370644842,47.64953121533464],[-122.29890826688928,47.64946166412374],[-122.29891699405717,47.64941138183321],[-122.2989263622337,47.64938384142264],[-122.29893973269711,47.64935432159999],[-122.29895069672027,47.64931142273535],[-122.29896072564547,47.64923533201446],[-122.29897613979013,47.64920634287867],[-122.29899292522319,47.64915402931456],[-122.29903719375675,47.64906901484116],[-122.29904660768798,47.64904310199802],[-122.29906197584734,47.6490124852728],[-122.29907588085447,47.64896594965106],[-122.29909002609283,47.64892793679448],[-122.29909950998629,47.64890450759033],[-122.2991223568717,47.6488513020719],[-122.29914079714976,47.64882171661109],[-122.29916332538517,47.64879319286686],[-122.29918871021495,47.64875803438576],[-122.29920616781364,47.64872957590558],[-122.29921955363739,47.64870061249223],[-122.29924084266419,47.64866413581961],[-122.29925631805742,47.6486373306657],[-122.29927975993868,47.64860523906626],[-122.29930718831535,47.6485706112441],[-122.2993384867326,47.64852933563126],[-122.29936788145794,47.64849249731412],[-122.29938824926553,47.64845933127601],[-122.29941368760014,47.64842609995161],[-122.29942664816888,47.6483820613355],[-122.29938857118711,47.64836280050863],[-122.29941506212886,47.64833092688664],[-122.29945607497268,47.64831039086775],[-122.29950677831197,47.64830973803709],[-122.29953768918605,47.64829070296231],[-122.29963172726644,47.64827989540699],[-122.29965954119936,47.64825897227679],[-122.29967891819048,47.64822663285043],[-122.29968578925052,47.64811056710983],[-122.29968316835016,47.64801763029795],[-122.29966367133765,47.64797375270012],[-122.29963075755639,47.64795772462487],[-122.29954737993565,47.64795082937428],[-122.299546529731,47.64792067831687],[-122.29956486920824,47.64788753835934],[-122.2995761415756,47.64785560338944],[-122.29957689476487,47.6478103510344],[-122.29957051030422,47.64776381933131],[-122.29955643850577,47.64773246796619],[-122.29955826728825,47.64768938657483],[-122.2995838053778,47.64765970998962],[-122.2996316612511,47.64763004574652],[-122.29965727656088,47.64760310995862],[-122.2996954400172,47.64758946576131],[-122.29975083386371,47.64757529957575],[-122.29980648375047,47.6475702129226],[-122.2999025870938,47.64756074908195],[-122.29997704715784,47.64753922508418],[-122.30003261121146,47.64753109753309],[-122.30007047881453,47.64754294861611],[-122.30011291484277,47.64753691802581],[-122.30014932750815,47.64753315017457],[-122.30020294933273,47.64752808945118],[-122.30024833374091,47.64751872167255],[-122.30028400356848,47.64752456038284],[-122.30033084350191,47.64753081182132],[-122.3003714829892,47.647533030059],[-122.30045853656576,47.64752642449999],[-122.30053946751855,47.64751852685939],[-122.30064490613918,47.64751635432633],[-122.30069129771779,47.64750671647865],[-122.30078254667937,47.64750498358248],[-122.30099860188298,47.64750438421189],[-122.30120757435242,47.6475044323791],[-122.30144239273613,47.64750371874791],[-122.30163667369212,47.64750438408282],[-122.30172395201744,47.64750574352517],[-122.30193293175647,47.6475060475318],[-122.30214191997156,47.64750665112863],[-122.30234783423725,47.64750617965542],[-122.30255171326652,47.64750547715663],[-122.30275964877121,47.64750472229709],[-122.3029696194944,47.64750419735284],[-122.30317661795749,47.6475061956371],[-122.30321772915369,47.64748921303789],[-122.30333639648137,47.6474884950659],[-122.30348967344763,47.64749200019844],[-122.30371285796818,47.64749241762383],[-122.30392183039191,47.64749246081046],[-122.30412882087896,47.64749415738369],[-122.30433882305903,47.64749474385178],[-122.30455795163896,47.64749521166631],[-122.30476487983451,47.6474947230726],[-122.30497383650984,47.64749420753596],[-122.3051828089517,47.64749424875957],[-122.30536547020144,47.64749655728976],[-122.30556839701264,47.64749804686657],[-122.30577534149627,47.64749811322291],[-122.30598532741233,47.64749813951791],[-122.30619734235086,47.64749813953198],[-122.30640126739526,47.64749905736556],[-122.30660723620659,47.64750050573895],[-122.30681117705561,47.64750197998199],[-122.3068399979778,47.64751668806313],[-122.30687438646027,47.64754888966917],[-122.30691412878322,47.64755523060875],[-122.30700465858767,47.6475639129937],[-122.30704327040922,47.64756615509609],[-122.3070993536212,47.64757639720604],[-122.30713601517483,47.64758140668382],[-122.30719504014593,47.64758805459665],[-122.30726408951803,47.64759046000186],[-122.30733628890242,47.64759663722758],[-122.30741877684994,47.64760790863593],[-122.30746961174385,47.64761192026537],[-122.30752653110827,47.64761585345173],[-122.30758040000936,47.64761952602019],[-122.30764055564764,47.64763027213761],[-122.30774010404711,47.64763502418455],[-122.30785099320669,47.64764618444695],[-122.30790394967623,47.64765346757333],[-122.30794763936342,47.64765590087828],[-122.3079976704935,47.64766733491771],[-122.30805256926263,47.64767155092357],[-122.30808926932382,47.64767793050527],[-122.30819102492458,47.64768895146497],[-122.30827238258527,47.64769612382555],[-122.30831409849387,47.64770051046113],[-122.30836300640692,47.64770810273095],[-122.3084434205994,47.6477177720929],[-122.30849627516089,47.64772145737045],[-122.30854115875034,47.64773021569274],[-122.30857884131946,47.64773546874628],[-122.30862156397991,47.64773958496243],[-122.30867649447237,47.64774491425221],[-122.30876097984911,47.64775504482156],[-122.3088178216836,47.64775623620407],[-122.30886885129279,47.64776709992945],[-122.30890977086369,47.64777916546732],[-122.30896705636123,47.6477959890614],[-122.30900579242451,47.64780259923035],[-122.3090395443164,47.64781231587811],[-122.3090938177759,47.64783024926835],[-122.3091469696254,47.64784438453002],[-122.30918164195668,47.64785079004335],[-122.30923473062404,47.64786269774415],[-122.30927856105772,47.64787009887237],[-122.30931136833621,47.64788226941667],[-122.30939129783745,47.6479105811633],[-122.3094260869628,47.64792109816376],[-122.30946696058894,47.6479315362787],[-122.30951298254571,47.6479446498046],[-122.30957214806368,47.64795622165803],[-122.30960705399039,47.64797085016458],[-122.3096561958228,47.64798666500162],[-122.30969094614227,47.64799581151767],[-122.30974206180372,47.648009672471],[-122.30978197578035,47.64802205117321],[-122.30982175772324,47.64802976115058],[-122.30985547100032,47.64803810715303],[-122.30992212490119,47.64806329150942],[-122.3099970465405,47.64809385294669],[-122.31003704629438,47.64810922917851],[-122.31007319998572,47.64813206716319],[-122.31010535245869,47.64815688528436],[-122.31013548373875,47.64818198652359],[-122.31018843115645,47.64822461470025],[-122.31022497426032,47.64826115737121],[-122.31023604904496,47.64829391763282],[-122.31023624179586,47.64833641609243],[-122.31021275327392,47.64836662555486],[-122.31018584805648,47.64838368372028],[-122.31014877132469,47.64839980226927],[-122.3101177864164,47.64841609906643],[-122.3100849060669,47.64843709050851],[-122.3100590853226,47.64845661948129],[-122.31007017585777,47.64848993655096],[-122.31013727639456,47.64849510732083],[-122.31030778010036,47.64849782290806],[-122.31036513617761,47.64851708663185],[-122.31041356839398,47.64854362140959],[-122.31045581493716,47.64856663750986],[-122.31048674283845,47.64858405917358],[-122.31052195413837,47.64860939414982],[-122.31054879442863,47.64862575517976],[-122.3105828744465,47.64864699173792],[-122.31061684499309,47.64866437424637],[-122.31064582337986,47.64868456297624],[-122.31068949042532,47.6486861816249],[-122.31072545010372,47.64870216703578],[-122.31075536468553,47.64871960177567],[-122.31078830549616,47.64873644024622],[-122.31081823743497,47.64871878602055],[-122.31086104043932,47.64868999681227],[-122.31090235208346,47.64868012062473],[-122.31094361607104,47.64870426329217],[-122.31098300785713,47.64873391387306],[-122.31102551962155,47.64876626612133],[-122.31109751044393,47.64880072105043],[-122.31113669181067,47.64882296242052],[-122.31118004611942,47.64884926269687],[-122.31123993004583,47.64888605948221],[-122.31124675476936,47.64891201957063],[-122.31121995864405,47.64893293237651],[-122.31116627363205,47.64897146000717],[-122.31119443264265,47.6489985144801],[-122.31122529949035,47.64901375192242],[-122.31126863087668,47.64903923855395],[-122.3112936541851,47.64906303453598],[-122.31133310123411,47.64909461254108],[-122.3113803334962,47.64911456451564],[-122.31140936670543,47.64913668060328],[-122.31143425011481,47.6491555513841],[-122.31150129531255,47.64919443990272],[-122.31153542237311,47.64921730409888],[-122.3115665536571,47.64924183464594],[-122.31161709365503,47.64927108373404],[-122.31165734441277,47.64929523895539],[-122.31168929500208,47.64931290429094],[-122.31171813360973,47.64932816758444],[-122.3117542504403,47.64934963462506],[-122.3117912639034,47.64936697728749],[-122.31182424442711,47.64938518586074],[-122.31188111049345,47.64942283541617],[-122.31192233654455,47.64944560697489],[-122.31196737810477,47.64945984625857],[-122.31199916568795,47.64947177237599],[-122.31203626456994,47.64949211258288],[-122.31207961258758,47.64951815569727],[-122.31212267248317,47.64953404847692],[-122.31216169110091,47.64955055072053],[-122.31219363470393,47.64956795874468],[-122.31222357342753,47.64958620705998],[-122.312271430679,47.64959244041755],[-122.31230239977563,47.64957558624329],[-122.31233642676695,47.64955924934167],[-122.3123684719738,47.64954456599234],[-122.3124083886677,47.64952129767572],[-122.31243633822962,47.64950529659512],[-122.31247629384785,47.64948339865713],[-122.31250426704352,47.64946821151462],[-122.31255118117036,47.64944129617218],[-122.31258316410923,47.64942442874932],[-122.31268273976002,47.64939434434587],[-122.31271063413884,47.64941206174407],[-122.3127487404915,47.64943213171966],[-122.31280540498344,47.64946267128119],[-122.31283741090333,47.64948226348859],[-122.31286129682556,47.64950170427471],[-122.31289526868211,47.64951908575218],[-122.31295178467343,47.64954440045046],[-122.31299301859825,47.64956742844035],[-122.31304368402334,47.64960104492068],[-122.31308381869626,47.6496210884309],[-122.31313219899852,47.64964569485083],[-122.31316728623975,47.64966661783554],[-122.31319530648928,47.64968874664513],[-122.31324164299278,47.64971282223183],[-122.3132724791682,47.64972694553557],[-122.31330874512605,47.64975363723035],[-122.31335019027424,47.64978407424404],[-122.3133892721673,47.64980276042361],[-122.31343989906732,47.64983500632531],[-122.31347085240303,47.6498532407816],[-122.31350187596453,47.6498739595724],[-122.31353118412991,47.64990566862803],[-122.31348637618015,47.6499352988169],[-122.31343533647718,47.64995982643301],[-122.31337949911187,47.64999401309651],[-122.31332969153281,47.6500261931067],[-122.3132676827463,47.65005741801948],[-122.31322450520715,47.65007306020602],[-122.31315330049867,47.65010196247733],[-122.31307980087986,47.65012155437307],[-122.3130003503669,47.65014589397194],[-122.31302376812535,47.65018453459031],[-122.3130416866935,47.65020816560971],[-122.31306548653228,47.65026021131453],[-122.31308365501037,47.65029262188305],[-122.31310347678095,47.65034746144264],[-122.31311673060654,47.65038541985751],[-122.31314095224863,47.65041663811406],[-122.3131638088239,47.65043553522186],[-122.31318779647161,47.6504585303537],[-122.31322103538537,47.65048577524693],[-122.31324825294311,47.65051532637424],[-122.31326943938159,47.65054684096402],[-122.31330073686755,47.65057715331893],[-122.31332849213376,47.65062559148711],[-122.31335341597088,47.65064583260062],[-122.31337738063944,47.65066801408192],[-122.3134055812486,47.65069643840192],[-122.31343257225645,47.65071802354053],[-122.31345749617836,47.65073826463119],[-122.31348259201962,47.65076454411616],[-122.31350769520742,47.65079108076525],[-122.31353997532666,47.65082026629025],[-122.31357526714872,47.65084834148217],[-122.31362847686351,47.65090000478651],[-122.31367410544291,47.65093480047681],[-122.31370335891067,47.65096458194932],[-122.31372023230682,47.65098711281149],[-122.31374950220321,47.65101745105694],[-122.31377667277796,47.65104533168274],[-122.31380487330078,47.65107375626108],[-122.31383106210751,47.65110276363356],[-122.31385321684917,47.65113263735898],[-122.31385595472781,47.65115753679859],[-122.31389444574337,47.65119105429152],[-122.31391639009234,47.65121351884601],[-122.3139363216909,47.65123656691447],[-122.31396967125725,47.65126766597527],[-122.31400931674676,47.65130609541113],[-122.31404895376191,47.65134422521125],[-122.31408401933675,47.65136433395116],[-122.31411892150615,47.65137870425431],[-122.31415755964943,47.65138175790548],[-122.31422219127818,47.65140696612196],[-122.31428050387747,47.6514240310237],[-122.31432545333791,47.65143497143476],[-122.31436024633827,47.65144548691993],[-122.31439414188202,47.65146012679487],[-122.31443019001901,47.65147910900745],[-122.31446197208543,47.6514907776179],[-122.31450058715419,47.65149301754246],[-122.31453654994515,47.65150900174843],[-122.31456226071604,47.65148561737633],[-122.31461407549092,47.65148824221764],[-122.31465785604831,47.65149375653379],[-122.31472291518878,47.65149835139536],[-122.31476896480989,47.65151227640583],[-122.31478411526929,47.65154554024518],[-122.31482374444631,47.65154776651723],[-122.31488686218901,47.65155542844574],[-122.31494434904761,47.65157910138938],[-122.31498854223867,47.65159909145299],[-122.31504768191701,47.65160954687077],[-122.31511374920238,47.65161391429906],[-122.31518255503835,47.6516431810963],[-122.31519047428407,47.65167186890402],[-122.31521743480013,47.6516923400362],[-122.31528389282997,47.65171041208149],[-122.31536551533814,47.65172661574296],[-122.31540104935596,47.65172752455251],[-122.31546511920071,47.65173298860073],[-122.31552135804039,47.65174845169236],[-122.31560475118843,47.65175559206561],[-122.31570823190272,47.6517556159965],[-122.31580251414492,47.65175327467366],[-122.31590076035769,47.65174762566762],[-122.31611367355171,47.65174292567296],[-122.31618858605492,47.65173728015358],[-122.31620781308345,47.65170001311315],[-122.31621310671296,47.65163662119529],[-122.31621677773106,47.65158747438717],[-122.31622808709363,47.65155716534434],[-122.31629355444406,47.65157606361532],[-122.31638882270819,47.65160828390401],[-122.31644553813622,47.65164044922258],[-122.31644624182586,47.65166511819454],[-122.31640311265718,47.65171803454237],[-122.3163602893359,47.65178165830899],[-122.31631322953653,47.65183903897332],[-122.3162877380398,47.65187009005706],[-122.31631180538697,47.65189582533861],[-122.31634979767341,47.65191178255369],[-122.31638666596876,47.65192389857805],[-122.31641858871673,47.65194049181271],[-122.31640123353321,47.6519722508716],[-122.3164371745406,47.65198742050973],[-122.31648035458026,47.65200742320096],[-122.31646299941211,47.65203918226917],[-122.31650302680306,47.6520553698444],[-122.31655115319276,47.65207093809275],[-122.31659621294776,47.65208568918168],[-122.31663104541975,47.65209757438056],[-122.31666384243228,47.65210922916783],[-122.31666864214719,47.65213521569687],[-122.31666852685161,47.6521667502379],[-122.31670563000203,47.65218708891507],[-122.3167500198945,47.65221393064992],[-122.31679142258967,47.6522427391893],[-122.31683277034202,47.65226962052162],[-122.31688039864841,47.65230327492284],[-122.31692954409255,47.65228344088226],[-122.31698034297493,47.65225043212136],[-122.31703503258008,47.65221158856976],[-122.31708370905812,47.65217530824338],[-122.31713456955683,47.65214448378156],[-122.3171678014188,47.65213582461499],[-122.31720279052071,47.65215319194353],[-122.31726677844883,47.65219130309509],[-122.31731846326964,47.65222490445645],[-122.31737272449409,47.65227766636973],[-122.31734302010304,47.65230328825204],[-122.31728912415808,47.65233440962611],[-122.317233231773,47.65236667098448],[-122.31719555519022,47.65239732370146],[-122.31717817658924,47.65242826927537],[-122.31720944569403,47.65245746662119],[-122.31725819851724,47.65249496238487],[-122.31726030783813,47.65253332284531],[-122.31722465931648,47.65256394914351],[-122.31724682397025,47.65259407937666],[-122.31730551976551,47.65258894453147],[-122.31734631794025,47.65256099292152],[-122.31740607119762,47.65252182629236],[-122.31745367809467,47.65248363183877],[-122.31750633261845,47.65244455766751],[-122.31754527427988,47.65242267116968],[-122.31755922441606,47.65244935232028],[-122.3175652575434,47.65248299190852],[-122.31754971219269,47.65250705839409],[-122.3175119569358,47.65253497042121],[-122.31745637744066,47.65257819579519],[-122.31740292014844,47.65262469230348],[-122.31739586318166,47.65266180130542],[-122.31744018343964,47.65268615843058],[-122.31749493982839,47.65268518790995],[-122.31758286529168,47.65267333090468],[-122.31760503928254,47.65270376103373],[-122.31763800392106,47.65275680039876],[-122.31766148917283,47.65279762406328],[-122.31768916409479,47.65284306319461],[-122.31773517930273,47.65289126234736],[-122.31777588937263,47.65293130482139],[-122.31780221410192,47.65296497962884],[-122.31782115774293,47.6529888534868],[-122.31777519487795,47.65301357376814],[-122.31774123825512,47.65303239627523],[-122.31776014224667,47.65305489974958],[-122.31783484421707,47.65311287900732],[-122.317893762799,47.65315105590813],[-122.317928012661,47.65317802938677],[-122.31795485029618,47.65319413149932],[-122.31800043608447,47.65322725508069],[-122.31803563777997,47.6532520312964],[-122.31807690869749,47.65327617102455],[-122.31812229894288,47.65330244220448],[-122.31815569148516,47.65333491078847],[-122.31819214226613,47.65336789648637],[-122.31823710516582,47.65341473825757],[-122.31829793931333,47.6534844230309],[-122.31834586641851,47.65352848393753],[-122.31838518779287,47.65355539115259],[-122.31842066391594,47.65358976040145],[-122.31845618709679,47.65362575720197],[-122.3184926774188,47.65366011320354],[-122.31851462480638,47.65368257722097],[-122.31853568359108,47.65370946528844],[-122.31855057090917,47.65373339228388],[-122.31858678347461,47.65372250901743],[-122.31861054360837,47.65370189098539],[-122.31863526400349,47.65367937568499],[-122.3186688847708,47.65364877539302],[-122.31868847044065,47.65362409870675],[-122.3187252117541,47.65359619951782],[-122.31876109899113,47.65360944158844],[-122.3188135976873,47.65363591986566],[-122.31884231875136,47.65368241591523],[-122.3188063997518,47.65373909564852],[-122.31878486418128,47.65376653925968],[-122.31877158950589,47.65379905937618],[-122.31880726918325,47.65384053802487],[-122.31884046269482,47.6538305079707],[-122.31889648904762,47.65380291416698],[-122.31894663741372,47.65381815497243],[-122.3190131777874,47.65383896599118],[-122.31905324704846,47.65385652341319],[-122.31908413498434,47.65387231516285],[-122.31915603539204,47.65390316707784],[-122.31920375669861,47.65390447271238],[-122.31926438773914,47.65389601245363],[-122.31931783309163,47.65388460401768],[-122.3193684008408,47.6538790171848],[-122.31945058796607,47.65387931597503],[-122.31950051742457,47.65388689022652],[-122.3195485913158,47.65390053001673],[-122.319585438498,47.65391183104485],[-122.3196215453236,47.65393273880315],[-122.31966690631056,47.65395793858859],[-122.31971030840401,47.65398560636347],[-122.3197455738686,47.65401256605887],[-122.31979527306034,47.65404756316631],[-122.31982337686519,47.65407243149206],[-122.31987401243157,47.65410467452197],[-122.31991111034604,47.65412475499108],[-122.319943955911,47.65413803640185],[-122.31997871949453,47.65414743659507],[-122.32003164561515,47.65415334367388],[-122.32006831253213,47.65415834899409],[-122.32010692981332,47.65416058666674],[-122.32015483876503,47.65416844427942],[-122.32016490694988,47.65420121680851],[-122.32016570674412,47.65422918334506],[-122.32019466868132,47.6542485563831],[-122.32023348884495,47.65425790353753],[-122.32028111617133,47.65425591042926],[-122.32032566196341,47.65425258697663],[-122.32036722000728,47.65425123042879],[-122.32042505147155,47.65425128919467],[-122.32050734944535,47.65425544160252],[-122.32054905572062,47.6542592669648],[-122.32059291693997,47.65426747698805],[-122.32064305890445,47.654282460228],[-122.3206759905122,47.65429873904474],[-122.32071734190768,47.65432561896488],[-122.32075927615791,47.65433741017904],[-122.32081109357804,47.65434003255837],[-122.32100593408303,47.65434160059917],[-122.32104920718723,47.65432925305394],[-122.32104850128778,47.6543045844636],[-122.3210553687022,47.65376457811266],[-122.3210567074592,47.65374043945894],[-122.32105589984435,47.65371221610986],[-122.32109434351376,47.653708414716],[-122.32130735865354,47.65370700295242],[-122.32157006746947,47.65370494104496],[-122.3216766103171,47.65370547658604],[-122.3217527120276,47.65370585289145],[-122.32179165029603,47.65371931105624],[-122.32178990308245,47.65390634683339],[-122.32180098687493,47.65393910595694],[-122.32184259121762,47.65393937608804],[-122.32192575331379,47.65393828908747],[-122.32197642261808,47.65393625585411],[-122.32199486081356,47.65390696701543],[-122.32200620654183,47.65387802744946],[-122.32202130263006,47.65383832812532],[-122.32204040169006,47.65379669173029],[-122.3220596252759,47.65375942335388],[-122.32207590831088,47.65372574950251],[-122.32211713598703,47.65371287163252],[-122.3221699282231,47.65371410937978],[-122.32221762366048,47.65371451383523],[-122.32232412115754,47.65371346435651],[-122.32238895682812,47.6537101317158],[-122.32245362075484,47.65370080310479],[-122.32249357469485,47.65369659611738],[-122.32246481894806,47.65465851425748],[-122.32244591023286,47.65594388530027],[-122.32196741572004,47.65595476017556],[-122.32086307196384,47.65593685189843],[-122.32000347466173,47.65590103534418],[-122.31962740084205,47.65587118821563],[-122.31906627482539,47.65579955510712],[-122.31870213985714,47.65575179970145],[-122.31846336282877,47.65569807487007],[-122.31832009661176,47.65563241118726],[-122.31825443292895,47.65557868635588],[-122.31817683039473,47.65566225831581],[-122.31805744188054,47.65585924936421],[-122.31799177819775,47.65602042385836],[-122.31792014508923,47.65621741490676],[-122.31787835910927,47.65645619193512],[-122.31784254255501,47.65672481609203],[-122.31784254255501,47.65693374599185],[-122.31448175588078,47.65689196001189],[-122.31260138678236,47.65685017403192],[-122.31260138678236,47.65827686677641],[-122.3119626582315,47.6582708973507],[-122.31192684167723,47.66124367135386],[-122.30870932122001,47.66121382422531],[-122.30345025717024,47.66120188537388],[-122.3009123402069,47.66125076590333],[-122.30091234020688,47.66125076590333],[-122.29969796372362,47.66125813754369],[-122.29876384587044,47.6612547361756],[-122.29811744606995,47.66125323979037],[-122.29673128937964,47.66125002144755],[-122.29569212291418,47.6612455880889],[-122.29465670664752,47.66124820926364],[-122.29362413384327,47.66124367209537],[-122.29286900953957,47.66123668496128],[-122.29260258461876,47.66123422900085],[-122.2916014310067,47.66121029173564],[-122.29060027831673,47.66118634567152],[-122.2903789567992,47.66118206499458],[-122.29015095905548,47.66117491338475],[-122.29015632236711,47.66082318594513],[-122.29019349967218,47.65843864729283]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000247,"geom:area_square_m":2058373.791321,"geom:bbox":"-122.322493575,47.6474884951,-122.290150959,47.6612581375","geom:latitude":47.654926,"geom:longitude":-122.306102,"iso:country":"US","lbl:latitude":47.654353,"lbl:longitude":-122.306087,"lbl:max_zoom":18,"mps:latitude":47.654353,"mps:longitude":-122.306087,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:afr_x_preferred":["Universiteit van Washington"],"name:ara_x_preferred":["جامعة واشنطن"],"name:arz_x_preferred":["جامعه واشنطون"],"name:azb_x_preferred":["واشینقتون بیلیم‌یوردو"],"name:aze_x_preferred":["Vaşinqton Universiteti"],"name:bel_x_preferred":["Вашынгтонскі ўніверсітэт"],"name:ben_x_preferred":["ওয়াশিংটন বিশ্ববিদ্যালয়"],"name:ceb_x_preferred":["Unibersidad sa Washington"],"name:ces_x_preferred":["Washingtonská univerzita"],"name:ckb_x_preferred":["زانکۆی واشینگتن"],"name:cym_x_preferred":["Prifysgol Washington"],"name:dan_x_preferred":["University of Washington"],"name:deu_x_preferred":["University of Washington"],"name:diq_x_preferred":["Universıtey Washingtoni"],"name:ell_x_preferred":["Πανεπιστήμιο της Ουάσινγκτον"],"name:eng_x_variant":["Washington","UW","U-Dub"],"name:est_x_preferred":["Washingtoni Ülikool"],"name:fas_x_preferred":["دانشگاه واشینگتن"],"name:fin_x_preferred":["Washingtonin yliopisto"],"name:gla_x_preferred":["Oilthigh Washington"],"name:hak_x_preferred":["Washington Thai-ho̍k"],"name:heb_x_preferred":["אוניברסיטת וושינגטון"],"name:hun_x_preferred":["Washingtoni Egyetem"],"name:hye_x_preferred":["Վաշինգտոնի համալսարան"],"name:ind_x_preferred":["Universitas Washington"],"name:isl_x_preferred":["Washington-háskóli"],"name:ita_x_preferred":["Università del Washington"],"name:jpn_x_preferred":["ワシントン大学"],"name:kat_x_preferred":["ვაშინგტონის უნივერსიტეტი"],"name:kaz_x_preferred":["Вашингтон университеті"],"name:kir_x_preferred":["Вашингтон Университети"],"name:kor_x_preferred":["워싱턴 대학교"],"name:lat_x_preferred":["Universitas Vasingtoniensis"],"name:lav_x_preferred":["Vašingtonas Universitāte"],"name:lit_x_preferred":["Vašingtono universitetas"],"name:lmo_x_preferred":["Üniversitaa da Washington"],"name:mal_x_preferred":["വാഷിങ്ടൺ സർവകലാശാല"],"name:msa_x_preferred":["Universiti Washington"],"name:nld_x_preferred":["Universiteit van Washington"],"name:nno_x_preferred":["University of Washington"],"name:nor_x_preferred":["University of Washington"],"name:pms_x_preferred":["Università ëd Washington"],"name:pnb_x_preferred":["یونیورسٹی آف واشنگٹن"],"name:pol_x_preferred":["University of Washington"],"name:ron_x_preferred":["Universitatea din Washington"],"name:rus_x_preferred":["Вашингтонский университет"],"name:sco_x_preferred":["Varsity o Washington"],"name:slv_x_preferred":["Univerza Washingtona"],"name:srp_x_preferred":["Универзитет у Вашингтону"],"name:swe_x_preferred":["University of Washington"],"name:tam_x_preferred":["வாஷிங்டன் பல்கலைக்கழகம்"],"name:tgl_x_preferred":["Unibersidad ng Washington"],"name:tha_x_preferred":["มหาวิทยาลัยวอชิงตัน"],"name:tur_x_preferred":["Washington Üniversitesi"],"name:uig_x_preferred":["ۋاشىنگتون ئۇنىۋېرستېتى"],"name:ukr_x_preferred":["Університет Вашингтону"],"name:urd_x_preferred":["یونیورسٹی آف واشنگٹن"],"name:uzb_x_preferred":["Vashington universiteti"],"name:vie_x_preferred":["Đại học Washington"],"name:war_x_preferred":["Unibersidad han Washington"],"name:yid_x_preferred":["אוניווערסיטעט פון וואשינגטאן"],"name:zho_x_preferred":["華盛頓大學"],"reversegeo:latitude":47.654353,"reversegeo:longitude":-122.306087,"src:geom":"mz","wof:belongsto":[85853121,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"42080a0503ae0a5fadb66756cd9d08b0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537383,"neighbourhood_id":85853121,"region_id":85688623}],"wof:id":890537383,"wof:lastmodified":1566631081,"wof:name":"University of Washington","wof:parent_id":85853121,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537385.geojson b/fixtures/microhoods/890537385.geojson new file mode 100644 index 0000000..d196166 --- /dev/null +++ b/fixtures/microhoods/890537385.geojson @@ -0,0 +1 @@ +{"id":890537385,"type":"Feature","bbox":[-122.29727631922702,47.65277452193083,-122.28673059302996,47.66027158768642],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.29727631922702,47.65468125290223],[-122.29726599769774,47.65497830537313],[-122.29717305343816,47.65524301176885],[-122.29709688789603,47.65554277590159],[-122.29705840249993,47.65598175717808],[-122.29699501625358,47.65621044780622],[-122.29693716542228,47.65641179867173],[-122.29687800205404,47.65655987406767],[-122.29688447807366,47.65691342249062],[-122.2969137293177,47.65714060214726],[-122.29689759277223,47.65733755782355],[-122.2968337084058,47.65757639197874],[-122.29673263909535,47.65788246628529],[-122.2966808848254,47.65806716188782],[-122.29668193420488,47.65825024881025],[-122.2967106113789,47.65841826064061],[-122.29669044218885,47.65862402619074],[-122.29568299208044,47.65892334722184],[-122.294668784171,47.65925901966988],[-122.29413552798536,47.65944482222564],[-122.2938095362806,47.65955450699428],[-122.29368115181731,47.65969594435898],[-122.29349381472164,47.65981641897601],[-122.2932117932485,47.65993153986614],[-122.29211786209578,47.66027158768642],[-122.29086981801589,47.65874551168925],[-122.29072466818673,47.65858524724853],[-122.29056494692729,47.6584835243466],[-122.290389713353,47.65844345106294],[-122.29019349967218,47.65843864729283],[-122.2885908650999,47.65841971995956],[-122.28673635404509,47.65839186022833],[-122.28673335829677,47.65694190773611],[-122.28673059302996,47.65557275494536],[-122.28678834603565,47.65562441533756],[-122.28681418388385,47.65564135134364],[-122.28682808131875,47.6556666658357],[-122.28685850505605,47.6557024800431],[-122.28690548613505,47.65574986507711],[-122.2869320677104,47.65579339741149],[-122.2869521089546,47.65585702112648],[-122.28695754559484,47.65590630728936],[-122.2869373557256,47.6559825263831],[-122.28689281118197,47.65602229647357],[-122.28687449189354,47.65605654797115],[-122.28685141498003,47.656102084998],[-122.28684921547618,47.65613227497136],[-122.28686309696303,47.65615703231929],[-122.28692497818737,47.65619300236968],[-122.28698985753009,47.65619106029131],[-122.28701457723045,47.65616799506265],[-122.28703769234964,47.6561238284136],[-122.28712173275154,47.65604516610242],[-122.28715704593289,47.65603811738473],[-122.2872696559113,47.65603779381227],[-122.28732300852299,47.65605904848645],[-122.2873644662484,47.65609030891464],[-122.28740013134947,47.65613209736327],[-122.28743387426621,47.65617772296159],[-122.28744577445099,47.65620417687168],[-122.2874705044767,47.65625403058586],[-122.28748235079253,47.65627855728636],[-122.28750975561536,47.65631522413224],[-122.28752207806417,47.65635675324585],[-122.28754010936005,47.6563847566742],[-122.28756699847916,47.65643925284576],[-122.28757378962524,47.65646440108019],[-122.28756950590488,47.65652889229224],[-122.28755609599172,47.6565572971822],[-122.28753081501571,47.65659656463652],[-122.28749924649567,47.65666495993275],[-122.28751442515755,47.65673605749118],[-122.28756362965474,47.65675406623283],[-122.28762415415562,47.65674151158704],[-122.28768707530237,47.65674207901269],[-122.28772864336855,47.65674099119439],[-122.28777866321546,47.65675187731738],[-122.28783850132872,47.65678731563462],[-122.28787379103564,47.65681565594797],[-122.287918213915,47.65688033901969],[-122.28798645739172,47.65692608081942],[-122.28800130879576,47.65694919783704],[-122.28803154236076,47.65697815967749],[-122.28807589089598,47.65700389898507],[-122.28811798888476,47.65702174100203],[-122.28815275703391,47.65703145088197],[-122.28820077884981,47.65704343316505],[-122.288240602855,47.65705252143959],[-122.28829970702954,47.65702546061967],[-122.28835619903302,47.65697756815037],[-122.28837454935643,47.65694442999889],[-122.28840652916828,47.65692701257581],[-122.28844194347853,47.65692356140091],[-122.28847781144768,47.65690005333422],[-122.28849561690258,47.65684747120263],[-122.28849617195057,47.65679480939408],[-122.28850361094446,47.65677059373044],[-122.28855451130906,47.65666793307624],[-122.28857462120442,47.65662517575266],[-122.28859514648094,47.65656103395043],[-122.28861587124092,47.65650400171085],[-122.28864838281535,47.6564331087945],[-122.28867639284888,47.65634637852713],[-122.28869895286142,47.65631867047584],[-122.28873543640906,47.6562809305725],[-122.28885797728762,47.65616420152752],[-122.28887652553392,47.65613817287365],[-122.28889363084113,47.65609682443637],[-122.28888164549889,47.65606737304346],[-122.2888387952498,47.6560588806708],[-122.28879838698509,47.65606513795061],[-122.28873592704372,47.6560810171137],[-122.28863674065882,47.65608969643986],[-122.28855253750056,47.65608995847751],[-122.28850088847484,47.65609336021622],[-122.28844349972468,47.65610917442204],[-122.2883818313503,47.65611707443455],[-122.28831477707918,47.65611381805339],[-122.28827646706385,47.65612253322887],[-122.28824067625202,47.65614878240439],[-122.28819766282494,47.65617071069964],[-122.28812621242703,47.65619163133004],[-122.28807154205631,47.6562320882294],[-122.2880571650717,47.65626217651792],[-122.28804201837508,47.65630101456352],[-122.28801543817215,47.6563663475858],[-122.28801413793309,47.65639241305215],[-122.28799732353785,47.65644416818952],[-122.28798379166071,47.65646820507828],[-122.2879424383096,47.6564769590082],[-122.28790450584843,47.65646291951951],[-122.28788439155812,47.65643301485517],[-122.28787377531084,47.65637993873798],[-122.28785656628583,47.65634507000692],[-122.28784333776557,47.65630740828611],[-122.28781514808901,47.6562789776437],[-122.28778874165485,47.65624174112448],[-122.2877705047031,47.65617012566097],[-122.28776976903428,47.65614382928649],[-122.287798470535,47.65608176837775],[-122.28786464395189,47.65601730064704],[-122.28790442320042,47.6559885589324],[-122.28792890392982,47.65595697036593],[-122.28793224810114,47.6559314361401],[-122.28792501228945,47.65589039874335],[-122.28790378511596,47.65585695224085],[-122.28788223512174,47.6558119849603],[-122.28789154078855,47.65578196111237],[-122.2878998790365,47.65575362095232],[-122.28793713286736,47.6556708858658],[-122.28796702263315,47.65565131044541],[-122.28799907128898,47.65563637713647],[-122.28804293005545,47.65560839716751],[-122.28808047993931,47.65557252892777],[-122.28811918345566,47.65554161571526],[-122.28815804751618,47.65551644130247],[-122.28820034470252,47.65550519033818],[-122.2882940685713,47.65548261419629],[-122.28834119961823,47.65546281805682],[-122.28839045841197,47.65544655077059],[-122.2884427368412,47.65542943097518],[-122.28847679126198,47.65541365799464],[-122.28856051021458,47.6553961364217],[-122.2886124109807,47.65540177144113],[-122.28866714010033,47.65539970083262],[-122.2887335085121,47.65541474757201],[-122.28880287436435,47.65542812815337],[-122.28884169867965,47.65543778597393],[-122.2889148213903,47.65544040712902],[-122.28897439104988,47.65543004910315],[-122.28902399497471,47.65542611593595],[-122.28908693013574,47.65542723938324],[-122.28919419049085,47.65541708553472],[-122.28924977303866,47.65540926287059],[-122.28929319198937,47.65540185294557],[-122.28932959587213,47.65539753175334],[-122.28937400615042,47.65538929486605],[-122.28940199766156,47.65537441302542],[-122.28943820187386,47.65536298223308],[-122.28947752579845,47.65535425369326],[-122.28953993065997,47.65533644691826],[-122.28957973125127,47.65530851823301],[-122.2896178106275,47.65529157945096],[-122.28968413397016,47.65526879552915],[-122.28972530969733,47.6552537450101],[-122.28978421068568,47.65521953104326],[-122.28983405391759,47.6551879177749],[-122.28985682758889,47.65516787585927],[-122.2899023899492,47.65512834846484],[-122.28994792275888,47.65508775025932],[-122.28997794942632,47.65507309950626],[-122.28999555218188,47.65504956763971],[-122.29002537961192,47.65502780730305],[-122.29006560931326,47.65501521082843],[-122.29012609277618,47.6550012840918],[-122.29017626562914,47.65498144861926],[-122.29020628444508,47.65496654064145],[-122.29024714414685,47.65497642885691],[-122.29027321324203,47.65500158723883],[-122.29026901869263,47.65503291646559],[-122.29027622502811,47.6550728401252],[-122.29028333363566,47.6551092946124],[-122.29027829897117,47.65514684681127],[-122.29024972455515,47.65517711702418],[-122.29025066910415,47.65521082292858],[-122.29029961989933,47.65525599624056],[-122.29031310318247,47.65530269445237],[-122.29029798969908,47.65537884891488],[-122.29028237689488,47.65543718734731],[-122.29025886519018,47.65550329558832],[-122.29023876432046,47.65554631038204],[-122.29022932921926,47.65557166569643],[-122.29019049603492,47.65570651953019],[-122.29019373768413,47.65574979270713],[-122.29018956531648,47.65578193590262],[-122.29017351420798,47.65582464161428],[-122.2901645854807,47.65586807047308],[-122.29016952591505,47.65589954010364],[-122.29019164630525,47.65592860481048],[-122.29019134624043,47.6559541005276],[-122.29018595207467,47.65597884750169],[-122.29016656679977,47.65601118494649],[-122.29014205619971,47.65604166040439],[-122.29010736454028,47.65607089483358],[-122.29003998780286,47.65609232156317],[-122.28998853139657,47.65610257672031],[-122.28993998664963,47.65610812456671],[-122.28987729662043,47.65611578119525],[-122.2898085978924,47.65612625678472],[-122.28969542707704,47.65614278463582],[-122.28960073577547,47.65616704527586],[-122.2895486484141,47.65619101836025],[-122.28956867068025,47.65621762512295],[-122.28961069227962,47.65623272541142],[-122.28964552136907,47.65624461921183],[-122.28967440294211,47.65626151566395],[-122.2897075108694,47.65628439901213],[-122.2897437158325,47.65630917099223],[-122.28978582102589,47.65632726921351],[-122.2898617952927,47.65635920132785],[-122.28996315723444,47.65635572015589],[-122.29002058419263,47.65634127559432],[-122.29008230538604,47.65633525909571],[-122.29013281797573,47.65632750121225],[-122.29018110126759,47.6563126165344],[-122.29022120950836,47.65629565160523],[-122.29026940873885,47.65627776925029],[-122.29030557498392,47.65626496777298],[-122.29036195637569,47.65624942242393],[-122.2904114925679,47.65624304780775],[-122.29045488135719,47.65623452384408],[-122.29051092503103,47.65624314653926],[-122.29057400647505,47.65624945153043],[-122.29062288142387,47.65625568100685],[-122.29066246754029,47.65625628845566],[-122.29071367818005,47.65627345591653],[-122.29075135844853,47.65627845768955],[-122.29079309537288,47.65628340753639],[-122.29082863155429,47.65628432401891],[-122.29090665037936,47.65628058339097],[-122.29097136877948,47.65627290023586],[-122.29093093010172,47.65624188496126],[-122.29089805941003,47.65622748194735],[-122.29085574618041,47.65620197459343],[-122.29082451243387,47.65617358363273],[-122.29079754359002,47.65615254993587],[-122.29074807681165,47.65612520619359],[-122.29071480764374,47.65609658398773],[-122.29068879901864,47.65607361008313],[-122.29063638954453,47.65604986000961],[-122.29057472920921,47.65602185796352],[-122.2905437574271,47.65600280367415],[-122.29050858977624,47.65597883258046],[-122.29047439071552,47.65595322162125],[-122.29042988876411,47.65592200125056],[-122.29039827850897,47.65588016184403],[-122.29040257415835,47.65578002479325],[-122.29040660091678,47.6556702941727],[-122.29041242561819,47.65558851731857],[-122.29042057040098,47.65555332422384],[-122.29042180755503,47.65548887218532],[-122.29042214603892,47.65535613894106],[-122.2904269021366,47.65530865038895],[-122.29043930321463,47.65528051495529],[-122.2904512901617,47.65523760393597],[-122.29045467077746,47.65517723717456],[-122.29046150124447,47.65513135024388],[-122.29047347253326,47.6550878824273],[-122.2904682090951,47.65504489203531],[-122.29045322681668,47.65501710695656],[-122.29044426815506,47.65498705964843],[-122.29043374990887,47.65493758171319],[-122.2904365850334,47.65489393070924],[-122.29046277029303,47.65485083802674],[-122.29046813300901,47.65482497779995],[-122.29047719934404,47.6547864741106],[-122.29049013065755,47.6547410661117],[-122.29049852853558,47.65471490978503],[-122.29049023112961,47.65467225829539],[-122.29048062671167,47.65461916944216],[-122.29048090417423,47.6545566575743],[-122.290493504801,47.65449947163632],[-122.29050433095685,47.65445134876751],[-122.29052501436202,47.65439294541579],[-122.29055206696637,47.65434461456663],[-122.29056421446647,47.6543074426946],[-122.2905724201716,47.65427443396289],[-122.29058966104743,47.65423801046966],[-122.29060523499976,47.65421450446147],[-122.29065260982554,47.6541672844405],[-122.29070255064707,47.65413922558263],[-122.29073863177739,47.65412342596985],[-122.29078295551177,47.65411214809001],[-122.29082144903334,47.65411002729194],[-122.2908763683764,47.65407860584367],[-122.29090428138338,47.65406098246982],[-122.29093708109933,47.65403669894973],[-122.2909564651491,47.65400436102069],[-122.29095526681793,47.65396161869769],[-122.29098838893343,47.65394885594215],[-122.29103468052602,47.65397157014991],[-122.2910676795227,47.65399059869623],[-122.29110790157311,47.65401394756071],[-122.29115180305176,47.65402379650814],[-122.29113115830195,47.65404736785613],[-122.29110037233436,47.6540710686618],[-122.291066581366,47.65409617882465],[-122.29104945615197,47.65413671396965],[-122.29107450388294,47.65416162797857],[-122.29109043123883,47.6541869159899],[-122.29112270087231,47.65421610751316],[-122.29114660366312,47.65423636646448],[-122.2911905593773,47.65424814260101],[-122.29123108123736,47.65424599605136],[-122.29128570094834,47.65424006977644],[-122.29132742831752,47.65420855972918],[-122.29134479957119,47.6541768048461],[-122.29135325817674,47.65415283248009],[-122.29136448341818,47.65411897111934],[-122.29141364030869,47.6540991480913],[-122.29158610555804,47.65409886774934],[-122.29174432575944,47.65409709858699],[-122.29183542559231,47.65408963405196],[-122.29190024084568,47.65408550480169],[-122.29200171357449,47.65408613339387],[-122.29207156095424,47.65408056869075],[-122.2921392195757,47.65406929111145],[-122.29220484941175,47.65405803948067],[-122.29226816614921,47.65403666343535],[-122.29232574375422,47.6540277000485],[-122.29236323693762,47.65402610571922],[-122.29249016381442,47.65402996347542],[-122.29252142843717,47.65405946757043],[-122.29253099675739,47.65414734521709],[-122.29256565003776,47.65418914505163],[-122.29261326273043,47.65418660671855],[-122.29264534762456,47.65417304286138],[-122.29267936817051,47.65415615504148],[-122.2927128957968,47.65412170766265],[-122.2927243353329,47.65409551217798],[-122.29273482995653,47.65407181404314],[-122.29273913886621,47.6540445959447],[-122.29273915274511,47.65400894986044],[-122.29275449483657,47.65397722075367],[-122.29278123914987,47.65395412792905],[-122.29282436423084,47.65393630947882],[-122.29286567677747,47.6539261830093],[-122.29290909397443,47.6539187717055],[-122.29298240523545,47.65389204046755],[-122.2930584613092,47.6538908083656],[-122.29312028799451,47.65388864497088],[-122.29316072410391,47.65388345659191],[-122.29320108324495,47.653875527381],[-122.29324145800851,47.65386815495012],[-122.29329696853812,47.65385784631313],[-122.29334042410035,47.65385180525363],[-122.29339099512512,47.65384622994776],[-122.29346598289379,47.65384308372302],[-122.29350242329735,47.6538401312614],[-122.29354906843514,47.65383927627349],[-122.29362700641316,47.65383279296454],[-122.2936795509643,47.65382526432687],[-122.2937390100648,47.6538110490452],[-122.29377840134099,47.65380480267303],[-122.29381787735372,47.65380155461951],[-122.29387756017186,47.65379530524784],[-122.29392333621027,47.65379964513012],[-122.29397037354315,47.65381275157692],[-122.29402547019113,47.65382382708817],[-122.29410673560793,47.65382745443395],[-122.29421536802204,47.65383017402082],[-122.2942924614814,47.65382974204431],[-122.29435019255966,47.65382625961858],[-122.29439901152423,47.65383056027259],[-122.29444152984789,47.65382727262035],[-122.29451452781385,47.6538255221355],[-122.29455052210604,47.65380668052411],[-122.2945927936409,47.65379461322033],[-122.29464950331912,47.65379088648429],[-122.29473444717277,47.65378101336619],[-122.29477886296233,47.65377303153527],[-122.2948386534731,47.65377063642233],[-122.2949469853177,47.65376264815703],[-122.29501087077418,47.65376157094922],[-122.2950868416447,47.65375729704643],[-122.29514978213759,47.65375867396374],[-122.29522459265284,47.6537492309837],[-122.29527115216669,47.6537453341493],[-122.29531066605742,47.65374345599314],[-122.29537266229033,47.65374733015303],[-122.29548221648511,47.65374673754467],[-122.29562781820933,47.65372923008774],[-122.29568443499016,47.65372220522644],[-122.29575106207,47.65371038173611],[-122.29579247334053,47.65370380899223],[-122.29588649909144,47.65369219056669],[-122.29593713060926,47.65368879815877],[-122.29603550553328,47.65368753468387],[-122.2960970776044,47.65367633291061],[-122.29618445773342,47.65368095175521],[-122.29622959866438,47.65369875169012],[-122.29626664859559,47.65371746945208],[-122.2963036990826,47.65373618754611],[-122.29633969639296,47.65375354790406],[-122.2963900851706,47.65377757858248],[-122.29641990505667,47.65379171912435],[-122.29644970207228,47.65380504639546],[-122.29650404736054,47.65382547012807],[-122.29657481291491,47.65385253772614],[-122.29663970464757,47.65385114694494],[-122.29668426674444,47.65384838918833],[-122.2967528453563,47.65383379822831],[-122.29678967521609,47.65380864693865],[-122.29686718837074,47.65378708587654],[-122.29689907056677,47.65376636845825],[-122.29694604713652,47.65377728965491],[-122.29698049512632,47.65381167861351],[-122.29699062580525,47.65384719435594],[-122.29698981750751,47.65396262490913],[-122.29697242634882,47.65399356704633],[-122.29693229918244,47.65400972074043],[-122.29687795816568,47.65402550009087],[-122.2968395348768,47.6540301069311],[-122.29679643786442,47.65401283761069],[-122.29674809981397,47.65398959501388],[-122.296708145278,47.65397584169617],[-122.29666952913291,47.65397359573936],[-122.29663195845895,47.65397245067761],[-122.29658105669562,47.65396624948832],[-122.29653179342463,47.65398222034347],[-122.29652027197784,47.65400541821791],[-122.29649747005449,47.65402434822966],[-122.29644342556733,47.65408673707631],[-122.29640334395661,47.65410451781157],[-122.29636537613433,47.65412531361691],[-122.29632856822056,47.65415127838953],[-122.29630072689116,47.65417138673739],[-122.29628651673139,47.65420721521913],[-122.29630753341701,47.65423299380029],[-122.29633245235684,47.65425323863569],[-122.29636587770277,47.65428734118417],[-122.29638690960951,47.65431367655121],[-122.29641401113481,47.65433937729378],[-122.29644292570673,47.65435738561189],[-122.29648298774437,47.65437495097309],[-122.29659558229763,47.65441026392055],[-122.29665164000939,47.65441939757868],[-122.29675613290853,47.65441916887864],[-122.29679908754788,47.65439531014211],[-122.2968360335218,47.65437427041149],[-122.29687219352927,47.65439736974575],[-122.29690730878177,47.65441941132372],[-122.29694750243664,47.65444164453789],[-122.2969794753003,47.65446017041376],[-122.29701194081508,47.65449621301393],[-122.29701174166573,47.65456120923687],[-122.29701028843617,47.65461769537298],[-122.29701834149823,47.65468751250515],[-122.29704225102033,47.65474397275228],[-122.29725045997567,47.65473388469757],[-122.29727102294777,47.65468949174331],[-122.29727631922702,47.65468125290223]]],[[[-122.29446065456207,47.65342477020025],[-122.29441905077604,47.6534244900671],[-122.29439695985319,47.65339653942296],[-122.2944267917202,47.6533750351033],[-122.29445658503981,47.65335216001656],[-122.29449680514372,47.65333930480526],[-122.2945200667177,47.65330061861796],[-122.29453474549415,47.65324533375394],[-122.29455590846344,47.65320418959261],[-122.29460197217806,47.65314657376479],[-122.2946574015554,47.65309732111881],[-122.29468608060002,47.65307090420296],[-122.29471142427829,47.65303411915249],[-122.2947410246671,47.65300439159859],[-122.29479096216551,47.65297633094699],[-122.2948375523231,47.65297354787807],[-122.29486276462512,47.65293209477475],[-122.29488616419765,47.65289833370198],[-122.29491279143582,47.65287112915115],[-122.29497324545648,47.65282018368948],[-122.29500913894913,47.65279778715104],[-122.29505535033442,47.65278155603558],[-122.29516485674608,47.65277933650427],[-122.29521950577941,47.65277452193083],[-122.2952784110841,47.65277676482007],[-122.29531767418503,47.65280205241946],[-122.29537753577992,47.65283830074579],[-122.29542628765965,47.65287631949263],[-122.29545740580227,47.65290059797713],[-122.29548973128738,47.65293171546652],[-122.29553095295114,47.65295449330637],[-122.29557322727959,47.65297862816745],[-122.29561036973642,47.65300064409763],[-122.29573514998901,47.6530004127122],[-122.29577050743895,47.65299503169877],[-122.29584394724618,47.65297296698692],[-122.29589994631561,47.6529440137369],[-122.29599216928062,47.65290444154761],[-122.29606168381693,47.65288709681186],[-122.2961583876124,47.65286254791886],[-122.29620890262869,47.65285504416649],[-122.29626851417895,47.65284630954599],[-122.29630840203993,47.65282167611672],[-122.29635449735352,47.65280133325079],[-122.29647213267205,47.65279956467498],[-122.29651297619289,47.65280889384944],[-122.29657447387596,47.65283115353824],[-122.29662991718587,47.65285456216099],[-122.29668141213438,47.65288187729013],[-122.29671133163991,47.65289957253609],[-122.29673331631152,47.65292371113205],[-122.29676365967586,47.65295648190753],[-122.29678782688426,47.6529860760602],[-122.2968128298018,47.65300931877732],[-122.29682364277576,47.65303304357636],[-122.29684050228963,47.65305531976646],[-122.29685203312069,47.65310452726089],[-122.2968772446896,47.65313517914648],[-122.29690417584062,47.65315484064757],[-122.29695903785444,47.65319363730842],[-122.29700142931857,47.65322188355688],[-122.29704077747608,47.65325016855432],[-122.29708028053325,47.65328393551235],[-122.29710112723325,47.65330367552405],[-122.2971281514088,47.65332663493174],[-122.29716547150765,47.65335494595571],[-122.29718855508717,47.65338206906299],[-122.29719745586642,47.65340993147027],[-122.29711280609342,47.65343021359318],[-122.29702345062505,47.65342750593339],[-122.29693813712595,47.65342423243118],[-122.29673624735206,47.6534243420235],[-122.29652019092825,47.65342574726554],[-122.2963153209837,47.65342812238234],[-122.29613979999388,47.65342789181874],[-122.29605149002471,47.6534262843091],[-122.29580504637043,47.65342944938978],[-122.29574235372998,47.6534368524205],[-122.29569484907583,47.6534432033115],[-122.29545659577254,47.65344900462127],[-122.2953970453318,47.65345992283205],[-122.29530991924544,47.65346434050519],[-122.29517408213161,47.65346826905434],[-122.29512651597312,47.65347243568609],[-122.29490924481672,47.65346674133342],[-122.29473774161727,47.65346508649134],[-122.29460765085537,47.65345690188116],[-122.29453853289792,47.65345230478011],[-122.29450186893834,47.6534472912413],[-122.29446065456207,47.65342477020025]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000046,"geom:area_square_m":381419.719461,"geom:bbox":"-122.297276319,47.6527745219,-122.286730593,47.6602715877","geom:latitude":47.656627,"geom:longitude":-122.292703,"iso:country":"US","lbl:latitude":47.656802,"lbl:longitude":-122.293569,"lbl:max_zoom":18,"mps:latitude":47.656802,"mps:longitude":-122.293569,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Union Bay Natural Area"],"name:deu_x_preferred":["Union Bay Natural Area"],"reversegeo:latitude":47.656802,"reversegeo:longitude":-122.293569,"src:geom":"mz","wof:belongsto":[85853121,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2870a5e0bdc1c796fe232c2f37aa8276","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537385,"neighbourhood_id":85853121,"region_id":85688623}],"wof:id":890537385,"wof:lastmodified":1566631081,"wof:name":"Union Bay Natural Area","wof:parent_id":85853121,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537387.geojson b/fixtures/microhoods/890537387.geojson new file mode 100644 index 0000000..3978b6b --- /dev/null +++ b/fixtures/microhoods/890537387.geojson @@ -0,0 +1 @@ +{"id":890537387,"type":"Feature","bbox":[-122.41980699978437,47.63126211486192,-122.39362454274608,47.65417407104449],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.41980699978437,47.65282711583686],[-122.4175367901182,47.65277558429587],[-122.41805319735437,47.65341140581852],[-122.41821639237169,47.65366908817942],[-122.41830871214391,47.65390418777078],[-122.4183865608475,47.65417407104449],[-122.40364202457674,47.65416514441239],[-122.40360628299418,47.65145387500379],[-122.40361424367161,47.65044100349719],[-122.40361571467757,47.64681148418533],[-122.40272719237912,47.64681555082463],[-122.40114328018159,47.64681980423017],[-122.40093635573899,47.6468204679451],[-122.40093779651654,47.64659907005474],[-122.40094386491751,47.64548806832619],[-122.40098743121773,47.64264309943854],[-122.40098907176767,47.6398374820355],[-122.40102792720376,47.63922538259823],[-122.4009870156808,47.63923091586146],[-122.40094858417172,47.63923461547106],[-122.4009096021285,47.63923686606745],[-122.40087057438619,47.63923761787935],[-122.40083150196521,47.63923687019073],[-122.40079238567166,47.63923466686342],[-122.40075373083869,47.63923095741828],[-122.4007155392892,47.6392257850017],[-122.40067781049663,47.63921914927042],[-122.40064054628363,47.63921109337083],[-122.40060425458375,47.63920165313102],[-122.4005684287481,47.63919083517548],[-122.40053408336082,47.63917866870926],[-122.40050020514268,47.63916516768176],[-122.40046781176507,47.6391504465451],[-122.40043690272043,47.63913450565848],[-122.40040697392807,47.63911743689946],[-122.39963078385883,47.63910870944361],[-122.39835454488777,47.63822343873732],[-122.39809038806214,47.63802317247108],[-122.39792288755905,47.63771485111469],[-122.39790146517063,47.63653079210741],[-122.39787507615316,47.63575472497737],[-122.39750408904008,47.63377230470026],[-122.39720912631019,47.63327181924594],[-122.39415349272856,47.63229371293244],[-122.39362454274608,47.63224063917912],[-122.39369525823884,47.63126211486192],[-122.39439099454654,47.63131066608419],[-122.39493407881116,47.63139574331322],[-122.39536695587435,47.63149263630813],[-122.39574435428138,47.63161478705973],[-122.39574415619096,47.63149755925353],[-122.39576428254314,47.63151099564966],[-122.39580028144016,47.63152776813406],[-122.39584013759426,47.63153793200402],[-122.39588712253898,47.63154906920476],[-122.39596846699565,47.63155617891473],[-122.39602038952555,47.6315628781929],[-122.39606931949064,47.6315712467401],[-122.39611936220385,47.63158289887769],[-122.3961823770616,47.63158751784881],[-122.3962252174375,47.63159571301617],[-122.39627821880181,47.63160458223403],[-122.39632520391105,47.63161571960482],[-122.39637731521444,47.6316287141665],[-122.39642437501477,47.63164233543015],[-122.39647520886524,47.63164656449317],[-122.39652651372312,47.63163270653269],[-122.3965751387713,47.63163092476547],[-122.39661990691299,47.63163579407273],[-122.39669574585369,47.63166217307687],[-122.39672710502808,47.63169327609927],[-122.39674697622189,47.6317133114067],[-122.3968035620447,47.63174021203793],[-122.39684541344484,47.63174923448773],[-122.39690082990394,47.63177096641334],[-122.39693696967527,47.63179240643862],[-122.39701655076401,47.6318083226254],[-122.39705813830702,47.6318085656256],[-122.39713764477511,47.63182199779438],[-122.39718276002908,47.63183838699103],[-122.39723698150603,47.63185409440526],[-122.39725591271062,47.63187658503181],[-122.39728519557283,47.63190608822256],[-122.39735974084208,47.63192314456008],[-122.3974037434326,47.63193625006989],[-122.39744977285712,47.63194932806447],[-122.397497747711,47.63195963707896],[-122.39753676398085,47.63197555328428],[-122.39757354634489,47.63198464477401],[-122.39760341470344,47.63196615414788],[-122.39768470207375,47.63197133512755],[-122.39773785273445,47.63198512907316],[-122.39777864135962,47.6319925375802],[-122.39781143483629,47.63200386903435],[-122.3978543577346,47.63201480434201],[-122.3979014672184,47.63203005218147],[-122.39794226363809,47.63203771779412],[-122.39800743072634,47.63204641900218],[-122.39804125470948,47.63205829358772],[-122.39809021895616,47.63206777447508],[-122.39813306723543,47.63207622574496],[-122.39817177841952,47.63208199199085],[-122.39821767672643,47.63209070104087],[-122.39826675572712,47.6321039937065],[-122.39832709433186,47.63212073053438],[-122.3983729179571,47.63212695558929],[-122.39844223448829,47.63213872746351],[-122.39849430560652,47.63215035068309],[-122.3985569887755,47.63216075676288],[-122.39861010634878,47.63217343674168],[-122.39867646526754,47.63218803419441],[-122.39873211293538,47.6322005508656],[-122.39880276169563,47.63222288669395],[-122.39884684688933,47.63223873274939],[-122.39888113702271,47.63224922938792],[-122.39891696849881,47.63224355222417],[-122.398953397311,47.63224086633524],[-122.39899624973842,47.63224944568687],[-122.39903233217387,47.63226895790144],[-122.39907928622841,47.63227902302741],[-122.39911205567624,47.63228954051381],[-122.39913512502694,47.63231471580126],[-122.39914012862407,47.63234618070452],[-122.39913388207742,47.63237450111345],[-122.399157998669,47.63240077601242],[-122.39922968605819,47.63242391157623],[-122.39934039920051,47.63246326230452],[-122.39940621052841,47.63249333329649],[-122.39948319012532,47.63252380795893],[-122.39952125126698,47.63254166458935],[-122.39962630329552,47.63259506030928],[-122.39978219064221,47.63265268351849],[-122.39986746248309,47.63268908494259],[-122.39996709926156,47.63273102964284],[-122.40003577946445,47.63275532011657],[-122.40013934787247,47.63279309738655],[-122.40025704262624,47.6328284952479],[-122.40030633831248,47.63284893886131],[-122.40037005754166,47.63287685358876],[-122.40042639151676,47.63289527231252],[-122.40055925161882,47.63292909015494],[-122.40075186655712,47.6329938753973],[-122.40079387711833,47.63300812142105],[-122.40092303745934,47.63305377159692],[-122.40102559343504,47.63309156237026],[-122.4011823826055,47.63314535820113],[-122.40127353949379,47.63317507905563],[-122.40137101927255,47.63321268217143],[-122.40145710745678,47.63324247305182],[-122.40156779096903,47.63328070804738],[-122.40166518851368,47.63331557016776],[-122.40170498055457,47.63332350521054],[-122.40173814497018,47.63331345099639],[-122.40176295141066,47.63329528593128],[-122.40178559872176,47.63327278016444],[-122.40180926745289,47.63325051759013],[-122.40184247313938,47.63324183406807],[-122.40188644388317,47.63325382464426],[-122.40194271292569,47.63327005830272],[-122.40197270731849,47.63328939658015],[-122.40194257005506,47.63333257076263],[-122.40190462108683,47.63338574960471],[-122.40188823853693,47.63341421019896],[-122.40193060441344,47.63344023272624],[-122.40197049605432,47.63345146554943],[-122.4020105039509,47.6334665523094],[-122.40208152735232,47.63350122050594],[-122.40228888601492,47.63358392340228],[-122.40234940024241,47.63360639710536],[-122.40242611781704,47.63362809007471],[-122.40258643879415,47.6336979875899],[-122.40266950419746,47.63372837625372],[-122.40275860326922,47.63375705346257],[-122.4028181533096,47.63378116807606],[-122.40292478366894,47.63381945766248],[-122.40299046696096,47.6338451586547],[-122.4030913871461,47.63389586599884],[-122.40314478939905,47.63391788034795],[-122.40320828005382,47.63393812698586],[-122.40328007038157,47.63396455752661],[-122.4033466687079,47.63398694680491],[-122.40344610391789,47.63402203625283],[-122.40356319598968,47.63407089192448],[-122.40364620437325,47.63409935272541],[-122.403731157484,47.63412504440515],[-122.4038348722668,47.63416748655437],[-122.40392234237234,47.63420933880421],[-122.40405692540243,47.63426643593449],[-122.40411552113788,47.6342924913565],[-122.40418840166198,47.6343213912582],[-122.4042406663977,47.63433930727439],[-122.40432855445646,47.63436140185126],[-122.40439408130351,47.63438187736354],[-122.4045151553827,47.63442819216039],[-122.40462465606501,47.63446069953478],[-122.40467690479876,47.63447805891554],[-122.40473861724577,47.63450655561669],[-122.40478444116955,47.63454623985266],[-122.40480733128888,47.63456537538458],[-122.4048465096292,47.6345865141035],[-122.40489782291638,47.63457290918471],[-122.40496203836125,47.63458354791294],[-122.40503692182256,47.63461156288026],[-122.4052203922964,47.63467539612258],[-122.40526661690303,47.63469476637231],[-122.40531276724178,47.63471169548489],[-122.40540707833838,47.63474492570995],[-122.40548728794123,47.63478139293156],[-122.40553554016853,47.63480073507276],[-122.40572124703301,47.63487139170218],[-122.40576647459964,47.63489133253642],[-122.40581499247533,47.63491945390942],[-122.40593350058576,47.63498144110728],[-122.40601479121003,47.63502007825856],[-122.40619266976933,47.63510013949361],[-122.40628090836648,47.63513375300286],[-122.40633445390141,47.63516043375063],[-122.40637661670358,47.63517960276538],[-122.4064723156171,47.63522515248876],[-122.40652184790784,47.6352532595518],[-122.40664763635881,47.6353211865522],[-122.40672305299663,47.63536675945699],[-122.4067735578239,47.63539348202998],[-122.40687635407693,47.63543893332834],[-122.40692819672147,47.63547634831637],[-122.4069582849375,47.63549868283117],[-122.40700509147274,47.6355372389534],[-122.40706516906258,47.63557865322593],[-122.40712496423242,47.63561073134136],[-122.40718364595824,47.63563952592251],[-122.40723224823981,47.63567038743008],[-122.40726241188074,47.63569520614164],[-122.40729951983863,47.63574842029948],[-122.40731958667189,47.63577474953719],[-122.40736622780388,47.63580782333084],[-122.40744983859882,47.63585602436122],[-122.40749417891394,47.63588008997782],[-122.40762728201976,47.63595502712626],[-122.40773986028499,47.63602202161864],[-122.40783172351873,47.63607477844037],[-122.4078730393092,47.63609944240547],[-122.40795872053035,47.63614898538208],[-122.4080587192853,47.63620244343071],[-122.40811142686715,47.63623487635578],[-122.40815907488019,47.63626767898852],[-122.40830766077514,47.63635144148146],[-122.40838369538727,47.63638385095071],[-122.40844853689543,47.63641504464488],[-122.40861083589492,47.63648272165896],[-122.40875747141521,47.63653553377733],[-122.40880477111868,47.63655681570793],[-122.40890532857004,47.63659518387215],[-122.40899446843096,47.63662492695263],[-122.4090447849082,47.63664535310002],[-122.40907932784027,47.63666402642748],[-122.40913965806378,47.63669695286439],[-122.40919634837202,47.63672688802784],[-122.4092222166567,47.63674379625527],[-122.40923109154342,47.63676890915513],[-122.40923496385948,47.63679627617899],[-122.40927638860433,47.63682449431342],[-122.40931043369271,47.63684347455648],[-122.40939273569522,47.63688183809671],[-122.409461824234,47.63691927049198],[-122.40951051992089,47.63695312892663],[-122.40954978503704,47.63697700676297],[-122.4095806229133,47.63699054720705],[-122.4096105140329,47.63700632879853],[-122.40963640726146,47.63702405087317],[-122.4096781569237,47.63706297534863],[-122.40977375508227,47.63713842937547],[-122.40981302825459,47.63716256428427],[-122.40991194180427,47.63721355081723],[-122.40997800675645,47.63725158179401],[-122.41002886435442,47.63728982334915],[-122.41014345960289,47.63738969237065],[-122.41021940561593,47.63745252202087],[-122.41029712169636,47.63750684381812],[-122.41034370004955,47.63753773243155],[-122.410444268872,47.63760981781432],[-122.4104732130731,47.63762779718153],[-122.41054928338431,47.63766127630794],[-122.41063287595193,47.63770866140059],[-122.41067514968745,47.63773138315609],[-122.41071193842843,47.63774047075025],[-122.41075517639621,47.63772808912492],[-122.41080916648905,47.63773582432479],[-122.41089841026496,47.63780232519406],[-122.41097433259242,47.63786434075686],[-122.41101606705023,47.63790270831374],[-122.4110445708057,47.63793958817573],[-122.41107306732955,47.63797621121089],[-122.41112320370422,47.63802405925312],[-122.41116351663071,47.63804899323588],[-122.41122948350971,47.63808372597169],[-122.41128424851293,47.63811698571685],[-122.41141012470229,47.63818734856403],[-122.41146492242264,47.63822167897563],[-122.41155071063116,47.63827451675954],[-122.41160867517169,47.63831291638823],[-122.4116801028086,47.6383604690311],[-122.411715346835,47.63838547309926],[-122.41175997464276,47.63841887316593],[-122.411789833446,47.63843354062917],[-122.41184744085548,47.63846016255118],[-122.41191519499417,47.63848690067364],[-122.41198366346202,47.63850377461736],[-122.41202949487429,47.63850999451796],[-122.41207338140084,47.63851898290844],[-122.41211849027701,47.63853480975615],[-122.41215657705787,47.63855321893675],[-122.41218640276212,47.63856677273348],[-122.41222633434664,47.63857911516588],[-122.41229484465411,47.6385973596409],[-122.41237138131696,47.63857928872171],[-122.41242240659933,47.63858954926201],[-122.41247723921424,47.63862499239038],[-122.41260711682774,47.63872683263647],[-122.41264473169234,47.63876307153927],[-122.41266172720897,47.63878832846798],[-122.41266794458679,47.63882607411725],[-122.41270634834801,47.63885488997034],[-122.41272344407027,47.6388834444022],[-122.41269887361214,47.63894273974596],[-122.41268537010713,47.63896567752588],[-122.41266580023107,47.63898925682133],[-122.41266054204667,47.63901649314259],[-122.4126795821513,47.63904227871894],[-122.41271606592547,47.63907467737872],[-122.41274403097032,47.63909374097773],[-122.41279522332245,47.6391094831713],[-122.41283788077398,47.63911137633152],[-122.4129533896187,47.63917421235784],[-122.41297834670722,47.63919443130897],[-122.4130052728826,47.63921269532746],[-122.4130617700362,47.63926949460271],[-122.41309696591313,47.63929287106293],[-122.41315431052394,47.6393441744048],[-122.4131948166982,47.63937540307699],[-122.41324129045336,47.63940273582823],[-122.41328580249683,47.63943228101365],[-122.41342548913585,47.63952301563514],[-122.41348790334665,47.63957424845687],[-122.41351596133684,47.6395963525654],[-122.4135551378911,47.63961718831914],[-122.41359134802008,47.63964055020397],[-122.41363155536324,47.63966192863703],[-122.41366048489911,47.63967935076629],[-122.41368941496279,47.63969677253017],[-122.41373276402253,47.63972140622082],[-122.41376997172048,47.63974419754197],[-122.41380517603116,47.63976783024435],[-122.41385266426636,47.639795148672],[-122.41388902433987,47.63982343550343],[-122.41393118406997,47.63984230175995],[-122.41399368299666,47.63989627538142],[-122.4140418127014,47.63994470742186],[-122.4140666950908,47.63996244256322],[-122.41410710334925,47.63999041585036],[-122.41413129743404,47.64001887187844],[-122.41417881080186,47.64004700375942],[-122.41423415143618,47.64006568688693],[-122.4142882538393,47.6400770179126],[-122.41432600060504,47.64008416275824],[-122.41436494479359,47.64009733245874],[-122.4144158162076,47.64013582886326],[-122.41445680500603,47.64014952680045],[-122.4145175235435,47.64017828943863],[-122.414564946111,47.64020342326188],[-122.4145988455857,47.64021747688125],[-122.41463489773206,47.64023561377925],[-122.4146657232351,47.64024863886949],[-122.41472130649146,47.64027528749879],[-122.4147658865369,47.64030701606087],[-122.41479977831285,47.64032081245735],[-122.4148712999276,47.6403378995718],[-122.41494255586933,47.64034624976513],[-122.41498052775057,47.64036080371257],[-122.41500898669287,47.64039605539341],[-122.41503500848923,47.64041788733809],[-122.41507230009952,47.64044341897344],[-122.41510375110991,47.64047700084598],[-122.41520590181212,47.64053397875477],[-122.41526521890594,47.64058332606639],[-122.41531097230988,47.64062026498161],[-122.41533733699936,47.64065336045502],[-122.41536229573506,47.64067357923353],[-122.41538349103638,47.64070344762403],[-122.41541286341634,47.64073538726228],[-122.41544616657526,47.64076315908259],[-122.41549211232994,47.64080639367396],[-122.41551940766013,47.64083673393275],[-122.4155527943401,47.64086724680527],[-122.41559556535559,47.64090615536784],[-122.41562149644706,47.64092498963345],[-122.41567156426791,47.64097035174807],[-122.41571757685904,47.64101577055447],[-122.41576288403176,47.64107135313209],[-122.41580257216994,47.64110893352382],[-122.41582356666787,47.64113220611859],[-122.4158527067977,47.64115647986475],[-122.41588296114026,47.64118403702061],[-122.41589989254655,47.64120710915795],[-122.41598549306826,47.64128681034656],[-122.41602374508388,47.64134386184492],[-122.41604789912849,47.64137094674762],[-122.41606584450803,47.64139400476644],[-122.41609918234073,47.64142289030003],[-122.41614116458744,47.64146917890742],[-122.4161644639371,47.64150150253201],[-122.41618969845656,47.64153075761574],[-122.41620657145222,47.64155190256417],[-122.4162400515511,47.64158545593151],[-122.41626118905572,47.64161339666394],[-122.41630356400273,47.64167257598398],[-122.41635183047875,47.64172537530622],[-122.41638151353834,47.64176746472688],[-122.41642336332104,47.64180938461808],[-122.4164506427813,47.64183916822659],[-122.41648995181191,47.64189757617963],[-122.41648473653667,47.64192618304816],[-122.41645713938853,47.64195261651237],[-122.41645909640928,47.6419835661524],[-122.4164711423959,47.64201274728954],[-122.41649540520427,47.64204338676844],[-122.416512354113,47.64206701559101],[-122.4165618441595,47.6421266528989],[-122.41658798483307,47.64215233912397],[-122.4166160280604,47.6421738856971],[-122.41664876097431,47.64221618956331],[-122.41666631897006,47.64225981847706],[-122.41669150458412,47.64228744592017],[-122.41671954792717,47.64230899246773],[-122.41671843824236,47.64233917046936],[-122.41670521991105,47.64237144517396],[-122.41673791129509,47.64241237864842],[-122.41678224134208,47.64246908846439],[-122.41680149340735,47.64250172552849],[-122.41686139851315,47.6425702581791],[-122.41687835559101,47.64259414410967],[-122.4168962352432,47.64261501769126],[-122.41691132373053,47.64264415647028],[-122.41692519701297,47.64266671433934],[-122.41695424282483,47.64272115170423],[-122.41696974872819,47.64276399483428],[-122.41698927622117,47.64280566835114],[-122.41700026709462,47.64283349316788],[-122.41702556142195,47.64286467520772],[-122.41703978618018,47.64289875310861],[-122.41705882987729,47.64292453794953],[-122.41710958082906,47.64295892169928],[-122.41715716502284,47.6429892366402],[-122.41722030874992,47.64303086039665],[-122.41725290181665,47.64306853901638],[-122.41726894580681,47.64309573650083],[-122.41728365476072,47.64314570303375],[-122.41731532537948,47.64318639328331],[-122.41734221340131,47.64320328590838],[-122.41733395685057,47.64323193548101],[-122.41729305330722,47.64325444107236],[-122.41726951970938,47.64328107511799],[-122.41727037155195,47.64330904096056],[-122.41728153748272,47.64334260437486],[-122.41730964531051,47.64339953967895],[-122.41732834337908,47.64344726583159],[-122.41734810992199,47.64353006681344],[-122.4173584877713,47.64357105363135],[-122.41736614600006,47.6436559510228],[-122.41736892521826,47.64368059114563],[-122.41737997106165,47.64374350486231],[-122.41738997826175,47.64380561909467],[-122.41738665722023,47.64382978707378],[-122.4173915357819,47.64389004469866],[-122.41741866736344,47.64391490267915],[-122.41749646207573,47.64393794209688],[-122.41752239535657,47.64395677557695],[-122.41753068693782,47.64399586345002],[-122.41751539914993,47.6440267957444],[-122.41749721972315,47.64406269574328],[-122.41749815519722,47.6440934023144],[-122.41751189200119,47.64414475364637],[-122.41751563158714,47.64420091392484],[-122.41752414890942,47.64424741040205],[-122.41752964153416,47.64429450632679],[-122.41753820846836,47.64434263033107],[-122.41756120536144,47.64439826574765],[-122.41758405146858,47.64444893331451],[-122.41760351869473,47.64452188417787],[-122.41761189393007,47.64456371277512],[-122.41763741519051,47.64460230328104],[-122.41764541467255,47.64463179788554],[-122.41765266775185,47.6446700859173],[-122.41767942482885,47.64474923375576],[-122.41768785836082,47.64479298949642],[-122.41770437939213,47.64483581841533],[-122.41772478957763,47.64487310942882],[-122.41773901482424,47.64490718724743],[-122.41774348466508,47.64495399730481],[-122.41774164168018,47.6450266876706],[-122.41773119804454,47.64505014083849],[-122.41770357507185,47.64507576066271],[-122.41767527349069,47.64517898211554],[-122.41765658091818,47.64523134133254],[-122.4176397073624,47.64527682015308],[-122.4176236141312,47.64531461909701],[-122.41759778125403,47.64536570670696],[-122.41757282054562,47.64541211232363],[-122.4175518071654,47.64545490683629],[-122.41753237978651,47.64548315482894],[-122.41748967974368,47.64551335447671],[-122.41745462089646,47.64556127150456],[-122.41744175316934,47.64560506669302],[-122.41742186180534,47.64565140139487],[-122.41740558937028,47.64571662347602],[-122.41741214553767,47.6457653324758],[-122.41741571813233,47.64581601094213],[-122.41741467532017,47.64584837325209],[-122.41742862534748,47.64587341497639],[-122.41744466344448,47.64596697917179],[-122.41744040039791,47.64609343052545],[-122.41744353579628,47.64616305245245],[-122.41744329132217,47.64625491521603],[-122.41744458560994,47.64629739934966],[-122.417458339895,47.64634930711035],[-122.41746019669743,47.64637695922856],[-122.4174317095106,47.64640751812037],[-122.41738429495146,47.64648277076677],[-122.41736974087779,47.64653781459373],[-122.41734937006227,47.64660172237767],[-122.4173430312663,47.64662674626498],[-122.417340370168,47.64667258432759],[-122.41734652535318,47.64670814575787],[-122.41736679567235,47.64677414441848],[-122.41737563293796,47.64683113370582],[-122.41737699371737,47.64687580179346],[-122.41738202723353,47.64690782264961],[-122.41739957046642,47.64695089466704],[-122.41741618832533,47.6470301836254],[-122.41743158709102,47.64706947237448],[-122.41744467405718,47.64709945287928],[-122.41745064539356,47.64712897571452],[-122.41745580015252,47.64719826945452],[-122.41745387726367,47.64723505728841],[-122.4174442263334,47.64728454877303],[-122.4174225280508,47.64737148278087],[-122.41741411673775,47.64742836911104],[-122.41741103763498,47.64746050282621],[-122.4173955606886,47.64751855865396],[-122.41738610645707,47.64760780728971],[-122.41737569141029,47.64766553542364],[-122.4173717294509,47.64780187999152],[-122.41737075812432,47.64786988835917],[-122.41737505754351,47.64794442121405],[-122.41737011332367,47.64801522674112],[-122.41737086984847,47.64807335682645],[-122.41737628705529,47.64811796848316],[-122.41737741433111,47.64815497080283],[-122.4173967523724,47.64819034849094],[-122.41740738169516,47.64823955784092],[-122.41740489208928,47.64832433947674],[-122.4173551633603,47.6483902838709],[-122.41736958613495,47.64846411923802],[-122.4173769528521,47.64853942370723],[-122.41740046582164,47.64864522314402],[-122.41741836846195,47.6487000723687],[-122.41744642567897,47.64878854224151],[-122.41746723728087,47.64883898088123],[-122.41749422469103,47.64889233276399],[-122.41752483541126,47.64893140987704],[-122.41755235280566,47.64896885898035],[-122.41759993094817,47.64903207870773],[-122.41761761731979,47.64907981891163],[-122.4176331917034,47.64912484625429],[-122.41764619579087,47.64915208600355],[-122.41766637351382,47.64918171091333],[-122.41769894465247,47.64921853265653],[-122.41773866519993,47.64925692595209],[-122.41779384731831,47.64930333047445],[-122.41785714931217,47.64934987890393],[-122.4178893121738,47.64937329585371],[-122.41792836094302,47.64942292362721],[-122.41796706730081,47.64946133096051],[-122.41800096217499,47.64950828853977],[-122.4180241070443,47.6495353871272],[-122.41803730331384,47.64956892223079],[-122.41802423407009,47.64960612211525],[-122.41800478790836,47.6496338134153],[-122.4180258630693,47.64965956985938],[-122.41804588195386,47.6496839697024],[-122.41805406649914,47.64971950286073],[-122.41807112696186,47.64974668611469],[-122.41811374007852,47.6497801119094],[-122.41818268132518,47.64984521897512],[-122.41822592173565,47.64989920159812],[-122.41825772201489,47.64994400302947],[-122.41829121666895,47.64997781259648],[-122.41832211192649,47.65002618278513],[-122.41834464911366,47.6500999051058],[-122.41837818570082,47.6501350850119],[-122.41844915973117,47.6501670018914],[-122.41850481428253,47.65019557580656],[-122.41854205585243,47.65021917915617],[-122.41856919128617,47.65024403685737],[-122.41860188856755,47.65028496979344],[-122.418650361156,47.65031090172971],[-122.4186776298833,47.65034012766194],[-122.41869723732894,47.65038428479325],[-122.41872163660013,47.65045249698689],[-122.41873466587892,47.65048055020612],[-122.41875837179765,47.65052602121372],[-122.41878003223647,47.65057096403398],[-122.41879630526688,47.65060557024727],[-122.41880672745759,47.65064792728838],[-122.41881796307305,47.65068367448964],[-122.41883380670842,47.65073748133187],[-122.41884489218465,47.65076830384811],[-122.4188693192848,47.65080416746651],[-122.41888576746109,47.65084451263886],[-122.4188926461858,47.65087046660026],[-122.41889609519203,47.65091703356676],[-122.41890088526327,47.65097429321376],[-122.41890033328617,47.65105600594242],[-122.4189053511655,47.65108746995035],[-122.41892391109855,47.65113052760783],[-122.41894122927077,47.65119939537107],[-122.41893738761965,47.65123976578136],[-122.41890202769365,47.65124462824031],[-122.41889671224695,47.65126993770491],[-122.41891036142223,47.6513182909569],[-122.4189577926459,47.65137658508634],[-122.41898605132576,47.65140498323589],[-122.41902979666907,47.65144220604611],[-122.41906112235313,47.65147137575527],[-122.41911649948423,47.65152407468691],[-122.41919126257079,47.6515803602433],[-122.4192236194386,47.65161007221148],[-122.41925995672817,47.65163724376423],[-122.41931833508234,47.65168853020973],[-122.41936414347013,47.65172683819102],[-122.41944518392317,47.65178933387953],[-122.41947769132764,47.65182397115827],[-122.41949392288826,47.65185720691328],[-122.41947388907515,47.65189887408719],[-122.41942735473914,47.65193653990075],[-122.4194336549065,47.65197676942508],[-122.41945454697428,47.65199648667441],[-122.41947549054565,47.65201787459244],[-122.41949464723623,47.65204721368588],[-122.4196087671278,47.65212981411281],[-122.41965754195658,47.6521655956897],[-122.4197155867592,47.65220591796371],[-122.41980294712636,47.65227599474231],[-122.41980699978437,47.65282711583686]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000292,"geom:area_square_m":2435094.49526,"geom:bbox":"-122.419807,47.6312621149,-122.393624543,47.654174071","geom:latitude":47.644317,"geom:longitude":-122.408211,"iso:country":"US","lbl:latitude":47.645871,"lbl:longitude":-122.41039,"lbl:max_zoom":18,"mps:latitude":47.645871,"mps:longitude":-122.41039,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Briarcliff"],"reversegeo:latitude":47.645871,"reversegeo:longitude":-122.41039,"src:geom":"seagv","wof:belongsto":[85688623,102191575,85633793,101730401,102086191,85831927],"wof:breaches":[],"wof:concordances":{"wd:id":"Q28454570"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ef7fa14af735523dc352993822d681d5","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537387,"neighbourhood":85831927,"region_id":85688623}],"wof:id":890537387,"wof:lastmodified":1566631085,"wof:name":"Briarcliff","wof:parent_id":85831927,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869139],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537389.geojson b/fixtures/microhoods/890537389.geojson new file mode 100644 index 0000000..3f7cb23 --- /dev/null +++ b/fixtures/microhoods/890537389.geojson @@ -0,0 +1 @@ +{"id":890537389,"type":"Feature","bbox":[-122.40102792720376,47.63114385284542,-122.38196764572116,47.64871600574565],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.40093635573899,47.6468204679451],[-122.39990325180476,47.64682371787242],[-122.39799445872539,47.64681924364368],[-122.39645644083623,47.64683158419365],[-122.39557643740665,47.6468321791984],[-122.39553888785554,47.64698359268981],[-122.39551085979599,47.64728311796631],[-122.39548708107434,47.64770721991572],[-122.3954924759637,47.64824133162926],[-122.39549310197874,47.6484478766637],[-122.39549686834361,47.64847194662492],[-122.39549556478539,47.64849608578869],[-122.39548968775209,47.64851994513606],[-122.39547871582988,47.64854306044967],[-122.39546365012713,47.64856498944443],[-122.39544448009421,47.64858534653354],[-122.39542119388324,47.64860378931835],[-122.39536527937594,47.64863360472277],[-122.39511444479785,47.64864180112707],[-122.39422367951154,47.64863974781554],[-122.39333891935875,47.64865187235264],[-122.39171011166007,47.64864923961109],[-122.39104667370232,47.6486500480569],[-122.39100587943912,47.64865977481226],[-122.39097211893161,47.64866726329338],[-122.39093783627241,47.64867424436687],[-122.39090303096415,47.64868071874103],[-122.39086518240056,47.64868719191066],[-122.3908298357016,47.64869251683012],[-122.3907949803343,47.64869732082942],[-122.39075960102936,47.64870157497526],[-122.39072420556079,47.64870527232238],[-122.390688793421,47.6487084132287],[-122.39065285861824,47.64871104673219],[-122.39061741388122,47.64871311686446],[-122.39058144444915,47.64871459433265],[-122.39054241892678,47.64871564186243],[-122.39050641614146,47.64871600574565],[-122.39047039668132,47.64871581283682],[-122.39043486780153,47.6487150561996],[-122.39039881499522,47.64871374970681],[-122.39036325225237,47.64871187949299],[-122.39032767465069,47.64870949563341],[-122.3902920790877,47.64870651182892],[-122.39025646761924,47.64870301404198],[-122.39022134854915,47.64869899567388],[-122.39018619176747,47.64869373498288],[-122.39015198744501,47.64868640520599],[-122.3901192428181,47.6486769987074],[-122.39005407748519,47.64865205415935],[-122.39002180629282,47.64864152714371],[-122.38996637420087,47.64861979153731],[-122.38993654776121,47.64860618911571],[-122.3899082125755,47.6485915810947],[-122.38988035463692,47.6485759806344],[-122.38985449701714,47.64855941078866],[-122.38982962774199,47.64854196997828],[-122.3898062553767,47.6485236951251],[-122.38978437938069,47.64850458553551],[-122.38889684990434,47.64849186355601],[-122.38758971351452,47.64849188948327],[-122.38596531943435,47.64844995467347],[-122.38427893098809,47.64845515595942],[-122.38262934139703,47.64845267648816],[-122.38197469129265,47.64845888227456],[-122.38197423837585,47.64840961731826],[-122.38196764572116,47.64769437710083],[-122.38198029136075,47.64682467786298],[-122.38198244852046,47.64679491443377],[-122.38198467276469,47.6467674209417],[-122.38198791147829,47.64673991365207],[-122.38199115094409,47.64671244917178],[-122.38199489891662,47.64668502059499],[-122.38199966211096,47.64665762102993],[-122.38200442709427,47.64663026425999],[-122.38201020805293,47.64660297931103],[-122.38201599029078,47.64657573751497],[-122.38202278825496,47.64654852437238],[-122.3820295869781,47.64652135438966],[-122.38203740398562,47.64649429901574],[-122.3820452217302,47.64646728609988],[-122.3820540564927,47.64644034534104],[-122.38206289252089,47.64641344738384],[-122.38207274580147,47.64638666439986],[-122.38208260213035,47.64635996666188],[-122.3820929695161,47.64633339078183],[-122.3821043515806,47.64630684356796],[-122.38211573798777,47.64628042510389],[-122.382128141632,47.64625412126123],[-122.38214054834313,47.64622790336574],[-122.38215346556748,47.6462018066328],[-122.38216740055566,47.64617582486438],[-122.38218133987394,47.64614997149433],[-122.38219578971386,47.64612423963714],[-122.38221075007482,47.64609862929257],[-122.38222672871512,47.6460731339044],[-122.3822427106351,47.64604776657742],[-122.38225920487884,47.64602256390857],[-122.38227621144567,47.64599752589771],[-122.3822932218108,47.64597261594059],[-122.38231124941309,47.64594782095271],[-122.38232979112053,47.64592323306658],[-122.38234833611648,47.64589877359162],[-122.38236790193568,47.64587451467555],[-122.38238747104279,47.64585038417033],[-122.38240755373424,47.64582646077304],[-122.38242865544197,47.64580269478745],[-122.38244976276066,47.64577910035121],[-122.38247087591688,47.64575571993006],[-122.38249300809815,47.64573249727044],[-122.38251565385102,47.64570948136652],[-122.38253830597041,47.64568667982086],[-122.3847529305589,47.64271748360921],[-122.38669507480678,47.64010846742315],[-122.38868587031526,47.63740312164709],[-122.38941508999893,47.636419258048],[-122.39004709183612,47.63561062525675],[-122.3907354768443,47.63497516557034],[-122.39129950751077,47.63447182251446],[-122.39133296496824,47.63445452659214],[-122.39136439189944,47.63443717281032],[-122.39139529554514,47.63441926952341],[-122.39142567664706,47.63440085883958],[-122.39145553574497,47.63438194145382],[-122.3914843644318,47.63436248115447],[-122.39151267185662,47.63434255626196],[-122.3915399514564,47.63432217476343],[-122.39156670979429,47.63430132867276],[-122.39159244029722,47.63428002562645],[-122.3916176500576,47.63425825798185],[-122.39164183275768,47.634236076543],[-122.39166499068722,47.63421352304609],[-122.39168762865974,47.63419054846343],[-122.39170924135436,47.63416720218169],[-122.39172982826355,47.63414348455942],[-122.39174989829078,47.63411943109931],[-122.39176894432515,47.63409504874394],[-122.39178696637822,47.63407033784465],[-122.39180396572318,47.63404534085341],[-122.39182044896319,47.63402005118605],[-122.39183540238675,47.63399448237007],[-122.39184984150903,47.63396866367388],[-122.39186325922076,47.63394260204045],[-122.39187514968594,47.63391634686432],[-122.39188652661673,47.63388988461828],[-122.3918804554297,47.63328114691922],[-122.39187513206663,47.63264660632491],[-122.39184422071052,47.63114385284542],[-122.39206544128089,47.63114837980957],[-122.39369525823884,47.63126211486192],[-122.39362454274608,47.63224063917912],[-122.39415349272856,47.63229371293244],[-122.39720912631019,47.63327181924594],[-122.39750408904008,47.63377230470026],[-122.39787507615316,47.63575472497737],[-122.39790146517063,47.63653079210741],[-122.39792288755905,47.63771485111469],[-122.39809038806214,47.63802317247108],[-122.39835454488777,47.63822343873732],[-122.39963078385883,47.63910870944361],[-122.40040697392807,47.63911743689946],[-122.40043690272043,47.63913450565848],[-122.40046781176507,47.6391504465451],[-122.40050020514268,47.63916516768176],[-122.40053408336082,47.63917866870926],[-122.4005684287481,47.63919083517548],[-122.40060425458375,47.63920165313102],[-122.40064054628363,47.63921109337083],[-122.40067781049663,47.63921914927042],[-122.4007155392892,47.6392257850017],[-122.40075373083869,47.63923095741828],[-122.40079238567166,47.63923466686342],[-122.40083150196521,47.63923687019073],[-122.40087057438619,47.63923761787935],[-122.4009096021285,47.63923686606745],[-122.40094858417172,47.63923461547106],[-122.4009870156808,47.63923091586146],[-122.40102792720376,47.63922538259823],[-122.40098907176767,47.6398374820355],[-122.40098743121773,47.64264309943854],[-122.40094386491751,47.64548806832619],[-122.40093779651654,47.64659907005474],[-122.40093635573899,47.6468204679451]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000204,"geom:area_square_m":1695764.982302,"geom:bbox":"-122.401027927,47.6311438528,-122.381967646,47.6487160057","geom:latitude":47.641839,"geom:longitude":-122.392527,"iso:country":"US","lbl:latitude":47.642083,"lbl:longitude":-122.392344,"lbl:max_zoom":18,"mps:latitude":47.642083,"mps:longitude":-122.392344,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["SE Magnolia"],"reversegeo:latitude":47.642083,"reversegeo:longitude":-122.392344,"src:geom":"seagv","wof:belongsto":[85688623,102191575,85633793,101730401,102086191,85831927],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fec74262d9646f10872990f3b2dde205","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537389,"neighbourhood":85831927,"region_id":85688623}],"wof:id":890537389,"wof:lastmodified":1566631085,"wof:name":"Southeast Magnolia","wof:parent_id":85831927,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869679],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537393.geojson b/fixtures/microhoods/890537393.geojson new file mode 100644 index 0000000..f3fa32a --- /dev/null +++ b/fixtures/microhoods/890537393.geojson @@ -0,0 +1 @@ +{"id":890537393,"type":"Feature","bbox":[-122.40364918163755,47.64681148418533,-122.38197469129265,47.66628400590249],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.40364202457674,47.65416514441239],[-122.40364823030744,47.66493696288705],[-122.40364918163755,47.66627679837532],[-122.40353548684843,47.66627562380672],[-122.40340849738774,47.66627107621343],[-122.4032825227858,47.66626651414059],[-122.40316984235518,47.66626532522704],[-122.40306430412883,47.66626540871834],[-122.40296485962432,47.66626566506167],[-122.40291421512471,47.66626884787907],[-122.40287103483114,47.66628396724698],[-122.402809132078,47.66628400590249],[-122.40276320281204,47.66627529871347],[-122.40269291984973,47.66626666976781],[-122.40262211134662,47.6662742434305],[-122.40250811016064,47.66626291776766],[-122.4023668248073,47.66622180504062],[-122.40228964802108,47.66622012620738],[-122.40223109521551,47.6662302726979],[-122.40218652814579,47.66623307174569],[-122.40213619721494,47.6662466611073],[-122.40207504438177,47.66623790603756],[-122.40198362510911,47.66623505185202],[-122.4019387020824,47.66622607355647],[-122.40189452615769,47.66617458267051],[-122.40184907331263,47.66614804493793],[-122.40179849978593,47.66611994983833],[-122.40173363426835,47.66608905235451],[-122.40166001930649,47.66607087172829],[-122.4013358536279,47.66598895969511],[-122.40124673368807,47.66596139496138],[-122.40116778212109,47.665934504131],[-122.40111037320817,47.66591528581269],[-122.40105947188442,47.66590994526661],[-122.40102225327506,47.66592086871048],[-122.40098912604171,47.66593284985427],[-122.40094524281567,47.66592467044095],[-122.40088574723407,47.66590355277859],[-122.40081492781806,47.66587710680561],[-122.40073294268706,47.66585055751378],[-122.40067544233816,47.66582829826927],[-122.400669535983,47.66580070208216],[-122.40062851379378,47.66578644206466],[-122.40058942265746,47.66576889974618],[-122.40055824722216,47.66574465002678],[-122.400487698757,47.66569352182037],[-122.4004402602523,47.6656683817989],[-122.40041435590213,47.66565065800123],[-122.40037472007577,47.66564871832616],[-122.40032843441486,47.6655945140058],[-122.40029191521214,47.66556129746417],[-122.40024323099986,47.6655285055249],[-122.40020002431956,47.66550909174189],[-122.40014967563958,47.66548840489307],[-122.40006979365731,47.66546426799493],[-122.39998883161086,47.66543796102873],[-122.39990693794805,47.66541440904746],[-122.39982901899626,47.66538806011773],[-122.39973882074872,47.66535832383937],[-122.39965279522116,47.66533234318943],[-122.3995543995879,47.66529997761148],[-122.39945705967602,47.6652689683736],[-122.39936275428833,47.66523761724407],[-122.39927472582346,47.66521252095089],[-122.39919174369241,47.66518649811962],[-122.39913423700173,47.66516398128363],[-122.3991251725032,47.66513257219369],[-122.39908486886729,47.66510844791509],[-122.39902644733073,47.66508924248865],[-122.39895159725391,47.66506366471704],[-122.3988716919867,47.66503871373711],[-122.39877335543534,47.66500827463457],[-122.39871490059078,47.66498795549006],[-122.39865436766326,47.66496603701592],[-122.39859289450301,47.66494657321735],[-122.39851505945795,47.664922964482],[-122.39847373480157,47.66493231530853],[-122.39844925900353,47.66496200008983],[-122.39841514972483,47.66497506517872],[-122.39833177447164,47.66495281774034],[-122.39829093158679,47.6625513839463],[-122.3960427644758,47.66131906518428],[-122.39431793456123,47.66132532221221],[-122.39351026101698,47.66098857675508],[-122.39249071604682,47.6604721232208],[-122.39140131395628,47.659774013135],[-122.3892528004888,47.65808167906454],[-122.38747278518491,47.65666255308563],[-122.38589099976119,47.65540590677171],[-122.3853894472612,47.65498665500743],[-122.38368873469675,47.65276644394719],[-122.38307289141663,47.65196613815065],[-122.38200160789458,47.65055467868301],[-122.3819896986118,47.65015484545113],[-122.38197469129265,47.64845888227456],[-122.38262934139703,47.64845267648816],[-122.38427893098809,47.64845515595942],[-122.38596531943435,47.64844995467347],[-122.38758971351452,47.64849188948327],[-122.38889684990434,47.64849186355601],[-122.38978437938069,47.64850458553551],[-122.3898062553767,47.6485236951251],[-122.38982962774199,47.64854196997828],[-122.38985449701714,47.64855941078866],[-122.38988035463692,47.6485759806344],[-122.3899082125755,47.6485915810947],[-122.38993654776121,47.64860618911571],[-122.38996637420087,47.64861979153731],[-122.39002180629282,47.64864152714371],[-122.39005407748519,47.64865205415935],[-122.3901192428181,47.6486769987074],[-122.39015198744501,47.64868640520599],[-122.39018619176747,47.64869373498288],[-122.39022134854915,47.64869899567388],[-122.39025646761924,47.64870301404198],[-122.3902920790877,47.64870651182892],[-122.39032767465069,47.64870949563341],[-122.39036325225237,47.64871187949299],[-122.39039881499522,47.64871374970681],[-122.39043486780153,47.6487150561996],[-122.39047039668132,47.64871581283682],[-122.39050641614146,47.64871600574565],[-122.39054241892678,47.64871564186243],[-122.39058144444915,47.64871459433265],[-122.39061741388122,47.64871311686446],[-122.39065285861824,47.64871104673219],[-122.390688793421,47.6487084132287],[-122.39072420556079,47.64870527232238],[-122.39075960102936,47.64870157497526],[-122.3907949803343,47.64869732082942],[-122.3908298357016,47.64869251683012],[-122.39086518240056,47.64868719191066],[-122.39090303096415,47.64868071874103],[-122.39093783627241,47.64867424436687],[-122.39097211893161,47.64866726329338],[-122.39100587943912,47.64865977481226],[-122.39104667370232,47.6486500480569],[-122.39171011166007,47.64864923961109],[-122.39333891935875,47.64865187235264],[-122.39422367951154,47.64863974781554],[-122.39511444479785,47.64864180112707],[-122.39536527937594,47.64863360472277],[-122.39542119388324,47.64860378931835],[-122.39544448009421,47.64858534653354],[-122.39546365012713,47.64856498944443],[-122.39547871582988,47.64854306044967],[-122.39548968775209,47.64851994513606],[-122.39549556478539,47.64849608578869],[-122.39549686834361,47.64847194662492],[-122.39549310197874,47.6484478766637],[-122.3954924759637,47.64824133162926],[-122.39548708107434,47.64770721991572],[-122.39551085979599,47.64728311796631],[-122.39553888785554,47.64698359268981],[-122.39557643740665,47.6468321791984],[-122.39645644083623,47.64683158419365],[-122.39799445872539,47.64681924364368],[-122.39990325180476,47.64682371787242],[-122.40093635573899,47.6468204679451],[-122.40114328018159,47.64681980423017],[-122.40272719237912,47.64681555082463],[-122.40361571467757,47.64681148418533],[-122.40361424367161,47.65044100349719],[-122.40360628299418,47.65145387500379],[-122.40364202457674,47.65416514441239]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000261,"geom:area_square_m":2172922.054261,"geom:bbox":"-122.403649182,47.6468114842,-122.381974691,47.6662840059","geom:latitude":47.654719,"geom:longitude":-122.395431,"iso:country":"US","lbl:latitude":47.654938,"lbl:longitude":-122.395429,"lbl:max_zoom":18,"mps:latitude":47.654938,"mps:longitude":-122.395429,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":14,"name:eng_x_variant":["Fort Lawton","Ft Lawton"],"reversegeo:latitude":47.654938,"reversegeo:longitude":-122.395429,"src:geom":"seagv","wof:belongsto":[85688623,102191575,85633793,101730401,102086191,85831927],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d208230a967f5f80d97e0cca215ca277","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537393,"neighbourhood":85831927,"region_id":85688623}],"wof:id":890537393,"wof:lastmodified":1566631081,"wof:name":"Lawton Park","wof:parent_id":85831927,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85830029],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537397.geojson b/fixtures/microhoods/890537397.geojson new file mode 100644 index 0000000..ac6a11f --- /dev/null +++ b/fixtures/microhoods/890537397.geojson @@ -0,0 +1 @@ +{"id":890537397,"type":"Feature","bbox":[-122.43320206746938,47.66073365854481,-122.42233771267907,47.66709957250084],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.42233771267907,47.66679859506512],[-122.42360323092937,47.66541368830065],[-122.42453446133997,47.66443470248437],[-122.42523885357363,47.66374224910213],[-122.4254955388791,47.66347362494524],[-122.4257910254517,47.66320500078832],[-122.42614551204976,47.66294582472555],[-122.42650138711109,47.66269163017735],[-122.42824744413095,47.66156937814407],[-122.42925030765005,47.66096049672175],[-122.42945190682453,47.66085351209923],[-122.42965622859826,47.66076947509906],[-122.42981762148602,47.66074457822598],[-122.42997857758655,47.66073365854481],[-122.43025317116917,47.66073365854481],[-122.43048000934611,47.66075753624764],[-122.43054925468432,47.66079812834246],[-122.43062327556312,47.66082916935615],[-122.43071281694874,47.66083215406901],[-122.43083817488863,47.66081723050473],[-122.43116350858978,47.66076649038621],[-122.43136348435104,47.66080529165332],[-122.43159032252798,47.66088886361324],[-122.43181716070491,47.66098437442459],[-122.43198728933763,47.66107093109736],[-122.43205092341567,47.66113886316192],[-122.43211563199034,47.66121121260152],[-122.4322827759102,47.66127090685861],[-122.43243798097863,47.66129478456145],[-122.43258124719564,47.66128284571003],[-122.43277226881834,47.66128284571003],[-122.43296329044102,47.66129478456145],[-122.43305880125236,47.66134253996712],[-122.4331543120637,47.66140223422421],[-122.43318870886266,47.6614752225537],[-122.43320206746938,47.66155743929264],[-122.43317651680647,47.6616717709048],[-122.43314237321229,47.66176039976675],[-122.43307074010379,47.66193948253802],[-122.43299910699527,47.66210662645787],[-122.43295732101531,47.66216632071496],[-122.43290359618393,47.66221407612063],[-122.4328158946898,47.66225479905217],[-122.43271257456124,47.66228570922914],[-122.43256906833639,47.66228800468871],[-122.43192461036766,47.66235734233764],[-122.43138736205385,47.66244091429757],[-122.43090980799714,47.66248866970324],[-122.43034868198049,47.6625244862575],[-122.43003827184363,47.662596119366],[-122.42970995342962,47.66273938558302],[-122.42897571406742,47.6630617345713],[-122.42846023660032,47.66334177086559],[-122.42766542512432,47.66383775991347],[-122.42719682520615,47.66405265923899],[-122.42688044564358,47.66416010890175],[-122.42671264343255,47.66418852571178],[-122.42652824952674,47.66423174201027],[-122.42625365594414,47.66436306937586],[-122.42585822243366,47.66467169081587],[-122.42581061147914,47.66468527692164],[-122.42575819361028,47.66468541836414],[-122.42548360002768,47.66457796870138],[-122.42514334276225,47.6649241953925],[-122.4247016052598,47.66515103356944],[-122.42453446133995,47.66524057495509],[-122.42267424768218,47.66709957250084],[-122.42233771267907,47.66679859506512]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":123956.126886,"geom:bbox":"-122.433202067,47.6607336585,-122.422337713,47.6670995725","geom:latitude":47.662848,"geom:longitude":-122.428291,"iso:country":"US","lbl:latitude":47.662539,"lbl:longitude":-122.42822,"lbl:max_zoom":18,"mps:latitude":47.662539,"mps:longitude":-122.42822,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.662539,"reversegeo:longitude":-122.42822,"src:geom":"mz","wof:belongsto":[890537395,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"aa994b1038b98539e4f3ecb99323427b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890537397,"neighbourhood_id":890537395,"region_id":85688623}],"wof:id":890537397,"wof:lastmodified":1566631079,"wof:name":"King County West Point Wastewater Treatment Plant","wof:parent_id":890537395,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537399.geojson b/fixtures/microhoods/890537399.geojson new file mode 100644 index 0000000..4b04506 --- /dev/null +++ b/fixtures/microhoods/890537399.geojson @@ -0,0 +1 @@ +{"id":890537399,"type":"Feature","bbox":[-122.36994289118418,47.52102585737955,-122.36452487587938,47.52467306334426],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.36865292615792,47.52466537416767],[-122.36453152750788,47.52467306334426],[-122.36452487587938,47.5210300444339],[-122.36569004466647,47.52102585737955],[-122.36722736597098,47.52103017231777],[-122.36994289118418,47.52104872375661],[-122.36993497728832,47.52284517811835],[-122.3686370983662,47.52286100591008],[-122.36865292615792,47.52466537416767]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":144631.277969,"geom:bbox":"-122.369942891,47.5210258574,-122.364524876,47.5246730633","geom:latitude":47.522728,"geom:longitude":-122.36695,"iso:country":"US","lbl:latitude":47.522849,"lbl:longitude":-122.366806,"lbl:max_zoom":18,"mps:latitude":47.522849,"mps:longitude":-122.366806,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.522849,"reversegeo:longitude":-122.366806,"src:geom":"mz","wof:belongsto":[85869633,102191575,890536773,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6e051af61cf3713e2797ee0fef1f9477","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536773,"microhood_id":890537399,"neighbourhood_id":85869633,"region_id":85688623}],"wof:id":890537399,"wof:lastmodified":1566631078,"wof:name":"Westwood Village","wof:parent_id":85869633,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890537401.geojson b/fixtures/microhoods/890537401.geojson new file mode 100644 index 0000000..5ab09d3 --- /dev/null +++ b/fixtures/microhoods/890537401.geojson @@ -0,0 +1 @@ +{"id":890537401,"type":"Feature","bbox":[-122.3546761288224,47.54484813301514,-122.35013614234153,47.55368750761502],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.35458198163732,47.55182548550995],[-122.3535568233997,47.55184640710664],[-122.35364050978644,47.55368750761502],[-122.35252120436374,47.55367704681667],[-122.35229106680019,47.5534887524465],[-122.35210277243002,47.55326907568129],[-122.35196678205156,47.55305985971444],[-122.35188309566482,47.55286110454592],[-122.35180987007641,47.5526623493774],[-122.3517575660847,47.55244267261219],[-122.35174710528635,47.55228576063705],[-122.35173664448801,47.55210792706522],[-122.35167387969796,47.55194055429173],[-122.35160065410955,47.55175225992155],[-122.35152742852115,47.5515953479464],[-122.35149604612612,47.55154304395469],[-122.35179940927807,47.55155350475303],[-122.3501779855349,47.54944042348774],[-122.35013614234153,47.54931489390763],[-122.35013614234153,47.54910567794077],[-122.35027213272,47.54501158298925],[-122.35027409411968,47.54499785319143],[-122.35027712412027,47.54499102908319],[-122.35028259351833,47.5449847771935],[-122.3502953426163,47.54498085439411],[-122.3507637902421,47.5449108978052],[-122.35131821255429,47.54484813301514],[-122.3546761288224,47.54486905461183],[-122.35461355393974,47.54886529650238],[-122.35458198163732,47.55182548550995]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":265745.030972,"geom:bbox":"-122.354676129,47.544848133,-122.350136142,47.5536875076","geom:latitude":47.548599,"geom:longitude":-122.352554,"iso:country":"US","lbl:latitude":47.548555,"lbl:longitude":-122.35237,"lbl:max_zoom":18,"mps:latitude":47.548555,"mps:longitude":-122.35237,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:urd_x_preferred":["ساوتھ سیئٹل کالج"],"reversegeo:latitude":47.548555,"reversegeo:longitude":-122.35237,"src:geom":"mz","wof:belongsto":[85869629,102191575,890536773,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"deff0817abc89c9a9a0af8a6cbae4180","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536773,"microhood_id":890537401,"neighbourhood_id":85869629,"region_id":85688623}],"wof:id":890537401,"wof:lastmodified":1566631080,"wof:name":"South Seattle College","wof:parent_id":85869629,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890723157.geojson b/fixtures/microhoods/890723157.geojson new file mode 100644 index 0000000..720766b --- /dev/null +++ b/fixtures/microhoods/890723157.geojson @@ -0,0 +1 @@ +{"id":890723157,"type":"Feature","bbox":[-122.38351258744719,47.65402098842528,-122.37621990354106,47.65956972223682],"geometry":{"type":"Polygon","coordinates":[[[-122.37622411775111,47.65595959816768],[-122.37622413103331,47.65588031915235],[-122.37622420318421,47.65544966373568],[-122.37622001770025,47.65469326072137],[-122.37621990354106,47.65402098842528],[-122.38033426263462,47.65402731471778],[-122.38053140828345,47.65404129644773],[-122.38071622266261,47.65407315757549],[-122.38085018342746,47.65411321215872],[-122.38097686435874,47.65415917006391],[-122.38109489703356,47.65422131275696],[-122.38119211356339,47.65428544777006],[-122.38205215442977,47.65491677682117],[-122.38244331286806,47.65520051105835],[-122.38285559634058,47.65545855479139],[-122.38311878319881,47.6555849090751],[-122.3833006811716,47.65565162452998],[-122.3833011846504,47.65763118450451],[-122.38332308945353,47.65893399769302],[-122.38335532796825,47.65915773629492],[-122.38351258744719,47.65936185956175],[-122.38285221407892,47.65956972223682],[-122.38277409938864,47.65954710683945],[-122.38275041411471,47.65952857873812],[-122.3827036115405,47.65950727909945],[-122.38264700037686,47.65949733830462],[-122.38258072214414,47.65948645743305],[-122.38251495079037,47.65947556997971],[-122.3824389136629,47.65946066614761],[-122.38239337049912,47.65944757520253],[-122.38239223598005,47.6594095021449],[-122.38239164091442,47.65935548333943],[-122.38238958463542,47.65925242775448],[-122.38238560369776,47.65918692982742],[-122.38233684519673,47.65918510802855],[-122.38209235956501,47.65918680503249],[-122.38190616138255,47.65918659464523],[-122.38171795088591,47.65918696866932],[-122.38152359780953,47.65918549758986],[-122.38133130502007,47.65918506937088],[-122.38111374580271,47.65918802614755],[-122.38092297583455,47.65918761936416],[-122.38072405047457,47.65918595213089],[-122.38057436542184,47.65918524348269],[-122.38037144702994,47.65918577226775],[-122.38012138350325,47.65918754045497],[-122.37989757594391,47.65918509568741],[-122.37972003182618,47.65918587822647],[-122.37955316047629,47.65918728705185],[-122.37934317655403,47.65918906640876],[-122.37912251783283,47.65919013351517],[-122.37890534358696,47.65918896770114],[-122.37865420799196,47.6591888192766],[-122.37852790832427,47.65918971893063],[-122.37845309953568,47.65918195089106],[-122.37845539236169,47.6591566842577],[-122.37845335916951,47.65905414258088],[-122.37845643946616,47.65895294528314],[-122.37847284072913,47.65887320348424],[-122.37852558173067,47.65887248795553],[-122.37867669700917,47.65887013792569],[-122.37884979944646,47.65887357288629],[-122.3789734296197,47.65888530544863],[-122.37897013758631,47.65892815190296],[-122.37897054822302,47.65899314098593],[-122.37897943338083,47.65903603628207],[-122.37911942632607,47.65903499309425],[-122.37931726299375,47.65903419295364],[-122.37958463437293,47.65903441957379],[-122.37980433608018,47.65903529249654],[-122.3799742074695,47.65903242880502],[-122.38011787138095,47.65903540486634],[-122.38027817266271,47.65903485590088],[-122.3804785955199,47.65903573245703],[-122.38071701139174,47.65903467838044],[-122.38091795639339,47.65903606125698],[-122.38109703045056,47.6590355557902],[-122.38127970238158,47.65903662934415],[-122.38144411833501,47.659037950754],[-122.38162064720979,47.65903717932192],[-122.38175555255856,47.65903564504818],[-122.38189001433645,47.65903625903505],[-122.38200774243941,47.65903714322219],[-122.38210563456212,47.65903636908838],[-122.38225426417311,47.65903571878876],[-122.3823895767998,47.65903083653217],[-122.38239277650374,47.65900200166755],[-122.38239380073954,47.65895126006123],[-122.38239500833267,47.65885557210563],[-122.38239503056174,47.65870308868612],[-122.3823928546892,47.65854493663026],[-122.3823938495446,47.65840807795163],[-122.3823897082337,47.65828611352696],[-122.38238432453177,47.65813948745225],[-122.38238032256679,47.65800518203304],[-122.38237644332416,47.65785797848745],[-122.38237490140916,47.65777218207575],[-122.38237570157753,47.65762877111516],[-122.38237644431784,47.65748343299459],[-122.38237915429353,47.65740413367749],[-122.38238305796625,47.65736487807693],[-122.38238325944508,47.65723544255776],[-122.38238302117466,47.65709123144153],[-122.3823839514718,47.65695218877523],[-122.38238378541958,47.6568104188032],[-122.38238359564507,47.65666783522747],[-122.38238332368707,47.65652251090282],[-122.38238252760097,47.65639364560453],[-122.38238218030801,47.65631387403049],[-122.38238215336015,47.65617677232064],[-122.38238200443509,47.65603555947018],[-122.38238271342529,47.65588910743411],[-122.38218893688843,47.65588955810644],[-122.38198397120598,47.65588904623657],[-122.38177495741857,47.65588888912658],[-122.38177402735731,47.65599391361117],[-122.38177149960063,47.65614750228136],[-122.3817329598327,47.65614802627282],[-122.38161014335485,47.65614639679006],[-122.38160897631779,47.65610721015648],[-122.38160599273094,47.65607516015161],[-122.38160336260474,47.65602091209524],[-122.3816045393284,47.65589009205548],[-122.38147058409305,47.65588917121846],[-122.38126461321947,47.65588897180741],[-122.38105435580134,47.65588111816859],[-122.38085587525548,47.65589396959533],[-122.38081857085508,47.65590188851372],[-122.38078146096588,47.65591636005215],[-122.38073886483186,47.65591693882588],[-122.38071714002224,47.65593698547011],[-122.38052981779575,47.65591566586713],[-122.38048773873106,47.65589952836289],[-122.3804478421632,47.65588854518628],[-122.38040285022588,47.65587681728802],[-122.38028717465511,47.65587646066652],[-122.38007814435815,47.65587574366081],[-122.3798731711113,47.65587497117816],[-122.37967025034328,47.65587498473445],[-122.37966820823092,47.65601100042873],[-122.37966822802244,47.65614810213992],[-122.37950489322404,47.65614869155201],[-122.37950601027683,47.65601568755937],[-122.37948552765324,47.65587282257847],[-122.37939721151535,47.65587127933453],[-122.37934755620739,47.65587332470285],[-122.37914258298095,47.65587255090544],[-122.37908189445088,47.65587885870976],[-122.37895001540988,47.6558795345796],[-122.37886075847986,47.65588048898424],[-122.37865577631604,47.65587941434308],[-122.37857869763334,47.65588046019744],[-122.37840826423206,47.6558811447151],[-122.37831088480111,47.65588190879618],[-122.37812013409693,47.6558817541402],[-122.37811903768778,47.65601557206759],[-122.37811807182683,47.65615380110663],[-122.37811732483341,47.65629939602066],[-122.37811646510814,47.65644117975724],[-122.37811447617358,47.65657912258233],[-122.37811282956608,47.6567285862746],[-122.37811061281286,47.65685886290404],[-122.37804975249037,47.65685943147632],[-122.37779200282608,47.65685825699938],[-122.37779197886793,47.65678914953853],[-122.37779191619116,47.65665042027849],[-122.37779087066168,47.65651277554017],[-122.37779182976968,47.65637428969113],[-122.37779268326888,47.65623224913507],[-122.37779339755885,47.6560855403143],[-122.37779520793003,47.65594155884204],[-122.37770997432506,47.6559413437677],[-122.37750702021147,47.6559402395545],[-122.37730206329474,47.65594001957826],[-122.37730057090525,47.65602641374173],[-122.37730066534164,47.65616625656999],[-122.37730175789201,47.65630552850853],[-122.3773009030505,47.65644756906053],[-122.37729898573264,47.65658799616646],[-122.37729906413881,47.65672728185161],[-122.37729717096865,47.65686852255312],[-122.37713381735664,47.65686855213352],[-122.37713317945204,47.65681290575084],[-122.37713298754218,47.65666976538424],[-122.37713174027517,47.65652526839165],[-122.3771306481756,47.65638599645257],[-122.37713035071584,47.65623930137688],[-122.37713110808787,47.65609396293277],[-122.37713182425306,47.65594725446628],[-122.37713009084226,47.65588888106985],[-122.37701441526718,47.6558885211246],[-122.37680577530888,47.65590094582841],[-122.37677455072505,47.65604532623688],[-122.37673102115266,47.6560486580221],[-122.3767300672488,47.65608487461893],[-122.37672812335,47.65612191820562],[-122.37672585345291,47.65614799841112],[-122.3765328540931,47.65614045954533],[-122.37653145442717,47.65609330704523],[-122.3765304723278,47.65599186479525],[-122.37637418025633,47.65599042670647],[-122.37636748201447,47.65593567671528],[-122.37628642749236,47.65593951674648],[-122.37622411775111,47.65595959816768]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":130851.131982,"geom:bbox":"-122.383512587,47.6540209884,-122.376219904,47.6595697222","geom:latitude":47.655832,"geom:longitude":-122.379989,"iso:country":"US","lbl:latitude":47.654951,"lbl:longitude":-122.379992,"lbl:max_zoom":18,"mps:latitude":47.654951,"mps:longitude":-122.379992,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.654951,"reversegeo:longitude":-122.379992,"src:geom":"mz","wof:belongsto":[85826973,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d4275853b744c81ed959ae48637f3c40","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890723157,"neighbourhood_id":85826973,"region_id":85688623}],"wof:id":890723157,"wof:lastmodified":1566631078,"wof:name":"Fisherman's Terminal","wof:parent_id":85826973,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890730623.geojson b/fixtures/microhoods/890730623.geojson new file mode 100644 index 0000000..87d03e9 --- /dev/null +++ b/fixtures/microhoods/890730623.geojson @@ -0,0 +1 @@ +{"id":890730623,"type":"Feature","bbox":[-122.38518299413704,47.65936185956175,-122.38277409938864,47.66097166187225],"geometry":{"type":"Polygon","coordinates":[[[-122.38518299413704,47.66006892442929],[-122.38434352453118,47.66097166187225],[-122.38429251347716,47.66093289465945],[-122.38431100796916,47.66090659367516],[-122.384255827228,47.66087662542762],[-122.38413650183037,47.66080532890037],[-122.38401507422358,47.66073157627613],[-122.38390405030245,47.66066642168114],[-122.3838586295872,47.66062346743703],[-122.38390163847778,47.66058556453417],[-122.38396155667259,47.66053624878725],[-122.38401234497643,47.66048701448978],[-122.38398912225762,47.66045686828244],[-122.38391208775722,47.66035757568196],[-122.38382885276586,47.6602545112096],[-122.38373715312925,47.66013977946063],[-122.38363715015505,47.66001882018669],[-122.38357417738946,47.6599316747196],[-122.3835102148993,47.65984535696782],[-122.38347307121911,47.65982474009947],[-122.38331921402214,47.65976925133065],[-122.38316117008813,47.65970944891009],[-122.38296467407143,47.65963615968435],[-122.38289535301575,47.65960831113605],[-122.38284227507988,47.65959776535846],[-122.38280353803533,47.65957472782702],[-122.38278002276208,47.6595517404723],[-122.38277409938864,47.65954710683945],[-122.38285221407892,47.65956972223682],[-122.38351258744719,47.65936185956175],[-122.38371143578834,47.65949371459772],[-122.38518299413704,47.66006892442929]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":11837.939456,"geom:bbox":"-122.385182994,47.6593618596,-122.382774099,47.6609716619","geom:latitude":47.660091,"geom:longitude":-122.384139,"iso:country":"US","lbl:latitude":47.660238,"lbl:longitude":-122.38437,"lbl:max_zoom":18,"mps:latitude":47.660238,"mps:longitude":-122.38437,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.660238,"reversegeo:longitude":-122.38437,"src:geom":"mz","wof:belongsto":[85826973,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"977de6b81df5ceb9c5400ab34fa1d3fa","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890730623,"neighbourhood_id":85826973,"region_id":85688623}],"wof:id":890730623,"wof:lastmodified":1566631078,"wof:name":"Salmon Bay Marina","wof:parent_id":85826973,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890743867.geojson b/fixtures/microhoods/890743867.geojson new file mode 100644 index 0000000..ffc0437 --- /dev/null +++ b/fixtures/microhoods/890743867.geojson @@ -0,0 +1 @@ +{"id":890743867,"type":"Feature","bbox":[-122.38797706977685,47.66458076273375,-122.38377806577535,47.66767642198941],"geometry":{"type":"Polygon","coordinates":[[[-122.38795639519209,47.66656442144621],[-122.38793761312354,47.66658466956061],[-122.38787979256144,47.66664309769671],[-122.38780192544397,47.66672012330131],[-122.38775709825171,47.66676516474279],[-122.38775691519933,47.66677947197187],[-122.38749180272747,47.66706527795996],[-122.38750493948538,47.66767642198941],[-122.38639121726374,47.6673633230826],[-122.38612700857722,47.66719762720947],[-122.38579274519975,47.66697032017094],[-122.38528763472694,47.66660653764897],[-122.38468233436261,47.66615884990043],[-122.38377806577535,47.66544963842072],[-122.38405660665556,47.66519388198586],[-122.38395298197972,47.66510547939225],[-122.38488642208996,47.66458076273375],[-122.3849223100847,47.66461017925576],[-122.38501220417923,47.66468106208956],[-122.38509101412258,47.66473757119204],[-122.38515958275144,47.66479092089338],[-122.38520190829746,47.66481502281122],[-122.3852446833316,47.66478620532568],[-122.38530349181357,47.66475057161819],[-122.38533594288765,47.66476683899204],[-122.38536499966249,47.66478837942246],[-122.38542065247216,47.66483397874114],[-122.38545123103681,47.6648554984145],[-122.3854947923083,47.66488699506374],[-122.38553365710246,47.66486315818119],[-122.38558191297221,47.66483096700422],[-122.3856536289236,47.66478581724761],[-122.38570142782132,47.66482329716163],[-122.3857771715244,47.6648790340154],[-122.3858939325036,47.66496600190663],[-122.38599465992485,47.6650427770733],[-122.38610764228741,47.66512212731455],[-122.38618564449831,47.66518550206683],[-122.38627194232086,47.66525480441435],[-122.38638390230126,47.66533386859335],[-122.3864996671191,47.66542140647978],[-122.38660555928864,47.66550115266323],[-122.38673576313934,47.66559641964125],[-122.38682513018472,47.66566649400902],[-122.38694906202805,47.66575559109793],[-122.38706018209334,47.66584044992142],[-122.38716663153303,47.66592181620795],[-122.3873066715345,47.66602354648803],[-122.38740161019267,47.6660932446749],[-122.38747517906874,47.66614399669653],[-122.38751663460492,47.66617286545446],[-122.38766178092773,47.66627563966019],[-122.38775734321466,47.66634918493779],[-122.38791621075866,47.66646959479042],[-122.38797706977685,47.66653645838863],[-122.38795639519209,47.66656442144621]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":51169.3334,"geom:bbox":"-122.38797707,47.6645807627,-122.383778066,47.667676422","geom:latitude":47.666069,"geom:longitude":-122.385936,"iso:country":"US","lbl:latitude":47.666041,"lbl:longitude":-122.385947,"lbl:max_zoom":18,"mps:latitude":47.666041,"mps:longitude":-122.385947,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.666041,"reversegeo:longitude":-122.385947,"src:geom":"mz","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7cf67cfd1f050fa695e731b07af722b4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890743867,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":890743867,"wof:lastmodified":1566631092,"wof:name":"Stimson Marina","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/890761159.geojson b/fixtures/microhoods/890761159.geojson new file mode 100644 index 0000000..5687ee9 --- /dev/null +++ b/fixtures/microhoods/890761159.geojson @@ -0,0 +1 @@ +{"id":890761159,"type":"Feature","bbox":[-122.35136910391984,47.56923677592036,-122.34613476227807,47.57076789634328],"geometry":{"type":"Polygon","coordinates":[[[-122.34633512249431,47.57067287382951],[-122.34625406130512,47.57067219998621],[-122.34623574897574,47.57065321449325],[-122.34616160492357,47.57057661052104],[-122.34613476227807,47.57052431208973],[-122.34616036601412,47.57042937178096],[-122.34622110082701,47.57025363130539],[-122.34630294021464,47.57003729373509],[-122.34636022898353,47.56988242119218],[-122.34642442172542,47.56972115877569],[-122.34647299534832,47.56958011207846],[-122.34654435405263,47.56945632859703],[-122.34657287492529,47.569357236233],[-122.3466128586255,47.56930404848103],[-122.34670308534537,47.56927187122039],[-122.34681946927381,47.56926839410404],[-122.34696630054437,47.56926699646179],[-122.34711005409235,47.56926426868382],[-122.34733267261234,47.5692566343763],[-122.3474579057942,47.56924399860616],[-122.34761982891814,47.569239100287],[-122.34773320720952,47.56923677592036],[-122.34786896439816,47.56923770980716],[-122.34800311896726,47.5692531887391],[-122.34816583939684,47.56927569924665],[-122.34834152302064,47.56929118147031],[-122.34851508641307,47.56930339282816],[-122.34868153798682,47.56931488443694],[-122.34886698938374,47.56935272885662],[-122.34898063931112,47.56939452926664],[-122.34911984277579,47.56947904734762],[-122.34926162266525,47.5695824679844],[-122.34939709592052,47.56967800356707],[-122.34956178236153,47.56980275450533],[-122.34972717900641,47.5699170846524],[-122.34987840080495,47.57003160398811],[-122.35000569676863,47.5701245057469],[-122.35008640671926,47.57018293970599],[-122.35018553375579,47.57024768279624],[-122.35028089934815,47.57032237324666],[-122.35034515403484,47.57037224331871],[-122.35037079620216,47.57041795842199],[-122.35038644863016,47.57046847728854],[-122.3504057290515,47.57050442317808],[-122.35046176201998,47.57051545754624],[-122.35059730822276,47.57054381127907],[-122.35071271629135,47.57057628946335],[-122.35079348973768,47.57060207471642],[-122.35085482543934,47.57062126437106],[-122.35097177721435,47.57060243697202],[-122.35107100448798,47.57056628024576],[-122.35118038885152,47.57053110184646],[-122.3512466010163,47.57050909564499],[-122.35134753579385,47.57049678000418],[-122.35136910391984,47.57050848926504],[-122.35122338351937,47.57058250923545],[-122.35100304317332,47.57066844746992],[-122.35076971183149,47.57073000987283],[-122.35055153940003,47.57075312393931],[-122.3502960994096,47.57076395082829],[-122.34642688169752,47.57076789634328],[-122.34633512249431,47.57067287382951]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":44044.265105,"geom:bbox":"-122.351369104,47.5692367759,-122.346134762,47.5707678963","geom:latitude":47.57011,"geom:longitude":-122.348162,"iso:country":"US","lbl:latitude":47.570021,"lbl:longitude":-122.348175,"lbl:max_zoom":18,"mps:latitude":47.570021,"mps:longitude":-122.348175,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.570021,"reversegeo:longitude":-122.348175,"src:geom":"mz","wof:belongsto":[85869321,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6543274887719bae2384a19235c34543","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":890761159,"neighbourhood_id":85869321,"region_id":85688623}],"wof:id":890761159,"wof:lastmodified":1566631092,"wof:name":"Harbor Island Marina","wof:parent_id":85869321,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128265.geojson b/fixtures/microhoods/907128265.geojson new file mode 100644 index 0000000..8d3d1f6 --- /dev/null +++ b/fixtures/microhoods/907128265.geojson @@ -0,0 +1 @@ +{"id":907128265,"type":"Feature","bbox":[-122.34701944121849,47.66947036112583,-122.32577669021191,47.68563292679674],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.34451418236581,47.68129510488929],[-122.34362509455195,47.68173964879622],[-122.34294250685058,47.68194189700404],[-122.3420071088894,47.68209358315991],[-122.34137508323997,47.68227055034175],[-122.34074305759053,47.68257392265348],[-122.34031328014892,47.68310482419901],[-122.34000990783719,47.68361044471855],[-122.33965597347351,47.68431831344592],[-122.33937788218776,47.68484921499144],[-122.3391471928257,47.6851209860207],[-122.33868265397336,47.68538643679346],[-122.3380885498629,47.68558236474479],[-122.33750708626543,47.68563292679674],[-122.33700146574589,47.68560764577077],[-122.33649584522634,47.68550652166686],[-122.33604078675874,47.68520314935513],[-122.33535819905735,47.68452056165374],[-122.33480201648584,47.68398966010822],[-122.33419527186238,47.68340819651073],[-122.33363908929088,47.68292785701716],[-122.33290593953754,47.68262448470544],[-122.33209694670626,47.68247279854957],[-122.33143964003085,47.68247279854957],[-122.3306053661736,47.68254864162751],[-122.32979637334232,47.68254864162751],[-122.32916434769288,47.68244751752359],[-122.32865872717333,47.68219470726382],[-122.32795085844597,47.68184077290014],[-122.32716714664066,47.68136043340657],[-122.32661096406916,47.68093065596495],[-122.32618118662755,47.68057672160126],[-122.32587781431582,47.68027334928954],[-122.32577669021191,47.67996997697781],[-122.3258019712379,47.67966660466607],[-122.32592837636777,47.67938851338032],[-122.32620646765352,47.67903457901664],[-122.32648455893928,47.67878176875687],[-122.32693961740686,47.67855423952307],[-122.32741995690044,47.67845311541916],[-122.32792557741999,47.67835199131525],[-122.32893681845908,47.67837727234123],[-122.33004918360209,47.67840255336721],[-122.3309340195113,47.67837727234123],[-122.33156604516074,47.67825086721135],[-122.33179357439454,47.67809918105548],[-122.33202110362834,47.67779580874375],[-122.33232447594006,47.67741659335409],[-122.33247616209593,47.67680984873063],[-122.3326025672258,47.67632950923706],[-122.33288065851156,47.67597557487338],[-122.33320931184927,47.67564692153567],[-122.33371493236882,47.67524242512003],[-122.33427111494032,47.67498961486026],[-122.33472617340792,47.67466096152255],[-122.33533291803137,47.674155341003],[-122.33573741444701,47.67375084458736],[-122.3364200021484,47.67324522406781],[-122.3372037139537,47.67261319841838],[-122.33801270678498,47.6721328589248],[-122.33864473243442,47.67198117276894],[-122.33917563397995,47.67182948661308],[-122.3395548493696,47.67172836250917],[-122.33980765962937,47.6715766763533],[-122.33993406475926,47.67132386609353],[-122.3400099078372,47.6710204937818],[-122.34000929040607,47.67020352854389],[-122.34001053143642,47.66989623571921],[-122.34001331308818,47.66974714483661],[-122.3400174680942,47.66947036112583],[-122.34005874720481,47.66949397923938],[-122.34007616483598,47.66951718432012],[-122.34009408302076,47.66954012586227],[-122.34011300642453,47.66956275437114],[-122.34013242861258,47.66958507619396],[-122.34015285777123,47.66960712742779],[-122.34017378521617,47.66962887268342],[-122.34019521019559,47.66965026809837],[-122.34021763967569,47.66967130766822],[-122.34024107541768,47.66969203418836],[-122.34026450072068,47.66971241793715],[-122.3402889292746,47.66973240268579],[-122.34031591949874,47.66975321062843],[-122.34034029097177,47.66977122538393],[-122.34036617067879,47.66978874881922],[-122.3403905402231,47.66980667795144],[-122.34041540679212,47.66982425759838],[-122.3404407691549,47.66984144530774],[-122.34046713280509,47.66985814840204],[-122.34049398975652,47.66987437360137],[-122.34052134177965,47.66989016405221],[-122.34054918710346,47.66990547660735],[-122.34057803371454,47.66992030454534],[-122.34060686491688,47.66993461849827],[-122.340636697406,47.66994844783302],[-122.34066651377346,47.66996172072341],[-122.34069732913655,47.66997446585464],[-122.34072863760552,47.66998669062196],[-122.34075993066256,47.66999840140298],[-122.34079222200192,47.67000954196437],[-122.34082449772518,47.67002012572237],[-122.34085726301949,47.67003010317239],[-122.340890520367,47.67003955991961],[-122.34092426832272,47.67004841034423],[-122.34153613223717,47.67023717910374],[-122.34251048881812,47.67053686447174],[-122.34254287093682,47.67055108843584],[-122.3425742455736,47.67056558230303],[-122.34260613641241,47.67058036940861],[-122.34263752725347,47.67059542004547],[-122.3426684186264,47.67061073455798],[-122.34269881124467,47.67062635540535],[-122.34272921010668,47.67064219060939],[-122.34275961768883,47.67065832542483],[-122.34278901708586,47.67067468803833],[-122.34281893267811,47.6706913435395],[-122.34284784007495,47.67070822648864],[-122.34287675444044,47.67072536660487],[-122.34290516932843,47.67074277024827],[-122.3429335904618,47.67076038824933],[-122.34296100463209,47.67077827615208],[-122.34298842505801,47.67079637876386],[-122.3430158524434,47.67081473819262],[-122.34304277962752,47.67083331834018],[-122.34306920505196,47.67085211922756],[-122.34309513100888,47.67087118399498],[-122.34312106247776,47.67089041996071],[-122.3431459864829,47.67090992653955],[-122.34317142367128,47.67092964005705],[-122.34319585195756,47.67094953891981],[-122.34321977847293,47.67096965817329],[-122.34324371299735,47.67099003458244],[-122.34326714431275,47.67101054611425],[-122.34329058259857,47.67103131481565],[-122.34331301019682,47.67105222536662],[-122.34333544527455,47.67107339272982],[-122.34335737714214,47.67109469521676],[-122.34337880777711,47.67111621879097],[-122.34339973644477,47.67113792029219],[-122.34342016211599,47.67115980008538],[-122.34344059328829,47.67118185072827],[-122.34346052250258,47.67120407964969],[-122.34347944174895,47.67122649323316],[-122.34349836475295,47.67124903557264],[-122.34351729450123,47.67127179156511],[-122.3435352118027,47.67129464696577],[-122.34355262786814,47.67131772345586],[-122.34357004694581,47.67134088519112],[-122.34358696354315,47.67136422521328],[-122.34360337640564,47.67138770036906],[-122.34361877908995,47.67141131737269],[-122.34363469320657,47.67143509887119],[-122.34364959591025,47.671458979766],[-122.34366349288929,47.67148317372749],[-122.34367638113541,47.67150759515732],[-122.3436882616964,47.67153224439292],[-122.34369913352194,47.67155712109751],[-122.34370899464234,47.67158213965899],[-122.34371784755425,47.67160738603398],[-122.34372568974811,47.67163277391548],[-122.3437330282075,47.67165829728395],[-122.34373884775809,47.67168392677964],[-122.34374314785784,47.67170966170802],[-122.3437469429649,47.67173548897016],[-122.34374972487916,47.67176137283573],[-122.34375149286447,47.67178727014429],[-122.34375173962857,47.67181323009002],[-122.34375297274391,47.67183819176419],[-122.3437557546667,47.6718640756295],[-122.34375853658204,47.67188995914387],[-122.34376182475297,47.67191579347775],[-122.34376561988435,47.67194162073907],[-122.3437694143052,47.67196740554139],[-122.3437737156875,47.67199318327111],[-122.34377852404218,47.67201895427897],[-122.34378383741172,47.67204463330332],[-122.3437891520203,47.67207035477931],[-122.34379446414619,47.67209599064949],[-122.34380079073502,47.67212161306901],[-122.3438071166055,47.67214719267847],[-122.34381394768843,47.67217272276987],[-122.34382077930773,47.67219825320478],[-122.34382811539545,47.67222369061013],[-122.34383595899035,47.67224912163702],[-122.34384380010489,47.6722744670578],[-122.34385265568825,47.67229979902717],[-122.34386100182105,47.67232505211228],[-122.34387036065046,47.67235024859902],[-122.34387971877449,47.67237540262613],[-122.34388907513392,47.67240051350574],[-122.34389944399726,47.67242552532086],[-122.34390981288081,47.67245053748582],[-122.34392017751243,47.67247542089755],[-122.34393155713849,47.67250029084985],[-122.34394293428721,47.67252507519545],[-122.34395430894835,47.6725497735835],[-122.34396669685289,47.6725744160666],[-122.34397908228088,47.67259897294275],[-122.3439914652221,47.67262344386117],[-122.34400435390504,47.67264786525279],[-122.34401774761587,47.6726721946586],[-122.344031647579,47.67269647417953],[-122.34404554330312,47.67272062529734],[-122.34405943831538,47.67274473360374],[-122.34407434406792,47.67276869969643],[-122.34408924860017,47.67279262333525],[-122.34410414888379,47.67281641821979],[-122.34412006293806,47.67284015719035],[-122.34413597450812,47.67286381020224],[-122.34415188235984,47.67288733480359],[-122.3441682947039,47.67291076672292],[-122.34418521208079,47.67293410665484],[-122.3442021257399,47.67295731817591],[-122.34421954565646,47.6729804798103],[-122.34423746883316,47.67300350631],[-122.3442553882926,47.67302640439858],[-122.34427381277662,47.67304921014802],[-122.34429223478801,47.67307193028892],[-122.3443111600506,47.67309451494367],[-122.34433008159631,47.67311697118694],[-122.34435001514687,47.67313932836622],[-122.34436943800196,47.67316156385798],[-122.34439354458372,47.67318780751118],[-122.34489790585654,47.67369168817437],[-122.3456401505768,47.6741735578627],[-122.34566607664232,47.674192536437],[-122.34569200646351,47.67421164341366],[-122.3457179400406,47.67423087879264],[-122.34574337162974,47.6742502921071],[-122.34576880698505,47.67426983417496],[-122.34579373733115,47.6742894682293],[-122.34581867268905,47.67430927384004],[-122.34584310430344,47.67432921494211],[-122.34586753966359,47.67434928409634],[-122.34589147179926,47.67436948873545],[-122.34591540769091,47.67438982177777],[-122.34593934609282,47.67441024042053],[-122.3459622749946,47.67443084373888],[-122.34598571340803,47.67445152627745],[-122.34600864982153,47.67447238640293],[-122.34603108124394,47.67449333921867],[-122.34605351642212,47.6745144204382],[-122.34607595412052,47.67453558760965],[-122.34609738157963,47.67455689629802],[-122.34611931927766,47.67457832701623],[-122.34614075372846,47.67459989251978],[-122.34616168370603,47.67462155070787],[-122.34618261692978,47.67464333765803],[-122.34620304565928,47.67466521659145],[-122.34622347815429,47.67468722428024],[-122.3462439131485,47.67470931722001],[-122.34626333615441,47.67473150958477],[-122.34628326990966,47.6747538236216],[-122.34630270042565,47.67477627279604],[-122.34632162470035,47.67479877186062],[-122.34634004697064,47.67482144851522],[-122.3463589775087,47.67484416158725],[-122.34637689604504,47.67486697373494],[-122.34639481833564,47.67488991428804],[-122.34641274365391,47.67491294043686],[-122.34643016344535,47.67493605893561],[-122.34644707875846,47.67495927012148],[-122.34646399657916,47.67498256691032],[-122.34648091689732,47.67500594895128],[-122.3464968252197,47.67502943042042],[-122.34651324304639,47.67505299075898],[-122.34652864938533,47.67507665016842],[-122.34654456523899,47.67510038879812],[-122.34655946855456,47.67512422616207],[-122.34657437365982,47.67514810667075],[-122.34658928250757,47.67517211523479],[-122.34660368510748,47.6751961736916],[-122.34661758321447,47.67522032448633],[-122.34663148206128,47.67524451808897],[-122.34664487641437,47.67526880402978],[-122.34665827328301,47.67529317592531],[-122.34667116440049,47.67531759700569],[-122.34668354925687,47.67534206762877],[-122.34669593787444,47.67536666700956],[-122.34670781898362,47.67539127313056],[-122.34671970310622,47.67541596449804],[-122.3467310817032,47.67544074856916],[-122.34674139517202,47.67546379014411],[-122.34675479088969,47.67548811922534],[-122.34676768459384,47.67551262590005],[-122.34677906074185,47.67553732436083],[-122.34678993540395,47.67556220075954],[-122.34680030702107,47.67558725511702],[-122.3468091608702,47.67561245844494],[-122.34681751020774,47.67563775376193],[-122.34682484950433,47.67566323412431],[-122.34701944121849,47.67420547450223],[-122.34683750458099,47.6757143933574],[-122.34684231355249,47.67574012142928],[-122.34684661801762,47.6757659418417],[-122.34684940044468,47.67579178282458],[-122.34685167710612,47.67581767299458],[-122.34685344750208,47.67584361306032],[-122.34685325132949,47.67588915890003],[-122.34685298642366,47.67591491155635],[-122.3468506974512,47.67594086272953],[-122.34684840545363,47.67596672795324],[-122.34684458942162,47.67599252778424],[-122.34684026513253,47.67601829154764],[-122.34683492330329,47.67604398354052],[-122.34682856442123,47.67606960270335],[-122.34682169479593,47.67609510054364],[-122.34681380636978,47.67612048345942],[-122.3468048996506,47.67614575109273],[-122.34679548217491,47.67617089705221],[-122.34678504392097,47.67619584247417],[-122.34677409437903,47.67622066587801],[-122.34676161652817,47.67624529548572],[-122.34674913295244,47.67626971107146],[-122.34673512054576,47.67629393286728],[-122.34672059487367,47.67631794703157],[-122.34670555593566,47.67634175356418],[-122.34668898619948,47.67636528104411],[-122.3466724089492,47.67638855100349],[-122.34665480967502,47.6764115779707],[-122.3466361878359,47.67643436125046],[-122.34661704898798,47.67645680848872],[-122.3465968868568,47.6764789695799],[-122.34590637353985,47.67735744307429],[-122.34577962930618,47.67751893351403],[-122.34576919226592,47.6775439644539],[-122.34575926203085,47.67756894584582],[-122.34574882621645,47.67759401958655],[-122.34573889793396,47.67761908658899],[-122.34572947718414,47.67764414685334],[-122.34571955011822,47.67766925630597],[-122.34571013059566,47.67769435937139],[-122.3457007123199,47.67771950558959],[-122.34569129402477,47.67774465145614],[-122.34568187644675,47.67776984013152],[-122.34567296692278,47.67779502206226],[-122.34566355057238,47.67782025353883],[-122.34565464227654,47.67784547827079],[-122.34564624225288,47.67787073942564],[-122.34563733466612,47.67789600696586],[-122.34562893586128,47.67792131057129],[-122.3456205370585,47.6779466145269],[-122.34561213823729,47.67797191813106],[-122.34560374013404,47.6779972645442],[-122.34559585009825,47.67802260456398],[-122.34558796077064,47.678047987042],[-122.34558007196503,47.67807336986341],[-122.3455721838676,47.67809879514301],[-122.34556429629217,47.67812422076602],[-122.3455569157265,47.67814963930805],[-122.34554953640938,47.67817510100313],[-122.34554215708505,47.67820056269771],[-122.3455347789888,47.67822606684369],[-122.34552790792424,47.67825156461056],[-122.34552103737242,47.67827706237011],[-122.34551061624731,47.67830264972119],[-122.34550729820997,47.6783281431494],[-122.34548957410233,47.67859109745098],[-122.3453887669469,47.67943483325644],[-122.34535024989415,47.6798030310293],[-122.34534643658328,47.67982895956504],[-122.34534211621401,47.67985489447837],[-122.34533728652157,47.67988079368202],[-122.34533194904333,47.67990665645349],[-122.34532660979484,47.67993247642886],[-122.34532076225025,47.67995826032973],[-122.34531440464387,47.67998396536014],[-122.34530753946582,47.68000967712556],[-122.34530016474402,47.68003531001347],[-122.34529278876958,47.68006090009813],[-122.34528490449581,47.68008645410789],[-122.34527651015715,47.68011192924681],[-122.34526760574265,47.68013732516394],[-122.34525870007406,47.6801626782776],[-122.34524928611398,47.68018799566684],[-122.34523936083107,47.68021319103129],[-122.34522892724507,47.68023835032015],[-122.34521798359042,47.68026343073753],[-122.34520703743452,47.68028842554832],[-122.34519558119887,47.68031334113659],[-122.34518361542271,47.68033817819695],[-122.345171645889,47.68036288649692],[-122.345159168049,47.68038755872068],[-122.34514567132264,47.68041211600409],[-122.34513267966254,47.68043658094579],[-122.34511962642216,47.68045894750588],[-122.34510510309475,47.68048308986134],[-122.3450900666831,47.68050706774525],[-122.34507400868422,47.68053080226552],[-122.34505743509888,47.68055428635734],[-122.34503984116967,47.68057756988752],[-122.34502122387525,47.68060056690619],[-122.34500259857383,47.68062330711219],[-122.34498295042556,47.68064576079912],[-122.34470204926049,47.6809693600197],[-122.34468291165201,47.68099193568787],[-122.34466429031654,47.68101480423955],[-122.34464669232062,47.68103795930033],[-122.34462961132422,47.68106145005491],[-122.34461355241402,47.68108518416579],[-122.34458788026816,47.68112738330186],[-122.3445743793452,47.68115181210858],[-122.34456139221055,47.68117644819537],[-122.34454993299019,47.68120127846311],[-122.34453898879487,47.68122635846341],[-122.3445290629795,47.68125155411568],[-122.34452015727919,47.68127690716351],[-122.34451418236581,47.68129510488929]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000167,"geom:area_square_m":1390869.709509,"geom:bbox":"-122.347019441,47.6694703611,-122.32577669,47.6856329268","geom:latitude":47.678245,"geom:longitude":-122.337837,"iso:country":"US","lbl:latitude":47.678231,"lbl:longitude":-122.338562,"lbl:max_zoom":18,"mps:latitude":47.678231,"mps:longitude":-122.338562,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Green Lake Park"],"name:swe_x_preferred":["Green Lake Park"],"reversegeo:latitude":47.678231,"reversegeo:longitude":-122.338562,"src:geom":"mz","wof:belongsto":[85822837,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c3e0e0dd4d61b9f4c79686bf7a2a5d5a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128265,"neighbourhood_id":85822837,"region_id":85688623}],"wof:id":907128265,"wof:lastmodified":1566608549,"wof:name":"Green Lake Park","wof:parent_id":85822837,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128267.geojson b/fixtures/microhoods/907128267.geojson new file mode 100644 index 0000000..84456c9 --- /dev/null +++ b/fixtures/microhoods/907128267.geojson @@ -0,0 +1 @@ +{"id":907128267,"type":"Feature","bbox":[-122.35430352243607,47.66499189650538,-122.34709887726677,47.67172413144029],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.35427097272704,47.67172413144029],[-122.34709887726677,47.67166898835517],[-122.34730756666228,47.66500529130312],[-122.34886789532122,47.66500909128589],[-122.34979286951295,47.66499189650538],[-122.34998942036374,47.66503323754446],[-122.35030416355565,47.66503881477163],[-122.35142122103778,47.66501416429674],[-122.35249551437819,47.66501937850268],[-122.35345040579939,47.6650188929375],[-122.35430352243607,47.66501889137943],[-122.35427097272704,47.67172413144029]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000047,"geom:area_square_m":394151.015648,"geom:bbox":"-122.354303522,47.6649918965,-122.347098877,47.6717241314","geom:latitude":47.66837,"geom:longitude":-122.350748,"iso:country":"US","lbl:latitude":47.668363,"lbl:longitude":-122.350749,"lbl:max_zoom":18,"mps:latitude":47.668363,"mps:longitude":-122.350749,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.668363,"reversegeo:longitude":-122.350749,"src:geom":"mz","wof:belongsto":[85841499,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6df6e52b08bdad4d3ac9d167ecf0c77e","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128267,"neighbourhood_id":85841499,"region_id":85688623}],"wof:id":907128267,"wof:lastmodified":1566608547,"wof:name":"Woodland Park Zoo","wof:parent_id":85841499,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128269.geojson b/fixtures/microhoods/907128269.geojson new file mode 100644 index 0000000..1bc2a98 --- /dev/null +++ b/fixtures/microhoods/907128269.geojson @@ -0,0 +1 @@ +{"id":907128269,"type":"Feature","bbox":[-122.3248935646261,47.72488513881687,-122.31264677647401,47.7340632266685],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.31264818586422,47.72668446799259],[-122.31749600991152,47.72672238631731],[-122.31769860175365,47.72672238631731],[-122.31785617318641,47.72670724443243],[-122.31796122080826,47.72666686605123],[-122.31800624121765,47.72655077803088],[-122.31811128883949,47.72532426705238],[-122.31812629564257,47.72488513881687],[-122.32432120529387,47.72495293588062],[-122.32430587753134,47.7261080822948],[-122.32429421481088,47.72738240401561],[-122.32429229369582,47.72857142544771],[-122.32427892612179,47.72976873624437],[-122.32427137776557,47.73097411138853],[-122.32427165495838,47.73100144203746],[-122.32427243969838,47.73102876605149],[-122.32427271637202,47.73105609670712],[-122.32427350111338,47.73108342072103],[-122.32427428831416,47.73111083034065],[-122.32427507305717,47.73113815435448],[-122.32427585779092,47.73116547801742],[-122.32427715060406,47.73119279538951],[-122.32427793534983,47.73122011940319],[-122.32427922764538,47.73124743678196],[-122.32428052046232,47.73127475415387],[-122.3242818127606,47.7313020715325],[-122.32428361558866,47.73132946787511],[-122.32428490840996,47.73135678524683],[-122.32428670877285,47.73138409563277],[-122.3242885091477,47.73141140636943],[-122.32429030952447,47.73143871710606],[-122.32429211042316,47.73146602783581],[-122.32429473078356,47.73150421017915],[-122.3242970392386,47.73153151427375],[-122.32429883961392,47.7315588246592],[-122.32430114807356,47.73158612875364],[-122.32430345601556,47.73161343285479],[-122.32430627255287,47.73164073030726],[-122.32430858050002,47.73166803440822],[-122.32431139704302,47.73169533186048],[-122.32431370252652,47.73172255000468],[-122.32431651907514,47.73174984745673],[-122.32431984266087,47.73177713828039],[-122.32432265921567,47.73180443573219],[-122.32432547279473,47.73183164758497],[-122.32432879691041,47.73185893840144],[-122.32433211804077,47.73188614326801],[-122.32433544216345,47.73191343408421],[-122.32433876383087,47.73194063929455],[-122.32434208796052,47.73196793011047],[-122.32434591718113,47.73199512833452],[-122.32434923885927,47.73202233354444],[-122.32435307055647,47.73204961772471],[-122.32435690031897,47.7320768162923],[-122.32436123763274,47.73210400787363],[-122.32436506688349,47.73213120644766],[-122.32436889665827,47.73215840501472],[-122.32437323347519,47.73218559695312],[-122.32437757080659,47.73221278853366],[-122.32438190815263,47.73223998046483],[-122.3243862455032,47.7322671723958],[-122.32439109092748,47.73229435733353],[-122.32439542582856,47.73232146365834],[-122.32440027075275,47.73234864895327],[-122.32440511620206,47.73237583424112],[-122.32440995866745,47.73240293357898],[-122.32441480412689,47.73243011886634],[-122.32442015468321,47.7324572115614],[-122.32442499717413,47.73248431124932],[-122.32443034775144,47.73251140429465],[-122.32443569832427,47.73253849698887],[-122.32444105137168,47.73256567563932],[-122.32444640001678,47.73259268272042],[-122.3244522581788,47.73261976912891],[-122.32445760877424,47.73264686182193],[-122.32446346746825,47.73267394822297],[-122.32446932564835,47.73270103463047],[-122.32447518188552,47.73272803507429],[-122.32448154816156,47.73275511483854],[-122.3244874044112,47.73278211528164],[-122.32449376823115,47.73280910908854],[-122.32450013206778,47.73283610324591],[-122.32450649590096,47.73286309705203],[-122.32451286027089,47.73289009120182],[-122.32451922411731,47.73291708500713],[-122.324526096066,47.73294407252016],[-122.32453245992589,47.73297106632464],[-122.32453932941942,47.73299796788022],[-122.32454620086921,47.73302495539868],[-122.32455307037698,47.73305185695332],[-122.32456044992794,47.73307883782797],[-122.32456731945022,47.73310573938166],[-122.32457469654702,47.73313263429873],[-122.32458207417147,47.73315952920848],[-122.32458945129359,47.73318642447534],[-122.32459682595407,47.73321323378514],[-122.32460420360147,47.73324012869333],[-122.32461208882515,47.73326701696465],[-122.32461997108778,47.73329381998732],[-122.32462785386855,47.73332062265175],[-122.32463573665743,47.73334742531559],[-122.32464361945446,47.73337422797884],[-122.32465150225963,47.73340103064152],[-122.32465989264315,47.73342782666702],[-122.32466828356549,47.73345462303591],[-122.324676671507,47.73348133345441],[-122.32468506243657,47.73350812947115],[-122.32469345039534,47.73353483988833],[-122.3247018388828,47.73356155029803],[-122.32471073495071,47.73358825407031],[-122.3248935646261,47.7340632266685],[-122.32468724645267,47.73406164016847],[-122.3241877214074,47.73405805961087],[-122.32348340402616,47.73405295353983],[-122.3207996201503,47.73402774668129],[-122.31811583940384,47.73400247667516],[-122.31543256886006,47.73397713728363],[-122.3153545799197,47.7339763996228],[-122.31535754046674,47.73389409761825],[-122.31540256087614,47.73275355370125],[-122.3154025608761,47.73223374000118],[-122.31536504386828,47.73202177564391],[-122.31533503026203,47.73180476362243],[-122.31530501665581,47.73125465933033],[-122.31526749964803,47.7294932771415],[-122.31268607253534,47.72948149196237],[-122.31267886749283,47.72875256292402],[-122.31266942452028,47.72779718954075],[-122.31264677647401,47.72684190211256],[-122.31264818586422,47.72668446799259]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000085,"geom:area_square_m":703905.463623,"geom:bbox":"-122.324893565,47.7248851388,-122.312646776,47.7340632267","geom:latitude":47.729581,"geom:longitude":-122.319519,"iso:country":"US","lbl:latitude":47.730159,"lbl:longitude":-122.319636,"lbl:max_zoom":18,"mps:latitude":47.730159,"mps:longitude":-122.319636,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Jackson Park"],"reversegeo:latitude":47.730159,"reversegeo:longitude":-122.319636,"src:geom":"mz","wof:belongsto":[85841945,102191575,890536781,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dd16b6797ee1ef9ff8a7384383b18c11","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536781,"microhood_id":907128269,"neighbourhood_id":85841945,"region_id":85688623}],"wof:id":907128269,"wof:lastmodified":1566608547,"wof:name":"Jackson Park Golf Course","wof:parent_id":85841945,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128271.geojson b/fixtures/microhoods/907128271.geojson new file mode 100644 index 0000000..375bcf0 --- /dev/null +++ b/fixtures/microhoods/907128271.geojson @@ -0,0 +1 @@ +{"id":907128271,"type":"Feature","bbox":[-122.27995353357649,47.68313270091502,-122.26816811919804,47.69013760467237],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.27995353357649,47.69013760467237],[-122.27995353357532,47.69013760467237],[-122.26946549772232,47.6901109731394],[-122.26818934420459,47.68808728589877],[-122.26816811919804,47.68801227406167],[-122.26818403795295,47.68789797010247],[-122.26822648796603,47.68775151778866],[-122.26831138799217,47.68744789582809],[-122.26835383800523,47.68733359063204],[-122.26843873803136,47.68711569565819],[-122.26852894430914,47.68695495288092],[-122.26864037559342,47.68678706545132],[-122.26894283193654,47.68644414476706],[-122.2690967132339,47.68624589271818],[-122.26914977575024,47.68611908245364],[-122.26917100075677,47.68594404806119],[-122.26918691951168,47.68582259528043],[-122.26916038825351,47.68556897238523],[-122.26912324449208,47.68531177607721],[-122.26910732573718,47.68503314531242],[-122.26912049500282,47.68496972212921],[-122.26915508200187,47.6848938293719],[-122.2692877382927,47.68480452408612],[-122.26948406960312,47.68472593530817],[-122.26978121969461,47.6846402019608],[-122.27024816983835,47.68449016826386],[-122.27039674488407,47.68441872349436],[-122.27054266680402,47.68431334228004],[-122.27062756683019,47.68422939438281],[-122.2707469574919,47.68409364855895],[-122.27085838877622,47.68397219146997],[-122.27099635131867,47.68389002916079],[-122.2713359514232,47.6837721438828],[-122.2717498390506,47.68364711375138],[-122.27220617669109,47.68354351712976],[-122.27279517062239,47.68340776952105],[-122.27328865202429,47.68328988315322],[-122.27331518328249,47.68342205875965],[-122.27337355205046,47.68361496309772],[-122.27338416455373,47.68379714987311],[-122.27335232704392,47.6840007696338],[-122.27320905824982,47.68424725564912],[-122.27306048320408,47.68445087365287],[-122.27292782691325,47.68467235198256],[-122.27285884564202,47.68488311274568],[-122.27285353939035,47.68510816143397],[-122.27289068315177,47.68544037438974],[-122.27294905191977,47.68597619727935],[-122.27297558317791,47.68669419132195],[-122.2729490519198,47.687044254485],[-122.27293843941649,47.68733716267321],[-122.2729490519198,47.68750504833216],[-122.27299150193285,47.68765150133804],[-122.27307109570735,47.68782653000076],[-122.27325681451451,47.68809085788831],[-122.27343192081842,47.68826588507665],[-122.27367600839354,47.68845877150186],[-122.27397846473666,47.6886123657377],[-122.27436051485427,47.68876238757788],[-122.27470542121043,47.68884097027433],[-122.27520420886397,47.68889454931767],[-122.27552789021362,47.68889454931767],[-122.27587810282142,47.68888026157815],[-122.27612749664817,47.68883025445905],[-122.27642995299128,47.68875881563432],[-122.27672710308275,47.68863736940768],[-122.27696057815463,47.68851235093781],[-122.2771781344716,47.68837304428983],[-122.27737446578203,47.68820516142478],[-122.27756018458922,47.68800155807613],[-122.27763447211206,47.68785510605318],[-122.27772998464147,47.687637213258],[-122.27777774090616,47.68743003565771],[-122.27779365966106,47.68723000133174],[-122.27776182215126,47.68684095776032],[-122.27768222837678,47.68633698159086],[-122.27768753462841,47.68572614728249],[-122.27771406588658,47.68528319863136],[-122.27771406588656,47.68514031116732],[-122.27770875963492,47.68488668495466],[-122.27762916586042,47.68462234082903],[-122.27756549084083,47.68449016826386],[-122.27795815346173,47.68448659602943],[-122.27793692845519,47.68313627324387],[-122.27943329141583,47.68313270091502],[-122.27945451642235,47.68368998125876],[-122.27978942400564,47.68368998125876],[-122.27986685636631,47.68647147361075],[-122.27986789687263,47.68650884636725],[-122.27936431014457,47.68651201466474],[-122.27939614765438,47.6881194337959],[-122.2794173726609,47.68874095591283],[-122.27948104768049,47.68911243686016],[-122.27958186646154,47.68940890533315],[-122.27969860399746,47.68954106543466],[-122.27988432280465,47.68960535941701],[-122.27994356165593,47.68961152586992],[-122.27995312231721,47.69011680883668],[-122.27995353357649,47.69013760467237]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000046,"geom:area_square_m":381056.479465,"geom:bbox":"-122.279953534,47.6831327009,-122.268168119,47.6901376047","geom:latitude":47.687305,"geom:longitude":-122.273894,"iso:country":"US","lbl:latitude":47.688279,"lbl:longitude":-122.271353,"lbl:max_zoom":18,"mps:latitude":47.688279,"mps:longitude":-122.271353,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.688279,"reversegeo:longitude":-122.271353,"src:geom":"mz","wof:belongsto":[85853783,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"83690caf5d6e86ae3b56c77f9a6d60df","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128271,"neighbourhood_id":85853783,"region_id":85688623}],"wof:id":907128271,"wof:lastmodified":1566608549,"wof:name":"Sand Point Country Club","wof:parent_id":85853783,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128273.geojson b/fixtures/microhoods/907128273.geojson new file mode 100644 index 0000000..52e88ef --- /dev/null +++ b/fixtures/microhoods/907128273.geojson @@ -0,0 +1 @@ +{"id":907128273,"type":"Feature","bbox":[-122.38036249293432,47.64062141234919,-122.3761625152465,47.64839416675164],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37616293210702,47.64080051849093],[-122.37659060326499,47.64074090025762],[-122.37690435900602,47.64070873046301],[-122.37712262386933,47.64068115633756],[-122.37745684194134,47.64064209296889],[-122.3779138339989,47.64062600804303],[-122.37850042081908,47.64062141234919],[-122.37893012976876,47.64063060373646],[-122.37933255561052,47.64065358219757],[-122.37949284386957,47.64067196495918],[-122.37965313212854,47.64070413477644],[-122.37981498433972,47.64077709622155],[-122.37993960476165,47.64086038789277],[-122.38006382135589,47.64097392502713],[-122.38015104884798,47.6410855753854],[-122.38020280131882,47.64122278593666],[-122.38022607739475,47.64137050510745],[-122.3802738228336,47.642073631476],[-122.38036249293432,47.64464248987785],[-122.38030792671852,47.64839215298205],[-122.37897342544797,47.64839416675164],[-122.37896278107684,47.64746348750973],[-122.37768192758165,47.64746854780118],[-122.37764782369672,47.6465633067246],[-122.37634951382469,47.64655433165768],[-122.37629148521515,47.64595671727111],[-122.3762073863571,47.64510529727208],[-122.3761720909304,47.64477043295373],[-122.37617214144309,47.64475331264582],[-122.3769262758039,47.64475664047369],[-122.37691475428045,47.64363093485196],[-122.3761679978358,47.64363504429878],[-122.37616941431901,47.64326140547155],[-122.37616942305294,47.64293690245122],[-122.37616879499097,47.64252256326201],[-122.3761625152465,47.64174678013256],[-122.37616536056119,47.640987967859],[-122.37616293210702,47.64080051849093]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000027,"geom:area_square_m":224261.354486,"geom:bbox":"-122.380362493,47.6406214123,-122.376162515,47.6483941668","geom:latitude":47.644114,"geom:longitude":-122.378433,"iso:country":"US","lbl:latitude":47.644045,"lbl:longitude":-122.378639,"lbl:max_zoom":18,"mps:latitude":47.644045,"mps:longitude":-122.378639,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.644045,"reversegeo:longitude":-122.378639,"src:geom":"mz","wof:belongsto":[85826973,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0011dcb1e8ac6f84a7a8476f949db2b6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128273,"neighbourhood_id":85826973,"region_id":85688623}],"wof:id":907128273,"wof:lastmodified":1566608546,"wof:name":"Interbay Athletic Complex","wof:parent_id":85826973,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128275.geojson b/fixtures/microhoods/907128275.geojson new file mode 100644 index 0000000..5dc94c1 --- /dev/null +++ b/fixtures/microhoods/907128275.geojson @@ -0,0 +1 @@ +{"id":907128275,"type":"Feature","bbox":[-122.40152128656763,47.52601327918127,-122.39274037056674,47.53701249642319],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.39296396965574,47.53700750357043],[-122.39279315820878,47.53606068181683],[-122.39274037056674,47.53567578663289],[-122.39275092809515,47.53514833308851],[-122.39276148562355,47.53431437544257],[-122.3927931582088,47.53144175314261],[-122.39282483079405,47.52875431885783],[-122.39286178214348,47.52625566556397],[-122.39346620064498,47.52606852912019],[-122.39373805700151,47.52602040820791],[-122.39395448633394,47.52601327918127],[-122.39418675195896,47.5260168436952],[-122.3947357434363,47.52609882744851],[-122.3950985072686,47.52617733949989],[-122.39512611460839,47.5261952201241],[-122.39517352167053,47.52622361714291],[-122.39523251771264,47.52626723559572],[-122.39533831255098,47.52635271287397],[-122.3954190304344,47.52641192824328],[-122.39547825668801,47.5264632130949],[-122.39552290868434,47.5265009878741],[-122.3956708725535,47.5266088922743],[-122.39577545175433,47.52668753047764],[-122.39584471315506,47.52673593489649],[-122.39593688921676,47.52680596054507],[-122.39603804732843,47.52687174974551],[-122.39611222784355,47.52691541615794],[-122.39618852342183,47.52696209539911],[-122.39627137305673,47.52702483702581],[-122.3963315880559,47.52707529356957],[-122.39635451060192,47.52709717192201],[-122.3963813486333,47.5271146259536],[-122.396452421698,47.52715589276493],[-122.39652827296156,47.52718775376757],[-122.39666679074044,47.52725054339296],[-122.39671313092214,47.52727706899307],[-122.3967389408387,47.527293980081],[-122.3968192095292,47.5273381196255],[-122.3968820573764,47.5273750864621],[-122.39693030591373,47.52739772980837],[-122.39696572353466,47.5274312610484],[-122.3969950040923,47.5274626487062],[-122.3970815414364,47.52751329957606],[-122.3971123935594,47.52752958451791],[-122.39715960576822,47.52755142775373],[-122.39725855468086,47.52761094792183],[-122.39728543493149,47.52762977245877],[-122.39734485347358,47.5276536328033],[-122.39739229648997,47.52768314245781],[-122.39746010435896,47.52771674180575],[-122.3974909001552,47.52773114194054],[-122.39756085481059,47.52776882449654],[-122.39760999224548,47.52778734250003],[-122.39765722213723,47.52780974265343],[-122.39774409699868,47.52787161354126],[-122.39781004662663,47.52791072239252],[-122.39786754145788,47.5279379082077],[-122.39789842749731,47.52795530614645],[-122.39797033325448,47.52799051944523],[-122.39804551191361,47.52803361423308],[-122.39811436572353,47.52806831246748],[-122.39817314437873,47.52810452073179],[-122.3982174293779,47.52812996037726],[-122.39830783425231,47.52817451594284],[-122.39835211937667,47.52819995553583],[-122.39839626487195,47.52822072684889],[-122.39846022505795,47.5282609764132],[-122.39852856224023,47.5283121342264],[-122.39857398270776,47.52834167091925],[-122.39863577249088,47.52837702353565],[-122.39874664237742,47.52842896578081],[-122.39883805988076,47.52847350733573],[-122.39887695791903,47.52848805237732],[-122.39892739633979,47.52851614919385],[-122.39899418690734,47.5285495044031],[-122.39903102830353,47.52856296406569],[-122.39913167517068,47.52861149102062],[-122.39926265046729,47.52869250456963],[-122.39933041966644,47.52872473207621],[-122.39938903465952,47.5287554578703],[-122.39942391991303,47.52877117206686],[-122.39945173803434,47.5287874982177],[-122.39950197112034,47.52880874220578],[-122.39955839052456,47.52883375679263],[-122.39962314185946,47.52886658274561],[-122.39965400458254,47.52888316661326],[-122.39977010013935,47.5289405203126],[-122.39980087103733,47.52895406343232],[-122.39987056690676,47.52898300798504],[-122.3999353186237,47.52901583376014],[-122.4000079994218,47.52904306638775],[-122.40005324884413,47.52906686382828],[-122.40010368844854,47.52909495977183],[-122.40026907272741,47.52917575458139],[-122.40030200037558,47.52919368109145],[-122.4003411710746,47.52921726217156],[-122.40040903306709,47.52925253010042],[-122.40045926750943,47.52927377365814],[-122.40052775365324,47.52929613636261],[-122.40062076862606,47.52932638699993],[-122.4006527170185,47.52934539777203],[-122.40072818063314,47.52939782658886],[-122.40076036869229,47.5294248031113],[-122.40083184384024,47.52947921519448],[-122.40092586542288,47.52954291343966],[-122.40097961330818,47.52958000364828],[-122.40101471293681,47.52960282674781],[-122.40103858452048,47.5296225058772],[-122.4010813023736,47.52966304749071],[-122.40112504870336,47.52970413155661],[-122.40114107385784,47.52973214495138],[-122.40118952719611,47.52979510087533],[-122.40121270937263,47.52982550045667],[-122.4012408507345,47.52985253269657],[-122.40127209338468,47.52988170735406],[-122.4013075476925,47.52991630764793],[-122.40132669953519,47.52994732019389],[-122.40134594159181,47.52998133029744],[-122.40137757997546,47.53002365258421],[-122.40141501184249,47.53009031635346],[-122.40143509301218,47.53011857381962],[-122.40145442541103,47.5301555818164],[-122.40148520180695,47.53020288625534],[-122.4015039104948,47.53025279905204],[-122.40151776649468,47.53030963424428],[-122.40152083811816,47.53034442453363],[-122.40152128656763,47.53039296116087],[-122.40151851774282,47.53043550141384],[-122.40150722057034,47.53049735363538],[-122.4014923715009,47.53057570759906],[-122.4014830041387,47.53060077253961],[-122.40145865885394,47.53063264200642],[-122.40143297196049,47.53065356209166],[-122.40139728309028,47.5306784761259],[-122.40134758593369,47.53070876786614],[-122.40127132994382,47.53076466150401],[-122.40124683627386,47.53079160585992],[-122.40121043240818,47.5308263842722],[-122.4011330072125,47.53087706674665],[-122.40108611416828,47.53089965032576],[-122.40102185083653,47.53095045118968],[-122.40097737658319,47.53098615481431],[-122.40094679521364,47.53101262608951],[-122.40090317718763,47.53104313348835],[-122.40086265089359,47.53107548369763],[-122.40083697976151,47.53109696008462],[-122.40079322119837,47.53112279953958],[-122.40073538793011,47.53115183195727],[-122.40068680081419,47.53118540697913],[-122.4006182665953,47.53122885444907],[-122.40052524571435,47.53129950324243],[-122.40047347509966,47.53132819462218],[-122.4004259160968,47.53136231235765],[-122.4003822299951,47.53139059279365],[-122.40034030505561,47.53141010837419],[-122.40029164275549,47.53144119929259],[-122.40020497082057,47.53148738162211],[-122.40014139569917,47.53152746115472],[-122.40009063636423,47.5315561387588],[-122.4000558253252,47.53157662733104],[-122.40000995963136,47.53159975329502],[-122.39996425019574,47.53162806111416],[-122.3999277207731,47.53165872764934],[-122.39987613873024,47.53169371454924],[-122.39981879043087,47.53173893523696],[-122.39977408476088,47.53176697221678],[-122.39971856198953,47.53180556954072],[-122.39965514315382,47.53185087383557],[-122.39962350770378,47.53187598832814],[-122.39959274364018,47.53189642096146],[-122.39955007735786,47.53192498674623],[-122.39944075899001,47.53199230311346],[-122.39937703465894,47.53202745715052],[-122.399342445672,47.53205535450738],[-122.39930579255125,47.53208190936146],[-122.39925001428759,47.53211202669467],[-122.3992003796225,47.53214450147145],[-122.39917045503798,47.53215918137732],[-122.39910850668872,47.5321860844285],[-122.39908581207145,47.53220559178004],[-122.39903559450364,47.53225234199825],[-122.39898020319562,47.53229535005173],[-122.39894655091453,47.53232074941095],[-122.39888897132656,47.5323583034538],[-122.39883957602386,47.53239874385041],[-122.39876313347108,47.53244859717558],[-122.39871561350162,47.53248408492072],[-122.3986399938381,47.53252762842218],[-122.39857860436467,47.53257316140333],[-122.3985159483525,47.53261022817454],[-122.39848921412934,47.53263004797099],[-122.39845171256577,47.53266209834376],[-122.398399273216,47.53270232355348],[-122.39834987720727,47.53274276373726],[-122.39831614252839,47.5327654218023],[-122.39826758579078,47.53280010935084],[-122.39823302012951,47.53282881996429],[-122.39815167460038,47.53288396758978],[-122.3981022203595,47.53292248051053],[-122.3980189572911,47.5329812106108],[-122.39799126109546,47.53300271421417],[-122.39789408753555,47.53307011905508],[-122.39780289413973,47.53313444196017],[-122.39777917916176,47.53315370581743],[-122.39775353840938,47.53317625261051],[-122.39771096958206,47.53320811522823],[-122.39768045082238,47.53323676994464],[-122.39764986646827,47.53326324068346],[-122.3976152513138,47.53329032392021],[-122.39754417018871,47.53335025687772],[-122.39748393116231,47.53340044323723],[-122.39745543565314,47.53342907003636],[-122.39741791616726,47.53346056328735],[-122.39739734334371,47.53348333996973],[-122.39736322149443,47.53352686833269],[-122.39732679641595,47.53356108872016],[-122.39729357104486,47.5336007488164],[-122.3972572031884,47.53363689634455],[-122.39721031473421,47.53369349656995],[-122.39716411663478,47.53373937666269],[-122.39712792080577,47.53378126281483],[-122.39701072283509,47.53388981589042],[-122.39695089338116,47.53395370677949],[-122.39689777649131,47.53400516573765],[-122.39686730693566,47.53403549057792],[-122.39681896134765,47.53407728654864],[-122.39679535994502,47.53410036206128],[-122.39677187415106,47.53412729153038],[-122.39669787898792,47.5341913772016],[-122.39666935820598,47.53421919020902],[-122.39664484384016,47.53424557714311],[-122.39662223733082,47.53426808156723],[-122.3965909445597,47.53430471570114],[-122.39654470425342,47.53434922481586],[-122.39652438507498,47.53438048110821],[-122.39648122105356,47.53442631916372],[-122.39645593366943,47.53446068541529],[-122.39642944437271,47.53448872768154],[-122.39638189524611,47.53455711914214],[-122.3963594457318,47.53458484854576],[-122.39631966223834,47.53464216492015],[-122.3962945056757,47.53468089977785],[-122.39626167315821,47.53473370759918],[-122.39620549419008,47.53481811302135],[-122.39614618930251,47.53489956260747],[-122.3961110452397,47.53494280488768],[-122.39609084064325,47.53497791542254],[-122.39604376763788,47.53506219551316],[-122.39601652880255,47.53509903099116],[-122.39599010469357,47.53516301855733],[-122.39598208341673,47.535199332803],[-122.39596851620273,47.53525324651355],[-122.39596261734407,47.53529283046009],[-122.39594970869302,47.53533495295207],[-122.39593262188812,47.53537276245864],[-122.39590791674371,47.5354265724153],[-122.39589142911156,47.5354843825308],[-122.39586956933361,47.53556557356702],[-122.39587047343174,47.53559572393658],[-122.39587271858743,47.53563682374106],[-122.39586839774329,47.53569528046424],[-122.39586049957683,47.53573570582832],[-122.39585849107283,47.53577000942479],[-122.39586666698636,47.53580635748685],[-122.39587059765353,47.53586992793015],[-122.3958720359956,47.53591789423582],[-122.39586804550567,47.53595359567824],[-122.39586775673818,47.53597772132747],[-122.39586845425006,47.5360347377468],[-122.39587121756468,47.53605937843479],[-122.39588428042865,47.53608991825785],[-122.3958870853651,47.53611592931401],[-122.39590219625488,47.53614725525215],[-122.39590948375275,47.53618772870325],[-122.39592754068968,47.5362160149717],[-122.39594213352238,47.5362638003722],[-122.39596065028631,47.53630741863375],[-122.39598053207028,47.53636280027864],[-122.39604188299094,47.53648453498504],[-122.39607154653548,47.53656227590378],[-122.3961232888892,47.53666739028895],[-122.3961618457086,47.53673789654368],[-122.39622204566464,47.53685497681112],[-122.39624007731553,47.53688240663291],[-122.39626413155726,47.53690812539934],[-122.39632746458173,47.53696089571658],[-122.39638254160026,47.53700842391616],[-122.39624644409615,47.53701029600539],[-122.3953324067573,47.53701249642319],[-122.39404001819925,47.53700604803831],[-122.39296396965574,47.53700750357043]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000057,"geom:area_square_m":479166.57916,"geom:bbox":"-122.401521287,47.5260132792,-122.392740371,47.5370124964","geom:latitude":47.531204,"geom:longitude":-122.395815,"iso:country":"US","lbl:latitude":47.530849,"lbl:longitude":-122.395816,"lbl:max_zoom":18,"mps:latitude":47.530849,"mps:longitude":-122.395816,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:epo_x_preferred":["Parko Lincoln"],"name:eus_x_preferred":["Lincoln Park"],"name:fas_x_preferred":["پارک لینکلن"],"name:jpn_x_preferred":["リンカーン・パーク"],"name:kor_x_preferred":["링컨 공원"],"name:nld_x_preferred":["Lincoln Park"],"name:nor_x_preferred":["Lincoln Park"],"name:por_x_preferred":["Lincoln Park"],"name:spa_x_preferred":["Lincoln Park"],"name:zho_x_preferred":["林肯公园"],"reversegeo:latitude":47.530849,"reversegeo:longitude":-122.395816,"src:geom":"mz","wof:belongsto":[85819027,102191575,890536787,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5171dc46181e09fa999dace1c993dc11","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536787,"microhood_id":907128275,"neighbourhood_id":85819027,"region_id":85688623}],"wof:id":907128275,"wof:lastmodified":1566608547,"wof:name":"Lincoln Park","wof:parent_id":85819027,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128277.geojson b/fixtures/microhoods/907128277.geojson new file mode 100644 index 0000000..319119e --- /dev/null +++ b/fixtures/microhoods/907128277.geojson @@ -0,0 +1 @@ +{"id":907128277,"type":"Feature","bbox":[-122.31115322393637,47.56120207724189,-122.3015970350827,47.5718631249742],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.30812195600906,47.5718631249742],[-122.30177473395014,47.5718272602363],[-122.30191294816582,47.56836978419454],[-122.30205116238153,47.5645677317076],[-122.30206711017561,47.564449361493],[-122.30208680778009,47.56389777189702],[-122.30211744000465,47.56388054140488],[-122.3021512758232,47.56385928232054],[-122.30218304892446,47.56383672143671],[-122.30221326938873,47.56381298132339],[-122.30224092484785,47.56378807471139],[-122.30226652708913,47.56376216626558],[-122.30229007507745,47.56373525600067],[-122.3023115736537,47.56370751548219],[-122.3023300115006,47.56367895777907],[-122.30234640476068,47.56364974068734],[-122.3023602487356,47.56361991389945],[-122.30237103993582,47.56358956991128],[-122.30237878076117,47.56355879362868],[-122.30238296669728,47.56352767791149],[-122.30238360482385,47.56349643676339],[-122.30238120658247,47.56346527767027],[-122.30237526899508,47.56343429276944],[-122.30236579707778,47.56340369644118],[-122.30235482260059,47.56337367617424],[-122.30232796818933,47.5633372206573],[-122.30229741622382,47.56329532857882],[-122.30227843621203,47.56326875372992],[-122.30225037529046,47.56324336738761],[-122.30222282755398,47.56321823132163],[-122.3021952846827,47.56319326681312],[-122.30216724074262,47.56316847969697],[-122.30213869523554,47.56314387068118],[-122.30211015459383,47.5631194332224],[-122.30208111409114,47.56309521595843],[-122.30205157081515,47.5630711339906],[-122.30202152717048,47.56304727257434],[-122.30199148839131,47.56302358271433],[-122.301960949762,47.56300011339869],[-122.3019304159881,47.56297681528816],[-122.30190059103798,47.56296070580496],[-122.30186311410353,47.5629425956284],[-122.30182711008571,47.56292283859248],[-122.30179359200608,47.56290146408144],[-122.30176205689536,47.56287856458301],[-122.30173301496365,47.56285430443346],[-122.30170646847303,47.56282872712629],[-122.30168292711274,47.56280199700485],[-122.30166138319785,47.56277425554283],[-122.30164335738807,47.56274556873881],[-122.3016278421776,47.56271612123361],[-122.30161585352997,47.5626860287143],[-122.30160638218493,47.56265543197176],[-122.3015999399402,47.56262449672514],[-122.3015970350827,47.5625933009951],[-122.30159716724268,47.56256206639188],[-122.30160034002479,47.56253092097459],[-122.30160706398797,47.5624999866056],[-122.30161683770702,47.562469484206],[-122.3016301734755,47.56243957878497],[-122.3016465691515,47.56241044740057],[-122.30166653479536,47.56238221262213],[-122.30168957052989,47.56235509499894],[-122.3017151730295,47.56232922948702],[-122.30174385286487,47.56230473829745],[-122.30178107493592,47.562277908772],[-122.30222927008296,47.5616691374086],[-122.30225794878496,47.5616446457451],[-122.30228765600825,47.56162069813189],[-122.30231839483599,47.56159742228317],[-122.30235016287325,47.56157473329309],[-122.30238245661629,47.56155272260329],[-122.30241628667427,47.56153133503639],[-122.30245114955352,47.56151066238464],[-122.30248653814914,47.56149066838173],[-122.30252296077424,47.56147143209567],[-122.30255991032456,47.56145291726047],[-122.30259789391552,47.5614351604913],[-122.30263640512256,47.56141816798163],[-122.30267595156948,47.56140197598874],[-122.30271602616291,47.56138654859804],[-122.30275713771428,47.5613719641681],[-122.30279827290683,47.56135823684911],[-122.30284044334411,47.56134531004356],[-122.30288314433896,47.56133323309334],[-122.30292637537475,47.56132200600461],[-122.30296963177508,47.56131167847096],[-122.30301392515267,47.56130219424425],[-122.30305824338048,47.5612936095785],[-122.30310258870533,47.56128596726364],[-122.30314797048507,47.56127916790947],[-122.3031933783395,47.56127331126958],[-122.30323881207997,47.56126835382552],[-122.30328427067211,47.5612642955906],[-122.30333026399468,47.56126121596051],[-122.30337628096564,47.56125899273584],[-122.30342283215356,47.56125774812181],[-122.3048373923812,47.56120207724189],[-122.30503074191584,47.56193303441077],[-122.30601323176063,47.56481437101199],[-122.31013320990314,47.56486375546729],[-122.31058414992212,47.56487469826858],[-122.31069706426439,47.56487917008238],[-122.31079700151042,47.56490920632774],[-122.31087101948584,47.56496603016161],[-122.31091431211878,47.5650246089838],[-122.31100358340329,47.56517435831969],[-122.31106229863762,47.56537095110749],[-122.31111707161415,47.5656998126874],[-122.31115135695457,47.56604684996934],[-122.31115322393637,47.56618357288546],[-122.31114803647674,47.56630302767935],[-122.31113488027394,47.56643676521037],[-122.31109322303044,47.56656989295877],[-122.31103562836097,47.56667196083971],[-122.31095449645217,47.56676242836201],[-122.31085237897052,47.5668348989788],[-122.31072323798662,47.56690003644184],[-122.3103775189635,47.56698382929571],[-122.30991849338209,47.56705694145342],[-122.30928916151532,47.56715820618531],[-122.30821072537829,47.56726690768657],[-122.30885328964862,47.56932164818218],[-122.3073970863839,47.56952569702504],[-122.30812195600906,47.5718631249742]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":517709.584309,"geom:bbox":"-122.311153224,47.5612020772,-122.301597035,47.571863125","geom:latitude":47.567087,"geom:longitude":-122.305261,"iso:country":"US","lbl:latitude":47.567683,"lbl:longitude":-122.304873,"lbl:max_zoom":18,"mps:latitude":47.567683,"mps:longitude":-122.304873,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.567683,"reversegeo:longitude":-122.304873,"src:geom":"mz","wof:belongsto":[85805013,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b3b65338e4bdd638cac8b778fb763cec","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128277,"neighbourhood_id":85805013,"region_id":85688623}],"wof:id":907128277,"wof:lastmodified":1566608548,"wof:name":"Jefferson Park Golf Course","wof:parent_id":85805013,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128281.geojson b/fixtures/microhoods/907128281.geojson new file mode 100644 index 0000000..e659b25 --- /dev/null +++ b/fixtures/microhoods/907128281.geojson @@ -0,0 +1 @@ +{"id":907128281,"type":"Feature","bbox":[-122.31136444095067,47.5611762775275,-122.3048373923812,47.56486375546729],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.31136444095067,47.56222575960606],[-122.31013320990314,47.56486375546729],[-122.30601323176063,47.56481437101199],[-122.30503074191584,47.56193303441077],[-122.3048373923812,47.56120207724189],[-122.30512740878959,47.56119066346938],[-122.30654889151155,47.5611762775275],[-122.30678523140877,47.5611762775275],[-122.30693097434542,47.561200199939],[-122.30707277828377,47.56125336081438],[-122.30715155824954,47.56130386359602],[-122.30727366719644,47.56137828865916],[-122.30739971514163,47.56145005558419],[-122.30751394609199,47.56151119029465],[-122.30763211604061,47.56156169282773],[-122.30774240799265,47.5616042212389],[-122.307856638943,47.561628143455],[-122.30795905289847,47.56163877554754],[-122.31048353940342,47.56167249235872],[-122.31097043812797,47.56194059152893],[-122.31136444095067,47.56222575960606]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":150726.996829,"geom:bbox":"-122.311364441,47.5611762775,-122.304837392,47.5648637555","geom:latitude":47.563035,"geom:longitude":-122.308011,"iso:country":"US","lbl:latitude":47.563239,"lbl:longitude":-122.308007,"lbl:max_zoom":18,"mps:latitude":47.563239,"mps:longitude":-122.308007,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.563239,"reversegeo:longitude":-122.308007,"src:geom":"mz","wof:belongsto":[85805013,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"78d42f6ba9badbc9a47009d366a45893","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128281,"neighbourhood_id":85805013,"region_id":85688623}],"wof:id":907128281,"wof:lastmodified":1566608547,"wof:name":"VA Medical Center","wof:parent_id":85805013,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128283.geojson b/fixtures/microhoods/907128283.geojson new file mode 100644 index 0000000..327c592 --- /dev/null +++ b/fixtures/microhoods/907128283.geojson @@ -0,0 +1 @@ +{"id":907128283,"type":"Feature","bbox":[-122.31346502446237,47.56487917008238,-122.3073970863839,47.57186693159216],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.3126510921411,47.56490611917952],[-122.31265810466478,47.5672996404932],[-122.31346502446237,47.56731656547753],[-122.31345942128583,47.56777176243884],[-122.31343724427943,47.56909408017586],[-122.31334533198036,47.57155467782742],[-122.3127843300901,47.57156414009007],[-122.31255525431824,47.57157991052402],[-122.31243370390868,47.57160514320846],[-122.31226540334161,47.57165245445902],[-122.31210177779029,47.57169976566684],[-122.31190075211295,47.57175969313539],[-122.3116997264356,47.57181015831887],[-122.31146130063226,47.57185431531452],[-122.31101249912008,47.57186693159216],[-122.31040942208807,47.57186377752303],[-122.30841786537773,47.57186062345372],[-122.30812195600906,47.5718631249742],[-122.3073970863839,47.56952569702504],[-122.30885328964862,47.56932164818218],[-122.30821072537829,47.56726690768657],[-122.30843090916872,47.56724471415303],[-122.30928916151532,47.56715820618531],[-122.30991849338209,47.56705694145342],[-122.3103775189635,47.56698382929571],[-122.31072323798662,47.56690003644184],[-122.31085237897052,47.5668348989788],[-122.31095449645217,47.56676242836201],[-122.31103562836097,47.56667196083971],[-122.31109322303044,47.56656989295877],[-122.31113488027394,47.56643676521037],[-122.31114803647674,47.56630302767935],[-122.31115322393637,47.56618357288546],[-122.31115135695457,47.56604684996934],[-122.31111707161415,47.5656998126874],[-122.31106229863762,47.56537095110749],[-122.31100358340329,47.56517435831969],[-122.31091431211878,47.5650246089838],[-122.31087101948584,47.56496603016161],[-122.31079700151042,47.56490920632774],[-122.31069706426439,47.56487917008238],[-122.3126510921411,47.56490611917952]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":235215.944276,"geom:bbox":"-122.313465024,47.5648791701,-122.307397086,47.5718669316","geom:latitude":47.569068,"geom:longitude":-122.310858,"iso:country":"US","lbl:latitude":47.569199,"lbl:longitude":-122.311104,"lbl:max_zoom":18,"mps:latitude":47.569199,"mps:longitude":-122.311104,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Jefferson Park"],"name:swe_x_preferred":["Jefferson Park"],"reversegeo:latitude":47.569199,"reversegeo:longitude":-122.311104,"src:geom":"mz","wof:belongsto":[85805013,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6cd79f96121243404a8266bb0ccfe5d2","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128283,"neighbourhood_id":85805013,"region_id":85688623}],"wof:id":907128283,"wof:lastmodified":1566608548,"wof:name":"Jefferson Park","wof:parent_id":85805013,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128287.geojson b/fixtures/microhoods/907128287.geojson new file mode 100644 index 0000000..5a872ff --- /dev/null +++ b/fixtures/microhoods/907128287.geojson @@ -0,0 +1 @@ +{"id":907128287,"type":"Feature","bbox":[-122.37618893638533,47.6251781805688,-122.35678196215271,47.64293690245122],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.35691749971927,47.63959368411729],[-122.35693021170965,47.638383123982],[-122.35693787260372,47.63751945501409],[-122.35694651183476,47.63651610109523],[-122.35697060927158,47.63512300103041],[-122.35697890503653,47.63391755566148],[-122.3569932067981,47.63272672535846],[-122.35699752172489,47.63270091836132],[-122.35700031083454,47.63267496015783],[-122.35700056296288,47.63264895027223],[-122.35699878773333,47.63262296787335],[-122.35699448053487,47.63259710465221],[-122.35698865758252,47.63257143334771],[-122.35698030695865,47.63254600997232],[-122.35696993850115,47.63252095651097],[-122.35695755397532,47.63249631540803],[-122.35692955924745,47.63245808764415],[-122.35691042499334,47.63242805282511],[-122.35689050488763,47.63240582622716],[-122.35686857928378,47.63238435474888],[-122.35684515926967,47.63236380317787],[-122.35682024358175,47.63234412835968],[-122.35678196215271,47.63231824879948],[-122.35789143865658,47.63231847655095],[-122.35865167687936,47.63232324479338],[-122.35989503760811,47.63232405827247],[-122.36180247104792,47.63231838567957],[-122.36310528177953,47.63232333536692],[-122.36310962365293,47.63133310430359],[-122.36311873778445,47.63052236931106],[-122.36311972916482,47.62967682517664],[-122.36316185391337,47.62885069404117],[-122.36321172615204,47.62802942824719],[-122.36322149813952,47.62724113437896],[-122.36321819485097,47.62681852072607],[-122.36321790937338,47.62673986259949],[-122.36380634975329,47.62680178776448],[-122.3643551745572,47.62701638312829],[-122.36434666220062,47.62672717043037],[-122.36440723562554,47.62644242686937],[-122.36453109159173,47.62586172094924],[-122.3645398075279,47.625227722899],[-122.3645408843284,47.6251781805688],[-122.36465730365411,47.62527502772021],[-122.36477162823421,47.62536958893143],[-122.36571906932333,47.62572598336426],[-122.36652894264695,47.62604180727678],[-122.3674316370139,47.62639296388884],[-122.36766612789104,47.62648740236015],[-122.36833280752033,47.62672643902887],[-122.3685848152815,47.62676147149658],[-122.36880764361707,47.62692444437553],[-122.36993738251478,47.62775168898312],[-122.37037351243018,47.62808062856263],[-122.37159362935552,47.62904755181025],[-122.372331401987,47.62961404953967],[-122.3731920630833,47.63030604244932],[-122.3737123493095,47.63071866338036],[-122.37459775778413,47.63140606929957],[-122.37544593700298,47.63208549012901],[-122.37561241008375,47.63221039695304],[-122.37563706752533,47.63223821155401],[-122.37569057255378,47.63229836848169],[-122.37570998847744,47.63232042745049],[-122.37573140635796,47.63234160219526],[-122.37575181565919,47.63236296188084],[-122.37577223006491,47.63238449312347],[-122.37579214246803,47.63240620244352],[-122.37581155466692,47.63242813298752],[-122.37583046358257,47.63245019845611],[-122.37584887102376,47.63247244234667],[-122.37586728355835,47.63249485744414],[-122.3758846870009,47.6325174578425],[-122.375902094786,47.63254018663859],[-122.37591849346727,47.63256310038535],[-122.37593489649042,47.63258614253014],[-122.37595079698814,47.63260936276135],[-122.37596619398843,47.63263267580395],[-122.37598108898123,47.6326561669264],[-122.37599548069653,47.63267979332633],[-122.37600936786414,47.63270351220152],[-122.37602275355206,47.63272740950089],[-122.37603563519976,47.63275139891797],[-122.3760480123084,47.63277548116166],[-122.37605988613653,47.63279969868375],[-122.37607176303395,47.63282400180253],[-122.37608262955928,47.63284844742319],[-122.37609299204122,47.63287298516237],[-122.37610335656356,47.63289760886342],[-122.37611270918919,47.63292228874622],[-122.37612155854085,47.63294710425915],[-122.37613040917059,47.63297196257381],[-122.37613824866186,47.63299692023109],[-122.37614609071038,47.63302196384358],[-122.3761529185498,47.6330470208502],[-122.37615924362049,47.63307221312957],[-122.3761650633928,47.63309745542764],[-122.37617401092709,47.63314266335783],[-122.37617780662535,47.63316806154698],[-122.37618109701152,47.63319350940431],[-122.3761838802961,47.63321896413442],[-122.37618615826713,47.63324446853277],[-122.37618742202979,47.6332699866769],[-122.37618868631272,47.63329550481396],[-122.37618893638533,47.63332103669681],[-122.37618817327377,47.63334658196059],[-122.37618740838313,47.63337208477971],[-122.37618562979772,47.63339760133761],[-122.3761790900932,47.63365578455399],[-122.37612791570477,47.63449481341159],[-122.37613731044563,47.63537565187305],[-122.3761326854136,47.63621122230909],[-122.37614047974118,47.63703809873946],[-122.37614793910457,47.63783657339889],[-122.3761507613535,47.63851291897038],[-122.37614927382116,47.63918075408363],[-122.37615553218477,47.64022932766082],[-122.37616536056119,47.640987967859],[-122.3761625152465,47.64174678013256],[-122.37616879499097,47.64252256326201],[-122.37616942305294,47.64293690245122],[-122.37602235434947,47.64285183545935],[-122.37530933301626,47.64191339173101],[-122.37494750952519,47.64144426165954],[-122.37442138210304,47.64075293610021],[-122.37436496822423,47.64068043596606],[-122.37399540118113,47.6406854375568],[-122.37223349177721,47.64068351642766],[-122.37158398715799,47.64068890912795],[-122.37153226946488,47.64068930777729],[-122.37155190313145,47.63970709416235],[-122.37155402616838,47.63959027179747],[-122.37030369305306,47.63959978881978],[-122.36845513504291,47.63959902260758],[-122.36661121179846,47.63958342526136],[-122.3651383319505,47.63959592528855],[-122.36339825819388,47.63959357451208],[-122.3615279021176,47.63959298879048],[-122.35961912468366,47.63959652919302],[-122.35691749971927,47.63959368411729]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.0002,"geom:area_square_m":1665387.123374,"geom:bbox":"-122.376188936,47.6251781806,-122.356781962,47.6429369025","geom:latitude":47.63446,"geom:longitude":-122.367157,"iso:country":"US","lbl:latitude":47.634074,"lbl:longitude":-122.368624,"lbl:max_zoom":18,"mps:latitude":47.634074,"mps:longitude":-122.368624,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["W Queen Anne"],"reversegeo:latitude":47.634074,"reversegeo:longitude":-122.368624,"src:geom":"seagv","wof:belongsto":[85843445,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"130cfcda89b5525fadc39b511b64c925","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128287,"neighbourhood_id":85843445,"region_id":85688623}],"wof:id":907128287,"wof:lastmodified":1566608546,"wof:name":"West Queen Anne","wof:parent_id":85843445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869777],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128289.geojson b/fixtures/microhoods/907128289.geojson new file mode 100644 index 0000000..f74c9fd --- /dev/null +++ b/fixtures/microhoods/907128289.geojson @@ -0,0 +1 @@ +{"id":907128289,"type":"Feature","bbox":[-122.3763778463803,47.63958342526136,-122.34955573619413,47.6579308926099],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37616942305294,47.64293690245122],[-122.37616941431901,47.64326140547155],[-122.37616751807153,47.643761596142],[-122.37617365064384,47.64424179810337],[-122.3761720909304,47.64477043295373],[-122.3762073863571,47.64510529727208],[-122.37629148521515,47.64595671727111],[-122.37635211114085,47.64658108042023],[-122.37637689518176,47.64741625243387],[-122.3763778463803,47.64830290320235],[-122.37632769722461,47.65001439993808],[-122.37623309869328,47.65164693701939],[-122.3762173155774,47.65251676230488],[-122.37621501491465,47.65290076470885],[-122.37620899173689,47.6533302748171],[-122.37621366791682,47.65372716441206],[-122.37621988924546,47.65393680307443],[-122.37622001770025,47.65469326072137],[-122.37622420318421,47.65544966373568],[-122.37622411775111,47.65595959816768],[-122.37611706548252,47.65595920612276],[-122.3761175763575,47.65609608660605],[-122.3761181762118,47.65623596536475],[-122.3761188396108,47.65637798529745],[-122.3761194229486,47.65651730727217],[-122.37611999738762,47.65665632927824],[-122.37612069384345,47.65679946277398],[-122.37612153773213,47.65694756415903],[-122.37612214395801,47.65708765692569],[-122.37612266248927,47.65722479456895],[-122.3761232204213,47.65736325978889],[-122.37612371256654,47.65751659309195],[-122.37609058612557,47.65764827387187],[-122.37609078279054,47.65779167104982],[-122.37607665089911,47.6579308926099],[-122.37601880639272,47.6579305621331],[-122.37580670123931,47.65792906490309],[-122.3758063735254,47.6578838254734],[-122.37580626607594,47.65774342622779],[-122.37567534866474,47.65774245701824],[-122.37558709374646,47.65774309515527],[-122.3754156806813,47.65774515930845],[-122.37528140320185,47.65773352426521],[-122.37527729568284,47.65769767631114],[-122.37527826912492,47.65755944730391],[-122.37527915364198,47.6574182203702],[-122.37527712274684,47.65738397249997],[-122.37527715013238,47.65728225969145],[-122.37527809891627,47.65714321709177],[-122.3752374728718,47.65714183918389],[-122.37505775240284,47.65713741721085],[-122.37497752337896,47.65713494711262],[-122.37479074396988,47.65713199120135],[-122.37467605567008,47.65713080120664],[-122.3745846297994,47.65712711143625],[-122.37435418196338,47.65712281782628],[-122.3742739123761,47.65711897685196],[-122.37423020276869,47.65711626937652],[-122.37402413694731,47.65711301614331],[-122.37391146941042,47.65711154112493],[-122.37377949886232,47.65710921307423],[-122.37378140961583,47.65724217585318],[-122.37378052864335,47.65738365959093],[-122.37377968066288,47.6575262568938],[-122.37377968492747,47.65766335859817],[-122.37377919320556,47.65774948252881],[-122.37375874687295,47.65777855035947],[-122.3737166199309,47.65779501534428],[-122.37362332652182,47.65779683411639],[-122.37358689552352,47.65780006902479],[-122.37338193837043,47.65780009846561],[-122.37329479570793,47.65780401900108],[-122.37316365873563,47.6577956378669],[-122.37303272423253,47.65779410884406],[-122.37301314629897,47.65781823808254],[-122.37295632498189,47.65781819195735],[-122.37289427756185,47.65781298964926],[-122.3728423247137,47.65780602300809],[-122.37276244312409,47.65778105335883],[-122.37271908193743,47.65775584730595],[-122.37270500390134,47.65772587503444],[-122.37268986404952,47.65769428926584],[-122.37267748975104,47.65765332617653],[-122.37265197896218,47.65761416848432],[-122.37263712270227,47.65759217573376],[-122.37261201776393,47.65756672289552],[-122.37257319332629,47.65755765041155],[-122.37249420491088,47.65756283106262],[-122.37249414059501,47.65769774844395],[-122.37228514418149,47.65769838786164],[-122.37207824022502,47.65770118347783],[-122.37186314177086,47.65770134720718],[-122.37165717084734,47.65770138759562],[-122.37144612906751,47.65770149574365],[-122.37127908104759,47.65771390584864],[-122.37117560052471,47.65768004229263],[-122.3710880006624,47.65765136265114],[-122.37104701836115,47.65763794873013],[-122.37100398494675,47.65762379138376],[-122.37095890243539,47.65760897622182],[-122.37086207978551,47.65757720735069],[-122.37080368094817,47.65755811620528],[-122.37078096713054,47.65751056562196],[-122.3707169423166,47.65747278452056],[-122.3706557655702,47.65742836686297],[-122.37062095770929,47.65741786857362],[-122.3705736141308,47.65739520006515],[-122.37050858304063,47.6573576893503],[-122.37045189252984,47.65732773529923],[-122.37041061054101,47.65730417099113],[-122.37038166924384,47.65728618145388],[-122.37034660144641,47.6572669036622],[-122.37023324670173,47.6572078514135],[-122.37020432905241,47.65719067543663],[-122.37016292575146,47.65716299989283],[-122.37011106388468,47.65712475424574],[-122.37004274793665,47.65707906167587],[-122.36997872418013,47.65704127980811],[-122.36993946208959,47.65701738834443],[-122.36989538115608,47.65700208789261],[-122.3698562330515,47.65698205073127],[-122.36980783555703,47.65695802555533],[-122.36974607510292,47.65692813921145],[-122.36967187679281,47.65688938077558],[-122.36962128916669,47.65685990100243],[-122.36952940343139,47.65680629980231],[-122.3695123660339,47.65677910928885],[-122.36953102902007,47.65675829222248],[-122.36952317645945,47.6567329057534],[-122.36945960655011,47.65671045601605],[-122.36941479532548,47.65670476243418],[-122.36937279118906,47.65669106162034],[-122.36934090505272,47.6566764104076],[-122.36930784283248,47.65665629133436],[-122.36925856965588,47.6566369475327],[-122.36920928006677,47.65661704692612],[-122.36916999461445,47.65659234159811],[-122.36912670953018,47.65656961777535],[-122.36905744502583,47.65652612227761],[-122.36900876494339,47.65649250338345],[-122.36896750831455,47.65646975250122],[-122.36897492621583,47.65644608802774],[-122.36899737009458,47.65641588013772],[-122.36904909716307,47.6563809073246],[-122.3691015063089,47.65633469989268],[-122.36912926421724,47.65631264658691],[-122.36918474020321,47.65626721168048],[-122.36926794932519,47.65619890981558],[-122.36934925194649,47.65613474673622],[-122.369372904471,47.65611112019032],[-122.36944122394786,47.65605398714293],[-122.36947408514094,47.65603297857555],[-122.36951080089828,47.65600506301239],[-122.3695452043577,47.65596758177725],[-122.36958231024974,47.65591853859097],[-122.36960068182265,47.65588787132025],[-122.3696098939114,47.65582193827515],[-122.36961523381352,47.65579663112001],[-122.36964375589444,47.65573180851362],[-122.36965655374951,47.65568420722057],[-122.36965913636475,47.65563425879062],[-122.36960747668392,47.65563714087267],[-122.36953848768185,47.65563725721109],[-122.36948677990058,47.65563851169021],[-122.36945030966614,47.65564037489357],[-122.36939972914502,47.65564542717659],[-122.3693350636366,47.65565452527252],[-122.36928865349343,47.65566337747773],[-122.36924432851927,47.65567412912527],[-122.36916568349085,47.65569082800559],[-122.36912332980921,47.65569962543835],[-122.36902646040596,47.65571764082173],[-122.36899010395062,47.65572335820985],[-122.36889622877932,47.65573970490995],[-122.36883886490281,47.65575555961393],[-122.36880063266413,47.65576648620755],[-122.368746052345,47.65577352005837],[-122.36872912953774,47.65575018411002],[-122.36876609542026,47.65573074860566],[-122.36880719168174,47.65571374233996],[-122.36884532647456,47.65569951784467],[-122.3688932956942,47.65567474996475],[-122.36897595237231,47.65562209367112],[-122.36902291439637,47.65559759623326],[-122.36904435260342,47.65556770162569],[-122.36906880028417,47.6555366527715],[-122.36910987225896,47.65551883279771],[-122.36913977183302,47.65550060611842],[-122.36917774444345,47.65548089998212],[-122.36921677163589,47.65546255053881],[-122.36929576666684,47.65542335363424],[-122.36926783281032,47.65540509297643],[-122.36923781431956,47.6553849328434],[-122.36920582400735,47.65536672687787],[-122.36916138738677,47.65533934882013],[-122.36910765418081,47.65530635513142],[-122.36904583864465,47.65527454124705],[-122.36897570022215,47.6552357276476],[-122.36894780494504,47.65525311298573],[-122.3688903058969,47.65523002409273],[-122.36884286060491,47.65520380049232],[-122.36880762528166,47.65517878317851],[-122.36877641462323,47.65515259758131],[-122.36874337761867,47.65513329194197],[-122.36864918429477,47.6550701239939],[-122.3685285826442,47.65500594103734],[-122.36841920991213,47.65494409153798],[-122.36817558230717,47.65480230463718],[-122.36792460643468,47.65465213306411],[-122.36749100144196,47.65439859597706],[-122.36719092868888,47.65423481724518],[-122.36637500488872,47.65515671482562],[-122.36631126020592,47.65512822466146],[-122.36646207321286,47.6549095739343],[-122.36685649854223,47.65445401341412],[-122.36632657462216,47.65423685851915],[-122.36583915714056,47.65477318761798],[-122.36580168082857,47.65477531976429],[-122.36577696468186,47.65479733167293],[-122.36570835216938,47.65477576167029],[-122.36598755917305,47.65443829070319],[-122.36615147114148,47.65425099751903],[-122.36635299034684,47.6540316647563],[-122.36653754305233,47.65382189996144],[-122.36666013312971,47.65367847778732],[-122.36643421398692,47.65358636241987],[-122.36607208771245,47.65400172747471],[-122.3657017574534,47.65386356857573],[-122.36577937589304,47.65374324574622],[-122.36557900573838,47.65365738296701],[-122.3656964796568,47.6535124025008],[-122.36580526534443,47.65334804504868],[-122.36579060768689,47.65326379619309],[-122.3657112658369,47.6532223626428],[-122.36558328541497,47.65318295405166],[-122.3655064811663,47.65315875232019],[-122.36550246642966,47.65309136942503],[-122.36548421634187,47.65305733967935],[-122.36514126675975,47.65298736124303],[-122.36499788968288,47.65294186147764],[-122.36494736598968,47.65284545578532],[-122.36477148073077,47.65279846467018],[-122.36463126832624,47.65275703467677],[-122.3645879021925,47.65276584405985],[-122.36452396089963,47.65283388343794],[-122.36447576645975,47.6528509836086],[-122.3643383969975,47.65283719223894],[-122.36427468386243,47.65284408984544],[-122.36419971825521,47.65284783982333],[-122.36400810798595,47.6528180681031],[-122.36393897379143,47.65277868064021],[-122.36382587972562,47.65276237753126],[-122.3637385019499,47.65286145092247],[-122.36366240874186,47.65286135948601],[-122.36356904315555,47.65286042890379],[-122.36339136715146,47.65285596126285],[-122.36324388927159,47.65311924941363],[-122.36280366408596,47.65301878044284],[-122.36303723384523,47.65250918214638],[-122.36242127690565,47.65236664309302],[-122.3623371179896,47.65250624539686],[-122.36204330677845,47.65245097929274],[-122.36195405273048,47.65262436794358],[-122.36169670132988,47.65256694051704],[-122.36166433898521,47.65260494930253],[-122.3612820949972,47.65250943771075],[-122.36125064199119,47.65254387805072],[-122.3609993267263,47.65241563238818],[-122.36070076668794,47.65226771148522],[-122.36041948117787,47.65212067253452],[-122.36015381165547,47.65198713349441],[-122.35988011098533,47.65185644336157],[-122.35962457773441,47.65172251032672],[-122.35936512482058,47.65159325622157],[-122.35911499424245,47.65147047469605],[-122.35880557969635,47.65133259166218],[-122.35852294361473,47.65120831637547],[-122.35830254726758,47.65109610296845],[-122.35818082493029,47.65102755430743],[-122.35788402012986,47.65086974863379],[-122.35756602554714,47.65071578231069],[-122.3571061187973,47.65049653429968],[-122.35704755222164,47.65047126865444],[-122.35701356447125,47.65045390035763],[-122.3569744832543,47.65043578593009],[-122.35693739698578,47.6504165311412],[-122.35682924671069,47.65036095242921],[-122.35679328803323,47.65034553836497],[-122.3567212811312,47.65031166946577],[-122.35664411634859,47.65027487040399],[-122.3566222417622,47.65025541167508],[-122.35656463326148,47.65022820504411],[-122.3565214957539,47.65021014507496],[-122.35645553373867,47.65017482388044],[-122.35638763984787,47.65014282769036],[-122.3563239963712,47.65011737266901],[-122.3562890991902,47.65010357244454],[-122.3562253027687,47.65007289228441],[-122.35618728328684,47.6500563915865],[-122.35615130118131,47.65004016371775],[-122.3560545957749,47.64999428532623],[-122.35599074266915,47.64996167786864],[-122.35584866432156,47.64989065712897],[-122.35581165911299,47.64987414274789],[-122.35575715046679,47.6498488222021],[-122.35563377501852,47.64979288928495],[-122.35555060738652,47.64975891159794],[-122.35549716013436,47.64973520493392],[-122.35543043490392,47.64970841969597],[-122.35537594991452,47.64968391257631],[-122.35530406572212,47.64965415428685],[-122.35522274980569,47.64961411056773],[-122.35512104812888,47.64957078346018],[-122.35499349764314,47.64951079253994],[-122.3548824767073,47.64946099135243],[-122.35479819207714,47.64942347228729],[-122.35475394533867,47.64940212728432],[-122.35465737894198,47.6493609160054],[-122.35453680728429,47.64929671822917],[-122.35448037584177,47.64927497889235],[-122.35443926786655,47.6492568910429],[-122.35435408085955,47.64922319674574],[-122.35431917779782,47.64920913874327],[-122.35427173605419,47.64918260910552],[-122.35423472485739,47.64916583738854],[-122.35414414741771,47.64912124684527],[-122.3540442757133,47.64907103904179],[-122.35395892894564,47.64903186254584],[-122.35392599776793,47.64901585016707],[-122.35381913188395,47.64896929168581],[-122.35377689014855,47.64894710562152],[-122.3537162989304,47.64892186534036],[-122.35365256882649,47.64889336808601],[-122.3535797210203,47.64886529225956],[-122.35352307330754,47.64883614337714],[-122.35348096828994,47.64881862550449],[-122.3534223890877,47.64879280120765],[-122.35335460330477,47.64876435793069],[-122.3532784566803,47.64872754305808],[-122.35320465916016,47.64870166486781],[-122.3531614677443,47.64868167609984],[-122.35311013131289,47.648660682017],[-122.35304432629742,47.64863058393314],[-122.35296528204171,47.64859873456751],[-122.35285939182228,47.64855079126459],[-122.35280389579184,47.64852629678849],[-122.35274944581957,47.64850290198358],[-122.35271764948752,47.64849098724141],[-122.35266829386403,47.64846833869483],[-122.35261490608225,47.6484465578449],[-122.35256452903853,47.6484236656151],[-122.35247920821888,47.64838530161183],[-122.35236188420079,47.64832791358571],[-122.35228470918145,47.64829055478168],[-122.3522169566752,47.64826322405558],[-122.35216657123223,47.64824003203053],[-122.35208030259018,47.64820390839099],[-122.35203090749053,47.64817988917918],[-122.35196416101817,47.64815224515293],[-122.35189830102553,47.64812021923129],[-122.35185112667021,47.64810276802422],[-122.35179461708704,47.64807828658499],[-122.35171662844003,47.64804779321941],[-122.35165912124266,47.6480238816692],[-122.35158403893024,47.64798867969161],[-122.35150491702916,47.64795408817604],[-122.35145364650111,47.64793532084899],[-122.35138159065873,47.64789952103802],[-122.35133537439722,47.64788012892391],[-122.35125935104338,47.64784742421131],[-122.35114841725039,47.64780036051002],[-122.35108983285716,47.64777427819613],[-122.35101676299927,47.6477384920272],[-122.35091089257833,47.64769110369761],[-122.35085642860152,47.64766715119367],[-122.35076487518874,47.64762368504663],[-122.35069297221105,47.64759310989797],[-122.35064248436679,47.64756636246586],[-122.35059423198099,47.64754669745425],[-122.35054998856495,47.64752535081671],[-122.35047304794395,47.64749595666134],[-122.35043504893582,47.64748001082136],[-122.3503797708365,47.64746292425423],[-122.35032581037038,47.64745623118234],[-122.35025065161112,47.64745311933081],[-122.35012162862704,47.64744661182647],[-122.35007963706312,47.64743290424482],[-122.35004444028395,47.64740869471672],[-122.35001514375695,47.64737810898229],[-122.34998581529256,47.64734640930948],[-122.34995993726021,47.6473286736806],[-122.3499106476509,47.64730820828146],[-122.34983955973398,47.64727076679012],[-122.34976533618244,47.64724754829922],[-122.34975222641995,47.64643278634308],[-122.34975283959349,47.6464016302419],[-122.34975248951292,47.64637224396714],[-122.34975163146741,47.64634282163782],[-122.34974975947014,47.64631341281189],[-122.34974738199656,47.646284053186],[-122.34974449678133,47.64625470067291],[-122.34974059938577,47.64622540445892],[-122.34973619475981,47.6461961149998],[-122.34973128591996,47.64616691789417],[-122.34972536261712,47.64613773429836],[-122.34971893635087,47.64610868585859],[-122.34971149562443,47.64607965092838],[-122.34970355245592,47.64605075114704],[-122.34969510280239,47.64602190128053],[-122.34968564222729,47.64599315051477],[-122.34967567764528,47.64596453456736],[-122.3496652081387,47.64593596851356],[-122.3496537291723,47.64590758717924],[-122.34964174601244,47.64587929854786],[-122.34962925936836,47.6458511447272],[-122.34961576379739,47.64582317596918],[-122.34960176350627,47.64579529956955],[-122.34958726151112,47.6457676011267],[-122.3495717500733,47.64574008775253],[-122.34955573619413,47.64571270917411],[-122.34957906345045,47.64486027337093],[-122.34958086834332,47.64297404008436],[-122.35018422401426,47.64281137933051],[-122.3516229216077,47.64238938350904],[-122.35256197183675,47.6421733907647],[-122.35355096041368,47.64201777617362],[-122.35446732832848,47.64185905320803],[-122.3555570925173,47.64185464239103],[-122.35555991867008,47.64143143338312],[-122.35688507776888,47.64142981770716],[-122.35690211242824,47.64086876013798],[-122.35691102485205,47.6400304808306],[-122.35691749971927,47.63959368411729],[-122.35961912468366,47.63959652919302],[-122.3615279021176,47.63959298879048],[-122.36339825819388,47.63959357451208],[-122.3651383319505,47.63959592528855],[-122.36661121179846,47.63958342526136],[-122.36845513504291,47.63959902260758],[-122.37030369305306,47.63959978881978],[-122.37155402616838,47.63959027179747],[-122.37155190313145,47.63970709416235],[-122.37153226946488,47.64068930777729],[-122.37158398715799,47.64068890912795],[-122.37223349177721,47.64068351642766],[-122.37399540118113,47.6406854375568],[-122.37436496822423,47.64068043596606],[-122.37442138210304,47.64075293610021],[-122.37494750952519,47.64144426165954],[-122.37530933301626,47.64191339173101],[-122.37602235434947,47.64285183545935],[-122.37616942305294,47.64293690245122]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000329,"geom:area_square_m":2742847.551202,"geom:bbox":"-122.376377846,47.6395834253,-122.349555736,47.6579308926","geom:latitude":47.647136,"geom:longitude":-122.365293,"iso:country":"US","lbl:latitude":47.646255,"lbl:longitude":-122.365041,"lbl:max_zoom":18,"mps:latitude":47.646255,"mps:longitude":-122.365041,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["N Queen Anne"],"reversegeo:latitude":47.646255,"reversegeo:longitude":-122.365041,"src:geom":"seagv","wof:belongsto":[85843445,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"65478ed7b489a386b0a6c7f418d3ab9a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128289,"neighbourhood_id":85843445,"region_id":85688623}],"wof:id":907128289,"wof:lastmodified":1566608547,"wof:name":"North Queen Anne","wof:parent_id":85843445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869545],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128291.geojson b/fixtures/microhoods/907128291.geojson new file mode 100644 index 0000000..f096a7f --- /dev/null +++ b/fixtures/microhoods/907128291.geojson @@ -0,0 +1 @@ +{"id":907128291,"type":"Feature","bbox":[-122.35700056296288,47.62801853034868,-122.34025913073472,47.64724754829922],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.35691749971927,47.63959368411729],[-122.35691102485205,47.6400304808306],[-122.35690211242824,47.64086876013798],[-122.35688507776888,47.64142981770716],[-122.35555991867008,47.64143143338312],[-122.3555570925173,47.64185464239103],[-122.35446732832848,47.64185905320803],[-122.35355096041368,47.64201777617362],[-122.35256197183675,47.6421733907647],[-122.3516229216077,47.64238938350904],[-122.35018422401426,47.64281137933051],[-122.34958086834332,47.64297404008436],[-122.34957906345045,47.64486027337093],[-122.34955573619413,47.64571270917411],[-122.3495717500733,47.64574008775253],[-122.34958726151112,47.6457676011267],[-122.34960176350627,47.64579529956955],[-122.34961576379739,47.64582317596918],[-122.34962925936836,47.6458511447272],[-122.34964174601244,47.64587929854786],[-122.3496537291723,47.64590758717924],[-122.3496652081387,47.64593596851356],[-122.34967567764528,47.64596453456736],[-122.34968564222729,47.64599315051477],[-122.34969510280239,47.64602190128053],[-122.34970355245592,47.64605075114704],[-122.34971149562443,47.64607965092838],[-122.34971893635087,47.64610868585859],[-122.34972536261712,47.64613773429836],[-122.34973128591996,47.64616691789417],[-122.34973619475981,47.6461961149998],[-122.34974059938577,47.64622540445892],[-122.34974449678133,47.64625470067291],[-122.34974738199656,47.646284053186],[-122.34974975947014,47.64631341281189],[-122.34975163146741,47.64634282163782],[-122.34975248951292,47.64637224396714],[-122.34975283959349,47.6464016302419],[-122.34975222641995,47.64643278634308],[-122.34976533618244,47.64724754829922],[-122.3497044115099,47.64722813731962],[-122.34966738693,47.64721080697986],[-122.3496216825897,47.6471741413357],[-122.34957415820806,47.64714461213654],[-122.34953474561735,47.64711497455521],[-122.34951086332983,47.64709609859884],[-122.34947869271122,47.64707129160522],[-122.34939230677364,47.64699622227209],[-122.34935178429059,47.64696330056133],[-122.34931621234112,47.6469262001623],[-122.34928612603474,47.64690329329152],[-122.34923797965777,47.6468872252412],[-122.34921312356985,47.6468697331109],[-122.34917647414174,47.64683046182285],[-122.34913748420028,47.64678051052171],[-122.34907965149021,47.64671054489454],[-122.34901265282728,47.64663932997575],[-122.34897577152144,47.64659209274903],[-122.34894846456376,47.64656010899868],[-122.3489273849364,47.64653296938948],[-122.34888427597662,47.64648088799212],[-122.34885903698604,47.64645024761879],[-122.34883897192418,47.64642309449076],[-122.34877627691554,47.64636030530923],[-122.34873652213831,47.64631889002585],[-122.34874053774449,47.64628263351456],[-122.34879566220066,47.64625970680045],[-122.34878480320542,47.64623517298141],[-122.34874557444756,47.64617699885418],[-122.34872031197526,47.64614554484652],[-122.3486681573585,47.64609632560133],[-122.348624250972,47.64605166633562],[-122.34856499038958,47.64600228469361],[-122.34856007973103,47.64597300193179],[-122.3485185770749,47.64594120698975],[-122.348489752736,47.64592676662521],[-122.34843236167376,47.6459067077978],[-122.34839948159852,47.64589232137696],[-122.34836653041543,47.64587549378562],[-122.3483109757151,47.64584881277363],[-122.34826573643947,47.64582803553176],[-122.34821237691501,47.64580706621957],[-122.34817753343059,47.64579493351729],[-122.3481282621964,47.6457750241325],[-122.34808874005734,47.64577636382573],[-122.3480511816627,47.64577549254194],[-122.34799814986246,47.64576578693045],[-122.34789190221449,47.64574003695715],[-122.34782855518026,47.64572442743557],[-122.34778643837373,47.64570635031816],[-122.34773565773308,47.64566945173219],[-122.34766771199489,47.64563526598758],[-122.34762744734833,47.64561112349298],[-122.34756873124306,47.64558037105679],[-122.34753576431281,47.64556298643802],[-122.34745977042672,47.64553109279009],[-122.34738974054277,47.64549500667491],[-122.34734458975123,47.64547722700852],[-122.3472932912534,47.64545734387537],[-122.34719375239305,47.64541809388479],[-122.34713978052565,47.6453934908231],[-122.34707769368876,47.64536890963025],[-122.34699336522267,47.64532945760649],[-122.34693268551531,47.64530091579415],[-122.34687822536506,47.64527696174358],[-122.34681059981496,47.6452537393146],[-122.3467411528591,47.64523765327782],[-122.34669206592483,47.64522403878896],[-122.34663557113724,47.64519985440013],[-122.34656879095854,47.64517083682515],[-122.34650715382956,47.64514423578972],[-122.34646416734894,47.6451310971355],[-122.34640997924967,47.64511647878025],[-122.34633202240416,47.64508679567216],[-122.3462929085496,47.64506730719216],[-122.34624743899346,47.64503856326825],[-122.34623157484735,47.64501628091824],[-122.34620365519963,47.6449980145915],[-122.34614854156287,47.64495157574564],[-122.34610328825276,47.64493024085009],[-122.34604568368329,47.64490277207705],[-122.34595824219359,47.64486087538812],[-122.34590284927155,47.64483967511558],[-122.34585471332052,47.64482386245063],[-122.34578025366595,47.64480977034933],[-122.34573149498294,47.64480741889653],[-122.34569644348751,47.64482296564709],[-122.34564840971423,47.64484553977049],[-122.34560757858954,47.64483674220021],[-122.34555637728585,47.64482015585378],[-122.3455063966967,47.64481066584418],[-122.34547742172147,47.644825874559],[-122.34543762075671,47.6448176202496],[-122.34541073764456,47.64483498635667],[-122.34535141429367,47.64485304016159],[-122.34527536623061,47.64481921788364],[-122.3452187524799,47.64479092127375],[-122.34515204635404,47.64476438682654],[-122.34511286148715,47.64474241396825],[-122.34505226267738,47.64471661264471],[-122.34498026374021,47.64468247914865],[-122.34495141047354,47.64466696710929],[-122.34496492914239,47.6446434805878],[-122.34498835594545,47.64461189321497],[-122.34500344052012,47.64457249080466],[-122.34496839070462,47.64455320519249],[-122.34486981322888,47.64451201252997],[-122.34483308723459,47.64450483084624],[-122.34480001857588,47.64448389069693],[-122.34480327753958,47.64445642727568],[-122.34481258120854,47.64442751269264],[-122.34478062984732,47.64441011381621],[-122.3447262985781,47.64439052672716],[-122.34465451565369,47.64436380247138],[-122.34461351827973,47.64434926545983],[-122.3445281632403,47.64430926827958],[-122.34442809475628,47.64425164293964],[-122.34438780032586,47.64422638572375],[-122.34432456983632,47.64417979647808],[-122.34426858098603,47.64413803813179],[-122.34420828045415,47.64408755409945],[-122.34416338186057,47.6440434633525],[-122.34413831357638,47.64401856101607],[-122.34408877788813,47.6439545239189],[-122.3440548414078,47.64390368999683],[-122.34404258926531,47.64386602134449],[-122.3440548622756,47.64383458215443],[-122.34405990356349,47.64379861197239],[-122.34405710309443,47.64377204324327],[-122.34403815874829,47.64374843055311],[-122.34399681987635,47.64372211552808],[-122.3439470396861,47.6437194771436],[-122.34389178888964,47.64373803316926],[-122.3438229507125,47.64374280260357],[-122.34379146414615,47.64370645992607],[-122.34375985126894,47.64366574924037],[-122.34379392048783,47.64365133011754],[-122.34385804182581,47.64362387323413],[-122.34391017066196,47.64360261645134],[-122.34388510271152,47.64357771405882],[-122.34386175332882,47.64354212053517],[-122.34380816977965,47.64347839394255],[-122.34377402106793,47.64349007228597],[-122.3437268821693,47.64350852062312],[-122.34364270451168,47.64354391234352],[-122.34357210120587,47.64355774483106],[-122.34353454718871,47.64352203991771],[-122.34351419997037,47.64348503558658],[-122.34355717085916,47.64346278642757],[-122.34360528387433,47.64344295432],[-122.34368297995177,47.64339393835181],[-122.34366185760344,47.64336517019866],[-122.34365102475576,47.64334144985003],[-122.34368927677319,47.64333134529862],[-122.34366214146598,47.64330509936373],[-122.34363555113794,47.64326269383725],[-122.34360813725968,47.64322685409328],[-122.34358793262454,47.64319477491301],[-122.34355069778944,47.64317003383512],[-122.34349254080784,47.64319329833314],[-122.34343332189248,47.64321490587908],[-122.34336520121886,47.64324434348956],[-122.3432873251172,47.64325223122655],[-122.34324764780509,47.64319577473416],[-122.34319589647204,47.6432125705451],[-122.34312466134521,47.64323956438636],[-122.34307938361025,47.6432522464797],[-122.34305315934351,47.64322243221593],[-122.34304143581495,47.6431680042823],[-122.34302655642936,47.64314463761929],[-122.34300335774896,47.64311422587492],[-122.3429722997736,47.64312753365311],[-122.34293214679502,47.64314203319351],[-122.34288001750164,47.64316328953576],[-122.342786785847,47.64320128558469],[-122.34271050466691,47.64322915997835],[-122.3426633656377,47.64324760822627],[-122.34260907284532,47.64326422300964],[-122.34256849416751,47.64322911453358],[-122.34253190825386,47.64319176828268],[-122.3425358247767,47.64315195724649],[-122.34260598974355,47.64312305004021],[-122.34266017921381,47.64310288051817],[-122.34269113459563,47.64308601807818],[-122.34266702543276,47.64305917479663],[-122.34262061420719,47.64299783751557],[-122.34256097302054,47.64293500457895],[-122.34252738921141,47.64289624761576],[-122.34248834522305,47.64284411003499],[-122.34246607387436,47.64281068678952],[-122.34250205932321,47.64279238680871],[-122.3425307550939,47.64276758540871],[-122.34257094766805,47.64275445640197],[-122.34255190866341,47.64272754589145],[-122.34253290198662,47.64270174860221],[-122.34251683381461,47.6426723562526],[-122.34254785238173,47.64265767819921],[-122.34258897920336,47.64264179496212],[-122.3426762380593,47.64260773408388],[-122.34276565136221,47.64257801460104],[-122.34281783605705,47.64255868549064],[-122.34285390025896,47.64254312654076],[-122.34289803673163,47.64252608928383],[-122.3429350351825,47.64250777537971],[-122.34296257425096,47.64247806217433],[-122.34296375906256,47.64244899848069],[-122.34296660484455,47.64240727334793],[-122.34295776100565,47.64238215564752],[-122.34295354197681,47.64234163819041],[-122.34293930997588,47.64230562387018],[-122.3429339415828,47.64226045189069],[-122.3429460015611,47.64222164651484],[-122.34291753453213,47.6421844496609],[-122.34289222904556,47.64215132434438],[-122.3428658226831,47.64211521416114],[-122.34283916149859,47.64207032412874],[-122.34282102583754,47.64203958866371],[-122.34276627636254,47.64200548205805],[-122.3427202356494,47.64199182552522],[-122.3426980440779,47.64196114345972],[-122.34265551401195,47.64189371407129],[-122.3426261292096,47.64185982815669],[-122.34259921024056,47.64184099106762],[-122.34256445824929,47.64183185459213],[-122.34252611140535,47.64183866084285],[-122.34248448431983,47.64183728469148],[-122.34244551728831,47.64182272037169],[-122.34240199049137,47.64182578221482],[-122.3423537430471,47.64184094549907],[-122.34229835822664,47.64185483278766],[-122.34226618683837,47.64182976693549],[-122.34220899254957,47.64174633656206],[-122.34218581165538,47.64171648178147],[-122.3422054462943,47.64169402819365],[-122.34225592765448,47.64168594722921],[-122.34233284362541,47.64168000081472],[-122.3423514394719,47.64165670423144],[-122.34230718436267,47.64159970864098],[-122.3422512750245,47.64152560113228],[-122.34220699651951,47.64146779154703],[-122.34219816935223,47.64144323022379],[-122.34224534668442,47.64142615291075],[-122.34228044362926,47.64141223478804],[-122.34230614615646,47.64138914411051],[-122.3422898001578,47.64135015862937],[-122.34225574783484,47.64129521263864],[-122.34222908759729,47.64125032246224],[-122.34219857029558,47.64121233869548],[-122.3421320850913,47.64112329047569],[-122.34211799740591,47.64109220117789],[-122.34208576687232,47.64103011878338],[-122.34207184645676,47.64100481102773],[-122.34205280088987,47.64097764326439],[-122.3420337391896,47.64094991871005],[-122.34198376297785,47.64087050569996],[-122.34196366338362,47.64084198097008],[-122.34190520703663,47.64078491614384],[-122.34182568522891,47.640700967169],[-122.34179801183284,47.64065609067452],[-122.34180200770915,47.64061902045272],[-122.34179797979664,47.64058505564503],[-122.34177773807316,47.64055160574134],[-122.34175306656299,47.64050531819493],[-122.34171634723643,47.64046330371973],[-122.34168086467437,47.64042894171372],[-122.34162947419632,47.64037066914161],[-122.34159535986007,47.64031353860318],[-122.34157742428035,47.64028965525321],[-122.34156026406818,47.64025753541146],[-122.34152102429395,47.64019854482903],[-122.34147742746167,47.64012920089551],[-122.3414465300819,47.6400780690837],[-122.34142861823562,47.64005499896429],[-122.34140152551844,47.64003012288088],[-122.34134626246993,47.63997819978138],[-122.3413043716043,47.63993269722292],[-122.34128850420555,47.6399101573568],[-122.34127234942842,47.63987772407241],[-122.34123608842586,47.63981650910941],[-122.34121184793122,47.63978503999549],[-122.34119551070329,47.63974631117243],[-122.3411736034155,47.63969038976527],[-122.34114199187377,47.63961458903579],[-122.3411107052363,47.63955000931774],[-122.34107584018021,47.63950192871338],[-122.34103428830915,47.63943311454431],[-122.34101725535847,47.6394053629669],[-122.34097938079148,47.63935843619244],[-122.34095715961728,47.63932664055324],[-122.34093481130469,47.63929047621853],[-122.34090338532876,47.63925606026935],[-122.34085192907534,47.6392304354905],[-122.34083475352077,47.63919775875041],[-122.34082692506279,47.63917262710714],[-122.34081062059307,47.6391350118041],[-122.34076192207543,47.63913454260131],[-122.3406519069108,47.63911817619779],[-122.34063353523767,47.63907921732093],[-122.34061097251725,47.6390356438177],[-122.34058526537179,47.63898855583296],[-122.34056608602138,47.63895671950083],[-122.3405299461696,47.6388996158348],[-122.34049410747264,47.63885291887276],[-122.34046003510328,47.63879715873561],[-122.34045822696197,47.63876976253716],[-122.34054470623315,47.63876146267081],[-122.34045625251382,47.63873662759765],[-122.34043488685788,47.63869933616061],[-122.34040574095528,47.63863858376876],[-122.34038222862026,47.63859720763143],[-122.3403489879112,47.63853513851144],[-122.34032994362946,47.63850797046475],[-122.3402823207456,47.6384745826666],[-122.34028562142747,47.63844848976287],[-122.34029092665224,47.6384215564086],[-122.34029018825703,47.63839607396937],[-122.34028490146746,47.63835364265309],[-122.34029611501693,47.63832059006453],[-122.34029317405161,47.63828909610231],[-122.3402788817072,47.63825089709568],[-122.34025913073472,47.63819931736387],[-122.34026754062084,47.63817452775237],[-122.34028600211846,47.63814660633868],[-122.34031342125165,47.63811278223919],[-122.34029415552031,47.63807794790574],[-122.34026461765728,47.63802114215133],[-122.34055828891117,47.63800525856534],[-122.3410274500674,47.63800774362823],[-122.34153539302719,47.63800101577162],[-122.34192129252135,47.63800027292673],[-122.3432866247616,47.6376388212402],[-122.3438089059976,47.63746240186711],[-122.34438033880191,47.63742439959434],[-122.34386050849504,47.63667244516021],[-122.34384156506167,47.63664878963625],[-122.34382362970408,47.63662490628662],[-122.34380619528928,47.63660080219132],[-122.34378926254087,47.63657652016031],[-122.34377283270138,47.63655210299665],[-122.34375741093427,47.63652745800871],[-122.34374198420947,47.63650264180731],[-122.34372756701367,47.63647768375246],[-122.34371365250895,47.63645254739847],[-122.34370024090978,47.63642727591294],[-122.34368783811261,47.63640181976508],[-122.34367543408455,47.63637632081301],[-122.34366353596522,47.63635077232871],[-122.3436516348525,47.63632513824438],[-122.34364023839447,47.63629941147433],[-122.34362934785372,47.63627363552324],[-122.3436184560706,47.63624781641746],[-122.34360857556999,47.6362218982562],[-122.34359818669815,47.63619594401899],[-122.3435888091074,47.63616989072665],[-122.3435794320451,47.63614383742661],[-122.34357055912461,47.63611769179939],[-122.34356168497011,47.63609150336861],[-122.34355331619935,47.63606526541361],[-122.34354545509268,47.63603902072361],[-122.34353809759612,47.6360126833628],[-122.34353073939337,47.63598630354264],[-122.34352388656174,47.63595987384775],[-122.34351703374725,47.63593344450331],[-122.34351068557905,47.63590692247454],[-122.34350484455236,47.63588039371806],[-122.3434995101575,47.63585385859167],[-122.34349417327216,47.63582723750853],[-122.34348934300748,47.6358006097047],[-122.34348501988168,47.63577397517342],[-122.34348069552769,47.63574729818997],[-122.34347687705856,47.63572057132544],[-122.34347356520747,47.63569383774044],[-122.34347025335981,47.63566710415533],[-122.3434674486482,47.63564036384295],[-122.34346514931,47.63561357400732],[-122.34346285049327,47.6355867841648],[-122.34346105777263,47.63555998760881],[-122.34345977270455,47.63553318431876],[-122.34345899300729,47.6355063315056],[-122.34345821455366,47.63547952149523],[-122.34345794271259,47.63545270476462],[-122.34345767139087,47.63542588802706],[-122.34345841381104,47.63539905784215],[-122.34345864909018,47.6353722340335],[-122.34347629346767,47.63419854599283],[-122.34349456701332,47.63306400852461],[-122.34350395076238,47.63205992078453],[-122.34351748119543,47.63130345865996],[-122.34351878711756,47.63068481685864],[-122.34353999108991,47.62877810575626],[-122.34353549795057,47.62827406289586],[-122.34354009231936,47.62811796409474],[-122.3435427826221,47.62801853034868],[-122.34401990594378,47.6280189255065],[-122.34621725175454,47.62803262805185],[-122.34689164848851,47.62803437365854],[-122.3475356203179,47.62803600582774],[-122.34767092669819,47.62806843812788],[-122.3478835634831,47.62807503454065],[-122.34842426930996,47.62809980056651],[-122.34921808428562,47.62811065362755],[-122.34985228784483,47.6281076042142],[-122.35001391686286,47.62810373686429],[-122.3501549466494,47.62814110265067],[-122.35146295672008,47.62813686096191],[-122.35261350964325,47.62814044695595],[-122.35327972860534,47.62813986460019],[-122.35366869623483,47.6281424676533],[-122.35457253265007,47.62813574705766],[-122.35526283631327,47.62812651932159],[-122.35538731153505,47.62806585884652],[-122.35583971881567,47.62807056210313],[-122.35668051316364,47.62807537950631],[-122.35667483288812,47.62895483165617],[-122.35660812738733,47.62989739575093],[-122.35660893842427,47.63060032896264],[-122.35659918067857,47.6306999863749],[-122.35659797600883,47.6314899199017],[-122.35659350223463,47.63208165741356],[-122.35659576752465,47.63210707660545],[-122.35660108439816,47.63213279786959],[-122.35660993809643,47.63215808572846],[-122.35662391339106,47.63218510487327],[-122.35663981821081,47.6322087561718],[-122.35665923855785,47.63223124641584],[-122.35668115774261,47.63225250392104],[-122.35670658293947,47.632272257589],[-122.3567339890943,47.63229039936799],[-122.35678196215271,47.63231824879948],[-122.35682024358175,47.63234412835968],[-122.35684515926967,47.63236380317787],[-122.35686857928378,47.63238435474888],[-122.35689050488763,47.63240582622716],[-122.35691042499334,47.63242805282511],[-122.35692955924745,47.63245808764415],[-122.35695755397532,47.63249631540803],[-122.35696993850115,47.63252095651097],[-122.35698030695865,47.63254600997232],[-122.35698865758252,47.63257143334771],[-122.35699448053487,47.63259710465221],[-122.35699878773333,47.63262296787335],[-122.35700056296288,47.63264895027223],[-122.35700031083454,47.63267496015783],[-122.35699752172489,47.63270091836132],[-122.3569932067981,47.63272672535846],[-122.35697890503653,47.63391755566148],[-122.35697060927158,47.63512300103041],[-122.35694651183476,47.63651610109523],[-122.35693787260372,47.63751945501409],[-122.35693021170965,47.638383123982],[-122.35691749971927,47.63959368411729]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000215,"geom:area_square_m":1793218.300948,"geom:bbox":"-122.357000563,47.6280185303,-122.340259131,47.6472475483","geom:latitude":47.636109,"geom:longitude":-122.349527,"iso:country":"US","lbl:latitude":47.635426,"lbl:longitude":-122.350523,"lbl:max_zoom":18,"mps:latitude":47.635426,"mps:longitude":-122.350523,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":14,"name:eng_x_variant":["E Queen Anne"],"reversegeo:latitude":47.635426,"reversegeo:longitude":-122.350523,"src:geom":"seagv","wof:belongsto":[85843445,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e53908d7331e4851b8f186b7797f77c8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128291,"neighbourhood_id":85843445,"region_id":85688623}],"wof:id":907128291,"wof:lastmodified":1566608549,"wof:name":"East Queen Anne","wof:parent_id":85843445,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869203],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128293.geojson b/fixtures/microhoods/907128293.geojson new file mode 100644 index 0000000..5fc3ba0 --- /dev/null +++ b/fixtures/microhoods/907128293.geojson @@ -0,0 +1 @@ +{"id":907128293,"type":"Feature","bbox":[-122.3284318023518,47.70322375809541,-122.32328735382036,47.7086216147159],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.32330718131799,47.70859416015759],[-122.32328735382036,47.70322375809541],[-122.3284318023518,47.70323763410401],[-122.32839189838026,47.7086216147159],[-122.32795106118121,47.70861789028061],[-122.32683273017967,47.70861335232052],[-122.32372393475376,47.70859645500992],[-122.32330718131799,47.70859416015759]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":228840.950487,"geom:bbox":"-122.328431802,47.7032237581,-122.323287354,47.7086216147","geom:latitude":47.705914,"geom:longitude":-122.325856,"iso:country":"US","lbl:latitude":47.705919,"lbl:longitude":-122.325856,"lbl:max_zoom":18,"mps:latitude":47.705919,"mps:longitude":-122.325856,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.705919,"reversegeo:longitude":-122.325856,"src:geom":"mz","wof:belongsto":[85832315,102191575,890536781,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"878f3ccaf332d4d094868909e15f8c4b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"macrohood_id":890536781,"microhood_id":907128293,"neighbourhood_id":85832315,"region_id":85688623}],"wof:id":907128293,"wof:lastmodified":1566608547,"wof:name":"Northgate Mall","wof:parent_id":85832315,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128529.geojson b/fixtures/microhoods/907128529.geojson new file mode 100644 index 0000000..5b739a4 --- /dev/null +++ b/fixtures/microhoods/907128529.geojson @@ -0,0 +1 @@ +{"id":907128529,"type":"Feature","bbox":[-122.31473017521375,47.61449768877453,-122.29243607691402,47.63916691508182],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.31359423755785,47.63594274147024],[-122.31359854809222,47.63629019034796],[-122.31359193445014,47.63748317280486],[-122.31398687948335,47.63774692379108],[-122.31470966936907,47.63826839754662],[-122.31471562267092,47.63878004473624],[-122.31472452058617,47.63880756336118],[-122.31472937370141,47.63883551998681],[-122.31473017521375,47.63886365778803],[-122.31472742566935,47.63889175615685],[-122.3147201027001,47.6389195283117],[-122.31470921281144,47.63894670459228],[-122.31469475040113,47.63897307027347],[-122.31467670711085,47.63899836854853],[-122.31465507735965,47.63902238539335],[-122.31462985503823,47.63904490643932],[-122.31460204961701,47.63906574762521],[-122.31457114607176,47.63908465803372],[-122.31453764792529,47.63910150300548],[-122.31450205746309,47.63911610437665],[-122.31446437225989,47.63912837688984],[-122.31442560246417,47.63913817824297],[-122.31438523848222,47.63914542977712],[-122.31434430267417,47.63915041792447],[-122.31430335518826,47.63915497801893],[-122.31426189198224,47.6391592447229],[-122.31422041971841,47.63916321179651],[-122.31417944781532,47.63916691508182],[-122.31392171043453,47.63907382614149],[-122.31378500226458,47.63902800427301],[-122.31340184907287,47.63889378702759],[-122.31317183633936,47.63881254642757],[-122.3128698055293,47.63871321844547],[-122.3126669321291,47.63869460420715],[-122.31253882881536,47.63868380133135],[-122.31244727499462,47.63870992585291],[-122.3123286079062,47.63876343674247],[-122.31220183806865,47.63879952996815],[-122.31206404712698,47.63882257023145],[-122.3120280981436,47.63882457933045],[-122.311923783286,47.63882996157262],[-122.3117835519174,47.63882068626226],[-122.31164436851923,47.63879473076531],[-122.31151483649084,47.6387515123759],[-122.31131697651465,47.63864161676731],[-122.31129289828921,47.63861519486682],[-122.31115478110758,47.6384661351541],[-122.31110611489298,47.63841321226257],[-122.31106483993781,47.63837056192224],[-122.31102307055839,47.63832834582377],[-122.3109797954109,47.63828666378368],[-122.31093454939054,47.63824702085147],[-122.31089709072633,47.63819588032291],[-122.31086651901633,47.63815510454852],[-122.31082282219363,47.63806287206639],[-122.3108013060731,47.63796598208093],[-122.31080639123894,47.63787722959219],[-122.31080876445014,47.63783581180894],[-122.31083179233447,47.63780740757477],[-122.31096604058052,47.63764191710012],[-122.3110169928338,47.63757900366961],[-122.3110871550185,47.63751395613218],[-122.3111636562569,47.63740431173469],[-122.31116810722197,47.6372932461348],[-122.31116668321272,47.63701113921494],[-122.31116396056193,47.63682608991882],[-122.31114957744182,47.63671252663223],[-122.31110073332293,47.63656406501595],[-122.31108036595619,47.63654329299538],[-122.31105699745429,47.63652397400539],[-122.31103113808332,47.63650622952685],[-122.31100329812791,47.63649018174259],[-122.31097247093496,47.63647605781181],[-122.31094068666489,47.6364639601902],[-122.31090693326934,47.63645394448014],[-122.31087172101911,47.63644613251419],[-122.31083555949697,47.63644060366637],[-122.31079946490058,47.63643743038562],[-122.3107502620483,47.63643695527971],[-122.31071482667122,47.63643912859551],[-122.31067894620558,47.63644349319809],[-122.31064464016599,47.63644972209506],[-122.31060989267704,47.63645827068878],[-122.3105767232542,47.63646881198812],[-122.31054462476952,47.63648135327661],[-122.31051460611853,47.63649570983755],[-122.31048666660315,47.63651183886267],[-122.31046080031162,47.63652956880332],[-122.31043700464475,47.63654877158879],[-122.31041628851304,47.6365692628544],[-122.31039814180215,47.63659096288041],[-122.31036373970983,47.63670096047489],[-122.31032145468491,47.63681907168398],[-122.31027094876188,47.63695129974826],[-122.31021282017518,47.6370293866347],[-122.31013361446722,47.63709742156534],[-122.31003425956466,47.63715235055893],[-122.309924227585,47.63718848108709],[-122.30986744631419,47.63720686911352],[-122.30957118409931,47.63729237105142],[-122.30949072787438,47.63744143904693],[-122.3094188191677,47.6375343566822],[-122.3093634714681,47.63754968396276],[-122.30929376218087,47.63754141920206],[-122.30924538523561,47.63751646871652],[-122.30918513054294,47.63746609453614],[-122.30915844717973,47.63740144654575],[-122.30862253112171,47.63645760702416],[-122.30860539981052,47.63642573903444],[-122.30859187165099,47.63639575260729],[-122.30858086725272,47.63636534775338],[-122.30857188189596,47.63633461665157],[-122.30856542394491,47.6363035958847],[-122.30856200244769,47.63627236449465],[-122.3085601006404,47.63624107024206],[-122.3085612401443,47.63620973693033],[-122.30856491796294,47.63617849918312],[-122.30857062989706,47.6361474491716],[-122.30857888327077,47.63611662349122],[-122.30858968223119,47.63608615019344],[-122.30860252085702,47.6360560790035],[-122.30861790992837,47.63602653175841],[-122.30863585185979,47.63599759371269],[-122.30865584074138,47.63596931494211],[-122.30867787899899,47.63594178105207],[-122.30870196955797,47.63591507693934],[-122.30872811262222,47.63588924647181],[-122.30875548861754,47.63587111128969],[-122.30878112066505,47.6358451158054],[-122.30879753184118,47.6358158553705],[-122.30880375143036,47.63578484158413],[-122.30879931970975,47.63575375174916],[-122.30878428043282,47.63572412748147],[-122.30874478920143,47.63570844425788],[-122.30869947858302,47.63570213376434],[-122.30865374709478,47.63569887060691],[-122.30860708810016,47.63569866099935],[-122.30856102129093,47.63570144313071],[-122.30851554854834,47.63570730191309],[-122.30847117389933,47.63571610306131],[-122.30842840220288,47.63572779651408],[-122.30838723034005,47.63574225420771],[-122.3083481612731,47.63575934081938],[-122.30831220442961,47.63577887234812],[-122.30827884848861,47.63580072626271],[-122.30824910044377,47.63582463260557],[-122.30822244883099,47.63585042708098],[-122.30820040500662,47.63587779002766],[-122.30803968358278,47.63612917902692],[-122.3078760431488,47.63638497557302],[-122.30783605558932,47.6364054586983],[-122.30779488059848,47.63641983057099],[-122.30775103976498,47.63642960970162],[-122.30770553837596,47.63643448333555],[-122.3076588799387,47.63643431614264],[-122.30761360159991,47.6364291616057],[-122.30756970578895,47.63641910498197],[-122.30752872140631,47.6364044262077],[-122.30749167315956,47.63638549773879],[-122.30746009705504,47.63636281386816],[-122.30743350242393,47.6363369807697],[-122.30741393725964,47.63630865738291],[-122.3070851063651,47.6361574352864],[-122.3069659831777,47.63614115446069],[-122.30675010319233,47.63616417077894],[-122.30664610268857,47.63614469481589],[-122.30657910947615,47.63610691665794],[-122.30657648884537,47.63590699955031],[-122.30657625424911,47.63586291664685],[-122.30658308843545,47.63569243908549],[-122.30657500977539,47.63558624881927],[-122.30652015706396,47.63549368816509],[-122.3064302298977,47.63543392823276],[-122.30630903861085,47.63541617378905],[-122.306179522386,47.63542676073305],[-122.30609228807947,47.63546207879757],[-122.30592173492641,47.63565309648096],[-122.30565161713021,47.63582012438845],[-122.3053898728605,47.63588888838297],[-122.30491624128163,47.63594261086217],[-122.30474380910097,47.63592401772512],[-122.30454779528814,47.63586057198688],[-122.3044290603385,47.63582209033355],[-122.30428422942369,47.63577533423058],[-122.30384501329989,47.63562938495774],[-122.3033200683322,47.63535669610886],[-122.30283576156044,47.63510425908766],[-122.30230238045313,47.63481976390804],[-122.30199045164701,47.63465567036657],[-122.30196311465811,47.63463931419904],[-122.30193480696077,47.63462451272909],[-122.30190502316299,47.63461131564553],[-122.30187376860651,47.63459989380272],[-122.30184104520703,47.63459033351445],[-122.30180736006967,47.6345826275361],[-122.30177271510902,47.63457686218182],[-122.30173762089427,47.63457311615173],[-122.3017020746657,47.63457134701311],[-122.30165291648488,47.63457236643494],[-122.30144150246812,47.6345738077849],[-122.30140599303384,47.63457332334744],[-122.30136938592221,47.63456989644631],[-122.30133370966969,47.63456350162423],[-122.30130050102072,47.63455471853009],[-122.3012677124791,47.63454284529608],[-122.30123789435308,47.63452840568336],[-122.30121155879347,47.63451160788684],[-122.30118719149803,47.63449268552853],[-122.30116685722409,47.63447289690417],[-122.30104363343548,47.63432907454696],[-122.30060683920709,47.63381882600134],[-122.3003589053017,47.63353214224588],[-122.30011702256459,47.63324418003444],[-122.30011229498218,47.63322037715812],[-122.30010706149683,47.63319662361891],[-122.30010081551409,47.6331729259441],[-122.30009406604434,47.63314936321282],[-122.30008630407946,47.63312585634561],[-122.30007803915828,47.63310248476586],[-122.30006873223589,47.63307814107555],[-122.30005895253557,47.63305500275494],[-122.30004816397549,47.6330320490584],[-122.30003684054077,47.63300811706773],[-122.3000245396413,47.63298548293736],[-122.3000117050664,47.63296191296491],[-122.29999840014,47.63293963431865],[-122.29998408634869,47.63291753994435],[-122.29971853822441,47.63241947737541],[-122.29965087405613,47.63226761202438],[-122.29932680950468,47.63226578767819],[-122.29850066435243,47.63226078587081],[-122.29773963990363,47.63224547213893],[-122.29772183954336,47.63208148178212],[-122.29767165915874,47.63163188483104],[-122.29759458509926,47.63128961419622],[-122.29753088759584,47.6311327373956],[-122.2974368969587,47.63096556057059],[-122.29725110332062,47.63077781060475],[-122.29724688022169,47.63075387233231],[-122.29724114051653,47.630730082371],[-122.29723287190667,47.63070653902562],[-122.29722309271881,47.6306833580074],[-122.29721129706937,47.63066058864041],[-122.29719748563649,47.63063827338321],[-122.29717662077586,47.63061754819007],[-122.29715528862401,47.63059824307661],[-122.29713395235522,47.63057880955582],[-122.29711312249599,47.63055932634947],[-122.29709228973412,47.63053975789013],[-122.297071455088,47.63052010346276],[-122.29705112461806,47.63050035691117],[-122.29703028518529,47.63048053126292],[-122.29700941512748,47.63045963518321],[-122.29698907867252,47.63043967425295],[-122.29696924692185,47.63041962154316],[-122.29694991934609,47.63039947670993],[-122.29693008279831,47.6303792524291],[-122.29691075042525,47.630358936025],[-122.29689192343085,47.6303385703012],[-122.29687309456143,47.63031811896096],[-122.29685426450249,47.63029762481421],[-122.29683543084539,47.63027700225435],[-122.296817102566,47.63025633037529],[-122.296798773087,47.63023561533909],[-122.29678094830965,47.63021480852486],[-122.29676261456163,47.63019392226277],[-122.29674529155241,47.63017293736627],[-122.2967274607967,47.63015191652692],[-122.29662429872221,47.63003550849967],[-122.29656190685033,47.62996249122819],[-122.29650152196722,47.62988871985615],[-122.29644263991213,47.62981428650442],[-122.29638576775214,47.62973918430705],[-122.29633141032906,47.62966336431064],[-122.29627855761524,47.62958696830704],[-122.29609874200638,47.62928693267887],[-122.29608795597514,47.62926397860468],[-122.29607615872713,47.62924112316163],[-122.29606436338771,47.62921835368157],[-122.29605206510286,47.62919571876878],[-122.29603926268925,47.62917317632145],[-122.29602595682218,47.62915076879858],[-122.29601214750222,47.6291284962],[-122.29599783524893,47.62910635851884],[-122.2959835254249,47.62908430679341],[-122.29596820679718,47.62906243930414],[-122.29595289127407,47.62904070022948],[-122.2959365662641,47.6290191025804],[-122.29592024435934,47.62899763334572],[-122.29590341953377,47.62897629937819],[-122.2958865995361,47.62895513662159],[-122.29586877073842,47.62893415809957],[-122.2958509455656,47.6289133079848],[-122.29583211160391,47.6288926424548],[-122.29581328247104,47.62887214813509],[-122.2957939510942,47.6288518315405],[-122.29577462455603,47.62883168650687],[-122.29575428922115,47.62881172570599],[-122.2957339587154,47.62879193611489],[-122.29571312648585,47.62877232424137],[-122.29569077667708,47.62875286066804],[-122.29566544913553,47.62873566297618],[-122.29564012952474,47.62871876525968],[-122.29561380645252,47.62870222297909],[-122.29558647768782,47.62868599369457],[-122.29555915856614,47.6286701068303],[-122.29553184789357,47.62865451993381],[-122.29550300502194,47.62863852417364],[-122.2954747000217,47.62862363548837],[-122.29544486471089,47.62860842355152],[-122.29541607366545,47.62859426971703],[-122.2953862781107,47.62858047097731],[-122.29535649221609,47.62856701535832],[-122.29532517893756,47.62855332208543],[-122.29496112518328,47.62842668191203],[-122.29434536433817,47.6282198128629],[-122.29429220700638,47.62820459989236],[-122.29424618471147,47.62819070974736],[-122.29420014851503,47.62817630523494],[-122.29415460446619,47.62816138056259],[-122.29411005841004,47.6281458857185],[-122.29406549795635,47.62812987721652],[-122.29402092309665,47.62811335470576],[-122.2939773474441,47.62809630517942],[-122.29393426445277,47.62807873513851],[-122.29389116775107,47.62806069425084],[-122.29384907076755,47.62804212599234],[-122.29380695939257,47.62802304407778],[-122.29376584842944,47.62800347795469],[-122.29372472427832,47.62798344097963],[-122.29368460052996,47.62796291944667],[-122.29364497065903,47.62794192055717],[-122.2936058353388,47.6279204867708],[-122.29356719268544,47.62789853247471],[-122.29352904578519,47.62787618608616],[-122.29349139276404,47.62785336234306],[-122.29345423481404,47.62783010369847],[-122.293418078489,47.62780640400609],[-122.29337985357797,47.62778127359359],[-122.29335552714437,47.62776359155535],[-122.29333169748604,47.62774551742015],[-122.29330887010791,47.62772704470445],[-122.29328654019687,47.62770822305347],[-122.29326521308424,47.62768900281637],[-122.29324387756832,47.62766948260074],[-122.2932230113604,47.6276486286287],[-122.29320317731039,47.62762840369698],[-122.29318381255861,47.62760684465874],[-122.29316598892653,47.62758599447366],[-122.29314866462296,47.62756488026741],[-122.2931318389949,47.62754346028272],[-122.29311652802562,47.62752180642571],[-122.29310171640263,47.62749988925017],[-122.29308740583589,47.62747775120214],[-122.29307410167391,47.62745534333323],[-122.29306129925878,47.62743275775324],[-122.29304950615807,47.62740998760221],[-122.29303818235219,47.62738588334746],[-122.29302840565765,47.62736270196685],[-122.2930191319076,47.62733938567941],[-122.29301086866859,47.62731592762535],[-122.2930031095735,47.62729237746815],[-122.29299837737915,47.6272682746689],[-122.29299618010965,47.62724418183014],[-122.29299398284223,47.62722008899132],[-122.2929912790489,47.62719600299899],[-122.2929885764493,47.62717195945911],[-122.29298587266098,47.62714787346661],[-122.29298266301032,47.62712383642887],[-122.29297995990932,47.62709979324624],[-122.29297675078335,47.62707575620168],[-122.29297354115117,47.62705171951449],[-122.29297033151215,47.62702768247633],[-122.29296661535,47.62700365228452],[-122.29296340571713,47.62697961524615],[-122.29295969144476,47.62695567066749],[-122.29295546994871,47.62693168942336],[-122.29295074209446,47.62690775784208],[-122.29294550891085,47.62688387555949],[-122.29293977107079,47.62686008503466],[-122.29293352671152,47.62683630135582],[-122.29292677770701,47.62681260978545],[-122.29291952337583,47.62678896751339],[-122.2929117644007,47.62676541734967],[-122.29290350131112,47.62674195963828],[-122.29289422651685,47.62671860018606],[-122.29288495466176,47.62669532668402],[-122.29287517696424,47.62667210248641],[-122.29286438997649,47.62664906250507],[-122.29285360471823,47.62662606531942],[-122.29284181069032,47.626603252343],[-122.29282848763268,47.62658015923984],[-122.29281367398742,47.62655815606864],[-122.29279735054072,47.62653655797462],[-122.29278053139443,47.62651535195435],[-122.29276220416871,47.62649459380697],[-122.29274287486686,47.626474276693],[-122.29272254521923,47.62645444375946],[-122.29270121642728,47.62643513780927],[-122.29267838024137,47.62641632253942],[-122.2926550543532,47.62639811300659],[-122.29263072881272,47.62638043081282],[-122.29260540824075,47.62636340365264],[-122.29257807563945,47.62634695962796],[-122.29255176383754,47.62633075942292],[-122.29252890183547,47.62631100174008],[-122.2925150635289,47.62628761512576],[-122.29243607691402,47.62602025640589],[-122.29248534695633,47.62598736365194],[-122.29289542103065,47.62571313446889],[-122.29378111019784,47.62511593211089],[-122.29478773656119,47.62443898020228],[-122.29616948889966,47.62349114043863],[-122.29642523226325,47.62331896380942],[-122.2977571963026,47.62242349899611],[-122.29804270137036,47.62222840030317],[-122.2996985050088,47.62109734584416],[-122.3001011434356,47.62083179699253],[-122.30062720517726,47.62048483830943],[-122.30138907565333,47.61996131908383],[-122.30242642637111,47.61924838342442],[-122.30253980417207,47.61917035822943],[-122.30414752129909,47.61806659167576],[-122.30474743709217,47.61782358260328],[-122.30613217153439,47.61726219918945],[-122.30700740484929,47.61689676634884],[-122.30753845496004,47.61667519864561],[-122.30925845168494,47.61596205096522],[-122.3098434424342,47.61571278125881],[-122.31018564994298,47.61557162672949],[-122.31100686776489,47.61523385477722],[-122.31143869699869,47.61505374415424],[-122.31252660614518,47.61459403402677],[-122.31276311931411,47.61449768877453],[-122.312762325012,47.61454105685887],[-122.31276054577522,47.6150845950237],[-122.31276136253389,47.61653947045016],[-122.31275128416667,47.61762903074474],[-122.3127461638981,47.61851857513032],[-122.31272822102746,47.6196703177804],[-122.31270251900234,47.62056702736857],[-122.31265595623645,47.62144331455673],[-122.31259830586498,47.62371259381199],[-122.3126071816047,47.62438131121736],[-122.31258374301974,47.62607094215991],[-122.31256601480572,47.62689167155667],[-122.31255697069852,47.62764339581941],[-122.3125457093824,47.6286915840633],[-122.31251988923198,47.63063637948966],[-122.31249664107312,47.63233290494593],[-122.31248414700875,47.63298120637217],[-122.3124826890861,47.63364315981983],[-122.312480496877,47.63367305033522],[-122.31247881126409,47.63370293426814],[-122.31247915552783,47.63373287781513],[-122.31248051280143,47.63376276502977],[-122.31248339039435,47.63379263249037],[-122.3124877863937,47.63382239458375],[-122.31249319490013,47.6338521007021],[-122.31249961347079,47.63388166488809],[-122.31250805636685,47.63391107466468],[-122.31251700221154,47.63394034909771],[-122.31252796942293,47.63396938317022],[-122.31253994427205,47.63399818970289],[-122.31255292607214,47.63402672623631],[-122.31256742090768,47.63405498619412],[-122.31258022855224,47.63407739836287],[-122.31259673502922,47.63410507517995],[-122.31261475383869,47.63413243225914],[-122.31263377665303,47.63415943373716],[-122.312654308151,47.63418598706645],[-122.31267584242919,47.63421214163938],[-122.31269837880015,47.63423785499633],[-122.31272191499916,47.63426308399617],[-122.31274695745203,47.63428777923799],[-122.31277300147156,47.63431203291763],[-122.31279483832559,47.63433098608637],[-122.31282237470877,47.63435423517289],[-122.31285038220176,47.6343761925077],[-122.31312542019012,47.63465050169459],[-122.31314645317079,47.63467683432692],[-122.31316328325822,47.63469803733263],[-122.31318330932939,47.63472463996148],[-122.31320333960377,47.63475137134032],[-122.31322236050418,47.63477828676237],[-122.31324138508806,47.63480533094153],[-122.31325990795395,47.63483255291602],[-122.31327792614623,47.63485986708649],[-122.31329544089215,47.63488731660718],[-122.3133124526902,47.63491490076994],[-122.3133294681703,47.63494261369038],[-122.31334547358169,47.63497046819707],[-122.31336148144632,47.63499840830775],[-122.31337647925024,47.63502649035605],[-122.31338878400602,47.63504903743583],[-122.31340277244952,47.63507730387963],[-122.31341727221292,47.6351056921311],[-122.3134307601651,47.63513417917378],[-122.3134437434365,47.6351627584146],[-122.31345622254527,47.635191429847],[-122.31346819750074,47.63522019382193],[-122.31347798234472,47.6352432878349],[-122.31348894792092,47.6352722358566],[-122.31349991473746,47.6353012270312],[-122.31351037738818,47.63533031039803],[-122.31352033535318,47.63535948596398],[-122.31359103133673,47.63566974046411],[-122.31359423755785,47.63594274147024]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000289,"geom:area_square_m":2412557.457221,"geom:bbox":"-122.314730175,47.6144976888,-122.292436077,47.6391669151","geom:latitude":47.626855,"geom:longitude":-122.305442,"iso:country":"US","lbl:latitude":47.626756,"lbl:longitude":-122.305273,"lbl:max_zoom":18,"mps:latitude":47.626756,"mps:longitude":-122.305273,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Stevens"],"name:ceb_x_preferred":["Stevens"],"name:ces_x_preferred":["Stevens"],"name:deu_x_preferred":["Stevens"],"name:fas_x_preferred":["استیونز"],"name:fra_x_preferred":["Stevens"],"name:heb_x_preferred":["סטיבנס"],"name:ita_x_preferred":["Stevens"],"name:jpn_x_preferred":["スティーヴンス"],"name:nld_x_preferred":["Stevens"],"name:pol_x_preferred":["Stevens"],"name:rus_x_preferred":["Стевенс"],"name:slv_x_preferred":["Stevens"],"name:spa_x_preferred":["Stevens"],"name:swe_x_preferred":["Stevens"],"reversegeo:latitude":47.626756,"reversegeo:longitude":-122.305273,"src:geom":"seagv","wof:belongsto":[85882415,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2578291161f2968f85a3c40f948c74b4","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128529,"neighbourhood_id":85882415,"region_id":85688623}],"wof:id":907128529,"wof:lastmodified":1566608548,"wof:name":"Stevens","wof:parent_id":85882415,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869705],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128741.geojson b/fixtures/microhoods/907128741.geojson new file mode 100644 index 0000000..a4d23f0 --- /dev/null +++ b/fixtures/microhoods/907128741.geojson @@ -0,0 +1 @@ +{"id":907128741,"type":"Feature","bbox":[-122.32147640043877,47.53897387736641,-122.28380156333266,47.5734907721744],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.3046449414772,47.55959901270486],[-122.30366337567308,47.55973368853021],[-122.3036184799371,47.55973971037903],[-122.30357308624953,47.55974603838283],[-122.30352820620901,47.55975261699002],[-122.30348282701699,47.55975945929932],[-122.30343796145105,47.55976655151073],[-122.30339310433942,47.55977394367855],[-122.30334825326526,47.55978155019611],[-122.30330391703346,47.55978944977096],[-122.30325908111838,47.55979761270328],[-122.30321475936464,47.55980602623409],[-122.30317044433566,47.55981469692511],[-122.30312613704757,47.55982362406127],[-122.3030823428827,47.55983280181039],[-122.30303805128533,47.55984228605715],[-122.30299427159235,47.5598519777631],[-122.30295050033719,47.55986196907546],[-122.3029067351136,47.55987217473847],[-122.30286348421838,47.55988267381915],[-122.30282023985227,47.55989338654246],[-122.30277700393138,47.55990439922347],[-122.30273377352158,47.55991562626225],[-122.302691056739,47.55992710355898],[-122.3026483489083,47.55993888045632],[-122.30260564658711,47.55995087171179],[-122.30256295149077,47.55996311977119],[-122.30252077002979,47.55997561844062],[-122.30247859406695,47.55998833111776],[-122.30243642705304,47.56000134339589],[-122.30239477246597,47.56001456348164],[-122.30235312458292,47.56002804037883],[-122.30231148393148,47.56004177443161],[-122.302270355696,47.56005571594213],[-122.30222923468138,47.56006991425779],[-122.30136055284389,47.56036557438703],[-122.29877653727621,47.5613537264271],[-122.2987411461453,47.56137367647189],[-122.29870472580482,47.56139303995651],[-122.29866778387482,47.56141185315575],[-122.2986303174291,47.561430030469],[-122.2985923288769,47.56144765750253],[-122.29855381460636,47.56146460584566],[-122.29851427286106,47.5614810107724],[-122.2984742053891,47.56149673665653],[-122.29843411981236,47.56151181977421],[-122.29839300263261,47.56152623106988],[-122.29835186856438,47.56154004275261],[-122.2983097016813,47.5615531394576],[-122.29826751618012,47.56156559340132],[-122.29822480549753,47.5615773689943],[-122.29818156841127,47.56158842273094],[-122.29813780682193,47.56159884057492],[-122.29809402474096,47.56160853039376],[-122.29804971627075,47.56161749870566],[-122.29800538798787,47.56162578145122],[-122.29796053332889,47.56163334303984],[-122.29791565937899,47.56164021905499],[-122.29787025732453,47.56164633076481],[-122.29782483651094,47.5616517572449],[-122.29777939349628,47.5616564129018],[-122.29773342529809,47.56166038950153],[-122.29768743543082,47.56166359562179],[-122.2976414250802,47.56166607336424],[-122.29759539373967,47.56166782308637],[-122.297549342438,47.56166884442396],[-122.29750326947519,47.56166909528201],[-122.29745717724006,47.56166866056554],[-122.29741106333792,47.56166745501856],[-122.2973649289739,47.56166552144452],[-122.29731877363166,47.56166285984998],[-122.29727310355516,47.56165942054599],[-122.29722741370735,47.56165529602524],[-122.29718170340536,47.56165044347769],[-122.29713647906934,47.56164485638254],[-122.29709123668879,47.5616386268677],[-122.29704597506249,47.56163171212979],[-122.29700120301597,47.56162419125533],[-122.29695641240166,47.56161602761738],[-122.29691261779772,47.56160725167467],[-122.2968682987393,47.56159783983301],[-122.29682446805383,47.56158777870208],[-122.29678112644669,47.56157711179419],[-122.29673827441772,47.56156583840159],[-122.29669540505215,47.56155396575195],[-122.2966530269981,47.5615415297659],[-122.2966111362866,47.5615284445063],[-122.29656973569611,47.56151475345877],[-122.29652882538362,47.56150049908977],[-122.29648789944189,47.56148568756021],[-122.29644796900425,47.56147026373955],[-122.29641263276093,47.56145615168369],[-122.2957125902828,47.56114117647648],[-122.29567461813456,47.56112332793895],[-122.29563615161673,47.56110591393691],[-122.29559769904658,47.5610890142711],[-122.29555824672931,47.56107255564056],[-122.29551880646332,47.56105652538123],[-122.29547887422854,47.56104101526251],[-122.29543794294828,47.56102598968877],[-122.29539753080259,47.56101142843138],[-122.29535612132,47.5609973941638],[-122.29531472456755,47.5609838310761],[-122.29527283637037,47.56097078847095],[-122.29523045551632,47.56095822319352],[-122.29518758218899,47.56094617876168],[-122.29514472381588,47.56093464794793],[-122.29510187988728,47.5609236311098],[-122.29505803757927,47.56091314127043],[-122.29501421022205,47.56090316504839],[-122.29497039851687,47.5608937459555],[-122.29492609362923,47.56088480419424],[-122.29488180439112,47.56087641956176],[-122.2948370243705,47.56086859786697],[-122.29479225810302,47.56086124733628],[-122.29474700226145,47.56085450289676],[-122.29470176085314,47.56084827243105],[-122.2946565338669,47.56084255558833],[-122.29461081731226,47.56083744518668],[-122.29456511517692,47.56083284840763],[-122.29451942799759,47.56082876594625],[-122.2944737571181,47.56082528272098],[-122.29442759477136,47.56082231997133],[-122.29438195394114,47.56081990749632],[-122.2943358228416,47.56081805829995],[-122.29428970736343,47.56081676588015],[-122.2942436075052,47.56081603023696],[-122.29419752326534,47.56081585137036],[-122.29415094702163,47.56081619263366],[-122.29410489401423,47.56081712732012],[-122.2940588548922,47.56081857563567],[-122.2940017092667,47.5608211949944],[-122.29336391747526,47.56082938816935],[-122.29322177522256,47.56059977328508],[-122.2930009244557,47.5602176174033],[-122.29272511730825,47.5597715158539],[-122.29237830460507,47.55924877842295],[-122.29201927918241,47.55868746605606],[-122.29170776879043,47.55819533529423],[-122.29140804978744,47.55772627364328],[-122.29114477877815,47.55731102651809],[-122.29096444690917,47.55701874703613],[-122.29082055948192,47.55678028303318],[-122.29067645476859,47.5565340240641],[-122.29041182359079,47.55608781693073],[-122.2900730154635,47.5554331836528],[-122.28982987011598,47.55494017204506],[-122.28954324507993,47.55432244254262],[-122.28894636668907,47.55311037688822],[-122.28812631819622,47.5513569678398],[-122.28728251871044,47.54969382808319],[-122.28640593006598,47.54781512866065],[-122.28595726217874,47.54697492014964],[-122.28555417731638,47.54613502783572],[-122.28551494302629,47.54605322695649],[-122.28409456498369,47.54309289253028],[-122.28383280410459,47.54252710193025],[-122.28380156333266,47.54245950838168],[-122.28466774835951,47.54246310177456],[-122.2860107844377,47.54246749158647],[-122.28716671863502,47.54247858684557],[-122.2880702998472,47.5424799192625],[-122.28915262359082,47.54248332477432],[-122.2902664391726,47.54249060092943],[-122.2902947027771,47.54371856105437],[-122.29030991679073,47.54433501231546],[-122.29094836517608,47.54433942137018],[-122.29150877481364,47.54434084358166],[-122.29166099113242,47.54431734022574],[-122.29366398195525,47.5443692088139],[-122.29474075582534,47.54438985629356],[-122.29581714450809,47.54441478253261],[-122.29689200809693,47.54443941885068],[-122.2968968096727,47.54365527699964],[-122.29690489941582,47.54246562152392],[-122.29689194707086,47.54121162862424],[-122.29686689592671,47.54031977709474],[-122.29688536104572,47.53962564494584],[-122.29716617569612,47.53942374796998],[-122.29703520315829,47.5390677342363],[-122.2970042217322,47.53897387736641],[-122.29758201628887,47.53898357083071],[-122.29829974557066,47.5390016542454],[-122.2983392667852,47.5390031154459],[-122.2983792960987,47.53900465607058],[-122.29841932953339,47.53900632473377],[-122.29845936366593,47.53900803654378],[-122.2984988945284,47.53900984046662],[-122.29853893399888,47.53901172345542],[-122.29857897656511,47.5390137348469],[-122.29861902033812,47.53901578902767],[-122.29865856085165,47.53901793567285],[-122.2986986111679,47.53902020383576],[-122.29873815650318,47.53902252166675],[-122.29877820992967,47.53902491856928],[-122.29881826627576,47.5390274007069],[-122.29885781954081,47.53903001847738],[-122.29889788072016,47.53903267215129],[-122.29893743811328,47.53903541794666],[-122.29897699792842,47.53903824968585],[-122.29901706582616,47.53904116014466],[-122.2990562218551,47.53904763877716],[-122.29909392658885,47.53905649220939],[-122.2991316409782,47.53906568840691],[-122.29916885881542,47.53907523354874],[-122.29920608630952,47.5390851214562],[-122.29924332346127,47.53909535212927],[-122.29928006406266,47.53910593174746],[-122.29931681363679,47.5391168113215],[-122.29935306786585,47.53912808264469],[-122.29938933055075,47.53913965393073],[-122.29942509548293,47.53915153135975],[-122.29946087128077,47.53916379435871],[-122.29949614864051,47.53917632069122],[-122.29953143686707,47.53918923259394],[-122.29956622613818,47.53920240783753],[-122.29960102559089,47.53921592584157],[-122.29963532798962,47.53922979315136],[-122.29966963815208,47.53924391726431],[-122.29970345176952,47.53925839032602],[-122.2997367681656,47.53927316987781],[-122.29977009250482,47.53928824940093],[-122.2998029196134,47.53930363506382],[-122.30024125394522,47.53962731589024],[-122.30139783454834,47.5405615797171],[-122.30230761510578,47.54137631859012],[-122.30289704804035,47.54199507128617],[-122.30333262026969,47.54263200652712],[-122.3033911870718,47.54271633613309],[-122.30363807292588,47.54307028692713],[-122.30489959035312,47.54427388804336],[-122.30558836402312,47.5449305430344],[-122.30614702484156,47.54547864360772],[-122.30631641888664,47.54563308458287],[-122.30692077315888,47.54618534537477],[-122.30750666201145,47.5466749478593],[-122.3079009950123,47.54696039765147],[-122.3087155947278,47.54742766140452],[-122.3099158434702,47.54805134444226],[-122.31060690290138,47.54855250386669],[-122.31112198033092,47.54888157377989],[-122.31298375408149,47.54794687866195],[-122.3139856689014,47.54745020987705],[-122.31402780958955,47.54749014838257],[-122.31620670363863,47.54862983209187],[-122.31692987650366,47.54927847457666],[-122.31728360650905,47.54961112258916],[-122.31783246820315,47.55011122550762],[-122.31845462182298,47.5507666622108],[-122.31886522572304,47.55124663053871],[-122.31997626566836,47.55228503294982],[-122.32019075288787,47.55270449586734],[-122.32063399324001,47.55304967326811],[-122.32097825044397,47.55336799625407],[-122.3204417476468,47.55362231135315],[-122.3197492370626,47.55307602809956],[-122.31972794485395,47.55312827632397],[-122.31971551424293,47.55315397346798],[-122.3197015571177,47.55317939118984],[-122.31968657631036,47.55320443657334],[-122.31967006774403,47.55322915902881],[-122.31965202723468,47.55325343015291],[-122.31963193430956,47.55327674292136],[-122.31960774266389,47.55329835264476],[-122.31958200196209,47.55331891143815],[-122.31955420343684,47.55333834066569],[-122.31952434514349,47.55335655401108],[-122.31949293220575,47.55337350240003],[-122.31946046748068,47.55338909361823],[-122.31942644321892,47.5534032483142],[-122.31939086014484,47.5534160099981],[-122.31935472601688,47.55342719316384],[-122.31931753522518,47.55343684794208],[-122.31927928584868,47.55344488871871],[-122.31924451693635,47.55345069845274],[-122.31840678303405,47.55345731980756],[-122.31798915264122,47.55345960524165],[-122.31770304755199,47.5534579435844],[-122.3179909330569,47.55393064932568],[-122.31855319420428,47.55482782202987],[-122.31874816508126,47.55511335563754],[-122.31893684971617,47.55544468576526],[-122.3191750447534,47.55571885738134],[-122.31972668073685,47.55650845428593],[-122.32032127055359,47.55741864882386],[-122.32053707559047,47.55774156719851],[-122.32082793173369,47.55831653857662],[-122.3212139709798,47.55915679471421],[-122.321409503396,47.56001029757743],[-122.32145175086772,47.56067373810655],[-122.32146699575964,47.56090600890856],[-122.32147640043877,47.56137695352626],[-122.32134344493002,47.56228861109634],[-122.32117454375982,47.56320073853592],[-122.32100563596985,47.56411282290831],[-122.32083275052818,47.56502770116865],[-122.32066067195076,47.56595332209193],[-122.32048792721872,47.56687355336348],[-122.32032968504558,47.5677343413654],[-122.320176519747,47.5686489603723],[-122.32005913988498,47.56955771280054],[-122.3199701070155,47.57046609406081],[-122.31990481985379,47.57139027456385],[-122.31987503669777,47.57183726769591],[-122.31987883347267,47.57186382382115],[-122.3198811129755,47.57189044295306],[-122.31988339370258,47.57191710488807],[-122.31988466140113,47.57194378006729],[-122.31988542187175,47.57197041870787],[-122.31988567757759,47.57199710711778],[-122.31988542676747,47.57202380214984],[-122.31988416170219,47.572050467623],[-122.31988238992383,47.57207709655076],[-122.31988011111824,47.57210373245821],[-122.31987732508955,47.57213033217781],[-122.31987352530952,47.57215690198072],[-122.31986972431369,47.5721834293312],[-122.31986490956442,47.57220992676493],[-122.31985907984829,47.57223635182941],[-122.31985324716399,47.57226269129407],[-122.31984743334084,47.57228967350051],[-122.31984211205133,47.57231617755516],[-122.31983825600233,47.5723407773598],[-122.31983490892301,47.57236545649949],[-122.31983206783188,47.5723901286731],[-122.31982973397155,47.57241483738553],[-122.3198279083596,47.57243958192155],[-122.31982658946143,47.57246436300317],[-122.3198257775912,47.57248913710529],[-122.3198254712143,47.57251390494991],[-122.31982450386657,47.57256871483393],[-122.31972811641066,47.5726165031214],[-122.31958367621854,47.5726842420878],[-122.31944027946221,47.57277081851787],[-122.31921930881887,47.5728900700824],[-122.31866178349506,47.57321375594364],[-122.31825272377132,47.57334454531053],[-122.31821857500975,47.57335480245028],[-122.3181844164602,47.57336471680365],[-122.31815024691281,47.57337424591831],[-122.31811555982868,47.57338339605769],[-122.31808344098872,47.57339379827682],[-122.31804162038583,47.57340145618091],[-122.31800639429166,47.57340945685797],[-122.31797115789509,47.57341711475473],[-122.31793540378136,47.57342435085799],[-122.31789963814624,47.57343120137751],[-122.31786386273932,47.57343770946046],[-122.31782756858038,47.57344379576265],[-122.3177912651695,47.5734495396212],[-122.31772216776797,47.57345978150194],[-122.3176853236194,47.57346433274886],[-122.31764897448538,47.57346849179911],[-122.31761210834252,47.57347227186365],[-122.31757522999362,47.5734756238846],[-122.3175383418697,47.57347863311737],[-122.31750144154145,47.57348121430652],[-122.31746402368907,47.57348341651574],[-122.31740029645766,47.57348660438331],[-122.3173633692593,47.57348824315627],[-122.31732642985999,47.57348945388558],[-122.3172894806803,47.57349032147583],[-122.31725251930139,47.57349076102239],[-122.31721554571413,47.5734907721744],[-122.31717856236895,47.57349044088901],[-122.31714207282948,47.57348967460589],[-122.31710506629162,47.57348852933467],[-122.31706804755886,47.57348695601971],[-122.3170315255922,47.57348503330704],[-122.31699448489158,47.57348268880931],[-122.31695793923055,47.57347995246866],[-122.31692138310606,47.57347683053008],[-122.31688481549202,47.57347332335797],[-122.31684823618667,47.5734693874339],[-122.31681164662288,47.57346510943027],[-122.31677555138161,47.57346039607317],[-122.31673944639186,47.57345534027917],[-122.31670332920564,47.57344985609116],[-122.31666770758358,47.57344398005525],[-122.31663156967485,47.57343776783959],[-122.31659592610248,47.57343112062235],[-122.31656077879717,47.57342412436796],[-122.31652562051848,47.57341674252325],[-122.3164904512772,47.57340897543909],[-122.31645527105415,47.57340082241373],[-122.31610565703002,47.57330714137544],[-122.3157153278969,47.57315315190563],[-122.31535417694026,47.57293875691724],[-122.31506564433992,47.57260636510559],[-122.31457544423245,47.57175437762352],[-122.31421043039224,47.57086935357241],[-122.31369942789068,47.56969429223182],[-122.31343724427943,47.56909408017586],[-122.31345942128583,47.56777176243884],[-122.31346502446237,47.56731656547753],[-122.31347564445566,47.56645380689258],[-122.31349341257814,47.56520806553979],[-122.31350016842052,47.5648934186523],[-122.31350339129075,47.56416936057821],[-122.31349884357167,47.56413407371383],[-122.31349351111088,47.56410680879177],[-122.31348817988217,47.56407958702351],[-122.31348133228182,47.5640524702847],[-122.31347347597789,47.56402549513553],[-122.31346460976539,47.56399861912343],[-122.31345524077267,47.56397187811375],[-122.31344486481511,47.56394532148961],[-122.31343297442922,47.56391895620838],[-122.31342058299148,47.56389276837455],[-122.31340769174888,47.56386680184367],[-122.31339328658073,47.56384102594625],[-122.31337838108153,47.5638154710071],[-122.31336247175604,47.56379022886793],[-122.31334555495627,47.56376517111865],[-122.31332763556887,47.56374046967341],[-122.3133092158339,47.56371598848339],[-122.31328979350303,47.56369186324577],[-122.31326936613469,47.56366800800271],[-122.31324844382436,47.56364454492159],[-122.31322651718595,47.56362139499498],[-122.31320358846345,47.56359860066112],[-122.31318016254747,47.56357615569824],[-122.3131557357648,47.56355410913033],[-122.31313081352388,47.56353245472903],[-122.31310489112505,47.56351124188243],[-122.31307847325846,47.56349042085071],[-122.31305105401854,47.56346999856929],[-122.31302314226176,47.5634500537015],[-122.31299473627342,47.5634305441522],[-122.31296533133451,47.56341151860711],[-122.31186019820034,47.56258457465375],[-122.31097043812797,47.56194059152893],[-122.30987011709882,47.56133472599671],[-122.3078986058875,47.56063008805139],[-122.30474985714702,47.55958463040729],[-122.3046449414772,47.55959901270486]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000584,"geom:area_square_m":4875267.294492,"geom:bbox":"-122.3214764,47.5389738774,-122.283801563,47.5734907722","geom:latitude":47.554237,"geom:longitude":-122.30468,"iso:country":"US","lbl:latitude":47.552138,"lbl:longitude":-122.30126,"lbl:max_zoom":18,"mps:latitude":47.552138,"mps:longitude":-122.30126,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_variant":["Mid Beacon Hill","Mid-Beacon Hl"],"reversegeo:latitude":47.552138,"reversegeo:longitude":-122.30126,"src:geom":"seagv","wof:belongsto":[85805013,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e22f5172a5f4f5ccad447fe86436f70c","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128741,"neighbourhood_id":85805013,"region_id":85688623}],"wof:id":907128741,"wof:lastmodified":1566608548,"wof:name":"Mid-Beacon Hill","wof:parent_id":85805013,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869481],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128743.geojson b/fixtures/microhoods/907128743.geojson new file mode 100644 index 0000000..711f183 --- /dev/null +++ b/fixtures/microhoods/907128743.geojson @@ -0,0 +1 @@ +{"id":907128743,"type":"Feature","bbox":[-122.321011,47.56167196942665,-122.296607,47.595877],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.311529,47.595877],[-122.311368,47.595671],[-122.311253,47.595519],[-122.310768,47.594882],[-122.310279,47.594245],[-122.309824,47.593643],[-122.309311,47.592968],[-122.309069,47.592653],[-122.30867,47.59213],[-122.30824,47.591573],[-122.307796,47.59098],[-122.307239,47.590269],[-122.306812,47.589697],[-122.306579,47.589393],[-122.306243,47.588957],[-122.305724,47.588286],[-122.305434,47.587953],[-122.305248,47.587741],[-122.305088,47.587504],[-122.304618,47.586824],[-122.30441,47.586553],[-122.304091,47.586128],[-122.303842,47.585818],[-122.303557,47.585431],[-122.303293,47.58507],[-122.303024,47.584696],[-122.302939,47.584584],[-122.302502,47.584034],[-122.302059,47.583476],[-122.301783,47.583114],[-122.301687,47.582989],[-122.301646,47.582935],[-122.301558,47.582819],[-122.301139,47.582266],[-122.300836,47.58187],[-122.300531,47.581476],[-122.300278,47.58114],[-122.299843,47.580572],[-122.299397,47.579989],[-122.298868,47.579294],[-122.298516,47.578829],[-122.298155,47.578349],[-122.297948,47.578084],[-122.297649,47.577695],[-122.297384,47.577344],[-122.297032,47.576885],[-122.296762,47.576535],[-122.296607,47.576334],[-122.296654,47.576297],[-122.296718,47.576096],[-122.296734,47.575882],[-122.299066,47.575884],[-122.299112,47.575884],[-122.299157,47.575878],[-122.299201,47.575868],[-122.299242,47.575853],[-122.299279,47.575835],[-122.299311,47.575812],[-122.299338,47.575787],[-122.299359,47.575759],[-122.299373,47.575729],[-122.29938,47.5757],[-122.29938,47.575232],[-122.299383,47.573936],[-122.299416,47.573207],[-122.299194,47.572877],[-122.299177,47.572256],[-122.299229,47.570824],[-122.299246,47.569051],[-122.299281,47.568299],[-122.29928,47.568024],[-122.299262,47.567753],[-122.299254,47.567481],[-122.299256,47.567457],[-122.299259,47.567432],[-122.299262,47.567408],[-122.299266,47.567383],[-122.299271,47.567359],[-122.299277,47.567334],[-122.299283,47.56731],[-122.299291,47.567286],[-122.299299,47.567261],[-122.299309,47.567237],[-122.299319,47.567214],[-122.299329,47.56719],[-122.299341,47.567166],[-122.299353,47.567143],[-122.299366,47.56712],[-122.29938,47.567097],[-122.299395,47.567074],[-122.299725,47.566397],[-122.29978,47.565939],[-122.299747,47.56558],[-122.299886,47.565353],[-122.300296,47.564852],[-122.300555,47.564535],[-122.300577,47.564507],[-122.300601,47.56448],[-122.300626,47.564454],[-122.300652,47.564428],[-122.300679,47.564403],[-122.300707,47.564379],[-122.300737,47.564355],[-122.300768,47.564331],[-122.3008,47.564309],[-122.300833,47.564287],[-122.300866,47.564265],[-122.300901,47.564245],[-122.300937,47.564225],[-122.300973,47.564206],[-122.301011,47.564188],[-122.301049,47.56417],[-122.301088,47.564154],[-122.301128,47.564138],[-122.301169,47.564123],[-122.30121,47.564109],[-122.301251,47.564096],[-122.301294,47.564084],[-122.301337,47.564072],[-122.301381,47.564062],[-122.301424,47.564053],[-122.301882,47.563978],[-122.301924,47.563965],[-122.301966,47.563951],[-122.302006,47.563936],[-122.302045,47.563919],[-122.302082,47.5639],[-122.302087,47.563898],[-122.302067,47.564449],[-122.302051,47.564568],[-122.301913,47.56837],[-122.301775,47.571827],[-122.308122,47.571863],[-122.308418,47.571861],[-122.310409,47.571864],[-122.311012,47.571867],[-122.311461,47.571854],[-122.3117,47.57181],[-122.311901,47.57176],[-122.312102,47.5717],[-122.312265,47.571652],[-122.312434,47.571605],[-122.312555,47.57158],[-122.312784,47.571564],[-122.313345,47.571555],[-122.313437,47.569094],[-122.313699,47.569694],[-122.31421,47.570869],[-122.314575,47.571754],[-122.315066,47.572606],[-122.315354,47.572939],[-122.315715,47.573153],[-122.316106,47.573307],[-122.316455,47.573401],[-122.31649,47.573409],[-122.316526,47.573417],[-122.316561,47.573424],[-122.316596,47.573431],[-122.316632,47.573438],[-122.316668,47.573444],[-122.316703,47.57345],[-122.316739,47.573455],[-122.316776,47.57346],[-122.316812,47.573465],[-122.316848,47.573469],[-122.316885,47.573473],[-122.316921,47.573477],[-122.316958,47.57348],[-122.316994,47.573483],[-122.317032,47.573485],[-122.317068,47.573487],[-122.317105,47.573489],[-122.317142,47.57349],[-122.317179,47.57349],[-122.317216,47.573491],[-122.317253,47.573491],[-122.317289,47.57349],[-122.317326,47.573489],[-122.317363,47.573488],[-122.3174,47.573487],[-122.317464,47.573483],[-122.317501,47.573481],[-122.317538,47.573479],[-122.317575,47.573476],[-122.317612,47.573472],[-122.317649,47.573468],[-122.317685,47.573464],[-122.317722,47.57346],[-122.317791,47.57345],[-122.317828,47.573444],[-122.317864,47.573438],[-122.3179,47.573431],[-122.317935,47.573424],[-122.317971,47.573417],[-122.318006,47.573409],[-122.318042,47.573401],[-122.318083,47.573394],[-122.318116,47.573383],[-122.31815,47.573374],[-122.318184,47.573365],[-122.318219,47.573355],[-122.318253,47.573345],[-122.318662,47.573214],[-122.319219,47.57289],[-122.31944,47.572771],[-122.319584,47.572684],[-122.319728,47.572617],[-122.319825,47.572569],[-122.319813,47.573192],[-122.319763,47.5741],[-122.319702,47.575024],[-122.319644,47.575927],[-122.319642,47.575953],[-122.319638,47.575978],[-122.319635,47.576003],[-122.319633,47.576028],[-122.319629,47.576052],[-122.319626,47.576077],[-122.319623,47.576102],[-122.31962,47.576126],[-122.319616,47.576151],[-122.319613,47.576176],[-122.319609,47.5762],[-122.319606,47.576225],[-122.319602,47.57625],[-122.319599,47.576274],[-122.319595,47.576299],[-122.319591,47.576323],[-122.319587,47.576348],[-122.319583,47.576373],[-122.319579,47.576397],[-122.319575,47.576422],[-122.319571,47.576447],[-122.319567,47.576471],[-122.319562,47.576496],[-122.319558,47.57652],[-122.31946,47.576847],[-122.319224,47.577774],[-122.319174,47.577998],[-122.319023,47.578686],[-122.318998,47.578871],[-122.318984,47.579012],[-122.318973,47.579154],[-122.318965,47.579295],[-122.318962,47.579437],[-122.318962,47.579578],[-122.318966,47.57972],[-122.318973,47.579862],[-122.318984,47.580003],[-122.318999,47.580144],[-122.319017,47.580286],[-122.319202,47.581209],[-122.319207,47.581236],[-122.319211,47.581262],[-122.319216,47.581289],[-122.319221,47.581315],[-122.319225,47.58134],[-122.31923,47.581364],[-122.319234,47.581389],[-122.319239,47.581413],[-122.319244,47.581438],[-122.319249,47.581463],[-122.319253,47.581487],[-122.319259,47.581512],[-122.319264,47.581536],[-122.319269,47.581561],[-122.319274,47.581585],[-122.31928,47.58161],[-122.319285,47.581634],[-122.319291,47.581659],[-122.319297,47.581683],[-122.319303,47.581708],[-122.319309,47.581732],[-122.319315,47.581756],[-122.319321,47.581781],[-122.319327,47.581805],[-122.319333,47.58183],[-122.319339,47.581854],[-122.319346,47.581878],[-122.319352,47.581903],[-122.319359,47.581927],[-122.319366,47.581952],[-122.319373,47.581976],[-122.31938,47.582],[-122.319387,47.582025],[-122.319394,47.582049],[-122.319401,47.582073],[-122.319408,47.582097],[-122.319415,47.582122],[-122.31958,47.582732],[-122.31966,47.583026],[-122.319667,47.583053],[-122.319673,47.583079],[-122.31968,47.583106],[-122.319686,47.583132],[-122.319692,47.583158],[-122.319698,47.583183],[-122.319703,47.583207],[-122.319709,47.583232],[-122.319715,47.583256],[-122.31972,47.583281],[-122.319726,47.583305],[-122.319731,47.58333],[-122.319736,47.583354],[-122.319742,47.583379],[-122.319747,47.583403],[-122.319752,47.583428],[-122.319757,47.583452],[-122.319763,47.583477],[-122.319767,47.583501],[-122.319773,47.583526],[-122.319777,47.583551],[-122.319782,47.583575],[-122.319787,47.5836],[-122.319792,47.583624],[-122.319797,47.583649],[-122.319801,47.583673],[-122.319806,47.583698],[-122.319811,47.583722],[-122.319815,47.583747],[-122.31982,47.583772],[-122.319824,47.583796],[-122.319828,47.583821],[-122.319833,47.583845],[-122.319837,47.58387],[-122.319841,47.583895],[-122.319845,47.583919],[-122.319849,47.583944],[-122.319951,47.584855],[-122.320025,47.585769],[-122.320076,47.586275],[-122.320114,47.586659],[-122.32016,47.587143],[-122.320205,47.587576],[-122.320209,47.587604],[-122.320256,47.587959],[-122.320317,47.588342],[-122.320507,47.589125],[-122.320516,47.589151],[-122.320526,47.589177],[-122.320535,47.589203],[-122.320544,47.589229],[-122.320553,47.589255],[-122.320564,47.589287],[-122.320572,47.589311],[-122.32058,47.589335],[-122.320588,47.589359],[-122.320596,47.589383],[-122.320603,47.589408],[-122.320611,47.589432],[-122.320618,47.589456],[-122.320626,47.589481],[-122.320633,47.589505],[-122.32064,47.589529],[-122.320646,47.589553],[-122.320654,47.589578],[-122.32066,47.589602],[-122.320667,47.589626],[-122.320673,47.589651],[-122.320679,47.589675],[-122.320686,47.5897],[-122.320692,47.589724],[-122.320698,47.589749],[-122.320703,47.589773],[-122.320709,47.589797],[-122.320715,47.589822],[-122.32072,47.589846],[-122.320725,47.589871],[-122.320731,47.589895],[-122.320736,47.58992],[-122.320741,47.589945],[-122.320746,47.589969],[-122.320751,47.589994],[-122.320755,47.590018],[-122.32076,47.590043],[-122.320963,47.590875],[-122.320968,47.590899],[-122.320972,47.590923],[-122.320977,47.590948],[-122.320981,47.590972],[-122.320985,47.590997],[-122.320988,47.591022],[-122.320993,47.591056],[-122.320996,47.591081],[-122.320999,47.591105],[-122.321001,47.59113],[-122.321003,47.591155],[-122.321005,47.591179],[-122.321007,47.591204],[-122.321008,47.591229],[-122.321009,47.591254],[-122.32101,47.591278],[-122.321011,47.591303],[-122.321011,47.591328],[-122.321011,47.591353],[-122.321011,47.591378],[-122.32101,47.591402],[-122.321009,47.591427],[-122.321008,47.591452],[-122.321006,47.591477],[-122.321005,47.591501],[-122.321003,47.591526],[-122.321001,47.591551],[-122.320999,47.591576],[-122.320996,47.5916],[-122.320993,47.591625],[-122.32099,47.59165],[-122.320986,47.591674],[-122.320982,47.591699],[-122.320978,47.591724],[-122.320974,47.591748],[-122.320971,47.591772],[-122.320969,47.591797],[-122.320967,47.591822],[-122.320965,47.591847],[-122.320963,47.591871],[-122.320961,47.591896],[-122.320959,47.591921],[-122.320956,47.591946],[-122.320954,47.59197],[-122.320951,47.592003],[-122.320948,47.592027],[-122.320945,47.592052],[-122.320942,47.592077],[-122.320939,47.592101],[-122.320935,47.592126],[-122.320932,47.592151],[-122.320929,47.592175],[-122.320925,47.5922],[-122.320921,47.592225],[-122.320918,47.592249],[-122.320914,47.592274],[-122.32091,47.592299],[-122.320905,47.592323],[-122.320902,47.592348],[-122.320897,47.592372],[-122.320893,47.592397],[-122.320888,47.592422],[-122.320884,47.592446],[-122.320879,47.592471],[-122.320874,47.592495],[-122.320869,47.59252],[-122.320864,47.592544],[-122.320858,47.592569],[-122.320853,47.592593],[-122.320847,47.592618],[-122.320842,47.592642],[-122.320699,47.593347],[-122.320658,47.593568],[-122.320605,47.593684],[-122.320483,47.594268],[-122.320385,47.59474],[-122.320287,47.595311],[-122.320283,47.595335],[-122.320278,47.59536],[-122.320274,47.595384],[-122.320271,47.595408],[-122.320267,47.595433],[-122.320264,47.595457],[-122.32026,47.595482],[-122.320258,47.595506],[-122.320255,47.595531],[-122.320252,47.595555],[-122.32025,47.59558],[-122.320248,47.595604],[-122.320246,47.595629],[-122.320245,47.595653],[-122.320243,47.595678],[-122.320241,47.595702],[-122.320241,47.595727],[-122.32024,47.595751],[-122.320239,47.595776],[-122.320239,47.5958],[-122.320238,47.595827],[-122.320186,47.595827],[-122.319981,47.595824],[-122.31974,47.595824],[-122.319215,47.595823],[-122.318848,47.595823],[-122.318161,47.595821],[-122.317667,47.595821],[-122.31723,47.59582],[-122.316356,47.595818],[-122.315472,47.595819],[-122.314585,47.595815],[-122.314133,47.595816],[-122.313449,47.595814],[-122.313033,47.595815],[-122.312807,47.595813],[-122.31216,47.595814],[-122.311529,47.595877]]],[[[-122.3104816606754,47.56167196942665],[-122.310484,47.561672],[-122.31097,47.561941],[-122.3104816606754,47.56167196942665]]],[[[-122.310697,47.564879],[-122.310584,47.564875],[-122.310133,47.564864],[-122.311364,47.562226],[-122.31186,47.562585],[-122.312965,47.563412],[-122.312995,47.563431],[-122.313023,47.56345],[-122.313051,47.56347],[-122.313078,47.56349],[-122.313105,47.563511],[-122.313131,47.563532],[-122.313156,47.563554],[-122.31318,47.563576],[-122.313204,47.563599],[-122.313227,47.563621],[-122.313248,47.563645],[-122.313269,47.563668],[-122.31329,47.563692],[-122.313309,47.563716],[-122.313328,47.56374],[-122.313346,47.563765],[-122.313362,47.56379],[-122.313378,47.563815],[-122.313393,47.563841],[-122.313408,47.563867],[-122.313421,47.563893],[-122.313433,47.563919],[-122.313445,47.563945],[-122.313455,47.563972],[-122.313465,47.563999],[-122.313473,47.564025],[-122.313481,47.564052],[-122.313488,47.56408],[-122.313494,47.564107],[-122.313499,47.564134],[-122.313503,47.564169],[-122.3135,47.564893],[-122.313493,47.565208],[-122.313476,47.566454],[-122.313465,47.567317],[-122.312658,47.5673],[-122.312651,47.564906],[-122.310697,47.564879]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000425,"geom:area_square_m":3587635.213174,"geom:bbox":"-122.321011,47.56167196942665,-122.296607,47.595877","geom:latitude":47.581476,"geom:longitude":-122.310467,"iso:country":"US","lbl:latitude":47.581073,"lbl:longitude":-122.310626,"lbl:max_zoom":18,"mps:latitude":47.581073,"mps:longitude":-122.310626,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":47.581073,"reversegeo:longitude":-122.310626,"src:geom":"mz","wof:belongsto":[102191575,85633793,102086191,101730401,85805013,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d70e08efe975b802762104789e517bc9","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128743,"neighbourhood_id":85805013,"region_id":85688623}],"wof:id":907128743,"wof:lastmodified":1613773512,"wof:name":"North Beacon Hill","wof:parent_id":85805013,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869539],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128881.geojson b/fixtures/microhoods/907128881.geojson new file mode 100644 index 0000000..ec69bd2 --- /dev/null +++ b/fixtures/microhoods/907128881.geojson @@ -0,0 +1 @@ +{"id":907128881,"type":"Feature","bbox":[-122.31678496359207,47.60166625929313,-122.30237515985974,47.61917035822943],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.30253980417207,47.61917035822943],[-122.30257040448133,47.61777673311993],[-122.30261685893664,47.61658559598443],[-122.3026533025495,47.61505796617339],[-122.30269025162505,47.61353037221015],[-122.30273315979045,47.61199850284517],[-122.3027514737432,47.61047526276391],[-122.30276452959608,47.60898122387318],[-122.30276577537003,47.60749976229985],[-122.30279051829788,47.60598890632651],[-122.30281328899711,47.60526973955236],[-122.30281311617951,47.60524566386724],[-122.30281089594781,47.60522088600194],[-122.30280614617567,47.60519626926343],[-122.30279887102131,47.60517194240546],[-122.30278907238666,47.60514799104087],[-122.30277725952287,47.6051244938788],[-122.3027634355494,47.60510157968611],[-122.30274709708307,47.60507934060107],[-122.30271870124234,47.60506085612609],[-122.30268988685678,47.60504550458497],[-122.30266256347339,47.60502910577686],[-122.30263622597039,47.60501170869388],[-122.30261138256695,47.60499339241148],[-122.3025880332728,47.60497415728156],[-122.30256668786204,47.60495408235991],[-122.30254633506303,47.60493326599325],[-122.30252849610035,47.60491173205934],[-122.30251165216417,47.60488954228851],[-122.30249732567594,47.60486676301133],[-122.30248450590271,47.60484349326882],[-122.30247370104965,47.60481981178599],[-122.30246440583328,47.60479572508792],[-122.30245763600462,47.60477134886678],[-122.3024600917148,47.60449930301342],[-122.30246967040563,47.60440775112745],[-122.30243057718056,47.60433345093168],[-122.30243216286348,47.60374334586552],[-122.30243642728865,47.60258390035078],[-122.30244116145117,47.60196170745871],[-122.30243379982544,47.60186249107272],[-122.30243721292388,47.6018218315066],[-122.30243197910814,47.60179799209898],[-122.30242725038802,47.60177410370095],[-122.3024045126896,47.60172259941204],[-122.30237515985974,47.60168810383449],[-122.30401402484509,47.60166971481827],[-122.30836805269938,47.60166625929313],[-122.31230566713282,47.60168570281976],[-122.31677266017032,47.60171593165169],[-122.31678496359207,47.60314315351852],[-122.31678412621027,47.60462495778501],[-122.31678306152365,47.6061165765021],[-122.31678337960915,47.60621661277423],[-122.31678334219659,47.6063753063187],[-122.31677782476068,47.60771073207328],[-122.31678421646777,47.60894831856231],[-122.31677502993267,47.61013726631248],[-122.31678296440671,47.61066448342502],[-122.31677904356471,47.61180700558686],[-122.3167485544698,47.61276436086115],[-122.31675230419424,47.61289588475678],[-122.3166586962447,47.61291942671294],[-122.3161408330172,47.61310303482956],[-122.31511268620366,47.61352322882233],[-122.31441935736657,47.61381112471091],[-122.31336893558462,47.61425108602596],[-122.31276311931411,47.61449768877453],[-122.31252660614518,47.61459403402677],[-122.31143869699869,47.61505374415424],[-122.31100686776489,47.61523385477722],[-122.31018564994298,47.61557162672949],[-122.3098434424342,47.61571278125881],[-122.30925845168494,47.61596205096522],[-122.30753845496004,47.61667519864561],[-122.30700740484929,47.61689676634884],[-122.30613217153439,47.61726219918945],[-122.30474743709217,47.61782358260328],[-122.30414752129909,47.61806659167576],[-122.30253980417207,47.61917035822943]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000199,"geom:area_square_m":1661508.997701,"geom:bbox":"-122.316784964,47.6016662593,-122.30237516,47.6191703582","geom:latitude":47.608831,"geom:longitude":-122.309213,"iso:country":"US","lbl:latitude":47.608797,"lbl:longitude":-122.309352,"lbl:max_zoom":18,"mps:latitude":47.608797,"mps:longitude":-122.309352,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:ara_x_preferred":["محتوى قاصر"],"name:ceb_x_preferred":["Minor"],"name:ces_x_preferred":["Minor"],"name:deu_x_preferred":["Minor"],"name:fas_x_preferred":["مینور"],"name:fra_x_preferred":["Minor"],"name:heb_x_preferred":["מינור"],"name:hun_x_preferred":["Minor"],"name:jpn_x_preferred":["マイナー"],"name:kor_x_preferred":["마이너"],"name:lav_x_preferred":["Minors"],"name:nld_x_preferred":["Minor"],"name:por_x_preferred":["Minor"],"name:swe_x_preferred":["Minor"],"name:ukr_x_preferred":["Мінор"],"reversegeo:latitude":47.608797,"reversegeo:longitude":-122.309352,"src:geom":"seagv","wof:belongsto":[85866037,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"def3773cf2d90d231519813b78142aa0","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128881,"neighbourhood_id":85866037,"region_id":85688623}],"wof:id":907128881,"wof:lastmodified":1566608547,"wof:name":"Minor","wof:parent_id":85866037,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869491],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128883.geojson b/fixtures/microhoods/907128883.geojson new file mode 100644 index 0000000..7d38b45 --- /dev/null +++ b/fixtures/microhoods/907128883.geojson @@ -0,0 +1 @@ +{"id":907128883,"type":"Feature","bbox":[-122.30281328899711,47.60166527855052,-122.29608699294477,47.62331896380942],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.29642523226325,47.62331896380942],[-122.29612265087177,47.62260072584593],[-122.29609332417981,47.62134137536977],[-122.29608699294477,47.62080968306769],[-122.29611702918629,47.61890301824334],[-122.29612067833285,47.61867221610695],[-122.29616021555022,47.61674297896271],[-122.29616532041888,47.6150314863706],[-122.29621420740096,47.61294819191977],[-122.29622999761072,47.61161684078843],[-122.29623414028103,47.61032192796586],[-122.2962571869852,47.60829324811741],[-122.29627158637763,47.6079941867695],[-122.29627519485135,47.60792421966322],[-122.29627836636375,47.60789281759443],[-122.29628204713717,47.60786149426441],[-122.29628572791603,47.60783017128509],[-122.29629042310978,47.60779887808162],[-122.29629562636835,47.60776762116422],[-122.2963008320274,47.60773644985331],[-122.29630705089434,47.60770526551456],[-122.29631377850798,47.60767416027174],[-122.29632101418281,47.6076430913147],[-122.29632875912137,47.60761210144668],[-122.29633650473527,47.60758115438816],[-122.29634526648657,47.60755028025211],[-122.29635453577671,47.60751944240808],[-122.29636431552062,47.60748872610517],[-122.29637460333035,47.60745804643819],[-122.29638539936096,47.60742744587289],[-122.29639670637145,47.60739696719245],[-122.29640801406323,47.60736653167177],[-122.296420339068,47.60733621117396],[-122.29643317402248,47.60730601292475],[-122.2964465170278,47.6072758509597],[-122.29646037117482,47.6072458536954],[-122.29647473457455,47.60721593551826],[-122.29648910036481,47.60718610294606],[-122.29650448416594,47.60715642890702],[-122.29652037721743,47.60712683395454],[-122.29653627454626,47.60709741021996],[-122.29655318798468,47.60706805905347],[-122.2965706125595,47.60703887258628],[-122.29658804073544,47.60700981487739],[-122.29660648622146,47.60698087253898],[-122.2966215388628,47.60695745780247],[-122.29678006290966,47.60664720259298],[-122.29677363439528,47.60611225534765],[-122.29677467929406,47.60427515429242],[-122.29667632518117,47.60351688947019],[-122.29674838776594,47.60261933304356],[-122.29681362907633,47.60167752148753],[-122.30025928068304,47.60166527855052],[-122.30237515985974,47.60168810383449],[-122.3024045126896,47.60172259941204],[-122.30242725038802,47.60177410370095],[-122.30243197910814,47.60179799209898],[-122.30243721292388,47.6018218315066],[-122.30243379982544,47.60186249107272],[-122.30244116145117,47.60196170745871],[-122.30243642728865,47.60258390035078],[-122.30243216286348,47.60374334586552],[-122.30243057718056,47.60433345093168],[-122.30246967040563,47.60440775112745],[-122.3024600917148,47.60449930301342],[-122.30245763600462,47.60477134886678],[-122.30246440583328,47.60479572508792],[-122.30247370104965,47.60481981178599],[-122.30248450590271,47.60484349326882],[-122.30249732567594,47.60486676301133],[-122.30251165216417,47.60488954228851],[-122.30252849610035,47.60491173205934],[-122.30254633506303,47.60493326599325],[-122.30256668786204,47.60495408235991],[-122.3025880332728,47.60497415728156],[-122.30261138256695,47.60499339241148],[-122.30263622597039,47.60501170869388],[-122.30266256347339,47.60502910577686],[-122.30268988685678,47.60504550458497],[-122.30271870124234,47.60506085612609],[-122.30274709708307,47.60507934060107],[-122.3027634355494,47.60510157968611],[-122.30277725952287,47.6051244938788],[-122.30278907238666,47.60514799104087],[-122.30279887102131,47.60517194240546],[-122.30280614617567,47.60519626926343],[-122.30281089594781,47.60522088600194],[-122.30281311617951,47.60524566386724],[-122.30281328899711,47.60526973955236],[-122.30279051829788,47.60598890632651],[-122.30276577537003,47.60749976229985],[-122.30276452959608,47.60898122387318],[-122.3027514737432,47.61047526276391],[-122.30273315979045,47.61199850284517],[-122.30269025162505,47.61353037221015],[-122.3026533025495,47.61505796617339],[-122.30261685893664,47.61658559598443],[-122.30257040448133,47.61777673311993],[-122.30253980417207,47.61917035822943],[-122.30242642637111,47.61924838342442],[-122.30138907565333,47.61996131908383],[-122.30062720517726,47.62048483830943],[-122.3001011434356,47.62083179699253],[-122.2996985050088,47.62109734584416],[-122.29804270137036,47.62222840030317],[-122.2977571963026,47.62242349899611],[-122.29642523226325,47.62331896380942]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000124,"geom:area_square_m":1031550.76457,"geom:bbox":"-122.302813289,47.6016652786,-122.296086993,47.6233189638","geom:latitude":47.611746,"geom:longitude":-122.29937,"iso:country":"US","lbl:latitude":47.611748,"lbl:longitude":-122.299415,"lbl:max_zoom":18,"mps:latitude":47.611748,"mps:longitude":-122.299415,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:cat_x_preferred":["Mann"],"name:ceb_x_preferred":["Mann"],"name:ces_x_preferred":["Mann"],"name:deu_x_preferred":["Mann"],"name:fin_x_preferred":["Mann"],"name:fra_x_preferred":["Mann"],"name:heb_x_preferred":["מאן"],"name:ita_x_preferred":["Mann"],"name:lit_x_preferred":["Mann"],"name:nld_x_preferred":["Mann"],"name:nor_x_preferred":["Mann"],"name:pol_x_preferred":["Mann"],"name:por_x_preferred":["Mann"],"name:rus_x_preferred":["Манн"],"name:slv_x_preferred":["Mann"],"name:spa_x_preferred":["Mann"],"name:swe_x_preferred":["Mann"],"name:tur_x_preferred":["Mann"],"name:ukr_x_preferred":["Манн"],"reversegeo:latitude":47.611748,"reversegeo:longitude":-122.299415,"src:geom":"seagv","wof:belongsto":[85866037,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"568cf710ba8ad7e173345fc5dbf88383","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128883,"neighbourhood_id":85866037,"region_id":85688623}],"wof:id":907128883,"wof:lastmodified":1566608548,"wof:name":"Mann","wof:parent_id":85866037,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869453],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907128885.geojson b/fixtures/microhoods/907128885.geojson new file mode 100644 index 0000000..a29aabb --- /dev/null +++ b/fixtures/microhoods/907128885.geojson @@ -0,0 +1 @@ +{"id":907128885,"type":"Feature","bbox":[-122.31722720932825,47.5763340670714,-122.29616732700329,47.60171593165169],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.31677266017032,47.60171593165169],[-122.31230566713282,47.60168570281976],[-122.30836805269938,47.60166625929313],[-122.30401402484509,47.60166971481827],[-122.30237515985974,47.60168810383449],[-122.30025928068304,47.60166527855052],[-122.29681362907633,47.60167752148753],[-122.29681227135355,47.60135891158684],[-122.29743154944268,47.59957615004944],[-122.2974458872315,47.59723970736167],[-122.29754039764421,47.59584401952853],[-122.29785730585705,47.59473517636413],[-122.29785511629214,47.59370293181709],[-122.29780738853779,47.59296102497766],[-122.2976786182639,47.59218395845776],[-122.29749718194095,47.59144372960105],[-122.29747124633488,47.59127821614513],[-122.2974409271005,47.59108293998077],[-122.29739883041727,47.59081116822829],[-122.29748939807463,47.59021233494253],[-122.29765540200272,47.5894495537184],[-122.29802850453135,47.58844872273043],[-122.29811788827293,47.58687195702941],[-122.29813224750353,47.58387130941404],[-122.29814425855932,47.58352399328212],[-122.29814509107098,47.58349956175937],[-122.29814592358186,47.58347513023657],[-122.29814624825748,47.58345066243572],[-122.29814606750728,47.58342624396353],[-122.29814588607144,47.58340178268128],[-122.29814519800637,47.58337732792435],[-122.29814451114628,47.58335291597074],[-122.29814331645358,47.58332846773907],[-122.2981416168463,47.5833040684785],[-122.29813991604615,47.5832796267654],[-122.2981377098237,47.58325523438089],[-122.29813550412189,47.58323084198966],[-122.29813279179437,47.58320645612363],[-122.29812957404621,47.58318211958613],[-122.29812635630104,47.58315778304852],[-122.2981226324504,47.58313345302935],[-122.29811890808466,47.58310912301673],[-122.2981146788187,47.58308484232585],[-122.29811045076099,47.58306060443816],[-122.29810520997354,47.58303637959389],[-122.29810047703101,47.58301219137848],[-122.29809473083172,47.58298801586219],[-122.29808898584206,47.58296388314896],[-122.29808324137626,47.58293975042876],[-122.29807699270926,47.58291571019085],[-122.29807023741344,47.58289167612672],[-122.298063483338,47.58286768521639],[-122.29805622435747,47.58284374327642],[-122.29804845876946,47.58281980821168],[-122.29804069558719,47.58279595840231],[-122.29803293242189,47.58277210894326],[-122.29802415894409,47.58274835813325],[-122.29801589209735,47.58272460079783],[-122.29800661442088,47.58270094211794],[-122.29799733847554,47.58267732623395],[-122.29798806322427,47.58265375315925],[-122.29797777645977,47.58263023592962],[-122.29796799753068,47.5826067549779],[-122.29795720830373,47.58258337302519],[-122.29794692638364,47.58256002700621],[-122.29793563348139,47.58253673717591],[-122.2976332200765,47.58214098661444],[-122.29716432374295,47.5814991857719],[-122.29681817483826,47.58102482124384],[-122.29640554796222,47.58041982411517],[-122.29639425810065,47.58039661974463],[-122.29638347244392,47.58037332324874],[-122.29637268386284,47.58034994080086],[-122.29636240240995,47.58032655182789],[-122.29635211925485,47.58030312040815],[-122.29634234029311,47.58027959651256],[-122.29633256013743,47.58025602981274],[-122.29632328486835,47.58023241379818],[-122.29631400892347,47.58020875497277],[-122.2963052390671,47.58018508963616],[-122.2962964668132,47.5801613386921],[-122.29628819944422,47.5801375384336],[-122.29628043746807,47.58011368850323],[-122.29627267550892,47.5800898389232],[-122.2962649111416,47.580065903385],[-122.29625765338848,47.5800419616802],[-122.29625090051778,47.58001797066134],[-122.2962441469593,47.5799939364812],[-122.29623789896648,47.57996989579714],[-122.29623164910247,47.57994576985016],[-122.2962259070331,47.5799216798386],[-122.2962201620452,47.57989750422662],[-122.29621492365818,47.57987332209764],[-122.2962101913627,47.57984913380926],[-122.29620545837763,47.57982490235975],[-122.2962007236758,47.57980062811333],[-122.29619649609151,47.5797763473434],[-122.29619277406852,47.57975206007002],[-122.2961890513649,47.57972772998648],[-122.29618583474014,47.57970339339288],[-122.29618261811838,47.57967905679921],[-122.29617990689044,47.57965467088547],[-122.29617719566505,47.57963028497166],[-122.29617499051665,47.57960589254794],[-122.2961727853703,47.57958150012416],[-122.29617108560605,47.57955705802956],[-122.2961698936481,47.57953265257267],[-122.29616869997015,47.57950820431905],[-122.29616750749592,47.57948379886881],[-122.29616732700329,47.57945933758215],[-122.29619765356551,47.57750986624203],[-122.29619915486421,47.57747317292471],[-122.29620080588913,47.57744179037888],[-122.29620346952692,47.57741039445552],[-122.29620613317137,47.57737899888296],[-122.29620981183139,47.57734767553954],[-122.29621399706754,47.57731634603014],[-122.29621818298278,47.57728505933065],[-122.29622338323573,47.57725380240087],[-122.29622909193891,47.57722262456754],[-122.29623530719492,47.57719143986626],[-122.29624152486838,47.5771603414731],[-122.29624875634643,47.57712927250512],[-122.29625649678967,47.57709828262654],[-122.29626474447608,47.57706732904053],[-122.2962735011358,47.5770364548946],[-122.29628276623957,47.57700565984442],[-122.29629253909253,47.57697490072897],[-122.29630282160038,47.57694426386324],[-122.29631361186554,47.57691366328283],[-122.29632491177401,47.57688318460101],[-122.29633672065066,47.57685278535846],[-122.29634853242756,47.57682247136393],[-122.29636135870012,47.57679223030442],[-122.29637469461272,47.57676211114286],[-122.29638854120155,47.57673211386575],[-122.29640289622608,47.57670219568283],[-122.29641776089817,47.57667239974819],[-122.29643313571576,47.57664272535323],[-122.29644902069784,47.57661317319945],[-122.29646490754895,47.57658370665686],[-122.29648181231977,47.57655439828986],[-122.29649922673434,47.57652521217003],[-122.29651664593085,47.57649619691021],[-122.29653508064824,47.57646725456908],[-122.29655402741291,47.5764385200812],[-122.29657297655255,47.57640987084608],[-122.29658855340705,47.57638739160943],[-122.29660731528762,47.5763340670714],[-122.29676188711763,47.57653528504596],[-122.29703156861495,47.57688523052977],[-122.29738382558209,47.57734353454815],[-122.29764850288413,47.57769534254583],[-122.29794816959104,47.57808440170901],[-122.29815468293397,47.57834904283447],[-122.29851566712979,47.57882878171237],[-122.29886815283591,47.57929427629816],[-122.29939679157067,47.57998889730682],[-122.2998427618501,47.58057160374327],[-122.30027770255771,47.58114005525309],[-122.30053082292957,47.58147585424733],[-122.30083625398748,47.58187018714478],[-122.30113920834121,47.58226635104336],[-122.3015575185169,47.58281890326059],[-122.30164588611815,47.58293455415571],[-122.30168744228727,47.58298902870467],[-122.30178264838722,47.58311363126457],[-122.30205883351358,47.58347620628929],[-122.30250162236653,47.58403379467848],[-122.30293864783656,47.58458430131305],[-122.30302387629327,47.58469622160433],[-122.30329331624577,47.58507049125526],[-122.30355729462923,47.58543060730938],[-122.30384179305749,47.58581757731829],[-122.30409070265092,47.58612823112341],[-122.30440971770115,47.58655314134193],[-122.3046179839876,47.58682366141124],[-122.30508760443695,47.58750402589988],[-122.30524782169552,47.58774132001522],[-122.30543418023571,47.58795342620119],[-122.30572375770447,47.58828612889371],[-122.30624329061904,47.58895684592525],[-122.30657937224167,47.58939279754298],[-122.30681191742502,47.58969688850994],[-122.30723851304613,47.5902694076733],[-122.30779620795762,47.59098023949964],[-122.30824011543785,47.59157288171177],[-122.30866984139541,47.59212958914289],[-122.30906873265752,47.59265280563053],[-122.30931124936978,47.59296803019591],[-122.30982441843847,47.59364331305262],[-122.31027875692658,47.59424480973954],[-122.31076756221663,47.59488201704165],[-122.31125283381799,47.59551926865306],[-122.31136761342171,47.59567132915296],[-122.31152899989706,47.59587650985338],[-122.31157157999587,47.5959306251909],[-122.31190123156841,47.59636891621669],[-122.31213700575572,47.59667745355603],[-122.31238310679011,47.59699266861186],[-122.31283756859561,47.59759642466716],[-122.3128722187954,47.59763886078338],[-122.31373235615011,47.59876902723375],[-122.31374922116156,47.59879185774467],[-122.31376564448773,47.59881696446288],[-122.31378256800129,47.59884185057457],[-122.31380049848094,47.59886650948447],[-122.31381893088569,47.59889099058362],[-122.31383786346984,47.59891525072456],[-122.3138572967625,47.59893929025107],[-122.31387723023543,47.59896310881886],[-122.31389816998947,47.59898665772388],[-122.31391961113272,47.59901002812181],[-122.31394155004254,47.59903309265529],[-122.31396399017208,47.59905593621522],[-122.31398692753015,47.59907847321518],[-122.31401036611857,47.59910078959186],[-122.3140348087267,47.59912279316274],[-122.31405924403886,47.59914453955837],[-122.3140846856268,47.59916601593704],[-122.31411062496356,47.59918718574718],[-122.3141370613602,47.59920800652936],[-122.31457585449823,47.59920640720476],[-122.31533682728077,47.5992009949562],[-122.3166585549389,47.59918826748308],[-122.31718514319837,47.59919116860005],[-122.31722720932825,47.59919139135508],[-122.31718656637436,47.60027196937514],[-122.31717567486592,47.60029876033814],[-122.31716575488925,47.6003240817271],[-122.31715583421129,47.6003493606561],[-122.31714591421533,47.6003746820433],[-122.31713599543005,47.60040004623278],[-122.31712607664511,47.60042541077221],[-122.31711666463372,47.60045076835011],[-122.31710725384343,47.60047616908123],[-122.3170973362403,47.60050157607043],[-122.31708843292694,47.60052701300018],[-122.3170790233194,47.60055245618124],[-122.31706961493296,47.60057794251549],[-122.31706071280327,47.60060342189533],[-122.31705181067485,47.60062890162531],[-122.31704291027671,47.60065442415099],[-122.31703451614658,47.60067994007323],[-122.31702561642275,47.6007055050566],[-122.31701722349617,47.60073106378073],[-122.31700883056129,47.60075662250421],[-122.31700043831971,47.600782224037],[-122.3169920465786,47.60080782521154],[-122.31698416163616,47.60083342012707],[-122.31697577110899,47.6008590644544],[-122.31696788807251,47.60088474498186],[-122.31696000432673,47.60091038269886],[-122.31695262807264,47.60093605661612],[-122.31694474501305,47.60096173714197],[-122.31693736996431,47.60098745386136],[-122.3169299949083,47.60101317058029],[-122.31692261984502,47.60103888729872],[-122.31691524599456,47.60106464681984],[-122.3169083789363,47.60109039973155],[-122.31690100508155,47.60111615960254],[-122.31689413871086,47.60114195532331],[-122.3168872728521,47.60116775103689],[-122.31688040646782,47.60119354675678],[-122.31687404809757,47.60121937867071],[-122.31686768973101,47.60124521093509],[-122.31686133186689,47.60127104284151],[-122.31685497469783,47.60129691755748],[-122.31684861630234,47.60132274946993],[-122.31684225913065,47.60134862453599],[-122.31683640996498,47.60137453544546],[-122.31683055906466,47.60140040390906],[-122.31682470988734,47.60142631481789],[-122.31681886192432,47.60145226852958],[-122.31681351902988,47.60147817318694],[-122.31680817734019,47.60150412029635],[-122.31680232937018,47.60153007435799],[-122.31679749447359,47.60155601485845],[-122.31679215399801,47.60158200512108],[-122.31678681228703,47.60160795222944],[-122.31678197860558,47.60163393588322],[-122.31677714612934,47.60165996198908],[-122.3167723124382,47.60168594564243],[-122.31677266017032,47.60171593165169]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00023,"geom:area_square_m":1914609.530362,"geom:bbox":"-122.317227209,47.5763340671,-122.296167327,47.6017159317","geom:latitude":47.593588,"geom:longitude":-122.303871,"iso:country":"US","lbl:latitude":47.595673,"lbl:longitude":-122.30387,"lbl:max_zoom":18,"mps:latitude":47.595673,"mps:longitude":-122.30387,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Atlantic"],"name:fra_x_preferred":["Atlantic"],"reversegeo:latitude":47.595673,"reversegeo:longitude":-122.30387,"src:geom":"seagv","wof:belongsto":[85866037,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q4816245"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8efc9f7ff8e5a160755a512148408185","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907128885,"neighbourhood_id":85866037,"region_id":85688623}],"wof:id":907128885,"wof:lastmodified":1566608548,"wof:name":"Atlantic","wof:parent_id":85866037,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869093],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129167.geojson b/fixtures/microhoods/907129167.geojson new file mode 100644 index 0000000..4ae6e67 --- /dev/null +++ b/fixtures/microhoods/907129167.geojson @@ -0,0 +1 @@ +{"id":907129167,"type":"Feature","bbox":[-122.3685848152815,47.61858049046028,-122.34364226249598,47.62676147149658],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.36453007603036,47.62586648246793],[-122.36060520094806,47.62582643272219],[-122.36053924670789,47.62580444797547],[-122.36048794896553,47.62576780673093],[-122.36040733822755,47.6257384937353],[-122.36031207099175,47.62572383723749],[-122.3587364974766,47.62572383723749],[-122.35671390077809,47.62570185249076],[-122.35671390077809,47.62544536377899],[-122.35364336448578,47.62542337903227],[-122.34731175742957,47.62540139428555],[-122.3436493263874,47.62541099436691],[-122.34366267861951,47.62514544848072],[-122.34364226249598,47.62377869530984],[-122.34443244644079,47.62314328403112],[-122.34626045345642,47.62177806666198],[-122.34763428383033,47.6206791827023],[-122.3479276405436,47.62046435778009],[-122.34910268613781,47.61955708600252],[-122.34980511092735,47.61901106331323],[-122.3503572861107,47.61858049046028],[-122.35134848711303,47.61858535338488],[-122.35282023241685,47.61858914856664],[-122.3542924848897,47.6185929175918],[-122.35576939667806,47.61859999009026],[-122.3572366812048,47.61860717234394],[-122.35780674503289,47.61861628973696],[-122.35844675515354,47.61860771468798],[-122.35859223368568,47.61872834216865],[-122.3592806594774,47.61929883814326],[-122.36016730985004,47.62002450932476],[-122.36228790967523,47.62178478589015],[-122.36386913884445,47.62311145507555],[-122.36541119929798,47.62437929143059],[-122.36654071202277,47.62525421412971],[-122.36741163832225,47.62588677099898],[-122.3685848152815,47.62676147149658],[-122.36833280752033,47.62672643902887],[-122.36766612789104,47.62648740236015],[-122.3674316370139,47.62639296388884],[-122.36652894264695,47.62604180727678],[-122.36571906932333,47.62572598336426],[-122.36477162823421,47.62536958893143],[-122.36465730365411,47.62527502772021],[-122.3645408843284,47.6251781805688],[-122.3645398075279,47.625227722899],[-122.36453109159173,47.62586172094924],[-122.36453007603036,47.62586648246793]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000116,"geom:area_square_m":965389.032421,"geom:bbox":"-122.368584815,47.6185804905,-122.343642262,47.6267614715","geom:latitude":47.622669,"geom:longitude":-122.354709,"iso:country":"US","lbl:latitude":47.622013,"lbl:longitude":-122.354709,"lbl:max_zoom":18,"mps:latitude":47.622013,"mps:longitude":-122.354709,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:deu_x_preferred":["Uptown"],"name:fra_x_preferred":["Uptown"],"name:jpn_x_preferred":["アップタウン"],"name:kor_x_preferred":["업타운"],"reversegeo:latitude":47.622013,"reversegeo:longitude":-122.354709,"src:geom":"mz","wof:belongsto":[85869447,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6279e793e80b16f62b267e4188eab004","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129167,"neighbourhood_id":85869447,"region_id":85688623}],"wof:id":907129167,"wof:lastmodified":1566608544,"wof:name":"Uptown","wof:parent_id":85869447,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783305],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129169.geojson b/fixtures/microhoods/907129169.geojson new file mode 100644 index 0000000..c3210ad --- /dev/null +++ b/fixtures/microhoods/907129169.geojson @@ -0,0 +1 @@ +{"id":907129169,"type":"Feature","bbox":[-122.3930461873176,47.67591418595407,-122.37633656472248,47.69060515914627],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.37670790751649,47.67599822904589],[-122.37790305763099,47.67599788490211],[-122.37998862530341,47.67598934293856],[-122.38182788442997,47.67599207945698],[-122.38360275247724,47.67597981042404],[-122.3854357214252,47.67595879566174],[-122.38708743420604,47.67595213437687],[-122.38770239121612,47.67594768759288],[-122.38895575916798,47.67594244886779],[-122.39044934626308,47.67592598688679],[-122.39177310927295,47.67591581315035],[-122.3928271720658,47.67591531433525],[-122.39295655054526,47.67591418595407],[-122.39295630346368,47.67632870998336],[-122.39295961840902,47.67692955844702],[-122.39296126335915,47.67750857902157],[-122.39297150298634,47.67810342002372],[-122.39297500980646,47.67925177559714],[-122.39298377112864,47.67981424642591],[-122.39300195771972,47.68113039427877],[-122.39301453079068,47.68242858089091],[-122.39301615804834,47.68373411554943],[-122.3930228270559,47.68502158628398],[-122.39303057758862,47.68634507429638],[-122.39303274662132,47.68766863862898],[-122.3930461873176,47.68899564758119],[-122.39301066505074,47.69029809133717],[-122.39300241535642,47.69058132055665],[-122.39243237327538,47.69058269381112],[-122.39034791081274,47.69056312044921],[-122.38819297912386,47.69058050291446],[-122.38583283160172,47.69057660419814],[-122.38327531600729,47.69059316459696],[-122.38320121502439,47.69059365854469],[-122.38145302065547,47.69059788290438],[-122.379876313408,47.69059885417487],[-122.37910384133242,47.69060419297455],[-122.37711791043151,47.69060296390281],[-122.3768103447661,47.69060515914627],[-122.37681026483382,47.69053412427009],[-122.37681098912648,47.69001171430062],[-122.37680306748778,47.68897614672397],[-122.37679475101363,47.68794435503207],[-122.37680040280794,47.68700684573382],[-122.37678440374883,47.68609233667588],[-122.37678526060854,47.68518136985772],[-122.37678053588465,47.68427047860571],[-122.3767873108415,47.68337078541776],[-122.37677742324162,47.68228605918821],[-122.3767678204867,47.68119383105842],[-122.37677044250314,47.68015430722797],[-122.37677006563926,47.67920179799157],[-122.37676988221591,47.67806784040807],[-122.37675975088072,47.67753876468257],[-122.37676198545913,47.67686213733803],[-122.37677217176268,47.67643616976648],[-122.37677245110581,47.67641140220005],[-122.3767707001024,47.67638661896828],[-122.37676692257945,47.67636194882915],[-122.3767611205732,47.67633747774511],[-122.3767538021207,47.67631319848254],[-122.37674496924691,47.67628919665303],[-122.37673360870548,47.67626552915309],[-122.37672124636714,47.67624230377039],[-122.37670635889803,47.67621949796996],[-122.37669047344887,47.6761972626929],[-122.3766725754922,47.67617561168188],[-122.37665369355058,47.67615500237036],[-122.37662081150552,47.67612438566283],[-122.37659791092004,47.67610515888866],[-122.3765730062211,47.67608681635109],[-122.37654711243437,47.67606934359819],[-122.37651972205768,47.67605274820529],[-122.37633656472248,47.67591769896645]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000237,"geom:area_square_m":1975368.52451,"geom:bbox":"-122.393046187,47.675914186,-122.376336565,47.6906051591","geom:latitude":47.683276,"geom:longitude":-122.384898,"iso:country":"US","lbl:latitude":47.683274,"lbl:longitude":-122.384897,"lbl:max_zoom":18,"mps:latitude":47.683274,"mps:longitude":-122.384897,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":15,"name:deu_x_preferred":["Loyal Heights"],"name:eng_x_preferred":["Loyal Heights"],"name:eng_x_variant":["Loyal Hts"],"name:fra_x_preferred":["Loyal Heights"],"name:kor_x_preferred":["업타운"],"name:por_x_preferred":["Loyal Heights"],"name:sco_x_preferred":["Loyal Heights"],"name:spa_x_preferred":["Loyal Heights"],"name:swe_x_preferred":["Loyal Heights"],"name:und_x_variant":["Loyal"],"reversegeo:latitude":47.683274,"reversegeo:longitude":-122.384897,"src:geom":"seagv","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q26729260"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e561bdbfad137490e0f97d4bc751a876","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129169,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":907129169,"wof:lastmodified":1566608544,"wof:name":"Loyal Heights","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85831629],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129171.geojson b/fixtures/microhoods/907129171.geojson new file mode 100644 index 0000000..20e30a6 --- /dev/null +++ b/fixtures/microhoods/907129171.geojson @@ -0,0 +1 @@ +{"id":907129171,"type":"Feature","bbox":[-122.40200434166536,47.66070240716573,-122.3762069108763,47.67599822904589],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.37621415009455,47.67574313828309],[-122.37620697011516,47.67474916188883],[-122.3762069108763,47.67361897281177],[-122.37620875748351,47.67255298169327],[-122.37621540101532,47.67146053322745],[-122.3762161260318,47.67035676852991],[-122.37621200355261,47.66926065272464],[-122.37621898170605,47.6681795106282],[-122.37621491432786,47.66710233114314],[-122.3762223414066,47.6660363069762],[-122.37621860845479,47.66497039075584],[-122.37622401595137,47.66383635695511],[-122.37621333547924,47.66289534067378],[-122.37621512781847,47.66220359491711],[-122.37622608715756,47.6616326743118],[-122.37623202828763,47.66108071601214],[-122.37622829329366,47.6609890799218],[-122.37631103400737,47.66100758168655],[-122.37634758912534,47.66100845739675],[-122.37639861545428,47.66100116802566],[-122.3763997681446,47.66095453795953],[-122.3764099943619,47.66088884745074],[-122.37648002159466,47.66088926998437],[-122.37664988396513,47.66088589727055],[-122.37680204483833,47.66088439238447],[-122.37690496258583,47.66088188364453],[-122.37702008518609,47.66088032340874],[-122.3771180457127,47.66088173753755],[-122.3772329056737,47.66088840693406],[-122.37723692283326,47.66093826615995],[-122.37724160703657,47.66101056682958],[-122.37724742698099,47.66110401694694],[-122.37730536931723,47.66112461080132],[-122.37743178277722,47.66116154289361],[-122.37753317891662,47.66117610627297],[-122.3775844128604,47.66114165009788],[-122.37761486559465,47.66109080968937],[-122.37765437534352,47.6610203519417],[-122.37767725863591,47.66098795114039],[-122.37771539885219,47.66093970550939],[-122.37772654460257,47.66090502172618],[-122.37774304035551,47.66086255364664],[-122.37775860455308,47.66082288287794],[-122.37777746505371,47.66077464138244],[-122.37779127634943,47.66074429186018],[-122.37782088195239,47.66071616993364],[-122.37788795066157,47.66070240716573],[-122.37793077853635,47.66070949565169],[-122.37798246481306,47.66072443265539],[-122.37803738088215,47.66074562418418],[-122.37808819936461,47.66076550033038],[-122.37814444112139,47.66078007573942],[-122.37822393707674,47.66080890281565],[-122.37828525770264,47.6608236665358],[-122.37834362784385,47.66084155501768],[-122.37841148527066,47.66085434452989],[-122.37848816866347,47.66087386962637],[-122.37857216304289,47.66090040741058],[-122.37862482319699,47.66091396033477],[-122.37869736782922,47.66093079923092],[-122.37875168663416,47.66094895657415],[-122.37882068128866,47.66096584356084],[-122.3788629523926,47.66098832029324],[-122.37892244156707,47.66100970661808],[-122.37908103525507,47.66105391195568],[-122.37926510938509,47.66110188402826],[-122.37938929903541,47.66113224605867],[-122.37942155575776,47.66110798676899],[-122.37947898319071,47.66112828678123],[-122.37964268252057,47.66117353570232],[-122.37980001614802,47.66122649764087],[-122.37994611089928,47.66127686976395],[-122.38006585299634,47.66131119015786],[-122.38013094581126,47.66133331369078],[-122.3801534311867,47.66135580138545],[-122.38017414808907,47.66138705357435],[-122.38018883513432,47.66142027277076],[-122.38021103821723,47.66148440889214],[-122.38024316741426,47.66150702286451],[-122.38030335411379,47.66151773058991],[-122.3803507549782,47.66152501298717],[-122.3803953757016,47.66154115924787],[-122.38047944606188,47.66157017956689],[-122.38056013010117,47.66160473025604],[-122.38061465422128,47.66162973895138],[-122.38066359394219,47.66165460938772],[-122.38070187264341,47.66167928173037],[-122.38071557954108,47.66173068025932],[-122.38069073230724,47.66178225965533],[-122.38066435778438,47.6618166364496],[-122.38064803545355,47.66186484362063],[-122.38068448469015,47.66187917284273],[-122.38071794676462,47.6618954274041],[-122.38075218778405,47.66190374551827],[-122.38079050109987,47.66191252213181],[-122.38082921603741,47.66193478920123],[-122.38086622764114,47.66196800509161],[-122.3808954204882,47.66199421457269],[-122.38093240794383,47.66202661649457],[-122.38096864325153,47.6620508026807],[-122.3810206415865,47.66207614524775],[-122.38109887196653,47.6621134707754],[-122.38116745022388,47.66215037076184],[-122.38123811446285,47.66218916994813],[-122.38128822357389,47.66221920822617],[-122.38133842151143,47.66225224476056],[-122.38138971589949,47.66228800788517],[-122.3814327899311,47.66232032692648],[-122.38150355181413,47.66237943309822],[-122.38157273404487,47.6624365895899],[-122.38161407394976,47.66247882945536],[-122.38165628071744,47.66251608727855],[-122.38169982114471,47.6625470286],[-122.38180678708885,47.66262920695395],[-122.38189719747827,47.66270064178392],[-122.3820245151497,47.66280173735337],[-122.38215957074182,47.66290709763447],[-122.38223495665324,47.66296806808426],[-122.3823315521175,47.66304271769982],[-122.3823582422783,47.66307003205292],[-122.3823429688029,47.66310233032983],[-122.3823006821038,47.66318161048106],[-122.3822486279647,47.66325661055193],[-122.38220591657117,47.66332162940398],[-122.38216549548953,47.66337839079765],[-122.3821301385778,47.66343482639731],[-122.38211130568045,47.66346687294966],[-122.38208866064524,47.66350719763011],[-122.3820729943123,47.6635433570874],[-122.38207992140939,47.66357149723056],[-122.38210231718652,47.66360795307818],[-122.38213261519581,47.66363714671976],[-122.38215200982634,47.66365800539911],[-122.38217963204106,47.6636995745085],[-122.38222664006088,47.66376170231032],[-122.38226501345913,47.66378945764306],[-122.38228703298839,47.66381327974022],[-122.38229456590363,47.66384471050609],[-122.38232469112461,47.66388513153049],[-122.38235110404061,47.66392016177073],[-122.38239278852063,47.66395686978864],[-122.38242584512977,47.66397647107892],[-122.38247158057966,47.66397884820272],[-122.38252666755744,47.6639545348073],[-122.38258906807128,47.66392022459033],[-122.38268843496473,47.66386647432247],[-122.38280332087278,47.66380570066036],[-122.38290519903141,47.66375110175899],[-122.38294171714797,47.6637336385167],[-122.38296613376366,47.66375275771836],[-122.38303116525479,47.66380671378461],[-122.3831329000261,47.66390048729757],[-122.3832395850428,47.66399007986501],[-122.38335758215462,47.66408470274605],[-122.38338757106867,47.66406947060223],[-122.38342654183523,47.66406619804844],[-122.3834833214065,47.66411563882805],[-122.38355951895696,47.66418670916958],[-122.3836079368877,47.66422799492189],[-122.3836649861098,47.66426946291428],[-122.38370521685079,47.66425739016084],[-122.38374678885961,47.66429028581818],[-122.38381508444405,47.66435156623104],[-122.38389152905813,47.66441389250918],[-122.38392898663145,47.66444491617123],[-122.38394779214099,47.66448000679915],[-122.38388181726665,47.66451355214251],[-122.38381499971518,47.66455285026977],[-122.38387902593955,47.66460707682901],[-122.38397756649951,47.66467869950439],[-122.38413583269704,47.6645923552987],[-122.3842421452771,47.66453332511299],[-122.38433135279799,47.6644791975459],[-122.38441281277147,47.66443751450934],[-122.38448969193597,47.66439533713778],[-122.3845830622275,47.6643447088215],[-122.38466105254824,47.66430577225234],[-122.38471309647538,47.66428149888466],[-122.38474672562896,47.66426925875523],[-122.38478893609533,47.66430651541519],[-122.38484938077764,47.66435971902679],[-122.38491605888446,47.66441776442448],[-122.38496388172832,47.66445605858738],[-122.3850172504432,47.66451017242997],[-122.38495372199014,47.66454064347106],[-122.38488642208996,47.66458076273375],[-122.38395298197972,47.66510547939225],[-122.38405660665556,47.66519388198586],[-122.38377806577535,47.66544963842072],[-122.38468233436261,47.66615884990043],[-122.38528763472694,47.66660653764897],[-122.38579274519975,47.66697032017094],[-122.38612700857722,47.66719762720947],[-122.38639121726374,47.6673633230826],[-122.38750493948538,47.66767642198941],[-122.38749180272747,47.66706527795996],[-122.38775691519933,47.66677947197187],[-122.38775664209335,47.66680081771917],[-122.38778386216538,47.66684568991293],[-122.3878179050539,47.66689813829351],[-122.3878537540422,47.66692614071192],[-122.38789902858167,47.66696391146838],[-122.38792504460896,47.66698549277311],[-122.38798909328894,47.66700629773754],[-122.38803695243516,47.66702869491549],[-122.3880683099671,47.66704223424583],[-122.38810202364462,47.66706670958678],[-122.38806120564325,47.66711006822115],[-122.38807474663874,47.66713867478362],[-122.38812121482951,47.6671654609862],[-122.38817925801189,47.66717208076214],[-122.3882074961891,47.667149202303],[-122.3882576083311,47.66709423402913],[-122.38829544846215,47.66705310118428],[-122.38832311425125,47.66702804494511],[-122.3883661140455,47.66704065415887],[-122.38840365641022,47.66705740784396],[-122.3884617328152,47.66708210749433],[-122.38853976386918,47.66711231850776],[-122.38863432755444,47.66715241517215],[-122.38868517301246,47.66717284336638],[-122.3888124537701,47.66722101920784],[-122.38887368819321,47.66724948859571],[-122.3889198230204,47.66728206321135],[-122.38895321875606,47.66731284066665],[-122.3889861235986,47.66732721536557],[-122.38902285514573,47.66733382602215],[-122.38909073169562,47.66732989986997],[-122.38911386573822,47.66722127303658],[-122.38913669937712,47.66713651495582],[-122.38917324235418,47.66713682976952],[-122.38917348464204,47.66728052683158],[-122.38917126385795,47.66742669966563],[-122.38920212368883,47.66745751168724],[-122.38928141265453,47.66746191277573],[-122.38933006377711,47.66745987729137],[-122.38937918975768,47.66745676410308],[-122.38948243885284,47.66744794127469],[-122.38954322169715,47.66744436903137],[-122.38960895371852,47.66743661598309],[-122.38971262041254,47.66742478845085],[-122.38975987279986,47.66742688469855],[-122.38980730602233,47.66743501955544],[-122.3899046591752,47.66744958490769],[-122.3900519235746,47.66747032277537],[-122.39013779955162,47.66749134244505],[-122.39020333711125,47.66749404570665],[-122.3902475208629,47.66749532694653],[-122.39028317470422,47.66749980953686],[-122.39030044714646,47.66753436348235],[-122.39035377091551,47.6675358623119],[-122.3904330267383,47.66753914903829],[-122.39047525047286,47.66755969430125],[-122.39047334225339,47.66761456130984],[-122.39047777229439,47.66766081562351],[-122.39051427639413,47.66765980242807],[-122.39063500822452,47.66765866614268],[-122.39074607977128,47.66765689069861],[-122.39082778160534,47.66765714457043],[-122.39089434968976,47.66766034753623],[-122.39089851079274,47.66762987103415],[-122.39090934373016,47.66758499306832],[-122.39094995396906,47.66758555179222],[-122.39099354742592,47.66756713247669],[-122.39099884901034,47.66750699187544],[-122.39104043247504,47.66750616632248],[-122.39108402583328,47.66748774697227],[-122.39110868030149,47.66746384523874],[-122.39114302836485,47.66744169605817],[-122.39120162774239,47.66738219783725],[-122.39124012696072,47.66738004310395],[-122.39129077182444,47.66735989902655],[-122.39133519831474,47.66733542708042],[-122.39137947764907,47.66730603004383],[-122.39141294062625,47.66727129684261],[-122.3914237681055,47.66724317126587],[-122.39142844347816,47.66721294462381],[-122.39144784983408,47.66716632147474],[-122.39143692527445,47.66714042172188],[-122.39141351007159,47.66712103330676],[-122.3914502706663,47.66709473822237],[-122.39150153965014,47.6670954078681],[-122.39159698438272,47.66709710139378],[-122.39169335306622,47.66709578305797],[-122.39178427535647,47.66709895205192],[-122.39184711895435,47.66709642157493],[-122.39188721367722,47.66709672974305],[-122.3919237428699,47.66711349614667],[-122.39203084572125,47.66711477287701],[-122.39208887264724,47.66712083388104],[-122.39209113667181,47.66716249044416],[-122.39209623522424,47.66723097203578],[-122.39209960243323,47.6673263407844],[-122.39212311410294,47.66738278793949],[-122.39213456190606,47.66740919466019],[-122.39217108121164,47.66740869491169],[-122.39225224364127,47.66740788429197],[-122.39238968033284,47.66740544632769],[-122.39247795144695,47.66740479517214],[-122.39254028793418,47.66740227090743],[-122.39263232146644,47.66739171395865],[-122.39267528791474,47.66740316518359],[-122.39270855300072,47.66741260680377],[-122.39280633789627,47.66740771199613],[-122.39287399014795,47.66739633179746],[-122.39291982606404,47.66738503580297],[-122.3929794818486,47.66739463020888],[-122.3930204014849,47.66738858584338],[-122.39309777433148,47.66737985745818],[-122.39316729400441,47.66737997671501],[-122.3932250745761,47.6673778141995],[-122.3932219554416,47.66740913363566],[-122.39322283252389,47.66747218855779],[-122.39323843629697,47.66753559917311],[-122.39329750546007,47.66755946852314],[-122.39335375595945,47.66755702715984],[-122.39339996484124,47.66752434683825],[-122.39344465613456,47.66752561988865],[-122.39344769780378,47.66755933955805],[-122.39348984527092,47.66756039051197],[-122.39352743635408,47.66756180359587],[-122.3935669743977,47.66756044812717],[-122.39361416021814,47.66756031600781],[-122.39364526276248,47.66754840759999],[-122.39368039104738,47.66750156869221],[-122.39372025417443,47.66744343944956],[-122.39375875228913,47.66739055606855],[-122.39375769274892,47.66732146253494],[-122.39375847589852,47.66721232687193],[-122.39376122388086,47.66711794555808],[-122.39376168087712,47.66701485546797],[-122.3937607584739,47.66693342057275],[-122.39376145633372,47.66685526271461],[-122.39376092093553,47.66678671865737],[-122.39376572200398,47.66669312349539],[-122.39376384311895,47.66661362964727],[-122.39376726907305,47.66655874174214],[-122.39379670959934,47.66654218623304],[-122.39383320332365,47.66654087201481],[-122.39391031345555,47.66654032980843],[-122.39402998018323,47.66653761944483],[-122.39411771716858,47.66653611721782],[-122.39419376484662,47.66653400399025],[-122.3942459974973,47.66653298851338],[-122.39430786067295,47.6665316265894],[-122.39438248433468,47.66653278916357],[-122.3944514548006,47.66653154385995],[-122.3945265292943,47.66653081503524],[-122.39459043656892,47.66652993913117],[-122.39459525159948,47.66655510841249],[-122.39463546865582,47.66655948427306],[-122.39471674421765,47.66656248340011],[-122.39481353691151,47.66655841437336],[-122.39484375984593,47.66653413572905],[-122.3948411470248,47.66648095876442],[-122.39483488651395,47.66642457538938],[-122.39483280173434,47.66638895750069],[-122.3948495245509,47.6663544523763],[-122.394885346531,47.6663476632794],[-122.39493539462399,47.66634149307115],[-122.39506963344384,47.66631715927657],[-122.39520643320134,47.66629360448661],[-122.39530899140254,47.66627878786758],[-122.3953983943876,47.66626522240494],[-122.39545803806655,47.66625754944031],[-122.39548229707837,47.66623746557057],[-122.39551156443635,47.66618140891424],[-122.3955805007113,47.6660608844761],[-122.3956397550344,47.66595587388688],[-122.39569640019772,47.66584845691479],[-122.39577019401372,47.66572075341407],[-122.3958141405186,47.66564667243195],[-122.39583792551599,47.66559394729818],[-122.39580104628418,47.66558241377786],[-122.3957298872516,47.66556145344395],[-122.39557083289746,47.66551976218482],[-122.39542618616765,47.66548472816255],[-122.39520544969734,47.66543347108677],[-122.39510120057444,47.66540885092482],[-122.39495805948108,47.66537323901487],[-122.39486753675601,47.6653495016551],[-122.39482323120137,47.66534411073795],[-122.39478376872783,47.66534790776548],[-122.39471174789313,47.66534889501506],[-122.39464983853362,47.66534867242375],[-122.39461163483232,47.66534371197562],[-122.39457125406467,47.66533385426446],[-122.394512428063,47.66533491780537],[-122.39448922456864,47.66535635794038],[-122.39442125003276,47.66534002332561],[-122.39427306195098,47.66530529366057],[-122.3941546121346,47.66528086724275],[-122.39410911568164,47.66525269922792],[-122.39414281564252,47.66519216929677],[-122.39415028342107,47.6651367117978],[-122.39406340363418,47.66511596585498],[-122.39393402303483,47.66508234899769],[-122.39377346710187,47.66504123284984],[-122.39363708572095,47.66501101044847],[-122.39357769262674,47.664993186853],[-122.39344681158171,47.66497715631255],[-122.39329448855446,47.66495674910723],[-122.3930882316585,47.66493133888235],[-122.39292273862036,47.66491166853358],[-122.39273795619368,47.66489170501661],[-122.39259540217095,47.66487557639212],[-122.39242080465267,47.66485684387808],[-122.3921962901031,47.6648316823013],[-122.39203434803771,47.6648119620737],[-122.39186582057253,47.66479258864251],[-122.39167946847931,47.66477101704236],[-122.39150787398604,47.66475087111796],[-122.39133734346308,47.66473238105836],[-122.39123036659853,47.66471820623872],[-122.39119012609524,47.66471297242182],[-122.39115678933203,47.66470108923215],[-122.39111666299539,47.66468274359712],[-122.39109013725555,47.66464416069767],[-122.3911322746044,47.66464495535948],[-122.39125296181348,47.66465950010826],[-122.39142353313419,47.66467936031736],[-122.39158493377273,47.66469797514531],[-122.39174836492016,47.66471660443428],[-122.39191996709404,47.66473700680995],[-122.39206859863332,47.66475279618539],[-122.39223760777136,47.6647713059764],[-122.3923842776909,47.66478934947276],[-122.3925431191034,47.66480718370259],[-122.39270349852227,47.66482555366576],[-122.39283896799883,47.66484233650947],[-122.39300091046402,47.66486205559326],[-122.39318930104065,47.66488389721794],[-122.39333236216265,47.66490001815713],[-122.39353339198287,47.66492031517829],[-122.39360174017445,47.66493223229381],[-122.39368402322617,47.6649519707042],[-122.39383641498816,47.66499157061565],[-122.39397448145736,47.66502721096982],[-122.39413602017979,47.66506724217136],[-122.39427651762021,47.6650993355217],[-122.39438354818661,47.66513214427826],[-122.39452161540426,47.66516778396917],[-122.39462687806783,47.66519239040793],[-122.39474853550537,47.66522225646448],[-122.39485852001059,47.6652520251458],[-122.39494193234708,47.66527556025202],[-122.39500713552829,47.66530097280562],[-122.39504241210595,47.66530982914563],[-122.39509860639401,47.66532251183813],[-122.39518789996674,47.66533911109312],[-122.39526096303388,47.66535593248726],[-122.39539027052498,47.66538706390548],[-122.39553341067662,47.66542263282096],[-122.39569588375059,47.66545990680331],[-122.39581394314344,47.66548819288249],[-122.39594944404958,47.66552279487289],[-122.39612484341895,47.66556807478187],[-122.396256696496,47.66559947004465],[-122.39642236171021,47.66564162664908],[-122.39657919012672,47.66567674916198],[-122.39667944838062,47.66570360762786],[-122.3968021972279,47.66573594150033],[-122.3969239473695,47.66576880314104],[-122.39700773746681,47.66578796113839],[-122.39709060402737,47.6658101312504],[-122.397234704122,47.66584379940296],[-122.39737069756752,47.66587783595645],[-122.3975045473275,47.66590808871209],[-122.39762825348477,47.66593848026385],[-122.39778465869273,47.6659763491794],[-122.39792778715321,47.66601140110141],[-122.39804337868624,47.6660419036678],[-122.3981519108246,47.6660738743868],[-122.39823896714879,47.66610035620413],[-122.39832078586775,47.66608770690771],[-122.39836147804604,47.66612472227891],[-122.39839624834177,47.66613358490261],[-122.39843109214354,47.66614488829232],[-122.39849344093558,47.66615966998888],[-122.39856190796004,47.6661754384288],[-122.39868460105444,47.66620584312201],[-122.39879307640685,47.66623588607251],[-122.39890767913398,47.66626721564469],[-122.39902635608888,47.66629904611217],[-122.39914922262285,47.66633518895318],[-122.39924339749025,47.66636212882105],[-122.39932849276032,47.66639086446597],[-122.39943192120646,47.66642179013102],[-122.39952193142894,47.66644523122461],[-122.3995874722871,47.66646489518738],[-122.39967036502512,47.66648787702138],[-122.39971245087487,47.66650375061914],[-122.39974424447084,47.6665148386387],[-122.39974080753177,47.66656916995171],[-122.39973926813195,47.66661910508408],[-122.39973905529205,47.66664571461175],[-122.39979284417551,47.66667950742536],[-122.39984937205188,47.66670315143485],[-122.39994089296088,47.66674302374982],[-122.40003339477337,47.66678176813151],[-122.4001281415277,47.6668276370482],[-122.40027581026845,47.66687851893322],[-122.40040130296208,47.66693437553683],[-122.40054281983738,47.66698315649551],[-122.40068834580356,47.66703025426022],[-122.40078633421612,47.66708263299558],[-122.40091275963758,47.66713573433667],[-122.4009822057235,47.66718387868295],[-122.4010439872677,47.66721344811037],[-122.40117032336006,47.66726355125385],[-122.40128762770262,47.66731703464905],[-122.40142084120639,47.66735963079782],[-122.40154001889915,47.66740790413313],[-122.4016151876319,47.66744388708575],[-122.40168512386562,47.66744099626198],[-122.40176300547269,47.66746597319919],[-122.40184732093545,47.66750238707135],[-122.4019379684618,47.66756364927326],[-122.40200434166536,47.66784619508945],[-122.40194148182799,47.66804997273742],[-122.40101294758784,47.66768160948311],[-122.39832732559971,47.66748456380363],[-122.39833785211165,47.6681206608513],[-122.39832733528478,47.66856343268898],[-122.39830595945782,47.66945450760386],[-122.3983027313344,47.66956637606422],[-122.39833757904937,47.67109441988498],[-122.39834327434251,47.67202505374682],[-122.39837349789158,47.67409038855582],[-122.39836900529026,47.67582861092068],[-122.39826401749875,47.6758644570828],[-122.39567368378326,47.67587961442324],[-122.39295655054526,47.67591418595407],[-122.3928271720658,47.67591531433525],[-122.39177310927295,47.67591581315035],[-122.39044934626308,47.67592598688679],[-122.38895575916798,47.67594244886779],[-122.38770239121612,47.67594768759288],[-122.38708743420604,47.67595213437687],[-122.3854357214252,47.67595879566174],[-122.38360275247724,47.67597981042404],[-122.38182788442997,47.67599207945698],[-122.37998862530341,47.67598934293856],[-122.37790305763099,47.67599788490211],[-122.37670790751649,47.67599822904589],[-122.37633656472248,47.67591769896645]]],[[[-122.38795639519209,47.66656442144621],[-122.38795268585754,47.66656943844349],[-122.38793761312354,47.66658466956061],[-122.38795639519209,47.66656442144621]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000243,"geom:area_square_m":2027097.76775,"geom:bbox":"-122.402004342,47.6607024072,-122.376206911,47.675998229","geom:latitude":47.670194,"geom:longitude":-122.386309,"iso:country":"US","lbl:latitude":47.671555,"lbl:longitude":-122.386062,"lbl:max_zoom":18,"mps:latitude":47.671555,"mps:longitude":-122.386062,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ara_x_preferred":["آدامز"],"name:bel_x_preferred":["Адамс"],"name:bre_x_preferred":["Adams"],"name:bul_x_preferred":["Адамс"],"name:cat_x_preferred":["Adams"],"name:ceb_x_preferred":["Adams"],"name:ces_x_preferred":["Adams"],"name:deu_x_preferred":["Adams"],"name:fas_x_preferred":["ادامز"],"name:fin_x_preferred":["Adams"],"name:fra_x_preferred":["Adams"],"name:heb_x_preferred":["אדמס"],"name:hun_x_preferred":["Adams"],"name:ita_x_preferred":["Adams"],"name:jpn_x_preferred":["アダムズ"],"name:kat_x_preferred":["ადამსი"],"name:kor_x_preferred":["애덤스"],"name:lav_x_preferred":["Adams"],"name:lit_x_preferred":["Adams"],"name:nld_x_preferred":["Adams"],"name:nor_x_preferred":["Adams"],"name:pol_x_preferred":["Adams"],"name:por_x_preferred":["Adams"],"name:ron_x_preferred":["Adams"],"name:rus_x_preferred":["Адамс"],"name:slk_x_preferred":["Adams"],"name:slv_x_preferred":["Adams"],"name:spa_x_preferred":["Adams"],"name:srp_x_preferred":["Адамс"],"name:swe_x_preferred":["Adams"],"name:tur_x_preferred":["Adams"],"name:ukr_x_preferred":["Адамс"],"name:vol_x_preferred":["Adams"],"name:zho_x_preferred":["亚当斯"],"reversegeo:latitude":47.671555,"reversegeo:longitude":-122.386062,"src:geom":"seagv","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"30de5c777f762bf8db7e1196d1b1f8f6","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129171,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":907129171,"wof:lastmodified":1566608546,"wof:name":"Adams","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869841],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129173.geojson b/fixtures/microhoods/907129173.geojson new file mode 100644 index 0000000..0955117 --- /dev/null +++ b/fixtures/microhoods/907129173.geojson @@ -0,0 +1 @@ +{"id":907129173,"type":"Feature","bbox":[-122.37681098912648,47.67589700680676,-122.36599385013977,47.69064817247816],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.37651972205768,47.67605274820529],[-122.37654711243437,47.67606934359819],[-122.3765730062211,47.67608681635109],[-122.37659791092004,47.67610515888866],[-122.37662081150552,47.67612438566283],[-122.37665369355058,47.67615500237036],[-122.3766725754922,47.67617561168188],[-122.37669047344887,47.6761972626929],[-122.37670635889803,47.67621949796996],[-122.37672124636714,47.67624230377039],[-122.37673360870548,47.67626552915309],[-122.37674496924691,47.67628919665303],[-122.3767538021207,47.67631319848254],[-122.3767611205732,47.67633747774511],[-122.37676692257945,47.67636194882915],[-122.3767707001024,47.67638661896828],[-122.37677245110581,47.67641140220005],[-122.37677217176268,47.67643616976648],[-122.37676198545913,47.67686213733803],[-122.37675975088072,47.67753876468257],[-122.37676988221591,47.67806784040807],[-122.37677006563926,47.67920179799157],[-122.37677044250314,47.68015430722797],[-122.3767678204867,47.68119383105842],[-122.37677742324162,47.68228605918821],[-122.3767873108415,47.68337078541776],[-122.37678053588465,47.68427047860571],[-122.37678526060854,47.68518136985772],[-122.37678440374883,47.68609233667588],[-122.37680040280794,47.68700684573382],[-122.37679475101363,47.68794435503207],[-122.37680306748778,47.68897614672397],[-122.37681098912648,47.69001171430062],[-122.37681026483382,47.69053412427009],[-122.3768103447661,47.69060515914627],[-122.3751101079868,47.69061737713108],[-122.37323053484103,47.69062488122109],[-122.37140439251037,47.69063673153744],[-122.36952466691186,47.69063907787473],[-122.3676073891993,47.69064185595758],[-122.36600444654802,47.69064817247816],[-122.36600339973846,47.69049223380542],[-122.36599385013977,47.68874029335988],[-122.36600583509494,47.6862900886837],[-122.36599586677966,47.68452392940541],[-122.36603295908897,47.68325190113675],[-122.36603817694619,47.68308465277114],[-122.36600678959239,47.68059231525625],[-122.36604965032166,47.67633264188824],[-122.36605367550301,47.67600452960475],[-122.36629911413722,47.6760152803027],[-122.36744625702131,47.67595322512092],[-122.36851368794524,47.6759415886584],[-122.36952973683682,47.67597724970778],[-122.37061210344423,47.67592152005415],[-122.37114098906284,47.67595829782227],[-122.37171411073714,47.67598072304074],[-122.37328818624748,47.67594026333326],[-122.37558594749616,47.67593386065378],[-122.3760801716715,47.67589700680676],[-122.37633656472248,47.67591769896645]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000158,"geom:area_square_m":1315237.006923,"geom:bbox":"-122.376810989,47.6758970068,-122.36599385,47.6906481725","geom:latitude":47.683305,"geom:longitude":-122.371397,"iso:country":"US","lbl:latitude":47.683302,"lbl:longitude":-122.371395,"lbl:max_zoom":18,"mps:latitude":47.683302,"mps:longitude":-122.371395,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":19,"mz:min_zoom":14,"name:eng_x_variant":["Whittier Hts"],"reversegeo:latitude":47.683302,"reversegeo:longitude":-122.371395,"src:geom":"seagv","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"aadd774d1d8b6deb4cc49727e462d7c8","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129173,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":907129173,"wof:lastmodified":1566608544,"wof:name":"Whittier Heights","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85857637],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129175.geojson b/fixtures/microhoods/907129175.geojson new file mode 100644 index 0000000..ad099fc --- /dev/null +++ b/fixtures/microhoods/907129175.geojson @@ -0,0 +1 @@ +{"id":907129175,"type":"Feature","bbox":[-122.37633656472248,47.65652984648145,-122.36069145329733,47.6760152803027],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.37633656472248,47.67591769896645],[-122.3760801716715,47.67589700680676],[-122.37558594749616,47.67593386065378],[-122.37328818624748,47.67594026333326],[-122.37171411073714,47.67598072304074],[-122.37114098906284,47.67595829782227],[-122.37061210344423,47.67592152005415],[-122.36952973683682,47.67597724970778],[-122.36851368794524,47.6759415886584],[-122.36744625702131,47.67595322512092],[-122.36629911413722,47.6760152803027],[-122.36605367550301,47.67600452960475],[-122.36522760115047,47.67599177571543],[-122.36435108107447,47.67598933375148],[-122.36364780075522,47.67599308421573],[-122.36271708326983,47.67599418513709],[-122.36224513108188,47.6759948642237],[-122.3609480621502,47.67599803857677],[-122.36069145329733,47.67600430680672],[-122.36077646407034,47.67589224369107],[-122.36077159415649,47.67529489028423],[-122.36077556223401,47.67456657266276],[-122.36077755646525,47.67392649762414],[-122.36078641803216,47.67322656261095],[-122.36078838115368,47.67243002110479],[-122.3607932308989,47.67159359596103],[-122.36078971459126,47.67074875662455],[-122.36079720255937,47.66986396761997],[-122.36080519647037,47.66897912897686],[-122.36080381049338,47.66808593290736],[-122.36080284642665,47.66718981802236],[-122.36080267024445,47.66690756290662],[-122.36080138273323,47.66627670030054],[-122.3608038095139,47.66535783222918],[-122.36080201109694,47.66443332263618],[-122.36079987798192,47.66349742085249],[-122.36079012525512,47.66266478981884],[-122.36078912341681,47.66256163465373],[-122.36078970250787,47.66237414078302],[-122.36079141908962,47.66146565037966],[-122.36214579117036,47.6614566051262],[-122.36343957373815,47.66145752637197],[-122.36413718152086,47.66145732127426],[-122.36615592299873,47.66147365850995],[-122.36612022421834,47.65935103698676],[-122.36538455567164,47.65848918406642],[-122.36504049713014,47.65814171802353],[-122.36503992081643,47.65776058392021],[-122.36589890913896,47.65716154805293],[-122.36609426973007,47.65702541644774],[-122.36679699194549,47.65652984648145],[-122.36682684466226,47.65654439696577],[-122.36685790156484,47.65656535802074],[-122.36689147264876,47.65658555692961],[-122.36693109959077,47.65660468873035],[-122.36698491414066,47.6566404245544],[-122.36696633103023,47.65666398196989],[-122.36694186514936,47.65669447393846],[-122.36694585388378,47.65672651066967],[-122.36692073764738,47.65676935008898],[-122.3669145919035,47.65680178020567],[-122.36691052425189,47.65683585335445],[-122.3669294344888,47.65685779222715],[-122.36695435816247,47.65687720765123],[-122.36698960965121,47.65690278232776],[-122.36702347009978,47.65688120402724],[-122.36705871456793,47.65690652186011],[-122.36708480534782,47.65693110551258],[-122.36713650306052,47.65696387065478],[-122.36717674513427,47.65698663620922],[-122.3672081992159,47.65702104488493],[-122.3672568217662,47.6570527373811],[-122.3673160477323,47.65709992530113],[-122.36736372904011,47.65713411536905],[-122.36740728099225,47.65716587610183],[-122.36739682811624,47.65718988107887],[-122.36734295318809,47.65718649361522],[-122.36726066328849,47.65718293218475],[-122.36712573071992,47.65718337817574],[-122.367123844393,47.65722260628062],[-122.36706870123356,47.65724502787595],[-122.36708470691725,47.65727167562831],[-122.36712472250724,47.65728677499182],[-122.36720895169877,47.65728726881209],[-122.3673176519815,47.65729184584103],[-122.36735728777847,47.65729405383289],[-122.36741016560612,47.65729801172724],[-122.36749158688839,47.65730651216046],[-122.36759313069341,47.65730925704512],[-122.36765110337947,47.65731396011529],[-122.3677508691789,47.6573252123496],[-122.36774796156459,47.65736419696221],[-122.36774485117877,47.65739632931685],[-122.36773588206088,47.6574362095165],[-122.36773105807673,47.65747903299319],[-122.36793601395648,47.6574790133695],[-122.36811967029044,47.65747928076359],[-122.36814368548701,47.657502264309],[-122.36817976680321,47.65752152946209],[-122.3682211288739,47.6575478353438],[-122.36825712879852,47.65756435936327],[-122.3682821582629,47.65758732921127],[-122.36833101720347,47.65762698707949],[-122.36836927950364,47.65765140675443],[-122.36839535662973,47.6576754764687],[-122.36843667846597,47.65770041188943],[-122.36847069069121,47.65771833356335],[-122.3684996556038,47.65773713753553],[-122.36853387781191,47.65776216826912],[-122.36856091232939,47.65778429710861],[-122.36859714650937,47.65780874404857],[-122.368627142653,47.65782809109373],[-122.36865407932758,47.65784692201861],[-122.36870707644644,47.65788926615404],[-122.36873419912769,47.65791439289013],[-122.36879312814067,47.65795142987142],[-122.36882312390988,47.65797077652105],[-122.3688531847396,47.6579923074877],[-122.3688760648881,47.65801119340463],[-122.3689196103832,47.65804269639916],[-122.36894447845201,47.65806018457183],[-122.36898805565971,47.65809275830485],[-122.36902533025119,47.65811804782789],[-122.36905969088008,47.65814774703538],[-122.36903397550367,47.65817028695367],[-122.36900709337013,47.6581876586224],[-122.36899969168246,47.65821187988006],[-122.36901846458747,47.65826346826357],[-122.36904372119204,47.6582941041555],[-122.36907469146993,47.65831206667418],[-122.36910979061423,47.65833241562838],[-122.36915689147443,47.65834686174931],[-122.36921209874298,47.65836094126479],[-122.36931800944573,47.65837403722468],[-122.36935831049789,47.65839872882209],[-122.36940670861678,47.65842275454563],[-122.36944082720537,47.65844423063616],[-122.36947389821312,47.65846460683547],[-122.36951425584859,47.65849122590111],[-122.3695722118625,47.65852964654704],[-122.3696032305604,47.65854923646987],[-122.36963213231242,47.65856585581498],[-122.36966404373393,47.65858132054374],[-122.36969598756517,47.65859789883754],[-122.36973619151304,47.65861929275349],[-122.36977619296329,47.65863383404347],[-122.36981658305176,47.65866152375929],[-122.3698267973277,47.6586981462173],[-122.36986790167359,47.6587156720736],[-122.36990520118779,47.65874177490668],[-122.36994248377285,47.6587673213019],[-122.36996844773729,47.65878753633127],[-122.36999861458959,47.65881262170821],[-122.3700296095564,47.6588313975654],[-122.37006789886715,47.65885667342048],[-122.370117927743,47.65890149874617],[-122.37016884176886,47.65894194240398],[-122.3701959991356,47.65896818200002],[-122.37021690826758,47.65898902219005],[-122.370246158652,47.65901741873395],[-122.37027751798179,47.65904852901947],[-122.37031183993338,47.65907685710856],[-122.37033683051651,47.65909845612199],[-122.37036702126322,47.6591243550065],[-122.37039624774972,47.65915193791331],[-122.37041631251877,47.65917853044674],[-122.3704463911698,47.65920061777537],[-122.37047335328202,47.65922026221832],[-122.37050272499255,47.65925277019913],[-122.37051728846804,47.65929918837429],[-122.37054024323699,47.65932055755366],[-122.37054101709064,47.65944967974159],[-122.37064288999659,47.65946338600637],[-122.37066893563335,47.65948634163887],[-122.37070309544909,47.65950918773917],[-122.37072404604889,47.65953139821034],[-122.37074118251513,47.65956188643725],[-122.37075605447288,47.65958443587301],[-122.37077202223767,47.65960971272332],[-122.37078898015218,47.6596341619315],[-122.37082541225539,47.65966520359784],[-122.37085869612159,47.65969273162126],[-122.37091046356605,47.65972767937798],[-122.37095737996877,47.65973582892749],[-122.37096643331421,47.65980177241355],[-122.37099507521684,47.65984388733141],[-122.37109454690955,47.65987930496934],[-122.37113741370837,47.6598877660403],[-122.37116830523753,47.6598687118902],[-122.3712111326479,47.65984152720936],[-122.37124000277979,47.65982275725067],[-122.3712759087778,47.6598017070751],[-122.37131185478113,47.65978202762745],[-122.37135076280552,47.65975956596073],[-122.37142619988963,47.65980571864344],[-122.37146342748255,47.65982933736825],[-122.3714915185617,47.65985282220215],[-122.37154042262877,47.65989384907176],[-122.37156744253956,47.65991542041976],[-122.37159649902725,47.65993722152432],[-122.37163913116149,47.6599720350715],[-122.37167230158525,47.6599957081771],[-122.37175090362771,47.66004593139412],[-122.37179224542486,47.66007142202767],[-122.37182028026739,47.66009297960888],[-122.37185134078356,47.66011393930659],[-122.37191369870652,47.66016382483641],[-122.371986215918,47.66021412974403],[-122.37204023998419,47.66025671543846],[-122.37211468827589,47.66030369531506],[-122.37216459099731,47.66034415143042],[-122.3722434455849,47.66040285375209],[-122.37227448237074,47.66042299973621],[-122.37227632458612,47.66048522752504],[-122.37227074266029,47.66053658749133],[-122.37225504100952,47.66058889846511],[-122.37225206305526,47.6606253992408],[-122.37230093539335,47.66063103688201],[-122.37233758781541,47.660635211775],[-122.37240070095032,47.66064202787659],[-122.37244047773397,47.6606489023762],[-122.37248415673814,47.66065049732984],[-122.37256357213344,47.66065957833109],[-122.37262473042699,47.66066890566852],[-122.37273364879009,47.66068058694935],[-122.37280681604898,47.6606842681617],[-122.3728425430967,47.66069145417738],[-122.37289961107987,47.66069972299497],[-122.37296059064009,47.66070301184589],[-122.37300748414665,47.66071034695294],[-122.37320983963419,47.66072487743605],[-122.3732454373726,47.66072769536846],[-122.37333094599391,47.6607369503739],[-122.37338581562446,47.66073950733549],[-122.37341989543161,47.66072533652429],[-122.37346698315078,47.66073922372797],[-122.37349688508708,47.6607552715937],[-122.37355111306634,47.66077043349008],[-122.37359184722722,47.66077536670884],[-122.3736283379428,47.66077405930643],[-122.37363270277478,47.66075013606405],[-122.3736664500313,47.6607247442675],[-122.3737056826221,47.66071324554307],[-122.37377125365785,47.66070027657268],[-122.37380403481839,47.6606765259987],[-122.37380499865371,47.66060633406587],[-122.37387496836239,47.66060483068678],[-122.37408299573944,47.66060531563075],[-122.37429709197603,47.66060516143138],[-122.37450210029549,47.66060650073117],[-122.37469087997711,47.66060805893346],[-122.3748978766488,47.66060799968285],[-122.37510690938659,47.66060816941248],[-122.37520634268128,47.66060793739334],[-122.37528140760865,47.6606071780974],[-122.3753956056263,47.6606086739619],[-122.37542406779033,47.66062748268272],[-122.37542342409118,47.66065709696446],[-122.37540782939777,47.66067868738808],[-122.37537813992829,47.66070402477439],[-122.3753325317317,47.66074003162757],[-122.37530240139915,47.66076760298666],[-122.37528336200485,47.66079279616276],[-122.37528172049964,47.66082298060602],[-122.37529877623862,47.66086773629137],[-122.37532231932217,47.66090884801081],[-122.37536778914212,47.66095369036886],[-122.37541491525322,47.6609859567612],[-122.37548075774376,47.66101634152176],[-122.37554969891582,47.66104856940496],[-122.37561650752104,47.66107731315938],[-122.37567132516008,47.66109520828633],[-122.37571386602109,47.66110971315081],[-122.37576657392407,47.66112489459061],[-122.37581604472747,47.66113356493086],[-122.37587368533407,47.66114400937107],[-122.37592801279644,47.66116246802149],[-122.37597454109869,47.66115746743718],[-122.3759947099379,47.66111906302551],[-122.37602853152327,47.6610791024086],[-122.37604576434691,47.66104433635873],[-122.37605333980409,47.66099187796372],[-122.37602944710935,47.66093898905227],[-122.37600096268775,47.66090235727865],[-122.37603549486619,47.66086924238742],[-122.3760949542052,47.66085549811131],[-122.37614225091669,47.66085931315755],[-122.37617035768893,47.66090032007303],[-122.37622552107985,47.66092986386188],[-122.37622704663325,47.66096416138628],[-122.37622829329366,47.6609890799218],[-122.37623202828763,47.66108071601214],[-122.37622608715756,47.6616326743118],[-122.37621512781847,47.66220359491711],[-122.37621333547924,47.66289534067378],[-122.37622401595137,47.66383635695511],[-122.37621860845479,47.66497039075584],[-122.3762223414066,47.6660363069762],[-122.37621491432786,47.66710233114314],[-122.37621898170605,47.6681795106282],[-122.37621200355261,47.66926065272464],[-122.3762161260318,47.67035676852991],[-122.37621540101532,47.67146053322745],[-122.37620875748351,47.67255298169327],[-122.3762069108763,47.67361897281177],[-122.37620697011516,47.67474916188883],[-122.37621415009455,47.67574313828309],[-122.37633656472248,47.67591769896645]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000247,"geom:area_square_m":2056780.519265,"geom:bbox":"-122.376336565,47.6565298465,-122.360691453,47.6760152803","geom:latitude":47.667871,"geom:longitude":-122.368548,"iso:country":"US","lbl:latitude":47.668255,"lbl:longitude":-122.368696,"lbl:max_zoom":18,"mps:latitude":47.668255,"mps:longitude":-122.368696,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["West Woodland"],"name:eng_x_variant":["W Woodland"],"reversegeo:latitude":47.668255,"reversegeo:longitude":-122.368696,"src:geom":"seagv","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q29512036"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d2ce6aeb4fba0575f46526c0a0bec11a","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129175,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":907129175,"wof:lastmodified":1566608545,"wof:name":"West Woodland","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869781],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129177.geojson b/fixtures/microhoods/907129177.geojson new file mode 100644 index 0000000..1de3945 --- /dev/null +++ b/fixtures/microhoods/907129177.geojson @@ -0,0 +1 @@ +{"id":907129177,"type":"Feature","bbox":[-122.40986076265162,47.66748456380363,-122.39295630346368,47.6976841727247],"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.40210719615096,47.6976819127381],[-122.40202704602105,47.6976841727247],[-122.40219545952438,47.69720859369684],[-122.40265748348672,47.69601565324322],[-122.40236252143545,47.69527640401405],[-122.40113151290755,47.69541566525751],[-122.40109458572735,47.6954201151028],[-122.40104953366303,47.69542450506524],[-122.40100342921404,47.69542766700719],[-122.4009577944702,47.69542957999197],[-122.40091161505681,47.69543025797192],[-122.4008659058749,47.69542968698791],[-122.40082015869935,47.69542787403024],[-122.40077437276167,47.69542477628964],[-122.40072905835675,47.69542047238805],[-122.40068370777901,47.695414969308],[-122.40063882615748,47.69540817446349],[-122.40059441684957,47.69540021626852],[-122.4005504785668,47.69539105192152],[-122.40050701364251,47.69538072421086],[-122.40046452693736,47.69536918337537],[-122.40042251436728,47.69535652198691],[-122.40038148313346,47.6953427334233],[-122.40034092550889,47.69532782396445],[-122.400301860034,47.69531186594897],[-122.40026326896448,47.69529483055081],[-122.40022617002606,47.69527674589674],[-122.40018954988865,47.69525771226078],[-122.40015492985327,47.69523766555871],[-122.40012079043127,47.69521671267157],[-122.40008814650663,47.69519483929741],[-122.40005699886102,47.6951720885976],[-122.40002734930452,47.69514850336833],[-122.39999869271233,47.69512417619394],[-122.39997153548852,47.69509905694337],[-122.39994638740997,47.69507322460124],[-122.39992223487496,47.69504673592098],[-122.39990009406367,47.69501961975546],[-122.3995755299138,47.69454310762969],[-122.39929507368856,47.69357597620747],[-122.39856130305925,47.69195235181679],[-122.3985018002645,47.69073557071588],[-122.39830850368419,47.69057091730695],[-122.39723230343704,47.69057108107231],[-122.39526425559819,47.69057399311993],[-122.39456990439092,47.69057750929129],[-122.39300241535642,47.69058132055665],[-122.39301066505074,47.69029809133717],[-122.3930461873176,47.68899564758119],[-122.39303274662132,47.68766863862898],[-122.39303057758862,47.68634507429638],[-122.3930228270559,47.68502158628398],[-122.39301615804834,47.68373411554943],[-122.39301453079068,47.68242858089091],[-122.39300195771972,47.68113039427877],[-122.39298377112864,47.67981424642591],[-122.39297500980646,47.67925177559714],[-122.39297150298634,47.67810342002372],[-122.39296126335915,47.67750857902157],[-122.39295961840902,47.67692955844702],[-122.39295630346368,47.67632870998336],[-122.39295655054526,47.67591418595407],[-122.39567368378326,47.67587961442324],[-122.39826401749875,47.6758644570828],[-122.39836900529026,47.67582861092068],[-122.39837349789158,47.67409038855582],[-122.39834327434251,47.67202505374682],[-122.39833757904937,47.67109441988498],[-122.3983027313344,47.66956637606422],[-122.39830595945782,47.66945450760386],[-122.39832733528478,47.66856343268898],[-122.39833785211165,47.6681206608513],[-122.39832732559971,47.66748456380363],[-122.40101294758784,47.66768160948311],[-122.40194148182799,47.66804997273742],[-122.40200434166536,47.66784619508945],[-122.4019379684618,47.66756364927326],[-122.40205140192477,47.66760651707721],[-122.40214839524724,47.66765946538751],[-122.40221048438531,47.66769918390058],[-122.40228208688984,47.66768423034648],[-122.40234599545145,47.66768335009191],[-122.40243157741921,47.66776169102457],[-122.40247786720275,47.66781589448585],[-122.40256980584492,47.66786946908672],[-122.40262276579664,47.66790931314455],[-122.40265781085505,47.66792721097828],[-122.4027508273513,47.6679492368683],[-122.40277004641895,47.66798076271785],[-122.4027701079768,47.66801640840984],[-122.40278206955253,47.66804285022852],[-122.40286880950535,47.66805866446171],[-122.40292272309932,47.66806284870452],[-122.40293972347158,47.66808810705847],[-122.40294472504887,47.6681193145929],[-122.40295306772079,47.66816033064117],[-122.4030000459053,47.66817009452308],[-122.4030710801782,47.66816992961026],[-122.40315320806069,47.66816742690411],[-122.40325973993872,47.66816651575957],[-122.40331752097491,47.66816434847637],[-122.40334350259873,47.66818455553838],[-122.40340747376321,47.66821932073056],[-122.40345046913939,47.66823162428447],[-122.40350765765115,47.66824343244568],[-122.40355425950025,47.66827432345276],[-122.40356618013386,47.66829939481949],[-122.4035610456779,47.66833099932222],[-122.40359021213877,47.66835583261044],[-122.40360406581915,47.66841129668305],[-122.40360493531243,47.66844007654436],[-122.4036293607213,47.66847594340033],[-122.40370147629653,47.66847794841539],[-122.40377057412154,47.66848085173812],[-122.4038382390115,47.66850348353088],[-122.40388771876985,47.6685288509693],[-122.4039170338033,47.66855860923033],[-122.40394389823797,47.66857443424911],[-122.4040155962201,47.66859619605101],[-122.40412092857207,47.66862272121222],[-122.4041595812997,47.66865920605618],[-122.40423262902614,47.66872563593832],[-122.40436357229737,47.6688272143281],[-122.40433454730565,47.66887422974727],[-122.4043605548018,47.66889525051129],[-122.40440247389475,47.66887192165448],[-122.40452120734126,47.66900601592937],[-122.40445773275785,47.6690548774673],[-122.40448570709938,47.66910740481134],[-122.40453544989802,47.66917501304042],[-122.40453133032963,47.6692066035946],[-122.40450466925722,47.66923109264],[-122.40450488089931,47.66927166372866],[-122.40453909567638,47.66929561322771],[-122.4046054984629,47.66931003564695],[-122.4046471045702,47.66934348044781],[-122.4047348509735,47.66945962130224],[-122.40481760764979,47.6695785731599],[-122.40490020853753,47.66969234308917],[-122.4049551198488,47.66979659760372],[-122.40500069458894,47.66989412585488],[-122.40504172261409,47.66997556457265],[-122.40507013760954,47.67004261009465],[-122.40508017660466,47.67010609571828],[-122.4051172576845,47.67015768334277],[-122.40517274368408,47.67018022514784],[-122.40520486038173,47.67023543705569],[-122.40523334537028,47.67027124792754],[-122.40529344485294,47.67031210630718],[-122.40533692298106,47.67034029784614],[-122.40538587646542,47.67041528586874],[-122.40543831645134,47.67047133162631],[-122.40548375805642,47.67049731079353],[-122.40552879240738,47.67050984272611],[-122.4055674254915,47.67051205142049],[-122.40560056886503,47.6705340874534],[-122.40565916750195,47.67062595159714],[-122.40569972473631,47.67069175818468],[-122.40577811264434,47.67069971647837],[-122.40583196313376,47.67070171538511],[-122.40583171969362,47.67072721101304],[-122.40582308459697,47.67077724424524],[-122.40581237867066,47.67082593512047],[-122.40581184254874,47.67087529954591],[-122.40586058212665,47.67094317835758],[-122.40591090230275,47.67099621084931],[-122.40594443618558,47.67103113757668],[-122.40595761275206,47.67106411728227],[-122.40595584723489,47.67110638670666],[-122.40598695584812,47.6711953309425],[-122.40601745212278,47.67126401855053],[-122.40603620816252,47.6713136736553],[-122.40607031386202,47.67136748693935],[-122.40613176925368,47.6714195513306],[-122.406166035448,47.67144512787058],[-122.4062059493882,47.67145610203173],[-122.40620597183396,47.67149037734868],[-122.40620564905798,47.67158031285643],[-122.40619399498738,47.67163120173058],[-122.40618681389667,47.67169573930771],[-122.40618300788825,47.67177119851426],[-122.40620176426913,47.67182085359077],[-122.40620675183321,47.6718515041923],[-122.40619253524272,47.67191832377702],[-122.40619716020736,47.67200407779806],[-122.40619896267998,47.67203010254224],[-122.40620525503387,47.67207033241671],[-122.40621269404068,47.6721149165526],[-122.40621509404262,47.67216068463234],[-122.40622196925086,47.67218663898728],[-122.40626762740534,47.67221972755316],[-122.40630408121102,47.67225050069781],[-122.40633280837076,47.67229423387908],[-122.40634822375503,47.67231732877599],[-122.40639251883495,47.67235566295908],[-122.40642941429111,47.67236749266207],[-122.40647653823581,47.67238192334177],[-122.40652436940717,47.67238618993716],[-122.40657016002197,47.67239009896154],[-122.40663022342443,47.67239612453918],[-122.40676718641973,47.67239436176716],[-122.40688299876476,47.67239798900964],[-122.40693437173489,47.67240190677252],[-122.40693983432988,47.67243147958518],[-122.40696229816197,47.67257002884177],[-122.40695915158445,47.67263369681667],[-122.40695873197707,47.67283772889458],[-122.4069593553773,47.6729085852294],[-122.40696040574822,47.67294327490296],[-122.4071497705862,47.67294584306283],[-122.40731977852987,47.67294597928643],[-122.40750363549981,47.67295097980997],[-122.40760056362966,47.67295101137409],[-122.40763279355473,47.67297631554296],[-122.40763245995011,47.67301556606709],[-122.4076308446347,47.67304600812275],[-122.40767397007032,47.67306242152689],[-122.40770445737475,47.67309721823869],[-122.40770271007582,47.67314004446433],[-122.40778246298605,47.6731929263503],[-122.40783002401119,47.67322174638168],[-122.40784092852228,47.67326341184168],[-122.4078014529491,47.67338422259266],[-122.40777647288986,47.67363173842996],[-122.40777759544544,47.67373579266282],[-122.40777867881799,47.67377155308078],[-122.40784276603831,47.67377632277216],[-122.40787878995012,47.67377608181492],[-122.40796401087918,47.67377490395322],[-122.40809403783767,47.67377859080882],[-122.40813057833567,47.67377864272216],[-122.40820567867917,47.67377841885887],[-122.4082396567325,47.67379440149942],[-122.40826957691226,47.67381044022754],[-122.40829251934207,47.6738306882367],[-122.4083047179104,47.67386479559038],[-122.40831339798422,47.67391677452613],[-122.40830841511635,47.67395330427829],[-122.4082847059782,47.67397475458228],[-122.40826103834912,47.67399757524867],[-122.408202468858,47.67400742483991],[-122.40812130546318,47.67400854678767],[-122.4080864852427,47.67403177884871],[-122.40807733657843,47.6740648100061],[-122.40807553893042,47.67410596555229],[-122.408086739282,47.67414064338551],[-122.40808771905455,47.67417297753061],[-122.40808761816974,47.67420314174119],[-122.40808548779088,47.67423333365364],[-122.40808226039826,47.67426079884677],[-122.40809314545285,47.67428507016668],[-122.40811615473204,47.67430750251185],[-122.40814914327409,47.67432431279195],[-122.4082019826068,47.67432632460873],[-122.40829739183604,47.67432637661216],[-122.40834609016885,47.6743257033752],[-122.40844753750092,47.67432404391545],[-122.40854908294824,47.67432563873157],[-122.40860192281718,47.67432765035571],[-122.40864192204366,47.6743413644038],[-122.40866902380691,47.67436485442487],[-122.40866918029262,47.67440349800191],[-122.4086304020647,47.67443008385239],[-122.40856455511556,47.67446775492774],[-122.40851153969844,47.67449342356753],[-122.40847217201207,47.67450056600728],[-122.40843058322947,47.67450139792257],[-122.4083832899062,47.67451494795485],[-122.40834327242024,47.67453413876822],[-122.40832295563668,47.67456706742188],[-122.40831434695698,47.67461791442484],[-122.4083065096923,47.67472770510449],[-122.4083009760697,47.67481304250687],[-122.40831158453034,47.67489515760128],[-122.40832508806501,47.67493884385545],[-122.4083270500463,47.67497009321961],[-122.40835125723846,47.67499855008916],[-122.40839840799526,47.67504725528398],[-122.40846031993625,47.67508067532038],[-122.40850688932312,47.67511019392585],[-122.40854410265653,47.67513242980449],[-122.40860569985877,47.67515544289293],[-122.40864762928578,47.67516583136481],[-122.40868649835113,47.67517570512825],[-122.40873983709768,47.67519416180269],[-122.40878584976937,47.67520530769175],[-122.40885042444721,47.67522609425315],[-122.40890550198912,47.67523492986341],[-122.40896712361003,47.67525875600238],[-122.4089874805239,47.67529412140276],[-122.40898734638603,47.67532317170714],[-122.40897829805596,47.67535950079736],[-122.40895902104309,47.67539322911502],[-122.40898238774614,47.6754274385188],[-122.40901760679253,47.67545081620242],[-122.40906065881637,47.6754647448147],[-122.40909359905966,47.67547992764135],[-122.40912350307104,47.67549540937394],[-122.40916487549146,47.67552088677628],[-122.40922173282561,47.67555493298659],[-122.40925256103502,47.67556740274831],[-122.40930845332541,47.6756030904784],[-122.40934359677868,47.6756239837959],[-122.40938471224221,47.67564098140321],[-122.40944813939952,47.67565737024343],[-122.40949139175413,47.6756778944164],[-122.40957584155888,47.67571811404277],[-122.40961068694689,47.67572915718934],[-122.409659943867,47.67574685598849],[-122.40969868832525,47.67575261796252],[-122.40978368834867,47.67577749149176],[-122.40981557290779,47.67579131742986],[-122.40984899558313,47.67582238871328],[-122.40985799307276,47.67585131301515],[-122.40986076265162,47.67587569612903],[-122.40985761872014,47.67590590211108],[-122.40984961806363,47.67597674970396],[-122.40984626641574,47.67603356522191],[-122.40985572160328,47.67614448769906],[-122.4098554713679,47.67623660715601],[-122.40985512187478,47.67632547191132],[-122.40985008208527,47.67639353629611],[-122.40983723311153,47.67650532441628],[-122.40983055461106,47.67655284594249],[-122.40982953557726,47.67655749733816],[-122.40650725357756,47.67654021030057],[-122.40650285005415,47.67686635484399],[-122.4064764289139,47.67714209364034],[-122.40638395492299,47.67740004151772],[-122.40621662103467,47.67774100514586],[-122.4060184624827,47.67812050986829],[-122.40511133666708,47.67959699416743],[-122.40403687696312,47.68139065883874],[-122.40346441892414,47.68237196002313],[-122.4033014885592,47.68270696194122],[-122.40318259342803,47.68307753677814],[-122.40310333000723,47.68332952616359],[-122.40304608420332,47.68360819536069],[-122.40300645249296,47.68397579925846],[-122.40289196088514,47.68568038024961],[-122.40278187280072,47.68729893950998],[-122.40365725937399,47.68748200838769],[-122.40363849083376,47.68755529000876],[-122.4036306416478,47.687597900086],[-122.40360904059855,47.6876557810415],[-122.40359428695244,47.68770508403199],[-122.40359081174044,47.68775804503752],[-122.4035798180508,47.687797399201],[-122.40356790926542,47.68784006521111],[-122.40355458886972,47.68786959723809],[-122.40354065054666,47.68791229121003],[-122.40352701894261,47.68796513488661],[-122.40352381236683,47.68799341388272],[-122.40351861820662,47.68802309085319],[-122.40350964615124,47.68806216023273],[-122.40349100671781,47.68811725812407],[-122.40347665794359,47.68817996621873],[-122.40346054112268,47.68821776309772],[-122.40345258425599,47.68825681813287],[-122.40344351245862,47.68829258999241],[-122.40343546368763,47.68832860467516],[-122.40343341338237,47.68836153756235],[-122.40343125565155,47.68839091577179],[-122.40342160778894,47.68844121958526],[-122.40340831103676,47.68853874575953],[-122.40340367146268,47.68858679569967],[-122.40339878390591,47.68862662272119],[-122.40339372617531,47.68869442962762],[-122.40338469922283,47.68883247093108],[-122.4033789617627,47.68894497397872],[-122.4033730546292,47.6890854572539],[-122.4033721670974,47.68919048142596],[-122.40336725810928,47.68926321337535],[-122.4033572092195,47.68933383126914],[-122.40334039166011,47.68938204897943],[-122.4033135740481,47.68943533119966],[-122.40327067726304,47.68949406246215],[-122.40324802290489,47.6895171249045],[-122.4032157921804,47.6895592568904],[-122.40321446197,47.68961604422061],[-122.40321970571033,47.68965517465315],[-122.40321966796185,47.68968752279778],[-122.4032153143214,47.68971144714353],[-122.40321521057791,47.68974161132947],[-122.40321301901837,47.68976987597716],[-122.40321274911079,47.68979455834634],[-122.40322419857952,47.68983745918703],[-122.40324012544068,47.68986054749371],[-122.40326034310309,47.68989124531048],[-122.40328894494317,47.68993061131598],[-122.4033146058236,47.69000703528176],[-122.40334424363556,47.69008066222504],[-122.40335513755181,47.69010519079333],[-122.40337416716166,47.69013016393417],[-122.40339267898524,47.69017159652324],[-122.40340590072965,47.69020594720867],[-122.40342338099386,47.69024683734671],[-122.40343926664391,47.6902685549061],[-122.40348058533466,47.69032556856566],[-122.40352332587196,47.69039601614184],[-122.4035429192458,47.69043961902587],[-122.40359526485167,47.69052552945259],[-122.40369251836526,47.69065280877081],[-122.40372535415203,47.69069785735893],[-122.40374440098692,47.69072338721509],[-122.40378013292508,47.69076346878277],[-122.40380556692448,47.69079876480468],[-122.40382289881222,47.69083472948454],[-122.40384419804708,47.69086759787138],[-122.40390973038129,47.69095306951954],[-122.40398242539075,47.69104037036478],[-122.40401975208049,47.69109962408057],[-122.40405147520755,47.69114143149815],[-122.40407467225873,47.69116990325011],[-122.40410023874091,47.69120956782322],[-122.40412995697906,47.69125221713424],[-122.40415313003223,47.69127987492198],[-122.4042310938113,47.69133993973362],[-122.4042946011487,47.69139197743772],[-122.40438427660584,47.69147000370514],[-122.4044823944327,47.69155858164007],[-122.40454274979726,47.69160710650835],[-122.40462627877008,47.69168328938643],[-122.40469538359042,47.69175251595314],[-122.40477881327725,47.69182540120615],[-122.40485517255865,47.69189949756754],[-122.40497094288925,47.69200098511655],[-122.40505225248283,47.69207090026768],[-122.40513094071459,47.6921548185308],[-122.40520733339022,47.692229985759],[-122.40532162638306,47.69231615504157],[-122.405442108566,47.69240553772606],[-122.4055531919185,47.69248626695343],[-122.4056246768662,47.69256698537777],[-122.40570802370331,47.69267059055852],[-122.40580042737068,47.692805047423],[-122.40583110926528,47.69287947365534],[-122.40585752443245,47.69294710335382],[-122.40588319058074,47.69302352673063],[-122.40589705142933,47.69311245215366],[-122.40590759371726,47.69319238344915],[-122.40591107300966,47.69327378279076],[-122.40592144033151,47.69334793230023],[-122.40592083508953,47.69342857442319],[-122.40591827453218,47.69351168531454],[-122.40590454946134,47.69359495025711],[-122.40588060080226,47.69367591447487],[-122.40576705911651,47.69381595472188],[-122.40561484944787,47.69395322941451],[-122.40551383152761,47.6940374416068],[-122.40542055044054,47.69410890773873],[-122.40528119663274,47.69420131748598],[-122.40519591911664,47.69426885995647],[-122.40510436890477,47.69433044775019],[-122.40496969886676,47.69440989669361],[-122.40486101077073,47.69447557650936],[-122.40475119093152,47.69453741592452],[-122.4046162951906,47.6946094551407],[-122.40449381185198,47.69468903522496],[-122.40439640260882,47.69475837252227],[-122.40428521493789,47.69484216675077],[-122.40419184006375,47.69491063397619],[-122.40405774736512,47.69507644824201],[-122.40405517546161,47.69515930227986],[-122.40404336927713,47.6952389843421],[-122.40402063048444,47.69532648639238],[-122.40400117768132,47.69542191256638],[-122.40397660782027,47.69551603761268],[-122.40395084870192,47.69560439554716],[-122.40392013099596,47.69569667770158],[-122.403875320013,47.69579300994677],[-122.40385121697693,47.69586900553314],[-122.4038300612335,47.6959417044344],[-122.40379703051958,47.69602467806835],[-122.40374911603493,47.69611912507085],[-122.40370410499246,47.69620886187014],[-122.40365281348673,47.69629238714678],[-122.40359251962026,47.69638040651144],[-122.4035238113045,47.69649240648057],[-122.40346013255467,47.69656924692138],[-122.40333504381222,47.69673082337917],[-122.4032691102098,47.69680028271318],[-122.40320129594906,47.69687469535537],[-122.40312447940191,47.6969536444968],[-122.40303597085924,47.69704890753054],[-122.40296984622884,47.69711207127809],[-122.40288034333257,47.69717444290572],[-122.4028013425161,47.69721473378423],[-122.40274042172055,47.69724847727129],[-122.40268368426032,47.69728627593821],[-122.40261617187767,47.69733711943407],[-122.40252720636063,47.69741730697079],[-122.40243662098077,47.69747750827133],[-122.40232330390255,47.69755833062079],[-122.40219626089151,47.69762177546109],[-122.40210719615096,47.6976819127381]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000261,"geom:area_square_m":2174288.044961,"geom:bbox":"-122.409860763,47.6674845638,-122.392956303,47.6976841727","geom:latitude":47.681318,"geom:longitude":-122.400096,"iso:country":"US","lbl:latitude":47.681298,"lbl:longitude":-122.398111,"lbl:max_zoom":18,"mps:latitude":47.681298,"mps:longitude":-122.398111,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"name:eng_x_preferred":["Sunset Hill"],"name:eng_x_variant":["Sunset Hl"],"name:fra_x_preferred":["Sunset Hill"],"reversegeo:latitude":47.681298,"reversegeo:longitude":-122.398111,"src:geom":"seagv","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7641284"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d1f9fc3296e1d01032f5b0c4751b380d","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129177,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":907129177,"wof:lastmodified":1566608545,"wof:name":"Sunset Hill","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85851561],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129181.geojson b/fixtures/microhoods/907129181.geojson new file mode 100644 index 0000000..95996ca --- /dev/null +++ b/fixtures/microhoods/907129181.geojson @@ -0,0 +1 @@ +{"id":907129181,"type":"Feature","bbox":[-122.40982953557723,47.67654021030057,-122.40278187280072,47.68748200838769],"geometry":{"type":"Polygon","coordinates":[[[-122.40650725357756,47.67654021030057],[-122.40982953557723,47.67655749733815],[-122.40982163864307,47.67659354301706],[-122.40980246175285,47.67663056898616],[-122.40977658133983,47.67664737944634],[-122.40951518990994,47.67666333549469],[-122.40913771963558,47.67666718568737],[-122.40870844626225,47.67666982334217],[-122.40839779750354,47.67666807725942],[-122.40837960529419,47.67680461773696],[-122.40838563513876,47.67703705213331],[-122.40775765529546,47.6770476601985],[-122.40761264725025,47.67728685185746],[-122.4075203344202,47.67745620697527],[-122.40740121633705,47.67764542631041],[-122.40729892217712,47.67782040324035],[-122.40719539745496,47.67798828474049],[-122.4070968034922,47.6781514281955],[-122.40700728211624,47.67831251794271],[-122.40690102691907,47.67849084842671],[-122.40680743829081,47.67865173690024],[-122.40670497365512,47.6788212314755],[-122.4066018184524,47.67900144679042],[-122.40650622346251,47.67916317697309],[-122.40638522548481,47.67935760545699],[-122.40629273126804,47.67952122093136],[-122.40618815109394,47.67968800196292],[-122.40613458274504,47.67979623845927],[-122.4061657388739,47.67988655332579],[-122.40609281399286,47.68002603407169],[-122.40600491029856,47.68017369023637],[-122.40595348018671,47.68025199159901],[-122.40585290950862,47.68028298543854],[-122.40579596670983,47.68034683842279],[-122.4057289546772,47.68048049592595],[-122.40534779522835,47.68049753788206],[-122.40532433063174,47.68052721012322],[-122.40521908697922,47.68070578149261],[-122.40510012719182,47.68090073772606],[-122.40499957479066,47.68106664807473],[-122.40489987057322,47.6812270625156],[-122.40478402737308,47.68142446000447],[-122.40467386491844,47.68160832584121],[-122.40454510979158,47.68181519866314],[-122.4044359434633,47.68199849349769],[-122.40434085364473,47.68214376238095],[-122.4042953507647,47.68221679718612],[-122.40423921574805,47.6823075020805],[-122.40419869386712,47.68237742620177],[-122.40415141763216,47.68245896829843],[-122.40409450825818,47.68255765285669],[-122.40403362240686,47.6826591340769],[-122.40397063193659,47.68275815931209],[-122.40392207498937,47.68283093631003],[-122.40386118848116,47.68293241743691],[-122.4038169305849,47.68301310384683],[-122.40374611144088,47.6831218341221],[-122.4036927621874,47.68320401706634],[-122.40364339684615,47.68328365977015],[-122.40359497949531,47.68336110451762],[-122.40357967962868,47.68345947228999],[-122.40355941846423,47.68359522633282],[-122.40354043199868,47.683705984054],[-122.40352191835542,47.68383237364832],[-122.40350694124233,47.68394144825317],[-122.40349091626078,47.68404942327425],[-122.4034743488976,47.68417304380739],[-122.40345480290313,47.6842988905991],[-122.40343848333488,47.68443073404545],[-122.40342427259995,47.68453157173539],[-122.40340787456113,47.68462721272392],[-122.40338914492263,47.68474649294208],[-122.40337363720583,47.68483800848752],[-122.4033602416347,47.68493223680612],[-122.40334698707302,47.68503113335704],[-122.40333176079142,47.68513198537137],[-122.40331639390381,47.68522816879087],[-122.403298041101,47.6853263216457],[-122.40328410237241,47.68543619582443],[-122.40327240514033,47.68551943251347],[-122.40326258794987,47.68559771620171],[-122.40325581168632,47.68564223942348],[-122.4032970068459,47.68566168034244],[-122.40333182339967,47.68567161185562],[-122.40344251255523,47.68570629062804],[-122.40354104890245,47.68574195033511],[-122.40358404199219,47.68575369740246],[-122.40367427783053,47.68578343026039],[-122.4037234594221,47.68579839088144],[-122.40379509823579,47.68581741206981],[-122.40383614486927,47.68583192774769],[-122.40387130209642,47.68585312235835],[-122.40387144728616,47.68589150911044],[-122.40387018811244,47.6859170190539],[-122.40386747893868,47.68596174318289],[-122.40386370638196,47.68600485410899],[-122.4038626952262,47.68603858661973],[-122.40385860809101,47.68607129067584],[-122.40385331042866,47.68613113186266],[-122.40384959964821,47.68620988845943],[-122.40384330407296,47.68627030040836],[-122.40384100962807,47.68632872926367],[-122.40383736854191,47.68637620846337],[-122.40383061761072,47.68648872553115],[-122.40382837716551,47.68658254324398],[-122.40383224612303,47.68664337211295],[-122.40380126833422,47.68665969435516],[-122.40375562716262,47.68666113763795],[-122.40363306147522,47.68667023873889],[-122.4035561441916,47.68667815369388],[-122.40347823727521,47.6866868965128],[-122.40344862169798,47.68671472511082],[-122.40344423080542,47.68677099761749],[-122.40344012652375,47.6868031448796],[-122.40343935579777,47.68684484313377],[-122.4034372641418,47.68687640565491],[-122.40343622794536,47.68697650479166],[-122.40342302287637,47.68700984829488],[-122.4034989046727,47.68703485234543],[-122.40356217044835,47.68704550581734],[-122.40360934780449,47.68706130804932],[-122.40366582451534,47.68708246622096],[-122.40369883655607,47.68709983455814],[-122.40370391473142,47.68713348349995],[-122.40371288237525,47.6871950560358],[-122.40375808868953,47.68721281331986],[-122.40379373133887,47.68721643528578],[-122.40382933204064,47.68721868652875],[-122.40383440979252,47.68725233547173],[-122.40380435576235,47.68726564582973],[-122.40376516803764,47.68727908205314],[-122.40372982306893,47.68728531016994],[-122.4037168511127,47.68732636264185],[-122.40370347216611,47.68735396754801],[-122.40368286921152,47.68741127775651],[-122.4036621005284,47.68746310613741],[-122.40365725937397,47.68748200838769],[-122.40278187280072,47.68729893950998],[-122.40289196088514,47.68568038024961],[-122.40300645249296,47.68397579925846],[-122.40304608420332,47.68360819536069],[-122.40310333000723,47.68332952616359],[-122.40318259342803,47.68307753677814],[-122.4033014885592,47.68270696194122],[-122.40346441892414,47.68237196002313],[-122.40403687696312,47.68139065883874],[-122.40511133666708,47.67959699416743],[-122.4060184624827,47.67812050986829],[-122.40621662103467,47.67774100514586],[-122.40638395492299,47.67740004151772],[-122.4064764289139,47.67714209364034],[-122.40650285005415,47.67686635484399],[-122.40650725357756,47.67654021030057]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":80418.553429,"geom:bbox":"-122.409829536,47.6765402103,-122.402781873,47.6874820084","geom:latitude":47.68102,"geom:longitude":-122.405145,"iso:country":"US","lbl:latitude":47.679564,"lbl:longitude":-122.405696,"lbl:max_zoom":18,"mps:latitude":47.679564,"mps:longitude":-122.405696,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.679564,"reversegeo:longitude":-122.405696,"src:geom":"mz","wof:belongsto":[85804333,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9f709dad81e5968bdaba59e4c2e0e93b","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129181,"neighbourhood_id":85804333,"region_id":85688623}],"wof:id":907129181,"wof:lastmodified":1566608545,"wof:name":"Shilshole Marina","wof:parent_id":85804333,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129183.geojson b/fixtures/microhoods/907129183.geojson new file mode 100644 index 0000000..f33eadd --- /dev/null +++ b/fixtures/microhoods/907129183.geojson @@ -0,0 +1 @@ +{"id":907129183,"type":"Feature","bbox":[-122.39574435428138,47.62999351142852,-122.3884492821468,47.63161478705973],"geometry":{"type":"Polygon","coordinates":[[[-122.39574415619096,47.63149755925353],[-122.39574435428138,47.63161478705973],[-122.39536695587435,47.63149263630813],[-122.39493407881116,47.63139574331322],[-122.39439099454654,47.63131066608419],[-122.39206544128089,47.63114837980957],[-122.39126292974866,47.63113195755312],[-122.39092509856535,47.6311474484061],[-122.39056171415389,47.63120718015831],[-122.39026631289077,47.63125937725302],[-122.38987828753599,47.63132884802754],[-122.38940153156483,47.63140862509339],[-122.38849228184132,47.63154433033571],[-122.3884492821468,47.63117278032104],[-122.38846208061672,47.63115718009117],[-122.3884847814241,47.63113630486133],[-122.3885133597182,47.63110849394456],[-122.38853088543912,47.63108413290514],[-122.38857531423713,47.63104376628817],[-122.38860815959241,47.63102300934936],[-122.38864302451971,47.63100196753683],[-122.38867871532833,47.63097461640459],[-122.3887063612262,47.63094956004926],[-122.38874002468062,47.63092223659824],[-122.38877265728831,47.63089437021396],[-122.38880322927685,47.6308654179601],[-122.38883699841374,47.63084164918633],[-122.3889091245016,47.63081187213915],[-122.38895329304815,47.63079674419315],[-122.38898223980243,47.63078126724748],[-122.38900498122389,47.63076176229008],[-122.38905567181543,47.63072735065432],[-122.38909372512082,47.63071119256227],[-122.38913582526204,47.63069472187646],[-122.38918186514314,47.63067434108439],[-122.38923711023739,47.63065657667558],[-122.38927234364024,47.6306478691092],[-122.38931141941984,47.63063199670538],[-122.38938696252858,47.6306147686903],[-122.38943322390888,47.63060179716048],[-122.389482608172,47.63059152479277],[-122.38953308088777,47.63058372247737],[-122.3895854727128,47.63057229528082],[-122.38964298317813,47.63056246875268],[-122.38969137038765,47.63055276693412],[-122.3897387926455,47.63054470649531],[-122.38979131690343,47.63053769029236],[-122.38984272830392,47.63052739004863],[-122.3898911474872,47.63051875890493],[-122.38993438388754,47.63050638519108],[-122.38998161765639,47.63049202920114],[-122.39002668441742,47.63047303265576],[-122.39007379507572,47.63045456514872],[-122.39011300120994,47.63044306076242],[-122.39015613879569,47.63042738943135],[-122.39021803698203,47.63039475227608],[-122.39026418205805,47.63037792575087],[-122.39030832600692,47.63036198367698],[-122.39035829659058,47.63033743582312],[-122.39040139351057,47.6303203940161],[-122.39043821911046,47.63029713960111],[-122.39047087478352,47.6302700866753],[-122.39049047580637,47.63024732513519],[-122.39054025001914,47.63021622458756],[-122.3905842039733,47.63019394380444],[-122.3906262044958,47.63017417503467],[-122.39065712893054,47.63015704238765],[-122.39069398637093,47.63013485900024],[-122.39072909658981,47.63012203949761],[-122.39077525022999,47.63010551238133],[-122.39082250776485,47.63009196963718],[-122.39087075453777,47.63007759940911],[-122.39092195289342,47.63006018927663],[-122.39096219654243,47.63004948467341],[-122.39101865919667,47.63003855775872],[-122.39107215482518,47.63003015637451],[-122.39112063106944,47.63002345221517],[-122.39117927791173,47.63001772215884],[-122.39123901995738,47.63001471965944],[-122.39129262251771,47.63000987286127],[-122.39135141634223,47.63000906814642],[-122.3914070948869,47.63000582108697],[-122.39146584765399,47.63000364593753],[-122.39152759304989,47.62999980158444],[-122.39157938078667,47.63000209180196],[-122.39162590409828,47.62999789876534],[-122.39168661865159,47.62999351142852],[-122.39173128664756,47.6299950851196],[-122.39178416243642,47.62999984530379],[-122.39182072862705,47.63000178680161],[-122.39193470576825,47.63001505032867],[-122.39199378706462,47.63002383861111],[-122.39204475116144,47.63003248074541],[-122.39209781619951,47.63004353622335],[-122.39215085635828,47.63005377808915],[-122.39219978428139,47.63006214829975],[-122.39224675941676,47.63007303018952],[-122.39230087924795,47.63008544241709],[-122.39234690574138,47.63009852212461],[-122.39239791105624,47.6301085348268],[-122.39244489397292,47.63011967344858],[-122.39249493447787,47.63013132717975],[-122.39255104060172,47.63014234114527],[-122.39258890941692,47.63015390464159],[-122.39264108380581,47.6301690852343],[-122.39267805330063,47.63018447409539],[-122.39271280630511,47.630193595278],[-122.3927516066403,47.63020240373329],[-122.39279956225867,47.6302121579474],[-122.39283452075001,47.63022813131875],[-122.39291321554128,47.63024843255106],[-122.39296734469801,47.63026114407779],[-122.39303592719104,47.63028239805896],[-122.39308697442131,47.63029378046935],[-122.39313898470375,47.63030347898336],[-122.39318399850085,47.6303165725858],[-122.39323217598434,47.63033373563051],[-122.3932861653113,47.63034177910049],[-122.39332179214747,47.6303462179502],[-122.39339940868084,47.63036434841068],[-122.39345895949585,47.63038876788842],[-122.39349991839354,47.63040191659235],[-122.39353769639882,47.63041043905664],[-122.39359175084657,47.63042066635774],[-122.39364677835731,47.63042950935715],[-122.39369968868806,47.63043538220549],[-122.39374853498566,47.63044101065019],[-122.39379721683197,47.63044115722452],[-122.39385299463017,47.63044120684948],[-122.39395943270574,47.63043974761978],[-122.39401110661169,47.63043822487244],[-122.39406067101189,47.63043398914844],[-122.39420262989725,47.63043341394847],[-122.39425528400328,47.63043076363026],[-122.39457054358911,47.63042644012425],[-122.39461522875683,47.63042856946414],[-122.39466710833221,47.63043389899246],[-122.39470869423592,47.63043414250716],[-122.39479307768256,47.63044121134605],[-122.39484517123039,47.63045364982199],[-122.39489516374239,47.63046367531017],[-122.39494021874408,47.6304781385995],[-122.39499470994964,47.63050288326522],[-122.39503072409919,47.63052021278085],[-122.39507592758565,47.63053960107666],[-122.39511514007643,47.63056211316982],[-122.3951513266235,47.63058518130835],[-122.39519159397608,47.63060905019248],[-122.3952297260669,47.63062934938385],[-122.39527859642936,47.63066955251217],[-122.39531182453132,47.6306954034249],[-122.39534415476801,47.63072512219511],[-122.39536928231811,47.63075138398848],[-122.39539416294151,47.63076942283028],[-122.39543042487497,47.6307949748074],[-122.39546062840886,47.63082142384344],[-122.39549764801878,47.63087220071518],[-122.39550956391179,47.6308975297698],[-122.39552574070231,47.63092965539311],[-122.39553977575152,47.6309579973301],[-122.39554790028808,47.63099216140709],[-122.39555898448197,47.63102354298751],[-122.39557113068705,47.63105653785009],[-122.39558313798858,47.63108490761151],[-122.39558903770377,47.63111250409408],[-122.39559619034216,47.63114805279668],[-122.39560126629463,47.63118200179085],[-122.39561042950945,47.63121696553814],[-122.3956164205974,47.63124760308461],[-122.39562252616713,47.63128205178593],[-122.39562562373936,47.63131765614088],[-122.39562875475322,47.63135437370524],[-122.3956348191922,47.6313874523827],[-122.39564602649064,47.63142294508324],[-122.39568395306593,47.63147015329616],[-122.39572806164065,47.63148681449704],[-122.39574415619096,47.63149755925353]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":53956.976557,"geom:bbox":"-122.395744354,47.6299935114,-122.388449282,47.6316147871","geom:latitude":47.630806,"geom:longitude":-122.392107,"iso:country":"US","lbl:latitude":47.630575,"lbl:longitude":-122.391861,"lbl:max_zoom":18,"mps:latitude":47.630575,"mps:longitude":-122.391861,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":47.630575,"reversegeo:longitude":-122.391861,"src:geom":"mz","wof:belongsto":[85831927,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"3b4859f6263ffcf4d62a1f33010caa18","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129183,"neighbourhood_id":85831927,"region_id":85688623}],"wof:id":907129183,"wof:lastmodified":1566608546,"wof:name":"Elliot Bay Marina","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907129185.geojson b/fixtures/microhoods/907129185.geojson new file mode 100644 index 0000000..8065969 --- /dev/null +++ b/fixtures/microhoods/907129185.geojson @@ -0,0 +1 @@ +{"id":907129185,"type":"Feature","bbox":[-122.38371255377386,47.62635408056178,-122.37932674645178,47.63284562224852],"geometry":{"type":"Polygon","coordinates":[[[-122.38371255377386,47.63284562224852],[-122.37981994559289,47.63283645049364],[-122.37981936033445,47.63281676719075],[-122.37981930689887,47.6327808642801],[-122.37981820667265,47.63274386157556],[-122.3798180793813,47.63270547472025],[-122.37981809853066,47.63267201295162],[-122.37981699830765,47.63263501024694],[-122.37981691229314,47.63259799411491],[-122.37981680919415,47.63256042085655],[-122.37981779362777,47.63252531777164],[-122.37981876151538,47.63248965825503],[-122.37981975359278,47.63245481233547],[-122.3798187679756,47.63242166395476],[-122.37981770851391,47.63238603198026],[-122.37971429104635,47.6323868798882],[-122.37966561505486,47.6323869841065],[-122.37951456784835,47.63238903583326],[-122.37951049378754,47.63225198909152],[-122.3794393284666,47.63224610066929],[-122.37938859343627,47.63224516154192],[-122.37933784950192,47.63224392277487],[-122.37932674645178,47.63217745064643],[-122.37937944382492,47.63217617793917],[-122.37938065642327,47.63214874105534],[-122.37937977675487,47.6321191473781],[-122.37941725197436,47.63211752438492],[-122.3794669413824,47.63211740650484],[-122.37951150515971,47.63211543028284],[-122.37951536783139,47.63207480402522],[-122.37951633643698,47.63203914450368],[-122.37951534211419,47.63200569650286],[-122.37951626945122,47.63196866625775],[-122.37951500649625,47.6319261816797],[-122.37951483869291,47.63188642444344],[-122.37951553814312,47.63184172835155],[-122.37951545945981,47.63180496904014],[-122.37951533239413,47.63176658218349],[-122.37951623604948,47.63172873798305],[-122.37951498966241,47.63168681053811],[-122.37951480529784,47.63164649616819],[-122.37951381099397,47.63161304851786],[-122.3795136431821,47.63157329093041],[-122.37951346774658,47.63153327687914],[-122.37951344634365,47.63149844437887],[-122.37951426801237,47.63145785977655],[-122.3795149756107,47.63141342049173],[-122.37951584564856,47.63137446308369],[-122.37951656927686,47.63133058058834],[-122.37951559151894,47.63129768936943],[-122.37951526075778,47.63125245026264],[-122.3795149465382,47.63120776758753],[-122.37951384657218,47.63117076522924],[-122.37951285226761,47.6311373172276],[-122.37951276646156,47.63110030074293],[-122.37951174032868,47.63106578197853],[-122.37951169475191,47.63103013623144],[-122.37951145311439,47.63098789504931],[-122.37951039388194,47.63095226271969],[-122.37951013696691,47.63090950755734],[-122.37950763531644,47.63082535234654],[-122.37950763046894,47.63079107662814],[-122.37950544710728,47.63071762834222],[-122.37950534423703,47.6306800550816],[-122.37950820133115,47.63063969974931],[-122.37950510667743,47.63060383814837],[-122.3795029523464,47.63056547882704],[-122.3795018523921,47.63052847611714],[-122.37950185520343,47.63049445791477],[-122.37950176940629,47.63045744142944],[-122.37950171619232,47.63042153851626],[-122.37950167061256,47.63038589241766],[-122.37949925048353,47.63030447831586],[-122.3794991068825,47.63026553467503],[-122.37949889071614,47.63022414989165],[-122.37949876366656,47.63018576303327],[-122.37949863661717,47.63014737617485],[-122.37949964593427,47.63011308703132],[-122.37949952651846,47.63007495698748],[-122.37950150056186,47.63003902653736],[-122.37950334347784,47.62999868497983],[-122.3795041249034,47.62995672963821],[-122.37950503566096,47.62991914260849],[-122.37950399301603,47.62988406741113],[-122.37950490377241,47.62984648038133],[-122.3795027039034,47.62977247531084],[-122.37950162051686,47.62973602938271],[-122.37950149346645,47.62969764252382],[-122.37950140715185,47.62966062604471],[-122.37950033141298,47.62962443728193],[-122.37950229704097,47.62958820685634],[-122.3795023087583,47.62955448827019],[-122.37950214097229,47.62951473103131],[-122.37950211958822,47.62947989887991],[-122.37950283555732,47.62943575921685],[-122.37950265173959,47.6293954451882],[-122.37950237828788,47.6293521332414],[-122.37950221050248,47.62931237600228],[-122.3795022133031,47.62927835744795],[-122.37949788745291,47.62913283089854],[-122.37949679517685,47.6290960853526],[-122.37949563032808,47.62905689831322],[-122.37949548673322,47.62901795467101],[-122.3794944848477,47.62898424985256],[-122.37949649068192,47.62894939016417],[-122.37949745159794,47.6289134734742],[-122.37949842727181,47.62887807077136],[-122.37949740883658,47.62884380917021],[-122.3794971595765,47.62880131082001],[-122.37949706563262,47.62876403752532],[-122.37949781342476,47.62872096862418],[-122.37950064622238,47.62867979934183],[-122.37950157352101,47.62864276944424],[-122.37950033484313,47.62860109845935],[-122.37949925148264,47.62856465253002],[-122.3794968721767,47.62848460880394],[-122.37949747356667,47.6284366148148],[-122.3794983771876,47.62839877096182],[-122.3794992471875,47.62835981355067],[-122.37949996315403,47.62831567423711],[-122.37950162703018,47.62826929401776],[-122.37950158145237,47.62823364791705],[-122.37950228086487,47.62818895182073],[-122.37950126244057,47.62815469021896],[-122.37950002377457,47.62811301923353],[-122.37950104908258,47.62807928687772],[-122.37950097932128,47.62804282717958],[-122.37950075425658,47.62800114277658],[-122.37950069264835,47.62796493988596],[-122.37950045994003,47.62792299831737],[-122.37950146869377,47.62788870917876],[-122.37950233868283,47.62784975176706],[-122.37950318448657,47.62780998075801],[-122.37950410464268,47.62777269368697],[-122.3795029232783,47.62773295021447],[-122.3795035081038,47.62768439944169],[-122.3795012510336,47.62760846685347],[-122.37950123856733,47.62757393466821],[-122.3795019621551,47.62753005216837],[-122.37950171289759,47.62748755381667],[-122.37950049844132,47.62744669677861],[-122.37950033118248,47.62740693953037],[-122.37950019649459,47.62736829550355],[-122.379499137354,47.62733266352112],[-122.37950008880297,47.62729644686862],[-122.37949981536445,47.62725313491937],[-122.3795006280604,47.62721225034446],[-122.3794958950311,47.62705301928607],[-122.37949591438564,47.62701955751223],[-122.37949473303416,47.626979813688],[-122.37949568500915,47.626943597379],[-122.37949465896956,47.62690907861052],[-122.3794945726749,47.62687206247944],[-122.37949343970499,47.62683394620046],[-122.37949341068385,47.62679885688103],[-122.37949139527849,47.62676516582874],[-122.37948808879428,47.62672215199807],[-122.37948609705953,47.62668927454997],[-122.37947962014971,47.62647137045768],[-122.37947296369165,47.62641799097188],[-122.37951855980839,47.62641681458314],[-122.37952381931082,47.62638906579787],[-122.37969410770829,47.62638675241588],[-122.37975091124369,47.62638735161178],[-122.37980972534035,47.62638736645472],[-122.37987161373283,47.62638845351064],[-122.37992536005885,47.62638853750248],[-122.37998313640959,47.62638775243065],[-122.38003282797995,47.62638789111823],[-122.38009266455332,47.62638819200987],[-122.38014842142512,47.62638769121588],[-122.38025789277823,47.62638620346683],[-122.38032077001996,47.62638646291344],[-122.38037550569354,47.6263857189692],[-122.38043130332794,47.62638658876711],[-122.38048706911667,47.62638638777512],[-122.38054084855287,47.62638758469054],[-122.38064322396298,47.62638619302763],[-122.38069695371489,47.62638571952187],[-122.38073932747949,47.62641256388664],[-122.3807716390898,47.62644202998349],[-122.38076824232463,47.6264982883063],[-122.38076837030191,47.62653667516709],[-122.38076538370653,47.62657261942216],[-122.38076149003676,47.62661217462209],[-122.38076269655076,47.62665273203061],[-122.38076385464986,47.62669166189416],[-122.38076390108077,47.62672730764498],[-122.38076406983245,47.62676706523585],[-122.38076508906123,47.62680132682758],[-122.38076855445534,47.62691781644968],[-122.38076676052773,47.62695978558301],[-122.38076885633862,47.62703023627878],[-122.38076882887921,47.62706339808496],[-122.3807700685261,47.6271050687069],[-122.38077013153567,47.6271412715906],[-122.38077136227218,47.62718264259546],[-122.38077035436915,47.62721693174596],[-122.38077265404195,47.62729423468924],[-122.38077274125716,47.62733125116977],[-122.3807708415701,47.62736966559597],[-122.38077090457007,47.62740586812856],[-122.3807719722336,47.62744175726451],[-122.3807731711246,47.6274820575066],[-122.38077441843538,47.62752398529346],[-122.3807734844227,47.62756075838795],[-122.38077154447934,47.62759780242745],[-122.38077165537901,47.62763563251172],[-122.38077265042602,47.62766908050558],[-122.38077268031049,47.62770416982388],[-122.38077284906161,47.62774392706285],[-122.38077515640147,47.62782148681956],[-122.38077629033195,47.62785960308478],[-122.38077735800854,47.62789549222023],[-122.38077746178156,47.62793306513173],[-122.3807776063331,47.62797200877346],[-122.38077860904087,47.62800571393237],[-122.38077968563547,47.62804190268467],[-122.38077866115728,47.62807563505206],[-122.3807796562172,47.62810908304544],[-122.3807786885612,47.62814474293245],[-122.38077881655023,47.62818312979155],[-122.38077891141143,47.62822040308574],[-122.38077909673302,47.62826071710657],[-122.38077912662217,47.62829580642429],[-122.3807801216866,47.62832925441751],[-122.38078111675232,47.62836270241064],[-122.38077921755279,47.62840111682888],[-122.3807782498806,47.62843677636475],[-122.3807774292561,47.62847736133043],[-122.38077765534582,47.62851904573035],[-122.38077888612095,47.6285604167336],[-122.3807799053946,47.62859467832354],[-122.38078091702941,47.62862868309887],[-122.38078009640398,47.62866926806434],[-122.38078123799676,47.62870764114319],[-122.38078233881215,47.62874464349174],[-122.38077944204188,47.62878362847871],[-122.38077844176377,47.6288181747932],[-122.38077747461274,47.62885383467246],[-122.38077859199277,47.62889139380333],[-122.38077733891997,47.62891746033219],[-122.3807793774806,47.62898598351141],[-122.38077836955831,47.62902027301114],[-122.38077947037826,47.62905727535941],[-122.3807794518486,47.6290907371316],[-122.38078169428445,47.629166112909],[-122.3807818630472,47.62920587014638],[-122.3807798007311,47.62923880269537],[-122.38077784364631,47.62927528995793],[-122.38077679493803,47.62930820872716],[-122.38077690636418,47.62934603880261],[-122.38077698594557,47.62938279846649],[-122.3807761240067,47.62942201270795],[-122.38077617044846,47.62945765845614],[-122.38077530903718,47.62949687304127],[-122.38077539625796,47.62953388951957],[-122.38077555736639,47.62957338959116],[-122.38077570957178,47.62961259039654],[-122.3807756986798,47.62964630898276],[-122.38077569619294,47.62968032754387],[-122.38077802018744,47.62975844407881],[-122.38077799274284,47.62979160623337],[-122.38077611004287,47.62983057708156],[-122.38078032613194,47.62997229205853],[-122.38078135308503,47.63000681081253],[-122.38078242972297,47.63004299956282],[-122.38078154409123,47.63008140019959],[-122.38078063373415,47.63011898724643],[-122.38078161991018,47.63015213527012],[-122.38078165871593,47.63018752420302],[-122.38078171281302,47.63022342711583],[-122.38078167771967,47.63025633210454],[-122.38078164262629,47.63028923709322],[-122.38078496176408,47.63040080161799],[-122.38078599765302,47.63043562033938],[-122.3807870004033,47.63046932514512],[-122.38078609056237,47.63050691218452],[-122.38078513050668,47.63054282888382],[-122.38078427798764,47.63058234273398],[-122.38078537885531,47.63061934543146],[-122.38078642238939,47.63065442096718],[-122.38078539022362,47.63068789651761],[-122.38078345016167,47.63072494020326],[-122.38078451026146,47.63076057252128],[-122.38078456384211,47.63079647544057],[-122.38078469184201,47.63083486229684],[-122.38078477907169,47.63087187877377],[-122.38078376345504,47.63090591075549],[-122.38078080923023,47.63094296857851],[-122.38078185276775,47.63097804411396],[-122.38078284788523,47.63101149210467],[-122.38078192910743,47.63104877917566],[-122.38078191057863,47.63108224094596],[-122.38078297067423,47.63111787291282],[-122.38078304133819,47.63115433260707],[-122.38078728175911,47.63129686117546],[-122.38078730400447,47.63133169332488],[-122.38079287342545,47.63151889078386],[-122.38079287145831,47.63155290898529],[-122.3807371574769,47.63155503763954],[-122.38068649572033,47.63155654023215],[-122.38063683945887,47.63155777221633],[-122.38058513983702,47.6315584749453],[-122.38050495764023,47.63155626555285],[-122.38050547654073,47.63160780047254],[-122.38051058889334,47.63177966555285],[-122.3805529019883,47.6318043260067],[-122.3806038570047,47.63181267329431],[-122.38067100799476,47.63181998683373],[-122.38070764842858,47.63182441585199],[-122.38075740254001,47.63182648173576],[-122.38080924182576,47.63183044684168],[-122.38086300981254,47.63183108682939],[-122.38091679489678,47.63183228391784],[-122.3809715770681,47.63183291006632],[-122.38102023597075,47.63183224850738],[-122.38107100375395,47.63183430012143],[-122.38112173077157,47.63183498168456],[-122.38117144411781,47.63183567665738],[-122.38122620972581,47.63183574590105],[-122.38127589886058,47.63183562723148],[-122.38132659274012,47.63183519513873],[-122.3813772794838,47.63183450585102],[-122.38143203691752,47.63183431783737],[-122.38148675409067,47.63183275976214],[-122.38186588808526,47.63182760284761],[-122.38191550325523,47.63182499995558],[-122.38196817650255,47.63182291244633],[-122.38201782480934,47.63182142272325],[-122.3820704159199,47.6318165944161],[-122.38212311337934,47.63181532043181],[-122.38217582689727,47.63181460321234],[-122.38222440413892,47.63181120003034],[-122.38227599864835,47.63180694184501],[-122.38232550791426,47.63180078406939],[-122.3823800854742,47.63179455730275],[-122.38242341453856,47.63178518470837],[-122.38246677622426,47.63177692531797],[-122.38249678759001,47.63176306377105],[-122.38250393432114,47.63173061899329],[-122.38250390327701,47.63169553003022],[-122.38250284198041,47.63165989772916],[-122.38250281858619,47.63162506558042],[-122.3825017738753,47.63158999006139],[-122.38250274755474,47.63155458733549],[-122.38239729630338,47.63155520846322],[-122.38234866190764,47.63155668420733],[-122.38229388052967,47.63155605871443],[-122.38224114252777,47.63155596239899],[-122.38219245966087,47.63155581053231],[-122.38218947713315,47.63152376086853],[-122.38218845686326,47.63148949894316],[-122.38218824621026,47.63144837133161],[-122.382187209373,47.63141355297483],[-122.38218708033673,47.63137516612075],[-122.38218696788071,47.63133733604882],[-122.38218786959544,47.63129949217755],[-122.38218774055896,47.63126110532338],[-122.38218775818352,47.63122764355299],[-122.38218758832927,47.6311878859691],[-122.38218654385015,47.6311528107976],[-122.38218553124739,47.63111880603709],[-122.38218855793005,47.63108423212805],[-122.38218857607302,47.63105077035043],[-122.38218850443457,47.6310143110078],[-122.38218821980561,47.63097069910172],[-122.38218798491701,47.63092875754209],[-122.38218692386288,47.63089312558817],[-122.3821867705903,47.63085392478608],[-122.3821844444314,47.63077580828226],[-122.3821843562059,47.63073879180631],[-122.38218336019247,47.63070534382761],[-122.38218235653292,47.63067163903441],[-122.38218233335375,47.63063680688465],[-122.38218222090278,47.63059897681192],[-122.38218099661077,47.63055786264066],[-122.38218072909982,47.63051480785996],[-122.3821796846284,47.6304797323369],[-122.38217970225789,47.63044627056576],[-122.38217947503631,47.63040458617083],[-122.38217938681497,47.63036756969451],[-122.3821783423474,47.63033249417127],[-122.38217833575071,47.63029821880337],[-122.38217832915403,47.63026394343543],[-122.38217716226958,47.63022475677559],[-122.38217705747059,47.6301871835169],[-122.38217597985948,47.63015099477995],[-122.3821759898335,47.6301172758432],[-122.3821770216121,47.63008380027257],[-122.38217782460092,47.63004265886729],[-122.3821746580766,47.62993631908295],[-122.38217450482651,47.62989711863064],[-122.38217441660957,47.62986010215378],[-122.38217427100712,47.62982115851585],[-122.38217326737055,47.62978745372173],[-122.38217313834856,47.62974906686591],[-122.38217315650101,47.62971560508705],[-122.38217207124477,47.62967915918427],[-122.38217295584317,47.62964075853628],[-122.38217494332847,47.62960534201915],[-122.382173956275,47.62957219400704],[-122.38217395732848,47.6295381754529],[-122.38217386146533,47.62950090216118],[-122.38217286548237,47.62946745418126],[-122.38217176365218,47.62943045149603],[-122.38217165937766,47.62939287822944],[-122.38217161197977,47.62935723248177],[-122.38217046934713,47.62931885941757],[-122.38217037348689,47.62928158612564],[-122.38217032607955,47.62924594002702],[-122.38216926507182,47.62921030807126],[-122.3821690952383,47.62917055048513],[-122.38217006909885,47.62913514775966],[-122.38216904889904,47.62910088618267],[-122.38216895304022,47.62906361289053],[-122.3821688255991,47.62899120747222],[-122.38216774036096,47.62895476156867],[-122.38216662197664,47.62891720245153],[-122.38216766214005,47.62888402650383],[-122.38216556436015,47.62881357583736],[-122.38216659561105,47.62878010062352],[-122.38216641813395,47.62874008622243],[-122.38216535712878,47.6287044539153],[-122.3821652523518,47.62866688100585],[-122.38216416712297,47.62863043510196],[-122.38216514149576,47.62859503236896],[-122.38216606688583,47.62855800209877],[-122.38216810407138,47.62852425592735],[-122.38216803244028,47.62848779623131],[-122.38217003698286,47.6284529364883],[-122.38217004696041,47.62841921755],[-122.3821690344321,47.62838521313766],[-122.38217008224078,47.62835229435478],[-122.38216897277874,47.62831503450308],[-122.38216894960958,47.62828020235106],[-122.38216886139931,47.62824318587258],[-122.38216869209869,47.62820342862915],[-122.38216647193094,47.62812886682465],[-122.38216646534237,47.62809459145466],[-122.38216744810599,47.62805948834509],[-122.3821683977211,47.62802327202189],[-122.38216838347387,47.62798873948649],[-122.3821683029219,47.62795198017303],[-122.38216920458109,47.62791413594755],[-122.3821691163817,47.62787711981952],[-122.38216906897651,47.62784147371953],[-122.38216802457706,47.62780639854464],[-122.3821689741767,47.62777018187032],[-122.38216788896395,47.62773373596558],[-122.38216887937715,47.62769889002097],[-122.38216776101899,47.62766133090255],[-122.38216866267355,47.62762348667678],[-122.38216971046714,47.62759056789323],[-122.3821707340338,47.62755683551293],[-122.38217072744247,47.62752256014242],[-122.382169625655,47.62748555745521],[-122.3821696190644,47.62745128208464],[-122.3821684764751,47.62741290901842],[-122.38216629714539,47.62733971759126],[-122.38216629106557,47.62730544186265],[-122.38216622709469,47.62726923933072],[-122.38216603304444,47.62722866814578],[-122.38216491469845,47.62719110902682],[-122.38216490811101,47.62715683365599],[-122.38216493467012,47.62712367149874],[-122.38216481331814,47.62708554180546],[-122.3821647659166,47.62704989570471],[-122.38216461268246,47.62701069524933],[-122.38216344587086,47.62697150823502],[-122.38216335819618,47.62693449209899],[-122.38216337583495,47.62690103032463],[-122.38216335267015,47.6268661981713],[-122.3821623490872,47.62683249302353],[-122.38216222008063,47.62679410616462],[-122.38216312887282,47.62675651946124],[-122.38216402999606,47.62671867524165],[-122.38216507829335,47.62668575645031],[-122.38216602788502,47.62664954012576],[-122.3821659970614,47.62661445080684],[-122.38216593309157,47.62657824827426],[-122.38216594308187,47.62654452968508],[-122.38216493950344,47.62651082453708],[-122.38216291345799,47.62647683391493],[-122.38216392041845,47.6264425444006],[-122.38216496106352,47.6264093687945],[-122.38218144146141,47.62638390895697],[-122.38221830876394,47.62636202792834],[-122.38225679331354,47.62636039055856],[-122.38231047455923,47.62635828874699],[-122.38236419610051,47.62635755764688],[-122.38241491065554,47.62635798146153],[-122.38247171419086,47.62635857929978],[-122.3825234162787,47.62635813287933],[-122.38257612478064,47.62635741546735],[-122.38263394187234,47.62635799942897],[-122.38268873436478,47.62635918154053],[-122.38274450011536,47.62635897944271],[-122.38279420825056,47.62635967370704],[-122.38284489730054,47.62635924093111],[-122.38289964897655,47.6263590525624],[-122.38294925939846,47.6263564492124],[-122.38300097039557,47.62635630184105],[-122.3830496241501,47.62635563941465],[-122.38310433551257,47.62635408056178],[-122.38316122072088,47.62635741916409],[-122.38321291513934,47.62635671526521],[-122.38325253570416,47.62635917489329],[-122.38330327399179,47.62636041191574],[-122.3833539548563,47.62635972175494],[-122.38340659825768,47.62635681963256],[-122.38345727911731,47.62635612942577],[-122.38350800082465,47.62635680992576],[-122.38355770948694,47.62635750384963],[-122.38360731935548,47.62635490021992],[-122.38362296344005,47.62640348694413],[-122.38366358229707,47.62640541864449],[-122.38366517526903,47.62645886691211],[-122.38368335440455,47.62649040982179],[-122.38368444958293,47.62652715533011],[-122.38368456259848,47.62656498541261],[-122.38368466847894,47.6266025586736],[-122.38368577897953,47.6266398181614],[-122.38368588486104,47.62667739142233],[-122.38368487888872,47.62671168059908],[-122.38368596514289,47.62674812649036],[-122.38368293152398,47.62678244328517],[-122.3836789422943,47.6268187010387],[-122.38367899073312,47.62685434713901],[-122.38367903916156,47.62688999288847],[-122.38367902964336,47.62692371183536],[-122.38367903722835,47.62695798720632],[-122.38368003413164,47.62699143517536],[-122.38368014000972,47.62702900843595],[-122.38368116881831,47.6270635268157],[-122.38368230486144,47.6271016430527],[-122.3836824018009,47.62713891634554],[-122.38368448497259,47.62720881020523],[-122.38368456659472,47.62724556951836],[-122.38368783432465,47.62735520680731],[-122.38368890399944,47.62739109591591],[-122.38368801290386,47.62742923976366],[-122.38368806133903,47.62746488551257],[-122.38368806841106,47.62749916089009],[-122.38368710327896,47.62753482079533],[-122.3836862440833,47.62757403505369],[-122.38368639847612,47.62761323585728],[-122.38368656178885,47.62765273592678],[-122.38368768890818,47.62769055219552],[-122.3836876722496,47.62772401396938],[-122.38368772017624,47.6277596600759],[-122.38368675502863,47.62779531963003],[-122.38368789874625,47.62783369268062],[-122.38368791400207,47.62786822521598],[-122.38368892752358,47.62790222996612],[-122.38368890192508,47.62793539177218],[-122.3836869563893,47.62797217904656],[-122.38368603922765,47.62800946615114],[-122.38368401964196,47.62804376913219],[-122.38368312853166,47.6280819129792],[-122.38368320121357,47.62811837232385],[-122.38368822543652,47.62828693973922],[-122.38368821592401,47.62832065868484],[-122.38368923710902,47.62835492024892],[-122.3836893264013,47.62839193672615],[-122.38368930973307,47.62842539814853],[-122.38368934158527,47.62846048746531],[-122.3836894232128,47.62849724677719],[-122.38369049291217,47.62853313588469],[-122.38369055795579,47.62856933876535],[-122.38369058979845,47.62860442773115],[-122.3836926730398,47.62867432158792],[-122.38369272148975,47.62870996768645],[-122.38369171496366,47.62874425686843],[-122.38369176340257,47.62877990261606],[-122.38369071654816,47.62881282141255],[-122.38368980883422,47.62885040847684],[-122.38368989812773,47.62888742495353],[-122.38369094357499,47.62892250011346],[-122.3836911063867,47.62896200053945],[-122.38369431679713,47.6290697106628],[-122.38369438183365,47.62910591319206],[-122.38369443793982,47.62914181610454],[-122.38369856363562,47.6292802334374],[-122.3836985303879,47.62931313842785],[-122.38370054856148,47.62938084795763],[-122.3837006136027,47.62941705048658],[-122.38370163481741,47.62945131204957],[-122.38370063646703,47.62948585838905],[-122.38369962227638,47.62951989075601],[-122.38369857541204,47.62955280955189],[-122.38369854981889,47.62958597135647],[-122.38369863146515,47.62962273101805],[-122.38369967693306,47.62965780617716],[-122.38369873601937,47.62969427967673],[-122.38369772182342,47.62972831204349],[-122.38369671579994,47.62976260121748],[-122.3836977778756,47.62979823350928],[-122.38369682036225,47.62983415022675],[-122.38369789902475,47.6298703389496],[-122.38369786577626,47.6299032439395],[-122.38369785677826,47.62993696252573],[-122.38369887034656,47.62997096727385],[-122.38369896730325,47.63000824056378],[-122.38369998853892,47.63004250247701],[-122.3837000288109,47.63007789141607],[-122.38369900618629,47.63011162380781],[-122.38369812270635,47.63015002446716],[-122.38369714093608,47.63018512758794],[-122.38369617523091,47.63022078714686],[-122.38369719645847,47.63025504870907],[-122.38369827514043,47.63029123778238],[-122.38369936147873,47.63032768366997],[-122.38369938567357,47.6303625158197],[-122.38369940986843,47.63039734796943],[-122.38370039790959,47.63043049596755],[-122.38369949017441,47.63046808303024],[-122.38369745390615,47.63050182922726],[-122.38370185800271,47.63064958273918],[-122.38370199529088,47.63068822641372],[-122.38370197864052,47.63072168818483],[-122.38370412709072,47.63079376636274],[-122.38370415128897,47.63082859851202],[-122.38370515593752,47.63086230329165],[-122.38370522098381,47.63089850581914],[-122.38370518773928,47.63093141080812],[-122.38370633153943,47.6309697838552],[-122.38370443440482,47.63100819831941],[-122.38370444149858,47.63104247404446],[-122.38370242180727,47.63107677702296],[-122.3837025353648,47.63111460709366],[-122.38370270636618,47.63115436432456],[-122.38370273056364,47.63118919647349],[-122.38370178910536,47.63122566997859],[-122.38370300694962,47.63126652696754],[-122.38370313710428,47.63130491381999],[-122.38370310385814,47.63133781880861],[-122.38370328252618,47.6313778332044],[-122.38370336416814,47.63141459251331],[-122.38370455649083,47.63145459310333],[-122.38370569264698,47.6314927093355],[-122.38370574109803,47.6315283550804],[-122.38370583806254,47.6315656283687],[-122.38370596822004,47.63160401522082],[-122.38370496165713,47.631638304751],[-122.38370413560001,47.63167863256896],[-122.38370416745371,47.63171372153174],[-122.38370425676237,47.63175073800547],[-122.38370440351564,47.63178968163933],[-122.38370544904143,47.63182475714715],[-122.383705448979,47.63185877534828],[-122.38370552117325,47.63189523504701],[-122.3837046619299,47.63193444965163],[-122.38370372990947,47.63197122276566],[-122.38370479202456,47.63200685470436],[-122.38370484814106,47.63204275761395],[-122.38370497829901,47.63208114446555],[-122.38370496165012,47.63211460623535],[-122.38370195199293,47.63214973697273],[-122.38370195959378,47.63218401233875],[-122.38370095352558,47.63221830151043],[-122.38370205650259,47.63225530417797],[-122.38370214581067,47.63229232065113],[-122.3837025039524,47.6323383733477],[-122.38370417118782,47.63239430554811],[-122.38370738183714,47.63250201566077],[-122.38370742263508,47.6325374045903],[-122.38370743790526,47.63257193712111],[-122.3837085332287,47.63260868262302],[-122.38370952132813,47.63264183096985],[-122.3837105349463,47.63267583536446],[-122.38371158049407,47.63271091087132],[-122.38371055782518,47.63274464326065],[-122.38371059862548,47.63278003218993],[-122.38371255377386,47.63284562224852]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":160261.808879,"geom:bbox":"-122.383712554,47.6263540806,-122.379326746,47.6328456222","geom:latitude":47.629773,"geom:longitude":-122.381664,"iso:country":"US","lbl:latitude":47.632319,"lbl:longitude":-122.382377,"lbl:max_zoom":18,"mps:latitude":47.632319,"mps:longitude":-122.382377,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Terminal 91","Pier 90"],"reversegeo:latitude":47.632319,"reversegeo:longitude":-122.382377,"src:geom":"mz","wof:belongsto":[85826973,102191575,85633793,101730401,102086191,85688623],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"09ad0f8a7971d77d6c242c7f274828ee","wof:hierarchy":[{"continent_id":102191575,"country_id":85633793,"county_id":102086191,"locality_id":101730401,"microhood_id":907129185,"neighbourhood_id":85826973,"region_id":85688623}],"wof:id":907129185,"wof:lastmodified":1566608546,"wof:name":"Smith Cove Cruise Terminal","wof:parent_id":85826973,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132681.geojson b/fixtures/microhoods/907132681.geojson new file mode 100644 index 0000000..1c5389c --- /dev/null +++ b/fixtures/microhoods/907132681.geojson @@ -0,0 +1 @@ +{"id":907132681,"type":"Feature","bbox":[-73.96453420767715,40.64142655496574,-73.9608665352181,40.64473631270155],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96396205728983,40.64142655496574],[-73.96453420767715,40.64436545113236],[-73.96123304905349,40.64473631270155],[-73.9608665352181,40.64282119989565],[-73.96396205728983,40.64142655496574]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":76717.53387,"geom:bbox":"-73.9645342077,40.641426555,-73.9608665352,40.6447363127","geom:latitude":40.643307,"geom:longitude":-73.962762,"iso:country":"US","lbl:latitude":40.643266,"lbl:longitude":-73.962761,"lbl:max_zoom":18,"mps:latitude":40.643266,"mps:longitude":-73.962761,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Beverly Square East"],"reversegeo:latitude":40.643266,"reversegeo:longitude":-73.962761,"src:geom":"mz","wof:belongsto":[85869833,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f57e9b8d1cc15c8a6d7d515ef70d37d7","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907132681,"neighbourhood_id":85869833,"region_id":85688543}],"wof:id":907132681,"wof:lastmodified":1566608538,"wof:name":"Beverley Square East","wof:parent_id":85869833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782909],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132683.geojson b/fixtures/microhoods/907132683.geojson new file mode 100644 index 0000000..d0cbc5a --- /dev/null +++ b/fixtures/microhoods/907132683.geojson @@ -0,0 +1 @@ +{"id":907132683,"type":"Feature","bbox":[-73.97010500047394,40.63924766278251,-73.96396205728983,40.64436545113236],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96453420767715,40.64436545113236],[-73.96396205728983,40.64142655496574],[-73.96879827667476,40.63924766278251],[-73.97010500047394,40.64374913180258],[-73.96453420767715,40.64436545113236]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":193948.106682,"geom:bbox":"-73.9701050005,40.6392476628,-73.9639620573,40.6443654511","geom:latitude":40.642165,"geom:longitude":-73.967047,"iso:country":"US","lbl:latitude":40.642431,"lbl:longitude":-73.96698,"lbl:max_zoom":18,"mps:latitude":40.642221,"mps:longitude":-73.967106,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Beverly Square West"],"reversegeo:latitude":40.642221,"reversegeo:longitude":-73.967106,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869833,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fd20a12b2ead1a8b1b553f9ba065cdfc","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907132683,"neighbourhood_id":85869833,"region_id":85688543}],"wof:id":907132683,"wof:lastmodified":1566608538,"wof:name":"Beverley Square West","wof:parent_id":85869833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892911],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132685.geojson b/fixtures/microhoods/907132685.geojson new file mode 100644 index 0000000..fabb7e5 --- /dev/null +++ b/fixtures/microhoods/907132685.geojson @@ -0,0 +1 @@ +{"id":907132685,"type":"Feature","bbox":[-73.81005870085558,40.76249779725527,-73.79529324199193,40.77158536951638],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.79612090416006,40.76276658535874],[-73.79715058354874,40.76275820942976],[-73.7978823390307,40.76275854833928],[-73.79864633487823,40.76279873342691],[-73.79927329976344,40.76284965756679],[-73.79983407661861,40.76290053019702],[-73.80032463795293,40.76294743211921],[-73.80049939455719,40.76294198942482],[-73.80066221270842,40.76292544173773],[-73.80129071159247,40.76280863415101],[-73.8018934651225,40.7626815633493],[-73.80250805542356,40.76257983134647],[-73.80300208375603,40.7625232922416],[-73.80365313819969,40.76249960207177],[-73.80401194859742,40.76249779725527],[-73.80434723341018,40.7625272223481],[-73.80470557927855,40.76259307499575],[-73.81005870085558,40.76437475894094],[-73.80982576352218,40.76603407403022],[-73.8090464636919,40.77158536951638],[-73.80857780945709,40.77151055835354],[-73.80798311313274,40.77141717663578],[-73.80739992825299,40.77133952615131],[-73.80681667425904,40.77126773662082],[-73.80630730027978,40.77119693308097],[-73.80580877672358,40.77113451090759],[-73.80522535127109,40.77109983436207],[-73.80479013481869,40.77108437946778],[-73.80429188158897,40.77109764112795],[-73.803740702916,40.77113490438816],[-73.80249119329291,40.77128951284981],[-73.8027647242169,40.76932757351397],[-73.79529324199193,40.76876541579122],[-73.79612090416006,40.76276658535874]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.0001,"geom:area_square_m":933965.494998,"geom:bbox":"-73.8100587009,40.7624977973,-73.795293242,40.7715853695","geom:latitude":40.766619,"geom:longitude":-73.803047,"iso:country":"US","lbl:latitude":40.76598,"lbl:longitude":-73.803645,"lbl:max_zoom":18,"mps:latitude":40.76598,"mps:longitude":-73.803645,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Broadway-Flushing"],"name:fra_x_preferred":["Broadway-Flushing"],"reversegeo:latitude":40.76598,"reversegeo:longitude":-73.803645,"src:geom":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2925858"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2f00a7fe2e3431101bd78f0eaa13de46","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907132685,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907132685,"wof:lastmodified":1566608538,"wof:name":"Broadway-Flushing","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782869],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132687.geojson b/fixtures/microhoods/907132687.geojson new file mode 100644 index 0000000..676e411 --- /dev/null +++ b/fixtures/microhoods/907132687.geojson @@ -0,0 +1 @@ +{"id":907132687,"type":"Feature","bbox":[-73.9142196105729,40.90027946279414,-73.89640900000012,40.91553277700521],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89662684591228,40.91146957665321],[-73.89640900000012,40.90296100000019],[-73.89666700000015,40.90200700000013],[-73.89703342406848,40.90027946279414],[-73.899059,40.90091100000031],[-73.901938,40.90121],[-73.901837,40.90155600000011],[-73.904113,40.901819],[-73.90611,40.90167000000013],[-73.9102,40.9030630000001],[-73.91400800000011,40.90384900000012],[-73.9142196105729,40.90413755987221],[-73.91418416752538,40.90413933380103],[-73.91286540202566,40.90753512220292],[-73.91290342493171,40.9076108425564],[-73.91299834908084,40.90767597498969],[-73.91307611900353,40.90773953074296],[-73.91311160642805,40.90778996026614],[-73.91310863924073,40.90784448415023],[-73.91307809486491,40.90787858721112],[-73.912909610862,40.90794926755085],[-73.91272669647407,40.90799484239437],[-73.91157895749355,40.91213595931993],[-73.9115047539485,40.91216987987964],[-73.91149190703744,40.912233769312],[-73.91153618905388,40.91230206277714],[-73.91143213027867,40.91282382621974],[-73.91155029028242,40.91306981269462],[-73.91165472402228,40.91341785189675],[-73.91149959074832,40.91376658170498],[-73.91113412832104,40.91433060593086],[-73.9109589388785,40.91452884723513],[-73.91066855401334,40.91479942865676],[-73.91045539620558,40.91526468360085],[-73.91033256848922,40.91553277700521],[-73.90851155017609,40.91500226402633],[-73.89662684591228,40.91146957665321]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000189,"geom:area_square_m":1767073.655293,"geom:bbox":"-73.9142196106,40.9002794628,-73.896409,40.915532777","geom:latitude":40.907606,"geom:longitude":-73.904665,"iso:country":"US","lbl:latitude":40.9074,"lbl:longitude":-73.903714,"lbl:max_zoom":18,"mps:latitude":40.907838,"mps:longitude":-73.904838,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":40.907838,"reversegeo:longitude":-73.904838,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85844897,102191575,907157029,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fce2383f762da82933842d39b27f5cef","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157029,"microhood_id":907132687,"neighbourhood_id":85844897,"region_id":85688543}],"wof:id":907132687,"wof:lastmodified":1566608538,"wof:name":"North Riverdale","wof:parent_id":85844897,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892779],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132691.geojson b/fixtures/microhoods/907132691.geojson new file mode 100644 index 0000000..5ea3f88 --- /dev/null +++ b/fixtures/microhoods/907132691.geojson @@ -0,0 +1 @@ +{"id":907132691,"type":"Feature","bbox":[-73.9147368346869,40.88344099825605,-73.90233201013629,40.89112880993179],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90732136961913,40.88454072767051],[-73.90746499940234,40.88443399825623],[-73.91032699940226,40.88344099825605],[-73.9147368346869,40.88457859165872],[-73.91423361882067,40.88495327231038],[-73.91364521560826,40.88539630558262],[-73.91319135946136,40.88577898798403],[-73.91249504342686,40.88650974876706],[-73.9118123509745,40.88741314240617],[-73.91164863406408,40.88762482837076],[-73.91143538492759,40.88783833168414],[-73.91114971505635,40.88803571176438],[-73.91085600057505,40.88821988589797],[-73.9094466627919,40.8889400056303],[-73.90925317475899,40.88906274949764],[-73.90909125656205,40.88918634292885],[-73.90873638180283,40.88953193762107],[-73.90840667183708,40.8900317766006],[-73.90825015231181,40.89044703415315],[-73.9081815126587,40.89070299221545],[-73.9071624793129,40.89095434464069],[-73.90699844634055,40.89098416039547],[-73.90683003769419,40.89097973431563],[-73.90664681906257,40.89094748559084],[-73.9065152310527,40.89090739034607],[-73.90623477044917,40.89078502042855],[-73.90595400429827,40.89062160777103],[-73.90569739094951,40.89040138831726],[-73.90546016091515,40.89017449555064],[-73.90535963920948,40.89011823146738],[-73.90525287394378,40.89008287842242],[-73.90513622699153,40.89006959075321],[-73.9046887892901,40.89008829105326],[-73.90454120243648,40.89011062323003],[-73.90434076367578,40.89017662382949],[-73.90424976654957,40.89022517900413],[-73.90378230744908,40.89060920863003],[-73.90351456016616,40.89088567589378],[-73.90336454607784,40.89098647727663],[-73.90318078511298,40.89107311240267],[-73.9029760720544,40.89111732644725],[-73.90276249026981,40.89112880993179],[-73.90259556619188,40.89109122404343],[-73.90244311848136,40.89103562698928],[-73.9023650619332,40.89096352257915],[-73.90234206161152,40.89092481068226],[-73.90233201013629,40.8908762734463],[-73.90235480611153,40.89078551070722],[-73.90241129744024,40.89069810233634],[-73.90258435394539,40.89048988023447],[-73.90275823020377,40.89028129388423],[-73.90282273835491,40.89018249541036],[-73.90287149260348,40.89006735772545],[-73.90289432169783,40.88993194681034],[-73.90291679068918,40.88973972101329],[-73.90290872863218,40.88947621283707],[-73.90288682938812,40.88927922869638],[-73.90285201318834,40.88916539782734],[-73.90285899910322,40.88916499738441],[-73.90406843951845,40.88719728711659],[-73.90413499910336,40.88708899738442],[-73.90572899910336,40.88572399738428],[-73.90732136961913,40.88454072767051]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000047,"geom:area_square_m":441203.05793,"geom:bbox":"-73.9147368347,40.8834409983,-73.9023320101,40.8911288099","geom:latitude":40.887159,"geom:longitude":-73.908151,"iso:country":"US","lbl:latitude":40.88689,"lbl:longitude":-73.908151,"lbl:max_zoom":18,"mps:latitude":40.88689,"mps:longitude":-73.908151,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":40.88689,"reversegeo:longitude":-73.908151,"src:geom":"mz","wof:belongsto":[85844897,102191575,907157029,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d349db55a9c15cc7b85a57627eb237c1","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157029,"microhood_id":907132691,"neighbourhood_id":85844897,"region_id":85688543}],"wof:id":907132691,"wof:lastmodified":1566608539,"wof:name":"Central Riverdale","wof:parent_id":85844897,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782829],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132693.geojson b/fixtures/microhoods/907132693.geojson new file mode 100644 index 0000000..d72e7cf --- /dev/null +++ b/fixtures/microhoods/907132693.geojson @@ -0,0 +1 @@ +{"id":907132693,"type":"Feature","bbox":[-73.90809821692501,40.88889599738437,-73.89641171505343,40.90121],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89703342406848,40.90027946279414],[-73.89710348085231,40.89875877409325],[-73.896707,40.8958584036411],[-73.89641171505343,40.89381000633664],[-73.89724754895602,40.89172400838495],[-73.89823555670385,40.88952202938314],[-73.89981212889012,40.88967708772844],[-73.90101199910316,40.88889599738437],[-73.90185112889014,40.88922276998967],[-73.90285201318834,40.88916539782734],[-73.90288682938812,40.88927922869638],[-73.90290872863218,40.88947621283707],[-73.90291679068918,40.88973972101329],[-73.90289432169783,40.88993194681034],[-73.90287149260348,40.89006735772545],[-73.90282273835491,40.89018249541036],[-73.90275823020377,40.89028129388423],[-73.90258435394539,40.89048988023447],[-73.90241129744024,40.89069810233634],[-73.90235480611153,40.89078551070722],[-73.90233201013629,40.8908762734463],[-73.90234206161152,40.89092481068226],[-73.9023650619332,40.89096352257915],[-73.90244311848136,40.89103562698928],[-73.90259556619188,40.89109122404343],[-73.90276249026981,40.89112880993179],[-73.9029760720544,40.89111732644725],[-73.90318078511298,40.89107311240267],[-73.90336454607784,40.89098647727663],[-73.90351456016616,40.89088567589378],[-73.90378230744908,40.89060920863003],[-73.90424976654957,40.89022517900413],[-73.90434076367578,40.89017662382949],[-73.90454120243648,40.89011062323003],[-73.9046887892901,40.89008829105326],[-73.90513622699153,40.89006959075321],[-73.90525287394378,40.89008287842242],[-73.90535963920948,40.89011823146738],[-73.90546016091515,40.89017449555064],[-73.90569739094951,40.89040138831726],[-73.90595400429827,40.89062160777103],[-73.90623477044917,40.89078502042855],[-73.9065152310527,40.89090739034607],[-73.90664681906257,40.89094748559084],[-73.90683003769419,40.89097973431563],[-73.90699844634055,40.89098416039547],[-73.9071624793129,40.89095434464069],[-73.90809821692501,40.89072353774986],[-73.90805377872057,40.89363904324254],[-73.90793930731648,40.89767503098074],[-73.90725696170588,40.8993894007568],[-73.905733,40.90045],[-73.90416,40.901109],[-73.901938,40.90121],[-73.899059,40.90091100000031],[-73.89703342406848,40.90027946279414]],[[-73.90506900585885,40.89873718787991],[-73.90511191203667,40.89878948306503],[-73.90397193973747,40.89921297223505],[-73.9042128127549,40.89978189488668],[-73.90419209370296,40.89980729489328],[-73.90414883075425,40.89982740889072],[-73.9040932826894,40.89984568702717],[-73.9033880258306,40.89995186474251],[-73.90331083276227,40.89995058687317],[-73.90324052308807,40.89993926011393],[-73.90317000498382,40.89991154466131],[-73.90310400509767,40.89987990932963],[-73.90212975433002,40.89927649068991],[-73.90188758618106,40.89909371347061],[-73.90170616873588,40.8989114738673],[-73.9016376895571,40.89877589854058],[-73.90158181298244,40.89860089816494],[-73.90156199995586,40.898478815522],[-73.90157025850543,40.89834794324586],[-73.9016473353458,40.89817696820612],[-73.90174369558255,40.89805060546151],[-73.90188239402377,40.89793221844344],[-73.90207009039138,40.89780205352549],[-73.9022759256471,40.89768731696737],[-73.90273150260153,40.89744497665609],[-73.90290401663631,40.89765699436779],[-73.90320806517995,40.89751688436601],[-73.90334826274562,40.89769450219168],[-73.90396596164278,40.89740820261571],[-73.90405459394013,40.89751061480752],[-73.90456853690115,40.89727430039203],[-73.90471713141253,40.8974705283166],[-73.90507220936401,40.89797833810844],[-73.90511576473256,40.89806019211051],[-73.90511430545425,40.89813473130874],[-73.90508702157263,40.89824529795075],[-73.90505378501403,40.89837533890997],[-73.90501068654513,40.89848104312219],[-73.90499975530264,40.89854710321903],[-73.90500222946744,40.89860004445565],[-73.90501805430291,40.89866587412098],[-73.90506900585885,40.89873718787991]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000111,"geom:area_square_m":1035087.63823,"geom:bbox":"-73.9080982169,40.8888959974,-73.8964117151,40.90121","geom:latitude":40.895169,"geom:longitude":-73.90218,"iso:country":"US","lbl:latitude":40.894468,"lbl:longitude":-73.904104,"lbl:max_zoom":18,"mps:latitude":40.894295,"mps:longitude":-73.900694,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Fieldston"],"name:eng_x_variant":["Fildston"],"name:und_x_variant":["Delafield Woods"],"reversegeo:latitude":40.894295,"reversegeo:longitude":-73.900694,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85844897,102191575,907157029,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f4d00d8d929efbc140036ca5fd7dee91","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157029,"microhood_id":907132693,"neighbourhood_id":85844897,"region_id":85688543}],"wof:id":907132693,"wof:lastmodified":1566608538,"wof:name":"Fieldston","wof:parent_id":85844897,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869237,85865675],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132695.geojson b/fixtures/microhoods/907132695.geojson new file mode 100644 index 0000000..747cc45 --- /dev/null +++ b/fixtures/microhoods/907132695.geojson @@ -0,0 +1 @@ +{"id":907132695,"type":"Feature","bbox":[-73.98201750708007,40.75632904542802,-73.97832850433055,40.7583386333706],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98154732108189,40.7583386333706],[-73.97832850433055,40.75697231060568],[-73.9788071954785,40.75632904542802],[-73.98201750708007,40.75769507666251],[-73.98154732108189,40.7583386333706]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":25443.402314,"geom:bbox":"-73.9820175071,40.7563290454,-73.9783285043,40.7583386334","geom:latitude":40.757333,"geom:longitude":-73.980174,"iso:country":"US","lbl:latitude":40.757333,"lbl:longitude":-73.980174,"lbl:max_zoom":18,"mps:latitude":40.757333,"mps:longitude":-73.980174,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["Diamond District"],"name:fra_x_preferred":["Diamond District"],"name:heb_x_preferred":["רובע היהלומים"],"name:por_x_preferred":["Diamond District"],"name:ron_x_preferred":["Diamond District"],"reversegeo:latitude":40.757333,"reversegeo:longitude":-73.980174,"src:geom":"mz","wof:belongsto":[85882233,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"35d760fadad435c9c0f48db2d0345f75","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907132695,"neighbourhood_id":85882233,"region_id":85688543}],"wof:id":907132695,"wof:lastmodified":1566608538,"wof:name":"Diamond District","wof:parent_id":85882233,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782821],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132697.geojson b/fixtures/microhoods/907132697.geojson new file mode 100644 index 0000000..b815f66 --- /dev/null +++ b/fixtures/microhoods/907132697.geojson @@ -0,0 +1 @@ +{"id":907132697,"type":"Feature","bbox":[-73.83559052249721,40.75096821168336,-73.82191139677495,40.76388017512392],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.83226276717475,40.7514580072323],[-73.83065819121768,40.75206529495692],[-73.82928044234204,40.75151931738338],[-73.8286909167885,40.75129081356702],[-73.82846506684893,40.7512073252561],[-73.82834851950605,40.75118021842754],[-73.828226323185,40.75118069215428],[-73.82809166468988,40.75120873609821],[-73.82796132735463,40.75125435171926],[-73.82638626635257,40.75184010584397],[-73.82608548073861,40.75151651262313],[-73.82588292036512,40.75122691482893],[-73.82575596177267,40.75096821168336],[-73.82543282242575,40.75114091790883],[-73.82453028869601,40.7516650207631],[-73.82191139677495,40.75315178336889],[-73.82542150815573,40.75605925269787],[-73.82578466285669,40.75635056947156],[-73.82609233691481,40.75653871968062],[-73.82710151144015,40.75713675579737],[-73.8251967477526,40.75765285815434],[-73.82557817575533,40.75848997401634],[-73.82576396467663,40.75889772292805],[-73.82618684325365,40.75976440529815],[-73.82821800414835,40.76388017512392],[-73.83135247010006,40.76304044310682],[-73.83199622145781,40.76292258658353],[-73.83257470756045,40.76285001607076],[-73.83313428006984,40.76277790020225],[-73.83333392610835,40.76276477101973],[-73.8335991866563,40.76276351188412],[-73.83405609659472,40.76277137512687],[-73.83461324516269,40.76278637380747],[-73.83510761041599,40.76279792558182],[-73.83559052249721,40.76280837058697],[-73.83228549411679,40.75192317463015],[-73.83226276717475,40.7514580072323]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.0001,"geom:area_square_m":934503.600561,"geom:bbox":"-73.8355905225,40.7509682117,-73.8219113968,40.7638801751","geom:latitude":40.757158,"geom:longitude":-73.829439,"iso:country":"US","lbl:latitude":40.758567,"lbl:longitude":-73.830476,"lbl:max_zoom":18,"mps:latitude":40.758567,"mps:longitude":-73.830476,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ara_x_preferred":["الحي الصيني"],"name:ast_x_preferred":["Barriu chinu"],"name:aze_x_preferred":["Çin qəsəbəsi"],"name:cat_x_preferred":["Barri xinès"],"name:cdo_x_preferred":["Dòng-ìng-gă̤"],"name:dan_x_preferred":["Chinatown"],"name:deu_x_preferred":["Chinatown"],"name:eng_x_variant":["Chinatown Flushing","Mandarin Town Flushing"],"name:est_x_preferred":["Hiinalinn"],"name:eus_x_preferred":["Chinatown"],"name:fas_x_preferred":["محله چینی‌ها"],"name:fin_x_preferred":["Chinatown"],"name:fra_x_preferred":["Quartier chinois"],"name:fry_x_preferred":["Chinatown"],"name:heb_x_preferred":["צ'יינטאון"],"name:hun_x_preferred":["Kínai negyed"],"name:ind_x_preferred":["Pecinan"],"name:isl_x_preferred":["Kínahverfi"],"name:ita_x_preferred":["Chinatown"],"name:jpn_x_preferred":["中華街"],"name:kaz_x_preferred":["Чайнатаун"],"name:kor_x_preferred":["차이나타운"],"name:lit_x_preferred":["Kinų kvartalas"],"name:msa_x_preferred":["Pekan Cina"],"name:nld_x_preferred":["Chinatown"],"name:nno_x_preferred":["Chinatown"],"name:nor_x_preferred":["Chinatown"],"name:pol_x_preferred":["Chinatown"],"name:por_x_preferred":["Chinatown"],"name:ron_x_preferred":["Chinatown"],"name:rus_x_preferred":["Китайский квартал"],"name:sah_x_preferred":["Чайнатаун"],"name:sco_x_preferred":["Chinatown"],"name:spa_x_preferred":["Barrio chino"],"name:swe_x_preferred":["Chinatown"],"name:tam_x_preferred":["சீன நகர்"],"name:tgl_x_preferred":["China Town"],"name:tur_x_preferred":["Çin mahallesi"],"name:ukr_x_preferred":["Китайський квартал"],"name:zho_x_preferred":["唐人街"],"reversegeo:latitude":40.758567,"reversegeo:longitude":-73.830476,"src:geom":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8c9ebbd97a9119d6795c32aefa4e2fd0","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907132697,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907132697,"wof:lastmodified":1566608539,"wof:name":"Chinatown","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782865],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132699.geojson b/fixtures/microhoods/907132699.geojson new file mode 100644 index 0000000..cb1179a --- /dev/null +++ b/fixtures/microhoods/907132699.geojson @@ -0,0 +1 @@ +{"id":907132699,"type":"Feature","bbox":[-73.84487526265343,40.71043870489532,-73.83432367678449,40.71926688256203],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.83975796264532,40.71043870489532],[-73.84004389025188,40.71107107362473],[-73.84019593987331,40.71135738781375],[-73.84056988121958,40.71189675743746],[-73.84068103204983,40.71204325951812],[-73.8408363484513,40.71219973844555],[-73.84127115509563,40.71258193136796],[-73.8418699312751,40.71295625230098],[-73.84271681106222,40.71333178432693],[-73.8435098384791,40.713671831935],[-73.84413831865655,40.714021516976],[-73.84443454202827,40.71425259035107],[-73.84451406848021,40.71433019076346],[-73.8445751783313,40.71440155539742],[-73.84466822337777,40.714541223151],[-73.8447467676622,40.71468699932367],[-73.844790668924,40.7147990299212],[-73.84482921641106,40.71490224911192],[-73.84486354820928,40.71504400659383],[-73.8448740777526,40.71518470560699],[-73.84484690603868,40.71535947073058],[-73.844778932868,40.71560877542026],[-73.84471853458899,40.71576786765709],[-73.84466162107273,40.71591534018114],[-73.84450959652904,40.71619249607065],[-73.84442377067688,40.71631093570804],[-73.84439324591477,40.71636948114577],[-73.84431905826338,40.71666731166889],[-73.84425784617186,40.71703611545536],[-73.84427724796849,40.71728419467676],[-73.84433728463404,40.71757084547652],[-73.84443427021587,40.71784119769252],[-73.8445699563999,40.71825202506245],[-73.84460041095902,40.71834357001304],[-73.84464657480002,40.71855176616191],[-73.84471116110666,40.71880114765012],[-73.84477613341639,40.71895451420031],[-73.84487526265343,40.71912983521276],[-73.84480483465248,40.71925448464028],[-73.84475636649053,40.71926688256203],[-73.84470958922445,40.71926520699968],[-73.84464791490147,40.7192492687837],[-73.84458107864613,40.71922641505726],[-73.843598216582,40.71883722888764],[-73.84282956380956,40.71852173034281],[-73.84223727618983,40.71825483516707],[-73.84101094804079,40.71764720549783],[-73.84051263847479,40.71737711454139],[-73.83914992565799,40.71655617794351],[-73.8378600541896,40.71566830431491],[-73.83709255459867,40.7150446098423],[-73.83432367678449,40.71262726438043],[-73.83599419300454,40.71172745243552],[-73.83611231103399,40.71182793782895],[-73.83685386092385,40.71138030971801],[-73.83804315522086,40.71092665675919],[-73.83975796264532,40.71043870489532]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000045,"geom:area_square_m":417640.695315,"geom:bbox":"-73.8448752627,40.7104387049,-73.8343236768,40.7192668826","geom:latitude":40.714552,"geom:longitude":-73.840292,"iso:country":"US","lbl:latitude":40.714404,"lbl:longitude":-73.839931,"lbl:max_zoom":18,"mps:latitude":40.714404,"mps:longitude":-73.839931,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["Forest Hills Gardens"],"name:eng_x_preferred":["Forest Hills Gardens"],"name:fra_x_preferred":["Forest Hills Gardens"],"name:nld_x_preferred":["Forest Hills Gardens"],"name:spa_x_preferred":["Forest Hills Gardens"],"name:urd_x_preferred":["فورسٹ ہلز گارڈنز، کوئینز"],"name:urd_x_variant":["فورسٹ ہلز گارڈنز"],"name:zho_x_preferred":["森林小丘社區"],"reversegeo:latitude":40.714404,"reversegeo:longitude":-73.839931,"src:geom":"mz","wof:belongsto":[85819875,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1018954"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"afc44c659be655f179c3ee9c57067f95","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907132699,"neighbourhood_id":85819875,"region_id":85688543}],"wof:id":907132699,"wof:lastmodified":1566608538,"wof:name":"Forest Hills Gardens","wof:parent_id":85819875,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782893],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907132701.geojson b/fixtures/microhoods/907132701.geojson new file mode 100644 index 0000000..71ef87f --- /dev/null +++ b/fixtures/microhoods/907132701.geojson @@ -0,0 +1 @@ +{"id":907132701,"type":"Feature","bbox":[-73.85940991782047,40.80445789246741,-73.85415255913023,40.81142245256327],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.85895141221795,40.81027141758673],[-73.85910123068632,40.8110497633062],[-73.85615273164933,40.81142245256327],[-73.85561283723514,40.81065524835865],[-73.85557858545775,40.81057821255293],[-73.85554822064826,40.81048001701816],[-73.85551942583565,40.8103725661781],[-73.85487784912324,40.80745529691521],[-73.8547766252208,40.80715426425432],[-73.85464463750432,40.806687805158],[-73.85457312786848,40.80636273303956],[-73.85415255913023,40.80445789246741],[-73.855388793112,40.80446442729437],[-73.85560958798064,40.80447020557576],[-73.8558544633539,40.80451464613952],[-73.85605162933267,40.80458742968966],[-73.85662613767605,40.80483030421996],[-73.85661813436337,40.80486557116396],[-73.85657780148343,40.80493285194238],[-73.85649692048497,40.8049490132687],[-73.85639785205908,40.80494683571354],[-73.85580840784402,40.80467915750708],[-73.8556904709827,40.80467656607824],[-73.85561389737951,40.80470358427552],[-73.8555635843383,40.80478499633253],[-73.85560497039732,40.8050621570351],[-73.85589835705079,40.80516906078401],[-73.85612542563223,40.8052816817535],[-73.85630011224414,40.80528193146552],[-73.85638598293629,40.80525870442909],[-73.85652361926944,40.80523993225998],[-73.85687753955635,40.80529359302348],[-73.85694865178853,40.80527461477431],[-73.85704443304995,40.80529518503101],[-73.85712145614185,40.80533047515874],[-73.85720240525754,40.80532586934806],[-73.85724491988472,40.80530723861875],[-73.8572196386454,40.8052387180967],[-73.85712793760422,40.8051854945613],[-73.85692623129673,40.80511549422761],[-73.8566757965829,40.80499537082351],[-73.85667488240547,40.8049519107047],[-73.8568342102435,40.80490927121802],[-73.85763302681652,40.80526239438728],[-73.85812705699666,40.80546652055186],[-73.85873606356645,40.80579410683734],[-73.85889037502282,40.8058894911778],[-73.85891121201276,40.80591275573492],[-73.85891177250495,40.80595412602398],[-73.8588720650425,40.80597968963234],[-73.85882643239111,40.80599319272257],[-73.8587828442472,40.80597807348772],[-73.8587472261362,40.80594488505039],[-73.85870561157668,40.80593428886375],[-73.85862247210316,40.80587090993274],[-73.85857294496424,40.8058512633453],[-73.85850560039157,40.80581954279276],[-73.8584558076315,40.80592494177482],[-73.8584438535961,40.80595204619492],[-73.85841209142353,40.80597008614135],[-73.85831487706882,40.80599859201727],[-73.85831274962035,40.80606638471763],[-73.85838196938259,40.80614933143647],[-73.85838583154188,40.80619754682924],[-73.85839959570859,40.80625180008718],[-73.85839336577081,40.80638437096099],[-73.85839331448696,40.80640847622133],[-73.85846091890531,40.80640804326605],[-73.85850311702904,40.80642426976239],[-73.85851230178717,40.80648936177219],[-73.85850533176831,40.80654401390629],[-73.85851704174496,40.80663788375714],[-73.85861191901107,40.80669751353776],[-73.85880946373938,40.80669843629848],[-73.85893471726445,40.80667435866596],[-73.85901926254431,40.80660675020764],[-73.85908475852688,40.80648021816353],[-73.85909209311879,40.80644527138677],[-73.85908344078167,40.80640897827178],[-73.85905716576792,40.80636617503826],[-73.85904704593524,40.80634323705253],[-73.85900263278417,40.8062928076731],[-73.85897431305875,40.80623623656643],[-73.8589580820161,40.8061827082551],[-73.85889742868723,40.8060756889904],[-73.85885706633594,40.8060359639903],[-73.85885297633476,40.80600843045449],[-73.85887709403204,40.80598850810082],[-73.8589092914092,40.80598081606929],[-73.85893141325231,40.80596854564148],[-73.85897232007956,40.80596606723786],[-73.8591273340373,40.80615718170313],[-73.8591954502449,40.80626987782976],[-73.85925939022816,40.8064115816122],[-73.8593660233233,40.80667568320786],[-73.85940991782047,40.80732012080972],[-73.85940191920211,40.80752959133731],[-73.85937656357407,40.8075682956752],[-73.85931295377836,40.80757160173403],[-73.85925775276093,40.80754267300781],[-73.85925309049085,40.80735899842601],[-73.85922737652773,40.80724302374522],[-73.85922265247635,40.80703357001644],[-73.85920549594738,40.80694980690166],[-73.85915868148831,40.80687897464914],[-73.85908225488018,40.80684040682205],[-73.85882779743032,40.80684074432751],[-73.85866505169217,40.80683275149566],[-73.85866500000019,40.80683300000016],[-73.85838996228829,40.80825880914895],[-73.85877452654438,40.8092339756382],[-73.85895141221795,40.81027141758673]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":218171.569136,"geom:bbox":"-73.8594099178,40.8044578925,-73.8541525591,40.8114224526","geom:latitude":40.807929,"geom:longitude":-73.856762,"iso:country":"US","lbl:latitude":40.80786,"lbl:longitude":-73.856712,"lbl:max_zoom":18,"mps:latitude":40.80786,"mps:longitude":-73.856712,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ceb_x_preferred":["Harding Park"],"name:eng_x_preferred":["Harding Park"],"name:eng_x_variant":["Little Puerto Rico"],"name:fra_x_preferred":["Harding Park"],"name:jpn_x_preferred":["ハーディング・パーク"],"reversegeo:latitude":40.80786,"reversegeo:longitude":-73.856712,"src:geom":"mz","wof:belongsto":[85865667,102191575,907157031,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q15223005"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e1778a47cad9d9eafb40fb41e8cb51fc","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157031,"microhood_id":907132701,"neighbourhood_id":85865667,"region_id":85688543}],"wof:id":907132701,"wof:lastmodified":1566608537,"wof:name":"Harding Park","wof:parent_id":85865667,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782845],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907136929.geojson b/fixtures/microhoods/907136929.geojson new file mode 100644 index 0000000..4760cef --- /dev/null +++ b/fixtures/microhoods/907136929.geojson @@ -0,0 +1 @@ +{"id":907136929,"type":"Feature","bbox":[-73.91792720864798,40.8920085375681,-73.901837,40.90413755987221],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9142196105729,40.90413755987221],[-73.91400800000011,40.90384900000012],[-73.9102,40.9030630000001],[-73.90611,40.90167000000013],[-73.904113,40.901819],[-73.901837,40.90155600000011],[-73.901938,40.90121],[-73.90416,40.901109],[-73.905733,40.90045],[-73.90725696170588,40.8993894007568],[-73.90793930731648,40.89767503098074],[-73.90805377872057,40.89363904324254],[-73.90805475495816,40.89357499416372],[-73.90848679429811,40.89356692006514],[-73.90860284351717,40.8934894104431],[-73.90873716637566,40.89336934122196],[-73.90880883221769,40.89324591792188],[-73.9089196586201,40.893141615613],[-73.90904830107166,40.89303675254703],[-73.9091836586675,40.89293548724447],[-73.9093877916385,40.89281772277649],[-73.90961598134572,40.89271659976741],[-73.9098728471038,40.89261405579317],[-73.91024842214284,40.89253532019028],[-73.91064439518878,40.89245396656082],[-73.9110194118942,40.89237546654576],[-73.91141705811341,40.89229317205378],[-73.91170377329358,40.89222968403284],[-73.91201276735796,40.89217252381253],[-73.912255387565,40.89212920091229],[-73.91248502049967,40.89207185564489],[-73.9126753958885,40.89203947056753],[-73.91289989482074,40.8920085375681],[-73.9130973393607,40.89200969247108],[-73.91328656039292,40.89201839206064],[-73.91347492553835,40.89209656899948],[-73.91358218204083,40.89216426429877],[-73.91369813730041,40.89225497534395],[-73.9137845150671,40.89239666755218],[-73.91385567019273,40.89253494400795],[-73.91391614562359,40.89267220445607],[-73.91396427871537,40.89279755244689],[-73.91403175227707,40.89288583201567],[-73.91411661605237,40.89297707588815],[-73.9142146865051,40.89305665532405],[-73.91439470888783,40.89315659796015],[-73.91453417830661,40.89324445569066],[-73.91462919103067,40.89331685947818],[-73.91469947620793,40.89338571884479],[-73.91475630154925,40.89346687197649],[-73.91481155892798,40.89353953322619],[-73.91491556829557,40.89363929999217],[-73.91499922501842,40.89369253984733],[-73.91509826210978,40.8937084351989],[-73.91792720864798,40.89414553598667],[-73.9178221825785,40.89442228808409],[-73.91790870107327,40.8946767664001],[-73.91763488207495,40.89494190535223],[-73.91694161078408,40.89664455170245],[-73.91527661149436,40.90132548804223],[-73.91518455871687,40.90158428286221],[-73.91543172958437,40.90181268368846],[-73.91501449586053,40.90308129910651],[-73.91484188520064,40.90350364564657],[-73.91459039243323,40.90411900219637],[-73.91429080087588,40.90409320746257],[-73.9142196105729,40.90413755987221]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000095,"geom:area_square_m":890002.280106,"geom:bbox":"-73.9179272086,40.8920085376,-73.901837,40.9041375599","geom:latitude":40.898057,"geom:longitude":-73.9117,"iso:country":"US","lbl:latitude":40.897077,"lbl:longitude":-73.912249,"lbl:max_zoom":18,"mps:latitude":40.897077,"mps:longitude":-73.912249,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_variant":["Riverdale Estates"],"reversegeo:latitude":40.897077,"reversegeo:longitude":-73.912249,"src:geom":"mz","wof:belongsto":[85844897,102191575,907157029,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"447f2b2cd93fb47918d017484f6867a3","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157029,"microhood_id":907136929,"neighbourhood_id":85844897,"region_id":85688543}],"wof:id":907136929,"wof:lastmodified":1566608554,"wof:name":"Hudson Hill","wof:parent_id":85844897,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782831],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907138579.geojson b/fixtures/microhoods/907138579.geojson new file mode 100644 index 0000000..0093bf3 --- /dev/null +++ b/fixtures/microhoods/907138579.geojson @@ -0,0 +1 @@ +{"id":907138579,"type":"Feature","bbox":[-74.00741362036908,40.75204511506378,-73.99914671384737,40.75711779172578],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.00100748759573,40.75204511506378],[-74.00729966623709,40.75471526609864],[-74.00728499944334,40.75473556820315],[-74.00741362036908,40.75478930266944],[-74.0072718117477,40.75498559453523],[-74.0071446836099,40.75493248117352],[-74.00639424460421,40.75597200955227],[-74.00556710062965,40.75711779172578],[-74.00492700000017,40.75702300000019],[-73.99914671384737,40.75458592918759],[-74.00100748759573,40.75204511506378]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":195995.156581,"geom:bbox":"-74.0074136204,40.7520451151,-73.9991467138,40.7571177917","geom:latitude":40.754644,"geom:longitude":-74.00323,"iso:country":"US","lbl:latitude":40.754648,"lbl:longitude":-74.00323,"lbl:max_zoom":18,"mps:latitude":40.754648,"mps:longitude":-74.00323,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["Hudson Yards"],"name:eng_x_preferred":["Hudson Yards"],"name:fas_x_preferred":["هادسن یاردز"],"name:fra_x_preferred":["Hudson Yards"],"name:ita_x_preferred":["Hudson Yards"],"name:jpn_x_preferred":["ハドソン・ヤード"],"name:kor_x_preferred":["허드슨 야드"],"name:por_x_preferred":["Hudson Yards"],"name:rus_x_preferred":["Хадсон-Ярдс"],"name:spa_x_preferred":["Hudson Yards"],"name:zho_x_preferred":["哈德遜機廠重發展計畫"],"reversegeo:latitude":40.754648,"reversegeo:longitude":-74.00323,"src:geom":"mz","wof:belongsto":[85810589,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1633867"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"15dd789409f720a5be3e23c6663b830c","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907138579,"neighbourhood_id":85810589,"region_id":85688543}],"wof:id":907138579,"wof:lastmodified":1566608554,"wof:name":"Hudson Yards","wof:parent_id":85810589,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782819],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907139469.geojson b/fixtures/microhoods/907139469.geojson new file mode 100644 index 0000000..fac0449 --- /dev/null +++ b/fixtures/microhoods/907139469.geojson @@ -0,0 +1 @@ +{"id":907139469,"type":"Feature","bbox":[-73.95724337764419,40.80143446775658,-73.94933780460678,40.80566514394007],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.95027192567854,40.80143446775658],[-73.95724337764419,40.8043734413831],[-73.95629959763953,40.80566514394007],[-73.94933780460678,40.80272849905216],[-73.95027192567854,40.80143446775658]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000012,"geom:area_square_m":110122.62702,"geom:bbox":"-73.9572433776,40.8014344678,-73.9493378046,40.8056651439","geom:latitude":40.803551,"geom:longitude":-73.953289,"iso:country":"US","lbl:latitude":40.803551,"lbl:longitude":-73.95329,"lbl:max_zoom":18,"mps:latitude":40.803551,"mps:longitude":-73.95329,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:deu_x_preferred":["Le Petit Senegal"],"name:eng_x_preferred":["Le Petit Senegal"],"name:eng_x_variant":["Little Senegal"],"name:fra_x_preferred":["Le Petit Senegal"],"name:ind_x_preferred":["Le Petit Senegal"],"name:jpn_x_preferred":["プチ・セネガル"],"name:por_x_preferred":["Le Petit Senegal"],"reversegeo:latitude":40.803551,"reversegeo:longitude":-73.95329,"src:geom":"mz","wof:belongsto":[85865555,102191575,907216433,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q14706778"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"af248b087e3f5edd3601dfeecda76fab","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907216433,"microhood_id":907139469,"neighbourhood_id":85865555,"region_id":85688543}],"wof:id":907139469,"wof:lastmodified":1566608555,"wof:name":"Le Petit Senegal","wof:parent_id":85865555,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782825],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907140815.geojson b/fixtures/microhoods/907140815.geojson new file mode 100644 index 0000000..2f3b529 --- /dev/null +++ b/fixtures/microhoods/907140815.geojson @@ -0,0 +1 @@ +{"id":907140815,"type":"Feature","bbox":[-73.82821800414835,40.75765285815434,-73.80982576352218,40.76658858574813],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.82557817575533,40.75848997401634],[-73.8251967477526,40.75765285815434],[-73.8231542063608,40.75815560659947],[-73.82068907254576,40.7588401070978],[-73.81099417407475,40.76134894525288],[-73.81005870085558,40.76437475894094],[-73.80982576352218,40.76603407403022],[-73.81743962656972,40.76658858574813],[-73.82510378395146,40.76572775934122],[-73.82794461588107,40.76538899239251],[-73.82821800414835,40.76388017512392],[-73.82618684325365,40.75976440529815],[-73.82576396467663,40.75889772292805],[-73.82557817575533,40.75848997401634]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000113,"geom:area_square_m":1058746.592388,"geom:bbox":"-73.8282180041,40.7576528582,-73.8098257635,40.7665885857","geom:latitude":40.76284,"geom:longitude":-73.819392,"iso:country":"US","lbl:latitude":40.762773,"lbl:longitude":-73.819392,"lbl:max_zoom":18,"mps:latitude":40.762773,"mps:longitude":-73.819392,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ara_x_preferred":["كوريا تاون"],"name:deu_x_preferred":["Koreatown"],"name:eng_x_variant":["Long Island Koreatown","Koreatown Flushing"],"name:jpn_x_preferred":["コリア・タウン"],"name:kor_x_preferred":["코리아타운"],"name:pol_x_preferred":["Koreatown"],"name:tha_x_preferred":["โคเรียทาวน์"],"name:zho_x_preferred":["韓國街"],"reversegeo:latitude":40.762773,"reversegeo:longitude":-73.819392,"src:geom":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cff08576f205e2864e309122f42e8da4","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907140815,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907140815,"wof:lastmodified":1566608568,"wof:name":"Koreatown","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782867],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907157035.geojson b/fixtures/microhoods/907157035.geojson new file mode 100644 index 0000000..2fd4759 --- /dev/null +++ b/fixtures/microhoods/907157035.geojson @@ -0,0 +1 @@ +{"id":907157035,"type":"Feature","bbox":[-73.97139715469166,40.64374913180258,-73.96176,40.65487100000018],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9643751349347,40.64594322683745],[-73.96447929462002,40.64556936901425],[-73.96453122635482,40.6451111795561],[-73.96453420767715,40.64436545113236],[-73.97010500047394,40.64374913180258],[-73.97139715469166,40.64820041078283],[-73.964599564545,40.65085518238709],[-73.9661694721368,40.65319182361121],[-73.96190000000018,40.65487100000018],[-73.96176,40.65407100000016],[-73.9643751349347,40.64594322683745]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":473210.28206,"geom:bbox":"-73.9713971547,40.6437491318,-73.96176,40.654871","geom:latitude":40.648355,"geom:longitude":-73.966373,"iso:country":"US","lbl:latitude":40.646632,"lbl:longitude":-73.965013,"lbl:max_zoom":18,"mps:latitude":40.647043,"mps:longitude":-73.966848,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Prospect Park Sout"],"name:eng_x_variant":["Prospect Park South"],"name:fra_x_preferred":["Prospect Park South"],"name:jpn_x_preferred":["プロスペクト・パーク・サウス"],"reversegeo:latitude":40.647043,"reversegeo:longitude":-73.966848,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869833,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7250806"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1dbeebd7e7f4e500e687c4ff8132827d","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907157035,"neighbourhood_id":85869833,"region_id":85688543}],"wof:id":907157035,"wof:lastmodified":1566608541,"wof:name":"Prospect Park South","wof:parent_id":85869833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865585,85869607],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907157037.geojson b/fixtures/microhoods/907157037.geojson new file mode 100644 index 0000000..07d04a5 --- /dev/null +++ b/fixtures/microhoods/907157037.geojson @@ -0,0 +1 @@ +{"id":907157037,"type":"Feature","bbox":[-73.97998296156874,40.73214524398909,-73.97363331401385,40.73685463083869],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.97363331401385,40.73214524398909],[-73.97998296156874,40.73483763223457],[-73.97852745096854,40.73685463083869],[-73.97852665982734,40.73685429290821],[-73.97490700000019,40.73531257232341],[-73.97464800000016,40.73508157232366],[-73.97437768139221,40.73507968198351],[-73.97437804208253,40.7350811121824],[-73.97437768139221,40.73508110966015],[-73.97395905029718,40.73342116553862],[-73.97394321924939,40.73340308886323],[-73.97390702695189,40.73334971660822],[-73.973866318656,40.73331097608678],[-73.97384483854887,40.73326536111374],[-73.97386520802414,40.73324642803962],[-73.97385730036505,40.73321630363873],[-73.97384145962664,40.73321974036562],[-73.97384937381277,40.73323265510626],[-73.97383126846692,40.73324556510911],[-73.97380976846563,40.73324899937294],[-73.97378375783403,40.73322748070547],[-73.97380298847436,40.73321198753979],[-73.97378376867154,40.73319993482695],[-73.9737645264947,40.73321284338785],[-73.9737271870777,40.73321971435088],[-73.97368984982587,40.73321885110602],[-73.97367627576068,40.73320593388798],[-73.97369212859827,40.73317409574745],[-73.97373739762324,40.73314311937235],[-73.97381887171848,40.73309924765456],[-73.97387206174018,40.7330949548066],[-73.97386810776209,40.73306568719559],[-73.97365868442448,40.73224470158658],[-73.97363331401385,40.73214524398909]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":129306.439111,"geom:bbox":"-73.9799829616,40.732145244,-73.973633314,40.7368546308","geom:latitude":40.734641,"geom:longitude":-73.976644,"iso:country":"US","lbl:latitude":40.734717,"lbl:longitude":-73.976598,"lbl:max_zoom":18,"mps:latitude":40.734717,"mps:longitude":-73.976598,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ast_x_preferred":["Stuyvesant Town"],"name:deu_x_preferred":["Stuyvesant Town–Peter Cooper Village"],"name:eng_x_preferred":["Stuyvesant Town—Peter Cooper Village"],"name:eng_x_variant":["Stuyvesant Town–Peter Cooper Village"],"name:fra_x_preferred":["Stuyvesant Town"],"name:ind_x_preferred":["Stuyvesant Town—Peter Cooper Village"],"name:ita_x_preferred":["Stuyvesant Town-Peter Cooper Village"],"name:jpn_x_preferred":["ストイフェサント・タウン"],"name:nld_x_preferred":["Stuyvesant Town—Peter Cooper Village"],"name:pol_x_preferred":["Stuyvesant Town-Peter Cooper Village"],"name:por_x_preferred":["Stuyvesant Town"],"name:rus_x_preferred":["Стайвесант-таун–Питер-Купер-Виллидж"],"name:spa_x_preferred":["Stuyvesant Town"],"name:zho_x_preferred":["史岱文森镇"],"reversegeo:latitude":40.734717,"reversegeo:longitude":-73.976598,"src:geom":"mz","wof:belongsto":[85851295,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1588578"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c8d3ffbc6c8a8bdcbaf929cbe162ebe2","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907157037,"neighbourhood_id":85851295,"region_id":85688543}],"wof:id":907157037,"wof:lastmodified":1566608539,"wof:name":"Peter Cooper Village","wof:parent_id":85851295,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782817],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907157039.geojson b/fixtures/microhoods/907157039.geojson new file mode 100644 index 0000000..aaffe65 --- /dev/null +++ b/fixtures/microhoods/907157039.geojson @@ -0,0 +1 @@ +{"id":907157039,"type":"Feature","bbox":[-73.8231542063608,40.7538763131276,-73.81570116085783,40.7588401070978],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.8231542063608,40.75815560659947],[-73.82068907254576,40.7588401070978],[-73.81570116085783,40.7556241480837],[-73.81839484959767,40.7538763131276],[-73.8231542063608,40.75815560659947]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":146060.47962,"geom:bbox":"-73.8231542064,40.7538763131,-73.8157011609,40.7588401071","geom:latitude":40.756487,"geom:longitude":-73.819362,"iso:country":"US","lbl:latitude":40.756491,"lbl:longitude":-73.819305,"lbl:max_zoom":18,"mps:latitude":40.756491,"mps:longitude":-73.819305,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Waldheim"],"name:ces_x_preferred":["Waldheim"],"name:deu_x_preferred":["Waldheim"],"name:fra_x_preferred":["Waldheim"],"name:heb_x_preferred":["ולדהיים"],"name:nld_x_preferred":["Waldheim"],"name:pol_x_preferred":["Waldheim"],"name:rus_x_preferred":["Вальдхайм"],"name:tur_x_preferred":["Waldheim"],"reversegeo:latitude":40.756491,"reversegeo:longitude":-73.819305,"src:geom":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"432e438a2117800b476448bdb76228bc","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907157039,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907157039,"wof:lastmodified":1566608540,"wof:name":"Waldheim","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782871],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907157041.geojson b/fixtures/microhoods/907157041.geojson new file mode 100644 index 0000000..c314413 --- /dev/null +++ b/fixtures/microhoods/907157041.geojson @@ -0,0 +1 @@ +{"id":907157041,"type":"Feature","bbox":[-73.86107048844883,40.67126900000031,-73.85763317698049,40.6740213623896],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.85794356919956,40.67306596933441],[-73.85763317698049,40.67165597514841],[-73.85920272967799,40.67143557714634],[-73.86038899999987,40.67126900000031],[-73.86107048844883,40.6740213623896],[-73.85794356919956,40.67306596933441]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":56087.849544,"geom:bbox":"-73.8610704884,40.671269,-73.857633177,40.6740213624","geom:latitude":40.672521,"geom:longitude":-73.859417,"iso:country":"US","lbl:latitude":40.672463,"lbl:longitude":-73.859449,"lbl:max_zoom":18,"mps:latitude":40.672463,"mps:longitude":-73.859449,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["The Hole"],"name:deu_x_preferred":["The Hole"],"name:fas_x_preferred":["حفره"],"name:fin_x_preferred":["The Hole"],"name:fra_x_preferred":["The Hole"],"name:ita_x_preferred":["The Hole"],"name:nld_x_preferred":["The Hole"],"name:swe_x_preferred":["The Hole"],"reversegeo:latitude":40.672463,"reversegeo:longitude":-73.859449,"src:geom":"mz","wof:belongsto":[420782889,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bedfb5604c3f334bc5d7c5bce13b4548","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907157041,"neighbourhood_id":420782889,"region_id":85688543}],"wof:id":907157041,"wof:lastmodified":1566608539,"wof:name":"The Hole","wof:parent_id":420782889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782887],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907157047.geojson b/fixtures/microhoods/907157047.geojson new file mode 100644 index 0000000..21190de --- /dev/null +++ b/fixtures/microhoods/907157047.geojson @@ -0,0 +1 @@ +{"id":907157047,"type":"Feature","bbox":[-73.8546210919447,40.6477536536318,-73.83752631803416,40.66606970683247],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.8546210919447,40.65896525943901],[-73.85318579825092,40.65378909877271],[-73.84860108463204,40.65444577444381],[-73.84676658563558,40.6477536536318],[-73.83752631803416,40.64909589034102],[-73.84122985451779,40.66416853431011],[-73.84166628235876,40.66606970683247],[-73.84635668164377,40.66408967738508],[-73.84832747751602,40.66311960729959],[-73.85002824742175,40.6622714289968],[-73.85101578705572,40.66168201741061],[-73.85213760436552,40.66087709871327],[-73.85312872234869,40.66016889565847],[-73.85392472752608,40.65954425273201],[-73.8546210919447,40.65896525943901]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000184,"geom:area_square_m":1726057.429219,"geom:bbox":"-73.8546210919,40.6477536536,-73.837526318,40.6660697068","geom:latitude":40.656518,"geom:longitude":-73.845312,"iso:country":"US","lbl:latitude":40.658579,"lbl:longitude":-73.845312,"lbl:max_zoom":18,"mps:latitude":40.658579,"mps:longitude":-73.845312,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":40.658579,"reversegeo:longitude":-73.845312,"src:geom":"mz","wof:belongsto":[420782889,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"56e01a92a616c480662d40f16eee677a","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907157047,"neighbourhood_id":420782889,"region_id":85688543}],"wof:id":907157047,"wof:lastmodified":1566608539,"wof:name":"Rockwood Park","wof:parent_id":420782889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782891],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907158463.geojson b/fixtures/microhoods/907158463.geojson new file mode 100644 index 0000000..c35705a --- /dev/null +++ b/fixtures/microhoods/907158463.geojson @@ -0,0 +1 @@ +{"id":907158463,"type":"Feature","bbox":[-74.11440081076474,40.61021500000015,-74.09765799999988,40.61641400000022],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.11398746524245,40.61113857185813],[-74.11440081076474,40.61374670877803],[-74.11339714922052,40.61386062191989],[-74.1121371297322,40.61403518459364],[-74.11104011618448,40.6142143838788],[-74.10805774643238,40.61484505740263],[-74.1063870744005,40.61525690824593],[-74.10504078414041,40.61573107903705],[-74.10351100000011,40.61641400000022],[-74.10209,40.6146],[-74.09962322445985,40.61263544970712],[-74.09935,40.612419],[-74.09906796642892,40.61201504485216],[-74.09818,40.61074200000023],[-74.09765799999988,40.61050300000017],[-74.10535,40.61021500000015],[-74.10667,40.610418],[-74.109783,40.61025400000018],[-74.10998,40.61045600000019],[-74.11125,40.61075900000021],[-74.11398746524245,40.61113857185813]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000063,"geom:area_square_m":590350.53778,"geom:bbox":"-74.1144008108,40.610215,-74.097658,40.616414","geom:latitude":40.612611,"geom:longitude":-74.106325,"iso:country":"US","lbl:latitude":40.612923,"lbl:longitude":-74.105329,"lbl:max_zoom":18,"mps:latitude":40.612923,"mps:longitude":-74.105329,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_preferred":["Sunnyside"],"name:fra_x_preferred":["Sunnyside"],"name:heb_x_preferred":["סאניסייד"],"name:ita_x_preferred":["Sunnyside"],"name:jpn_x_preferred":["サニーサイド"],"name:tur_x_preferred":["Sunnyside"],"name:urd_x_preferred":["سنی سائڈ، کوئینز"],"name:urd_x_variant":["سنی سائڈ"],"name:zho_x_preferred":["陽邊"],"reversegeo:latitude":40.612923,"reversegeo:longitude":-74.105329,"src:geom":"mz","wof:belongsto":[85809781,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7523819"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2bd4f65d0d8388238b8d0df4008f2b03","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907158463,"neighbourhood_id":85809781,"region_id":85688543}],"wof:id":907158463,"wof:lastmodified":1566608542,"wof:name":"Sunnyside","wof:parent_id":85809781,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782927],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907159971.geojson b/fixtures/microhoods/907159971.geojson new file mode 100644 index 0000000..ade2d08 --- /dev/null +++ b/fixtures/microhoods/907159971.geojson @@ -0,0 +1 @@ +{"id":907159971,"type":"Feature","bbox":[-73.90511576473256,40.89727430039203,-73.90156199995586,40.89995186474251],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90324052308807,40.89993926011393],[-73.90317000498382,40.89991154466131],[-73.90310400509767,40.89987990932963],[-73.90212975433002,40.89927649068991],[-73.90188758618106,40.89909371347061],[-73.90170616873588,40.8989114738673],[-73.9016376895571,40.89877589854058],[-73.90158181298244,40.89860089816494],[-73.90156199995586,40.898478815522],[-73.90157025850543,40.89834794324586],[-73.9016473353458,40.89817696820612],[-73.90174369558255,40.89805060546151],[-73.90188239402377,40.89793221844344],[-73.90207009039138,40.89780205352549],[-73.9022759256471,40.89768731696737],[-73.90273150260153,40.89744497665609],[-73.90290401663631,40.89765699436779],[-73.90320806517995,40.89751688436601],[-73.90334826274562,40.89769450219168],[-73.90396596164278,40.89740820261571],[-73.90405459394013,40.89751061480752],[-73.90456853690115,40.89727430039203],[-73.90471713141253,40.8974705283166],[-73.90507220936401,40.89797833810844],[-73.90511576473256,40.89806019211051],[-73.90511430545425,40.89813473130874],[-73.90508702157263,40.89824529795075],[-73.90505378501403,40.89837533890997],[-73.90501068654513,40.89848104312219],[-73.90499975530264,40.89854710321903],[-73.90500222946744,40.89860004445565],[-73.90501805430291,40.89866587412098],[-73.90506900585885,40.89873718787991],[-73.90511191203667,40.89878948306503],[-73.90397193973747,40.89921297223505],[-73.9042128127549,40.89978189488668],[-73.90419209370296,40.89980729489328],[-73.90414883075425,40.89982740889072],[-73.9040932826894,40.89984568702717],[-73.9033880258306,40.89995186474251],[-73.90331083276227,40.89995058687317],[-73.90324052308807,40.89993926011393]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":58758.178175,"geom:bbox":"-73.9051157647,40.8972743004,-73.901562,40.8999518647","geom:latitude":40.898554,"geom:longitude":-73.903365,"iso:country":"US","lbl:latitude":40.898632,"lbl:longitude":-73.903223,"lbl:max_zoom":18,"mps:latitude":40.898632,"mps:longitude":-73.903223,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"reversegeo:latitude":40.898632,"reversegeo:longitude":-73.903223,"src:geom":"mz","wof:belongsto":[85844897,102191575,907157029,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c84ee2ca17ffe9d397d66eeeff5c279a","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157029,"microhood_id":907159971,"neighbourhood_id":85844897,"region_id":85688543}],"wof:id":907159971,"wof:lastmodified":1566608541,"wof:name":"Villanova Heights","wof:parent_id":85844897,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782833],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907160287.geojson b/fixtures/microhoods/907160287.geojson new file mode 100644 index 0000000..d2bab7e --- /dev/null +++ b/fixtures/microhoods/907160287.geojson @@ -0,0 +1 @@ +{"id":907160287,"type":"Feature","bbox":[-73.92827730832718,40.77084244830798,-73.8958291437706,40.79094549378188],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90267682857933,40.7803825811765],[-73.9064428052469,40.77973140986767],[-73.91734239826137,40.77084244830798],[-73.92232316418463,40.77441462556701],[-73.92303561343148,40.77538727850727],[-73.92397602375762,40.77462199867437],[-73.92827730832718,40.77689897532441],[-73.9270822901822,40.77771978119378],[-73.92631833403907,40.77824177518493],[-73.92481615546201,40.77875769162326],[-73.9242336300752,40.77910119376548],[-73.92318694397959,40.78024839362788],[-73.92295652690137,40.7804410081222],[-73.92263013830839,40.780564785728],[-73.92209965499441,40.78085187463689],[-73.92097562099683,40.78176769150645],[-73.91996458792964,40.78263506903902],[-73.91909034674545,40.783367646004],[-73.91818862939189,40.78393296611366],[-73.91773807440363,40.78407595141041],[-73.91724516427523,40.78414200119836],[-73.91717118646432,40.78419348437143],[-73.91718200679624,40.78455206368196],[-73.91683277016425,40.78519139248732],[-73.91575172894562,40.7861075785781],[-73.91541718757422,40.78606392941098],[-73.91526013936101,40.78619221664151],[-73.91558710139766,40.78642963116581],[-73.91423947964569,40.78785620956335],[-73.91259985911492,40.78937632963388],[-73.91222952426365,40.78917927996614],[-73.91206853578736,40.78933865381291],[-73.91195110905574,40.78940179722101],[-73.9120797502442,40.78952181498954],[-73.91177445569409,40.78972251040848],[-73.91161831292104,40.78958615442998],[-73.9112495903915,40.78974393630266],[-73.91113056873597,40.7901140760953],[-73.9098586292578,40.79094549378188],[-73.90677991420704,40.79037510915573],[-73.90649492923365,40.79018099034462],[-73.90251173700865,40.78947208502826],[-73.90239936084069,40.78955162068589],[-73.90206327886831,40.78949440549523],[-73.90203428533839,40.78941468642665],[-73.90077375891737,40.78914381825157],[-73.90032629743821,40.7890076628257],[-73.89693993562564,40.78662466896971],[-73.89651204913615,40.78606865902599],[-73.8963790528033,40.78613108158351],[-73.89640086049128,40.78615791177354],[-73.89635251322336,40.78617931020325],[-73.89630366096529,40.78611920156258],[-73.89635026246752,40.78609731961278],[-73.89636888344323,40.78612023020099],[-73.89650254833983,40.78605746784402],[-73.89637855982232,40.78590898109444],[-73.89626785620466,40.78596057194638],[-73.8962865269983,40.7859837186365],[-73.8962180352292,40.78601602287127],[-73.89604376668133,40.78579998748045],[-73.89611381864468,40.78576734216538],[-73.89613322780038,40.78579140356483],[-73.89624259793266,40.78574043299193],[-73.89614015089819,40.78560716728828],[-73.89600516772025,40.78566665023859],[-73.89602744472332,40.78568928642575],[-73.89598001322786,40.78571167576893],[-73.89592962975526,40.78564894431381],[-73.89597673220965,40.78562708775973],[-73.89599975377493,40.78565575201835],[-73.89612632632513,40.78559316931142],[-73.8958291437706,40.78522152738348],[-73.89683173824393,40.78442766370344],[-73.89677700751379,40.78438842096362],[-73.89675857252607,40.78440327601171],[-73.89672269281469,40.78437754932576],[-73.89673441949857,40.7843680993418],[-73.89672513646201,40.78436144210915],[-73.89673005421018,40.78435747867778],[-73.89672052173832,40.78435064397937],[-73.89675564813932,40.78432233937576],[-73.89677182707425,40.78433394159836],[-73.89678844985491,40.78432054842666],[-73.89682807945509,40.78434896505372],[-73.89680660094373,40.78436627012364],[-73.8968593888039,40.7844041204827],[-73.89708339167623,40.78425125951734],[-73.89697315561348,40.78416049796692],[-73.898748976384,40.78278115576604],[-73.90114577552113,40.7827111060906],[-73.90172373164526,40.78212925463784],[-73.90218781908904,40.78175713879029],[-73.90251248041793,40.78110825136061],[-73.90258049398926,40.78081489812362],[-73.90267723582109,40.78059413174242],[-73.90267682857933,40.7803825811765]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000288,"geom:area_square_m":2695272.022274,"geom:bbox":"-73.9282773083,40.7708424483,-73.8958291438,40.7909454938","geom:latitude":40.781724,"geom:longitude":-73.911817,"iso:country":"US","lbl:latitude":40.783317,"lbl:longitude":-73.910715,"lbl:max_zoom":18,"mps:latitude":40.783317,"mps:longitude":-73.910715,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":14,"reversegeo:latitude":40.783317,"reversegeo:longitude":-73.910715,"src:geom":"mz","wof:belongsto":[85803821,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"2df191ddf1c78c08bc449857e9d48e17","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907160287,"neighbourhood_id":85803821,"region_id":85688543}],"wof:id":907160287,"wof:lastmodified":1566608542,"wof:name":"Ditmars","wof:parent_id":85803821,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420782899],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907162765.geojson b/fixtures/microhoods/907162765.geojson new file mode 100644 index 0000000..222ccf2 --- /dev/null +++ b/fixtures/microhoods/907162765.geojson @@ -0,0 +1 @@ +{"id":907162765,"type":"Feature","bbox":[-73.79612090416006,40.75047500000028,-73.78053207158632,40.76900437503121],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.7953162583605,40.76878509604492],[-73.79333824540473,40.76859443486879],[-73.79176079488515,40.76900437503121],[-73.79007788151613,40.76652429217144],[-73.78813624133531,40.76452554492657],[-73.78556642344901,40.76292654713072],[-73.7853379951926,40.76224126236099],[-73.78516667400008,40.76092779988585],[-73.78379610446072,40.75864351732008],[-73.7832821408835,40.75744426897323],[-73.78168314308746,40.75487445108692],[-73.78053207158632,40.75332898975334],[-73.7861,40.75253200000013],[-73.787862,40.75183986161726],[-73.78830100000016,40.75148186161729],[-73.7921680000001,40.75047500000028],[-73.794727,40.75056500000026],[-73.79461661527785,40.75362455450908],[-73.79481370176721,40.75604814284683],[-73.79499357501193,40.75785960612982],[-73.79510697200233,40.75900160189936],[-73.79540107237369,40.76142298303157],[-73.79534394423479,40.76276314856874],[-73.79612090416006,40.76276658535874],[-73.7953162583605,40.76878509604492]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00017,"geom:area_square_m":1596330.70768,"geom:bbox":"-73.7961209042,40.750475,-73.7805320716,40.769004375","geom:latitude":40.758828,"geom:longitude":-73.789988,"iso:country":"US","lbl:latitude":40.762911,"lbl:longitude":-73.790141,"lbl:max_zoom":18,"mps:latitude":40.75868,"mps:longitude":-73.78984,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Auburndale"],"name:fra_x_preferred":["Auburndale"],"name:ita_x_preferred":["Auburndale"],"name:jpn_x_preferred":["オーバーンデール"],"name:urd_x_preferred":["اوبرنڈیل، کوئینز"],"name:urd_x_variant":["اوبرنڈیل"],"reversegeo:latitude":40.75868,"reversegeo:longitude":-73.78984,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2870650"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"95222422b8b127401e68d194dfa0067e","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907162765,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907162765,"wof:lastmodified":1566608551,"wof:name":"Auburndale","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85803923],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189643.geojson b/fixtures/microhoods/907189643.geojson new file mode 100644 index 0000000..1bf7f15 --- /dev/null +++ b/fixtures/microhoods/907189643.geojson @@ -0,0 +1 @@ +{"id":907189643,"type":"Feature","bbox":[-73.9618990000001,40.67845506893324,-73.94945991906279,40.69940349193272],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.95331891275258,40.69940349193272],[-73.94945991906279,40.68038194852153],[-73.94957835912412,40.67845506893324],[-73.95243231234718,40.67861087382184],[-73.958292,40.679831],[-73.95823731352067,40.68000805623398],[-73.95839600000016,40.680798],[-73.9618990000001,40.69818800000017],[-73.95702,40.69897400000019],[-73.95331891275258,40.69940349193272]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000175,"geom:area_square_m":1644087.509275,"geom:bbox":"-73.961899,40.6784550689,-73.9494599191,40.6994034919","geom:latitude":40.688917,"geom:longitude":-73.955524,"iso:country":"US","lbl:latitude":40.690282,"lbl:longitude":-73.953072,"lbl:max_zoom":18,"mps:latitude":40.688851,"mps:longitude":-73.955642,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ara_x_preferred":["بيدفورد"],"name:ast_x_preferred":["Bedford"],"name:azb_x_preferred":["بدفورد"],"name:cat_x_preferred":["Bedford"],"name:ceb_x_preferred":["Bedford"],"name:cym_x_preferred":["Bedford"],"name:dan_x_preferred":["Bedford"],"name:deu_x_preferred":["Bedford"],"name:epo_x_preferred":["Bedford"],"name:fas_x_preferred":["بدفورد"],"name:fin_x_preferred":["Bedford"],"name:fra_x_preferred":["Bedford"],"name:fry_x_preferred":["Bedford"],"name:gle_x_preferred":["Bedford"],"name:hun_x_preferred":["Bedford"],"name:isl_x_preferred":["Bedford"],"name:ita_x_preferred":["Bedford"],"name:jpn_x_preferred":["ベッドフォード"],"name:kor_x_preferred":["베드퍼드"],"name:lat_x_preferred":["Bedfordia"],"name:lit_x_preferred":["Bedfordas"],"name:lmo_x_preferred":["Bedford"],"name:mlg_x_preferred":["Bedford"],"name:nld_x_preferred":["Bedford"],"name:nno_x_preferred":["Bedford"],"name:nor_x_preferred":["Bedford"],"name:pol_x_preferred":["Bedford"],"name:por_x_preferred":["Bedford"],"name:ron_x_preferred":["Bedford"],"name:rus_x_preferred":["Бедфорд"],"name:sco_x_preferred":["Bedford"],"name:slv_x_preferred":["Bedford"],"name:spa_x_preferred":["Bedford"],"name:srp_x_preferred":["Бедфорд"],"name:swe_x_preferred":["Bedford"],"name:tat_x_preferred":["Бедфорд"],"name:ukr_x_preferred":["Бедфорд"],"name:urd_x_preferred":["بیڈفورڈ"],"name:vec_x_preferred":["Bedford"],"name:vie_x_preferred":["Bedford"],"name:vol_x_preferred":["Bedford"],"name:war_x_preferred":["Bedford"],"name:yid_x_preferred":["בעדפארד"],"name:zho_x_preferred":["貝德福德"],"reversegeo:latitude":40.688851,"reversegeo:longitude":-73.955642,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85892907,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3fb544bddceda23429992677c30bdb86","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907189643,"neighbourhood_id":85892907,"region_id":85688543}],"wof:id":907189643,"wof:lastmodified":1566608543,"wof:name":"Bedford","wof:parent_id":85892907,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85805225],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189645.geojson b/fixtures/microhoods/907189645.geojson new file mode 100644 index 0000000..23098ea --- /dev/null +++ b/fixtures/microhoods/907189645.geojson @@ -0,0 +1 @@ +{"id":907189645,"type":"Feature","bbox":[-73.80811546518981,40.78575324247459,-73.79380123117538,40.79682269333237],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.79528040314267,40.78608604404583],[-73.79689047350418,40.78583096328504],[-73.79761209246293,40.78577326310351],[-73.79829640566054,40.78575324247459],[-73.80055861827064,40.78582945131635],[-73.80201602653126,40.7859109946634],[-73.80470783968073,40.78610588442658],[-73.80811546518981,40.78643867957732],[-73.80688067722652,40.79651070870845],[-73.80636331452591,40.79639360543776],[-73.80632825394346,40.79656033627027],[-73.80632013155258,40.79655929334688],[-73.80630503940795,40.79662616654993],[-73.80631451940108,40.79662618247991],[-73.80627331882228,40.79682269333237],[-73.80623135012372,40.79681747758281],[-73.80627525037369,40.79662405961188],[-73.80628337664868,40.79662407326925],[-73.80629846516324,40.79655822766332],[-73.80629034788139,40.79655512619507],[-73.8063307671468,40.79639274043609],[-73.80628396673889,40.7963920491521],[-73.80626052354513,40.79639905448717],[-73.80624026055715,40.79645760002462],[-73.80622801362853,40.79648195055464],[-73.8062249987971,40.79648654107834],[-73.80622106306771,40.79649070955874],[-73.80621630630563,40.79649435022452],[-73.80621084920924,40.79649737069713],[-73.80620483024725,40.79649969433483],[-73.80619840214531,40.79650126217742],[-73.80614379014706,40.79650330944954],[-73.80608911950513,40.79650260939747],[-73.80601711974147,40.79649746965709],[-73.80594598618421,40.79648756909567],[-73.80587626284594,40.79647298343048],[-73.80582665237026,40.7964594676865],[-73.80575309750414,40.79643417290389],[-73.80570537631877,40.79641293000197],[-73.80562927917657,40.7963725794766],[-73.80555882551151,40.79632669027532],[-73.80550782819176,40.79628699722353],[-73.80544725584552,40.79623041547555],[-73.80539573274996,40.79617082151339],[-73.8053663863014,40.7961681342767],[-73.80535819199508,40.79622729474976],[-73.80535141713024,40.79622831258497],[-73.80534456769041,40.79625506051251],[-73.80535269325884,40.79625507423437],[-73.80534980160512,40.79631785131896],[-73.80530104939183,40.79631674087689],[-73.80531071962979,40.7962519171942],[-73.80532426114102,40.79625194006577],[-73.80532975387254,40.79622621795116],[-73.80532433939834,40.79622517953081],[-73.80533944487578,40.79616392828882],[-73.80527796934831,40.79615570500062],[-73.80512821783232,40.79617698546313],[-73.80500200239153,40.79614148059282],[-73.80478172394825,40.79617516310488],[-73.80467173768801,40.79616746916396],[-73.80464949613759,40.796362981806],[-73.8046278207767,40.7963650036203],[-73.80466149435826,40.796427842659],[-73.80463437753288,40.79643808895622],[-73.80459395457143,40.7963680340401],[-73.80462921073278,40.7963526563424],[-73.80464873976862,40.79615919598307],[-73.8046095345107,40.79613545786332],[-73.80453769015655,40.79615086464995],[-73.80441601209608,40.79620256396973],[-73.80434825935421,40.79621409099285],[-73.8043438066598,40.79623278227977],[-73.80433026988082,40.79623036682363],[-73.8042971136375,40.79645295479128],[-73.80432012674359,40.79645574726053],[-73.80431189289486,40.79649311945952],[-73.80429293553249,40.79649205799801],[-73.80427353614901,40.7966412613284],[-73.80423563388833,40.79663502181069],[-73.8042590781062,40.79649200050716],[-73.80424147814809,40.79648991206656],[-73.80424295055872,40.79644977499082],[-73.80426732711423,40.79644981638731],[-73.80431138699944,40.79621287616008],[-73.80416535642887,40.79622900877683],[-73.8041221850038,40.7965288197066],[-73.80409238788187,40.79652979834243],[-73.80413644766992,40.79623423117783],[-73.80400524331004,40.79626735893527],[-73.80395884636577,40.79655624264386],[-73.80393114463224,40.79655731294741],[-73.80397418925097,40.79627825591973],[-73.80384612412577,40.79632585464923],[-73.80381886202723,40.79651492494285],[-73.80382563258891,40.7965149364661],[-73.80381736540878,40.79662975065901],[-73.80377383371217,40.79662909019768],[-73.80379312974868,40.79651488114384],[-73.80380261038668,40.79651489728154],[-73.80382294196026,40.79633501284103],[-73.80364301509175,40.79640608550763],[-73.80360867810492,40.79660513725494],[-73.80361815268303,40.79660721194896],[-73.8036125214754,40.79668426618115],[-73.80357594508135,40.79668330258232],[-73.80358565890849,40.79660406875647],[-73.8035937851805,40.79660408260344],[-73.80361288546575,40.7964208568206],[-73.80351687211324,40.79646452938645],[-73.80350403526195,40.79646974886959],[-73.80348822878432,40.79647790721155],[-73.80347562877238,40.79648705321945],[-73.80346385689631,40.79649726274874],[-73.80345417357393,40.79651012340882],[-73.80345049731152,40.79652318378254],[-73.80344742272672,40.79654897794646],[-73.8034313311056,40.79665324659514],[-73.80340121445356,40.79668805390617],[-73.80334996362973,40.79671302643008],[-73.80299970676843,40.79670883609427],[-73.80297168222658,40.79668512306078],[-73.80294925160226,40.79640492955593],[-73.80279125662175,40.79636382152479],[-73.80276267486218,40.79636813950391],[-73.80272775636637,40.79636352289022],[-73.80271057416493,40.79635959432952],[-73.8026403602291,40.79633809705561],[-73.80263086237163,40.79634828409235],[-73.80262670946293,40.79636227841575],[-73.80262272892378,40.79636609117784],[-73.80261322240628,40.79635503447497],[-73.80260474280814,40.79634171073397],[-73.80257934475048,40.79629544313607],[-73.80226038840075,40.79626220935548],[-73.80177947698428,40.79631614185261],[-73.80176331229934,40.79641980689215],[-73.8017754986082,40.79642085712568],[-73.80176584941813,40.7964774480209],[-73.8017550187977,40.79647640011804],[-73.8017454308852,40.79651240660552],[-73.80172106831412,40.79650721832074],[-73.80175550251795,40.79632129591796],[-73.80145799689461,40.79636679988941],[-73.80128784249823,40.79641788921873],[-73.80113832991813,40.79648452056119],[-73.8010112623061,40.79652237458954],[-73.80097496351836,40.79647622451942],[-73.8009637769025,40.79640100440731],[-73.80093513210225,40.79636738403019],[-73.80086307346713,40.79633253590842],[-73.8007614301337,40.79633659379396],[-73.80067173268912,40.7963517466806],[-73.80064068730512,40.79637154893389],[-73.80063334031999,40.79641525599174],[-73.80062184740106,40.79642676236057],[-73.8006074491838,40.79641534572957],[-73.80059411459081,40.79637714229044],[-73.8005548778183,40.79634655563873],[-73.80052713996209,40.79631071249448],[-73.80047518251016,40.79628221177239],[-73.80039069456684,40.79626315539578],[-73.80036547554784,40.7963369203832],[-73.80028591188076,40.79632354905574],[-73.8003216303822,40.79625357193051],[-73.80020438000454,40.79627005394539],[-73.80012080488288,40.79663141271139],[-73.80008350203389,40.7966282353263],[-73.80010619660885,40.79652552022701],[-73.80012111139986,40.79652932663623],[-73.8001261997881,40.79649152565464],[-73.80006403229245,40.79648452392925],[-73.8000791219669,40.7964290584013],[-73.80013384459127,40.79643104382517],[-73.80014389123814,40.79639892200581],[-73.80013145889016,40.79639700992517],[-73.80014405015416,40.79634598845257],[-73.8001589819298,40.79634412432024],[-73.80018235388135,40.79626691369693],[-73.80005184517347,40.79624961838706],[-73.79982777405687,40.79617893683496],[-73.79968067900424,40.79617450270642],[-73.79964718804301,40.79621526423345],[-73.79966916852725,40.79628248915954],[-73.79967980703289,40.79631058473392],[-73.79966872949244,40.79632978348994],[-73.79963988478312,40.79633900722376],[-73.79960548292529,40.79633222060561],[-73.79956913507232,40.79631421946041],[-73.79955188685527,40.79628549990874],[-73.79940489053637,40.79618904391091],[-73.79917089630354,40.79605342588182],[-73.79891628202122,40.79601702483289],[-73.79869265794972,40.79595224845812],[-73.79811108045232,40.7956058885654],[-73.79789832686922,40.79555922192188],[-73.79767259943337,40.79593711199858],[-73.79769744193777,40.79594849908203],[-73.79766994008874,40.79599382238173],[-73.79758295471346,40.79596720215479],[-73.79761542612661,40.79592377762287],[-73.79763779690313,40.79592948863961],[-73.79787014914426,40.79555201314662],[-73.79733705524914,40.795442638541],[-73.79724128273881,40.79545287980241],[-73.79723144562941,40.79543808541659],[-73.7972564330192,40.79537662476274],[-73.79723849400847,40.79533751086956],[-73.79712783133215,40.79530371842459],[-73.79691508645416,40.79527439337988],[-73.79673567660257,40.79520894291812],[-73.79651939930966,40.79559479349646],[-73.79654175232902,40.79560617576529],[-73.79651175709438,40.79565338558528],[-73.79648690334504,40.79564577893867],[-73.79643438737669,40.79573642985648],[-73.79640953426343,40.79572882419958],[-73.79646702704156,40.79563818258367],[-73.79644218574518,40.79562679523601],[-73.79646720043993,40.79558146783366],[-73.7964920644026,40.79558529228157],[-73.79670587562214,40.79519762595191],[-73.79633114341061,40.79507861959893],[-73.79580826080301,40.79498759158871],[-73.79518785394664,40.79500827285589],[-73.79508481023603,40.7950657510371],[-73.79507043234779,40.79497635861884],[-73.79500857656492,40.79492438234959],[-73.79483017402437,40.79488588920493],[-73.79470620936789,40.79488898172747],[-73.79466550345434,40.79491868152383],[-73.79461098148353,40.7949297355261],[-73.79448191996572,40.79483498226571],[-73.79447401015958,40.79483527762808],[-73.79446614286857,40.79483458867919],[-73.79445852875021,40.79483293386657],[-73.79445137168295,40.79483035750008],[-73.79444486330696,40.79482692856546],[-73.79443917789281,40.79482273887714],[-73.79443446767502,40.79481790061972],[-73.79443085877584,40.79481254334408],[-73.79442844782814,40.7948068104985],[-73.79442729938795,40.79480085558764],[-73.79442829014232,40.79479561175089],[-73.79443153242588,40.79479092206666],[-73.7944366525035,40.79478732711004],[-73.79444306018898,40.79478524126785],[-73.79445001687515,40.79478490497298],[-73.7944567206722,40.79478635698971],[-73.7944623988406,40.79478942994571],[-73.79446464196208,40.79479146989497],[-73.79448859303761,40.79479302537531],[-73.79451135093835,40.79479709864146],[-73.79453345509015,40.79480360813729],[-73.79455412899077,40.79481242352766],[-73.79457019411689,40.79479846788212],[-73.79458010758094,40.79478152498032],[-73.79458298189243,40.79476311162304],[-73.79444184340888,40.79454192358369],[-73.79439286110846,40.79443600884569],[-73.79437606190046,40.79432447103306],[-73.79437546739089,40.79422283829076],[-73.79439421572688,40.79413298360021],[-73.79444832276779,40.79405182956137],[-73.79453257299875,40.79398719864454],[-73.79460973137644,40.79389903248892],[-73.79458621884712,40.79357033410699],[-73.79478009224513,40.79293533038113],[-73.79476020271437,40.79282624324588],[-73.79471718788798,40.792735342196],[-73.7947105366036,40.79271343007721],[-73.79470613603499,40.79268825354455],[-73.79471124038163,40.79266204874978],[-73.79471954908449,40.79264985228006],[-73.79474785436723,40.79262690445482],[-73.79491460993412,40.79253154004697],[-73.79492773912168,40.79234673604537],[-73.79488771963615,40.79168061606766],[-73.79380123117538,40.78917205606407],[-73.79430579066388,40.78906222005214],[-73.79497500000011,40.78808165210148],[-73.7947860000001,40.7867186521015],[-73.79528040314267,40.78608604404583]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000129,"geom:area_square_m":1208412.669533,"geom:bbox":"-73.8081154652,40.7857532425,-73.7938012312,40.7968226933","geom:latitude":40.790936,"geom:longitude":-73.801194,"iso:country":"US","lbl:latitude":40.792777,"lbl:longitude":-73.809995,"lbl:max_zoom":18,"mps:latitude":40.791139,"mps:longitude":-73.80133,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Beechhurst"],"name:fra_x_preferred":["Beechhurst"],"name:jpn_x_preferred":["ビーチハースト"],"name:urd_x_preferred":["بیچہرسٹ، کوئینز"],"name:urd_x_variant":["بیچہرسٹ"],"reversegeo:latitude":40.791139,"reversegeo:longitude":-73.80133,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85857567,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2893642"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"62c702a86ce252e97c5436ce2e6b6935","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907189645,"neighbourhood_id":85857567,"region_id":85688543}],"wof:id":907189645,"wof:lastmodified":1566608543,"wof:name":"Beechhurst","wof:parent_id":85857567,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85805257],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189647.geojson b/fixtures/microhoods/907189647.geojson new file mode 100644 index 0000000..11ddfe6 --- /dev/null +++ b/fixtures/microhoods/907189647.geojson @@ -0,0 +1 @@ +{"id":907189647,"type":"Feature","bbox":[-73.98636937570741,40.71858874257678,-73.97162946063104,40.73046511142324],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98636937570741,40.72224459206735],[-73.9803993791033,40.73046511142324],[-73.97162946063104,40.72676061595111],[-73.97162954348369,40.72676026475914],[-73.9717675541022,40.72583330345462],[-73.97177410965314,40.72582128133705],[-73.97179142961491,40.72581422114904],[-73.97181650587731,40.72581496675246],[-73.97218794229818,40.72404464870478],[-73.9728523261151,40.7212467306667],[-73.97338327620164,40.71918892125609],[-73.97351345120533,40.71877484470664],[-73.97357627278947,40.71858874257678],[-73.97473890294737,40.71880102380295],[-73.975452,40.71894700000023],[-73.97722400000013,40.71931000000023],[-73.978753,40.71993400000018],[-73.98636937570741,40.72224459206735]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000105,"geom:area_square_m":983722.85296,"geom:bbox":"-73.9863693757,40.7185887426,-73.9716294606,40.7304651114","geom:latitude":40.72427,"geom:longitude":-73.978203,"iso:country":"US","lbl:latitude":40.725693,"lbl:longitude":-73.978823,"lbl:max_zoom":18,"mps:latitude":40.724564,"mps:longitude":-73.97806,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:note":"Dup of Alphabet City","mz:tier_metro":1,"name:ces_x_preferred":["Alphabet City"],"name:deu_x_preferred":["Alphabet City"],"name:eng_x_preferred":["Alphabet City"],"name:eng_x_variant":["Alphabetcity","Loisaida"],"name:fin_x_preferred":["Alphabet City"],"name:fra_x_preferred":["Alphabet City"],"name:ita_x_preferred":["Alphabet City"],"name:jpn_x_preferred":["アルファベット・シティ"],"name:kor_x_preferred":["알파벳시티"],"name:nld_x_preferred":["Alphabet City"],"name:por_x_preferred":["Alphabet City"],"name:ron_x_preferred":["Alphabet City"],"name:rus_x_preferred":["Алфабет-сити"],"name:slk_x_preferred":["Alphabet City"],"name:spa_x_preferred":["Alphabet City"],"name:swe_x_preferred":["Alphabet City"],"name:und_x_variant":["Alphabetville"],"name:urd_x_preferred":["Astoria Heights"],"reversegeo:latitude":40.724564,"reversegeo:longitude":-73.97806,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85816887,102191575,907196817,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1156938"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"de698ee5d1ea5484603c7f2133228ba0","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907196817,"microhood_id":907189647,"neighbourhood_id":85816887,"region_id":85688543}],"wof:id":907189647,"wof:lastmodified":1566608544,"wof:name":"Alphabet City","wof:parent_id":85816887,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869073,85868043],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189649.geojson b/fixtures/microhoods/907189649.geojson new file mode 100644 index 0000000..1f9e1ce --- /dev/null +++ b/fixtures/microhoods/907189649.geojson @@ -0,0 +1 @@ +{"id":907189649,"type":"Feature","bbox":[-73.90049242580716,40.766595,-73.8884,40.77785081277779],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89239164375918,40.77419982119807],[-73.89215606356954,40.77444160969784],[-73.89183244904515,40.77488019988873],[-73.8917254778065,40.77505203213402],[-73.89171751335823,40.77516363289296],[-73.89168935121101,40.77525473784354],[-73.89152759083358,40.77547813536741],[-73.89144361875276,40.77562269470964],[-73.891358014047,40.77604940793013],[-73.89136766273342,40.77634299857851],[-73.89145185712489,40.77651276927086],[-73.89126414584791,40.77685585537457],[-73.89110422665522,40.77702320697471],[-73.8911204433948,40.777124699736],[-73.89106681416058,40.77721292530485],[-73.89094860635714,40.77728384517264],[-73.89073132114233,40.77733204986772],[-73.89056250595358,40.77740392096428],[-73.89049834642215,40.77746263585195],[-73.8904591577672,40.77755049725345],[-73.89046537395129,40.77770321928706],[-73.89035193082614,40.77780032027481],[-73.89017369508574,40.77785081277779],[-73.890087294168,40.77778419360687],[-73.89002369095213,40.77724712640631],[-73.88951644381004,40.77593671444562],[-73.88947151143202,40.77573805652339],[-73.88947105399761,40.77553555096724],[-73.88961448773952,40.77484568714214],[-73.88978900756065,40.77423686116985],[-73.8898867162959,40.77401734907425],[-73.8900676015257,40.77396248425597],[-73.89019171520673,40.77364687622497],[-73.89008921667374,40.77362643552484],[-73.889976727389,40.77372361014805],[-73.88985169959679,40.77375329736392],[-73.8897503517802,40.77371739585025],[-73.88945486903738,40.77353295112717],[-73.889424,40.77305],[-73.8884,40.76710000000013],[-73.889323,40.766866],[-73.891202,40.766595],[-73.89499,40.76679],[-73.90049242580716,40.76760566173567],[-73.89239164375918,40.77419982119807]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000062,"geom:area_square_m":585246.628722,"geom:bbox":"-73.9004924258,40.766595,-73.8884,40.7778508128","geom:latitude":40.770352,"geom:longitude":-73.892898,"iso:country":"US","lbl:latitude":40.769564,"lbl:longitude":-73.892706,"lbl:max_zoom":18,"mps:latitude":40.769921,"mps:longitude":-73.892304,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Astoria Heights"],"name:fra_x_preferred":["Astoria Heights"],"name:urd_x_preferred":["ایسٹوریا ہائیٹس، کوئینز"],"name:urd_x_variant":["ایسٹوریا ہائیٹس"],"reversegeo:latitude":40.769921,"reversegeo:longitude":-73.892304,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85803821,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2868473"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c0af3ae546d877c89594415ae10603b0","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907189649,"neighbourhood_id":85803821,"region_id":85688543}],"wof:id":907189649,"wof:lastmodified":1566608544,"wof:name":"Astoria Heights","wof:parent_id":85803821,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865565,85869091],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189657.geojson b/fixtures/microhoods/907189657.geojson new file mode 100644 index 0000000..3a62f1d --- /dev/null +++ b/fixtures/microhoods/907189657.geojson @@ -0,0 +1 @@ +{"id":907189657,"type":"Feature","bbox":[-73.90270625294181,40.84401632390924,-73.89404526958945,40.85230800000019],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89404526958945,40.8507190240071],[-73.89749974705818,40.84401632390924],[-73.90084043756596,40.8443952647834],[-73.90270625294181,40.84456800678856],[-73.902654,40.844753],[-73.90009700000019,40.8492090000001],[-73.898104,40.85230800000019],[-73.897087,40.85196900000021],[-73.89708547306009,40.85197169771648],[-73.895563,40.85146900000022],[-73.89404526958945,40.8507190240071]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000039,"geom:area_square_m":362143.585746,"geom:bbox":"-73.9027062529,40.8440163239,-73.8940452696,40.852308","geom:latitude":40.847895,"geom:longitude":-73.898208,"iso:country":"US","lbl:latitude":40.849375,"lbl:longitude":-73.897381,"lbl:max_zoom":18,"mps:latitude":40.847972,"mps:longitude":-73.898142,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ara_x_preferred":["باثغيت"],"name:azb_x_preferred":["بسقیت"],"name:cat_x_preferred":["Bathgate"],"name:ceb_x_preferred":["Bathgate"],"name:cym_x_preferred":["Bathgate"],"name:deu_x_preferred":["Bathgate"],"name:eus_x_preferred":["Bathgate"],"name:fas_x_preferred":["بسگیت"],"name:fra_x_preferred":["Bathgate"],"name:gla_x_preferred":["Bathgate"],"name:gle_x_preferred":["Both Chéit"],"name:ita_x_preferred":["Bathgate"],"name:kor_x_preferred":["배스게이트"],"name:lit_x_preferred":["Batgitas"],"name:nno_x_preferred":["Bathgate"],"name:nor_x_preferred":["Bathgate"],"name:pol_x_preferred":["Bathgate"],"name:sco_x_preferred":["Bathket"],"name:spa_x_preferred":["Bathgate"],"name:swe_x_preferred":["Bathgate"],"name:ukr_x_preferred":["Батгейт"],"name:zho_x_preferred":["巴斯蓋特"],"reversegeo:latitude":40.847972,"reversegeo:longitude":-73.898142,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865671,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"403c10ea517cf822570ec7e8c6553122","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907189657,"neighbourhood_id":85865671,"region_id":85688543}],"wof:id":907189657,"wof:lastmodified":1566608543,"wof:name":"Bathgate","wof:parent_id":85865671,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892761],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189661.geojson b/fixtures/microhoods/907189661.geojson new file mode 100644 index 0000000..8d40b5d --- /dev/null +++ b/fixtures/microhoods/907189661.geojson @@ -0,0 +1 @@ +{"id":907189661,"type":"Feature","bbox":[-73.96650773932781,40.75231000410895,-73.96313493912845,40.7545043702688],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96414880949747,40.75231000410895],[-73.96650773932781,40.75327620542298],[-73.96562957282376,40.7545043702688],[-73.96313493912845,40.75347962166776],[-73.96414880949747,40.75231000410895]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":36073.896321,"geom:bbox":"-73.9665077393,40.7523100041,-73.9631349391,40.7545043703","geom:latitude":40.753398,"geom:longitude":-73.964851,"iso:country":"US","lbl:latitude":40.752977,"lbl:longitude":-73.965071,"lbl:max_zoom":18,"mps:latitude":40.753391,"mps:longitude":-73.964851,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Beekman Place"],"name:eng_x_variant":["Beekman"],"name:est_x_preferred":["Beekman"],"name:und_x_variant":["Beekmanville"],"reversegeo:latitude":40.753391,"reversegeo:longitude":-73.964851,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[907215785,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"606e0af08af7c2eb91c2f19a88181e52","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907189661,"neighbourhood_id":907215785,"region_id":85688543}],"wof:id":907189661,"wof:lastmodified":1566608543,"wof:name":"Beekman","wof:parent_id":907215785,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869109],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189663.geojson b/fixtures/microhoods/907189663.geojson new file mode 100644 index 0000000..b795126 --- /dev/null +++ b/fixtures/microhoods/907189663.geojson @@ -0,0 +1 @@ +{"id":907189663,"type":"Feature","bbox":[-73.7594702425785,40.70724811904934,-73.74623241099825,40.72406292280949],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.74623241099825,40.7093586020815],[-73.74668608417993,40.70913159412813],[-73.74717436783939,40.70888162651705],[-73.74850089425406,40.70822768878517],[-73.75066418290845,40.70736625357975],[-73.75110191835176,40.70724811904934],[-73.75243457026838,40.71022961602688],[-73.754037,40.7138800000002],[-73.7594702425785,40.721049712873],[-73.75945883801813,40.72105529076939],[-73.75499165580615,40.72406292280949],[-73.75330456345034,40.72262661212488],[-73.75205457810628,40.72161325009841],[-73.75006124829953,40.71999203558835],[-73.74982333768503,40.71969994024493],[-73.74960986168084,40.71929471052074],[-73.74937032000416,40.71879172607504],[-73.74930469337349,40.71858825481859],[-73.7489075933696,40.71673406965613],[-73.74857629218181,40.71498001484374],[-73.7484674163707,40.71467015390796],[-73.74623241099825,40.7093586020815]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000099,"geom:area_square_m":928436.090479,"geom:bbox":"-73.7594702426,40.707248119,-73.746232411,40.7240629228","geom:latitude":40.716008,"geom:longitude":-73.752359,"iso:country":"US","lbl:latitude":40.714142,"lbl:longitude":-73.746043,"lbl:max_zoom":18,"mps:latitude":40.717318,"mps:longitude":-73.75246,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["Bellaire"],"name:eng_x_preferred":["Bellaire"],"name:fra_x_preferred":["Bellaire"],"name:nld_x_preferred":["Bellaire"],"name:oci_x_preferred":["Bellaire"],"name:urd_x_preferred":["بیلیئر، کوئینز"],"name:urd_x_variant":["بیلیئر"],"reversegeo:latitude":40.717318,"reversegeo:longitude":-73.75246,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420529697,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q62473"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b022a5ee793bb90f71f203d98e6e7b3b","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907189663,"neighbourhood_id":420529697,"region_id":85688543}],"wof:id":907189663,"wof:lastmodified":1566608544,"wof:name":"Bellaire","wof:parent_id":420529697,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85805413],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189665.geojson b/fixtures/microhoods/907189665.geojson new file mode 100644 index 0000000..9b9e221 --- /dev/null +++ b/fixtures/microhoods/907189665.geojson @@ -0,0 +1 @@ +{"id":907189665,"type":"Feature","bbox":[-73.98100181483072,40.73494432610145,-73.97168173273084,40.74384336596832],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98100181483072,40.73791303851167],[-73.97779355641761,40.74234413617773],[-73.97537857675717,40.74133000746244],[-73.97360766570746,40.74384336596832],[-73.97168173273084,40.74304136147111],[-73.97188888913061,40.74272482035548],[-73.97174059715866,40.74266357950877],[-73.97195955856269,40.74233792154364],[-73.97228992099218,40.74072103903177],[-73.97219567275303,40.74070957946137],[-73.97218268570101,40.74070627990962],[-73.97216848387875,40.74069312030049],[-73.97216477368659,40.74067572212912],[-73.9721964164781,40.74040257875026],[-73.97221685422346,40.74030762506142],[-73.97229979590864,40.74003496274298],[-73.97231030439094,40.74001851267482],[-73.9723314172173,40.7400109081997],[-73.97243888981419,40.74002174997323],[-73.9726574380305,40.73922275427692],[-73.97265737562532,40.7392214802635],[-73.9726574380305,40.73922132660046],[-73.9725684103388,40.73740380631294],[-73.97248994174743,40.7358032801076],[-73.97251016786022,40.73578712985961],[-73.97286939178478,40.73577086128557],[-73.97441385816543,40.73641439385893],[-73.97445975070481,40.73629401971823],[-73.9744167735479,40.73627772610673],[-73.97441154346602,40.73628527904677],[-73.97439952343296,40.73628408408968],[-73.97402692104306,40.7361257672455],[-73.97404679254457,40.73609992993463],[-73.97442932366877,40.73626063349143],[-73.97442775474408,40.73626619954392],[-73.97446647047302,40.73627845682983],[-73.97450376013246,40.7360645884439],[-73.97450352357795,40.73606451748448],[-73.97447471755301,40.73606238071297],[-73.97444082924042,40.73605047965696],[-73.97443372879938,40.73605371686951],[-73.97414062018373,40.73595565716728],[-73.97415127634783,40.73593379266809],[-73.97444722336765,40.73603347295399],[-73.97444828612814,40.73603779285909],[-73.97447828183084,40.73604418545107],[-73.9745048828598,40.73604228053655],[-73.97451459772613,40.73589459841118],[-73.974514505998,40.73589456515209],[-73.97451459772604,40.73589317073489],[-73.97450793938162,40.73579694577236],[-73.9744873798514,40.73587698753307],[-73.97444962990868,40.73587039671469],[-73.97446125831895,40.73583242506948],[-73.97424881734739,40.73579823084535],[-73.97424533118317,40.73578115493261],[-73.97425771965983,40.73576732638402],[-73.97446939148737,40.73579916097891],[-73.974468626027,40.73578915679988],[-73.9744767600986,40.73578915860296],[-73.97446461207315,40.7356681726646],[-73.97439147294988,40.73566874159342],[-73.9743910814324,40.73567315398553],[-73.9742629891394,40.73567253975693],[-73.97426396904021,40.73567694357619],[-73.97419155221267,40.73568111586588],[-73.97418881323289,40.73566089849509],[-73.97415673129365,40.73565879219356],[-73.97414539712078,40.73567255831335],[-73.97409217163268,40.7356416047185],[-73.97408936427243,40.73564553073938],[-73.97341851539198,40.73536788602196],[-73.97343868734961,40.73534138899594],[-73.97305698712049,40.73517745341554],[-73.97280661710475,40.73552391852111],[-73.97293673973687,40.73559924929962],[-73.97293031926458,40.73560761439667],[-73.97276308380354,40.73550508747357],[-73.97299695202487,40.73518650689108],[-73.97296395268074,40.7351690666799],[-73.9729318560978,40.73520531236897],[-73.97288512856935,40.73518020390186],[-73.97286403116165,40.73521226701519],[-73.97283745943463,40.73519971670439],[-73.97294520758695,40.73506517007112],[-73.97296719785798,40.73507843076681],[-73.97294519031816,40.73510770051308],[-73.97299560236569,40.73512793848569],[-73.97297083635607,40.73515721697126],[-73.97300291199268,40.73517256003525],[-73.97303684713692,40.73512794815009],[-73.9732989504615,40.73524235507699],[-73.97329894091492,40.73524092261875],[-73.9733218745816,40.73520191866479],[-73.97329897672444,40.73517681588363],[-73.97327881634088,40.73514752741428],[-73.97327241144065,40.73511893385145],[-73.97327700851476,40.73507919579834],[-73.9732962924985,40.73504084931159],[-73.97332929043598,40.7350108773917],[-73.97336870942677,40.7349892747627],[-73.97341821248351,40.73497115816108],[-73.97345945915032,40.73496837685118],[-73.973522708343,40.7349753608469],[-73.97354472883977,40.73494432610145],[-73.97443700958631,40.7353163561293],[-73.97443660722318,40.73531476069023],[-73.97443700958631,40.73531492845274],[-73.97437804208253,40.7350811121824],[-73.97437768139221,40.73507968198351],[-73.97464800000016,40.73508157232366],[-73.97490700000019,40.73531257232341],[-73.97852665982734,40.73685429290821],[-73.97852745096854,40.73685463083869],[-73.97852665982734,40.73685572058485],[-73.97852,40.736858],[-73.98100181483072,40.73791303851167]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000046,"geom:area_square_m":428291.042194,"geom:bbox":"-73.9810018148,40.7349443261,-73.9716817327,40.743843366","geom:latitude":40.739207,"geom:longitude":-73.975682,"iso:country":"US","lbl:latitude":40.739529,"lbl:longitude":-73.969801,"lbl:max_zoom":18,"mps:latitude":40.738686,"mps:longitude":-73.976002,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Bellevue"],"name:eng_x_variant":["Medical Centre"],"reversegeo:latitude":40.738686,"reversegeo:longitude":-73.976002,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85868041,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1bc16ec28f5b221863fa59816689743f","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907189665,"neighbourhood_id":85868041,"region_id":85688543}],"wof:id":907189665,"wof:lastmodified":1566608544,"wof:name":"Medical Centre","wof:parent_id":85868041,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892909],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189667.geojson b/fixtures/microhoods/907189667.geojson new file mode 100644 index 0000000..cc72bc8 --- /dev/null +++ b/fixtures/microhoods/907189667.geojson @@ -0,0 +1 @@ +{"id":907189667,"type":"Feature","bbox":[-73.9459474966501,40.73334251484472,-73.93069672352867,40.73942319382107],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9412843959835,40.73942319382107],[-73.94107807965406,40.73935013867679],[-73.94066575004395,40.73917763708403],[-73.94025382709673,40.73900759709554],[-73.93981012853915,40.73882614495484],[-73.93926838188615,40.73860705156218],[-73.93871677483259,40.73839817938116],[-73.93801091417784,40.73821524869553],[-73.93728807343591,40.73808580191439],[-73.934996,40.737869],[-73.93069672352867,40.73708835644196],[-73.93256595460049,40.73630462327788],[-73.93465196869765,40.73556635243764],[-73.93424480925954,40.73486592595396],[-73.93728332516415,40.73375085263014],[-73.93781580925705,40.73426969933076],[-73.93855073297867,40.73394448017381],[-73.93855500658626,40.73394209703034],[-73.94008587920666,40.73334251484472],[-73.94016538640982,40.73348637434484],[-73.94001807012931,40.7335404412755],[-73.94010436853127,40.73375295054123],[-73.9400670932704,40.73376215298009],[-73.94086498592716,40.73507040909123],[-73.94162192243847,40.73579878365015],[-73.94163596800149,40.73581907939844],[-73.9416229064841,40.73582389971837],[-73.94161655224326,40.73583284827435],[-73.94162472636484,40.73584144233843],[-73.94180143973269,40.7359625782013],[-73.94357675397869,40.73669825857148],[-73.94592145868829,40.73749379303683],[-73.9459286679214,40.73749626341618],[-73.94593478459853,40.73749945515356],[-73.94593932901478,40.73750311271367],[-73.94594215413973,40.73750712143962],[-73.94594514077707,40.73751837023105],[-73.9459474966501,40.73753313041541],[-73.94593726125991,40.73755644009674],[-73.94591827463343,40.73756757872573],[-73.94590575564355,40.73757336373207],[-73.94589726599038,40.73757539468752],[-73.94589209140622,40.73757559044024],[-73.94588728626472,40.73757485860489],[-73.94585686433788,40.73756888271063],[-73.94583902310521,40.73755573572593],[-73.94582536619045,40.73754895805148],[-73.94579426649551,40.73754851136675],[-73.94562459602591,40.73765927440449],[-73.94558536491942,40.73768435334368],[-73.94548811345321,40.73773700496676],[-73.94475495293815,40.73801128350536],[-73.94468245424407,40.73810797209325],[-73.9446579409492,40.73812957306675],[-73.94463860064849,40.73813835203953],[-73.94463143837856,40.73813924000432],[-73.94462383708877,40.73813888554919],[-73.94460803640324,40.73813489752271],[-73.94456692344403,40.73811557936732],[-73.94257885812208,40.73881602026871],[-73.942803842676,40.73886154746157],[-73.94280080814424,40.73888072353927],[-73.94255612805296,40.73902086574689],[-73.9421533811752,40.73908005176053],[-73.94146173463183,40.73924858362736],[-73.9412843959835,40.73942319382107]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000041,"geom:area_square_m":386463.096792,"geom:bbox":"-73.9459474967,40.7333425148,-73.9306967235,40.7394231938","geom:latitude":40.73659,"geom:longitude":-73.938577,"iso:country":"US","lbl:latitude":40.73664,"lbl:longitude":-73.937707,"lbl:max_zoom":18,"mps:latitude":40.73614,"mps:longitude":-73.938693,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.73614,"reversegeo:longitude":-73.938693,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85831303,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"69478340b9129102bacbaacab11968ff","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907189667,"neighbourhood_id":85831303,"region_id":85688543}],"wof:id":907189667,"wof:lastmodified":1566608543,"wof:name":"Blissville","wof:parent_id":85831303,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865549],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189669.geojson b/fixtures/microhoods/907189669.geojson new file mode 100644 index 0000000..3a9d41b --- /dev/null +++ b/fixtures/microhoods/907189669.geojson @@ -0,0 +1 @@ +{"id":907189669,"type":"Feature","bbox":[-73.84446779475307,40.57382799991651,-73.74364079497329,40.59565809617638],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.74396890592848,40.59565809617638],[-73.74364079497329,40.59460028639253],[-73.74462499793187,40.59466177479786],[-73.7458874270455,40.59439040863447],[-73.74662917813197,40.59430149355924],[-73.74692440482353,40.59412442853859],[-73.74698877652482,40.59410460071994],[-73.74723420758198,40.59406995021581],[-73.74814785335842,40.59361774991312],[-73.74895116248139,40.59341287562516],[-73.75014659352017,40.59275461888502],[-73.75022604796355,40.59271086778486],[-73.75155756485975,40.59141760314228],[-73.75335831392971,40.5909890974438],[-73.75354241944444,40.59094528775175],[-73.75556036620196,40.59088581746119],[-73.75595463623085,40.5908741980498],[-73.75598657768398,40.59088215826309],[-73.75789189861888,40.59135698827787],[-73.76017829846273,40.59160187502199],[-73.76134311678328,40.59172663385051],[-73.76295275572141,40.59161117743115],[-73.76371803996173,40.59147668464056],[-73.76371803996172,40.59147668464051],[-73.76717083510786,40.59086988257894],[-73.76796973006518,40.59072948296451],[-73.76872708525156,40.59087006895572],[-73.7690705064076,40.59081963048241],[-73.77088020413474,40.59055383908001],[-73.77593042821883,40.59018140832799],[-73.7758368859528,40.59032459875764],[-73.7766624348083,40.59006633216659],[-73.77761352076868,40.59005347120861],[-73.77918495356128,40.58959310889536],[-73.78043036101916,40.58959662142909],[-73.78187105424902,40.58920383342643],[-73.78453311048501,40.58847805521788],[-73.78768370715754,40.58792293771196],[-73.78853923030904,40.58755545665971],[-73.78853923030901,40.58755545665966],[-73.78878406873153,40.58745028886732],[-73.78945065591805,40.58762324290703],[-73.7943446052299,40.58675667898872],[-73.79602046510796,40.58631904717598],[-73.79670174417569,40.58636727152467],[-73.7968763617465,40.58631546092121],[-73.7968763617465,40.58631546092124],[-73.79846640546032,40.58584368065307],[-73.7994917499323,40.58581418097837],[-73.80091511175831,40.58540706093314],[-73.80184018400183,40.58535171084631],[-73.80330229481869,40.58488615648929],[-73.80374069598615,40.58500522472315],[-73.80377557037264,40.58501469648519],[-73.80562312964238,40.58451118378325],[-73.80651754277235,40.5844646867619],[-73.8078350296547,40.58401495035291],[-73.80887034203371,40.5840239708418],[-73.80951491959136,40.58382343175406],[-73.81160687156435,40.58364067524316],[-73.81306540553696,40.58351325521467],[-73.81352448727571,40.58347314904687],[-73.81640858005161,40.5826193878724],[-73.81928812030567,40.58176697435422],[-73.81973557340771,40.58166773153706],[-73.82222751244008,40.58111503216208],[-73.8226489797346,40.58093751426899],[-73.82717378884988,40.57944451295538],[-73.83146093331455,40.57841943762286],[-73.83346460870513,40.577779189561],[-73.83386923172182,40.57764989760892],[-73.8377849130498,40.57592368347551],[-73.83960964391407,40.57530428457978],[-73.84286174526336,40.57420036946357],[-73.84378359075201,40.57388745204182],[-73.84394286451244,40.57382799991651],[-73.84446779475307,40.57476591149599],[-73.8418797093979,40.57565676077658],[-73.8303647696227,40.5792764690606],[-73.82664369198841,40.58033559471465],[-73.82348026402563,40.58126742743246],[-73.8218318431455,40.58167187233921],[-73.82074733106444,40.581945157928],[-73.8181504495689,40.58266929156812],[-73.81378446029812,40.58386225799603],[-73.81034219856545,40.5847064621522],[-73.80703814632935,40.58590189680376],[-73.80562335573637,40.58600542551468],[-73.80104735054118,40.58635484166408],[-73.79760028658853,40.58699927030565],[-73.79383510761564,40.58771564409935],[-73.79071722325655,40.58834393753543],[-73.78930999494243,40.58872773149367],[-73.78623972058244,40.58969149563658],[-73.78388630758249,40.5904272694419],[-73.78231106653601,40.59062592142618],[-73.78068041715086,40.59102318440239],[-73.7774995772145,40.59140240496578],[-73.77495686811925,40.59155189801088],[-73.7725838609709,40.59169270414473],[-73.7706846300977,40.59158364341248],[-73.76908121368088,40.59149036232581],[-73.76751384156825,40.59143325475742],[-73.76687670395015,40.59153237648835],[-73.76523676782537,40.59168637927767],[-73.76325710447115,40.59185957542776],[-73.76134326895445,40.59204687148964],[-73.75981635164293,40.59219314084127],[-73.75876743015749,40.59230352797628],[-73.7578722351444,40.59238169675731],[-73.757357234727,40.59239698690958],[-73.75542699748,40.59247784247167],[-73.75418053236467,40.59252605859068],[-73.7536034806772,40.59276952218225],[-73.75261253427057,40.59318863391008],[-73.75178547502864,40.59354097998775],[-73.75114947138421,40.59380079244401],[-73.75081052016927,40.59394485036064],[-73.75052169345756,40.59404167663595],[-73.75006750989182,40.59413813663444],[-73.74936192382319,40.59429321890263],[-73.7476642033876,40.59474302821981],[-73.74606942121746,40.59512511514794],[-73.74396890592848,40.59565809617638]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000099,"geom:area_square_m":932929.187867,"geom:bbox":"-73.8444677948,40.5738279999,-73.743640795,40.5956580962","geom:latitude":40.587103,"geom:longitude":-73.790225,"iso:country":"US","lbl:latitude":40.560451,"lbl:longitude":-73.826902,"lbl:max_zoom":18,"mps:latitude":40.589163,"mps:longitude":-73.785304,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Rockaway Boardwalk"],"name:eng_x_variant":["Boardwalk"],"name:fra_x_preferred":["Boardwalk"],"name:jpn_x_preferred":["ボードウォーク"],"name:nld_x_preferred":["Vlonderpad"],"name:pol_x_preferred":["Promenada"],"name:rus_x_preferred":["Дощатая тропа"],"name:zho_x_preferred":["木板路"],"reversegeo:latitude":40.589163,"reversegeo:longitude":-73.785304,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85817375,102191575,907157757,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"adc9ed16fb936a8b9a007bcbdc51240b","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"macrohood_id":907157757,"microhood_id":907189669,"neighbourhood_id":85817375,"region_id":85688543}],"wof:id":907189669,"wof:lastmodified":1566608543,"wof:name":"Boardwalk","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85806543],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189673.geojson b/fixtures/microhoods/907189673.geojson new file mode 100644 index 0000000..07ee636 --- /dev/null +++ b/fixtures/microhoods/907189673.geojson @@ -0,0 +1 @@ +{"id":907189673,"type":"Feature","bbox":[-73.9948080000002,40.71730433206383,-73.9883996374796,40.72413600000021],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9883996374796,40.72286051582496],[-73.99108242433162,40.71730433206383],[-73.9948080000002,40.718457],[-73.99437800000015,40.7195190000003],[-73.9943934342075,40.71952520287487],[-73.99260400000018,40.72413600000021],[-73.9883996374796,40.72286051582496]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000025,"geom:area_square_m":236449.779486,"geom:bbox":"-73.994808,40.7173043321,-73.9883996375,40.724136","geom:latitude":40.720745,"geom:longitude":-73.991697,"iso:country":"US","lbl:latitude":40.720018,"lbl:longitude":-73.991775,"lbl:max_zoom":18,"mps:latitude":40.720692,"mps:longitude":-73.991742,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":16,"mz:tier_metro":1,"name:cat_x_preferred":["Bowery"],"name:ces_x_preferred":["Bowery"],"name:deu_x_preferred":["Bowery"],"name:fas_x_preferred":["بوری"],"name:fin_x_preferred":["Bowery"],"name:fra_x_preferred":["Bowery"],"name:ind_x_preferred":["Bowery"],"name:ita_x_preferred":["Bowery"],"name:jpn_x_preferred":["バワリー"],"name:kat_x_preferred":["ბოვერი"],"name:kor_x_preferred":["바우어리"],"name:nld_x_preferred":["Bowery"],"name:por_x_preferred":["Bowery"],"name:rus_x_preferred":["Бауэри"],"name:slk_x_preferred":["Bowery"],"name:spa_x_preferred":["Bowery"],"name:tur_x_preferred":["Bowery"],"name:zho_x_preferred":["包厘街"],"reversegeo:latitude":40.720692,"reversegeo:longitude":-73.991742,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85831563,102191575,907196817,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5df0548727467c980394cff2a4b1902f","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907196817,"microhood_id":907189673,"neighbourhood_id":85831563,"region_id":85688543}],"wof:id":907189673,"wof:lastmodified":1566608543,"wof:name":"Bowery","wof:parent_id":85831563,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869127],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189675.geojson b/fixtures/microhoods/907189675.geojson new file mode 100644 index 0000000..33e0d11 --- /dev/null +++ b/fixtures/microhoods/907189675.geojson @@ -0,0 +1 @@ +{"id":907189675,"type":"Feature","bbox":[-73.91190877871428,40.67619000000037,-73.90547917436025,40.6835101564017],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.91102157521259,40.67635015166492],[-73.9108736676978,40.67817672464339],[-73.91190877871428,40.68318894816007],[-73.91159524047028,40.6835101564017],[-73.90547917436027,40.68003942999983],[-73.90547917436025,40.68003942999983],[-73.907859601194,40.67813418293775],[-73.908088,40.67619000000037],[-73.91102157521259,40.67635015166492]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000025,"geom:area_square_m":230282.537275,"geom:bbox":"-73.9119087787,40.67619,-73.9054791744,40.6835101564","geom:latitude":40.679633,"geom:longitude":-73.90928,"iso:country":"US","lbl:latitude":40.677783,"lbl:longitude":-73.902079,"lbl:max_zoom":18,"mps:latitude":40.679742,"mps:longitude":-73.909061,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Broadway Jct"],"reversegeo:latitude":40.679742,"reversegeo:longitude":-73.909061,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85892907,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"edbc8244879c83ca1a6ed601ff079a5c","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907189675,"neighbourhood_id":85892907,"region_id":85688543}],"wof:id":907189675,"wof:lastmodified":1566608543,"wof:name":"Broadway Junction","wof:parent_id":85892907,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85807739],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189679.geojson b/fixtures/microhoods/907189679.geojson new file mode 100644 index 0000000..4490f08 --- /dev/null +++ b/fixtures/microhoods/907189679.geojson @@ -0,0 +1 @@ +{"id":907189679,"type":"Feature","bbox":[-73.89400320327921,40.83815083769329,-73.88446500000015,40.84809433446885],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89400320327921,40.84216202182262],[-73.8934765891691,40.8427280116469],[-73.89219087648827,40.84402369807636],[-73.89078045013004,40.84564031276754],[-73.8887336713957,40.84809433446885],[-73.88448556130925,40.84599516022891],[-73.88446500000015,40.845985],[-73.88519200000017,40.84519500000016],[-73.88601000000017,40.84058500000012],[-73.88654889323618,40.83933205673376],[-73.88724713235466,40.83815083769329],[-73.88843712058743,40.83859101021643],[-73.88839512709797,40.83883998997575],[-73.8884845377178,40.83909313714068],[-73.88862401176722,40.83916433498181],[-73.88939305512031,40.83945951007337],[-73.8901656264709,40.83991200947673],[-73.89400320327921,40.84216202182262]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":466902.020938,"geom:bbox":"-73.8940032033,40.8381508377,-73.884465,40.8480943345","geom:latitude":40.843207,"geom:longitude":-73.888725,"iso:country":"US","lbl:latitude":40.846219,"lbl:longitude":-73.892325,"lbl:max_zoom":18,"mps:latitude":40.843213,"mps:longitude":-73.888725,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["East Tremont"],"name:eng_x_variant":["E Tremont"],"name:fra_x_preferred":["East Tremont"],"name:jpn_x_preferred":["イースト・トレモント"],"reversegeo:latitude":40.843213,"reversegeo:longitude":-73.888725,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865671,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5329558"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cf6b0ba6c8787a5a701491538fd0a054","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907189679,"neighbourhood_id":85865671,"region_id":85688543}],"wof:id":907189679,"wof:lastmodified":1566608544,"wof:name":"East Tremont","wof:parent_id":85865671,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85816865],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907189681.geojson b/fixtures/microhoods/907189681.geojson new file mode 100644 index 0000000..7025052 --- /dev/null +++ b/fixtures/microhoods/907189681.geojson @@ -0,0 +1 @@ +{"id":907189681,"type":"Feature","bbox":[-73.78332043363014,40.78585421977454,-73.77063124537437,40.7967387273044],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.77407638297794,40.78591728401921],[-73.77435043337012,40.78585421977454],[-73.77483484830191,40.78636364053847],[-73.77533325503569,40.78681503136625],[-73.77578306114327,40.78717718841336],[-73.77624223859327,40.78751322934168],[-73.7767078344502,40.78781104828214],[-73.77713606350564,40.78804097966486],[-73.77774683272348,40.7883467584026],[-73.77839204538625,40.78863197560457],[-73.77892009500171,40.78884387982428],[-73.77952535578333,40.78903612603893],[-73.78011204291364,40.78918838262106],[-73.78072946918644,40.78933383290704],[-73.78146209704452,40.78946123978479],[-73.7821817346394,40.78955783046415],[-73.78311151980246,40.7896112851862],[-73.78244095611288,40.79037458560273],[-73.78174708763109,40.79113340664459],[-73.78107845970241,40.79167732177903],[-73.78107843444964,40.79167743108538],[-73.7810779838101,40.79167779767143],[-73.78077455549794,40.79299118123298],[-73.78077892481967,40.79318978586381],[-73.78085015490863,40.79325247937734],[-73.78083901425094,40.79327791606531],[-73.78158881545019,40.79346354101253],[-73.78158781636603,40.79344838542981],[-73.7815815324612,40.79344438658183],[-73.78163825608038,40.79331090101785],[-73.78168372830318,40.7933217570108],[-73.7816266232815,40.79345484000793],[-73.78160879379372,40.79345161570283],[-73.7816160767875,40.79347077130443],[-73.78165956956762,40.79348193372584],[-73.78164213433465,40.79352505337763],[-73.78082154869801,40.79331942900063],[-73.78080808737934,40.79335093271327],[-73.78072435069852,40.79333361882415],[-73.7807002551626,40.79364850590946],[-73.78079134483436,40.79403639575681],[-73.78100492078089,40.79438529451966],[-73.78152857545294,40.79472485577791],[-73.78181003762923,40.79480185241984],[-73.78190337831823,40.79490167978665],[-73.78258165591834,40.79488335802941],[-73.7828436204445,40.79490185399306],[-73.7831092937477,40.7949149363981],[-73.78317026275755,40.79487586588121],[-73.78324789295398,40.79478855571323],[-73.78328948833695,40.79475996026353],[-73.78331749095065,40.79475883236654],[-73.78332043363014,40.79478784576497],[-73.78328723879922,40.79482842185832],[-73.78327252890553,40.79483304872848],[-73.78326502927337,40.79487956617086],[-73.78327231278638,40.79489943364662],[-73.78325845226382,40.79492392753936],[-73.7832182224664,40.79496354679202],[-73.78317406856863,40.79498455804701],[-73.78305415481087,40.79499109708875],[-73.78200326103394,40.79497546250366],[-73.78200294430312,40.79497593186127],[-73.7820027851418,40.79497593839605],[-73.78182459908301,40.79507728971351],[-73.78172625575418,40.79542750602253],[-73.7816576105102,40.79555862334202],[-73.7815415003275,40.79565973732001],[-73.77989837558086,40.79623809836541],[-73.77980305052077,40.79620552893681],[-73.77980262936131,40.79620598764552],[-73.77980257462865,40.79620600482912],[-73.77944961456498,40.79657623806389],[-73.77946869192904,40.79660844129605],[-73.77943301516065,40.79666153857654],[-73.77936243341459,40.79668538782748],[-73.7792844635084,40.79667469847266],[-73.77927287774986,40.79663768381806],[-73.77871478762613,40.79659736019607],[-73.77843218488233,40.79669950171051],[-73.77806662937613,40.7967387273044],[-73.77762351135652,40.79664963325338],[-73.77687050489595,40.79644520469552],[-73.77612628144375,40.7960614795348],[-73.77471814244024,40.79485987012774],[-73.77431437491849,40.7944252613424],[-73.77401353451292,40.79403000153494],[-73.77363248188925,40.79274975621504],[-73.77320467172575,40.79224253223182],[-73.77286059684774,40.79197709653286],[-73.77232648173562,40.79148082462662],[-73.77225151847004,40.79123367143485],[-73.77227075371181,40.79094446378065],[-73.77224248787599,40.79074718949843],[-73.77224206821538,40.79057121284436],[-73.77225342777683,40.79048359978749],[-73.77213292826477,40.79017877433451],[-73.77202595346793,40.79006369256743],[-73.77194403848252,40.7900011624275],[-73.77185143898815,40.78996176831846],[-73.77177888393052,40.7899029111391],[-73.77173042355773,40.7897817888164],[-73.77174554616069,40.78969488352968],[-73.77063124537437,40.78846290603728],[-73.77082304387173,40.78798293318088],[-73.77099947386466,40.78788278434668],[-73.77139721921269,40.78765700792211],[-73.77173708761455,40.78746408480409],[-73.77354736618499,40.78690589002519],[-73.77396728847467,40.78678177421841],[-73.77426788469757,40.78675713454717],[-73.77434609217973,40.78677223413506],[-73.77439231197859,40.78681496092914],[-73.7743892931183,40.78685762119053],[-73.77420002662133,40.78696216313966],[-73.77419980868136,40.78702642524989],[-73.77422963897658,40.78706551756834],[-73.77432410105467,40.78708225357229],[-73.77444617141916,40.78717856502962],[-73.77501875089096,40.78739495027665],[-73.77628944855431,40.78851364819945],[-73.77633728818724,40.78848722575377],[-73.77504810438833,40.78719259407269],[-73.77486248240427,40.78707913013465],[-73.7748069536943,40.78697068727894],[-73.77474124745524,40.7869272358794],[-73.77463082546342,40.7869194186891],[-73.77458584666527,40.78687809258887],[-73.7745119519226,40.78672886084858],[-73.77445462503049,40.78667990922226],[-73.77426466694448,40.78665122914531],[-73.77409609895105,40.78629656530386],[-73.77407638297794,40.78591728401921]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000071,"geom:area_square_m":664075.658426,"geom:bbox":"-73.7833204336,40.7858542198,-73.7706312454,40.7967387273","geom:latitude":40.791553,"geom:longitude":-73.776811,"iso:country":"US","lbl:latitude":40.792831,"lbl:longitude":-73.77749,"lbl:max_zoom":18,"mps:latitude":40.792031,"mps:longitude":-73.777236,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:note":"Park, mostly","mz:tier_metro":1,"name:eng_x_preferred":["Fort Totten Park"],"name:eng_x_variant":["Fort Totten","Ft Totten"],"name:ita_x_preferred":["Fort Totten"],"name:rus_x_preferred":["Форт-Тоттен"],"reversegeo:latitude":40.792031,"reversegeo:longitude":-73.777236,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85892755,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3d63146479e16f1de935a883b7ccaba5","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907189681,"neighbourhood_id":85892755,"region_id":85688543}],"wof:id":907189681,"wof:lastmodified":1566608543,"wof:name":"Fort Totten","wof:parent_id":85892755,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85820237],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907190867.geojson b/fixtures/microhoods/907190867.geojson new file mode 100644 index 0000000..31a5f96 --- /dev/null +++ b/fixtures/microhoods/907190867.geojson @@ -0,0 +1 @@ +{"id":907190867,"type":"Feature","bbox":[-74.169827,40.54844800000019,-74.15992539029739,40.56107800000017],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.1626976160219,40.56077474902074],[-74.16258325533035,40.56043420257534],[-74.16249707877003,40.56015746964729],[-74.16239868891542,40.55981621583674],[-74.16229797015974,40.55953713972053],[-74.16215794424787,40.55918457337689],[-74.16200903770958,40.55876359957377],[-74.16174077897043,40.55799389255109],[-74.16148155624693,40.55720871828023],[-74.16093900650387,40.55564657652174],[-74.16005632498627,40.55305988084623],[-74.15995538698851,40.55273496780751],[-74.15992539029739,40.5525701801518],[-74.15994036612784,40.55233165974093],[-74.16001629348236,40.55187254497489],[-74.16010637858513,40.5513735954906],[-74.16017072207454,40.55092537189504],[-74.16021926538951,40.55058095233638],[-74.16027349588738,40.5503426571151],[-74.16024609503772,40.55008247597907],[-74.16011872180803,40.54946499153421],[-74.161168,40.54919100000021],[-74.166154,40.54860500000021],[-74.167099,40.54844800000019],[-74.16982253323238,40.56105731991319],[-74.169827,40.56107800000017],[-74.16494100000016,40.56011200000017],[-74.163779,40.56031700000027],[-74.1626976160219,40.56077474902074]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000088,"geom:area_square_m":824523.947911,"geom:bbox":"-74.169827,40.548448,-74.1599253903,40.561078","geom:latitude":40.554688,"geom:longitude":-74.164735,"iso:country":"US","lbl:latitude":40.559963,"lbl:longitude":-74.169614,"lbl:max_zoom":18,"mps:latitude":40.554757,"mps:longitude":-74.164639,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Greenridge"],"name:und_x_variant":["Marshland"],"reversegeo:latitude":40.554757,"reversegeo:longitude":-74.164639,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85822683,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9badeee98e8d814ee9ea05da8dfa3bd2","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907190867,"neighbourhood_id":85822683,"region_id":85688543}],"wof:id":907190867,"wof:lastmodified":1566608554,"wof:name":"Greenridge","wof:parent_id":85822683,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85823061],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907191337.geojson b/fixtures/microhoods/907191337.geojson new file mode 100644 index 0000000..fd6b39c --- /dev/null +++ b/fixtures/microhoods/907191337.geojson @@ -0,0 +1 @@ +{"id":907191337,"type":"Feature","bbox":[-73.88446500000015,40.842625,-73.87727299054976,40.8482730000002],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.87811632073301,40.842625],[-73.88446500000015,40.845985],[-73.88379,40.84678300000019],[-73.883109,40.8482730000002],[-73.88278932073304,40.8478697026061],[-73.87727299054976,40.84407938780693],[-73.87811632073301,40.842625]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":138584.148635,"geom:bbox":"-73.884465,40.842625,-73.8772729905,40.848273","geom:latitude":40.84531,"geom:longitude":-73.880923,"iso:country":"US","lbl:latitude":40.847918,"lbl:longitude":-73.877087,"lbl:max_zoom":18,"mps:latitude":40.845349,"mps:longitude":-73.880923,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"reversegeo:latitude":40.845349,"reversegeo:longitude":-73.880923,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85855481,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4a0474e81f8ecd0cb53bda080b4f0352","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907191337,"neighbourhood_id":85855481,"region_id":85688543}],"wof:id":907191337,"wof:lastmodified":1566608551,"wof:name":"Bronx Park South","wof:parent_id":85855481,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892763],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907191339.geojson b/fixtures/microhoods/907191339.geojson new file mode 100644 index 0000000..dca8331 --- /dev/null +++ b/fixtures/microhoods/907191339.geojson @@ -0,0 +1 @@ +{"id":907191339,"type":"Feature","bbox":[-73.87921976964458,40.83379780145317,-73.87482732359723,40.83615559057723],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.87527179006364,40.83605944942457],[-73.87482732359723,40.83415303702363],[-73.87741022215046,40.83379780145317],[-73.87921976964458,40.83444784907103],[-73.87722742640324,40.83592209700728],[-73.87716790749404,40.8359528255533],[-73.87705260878421,40.83600394231097],[-73.87692748500147,40.83605527580488],[-73.87679512580833,40.83609335430956],[-73.87664196212604,40.8361301496637],[-73.87649249702889,40.83614646751908],[-73.87633225877738,40.83615559057723],[-73.87615204378139,40.83614545825465],[-73.87527179006364,40.83605944942457]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":63539.415093,"geom:bbox":"-73.8792197696,40.8337978015,-73.8748273236,40.8361555906","geom:latitude":40.834906,"geom:longitude":-73.876713,"iso:country":"US","lbl:latitude":40.829021,"lbl:longitude":-73.878313,"lbl:max_zoom":18,"mps:latitude":40.83503,"mps:longitude":-73.876534,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ara_x_preferred":["نهر برونكس"],"name:cat_x_preferred":["Bronx River"],"name:ceb_x_preferred":["Bronx River"],"name:chv_x_preferred":["Бронкс"],"name:deu_x_preferred":["Bronx River"],"name:eng_x_preferred":["Bronx River Houses"],"name:eng_x_variant":["Bronx River"],"name:fra_x_preferred":["Bronx River"],"name:heb_x_preferred":["ברונקס"],"name:ind_x_preferred":["Sungai Bronx"],"name:ita_x_preferred":["Bronx"],"name:por_x_preferred":["Rio Bronx"],"name:rus_x_preferred":["Бронкс"],"name:spa_x_preferred":["Río Bronx"],"reversegeo:latitude":40.83503,"reversegeo:longitude":-73.876534,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85840627,102191575,907157031,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a12e6cd605987fd4dfdfb4de3e339276","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157031,"microhood_id":907191339,"neighbourhood_id":85840627,"region_id":85688543}],"wof:id":907191339,"wof:lastmodified":1566608551,"wof:name":"Bronx River","wof:parent_id":85840627,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892765],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907191451.geojson b/fixtures/microhoods/907191451.geojson new file mode 100644 index 0000000..0a7475a --- /dev/null +++ b/fixtures/microhoods/907191451.geojson @@ -0,0 +1 @@ +{"id":907191451,"type":"Feature","bbox":[-73.849478,40.68923800000022,-73.84105402256777,40.69937730886798],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.84497374825405,40.69937730886798],[-73.84287442480823,40.69517251954748],[-73.84339286128461,40.69515965010146],[-73.84105402256777,40.69036602885694],[-73.845026,40.68923800000022],[-73.84773478561398,40.69495399484592],[-73.84892761987494,40.69747107646799],[-73.849478,40.698196],[-73.84701303722179,40.69885557512632],[-73.84502077795679,40.69934998024539],[-73.84497374825405,40.69937730886798]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":394080.024321,"geom:bbox":"-73.849478,40.689238,-73.8410540226,40.6993773089","geom:latitude":40.694412,"geom:longitude":-73.845143,"iso:country":"US","lbl:latitude":40.696412,"lbl:longitude":-73.850685,"lbl:max_zoom":18,"mps:latitude":40.69427,"mps:longitude":-73.845206,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Brooklyn Mnr"],"reversegeo:latitude":40.69427,"reversegeo:longitude":-73.845206,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85844441,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"aa184682edad94b102d6ff03fb50822c","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907191451,"neighbourhood_id":85844441,"region_id":85688543}],"wof:id":907191451,"wof:lastmodified":1566608551,"wof:name":"Brooklyn Manor","wof:parent_id":85844441,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868671],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907195817.geojson b/fixtures/microhoods/907195817.geojson new file mode 100644 index 0000000..7c15eb7 --- /dev/null +++ b/fixtures/microhoods/907195817.geojson @@ -0,0 +1 @@ +{"id":907195817,"type":"Feature","bbox":[-74.23312206000057,40.50177029513224,-74.22311614145036,40.50865900000029],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.23131724604166,40.50179858574268],[-74.23312206000057,40.506743862242],[-74.23264303817813,40.5069189920793],[-74.23207907120269,40.50710578127143],[-74.23152145192891,40.50729183047505],[-74.23108672445723,40.50742653063052],[-74.23049855636951,40.50760495004058],[-74.22995195398437,40.50774645465537],[-74.2292282852548,40.50790535543559],[-74.22852283394737,40.50803985778876],[-74.22777598848981,40.50816699402701],[-74.22701483765317,40.50827909649952],[-74.22608634129911,40.5083936159676],[-74.2249320800949,40.50850774918848],[-74.22321500000024,40.50865900000029],[-74.22311614145036,40.5024530006705],[-74.22500232195885,40.50177029513224],[-74.22729413511011,40.50229749945599],[-74.2297158423708,40.50208568758786],[-74.23033892500197,40.5018041783721],[-74.23055401780145,40.50194685465995],[-74.23124443244203,40.50182686031908],[-74.23131724604166,40.50179858574268]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":514536.189978,"geom:bbox":"-74.23312206,40.5017702951,-74.2231161415,40.508659","geom:latitude":40.505138,"geom:longitude":-74.227559,"iso:country":"US","lbl:latitude":40.504634,"lbl:longitude":-74.230156,"lbl:max_zoom":18,"mps:latitude":40.505237,"mps:longitude":-74.227559,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Butler Mnr"],"reversegeo:latitude":40.505237,"reversegeo:longitude":-74.227559,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85852385,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ef42d9b5dbea16f59c3693c0536fa653","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907195817,"neighbourhood_id":85852385,"region_id":85688543}],"wof:id":907195817,"wof:lastmodified":1566608541,"wof:name":"Butler Manor","wof:parent_id":85852385,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865881],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907195819.geojson b/fixtures/microhoods/907195819.geojson new file mode 100644 index 0000000..46ba4bb --- /dev/null +++ b/fixtures/microhoods/907195819.geojson @@ -0,0 +1 @@ +{"id":907195819,"type":"Feature","bbox":[-73.991409,40.69635,-73.98976,40.700767],"geometry":{"type":"Polygon","coordinates":[[[-73.99093,40.700767],[-73.98976,40.70073],[-73.990044,40.69635],[-73.991187,40.696387],[-73.99136,40.69701],[-73.991409,40.698632],[-73.99103,40.699845],[-73.99093,40.700767]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":54955.409442,"geom:bbox":"-73.991409,40.69635,-73.98976,40.700767","geom:latitude":40.698522,"geom:longitude":-73.990577,"iso:country":"US","lbl:latitude":40.692481,"lbl:longitude":-73.9902,"lbl:max_zoom":18,"mps:latitude":40.69847,"mps:longitude":-73.990659,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Cadman Plaza"],"name:eng_x_variant":["Cadman Plz","Cadman Plaza Park"],"name:rus_x_preferred":["Кэдман-Плаза"],"reversegeo:latitude":40.69847,"reversegeo:longitude":-73.990659,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869191,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9100a4c3869d98abcbe28be1894a2d8d","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907195819,"neighbourhood_id":85869191,"region_id":85688543}],"wof:id":907195819,"wof:lastmodified":1617131452,"wof:name":"Cadman Plaza","wof:parent_id":85869191,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869151],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907196173.geojson b/fixtures/microhoods/907196173.geojson new file mode 100644 index 0000000..66d9384 --- /dev/null +++ b/fixtures/microhoods/907196173.geojson @@ -0,0 +1 @@ +{"id":907196173,"type":"Feature","bbox":[-73.96042721745796,40.77942656731454,-73.9508766288479,40.78790655445967],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9508766288479,40.78584837748313],[-73.95557329252578,40.77942656731454],[-73.96042721745796,40.78151596488552],[-73.95576033299818,40.78790655445967],[-73.9508766288479,40.78584837748313]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000041,"geom:area_square_m":382930.530685,"geom:bbox":"-73.9604272175,40.7794265673,-73.9508766288,40.7879065545","geom:latitude":40.783674,"geom:longitude":-73.955657,"iso:country":"US","lbl:latitude":40.78442,"lbl:longitude":-73.954313,"lbl:max_zoom":18,"mps:latitude":40.783663,"mps:longitude":-73.955657,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ast_x_preferred":["Carnegie Hill"],"name:deu_x_preferred":["Carnegie Hill"],"name:eng_x_preferred":["Carnegie Hills"],"name:eng_x_variant":["Carnegie Hill"],"name:fra_x_preferred":["Carnegie Hill"],"name:ind_x_preferred":["Carnegie Hill"],"name:jpn_x_preferred":["カーネギー・ヒル"],"name:kor_x_preferred":["카네기힐"],"name:lat_x_preferred":["Carnegie Hill"],"name:nld_x_preferred":["Carnegie Hill"],"name:pol_x_preferred":["Carnegie Hill"],"name:por_x_preferred":["Carnegie Hill"],"name:rus_x_preferred":["Карнеги-Хилл"],"name:spa_x_preferred":["Carnegie Hill"],"name:swe_x_preferred":["Carnegie Hill"],"name:zho_x_preferred":["卡耐基山"],"reversegeo:latitude":40.783663,"reversegeo:longitude":-73.955657,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865691,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1043965"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3a1bca4833223015bc3523220bbbd86e","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":907196173,"neighbourhood_id":85865691,"region_id":85688543}],"wof:id":907196173,"wof:lastmodified":1566608550,"wof:name":"Carnegie Hill","wof:parent_id":85865691,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869159],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907196531.geojson b/fixtures/microhoods/907196531.geojson new file mode 100644 index 0000000..c159a96 --- /dev/null +++ b/fixtures/microhoods/907196531.geojson @@ -0,0 +1 @@ +{"id":907196531,"type":"Feature","bbox":[-73.87636875867578,40.6740213623896,-73.86107048844883,40.68318924644225],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.86302694371781,40.67462020308112],[-73.86495413806725,40.67524759544064],[-73.86687218480476,40.67590324908549],[-73.86850003746858,40.67653099379523],[-73.86961043938129,40.67695183520164],[-73.87063700150262,40.67724559494442],[-73.87175233971438,40.67752499989852],[-73.8724712430664,40.67775205141533],[-73.87279525362901,40.67791817871388],[-73.87305706179554,40.6781115809086],[-73.87329242416355,40.67834077514713],[-73.87345487736276,40.67853571605401],[-73.87373496539647,40.67894087416078],[-73.8739422087435,40.67920586158333],[-73.87417346693321,40.67940735636428],[-73.87450180446534,40.67966824575742],[-73.87497701772274,40.67992497398642],[-73.87544165915173,40.68010774250394],[-73.87636875867578,40.68038701239295],[-73.87633261697529,40.68038737320867],[-73.86629503588273,40.68318924644225],[-73.866295,40.68318900000011],[-73.866027,40.68191800000046],[-73.86410096307416,40.68237285121538],[-73.86328311756516,40.67907750301023],[-73.863282,40.67907300000035],[-73.86239087081393,40.67916058962106],[-73.862346,40.67916500000032],[-73.86131838995043,40.67502105187621],[-73.86107048844883,40.6740213623898],[-73.86107048844883,40.6740213623896],[-73.86302694371781,40.67462020308112]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000068,"geom:area_square_m":633371.651741,"geom:bbox":"-73.8763687587,40.6740213624,-73.8610704884,40.6831892464","geom:latitude":40.678953,"geom:longitude":-73.867501,"iso:country":"US","lbl:latitude":40.672133,"lbl:longitude":-73.867738,"lbl:max_zoom":18,"mps:latitude":40.679528,"mps:longitude":-73.868034,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["City Line"],"name:spa_x_preferred":["City Line"],"reversegeo:latitude":40.679528,"reversegeo:longitude":-73.868034,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85816607,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5123279"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4d9756a3a889cab406dd0ea90a221856","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907196531,"neighbourhood_id":85816607,"region_id":85688543}],"wof:id":907196531,"wof:lastmodified":1566608550,"wof:name":"City Line","wof:parent_id":85816607,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865629],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907196771.geojson b/fixtures/microhoods/907196771.geojson new file mode 100644 index 0000000..392b81f --- /dev/null +++ b/fixtures/microhoods/907196771.geojson @@ -0,0 +1 @@ +{"id":907196771,"type":"Feature","bbox":[-73.96259576791796,40.66321736719257,-73.92545345227222,40.67163],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96259576791796,40.67163],[-73.95925836251749,40.67090376534912],[-73.9565664715026,40.67038402860185],[-73.95527611832209,40.67012386174945],[-73.95497971398802,40.67007331391282],[-73.95371186129057,40.66998867352023],[-73.93667878700712,40.66909515160813],[-73.92560589456635,40.66851428923052],[-73.92582913263003,40.66621745272367],[-73.92545345227222,40.66590450841488],[-73.93077976019309,40.66360092176113],[-73.93261863788712,40.66351437664225],[-73.93992600000016,40.6639],[-73.94546300000016,40.66423],[-73.96056253583609,40.66330963279984],[-73.96095249148867,40.66330600507649],[-73.96186030375401,40.66321736719257],[-73.961258,40.66480200000022],[-73.96259576791796,40.67163]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000205,"geom:area_square_m":1919421.184461,"geom:bbox":"-73.9625957679,40.6632173672,-73.9254534523,40.67163","geom:latitude":40.666795,"geom:longitude":-73.94554,"iso:country":"US","lbl:latitude":40.668556,"lbl:longitude":-73.948098,"lbl:max_zoom":18,"mps:latitude":40.666893,"mps:longitude":-73.94554,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.666893,"reversegeo:longitude":-73.94554,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85867069,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"595af1db5ed10e858c69fe533e9ab83b","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907196771,"neighbourhood_id":85867069,"region_id":85688543}],"wof:id":907196771,"wof:lastmodified":1566608550,"wof:name":"Crown Heights South","wof:parent_id":85867069,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892925],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907196815.geojson b/fixtures/microhoods/907196815.geojson new file mode 100644 index 0000000..78db60f --- /dev/null +++ b/fixtures/microhoods/907196815.geojson @@ -0,0 +1 @@ +{"id":907196815,"type":"Feature","bbox":[-73.96323447891271,40.63589179962218,-73.95860430126199,40.64153250728405],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.95930173818354,40.64153250728405],[-73.95860430126199,40.63775669353003],[-73.96250523380428,40.63589179962218],[-73.96323447891271,40.63969186960995],[-73.95930173818354,40.64153250728405]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":151615.908215,"geom:bbox":"-73.9632344789,40.6358917996,-73.9586043013,40.6415325073","geom:latitude":40.638719,"geom:longitude":-73.960915,"iso:country":"US","lbl:latitude":40.637605,"lbl:longitude":-73.962339,"lbl:max_zoom":18,"mps:latitude":40.638715,"mps:longitude":-73.960915,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.638715,"reversegeo:longitude":-73.960915,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869833,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6e67526653868738135cc3bce7188a24","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907196815,"neighbourhood_id":85869833,"region_id":85688543}],"wof:id":907196815,"wof:lastmodified":1566608550,"wof:name":"Ditmas Park","wof:parent_id":85869833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892929],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907197987.geojson b/fixtures/microhoods/907197987.geojson new file mode 100644 index 0000000..95f9e40 --- /dev/null +++ b/fixtures/microhoods/907197987.geojson @@ -0,0 +1 @@ +{"id":907197987,"type":"Feature","bbox":[-73.94059355215076,40.75089441986701,-73.9218765245996,40.75910711754183],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9218765245996,40.75289919641136],[-73.93427835229225,40.75875402135896],[-73.93501881648538,40.75910711754183],[-73.94059355215076,40.75300117573802],[-73.93675135989031,40.75096031601249],[-73.93609025779787,40.75164886120694],[-73.93468658233196,40.75089441986701],[-73.93434262783352,40.75110793992726],[-73.9339964416982,40.75130828531119],[-73.93363655239656,40.7515022779021],[-73.93323527986536,40.75164479212462],[-73.93287098893396,40.75176534542647],[-73.93249430468661,40.75185391556766],[-73.93209273944625,40.75190125981825],[-73.93155383136465,40.75193002438301],[-73.93029152933855,40.75195211533038],[-73.9287870711649,40.75196678475045],[-73.9270307415407,40.75200813441862],[-73.92585674703015,40.75204582748719],[-73.9218765245996,40.75289919641136]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000076,"geom:area_square_m":714375.830841,"geom:bbox":"-73.9405935522,40.7508944199,-73.9218765246,40.7591071175","geom:latitude":40.754341,"geom:longitude":-73.932523,"iso:country":"US","lbl:latitude":40.741396,"lbl:longitude":-73.940859,"lbl:max_zoom":18,"mps:latitude":40.754952,"mps:longitude":-73.934224,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.754952,"reversegeo:longitude":-73.934224,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85831303,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e59e9d571c15523d057a96c661f9b9ab","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907197987,"neighbourhood_id":85831303,"region_id":85688543}],"wof:id":907197987,"wof:lastmodified":1566608555,"wof:name":"Dutch Kills","wof:parent_id":85831303,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869199],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907203481.geojson b/fixtures/microhoods/907203481.geojson new file mode 100644 index 0000000..5c21805 --- /dev/null +++ b/fixtures/microhoods/907203481.geojson @@ -0,0 +1 @@ +{"id":907203481,"type":"Feature","bbox":[-73.82710151144015,40.74611776883708,-73.79459396909336,40.76134894525288],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.79461661527785,40.75362455450908],[-73.794727,40.75056500000026],[-73.79481,40.74841486161719],[-73.79459396909336,40.74655764881301],[-73.79782166713326,40.74687243326906],[-73.79820249824,40.7468873348976],[-73.79848618505157,40.74687641060424],[-73.79893026347966,40.74683556114893],[-73.79953821731912,40.74677418644117],[-73.80016231138632,40.74670792035702],[-73.80116697678885,40.74661261163518],[-73.80191980433885,40.74651980951594],[-73.80279447030506,40.74644220831151],[-73.80351814081047,40.74639353125194],[-73.80301277105484,40.7477269742547],[-73.80294216981747,40.7479735435484],[-73.80290650338621,40.74825335625529],[-73.80291560990624,40.7486095213545],[-73.80295551274526,40.74907160933077],[-73.80304332018366,40.74973094800222],[-73.80745494406814,40.75009798280182],[-73.81379382680714,40.74623343650354],[-73.81392882230169,40.74615283026993],[-73.81412142702354,40.74611776883708],[-73.81432509201761,40.74617080260305],[-73.81519197886587,40.74665919772643],[-73.81567729125481,40.74685840147473],[-73.81609784269763,40.74698629255199],[-73.81672002549794,40.74711332390902],[-73.8174892283358,40.74725093242067],[-73.82042314127638,40.74824487687786],[-73.82179608982244,40.74892810673731],[-73.82453028869601,40.7516650207631],[-73.82191139677495,40.75315178336889],[-73.82542150815573,40.75605925269787],[-73.82578466285669,40.75635056947156],[-73.82609233691481,40.75653871968062],[-73.82710151144015,40.75713675579737],[-73.8251967477526,40.75765285815434],[-73.8231542063608,40.75815560659947],[-73.81839484959767,40.7538763131276],[-73.81570116085783,40.7556241480837],[-73.82068907254576,40.7588401070978],[-73.81099417407475,40.76134894525288],[-73.79499357501193,40.75785960612982],[-73.79481370176721,40.75604814284683],[-73.79461661527785,40.75362455450908]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000327,"geom:area_square_m":3067028.801533,"geom:bbox":"-73.8271015114,40.7461177688,-73.7945939691,40.7613489453","geom:latitude":40.753648,"geom:longitude":-73.80879,"iso:country":"US","lbl:latitude":40.754848,"lbl:longitude":-73.795264,"lbl:max_zoom":18,"mps:latitude":40.754819,"mps:longitude":-73.810105,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["E Flushing"],"reversegeo:latitude":40.754819,"reversegeo:longitude":-73.810105,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5c79f9776876c79b3eef9ef2aac29ff4","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907203481,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907203481,"wof:lastmodified":1566608542,"wof:name":"East Flushing","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892845],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907211067.geojson b/fixtures/microhoods/907211067.geojson new file mode 100644 index 0000000..73a7091 --- /dev/null +++ b/fixtures/microhoods/907211067.geojson @@ -0,0 +1 @@ +{"id":907211067,"type":"Feature","bbox":[-73.94207468450308,40.70195159982379,-73.92073,40.72057600000014],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.93687724091511,40.70195159982379],[-73.93713396335252,40.70256891369628],[-73.9374692281439,40.7032543602982],[-73.93761004137941,40.70342905454691],[-73.93780931794507,40.70364980703786],[-73.93804297370346,40.70383402216029],[-73.93827333401484,40.70395658416726],[-73.93846668661834,40.70409096354713],[-73.93870949242108,40.70427616974711],[-73.93891223107289,40.70445872194203],[-73.93910455765595,40.7047117478061],[-73.9392479589554,40.70503466562828],[-73.93932754114132,40.7053584900944],[-73.93939311545729,40.70568560090639],[-73.9397475675118,40.70782381009094],[-73.94003406559995,40.70961168326244],[-73.94029337789787,40.71110578601257],[-73.9403592070385,40.71145694142233],[-73.94048048707555,40.71183725272827],[-73.94081582385347,40.71252602788127],[-73.94160327436097,40.71406768781808],[-73.94197500403666,40.71493614004203],[-73.94203103780359,40.71509533783178],[-73.94206206399768,40.71524428362792],[-73.94207468450308,40.71544591920191],[-73.94207308891005,40.71567544161862],[-73.9420318214143,40.71594891477153],[-73.9419921957424,40.71613027480323],[-73.94188458617847,40.71647740117414],[-73.94172079658361,40.71685954311956],[-73.9416350430759,40.71705174310841],[-73.9415070764906,40.71725261851362],[-73.94127706980306,40.71757663788652],[-73.94093939499298,40.71800697891269],[-73.94050647878085,40.71861489544541],[-73.94049143111448,40.71864334963138],[-73.9404930757912,40.71867717748733],[-73.94061376337547,40.71941977559666],[-73.94060093435374,40.71944096101983],[-73.93620900000013,40.72057600000014],[-73.93470400000012,40.717209],[-73.92463060957708,40.71985490299261],[-73.92451999415147,40.71961273042439],[-73.92457948088895,40.719162523335],[-73.92470227807115,40.71868830410081],[-73.92499204426565,40.71838478826399],[-73.9271483574932,40.71787142410481],[-73.92837930101506,40.71757836729026],[-73.92887965180022,40.71772031862379],[-73.92970539915329,40.7170492793893],[-73.92931999766097,40.71611200883284],[-73.92947206925157,40.7157252672595],[-73.92947356921466,40.7157214526213],[-73.93219753146349,40.71497210749046],[-73.93214128153336,40.71468129159181],[-73.93175357182271,40.71474167550586],[-73.931240670595,40.71372481088491],[-73.93164527391679,40.71334279375835],[-73.9326390524248,40.71305258616955],[-73.93203262980512,40.7115902230744],[-73.93338484615317,40.71123372774585],[-73.93328349320251,40.71097870745812],[-73.93190101920874,40.71133847142838],[-73.93093227547746,40.70916531125425],[-73.93050100083205,40.70868122503976],[-73.93036094565792,40.70871773853546],[-73.93025038849095,40.7089279129202],[-73.93154613746857,40.71185535175128],[-73.93077894737064,40.71216042795557],[-73.93161032734857,40.71203802318321],[-73.93184868877472,40.71256477418336],[-73.93173436851781,40.71274929223824],[-73.93042294313085,40.71317255867117],[-73.93105231901728,40.71461022392344],[-73.93085190134035,40.71490298559292],[-73.9284388181461,40.71553094957596],[-73.928618527936,40.71594945972534],[-73.92890601265026,40.71661895731231],[-73.9282325304494,40.7171064537509],[-73.92700302745772,40.71739662697857],[-73.92464513864002,40.7179531089175],[-73.9236398926207,40.71732065749364],[-73.92360707092848,40.71726577667926],[-73.92329498309114,40.71674393781381],[-73.92328573702456,40.716728477561],[-73.92305500014339,40.71634266479349],[-73.92398314813715,40.71597709381307],[-73.92431329961585,40.71584705657698],[-73.9248855350761,40.71526718765272],[-73.92433589757117,40.71412259346653],[-73.92405909737055,40.71411155964503],[-73.92392811973541,40.71410154449952],[-73.92392000000012,40.71407400000022],[-73.922116,40.712928],[-73.92179204703694,40.71207957129039],[-73.9216601821272,40.71173421876124],[-73.9213478330812,40.71091618056334],[-73.921326,40.71085900000013],[-73.920779067441,40.71049620140274],[-73.92073,40.71046100000024],[-73.921676,40.70947100000021],[-73.92598,40.7057920000001],[-73.933951,40.70267400000022],[-73.93687724091511,40.70195159982379]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000248,"geom:area_square_m":2320737.127796,"geom:bbox":"-73.9420746845,40.7019515998,-73.92073,40.720576","geom:latitude":40.71154,"geom:longitude":-73.932336,"iso:country":"US","lbl:latitude":40.710703,"lbl:longitude":-73.934637,"lbl:max_zoom":18,"mps:latitude":40.706815,"mps:longitude":-73.934671,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["East Williasburg"],"name:eng_x_variant":["E Williamsburg"],"name:und_x_variant":["East Williamsburg"],"reversegeo:latitude":40.706815,"reversegeo:longitude":-73.934671,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85857853,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"41c0b5df20bc9db72e634bdc500053b9","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907211067,"neighbourhood_id":85857853,"region_id":85688543}],"wof:id":907211067,"wof:lastmodified":1566608542,"wof:name":"East Williamsburg","wof:parent_id":85857853,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869205,85865605],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212007.geojson b/fixtures/microhoods/907212007.geojson new file mode 100644 index 0000000..442d8cd --- /dev/null +++ b/fixtures/microhoods/907212007.geojson @@ -0,0 +1 @@ +{"id":907212007,"type":"Feature","bbox":[-74.14494932363466,40.57187352288683,-74.12562623405144,40.58395331837774],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.14425011715544,40.57187352288683],[-74.14494932363466,40.5757271971674],[-74.14329521918297,40.57586315095784],[-74.14344393549575,40.57660673252234],[-74.13553222765151,40.57845081480176],[-74.13511582197535,40.57874824742748],[-74.13526453828821,40.57981900488014],[-74.13321225317071,40.58002720771805],[-74.13371788863452,40.58178206020999],[-74.13282559075742,40.58225795241119],[-74.13154663046669,40.5820200063105],[-74.13035689996377,40.58288256092508],[-74.12916716946086,40.58395331837774],[-74.12782872264508,40.58315025028838],[-74.12702565455562,40.5824958985117],[-74.1263829026513,40.58249024729177],[-74.12608309056459,40.5805771606432],[-74.12742510657189,40.57979193851126],[-74.12692541976068,40.57894960931518],[-74.12683975916445,40.5786355204623],[-74.12706818742112,40.57816438718324],[-74.12713957125126,40.57762187007396],[-74.12698252682482,40.57639406819495],[-74.12669699150419,40.57623702376842],[-74.12646856324753,40.5769794156023],[-74.12562623405144,40.57686520147401],[-74.12593445185846,40.5757701193024],[-74.13315876281048,40.57347909128994],[-74.14188348948166,40.57223270176555],[-74.14425011715544,40.57187352288683]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000114,"geom:area_square_m":1070358.217304,"geom:bbox":"-74.1449493236,40.5718735229,-74.1256262341,40.5839533184","geom:latitude":40.576983,"geom:longitude":-74.134338,"iso:country":"US","lbl:latitude":40.57857,"lbl:longitude":-74.122653,"lbl:max_zoom":18,"mps:latitude":40.577059,"mps:longitude":-74.132581,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Egbertville"],"reversegeo:latitude":40.577059,"reversegeo:longitude":-74.132581,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865887,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5347724"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"284c4025ecf8a03efe86a07c7255d7b2","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907212007,"neighbourhood_id":85865887,"region_id":85688543}],"wof:id":907212007,"wof:lastmodified":1566608555,"wof:name":"Egbertville","wof:parent_id":85865887,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869213],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212517.geojson b/fixtures/microhoods/907212517.geojson new file mode 100644 index 0000000..65f873a --- /dev/null +++ b/fixtures/microhoods/907212517.geojson @@ -0,0 +1 @@ +{"id":907212517,"type":"Feature","bbox":[-73.94319142384614,40.63200403784748,-73.92470529863643,40.64526662484501],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.92470529863643,40.64481701190135],[-73.9259657758323,40.63823199418805],[-73.93738560299708,40.6322856858553],[-73.94181904572015,40.63200403784748],[-73.94319142384614,40.64466743929312],[-73.93253718967628,40.64526662484501],[-73.93244457988065,40.64432025938925],[-73.92470529863643,40.64481701190135]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000178,"geom:area_square_m":1670673.880172,"geom:bbox":"-73.9431914238,40.6320040378,-73.9247052986,40.6452666248","geom:latitude":40.639532,"geom:longitude":-73.934973,"iso:country":"US","lbl:latitude":40.640687,"lbl:longitude":-73.934461,"lbl:max_zoom":18,"mps:latitude":40.639813,"mps:longitude":-73.935149,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["Farragut"],"name:ceb_x_preferred":["Farragut"],"name:deu_x_preferred":["Farragut"],"name:fra_x_preferred":["Farragut"],"name:ita_x_preferred":["Farragut"],"name:nld_x_preferred":["Farragut"],"name:pol_x_preferred":["Farragut"],"name:srp_x_preferred":["Фарагут"],"name:ukr_x_preferred":["Фаррагат"],"name:vol_x_preferred":["Farragut"],"reversegeo:latitude":40.639813,"reversegeo:longitude":-73.935149,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85816313,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7af338b51e84665a7632f61211e6d9bc","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907212517,"neighbourhood_id":85816313,"region_id":85688543}],"wof:id":907212517,"wof:lastmodified":1566608555,"wof:name":"Farragut","wof:parent_id":85816313,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892933],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212521.geojson b/fixtures/microhoods/907212521.geojson new file mode 100644 index 0000000..6c85c58 --- /dev/null +++ b/fixtures/microhoods/907212521.geojson @@ -0,0 +1 @@ +{"id":907212521,"type":"Feature","bbox":[-73.85564514643653,40.87181300000015,-73.84324100000015,40.8821920000002],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.85555000000011,40.87181300000015],[-73.85564514643653,40.87385643856438],[-73.8556362833304,40.87400290196728],[-73.85560730934385,40.87413992532438],[-73.85555762691503,40.87428444639987],[-73.85378257650305,40.8774755565008],[-73.85350241029111,40.87797978738504],[-73.85324671927476,40.87839202548678],[-73.85214585835804,40.88007127386683],[-73.85178946738291,40.88060226195739],[-73.85143592630551,40.88110332461587],[-73.85065,40.8821920000002],[-73.84324100000015,40.8791090000002],[-73.84546,40.87735],[-73.85068900000016,40.875487],[-73.8536370000001,40.8733],[-73.85555000000011,40.87181300000015]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000051,"geom:area_square_m":475594.223827,"geom:bbox":"-73.8556451464,40.871813,-73.843241,40.882192","geom:latitude":40.877721,"geom:longitude":-73.850214,"iso:country":"US","lbl:latitude":40.879257,"lbl:longitude":-73.848724,"lbl:max_zoom":18,"mps:latitude":40.878818,"mps:longitude":-73.849698,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.878818,"reversegeo:longitude":-73.849698,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869805,102191575,907157027,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3fdc0c956070ffe1b04e7986b08faf1d","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157027,"microhood_id":907212521,"neighbourhood_id":85869805,"region_id":85688543}],"wof:id":907212521,"wof:lastmodified":1566608556,"wof:name":"Fishbay","wof:parent_id":85869805,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892775],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212531.geojson b/fixtures/microhoods/907212531.geojson new file mode 100644 index 0000000..49e4268 --- /dev/null +++ b/fixtures/microhoods/907212531.geojson @@ -0,0 +1 @@ +{"id":907212531,"type":"Feature","bbox":[-73.96235302646089,40.62909551878467,-73.9570257900411,40.63299560739468],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9576703959597,40.63299560739468],[-73.9570257900411,40.62959620099323],[-73.957124,40.62958600000019],[-73.96171516217314,40.62909551878467],[-73.96235302646089,40.63249062205775],[-73.9576703959597,40.63299560739468]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":152411.312038,"geom:bbox":"-73.9623530265,40.6290955188,-73.95702579,40.6329956074","geom:latitude":40.631044,"geom:longitude":-73.959691,"iso:country":"US","lbl:latitude":40.630932,"lbl:longitude":-73.962038,"lbl:max_zoom":18,"mps:latitude":40.631045,"mps:longitude":-73.95969,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Fiske Terrace"],"name:eng_x_variant":["Fiske Ter"],"name:jpn_x_preferred":["フィスク・テラス"],"name:spa_x_preferred":["Fiske Terrace"],"name:zho_x_preferred":["乔治敦"],"reversegeo:latitude":40.631045,"reversegeo:longitude":-73.95969,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869833,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5455188"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"edd5eeeaab50d78dfcd251bf9d59fd46","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907212531,"neighbourhood_id":85869833,"region_id":85688543}],"wof:id":907212531,"wof:lastmodified":1566608556,"wof:name":"Fiske Terrace","wof:parent_id":85869833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869241],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212535.geojson b/fixtures/microhoods/907212535.geojson new file mode 100644 index 0000000..0de8208 --- /dev/null +++ b/fixtures/microhoods/907212535.geojson @@ -0,0 +1 @@ +{"id":907212535,"type":"Feature","bbox":[-73.93586642581803,40.84693427299283,-73.92229774992954,40.861552],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.92853755085196,40.84693427299283],[-73.931078474063,40.84810619517231],[-73.93261684031856,40.84874153569857],[-73.93586642581803,40.85007247973358],[-73.93148951631707,40.85937872307962],[-73.931313,40.859328],[-73.93012200000014,40.858744],[-73.92762500000012,40.859012],[-73.92709100000017,40.85976000000011],[-73.92471,40.861552],[-73.92293,40.858941],[-73.92290600000011,40.855912],[-73.92253051890998,40.85568023183663],[-73.92229774992954,40.85559872142488],[-73.92406857586813,40.85331939199816],[-73.92444065139958,40.85284047270461],[-73.92778659839993,40.8480168661117],[-73.92853755085196,40.84693427299283]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00011,"geom:area_square_m":1025308.758974,"geom:bbox":"-73.9358664258,40.846934273,-73.9222977499,40.861552","geom:latitude":40.854074,"geom:longitude":-73.928779,"iso:country":"US","lbl:latitude":40.857483,"lbl:longitude":-73.93012,"lbl:max_zoom":18,"mps:latitude":40.854219,"mps:longitude":-73.928882,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Fort George"],"name:deu_x_preferred":["Fort George"],"name:eng_x_variant":["Ft George"],"name:ita_x_preferred":["Fort George"],"name:nds_x_preferred":["Fort George"],"name:pol_x_preferred":["Fort George"],"name:swe_x_preferred":["Fort George"],"reversegeo:latitude":40.854219,"reversegeo:longitude":-73.928882,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85854625,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b1e9059de71760b64e2b39f15dd6964a","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":907212535,"neighbourhood_id":85854625,"region_id":85688543}],"wof:id":907212535,"wof:lastmodified":1566608555,"wof:name":"Fort George","wof:parent_id":85854625,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869255],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212589.geojson b/fixtures/microhoods/907212589.geojson new file mode 100644 index 0000000..f30f3cd --- /dev/null +++ b/fixtures/microhoods/907212589.geojson @@ -0,0 +1 @@ +{"id":907212589,"type":"Feature","bbox":[-73.90239753488133,40.55642220902422,-73.88486878626811,40.56625791139696],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.88783090116904,40.56625791139696],[-73.88486878626811,40.56004214208385],[-73.88488243929896,40.56004116437254],[-73.88489701008332,40.56004759905644],[-73.88495111801016,40.56016017455542],[-73.88511277798882,40.56015096173739],[-73.88611109684476,40.55992191902921],[-73.88696170683085,40.55955815414469],[-73.88698316803385,40.5595408989113],[-73.88699547207567,40.55951471838842],[-73.88694833771325,40.55942501938265],[-73.88697510801173,40.55940048299851],[-73.88700589149516,40.55940590791815],[-73.88706563479926,40.55953960377153],[-73.88789256106392,40.55951065137959],[-73.88920044973284,40.55897995331932],[-73.88938592166666,40.55892040014805],[-73.88949428876107,40.55885589102973],[-73.88961883994118,40.55879238897394],[-73.88959262563449,40.55869814093875],[-73.88963947542908,40.55866435179398],[-73.88971251660598,40.55877239782637],[-73.89016988162076,40.55879898701806],[-73.890216535535,40.55881154962444],[-73.8907958963037,40.55861937890723],[-73.89181734386617,40.55818192535524],[-73.89192354828403,40.55816042152527],[-73.89199719571874,40.5581046311404],[-73.8920869968554,40.55804822513732],[-73.89211373696484,40.55791654611902],[-73.89213864396129,40.55787154199661],[-73.89216471320677,40.55786825290237],[-73.89219939637604,40.557911357569],[-73.89220367738253,40.55795112129285],[-73.89226637138374,40.55802542116509],[-73.89238831548226,40.55805370379861],[-73.89252745099391,40.55811929354265],[-73.89295657126361,40.55807179565],[-73.89351478690287,40.55791479373087],[-73.89373488375023,40.55780163043287],[-73.89422328361128,40.55759098003168],[-73.89481652964481,40.55734718518533],[-73.89489400002803,40.55730608395834],[-73.89492507893131,40.55729678332571],[-73.89495142499428,40.55729392540934],[-73.89495626172034,40.55728147549211],[-73.89488196616647,40.55710539053742],[-73.89489014015692,40.55708825233695],[-73.89491817266334,40.55707879629837],[-73.89494218163915,40.55709000172232],[-73.8949556413692,40.55710520598141],[-73.89502000255726,40.55726157794504],[-73.8950640624076,40.55727179431204],[-73.89509113472053,40.5572867766174],[-73.89512221087578,40.557302151242],[-73.89514345051374,40.55731747901621],[-73.89514692835677,40.55735141403451],[-73.89518458696969,40.55738503715078],[-73.89528651630845,40.55742202540882],[-73.89551188771095,40.55741427014974],[-73.89560237805888,40.55739785392741],[-73.89578748916927,40.55735839083263],[-73.89593506810228,40.55727173108797],[-73.89699522942664,40.55689179163879],[-73.89703572008942,40.55684239774315],[-73.89707345559773,40.55681113798495],[-73.89708396311504,40.55678079148345],[-73.89706380003445,40.5566949624134],[-73.89706459160607,40.55666362447428],[-73.89707956116769,40.55665743308454],[-73.89709684679295,40.55665631372599],[-73.89711859133801,40.55665886341114],[-73.89712552628782,40.55666385916673],[-73.89712899705188,40.55667220978871],[-73.8971421344786,40.55672739719769],[-73.89715972516328,40.55678239040475],[-73.8971854425314,40.55684974521017],[-73.89735688619331,40.55699842304188],[-73.89759035599648,40.55705926371864],[-73.8979951479682,40.55710213718031],[-73.89828608894094,40.55706520474789],[-73.89911718426407,40.55680035379429],[-73.89913198896227,40.55679355854966],[-73.8991144648131,40.55672874369704],[-73.89910004069156,40.55666348589582],[-73.89911108093183,40.55664927601288],[-73.89912995215269,40.55664117316704],[-73.89915160703455,40.55664134455459],[-73.89916471328425,40.55664612784668],[-73.89917488757396,40.55665403911214],[-73.89919692872246,40.55668200560264],[-73.899213463129,40.55671210047366],[-73.89938729173069,40.55672323811142],[-73.89956037454597,40.55670666843328],[-73.89980226292086,40.55663175736041],[-73.89979520954785,40.55660191856473],[-73.8997927492261,40.55657165680655],[-73.89979491527319,40.55654138196543],[-73.89980531089658,40.5565307903579],[-73.89982115677113,40.55652540707883],[-73.89983843305339,40.55652659777932],[-73.89984856164943,40.5565309638359],[-73.89987312539321,40.55655826159463],[-73.8998911374888,40.55658838534165],[-73.89990205638644,40.55662042939479],[-73.90008998276147,40.55662498858807],[-73.90027595908285,40.55660389483764],[-73.90036634229463,40.55658390799054],[-73.90053827001655,40.5565258568089],[-73.90053984652049,40.55650666902638],[-73.90053211919805,40.55646877420903],[-73.90053474158408,40.55645960400975],[-73.90053934754279,40.5564509004737],[-73.90054580601135,40.55644291125906],[-73.90055393321418,40.55643586369796],[-73.90056349789236,40.55642995832786],[-73.90057422788384,40.55642536318529],[-73.90058581786823,40.55642220902422],[-73.90059436861605,40.55642463021749],[-73.90060232051223,40.55642803776057],[-73.90060947942581,40.5564323484647],[-73.90061567058503,40.55643745709197],[-73.90062074284398,40.55644323892476],[-73.90062457237248,40.55644955281029],[-73.9006281618945,40.55646315094582],[-73.90065211431819,40.55655834486221],[-73.90065778173216,40.55660664449412],[-73.90070115515834,40.55663356854344],[-73.90101920055496,40.5567084801831],[-73.90239753488133,40.5622015230121],[-73.894471146191,40.56437614240136],[-73.88783090116904,40.56625791139696]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000102,"geom:area_square_m":957409.529823,"geom:bbox":"-73.9023975349,40.556422209,-73.8848687863,40.5662579114","geom:latitude":40.561156,"geom:longitude":-73.893866,"iso:country":"US","lbl:latitude":40.645437,"lbl:longitude":-74.069679,"lbl:max_zoom":18,"mps:latitude":40.561147,"mps:longitude":-73.893864,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:note":"name of county, old name of borough","mz:tier_metro":1,"name:afr_x_preferred":["Richmond"],"name:ara_x_preferred":["ريتشموند"],"name:bar_x_preferred":["Richmond"],"name:bre_x_preferred":["Richmond"],"name:bul_x_preferred":["Ричмънд"],"name:cat_x_preferred":["Richmond"],"name:ceb_x_preferred":["Richmond"],"name:ces_x_preferred":["Richmond"],"name:che_x_preferred":["Ричмонд"],"name:cym_x_preferred":["Richmond"],"name:dan_x_preferred":["Richmond"],"name:deu_x_preferred":["Richmond"],"name:ell_x_preferred":["Ρίτσμοντ"],"name:epo_x_preferred":["Richmond"],"name:est_x_preferred":["Richmond"],"name:fas_x_preferred":["ریچموند"],"name:fin_x_preferred":["Richmond"],"name:fra_x_preferred":["Richmond"],"name:heb_x_preferred":["ריצ'מונד"],"name:hrv_x_preferred":["Richmond"],"name:hun_x_preferred":["Richmond"],"name:ido_x_preferred":["Richmond"],"name:ind_x_preferred":["Richmond"],"name:ita_x_preferred":["Richmond"],"name:jpn_x_preferred":["リッチモンド"],"name:kor_x_preferred":["리치먼드"],"name:lit_x_preferred":["Ričmondas"],"name:mlg_x_preferred":["Richmond"],"name:nld_x_preferred":["Richmond"],"name:nor_x_preferred":["Richmond"],"name:pol_x_preferred":["Richmond"],"name:por_x_preferred":["Richmond"],"name:ron_x_preferred":["Richmond"],"name:rus_x_preferred":["Ричмонд"],"name:sco_x_preferred":["Richmond"],"name:slk_x_preferred":["Richmond"],"name:spa_x_preferred":["Richmond"],"name:srp_x_preferred":["Ричмонд"],"name:swa_x_preferred":["Richmond"],"name:swe_x_preferred":["Richmond"],"name:tur_x_preferred":["Richmond"],"name:ukr_x_preferred":["Ричмонд"],"name:und_x_variant":["Fort Tilden"],"name:urd_x_preferred":["رچمنڈ"],"name:vol_x_preferred":["Richmond"],"name:yid_x_preferred":["ריטשמאנד"],"name:zho_x_preferred":["里士满"],"reversegeo:latitude":40.561147,"reversegeo:longitude":-73.893864,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807191,102191575,907157757,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bb32052a54592fa580e999921761ba30","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"macrohood_id":907157757,"microhood_id":907212589,"neighbourhood_id":85807191,"region_id":85688543}],"wof:id":907212589,"wof:lastmodified":1566608556,"wof:name":"Richmond","wof:parent_id":85807191,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85885401],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212747.geojson b/fixtures/microhoods/907212747.geojson new file mode 100644 index 0000000..bb286b3 --- /dev/null +++ b/fixtures/microhoods/907212747.geojson @@ -0,0 +1 @@ +{"id":907212747,"type":"Feature","bbox":[-73.9954456431207,40.70247499756855,-73.98941386001289,40.70494346328906],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98941386001289,40.70479080119917],[-73.98953945967716,40.70247499756855],[-73.99356281639646,40.70258559673162],[-73.99435815575657,40.70290994772991],[-73.99504592748337,40.70313183979972],[-73.9954456431207,40.70327530547177],[-73.99529346700935,40.70355406589797],[-73.99480038274872,40.70329195814198],[-73.99466290343614,40.7034306080566],[-73.99499542533941,40.70365056321165],[-73.99488239902436,40.70378802583739],[-73.9949104306952,40.70379731595875],[-73.99492964609253,40.70377131508376],[-73.99502925916447,40.70380820086798],[-73.9948820472641,40.70400865389516],[-73.99476934191567,40.70395289495355],[-73.99471424235153,40.70399668906092],[-73.9947923146005,40.70406840563373],[-73.99479231299992,40.70408889470718],[-73.99469807470801,40.7041647007973],[-73.9947761435346,40.70424586105236],[-73.99456978950892,40.70437626351386],[-73.99386341031878,40.70455600743301],[-73.99380687248416,40.70453961321413],[-73.99377457207805,40.70444945740876],[-73.9935860697536,40.70450911821813],[-73.99362643916734,40.70459524465735],[-73.99350881403609,40.70462350527397],[-73.99280104228986,40.70463402392783],[-73.99269135574995,40.70462984994534],[-73.99251210682048,40.70469411255755],[-73.9921270353507,40.70468964203348],[-73.9921210063909,40.70439620157789],[-73.99186159189318,40.70408664210439],[-73.99141794782712,40.70400408902064],[-73.99094755350795,40.70403244213917],[-73.990714731148,40.70435137954315],[-73.99054617998549,40.70441616750173],[-73.99030768493817,40.70483988060199],[-73.9902849603567,40.70486642939219],[-73.99022720244231,40.7049340444872],[-73.99009111393444,40.70494346328906],[-73.98941386001289,40.70479080119917]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00001,"geom:area_square_m":95929.230378,"geom:bbox":"-73.9954456431207,40.70247499756855,-73.98941386001289,40.70494346328906","geom:latitude":40.703559,"geom:longitude":-73.992067,"iso:country":"US","lbl:latitude":40.702942,"lbl:longitude":-73.994027,"lbl:max_zoom":18,"mps:latitude":40.7036,"mps:longitude":-73.992915,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Fulton Ferry"],"name:eng_x_variant":["Fulton Landing"],"name:und_x_variant":["Fulton Ferry"],"reversegeo:latitude":40.7036,"reversegeo:longitude":-73.992915,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[421205765,102191575,85633793,102082361,85977539,85869197,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9dca8009e7004b058bff3d7367b315af","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907212747,"neighbourhood_id":85869197,"region_id":85688543}],"wof:id":907212747,"wof:lastmodified":1591683357,"wof:name":"Fulton Ferry","wof:parent_id":85869197,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869265,85865617],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212749.geojson b/fixtures/microhoods/907212749.geojson new file mode 100644 index 0000000..8b82f43 --- /dev/null +++ b/fixtures/microhoods/907212749.geojson @@ -0,0 +1 @@ +{"id":907212749,"type":"Feature","bbox":[-73.99346400122367,40.74839019876838,-73.98176670094662,40.75595000563767],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98447574057809,40.74839019876838],[-73.98793290692802,40.74985326918927],[-73.99346400122367,40.75218999709956],[-73.99072364248579,40.75595000563767],[-73.98504300000013,40.75355400000022],[-73.98176670094662,40.75214872901238],[-73.98447574057809,40.74839019876838]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000044,"geom:area_square_m":413513.883456,"geom:bbox":"-73.9934640012,40.7483901988,-73.9817667009,40.7559500056","geom:latitude":40.752173,"geom:longitude":-73.987608,"iso:country":"US","lbl:latitude":40.754134,"lbl:longitude":-73.990186,"lbl:max_zoom":18,"mps:latitude":40.752176,"mps:longitude":-73.987608,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Garment District"],"name:eng_x_preferred":["Garment District"],"name:eng_x_variant":["Garmentdistrict","Garment Center","Fashion District","Fashion Center"],"name:fas_x_preferred":["منطقه گارمنت"],"name:fra_x_preferred":["Garment District"],"name:ind_x_preferred":["Garment District"],"name:ita_x_preferred":["Garment District"],"name:jpn_x_preferred":["ガーメント・ディストリクト"],"name:por_x_preferred":["Garment District"],"name:rus_x_preferred":["Швейный квартал"],"name:spa_x_preferred":["Garment District"],"name:swe_x_preferred":["Garment District"],"name:zho_x_preferred":["成衣商圈"],"reversegeo:latitude":40.752176,"reversegeo:longitude":-73.987608,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882233,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1494337"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8ed605c521a59a717a40ca455eed727c","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907212749,"neighbourhood_id":85882233,"region_id":85688543}],"wof:id":907212749,"wof:lastmodified":1566608556,"wof:name":"Garment District","wof:parent_id":85882233,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867073],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212751.geojson b/fixtures/microhoods/907212751.geojson new file mode 100644 index 0000000..7293488 --- /dev/null +++ b/fixtures/microhoods/907212751.geojson @@ -0,0 +1 @@ +{"id":907212751,"type":"Feature","bbox":[-73.91834205743707,40.61954874383508,-73.90377429495669,40.62976753912089],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90621690707972,40.62434071675607],[-73.90377429495669,40.6221862432519],[-73.90691073620584,40.62015348266848],[-73.9125250000001,40.61983100000019],[-73.91725287020255,40.61954874383508],[-73.91834205743707,40.62976753912089],[-73.90621690707972,40.62434071675607]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000086,"geom:area_square_m":809667.83013,"geom:bbox":"-73.9183420574,40.6195487438,-73.903774295,40.6297675391","geom:latitude":40.623599,"geom:longitude":-73.912427,"iso:country":"US","lbl:latitude":40.623781,"lbl:longitude":-73.911268,"lbl:max_zoom":18,"mps:latitude":40.623575,"mps:longitude":-73.912923,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:afr_x_preferred":["Georgetown"],"name:ara_x_preferred":["جورجتاون"],"name:aze_x_preferred":["Corctaun"],"name:bel_x_preferred":["Джорджтаўн"],"name:bre_x_preferred":["Georgetown"],"name:bul_x_preferred":["Джорджтаун"],"name:cat_x_preferred":["Georgetown"],"name:ceb_x_preferred":["Georgetown"],"name:ces_x_preferred":["Georgetown"],"name:cym_x_preferred":["Georgetown"],"name:dan_x_preferred":["Georgetown"],"name:deu_x_preferred":["Georgetown"],"name:ell_x_preferred":["Τζώρτζταουν"],"name:eng_x_variant":["George Town"],"name:epo_x_preferred":["Ĝorĝtaŭno"],"name:est_x_preferred":["Georgetown"],"name:eus_x_preferred":["Georgetown"],"name:fas_x_preferred":["جرج‌تاون"],"name:fin_x_preferred":["Georgetown"],"name:fra_x_preferred":["Georgetown"],"name:heb_x_preferred":["ג'ורג'טאון"],"name:hin_x_preferred":["जॉर्जटाउन"],"name:hun_x_preferred":["Georgetown"],"name:ido_x_preferred":["Georgetown"],"name:ind_x_preferred":["Georgetown"],"name:ita_x_preferred":["Georgetown"],"name:jpn_x_preferred":["ジョージタウン"],"name:kat_x_preferred":["ჯორჯტაუნი"],"name:kor_x_preferred":["조지타운"],"name:lav_x_preferred":["Džordžtauna"],"name:lit_x_preferred":["Džordžtaunas"],"name:ltz_x_preferred":["Georgetown"],"name:mar_x_preferred":["जॉर्जटाउन"],"name:msa_x_preferred":["Georgetown"],"name:nds_x_preferred":["Georgetown"],"name:nld_x_preferred":["Georgetown"],"name:nor_x_preferred":["Georgetown"],"name:pol_x_preferred":["Georgetown"],"name:por_x_preferred":["Georgetown"],"name:ron_x_preferred":["Georgetown"],"name:rus_x_preferred":["Джорджтаун"],"name:sco_x_preferred":["Georgetown"],"name:slk_x_preferred":["Georgetown"],"name:spa_x_preferred":["Georgetown"],"name:srp_x_preferred":["Џорџтаун"],"name:swe_x_preferred":["Georgetown"],"name:tam_x_preferred":["ஜார்ஜ் டவுன்"],"name:tha_x_preferred":["จอร์จทาวน์"],"name:tur_x_preferred":["Georgetown"],"name:ukr_x_preferred":["Джорджтаун"],"name:und_x_variant":["Georgetowne Greens"],"name:urd_x_preferred":["جارج ٹاؤن"],"name:vep_x_preferred":["Džordžtaun"],"name:vol_x_preferred":["Georgetown"],"name:war_x_preferred":["Georgetown"],"name:zho_x_preferred":["乔治敦"],"reversegeo:latitude":40.623575,"reversegeo:longitude":-73.912923,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865597,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"47d1199a58aed2d108ed4c9e61e52f21","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907212751,"neighbourhood_id":85865597,"region_id":85688543}],"wof:id":907212751,"wof:lastmodified":1566608556,"wof:name":"Georgetown","wof:parent_id":85865597,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865601],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907212755.geojson b/fixtures/microhoods/907212755.geojson new file mode 100644 index 0000000..c54b966 --- /dev/null +++ b/fixtures/microhoods/907212755.geojson @@ -0,0 +1 @@ +{"id":907212755,"type":"Feature","bbox":[-74.00147404044375,40.70796803699163,-73.99613522221274,40.71206246251524],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.99777,40.711971],[-73.99691468274567,40.71206246251524],[-73.99613522221274,40.70889705567529],[-73.9972828719558,40.70873161984291],[-73.9980835118702,40.70850961536711],[-73.99908991719062,40.70797459290078],[-73.99910212251511,40.70796810433945],[-73.99910224919999,40.70796803699163],[-74.00147404044375,40.70979846063547],[-74.00070679909625,40.7108711221962],[-74.00067386693235,40.71091059957691],[-74.0006464129345,40.71094038867586],[-74.00010217335284,40.71145652969706],[-73.999762887884,40.7118061192258],[-73.99777,40.711971]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":133921.463757,"geom:bbox":"-74.0014740404,40.707968037,-73.9961352222,40.7120624625","geom:latitude":40.710118,"geom:longitude":-73.998632,"iso:country":"US","lbl:latitude":40.70864,"lbl:longitude":-73.998539,"lbl:max_zoom":18,"mps:latitude":40.710197,"mps:longitude":-73.99868,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Governor Alfred E. Smith Houses"],"name:eng_x_variant":["Alfred E. Smith Houses"],"reversegeo:latitude":40.710197,"reversegeo:longitude":-73.99868,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869743,102191575,907196817,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c9105789fb12092ecdccdcf88f71e55c","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907196817,"microhood_id":907212755,"neighbourhood_id":85869743,"region_id":85688543}],"wof:id":907212755,"wof:lastmodified":1566608555,"wof:name":"Governor Alfred e Smith Houses","wof:parent_id":85869743,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868035],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907213937.geojson b/fixtures/microhoods/907213937.geojson new file mode 100644 index 0000000..3afcbbd --- /dev/null +++ b/fixtures/microhoods/907213937.geojson @@ -0,0 +1 @@ +{"id":907213937,"type":"Feature","bbox":[-73.83221698518582,40.64833093992156,-73.82642966960216,40.65729963545054],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.82988919856032,40.65552282258413],[-73.8299455643584,40.6554244943529],[-73.8303272533708,40.65513280580339],[-73.83037789718178,40.65512833511793],[-73.83041325059035,40.6551578223362],[-73.83041203905745,40.65521585576167],[-73.83040011516184,40.65525714450141],[-73.83035808100352,40.65532208288763],[-73.83033058333677,40.6553698723749],[-73.83026601851503,40.65542864678488],[-73.83019020357145,40.65547881938588],[-73.83012570678879,40.65551061084523],[-73.83000321318897,40.65555212870704],[-73.82992594068642,40.65554220350464],[-73.82988919856032,40.65552282258413]]],[[[-73.82896221379026,40.65723798128732],[-73.82851390239327,40.65729963545054],[-73.82849,40.65725300000017],[-73.82664837952326,40.65043608287466],[-73.82652301770946,40.64884573545145],[-73.82642966960216,40.64833093992156],[-73.82649802934519,40.64835665330203],[-73.8265529806023,40.64839690726851],[-73.82658130944169,40.64852038005435],[-73.82664941531891,40.64860232700514],[-73.82669139111334,40.64864860003755],[-73.82675728912731,40.64874912898789],[-73.8268695746432,40.64879904518625],[-73.82699528082725,40.64882424895322],[-73.82719273528116,40.6489128806798],[-73.82752122418498,40.64896570685219],[-73.82762723797374,40.64892750566152],[-73.82787736674908,40.64901927061069],[-73.82811085304162,40.64900864639468],[-73.8283673434462,40.64906718624301],[-73.82859874347986,40.64916979456999],[-73.82891475597506,40.64937915582061],[-73.82907978221002,40.64966181132403],[-73.82933909113285,40.64994732500824],[-73.82945096002813,40.65004416733572],[-73.82968053496431,40.65022886619791],[-73.82986948766413,40.65042963064447],[-73.83036529785852,40.65113787211479],[-73.83069916378,40.65140431258625],[-73.8309365135349,40.65162612925594],[-73.8313315140328,40.65274755744288],[-73.83129214295725,40.65347092446854],[-73.83139918925797,40.65351404947987],[-73.83156040928806,40.65360326778686],[-73.83159216342213,40.65364699650281],[-73.831613147937,40.65374895323627],[-73.8315832205966,40.65381378633367],[-73.83120160215557,40.65418976108504],[-73.83042516703101,40.65483084527054],[-73.83015719582366,40.65500135673464],[-73.83013498681507,40.65502863509915],[-73.83014785427365,40.65503478765405],[-73.83016885409624,40.65500906266848],[-73.83020905999673,40.65502997144834],[-73.83018320665536,40.65506427326677],[-73.83013012659283,40.65503966637227],[-73.8301122668116,40.65509728218516],[-73.83008155069437,40.65514384105465],[-73.82990080019458,40.65529687902321],[-73.82934489242989,40.65571002208629],[-73.82917306859059,40.65586486554234],[-73.82904066356421,40.65602238094793],[-73.82902428985524,40.65604926151254],[-73.82901417557977,40.6561078844526],[-73.82903950091578,40.65612309967283],[-73.82907029897918,40.65612314544521],[-73.82910836312274,40.65611561380376],[-73.82915279961658,40.65609636311552],[-73.8291881885572,40.65607227030178],[-73.82921364262404,40.65603712544866],[-73.82934890224668,40.65592418720414],[-73.82938972946424,40.65589872179449],[-73.82945602175378,40.65583397285635],[-73.82943341421337,40.65581876175748],[-73.82966677652158,40.6555990400165],[-73.82985054455625,40.65564484306467],[-73.83002267408853,40.65563681981886],[-73.83002356082704,40.65564440882828],[-73.83006519242164,40.65565895787005],[-73.83008601602313,40.65566312775941],[-73.83015032686748,40.65566460284455],[-73.83020017064875,40.65565570813668],[-73.830308055358,40.65561999347815],[-73.83036977490913,40.65557179443943],[-73.83044328071924,40.6555194724445],[-73.83055410997997,40.65539476943639],[-73.83058237017298,40.65532375453783],[-73.83057157846146,40.65515651641772],[-73.83055658589429,40.65515473712592],[-73.83055620208113,40.65530585075516],[-73.83055145115404,40.65535943678196],[-73.83053069151882,40.65535764899062],[-73.83053540141086,40.65531987725618],[-73.83053759090555,40.65491222374293],[-73.83055028060313,40.65491224243853],[-73.83055777780145,40.65513980338383],[-73.83056930687607,40.65514245592535],[-73.83055609756155,40.65489292174051],[-73.83056886758,40.65486131285197],[-73.83060245974778,40.65480688977776],[-73.83135734463553,40.65418069958854],[-73.83134353287544,40.65416837939514],[-73.83144752173949,40.65410263768664],[-73.83146913310621,40.65411585753242],[-73.83170814411548,40.65393117429691],[-73.8319529731001,40.65403133434727],[-73.83199688470378,40.65400152699491],[-73.83205445130551,40.65404641806771],[-73.83212330981655,40.65427316167608],[-73.83200052870748,40.65444081896507],[-73.83216050229875,40.65450950867272],[-73.83219775627529,40.65445407709599],[-73.83221698518582,40.6544603862931],[-73.83216594711055,40.65453045482917],[-73.83204647773093,40.65448107631957],[-73.83190474303169,40.65463051993912],[-73.83185835751907,40.65461183972553],[-73.8316022021337,40.65484199906214],[-73.83150811075663,40.65496919065529],[-73.83149330103012,40.65497982053982],[-73.83141211466817,40.6551937389537],[-73.83135764938122,40.65547097583979],[-73.8313084475257,40.65559932463884],[-73.83116100809642,40.65591923373728],[-73.83092856003483,40.65603056223284],[-73.83083321606253,40.6560434515703],[-73.83075005477036,40.65607124700922],[-73.83040507534938,40.65625197214514],[-73.83034959412646,40.65628306117188],[-73.83021213161005,40.65633719250567],[-73.83007856308664,40.65646906446876],[-73.83008780413894,40.6565063627481],[-73.83005514080463,40.65655420551347],[-73.829985260323,40.65658261675721],[-73.82988890772108,40.65655640318567],[-73.82979956416528,40.65649197276186],[-73.82965828569361,40.65644694842202],[-73.8296089716734,40.65643161822888],[-73.82960562793463,40.65644448515609],[-73.82955286969728,40.65643795680692],[-73.8295541371534,40.65642377086851],[-73.82953233393793,40.65642686044968],[-73.82937603410709,40.65650633521591],[-73.8293077520443,40.65655362803776],[-73.82925819722632,40.65660651123434],[-73.82925847022506,40.65670629509872],[-73.82930287477961,40.65687263733879],[-73.82930974695336,40.65693245753521],[-73.82928525714235,40.65696556283855],[-73.82926623612846,40.65698408503011],[-73.82923845041697,40.65700718833912],[-73.82920543743194,40.65703583493437],[-73.82911536880955,40.65711766545049],[-73.82909990801161,40.6571308010009],[-73.82908591602643,40.65714092489517],[-73.82903021278639,40.65716524162263],[-73.82900435055305,40.65717438943228],[-73.82898285487586,40.65718560834885],[-73.828967787403,40.65720524792025],[-73.82896084087683,40.65722601563984],[-73.82896221379026,40.65723798128732]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000026,"geom:area_square_m":245421.836911,"geom:bbox":"-73.8322169852,40.6483309399,-73.8264296696,40.6572996355","geom:latitude":40.65286,"geom:longitude":-73.829063,"iso:country":"US","lbl:latitude":40.652971,"lbl:longitude":-73.829372,"lbl:max_zoom":18,"mps:latitude":40.652827,"mps:longitude":-73.8293,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Hamilton Beach"],"name:eng_x_variant":["Hamilton Bch"],"name:fra_x_preferred":["Hamilton Beach"],"name:nld_x_preferred":["Hamilton Beach"],"name:spa_x_preferred":["Hamilton Beach"],"name:urd_x_preferred":["ہیملٹن ساحل، کوئینز"],"name:urd_x_variant":["ہیملٹن ساحل"],"reversegeo:latitude":40.652827,"reversegeo:longitude":-73.8293,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420782889,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q59022"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e85190caf6ead315cbb4ba92767e1cb5","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907213937,"neighbourhood_id":420782889,"region_id":85688543}],"wof:id":907213937,"wof:lastmodified":1566608567,"wof:name":"Hamilton Beach","wof:parent_id":420782889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85823673],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907213943.geojson b/fixtures/microhoods/907213943.geojson new file mode 100644 index 0000000..b052df0 --- /dev/null +++ b/fixtures/microhoods/907213943.geojson @@ -0,0 +1 @@ +{"id":907213943,"type":"Feature","bbox":[-73.81138097473466,40.58762291864829,-73.80734609467761,40.58993456268318],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.81138097473466,40.58895527699323],[-73.8111760295753,40.58911617327549],[-73.8109416285595,40.58928129681005],[-73.81070633642973,40.58943118781132],[-73.81049207997796,40.58957498226235],[-73.81028274979185,40.58970886375557],[-73.81018417915978,40.58975927716918],[-73.81008429809691,40.58980512852806],[-73.80989705108288,40.58986690252122],[-73.80968054046625,40.58991989781169],[-73.80958179294652,40.58992941198694],[-73.80944529221752,40.58993456268318],[-73.8091721383207,40.58993246528344],[-73.80881409787727,40.58990075604228],[-73.80821162446664,40.58987102358428],[-73.80752203950571,40.58985848255945],[-73.80734609467761,40.58800461103491],[-73.81120999488357,40.58762291864829],[-73.81138097473466,40.58895527699323]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":70473.685729,"geom:bbox":"-73.8113809747,40.5876229186,-73.8073460947,40.5899345627","geom:latitude":40.588786,"geom:longitude":-73.809323,"iso:country":"US","lbl:latitude":40.587495,"lbl:longitude":-73.806335,"lbl:max_zoom":18,"mps:latitude":40.588872,"mps:longitude":-73.809321,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Hammel"],"name:eng_x_variant":["Hammels"],"name:fra_x_preferred":["Hammels"],"name:jpn_x_preferred":["ハンメル"],"name:urd_x_preferred":["ہیملز، کوئینز"],"name:urd_x_variant":["ہیملز"],"reversegeo:latitude":40.588872,"reversegeo:longitude":-73.809321,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865515,102191575,907157757,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q62200"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ff8fad60e94f7d4246ca9bd575c859d0","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"macrohood_id":907157757,"microhood_id":907213943,"neighbourhood_id":85865515,"region_id":85688543}],"wof:id":907213943,"wof:lastmodified":1566608567,"wof:name":"Hammels","wof:parent_id":85865515,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869317],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907213949.geojson b/fixtures/microhoods/907213949.geojson new file mode 100644 index 0000000..415ae7a --- /dev/null +++ b/fixtures/microhoods/907213949.geojson @@ -0,0 +1 @@ +{"id":907213949,"type":"Feature","bbox":[-73.80524247184451,40.72143596385106,-73.791745,40.7384188269903],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.80515157116443,40.72787107811068],[-73.80520506028827,40.72822042386014],[-73.80523349227136,40.7285593094645],[-73.80524247184451,40.72883399224948],[-73.80523204056355,40.72909938827767],[-73.80502123019443,40.73275201792901],[-73.80464768464311,40.7384188269903],[-73.79734869845497,40.73819324330073],[-73.79682043359121,40.73823137019448],[-73.79639496380824,40.73829016073359],[-73.796239,40.73788400000015],[-73.79512,40.73641100000013],[-73.79458600000015,40.73505200000031],[-73.7946258100976,40.73359554371673],[-73.79382,40.73165700000025],[-73.79378408955597,40.73070865039838],[-73.791745,40.7257760000002],[-73.79523683467369,40.72458492877367],[-73.79845908004137,40.72349240221484],[-73.80452454146135,40.72143596385106],[-73.80515157116443,40.72787107811068]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000167,"geom:area_square_m":1562317.419857,"geom:bbox":"-73.8052424718,40.7214359639,-73.791745,40.738418827","geom:latitude":40.730356,"geom:longitude":-73.799597,"iso:country":"US","lbl:latitude":40.730443,"lbl:longitude":-73.799357,"lbl:max_zoom":18,"mps:latitude":40.730319,"mps:longitude":-73.799468,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Hillcrest"],"name:eng_x_variant":["Hill Crest"],"reversegeo:latitude":40.730319,"reversegeo:longitude":-73.799468,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b456a55eb9a3b8dadcb260cf6ef1e73d","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907213949,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907213949,"wof:lastmodified":1566608567,"wof:name":"Hill Crest","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865651],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907213951.geojson b/fixtures/microhoods/907213951.geojson new file mode 100644 index 0000000..6e7bf1a --- /dev/null +++ b/fixtures/microhoods/907213951.geojson @@ -0,0 +1 @@ +{"id":907213951,"type":"Feature","bbox":[-73.78799842034269,40.70786208526779,-73.78056780090309,40.71293800000024],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.78056780090309,40.70836791279866],[-73.78183402725914,40.70814833161695],[-73.78234497297635,40.70805558017769],[-73.78249132199315,40.70802227367565],[-73.78260307850904,40.70798858733198],[-73.78272399207043,40.70794988797692],[-73.78292834090105,40.70791330919392],[-73.78321081772866,40.70789670520437],[-73.78379594836606,40.70788413460873],[-73.78435598849286,40.70789067064988],[-73.78495935342487,40.70788582091193],[-73.78558208541455,40.70786208526779],[-73.78799842034269,40.71189386422768],[-73.787718,40.71186500000027],[-73.78271314069707,40.71291943040123],[-73.782625,40.71293800000024],[-73.78056780090309,40.70836791279866]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":228298.469697,"geom:bbox":"-73.7879984203,40.7078620853,-73.7805678009,40.712938","geom:latitude":40.710248,"geom:longitude":-73.784129,"iso:country":"US","lbl:latitude":40.708718,"lbl:longitude":-73.783336,"lbl:max_zoom":18,"mps:latitude":40.710255,"mps:longitude":-73.784129,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:bar_x_preferred":["Hillside"],"name:ceb_x_preferred":["Hillside"],"name:cym_x_preferred":["Hillside"],"name:deu_x_preferred":["Hillside"],"name:eng_x_preferred":["Hillside"],"name:ita_x_preferred":["Hillside"],"name:mlg_x_preferred":["Hillside"],"name:nld_x_preferred":["Hillside"],"name:pol_x_preferred":["Hillside"],"name:por_x_preferred":["Hillside"],"name:srp_x_preferred":["Хилсајд"],"name:swe_x_preferred":["Hillside"],"name:ukr_x_preferred":["Гіллсайд"],"name:und_x_variant":["Rockaway Junction"],"name:vol_x_preferred":["Hillside"],"reversegeo:latitude":40.710255,"reversegeo:longitude":-73.784129,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827297,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d844bf9da6f86966bd26ff80cca807ee","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907213951,"neighbourhood_id":85827297,"region_id":85688543}],"wof:id":907213951,"wof:lastmodified":1566608567,"wof:name":"Hillside","wof:parent_id":85827297,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85825625,85868669],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214329.geojson b/fixtures/microhoods/907214329.geojson new file mode 100644 index 0000000..507e41a --- /dev/null +++ b/fixtures/microhoods/907214329.geojson @@ -0,0 +1 @@ +{"id":907214329,"type":"Feature","bbox":[-73.96550485312612,40.59325904735473,-73.9494328230156,40.59956610520202],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96550485312612,40.59792718510052],[-73.95028634912236,40.59956610520202],[-73.9494328230156,40.59493789111011],[-73.96465356614065,40.59325904735473],[-73.96463800000019,40.59332800000023],[-73.96550485312612,40.59792718510052]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000072,"geom:area_square_m":676873.373464,"geom:bbox":"-73.9655048531,40.5932590474,-73.949432823,40.5995661052","geom:latitude":40.596423,"geom:longitude":-73.957473,"iso:country":"US","lbl:latitude":40.60297,"lbl:longitude":-73.95683,"lbl:max_zoom":18,"mps:latitude":40.596421,"mps:longitude":-73.95748,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:note":"dup","mz:tier_metro":1,"name:eng_x_preferred":["Homecrest"],"name:fra_x_preferred":["Homecrest"],"name:jpn_x_preferred":["ホームクレスト"],"name:zho_x_preferred":["霍姆克雷斯特"],"reversegeo:latitude":40.596421,"reversegeo:longitude":-73.95748,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85848121,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q14706396"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ca7df3a61eccbbf61e4c339dad5c7bfb","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907214329,"neighbourhood_id":85848121,"region_id":85688543}],"wof:id":907214329,"wof:lastmodified":1566608566,"wof:name":"Homecrest","wof:parent_id":85848121,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869353,907214329],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214331.geojson b/fixtures/microhoods/907214331.geojson new file mode 100644 index 0000000..f2a5ca1 --- /dev/null +++ b/fixtures/microhoods/907214331.geojson @@ -0,0 +1 @@ +{"id":907214331,"type":"Feature","bbox":[-73.94704399278353,40.8446152267371,-73.93148951631707,40.85983426620041],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.93148951631707,40.85937872307962],[-73.93586642581803,40.85007247973358],[-73.93704006496382,40.8492109281151],[-73.93746602157997,40.84885530157933],[-73.93766204317502,40.84862101821798],[-73.93782656184241,40.84839357507582],[-73.93805717977301,40.84793558265838],[-73.93824007460786,40.84752466002355],[-73.938429408945,40.8469542963954],[-73.93863426087283,40.84627301351987],[-73.93878353504375,40.84558788880506],[-73.93888996887964,40.84505133354686],[-73.93897293639061,40.8446152267371],[-73.94665944010268,40.84786571385872],[-73.94665606434617,40.84788332048353],[-73.94662285734354,40.84814551949149],[-73.9466194999889,40.84827842591195],[-73.94664422572279,40.84839933388533],[-73.94665138624536,40.84850004835111],[-73.94665040763178,40.84866760421679],[-73.94667853765397,40.848837459093],[-73.94663550012693,40.84891242505977],[-73.94683872036464,40.84938282135101],[-73.94685525004357,40.84942768019963],[-73.94696652237197,40.84981517403266],[-73.94701320370538,40.84999974085006],[-73.9470278249473,40.85004183181242],[-73.94702006715049,40.85009367015581],[-73.94704399278353,40.8502547459878],[-73.94699808302225,40.85039803084265],[-73.946964417596,40.85046552581834],[-73.94692626404866,40.85052805566834],[-73.94651590216091,40.85096833958307],[-73.94650229457679,40.85097566609912],[-73.94647163441918,40.85098548333596],[-73.94644189200059,40.85098828175261],[-73.94641216085672,40.85098514079454],[-73.94637201017787,40.85096981801796],[-73.94633875378945,40.85094782682727],[-73.9463207741203,40.85092325667692],[-73.9463288803668,40.85090437687028],[-73.94635174194288,40.85089307380802],[-73.94635218637765,40.85086996465725],[-73.94633796356047,40.85085289594618],[-73.94632729794799,40.85084603307684],[-73.94631589827779,40.8508386961086],[-73.94629717304835,40.85083313533091],[-73.94627501496672,40.85084097767568],[-73.94624374642382,40.85088454299488],[-73.94619776917537,40.85090566620352],[-73.94617304480116,40.85095795498825],[-73.94619597814527,40.85097417207248],[-73.94620078322099,40.85103148810551],[-73.94618601249206,40.8510314696569],[-73.94617210619418,40.8510521198151],[-73.94615819227636,40.85104728646893],[-73.94614699837966,40.85103129062841],[-73.94614542501229,40.85100746588196],[-73.94613392284643,40.85098393184356],[-73.94611976648001,40.85096875414158],[-73.94609670195189,40.85096634175068],[-73.94608190501087,40.85098071488113],[-73.94608745879559,40.85100806249657],[-73.94609742395546,40.85103260246974],[-73.94614159383455,40.85109369997016],[-73.9461365365532,40.85115472606455],[-73.94611744105174,40.85117258301975],[-73.94604780286083,40.8511885509714],[-73.94596473439124,40.85117187483646],[-73.94593025783087,40.85118972170717],[-73.94589577454175,40.85118733910362],[-73.94584092799158,40.85116947664419],[-73.94576726165664,40.85116946515459],[-73.94572493994536,40.85119683231837],[-73.9457280636197,40.85122777318983],[-73.94568261912569,40.85122657712713],[-73.94565283626429,40.85121109834135],[-73.94561208079904,40.85123965310482],[-73.94555563975035,40.85132056777697],[-73.94551957908565,40.85136221265915],[-73.94544903734406,40.85142765920951],[-73.9453894688807,40.8514526369143],[-73.94526640999041,40.85157102905372],[-73.94497798395635,40.85173164800292],[-73.94466721178102,40.85192122650953],[-73.94457747870588,40.8519428160693],[-73.94450381945984,40.8519570794526],[-73.94439725279884,40.85189280267387],[-73.94432518482483,40.85182257643866],[-73.94431733342698,40.85185589339351],[-73.9441966078135,40.85201534181601],[-73.94388153574955,40.85217237720745],[-73.94347978545646,40.85228188294722],[-73.94186996426696,40.85386773944295],[-73.94029347497131,40.85664177065782],[-73.93958484140597,40.85748020619801],[-73.93911094164406,40.85804091122584],[-73.93881410843981,40.85853711494591],[-73.93830957434301,40.85938052360811],[-73.93781527094994,40.85983426620041],[-73.93778900000017,40.85981200000015],[-73.93553200000012,40.858918],[-73.933053,40.859828],[-73.93148951631707,40.85937872307962]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000112,"geom:area_square_m":1046867.314392,"geom:bbox":"-73.9470439928,40.8446152267,-73.9314895163,40.8598342662","geom:latitude":40.852429,"geom:longitude":-73.939194,"iso:country":"US","lbl:latitude":40.85366,"lbl:longitude":-73.936979,"lbl:max_zoom":18,"mps:latitude":40.852461,"mps:longitude":-73.938664,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Hudson Hts"],"reversegeo:latitude":40.852461,"reversegeo:longitude":-73.938664,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85854625,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0557c266cf5957977eba6175314121ed","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":907214331,"neighbourhood_id":85854625,"region_id":85688543}],"wof:id":907214331,"wof:lastmodified":1566608565,"wof:name":"Hudson Heights","wof:parent_id":85854625,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869355],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214333.geojson b/fixtures/microhoods/907214333.geojson new file mode 100644 index 0000000..67b6eac --- /dev/null +++ b/fixtures/microhoods/907214333.geojson @@ -0,0 +1 @@ +{"id":907214333,"type":"Feature","bbox":[-73.96262015898665,40.73790012335005,-73.93816702329205,40.74883951695578],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.95466147272244,40.74821942328077],[-73.95434128567298,40.74811220357854],[-73.95432006769627,40.74810391708214],[-73.95439031474359,40.74801902288753],[-73.95464547239433,40.74812830865804],[-73.95470561241694,40.74801362045259],[-73.95325109906982,40.74774713733631],[-73.95317332410538,40.74772109315825],[-73.93816702329205,40.7450222333969],[-73.93858786976806,40.74293088268769],[-73.94001922975681,40.74320827221096],[-73.9401485852125,40.74283244146026],[-73.93965301521403,40.74273108709571],[-73.94004815102228,40.74207122634068],[-73.94008406290699,40.74206324464146],[-73.9411881669619,40.74029021829477],[-73.94159470030034,40.73986412616891],[-73.94165001879615,40.73986415420968],[-73.94183504992785,40.73969262021157],[-73.94203367165665,40.73965693856114],[-73.9420866491637,40.73959258700143],[-73.94237973008306,40.73943047196956],[-73.94244816527326,40.73941389661739],[-73.94259666844879,40.73939514780285],[-73.9426491363561,40.73932320041671],[-73.94272766121328,40.7392315971958],[-73.94279045640089,40.73919372120449],[-73.94269588366714,40.73913388083164],[-73.94270608992113,40.73911506297863],[-73.94290141828859,40.73900380150439],[-73.94329026866818,40.73900862239311],[-73.94353166038671,40.73892280549138],[-73.94382272278408,40.73887153788181],[-73.94396995657186,40.7387823960599],[-73.9443388253848,40.73864623976486],[-73.94523862072617,40.73835682364518],[-73.94535847947536,40.73826948539718],[-73.94548236590144,40.73820703129391],[-73.9471508718271,40.73790012335005],[-73.95033626203471,40.73900698584341],[-73.95229720792412,40.73951862852663],[-73.95379878808737,40.7398198652721],[-73.95536636374344,40.73976488732692],[-73.95682353901005,40.73961472406356],[-73.95765503729541,40.73943488599123],[-73.95925086376491,40.73873583149298],[-73.95978270346579,40.73851171066128],[-73.9598369952847,40.73849397164275],[-73.95987349884923,40.73848746390511],[-73.95993158356723,40.73848463902804],[-73.95995298823036,40.73848515960658],[-73.96000509976616,40.73849124753227],[-73.96006757901843,40.73848374962371],[-73.96010554777811,40.73846119597234],[-73.96013686315298,40.73841934280762],[-73.96013848536931,40.73837979256484],[-73.96014265220778,40.73836104512281],[-73.96015351682222,40.73834734438555],[-73.96016917242174,40.73833850675283],[-73.96022403678208,40.73831388660274],[-73.96028544056767,40.73824399232705],[-73.96072580373689,40.73808017017923],[-73.96209998908999,40.73826019177944],[-73.96216416128232,40.7382722349097],[-73.96216505619314,40.73827253825895],[-73.96216583608778,40.73827292499858],[-73.96216647673566,40.73827340115155],[-73.96216700104027,40.73827397057848],[-73.9621674098782,40.73827464098591],[-73.9621676909266,40.73827539310424],[-73.96216790859808,40.73827721351757],[-73.96216773862491,40.73827905189643],[-73.96212654058675,40.73841541522791],[-73.96213146112969,40.73845107065081],[-73.96245085621167,40.73861209840278],[-73.96253484590184,40.7386812166548],[-73.96259185234969,40.73876820918987],[-73.9626081975085,40.73879553905661],[-73.96262015898665,40.73903266212604],[-73.96243079071382,40.73967148008299],[-73.96242990341497,40.7396728200664],[-73.9622091649179,40.74000617549819],[-73.96159204783007,40.74000396823183],[-73.9614501384436,40.74033783468062],[-73.96164163979049,40.74035611292443],[-73.96162982563841,40.74045892945751],[-73.96129339923259,40.74043279936797],[-73.96126581236192,40.74053747110837],[-73.96151773884115,40.74060680575989],[-73.9617273213889,40.74066968474283],[-73.96185009745182,40.74072448163046],[-73.96190930217703,40.74086783324406],[-73.96188806252049,40.74098216980954],[-73.96180397489103,40.74109767347233],[-73.96165251735401,40.74113275709856],[-73.96145893775198,40.74113750567926],[-73.96121862852027,40.74110786013025],[-73.9611177038758,40.74153727766141],[-73.9610750950233,40.74162778728837],[-73.96107708539772,40.74169732461796],[-73.96111505608519,40.74179780414889],[-73.96127192619352,40.74183259794322],[-73.9612918059861,40.74179635293709],[-73.96136329157119,40.74181148128099],[-73.96136519326669,40.74182328939672],[-73.96136466867718,40.74183517907706],[-73.96136173044941,40.7418468636582],[-73.96135644942375,40.74185806142123],[-73.96134895292629,40.74186850238443],[-73.96133942169912,40.74187793481266],[-73.96110814501411,40.74182802590811],[-73.96117277851148,40.74188633414107],[-73.96155253168956,40.74199326140734],[-73.96119029789034,40.74264485525982],[-73.96109548654545,40.74278194773137],[-73.96097168385494,40.74275405426379],[-73.96064602180351,40.74339270626311],[-73.96056778448647,40.7434659565139],[-73.96046632238418,40.74352028317141],[-73.96040921438394,40.74353900791942],[-73.96028762060446,40.74355781751107],[-73.96016388160426,40.74355079186095],[-73.95978468552286,40.74349771658414],[-73.95971981529034,40.74369304546528],[-73.95980494771408,40.74370675289002],[-73.9597439319738,40.74387256884916],[-73.95975123851007,40.74390227665793],[-73.96051032999428,40.7440468919529],[-73.96052090981665,40.74401974007527],[-73.96067204579411,40.74405121585594],[-73.96064863700744,40.74413031761401],[-73.96011951918794,40.74402967229435],[-73.96010602637573,40.74405870980694],[-73.95992298789866,40.74402704209606],[-73.95993311497539,40.74399458841103],[-73.95963225023962,40.74393463191436],[-73.95936198209036,40.74421397603712],[-73.95940368217359,40.74422607474715],[-73.95939106609578,40.744283324744],[-73.95946013173089,40.74429251979712],[-73.9594691321388,40.74426775269981],[-73.95971280471122,40.74431481791593],[-73.95972855228646,40.74427211561939],[-73.96015525517694,40.74436878260556],[-73.96012600962393,40.74444393699159],[-73.96001147139265,40.74442254304438],[-73.96002610056908,40.74437386231265],[-73.95980151741627,40.744329368581],[-73.95979139383245,40.74435584424725],[-73.95954322849379,40.74430877828981],[-73.9595241081917,40.74435489590606],[-73.95936852954135,40.74432480534334],[-73.95929971633623,40.74432422217915],[-73.95923368945702,40.74431004302669],[-73.9592159711039,40.74432602663236],[-73.95910022683567,40.74440438450311],[-73.95897577051582,40.74445150791882],[-73.95885419935783,40.74447009115739],[-73.958775370045,40.7445555998636],[-73.9591872398512,40.74462101175963],[-73.95922188572062,40.74455380563087],[-73.9594113400179,40.74459114362487],[-73.95942479652712,40.74459490145683],[-73.95943696655615,40.74460066211309],[-73.95944734539947,40.7446081835084],[-73.95945549887874,40.74461715405908],[-73.95946108867099,40.74462719738258],[-73.95946387758202,40.74463789357502],[-73.95946375112126,40.74464879848416],[-73.9594620474797,40.74466089177199],[-73.9594600317459,40.74466678513851],[-73.95945377637196,40.74467797871576],[-73.95944476107421,40.74468802627893],[-73.95943333829676,40.74469653979328],[-73.9594199474553,40.7447031888835],[-73.95940510501383,40.74470771909118],[-73.95938938708187,40.74470995438122],[-73.95937339680783,40.74470980818744],[-73.95887919943335,40.74462433145465],[-73.95888268557039,40.74461262144167],[-73.95876372515258,40.74459261916412],[-73.9586409667629,40.74494831495516],[-73.95874827896091,40.74496956929866],[-73.95875870330305,40.74495372973999],[-73.95964910654482,40.74514416077284],[-73.95965229756005,40.74521658817356],[-73.95905544841919,40.74510830469195],[-73.95907628880578,40.74509246880728],[-73.95849389303122,40.74498786491633],[-73.95845252269623,40.74511901232482],[-73.95862451222601,40.74514943116529],[-73.95862450071131,40.74516797195999],[-73.9591404409601,40.74529176370702],[-73.95919801002667,40.74529728278576],[-73.95925084238357,40.74531552963386],[-73.95929419130351,40.74534486486369],[-73.95932982273803,40.74539724775557],[-73.9593434270246,40.74547065053108],[-73.95932420250111,40.74554332269673],[-73.95930281987526,40.74557677679971],[-73.95924338775808,40.74564514356172],[-73.95916167785697,40.74570939276163],[-73.95905935607948,40.74575336834634],[-73.95894743371315,40.74577118529589],[-73.95856865756441,40.74568891742152],[-73.95847609450007,40.74568888408763],[-73.95839861481156,40.74571941944536],[-73.95838046238637,40.74575468973873],[-73.95836969226353,40.74579166941705],[-73.95836656305259,40.74582947057591],[-73.9583711499009,40.74586718558522],[-73.95838334268797,40.74590390888174],[-73.95837927151254,40.74595309009345],[-73.95899427160543,40.74606464643539],[-73.95864684421046,40.74654483695275],[-73.95867072374413,40.74664310969384],[-73.95831740194427,40.74707221012015],[-73.95788635502217,40.74756134952379],[-73.95679453290526,40.74883951695578],[-73.95485394268049,40.74804079464118],[-73.95473347953272,40.74801872571106],[-73.95467737259256,40.7481339951511],[-73.95470926432745,40.74815017096336],[-73.95466147272244,40.74821942328077]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000165,"geom:area_square_m":1546893.670487,"geom:bbox":"-73.962620159,40.7379001234,-73.9381670233,40.748839517","geom:latitude":40.742918,"geom:longitude":-73.950727,"iso:country":"US","lbl:latitude":40.745095,"lbl:longitude":-73.953594,"lbl:max_zoom":18,"mps:latitude":40.743199,"mps:longitude":-73.950724,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Hunters Point"],"name:deu_x_preferred":["Hunters Point"],"name:eng_x_variant":["Hunters Pt","Hunterspoint"],"name:fra_x_preferred":["Hunters Point"],"name:swe_x_preferred":["Hunters Point"],"reversegeo:latitude":40.743199,"reversegeo:longitude":-73.950724,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85831303,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"12983a530528ac5d1788daf115f545a9","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907214333,"neighbourhood_id":85831303,"region_id":85688543}],"wof:id":907214333,"wof:lastmodified":1566608566,"wof:name":"Hunters Point","wof:parent_id":85831303,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865631],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214335.geojson b/fixtures/microhoods/907214335.geojson new file mode 100644 index 0000000..7e0fd89 --- /dev/null +++ b/fixtures/microhoods/907214335.geojson @@ -0,0 +1 @@ +{"id":907214335,"type":"Feature","bbox":[-73.90630123396997,40.86747777250541,-73.8846559763116,40.88605873771763],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89744236416077,40.86747777250541],[-73.89832528972796,40.86758466024619],[-73.89913481812364,40.86771367918039],[-73.90028751616454,40.86794738711554],[-73.90070357930288,40.8680500673616],[-73.90195690185799,40.86845662915535],[-73.90255141795893,40.86870317417566],[-73.90309191651966,40.86898269809428],[-73.90336792599528,40.86917042151094],[-73.90390850568338,40.86966669669816],[-73.90427727277842,40.87006120667809],[-73.90439810143175,40.87026096484138],[-73.90450609215684,40.87066086475145],[-73.90454402164535,40.87090501356488],[-73.90454682208612,40.87109388791605],[-73.90445421276917,40.87199187458768],[-73.90445420112076,40.87211292142586],[-73.90446747756313,40.87225044216992],[-73.9045024893912,40.87235417312388],[-73.90459760599387,40.87251970938094],[-73.90473680591381,40.87265451939727],[-73.90492369405848,40.87276402673341],[-73.90514601295484,40.87287933401021],[-73.9054014082051,40.87297481693644],[-73.90570427972565,40.8730802370704],[-73.90630123396997,40.87325703931939],[-73.904764567871,40.87658882434162],[-73.9040521207796,40.87822586504058],[-73.90384325703681,40.87861340030227],[-73.90359795268121,40.87895465733902],[-73.90335685640058,40.87925503573629],[-73.90309436030707,40.87951421174128],[-73.90260873722683,40.87997161538176],[-73.89891077062336,40.88431613510735],[-73.8987854354808,40.88444978487433],[-73.89862975141551,40.88461553874616],[-73.89762512929812,40.88553077548906],[-73.89740576707729,40.88569812088361],[-73.89720224841497,40.88583712423552],[-73.89700151647367,40.88595556157108],[-73.89674147353716,40.88605873771763],[-73.89464347995626,40.88569132721192],[-73.89287186931658,40.88531740950062],[-73.88754399910329,40.88426599738443],[-73.88702860944417,40.88441067908988],[-73.88703140853374,40.88373601947579],[-73.88588371422439,40.88130783742078],[-73.88566839140613,40.8807398541035],[-73.88540788211523,40.88040686109021],[-73.8846559763116,40.87980743371418],[-73.885657264264,40.87892613963726],[-73.88780826901973,40.87697024668503],[-73.88830795403736,40.87597086783079],[-73.88866487498171,40.87468596411954],[-73.8894144046008,40.87343674534738],[-73.88980701536764,40.87258013851329],[-73.89037808600925,40.87165214872108],[-73.89181622173834,40.87178545691792],[-73.89519649454596,40.8702958559477],[-73.89726662562113,40.86772603806139],[-73.89744236416077,40.86747777250541]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000244,"geom:area_square_m":2281836.287495,"geom:bbox":"-73.906301234,40.8674777725,-73.8846559763,40.8860587377","geom:latitude":40.877116,"geom:longitude":-73.895908,"iso:country":"US","lbl:latitude":40.871778,"lbl:longitude":-73.901552,"lbl:max_zoom":18,"mps:latitude":40.877772,"mps:longitude":-73.895702,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Kings Bridge Heights"],"name:eng_x_variant":["Kings Bridge Heights","Kings Bridge Hts","Kingsbridge Hts"],"name:und_x_variant":["Kingsbridge Heights"],"reversegeo:latitude":40.877772,"reversegeo:longitude":-73.895702,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869385,102191575,907157029,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5c84b23973d4717f0e7ce4c291cced96","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157029,"microhood_id":907214335,"neighbourhood_id":85869385,"region_id":85688543}],"wof:id":907214335,"wof:lastmodified":1566608566,"wof:name":"Kingsbridge Heights","wof:parent_id":85869385,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869389,85828381],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214343.geojson b/fixtures/microhoods/907214343.geojson new file mode 100644 index 0000000..5658b72 --- /dev/null +++ b/fixtures/microhoods/907214343.geojson @@ -0,0 +1 @@ +{"id":907214343,"type":"Feature","bbox":[-73.9886903613491,40.74708928416146,-73.98447574057809,40.74985326918927],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98793290692802,40.74985326918927],[-73.98447574057809,40.74839019876838],[-73.9854212000867,40.74708928416146],[-73.9886903613491,40.74846973943898],[-73.987973,40.74946720539002],[-73.98793290692802,40.74985326918927]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":52517.018137,"geom:bbox":"-73.9886903613,40.7470892842,-73.9844757406,40.7498532692","geom:latitude":40.74844,"geom:longitude":-73.986593,"iso:country":"US","lbl:latitude":40.748542,"lbl:longitude":-73.985958,"lbl:max_zoom":18,"mps:latitude":40.748436,"mps:longitude":-73.986594,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ara_x_preferred":["كوريا تاون"],"name:deu_x_preferred":["Koreatown"],"name:jpn_x_preferred":["コリア・タウン"],"name:kor_x_preferred":["코리아타운"],"name:pol_x_preferred":["Koreatown"],"name:tha_x_preferred":["โคเรียทาวน์"],"name:zho_x_preferred":["韓國街"],"reversegeo:latitude":40.748436,"reversegeo:longitude":-73.986594,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882233,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"18770cfc34040a6109a94b3fffcdac4a","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907214343,"neighbourhood_id":85882233,"region_id":85688543}],"wof:id":907214343,"wof:lastmodified":1566608567,"wof:name":"Koreatown","wof:parent_id":85882233,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869391],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214345.geojson b/fixtures/microhoods/907214345.geojson new file mode 100644 index 0000000..df4046a --- /dev/null +++ b/fixtures/microhoods/907214345.geojson @@ -0,0 +1 @@ +{"id":907214345,"type":"Feature","bbox":[-73.86169987689026,40.86520054829574,-73.84582253683678,40.8732883686742],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.86169987689026,40.86539979725762],[-73.86160442508931,40.86959964458813],[-73.85745,40.86953300000018],[-73.85555000000011,40.87181300000015],[-73.85359796757658,40.8732883686742],[-73.84859700000018,40.87167000000012],[-73.84582253683678,40.87023907623617],[-73.8501024410501,40.86520054829574],[-73.86169987689026,40.86539979725762]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000084,"geom:area_square_m":781056.347222,"geom:bbox":"-73.8616998769,40.8652005483,-73.8458225368,40.8732883687","geom:latitude":40.868585,"geom:longitude":-73.853924,"iso:country":"US","lbl:latitude":40.869169,"lbl:longitude":-73.852979,"lbl:max_zoom":18,"mps:latitude":40.869169,"mps:longitude":-73.852979,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:ara_x_preferred":["لاكونيا"],"name:aze_x_preferred":["Lakonika"],"name:bel_x_preferred":["Лаконія"],"name:bul_x_preferred":["Лакония"],"name:cat_x_preferred":["Lacònia"],"name:ceb_x_preferred":["Nomós Lakonías"],"name:ces_x_preferred":["Lakónie"],"name:deu_x_preferred":["Lakonien"],"name:ell_x_preferred":["Νομός Λακωνίας"],"name:epo_x_preferred":["Lakonio"],"name:eus_x_preferred":["Lakonia"],"name:fas_x_preferred":["لاکونیا"],"name:fin_x_preferred":["Lakonia"],"name:fra_x_preferred":["Laconie"],"name:heb_x_preferred":["לאקוניה"],"name:hrv_x_preferred":["Prefektura Lakonija"],"name:hun_x_preferred":["Lakonía prefektúra"],"name:hye_x_preferred":["Լակոնիա"],"name:ind_x_preferred":["Lakonia"],"name:ita_x_preferred":["Laconia"],"name:jpn_x_preferred":["ラコニア県"],"name:kat_x_preferred":["ლაკონია"],"name:kor_x_preferred":["라코니아현"],"name:lav_x_preferred":["Lakonijas nome"],"name:lit_x_preferred":["Lakonijos nomas"],"name:nld_x_preferred":["Laconië"],"name:nno_x_preferred":["Lakonía"],"name:nor_x_preferred":["Lakonia"],"name:pol_x_preferred":["Lakonia"],"name:por_x_preferred":["Lacônia"],"name:ron_x_preferred":["Laconia"],"name:rus_x_preferred":["Лакония"],"name:slk_x_preferred":["Lakónia"],"name:slv_x_preferred":["Lakonija"],"name:spa_x_preferred":["Laconia"],"name:srp_x_preferred":["Лаконија"],"name:swe_x_preferred":["Lakonien"],"name:tur_x_preferred":["Lakonia"],"name:ukr_x_preferred":["Лаконія"],"name:urd_x_preferred":["لاکونیا"],"name:war_x_preferred":["Lakonia"],"name:zho_x_preferred":["拉科尼亚"],"reversegeo:latitude":40.869169,"reversegeo:longitude":-73.852979,"src:geom":"mz","wof:belongsto":[85869069,102191575,907157027,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7e0c5284047920dadbc8f1b6125446fd","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157027,"microhood_id":907214345,"neighbourhood_id":85869069,"region_id":85688543}],"wof:id":907214345,"wof:lastmodified":1566608567,"wof:name":"Laconia","wof:parent_id":85869069,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420528059],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214347.geojson b/fixtures/microhoods/907214347.geojson new file mode 100644 index 0000000..cb6ade0 --- /dev/null +++ b/fixtures/microhoods/907214347.geojson @@ -0,0 +1 @@ +{"id":907214347,"type":"Feature","bbox":[-73.86580472015291,40.73390452332015,-73.85872104367938,40.73832297037776],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.86580472015291,40.73658663796159],[-73.86009536569559,40.73832297037776],[-73.85872104367938,40.7355972700913],[-73.864424,40.73390500000026],[-73.86442726358096,40.73390452332015],[-73.86580472015291,40.73658663796159]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":166716.670311,"geom:bbox":"-73.8658047202,40.7339045233,-73.8587210437,40.7383229704","geom:latitude":40.736106,"geom:longitude":-73.862256,"iso:country":"US","lbl:latitude":40.736319,"lbl:longitude":-73.862822,"lbl:max_zoom":18,"mps:latitude":40.736107,"mps:longitude":-73.862255,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:fra_x_preferred":["LeFrak City"],"reversegeo:latitude":40.736107,"reversegeo:longitude":-73.862255,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85812357,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c92e2552b8bf1cf7e7c317fa4994dc1e","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907214347,"neighbourhood_id":85812357,"region_id":85688543}],"wof:id":907214347,"wof:lastmodified":1566608565,"wof:name":"LeFrak City","wof:parent_id":85812357,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865639],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214349.geojson b/fixtures/microhoods/907214349.geojson new file mode 100644 index 0000000..d0a204f --- /dev/null +++ b/fixtures/microhoods/907214349.geojson @@ -0,0 +1 @@ +{"id":907214349,"type":"Feature","bbox":[-73.97301515727007,40.75821347130981,-73.94855049441267,40.77574499222065],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96464161150331,40.77574499222065],[-73.94855049441267,40.76897297822743],[-73.94866416477893,40.76885762439959],[-73.95006979303068,40.7670250883835],[-73.95441826078607,40.76218410495125],[-73.95650786241211,40.76028525657404],[-73.958787773424,40.75821347130981],[-73.96192232679475,40.75954975076039],[-73.97301515727007,40.76427869286467],[-73.96464161150331,40.77574499222065]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000232,"geom:area_square_m":2171820.677705,"geom:bbox":"-73.9730151573,40.7582134713,-73.9485504944,40.7757449922","geom:latitude":40.766856,"geom:longitude":-73.961027,"iso:country":"US","lbl:latitude":40.767804,"lbl:longitude":-73.966805,"lbl:max_zoom":18,"mps:latitude":40.766695,"mps:longitude":-73.961026,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:deu_x_preferred":["Lenox Hill"],"name:eng_x_preferred":["Lenox Hill"],"name:eng_x_variant":["Lenox Hl","Meiers Corners"],"name:fra_x_preferred":["Lenox Hill"],"name:jpn_x_preferred":["レノックス・ヒル"],"name:nld_x_preferred":["Lenox Hill"],"name:rus_x_preferred":["Ленокс-Хилл"],"name:spa_x_preferred":["Lenox Hill"],"name:zho_x_preferred":["萊諾克斯山丘"],"reversegeo:latitude":40.766695,"reversegeo:longitude":-73.961026,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865691,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1190605"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3569f3b0323cd120cdfabf3cb945a01a","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":907214349,"neighbourhood_id":85865691,"region_id":85688543}],"wof:id":907214349,"wof:lastmodified":1566608565,"wof:name":"Lenox Hill","wof:parent_id":85865691,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865577],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214351.geojson b/fixtures/microhoods/907214351.geojson new file mode 100644 index 0000000..c01821d --- /dev/null +++ b/fixtures/microhoods/907214351.geojson @@ -0,0 +1 @@ +{"id":907214351,"type":"Feature","bbox":[-73.83849939652794,40.76276351188412,-73.8090464636919,40.77704579641477],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.82821800414835,40.76388017512392],[-73.83135247010006,40.76304044310682],[-73.83199622145781,40.76292258658353],[-73.83257470756045,40.76285001607076],[-73.83313428006984,40.76277790020225],[-73.83333392610835,40.76276477101973],[-73.8335991866563,40.76276351188412],[-73.83405609659472,40.76277137512687],[-73.83461324516269,40.76278637380747],[-73.83510761041599,40.76279792558182],[-73.83559052249721,40.76280837058697],[-73.83603173211714,40.76349739052698],[-73.83630126100054,40.76393681054032],[-73.83683762816267,40.76473964522026],[-73.83709428380034,40.76512943628598],[-73.83751309013844,40.76571661825528],[-73.83775347685864,40.76602822058663],[-73.83794799211823,40.76620037131978],[-73.83820808251158,40.76636665362127],[-73.83849939652794,40.76652476526994],[-73.83700981026945,40.76844800000021],[-73.83690881026952,40.76886600000016],[-73.83548581026929,40.77008100000015],[-73.83539781026947,40.77036000000014],[-73.83062381026953,40.77329000000027],[-73.82901381026946,40.77486400000029],[-73.82884081026944,40.77469900000014],[-73.82809881026942,40.77603100000022],[-73.82777681026951,40.7759770000002],[-73.82717751020377,40.77704579641477],[-73.82582500000011,40.77667100000023],[-73.82167,40.77686300000013],[-73.817643,40.77639800000021],[-73.81278400000014,40.77561465210167],[-73.80952646121067,40.77535287634397],[-73.80999220249649,40.77175319129923],[-73.8090464636919,40.77158536951638],[-73.80982576352218,40.76603407403022],[-73.81743962656972,40.76658858574813],[-73.82510378395146,40.76572775934122],[-73.82794461588107,40.76538899239251],[-73.82821800414835,40.76388017512392]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000271,"geom:area_square_m":2533297.350739,"geom:bbox":"-73.8384993965,40.7627635119,-73.8090464637,40.7770457964","geom:latitude":40.770195,"geom:longitude":-73.823112,"iso:country":"US","lbl:latitude":40.711495,"lbl:longitude":-73.913455,"lbl:max_zoom":18,"mps:latitude":40.771352,"mps:longitude":-73.823392,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Linden Hl"],"reversegeo:latitude":40.771352,"reversegeo:longitude":-73.823392,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"efb64b38c8c77d82d3c49456ea74dbb8","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907214351,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907214351,"wof:lastmodified":1566608566,"wof:name":"Linden Hill","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85830727],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214353.geojson b/fixtures/microhoods/907214353.geojson new file mode 100644 index 0000000..80bf733 --- /dev/null +++ b/fixtures/microhoods/907214353.geojson @@ -0,0 +1 @@ +{"id":907214353,"type":"Feature","bbox":[-73.85842950791307,40.66011893315381,-73.84166628235876,40.67306596933441],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.84214,40.66826900000051],[-73.84166628235876,40.66606970683247],[-73.84635668164377,40.66408967738508],[-73.84832747751602,40.66311960729959],[-73.85002824742175,40.6622714289968],[-73.85101578705572,40.66168201741061],[-73.85213760436552,40.66087709871327],[-73.85761537185581,40.66011893315381],[-73.85842950791307,40.66345336093104],[-73.85568461221037,40.66386749287555],[-73.85763317698044,40.67165597514837],[-73.85794356919956,40.67306596933441],[-73.85571699999984,40.67253400000025],[-73.84214,40.66826900000051]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000121,"geom:area_square_m":1136007.143385,"geom:bbox":"-73.8584295079,40.6601189332,-73.8416662824,40.6730659693","geom:latitude":40.666479,"geom:longitude":-73.85134,"iso:country":"US","lbl:latitude":40.667501,"lbl:longitude":-73.851201,"lbl:max_zoom":18,"mps:latitude":40.66666,"mps:longitude":-73.851467,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Lindenwood"],"reversegeo:latitude":40.66666,"reversegeo:longitude":-73.851467,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420782889,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4b3134aceb8b0d4f491589b6af1ebb36","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907214353,"neighbourhood_id":420782889,"region_id":85688543}],"wof:id":907214353,"wof:lastmodified":1566608565,"wof:name":"Lindenwood","wof:parent_id":420782889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869421],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214359.geojson b/fixtures/microhoods/907214359.geojson new file mode 100644 index 0000000..4dfc8fa --- /dev/null +++ b/fixtures/microhoods/907214359.geojson @@ -0,0 +1 @@ +{"id":907214359,"type":"Feature","bbox":[-74.11404053146028,40.63469559230656,-74.10531700396457,40.64557912880397],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.10678324698173,40.64557135459582],[-74.10531700396457,40.63888405516354],[-74.10726434648424,40.63864848389763],[-74.1072783481939,40.63864048292069],[-74.1072881842439,40.63863000749863],[-74.10729234990355,40.63861614661582],[-74.10729101640739,40.63860314502828],[-74.10644368416507,40.63469559230656],[-74.11232752396165,40.63474459163873],[-74.11401818704691,40.64346277016022],[-74.11379666086012,40.64360951580807],[-74.11404053146028,40.64404250211994],[-74.11395094068484,40.64413659167529],[-74.11288806510966,40.64453244463761],[-74.11282960893541,40.64446242868855],[-74.11379152893629,40.64407522183075],[-74.11380493647307,40.64404273550789],[-74.11385205211589,40.64404098058402],[-74.11389010824354,40.64398966912685],[-74.11381590334793,40.6438957413406],[-74.11376653215508,40.64389066348559],[-74.11369030102539,40.64392321192989],[-74.11363867687005,40.64391300836716],[-74.11354450863924,40.64395412006733],[-74.11333023192641,40.6437234975864],[-74.11180799136832,40.64461067447674],[-74.1119033368524,40.64470602724287],[-74.11116129469261,40.64509642318148],[-74.111116336666,40.64504690232309],[-74.11176646650024,40.64470616034492],[-74.11172529995717,40.64465936172609],[-74.11101110999863,40.64505309528206],[-74.10973932564494,40.64546372818478],[-74.10886489895968,40.64557912880397],[-74.10678324698173,40.64557135459582]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000072,"geom:area_square_m":671667.620837,"geom:bbox":"-74.1140405315,40.6346955923,-74.105317004,40.6455791288","geom:latitude":40.640193,"geom:longitude":-74.109686,"iso:country":"US","lbl:latitude":40.642413,"lbl:longitude":-74.10749,"lbl:max_zoom":18,"mps:latitude":40.641336,"mps:longitude":-74.109765,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ara_x_preferred":["ليفينغستون"],"name:bel_x_preferred":["Лівінгстан"],"name:bre_x_preferred":["Livingston"],"name:cat_x_preferred":["Livingston"],"name:ceb_x_preferred":["Livingston"],"name:ces_x_preferred":["Livingston"],"name:deu_x_preferred":["Livingston"],"name:eng_x_preferred":["Livingston"],"name:eus_x_preferred":["Livingston"],"name:fas_x_preferred":["لیوینگستون"],"name:fin_x_preferred":["Livingston"],"name:fra_x_preferred":["Livingston"],"name:heb_x_preferred":["ליווינגסטון"],"name:hun_x_preferred":["Livingston"],"name:ita_x_preferred":["Livingston"],"name:lav_x_preferred":["Livingston"],"name:nld_x_preferred":["Livingston"],"name:nor_x_preferred":["Livingston"],"name:pol_x_preferred":["Livingston"],"name:por_x_preferred":["Livingston"],"name:rus_x_preferred":["Ливингстон"],"name:sco_x_preferred":["Livingston"],"name:slk_x_preferred":["Livingston"],"name:spa_x_preferred":["Livingston"],"name:srp_x_preferred":["Ливингстон"],"name:swe_x_preferred":["Livingston"],"name:und_x_variant":["Centerville"],"name:urd_x_preferred":["لیونگسٹن"],"name:vol_x_preferred":["Livingston"],"name:war_x_preferred":["Livingston"],"reversegeo:latitude":40.641336,"reversegeo:longitude":-74.109765,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865885,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ba404c8764823cfdce8675250336d194","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907214359,"neighbourhood_id":85865885,"region_id":85688543}],"wof:id":907214359,"wof:lastmodified":1566608566,"wof:name":"Livingston","wof:parent_id":85865885,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869437],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214361.geojson b/fixtures/microhoods/907214361.geojson new file mode 100644 index 0000000..360366f --- /dev/null +++ b/fixtures/microhoods/907214361.geojson @@ -0,0 +1 @@ +{"id":907214361,"type":"Feature","bbox":[-73.77959970939769,40.6718523516756,-73.7653113081317,40.68082570022268],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.7653113081317,40.67538599781762],[-73.76575644580544,40.67478851401022],[-73.7687485461267,40.67413294322495],[-73.7683761958645,40.67302350106268],[-73.7737353799955,40.67224688056498],[-73.77468903578087,40.6718523516756],[-73.77959970939769,40.67837267441074],[-73.77913445939836,40.67871456212671],[-73.77860961759325,40.67907557250198],[-73.7780508660672,40.67942697824559],[-73.77786107057216,40.6795424869073],[-73.77768346440723,40.67964235994502],[-73.77732203385658,40.67980339607842],[-73.7771332634237,40.67987018072733],[-73.77689902607095,40.67996317755359],[-73.77653638117981,40.68007642131061],[-73.77503794518645,40.68052113813983],[-73.77408629838284,40.68082570022268],[-73.7653113081317,40.67538599781762]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00007,"geom:area_square_m":655508.421275,"geom:bbox":"-73.7795997094,40.6718523517,-73.7653113081,40.6808257002","geom:latitude":40.676299,"geom:longitude":-73.77301,"iso:country":"US","lbl:latitude":40.675179,"lbl:longitude":-73.760522,"lbl:max_zoom":18,"mps:latitude":40.676397,"mps:longitude":-73.773606,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Locust Mnr"],"reversegeo:latitude":40.676397,"reversegeo:longitude":-73.773606,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827297,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fa89b03566c626035f911000310fa488","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907214361,"neighbourhood_id":85827297,"region_id":85688543}],"wof:id":907214361,"wof:lastmodified":1566608566,"wof:name":"Locust Manor","wof:parent_id":85827297,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85831177],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214363.geojson b/fixtures/microhoods/907214363.geojson new file mode 100644 index 0000000..72c7826 --- /dev/null +++ b/fixtures/microhoods/907214363.geojson @@ -0,0 +1 @@ +{"id":907214363,"type":"Feature","bbox":[-73.827241,40.803996,-73.790063,40.818557],"geometry":{"type":"Polygon","coordinates":[[[-73.827241,40.812993],[-73.822114,40.814738],[-73.822083,40.814748],[-73.822047,40.814755],[-73.817717,40.815682],[-73.814185,40.816437],[-73.814107,40.81645],[-73.814039,40.816457],[-73.809188,40.816822],[-73.807364,40.81705],[-73.807052,40.817104],[-73.806773,40.817166],[-73.806517,40.817241],[-73.806284,40.817322],[-73.806164,40.817378],[-73.805501,40.817684],[-73.803868,40.818531],[-73.803483,40.818277],[-73.802674,40.818239],[-73.802522,40.818526],[-73.802079,40.818557],[-73.801885,40.818359],[-73.800708,40.818045],[-73.800583,40.817911],[-73.800573,40.8177],[-73.798095,40.816796],[-73.79759,40.816508],[-73.797381,40.815764],[-73.797715,40.815513],[-73.798119,40.815699],[-73.798642,40.815464],[-73.799028,40.815541],[-73.80011,40.814029],[-73.800111,40.814025],[-73.800488,40.813867],[-73.800916,40.813761],[-73.80132,40.813261],[-73.801458,40.812941],[-73.801746,40.812865],[-73.801426,40.812424],[-73.801374,40.812444],[-73.801339,40.812394],[-73.801388,40.812367],[-73.801404,40.812363],[-73.801759,40.812861],[-73.802591,40.812509],[-73.802768,40.812464],[-73.802861,40.812452],[-73.803048,40.812449],[-73.803141,40.812457],[-73.803232,40.812473],[-73.803407,40.812524],[-73.80347,40.812559],[-73.803512,40.812559],[-73.803549,40.81253],[-73.803579,40.812519],[-73.803614,40.812521],[-73.803645,40.812557],[-73.803654,40.81258],[-73.80364,40.812635],[-73.80352,40.812922],[-73.803621,40.812965],[-73.803738,40.812794],[-73.803779,40.81281],[-73.803614,40.813045],[-73.803857,40.813277],[-73.804252,40.81365],[-73.804344,40.813597],[-73.804358,40.813609],[-73.804154,40.813731],[-73.804142,40.813718],[-73.804229,40.813663],[-73.803872,40.813322],[-73.803602,40.813056],[-73.803559,40.813043],[-73.803615,40.812972],[-73.803514,40.812935],[-73.803459,40.813051],[-73.803388,40.81313],[-73.803297,40.813169],[-73.803253,40.813197],[-73.803235,40.813296],[-73.803344,40.81332],[-73.80335,40.813305],[-73.803461,40.813329],[-73.803452,40.813352],[-73.803368,40.813332],[-73.803364,40.813341],[-73.803232,40.813316],[-73.803224,40.813359],[-73.803455,40.813403],[-73.803967,40.813967],[-73.804044,40.813941],[-73.804091,40.813952],[-73.804184,40.81403],[-73.804191,40.814053],[-73.804177,40.814061],[-73.804435,40.814293],[-73.804454,40.814292],[-73.804522,40.814247],[-73.804531,40.814255],[-73.804434,40.814319],[-73.804036,40.813963],[-73.80396,40.813988],[-73.80343,40.813422],[-73.803355,40.813406],[-73.803222,40.813375],[-73.803199,40.813505],[-73.803517,40.813952],[-73.80418,40.81459],[-73.804315,40.814592],[-73.80436,40.81457],[-73.804353,40.814556],[-73.804392,40.814538],[-73.80443,40.814583],[-73.804386,40.814604],[-73.804365,40.814588],[-73.80433,40.814603],[-73.804351,40.814619],[-73.804473,40.81489],[-73.805115,40.815636],[-73.80596,40.816042],[-73.806199,40.816287],[-73.806285,40.816268],[-73.806416,40.816514],[-73.806545,40.816615],[-73.806572,40.816606],[-73.806567,40.8166],[-73.806584,40.816595],[-73.806547,40.816527],[-73.806543,40.816528],[-73.80631,40.816147],[-73.806088,40.815931],[-73.805453,40.815499],[-73.80541,40.815505],[-73.805282,40.815411],[-73.805081,40.815198],[-73.804804,40.814899],[-73.804554,40.81463],[-73.804542,40.814608],[-73.804659,40.814545],[-73.804684,40.814572],[-73.804589,40.814622],[-73.804814,40.814877],[-73.805099,40.815187],[-73.805279,40.815377],[-73.805398,40.815471],[-73.805436,40.81546],[-73.806101,40.81592],[-73.806329,40.816138],[-73.806542,40.816455],[-73.806612,40.816578],[-73.806707,40.816553],[-73.80672,40.816575],[-73.806579,40.816618],[-73.806606,40.816664],[-73.806929,40.816568],[-73.806536,40.815892],[-73.806554,40.815889],[-73.806718,40.81616],[-73.806942,40.816565],[-73.807046,40.816534],[-73.806629,40.815684],[-73.806587,40.815699],[-73.806578,40.81573],[-73.806402,40.815702],[-73.806412,40.815664],[-73.806564,40.815688],[-73.806618,40.815669],[-73.806593,40.815617],[-73.806352,40.815533],[-73.805675,40.815212],[-73.80545,40.81494],[-73.805319,40.814781],[-73.805166,40.813685],[-73.805192,40.813144],[-73.804797,40.812728],[-73.804387,40.81223],[-73.804215,40.812162],[-73.803903,40.812144],[-73.803614,40.811938],[-73.803332,40.8116],[-73.802726,40.81063],[-73.802242,40.810197],[-73.80205,40.810161],[-73.801356,40.810711],[-73.801157,40.810588],[-73.801012,40.810713],[-73.800995,40.810707],[-73.80124,40.810479],[-73.801467,40.810142],[-73.800109,40.809711],[-73.798538,40.809587],[-73.792289,40.806849],[-73.791724,40.806878],[-73.791603,40.806894],[-73.791443,40.806964],[-73.791342,40.807054],[-73.791302,40.807122],[-73.791309,40.807195],[-73.791356,40.807255],[-73.791441,40.807295],[-73.791525,40.807347],[-73.79159,40.807412],[-73.79157,40.807457],[-73.791541,40.80748],[-73.791504,40.807496],[-73.791442,40.8075],[-73.790865,40.807341],[-73.790759,40.807066],[-73.790722,40.80678],[-73.790735,40.806589],[-73.790428,40.806327],[-73.790253,40.806019],[-73.790125,40.805772],[-73.790063,40.805409],[-73.790152,40.80508],[-73.790284,40.804817],[-73.79066,40.804486],[-73.791037,40.804263],[-73.791694,40.804122],[-73.792245,40.803996],[-73.79339,40.804204],[-73.794516,40.805003],[-73.795778,40.806163],[-73.795952,40.805982],[-73.79601,40.805921],[-73.796209,40.805969],[-73.796503,40.806104],[-73.796428,40.806201],[-73.796369,40.806277],[-73.797029,40.806345],[-73.79792,40.806694],[-73.798859,40.807136],[-73.801855,40.808968],[-73.802504,40.809114],[-73.802536,40.809111],[-73.803412,40.809736],[-73.80399,40.810196],[-73.804537,40.810702],[-73.805191,40.811416],[-73.807152,40.813717],[-73.808246,40.814868],[-73.808641,40.815493],[-73.813841,40.814711],[-73.813048,40.813291],[-73.813134,40.813331],[-73.81347,40.813393],[-73.813494,40.813359],[-73.813562,40.81333],[-73.813598,40.813326],[-73.813575,40.813364],[-73.813598,40.813385],[-73.813552,40.813432],[-73.813703,40.813532],[-73.813889,40.81359],[-73.814003,40.813551],[-73.814157,40.813521],[-73.814268,40.813512],[-73.81435,40.813512],[-73.814431,40.813518],[-73.81446,40.812963],[-73.814372,40.812959],[-73.814369,40.812936],[-73.814437,40.812938],[-73.81447,40.812915],[-73.81447,40.812906],[-73.8145,40.812908],[-73.814502,40.812922],[-73.814525,40.812946],[-73.814619,40.812947],[-73.814619,40.812967],[-73.814497,40.812965],[-73.814477,40.813519],[-73.814706,40.813519],[-73.814857,40.813541],[-73.815332,40.813522],[-73.815514,40.813505],[-73.815663,40.813512],[-73.815762,40.813572],[-73.815879,40.813767],[-73.816201,40.813847],[-73.81648,40.813853],[-73.816678,40.8138],[-73.816749,40.813708],[-73.817041,40.813652],[-73.817372,40.813574],[-73.81736,40.813376],[-73.817377,40.813376],[-73.817389,40.813571],[-73.817448,40.813559],[-73.817595,40.813548],[-73.817921,40.813545],[-73.817931,40.813401],[-73.817939,40.813396],[-73.817942,40.813356],[-73.817931,40.813353],[-73.817935,40.813298],[-73.817976,40.813299],[-73.817971,40.813357],[-73.817959,40.813357],[-73.817956,40.813398],[-73.817964,40.813402],[-73.817958,40.813541],[-73.818042,40.813533],[-73.81808,40.813517],[-73.818084,40.813469],[-73.818117,40.813468],[-73.81815,40.813473],[-73.818201,40.813487],[-73.818744,40.813426],[-73.819467,40.81324],[-73.819562,40.813218],[-73.819816,40.81318],[-73.820012,40.813092],[-73.82007,40.813045],[-73.820096,40.812973],[-73.820108,40.812864],[-73.820392,40.812844],[-73.820413,40.812972],[-73.820478,40.813019],[-73.820555,40.813018],[-73.82049,40.812836],[-73.820446,40.812845],[-73.820404,40.812774],[-73.820462,40.812757],[-73.820439,40.812707],[-73.820421,40.812711],[-73.820291,40.812448],[-73.820258,40.812454],[-73.820244,40.812431],[-73.821065,40.812204],[-73.821081,40.812227],[-73.820324,40.81244],[-73.820421,40.812638],[-73.82113,40.81245],[-73.821137,40.812467],[-73.820442,40.812658],[-73.820463,40.812702],[-73.820481,40.81275],[-73.820535,40.812743],[-73.820563,40.812808],[-73.820528,40.812826],[-73.820587,40.813019],[-73.821058,40.812977],[-73.821238,40.812931],[-73.821254,40.812905],[-73.821245,40.812885],[-73.821229,40.81288],[-73.821217,40.812871],[-73.821217,40.812859],[-73.821224,40.81285],[-73.821266,40.812848],[-73.821301,40.812852],[-73.821331,40.812859],[-73.821366,40.812875],[-73.821413,40.812873],[-73.821394,40.812841],[-73.821457,40.812818],[-73.821404,40.812709],[-73.821423,40.812702],[-73.821517,40.812847],[-73.82162,40.812831],[-73.821702,40.812753],[-73.82166,40.812674],[-73.821695,40.812665],[-73.821756,40.812769],[-73.821972,40.81275],[-73.82211,40.812701],[-73.822091,40.812628],[-73.822126,40.812623],[-73.822178,40.81268],[-73.822283,40.812661],[-73.822134,40.812366],[-73.822171,40.812354],[-73.822271,40.81254],[-73.822252,40.812549],[-73.822309,40.812658],[-73.822639,40.812576],[-73.822726,40.812505],[-73.823329,40.812381],[-73.823451,40.812324],[-73.823463,40.812202],[-73.823474,40.812191],[-73.823498,40.812195],[-73.823523,40.812223],[-73.823558,40.812276],[-73.823721,40.812261],[-73.824358,40.812063],[-73.824536,40.811987],[-73.824591,40.811896],[-73.824584,40.811818],[-73.824596,40.81177],[-73.824711,40.811699],[-73.824769,40.811701],[-73.824794,40.811719],[-73.824818,40.811754],[-73.824831,40.811808],[-73.824873,40.811847],[-73.824941,40.811857],[-73.82502,40.811843],[-73.825058,40.81183],[-73.824809,40.811439],[-73.82483,40.811432],[-73.824879,40.81151],[-73.824928,40.811537],[-73.824916,40.811572],[-73.825077,40.811823],[-73.825244,40.811761],[-73.82493,40.811337],[-73.824921,40.81134],[-73.824879,40.811273],[-73.824917,40.811261],[-73.824963,40.811319],[-73.824947,40.811326],[-73.825267,40.811752],[-73.825491,40.811659],[-73.825208,40.811224],[-73.825231,40.81121],[-73.825513,40.811649],[-73.825651,40.811592],[-73.825409,40.811162],[-73.825397,40.811168],[-73.825325,40.811038],[-73.825358,40.811028],[-73.825672,40.811585],[-73.825766,40.811552],[-73.825597,40.81124],[-73.825625,40.811226],[-73.82559,40.811168],[-73.825574,40.811171],[-73.8255,40.811028],[-73.825537,40.811016],[-73.825623,40.811154],[-73.825607,40.811161],[-73.825639,40.811217],[-73.825653,40.811212],[-73.825716,40.811327],[-73.825692,40.811341],[-73.825813,40.811534],[-73.825927,40.811487],[-73.825767,40.811216],[-73.825798,40.811205],[-73.825956,40.811474],[-73.826001,40.811464],[-73.826042,40.811449],[-73.826081,40.81143],[-73.826115,40.811406],[-73.826178,40.811294],[-73.826236,40.811283],[-73.827241,40.812993]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000111,"geom:area_square_m":1036659.644239,"geom:bbox":"-73.827241,40.803996,-73.790063,40.818557","geom:latitude":40.812762,"geom:longitude":-73.806178,"iso:country":"US","lbl:latitude":40.815777,"lbl:longitude":-73.801432,"lbl:max_zoom":18,"mps:latitude":40.815589,"mps:longitude":-73.801822,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Locust Point"],"name:deu_x_preferred":["Locust Point"],"name:eng_x_variant":["Locust Pt"],"name:nld_x_preferred":["Locust Point"],"reversegeo:latitude":40.815589,"reversegeo:longitude":-73.801822,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[421205773,102191575,85633793,102083063,85977539,907157031,85852219,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6f21a30de70d41be6030c6fc02338e13","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157031,"microhood_id":907214363,"neighbourhood_id":85852219,"region_id":85688543}],"wof:id":907214363,"wof:lastmodified":1613773512,"wof:name":"Locust Point","wof:parent_id":85852219,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868655],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214367.geojson b/fixtures/microhoods/907214367.geojson new file mode 100644 index 0000000..89e06a0 --- /dev/null +++ b/fixtures/microhoods/907214367.geojson @@ -0,0 +1 @@ +{"id":907214367,"type":"Feature","bbox":[-73.8321294909787,40.78670365210151,-73.8235474416933,40.79768244935802],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.82710009802346,40.79768244935802],[-73.82648691613034,40.7967439432416],[-73.82511350176453,40.79454090196611],[-73.82423404409771,40.79309690550312],[-73.82397524308286,40.79264603996772],[-73.82381081962025,40.79232914152241],[-73.82365881301197,40.7919623478711],[-73.82361922673738,40.79183140439561],[-73.82357004913327,40.7915695625556],[-73.82354974520378,40.79132713582268],[-73.8235474416933,40.79118622732413],[-73.82357327972183,40.78942358475945],[-73.82359719723989,40.78920629695806],[-73.82365478835898,40.78887128713986],[-73.82373270974824,40.78856320001054],[-73.82385860610813,40.78818967560505],[-73.82415508273627,40.78737928189992],[-73.82424978774735,40.78714058149471],[-73.82433475096414,40.78694894224449],[-73.82444981026948,40.78673965210146],[-73.82533681026942,40.78670365210151],[-73.825453,40.78710865210162],[-73.82638,40.78797965210157],[-73.82892,40.78769165210154],[-73.82909,40.78856365210157],[-73.830779,40.78836065210147],[-73.830981,40.78915365210153],[-73.83143,40.78938565210154],[-73.8321294909787,40.79009006191096],[-73.8320711081039,40.79024250739355],[-73.83191507342454,40.7904602378586],[-73.83182483351118,40.79067298459244],[-73.83180901533771,40.79085608870736],[-73.83174331571024,40.79100610628163],[-73.83137353382806,40.79136894466204],[-73.83115486096949,40.79149424510241],[-73.83096269707298,40.79157601668994],[-73.83065972132668,40.79165021454862],[-73.83056779313934,40.79165792332032],[-73.8304901650687,40.79165181193729],[-73.83019817362349,40.79157169701324],[-73.83005211074477,40.79155144452659],[-73.82977794576166,40.79161724580177],[-73.82948296063856,40.79175392023617],[-73.82917068969361,40.79187075641023],[-73.82853626940816,40.79233638255494],[-73.82850117052854,40.79235623184513],[-73.82846554640064,40.79236853399551],[-73.82836657648606,40.79239541955735],[-73.82927850999302,40.79289060783452],[-73.82930325518097,40.79291263536861],[-73.82930732843707,40.79293620434299],[-73.82922857533963,40.79301934041091],[-73.82921203169062,40.79302245750085],[-73.82829155299574,40.79251424596073],[-73.82827013504232,40.79255815896744],[-73.82823426229454,40.79260234678186],[-73.82821200657729,40.79262689762366],[-73.82817584627144,40.79264923918219],[-73.82814646574917,40.79266119857054],[-73.82808189662191,40.7926864884005],[-73.82803976792378,40.79271165621282],[-73.82792932227476,40.79287850745511],[-73.82782132489069,40.7931614107365],[-73.82778457368804,40.79342078992596],[-73.82778550688813,40.79342694590959],[-73.82778457368795,40.79343044202747],[-73.82790968658175,40.79397972016697],[-73.82797764503653,40.79450970367476],[-73.82800604847586,40.79481653816278],[-73.82805741824848,40.79481492246429],[-73.82806997268553,40.79482113661221],[-73.82807108549228,40.79483101656881],[-73.82806416917745,40.79484337950296],[-73.82804185283638,40.79486360672121],[-73.8280225529441,40.79487631085414],[-73.8280137235593,40.79494206087162],[-73.8280838802911,40.7950247337597],[-73.82813785302837,40.79506132085697],[-73.82817505476636,40.79509966489555],[-73.82821393552646,40.79516247011632],[-73.82832651007617,40.79548108145818],[-73.82841279822479,40.79562302039044],[-73.82847351197243,40.79566448048679],[-73.82852965393734,40.7956828175727],[-73.82857242430373,40.79568485413637],[-73.82860453183895,40.79567698497475],[-73.82862330095595,40.79568169588399],[-73.82863787466592,40.79570492331978],[-73.82863957832053,40.79572894227555],[-73.82863431470767,40.79575729128526],[-73.82862557729023,40.79578201490875],[-73.82862144922062,40.7958072504736],[-73.82862725470014,40.79583472403547],[-73.82869161684447,40.79591907151728],[-73.82870304740113,40.79592482390004],[-73.82871437187116,40.79592151736277],[-73.82872444183312,40.7959134107016],[-73.82873561640451,40.7959084975214],[-73.82875497212035,40.79590146979827],[-73.82876235352461,40.79590179638196],[-73.82877290726599,40.79590811620348],[-73.8287840688513,40.79592631279301],[-73.82878811739309,40.79595109177288],[-73.8287834262599,40.79597337253342],[-73.82875327145068,40.79606051357986],[-73.82880962942976,40.79619342050282],[-73.82885466653134,40.796203096665],[-73.82892258328484,40.79620001852832],[-73.82897991724748,40.79621090965887],[-73.82906100849344,40.79625429083097],[-73.82913126948527,40.79629362054303],[-73.82919891573285,40.79642323976795],[-73.82925200048705,40.79649748335292],[-73.82927125580088,40.79654823785012],[-73.82927990172632,40.79658672852477],[-73.82929449211724,40.79667299129231],[-73.82931538346607,40.79669105079408],[-73.8293854595432,40.79673309951103],[-73.82941556721877,40.79675232487445],[-73.82944761505534,40.79677729770876],[-73.82945737123778,40.79678954986281],[-73.82946361428057,40.7968040304324],[-73.82946637122627,40.79681457101123],[-73.82945991534366,40.79682336759146],[-73.82944790883207,40.79682895086568],[-73.8294354834763,40.79683186869485],[-73.82941825785157,40.79683080789807],[-73.82939934401163,40.79682685328195],[-73.8293833846852,40.79682120131461],[-73.82936696838213,40.79681426140466],[-73.82934623333296,40.79680426178339],[-73.82932152634478,40.79679075349181],[-73.82929094280404,40.79677253757636],[-73.82926066599074,40.79674973610353],[-73.82925144264568,40.79674264433196],[-73.82924625663101,40.79673651427204],[-73.82923964136576,40.79672390556868],[-73.82923739382854,40.79671279045719],[-73.82924024957087,40.79669915176706],[-73.82924571071906,40.79668129379262],[-73.82923324157353,40.79665514272228],[-73.82920390880295,40.79662948867254],[-73.82916539769329,40.79660654162242],[-73.8291205235286,40.79658388214865],[-73.82905864191771,40.79656211413436],[-73.82874447314435,40.79656974361268],[-73.82848417580752,40.7966120586017],[-73.828368309912,40.79664081841526],[-73.82824143571035,40.79672445738755],[-73.82816968869709,40.79674682765196],[-73.82808178967329,40.79675641237909],[-73.82761877332679,40.79675692805156],[-73.8274176883121,40.79678901882903],[-73.82728527175658,40.79689418750655],[-73.827277258962,40.79691813814352],[-73.82728894490646,40.79693983844638],[-73.82728873655552,40.79695166189842],[-73.82728314189589,40.79696120798269],[-73.82727261992397,40.79696608278037],[-73.82725849390562,40.79696630368556],[-73.8272427683636,40.79696219266933],[-73.82721191019691,40.79692223637441],[-73.82720743469163,40.79692083367751],[-73.82717201225195,40.79693151408127],[-73.82709508032542,40.79697475842698],[-73.8270456517508,40.79701314454927],[-73.8270006249199,40.79706297403752],[-73.82697091510673,40.79712827768968],[-73.82697037970007,40.79716557621312],[-73.82699346947962,40.79725811110456],[-73.82699897185935,40.79727052728729],[-73.82701214322087,40.7972863341308],[-73.8270583749397,40.79731540765086],[-73.82710156847043,40.79735546373747],[-73.82718039545188,40.79748615496865],[-73.82719616007842,40.79752119807746],[-73.82719495057243,40.79757161549474],[-73.82718643262825,40.79759811342443],[-73.82717025288582,40.79762356261689],[-73.82712912435548,40.79766373758639],[-73.82710009802346,40.79768244935802]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":448174.40187,"geom:bbox":"-73.832129491,40.7867036521,-73.8235474417,40.7976824494","geom:latitude":40.791278,"geom:longitude":-73.827031,"iso:country":"US","lbl:latitude":40.791332,"lbl:longitude":-73.827078,"lbl:max_zoom":18,"mps:latitude":40.790745,"mps:longitude":-73.82625,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:fra_x_preferred":["Malba"],"reversegeo:latitude":40.790745,"reversegeo:longitude":-73.82625,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85857567,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b0c692bd6cdfec872ee4980e850137b8","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907214367,"neighbourhood_id":85857567,"region_id":85688543}],"wof:id":907214367,"wof:lastmodified":1566608566,"wof:name":"Malba","wof:parent_id":85857567,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85832003],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214375.geojson b/fixtures/microhoods/907214375.geojson new file mode 100644 index 0000000..de03a9c --- /dev/null +++ b/fixtures/microhoods/907214375.geojson @@ -0,0 +1 @@ +{"id":907214375,"type":"Feature","bbox":[-73.96137039889948,40.61803096835796,-73.95494919438849,40.62816627499118],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96137039889948,40.62764884190543],[-73.95677594922871,40.62816627499118],[-73.95494919438849,40.61853482113333],[-73.959601321834,40.61803096835796],[-73.96137039889948,40.62764884190543]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000045,"geom:area_square_m":426239.629408,"geom:bbox":"-73.9613703989,40.6180309684,-73.9549491944,40.628166275","geom:latitude":40.623086,"geom:longitude":-73.958172,"iso:country":"US","lbl:latitude":40.612917,"lbl:longitude":-73.962349,"lbl:max_zoom":18,"mps:latitude":40.623097,"mps:longitude":-73.958172,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Manhattan Ter"],"reversegeo:latitude":40.623097,"reversegeo:longitude":-73.958172,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865583,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"79163b7a7ca36b19f12acd67ff74fe69","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907214375,"neighbourhood_id":85865583,"region_id":85688543}],"wof:id":907214375,"wof:lastmodified":1566608567,"wof:name":"Manhattan Terrace","wof:parent_id":85865583,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866221],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214381.geojson b/fixtures/microhoods/907214381.geojson new file mode 100644 index 0000000..9b825aa --- /dev/null +++ b/fixtures/microhoods/907214381.geojson @@ -0,0 +1 @@ +{"id":907214381,"type":"Feature","bbox":[-73.9685681853695,40.7941462844332,-73.95835755205569,40.80299078998438],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96290191911386,40.7941462844332],[-73.96428140281904,40.79471844692104],[-73.96443622733405,40.7947893193214],[-73.96462711590401,40.79489070386327],[-73.9650803000408,40.79514919843774],[-73.96575241437054,40.79547292221916],[-73.96704047410157,40.7960268073065],[-73.9685681853695,40.7966443479519],[-73.96394258863215,40.80299078998438],[-73.959647,40.80115600000011],[-73.95850854015947,40.80068227976747],[-73.95853274080838,40.8004913624647],[-73.95835755205569,40.80036909563382],[-73.96290191911386,40.7941462844332]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":445478.700163,"geom:bbox":"-73.9685681854,40.7941462844,-73.9583575521,40.80299079","geom:latitude":40.798587,"geom:longitude":-73.963399,"iso:country":"US","lbl:latitude":40.797197,"lbl:longitude":-73.964759,"lbl:max_zoom":18,"mps:latitude":40.798556,"mps:longitude":-73.963399,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Manhattan Valley"],"name:eng_x_variant":["Manhattan Vly","Bloomington Valley"],"name:fra_x_preferred":["Manhattan Valley"],"name:ind_x_preferred":["Manhattan Valley"],"name:por_x_preferred":["Manhattan Valley"],"name:rus_x_preferred":["Манхэттен-Валли"],"name:spa_x_preferred":["Manhattan Valley"],"reversegeo:latitude":40.798556,"reversegeo:longitude":-73.963399,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85853285,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e1f0b22cc8df4060262c0396c7f24f26","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":907214381,"neighbourhood_id":85853285,"region_id":85688543}],"wof:id":907214381,"wof:lastmodified":1566608567,"wof:name":"Manhattan Valley","wof:parent_id":85853285,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865683],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214383.geojson b/fixtures/microhoods/907214383.geojson new file mode 100644 index 0000000..c54a36c --- /dev/null +++ b/fixtures/microhoods/907214383.geojson @@ -0,0 +1 @@ +{"id":907214383,"type":"Feature","bbox":[-74.0126592820851,40.73930210220413,-74.00508495229582,40.74250883227597],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.00508495229582,40.74082316828506],[-74.00535227161514,40.73936502438079],[-74.0115880357905,40.73930210220413],[-74.01158715816635,40.73947887033481],[-74.01163351895194,40.73950648606608],[-74.01162792311777,40.73956247410618],[-74.01155518156288,40.73955672622729],[-74.01152745020426,40.73987377145007],[-74.01159286133142,40.73987376488405],[-74.01161258017355,40.73970760054956],[-74.01161589144259,40.73970779331821],[-74.01234819241692,40.73973756535366],[-74.01236917400036,40.73975164637213],[-74.01237411577738,40.73977886786773],[-74.01234943428379,40.73979389076181],[-74.01228649627012,40.73979296102123],[-74.01228897847173,40.73989904212461],[-74.0123136634877,40.73990279375327],[-74.01234328917013,40.73992062979227],[-74.01235687134125,40.7399365847175],[-74.01234947552233,40.74001637981596],[-74.01232356118136,40.74003140300364],[-74.01227049910148,40.74003422696505],[-74.0122631074717,40.74014218976763],[-74.01230877290092,40.74014781277593],[-74.0123285235642,40.74016283157751],[-74.01232975860142,40.74018348844803],[-74.01231001212778,40.74019475620405],[-74.01157686924245,40.74016009950147],[-74.01158637887603,40.73997384795247],[-74.01151491736549,40.73997286369897],[-74.01146073955357,40.74058421475266],[-74.01215741913089,40.74060599813124],[-74.01215372624053,40.74067425662068],[-74.01265742489996,40.74069665223176],[-74.0126592820851,40.74074763849742],[-74.01147486918865,40.74068706027104],[-74.01137438820493,40.7407239476413],[-74.00963145571757,40.74064536737421],[-74.00949685520361,40.74072701178548],[-74.00949154621286,40.74074270943979],[-74.00951627358204,40.74077358367349],[-74.00951844195934,40.7408057229169],[-74.0094629386021,40.7409023372403],[-74.00941140266139,40.741154093313],[-74.00958452293763,40.74117535138812],[-74.00957692791621,40.74121065665437],[-74.01216232909229,40.74149188968272],[-74.01211904266799,40.74174910416141],[-74.01211745872159,40.74175851621158],[-74.00952698810543,40.74149107821183],[-74.00951947145015,40.74149030219862],[-74.00944784072533,40.74189159122019],[-74.00944719097618,40.74189154158327],[-74.0092779275609,40.7418786108562],[-74.00916135884381,40.74250883227597],[-74.00881,40.74237800000011],[-74.00508495229582,40.74082316828506]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000014,"geom:area_square_m":132263.61121,"geom:bbox":"-74.0126592821,40.7393021022,-74.0050849523,40.7425088323","geom:latitude":40.740499,"geom:longitude":-74.008467,"iso:country":"US","lbl:latitude":40.741617,"lbl:longitude":-74.007143,"lbl:max_zoom":18,"mps:latitude":40.74072,"mps:longitude":-74.008152,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["Districte Meatpacking"],"name:cat_x_variant":["districte Meatpacking"],"name:ces_x_preferred":["Meatpacking District"],"name:deu_x_preferred":["Meatpacking District"],"name:eng_x_preferred":["Meatpacking District"],"name:eng_x_variant":["Meat Packing District","Meatpackingdistrict"],"name:fra_x_preferred":["Meatpacking District"],"name:ind_x_preferred":["Meatpacking District"],"name:jpn_x_preferred":["ミート・パッキング・ディストリクト"],"name:nld_x_preferred":["Meatpacking District"],"name:por_x_preferred":["Meatpacking District"],"name:rus_x_preferred":["Митпэкинг"],"name:spa_x_preferred":["Meatpacking District"],"name:swe_x_preferred":["Meatpacking District"],"name:urd_x_preferred":["میٹپیکینگ ضلع"],"name:yid_x_preferred":["מיעט פעקינג דיסטריקט"],"name:zho_x_preferred":["米特帕金區"],"reversegeo:latitude":40.74072,"reversegeo:longitude":-74.008152,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85856577,102191575,907196817,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q280729"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"51944e5e2822ee7407372c85011a2318","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907196817,"microhood_id":907214383,"neighbourhood_id":85856577,"region_id":85688543}],"wof:id":907214383,"wof:lastmodified":1566608565,"wof:name":"Meat Packing District","wof:parent_id":85856577,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869463],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907214385.geojson b/fixtures/microhoods/907214385.geojson new file mode 100644 index 0000000..240f7ec --- /dev/null +++ b/fixtures/microhoods/907214385.geojson @@ -0,0 +1 @@ +{"id":907214385,"type":"Feature","bbox":[-74.1361288673169,40.60784118624562,-74.1262664760559,40.61285542873276],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.13072,40.61255800000021],[-74.12682337517231,40.61285542873276],[-74.1262664760559,40.608876574196],[-74.12743,40.6086150000001],[-74.13588842292093,40.60784118624562],[-74.13610596765308,40.61004637277031],[-74.1361288673169,40.6122449210908],[-74.13604,40.612262],[-74.13072,40.61255800000021]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000041,"geom:area_square_m":382065.069965,"geom:bbox":"-74.1361288673,40.6078411862,-74.1262664761,40.6128554287","geom:latitude":40.610392,"geom:longitude":-74.131353,"iso:country":"US","lbl:latitude":40.615505,"lbl:longitude":-74.145208,"lbl:max_zoom":18,"mps:latitude":40.610389,"mps:longitude":-74.131354,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Meiers Corners"],"name:eng_x_variant":["Meiers Cors"],"reversegeo:latitude":40.610389,"reversegeo:longitude":-74.131354,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85809781,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q6809992"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"cd9e2b8b24b0e83ac79bb85b5255bc9f","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907214385,"neighbourhood_id":85809781,"region_id":85688543}],"wof:id":907214385,"wof:lastmodified":1566608565,"wof:name":"Meiers Corners","wof:parent_id":85809781,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869469],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215389.geojson b/fixtures/microhoods/907215389.geojson new file mode 100644 index 0000000..ef7533e --- /dev/null +++ b/fixtures/microhoods/907215389.geojson @@ -0,0 +1 @@ +{"id":907215389,"type":"Feature","bbox":[-73.92145624656013,40.81939394763659,-73.91745093961867,40.82206993637245],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.91745093961867,40.82126713047492],[-73.91828731893737,40.81939394763659],[-73.92145624656013,40.82020797825525],[-73.92074360632155,40.82174476498965],[-73.92033569004288,40.82206993637245],[-73.91745093961867,40.82126713047492]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":62146.901462,"geom:bbox":"-73.9214562466,40.8193939476,-73.9174509396,40.8220699364","geom:latitude":40.820742,"geom:longitude":-73.91944,"iso:country":"US","lbl:latitude":40.820699,"lbl:longitude":-73.919623,"lbl:max_zoom":18,"mps:latitude":40.820756,"mps:longitude":-73.919441,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.820756,"reversegeo:longitude":-73.919441,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85833717,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"264caf6345f3ce33723f1cfdd7aa3a95","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907215389,"neighbourhood_id":85833717,"region_id":85688543}],"wof:id":907215389,"wof:lastmodified":1566608564,"wof:name":"Melrose Houses","wof:parent_id":85833717,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868023],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215391.geojson b/fixtures/microhoods/907215391.geojson new file mode 100644 index 0000000..0da3c31 --- /dev/null +++ b/fixtures/microhoods/907215391.geojson @@ -0,0 +1 @@ +{"id":907215391,"type":"Feature","bbox":[-73.92055759352564,40.80373853493478,-73.91503837505991,40.80684582756577],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.91970887307397,40.80684582756577],[-73.91503837505991,40.80486672534875],[-73.91585368554465,40.80373853493478],[-73.92055759352564,40.80567793828952],[-73.91970887307397,40.80684582756577]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":65622.577314,"geom:bbox":"-73.9205575935,40.8037385349,-73.9150383751,40.8068458276","geom:latitude":40.805288,"geom:longitude":-73.917804,"iso:country":"US","lbl:latitude":40.805345,"lbl:longitude":-73.917932,"lbl:max_zoom":18,"mps:latitude":40.805291,"mps:longitude":-73.917805,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.805291,"reversegeo:longitude":-73.917805,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85835417,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e41e1b7aaf2e5a4ce5c9313d8d54f3a8","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907215391,"neighbourhood_id":85835417,"region_id":85688543}],"wof:id":907215391,"wof:lastmodified":1566608557,"wof:name":"Mill Brook Houses","wof:parent_id":85835417,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868025],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215393.geojson b/fixtures/microhoods/907215393.geojson new file mode 100644 index 0000000..5be053c --- /dev/null +++ b/fixtures/microhoods/907215393.geojson @@ -0,0 +1 @@ +{"id":907215393,"type":"Feature","bbox":[-73.91708838503332,40.60350547610087,-73.90164211790105,40.61657537149951],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.913860530607,40.61464226907101],[-73.90964406040364,40.61657537149951],[-73.9096362583485,40.61656543743366],[-73.90959740910345,40.61639266979954],[-73.90900782730674,40.61577278690725],[-73.9086502467629,40.61548455568728],[-73.9085747448176,40.61544019631187],[-73.90840539767109,40.61543670957801],[-73.90834295344662,40.6153731232699],[-73.90785596197074,40.61520595414669],[-73.90740582820483,40.61475340341149],[-73.90730153384297,40.61480891300788],[-73.90687239780972,40.61426255834332],[-73.9067446758728,40.61430216486304],[-73.9054437870297,40.61301450900827],[-73.90535513021175,40.61306605793202],[-73.90505053373569,40.61290299700335],[-73.90509488171139,40.61286332355426],[-73.90496210660231,40.6127937216413],[-73.90490995852693,40.61282147677109],[-73.90424103859348,40.61236227321898],[-73.9043741076631,40.61222538629709],[-73.90431684436874,40.61218761479122],[-73.90428823036949,40.61215582377825],[-73.90427007250861,40.61210021448233],[-73.90429103725185,40.61201485612904],[-73.90420814113487,40.61195515209905],[-73.90410629882956,40.61204241028693],[-73.90404332529361,40.61199868643181],[-73.90406770985659,40.61197796216754],[-73.90411637142174,40.61201075637199],[-73.90416083877494,40.61197258159144],[-73.90409929902899,40.61192776700771],[-73.90414089145187,40.6118961393838],[-73.90384925159574,40.61168886793214],[-73.9035098078227,40.61140649037269],[-73.90339509282558,40.6114795439001],[-73.90340510537733,40.61149047001521],[-73.90331047012515,40.61154716386385],[-73.90328328895754,40.61151984615852],[-73.90337362137006,40.61146642441069],[-73.90337648209004,40.61146970301354],[-73.90349407447785,40.61138900874285],[-73.90342187266513,40.61131126705754],[-73.90333856047306,40.61127148761562],[-73.90313578707037,40.61096753815731],[-73.90286496065255,40.61088193328196],[-73.90274504537501,40.61093146873164],[-73.9026290686434,40.61081018839828],[-73.90268277928784,40.61075272266697],[-73.90239138175349,40.61048244972478],[-73.90232361334397,40.61050423258509],[-73.90225859966304,40.61042277260002],[-73.90221442765916,40.61034331603202],[-73.90222497639523,40.61025596362205],[-73.90227449074737,40.61024607779061],[-73.90220516294404,40.6095530845587],[-73.90207490818699,40.60954900355568],[-73.90214599092714,40.60904276556274],[-73.90210336163588,40.60903791648647],[-73.90196164219765,40.60861970003266],[-73.90196196584291,40.6083993112543],[-73.90199063921324,40.60837892815051],[-73.9020144080904,40.60835068139818],[-73.90200434649167,40.6083141928554],[-73.90199681828278,40.60829973286324],[-73.90197307401527,40.6082875734561],[-73.90197086408789,40.60827985434314],[-73.9019474600089,40.60805972911202],[-73.90191623151597,40.60805967499216],[-73.90187803412172,40.60780778415148],[-73.90191354153022,40.60780748124333],[-73.90187641024089,40.60734541899058],[-73.90190752124974,40.60734516610793],[-73.90189745276439,40.60723317753213],[-73.90186893018573,40.60723309002498],[-73.90167739606477,40.60609454913327],[-73.90171150437259,40.60609676640491],[-73.90170081037196,40.60587222129946],[-73.90165858100022,40.6058569219289],[-73.90164211790105,40.60576336073906],[-73.90177669809981,40.60567468655582],[-73.90181267270415,40.6056678646822],[-73.90185037412343,40.60571038411891],[-73.90187376201807,40.60570355147684],[-73.90189710069488,40.60572961179577],[-73.9027270522619,40.60552354487672],[-73.90520530979806,40.60490818290941],[-73.90524300992125,40.60491009032456],[-73.905287930234,40.60493479702361],[-73.9053918142236,40.60522680882985],[-73.90533534473153,40.60532427015961],[-73.90542440003244,40.6055402975896],[-73.90554717332581,40.60578083484398],[-73.90597461177875,40.60638402870444],[-73.90623422405243,40.60635398000775],[-73.90753931156165,40.60636906558187],[-73.90811001167592,40.60627326534329],[-73.90818770904376,40.60635433731639],[-73.90821683308766,40.60637297909426],[-73.9082860799965,40.60640287030336],[-73.9083737651495,40.60639662774231],[-73.90844815360894,40.60661674673968],[-73.90848093177046,40.60663539956955],[-73.90861472394569,40.60666083776884],[-73.90870529107156,40.60664693764744],[-73.9087459909934,40.60660861635522],[-73.9088291986602,40.6065649660007],[-73.90878731055207,40.60646279780025],[-73.90880856612377,40.60645735304994],[-73.90877243515094,40.60638433964555],[-73.90859415171701,40.60600127131517],[-73.90857234429059,40.60600738587102],[-73.90851058586276,40.60588372150546],[-73.90853378311814,40.60587680174962],[-73.90849236684984,40.60577213812837],[-73.90846664297467,40.60577949344966],[-73.90843408138494,40.60572873265527],[-73.90845649277894,40.60572229091959],[-73.90844212792877,40.60569268997906],[-73.90842412709915,40.60569779365293],[-73.90839365150676,40.60565380921935],[-73.90841899874364,40.60564634053191],[-73.90840420569975,40.60561388354353],[-73.90839062290353,40.60561845715274],[-73.90835983309918,40.60556113982059],[-73.90838206875917,40.60555361873654],[-73.90836540085226,40.60552223243479],[-73.90836357914422,40.60551081202884],[-73.90835197687802,40.60548942136901],[-73.90833426588054,40.60548438371612],[-73.90830727294616,40.60549220187805],[-73.90826141716491,40.60540559544094],[-73.908275785463,40.60540122518408],[-73.90825771968136,40.60536662571434],[-73.90825600624383,40.60536712777169],[-73.90825589550576,40.60535701746724],[-73.90824110417518,40.60532277861841],[-73.90804594062313,40.60538064820044],[-73.90803306097837,40.60535860211742],[-73.90840361574533,40.60524329706001],[-73.90841800626505,40.60526772238173],[-73.90829586897232,40.60530550149006],[-73.90831206762081,40.60533760110233],[-73.90833028939997,40.60533160184381],[-73.90841392944101,40.60550778185572],[-73.9083883134415,40.60551588275037],[-73.9084035756316,40.60554762376042],[-73.90842905394322,40.6055395941201],[-73.90846767150059,40.60563292872575],[-73.90849061430796,40.60562652359295],[-73.9085132769904,40.6056796902525],[-73.90849314617628,40.60568434142081],[-73.90867801158541,40.60605996797879],[-73.90866141097763,40.60606451057451],[-73.90868421931646,40.60610910367548],[-73.90870624207275,40.6061032286686],[-73.90873438126893,40.60615315961844],[-73.90871695983162,40.60615837135179],[-73.90879343156898,40.60632722552801],[-73.90876710091456,40.6063346821251],[-73.90877708012736,40.60635914661736],[-73.90882788621842,40.60644581272111],[-73.90884305768961,40.6064641320021],[-73.90886670981307,40.60647128783419],[-73.90892100027695,40.60645859497022],[-73.90892527516434,40.6064665033868],[-73.90887097975089,40.60648281822842],[-73.9088733834682,40.60649001266194],[-73.90885497326917,40.60649471903447],[-73.90888574422176,40.60653651882861],[-73.90906279646929,40.60646614621087],[-73.90908737385232,40.60646616565406],[-73.90913322764865,40.60648368458373],[-73.9091872847109,40.60649371840982],[-73.90923449625525,40.60648364666095],[-73.90927254334012,40.60645257592512],[-73.90933804983162,40.60647760302482],[-73.9098452832666,40.60616830550727],[-73.90980883736034,40.60608086004867],[-73.90985478785188,40.60602719798733],[-73.9098515484548,40.60599972217793],[-73.90977661382522,40.60582267723147],[-73.90960943418334,40.6056577960507],[-73.90959070936647,40.60566519716741],[-73.90898535789198,40.60515050964305],[-73.90894531863218,40.60504942652807],[-73.90885691315694,40.60506007379731],[-73.9087247642439,40.60473996999448],[-73.90874285904944,40.60472926702112],[-73.90861357941971,40.60451654785949],[-73.90857840990382,40.60452549978713],[-73.90854436867026,40.60444585598159],[-73.90845796643075,40.60446109885738],[-73.90830966174902,40.60412895007758],[-73.90832536835197,40.60407337391871],[-73.90889944956534,40.60391367252357],[-73.90893375673262,40.60397652867653],[-73.9091252659386,40.603927107042],[-73.9091345297295,40.60394410684931],[-73.91092270021196,40.60350547610087],[-73.91099559249963,40.60351822024776],[-73.91365119759625,40.60398251383712],[-73.91362533833536,40.60401648707577],[-73.91377776447153,40.60420645695329],[-73.91384142172902,40.60415768468776],[-73.9146928659457,40.60493896753167],[-73.91497779074935,40.60520409454705],[-73.91491345354056,40.60524538625553],[-73.9150438909926,40.60535572210595],[-73.91509616293008,40.60532360703464],[-73.91633531454008,40.60644705408047],[-73.91673556486211,40.60681456155026],[-73.91660442147965,40.60708939344492],[-73.91672115759056,40.60762484678028],[-73.91643604623195,40.60837599126059],[-73.91638795019617,40.60850270340519],[-73.91632230017538,40.60867566266916],[-73.9167839443277,40.60877388439236],[-73.91657073983444,40.60942353954604],[-73.9166256837356,40.60943683665813],[-73.91683981118773,40.60876001472073],[-73.91648700927337,40.60869920872234],[-73.9165092453595,40.60862975409018],[-73.91688964587335,40.60871001368702],[-73.91685536799852,40.60876093230733],[-73.91687395013781,40.60876294889288],[-73.91682803243785,40.60890605736697],[-73.91699867098366,40.60893673031203],[-73.9170516577582,40.60881413108985],[-73.91708838503332,40.60882085489878],[-73.91702822741905,40.6089748774137],[-73.91681964529593,40.60893138688537],[-73.91665676533476,40.60943674997097],[-73.91681036958977,40.60946691562432],[-73.91679953090701,40.60949419223116],[-73.91670379289533,40.60947271234208],[-73.91668075282955,40.60955133512097],[-73.91664099809648,40.60954543188991],[-73.91666379730019,40.6094572855876],[-73.91656604065847,40.60943782267787],[-73.91638585145242,40.61008889290511],[-73.91606077132613,40.61043050936308],[-73.91616475037755,40.61051557507631],[-73.91554577673008,40.61092847019065],[-73.91492035932124,40.61126665733806],[-73.91499950855349,40.61133572880869],[-73.9148900110566,40.61139315949259],[-73.91481827328003,40.61134207784815],[-73.91464933054561,40.61145502607297],[-73.91449542206001,40.61165322366497],[-73.91458057649919,40.611895384672],[-73.91486259053775,40.61329854209973],[-73.91476336459148,40.61337023831884],[-73.91479289781105,40.61353268727749],[-73.91486977791233,40.61349308259033],[-73.91493418790446,40.61395815505508],[-73.913860530607,40.61464226907101]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000127,"geom:area_square_m":1191151.032416,"geom:bbox":"-73.917088385,40.6035054761,-73.9016421179,40.6165753715","geom:latitude":40.609565,"geom:longitude":-73.909622,"iso:country":"US","lbl:latitude":40.608636,"lbl:longitude":-73.908736,"lbl:max_zoom":18,"mps:latitude":40.610864,"mps:longitude":-73.910241,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"alt mill basin","mz:tier_metro":1,"name:ceb_x_preferred":["Mill Island"],"name:deu_x_preferred":["Mill-Insel"],"name:eng_x_variant":["Mill Is"],"name:fra_x_preferred":["Île Mill"],"name:glg_x_preferred":["Illa Mill"],"name:ita_x_preferred":["Isola Mill"],"name:lav_x_preferred":["Milla sala"],"name:nno_x_preferred":["Mill Island"],"name:rus_x_preferred":["Милл"],"name:spa_x_preferred":["Isla Mill"],"name:zho_x_preferred":["米爾島"],"reversegeo:latitude":40.610864,"reversegeo:longitude":-73.910241,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865541,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"04968cff8b872b16ee36f9f4d304a23b","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215393,"neighbourhood_id":85865541,"region_id":85688543}],"wof:id":907215393,"wof:lastmodified":1566608561,"wof:name":"Mill Island","wof:parent_id":85865541,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865599],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215397.geojson b/fixtures/microhoods/907215397.geojson new file mode 100644 index 0000000..8ed53ca --- /dev/null +++ b/fixtures/microhoods/907215397.geojson @@ -0,0 +1 @@ +{"id":907215397,"type":"Feature","bbox":[-74.00726549955097,40.60727879715351,-73.99606957170282,40.61624121082546],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.00081640444029,40.61624121082546],[-73.99606957170282,40.61338887804491],[-73.99737264479856,40.61207278436163],[-73.99921678578374,40.61029578345809],[-74.0001696785908,40.60936980235492],[-74.0004453588105,40.60911409755858],[-74.00068142616055,40.60890960256077],[-74.00265501679533,40.60727879715351],[-74.00726549955097,40.61005644336405],[-74.00081640444029,40.61624121082546]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000048,"geom:area_square_m":449879.04944,"geom:bbox":"-74.0072654996,40.6072787972,-73.9960695717,40.6162412108","geom:latitude":40.611727,"geom:longitude":-74.001649,"iso:country":"US","lbl:latitude":40.6095,"lbl:longitude":-73.999788,"lbl:max_zoom":18,"mps:latitude":40.611776,"mps:longitude":-74.001649,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"historic","mz:tier_metro":1,"name:deu_x_preferred":["New Utrecht"],"name:eng_x_preferred":["New Utrecht"],"name:fra_x_preferred":["New Utrecht"],"name:jpn_x_preferred":["ニュー・ユトレヒト"],"name:nld_x_preferred":["Nieuw-Utrecht"],"name:pol_x_preferred":["New Utrecht"],"name:spa_x_preferred":["New Utrecht"],"name:und_x_variant":["Nieuw Utrecht"],"name:zho_x_preferred":["新烏德勒支"],"reversegeo:latitude":40.611776,"reversegeo:longitude":-74.001649,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85805771,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1536676"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"400edb996667c1a7d4f98df138239c80","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215397,"neighbourhood_id":85805771,"region_id":85688543}],"wof:id":907215397,"wof:lastmodified":1566608557,"wof:name":"New Utrecht","wof:parent_id":85805771,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85836777],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215401.geojson b/fixtures/microhoods/907215401.geojson new file mode 100644 index 0000000..3198c5e --- /dev/null +++ b/fixtures/microhoods/907215401.geojson @@ -0,0 +1 @@ +{"id":907215401,"type":"Feature","bbox":[-73.96888071778643,40.71002725655581,-73.94049143111448,40.7250970000001],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.94166486145556,40.72037389954199],[-73.94079600000015,40.720457],[-73.94062917018398,40.71946572051105],[-73.94062400000013,40.719435],[-73.94060093435374,40.71944096101982],[-73.94061376337547,40.71941977559666],[-73.9404930757912,40.71867717748733],[-73.94049143111448,40.71864334963138],[-73.94050647878085,40.71861489544541],[-73.94093939499298,40.71800697891269],[-73.94127706980306,40.71757663788652],[-73.9415070764906,40.71725261851362],[-73.9416350430759,40.71705174310841],[-73.94172079658361,40.71685954311956],[-73.94188458617847,40.71647740117414],[-73.9419921957424,40.71613027480323],[-73.9420318214143,40.71594891477153],[-73.94207308891005,40.71567544161862],[-73.94207468450308,40.71544591920191],[-73.94206206399768,40.71524428362792],[-73.94203103780359,40.71509533783178],[-73.94197500403666,40.71493614004203],[-73.94160327436097,40.71406768781808],[-73.94081582385347,40.71252602788127],[-73.94051553586083,40.71190924224457],[-73.95435955018478,40.71052132620056],[-73.95854137495041,40.71007084256993],[-73.95916397450833,40.7100393173113],[-73.95979721282218,40.71002725655581],[-73.96010336622663,40.71004301542524],[-73.96037390771919,40.71007408499547],[-73.96094128472818,40.71017556890042],[-73.96135419809458,40.71028106557925],[-73.96888071778643,40.71255980294275],[-73.96879580997518,40.7127370388538],[-73.96872927908805,40.71272014379829],[-73.96867997447347,40.71284926990241],[-73.96849857488861,40.71280446473867],[-73.96846973347044,40.71282470934636],[-73.96847298005665,40.7128534277089],[-73.96845231624205,40.71292318664484],[-73.9685676722472,40.71294926378503],[-73.96849927445868,40.71310284084996],[-73.96884229050295,40.71322392502163],[-73.9683912514787,40.71426191817126],[-73.96800830687353,40.71512072330344],[-73.96765448249143,40.71586910922277],[-73.96736391633421,40.71648367905507],[-73.96729235333541,40.71651557261891],[-73.96724404348977,40.71658534991634],[-73.96726331315591,40.71666616718558],[-73.96711354289931,40.71689753910407],[-73.96721527451933,40.7169556385527],[-73.96726798356055,40.71698574095559],[-73.96659690332696,40.71796798088763],[-73.96718343223795,40.71827592102754],[-73.96719282626933,40.71826514452462],[-73.96730741474417,40.71831306668159],[-73.96718243631243,40.71848305630156],[-73.96706867689133,40.71843903629385],[-73.96715101172609,40.71831612593244],[-73.96656241897496,40.71801586680623],[-73.96655430674936,40.71803720335098],[-73.9665311756518,40.71803212709863],[-73.96635278582251,40.7183043739216],[-73.96624200689891,40.71825177876963],[-73.96607597913025,40.71839732855956],[-73.96613319545361,40.7184440227407],[-73.96614672505457,40.7185018713952],[-73.96587893532673,40.71875507768639],[-73.96634259840093,40.71901874243014],[-73.96637067848118,40.71898970835088],[-73.96662993360907,40.71913242786089],[-73.9665434463055,40.71922294246949],[-73.96631897740723,40.7191084200083],[-73.96636503305284,40.71905633078413],[-73.96585847175177,40.71877322834646],[-73.96570332142313,40.7189181142253],[-73.96563350220042,40.71893371662329],[-73.96552577399208,40.71890089271246],[-73.96515385976043,40.71926968304757],[-73.96528401324451,40.71936086098303],[-73.96539613438645,40.71956487925418],[-73.96554693084722,40.71965919869096],[-73.96538515805557,40.71995427278233],[-73.96537431061729,40.7200936330669],[-73.96513713562298,40.72034359475415],[-73.9650132543811,40.72029027209134],[-73.96490548671238,40.72032712936549],[-73.96446386180371,40.72006466300002],[-73.96435606131367,40.72016300359879],[-73.96447993393525,40.72023272348643],[-73.9643976591595,40.72029673502921],[-73.96468283641282,40.72047045735991],[-73.96459313964768,40.72054484421148],[-73.96435090640153,40.72040403237194],[-73.9640876914787,40.72075552952227],[-73.96504914549367,40.72135734425184],[-73.9648942203192,40.72147512088206],[-73.96399793724468,40.72093843807293],[-73.96353855348468,40.72157337851431],[-73.9634375948687,40.72155909516211],[-73.96296566336969,40.72203447712285],[-73.9628721144759,40.72221541331226],[-73.9622534625413,40.72353229754603],[-73.96207271943886,40.72388030040293],[-73.96246790011058,40.72413157960127],[-73.96247195112906,40.72417498927349],[-73.96244340911429,40.72419978548135],[-73.96239043044635,40.72419356718677],[-73.9623659688944,40.72420906161423],[-73.96200744799016,40.72399190160779],[-73.96189426712188,40.72410670210113],[-73.96165984301366,40.72486045446317],[-73.96161100000012,40.7249510000001],[-73.958749,40.723085],[-73.95772,40.72427100000015],[-73.95757200000014,40.7250970000001],[-73.95299787978848,40.72225340372255],[-73.955348,40.720049],[-73.952803,40.718462],[-73.95240200000012,40.718797],[-73.947516,40.719267],[-73.944926,40.72077400000018],[-73.94389900000012,40.719604],[-73.942678,40.720277],[-73.94166486145556,40.72037389954199]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000267,"geom:area_square_m":2506929.441025,"geom:bbox":"-73.9688807178,40.7100272566,-73.9404914311,40.725097","geom:latitude":40.716195,"geom:longitude":-73.955144,"iso:country":"US","lbl:latitude":40.720719,"lbl:longitude":-73.959652,"lbl:max_zoom":18,"mps:latitude":40.715435,"mps:longitude":-73.957971,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["North Side"],"name:eng_x_variant":["N Side","North Williamsburg","Northside","North Williamsburg - North Side"],"name:fra_x_preferred":["Northside"],"reversegeo:latitude":40.715435,"reversegeo:longitude":-73.957971,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85857853,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7059722"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ceb5075c8682f4079e645ccd88bff6b9","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215401,"neighbourhood_id":85857853,"region_id":85688543}],"wof:id":907215401,"wof:lastmodified":1566608558,"wof:name":"North Side","wof:parent_id":85857853,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865609,85892951],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215403.geojson b/fixtures/microhoods/907215403.geojson new file mode 100644 index 0000000..eb1172b --- /dev/null +++ b/fixtures/microhoods/907215403.geojson @@ -0,0 +1 @@ +{"id":907215403,"type":"Feature","bbox":[-74.11964,40.54778006543032,-74.09992914201327,40.56431100000015],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.119528,40.55226700000016],[-74.11793052255378,40.5531052631534],[-74.11787760605839,40.55313754313539],[-74.1178345715502,40.55317773798156],[-74.11731184418328,40.55371175033171],[-74.11729748562334,40.55373861572507],[-74.1172867360386,40.55376175049052],[-74.11723616110602,40.55400088801649],[-74.11706976980088,40.55456012800727],[-74.11702693508806,40.55466543533403],[-74.11691765771805,40.55486264386834],[-74.11669616360982,40.55520892929831],[-74.11635991651687,40.55575158303125],[-74.11609686786336,40.55619350994183],[-74.11603840682618,40.55626717769552],[-74.11596480823312,40.5563503866334],[-74.1157080345805,40.55657987589935],[-74.11561347998484,40.55665803264817],[-74.11551022021285,40.55673413105502],[-74.1154259617482,40.55677694266507],[-74.11456147781175,40.5570918535997],[-74.11449482806766,40.55711097643419],[-74.11408134763191,40.55722391990093],[-74.11366555321091,40.55737257866952],[-74.11362275051427,40.55738996951263],[-74.11333197465588,40.55754851645998],[-74.11329949882929,40.55758142779222],[-74.11314268453069,40.55777446425258],[-74.11312691698605,40.55779746213264],[-74.11312515110778,40.55782410335051],[-74.1132308190707,40.55810972113022],[-74.11324095583485,40.55815061478422],[-74.11325098551984,40.55819777919967],[-74.11325846912243,40.55841559982784],[-74.11325672061774,40.55845454879459],[-74.11326058353842,40.55849111430597],[-74.1133154973542,40.55869210034547],[-74.11332387662566,40.55875720511286],[-74.1133206817389,40.55882689434781],[-74.11330450628499,40.55893770850869],[-74.11326398898134,40.55906673665404],[-74.11320252300843,40.55921726892974],[-74.1131317690683,40.55935063803283],[-74.11300651789551,40.55961822850512],[-74.11300495855694,40.55966671872836],[-74.11301987331277,40.55971956690893],[-74.11305304162602,40.55976754128284],[-74.11311359542664,40.55984560397637],[-74.11314402717258,40.55992524504536],[-74.11315456540801,40.55999799652767],[-74.11315101229984,40.56004892212718],[-74.11313750014597,40.56007287480536],[-74.11312256738141,40.56009271419189],[-74.11294241016263,40.56032397867516],[-74.11278550698091,40.56056553325866],[-74.11262247989703,40.56085522877137],[-74.11226,40.56145800000017],[-74.110821,40.56342100000023],[-74.11014,40.56431100000015],[-74.105576,40.56199000000014],[-74.100337,40.55908000000024],[-74.09992914201327,40.55907068565254],[-74.10079963928123,40.55832182111594],[-74.10124354139896,40.55766083131562],[-74.10169304638774,40.5565842281856],[-74.10184637674718,40.55621698878014],[-74.10184032964915,40.5559446392413],[-74.10137477595717,40.55569237210671],[-74.1013459379665,40.55562567725728],[-74.1013542327053,40.55558329994362],[-74.10140516910836,40.55553852616443],[-74.10147440635068,40.5555336109976],[-74.10265076360244,40.55613440478538],[-74.10286274405615,40.55602559705046],[-74.10309839111545,40.55590464145133],[-74.10465943491411,40.55412046731152],[-74.10508907947467,40.55323546801084],[-74.10486249561579,40.55308001800671],[-74.10484447636348,40.55302581455642],[-74.1049146375917,40.55301626711248],[-74.10642822065182,40.55385337362142],[-74.10643358982918,40.55396967062586],[-74.10640076728387,40.55406134646239],[-74.10648150812332,40.55415682837324],[-74.10667681964422,40.55418786113203],[-74.10704738449667,40.55419545154714],[-74.10734831283665,40.55414815203129],[-74.10853922462557,40.5532580256736],[-74.11028457387542,40.5514963574177],[-74.1112223305614,40.55014355926794],[-74.11278846958076,40.54788426322702],[-74.11301046104482,40.54778006543032],[-74.11338340616298,40.54807337515101],[-74.11359617405465,40.54806131597405],[-74.11464,40.54911200000024],[-74.11606,40.54865300000027],[-74.116507,40.54864700000032],[-74.119438,40.55135200000031],[-74.11964,40.55181700000023],[-74.119528,40.55226700000016]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000146,"geom:area_square_m":1373219.995561,"geom:bbox":"-74.11964,40.5477800654,-74.099929142,40.564311","geom:latitude":40.556095,"geom:longitude":-74.110163,"iso:country":"US","lbl:latitude":40.551135,"lbl:longitude":-74.113739,"lbl:max_zoom":18,"mps:latitude":40.558344,"mps:longitude":-74.108673,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Oakwood Bch"],"reversegeo:latitude":40.558344,"reversegeo:longitude":-74.108673,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85839103,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ecaeafb167b83aa18056bd889727070e","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907215403,"neighbourhood_id":85839103,"region_id":85688543}],"wof:id":907215403,"wof:lastmodified":1566608563,"wof:name":"Oakwood Beach","wof:parent_id":85839103,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85839109],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215405.geojson b/fixtures/microhoods/907215405.geojson new file mode 100644 index 0000000..804ebb8 --- /dev/null +++ b/fixtures/microhoods/907215405.geojson @@ -0,0 +1 @@ +{"id":907215405,"type":"Feature","bbox":[-74.13480799999988,40.556535,-74.11637945696785,40.56896343495993],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.11637945696785,40.56389835922349],[-74.12061342608573,40.56007369074995],[-74.12070177568921,40.56000090109184],[-74.12081563776466,40.55992029082308],[-74.12094239893815,40.55984567877207],[-74.12111738414814,40.5597487637741],[-74.12134345323155,40.55963030002948],[-74.12149816348374,40.55956735313627],[-74.1216324450224,40.55953246476157],[-74.12177349063049,40.55952347808248],[-74.12193872917433,40.5595275383563],[-74.12210053319426,40.55953663896677],[-74.12226234599635,40.55955917651826],[-74.12286590179865,40.55966623231706],[-74.12323384144631,40.55971260493735],[-74.12351448706238,40.55973571053165],[-74.12412678668856,40.55972862745309],[-74.1244000026851,40.5596914905767],[-74.12460719432464,40.55964483061151],[-74.12472934600603,40.55959447047631],[-74.1248471118511,40.55952323122793],[-74.1251670502321,40.55931708253913],[-74.12559019624979,40.55901518354985],[-74.1259485143973,40.55874414989358],[-74.12608297463493,40.55861883071494],[-74.12624304924041,40.55845238215831],[-74.12645835705375,40.55821818459664],[-74.12692894202686,40.55769935374728],[-74.1273,40.55729500000015],[-74.128117,40.556535],[-74.1282029496954,40.55658980014165],[-74.129607,40.55748500000024],[-74.13480799999988,40.56079900000017],[-74.133407,40.56213000000017],[-74.13311,40.56286800000012],[-74.13261353310502,40.56345336238953],[-74.1318523611161,40.56435082697138],[-74.13182630369305,40.56438155013851],[-74.13156,40.56469200000024],[-74.13151537835486,40.5647159013581],[-74.13137094329778,40.56478839347814],[-74.13047,40.56497200000031],[-74.1271440000001,40.56757900000018],[-74.12491721724359,40.56896343495993],[-74.1249,40.5689490000002],[-74.11637945696785,40.56389835922349]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000116,"geom:area_square_m":1090882.249937,"geom:bbox":"-74.134808,40.556535,-74.116379457,40.568963435","geom:latitude":40.562805,"geom:longitude":-74.125838,"iso:country":"US","lbl:latitude":40.563511,"lbl:longitude":-74.125978,"lbl:max_zoom":18,"mps:latitude":40.563511,"mps:longitude":-74.125978,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Oakwood Heights Station"],"name:eng_x_variant":["Oakwood Heights Station"],"name:und_x_variant":["Oakwood"],"reversegeo:latitude":40.563511,"reversegeo:longitude":-74.125978,"src:geom":"mz","wof:belongsto":[85839103,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0fc88e602cbdba1db33e02c0cf18e920","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907215405,"neighbourhood_id":85839103,"region_id":85688543}],"wof:id":907215405,"wof:lastmodified":1566608563,"wof:name":"Oakwood Heights","wof:parent_id":85839103,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420529769],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215407.geojson b/fixtures/microhoods/907215407.geojson new file mode 100644 index 0000000..e45fd38 --- /dev/null +++ b/fixtures/microhoods/907215407.geojson @@ -0,0 +1 @@ +{"id":907215407,"type":"Feature","bbox":[-73.91807238514352,40.67635015166492,-73.90547917436027,40.68718578655707],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.91647710058697,40.67664798328891],[-73.9163783242194,40.67864054948328],[-73.91807238514352,40.68718578655707],[-73.90547917436027,40.68003942999983],[-73.91159524047028,40.6835101564017],[-73.91190877871428,40.68318894816007],[-73.9108736676978,40.67817672464339],[-73.91102157521259,40.67635015166492],[-73.91647710058697,40.67664798328891]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000049,"geom:area_square_m":456029.611576,"geom:bbox":"-73.9180723851,40.6763501517,-73.9054791744,40.6871857866","geom:latitude":40.681023,"geom:longitude":-73.914358,"iso:country":"US","lbl:latitude":40.681161,"lbl:longitude":-73.911972,"lbl:max_zoom":18,"mps:latitude":40.681062,"mps:longitude":-73.914263,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Ocean Hl"],"reversegeo:latitude":40.681062,"reversegeo:longitude":-73.914263,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85892907,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d0aa9d1cd877b33e19c0a15f61cf9c58","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215407,"neighbourhood_id":85892907,"region_id":85688543}],"wof:id":907215407,"wof:lastmodified":1566608559,"wof:name":"Ocean Hill","wof:parent_id":85892907,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865619],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215409.geojson b/fixtures/microhoods/907215409.geojson new file mode 100644 index 0000000..b737b1b --- /dev/null +++ b/fixtures/microhoods/907215409.geojson @@ -0,0 +1 @@ +{"id":907215409,"type":"Feature","bbox":[-73.83900102727786,40.64797221101783,-73.82851138512342,40.66223765805183],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.83024427039405,40.65834996934829],[-73.83096907996676,40.65823029417257],[-73.83128446183636,40.65840668263054],[-73.83194576717007,40.65827434685906],[-73.83284428358573,40.65813812869351],[-73.83338439472553,40.65805185920807],[-73.83306069956932,40.65668787927794],[-73.83256888625483,40.65502775193514],[-73.83111241541602,40.6494199220414],[-73.83104647225153,40.64908920770502],[-73.83106495328715,40.64855903507988],[-73.83128091312282,40.64821421809398],[-73.83166902767802,40.64797221101783],[-73.83434221467306,40.64809976684818],[-73.83461829473167,40.64812410539683],[-73.83488920791653,40.648171349698],[-73.83515168862553,40.64824093026816],[-73.8354025728768,40.64833200838049],[-73.83556712318169,40.64845660338249],[-73.8356470089909,40.64855777279048],[-73.83569927830652,40.64866891475944],[-73.83572189870637,40.64878570798319],[-73.83570218834348,40.64895123294701],[-73.83571183379931,40.64900637726978],[-73.83578775207218,40.64916219867902],[-73.83613354040506,40.64944408060821],[-73.83900102727786,40.66105675039186],[-73.83104482162398,40.66223765805183],[-73.82851138512342,40.65730188028229],[-73.82895778585919,40.65723823571037],[-73.82898079995608,40.65729522216304],[-73.82901325301842,40.65742521182772],[-73.8290774848878,40.65758128480357],[-73.82913225563838,40.6577027547627],[-73.82917919734581,40.65779977854429],[-73.82925795356898,40.6578541939517],[-73.82932389422105,40.65788066313419],[-73.82941762232907,40.65788323518793],[-73.82951375096916,40.65791452442423],[-73.82952765623918,40.6579289891662],[-73.82955414647579,40.65797806131059],[-73.82965499496454,40.65808820416816],[-73.82972820317217,40.65812103421224],[-73.82975314668512,40.65813615539206],[-73.82977638969628,40.65816095049096],[-73.82979192787609,40.65818477793189],[-73.82986405418083,40.65822950331804],[-73.82991710261365,40.658249440254],[-73.82993039585949,40.6582600959532],[-73.83000933019633,40.65832371226768],[-73.83005302050798,40.65833887197489],[-73.83011807881158,40.65837929937042],[-73.83013028740397,40.65840264372133],[-73.83012345473459,40.65845006242994],[-73.830075845369,40.6584826440637],[-73.83002290290229,40.6584917366806],[-73.82995500685286,40.65848794953019],[-73.82988279238077,40.65846860680397],[-73.82973207932741,40.65849859839248],[-73.82966825159824,40.65852258057252],[-73.82962667738497,40.65855707860329],[-73.82960652783133,40.65860018631549],[-73.82959986903049,40.65865680691556],[-73.82961343158017,40.6587096602713],[-73.8296710398507,40.65879528408583],[-73.82972318498396,40.65889390400772],[-73.82975486375837,40.65894854086476],[-73.82981399218828,40.65901687524381],[-73.82991536797647,40.65915541453217],[-73.82992819287433,40.65918098140744],[-73.82996192425618,40.65930351949154],[-73.83000997071115,40.65950143734399],[-73.83001426888885,40.65952333831563],[-73.83005013033117,40.65963239448659],[-73.83011665938493,40.65978815376845],[-73.83013138340064,40.65980690317586],[-73.8301495010476,40.65980868495731],[-73.83016243281733,40.65980411092637],[-73.8301773206398,40.65977606369462],[-73.83016641944117,40.65973654021963],[-73.83014068468835,40.65970920263296],[-73.83013365723927,40.65969380058537],[-73.83011550258627,40.65964315775378],[-73.83007338502357,40.65947650297142],[-73.83001214184992,40.65916316387903],[-73.82994729215724,40.65910569491066],[-73.82982589468604,40.65896126923766],[-73.82978551303395,40.65888007029174],[-73.8297638699683,40.65882457547289],[-73.82972481464319,40.6587440262994],[-73.8296952008341,40.65865592869157],[-73.82970652894599,40.65860197635541],[-73.8297924026004,40.6585680176266],[-73.82987072192736,40.658570973769],[-73.83000120757706,40.65859389024406],[-73.8301580575766,40.65851742995979],[-73.83019910654937,40.65850896906417],[-73.83024406800726,40.6584295019877],[-73.83024427039405,40.65834996934829]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00008,"geom:area_square_m":753216.678502,"geom:bbox":"-73.8390010273,40.647972211,-73.8285113851,40.6622376581","geom:latitude":40.655744,"geom:longitude":-73.834354,"iso:country":"US","lbl:latitude":40.657764,"lbl:longitude":-73.835106,"lbl:max_zoom":18,"mps:latitude":40.655411,"mps:longitude":-73.835148,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Old Howard Beach"],"name:eng_x_variant":["Old Howard Bch"],"name:fra_x_preferred":["Old Howard Beach"],"name:spa_x_preferred":["Old Howard Beach"],"name:urd_x_preferred":["پرانا ہاورڈ ساحل، کوئنز"],"name:urd_x_variant":["پرانا ہاورڈ ساحل"],"reversegeo:latitude":40.655411,"reversegeo:longitude":-73.835148,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420782889,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q58996"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3a36ca93819bc2d98345ee63d610316b","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215409,"neighbourhood_id":420782889,"region_id":85688543}],"wof:id":907215409,"wof:lastmodified":1566608559,"wof:name":"Old Howard Beach","wof:parent_id":420782889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869569],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215421.geojson b/fixtures/microhoods/907215421.geojson new file mode 100644 index 0000000..afa2f83 --- /dev/null +++ b/fixtures/microhoods/907215421.geojson @@ -0,0 +1 @@ +{"id":907215421,"type":"Feature","bbox":[-74.09336399999987,40.59589000000017,-74.081112800591,40.6020243533419],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.08319616776969,40.60200826952178],[-74.0827499907049,40.60202303868639],[-74.08264990104448,40.6020243533419],[-74.08213531806817,40.60199296495644],[-74.08190879701613,40.60168740791627],[-74.08167304380501,40.60139251324178],[-74.08144280263733,40.60107300266443],[-74.08137776740698,40.60097442413753],[-74.081313638867,40.60086004639987],[-74.08127470411978,40.60078101936668],[-74.0811954601372,40.60053293901976],[-74.08116660022223,40.60044644705812],[-74.08113968091703,40.60034444927372],[-74.08112549496374,40.60024779772294],[-74.08111532018488,40.60012886217953],[-74.081112800591,40.60001290291623],[-74.08111712029097,40.59984867842755],[-74.08112767290308,40.599729135789],[-74.08114010643202,40.59966251965132],[-74.08115923490345,40.59957965732788],[-74.0811728034301,40.59953171237372],[-74.08121570082794,40.59944320943405],[-74.08129331501878,40.59931592683432],[-74.08163041485335,40.59871966613603],[-74.08171,40.59856300000017],[-74.08474218278663,40.59746225600698],[-74.084809,40.59743800000017],[-74.08494351798421,40.59731246262004],[-74.08536955314061,40.59691487015158],[-74.085513,40.59678100000016],[-74.08559290541675,40.59658432672286],[-74.085875,40.59589000000017],[-74.090292,40.59619600000026],[-74.09336399999987,40.59703300000015],[-74.09272,40.5974640000001],[-74.09178,40.5987190000002],[-74.091779,40.59923900000024],[-74.092837,40.60108900000019],[-74.0921463600204,40.60107599317804],[-74.09030443671871,40.60098645152947],[-74.08959885360959,40.60095751034463],[-74.08949314089834,40.60095442264634],[-74.08938373328982,40.60096451364159],[-74.08930127040303,40.60098418895608],[-74.08912175168552,40.60102581783423],[-74.08876946342626,40.60108982191519],[-74.08839522768523,40.60114560060224],[-74.08823339607999,40.60115999220614],[-74.08803871755269,40.60116691892242],[-74.08770121791352,40.60116742182674],[-74.08733998344218,40.60117228529745],[-74.08710564605799,40.60117159821962],[-74.08703667776922,40.6011751053837],[-74.08696816942216,40.60118759318706],[-74.08656030988845,40.60129259222895],[-74.08460787782192,40.60185931715693],[-74.08448954485536,40.6018908056959],[-74.084366673464,40.60191640541456],[-74.08436631268367,40.6019164701361],[-74.0842215996742,40.60193590209428],[-74.08410487298171,40.60194552633335],[-74.08403070352408,40.60195272189557],[-74.08319616776969,40.60200826952178]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00005,"geom:area_square_m":471902.216008,"geom:bbox":"-74.093364,40.59589,-74.0811128006,40.6020243533","geom:latitude":40.599038,"geom:longitude":-74.087089,"iso:country":"US","lbl:latitude":40.596627,"lbl:longitude":-74.08942,"lbl:max_zoom":18,"mps:latitude":40.598589,"mps:longitude":-74.087585,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Old Town Sta"],"reversegeo:latitude":40.598589,"reversegeo:longitude":-74.087585,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85812029,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1306919e76df74476bb5d0f767c317ff","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907215421,"neighbourhood_id":85812029,"region_id":85688543}],"wof:id":907215421,"wof:lastmodified":1566608561,"wof:name":"Old Town","wof:parent_id":85812029,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85839465],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215425.geojson b/fixtures/microhoods/907215425.geojson new file mode 100644 index 0000000..833f01d --- /dev/null +++ b/fixtures/microhoods/907215425.geojson @@ -0,0 +1 @@ +{"id":907215425,"type":"Feature","bbox":[-73.91858606431548,40.6221862432519,-73.90058837062296,40.63362076106387],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90224690374535,40.62324031835469],[-73.90377429495669,40.6221862432519],[-73.90621690707972,40.62434071675607],[-73.91834205743707,40.62976753912089],[-73.91858606431548,40.63205682076104],[-73.91624810498672,40.63362076106387],[-73.91559744748132,40.633029036578],[-73.90058837062296,40.62634003555279],[-73.90151852622715,40.62509885902464],[-73.90412793207629,40.6263062001343],[-73.91504833286207,40.63116610550565],[-73.91633195427593,40.63203873255836],[-73.91679492734245,40.63196017101003],[-73.91716071485482,40.631730125997],[-73.91742614571051,40.63158132538346],[-73.91751823209552,40.63134025951668],[-73.91731998946514,40.63100715271814],[-73.90396106711282,40.62483361555435],[-73.90385540661512,40.62494019869986],[-73.90387959925972,40.62494949466425],[-73.90386678862848,40.62496884844079],[-73.90546206137272,40.62577481968356],[-73.90544562242681,40.62579278066394],[-73.90541298266766,40.62577561813238],[-73.90532958044676,40.62586495608448],[-73.90531870381376,40.62585846560605],[-73.90539726701543,40.62576726762863],[-73.90320897829324,40.62466523688175],[-73.90314076321705,40.62474538167436],[-73.90312443792679,40.62473795326133],[-73.90320848278489,40.62464076938314],[-73.9031522612403,40.62461338719579],[-73.90307005655619,40.62470549847207],[-73.90305433084023,40.62469945601759],[-73.90312436585715,40.62461885378048],[-73.9026274717338,40.62437012914652],[-73.90255865671575,40.62444888812757],[-73.90254656112634,40.6244442391697],[-73.9026305951721,40.62434936475116],[-73.90313231786669,40.6246022561969],[-73.90317372279084,40.62455574101548],[-73.90320334369771,40.62457058890892],[-73.90327045944052,40.62448418394111],[-73.90288536052955,40.62431056512226],[-73.90269333271988,40.62421333487349],[-73.9028326222327,40.62405099444972],[-73.90278628951697,40.62403918286176],[-73.90275548257645,40.62406806005405],[-73.90271898828895,40.62405239371349],[-73.90241543050308,40.62446290725012],[-73.90228707932292,40.62440985393052],[-73.9022969404983,40.62439651880778],[-73.90240380972986,40.62444239705107],[-73.90271369573063,40.6240233268361],[-73.90261908735023,40.62398271330384],[-73.90262364456689,40.62397655126527],[-73.90271937115776,40.62401764604499],[-73.90274531019527,40.62398256701533],[-73.90263558802589,40.62393546354276],[-73.90264355554719,40.62392468930737],[-73.90270209085745,40.62394981859844],[-73.90271236759584,40.6239359210621],[-73.90284816261749,40.62399421782229],[-73.90287435266727,40.6239577803166],[-73.90273926215681,40.62389978674023],[-73.90275168375598,40.62388298807526],[-73.90291619574126,40.62395453125655],[-73.90296245923994,40.62387342321743],[-73.90297860500661,40.62378584608798],[-73.90296345963131,40.62369816526336],[-73.90293591363107,40.62362404852861],[-73.90288185636999,40.62354194624509],[-73.9028248165286,40.62347599119474],[-73.90273017665996,40.62344178017442],[-73.9026493518468,40.62342475449163],[-73.90258885257215,40.62343437418291],[-73.9024200429414,40.6234915538648],[-73.90240187911951,40.62349130239805],[-73.90238403779526,40.6234886791614],[-73.90236704917785,40.62348376250619],[-73.9023514183115,40.62347669894692],[-73.90233760507867,40.62346769527045],[-73.90232117457619,40.62345115492621],[-73.9023108358855,40.62343196442416],[-73.90230768513528,40.62341832339126],[-73.90228582184184,40.6233375694779],[-73.90224690374535,40.62324031835469]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000055,"geom:area_square_m":512163.119511,"geom:bbox":"-73.9185860643,40.6221862433,-73.9005883706,40.6336207611","geom:latitude":40.628175,"geom:longitude":-73.909895,"iso:country":"US","lbl:latitude":40.629707,"lbl:longitude":-73.914228,"lbl:max_zoom":18,"mps:latitude":40.629404,"mps:longitude":-73.909274,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Paerdegat Basin"],"reversegeo:latitude":40.629404,"reversegeo:longitude":-73.909274,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865597,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b357bbe58f1ab6bb9dca23ddb1b1aeb1","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215425,"neighbourhood_id":85865597,"region_id":85688543}],"wof:id":907215425,"wof:lastmodified":1566608558,"wof:name":"Paedergat Basin","wof:parent_id":85865597,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892953],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215427.geojson b/fixtures/microhoods/907215427.geojson new file mode 100644 index 0000000..fae94e8 --- /dev/null +++ b/fixtures/microhoods/907215427.geojson @@ -0,0 +1 @@ +{"id":907215427,"type":"Feature","bbox":[-73.91624810498672,40.62634003555279,-73.89975660650772,40.63560099770231],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.91328920581446,40.63560099770231],[-73.9088789904943,40.63166387267021],[-73.89975660650772,40.62740944157996],[-73.90058837062296,40.62634003555279],[-73.9155974474813,40.63302903657803],[-73.91624810498672,40.63362076106387],[-73.91328920581446,40.63560099770231]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":287226.900841,"geom:bbox":"-73.916248105,40.6263400356,-73.8997566065,40.6356009977","geom:latitude":40.631153,"geom:longitude":-73.908953,"iso:country":"US","lbl:latitude":40.630144,"lbl:longitude":-73.891937,"lbl:max_zoom":18,"mps:latitude":40.633282,"mps:longitude":-73.912514,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"disused name for Canarsie or a part of it","mz:tier_metro":1,"reversegeo:latitude":40.633282,"reversegeo:longitude":-73.912514,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85809201,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fbd348a1ce007c9a5aeb4d7c03016df2","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215427,"neighbourhood_id":85809201,"region_id":85688543}],"wof:id":907215427,"wof:lastmodified":1566608562,"wof:name":"Paerdegat","wof:parent_id":85809201,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85840193],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215429.geojson b/fixtures/microhoods/907215429.geojson new file mode 100644 index 0000000..78c7e55 --- /dev/null +++ b/fixtures/microhoods/907215429.geojson @@ -0,0 +1 @@ +{"id":907215429,"type":"Feature","bbox":[-73.81326095641582,40.82053876866041,-73.80589525514345,40.82589699205914],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.80589525514345,40.82194060124748],[-73.80764694659257,40.82180447520508],[-73.80770548275663,40.82225146442104],[-73.8090508997418,40.82212563354913],[-73.80967599448921,40.82202463405785],[-73.81059672331902,40.82164292325144],[-73.81032029357543,40.82112523286232],[-73.81183713832922,40.82053876866041],[-73.81215128139569,40.82068250325246],[-73.81221066349312,40.82072465755407],[-73.81226396131655,40.82076664334343],[-73.81230874954775,40.82080556250545],[-73.81235170914718,40.82084399595725],[-73.81243400311357,40.82090743316656],[-73.81243434895036,40.82090785041986],[-73.81243446066854,40.82090845386611],[-73.81240506615295,40.82104533403248],[-73.81243896863009,40.82122917282936],[-73.81249192780102,40.82140385863126],[-73.81257307025781,40.82156615208477],[-73.81291735397502,40.82210107643577],[-73.81292585710868,40.82213195585744],[-73.8129281455572,40.82216827667813],[-73.8129159994188,40.82220883598293],[-73.81289838089411,40.82223675104044],[-73.81287686353029,40.82224852678532],[-73.81222056796233,40.82249361766957],[-73.81257241522248,40.82322478339738],[-73.81285152202425,40.82373332990728],[-73.81287149019708,40.82375279801865],[-73.81289277631839,40.82376673504345],[-73.81326095641582,40.82397727801228],[-73.81307607755663,40.82412571447782],[-73.81291980170819,40.82425118601462],[-73.81281028704979,40.82433911369274],[-73.81282255867909,40.82467968021855],[-73.81273339110186,40.82477847086898],[-73.81239670590338,40.82447939640068],[-73.81232005538465,40.82441130842648],[-73.81201913394885,40.82432568722639],[-73.81189679599498,40.82434084624225],[-73.81177284871222,40.82433980617294],[-73.81165700660038,40.82444603382068],[-73.81158752719132,40.824492599865],[-73.81164355619616,40.82460166226868],[-73.81161100459455,40.82461149170247],[-73.81155844768892,40.82451209023507],[-73.81145450110274,40.82455077798015],[-73.81122136266146,40.82458580068872],[-73.81118706943637,40.8246258701925],[-73.81121173987,40.82469200019446],[-73.81121152557868,40.82476753080163],[-73.81119903005492,40.82479111338073],[-73.81116561831503,40.82478987176065],[-73.811140032556,40.82477685441309],[-73.81112145616831,40.82475322061573],[-73.8111029139569,40.82471778543646],[-73.81105945414961,40.82470355254865],[-73.81103147525592,40.82470822704204],[-73.81102206082723,40.82474125700512],[-73.81097529169038,40.82479782810831],[-73.81091717931503,40.82484035124947],[-73.81084728678655,40.82487249096486],[-73.81087496294401,40.82511394844661],[-73.81078485286447,40.82511380062506],[-73.8107619255919,40.82490157071432],[-73.81036867618806,40.82504702788835],[-73.81033123518841,40.82510125364713],[-73.8103187056486,40.82513663767587],[-73.81029687386918,40.8251649268132],[-73.81025025884568,40.82516721003685],[-73.8101601978205,40.82515053852701],[-73.810060786379,40.82514329456954],[-73.80965481141762,40.82527553562189],[-73.80957228649658,40.82537616136582],[-73.80944144497774,40.82549396224495],[-73.80924839089201,40.82563526361873],[-73.8091981684224,40.82581220521546],[-73.8091670077784,40.82584283794908],[-73.80909234633555,40.82587339816412],[-73.80898675442161,40.82585434128294],[-73.80878493921446,40.82579971898294],[-73.80859213406458,40.82585368695091],[-73.8084692265089,40.82586033865237],[-73.80838405054163,40.82581793724487],[-73.80827534477037,40.82580123328299],[-73.8081634785856,40.82580340715928],[-73.80799778085273,40.82579036736253],[-73.80798431158682,40.82582757491855],[-73.80795249362441,40.82582557697378],[-73.8079630929977,40.82578174273234],[-73.80783421319308,40.82576745480301],[-73.80775957168115,40.82579093275984],[-73.80772524164831,40.82584280293796],[-73.80770957571983,40.82588762397238],[-73.80766604765256,40.82589699205914],[-73.80764748561124,40.82586863722247],[-73.80763826655802,40.82583321720864],[-73.80757311562434,40.82579770320492],[-73.80752039504306,40.8257622099127],[-73.80741500869622,40.82567234199039],[-73.80734677251725,40.82562974244745],[-73.80730969098879,40.82555886937344],[-73.8072756765167,40.82550216477544],[-73.80716084578457,40.82545476690017],[-73.80710187725674,40.82543106423242],[-73.80702113005177,40.82541676744419],[-73.80697771152217,40.82538837089741],[-73.80697779368703,40.82536004598342],[-73.8069965461088,40.82532231281296],[-73.8069719145262,40.82524438070717],[-73.80691927004257,40.82518292330173],[-73.80681727303701,40.8249962859118],[-73.80673428399336,40.82468458298449],[-73.80669402711511,40.82463730859016],[-73.80665055458627,40.82462779486008],[-73.80659773251973,40.82462770628074],[-73.80656361554978,40.82460640543176],[-73.80657302530776,40.82457573741435],[-73.80663305925734,40.8245519777406],[-73.80671607190374,40.82453585161528],[-73.80675345538242,40.82450287004619],[-73.80670755354022,40.82425967758666],[-73.8065926709169,40.82423116107589],[-73.8065398628888,40.82422635215271],[-73.80652125397438,40.82421451915926],[-73.80651819407531,40.8241979919127],[-73.80652975478525,40.8241736458632],[-73.80658800807517,40.82417240690537],[-73.80669991403107,40.82415607293686],[-73.80673104693945,40.82413488149518],[-73.80675058060035,40.82382807065871],[-73.80670714973108,40.82380439448799],[-73.80653930859722,40.82382299606159],[-73.80648339363759,40.82381818189916],[-73.80646480610483,40.82379926749921],[-73.80646486788683,40.82377802514849],[-73.806508429719,40.82375685462483],[-73.80666387639964,40.82372643154824],[-73.80669197728997,40.82367927106438],[-73.80659975771898,40.82333686868597],[-73.80650977491835,40.82329423114608],[-73.80626417474805,40.82334102570461],[-73.80623630693714,40.82330793465067],[-73.80646027418052,40.82322097751138],[-73.8065101867104,40.82315261172051],[-73.80629982379303,40.82283597473967],[-73.80612875487965,40.82289705487307],[-73.8060479275223,40.82291108114823],[-73.80596714429281,40.82291094524422],[-73.80595169124462,40.82288259534947],[-73.80614763085913,40.82281683527484],[-73.80622242082097,40.82274142998953],[-73.80589525514345,40.82194060124748]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":210694.914894,"geom:bbox":"-73.8132609564,40.8205387687,-73.8058952551,40.8258969921","geom:latitude":40.823361,"geom:longitude":-73.809613,"iso:country":"US","lbl:latitude":40.823571,"lbl:longitude":-73.809891,"lbl:max_zoom":18,"mps:latitude":40.823577,"mps:longitude":-73.809865,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Edgewater Park"],"name:eng_x_variant":["Park of Edgewater"],"reversegeo:latitude":40.823577,"reversegeo:longitude":-73.809865,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85852219,102191575,907157031,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b2f42b2faeb6dc3d846a529581cf0749","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157031,"microhood_id":907215429,"neighbourhood_id":85852219,"region_id":85688543}],"wof:id":907215429,"wof:lastmodified":1566608562,"wof:name":"Park of Edgewater","wof:parent_id":85852219,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85840561],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215431.geojson b/fixtures/microhoods/907215431.geojson new file mode 100644 index 0000000..71239f4 --- /dev/null +++ b/fixtures/microhoods/907215431.geojson @@ -0,0 +1 @@ +{"id":907215431,"type":"Feature","bbox":[-73.97718583619363,40.62757868646409,-73.96678,40.63531677326907],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.97718583619363,40.63082150481262],[-73.96765718543182,40.63531677326907],[-73.96678,40.63229500000016],[-73.9765686318514,40.62757868646409],[-73.97718583619363,40.63082150481262]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000034,"geom:area_square_m":316199.419166,"geom:bbox":"-73.9771858362,40.6275786865,-73.96678,40.6353167733","geom:latitude":40.631485,"geom:longitude":-73.972068,"iso:country":"US","lbl:latitude":40.631573,"lbl:longitude":-73.97247,"lbl:max_zoom":18,"mps:latitude":40.631491,"mps:longitude":-73.972069,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Parkville"],"name:deu_x_preferred":["Parkville"],"name:eng_x_preferred":["Parkville"],"name:fra_x_preferred":["Parkville"],"name:ita_x_preferred":["Parkville"],"name:kor_x_preferred":["파크빌"],"name:mlg_x_preferred":["Parkville"],"name:nld_x_preferred":["Parkville"],"name:nor_x_preferred":["Parkville"],"name:pol_x_preferred":["Parkville"],"name:spa_x_preferred":["Parkville"],"name:srp_x_preferred":["Парквил"],"name:swe_x_preferred":["Parkville"],"name:und_x_variant":["Greenfield"],"name:vol_x_preferred":["Parkville"],"reversegeo:latitude":40.631491,"reversegeo:longitude":-73.972069,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85828101,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"19de85ef7db8cdd0bc0a1733a3e743b9","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215431,"neighbourhood_id":85828101,"region_id":85688543}],"wof:id":907215431,"wof:lastmodified":1566608559,"wof:name":"Parkville","wof:parent_id":85828101,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85840745],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215433.geojson b/fixtures/microhoods/907215433.geojson new file mode 100644 index 0000000..c153c4c --- /dev/null +++ b/fixtures/microhoods/907215433.geojson @@ -0,0 +1 @@ +{"id":907215433,"type":"Feature","bbox":[-73.92664901054171,40.81155286546318,-73.9229550871382,40.81501026513405],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.92423851378977,40.81501026513405],[-73.92664901054171,40.81172350812897],[-73.92640002671541,40.81155286546318],[-73.9229550871382,40.81333790828801],[-73.92423851378977,40.81501026513405]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000005,"geom:area_square_m":43431.87518,"geom:bbox":"-73.9266490105,40.8115528655,-73.9229550871,40.8150102651","geom:latitude":40.813229,"geom:longitude":-73.924694,"iso:country":"US","lbl:latitude":40.814318,"lbl:longitude":-73.923538,"lbl:max_zoom":18,"mps:latitude":40.813245,"mps:longitude":-73.924694,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.813245,"reversegeo:longitude":-73.924694,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85835417,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8949c961a34d1865c823a44b3c9d62f7","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907215433,"neighbourhood_id":85835417,"region_id":85688543}],"wof:id":907215433,"wof:lastmodified":1566608563,"wof:name":"Patterson Houses","wof:parent_id":85835417,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868027],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215439.geojson b/fixtures/microhoods/907215439.geojson new file mode 100644 index 0000000..f71334f --- /dev/null +++ b/fixtures/microhoods/907215439.geojson @@ -0,0 +1 @@ +{"id":907215439,"type":"Feature","bbox":[-73.92331453725365,40.80727503313437,-73.92011289922718,40.80904962422638],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.92331453725365,40.80843241500801],[-73.92285380108342,40.80904962422638],[-73.92011289922718,40.80789046162815],[-73.92054675688277,40.80727503313437],[-73.92331453725365,40.80843241500801]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":20736.747125,"geom:bbox":"-73.9233145373,40.8072750331,-73.9201128992,40.8090496242","geom:latitude":40.808163,"geom:longitude":-73.921711,"iso:country":"US","lbl:latitude":40.807098,"lbl:longitude":-73.927132,"lbl:max_zoom":18,"mps:latitude":40.808164,"mps:longitude":-73.921711,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.808164,"reversegeo:longitude":-73.921711,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85835417,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5f537215786943b585aba47183206720","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907215439,"neighbourhood_id":85835417,"region_id":85688543}],"wof:id":907215439,"wof:lastmodified":1566608558,"wof:name":"Plaza Borinquen","wof:parent_id":85835417,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868029],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215441.geojson b/fixtures/microhoods/907215441.geojson new file mode 100644 index 0000000..5d62507 --- /dev/null +++ b/fixtures/microhoods/907215441.geojson @@ -0,0 +1 @@ +{"id":907215441,"type":"Feature","bbox":[-73.815231,40.72716269625774,-73.80464768464311,40.73895111627421],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.80514967286702,40.72785159616154],[-73.81086427579858,40.72722344575137],[-73.81118269680971,40.72720991432563],[-73.81158863756177,40.72722310297628],[-73.81202935456265,40.72723657854339],[-73.81247294766769,40.72718966434132],[-73.81256515114409,40.72716269625774],[-73.81444,40.7280868616171],[-73.815231,40.72879400000015],[-73.8148,40.73377586161743],[-73.81471259137689,40.73718073916826],[-73.8147912784837,40.73761324521984],[-73.81490914968371,40.73817017524909],[-73.81505649236264,40.73895111627421],[-73.81468460417732,40.73888950204901],[-73.81429211013828,40.73884135194365],[-73.81362434615878,40.73879009448289],[-73.81296499530126,40.73875786862956],[-73.80464768464311,40.7384188269903],[-73.80502123019443,40.73275201792901],[-73.80523204056355,40.72909938827767],[-73.80524247184451,40.72883399224948],[-73.80523349227136,40.7285593094645],[-73.80520506028827,40.72822042386014],[-73.80515157116443,40.72787107811068],[-73.80514967286702,40.72785159616154]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00011,"geom:area_square_m":1032700.802001,"geom:bbox":"-73.815231,40.7271626963,-73.8046476846,40.7389511163","geom:latitude":40.733108,"geom:longitude":-73.80998,"iso:country":"US","lbl:latitude":40.734783,"lbl:longitude":-73.809715,"lbl:max_zoom":18,"mps:latitude":40.733194,"mps:longitude":-73.809909,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.733194,"reversegeo:longitude":-73.809909,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"eef2f2b2e6229d2707f7dd38e00ecd0e","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215441,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907215441,"wof:lastmodified":1566608558,"wof:name":"Pomonok","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865649],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215443.geojson b/fixtures/microhoods/907215443.geojson new file mode 100644 index 0000000..6548ad0 --- /dev/null +++ b/fixtures/microhoods/907215443.geojson @@ -0,0 +1 @@ +{"id":907215443,"type":"Feature","bbox":[-73.83592061127761,40.73895277192472,-73.81363907423622,40.75206529495692],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.81365321299248,40.74515927954972],[-73.81369867271864,40.74496457558467],[-73.81455817098055,40.74187219019143],[-73.81511466597001,40.73978309518493],[-73.81512289376607,40.73948021543566],[-73.81505391141081,40.73895277192472],[-73.8250583743325,40.74221375181344],[-73.8260776442248,40.74252214469961],[-73.82681754008568,40.74270502471648],[-73.82747321639025,40.74279180095859],[-73.82817768846317,40.74285760317289],[-73.8322999555873,40.74325538119659],[-73.83592061127761,40.74359664791278],[-73.8356639328962,40.74478513209736],[-73.83553760011426,40.74519830548714],[-73.83516586411332,40.74592203678557],[-73.83475071933215,40.74670864721357],[-73.83453123112238,40.74702163316417],[-73.8343747031985,40.74717923987043],[-73.83421393288765,40.74731799055774],[-73.8335762564718,40.74773693680817],[-73.83321143873954,40.74795638242376],[-73.83302996470245,40.74816376290532],[-73.83287686032187,40.74841555341349],[-73.8327334474098,40.74878343514364],[-73.83255699126032,40.74936576081268],[-73.83246258295476,40.74970245282783],[-73.83239417222107,40.75008446283409],[-73.8323204630272,40.75072424906968],[-73.83226276717475,40.7514580072323],[-73.83065819121768,40.75206529495692],[-73.82928044234204,40.75151931738338],[-73.8286909167885,40.75129081356702],[-73.82846506684893,40.7512073252561],[-73.82834851950605,40.75118021842754],[-73.828226323185,40.75118069215428],[-73.82809166468988,40.75120873609821],[-73.82796132735463,40.75125435171926],[-73.82638626635257,40.75184010584397],[-73.82608548073861,40.75151651262313],[-73.82588292036512,40.75122691482893],[-73.82575596177267,40.75096821168336],[-73.82543282242575,40.75114091790883],[-73.82453028869601,40.7516650207631],[-73.82179608982244,40.74892810673731],[-73.82042314127638,40.74824487687786],[-73.8174892283358,40.74725093242067],[-73.81672002549794,40.74711332390902],[-73.81609784269763,40.74698629255199],[-73.81567729125481,40.74685840147473],[-73.81519197886587,40.74665919772643],[-73.81432509201761,40.74617080260305],[-73.81412142702354,40.74611776883708],[-73.81392882230169,40.74615283026993],[-73.81382549304,40.74621452849648],[-73.81368012738102,40.74566923143631],[-73.81363999827175,40.74544313285223],[-73.81363907423622,40.74528398430288],[-73.81365321299248,40.74515927954972]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000161,"geom:area_square_m":1512578.450432,"geom:bbox":"-73.8359206113,40.7389527719,-73.8136390742,40.752065295","geom:latitude":40.745718,"geom:longitude":-73.82447,"iso:country":"US","lbl:latitude":40.749183,"lbl:longitude":-73.82248,"lbl:max_zoom":18,"mps:latitude":40.746718,"mps:longitude":-73.825569,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Queensboro Hill"],"reversegeo:latitude":40.746718,"reversegeo:longitude":-73.825569,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e9351a50e57e0fa5e6d61999ab70cecc","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215443,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907215443,"wof:lastmodified":1566608561,"wof:name":"Queensboro Hills","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892851,85865575],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215445.geojson b/fixtures/microhoods/907215445.geojson new file mode 100644 index 0000000..05ab7df --- /dev/null +++ b/fixtures/microhoods/907215445.geojson @@ -0,0 +1 @@ +{"id":907215445,"type":"Feature","bbox":[-73.94870737027486,40.75272693218825,-73.9413602296437,40.75771892899029],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9413602296437,40.75524156670111],[-73.94372113606987,40.75272693218825],[-73.94870737027486,40.75488056586976],[-73.94802082672004,40.75561566020382],[-73.94754034312264,40.75614176375432],[-73.9473877279521,40.75630419306444],[-73.94714584854802,40.75653201592831],[-73.94581480348533,40.75771892899029],[-73.94462474717439,40.75698748951152],[-73.94350085626249,40.75636124529784],[-73.9413602296437,40.75524156670111]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":175269.842639,"geom:bbox":"-73.9487073703,40.7527269322,-73.9413602296,40.757718929","geom:latitude":40.755161,"geom:longitude":-73.945002,"iso:country":"US","lbl:latitude":40.754844,"lbl:longitude":-73.944623,"lbl:max_zoom":18,"mps:latitude":40.755221,"mps:longitude":-73.944947,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:dan_x_preferred":["Queensbridge"],"name:deu_x_preferred":["Queensbridge"],"name:eng_x_preferred":["Queensbridge"],"name:fin_x_preferred":["Queensbridge"],"name:fra_x_preferred":["Queensbridge"],"name:jpn_x_preferred":["クイーンズブリッジ団地"],"name:pol_x_preferred":["Queensbridge"],"name:por_x_preferred":["Queensbridge"],"name:swe_x_preferred":["Queensbridge"],"name:swe_x_variant":["South Williamsburg"],"name:zho_x_preferred":["皇后橋住宅"],"reversegeo:latitude":40.755221,"reversegeo:longitude":-73.944947,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85831303,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1292552"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"9c97191c5e11f42d4d238878060c1b80","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215445,"neighbourhood_id":85831303,"region_id":85688543}],"wof:id":907215445,"wof:lastmodified":1566608562,"wof:name":"Queensbridge","wof:parent_id":85831303,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869613],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215447.geojson b/fixtures/microhoods/907215447.geojson new file mode 100644 index 0000000..f42b932 --- /dev/null +++ b/fixtures/microhoods/907215447.geojson @@ -0,0 +1 @@ +{"id":907215447,"type":"Feature","bbox":[-73.83290309524605,40.65487544577763,-73.82906423436309,40.65834996934829],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.83096907996676,40.65823029417257],[-73.83024427039405,40.65834996934829],[-73.83016976043837,40.65831577352829],[-73.83000600274033,40.65817634852296],[-73.8298271228173,40.65811643485667],[-73.82970079467547,40.65792593544332],[-73.8296301319762,40.65784629785769],[-73.82951463014508,40.65779783883256],[-73.82945866947038,40.65780343760182],[-73.82937290582956,40.65779478840818],[-73.82922393902868,40.65770651238414],[-73.82910499991128,40.65754442905882],[-73.82906423436309,40.65744211265005],[-73.82909434825208,40.65733421866339],[-73.82917290744736,40.65724344063427],[-73.82924393205009,40.65718105614684],[-73.829347152373,40.65710305815871],[-73.82942711948486,40.65701373954082],[-73.82949826173954,40.65690590795552],[-73.82949465565422,40.65685761471539],[-73.8294613126143,40.65676951032551],[-73.82946151593039,40.65668997716948],[-73.82950265119857,40.65664743198352],[-73.82958468477645,40.65665607388186],[-73.82968157040287,40.65669030322535],[-73.82977849236676,40.6567103304847],[-73.82989186540318,40.65672882079571],[-73.83000967244324,40.65673623621181],[-73.83018507808815,40.65669388796881],[-73.8303272854543,40.65650662730801],[-73.83039087156536,40.65643570913236],[-73.83050532057382,40.6563423673163],[-73.83106670806471,40.6561384546809],[-73.83127112568124,40.65600327149474],[-73.83137226599491,40.65589155141573],[-73.83144150703522,40.65576651663343],[-73.83147596319591,40.65563337828013],[-73.83146993367258,40.65555345217368],[-73.83151638832743,40.65546449041521],[-73.83155930253504,40.65535534364431],[-73.83155309177064,40.65524297287486],[-73.83168728328508,40.65509126020669],[-73.83175312959307,40.65496210950514],[-73.83185238479284,40.65488503826712],[-73.83191670520526,40.6548826071234],[-73.83200725288438,40.65490052071419],[-73.83212857266429,40.65487544577763],[-73.8321818606803,40.65489475195503],[-73.8328522411238,40.65706213877166],[-73.83290309524605,40.65748377162319],[-73.83278194361475,40.65754846038358],[-73.83208497100864,40.65613102851144],[-73.8320003337766,40.65615781613683],[-73.8326711865823,40.65759187198934],[-73.83260036370608,40.65782659162731],[-73.83201491707914,40.65807753263688],[-73.83096907996676,40.65823029417257]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":66101.545655,"geom:bbox":"-73.8329030952,40.6548754458,-73.8290642344,40.6583499693","geom:latitude":40.656979,"geom:longitude":-73.831215,"iso:country":"US","lbl:latitude":40.657385,"lbl:longitude":-73.83079,"lbl:max_zoom":18,"mps:latitude":40.657105,"mps:longitude":-73.831245,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Ramblersville"],"name:fra_x_preferred":["Ramblersville"],"name:nld_x_preferred":["Ramblersville"],"name:spa_x_preferred":["Ramblersville"],"name:urd_x_preferred":["ریمبلرز ول، کوئینز"],"name:urd_x_variant":["ریمبلرز ول"],"reversegeo:latitude":40.657105,"reversegeo:longitude":-73.831245,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420782889,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q59000"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ffaf7ab02004abfc9fa72e4eac3ccc08","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215447,"neighbourhood_id":420782889,"region_id":85688543}],"wof:id":907215447,"wof:lastmodified":1566608557,"wof:name":"Ramblersville","wof:parent_id":420782889,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869617],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215449.geojson b/fixtures/microhoods/907215449.geojson new file mode 100644 index 0000000..ac70ac8 --- /dev/null +++ b/fixtures/microhoods/907215449.geojson @@ -0,0 +1 @@ +{"id":907215449,"type":"Feature","bbox":[-73.9390952480807,40.75875402135896,-73.93167145987881,40.76421102830356],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.93701364974594,40.76421102830356],[-73.93167145987881,40.76171892467666],[-73.93427835229225,40.75875402135896],[-73.93501881648538,40.75910711754183],[-73.93736643516365,40.76019096845069],[-73.93777386336673,40.76034946610237],[-73.93825862268562,40.76052897489099],[-73.93866413296429,40.76068496869867],[-73.9390952480807,40.76083026375908],[-73.93701364974594,40.76421102830356]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000021,"geom:area_square_m":198461.584546,"geom:bbox":"-73.9390952481,40.7587540214,-73.9316714599,40.7642110283","geom:latitude":40.761439,"geom:longitude":-73.93549,"iso:country":"US","lbl:latitude":40.765909,"lbl:longitude":-73.938621,"lbl:max_zoom":18,"mps:latitude":40.761413,"mps:longitude":-73.93549,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Ravenswood"],"name:deu_x_preferred":["Ravenswood"],"name:fin_x_preferred":["Ravenswood"],"name:fra_x_preferred":["Ravenswood"],"name:ita_x_preferred":["Ravenswood"],"name:kor_x_preferred":["레이븐스우드"],"name:nld_x_preferred":["Ravenswood"],"name:pol_x_preferred":["Ravenswood"],"name:swe_x_preferred":["Ravenswood"],"reversegeo:latitude":40.761413,"reversegeo:longitude":-73.93549,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85831303,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1cd82c4ed70e7bd173990b7f44a0ab90","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215449,"neighbourhood_id":85831303,"region_id":85688543}],"wof:id":907215449,"wof:lastmodified":1566608557,"wof:name":"Ravenswood","wof:parent_id":85831303,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865633],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215451.geojson b/fixtures/microhoods/907215451.geojson new file mode 100644 index 0000000..c88ea0e --- /dev/null +++ b/fixtures/microhoods/907215451.geojson @@ -0,0 +1 @@ +{"id":907215451,"type":"Feature","bbox":[-74.24396500758881,40.51917200000023,-74.218167,40.53240000000011],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.22504300000011,40.52054000000015],[-74.22691000000017,40.51917200000025],[-74.22691000000019,40.51917200000023],[-74.229299,40.51998400000025],[-74.231597,40.520879],[-74.23353700000018,40.52064000000017],[-74.235112,40.52091700000017],[-74.23946,40.52127900000011],[-74.23982258316799,40.52009071144384],[-74.24073284548766,40.52056915165378],[-74.24117293552212,40.52106013143195],[-74.24133219575538,40.52089451758016],[-74.24293235036527,40.52122716113286],[-74.24258375639451,40.52219864900061],[-74.24276246783731,40.52272678912762],[-74.24261397838448,40.52308093752463],[-74.24275353768007,40.5237701043073],[-74.24280157009598,40.52400729628678],[-74.24335792685878,40.52481891382049],[-74.24363522638353,40.52485840320114],[-74.24396500758881,40.52490536633781],[-74.24342518585456,40.52572301797026],[-74.24338525044953,40.52578350691869],[-74.24333883883872,40.52585380518012],[-74.24282860818658,40.52741888075699],[-74.24284350719839,40.52761920308247],[-74.24288671381223,40.52820013082607],[-74.24260983751452,40.52838093117978],[-74.24256404956563,40.52841083073195],[-74.228563,40.52756600000018],[-74.227853,40.527631],[-74.2275808264776,40.52777572246375],[-74.227336,40.52782800000018],[-74.22693900000013,40.52811700000012],[-74.22569300000015,40.529911],[-74.224846,40.53240000000011],[-74.22414,40.532292],[-74.22389,40.5311130000002],[-74.222278,40.52921200000012],[-74.22191643881985,40.52889936803953],[-74.22169997732169,40.52871219976399],[-74.221576,40.52860500000017],[-74.2208675247359,40.52833318399544],[-74.22022,40.528037],[-74.22003491850163,40.52801374348478],[-74.21982137874899,40.52798646893718],[-74.21925,40.52791400000019],[-74.218167,40.52800400000018],[-74.21829514992336,40.52771468220628],[-74.221183,40.52692200000027],[-74.22153400000012,40.52626300000028],[-74.222128,40.52581400000025],[-74.22224889630627,40.52577429070823],[-74.22245400281662,40.52570692194752],[-74.2228800000002,40.52556700000025],[-74.22366,40.52554300000021],[-74.22397,40.52338300000019],[-74.22504300000011,40.52054000000015]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00016,"geom:area_square_m":1507920.566959,"geom:bbox":"-74.2439650076,40.519172,-74.218167,40.5324","geom:latitude":40.524832,"geom:longitude":-74.232107,"iso:country":"US","lbl:latitude":40.523043,"lbl:longitude":-74.232918,"lbl:max_zoom":18,"mps:latitude":40.524288,"mps:longitude":-74.232295,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:ceb_x_preferred":["Richmond Valley"],"name:eng_x_variant":["Richmond Vly"],"name:pol_x_preferred":["Richmond Valley"],"name:swe_x_preferred":["Richmond Valley"],"reversegeo:latitude":40.524288,"reversegeo:longitude":-74.232295,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85842295,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"05324431dbe0a02014f547d09d0c9272","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907215451,"neighbourhood_id":85842295,"region_id":85688543}],"wof:id":907215451,"wof:lastmodified":1566608563,"wof:name":"Richmond Valley","wof:parent_id":85842295,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85844447],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215455.geojson b/fixtures/microhoods/907215455.geojson new file mode 100644 index 0000000..e7311fa --- /dev/null +++ b/fixtures/microhoods/907215455.geojson @@ -0,0 +1 @@ +{"id":907215455,"type":"Feature","bbox":[-73.77468903578087,40.66703500000024,-73.76372183869302,40.67538599781762],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.77468903578087,40.6718523516756],[-73.7737353799955,40.67224688056498],[-73.7683761958645,40.67302350106268],[-73.7687485461267,40.67413294322495],[-73.76575644580544,40.67478851401022],[-73.7653113081317,40.67538599781762],[-73.76372183869302,40.6744006701442],[-73.76383,40.67364000000015],[-73.76435300000013,40.67185300000027],[-73.76696,40.66703500000024],[-73.77113700000011,40.66744600000014],[-73.77136949934368,40.66744471830586],[-73.77468903578087,40.6718523516756]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000051,"geom:area_square_m":478302.312526,"geom:bbox":"-73.7746890358,40.667035,-73.7637218387,40.6753859978","geom:latitude":40.670933,"geom:longitude":-73.768623,"iso:country":"US","lbl:latitude":40.675445,"lbl:longitude":-73.773336,"lbl:max_zoom":18,"mps:latitude":40.670093,"mps:longitude":-73.768623,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Rochdale"],"reversegeo:latitude":40.670093,"reversegeo:longitude":-73.768623,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827297,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dd8a4576046144a7d5345c17c5b52460","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215455,"neighbourhood_id":85827297,"region_id":85688543}],"wof:id":907215455,"wof:lastmodified":1566608558,"wof:name":"Rochdale Village","wof:parent_id":85827297,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865645],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215457.geojson b/fixtures/microhoods/907215457.geojson new file mode 100644 index 0000000..2c88ee8 --- /dev/null +++ b/fixtures/microhoods/907215457.geojson @@ -0,0 +1 @@ +{"id":907215457,"type":"Feature","bbox":[-73.98474210640431,40.73791303851167,-73.97779355641761,40.7439076368611],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.97779355641761,40.74234413617773],[-73.98100181483072,40.73791303851167],[-73.98474210640431,40.739503065135],[-73.98338138936964,40.74137528869083],[-73.98152601099763,40.7439076368611],[-73.97779355641761,40.74234413617773]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000022,"geom:area_square_m":202228.667403,"geom:bbox":"-73.9847421064,40.7379130385,-73.9777935564,40.7439076369","geom:latitude":40.740915,"geom:longitude":-73.981267,"iso:country":"US","lbl:latitude":40.742056,"lbl:longitude":-73.983604,"lbl:max_zoom":18,"mps:latitude":40.740913,"mps:longitude":-73.981267,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Rose Hill"],"name:eng_x_preferred":["Rose Hill"],"name:eng_x_variant":["Rose Hl"],"name:fra_x_preferred":["Rose Hill"],"name:ind_x_preferred":["Rose Hill"],"name:ita_x_preferred":["Rose Hill"],"name:jpn_x_preferred":["ローズ・ヒル"],"name:nld_x_preferred":["Rose Hill"],"name:zho_x_preferred":["玫瑰山"],"reversegeo:latitude":40.740913,"reversegeo:longitude":-73.981267,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85868041,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1107182"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3536a5779dcaf46199b43265afc52f76","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907215457,"neighbourhood_id":85868041,"region_id":85688543}],"wof:id":907215457,"wof:lastmodified":1566608563,"wof:name":"Rose Hill","wof:parent_id":85868041,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868045],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215459.geojson b/fixtures/microhoods/907215459.geojson new file mode 100644 index 0000000..400f59a --- /dev/null +++ b/fixtures/microhoods/907215459.geojson @@ -0,0 +1 @@ +{"id":907215459,"type":"Feature","bbox":[-73.89565980661519,40.56437614240136,-73.88566642659546,40.56858724728664],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.88684982097392,40.56837125772126],[-73.88566642659546,40.56685616870595],[-73.88783090116904,40.56625791139696],[-73.894471146191,40.56437614240136],[-73.8953325941975,40.56634090417406],[-73.89549648042306,40.56670079749258],[-73.89565980661519,40.56705946098029],[-73.89533758908999,40.56702492044204],[-73.89531210417972,40.56702218855319],[-73.89510538013695,40.567157171676],[-73.89345467847608,40.56823501855797],[-73.8926101344563,40.56858724728664],[-73.89245294447518,40.56856418653263],[-73.89016495921189,40.56822852477539],[-73.8895949244921,40.56794189023422],[-73.88911103072225,40.56791623669111],[-73.88900473355332,40.56794895398789],[-73.88836803030985,40.56814492542519],[-73.8883100226566,40.56813266797307],[-73.88786222508219,40.56803804498665],[-73.88759484736241,40.56812604706055],[-73.88684982097392,40.56837125772126]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000024,"geom:area_square_m":223503.965583,"geom:bbox":"-73.8956598066,40.5643761424,-73.8856664266,40.5685872473","geom:latitude":40.566753,"geom:longitude":-73.891238,"iso:country":"US","lbl:latitude":40.565515,"lbl:longitude":-73.890246,"lbl:max_zoom":18,"mps:latitude":40.566805,"mps:longitude":-73.891731,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_preferred":["Roxbury"],"name:fra_x_preferred":["Roxbury"],"name:jpn_x_preferred":["ロックスベリー"],"name:urd_x_preferred":["روکسبری، کوئینز"],"name:urd_x_variant":["روکسبری"],"reversegeo:latitude":40.566805,"reversegeo:longitude":-73.891731,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807191,102191575,907157757,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q62151"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8d79edd8200de69feeffdae74582e180","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"macrohood_id":907157757,"microhood_id":907215459,"neighbourhood_id":85807191,"region_id":85688543}],"wof:id":907215459,"wof:lastmodified":1566608563,"wof:name":"Roxbury","wof:parent_id":85807191,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85846287],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215463.geojson b/fixtures/microhoods/907215463.geojson new file mode 100644 index 0000000..a6e8753 --- /dev/null +++ b/fixtures/microhoods/907215463.geojson @@ -0,0 +1 @@ +{"id":907215463,"type":"Feature","bbox":[-74.00555531395855,40.70460659646371,-73.99910224920004,40.70979846063545],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.00555531395855,40.70739757894451],[-74.00437414431646,40.7078529684078],[-74.00380781019558,40.70813379328549],[-74.00368964853509,40.7081498383309],[-74.00358606989418,40.70813441582307],[-74.00348411866779,40.70811955236612],[-74.0018604939836,40.709402961235],[-74.00164005949597,40.70958601791656],[-74.00154904636781,40.70968971907107],[-74.00147404044377,40.70979846063545],[-73.99910224920004,40.70796803699159],[-73.99952324941067,40.70776262865812],[-73.99949062474624,40.70772184522502],[-73.99953839659452,40.70769347002565],[-73.99955121325497,40.70769435277649],[-73.99960948039251,40.70775997317629],[-73.99994855949791,40.70759149637099],[-73.99994505655111,40.70758262698331],[-73.9999485595232,40.70755869155373],[-73.99995671262306,40.70753119885585],[-73.99997222648801,40.70750639882205],[-74.00023380525762,40.70734714248683],[-74.0011868526284,40.70685982577173],[-74.00113130577203,40.7067990506845],[-74.00123213691967,40.70674033693098],[-74.00116039022579,40.70666372083431],[-74.00117521610984,40.70664874526916],[-74.00116913341543,40.70663949766772],[-74.0011764356769,40.70663505879536],[-74.00117602079682,40.70662757435898],[-74.00098276691749,40.7064167129929],[-74.00140666691979,40.70617938802079],[-74.00073085752636,40.70556777305873],[-74.00058297047994,40.70543393364905],[-74.00059240209352,40.70541007941349],[-74.00143661179428,40.70487217770533],[-74.0014608576564,40.7048737178121],[-74.00183509983016,40.70521225882239],[-74.00206142563823,40.70541700564098],[-74.0021581834855,40.70535711911853],[-74.00256965059484,40.7055235795235],[-74.00268512768807,40.70544924811874],[-74.00236285311746,40.70515896669259],[-74.0024157347692,40.70512931128249],[-74.00197070397951,40.70473786848727],[-74.00197014837805,40.7047311592023],[-74.00217184941911,40.70460659646371],[-74.00218562331565,40.70460701887392],[-74.00233344621165,40.70474813530698],[-74.00233393075767,40.70474260740414],[-74.0024205931867,40.70468033460376],[-74.00243071075876,40.70467785800437],[-74.0024883982926,40.7047267723512],[-74.0024879014864,40.70473376109165],[-74.00239832748954,40.70479492514085],[-74.00238670740696,40.70479566367466],[-74.00332307270807,40.70562859522026],[-74.00356123827119,40.70547527681651],[-74.00474318347092,40.70655401269453],[-74.00494539781121,40.70675474962158],[-74.00555531395855,40.70739757894451]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":139376.179541,"geom:bbox":"-74.005555314,40.7046065965,-73.9991022492,40.7097984606","geom:latitude":40.707258,"geom:longitude":-74.002262,"iso:country":"US","lbl:latitude":40.706899,"lbl:longitude":-74.002577,"lbl:max_zoom":18,"mps:latitude":40.707028,"mps:longitude":-74.002582,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["South Street Seaport"],"name:deu_x_preferred":["South Street Seaport"],"name:eng_x_preferred":["South Street Seaport"],"name:eng_x_variant":["Seaport"],"name:fra_x_preferred":["South Street Seaport"],"name:ind_x_preferred":["South Street Seaport"],"name:jpn_x_preferred":["サウス・ストリート・シーポート"],"name:kor_x_preferred":["사우스스트리트시포트"],"name:nld_x_preferred":["South Street Seaport"],"name:rus_x_preferred":["Саут-Стрит-Сипорт"],"name:spa_x_preferred":["South Street Seaport"],"name:zho_x_preferred":["南街海港"],"reversegeo:latitude":40.707028,"reversegeo:longitude":-74.002582,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865711,102191575,907196817,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q223000"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4152f816e0f1e7e84c81546a5e4d08ad","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907196817,"microhood_id":907215463,"neighbourhood_id":85865711,"region_id":85688543}],"wof:id":907215463,"wof:lastmodified":1566608558,"wof:name":"Seaport","wof:parent_id":85865711,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892957],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215467.geojson b/fixtures/microhoods/907215467.geojson new file mode 100644 index 0000000..6b85350 --- /dev/null +++ b/fixtures/microhoods/907215467.geojson @@ -0,0 +1 @@ +{"id":907215467,"type":"Feature","bbox":[-73.81384062408996,40.80852797081173,-73.80253599154231,40.81549297791652],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.81384062408996,40.81471060950257],[-73.80864144841588,40.81549297791652],[-73.8082461894465,40.81486757426059],[-73.8071516261467,40.81371701790955],[-73.80519053356787,40.81141584534823],[-73.8045368360416,40.81070246564847],[-73.80398955439169,40.81019619153111],[-73.80341186820569,40.80973593898145],[-73.80253599154231,40.80911142955124],[-73.80295921748099,40.80907708372971],[-73.80359386615073,40.80875717047789],[-73.8039265410282,40.80852808043053],[-73.8039267341722,40.80852797081173],[-73.80392680280583,40.80852803455647],[-73.80501511652446,40.80944269570699],[-73.80503236536416,40.80941769848615],[-73.80502190996843,40.80940772345324],[-73.80506135232702,40.80936497193478],[-73.80511892265709,40.80939693436304],[-73.80507948389717,40.80943868913329],[-73.8050637840642,40.8094297005032],[-73.80503639918943,40.80945560231065],[-73.80621482271206,40.81004741226068],[-73.80713987884191,40.81066167645377],[-73.80810866442604,40.81178772984362],[-73.80921232992156,40.81257372075228],[-73.80992029081813,40.81292915226195],[-73.81026812262414,40.8129994803722],[-73.81059832209318,40.81293882510619],[-73.81066931287859,40.81276436653769],[-73.81078477868341,40.81277095135501],[-73.81079927013211,40.81281453015782],[-73.8108531542375,40.81286762496023],[-73.81101873877023,40.81288275940663],[-73.811048061879,40.81288056229015],[-73.811077479524,40.81288183577623],[-73.8111120357939,40.8128958720487],[-73.81114311206217,40.81291400659979],[-73.81116987432782,40.81293575275009],[-73.81124703768344,40.81299329087473],[-73.81156607359804,40.81305400191417],[-73.81177347317579,40.813043718613],[-73.81183200305001,40.81294468063767],[-73.81185065747451,40.81293940004022],[-73.81187624715335,40.81295360401528],[-73.81189483219032,40.81297310709511],[-73.81191569106025,40.81301208663756],[-73.81194127077777,40.81302983071731],[-73.81241175315148,40.8130925560746],[-73.8127657266265,40.8131586306658],[-73.81304792513603,40.81329081980389],[-73.81384062408996,40.81471060950257]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000023,"geom:area_square_m":217024.190666,"geom:bbox":"-73.8138406241,40.8085279708,-73.8025359915,40.8154929779","geom:latitude":40.812692,"geom:longitude":-73.808371,"iso:country":"US","lbl:latitude":40.811991,"lbl:longitude":-73.807189,"lbl:max_zoom":18,"mps:latitude":40.813993,"mps:longitude":-73.809229,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Silver Beach"],"name:deu_x_preferred":["Silver Beach"],"name:eng_x_variant":["Silver Bch"],"name:swe_x_preferred":["Silver Beach"],"reversegeo:latitude":40.813993,"reversegeo:longitude":-73.809229,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85852219,102191575,907157031,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0bdc51203bac402b2ed1813870beb9c4","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157031,"microhood_id":907215467,"neighbourhood_id":85852219,"region_id":85688543}],"wof:id":907215467,"wof:lastmodified":1566608562,"wof:name":"Silver Beach","wof:parent_id":85852219,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869651],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215469.geojson b/fixtures/microhoods/907215469.geojson new file mode 100644 index 0000000..d074663 --- /dev/null +++ b/fixtures/microhoods/907215469.geojson @@ -0,0 +1 @@ +{"id":907215469,"type":"Feature","bbox":[-73.80525143538651,40.59067067781281,-73.78616632596848,40.60325551557715],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.78805200000016,40.59450200000013],[-73.78805200000016,40.594502],[-73.78797151506635,40.59245977742785],[-73.78970976910787,40.59246643678851],[-73.79001753424282,40.59243620934647],[-73.79113797332842,40.59217519896104],[-73.79256759811037,40.59184443481652],[-73.79267438459985,40.59310857479537],[-73.79620043658507,40.59295178021291],[-73.79604991700126,40.59108193527507],[-73.79935563677846,40.59067067781281],[-73.79950288818027,40.59279735123291],[-73.80243846290313,40.5926400638354],[-73.80246008633553,40.59286195684645],[-73.8024928535665,40.59328631108789],[-73.80237735357417,40.59328671578609],[-73.80250965087296,40.59394812804166],[-73.80314197343124,40.593848224463],[-73.80311672501844,40.59376102373357],[-73.80313503440752,40.59375794307134],[-73.8031654946492,40.59386313284474],[-73.80318082190914,40.59394537813117],[-73.80316616820345,40.59394784319244],[-73.80314275347327,40.59386698493293],[-73.80251304282999,40.5939668517925],[-73.80256837601095,40.59427226699425],[-73.802737230955,40.59424940019141],[-73.80323967749763,40.59418846225912],[-73.8032202745917,40.5940890132522],[-73.80324253171031,40.59408723986562],[-73.80328793893042,40.59428211589177],[-73.80325775448782,40.5942858520626],[-73.80324024295776,40.59420405487715],[-73.80281972468119,40.59426086459896],[-73.8028282488529,40.59428830098164],[-73.80272201865938,40.59430321509211],[-73.8027163447746,40.59427361576117],[-73.80260442850866,40.59428775204501],[-73.80260727634308,40.59429859845099],[-73.80270640618431,40.59428597779939],[-73.80270983859091,40.59430643303234],[-73.80257740915901,40.59432212325601],[-73.8025887550429,40.59438474740669],[-73.80233663086598,40.59440486335874],[-73.80234513845664,40.5944959752571],[-73.80277370333901,40.5944818254182],[-73.80277681567541,40.59455581805208],[-73.80304215715404,40.59453639859793],[-73.80309776811414,40.59456301417778],[-73.80311851898685,40.59458951790864],[-73.80318574404427,40.59466300284176],[-73.80347149929423,40.59450267265476],[-73.80341774109775,40.5944467343603],[-73.80344017041465,40.59443420917694],[-73.80350896976357,40.59450580001114],[-73.80348620935116,40.59451851059967],[-73.80348190694258,40.59451638868287],[-73.80319675364977,40.59467819988333],[-73.80321061506862,40.59469283195871],[-73.80337754303835,40.59486904065904],[-73.80365519313504,40.59473064203007],[-73.80372454267388,40.59481711197988],[-73.80371008333059,40.5948239767712],[-73.80365167080726,40.59475314278156],[-73.80338468036202,40.59488526035868],[-73.80336102564657,40.59488688764132],[-73.80334489744966,40.5948710851159],[-73.80320010623225,40.59487284642435],[-73.80320303445056,40.59493729339108],[-73.80338350994708,40.59493448643867],[-73.80338472349479,40.59494957958525],[-73.80320373655319,40.59495275556906],[-73.8032070440726,40.59500968361722],[-73.80339097327922,40.59500651249421],[-73.80339061688493,40.59502044297906],[-73.80320801748975,40.5950264504778],[-73.80321494251262,40.59514564845065],[-73.80331306803043,40.59514906685276],[-73.80331384838638,40.59516528003146],[-73.80335137111732,40.59516369575682],[-73.80335292789002,40.59515574997716],[-73.80363981182515,40.59513279276304],[-73.80389507006753,40.59499087536733],[-73.80390842264872,40.5950048133322],[-73.80365158624444,40.59514954741726],[-73.80331443412842,40.59517742793794],[-73.8033145372907,40.59517956193947],[-73.80332883082927,40.59518814029877],[-73.8034268388653,40.59519132453123],[-73.80349792164733,40.59517513809813],[-73.80354001503524,40.59516683509509],[-73.80357135342217,40.59516370962484],[-73.80359840436361,40.59516456670431],[-73.80362294026628,40.59516891247245],[-73.80364633286696,40.59517618453224],[-73.80366722697457,40.59518595437377],[-73.8036846869574,40.59519779018399],[-73.80411180637117,40.59568714203429],[-73.80427909056907,40.59587879998556],[-73.80439804267071,40.59603625185107],[-73.80449519927369,40.59616928994785],[-73.80459353615727,40.59628696666379],[-73.80469297945247,40.59636950734572],[-73.80471802119763,40.59640697417506],[-73.80473137309315,40.59643858741973],[-73.8047352339766,40.59648758265377],[-73.80475097698768,40.59652968178386],[-73.80477863809371,40.59657258452704],[-73.80486462646954,40.59673362835147],[-73.80495031715077,40.59674437643965],[-73.80500965260912,40.59676326859498],[-73.80501631753073,40.59676392003427],[-73.80501624964813,40.59676029725897],[-73.80509431912357,40.59676740814039],[-73.80509981825783,40.59670649264588],[-73.80510759382435,40.59669046906149],[-73.80509892506629,40.59660906211085],[-73.80513406252761,40.59660758897054],[-73.80514809966373,40.59672153809763],[-73.80515426905586,40.59672110829037],[-73.80515688401547,40.59673375752354],[-73.80521293968145,40.59673277935762],[-73.80521738621712,40.59676677965626],[-73.80522451261193,40.59676670110156],[-73.80522538542242,40.59678770090894],[-73.8052059540656,40.5967904506397],[-73.80520916717913,40.5968096137664],[-73.80520407924874,40.59689225938938],[-73.80524832538254,40.59689503261359],[-73.80524737229534,40.59694503138051],[-73.80520078229809,40.59694409499814],[-73.80520109057905,40.59696039196264],[-73.805244817967,40.59695928365311],[-73.80525143538651,40.59703274470251],[-73.80520792410326,40.59703502156484],[-73.80522178031919,40.59718883923222],[-73.80519243494217,40.59719037599557],[-73.80518463880817,40.59712891761399],[-73.80517643161772,40.59704677197973],[-73.80517300904623,40.59696735128347],[-73.80517362267634,40.59689827886407],[-73.80518115407425,40.59679148514454],[-73.80516310470952,40.59679204575622],[-73.8051574471505,40.59676928782172],[-73.80516503589428,40.59676847996059],[-73.80516341154976,40.59675799203129],[-73.80514962023194,40.59675741965359],[-73.80513706065165,40.59682203580165],[-73.80510231687569,40.5968191585319],[-73.80510264190883,40.59681118484157],[-73.80501035319573,40.596806042102],[-73.80501106896826,40.59679371749342],[-73.80497365287395,40.59678016384704],[-73.80497148353824,40.59678712102054],[-73.8049457274591,40.59678109683485],[-73.80495249836117,40.59676487939934],[-73.8049301090249,40.59675715430027],[-73.80487565214938,40.59674853593171],[-73.80494117146371,40.59685653723154],[-73.80502580942135,40.59700085448308],[-73.8050845877184,40.59710107810035],[-73.80511185479916,40.59715104799832],[-73.80505481227482,40.59720551630662],[-73.80496957533921,40.59726974325392],[-73.80493314568707,40.59730357383235],[-73.80484578876022,40.59741506485052],[-73.8047651550102,40.59752946104867],[-73.804750760263,40.59755127591794],[-73.80472981462285,40.59762533029134],[-73.80472959936782,40.597635676145],[-73.80472761310357,40.59764591193183],[-73.80472388986286,40.59765586226719],[-73.80471849344069,40.59766535665726],[-73.80471112228062,40.59767466319539],[-73.80470214568707,40.59768311083392],[-73.80469173344075,40.59769053979728],[-73.8046801857739,40.59769585634599],[-73.80466667714958,40.59770070897702],[-73.8046446977669,40.59770594606886],[-73.80462188261254,40.59770832826933],[-73.80459886525759,40.59770778942533],[-73.8045813826406,40.59770656186121],[-73.80456298434073,40.59770813466953],[-73.8045136349039,40.59771386970599],[-73.80448509590953,40.59772005191608],[-73.80446414395622,40.59773047396789],[-73.80445636320806,40.59773188741063],[-73.80444431269623,40.59772753073677],[-73.80443910360165,40.59772310327953],[-73.80443582727858,40.59772348084427],[-73.80442416889072,40.59773254630128],[-73.80441857054223,40.59773832944426],[-73.80440580135837,40.59774574552293],[-73.80438983496536,40.59775016441469],[-73.80437866087807,40.59775423512656],[-73.80436267120022,40.59776727488013],[-73.80435822020662,40.59777467713657],[-73.8043511808183,40.59778042867284],[-73.80434843981266,40.59778218122412],[-73.80433914461102,40.59778356527589],[-73.80432404105336,40.59778889196261],[-73.80431282695537,40.59779408739364],[-73.80430791850927,40.59779784057724],[-73.80429952498108,40.59779903283206],[-73.80429452398968,40.5977975421813],[-73.80429005911876,40.59779745332579],[-73.80427924903057,40.59779993211162],[-73.80426238305884,40.59780456958747],[-73.80424035951769,40.59781224496842],[-73.80423360865748,40.59781755839654],[-73.80423190049063,40.59782318230302],[-73.80423260470631,40.59782864513484],[-73.80422806444814,40.59782968043957],[-73.80421769771002,40.59782831835382],[-73.8042096695066,40.59782791986086],[-73.80420311288307,40.59782867781841],[-73.80419463977593,40.59783212236537],[-73.80417089390042,40.59783795465337],[-73.80412543979922,40.59786601210766],[-73.80411123700331,40.59787114747522],[-73.8040995661049,40.59787269213957],[-73.80408649461421,40.5978719578555],[-73.80407482429875,40.59787352831793],[-73.8040474877813,40.59788767397824],[-73.80403554415486,40.59789602355812],[-73.80393338922417,40.59794349858419],[-73.80392075541614,40.59795388044846],[-73.80391445482589,40.59800253620617],[-73.80390637589976,40.59801940236728],[-73.80389841364087,40.59803283788847],[-73.80388859776929,40.59804034288152],[-73.80388685014029,40.59804711848136],[-73.80388964463056,40.59805170819998],[-73.80388273645939,40.59806154966378],[-73.80387647055761,40.5980618678311],[-73.80386762022498,40.59805941098293],[-73.80385658782782,40.5980514316501],[-73.80385241060455,40.59805202779448],[-73.80384868845721,40.598056248548],[-73.80384964249738,40.59806239901484],[-73.80385182215113,40.59806791931697],[-73.80385593800575,40.5980770664212],[-73.80385746539636,40.5980834649727],[-73.80385748008985,40.59809095775863],[-73.80385331601522,40.59809904785899],[-73.803845703724,40.59810340018446],[-73.80384062878419,40.59810306165632],[-73.80381966983127,40.59809103059313],[-73.80381154878702,40.59808541722048],[-73.8038059751034,40.59808255367101],[-73.80380093554906,40.59808221570411],[-73.80378259246716,40.59808679563807],[-73.8037699011112,40.5980919879912],[-73.80371151197187,40.59811096738206],[-73.80369294305648,40.59811864638087],[-73.80368751590305,40.59812739304397],[-73.80368332624673,40.59814410131911],[-73.80368599280021,40.59816820567558],[-73.80368138795552,40.59817901234661],[-73.80367896997099,40.59818032633873],[-73.80367170913671,40.5981756202582],[-73.803663626871,40.59816885366769],[-73.8036569822601,40.59816326994632],[-73.80365227068293,40.59816134100216],[-73.80364956811984,40.59816196763615],[-73.80364728360564,40.59816737158793],[-73.80364456970703,40.59818410969037],[-73.80364023682634,40.59818808228744],[-73.80362454370504,40.59818569548287],[-73.80361532449245,40.59818595363959],[-73.80360361343287,40.59818865095613],[-73.8035935508251,40.59819431552487],[-73.80358075867726,40.59820925288096],[-73.80357503810265,40.59821956359599],[-73.803574534761,40.59823205156381],[-73.80357782268696,40.5982402915978],[-73.80358067118344,40.59825124821059],[-73.80356578073965,40.59828202005809],[-73.80355854855945,40.5982923007136],[-73.8035491366611,40.59829708803309],[-73.80354200774555,40.59829647307488],[-73.80352704413083,40.59829092873378],[-73.80352283004473,40.59829149799846],[-73.80351914721822,40.59829459384728],[-73.80351665263268,40.59829818526976],[-73.8035141738963,40.59830811670886],[-73.80351090999116,40.59831598870451],[-73.80348529924218,40.59833084985257],[-73.80344809563273,40.59836976181869],[-73.80344577173932,40.59837629049267],[-73.80344747125588,40.59838565310982],[-73.8034467924196,40.59839630180446],[-73.80344033314651,40.5984011491147],[-73.80343103518442,40.5984036590547],[-73.803424156912,40.59840375752384],[-73.80340842307407,40.59840249491126],[-73.80339966262304,40.59840637699786],[-73.80339402411327,40.59841328481572],[-73.8033968594027,40.59841677612448],[-73.80343045341496,40.59844203087838],[-73.8034332099969,40.59844777113627],[-73.80343092465715,40.59845314760737],[-73.8034235253518,40.59845933873881],[-73.80341623970855,40.59846327880168],[-73.80339972746991,40.59848243621006],[-73.80339355144417,40.59848797070595],[-73.80338906181244,40.59849649932741],[-73.80338940193108,40.59850355307224],[-73.80338610107479,40.59851142600621],[-73.80337927223759,40.59851899001055],[-73.80337235216241,40.59852133815987],[-73.80335830742621,40.59852191740272],[-73.80334646350401,40.59852052473357],[-73.80333789837326,40.59851875285875],[-73.80332630606301,40.59851804681927],[-73.8033139433153,40.59852162302393],[-73.80328484470324,40.59853504963293],[-73.80326373338195,40.59855002816516],[-73.80324373585125,40.59856659946136],[-73.80320358175042,40.5986043260504],[-73.80316610486287,40.59865001788152],[-73.80313217792676,40.59868855221677],[-73.80311386319188,40.59870811811625],[-73.80310166848572,40.5987158101177],[-73.80307007829725,40.59873167649243],[-73.80304348449516,40.59875015717667],[-73.8030272996374,40.59876772423147],[-73.80301724588918,40.59878203597167],[-73.80300615192711,40.5988074327004],[-73.8030019122912,40.59881664910898],[-73.80299435528553,40.59882739523916],[-73.8029794332576,40.59884430455311],[-73.80295721424761,40.59885675528623],[-73.80292155267877,40.59887297197988],[-73.80289207302587,40.59888041418197],[-73.80286443010502,40.59889149413841],[-73.80283474315364,40.59889888883743],[-73.8028005997593,40.59890723973648],[-73.80270532053349,40.59892217815668],[-73.80267116793493,40.59893318769592],[-73.80265662904348,40.59893569343249],[-73.80262990538364,40.59893565574846],[-73.80257090475831,40.59893139380659],[-73.80242371672543,40.59892943908572],[-73.80233534244982,40.59892284895448],[-73.80219289253623,40.59890022541892],[-73.8020758667759,40.59887051342686],[-73.80200819959833,40.59885275600163],[-73.8019634990333,40.59885133790647],[-73.80188884923479,40.59886166308925],[-73.8017657381599,40.5988874133564],[-73.80167092680196,40.59889630926965],[-73.80147213607032,40.59898873821644],[-73.80123490662545,40.59912290165511],[-73.80094867862843,40.59915166462011],[-73.80095155254567,40.59918124108189],[-73.80091083450365,40.59918389943918],[-73.80089078534678,40.59920057125714],[-73.80090327346757,40.59931173989114],[-73.80089306997975,40.59931240456165],[-73.80089596964324,40.59933820579018],[-73.80090900567349,40.59933735454021],[-73.80091500623982,40.59939076113585],[-73.80088285514185,40.59939286070256],[-73.80087685441288,40.59933944355066],[-73.8008864632642,40.59933881621556],[-73.80088341549099,40.59931168018956],[-73.8008705531318,40.59931252034552],[-73.80085916792916,40.599211164654],[-73.80082299851885,40.59918872956965],[-73.80077984407798,40.59919154616153],[-73.80077654707648,40.59916236047853],[-73.80056517505567,40.59917549389562],[-73.80056802039566,40.59919942306311],[-73.80049526371997,40.59920436806874],[-73.80050985467842,40.59932910744507],[-73.80047379227798,40.59933155912373],[-73.80046729855627,40.59927604898415],[-73.80046234043196,40.59927638565402],[-73.80045131861348,40.59918256888051],[-73.7993376655021,40.59924923915842],[-73.79916040009225,40.59925813759455],[-73.7991672487505,40.599321038998],[-73.79919148970743,40.59931950909262],[-73.79919690825386,40.59936939496676],[-73.79918842607505,40.59936993131794],[-73.79918997630611,40.59941675603331],[-73.7991432750363,40.59941879886301],[-73.79913853303405,40.59937337062343],[-73.79912877642306,40.59937335357039],[-73.79912265687945,40.59932234552719],[-73.79914566217302,40.59932052699602],[-73.79914024196694,40.59925849421595],[-73.7987884785068,40.59926470134388],[-73.79868820989631,40.59926289920001],[-73.79861531632378,40.59921407570159],[-73.79852697576109,40.59918346992112],[-73.79843078589403,40.59917371408841],[-73.7983103379235,40.59918581129947],[-73.79823995746294,40.59920032882011],[-73.79817195788716,40.59922038321025],[-73.79810708664004,40.59924575403499],[-73.79811229286904,40.59930104024055],[-73.79782248234713,40.59932182828994],[-73.79769003439195,40.59932850328672],[-73.79561756986662,40.59944482979852],[-73.7956183311845,40.59946221670444],[-73.79554315704529,40.59946730371281],[-73.79554637621138,40.59949676214924],[-73.79546504863085,40.5994985311246],[-73.79546353545747,40.59947267626853],[-73.79531360293959,40.59948278577274],[-73.79519333656768,40.59945483905385],[-73.79507068550598,40.59943375695543],[-73.79494632315614,40.59941965522605],[-73.79482093231374,40.5994126112893],[-73.79469712002864,40.59941236483231],[-73.79457361595858,40.59941902430579],[-73.79445108219672,40.59943255400853],[-73.79433017563672,40.59945288140938],[-73.79421154444954,40.59947989753479],[-73.79409582461035,40.59951345755348],[-73.79398363648933,40.59955338155262],[-73.79387558152663,40.59959945550253],[-73.79377223900747,40.59965143240246],[-73.79367416295865,40.59970903360728],[-73.79358187917698,40.59977195031829],[-73.79355194144344,40.59978384190538],[-73.79351553895107,40.59981721206479],[-73.79348180624329,40.5998489406967],[-73.79345627135446,40.59986799318231],[-73.79343111451111,40.59987957988236],[-73.79341155585982,40.59990114197144],[-73.79337743081241,40.59992652384603],[-73.79335905370635,40.59994915789446],[-73.79334683895591,40.59995173967587],[-73.79333658528577,40.59994967201533],[-73.79331874722406,40.59996565861435],[-73.79330907387696,40.59996846559896],[-73.793257816193,40.59996575541469],[-73.79318874258801,40.59995796598395],[-73.79316543249615,40.59996113323079],[-73.79314362456485,40.59997575784591],[-73.7931232509377,40.59998514739329],[-73.7931001302735,40.59998661873072],[-73.79303939811136,40.59997793018573],[-73.79298202592086,40.59998632311619],[-73.7929132569072,40.59998783296682],[-73.79289534205128,40.59997816086268],[-73.79287566137775,40.59995800927684],[-73.79285499477501,40.5999478333037],[-73.79281390938522,40.59995599633715],[-73.79278322675363,40.59994240093996],[-73.79277201560414,40.59994156552566],[-73.79275541652937,40.59994843764551],[-73.79274275792105,40.59999232399184],[-73.79273589624482,40.5999979215134],[-73.79270311156473,40.60000675502064],[-73.79266695282772,40.60000738805582],[-73.79263370220626,40.60000871035044],[-73.7926243270473,40.60001202341962],[-73.7926189008938,40.60001993124487],[-73.79261285952836,40.60004319908426],[-73.79259650271233,40.60005223559825],[-73.79258554038346,40.60005131886039],[-73.79255899397359,40.60004438480934],[-73.79253803879706,40.60004800532658],[-73.79252458170215,40.60003666357029],[-73.79250782889378,40.60002021224018],[-73.79248706249776,40.60001874906798],[-73.79245722965986,40.60001065511521],[-73.79242878573588,40.59999583014582],[-73.79235534608978,40.59995332421416],[-73.79233256449524,40.59995439142602],[-73.79228672001176,40.59999268592278],[-73.79228420646561,40.60001861864865],[-73.79226718128305,40.60002071349127],[-73.79226064450114,40.60001427440197],[-73.7922419080193,40.60001015465216],[-73.79221194321228,40.60001255428418],[-73.79219461864328,40.60002066137987],[-73.7921958008478,40.60003536742367],[-73.79219277190978,40.60004984186573],[-73.79215987900962,40.60005471646535],[-73.79213992689124,40.60006399954954],[-73.79212903284505,40.60007885061069],[-73.79210604552308,40.60009049204169],[-73.7920910635957,40.6001129547833],[-73.7920810955221,40.60013549628638],[-73.792058791558,40.60015777724174],[-73.79205236431135,40.6001698751547],[-73.79204593467387,40.60018196368129],[-73.79203992547666,40.60020570197193],[-73.7920302576977,40.60022200504382],[-73.7919309831019,40.60025276538813],[-73.7919135636537,40.60026540277276],[-73.79188654338611,40.60027855584843],[-73.79185432754554,40.60028730336352],[-73.79179857672625,40.60030008540291],[-73.79171766890656,40.6003156818902],[-73.79158933627814,40.60033492254126],[-73.79154070576037,40.60035038092106],[-73.79147321564987,40.60039126202272],[-73.79141703054276,40.60043332408104],[-73.7913113302375,40.60050216845989],[-73.7911874249701,40.60059790837359],[-73.79115825095177,40.6006255872073],[-73.79107832683238,40.60068817222758],[-73.79095553934772,40.60080457300306],[-73.79086987166566,40.60092081939086],[-73.79084517544976,40.60094282017078],[-73.79082205893044,40.60095989409464],[-73.79078960263367,40.60098020644723],[-73.79076000197993,40.6009936164094],[-73.790736547386,40.60100872390824],[-73.79071831565938,40.60103192823716],[-73.79070491695126,40.60105388204493],[-73.79069791123395,40.60106719693592],[-73.79068511656352,40.60108324391012],[-73.79067067838218,40.60109560659401],[-73.7906488028035,40.60110578672244],[-73.79062047044042,40.60111599244256],[-73.79058890078461,40.60112498235816],[-73.79056344142461,40.60113074840395],[-73.79053507391471,40.60113603587261],[-73.79050959633186,40.60113934086348],[-73.79045247839802,40.60114179541206],[-73.79043249059028,40.60114532332555],[-73.79040350209188,40.60115405772355],[-73.79037646383728,40.60116474940164],[-73.79029900492377,40.60121108532429],[-73.79025461686723,40.60124199646017],[-73.79008673003659,40.60137030374593],[-73.78999783811,40.60143127809206],[-73.7899392991492,40.60150526928182],[-73.78984978803174,40.60160225420763],[-73.7897968220672,40.60164324816432],[-73.78974621092647,40.60167663888593],[-73.78969738402573,40.60170326750273],[-73.78960830868344,40.60177483276719],[-73.7894852981016,40.60187995698546],[-73.78939931834397,40.60196553557678],[-73.78933344957079,40.60201318055611],[-73.78907194280562,40.60218640697258],[-73.78901099030352,40.60223918417947],[-73.78895787564196,40.60228865229498],[-73.78888972550821,40.60233966285546],[-73.78865330410804,40.60250890229268],[-73.78857420265727,40.60258226157872],[-73.7885155665376,40.60262955484944],[-73.78836540496306,40.60272931939149],[-73.78832266934046,40.60275727994636],[-73.7882770070745,40.60279368528578],[-73.78820778807216,40.6028421446771],[-73.78810890201648,40.60293437289396],[-73.78807903186683,40.60295780228292],[-73.78804089550746,40.602976909904],[-73.78797928486595,40.6030162072591],[-73.78789694353759,40.60308402492359],[-73.78785755633548,40.60311117193022],[-73.78782341431722,40.60312438880565],[-73.78779155529843,40.60313423818626],[-73.78776928578725,40.60313613270164],[-73.7876979246508,40.60311549997266],[-73.78766902829133,40.60311478501596],[-73.78761995942556,40.60312319011069],[-73.7875758418735,40.60313461149206],[-73.78743204173531,40.60318782809226],[-73.78734312524055,40.60321786633627],[-73.78730232089386,40.60323059209745],[-73.78727495168464,40.60323794474187],[-73.78663897364014,40.60325551557715],[-73.78650335648618,40.60325020617898],[-73.78635332811838,40.60319465903865],[-73.78630485944034,40.60315872781615],[-73.7863035495189,40.60315059416469],[-73.7863143879221,40.60313837577824],[-73.78631473411518,40.60312250986262],[-73.78628810615065,40.60311409425823],[-73.78625649061965,40.60311372905267],[-73.78622201957903,40.60310480413133],[-73.78616881842791,40.60307472641093],[-73.78616632596848,40.60306714943633],[-73.7861685512481,40.60304744975198],[-73.78617884041064,40.60303206337697],[-73.7862012062298,40.60300977546979],[-73.78624389553234,40.602975672139],[-73.78628781106775,40.60293044258458],[-73.78634019785908,40.60290424073619],[-73.78638878260507,40.60287408192572],[-73.78643305290177,40.60284028422947],[-73.78647254185046,40.60280320410167],[-73.786506832982,40.6027632326146],[-73.78646693278723,40.60272304151771],[-73.78658983800638,40.60264611723686],[-73.78662553843017,40.60267711635454],[-73.78676630785831,40.602595423567],[-73.78690284497024,40.6025096593648],[-73.78716241855214,40.60232643157495],[-73.78721056286672,40.60225974728204],[-73.7872801037301,40.60211327053355],[-73.78733315550727,40.60201219574943],[-73.78741930529897,40.60186460826791],[-73.78745510944212,40.60178748070315],[-73.78751201462373,40.60167645768154],[-73.78754626169658,40.60161778645776],[-73.78757451437758,40.6015570560945],[-73.78763043154149,40.60144198082299],[-73.78766351014326,40.60137046458449],[-73.7877451978488,40.60124981315816],[-73.78788971616287,40.6010410521852],[-73.78792994192678,40.60099530305128],[-73.78800227052686,40.60093739150592],[-73.78807155049913,40.60085446865573],[-73.7883548397444,40.60064281780451],[-73.78850007513715,40.60053885780104],[-73.788625366823,40.60047958313279],[-73.7887606156777,40.60038011516658],[-73.78886763442698,40.60032347137178],[-73.78898515769974,40.60023985757638],[-73.78908852968236,40.60018551074719],[-73.7891327861558,40.60015202036403],[-73.7891882823156,40.60012826864019],[-73.78923630845085,40.60009857498708],[-73.78926404974422,40.6000606696789],[-73.78927079438958,40.60004245482371],[-73.78928357791777,40.60001988471623],[-73.78930418649622,40.60000746818145],[-73.78935965392391,40.60000419212751],[-73.78939493881225,40.59999428878252],[-73.78946269696266,40.59999749212845],[-73.78953462130708,40.5999718149268],[-73.78954114938684,40.59994369480516],[-73.78955983471057,40.59991161644166],[-73.78960231173669,40.59987290792459],[-73.78970098614833,40.59980139808361],[-73.78976540612766,40.59974667361861],[-73.7897729885848,40.59972862394277],[-73.78978096149109,40.59972164031227],[-73.78980075832334,40.59971560726011],[-73.78980602655174,40.59970071312541],[-73.78983482716298,40.59965673968302],[-73.78987511294132,40.59958962492247],[-73.78990943888176,40.59954288710538],[-73.78992643537941,40.5995181095508],[-73.78998038603888,40.5994594928768],[-73.78999622917706,40.59943704571903],[-73.79001376410707,40.5994136634844],[-73.79005223846879,40.5993739577214],[-73.79013529954663,40.59934603113223],[-73.79024080346252,40.59930403392537],[-73.79030531748309,40.59926015184595],[-73.79034006550998,40.59919167636016],[-73.79032450017972,40.59904683534916],[-73.79035167891196,40.59889089541168],[-73.79043233771203,40.59864908902289],[-73.79066455579296,40.59811095337754],[-73.79066404130107,40.59809405054188],[-73.79067875876683,40.59805002258143],[-73.79073876433843,40.59789472047225],[-73.7907911115019,40.59778570807595],[-73.79081330022184,40.59771380604234],[-73.79085314627787,40.59758248137465],[-73.79091651274324,40.5974596310872],[-73.79092749195188,40.59741268847905],[-73.7909367556082,40.59739730583855],[-73.79095604358129,40.59739110915793],[-73.79100150128562,40.59733920520878],[-73.79103242414763,40.59729583809079],[-73.79105572908406,40.5972482608309],[-73.79107079436713,40.59719836237305],[-73.79107981022909,40.59714864289379],[-73.7910682176379,40.59704390857641],[-73.79106882093528,40.59701335561358],[-73.79108998321661,40.59697079849715],[-73.79109553348225,40.59694511724295],[-73.79109463123854,40.59692384553417],[-73.79107264031752,40.59689520522651],[-73.79106730800329,40.59687405881682],[-73.7910669638905,40.59684797985352],[-73.79107940608647,40.59682832544483],[-73.79110071587495,40.59680631962552],[-73.79110296641791,40.59678974447829],[-73.79108785355292,40.59674116087701],[-73.79107684455167,40.59670329172297],[-73.79107312725625,40.5966829694797],[-73.79107086341465,40.59663636346869],[-73.79105611266202,40.59651787189746],[-73.79104972413384,40.5964979857342],[-73.79102080130029,40.59646464080736],[-73.79099965333594,40.59642345773025],[-73.79099262550774,40.59639275468526],[-73.79098674490578,40.59630153849023],[-73.79097335401146,40.5962090669036],[-73.79096043520504,40.59616202703847],[-73.79094400255754,40.59612054561261],[-73.79094119971539,40.59607218256969],[-73.7909399637939,40.5960294677922],[-73.79093525469258,40.59600508265172],[-73.79093189738249,40.59598317572389],[-73.79093142251094,40.59596118340649],[-73.79093449787935,40.5958812981177],[-73.79095128245287,40.59581056042933],[-73.79101892771455,40.59563200484976],[-73.7910329684625,40.59556905630922],[-73.79103617492409,40.59552224010585],[-73.79101795420638,40.59544763934031],[-73.79099860607761,40.59539986103969],[-73.79098954422557,40.59537228073096],[-73.79096931737881,40.59532270775642],[-73.79094688947006,40.59523411679454],[-73.79093660758711,40.59519000276669],[-73.79090267378733,40.5950935796223],[-73.790862923799,40.59501313776406],[-73.79077640549646,40.59492348473745],[-73.79072779276046,40.59489772128723],[-73.79070678530401,40.59488197343357],[-73.790690262347,40.59486216143242],[-73.79065080043436,40.59478270157946],[-73.79053797373713,40.59475729570433],[-73.79042048230933,40.59475269500842],[-73.79043709310868,40.59482599508645],[-73.79045684084386,40.59496013627624],[-73.79057004196042,40.59495180029975],[-73.79071439952168,40.59608554152324],[-73.79080405847397,40.59608143327051],[-73.7908062614169,40.59609339588426],[-73.79059442974037,40.59610838477277],[-73.79059334326143,40.59609727842324],[-73.79068189277972,40.59608889858272],[-73.79053857666521,40.59498078405603],[-73.79042537549716,40.59498911949892],[-73.79040674421688,40.59485583557942],[-73.79031932474763,40.59486165540389],[-73.79031645544241,40.59484883921795],[-73.79040454942982,40.59484131043697],[-73.79040235107801,40.59482764119719],[-73.79038275528076,40.5947891694952],[-73.79037896334799,40.59475196591333],[-73.79029571148867,40.59475382143427],[-73.79015263648824,40.59476820227287],[-73.79016082074578,40.59481782745352],[-73.7901656270879,40.59486912946876],[-73.79031625476247,40.5960481989394],[-73.79042381159329,40.59604197775187],[-73.79042481472287,40.59605393215411],[-73.79017830001342,40.59607131970444],[-73.79017616944469,40.59606021094181],[-73.79028151177371,40.59605141610629],[-73.79012992012326,40.5948724140185],[-73.7901199866647,40.5948237085622],[-73.79011344054709,40.59477348142077],[-73.7899470552338,40.5948073107434],[-73.78990643704788,40.59480862313328],[-73.78990069186749,40.59480242642761],[-73.78986650490673,40.59471554399448],[-73.78985807338587,40.59471718645017],[-73.78989588911116,40.59482073601441],[-73.78988243242804,40.59482412801083],[-73.78984569560446,40.59471959684832],[-73.78978513163786,40.59473138972908],[-73.78982301134072,40.59483427015329],[-73.78981067236685,40.59483851791692],[-73.78977512688957,40.59473333722034],[-73.78973901889825,40.59474366855455],[-73.78970621834647,40.5947779891761],[-73.78968322877788,40.59480883077526],[-73.78967352950475,40.59484352440507],[-73.78971205739906,40.59484090003292],[-73.78972631820011,40.59493830092535],[-73.78987360648408,40.59620444378464],[-73.78999689158508,40.59619698204691],[-73.78999909439116,40.59620894350337],[-73.78969872360844,40.59622803991138],[-73.78969763458426,40.59621778828497],[-73.78984110232906,40.59620694687997],[-73.78968593487113,40.59495189342677],[-73.7896738967583,40.59486047590016],[-73.78946035244321,40.59499746624786],[-73.78942472254529,40.59495613940294],[-73.78941370549548,40.5949467896526],[-73.78940242709986,40.59494978552398],[-73.78939514308203,40.59496289343586],[-73.78941219682905,40.59500223251823],[-73.7894245509966,40.59502168793259],[-73.7894248796351,40.59504494081973],[-73.78938382544044,40.59511301633012],[-73.78937936325222,40.59516049444521],[-73.78937617071958,40.59517654346748],[-73.78935311513335,40.59519376497538],[-73.78933124413732,40.59519872262831],[-73.78930387855203,40.59518758400117],[-73.7892732974538,40.59518514649214],[-73.78924333205902,40.59518587708565],[-73.78920997835175,40.59518439039917],[-73.78917959368805,40.59518586671933],[-73.78918787990526,40.59520911008117],[-73.78918877196472,40.59523354709705],[-73.78918611880975,40.5952822131255],[-73.78918244284348,40.59529822238851],[-73.78914227176719,40.59533991367194],[-73.78911306667331,40.59547475633222],[-73.78912343204297,40.59557007880888],[-73.78918544890193,40.59562596440411],[-73.78920275081695,40.595645882253],[-73.78921283174589,40.59566774996709],[-73.78921549146808,40.59569212371471],[-73.78920994300096,40.59571543785863],[-73.78918996471486,40.59573767528845],[-73.78916664273714,40.59575914247728],[-73.7891519908476,40.59579310502378],[-73.78914991183132,40.59580908806493],[-73.78913011480995,40.59582993481778],[-73.7891166356462,40.59585059765415],[-73.78910675861428,40.59587773726371],[-73.78911180104402,40.59590151428951],[-73.7891242907856,40.59591341841485],[-73.78913819375325,40.59592864741324],[-73.78926858096284,40.59645372374914],[-73.78925996091002,40.5969167577866],[-73.78922017232341,40.59711123450752],[-73.78921222323439,40.59714034227966],[-73.78913396797218,40.59736121490778],[-73.78918554149367,40.59759873307009],[-73.78839900000023,40.59753000000019],[-73.7880520000002,40.59450200000012],[-73.78805200000016,40.59450200000013]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000109,"geom:area_square_m":1027659.835285,"geom:bbox":"-73.8052514354,40.5906706778,-73.786166326,40.6032555156","geom:latitude":40.596125,"geom:longitude":-73.795808,"iso:country":"US","lbl:latitude":40.597233,"lbl:longitude":-73.797292,"lbl:max_zoom":18,"mps:latitude":40.596202,"mps:longitude":-73.79581,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:cat_x_preferred":["Somerville"],"name:ceb_x_preferred":["Somerville"],"name:deu_x_preferred":["Somerville"],"name:epo_x_preferred":["Somerville"],"name:est_x_preferred":["Somerville"],"name:fin_x_preferred":["Somerville"],"name:fra_x_preferred":["Somerville"],"name:heb_x_preferred":["סאמרוויל"],"name:ita_x_preferred":["Somerville"],"name:kor_x_preferred":["서머빌"],"name:mlg_x_preferred":["Somerville"],"name:nld_x_preferred":["Somerville"],"name:pol_x_preferred":["Somerville"],"name:por_x_preferred":["Somerville"],"name:rus_x_preferred":["Самервилл"],"name:spa_x_preferred":["Somerville"],"name:srp_x_preferred":["Самервил"],"name:swe_x_preferred":["Somerville"],"name:ukr_x_preferred":["Сомервілль"],"name:vol_x_preferred":["Somerville"],"reversegeo:latitude":40.596202,"reversegeo:longitude":-73.79581,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85803679,102191575,907157757,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d4015794cd04b83cd7b7681eb6fb3f26","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"macrohood_id":907157757,"microhood_id":907215469,"neighbourhood_id":85803679,"region_id":85688543}],"wof:id":907215469,"wof:lastmodified":1566608562,"wof:name":"Somerville","wof:parent_id":85803679,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865551],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215479.geojson b/fixtures/microhoods/907215479.geojson new file mode 100644 index 0000000..0e12e4f --- /dev/null +++ b/fixtures/microhoods/907215479.geojson @@ -0,0 +1 @@ +{"id":907215479,"type":"Feature","bbox":[-73.80583205264146,40.67253083360053,-73.76974,40.6916018204728],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.80583205264146,40.68291367684162],[-73.80105305922409,40.68426258520768],[-73.79392938074656,40.68629349952327],[-73.79363555023745,40.68638725165221],[-73.79059546719547,40.68765061838195],[-73.79039035782806,40.68772587470172],[-73.79007419427987,40.68782039878405],[-73.78731479150385,40.68851477891239],[-73.78717285167419,40.68854353846903],[-73.78705506457193,40.68856721475905],[-73.78586236312876,40.68894239792579],[-73.78574204185246,40.68899704480117],[-73.78562481678509,40.68904960835507],[-73.77920629919896,40.6916018204728],[-73.77662,40.68836400000019],[-73.7724,40.68528000000029],[-73.76974,40.68377800000017],[-73.76981186004384,40.68361691715976],[-73.76989284051024,40.68346287759966],[-73.77000890009279,40.68327254549807],[-73.77014851888836,40.68310276787479],[-73.770299202625,40.68296311907348],[-73.77082806318776,40.68260760792355],[-73.77214029717686,40.68165319976777],[-73.77227431099573,40.68156365954428],[-73.77240238176951,40.68149819177988],[-73.77311100196381,40.68117743619899],[-73.77319734787902,40.68114254648306],[-73.77408629838284,40.68082570022268],[-73.77503794518645,40.68052113813983],[-73.77653638117981,40.68007642131061],[-73.77689902607095,40.67996317755359],[-73.7771332634237,40.67987018072733],[-73.77732203385658,40.67980339607842],[-73.77768346440723,40.67964235994502],[-73.77786107057216,40.6795424869073],[-73.7780508660672,40.67942697824559],[-73.77860961759325,40.67907557250198],[-73.77913445939836,40.67871456212671],[-73.77959970939769,40.67837267441074],[-73.7805150700298,40.67771793626256],[-73.78201134994472,40.67669229510409],[-73.78391076337445,40.67536081416956],[-73.7841418025194,40.67513272328819],[-73.78433663282973,40.67488267828184],[-73.78450667744848,40.6746090666495],[-73.7846582362106,40.67434405986029],[-73.78577859650723,40.67253083360053],[-73.78631454971575,40.67268320478804],[-73.78681436558917,40.67281416547652],[-73.78808500000014,40.67301000000016],[-73.79047400000019,40.673391],[-73.80121600000018,40.67434400000013],[-73.80323000000011,40.67768100000011],[-73.80583205264146,40.68291367684162]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000375,"geom:area_square_m":3519605.134356,"geom:bbox":"-73.8058320526,40.6725308336,-73.76974,40.6916018205","geom:latitude":40.681549,"geom:longitude":-73.788307,"iso:country":"US","lbl:latitude":40.683462,"lbl:longitude":-73.783509,"lbl:max_zoom":18,"mps:latitude":40.680643,"mps:longitude":-73.788582,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:aze_x_preferred":["Cənubi Yamayka"],"name:eng_x_preferred":["South Jamaica"],"name:eng_x_variant":["S Jamaica"],"name:fra_x_preferred":["South Jamaica"],"name:heb_x_preferred":["סאות' ג'מייקה"],"name:jpn_x_preferred":["サウス・ジャマイカ"],"name:nld_x_preferred":["South Jamaica"],"name:por_x_preferred":["South Jamaica"],"name:rus_x_preferred":["Южная Джамейка"],"name:sco_x_preferred":["South Jamaica"],"name:swe_x_preferred":["South Richmond Hill"],"name:urd_x_preferred":["جنوبی جمیکا، کوئینز"],"name:urd_x_variant":["جنوبی جمیکا"],"reversegeo:latitude":40.680643,"reversegeo:longitude":-73.788582,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85827297,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q62372"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"93692f31a77a53b817809a97143af9d9","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215479,"neighbourhood_id":85827297,"region_id":85688543}],"wof:id":907215479,"wof:lastmodified":1566608558,"wof:name":"South Jamaica","wof:parent_id":85827297,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865543],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215481.geojson b/fixtures/microhoods/907215481.geojson new file mode 100644 index 0000000..96dbd76 --- /dev/null +++ b/fixtures/microhoods/907215481.geojson @@ -0,0 +1 @@ +{"id":907215481,"type":"Feature","bbox":[-73.95831024698829,40.63299560739468,-73.9530662912447,40.63840944631501],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.95831024698829,40.63632025809833],[-73.95399311473274,40.63840944631501],[-73.9530662912447,40.63351077657962],[-73.9576703959597,40.63299560739468],[-73.95831024698829,40.63632025809833]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000019,"geom:area_square_m":181671.137344,"geom:bbox":"-73.958310247,40.6329956074,-73.9530662912,40.6384094463","geom:latitude":40.635351,"geom:longitude":-73.955618,"iso:country":"US","lbl:latitude":40.632955,"lbl:longitude":-73.949351,"lbl:max_zoom":18,"mps:latitude":40.635289,"mps:longitude":-73.955568,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.635289,"reversegeo:longitude":-73.955568,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869833,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"836af0fd74533529f0b3f2040e142211","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215481,"neighbourhood_id":85869833,"region_id":85688543}],"wof:id":907215481,"wof:lastmodified":1566608562,"wof:name":"South Midwood","wof:parent_id":85869833,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892959],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215483.geojson b/fixtures/microhoods/907215483.geojson new file mode 100644 index 0000000..c92abcd --- /dev/null +++ b/fixtures/microhoods/907215483.geojson @@ -0,0 +1 @@ +{"id":907215483,"type":"Feature","bbox":[-73.837544,40.677207,-73.80583205264146,40.69729021294013],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.83754382077352,40.69136291491292],[-73.837544,40.69136400000039],[-73.82084797985168,40.69600316542288],[-73.82066843481252,40.69602875901764],[-73.82046464043457,40.69604068518571],[-73.82033887637154,40.69604083707569],[-73.82023134960457,40.69603611480046],[-73.82016008859179,40.69602261094104],[-73.81945291525741,40.69588126261812],[-73.819341592453,40.69587442074664],[-73.8192725563897,40.69588554775795],[-73.81893896845553,40.69596993272293],[-73.81487549099894,40.69711117535769],[-73.81456164161696,40.69718402476629],[-73.81420239896488,40.69724890851904],[-73.813929208506,40.69727807533192],[-73.81377122273709,40.69729021294013],[-73.80870357850904,40.68857916436509],[-73.80745368403224,40.68617474577181],[-73.80583205264146,40.68291367684162],[-73.8257810000001,40.677207],[-73.83087515957126,40.67810852504169],[-73.831083,40.67815100000027],[-73.83754,40.69136400000035],[-73.83754382077352,40.69136291491292]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000408,"geom:area_square_m":3822379.479483,"geom:bbox":"-73.837544,40.677207,-73.8058320526,40.6972902129","geom:latitude":40.687043,"geom:longitude":-73.821764,"iso:country":"US","lbl:latitude":40.684119,"lbl:longitude":-73.824163,"lbl:max_zoom":18,"mps:latitude":40.687057,"mps:longitude":-73.821746,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["South Richmond Hl"],"reversegeo:latitude":40.687057,"reversegeo:longitude":-73.821746,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85844441,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"304f572328eb204e36d8a2d936ad1828","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215483,"neighbourhood_id":85844441,"region_id":85688543}],"wof:id":907215483,"wof:lastmodified":1566608558,"wof:name":"South Richmond Hill","wof:parent_id":85844441,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865467],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215485.geojson b/fixtures/microhoods/907215485.geojson new file mode 100644 index 0000000..8d706d4 --- /dev/null +++ b/fixtures/microhoods/907215485.geojson @@ -0,0 +1 @@ +{"id":907215485,"type":"Feature","bbox":[-73.97000953222535,40.70028115334691,-73.93687724091511,40.71255980294275],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9411488595606,40.70028115334691],[-73.94193099999987,40.70072500000012],[-73.94380837270981,40.70177876695055],[-73.94620728004433,40.70311153836193],[-73.94778215448706,40.70399617204188],[-73.94864593107447,40.70448354339759],[-73.94946946382719,40.70495611560312],[-73.95045306145741,40.70548174497655],[-73.95103665214084,40.70579112375959],[-73.95187968714258,40.70625021899561],[-73.95196500002288,40.7062953153583],[-73.95208752737332,40.70634796996925],[-73.95240758990217,40.7064636041932],[-73.95291994473673,40.70665501112358],[-73.95315596611914,40.70674441389994],[-73.95334320772994,40.70681022943607],[-73.9534855147987,40.70683412218417],[-73.9536295734101,40.70684673020816],[-73.95436439456613,40.70688347244788],[-73.95642291077071,40.70704907603376],[-73.95718387018903,40.70710769672302],[-73.96119985657627,40.70749750985154],[-73.96311073246395,40.7076930754903],[-73.96331826133027,40.7077014403847],[-73.96351655575884,40.70767725829396],[-73.96441639938186,40.70749779727532],[-73.96730686987104,40.70697077502975],[-73.96803681879727,40.70683756368641],[-73.96814629789243,40.70682088300007],[-73.9682473495451,40.70681087001275],[-73.96832471033082,40.70681817096047],[-73.96840352325411,40.70683482828098],[-73.96880862107422,40.70696466881326],[-73.96929296348509,40.70709333109578],[-73.9695732015104,40.70755210830667],[-73.96984864823548,40.7080030416878],[-73.96994088125643,40.70931023140604],[-73.96955679589718,40.71029607131992],[-73.96964728659597,40.71037491048293],[-73.96994489364965,40.71039973365079],[-73.97000953222535,40.71045393762768],[-73.96997064587552,40.71050807071639],[-73.96973123629762,40.71051282944213],[-73.96963399936436,40.71066539565317],[-73.9697116143561,40.7106900673666],[-73.96979416000543,40.71074050647946],[-73.96975026678484,40.71083287772725],[-73.96968522568399,40.71085357994621],[-73.96934894946885,40.71096061478676],[-73.96936184310246,40.71100001269863],[-73.96958170747001,40.71110848477036],[-73.96969388597714,40.71113727505956],[-73.96976280357148,40.71117261775998],[-73.96970449314469,40.71123658451135],[-73.96956219103232,40.71119709704369],[-73.96933582617385,40.71111323878586],[-73.9692581219477,40.71116242124666],[-73.96923861019853,40.71124610934433],[-73.96945195784743,40.7113939655173],[-73.96942598248597,40.71147272512738],[-73.96930299564828,40.71151202924528],[-73.96918658210198,40.71146763615609],[-73.96911535361028,40.71151189897821],[-73.96886701832443,40.71223244408627],[-73.96880934254597,40.71225605597752],[-73.96886922090013,40.7122661975163],[-73.96883145652386,40.71239276314765],[-73.96894455591723,40.71242654772038],[-73.96888071778645,40.71255980294274],[-73.96888071778643,40.71255980294275],[-73.96135419809458,40.71028106557925],[-73.96094128472818,40.71017556890042],[-73.96037390771919,40.71007408499547],[-73.96010336622663,40.71004301542524],[-73.95979721282218,40.71002725655581],[-73.95916397450833,40.7100393173113],[-73.95854137495041,40.71007084256993],[-73.95435955018478,40.71052132620056],[-73.94051553586083,40.71190924224457],[-73.94048048707555,40.71183725272827],[-73.9403592070385,40.71145694142233],[-73.94029337789787,40.71110578601257],[-73.94003406559995,40.70961168326244],[-73.9397475675118,40.70782381009094],[-73.93939311545729,40.70568560090639],[-73.93932754114132,40.7053584900944],[-73.9392479589554,40.70503466562828],[-73.93910455765595,40.7047117478061],[-73.93891223107289,40.70445872194203],[-73.93870949242108,40.70427616974711],[-73.93846668661834,40.70409096354713],[-73.93827333401484,40.70395658416726],[-73.93804297370346,40.70383402216029],[-73.93780931794507,40.70364980703786],[-73.93761004137941,40.70342905454691],[-73.9374692281439,40.7032543602982],[-73.93713396335252,40.70256891369628],[-73.93687724091511,40.70195159982379],[-73.94042,40.70107700000025],[-73.9411488595606,40.70028115334691]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000173,"geom:area_square_m":1622981.430977,"geom:bbox":"-73.9700095322,40.7002811533,-73.9368772409,40.7125598029","geom:latitude":40.707595,"geom:longitude":-73.950947,"iso:country":"US","lbl:latitude":40.712238,"lbl:longitude":-73.958105,"lbl:max_zoom":18,"mps:latitude":40.706724,"mps:longitude":-73.944008,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["S Side"],"reversegeo:latitude":40.706724,"reversegeo:longitude":-73.944008,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85857853,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"da5e847133d69532d98d778070b10593","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215485,"neighbourhood_id":85857853,"region_id":85688543}],"wof:id":907215485,"wof:lastmodified":1566608557,"wof:name":"South Side","wof:parent_id":85857853,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865603],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215487.geojson b/fixtures/microhoods/907215487.geojson new file mode 100644 index 0000000..7922255 --- /dev/null +++ b/fixtures/microhoods/907215487.geojson @@ -0,0 +1 @@ +{"id":907215487,"type":"Feature","bbox":[-73.969297,40.698188,-73.941931,40.707701],"geometry":{"type":"Polygon","coordinates":[[[-73.941931,40.700725],[-73.95702,40.698974],[-73.961899,40.698188],[-73.962067,40.698869],[-73.961705,40.699925],[-73.96721,40.704256],[-73.967477,40.70395],[-73.969297,40.705088],[-73.969293,40.706935],[-73.969293,40.707093],[-73.968809,40.706965],[-73.968404,40.706835],[-73.968325,40.706818],[-73.968247,40.706811],[-73.968146,40.706821],[-73.968037,40.706838],[-73.967307,40.706971],[-73.964416,40.707498],[-73.963517,40.707677],[-73.963318,40.707701],[-73.963111,40.707693],[-73.9612,40.707498],[-73.957184,40.707108],[-73.956423,40.707049],[-73.954364,40.706883],[-73.95363,40.706847],[-73.953486,40.706834],[-73.953343,40.70681],[-73.953156,40.706744],[-73.95292,40.706655],[-73.952408,40.706464],[-73.952088,40.706348],[-73.951965,40.706295],[-73.95188,40.70625],[-73.951037,40.705791],[-73.950453,40.705482],[-73.949469,40.704956],[-73.948646,40.704484],[-73.947782,40.703996],[-73.946207,40.703112],[-73.943808,40.701779],[-73.941931,40.700725]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000148,"geom:area_square_m":1387542.134059,"geom:bbox":"-73.969297,40.698188,-73.941931,40.707701","geom:latitude":40.703223,"geom:longitude":-73.956907,"iso:country":"US","lbl:latitude":40.704289,"lbl:longitude":-73.960604,"lbl:max_zoom":18,"mps:latitude":40.70303,"mps:longitude":-73.957118,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.70303,"reversegeo:longitude":-73.957118,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[421205765,102191575,85633793,102082361,85977539,85857853,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"bba6097e515f5c6c2fac5cd399787da7","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215487,"neighbourhood_id":85857853,"region_id":85688543}],"wof:id":907215487,"wof:lastmodified":1613773512,"wof:name":"South Williamsburg","wof:parent_id":85857853,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892973],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215491.geojson b/fixtures/microhoods/907215491.geojson new file mode 100644 index 0000000..0e46df2 --- /dev/null +++ b/fixtures/microhoods/907215491.geojson @@ -0,0 +1 @@ +{"id":907215491,"type":"Feature","bbox":[-73.89070766198115,40.64524380722352,-73.86176345461308,40.6666339764711],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.88025037684842,40.65189754127083],[-73.8820411215754,40.65438582862829],[-73.88635976924549,40.65258575224512],[-73.88752396290775,40.65416982921533],[-73.88891039383856,40.65617230675175],[-73.88955742402048,40.65697091468289],[-73.89070766198115,40.65837086385185],[-73.87151181440224,40.6666339764711],[-73.86382521550179,40.6562724597863],[-73.86373462039586,40.65616732652843],[-73.86363168498941,40.65607979996805],[-73.86344791583093,40.65595673634446],[-73.863298836075,40.65587878797734],[-73.863164237678,40.65581358021166],[-73.86176345461308,40.65407321761615],[-73.86585275630037,40.65180716291962],[-73.8680204332334,40.65069459435079],[-73.870875304203,40.64904147332292],[-73.87216332174901,40.64811185431945],[-73.87248937418644,40.64786156924539],[-73.873532082509,40.64692464274525],[-73.873559603464,40.64689901812751],[-73.8793321168056,40.65462201684977],[-73.87963865502321,40.65449909180425],[-73.87676193956314,40.65056095449513],[-73.87394890419274,40.64653654224819],[-73.87507612287473,40.64524380722352],[-73.87584809693614,40.64602816555464],[-73.87655612660251,40.64693809730775],[-73.87758978503392,40.64829639099705],[-73.87911594022408,40.6502863227945],[-73.88025037684842,40.65189754127083]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000295,"geom:area_square_m":2769194.585818,"geom:bbox":"-73.890707662,40.6452438072,-73.8617634546,40.6666339765","geom:latitude":40.656631,"geom:longitude":-73.875413,"iso:country":"US","lbl:latitude":40.648493,"lbl:longitude":-73.881093,"lbl:max_zoom":18,"mps:latitude":40.657865,"mps:longitude":-73.873223,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_preferred":["Spring Creek"],"name:eng_x_variant":["Spring Crk","Spring Creek Basin","Starrett City"],"name:jpn_x_preferred":["スプリング・クリーク"],"reversegeo:latitude":40.657865,"reversegeo:longitude":-73.873223,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85816607,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q22713707"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"677b80dd716b1d355dba7e65f2bae08c","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215491,"neighbourhood_id":85816607,"region_id":85688543}],"wof:id":907215491,"wof:lastmodified":1566608559,"wof:name":"Spring Creek","wof:parent_id":85816607,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865623],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215729.geojson b/fixtures/microhoods/907215729.geojson new file mode 100644 index 0000000..8444913 --- /dev/null +++ b/fixtures/microhoods/907215729.geojson @@ -0,0 +1 @@ +{"id":907215729,"type":"Feature","bbox":[-73.90984821506015,40.815979669003,-73.9054685498235,40.81873073889485],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90811300186984,40.81639701124551],[-73.90845133871096,40.81623803290369],[-73.90867264125534,40.8161357486463],[-73.9089294001247,40.81605475321408],[-73.9091138637364,40.81600811636473],[-73.9093697572717,40.81598192681758],[-73.90960477592466,40.815979669003],[-73.90984821506015,40.81599434674764],[-73.90871406328651,40.81873073889485],[-73.9054685498235,40.81794187658402],[-73.90811300186984,40.81639701124551]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000006,"geom:area_square_m":54886.275112,"geom:bbox":"-73.9098482151,40.815979669,-73.9054685498,40.8187307389","geom:latitude":40.817407,"geom:longitude":-73.908011,"iso:country":"US","lbl:latitude":40.811912,"lbl:longitude":-73.913875,"lbl:max_zoom":18,"mps:latitude":40.817485,"mps:longitude":-73.908162,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Saint Mary's Park Houses","St Mary's Park Houses"],"reversegeo:latitude":40.817485,"reversegeo:longitude":-73.908162,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869443,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"77d1dfcc3aa7a8dcf2c4f8fd89e4866e","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907215729,"neighbourhood_id":85869443,"region_id":85688543}],"wof:id":907215729,"wof:lastmodified":1566608565,"wof:name":"St. Mary's Park Houses","wof:parent_id":85869443,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868031],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215731.geojson b/fixtures/microhoods/907215731.geojson new file mode 100644 index 0000000..d116cc2 --- /dev/null +++ b/fixtures/microhoods/907215731.geojson @@ -0,0 +1 @@ +{"id":907215731,"type":"Feature","bbox":[-74.08643430877456,40.62792368800386,-74.07910448671775,40.63391478895127],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.08521064078121,40.63019964762117],[-74.08211702928634,40.63391478895127],[-74.07910448671775,40.63296519079505],[-74.07936,40.63222500000014],[-74.08303,40.628725],[-74.083577,40.62792700000015],[-74.08357815121799,40.62792368800386],[-74.08639243273508,40.62800012681507],[-74.08641351375833,40.62803104505549],[-74.08642733677716,40.62806728725328],[-74.08643430877456,40.62810939667683],[-74.0864312454401,40.62814873447528],[-74.0864175480082,40.62818102755176],[-74.08621921236073,40.62848231144546],[-74.08619228805601,40.62852101852535],[-74.08616826703278,40.62854775513271],[-74.08613376360738,40.62857075014377],[-74.08609548438069,40.62859098682353],[-74.08587894419142,40.62864118773213],[-74.0858310003947,40.62864838173677],[-74.08576335000652,40.62865725391883],[-74.08569022478618,40.62865859811427],[-74.0856560493089,40.62865752910174],[-74.08534535710301,40.62864737334932],[-74.08501269357262,40.62861955931791],[-74.0849105115063,40.62861843812233],[-74.08480266875786,40.62862366465663],[-74.08469551681051,40.6286300941236],[-74.08461827357984,40.62864080933553],[-74.08451459038201,40.6286661261009],[-74.08442019494858,40.62870356539479],[-74.08438483471942,40.62873377648907],[-74.08435600012774,40.62876704717178],[-74.08412388410831,40.62901066109035],[-74.08400581576387,40.62916286031108],[-74.08391623077307,40.62927311163306],[-74.08439022716138,40.62957460226327],[-74.08515439377699,40.63005113564108],[-74.08518138341272,40.63009139380064],[-74.08519806157389,40.63012796845083],[-74.08520971379663,40.63016797857977],[-74.08521064078121,40.63019964762117]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000018,"geom:area_square_m":170133.114858,"geom:bbox":"-74.0864343088,40.627923688,-74.0791044867,40.633914789","geom:latitude":40.631024,"geom:longitude":-74.082542,"iso:country":"US","lbl:latitude":40.628824,"lbl:longitude":-74.081079,"lbl:max_zoom":18,"mps:latitude":40.631071,"mps:longitude":-74.082598,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Stapleton Hts"],"reversegeo:latitude":40.631071,"reversegeo:longitude":-74.082598,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85852335,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ec4305a8e5f84c4df502ddc05eab4003","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907215731,"neighbourhood_id":85852335,"region_id":85688543}],"wof:id":907215731,"wof:lastmodified":1566608557,"wof:name":"Stapleton Heights","wof:parent_id":85852335,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869703],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215733.geojson b/fixtures/microhoods/907215733.geojson new file mode 100644 index 0000000..b44aa8f --- /dev/null +++ b/fixtures/microhoods/907215733.geojson @@ -0,0 +1 @@ +{"id":907215733,"type":"Feature","bbox":[-73.89117106748294,40.63900385154859,-73.87507612287473,40.65438582862829],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.87758978503392,40.64829639099705],[-73.87655612660251,40.64693809730775],[-73.87584809693614,40.64602816555464],[-73.87507612287473,40.64524380722352],[-73.87679634388367,40.64241120954241],[-73.87850156320785,40.63900385154859],[-73.87855952375337,40.63904982577645],[-73.87865447798265,40.63930521440719],[-73.87937099667593,40.64011874431434],[-73.8798638128148,40.64033847696814],[-73.88016359994795,40.6407410982798],[-73.88022196606978,40.64092059694138],[-73.88046932031972,40.64096179009466],[-73.88073623546346,40.64156595847583],[-73.88029248068591,40.64140491573331],[-73.88002616426286,40.64171811329613],[-73.88006714132443,40.64200344662678],[-73.88029385333998,40.64212006895723],[-73.88036553332911,40.64205672628523],[-73.88053544673275,40.64205948856167],[-73.88067807913613,40.64210743556018],[-73.88139306230622,40.64234733997911],[-73.88156734043692,40.64249118621527],[-73.88224108165672,40.64345349240925],[-73.88214832562576,40.64374372784067],[-73.88302004751287,40.64417919237698],[-73.88341999203048,40.6445238156496],[-73.88369759560314,40.64435198816341],[-73.88432452601207,40.64410228112627],[-73.88455063703381,40.64400863055944],[-73.88480750411145,40.64394630368033],[-73.88557762148922,40.6440409502923],[-73.88574170719633,40.64418192868487],[-73.88600582922207,40.64450289060902],[-73.88600571241912,40.64457125820282],[-73.88624448927217,40.64474582429053],[-73.88673134984879,40.6451319353229],[-73.88679595234551,40.6452394738165],[-73.88720113465536,40.64560217221942],[-73.88722033765475,40.64568157961345],[-73.88727419528726,40.64570622241405],[-73.8872789606891,40.64575951052063],[-73.88732997194607,40.64579846564517],[-73.88735029808218,40.64586073461324],[-73.88743444708437,40.64593668177361],[-73.88740120112716,40.6459638829904],[-73.88736029915236,40.64598718568278],[-73.88738823781266,40.64607864136906],[-73.8874469336019,40.64610398708336],[-73.88746222111708,40.64612539928216],[-73.88746471887161,40.64615847201258],[-73.88753363787424,40.64617993666957],[-73.88763668640422,40.64632545126504],[-73.88766589229492,40.64650492455408],[-73.88763764907321,40.64659437977454],[-73.88767074460121,40.64665665998255],[-73.88765531016621,40.64672278329652],[-73.88772611233233,40.6471430292],[-73.88764430451708,40.64719158147297],[-73.8875675598212,40.6472673712237],[-73.88753168688038,40.64733736554933],[-73.8875162324727,40.64741516069441],[-73.88761566189321,40.64751835758167],[-73.88764108201279,40.64758841181892],[-73.88764613154616,40.64762343086531],[-73.88762302100227,40.64769732819689],[-73.88764072166731,40.64780239000721],[-73.88771211156094,40.64787443463666],[-73.88777082214226,40.6478919986652],[-73.88784153520032,40.64787851392866],[-73.88796538193873,40.64788069976459],[-73.88802108784836,40.64790391398522],[-73.88806961284428,40.64790396122244],[-73.88815394851169,40.64787097466716],[-73.8884346542795,40.64800741559473],[-73.88863638434111,40.64802449261586],[-73.88870351913674,40.64811509934624],[-73.88873825775939,40.64813050704221],[-73.88878187140558,40.64820315219237],[-73.88879178231984,40.64831334890418],[-73.88881304373353,40.64834070256054],[-73.88888029486104,40.64836126683784],[-73.88890716492972,40.64838777284082],[-73.8889306268076,40.64844075274218],[-73.88894519646628,40.64844674606872],[-73.88896496571101,40.64847787836673],[-73.88905476803654,40.64856079392842],[-73.8891160112304,40.64859197658816],[-73.88914998188322,40.64864128982875],[-73.88924677936045,40.64874565360687],[-73.88933353488538,40.64879321148815],[-73.88948840794063,40.64885305346255],[-73.88965036399772,40.64898614058458],[-73.88975604953664,40.64908475886086],[-73.88984125931678,40.64913741577973],[-73.88994247097706,40.64925183791206],[-73.89006780073089,40.64932363564066],[-73.89021782110417,40.64937584324812],[-73.89033529141241,40.64934776900211],[-73.89013701016987,40.64917041211666],[-73.89034734693779,40.64903360577805],[-73.89117106748294,40.64993721794038],[-73.89005593368029,40.65095033292923],[-73.88985608200524,40.65108590863849],[-73.88959131212836,40.65121999595],[-73.88635976924549,40.65258575224512],[-73.8820411215754,40.65438582862829],[-73.88025037684842,40.65189754127083],[-73.87911594022408,40.6502863227945],[-73.87758978503392,40.64829639099705]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000113,"geom:area_square_m":1059286.520746,"geom:bbox":"-73.8911710675,40.6390038515,-73.8750761229,40.6543858286","geom:latitude":40.647517,"geom:longitude":-73.882397,"iso:country":"US","lbl:latitude":40.648906,"lbl:longitude":-73.881964,"lbl:max_zoom":18,"mps:latitude":40.648326,"mps:longitude":-73.882522,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"dup SPring Creek","mz:tier_metro":1,"name:eng_x_variant":["Spring Creek Towers"],"reversegeo:latitude":40.648326,"reversegeo:longitude":-73.882522,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85816607,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"3db54318cb8e275f3c548bb0128b732e","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215733,"neighbourhood_id":85816607,"region_id":85688543}],"wof:id":907215733,"wof:lastmodified":1566608560,"wof:name":"Starrett City","wof:parent_id":85816607,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865621],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215735.geojson b/fixtures/microhoods/907215735.geojson new file mode 100644 index 0000000..1a8a7a7 --- /dev/null +++ b/fixtures/microhoods/907215735.geojson @@ -0,0 +1 @@ +{"id":907215735,"type":"Feature","bbox":[-73.91734239826137,40.76760566173567,-73.89119589704401,40.78424150346872],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.90267682857933,40.7803825811765],[-73.90267677081077,40.7803525720467],[-73.9023430388268,40.78018724480454],[-73.90218303706585,40.78035936715204],[-73.90214967411914,40.78078049395429],[-73.90203565790117,40.78120310196294],[-73.90129127618928,40.78185841927033],[-73.90121754094692,40.78181911242196],[-73.90072847022454,40.781979495284],[-73.90034572668017,40.78206605451125],[-73.90034960780265,40.78216441053002],[-73.89947947752697,40.78216988593729],[-73.89865437844038,40.7819954203208],[-73.89718604766,40.78280720996353],[-73.89711384250623,40.78272307423861],[-73.89705399045003,40.78275635398786],[-73.89702538684737,40.78278799323537],[-73.8969770554258,40.78279913387837],[-73.89693680919498,40.7828215136289],[-73.89690929935816,40.78285247745811],[-73.89687032156341,40.78285848228815],[-73.8968194082322,40.78288679306937],[-73.89678925280833,40.78291444689246],[-73.89675514661018,40.78292252530713],[-73.89671207983274,40.78294647182992],[-73.89668537334383,40.78297144913584],[-73.89664596914923,40.78298323263054],[-73.89659467842748,40.78301175221285],[-73.89657383829028,40.78303869064491],[-73.89653375093988,40.78304562845652],[-73.89648431039487,40.78307311987201],[-73.89645956056663,40.783099544265],[-73.89641893379348,40.78310947059656],[-73.8963637901165,40.78314013294795],[-73.89634131469025,40.78316544072352],[-73.89630945881112,40.78317034200999],[-73.89625542678756,40.78320038781094],[-73.89622533537313,40.78322842190114],[-73.89618107248928,40.78324173011311],[-73.89600297728208,40.78333672680541],[-73.89599058636236,40.78335636082305],[-73.89597146021234,40.78337086315281],[-73.89595122113727,40.78337938817377],[-73.89591974986976,40.78338362947476],[-73.89574317446473,40.78348169737459],[-73.89572966209674,40.7834996214228],[-73.89570828646853,40.78351497588528],[-73.89568579973088,40.7835226441109],[-73.89566219788176,40.7835251847106],[-73.89548449389872,40.78362581265397],[-73.89546985516674,40.78364544440882],[-73.89544735628799,40.78366079897649],[-73.89542374320588,40.78367017388277],[-73.89539452003537,40.78367441708028],[-73.89497050778392,40.78390977565846],[-73.8949569899512,40.78393111629033],[-73.8949367384492,40.78394732634808],[-73.89491087689022,40.78395755331105],[-73.8948794052824,40.78396179483018],[-73.89471407574709,40.78405218232493],[-73.89469380303134,40.78408035111934],[-73.8946634362137,40.78409740659978],[-73.89462522027812,40.78410335081109],[-73.89458477700005,40.78409647996154],[-73.89455221889897,40.78407765918926],[-73.89444200402879,40.78413478596385],[-73.89445429828504,40.78417665008839],[-73.89443513229067,40.78421550963473],[-73.89438677123263,40.78424150346872],[-73.89432496929798,40.78423973956399],[-73.89428006418011,40.78421151156468],[-73.89426438950595,40.78417647600501],[-73.89428244401546,40.78412866172858],[-73.89432968257827,40.78410222548909],[-73.89439148705999,40.78410313685719],[-73.89443190733394,40.78412367263087],[-73.89454100171824,40.78406569230389],[-73.89452643907504,40.78403663694495],[-73.89452873134361,40.784008452228],[-73.89454787875516,40.78398028293513],[-73.89458168018531,40.78396193867165],[-73.89462095843271,40.7839564338594],[-73.89478403798553,40.78386775219647],[-73.89479643340499,40.78384555584556],[-73.89481556198577,40.78382934478729],[-73.89484367158772,40.78381826635503],[-73.89487851410834,40.78381402674787],[-73.89530927247084,40.78357611434306],[-73.89532166654018,40.78355477097289],[-73.8953430422914,40.78353856186773],[-73.89536440727545,40.78353003914862],[-73.89539475352609,40.78352579580544],[-73.89557132620165,40.78343029207817],[-73.8955814680828,40.78341236499445],[-73.89559722093651,40.78339871154007],[-73.89562195925336,40.7833884850804],[-73.8956466839733,40.7833859450031],[-73.89582887869103,40.78328788283202],[-73.89584014671416,40.78326910370381],[-73.89586151959168,40.78325374703606],[-73.8958806350467,40.78324607790796],[-73.8959076097344,40.78324268509291],[-73.89606377738433,40.78315720180517],[-73.89604638627691,40.78315103529246],[-73.89603250791806,40.78314096110222],[-73.89602736158227,40.78313477678103],[-73.8960213327125,40.78312092857457],[-73.8960214540502,40.7831063421167],[-73.8960142092929,40.78310620562357],[-73.89600746163458,40.78310419629715],[-73.89600202279782,40.78310055585334],[-73.8959985470576,40.78309572222626],[-73.8959974525343,40.78309027688626],[-73.8959760942098,40.78309164308381],[-73.89595534959109,40.78308754485847],[-73.89593756934838,40.78307844659944],[-73.89592476824252,40.78306537927306],[-73.89591839682288,40.78304982359845],[-73.89591917705938,40.78303354225994],[-73.89591331586128,40.78303450661425],[-73.89590736767467,40.78303392657684],[-73.89590201653466,40.7830318688514],[-73.89589787781658,40.78302857007412],[-73.89589542746832,40.78302440960089],[-73.8958949472769,40.78301986588151],[-73.89587401394643,40.78302092249999],[-73.89585376213165,40.7830167591386],[-73.89583638318663,40.78300782629529],[-73.89582375760385,40.78299509055106],[-73.89581725153467,40.78297992998026],[-73.89581756896526,40.78296398503525],[-73.89579357075607,40.78294587109674],[-73.89577069982144,40.78294575244795],[-73.89574910750265,40.78294001996176],[-73.89573952790383,40.78293521875959],[-73.89573111278298,40.7829292892989],[-73.89572408961993,40.78292239186673],[-73.89571493581448,40.78290646002818],[-73.89571304958707,40.78288913429822],[-73.89570414332272,40.78288641833086],[-73.89570018381318,40.78288434059261],[-73.89569667217542,40.78288184053212],[-73.89569128998342,40.78287580152869],[-73.89568388888817,40.7828703328312],[-73.8956651184261,40.7828731444563],[-73.89564619898317,40.78287098552604],[-73.89562934206502,40.78286410839904],[-73.8956223188411,40.78285913234561],[-73.89561211057001,40.78284683340429],[-73.89560794943338,40.78283263942145],[-73.89561032182453,40.78281820953838],[-73.89560094567013,40.78281623329774],[-73.89559279752274,40.78281219111072],[-73.89558942977584,40.78280950725448],[-73.8955866429644,40.78280642233843],[-73.89558450293804,40.78280312960286],[-73.8955824394258,40.78279671689988],[-73.89558257621644,40.78279091210364],[-73.89557081050025,40.78279237691987],[-73.89555888836703,40.78279244703302],[-73.89554709424176,40.78279112077039],[-73.89553570949546,40.78278842977244],[-73.8955250057326,40.78278443823801],[-73.89551523831135,40.78277924139264],[-73.89542536848086,40.78271997030176],[-73.89477429053538,40.78225359249423],[-73.89542197971667,40.78171777101628],[-73.89535750567515,40.7816576571334],[-73.89527872466451,40.7817226874621],[-73.89528796173532,40.78172923822648],[-73.89462439338405,40.78226980919071],[-73.8946009177459,40.78225315898132],[-73.89523739867151,40.78173465477342],[-73.89521264204438,40.78171709670753],[-73.89524343107055,40.78169201531747],[-73.89526612251343,40.78170811017552],[-73.89531098163852,40.78167156639662],[-73.8953166783332,40.78167560575161],[-73.89534850467382,40.78164926548435],[-73.89532558010086,40.7816262739109],[-73.89535590038525,40.78159565149595],[-73.89528467911306,40.78154124925479],[-73.89526579423844,40.78156368650608],[-73.8952382240694,40.78158012738051],[-73.89522278732731,40.78160086648181],[-73.89521222004326,40.7816097101905],[-73.89518654280279,40.78162337917894],[-73.89518095259182,40.78166623951377],[-73.89515643903543,40.78170507066047],[-73.89511595076105,40.78173520174575],[-73.89506435796235,40.78175300839313],[-73.89505582522074,40.78176887274461],[-73.89504911070165,40.78177579287627],[-73.89504099268397,40.78178178119801],[-73.89503169146174,40.78178667520785],[-73.8950105742711,40.78179268236686],[-73.89499345089534,40.78183222111448],[-73.8949784653551,40.78184973298281],[-73.89495974872317,40.78186503037895],[-73.89493785627016,40.78187765946968],[-73.89488721681123,40.78189350432425],[-73.89488094945163,40.78191042263548],[-73.89486804732974,40.78192500833575],[-73.89484979994799,40.78193580365316],[-73.89482803104501,40.78194172964602],[-73.8948082182345,40.78198078615777],[-73.89479278350191,40.78199818970929],[-73.89477409893784,40.78201364341394],[-73.89475258461358,40.78202679983581],[-73.89470305419832,40.78204509597804],[-73.8946981734053,40.78206083406874],[-73.89468665156065,40.7820744262844],[-73.89466981457502,40.78208430845602],[-73.89464960001914,40.78208934335967],[-73.89463214646797,40.7821277465406],[-73.8946173995714,40.78214477360319],[-73.89459914633296,40.7821597089665],[-73.89457789093412,40.78217214009182],[-73.89452878879167,40.78218819481315],[-73.89451476403879,40.78221004030355],[-73.89449262200554,40.78222757885703],[-73.8944644844443,40.78223912984372],[-73.89444990512636,40.7822738541843],[-73.89442156618725,40.78230325782908],[-73.89438240477224,40.78232429326701],[-73.89433647972338,40.78233478029873],[-73.89433312566325,40.7823502209901],[-73.89432340912812,40.78236401829168],[-73.89431646448033,40.78236983003722],[-73.89429932841449,40.78237850478572],[-73.8942794301997,40.78238252314644],[-73.89426271446209,40.7824180883155],[-73.89423122236758,40.78244729969678],[-73.89418863063001,40.78246674683547],[-73.89413991187082,40.7824741592585],[-73.89409075405688,40.78246867155744],[-73.89404689641604,40.78245092442737],[-73.89401345936697,40.78242298986389],[-73.89398994178221,40.78242452339438],[-73.89396691184001,40.78242059063755],[-73.89394651704826,40.78241155831721],[-73.89393065918931,40.78239826868366],[-73.89388338815883,40.78240065450149],[-73.893837577582,40.78239147643708],[-73.89379799495997,40.7823716896507],[-73.89376875964294,40.78234335335013],[-73.89375291412807,40.78230941648656],[-73.8937294364471,40.78230188891484],[-73.8937105203687,40.78228891206493],[-73.89369826944089,40.78227192901956],[-73.89363936708125,40.78225246657689],[-73.89359238276968,40.78221918097233],[-73.89356270107572,40.78217588686952],[-73.89354577525789,40.78217190115832],[-73.89353137087879,40.78216405708071],[-73.89352096165231,40.78215315716596],[-73.89351561254601,40.78214031658606],[-73.89346528031392,40.78212638311987],[-73.89344323065443,40.78211469215199],[-73.893424161562,40.78210028760629],[-73.89340864367688,40.78208360053853],[-73.89338999883927,40.78204542963733],[-73.89337206544761,40.78204473086102],[-73.89335536387378,40.78203971696694],[-73.89334803141956,40.78203573937579],[-73.89334164190726,40.78203091265033],[-73.89333636360726,40.78202536390445],[-73.89332966374306,40.78201270003232],[-73.8933286329521,40.78199907300964],[-73.89329113502656,40.78199839558982],[-73.8932557685957,40.78198889845166],[-73.89322603217549,40.78197152107081],[-73.89320486734458,40.78194798245132],[-73.89319436775718,40.7819206110766],[-73.89316202560073,40.78190028084159],[-73.89313414972767,40.78187643307118],[-73.89310800167924,40.78186982622677],[-73.89308341029535,40.78186037704936],[-73.89306090692067,40.78184828970711],[-73.89230750203646,40.78246604157373],[-73.89229702094441,40.78253435048855],[-73.89281494422094,40.78291321498261],[-73.89274917876416,40.78296570668474],[-73.89165459123727,40.7821947815307],[-73.89171690105488,40.78214228602731],[-73.89214162714602,40.78243172650315],[-73.89224191097452,40.78241079906109],[-73.89300986180196,40.78179802356217],[-73.89300068989373,40.78177971976088],[-73.89297902267404,40.78177214214841],[-73.89296180476889,40.78175959679673],[-73.89295092816624,40.78174346225298],[-73.89289812872582,40.78172999207293],[-73.89287468903464,40.78171842587093],[-73.89285412327862,40.78170404358369],[-73.8928370104063,40.78168725008969],[-73.89281495952612,40.78164837507696],[-73.89277875364625,40.78163383504859],[-73.89275063254138,40.78161120968271],[-73.89270499091218,40.78159663719644],[-73.892684896928,40.78158555601995],[-73.89266726492279,40.7815722722433],[-73.89265250853333,40.78155709749749],[-73.89263293172114,40.78152253507572],[-73.8926059084647,40.78151278003235],[-73.8925837559917,40.7814974974281],[-73.8925683704615,40.78147799539286],[-73.8925199035977,40.78146483113645],[-73.89249822767111,40.78145418045652],[-73.89247895370995,40.78144113171837],[-73.89246253659276,40.78142599288203],[-73.89243974613808,40.78139091496121],[-73.89241768315615,40.78138354945618],[-73.89239962874457,40.78137141813304],[-73.89238730474331,40.7813556779515],[-73.89235597147731,40.78134718330888],[-73.89232690321529,40.78133488664734],[-73.89230089184525,40.78131912295759],[-73.89227864597682,40.78130032168022],[-73.89217832400544,40.78137075104872],[-73.89216184201908,40.78135819165569],[-73.89211148854683,40.78139517920908],[-73.8920848045048,40.78137365032207],[-73.89224627026238,40.78125475229792],[-73.89222492781721,40.78124225449716],[-73.89220662197236,40.78122722917315],[-73.89219186413222,40.78121009608527],[-73.892151176244,40.78120370774825],[-73.89211562173415,40.78118736905679],[-73.89210107852159,40.78117601367429],[-73.89208054536552,40.78114855895832],[-73.89207323539787,40.78111747045158],[-73.89205518188596,40.78111416014213],[-73.89203951209853,40.78110658344393],[-73.89202791544278,40.7810955572243],[-73.89202164218729,40.78108227025346],[-73.8919801877667,40.78107573209951],[-73.89194370306882,40.78105940565124],[-73.89191606596962,40.78103502621201],[-73.8919065293491,40.78102059997411],[-73.8918972886944,40.78098919370689],[-73.8919018288797,40.78095719711281],[-73.89191966732156,40.7809280110278],[-73.89187669401886,40.78089465727221],[-73.89183482012547,40.78090973161751],[-73.89178875667773,40.78091352108625],[-73.89174360958951,40.78090560563385],[-73.89172296302652,40.78089748376782],[-73.89170438319921,40.78088686265047],[-73.89168838859474,40.78087403867448],[-73.89166585582747,40.78084326509409],[-73.8916578623514,40.78080857412372],[-73.89166529417943,40.78077381107821],[-73.89164770191009,40.7807611761334],[-73.89163644379344,40.78074489015733],[-73.89163273431069,40.78072671002382],[-73.89163697362136,40.78070859694039],[-73.89160475186416,40.78068300817115],[-73.89158530462484,40.78065081858406],[-73.89158076870419,40.78061556510051],[-73.89158431501356,40.7805979983272],[-73.89160254840421,40.78056540081961],[-73.89163379835782,40.78053912490868],[-73.89167463120208,40.78052205771959],[-73.89168741475613,40.78049643716536],[-73.89169832108583,40.78048355511564],[-73.89172706068787,40.78046219653196],[-73.89173389813381,40.7804275746695],[-73.8917550134551,40.78039646097515],[-73.89177027861851,40.78038327631342],[-73.89180819582592,40.78036340306392],[-73.89185250457938,40.78035384945364],[-73.89184813135286,40.78034334362579],[-73.8918486569557,40.78033233164694],[-73.89185402025134,40.78032209434675],[-73.8918635974204,40.78031382244962],[-73.89187627451903,40.78030847807889],[-73.8918905770446,40.78030668285039],[-73.89190484143832,40.78030864557122],[-73.89191589733834,40.7802727776956],[-73.89194155256436,40.78024152363847],[-73.89197907652239,40.78021820987925],[-73.89202447540029,40.78020531778049],[-73.89202790646907,40.78018889805296],[-73.89203800445415,40.7801741505296],[-73.89204525275274,40.78016788988823],[-73.89206321322803,40.78015840221123],[-73.89208420286442,40.78015372880569],[-73.8921016569329,40.78011490494032],[-73.8921161450379,40.7800975226147],[-73.89213402963897,40.78008207557246],[-73.89215487099443,40.78006894361942],[-73.89220331410863,40.78005085165151],[-73.89221743353905,40.78003437739072],[-73.89222667959727,40.7800274668512],[-73.8922371367338,40.78002163869653],[-73.89224651885672,40.7800177330278],[-73.89226677355451,40.78001258736368],[-73.89226953828597,40.77999365236486],[-73.8922872008595,40.77995945522814],[-73.89230158565871,40.77994460861408],[-73.89233930844024,40.77992164227292],[-73.89238693345644,40.77990742846363],[-73.89238594234938,40.77989888822097],[-73.8923888469189,40.7798906039904],[-73.89239897381023,40.77987880745459],[-73.89240559484624,40.77987385472266],[-73.89241853906964,40.77986745215256],[-73.89243041393865,40.77986486582294],[-73.89244276652367,40.7798649031489],[-73.89244504715478,40.77984206083174],[-73.89244763138566,40.77983118795571],[-73.8924523946693,40.77982074918109],[-73.8924592225978,40.77981099523149],[-73.89246795117391,40.7798021603819],[-73.89247837074987,40.77979445683182],[-73.892490231063,40.77978806960876],[-73.89250324724655,40.77978315212388],[-73.89251710667186,40.77977982248751],[-73.89253484564904,40.77977051958846],[-73.89251281724422,40.77974178684948],[-73.8924961922682,40.77970211269636],[-73.89249710706522,40.7796744125393],[-73.89254394803059,40.7795755962497],[-73.89254018145552,40.77955183427147],[-73.89247748773292,40.77951465264362],[-73.89245856421998,40.77952809347229],[-73.89243701341502,40.77953901181503],[-73.8924134109014,40.77954711606192],[-73.89238838706088,40.77955218976251],[-73.8923626102369,40.77955409740708],[-73.8923367688842,40.77955278804561],[-73.89231155318096,40.77954829664895],[-73.89228763659509,40.77954074317463],[-73.89222623410127,40.77953164392625],[-73.89216393088094,40.77952735316964],[-73.89210137686584,40.77952791566489],[-73.89203922460376,40.77953332554415],[-73.89197812245179,40.77954352637289],[-73.8918179184095,40.77958857362859],[-73.89166859702844,40.77949253940983],[-73.89150718848435,40.7790978671708],[-73.8912965852538,40.77891576446896],[-73.89119589704401,40.77856328788705],[-73.89218330746358,40.77772181348738],[-73.89252259860892,40.77740462898905],[-73.89250271923211,40.77736469480256],[-73.89225365703378,40.77720452353147],[-73.89213229037037,40.77709093638003],[-73.89177229652566,40.77659352115331],[-73.89165215964923,40.77656232354972],[-73.8915305842385,40.77647676928531],[-73.89143415108217,40.77638052314342],[-73.89141605902397,40.77633895623428],[-73.89140128112417,40.77604486488027],[-73.8914801664691,40.77589684238876],[-73.89152987157541,40.775605631198],[-73.89166785647704,40.77548456209765],[-73.89176577778613,40.77535718790516],[-73.8918088345026,40.77521964056435],[-73.89179251028327,40.77508872859762],[-73.89183244904515,40.77488019988873],[-73.89215606356954,40.77444160969784],[-73.89239164375918,40.77419982119807],[-73.90049242580716,40.76760566173567],[-73.90160305064738,40.76777029715587],[-73.90390566712568,40.76813988075974],[-73.90466691422807,40.7685445679334],[-73.90560467795554,40.76871680825199],[-73.91660684792498,40.77040705115934],[-73.91726183601573,40.77078466951929],[-73.91734239826137,40.77084244830798],[-73.9064428052469,40.77973140986767],[-73.90267682857933,40.7803825811765]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000232,"geom:area_square_m":2169186.262395,"geom:bbox":"-73.9173423983,40.7676056617,-73.891195897,40.7842415035","geom:latitude":40.774942,"geom:longitude":-73.902315,"iso:country":"US","lbl:latitude":40.775694,"lbl:longitude":-73.902827,"lbl:max_zoom":18,"mps:latitude":40.774066,"mps:longitude":-73.902281,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_preferred":["Steinway"],"name:und_x_variant":["Ditmars"],"reversegeo:latitude":40.774066,"reversegeo:longitude":-73.902281,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85803821,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"76b7239279185d0c1fe42a70de77be73","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215735,"neighbourhood_id":85803821,"region_id":85688543}],"wof:id":907215735,"wof:lastmodified":1566608561,"wof:name":"Steinway","wof:parent_id":85803821,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85850997],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215737.geojson b/fixtures/microhoods/907215737.geojson new file mode 100644 index 0000000..6ee8381 --- /dev/null +++ b/fixtures/microhoods/907215737.geojson @@ -0,0 +1 @@ +{"id":907215737,"type":"Feature","bbox":[-73.87591016489989,40.83423681237618,-73.86301673134284,40.84129343135135],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.86470221392328,40.84129343135135],[-73.86419189033006,40.8403553957297],[-73.86411706755545,40.8401912241027],[-73.8640545618435,40.84000292850617],[-73.86301673134284,40.83423681237618],[-73.86847062640103,40.83581383872916],[-73.86964549313568,40.83606708771082],[-73.87054824153854,40.83623577674989],[-73.87152337394961,40.8363716668222],[-73.8728140034567,40.83645110962325],[-73.87410607030266,40.83648270581359],[-73.87527722868148,40.83655555235344],[-73.87591016489989,40.83661569074353],[-73.86997400654641,40.83945547112801],[-73.86812620685726,40.84010554899908],[-73.86512688919237,40.84121819910055],[-73.86470221392328,40.84129343135135]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000042,"geom:area_square_m":395940.236706,"geom:bbox":"-73.8759101649,40.8342368124,-73.8630167313,40.8412934314","geom:latitude":40.837693,"geom:longitude":-73.867681,"iso:country":"US","lbl:latitude":40.83412,"lbl:longitude":-73.871207,"lbl:max_zoom":18,"mps:latitude":40.837976,"mps:longitude":-73.866509,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Park Stratton"],"name:fra_x_preferred":["Stratton Park"],"reversegeo:latitude":40.837976,"reversegeo:longitude":-73.866509,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85840627,102191575,907157031,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7ffe40a45af146b67da99997604d4965","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157031,"microhood_id":907215737,"neighbourhood_id":85840627,"region_id":85688543}],"wof:id":907215737,"wof:lastmodified":1566608557,"wof:name":"Stratton Park","wof:parent_id":85840627,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892783],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215739.geojson b/fixtures/microhoods/907215739.geojson new file mode 100644 index 0000000..0b95108 --- /dev/null +++ b/fixtures/microhoods/907215739.geojson @@ -0,0 +1 @@ +{"id":907215739,"type":"Feature","bbox":[-73.94362685381734,40.67960864308608,-73.93140005534735,40.68317151725321],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.93140005534735,40.68011385663094],[-73.93431871217614,40.67979391035843],[-73.93428791357191,40.67960864308608],[-73.94328884671799,40.68009580588785],[-73.94362685381734,40.6817629622857],[-73.93208809438252,40.68317151725321],[-73.93140005534735,40.68011385663094]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000031,"geom:area_square_m":288257.183362,"geom:bbox":"-73.9436268538,40.6796086431,-73.9314000553,40.6831715173","geom:latitude":40.6812,"geom:longitude":-73.93699,"iso:country":"US","lbl:latitude":40.686167,"lbl:longitude":-73.928209,"lbl:max_zoom":18,"mps:latitude":40.681164,"mps:longitude":-73.93699,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":40.681164,"reversegeo:longitude":-73.93699,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85892907,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1fcc10bf40ba6dd25be22fdcf3c3648e","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215739,"neighbourhood_id":85892907,"region_id":85688543}],"wof:id":907215739,"wof:lastmodified":1566608557,"wof:name":"Stuyvesant Heights","wof:parent_id":85892907,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85896933],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215743.geojson b/fixtures/microhoods/907215743.geojson new file mode 100644 index 0000000..19f8048 --- /dev/null +++ b/fixtures/microhoods/907215743.geojson @@ -0,0 +1 @@ +{"id":907215743,"type":"Feature","bbox":[-73.94769273846104,40.82362714924891,-73.93965556398857,40.83161901120868],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9438684314855,40.82362714924891],[-73.94769273846104,40.82527467246399],[-73.94310018373992,40.83161901120868],[-73.940346,40.8304580000002],[-73.94032710308788,40.83035466264866],[-73.94021932520774,40.83025517537469],[-73.94007838490295,40.83013081628223],[-73.93991257277966,40.83001474779593],[-73.93977992308103,40.8298820980973],[-73.93968043580706,40.82974115779251],[-73.93965556398857,40.82960850809388],[-73.9396721452009,40.82945927718293],[-73.93973017944406,40.82929346505964],[-73.94002864126597,40.82889551596376],[-73.9411064200673,40.82739491624803],[-73.94385890131382,40.8236475622618],[-73.9438684314855,40.82362714924891]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000032,"geom:area_square_m":296565.741124,"geom:bbox":"-73.9476927385,40.8236271492,-73.939655564,40.8316190112","geom:latitude":40.827605,"geom:longitude":-73.943507,"iso:country":"US","lbl:latitude":40.827366,"lbl:longitude":-73.943204,"lbl:max_zoom":18,"mps:latitude":40.827592,"mps:longitude":-73.943507,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Sugar Hill"],"name:eng_x_preferred":["Sugar Hill"],"name:eng_x_variant":["Sugar Hl","St. Nicholas Terrace"],"name:eus_x_preferred":["Sugar Hill"],"name:fra_x_preferred":["Sugar Hill"],"name:jpn_x_preferred":["シュガーヒル"],"name:kor_x_preferred":["슈거힐"],"name:nld_x_preferred":["Sugar Hill"],"name:por_x_preferred":["Sugar Hill"],"name:spa_x_preferred":["Sugar Hill"],"name:zho_x_preferred":["糖山"],"reversegeo:latitude":40.827592,"reversegeo:longitude":-73.943507,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869313,102191575,907216433,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1857393"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"557803e559e92a6935ea61259ba91440","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907216433,"microhood_id":907215743,"neighbourhood_id":85869313,"region_id":85688543}],"wof:id":907215743,"wof:lastmodified":1566608563,"wof:name":"Sugar Hill","wof:parent_id":85869313,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869709],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215745.geojson b/fixtures/microhoods/907215745.geojson new file mode 100644 index 0000000..aac365e --- /dev/null +++ b/fixtures/microhoods/907215745.geojson @@ -0,0 +1 @@ +{"id":907215745,"type":"Feature","bbox":[-73.96475138765851,40.75457219826711,-73.95878777342404,40.75954975076039],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96217497095427,40.75457219826711],[-73.96475138765851,40.75565374219133],[-73.96192232679475,40.75954975076039],[-73.95878777342404,40.75821347130985],[-73.95918103220016,40.75785611105238],[-73.96065638180487,40.75592314955023],[-73.96217497095427,40.75457219826711]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000015,"geom:area_square_m":139364.080107,"geom:bbox":"-73.9647513877,40.7545721983,-73.9587877734,40.7595497508","geom:latitude":40.757032,"geom:longitude":-73.961834,"iso:country":"US","lbl:latitude":40.75735,"lbl:longitude":-73.962288,"lbl:max_zoom":18,"mps:latitude":40.757069,"mps:longitude":-73.961789,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:deu_x_preferred":["Sutton Place"],"name:eng_x_preferred":["Sutton Place"],"name:eng_x_variant":["Sutton Pl"],"name:fra_x_preferred":["Sutton Place"],"name:nld_x_preferred":["Sutton Place"],"name:rus_x_preferred":["Саттон-Плейс"],"name:spa_x_preferred":["Sutton Place"],"reversegeo:latitude":40.757069,"reversegeo:longitude":-73.961789,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[907215785,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q194644"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8c9d2fa5596eeedd4a41a6b9fa4a0aa6","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907215745,"neighbourhood_id":907215785,"region_id":85688543}],"wof:id":907215745,"wof:lastmodified":1566608565,"wof:name":"Sutton Place","wof:parent_id":907215785,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865707],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215749.geojson b/fixtures/microhoods/907215749.geojson new file mode 100644 index 0000000..98de415 --- /dev/null +++ b/fixtures/microhoods/907215749.geojson @@ -0,0 +1 @@ +{"id":907215749,"type":"Feature","bbox":[-74.25054840402207,40.49757195487354,-74.23131724604166,40.506743862242],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.23131724604166,40.50179858574268],[-74.23151605730166,40.50172138444798],[-74.23359904119755,40.50091253160146],[-74.23526495949446,40.50060602857477],[-74.23635130661141,40.50012558110022],[-74.23642784022817,40.50007741253447],[-74.23647256988735,40.5001130393443],[-74.23678845619597,40.50000083525655],[-74.2376886264135,40.49917275625367],[-74.2376677035978,40.49912325493401],[-74.23774805247373,40.4991008453765],[-74.23777146009982,40.49918035138812],[-74.23798737378766,40.49916598084108],[-74.23851321635723,40.49889607636898],[-74.23984851244,40.49758301320713],[-74.24121414211194,40.49757195487354],[-74.24176432517919,40.49948943213825],[-74.24442591149263,40.49894154599324],[-74.24526083122102,40.5014156655262],[-74.24964612266481,40.5005788903507],[-74.25054840402207,40.50312715091739],[-74.23312206000057,40.506743862242],[-74.23131724604166,40.50179858574268]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000092,"geom:area_square_m":869005.83532,"geom:bbox":"-74.250548404,40.4975719549,-74.231317246,40.5067438622","geom:latitude":40.502432,"geom:longitude":-74.239965,"iso:country":"US","lbl:latitude":40.496099,"lbl:longitude":-74.246622,"lbl:max_zoom":18,"mps:latitude":40.50192,"mps:longitude":-74.239819,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:eng_x_variant":["Tottenville Bch"],"reversegeo:latitude":40.50192,"reversegeo:longitude":-74.239819,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85852385,102191575,85633793,85977539,421205775,102081779,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c90a22c0e40b1818adcde36677018552","wof:hierarchy":[{"borough_id":421205775,"continent_id":102191575,"country_id":85633793,"county_id":102081779,"locality_id":85977539,"microhood_id":907215749,"neighbourhood_id":85852385,"region_id":85688543}],"wof:id":907215749,"wof:lastmodified":1566608560,"wof:name":"Tottenville Beach","wof:parent_id":85852385,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869735],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215751.geojson b/fixtures/microhoods/907215751.geojson new file mode 100644 index 0000000..dfcf42b --- /dev/null +++ b/fixtures/microhoods/907215751.geojson @@ -0,0 +1 @@ +{"id":907215751,"type":"Feature","bbox":[-73.97327027241064,40.74750240535553,-73.96984432075901,40.74983005901998],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.96984432075901,40.74878032510347],[-73.97080355636575,40.74750240535553],[-73.97327027241064,40.74856667756423],[-73.97230965330056,40.74983005901998],[-73.96984432075901,40.74878032510347]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":38857.870466,"geom:bbox":"-73.9732702724,40.7475024054,-73.9698443208,40.749830059","geom:latitude":40.748669,"geom:longitude":-73.971556,"iso:country":"US","lbl:latitude":40.748848,"lbl:longitude":-73.97108,"lbl:max_zoom":18,"mps:latitude":40.748669,"mps:longitude":-73.971558,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:ceb_x_preferred":["Tudor City Historic District"],"name:deu_x_preferred":["Tudor City"],"name:eus_x_preferred":["Tudor City"],"name:fra_x_preferred":["Tudor City"],"name:ind_x_preferred":["Tudor City"],"name:ita_x_preferred":["Tudor City"],"name:jpn_x_preferred":["テューダー・シティー"],"name:kor_x_preferred":["튜더 시티"],"name:rus_x_preferred":["Тюдор-сити"],"name:spa_x_preferred":["Tudor City"],"reversegeo:latitude":40.748669,"reversegeo:longitude":-73.971558,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85836095,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"4fb2d4c70ff2d9ce20228429bfa3f2ba","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907215751,"neighbourhood_id":85836095,"region_id":85688543}],"wof:id":907215751,"wof:lastmodified":1566608561,"wof:name":"Tudor City","wof:parent_id":85836095,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865703],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215757.geojson b/fixtures/microhoods/907215757.geojson new file mode 100644 index 0000000..1021ade --- /dev/null +++ b/fixtures/microhoods/907215757.geojson @@ -0,0 +1 @@ +{"id":907215757,"type":"Feature","bbox":[-73.9759583119125,40.7479605603553,-73.96217497095427,40.75831242699401],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9759583119125,40.75138365093103],[-73.97093880084064,40.75831242699401],[-73.96475138765851,40.75565374219133],[-73.96217497095427,40.75457219826711],[-73.9622312516561,40.75452213042196],[-73.96313493912845,40.75347962166776],[-73.96562957282376,40.7545043702688],[-73.96650773932781,40.75327620542298],[-73.96414880949747,40.75231000410895],[-73.96791907791587,40.7479605603553],[-73.9759583119125,40.75138365093103]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000072,"geom:area_square_m":676141.960175,"geom:bbox":"-73.9759583119,40.7479605604,-73.962174971,40.758312427","geom:latitude":40.753088,"geom:longitude":-73.969449,"iso:country":"US","lbl:latitude":40.754097,"lbl:longitude":-73.969482,"lbl:max_zoom":18,"mps:latitude":40.753119,"mps:longitude":-73.970127,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:deu_x_preferred":["Turtle Bay"],"name:eng_x_preferred":["Turtle Bay"],"name:fra_x_preferred":["Turtle Bay"],"name:jpn_x_preferred":["タートル・ベイ"],"name:rus_x_preferred":["Тёртл-Бей"],"name:spa_x_preferred":["Turtle Bay"],"name:tur_x_preferred":["Turtle Bay"],"name:zho_x_preferred":["烏龜灣"],"reversegeo:latitude":40.753119,"reversegeo:longitude":-73.970127,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[907215785,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q976477"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e9802a068f11162396866c8b3793491b","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907215757,"neighbourhood_id":907215785,"region_id":85688543}],"wof:id":907215757,"wof:lastmodified":1566608561,"wof:name":"Turtle Bay","wof:parent_id":907215785,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85852839],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215761.geojson b/fixtures/microhoods/907215761.geojson new file mode 100644 index 0000000..803b58f --- /dev/null +++ b/fixtures/microhoods/907215761.geojson @@ -0,0 +1 @@ +{"id":907215761,"type":"Feature","bbox":[-73.99172452403793,40.73441041552141,-73.98894798182472,40.73718817817307],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.99034477603621,40.73718817817307],[-73.98894798182472,40.73658821791152],[-73.98976094200081,40.73545142770067],[-73.9898058227889,40.73537636659559],[-73.98984370604478,40.73528931727294],[-73.98987436364509,40.73520331418894],[-73.98989822245429,40.73509039008758],[-73.9899009924457,40.73497672548474],[-73.98989174700412,40.73485597466053],[-73.98981508468097,40.73441041552141],[-73.9907037823596,40.73478189608048],[-73.99172452403793,40.73524520893186],[-73.99037070012193,40.73709767219646],[-73.99034477603621,40.73718817817307]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000004,"geom:area_square_m":34888.556048,"geom:bbox":"-73.991724524,40.7344104155,-73.9889479818,40.7371881782","geom:latitude":40.735843,"geom:longitude":-73.990318,"iso:country":"US","lbl:latitude":40.736004,"lbl:longitude":-73.990386,"lbl:max_zoom":18,"mps:latitude":40.735908,"mps:longitude":-73.990339,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:ara_x_preferred":["ميدان الإتحاد"],"name:cat_x_preferred":["Union Square"],"name:ceb_x_preferred":["Union Square"],"name:ces_x_preferred":["Union Square"],"name:dan_x_preferred":["Union Square"],"name:deu_x_preferred":["Union Square"],"name:eng_x_preferred":["Union Square"],"name:epo_x_preferred":["Placo Unuiĝo"],"name:fin_x_preferred":["Union Square"],"name:fra_x_preferred":["Union Square"],"name:heb_x_preferred":["כיכר יוניון"],"name:jpn_x_preferred":["ユニオンスクエア"],"name:kor_x_preferred":["유니언 스퀘어"],"name:nld_x_preferred":["Union Square"],"name:oci_x_preferred":["Union Square"],"name:por_x_preferred":["Union Square"],"name:ron_x_preferred":["Union Square"],"name:rus_x_preferred":["Юнион-сквер"],"name:slk_x_preferred":["Union Square"],"name:spa_x_preferred":["Union Square"],"name:swe_x_preferred":["Union Square"],"name:tur_x_preferred":["Union Square"],"name:ukr_x_preferred":["Юніон-Cквер"],"name:zho_x_preferred":["联合广场"],"reversegeo:latitude":40.735908,"reversegeo:longitude":-73.990339,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865705,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q110007"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"dfb3c8ce8857683d4a43c404ca91d1f3","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907215761,"neighbourhood_id":85865705,"region_id":85688543}],"wof:id":907215761,"wof:lastmodified":1566608561,"wof:name":"Union Square","wof:parent_id":85865705,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892965],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215763.geojson b/fixtures/microhoods/907215763.geojson new file mode 100644 index 0000000..cc305c2 --- /dev/null +++ b/fixtures/microhoods/907215763.geojson @@ -0,0 +1 @@ +{"id":907215763,"type":"Feature","bbox":[-73.79352328304527,40.7257760000002,-73.781161,40.73323563732716],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.79352328304527,40.73007774758438],[-73.79095536514977,40.73074098613228],[-73.78888656351212,40.73128719266862],[-73.78757960186603,40.73167969899813],[-73.78297334883726,40.73323563732716],[-73.781161,40.72921300000019],[-73.791745,40.7257760000002],[-73.79352328304527,40.73007774758438]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000049,"geom:area_square_m":457576.179376,"geom:bbox":"-73.793523283,40.725776,-73.781161,40.7332356373","geom:latitude":40.729511,"geom:longitude":-73.787379,"iso:country":"US","lbl:latitude":40.729257,"lbl:longitude":-73.78768,"lbl:max_zoom":18,"mps:latitude":40.729471,"mps:longitude":-73.787379,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:arz_x_preferred":["يوتوبيا"],"name:ast_x_preferred":["Utopía"],"name:aze_x_preferred":["Utopiya"],"name:bel_x_preferred":["Утопія"],"name:ben_x_preferred":["ইউটোপিয়া"],"name:bod_x_preferred":["ཡུལ་ཏོ་པི་ཡ།"],"name:bre_x_preferred":["Utopia"],"name:bul_x_preferred":["Утопия"],"name:cat_x_preferred":["Utopia"],"name:ces_x_preferred":["Utopie"],"name:ckb_x_preferred":["یوتۆپیا"],"name:cym_x_preferred":["Iwtopia"],"name:dan_x_preferred":["Utopi"],"name:deu_x_preferred":["Utopie"],"name:ell_x_preferred":["Ουτοπία"],"name:epo_x_preferred":["Utopio"],"name:est_x_preferred":["Utoopia"],"name:eus_x_preferred":["Utopia"],"name:fas_x_preferred":["آرمان‌شهر"],"name:fin_x_preferred":["Utopia"],"name:fra_x_preferred":["Utopie"],"name:gle_x_preferred":["Útóipe"],"name:glg_x_preferred":["Utopía"],"name:heb_x_preferred":["אוטופיה"],"name:hin_x_preferred":["यूटोपिया"],"name:hun_x_preferred":["Utópia"],"name:hye_x_preferred":["Ուտոպիա"],"name:ido_x_preferred":["Utopio"],"name:ind_x_preferred":["Utopia"],"name:isl_x_preferred":["Útópía"],"name:ita_x_preferred":["Utopia"],"name:jpn_x_preferred":["ユートピア"],"name:kan_x_preferred":["ಯುಟೊಪಿಯ"],"name:kat_x_preferred":["უტოპია"],"name:kaz_x_preferred":["Утопия"],"name:kor_x_preferred":["유토피아"],"name:lat_x_preferred":["Utopia"],"name:lav_x_preferred":["Utopija"],"name:lit_x_preferred":["Utopija"],"name:ltz_x_preferred":["Utopie"],"name:mal_x_preferred":["ഉട്ടോപ്യ"],"name:msa_x_preferred":["Utopia"],"name:nld_x_preferred":["Utopie"],"name:nno_x_preferred":["Utopi"],"name:nor_x_preferred":["Utopi"],"name:oci_x_preferred":["Utopia"],"name:pan_x_preferred":["ਯੂਟੋਪੀਆ"],"name:pol_x_preferred":["Utopia"],"name:por_x_preferred":["Utopia"],"name:ron_x_preferred":["Utopie"],"name:rus_x_preferred":["Утопия"],"name:sco_x_preferred":["Utopia"],"name:slk_x_preferred":["Utópia"],"name:slv_x_preferred":["Utopija"],"name:snd_x_preferred":["يوٽوپيا"],"name:spa_x_preferred":["Utopía"],"name:sqi_x_preferred":["Utopia"],"name:srp_x_preferred":["Утопија"],"name:swe_x_preferred":["Utopi"],"name:tam_x_preferred":["யுட்டோபியா"],"name:tel_x_preferred":["ఆదర్శధామం"],"name:tur_x_preferred":["Ütopya"],"name:ukr_x_preferred":["Утопія"],"name:urd_x_preferred":["یوٹوپیا"],"name:uzb_x_preferred":["Utopiya"],"name:vie_x_preferred":["Utopia"],"name:war_x_preferred":["Utopia"],"name:zho_x_preferred":["乌托邦"],"reversegeo:latitude":40.729471,"reversegeo:longitude":-73.787379,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85820709,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"0c7c9b7c8e7d0455627aae951d6e1098","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215763,"neighbourhood_id":85820709,"region_id":85688543}],"wof:id":907215763,"wof:lastmodified":1566608556,"wof:name":"Utopia","wof:parent_id":85820709,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85853315],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215765.geojson b/fixtures/microhoods/907215765.geojson new file mode 100644 index 0000000..29c0022 --- /dev/null +++ b/fixtures/microhoods/907215765.geojson @@ -0,0 +1 @@ +{"id":907215765,"type":"Feature","bbox":[-73.75763514114745,40.59530197493915,-73.75403748251708,40.59775193983165],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.75403748251708,40.59530197493915],[-73.75741081898364,40.59544047417863],[-73.75752984044777,40.59578673848123],[-73.75755492260959,40.59582001305186],[-73.7575887506526,40.5958409084049],[-73.75761895095125,40.59586012282828],[-73.75763514114745,40.59587094164453],[-73.75711203451483,40.59661117540655],[-73.7570963346213,40.59681602936512],[-73.75712226263535,40.5970878296978],[-73.7571151267918,40.59714640012824],[-73.75708962317965,40.59720084408666],[-73.75705630189866,40.59724632613711],[-73.7570153844076,40.59728626766046],[-73.75690903671277,40.59735875258968],[-73.75678147160976,40.59743137425473],[-73.75630952539477,40.59767386611535],[-73.7562535465647,40.59769785393397],[-73.75619851059609,40.59771810756654],[-73.75612586214447,40.59774078881749],[-73.75605936974853,40.59775087089612],[-73.75599823355218,40.59775193983165],[-73.75594621052456,40.59774950900574],[-73.75588938537132,40.59774403964703],[-73.75582745088118,40.59773359389406],[-73.75574834224282,40.59769981965088],[-73.75563549137857,40.597639472634],[-73.75537928132619,40.5974821664763],[-73.75527316425746,40.59742315761984],[-73.75518587396692,40.59738306098703],[-73.75513122108882,40.59736258099446],[-73.75507217784936,40.59734345984221],[-73.75490254855495,40.59731074347901],[-73.7547242884866,40.59728476585421],[-73.75433201288887,40.59725604933833],[-73.75403748251708,40.59530197493915]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000007,"geom:area_square_m":61092.112779,"geom:bbox":"-73.7576351411,40.5953019749,-73.7540374825,40.5977519398","geom:latitude":40.596383,"geom:longitude":-73.755756,"iso:country":"US","lbl:latitude":40.597446,"lbl:longitude":-73.762587,"lbl:max_zoom":18,"mps:latitude":40.596459,"mps:longitude":-73.755896,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Wave Crst"],"reversegeo:latitude":40.596459,"reversegeo:longitude":-73.755896,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85818909,102191575,907157757,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1bf028eaaf0b412cffbb654abd626659","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"macrohood_id":907157757,"microhood_id":907215765,"neighbourhood_id":85818909,"region_id":85688543}],"wof:id":907215765,"wof:lastmodified":1566608557,"wof:name":"Wavecrest Gardens","wof:parent_id":85818909,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866789],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215767.geojson b/fixtures/microhoods/907215767.geojson new file mode 100644 index 0000000..1ebcf4e --- /dev/null +++ b/fixtures/microhoods/907215767.geojson @@ -0,0 +1 @@ +{"id":907215767,"type":"Feature","bbox":[-73.93667878700712,40.66837184271973,-73.9217204594884,40.67770903431907],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.9217204594884,40.67693423218121],[-73.92261961088184,40.66837184271973],[-73.92560589456635,40.66851428923052],[-73.93667878700712,40.66909515160813],[-73.9359128836033,40.67770903431907],[-73.9217204594884,40.67693423218121]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000122,"geom:area_square_m":1144304.881635,"geom:bbox":"-73.936678787,40.6683718427,-73.9217204595,40.6777090343","geom:latitude":40.673032,"geom:longitude":-73.929238,"iso:country":"US","lbl:latitude":40.673542,"lbl:longitude":-73.921029,"lbl:max_zoom":18,"mps:latitude":40.673025,"mps:longitude":-73.929238,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":40.673025,"reversegeo:longitude":-73.929238,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85867069,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"11e65bd0b66d6698dd5dceac4fef9747","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215767,"neighbourhood_id":85867069,"region_id":85688543}],"wof:id":907215767,"wof:lastmodified":1566608560,"wof:name":"Weeksville","wof:parent_id":85867069,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865593],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215769.geojson b/fixtures/microhoods/907215769.geojson new file mode 100644 index 0000000..827a81d --- /dev/null +++ b/fixtures/microhoods/907215769.geojson @@ -0,0 +1 @@ +{"id":907215769,"type":"Feature","bbox":[-73.98198835203702,40.57117102007916,-73.9672610383488,40.58058155006354],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.98198835203702,40.57931660190357],[-73.97922364333111,40.57958522577117],[-73.97559433907836,40.58000638907081],[-73.97516028452347,40.58004571686106],[-73.97473194595536,40.58006407718173],[-73.97369406522887,40.58003055835132],[-73.972590513066,40.57996635871719],[-73.97177722861808,40.57992217363695],[-73.97132668638814,40.57990761945761],[-73.97086719348731,40.57991733418785],[-73.97040394577748,40.57997573551005],[-73.9672610383488,40.58058155006354],[-73.96908820736375,40.57297828224208],[-73.96945126202385,40.5728572803631],[-73.96921197952126,40.57233537642345],[-73.96924621215584,40.57230407565457],[-73.9692838522803,40.57230147645189],[-73.96955895151763,40.57280858046068],[-73.96975580336907,40.57284692469034],[-73.97108691689407,40.57272724421559],[-73.9713298962635,40.57264381038399],[-73.97137785791335,40.57251075309886],[-73.97114248794523,40.57205063151457],[-73.97115394572518,40.57199963754901],[-73.9711351515381,40.57196015213585],[-73.97118306355733,40.57194189908424],[-73.97122069416352,40.57196278220162],[-73.9714565707673,40.57247946274591],[-73.97160706452411,40.57262822391978],[-73.97293476162713,40.57247460264781],[-73.97334502229825,40.57232121400611],[-73.97323268078632,40.57190586596698],[-73.97321224564612,40.57166842470271],[-73.97324990115146,40.57162668661158],[-73.97329095478173,40.57164235029653],[-73.9733251575623,40.57167627913239],[-73.97334306976649,40.57174057042444],[-73.97344805325694,40.57227210696927],[-73.97528564967101,40.57204983266862],[-73.97547081902783,40.57196900381692],[-73.97540561020007,40.57150453486903],[-73.97540564094241,40.57142104064057],[-73.97545696559195,40.57142105161757],[-73.97548432668442,40.57145497834907],[-73.97550883034111,40.57152449244053],[-73.97551718820385,40.57169431528035],[-73.97567918029279,40.57195598449725],[-73.97592552091535,40.57201865743751],[-73.9770799227453,40.57188751275147],[-73.97730110158659,40.57186238594647],[-73.97766384588164,40.57172938779905],[-73.97756820091217,40.57124666665919],[-73.97759877204506,40.57119103051835],[-73.97767087523846,40.57117102007916],[-73.97804724933891,40.5711997939595],[-73.97807599798243,40.57122957012877],[-73.97771533072503,40.57125191384214],[-73.97769819728074,40.57132496832951],[-73.97780796518657,40.57175620072639],[-73.97845486511184,40.57189220429924],[-73.97910001556907,40.57184069801804],[-73.97952183045098,40.57171407873417],[-73.97984694469412,40.57153931961012],[-73.97986064824681,40.57148192051307],[-73.97980592543578,40.57140363454861],[-73.97972382225467,40.57134621741235],[-73.97946721065122,40.57129920658623],[-73.97944987919769,40.5713032809903],[-73.97943176307899,40.57130262745589],[-73.97941501344562,40.57129732358518],[-73.97940778564607,40.57129310463996],[-73.97939669850385,40.57128215988237],[-73.97939317076822,40.57127576141907],[-73.97939067136888,40.5712620634641],[-73.97944328367626,40.57122092594811],[-73.97958357114787,40.57122616884356],[-73.97975464745687,40.57124968258199],[-73.97995988926652,40.57144019050051],[-73.98000771572246,40.57169850918599],[-73.98010351551915,40.57172722648454],[-73.98061268883313,40.5716623443463],[-73.98059743145237,40.5717554535733],[-73.98198835203702,40.57931660190357]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000101,"geom:area_square_m":946928.559886,"geom:bbox":"-73.981988352,40.5711710201,-73.9672610383,40.5805815501","geom:latitude":40.576184,"geom:longitude":-73.974843,"iso:country":"US","lbl:latitude":40.574578,"lbl:longitude":-73.977327,"lbl:max_zoom":18,"mps:latitude":40.57608,"mps:longitude":-73.974854,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"There's on e on Staten Island","mz:tier_metro":1,"reversegeo:latitude":40.57608,"reversegeo:longitude":-73.974854,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85807547,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"88145af1aa288951a0152f68d9f90f3d","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215769,"neighbourhood_id":85807547,"region_id":85688543}],"wof:id":907215769,"wof:lastmodified":1566608561,"wof:name":"West Brighton","wof:parent_id":85807547,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892971],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215771.geojson b/fixtures/microhoods/907215771.geojson new file mode 100644 index 0000000..e68ae07 --- /dev/null +++ b/fixtures/microhoods/907215771.geojson @@ -0,0 +1 @@ +{"id":907215771,"type":"Feature","bbox":[-73.84650179210374,40.75535237539906,-73.8372960891841,40.76538799020284],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.8393538102695,40.7650570000003],[-73.83862961660317,40.76465011313973],[-73.83848525195545,40.76453408261974],[-73.83832858431242,40.7643973546873],[-73.8381927631861,40.76423066512317],[-73.83806524972655,40.76405880841771],[-73.83749302454314,40.76297757530926],[-73.83739460034029,40.76273105981354],[-73.83734050477626,40.76249443684335],[-73.83730683902118,40.76231682197948],[-73.8372960891841,40.76212566823938],[-73.83731821463776,40.76181141588464],[-73.83736134507473,40.7615717043437],[-73.83743222883555,40.76131877715185],[-73.83764266365382,40.76073672532215],[-73.83852644566089,40.75871616745662],[-73.83922245449266,40.75685393718106],[-73.84141615773368,40.75596206462859],[-73.84318876864194,40.75535237539906],[-73.84551965542838,40.75977544451317],[-73.84650179210374,40.76150822349621],[-73.84541392003746,40.76230051311835],[-73.8452320691587,40.76243460761827],[-73.84509729732338,40.76252344771838],[-73.84474507206755,40.76275563070321],[-73.84467648051546,40.7627521808577],[-73.84428576361256,40.76299855215025],[-73.8441156672296,40.76313619957922],[-73.84391538553486,40.76323189529801],[-73.84377426607976,40.76329932296636],[-73.84359361316315,40.76337054278846],[-73.84366832633636,40.76346990739614],[-73.84361523822156,40.76349671406157],[-73.84368787664128,40.76361272608368],[-73.8436502807902,40.76362779479575],[-73.84357100634551,40.76351513280459],[-73.84352013946437,40.76353690309127],[-73.84343628780482,40.76343256619363],[-73.84306961269667,40.76359256915376],[-73.84298349190726,40.7638318513791],[-73.84305145175342,40.76409735815322],[-73.84304240810849,40.76432131992043],[-73.84298479705532,40.76442359412181],[-73.84272819396499,40.76462854893173],[-73.84211652153552,40.764901034197],[-73.84052635479276,40.76538799020284],[-73.84002247138059,40.76531588656653],[-73.8393538102695,40.7650570000003]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000058,"geom:area_square_m":547147.311699,"geom:bbox":"-73.8465017921,40.7553523754,-73.8372960892,40.7653879902","geom:latitude":40.760621,"geom:longitude":-73.841519,"iso:country":"US","lbl:latitude":40.760765,"lbl:longitude":-73.842335,"lbl:max_zoom":18,"mps:latitude":40.760505,"mps:longitude":-73.841519,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":14,"mz:tier_metro":1,"name:eng_x_variant":["Iron Triangle","Willets Pt","Willetspoint"],"reversegeo:latitude":40.760505,"reversegeo:longitude":-73.841519,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85819703,102191575,85633793,85977539,421205767,102082377,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ffab652e4e47fdf23ab309ba630c7717","wof:hierarchy":[{"borough_id":421205767,"continent_id":102191575,"country_id":85633793,"county_id":102082377,"locality_id":85977539,"microhood_id":907215771,"neighbourhood_id":85819703,"region_id":85688543}],"wof:id":907215771,"wof:lastmodified":1566608560,"wof:name":"Willets Point","wof:parent_id":85819703,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869803],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215773.geojson b/fixtures/microhoods/907215773.geojson new file mode 100644 index 0000000..e52bc5f --- /dev/null +++ b/fixtures/microhoods/907215773.geojson @@ -0,0 +1 @@ +{"id":907215773,"type":"Feature","bbox":[-73.94817808736043,40.65718169687446,-73.93956670501757,40.66423],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.93956670501757,40.65771712783322],[-73.9474218132541,40.65718169687446],[-73.94817808736043,40.66406450634648],[-73.94546300000016,40.66423],[-73.93992600000016,40.6639],[-73.940029,40.66302100000021],[-73.93957,40.65853],[-73.93956670501757,40.65771712783322]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":500191.546926,"geom:bbox":"-73.9481780874,40.6571816969,-73.939566705,40.66423","geom:latitude":40.660783,"geom:longitude":-73.943881,"iso:country":"US","lbl:latitude":40.663086,"lbl:longitude":-73.938241,"lbl:max_zoom":18,"mps:latitude":40.660779,"mps:longitude":-73.943881,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Wingate"],"name:deu_x_preferred":["Wingate"],"name:fra_x_preferred":["Wingate"],"name:heb_x_preferred":["וינגייט"],"name:ind_x_preferred":["Wingate"],"name:ita_x_preferred":["Wingate"],"name:nld_x_preferred":["Wingate"],"name:pol_x_preferred":["Wingate"],"name:por_x_preferred":["Wingate"],"name:srp_x_preferred":["Вингејт"],"name:vol_x_preferred":["Wingate"],"reversegeo:latitude":40.660779,"reversegeo:longitude":-73.943881,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85892955,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f4ba4ea68f0651fc99116f57a6502a3c","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907215773,"neighbourhood_id":85892955,"region_id":85688543}],"wof:id":907215773,"wof:lastmodified":1566608564,"wof:name":"Wingate","wof:parent_id":85892955,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85865591],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215775.geojson b/fixtures/microhoods/907215775.geojson new file mode 100644 index 0000000..1783545 --- /dev/null +++ b/fixtures/microhoods/907215775.geojson @@ -0,0 +1 @@ +{"id":907215775,"type":"Feature","bbox":[-73.91762500000014,40.8109170000003,-73.8889895438766,40.82421743789578],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.89884020083993,40.82110590960688],[-73.8889895438766,40.82105705236636],[-73.890422,40.81998400000018],[-73.896411,40.81421800000022],[-73.89795496545923,40.81297045195633],[-73.89795800000013,40.81296800000018],[-73.898448,40.81317700000024],[-73.900905,40.8114290000002],[-73.90271800000015,40.8109170000003],[-73.90446600000018,40.81228200000027],[-73.91094800000013,40.81362100000021],[-73.91495400000012,40.8149370000002],[-73.91762500000014,40.81605500000016],[-73.91762315427302,40.81605607613845],[-73.916764,40.8165570000003],[-73.91403100000014,40.8189560000002],[-73.911745,40.82210700000014],[-73.90978479071293,40.82251966948166],[-73.90940952111106,40.82286886067602],[-73.90878829547907,40.82421743789578],[-73.89884658249514,40.82179695782763],[-73.89884020083993,40.82110590960688]],[[-73.90811300186984,40.81639701124551],[-73.9054685498235,40.81794187658402],[-73.90871406328651,40.81873073889485],[-73.90984821506015,40.81599434674764],[-73.90960477592466,40.815979669003],[-73.9093697572717,40.81598192681758],[-73.9091138637364,40.81600811636473],[-73.9089294001247,40.81605475321408],[-73.90867264125534,40.8161357486463],[-73.90845133871096,40.81623803290369],[-73.90811300186984,40.81639701124551]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000195,"geom:area_square_m":1820133.051134,"geom:bbox":"-73.917625,40.810917,-73.8889895439,40.8242174379","geom:latitude":40.817718,"geom:longitude":-73.903886,"iso:country":"US","lbl:latitude":40.815425,"lbl:longitude":-73.904555,"lbl:max_zoom":18,"mps:latitude":40.816925,"mps:longitude":-73.900644,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:als_x_preferred":["Woodstock-Festival"],"name:ara_x_preferred":["وودستوك"],"name:aze_x_preferred":["Vudstok festivalı"],"name:bel_x_preferred":["Вудстак"],"name:bul_x_preferred":["Удсток"],"name:dan_x_preferred":["Woodstockfestivalen"],"name:deu_x_preferred":["Woodstock-Festival"],"name:ell_x_preferred":["Φεστιβάλ Γούντστοκ"],"name:eng_x_preferred":["Woodstock"],"name:epo_x_preferred":["Woodstock-festivalo"],"name:est_x_preferred":["Woodstocki festival"],"name:eus_x_preferred":["Woodstock"],"name:fas_x_preferred":["وودستاک"],"name:fin_x_preferred":["Woodstock"],"name:fry_x_preferred":["Woodstock"],"name:gle_x_preferred":["Féile Woodstock"],"name:heb_x_preferred":["פסטיבל וודסטוק"],"name:hrv_x_preferred":["Woodstock"],"name:hun_x_preferred":["Woodstocki fesztivál"],"name:hye_x_preferred":["Վուդստոք"],"name:ind_x_preferred":["Festival Woodstock"],"name:isl_x_preferred":["Woodstock"],"name:jpn_x_preferred":["ウッドストック・フェスティバル"],"name:kat_x_preferred":["ვუდსტოკის ფესტივალი"],"name:kor_x_preferred":["우드스톡 페스티벌"],"name:lav_x_preferred":["Vudstokas festivāls"],"name:lit_x_preferred":["Vudstoko festivalis"],"name:mkd_x_preferred":["Вудсток"],"name:nld_x_preferred":["Woodstock"],"name:nno_x_preferred":["Woodstockfestivalen"],"name:nor_x_preferred":["Woodstockfestivalen"],"name:roh_x_preferred":["Woodstock"],"name:rus_x_preferred":["Вудсток"],"name:slv_x_preferred":["Woodstock"],"name:srp_x_preferred":["Вудсток"],"name:swe_x_preferred":["Woodstockfestivalen"],"name:tha_x_preferred":["เทศกาลวูดสต็อก"],"name:tur_x_preferred":["Woodstock Festivali"],"name:ukr_x_preferred":["Вудсток"],"name:und_x_variant":["Oak Ridge Lake"],"name:zho_x_preferred":["胡士托音樂節"],"reversegeo:latitude":40.816925,"reversegeo:longitude":-73.900644,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869443,102191575,907157033,85633793,85977539,421205773,102083063,85688543],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"563775e70ca206166e5f95b304964df6","wof:hierarchy":[{"borough_id":421205773,"continent_id":102191575,"country_id":85633793,"county_id":102083063,"locality_id":85977539,"macrohood_id":907157033,"microhood_id":907215775,"neighbourhood_id":85869443,"region_id":85688543}],"wof:id":907215775,"wof:lastmodified":1566608563,"wof:name":"Woodstock","wof:parent_id":85869443,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85892797],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907215779.geojson b/fixtures/microhoods/907215779.geojson new file mode 100644 index 0000000..49a88e6 --- /dev/null +++ b/fixtures/microhoods/907215779.geojson @@ -0,0 +1 @@ +{"id":907215779,"type":"Feature","bbox":[-73.95735635045575,40.77008713513425,-73.94200266722278,40.78523226169593],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.94745259739419,40.77008713513425],[-73.95735635045575,40.77427001644171],[-73.94941469080209,40.78523226169593],[-73.944023,40.7829600000003],[-73.94359245462255,40.78274790820657],[-73.9436482353902,40.78265616133345],[-73.94387075988716,40.7812730265717],[-73.94345932494096,40.78004827565324],[-73.94321386265224,40.7793175886602],[-73.94300423950469,40.77963949547429],[-73.9427160054509,40.77954416947617],[-73.94271237476218,40.77921485694],[-73.94253556320861,40.77909095606253],[-73.94289340818803,40.77861409324628],[-73.94243848174503,40.77731523576604],[-73.9422449195226,40.77710408894725],[-73.94207418803889,40.77691784697714],[-73.94200266722278,40.77618531738265],[-73.942620205199,40.77518087157647],[-73.94285645694552,40.77479660034919],[-73.94293043781397,40.77467626803601],[-73.94587089958821,40.771692257933],[-73.94661869015059,40.77093339256956],[-73.94745259739419,40.77008713513425]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000135,"geom:area_square_m":1263176.942237,"geom:bbox":"-73.9573563505,40.7700871351,-73.9420026672,40.7852322617","geom:latitude":40.777297,"geom:longitude":-73.948834,"iso:country":"US","lbl:latitude":40.777862,"lbl:longitude":-73.949087,"lbl:max_zoom":18,"mps:latitude":40.776734,"mps:longitude":-73.948719,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":14,"mz:tier_metro":1,"name:deu_x_preferred":["Yorkville"],"name:eng_x_preferred":["York Ville"],"name:eng_x_variant":["Yorkville"],"name:fra_x_preferred":["Yorkville"],"name:ind_x_preferred":["Yorkville"],"name:jpn_x_preferred":["ヨークヴィル"],"name:kor_x_preferred":["요크빌"],"name:ltz_x_preferred":["Yorkville"],"name:nld_x_preferred":["Yorkville"],"name:por_x_preferred":["Yorkville"],"name:rus_x_preferred":["Йорквилл"],"name:spa_x_preferred":["Yorkville"],"name:zho_x_preferred":["約克維爾"],"reversegeo:latitude":40.776734,"reversegeo:longitude":-73.948719,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865691,102191575,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q1189975"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"d9982e95032f2c95b78f77e7fa83d105","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"microhood_id":907215779,"neighbourhood_id":85865691,"region_id":85688543}],"wof:id":907215779,"wof:lastmodified":1566608560,"wof:name":"Yorkville","wof:parent_id":85865691,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85869829,85865695],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907216453.geojson b/fixtures/microhoods/907216453.geojson new file mode 100644 index 0000000..298ddb9 --- /dev/null +++ b/fixtures/microhoods/907216453.geojson @@ -0,0 +1 @@ +{"id":907216453,"type":"Feature","bbox":[-73.99072364248579,40.75355400000026,-73.97905700000018,40.76416675054455],"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.97905700000018,40.76174720539009],[-73.98504300000018,40.75355400000026],[-73.99072364248579,40.75595000563767],[-73.98472631047949,40.76416675054455],[-73.97905700000018,40.76174720539009]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000061,"geom:area_square_m":571240.537554,"geom:bbox":"-73.9907236425,40.753554,-73.979057,40.7641667505","geom:latitude":40.758856,"geom:longitude":-73.984888,"iso:country":"US","lbl:latitude":40.758405,"lbl:longitude":-73.98543,"lbl:max_zoom":18,"mps:latitude":40.758855,"mps:longitude":-73.984888,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:bel_x_preferred":["Тэатральны квартал"],"name:deu_x_preferred":["Manhattan/Times Square"],"name:eng_x_preferred":["Theater District"],"name:eng_x_variant":["Theatre District"],"name:fra_x_preferred":["Theater District"],"name:heb_x_preferred":["מנהטן/מתחם התיאטראות"],"name:ita_x_preferred":["Theater District"],"name:jpn_x_preferred":["シアター・ディストリクト"],"name:por_x_preferred":["Theatre District"],"name:ron_x_preferred":["Theatre District"],"name:rus_x_preferred":["Театральный квартал"],"name:spa_x_preferred":["Theater District"],"name:vol_x_preferred":["Sunnyside"],"name:zho_x_preferred":["劇院區域"],"reversegeo:latitude":40.758855,"reversegeo:longitude":-73.984888,"src:geom":"pedia","src:lbl_centroid":"mz","wof:belongsto":[85882233,102191575,907215781,85633793,85977539,421205771,102081863,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2662015"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7b2ad53839b38690897d707797ef05f8","wof:hierarchy":[{"borough_id":421205771,"continent_id":102191575,"country_id":85633793,"county_id":102081863,"locality_id":85977539,"macrohood_id":907215781,"microhood_id":907216453,"neighbourhood_id":85882233,"region_id":85688543}],"wof:id":907216453,"wof:lastmodified":1566608542,"wof:name":"Theatre District","wof:parent_id":85882233,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867077],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/907217995.geojson b/fixtures/microhoods/907217995.geojson new file mode 100644 index 0000000..976d83a --- /dev/null +++ b/fixtures/microhoods/907217995.geojson @@ -0,0 +1 @@ +{"id":907217995,"type":"Feature","bbox":[-74.01402247678044,40.65295600000018,-73.98304052598017,40.67170500000019],"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.00214,40.65295600000018],[-74.01384575645204,40.65991259903129],[-74.01366273992619,40.6600287806369],[-74.01183862056564,40.65891283727483],[-74.01110750410308,40.65970627458073],[-74.01402247678044,40.66152974744019],[-74.01315554938826,40.66198159772609],[-74.01265358811509,40.66198165403767],[-74.00859956968303,40.6595209230983],[-74.00745858163899,40.66055847620999],[-74.01037201297241,40.66239888023259],[-74.010463317245,40.66264211979016],[-74.00955074142058,40.66326769413057],[-74.00896445777485,40.6633382345622],[-74.0086837159131,40.66337201284033],[-74.00616141136334,40.66184506899057],[-74.00569143021326,40.6622697857558],[-74.00568594756913,40.66227474036052],[-74.00428358250133,40.66144489410144],[-74.00414624892224,40.66156163568139],[-74.00495172594647,40.66204178153433],[-74.00512364857585,40.6621445583089],[-74.0051410196299,40.66218444025919],[-74.00526589544616,40.66227016556562],[-74.00562039670659,40.66249392634675],[-74.0057848663663,40.66258252945446],[-74.00582714339056,40.66259010896826],[-74.0058585741451,40.66257525534356],[-74.00622698247926,40.66278782786101],[-74.00592360503049,40.66310825073911],[-74.00545775556651,40.66286136665859],[-74.00422549172735,40.66217696122081],[-74.00380815470899,40.66190794572817],[-74.0034880110067,40.66224055612854],[-74.00423930501739,40.66265796345969],[-74.0043655675606,40.66273567665552],[-74.00438799951004,40.66271432134193],[-74.00455498488724,40.66281637291267],[-74.0046015847354,40.66276772310291],[-74.00458994364882,40.66273373280542],[-74.00460574305602,40.66271888517176],[-74.0045436785081,40.66268014611803],[-74.00473298121788,40.6624965039966],[-74.00535812864274,40.66286912973167],[-74.00515599719324,40.66304741456388],[-74.00506160816846,40.66299204120213],[-74.00497157758633,40.66306821324206],[-74.00519233775097,40.66320155309659],[-74.00524384971578,40.66315519090431],[-74.00523151018437,40.6631184696637],[-74.00524863034876,40.6631056204914],[-74.00518629798096,40.66306960144787],[-74.00538014413937,40.66288392645285],[-74.00599748682708,40.66325861082846],[-74.00579501836197,40.66343615129343],[-74.00569963747787,40.66337678866095],[-74.0056134868177,40.66345839025471],[-74.00590835965352,40.6636382836301],[-74.00630567322521,40.66386341177633],[-74.00672835016063,40.66411875492333],[-74.00772133506705,40.66471863301977],[-74.00772545192979,40.66474271539145],[-74.00767434594513,40.66479110926577],[-74.00763877534811,40.66479598033106],[-74.00730516126843,40.66459759075256],[-74.00725742631742,40.66464295951084],[-74.00726610280039,40.66467304882934],[-74.00725283559048,40.66469032364307],[-74.00731878365987,40.6647298607577],[-74.00712532646752,40.66491521847437],[-74.00652469600145,40.66454722766304],[-74.00670685940639,40.66436298985671],[-74.0067991243028,40.66441830653356],[-74.0068821530732,40.66434037294302],[-74.00662937859578,40.66418793012447],[-74.00653579559385,40.66425740363619],[-74.00664155766744,40.66432021135606],[-74.00644979980794,40.664506206799],[-74.00584157632497,40.66413802067456],[-74.00602870773491,40.66395913653516],[-74.00611934710186,40.66401056669319],[-74.00620306585378,40.66393016821043],[-74.00604608518992,40.66384000563561],[-74.00599262641799,40.66389076321389],[-74.005921387034,40.66384959857589],[-74.00589826436895,40.66387569107482],[-74.00580999359886,40.66387400202656],[-74.00575781045501,40.6639227568017],[-74.005779742958,40.66398776309303],[-74.0057480923224,40.66401194231734],[-74.00582327521116,40.66405456385318],[-74.00575753791415,40.66411439291196],[-74.00589272459429,40.66419031812323],[-74.00574908832141,40.66432650988956],[-74.00574145525135,40.66438182951614],[-74.00577046133877,40.664397495281],[-74.0057446303361,40.66441763997],[-74.00583499448774,40.66446958031828],[-74.00580832976837,40.66447828424332],[-74.00584924770628,40.6645032986197],[-74.0058221184709,40.66452876005954],[-74.00564140754494,40.66453149189586],[-74.00565025959594,40.66390033784381],[-74.00429508002972,40.66309558072486],[-74.00426622473468,40.66311526298809],[-74.00362862508574,40.66273484753457],[-74.00351172988955,40.66286510724319],[-74.00340348595645,40.66298572659841],[-74.00459238636772,40.66373519983299],[-74.00432294897399,40.6640523199754],[-74.0051542214286,40.66457680979622],[-74.00528132177351,40.66465700352397],[-74.00519824046111,40.66473779368644],[-74.00486193792675,40.66506482193839],[-74.00113519509668,40.66290172405517],[-74.00094424265612,40.66307639198391],[-74.00083401108445,40.66300644269172],[-74.00049413361162,40.6633142270933],[-74.00053780692812,40.66333347770692],[-74.00003024177393,40.6638213693872],[-74.00009913667104,40.6638563455062],[-73.99953152609936,40.66439748593699],[-74.00170685986119,40.66572125305354],[-74.00287020976621,40.66642919239429],[-74.00292463516409,40.66646231216344],[-74.00224030991384,40.66679383514513],[-74.00213129539947,40.6667889963022],[-74.001619500211,40.66676627917465],[-74.00120611348322,40.66701810720294],[-74.0014125132812,40.66713899709624],[-74.00146470932725,40.66716956870761],[-74.00068774868787,40.66754595189872],[-74.00060092293958,40.66753418954283],[-74.00011210363162,40.66746796878613],[-73.99998149339123,40.66745027490865],[-73.9998716944023,40.66756435030774],[-73.99985924124451,40.66757728848644],[-73.999026009984,40.66844297212695],[-73.99905372182697,40.6688517992133],[-73.99894520195369,40.66897377448507],[-73.99902633264189,40.66900788840071],[-73.99905044103014,40.66892168779952],[-73.99903627811003,40.66891715219931],[-73.99904324792305,40.66888022073515],[-73.99906368149801,40.66887346818923],[-73.99917988320556,40.66829663988754],[-73.9992404910505,40.6683062865599],[-73.9990793532799,40.66903827186161],[-73.99890195713412,40.66923785677749],[-73.99865580691623,40.66951479554807],[-73.99873688841454,40.6695572019422],[-73.99891160167894,40.66964857863952],[-73.99891684838761,40.66980456321773],[-73.99889207315206,40.66993843617487],[-73.99874991491649,40.67053337321992],[-73.99871255131346,40.67068973626809],[-73.99855824468406,40.67133550166994],[-73.99876941058928,40.67160204710509],[-73.99866,40.67170500000019],[-73.99827,40.67115300000017],[-73.997092,40.669267],[-73.995193,40.66702500000021],[-73.99280115255208,40.66552651695199],[-73.98954526212171,40.66341309371878],[-73.98910014509039,40.66306048774685],[-73.98868263042449,40.66265054748157],[-73.98818432811115,40.66213197200197],[-73.98806202300953,40.66197907080472],[-73.98796485898526,40.66183596282399],[-73.98778517001207,40.66151743269309],[-73.98761596975568,40.66121926552569],[-73.98740313186403,40.66088271576402],[-73.98695717892532,40.66030371450692],[-73.98656490123787,40.65985070613815],[-73.98631394584399,40.65960786014705],[-73.98600293542476,40.65935243571449],[-73.98571490877679,40.65916196297158],[-73.985288328853,40.65892320400166],[-73.98304052598017,40.65760104832696],[-73.98402894386751,40.65659251346505],[-73.988428,40.65925000000012],[-73.99019,40.65760100000011],[-73.99238,40.65889900000021],[-73.992964,40.658337],[-73.995169,40.65966900000015],[-74.00214,40.65295600000018]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000199,"geom:area_square_m":1865211.660817,"geom:bbox":"-74.0140224768,40.652956,-73.983040526,40.671705","geom:latitude":40.66099,"geom:longitude":-73.99923,"iso:country":"US","lbl:latitude":40.659034,"lbl:longitude":-74.001566,"lbl:max_zoom":18,"mps:latitude":40.659034,"mps:longitude":-74.001566,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Greenwood Heights"],"name:ita_x_preferred":["Greenwood Heights"],"name:jpn_x_preferred":["グリーンウッド・ハイツ"],"name:spa_x_preferred":["Greenwood Heights"],"name:zho_x_preferred":["格林伍德高地"],"reversegeo:latitude":40.659034,"reversegeo:longitude":-74.001566,"src:geom":"mz","wof:belongsto":[85851575,102191575,85633793,85977539,421205765,102082361,85688543],"wof:breaches":[],"wof:concordances":{"wd:id":"Q5605028"},"wof:controlled":["wof:parent_id","wof:hierarchy"],"wof:country":"US","wof:geomhash":"6caf66828451611ea921140b473d4043","wof:hierarchy":[{"borough_id":421205765,"continent_id":102191575,"country_id":85633793,"county_id":102082361,"locality_id":85977539,"microhood_id":907217995,"neighbourhood_id":85851575,"region_id":85688543}],"wof:id":907217995,"wof:lastmodified":1566608542,"wof:name":"Greenwood Heights","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957643097.geojson b/fixtures/microhoods/957643097.geojson new file mode 100644 index 0000000..cac3719 --- /dev/null +++ b/fixtures/microhoods/957643097.geojson @@ -0,0 +1 @@ +{"id":957643097,"type":"Feature","bbox":[-87.72104067552648,41.8739537452219,-87.71088600284835,41.88814056324068],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72070871233625,41.87395885345435],[-87.72104067552648,41.88810866600207],[-87.71594191582734,41.88814056324068],[-87.71592049246725,41.88501455814377],[-87.71088600284835,41.8846636704906],[-87.71089807407556,41.88091718649125],[-87.71100553628,41.8809168423211],[-87.7112893020672,41.8809159329435],[-87.7116416674939,41.880909718049],[-87.7121544959166,41.8809044799084],[-87.7126192709657,41.8808976902367],[-87.7130955732063,41.8808912348168],[-87.7133705814445,41.8808872587155],[-87.7136148084318,41.8808844103152],[-87.7139223090818,41.8808808231025],[-87.7143375732956,41.8808750763846],[-87.7147640752006,41.8808692240405],[-87.7149753244228,41.8808655762847],[-87.7152256296412,41.8808612536129],[-87.7154934874852,41.8808599971243],[-87.715499792315,41.8808611646928],[-87.7156528288035,41.8808592436673],[-87.7158939901594,41.8808555874291],[-87.7158894763648,41.8807089240013],[-87.7158832647701,41.8805302400631],[-87.7158799019683,41.8803836791384],[-87.7158703073842,41.8801216067413],[-87.7158656472084,41.8799648302268],[-87.7158617064575,41.8798401652814],[-87.7158509552003,41.8795327519293],[-87.7158453800974,41.8793733357257],[-87.7158357397178,41.8790740510223],[-87.7158291297775,41.8788719290048],[-87.7158222879517,41.8786557551788],[-87.7158159184604,41.8784591778219],[-87.7158094182074,41.8782660023492],[-87.7158036130256,41.8780934679098],[-87.7157972137778,41.8778961768681],[-87.715786155523,41.8775878284375],[-87.7157793567106,41.8773786526289],[-87.7157738543925,41.877211555051],[-87.7157681623439,41.8770386896816],[-87.7157618205784,41.876850701918],[-87.7157592729678,41.8767777463343],[-87.7157552580125,41.8766627678455],[-87.7157494510773,41.8764954745894],[-87.7157426911073,41.8762975778158],[-87.7157351310002,41.8760759666858],[-87.7157232388513,41.8756788884903],[-87.7157179870144,41.8755035333866],[-87.7157146064262,41.8753864452101],[-87.7157100290972,41.8752279129616],[-87.7157063320866,41.8751208099542],[-87.7157040573891,41.8750549107348],[-87.7156962954303,41.8748390336789],[-87.7156875314494,41.8746014990869],[-87.7156697406437,41.8740389966204],[-87.7181502751844,41.8739977217102],[-87.7197830233707,41.8739537452219],[-87.72070871233625,41.87395885345435]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000091,"geom:area_square_m":836061.224293,"geom:bbox":"-87.7210406755,41.8739537452,-87.7108860028,41.8881405632","geom:latitude":41.881465,"geom:longitude":-87.717291,"iso:country":"US","lbl:latitude":41.882806,"lbl:longitude":-87.717896,"lbl:max_zoom":18,"mps:latitude":41.882806,"mps:longitude":-87.717896,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":1,"mz:max_zoom":14,"mz:min_zoom":13,"name:ceb_x_preferred":["Garfield Park"],"name:swe_x_preferred":["Garfield Park"],"reversegeo:latitude":41.882806,"reversegeo:longitude":-87.717896,"src:geom":"mz","wof:belongsto":[420518777,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"fe2473c214224fb75279e059b2722111","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957643097,"neighbourhood_id":420518777,"region_id":85688697}],"wof:id":957643097,"wof:lastmodified":1566624175,"wof:name":"Garfield Park","wof:parent_id":420518777,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783481,420518857],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957665791.geojson b/fixtures/microhoods/957665791.geojson new file mode 100644 index 0000000..398f107 --- /dev/null +++ b/fixtures/microhoods/957665791.geojson @@ -0,0 +1 @@ +{"id":957665791,"type":"Feature","bbox":[-87.5887629873685,41.8024848761027,-87.5836720182234,41.8073903256256],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.5848892917812,41.8025155854611],[-87.5873241277829,41.8024848761027],[-87.5873410724785,41.8025477524168],[-87.5873945263688,41.8027360824863],[-87.5874462002591,41.802916634665],[-87.5875462733576,41.8032502474713],[-87.5876303428452,41.8035375703911],[-87.5877576356256,41.8039468269936],[-87.5878461992289,41.8042168073524],[-87.5878586612955,41.8042491609118],[-87.5879417295114,41.804464878632],[-87.58805594068,41.8047373029786],[-87.5882114812049,41.8050831576798],[-87.5882859276487,41.80523915865],[-87.5883971129666,41.8054722372605],[-87.5884862186013,41.8056420273636],[-87.5885480177215,41.8057582600811],[-87.5887076996191,41.8060585897852],[-87.5887629873685,41.8061564075244],[-87.5885355713138,41.8062577510616],[-87.5882637508026,41.8064187786999],[-87.5880492489985,41.8065457643824],[-87.5879686846475,41.8064776776039],[-87.5877195852344,41.8066465353427],[-87.5871232647305,41.8070507367659],[-87.587123262183,41.8070509562913],[-87.5869023557227,41.8071993136996],[-87.5866179331801,41.8073903256256],[-87.5865878887796,41.8073609556629],[-87.5865330932039,41.8072911967381],[-87.5864421324316,41.8071550930746],[-87.5863278311222,41.8069948525958],[-87.5861968337416,41.8068226484153],[-87.5860819258077,41.8066926179279],[-87.5859336128231,41.8065333907139],[-87.5858299589964,41.8064323855661],[-87.5858118740794,41.8063915977285],[-87.5858007642589,41.8063502515388],[-87.5857963181505,41.806344596842],[-87.5857750660332,41.8063175372035],[-87.5856375572809,41.8061977053692],[-87.5855124338415,41.8060947215184],[-87.5853250785243,41.8059592517358],[-87.585123142752,41.8058223419823],[-87.5848893982927,41.8056704878694],[-87.584731751959,41.8055699257582],[-87.5847128594545,41.8055578513184],[-87.5845619118826,41.8054613804349],[-87.5844557490524,41.8053934810805],[-87.5843273595073,41.8053095857694],[-87.5843189858136,41.8053041139701],[-87.5842169825259,41.8052396375567],[-87.5841481459201,41.805197039854],[-87.5840879183647,41.8051593616671],[-87.5840234336248,41.805115171231],[-87.5839545972809,41.8050725734135],[-87.5839029603644,41.8050414353447],[-87.5838492137729,41.8050054203577],[-87.5838019290149,41.8049726898702],[-87.5837761956524,41.8049498262526],[-87.5837633858423,41.8049335316825],[-87.5837530262231,41.8048929363508],[-87.5837093059071,41.8047402669304],[-87.5837058990135,41.8046608105496],[-87.5837026429293,41.8045683859805],[-87.5837035688142,41.8044889578722],[-87.5837084236154,41.8043959040035],[-87.5837091490463,41.8043820010236],[-87.5837136071921,41.8041845910156],[-87.5837069644143,41.8041601222413],[-87.5836986281488,41.8038306449857],[-87.5836896881152,41.8034868935359],[-87.5836832894184,41.8032366286931],[-87.583678429195,41.8030305841684],[-87.5836748130487,41.8028437028033],[-87.5836720182234,41.8026775460783],[-87.5836744711821,41.802614992586],[-87.5837111801016,41.8025818194812],[-87.5837168016796,41.8025767391881],[-87.5837756031532,41.8025476768058],[-87.5838235604796,41.8025300973166],[-87.5840372427079,41.8025252986017],[-87.5840460983645,41.8025250997758],[-87.5842559932941,41.8025223522697],[-87.5846125655585,41.8025189139296],[-87.5848892917812,41.8025155854611]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000016,"geom:area_square_m":148542.388738,"geom:bbox":"-87.5887629874,41.8024848761,-87.5836720182,41.8073903256","geom:latitude":41.804572,"geom:longitude":-87.586086,"iso:country":"US","lbl:latitude":41.80448,"lbl:longitude":-87.586134,"lbl:max_zoom":18,"mps:latitude":41.80448,"mps:longitude":-87.586134,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Indian Village"],"name:fra_x_preferred":["Indian Village"],"reversegeo:latitude":41.80448,"reversegeo:longitude":-87.586134,"src:geom":"mz","wof:belongsto":[85865719,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{"wd:id":"Q3150102"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5546b15b24832304f99d6c566958cfa0","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957665791,"neighbourhood_id":85865719,"region_id":85688697}],"wof:id":957665791,"wof:lastmodified":1566624177,"wof:name":"Indian Village","wof:parent_id":85865719,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783551],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957677359.geojson b/fixtures/microhoods/957677359.geojson new file mode 100644 index 0000000..7c59700 --- /dev/null +++ b/fixtures/microhoods/957677359.geojson @@ -0,0 +1 @@ +{"id":957677359,"type":"Feature","bbox":[-87.72702911086567,41.92639033874898,-87.71710538046328,41.93368176004895],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.72702911086567,41.93361485721769],[-87.71729836874279,41.93368176004895],[-87.71710538046328,41.9264168250538],[-87.72682409690073,41.92639033874898],[-87.7268243810833,41.9264018199395],[-87.7268274336402,41.9265251234724],[-87.7268307320904,41.9266293342462],[-87.7268431030875,41.9270201552381],[-87.7268545132091,41.9274915638413],[-87.7268559249152,41.9275311545673],[-87.7268606916572,41.9276648392072],[-87.7268689226368,41.9278956803383],[-87.7268712957293,41.9279622326725],[-87.7268755288874,41.9281317340428],[-87.7268882905613,41.9286122646373],[-87.7268891899175,41.9286443397823],[-87.7268897813993,41.9286654262442],[-87.7269029325861,41.929134376023],[-87.7269143449244,41.9295460975594],[-87.7269215683072,41.9297664146753],[-87.7269247503356,41.9299787049849],[-87.726934829059,41.9302481242148],[-87.7269351229463,41.9302559737017],[-87.7269351236292,41.9302559791938],[-87.7269466508191,41.9306335301664],[-87.7269529860136,41.9308760943693],[-87.7269529859772,41.930876098211],[-87.7269601360971,41.9311498449407],[-87.72696013641,41.9311498507052],[-87.7269656514909,41.931335328764],[-87.7269688727616,41.9314436542793],[-87.7269712011954,41.9315219653367],[-87.7269787052974,41.9317903618435],[-87.7269799136555,41.9318335883854],[-87.7269874250022,41.9321022349144],[-87.7269991823708,41.9325315526465],[-87.7270001229275,41.9325658834642],[-87.7270024569979,41.9326494653665],[-87.7270075778271,41.9328328597999],[-87.7270122527998,41.9330002760999],[-87.7270162725885,41.9331553448683],[-87.7270228581794,41.9334093860786],[-87.72702911086567,41.93361485721769]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00007,"geom:area_square_m":648258.046104,"geom:bbox":"-87.7270291109,41.9263903387,-87.7171053805,41.93368176","geom:latitude":41.930027,"geom:longitude":-87.72206,"iso:country":"US","lbl:latitude":41.930026,"lbl:longitude":-87.72206,"lbl:max_zoom":18,"mps:latitude":41.930026,"mps:longitude":-87.72206,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:eng_x_variant":["Koz Park","Land of Koz"],"reversegeo:latitude":41.930026,"reversegeo:longitude":-87.72206,"src:geom":"mz","wof:belongsto":[85865755,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"c2f829afe5eac13526001ac30e619085","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957677359,"neighbourhood_id":85865755,"region_id":85688697}],"wof:id":957677359,"wof:lastmodified":1566624176,"wof:name":"Kosciuszko Park","wof:parent_id":85865755,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783499],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957705271.geojson b/fixtures/microhoods/957705271.geojson new file mode 100644 index 0000000..c095103 --- /dev/null +++ b/fixtures/microhoods/957705271.geojson @@ -0,0 +1 @@ +{"id":957705271,"type":"Feature","bbox":[-87.65974737768443,41.97152103736463,-87.65488465697285,41.97521935525745],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.65488465697285,41.9715932693018],[-87.65966950443857,41.97152103736463],[-87.65974737768443,41.97514914556882],[-87.6549781755311,41.97521935525745],[-87.6549757443834,41.9751579363467],[-87.6549657480181,41.9746929549653],[-87.6549588908462,41.9743757398233],[-87.6549551257851,41.9742974255497],[-87.6549505159956,41.9742015434031],[-87.6549383196786,41.9736874549259],[-87.6549307478837,41.9734168048602],[-87.6549283931239,41.9733130966666],[-87.6549251843179,41.973171769491],[-87.654913821917,41.9726761548685],[-87.6548982630266,41.9721047202968],[-87.6548862388871,41.9716784199193],[-87.65488465697285,41.9715932693018]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000017,"geom:area_square_m":159334.736506,"geom:bbox":"-87.6597473777,41.9715210374,-87.654884657,41.9752193553","geom:latitude":41.97337,"geom:longitude":-87.65732,"iso:country":"US","lbl:latitude":41.973371,"lbl:longitude":-87.65732,"lbl:max_zoom":18,"mps:latitude":41.973371,"mps:longitude":-87.65732,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:deu_x_preferred":["West Argyle Street Historic District"],"name:eng_x_preferred":["West Argyle Street Historic District"],"name:eng_x_variant":["Little Saigon","New Chinatown","Southeast Asia Town","Little Vietnam"],"name:fra_x_preferred":["West Argyle Street Historic District"],"name:nld_x_preferred":["West Argyle Street Historic District"],"name:zho_x_preferred":["西亚皆老街历史街区"],"reversegeo:latitude":41.973371,"reversegeo:longitude":-87.65732,"src:geom":"mz","wof:belongsto":[85865771,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2564147"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ec65eeafcc2b104d4c88f3e6434b125e","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957705271,"neighbourhood_id":85865771,"region_id":85688697}],"wof:id":957705271,"wof:lastmodified":1566624176,"wof:name":"West Argyle Street Historic District","wof:parent_id":85865771,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783521],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957731831.geojson b/fixtures/microhoods/957731831.geojson new file mode 100644 index 0000000..7aa01cd --- /dev/null +++ b/fixtures/microhoods/957731831.geojson @@ -0,0 +1 @@ +{"id":957731831,"type":"Feature","bbox":[-87.6055871645842,41.75877815362576,-87.59285860440407,41.77043310255408],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6055871645842,41.7658685640434],[-87.59551754249753,41.75877815362576],[-87.5938921362803,41.7659489694503],[-87.59285860440407,41.77043310255408],[-87.59590407852865,41.77039524629161],[-87.59585332062657,41.76598483880924],[-87.6055871645842,41.7658685640434]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":491477.961414,"geom:bbox":"-87.6055871646,41.7587781536,-87.5928586044,41.7704331026","geom:latitude":41.764551,"geom:longitude":-87.597554,"iso:country":"US","lbl:latitude":41.763228,"lbl:longitude":-87.597121,"lbl:max_zoom":18,"mps:latitude":41.763228,"mps:longitude":-87.597121,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Pockettown","The Pocket"],"reversegeo:latitude":41.763228,"reversegeo:longitude":-87.597121,"src:geom":"mz","wof:belongsto":[420518839,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7602736004e70e6d6213e9a05a6fe121","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957731831,"neighbourhood_id":420518839,"region_id":85688697}],"wof:id":957731831,"wof:lastmodified":1566624174,"wof:name":"Pocket Town","wof:parent_id":420518839,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783599],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957760607.geojson b/fixtures/microhoods/957760607.geojson new file mode 100644 index 0000000..5b466e9 --- /dev/null +++ b/fixtures/microhoods/957760607.geojson @@ -0,0 +1 @@ +{"id":957760607,"type":"Feature","bbox":[-87.63711033991653,41.88917449155208,-87.63106037632127,41.8966356349594],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63106037632127,41.8892335953745],[-87.63686335196535,41.88917449155208],[-87.63711033991653,41.89655244726876],[-87.6370516105627,41.8965535635809],[-87.6368882603056,41.8965566682227],[-87.6365083909919,41.8965630950729],[-87.6362011649322,41.896566419436],[-87.635922534562,41.8965694336646],[-87.6358628672982,41.8965720978908],[-87.6358628478234,41.8965720985958],[-87.635694114634,41.8965796584129],[-87.6356716666795,41.8965806573237],[-87.6356716571242,41.8965806578145],[-87.6354378687006,41.8965911106879],[-87.6352103356004,41.896580734771],[-87.6350690738887,41.8965826761045],[-87.6349577988892,41.8965842049618],[-87.6347753476632,41.8965869659514],[-87.6347733095634,41.8965869936189],[-87.6347664653254,41.8965870864508],[-87.6345441603113,41.8965909166407],[-87.6344668541713,41.8965922483246],[-87.6342028641022,41.8965958219574],[-87.6339242324943,41.8965995700771],[-87.6338350080404,41.896600770292],[-87.6336283913088,41.8966029741854],[-87.6336283729419,41.8966029743479],[-87.6335022254474,41.8966043304911],[-87.6330921914215,41.8966089142862],[-87.6329631162887,41.8966103568143],[-87.6329132401227,41.8966112013431],[-87.6327862332357,41.8966133524999],[-87.6327094949991,41.8966132624813],[-87.6326983544251,41.8966132529615],[-87.6326482117606,41.896614082028],[-87.6322331587514,41.8966209861354],[-87.6319864604536,41.896625088619],[-87.6319853899358,41.8966251065045],[-87.6319826423666,41.8966251528409],[-87.6318124261737,41.8966275763289],[-87.6315480250129,41.896631333168],[-87.6312452478647,41.8966356349594],[-87.6312433023284,41.8965092038305],[-87.6312415163074,41.8963930919991],[-87.6312382712153,41.8962338354315],[-87.6312335102079,41.8960001733669],[-87.6312274067495,41.8957928019179],[-87.6312229841123,41.8956346550378],[-87.6312138395225,41.8953066596592],[-87.6312074983735,41.8950534278044],[-87.6312074980963,41.89505341957],[-87.6312029008228,41.8948329897922],[-87.6312021789081,41.8947986681573],[-87.631200057295,41.8946978445741],[-87.6311963374193,41.8945030430809],[-87.6311954531078,41.8944567218269],[-87.6311901948429,41.8941792449155],[-87.6311869064271,41.8940314367014],[-87.6311851298173,41.89395179825],[-87.6311778745818,41.8936682265031],[-87.6311776069684,41.8936582545064],[-87.6311775425262,41.8936558553751],[-87.6311727325748,41.8934671286841],[-87.6311709766227,41.893398248308],[-87.6311684295387,41.8932289369249],[-87.631167672478,41.8931790143534],[-87.6311668010028,41.893121564189],[-87.6311605987434,41.8928663745243],[-87.6311593915567,41.8928236138513],[-87.6311522441029,41.8925693500621],[-87.6311477114289,41.892459235626],[-87.6311463987666,41.8924273466982],[-87.6311423697269,41.8923293302901],[-87.6311417847073,41.8921942567264],[-87.6311375663514,41.892031774551],[-87.6311375661405,41.8920317602796],[-87.631137442303,41.8920269711026],[-87.6311355440912,41.8919532114082],[-87.6311301064068,41.8917419731348],[-87.6311278261863,41.8916661394759],[-87.631126623171,41.8916261194893],[-87.6311258078382,41.8915986216338],[-87.6311235795766,41.891523510574],[-87.631115330192,41.891224042392],[-87.631114832802,41.8912054416512],[-87.6311082301013,41.8909583699257],[-87.6311082297942,41.8909583644353],[-87.6311080746011,41.8909501343401],[-87.6311056931145,41.8908236625496],[-87.6311039200304,41.8907295306563],[-87.6310989449293,41.8905809255395],[-87.6310937360115,41.8904253354517],[-87.6310930056595,41.8904031246104],[-87.6310865329661,41.8901619326264],[-87.6310841407254,41.8900928800972],[-87.6310816499995,41.8900209831107],[-87.6310797541435,41.8899667999777],[-87.6310771705599,41.8898929869433],[-87.6310705654713,41.8896213061869],[-87.6310705652453,41.8896212932876],[-87.6310704707851,41.8896174104357],[-87.6310698679654,41.8895924764399],[-87.6310683070621,41.8895293749293],[-87.6310633887932,41.8893305620868],[-87.6310607467934,41.8892455214574],[-87.63106037632127,41.8892335953745]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000043,"geom:area_square_m":396748.884863,"geom:bbox":"-87.6371103399,41.8891744916,-87.6310603763,41.896635635","geom:latitude":41.892906,"geom:longitude":-87.634071,"iso:country":"US","lbl:latitude":41.8929,"lbl:longitude":-87.634072,"lbl:max_zoom":18,"mps:latitude":41.8929,"mps:longitude":-87.634072,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_variant":["Gallery District"],"reversegeo:latitude":41.8929,"reversegeo:longitude":-87.634072,"src:geom":"mz","wof:belongsto":[85866931,102191575,404496273,85633793,85940195,957999223,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f4be113f0440d77cb25b1e78a36677d2","wof:hierarchy":[{"borough_id":957999223,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957760607,"neighbourhood_id":85866931,"region_id":85688697}],"wof:id":957760607,"wof:lastmodified":1566624176,"wof:name":"River North Gallery District","wof:parent_id":85866931,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783531],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957768631.geojson b/fixtures/microhoods/957768631.geojson new file mode 100644 index 0000000..1303815 --- /dev/null +++ b/fixtures/microhoods/957768631.geojson @@ -0,0 +1 @@ +{"id":957768631,"type":"Feature","bbox":[-87.6941815922366,41.89071532942679,-87.6866855128736,41.89574327381573],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68684087488364,41.89574327381573],[-87.6866855128736,41.8907155844737],[-87.68745108633253,41.89071532942679],[-87.69412414454156,41.89340319673217],[-87.6941815922366,41.89566893547218],[-87.6938452693078,41.8956720191094],[-87.6937952377296,41.895672536312],[-87.6933142839783,41.8956775680713],[-87.6931341785031,41.8956794730191],[-87.6927741117005,41.895683557295],[-87.6921831483681,41.8956889036569],[-87.6917873602256,41.8957023076269],[-87.6917725928045,41.8957022155196],[-87.6912122800907,41.8956987094525],[-87.6910221461951,41.8957007196649],[-87.690891851507,41.8957021038662],[-87.6905416396763,41.8957049925853],[-87.6901207911893,41.8957084626519],[-87.6897511091805,41.8957117152032],[-87.6896004302566,41.8957130111369],[-87.689307469086,41.8957161999972],[-87.6885005442125,41.8957249793051],[-87.688199628401,41.8957274332384],[-87.6878027608351,41.8957312079057],[-87.6875073491366,41.8957341895937],[-87.6872502136411,41.8957368046493],[-87.6868425979845,41.8957432465927],[-87.68684087488364,41.89574327381573]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000028,"geom:area_square_m":256214.897354,"geom:bbox":"-87.6941815922,41.8907153294,-87.6866855129,41.8957432738","geom:latitude":41.893719,"geom:longitude":-87.689972,"iso:country":"US","lbl:latitude":41.89372,"lbl:longitude":-87.689971,"lbl:max_zoom":18,"mps:latitude":41.89372,"mps:longitude":-87.689971,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"name:ceb_x_preferred":["Smith Park"],"name:eng_x_variant":["The Patch"],"name:swe_x_preferred":["Smith Park"],"reversegeo:latitude":41.89372,"reversegeo:longitude":-87.689971,"src:geom":"mz","wof:belongsto":[85866935,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"70adced285991071ac424d7db890cfac","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957768631,"neighbourhood_id":85866935,"region_id":85688697}],"wof:id":957768631,"wof:lastmodified":1566624176,"wof:name":"Smith Park","wof:parent_id":85866935,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783495],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957777805.geojson b/fixtures/microhoods/957777805.geojson new file mode 100644 index 0000000..e956556 --- /dev/null +++ b/fixtures/microhoods/957777805.geojson @@ -0,0 +1 @@ +{"id":957777805,"type":"Feature","bbox":[-87.6654628803294,41.80849183880752,-87.64553474796415,41.8234590578932],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64553474796415,41.80877524575994],[-87.66504285124513,41.80849183880752],[-87.6652415746014,41.8200076394868],[-87.6652419924059,41.8200249036722],[-87.6652424019048,41.8200393316025],[-87.6652481938236,41.8202436308997],[-87.6652489986448,41.8202620274272],[-87.6652561972665,41.8204266107173],[-87.665271864302,41.8207511572737],[-87.6653065689453,41.8212973544784],[-87.6653235489849,41.8217047519006],[-87.6653448617242,41.8220354756361],[-87.6654276442402,41.822575495819],[-87.6654628803294,41.8229274585082],[-87.6654619079168,41.8231500300682],[-87.6653082590456,41.8231519294317],[-87.6649146448959,41.8231567941833],[-87.6641800350438,41.823167281185],[-87.6633986771639,41.823178423897],[-87.6631157648914,41.8231813715223],[-87.6626962389258,41.8231857410284],[-87.6619542509364,41.8231930148024],[-87.6612968926042,41.8231977602564],[-87.6612453348246,41.8231981098121],[-87.6610155462601,41.8231996682232],[-87.6608685620045,41.8232006870875],[-87.6605639536392,41.8232027453598],[-87.6605395413074,41.8232029102798],[-87.6601897058181,41.8232052729022],[-87.6599758491653,41.8232075985123],[-87.6598732325769,41.8232087142738],[-87.6591397617188,41.8232224139537],[-87.6584257219494,41.8232408883833],[-87.6578138706359,41.8232617431669],[-87.6576495738821,41.8232674533561],[-87.6569832350034,41.823290609723],[-87.6565327255256,41.8233036006712],[-87.6562996689464,41.8233103206312],[-87.6559801524144,41.8233160267242],[-87.654726135982,41.8233384121115],[-87.6539534068052,41.8233551239337],[-87.6533300048562,41.8233686026631],[-87.6532197398767,41.8233682931435],[-87.652713033451,41.8233668694901],[-87.6520948882709,41.8233754993865],[-87.6518415538002,41.8233790216633],[-87.6516053186134,41.823382309518],[-87.6513478744126,41.8233858856235],[-87.6511547177303,41.8233885806086],[-87.6507865525667,41.8233925263838],[-87.6504397248836,41.8233962421793],[-87.6501976914059,41.8233996603412],[-87.6498754444723,41.8234042473027],[-87.6494726177796,41.8234099453223],[-87.6490064229461,41.8234163072409],[-87.6485400839326,41.823422419423],[-87.6483411359022,41.823425032064],[-87.6480744418926,41.8234285338695],[-87.6476644995414,41.823433990997],[-87.647249707685,41.8234401312056],[-87.6471053365518,41.8234429565375],[-87.646942450724,41.8234461441639],[-87.6466394845532,41.8234493298312],[-87.6466129880775,41.8234496085863],[-87.6463471548901,41.8234519158483],[-87.6459281894117,41.8234590578932],[-87.6458600146328,41.8211222160034],[-87.6458553051578,41.8209588487549],[-87.6458500744846,41.8207961918929],[-87.6458487600472,41.8205932451087],[-87.6458451648135,41.8204363588007],[-87.6458442325605,41.8203956853029],[-87.6458435483626,41.8203775064421],[-87.6458400901285,41.8202856700797],[-87.6458337188041,41.8201164750032],[-87.6458282382191,41.8199360337359],[-87.6458229331337,41.8197666254886],[-87.6458196556688,41.8196340575098],[-87.6458151799863,41.8194179466976],[-87.6458123448124,41.819319245683],[-87.6458066309018,41.8191231057533],[-87.6458008647092,41.8189617628837],[-87.6457972568738,41.8188608066581],[-87.6457949397226,41.8187552483263],[-87.6457921326865,41.818627375572],[-87.6457822105434,41.8181753618422],[-87.6457765888662,41.8179395405069],[-87.6457671493793,41.8176559456767],[-87.6457645006574,41.8175647919506],[-87.6457582203449,41.8173486433636],[-87.6457493096591,41.8170053362716],[-87.6457388969886,41.8166001093477],[-87.6457268436582,41.8161837582632],[-87.6457122976461,41.8156813043389],[-87.6457021195036,41.8152438609401],[-87.6456949106514,41.8149370078768],[-87.6456920502266,41.8148166543043],[-87.6456873212082,41.8146176935106],[-87.6456804885857,41.8143099370551],[-87.6456786854458,41.8142309043113],[-87.645672421913,41.8139563712421],[-87.6456644263158,41.8136030253748],[-87.645660755582,41.813480860641],[-87.6456558773524,41.8133185300457],[-87.6456511494865,41.813129558644],[-87.6456415355807,41.8128212088848],[-87.6456340005323,41.8124934149127],[-87.6456331768943,41.81245748741],[-87.6456301411852,41.8123295308167],[-87.6456262236688,41.8121885067361],[-87.6456184089257,41.8119071716488],[-87.6456051366333,41.8114607630934],[-87.6455950572688,41.8111102311997],[-87.6455874312146,41.8108012623219],[-87.6455852218693,41.8106894747032],[-87.645579434381,41.8103966531586],[-87.6455716139325,41.8100784348645],[-87.6455615902748,41.8096644280865],[-87.6455533954625,41.8092920629169],[-87.6455379412332,41.8088637453639],[-87.64553474796415,41.80877524575994]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000286,"geom:area_square_m":2631648.882976,"geom:bbox":"-87.6654628803,41.8084918388,-87.645534748,41.8234590579","geom:latitude":41.815966,"geom:longitude":-87.65545,"iso:country":"US","lbl:latitude":41.815978,"lbl:longitude":-87.65545,"lbl:max_zoom":18,"mps:latitude":41.815978,"mps:longitude":-87.65545,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":15,"reversegeo:latitude":41.815978,"reversegeo:longitude":-87.65545,"src:geom":"mz","wof:belongsto":[85867501,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"f119b82ec1551755a5060b1144043b89","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957777805,"neighbourhood_id":85867501,"region_id":85688697}],"wof:id":957777805,"wof:lastmodified":1566624176,"wof:name":"Stockyards Industrial Park","wof:parent_id":85867501,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420783527],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/957919663.geojson b/fixtures/microhoods/957919663.geojson new file mode 100644 index 0000000..1ace214 --- /dev/null +++ b/fixtures/microhoods/957919663.geojson @@ -0,0 +1 @@ +{"id":957919663,"type":"Feature","bbox":[-87.63664533629726,41.8272333896524,-87.6305758148246,41.8474626931958],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6362105602697,41.8272333896524],[-87.63664533629726,41.847273845892],[-87.6364384176715,41.8472765372127],[-87.6359282084986,41.8472819167638],[-87.6353951430507,41.8473041083657],[-87.6347373823319,41.8473255393776],[-87.6341249640811,41.8473472423926],[-87.6335351258032,41.8473775561879],[-87.6330492644094,41.8474140457409],[-87.6329731414885,41.8474191304708],[-87.6325145784612,41.8474468524803],[-87.6322899500693,41.84745935384],[-87.6321540698516,41.8474626349987],[-87.632151600626,41.8474626931958],[-87.6320070676113,41.8474554783537],[-87.6318661464974,41.8474516899164],[-87.6317682943846,41.8474481646689],[-87.6316665907721,41.8474387601098],[-87.6315491619583,41.8474351145266],[-87.6313653959806,41.8474105698263],[-87.6311425403651,41.8473799301542],[-87.6311073664482,41.8473738594042],[-87.631041134069,41.8473628231767],[-87.6310520147723,41.8473136288962],[-87.6310580389309,41.8472863913692],[-87.6310650986591,41.8472544030016],[-87.6310770749442,41.8472001355196],[-87.6310976960098,41.8470961984937],[-87.6311239863666,41.8469829302436],[-87.6311518389508,41.8468540621926],[-87.631172755617,41.8467230704833],[-87.631187363167,41.8466387340358],[-87.6312148584117,41.8464913326199],[-87.6312261243929,41.8463486703874],[-87.6312473602261,41.8461818776283],[-87.631258652518,41.8460367964813],[-87.6312731801282,41.8458917348313],[-87.6312813312492,41.8456236688807],[-87.6312886616691,41.8454404671418],[-87.6312696683622,41.8447412259481],[-87.6312611262668,41.8445479682404],[-87.631257018543,41.8444364018664],[-87.6312482366297,41.8442650523044],[-87.6311391383121,41.8431676884193],[-87.631096749073,41.8425811050809],[-87.631084366142,41.8422258289897],[-87.6310269075379,41.8418702382931],[-87.6309648674681,41.8412639271453],[-87.6309113796993,41.8405036177048],[-87.6308885192839,41.8400824065982],[-87.6308625545469,41.8393171302423],[-87.6308443694234,41.838637409292],[-87.6308375635652,41.838364688399],[-87.6308352892828,41.8382491462418],[-87.6308328442832,41.8381249212883],[-87.6308132570022,41.8376782665479],[-87.6308090585584,41.8373909209126],[-87.6307942807289,41.8367283480685],[-87.6307807890119,41.8361719264715],[-87.6307659315259,41.8355166733228],[-87.630747240939,41.8347644033717],[-87.6307320707876,41.8345153643507],[-87.6306934308827,41.83315401845],[-87.6306807883994,41.8325620299792],[-87.6306616179008,41.8315182042468],[-87.6306297194845,41.8309536568219],[-87.6305758148246,41.8273115998508],[-87.6314209199937,41.8272958030314],[-87.6319885092674,41.8272892263664],[-87.6322000573482,41.8272868131145],[-87.6324010371124,41.8272845270803],[-87.6326272001854,41.827281034815],[-87.6328316012757,41.8272778781093],[-87.6331512224654,41.8272737071954],[-87.6333985898524,41.8272704398142],[-87.6334549549317,41.8272696855641],[-87.6335920507864,41.8272678588938],[-87.6338415222587,41.8272646327403],[-87.6342643187423,41.8272591640932],[-87.6346345057324,41.827254418625],[-87.6349212887014,41.8272502351264],[-87.6352700875736,41.8272452477878],[-87.6356879118669,41.8272393065197],[-87.6360939836615,41.8272344175417],[-87.6361638233871,41.8272338263578],[-87.6362033795498,41.827233456665],[-87.6362105602697,41.8272333896524]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000112,"geom:area_square_m":1029879.212796,"geom:bbox":"-87.6366453363,41.8272333897,-87.6305758148,41.8474626932","geom:latitude":41.837223,"geom:longitude":-87.633642,"iso:country":"US","lbl:latitude":41.8372,"lbl:longitude":-87.633601,"lbl:max_zoom":18,"mps:latitude":41.8372,"mps:longitude":-87.633601,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:eng_x_preferred":["Armour Square"],"name:fra_x_preferred":["Armour Square"],"name:por_x_preferred":["Armour Square"],"name:srp_x_preferred":["Armor Skver"],"name:zho_x_preferred":["盔甲廣場"],"reversegeo:latitude":41.8372,"reversegeo:longitude":-87.633601,"src:geom":"mz","wof:belongsto":[85865729,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{"wd:id":"Q2862800"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e179291c53e3396156380857b95a61b0","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":957919663,"neighbourhood_id":85865729,"region_id":85688697}],"wof:id":957919663,"wof:lastmodified":1566624177,"wof:name":"Armour Square","wof:parent_id":85865729,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420518739],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974518243.geojson b/fixtures/microhoods/974518243.geojson new file mode 100644 index 0000000..d6a40ff --- /dev/null +++ b/fixtures/microhoods/974518243.geojson @@ -0,0 +1 @@ +{"id":974518243,"type":"Feature","bbox":[-87.6496249290866,41.93630515114521,-87.6442147319929,41.95131817029507],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64961780268024,41.95131817029507],[-87.64441940370646,41.94282860374344],[-87.6442147319929,41.9364281005363],[-87.64913796628461,41.93630515114521],[-87.6491409097314,41.9363790314481],[-87.6491496420554,41.9365977084326],[-87.6491693235699,41.9371558837113],[-87.649200380951,41.9378241083452],[-87.6492161273819,41.9381633149196],[-87.6492266361793,41.938471117009],[-87.6492371770025,41.93908229294],[-87.6492543460196,41.939569324015],[-87.6492666296513,41.9399809486421],[-87.6492766654676,41.9403184624555],[-87.6492843619279,41.9405502584201],[-87.6493015686493,41.9410666260761],[-87.6493034812959,41.9411247569334],[-87.6493271463889,41.9417954982153],[-87.6493315086942,41.941919882971],[-87.6493575727322,41.9427090600892],[-87.6493616055319,41.942831405831],[-87.6493608362237,41.9429252591469],[-87.6493634151832,41.9430560072404],[-87.6493664372805,41.9432364661206],[-87.6493692639088,41.9434169529194],[-87.649374930976,41.9436161996161],[-87.6493781887735,41.9437308281077],[-87.6493840431439,41.9439271360327],[-87.6493887130667,41.9440811208417],[-87.6493896940377,41.944113285854],[-87.6493964216076,41.9443373344618],[-87.6494035352813,41.9445289062192],[-87.6494096542305,41.9446931440673],[-87.6494122007861,41.9448050616822],[-87.6494177162587,41.9450476418506],[-87.6494227731959,41.9452711859622],[-87.6494298635494,41.9454612732035],[-87.6494388887898,41.9457037869843],[-87.6494429321634,41.9458653058168],[-87.649449326291,41.9461205804143],[-87.6494566779109,41.9463701563084],[-87.6494660442234,41.9466865366829],[-87.6494782672077,41.947104068166],[-87.6494862287174,41.9473148239039],[-87.6494935149841,41.947508520881],[-87.6494980135468,41.9476639598265],[-87.6495028399513,41.9478288298333],[-87.6495035303981,41.9478517966899],[-87.6495102283889,41.9480822477672],[-87.6495188034214,41.9483742637861],[-87.6495296984803,41.9487482774827],[-87.6495355645388,41.9489472049256],[-87.6495415686028,41.9491149918705],[-87.6495458687433,41.9492342542959],[-87.6495491294504,41.949334069162],[-87.6495545845967,41.9495021442613],[-87.6495590489053,41.9496388984357],[-87.6495613932537,41.9496931319761],[-87.6495663081524,41.9498205757997],[-87.649577750698,41.9501178763183],[-87.6495852952692,41.9503129718131],[-87.6495893323571,41.9504386642531],[-87.6496187685483,41.9506428247084],[-87.6496208481349,41.9507145477125],[-87.6496249290866,41.9508835459704],[-87.6496244205792,41.9509530417252],[-87.649619971368,41.9511978907502],[-87.64961780268024,41.95131817029507]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000053,"geom:area_square_m":485914.558801,"geom:bbox":"-87.6496249291,41.9363051511,-87.644214732,41.9513181703","geom:latitude":41.941998,"geom:longitude":-87.64719,"iso:country":"US","lbl:latitude":41.943743,"lbl:longitude":-87.647312,"lbl:max_zoom":18,"mps:latitude":41.942058,"mps:longitude":-87.646868,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Northalsted","Boys Town"],"reversegeo:latitude":41.942058,"reversegeo:longitude":-87.646868,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882181,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5ee86670080ae0af1e772c255d001351","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974518243,"neighbourhood_id":85882181,"region_id":85688697}],"wof:id":974518243,"wof:lastmodified":1566640981,"wof:name":"Boystown","wof:parent_id":85882181,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85882143],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974518251.geojson b/fixtures/microhoods/974518251.geojson new file mode 100644 index 0000000..50601ea --- /dev/null +++ b/fixtures/microhoods/974518251.geojson @@ -0,0 +1 @@ +{"id":974518251,"type":"Feature","bbox":[-87.5938921362803,41.76590761832339,-87.5860775700267,41.7733418784687],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.58611744038194,41.76590761832339],[-87.5938921362803,41.7659489694503],[-87.59285860440407,41.77043310255408],[-87.5921769472712,41.77327469325021],[-87.5920626767899,41.7732758153686],[-87.5920483397005,41.7732759566744],[-87.5918051488836,41.7732783519297],[-87.5917137332334,41.7732793974468],[-87.5915852320041,41.7732808667518],[-87.5914216360818,41.7732827371756],[-87.5911692409171,41.7732852379478],[-87.5908498975878,41.7732884013054],[-87.5906470715242,41.7732904657731],[-87.590210767696,41.7732949442289],[-87.5897273502568,41.7732999119335],[-87.5893061152763,41.7733042375005],[-87.5890921431722,41.7733064191374],[-87.5887656392605,41.773309454845],[-87.5884868239321,41.7733120463342],[-87.5882612018244,41.7733135471471],[-87.588216984955,41.7733139865151],[-87.5880794585816,41.7733153047222],[-87.5877115321199,41.7733191743946],[-87.5874976689762,41.7733214358227],[-87.5872779760659,41.7733237693152],[-87.5869658900793,41.7733269838221],[-87.5869455781711,41.7733271861156],[-87.586637416441,41.773330255628],[-87.5861984175479,41.7733418784687],[-87.5861315218992,41.7715178328411],[-87.5860866061749,41.7696992359367],[-87.5860775700267,41.7694980329036],[-87.5860904619841,41.7693407151346],[-87.5861027767062,41.7692330995991],[-87.5861264450973,41.7691007047688],[-87.5861504017649,41.7689434589447],[-87.5861750845469,41.7687886723285],[-87.5861870572553,41.7686454627216],[-87.5861893641299,41.7684466545498],[-87.5861850109803,41.7678799767126],[-87.5861186165628,41.7659742676683],[-87.58611744038194,41.76590761832339]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000051,"geom:area_square_m":469288.20585,"geom:bbox":"-87.5938921363,41.7659076183,-87.58607757,41.7733418785","geom:latitude":41.769463,"geom:longitude":-87.589603,"iso:country":"US","lbl:latitude":41.769359,"lbl:longitude":-87.599127,"lbl:max_zoom":18,"mps:latitude":41.769476,"mps:longitude":-87.589555,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Brookdale"],"name:deu_x_preferred":["Brookdale"],"name:fra_x_preferred":["Brookdale"],"name:ita_x_preferred":["Brookdale"],"name:nld_x_preferred":["Brookdale"],"name:pol_x_preferred":["Brookdale"],"name:spa_x_preferred":["Brookdale"],"name:srp_x_preferred":["Брукдејл"],"name:swe_x_preferred":["Brookdale"],"name:vol_x_preferred":["Brookdale"],"reversegeo:latitude":41.769476,"reversegeo:longitude":-87.589555,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420518839,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"e803b4286ccf377282ff2bbcc48f8cf1","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974518251,"neighbourhood_id":420518839,"region_id":85688697}],"wof:id":974518251,"wof:lastmodified":1566640981,"wof:name":"Brookdale","wof:parent_id":420518839,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867529],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974518255.geojson b/fixtures/microhoods/974518255.geojson new file mode 100644 index 0000000..98cf9bd --- /dev/null +++ b/fixtures/microhoods/974518255.geojson @@ -0,0 +1 @@ +{"id":974518255,"type":"Feature","bbox":[-87.6055871645842,41.7585799917879,-87.59551754249753,41.7658685640434],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59551754249753,41.75877815362576],[-87.604754,41.758592],[-87.605142,41.758584],[-87.605391,41.75858],[-87.60539128977007,41.7585799917879],[-87.605391293403,41.7585800641591],[-87.605403248641,41.7588182198822],[-87.6054107845261,41.7591210735191],[-87.6054211306632,41.7594899178739],[-87.6054302978434,41.7598592761519],[-87.6054414696977,41.7602847679974],[-87.6054449513179,41.7604056760991],[-87.605452419729,41.7606650323805],[-87.6054599624818,41.7610224425966],[-87.6054680188723,41.7613474458929],[-87.6054749031994,41.761626941298],[-87.6054834109674,41.7620060372395],[-87.6054893204706,41.7622296443186],[-87.6054918065173,41.7623237156301],[-87.6055002305116,41.7627005060598],[-87.6055076305178,41.7630252029551],[-87.6055152552531,41.7633040720544],[-87.605520591744,41.7636027873908],[-87.6055237190106,41.7637778403365],[-87.6055258256364,41.7638957615432],[-87.6055274187446,41.7639849456166],[-87.6055293765318,41.7640651812027],[-87.6055323034136,41.7641851210896],[-87.6055323175332,41.7641854285402],[-87.6055357123244,41.7644256171052],[-87.6055372217276,41.7645323934974],[-87.6055390635456,41.7646202975504],[-87.6055400974555,41.7646696407751],[-87.6055410348822,41.7647143855951],[-87.6055413172381,41.7647278681878],[-87.6055464993131,41.7649763969893],[-87.6055465747529,41.7649859712169],[-87.6055476740708,41.7651255972378],[-87.6055478840803,41.7651522602227],[-87.6055549721713,41.7654170473087],[-87.6055871645842,41.7658685640434],[-87.59551754249753,41.75877815362576]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000036,"geom:area_square_m":331923.893902,"geom:bbox":"-87.6055871646,41.7585799918,-87.5955175425,41.765868564","geom:latitude":41.761072,"geom:longitude":-87.602163,"iso:country":"US","lbl:latitude":41.761083,"lbl:longitude":-87.602927,"lbl:max_zoom":18,"mps:latitude":41.761083,"mps:longitude":-87.602927,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_landuse_aoi":0,"mz:max_zoom":18,"mz:min_zoom":16,"name:cat_x_preferred":["Brookline"],"name:ceb_x_preferred":["Brookline"],"name:dan_x_preferred":["Brookline"],"name:deu_x_preferred":["Brookline"],"name:fra_x_preferred":["Brookline"],"name:ita_x_preferred":["Brookline"],"name:kor_x_preferred":["브루클라인"],"name:nld_x_preferred":["Brookline"],"name:pol_x_preferred":["Brookline"],"name:por_x_preferred":["Brookline"],"name:rus_x_preferred":["Бруклайн"],"name:slk_x_preferred":["Brookline"],"name:spa_x_preferred":["Brookline"],"name:srp_x_preferred":["Бруклајн"],"name:swe_x_preferred":["Brookline"],"name:ukr_x_preferred":["Бруклайн"],"name:vol_x_preferred":["Brookline"],"name:zho_x_preferred":["布鲁克莱恩"],"reversegeo:latitude":41.761083,"reversegeo:longitude":-87.602927,"src:geom":"mz","wof:belongsto":[420518839,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"7a433e5cee34c2bcf4664410d02ccc8d","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974518255,"neighbourhood_id":420518839,"region_id":85688697}],"wof:id":974518255,"wof:lastmodified":1566640982,"wof:name":"Brookline","wof:parent_id":420518839,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[420518851],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974518505.geojson b/fixtures/microhoods/974518505.geojson new file mode 100644 index 0000000..5e92e07 --- /dev/null +++ b/fixtures/microhoods/974518505.geojson @@ -0,0 +1 @@ +{"id":974518505,"type":"Feature","bbox":[-87.68549997637145,41.86755774009389,-87.68419244454593,41.86846785044965],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.68549997637145,41.86846525842997],[-87.68422113052775,41.86846785044965],[-87.68419244454593,41.86756439450927],[-87.68548914232127,41.86755774009389],[-87.68549997637145,41.86846525842997]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":10738.124259,"geom:bbox":"-87.6854999764,41.8675577401,-87.6841924445,41.8684678504","geom:latitude":41.868013,"geom:longitude":-87.684851,"iso:country":"US","lbl:latitude":41.868226,"lbl:longitude":-87.684893,"lbl:max_zoom":18,"mps:latitude":41.868014,"mps:longitude":-87.684848,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":41.868014,"reversegeo:longitude":-87.684848,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869739,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8f9a1daee9fd80140a7407fcfb1a0e87","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974518505,"neighbourhood_id":85869739,"region_id":85688697}],"wof:id":974518505,"wof:lastmodified":1566640981,"wof:name":"Claremont Cottages","wof:parent_id":85869739,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867549],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974518511.geojson b/fixtures/microhoods/974518511.geojson new file mode 100644 index 0000000..30b9c21 --- /dev/null +++ b/fixtures/microhoods/974518511.geojson @@ -0,0 +1 @@ +{"id":974518511,"type":"Feature","bbox":[-87.60390899444423,41.79791315472279,-87.60281496225426,41.7993647673056],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.60387088332321,41.79791315472279],[-87.60281496225426,41.79792232010112],[-87.60284996869224,41.7993647673056],[-87.60390899444423,41.79935511349505],[-87.60387088332321,41.79791315472279]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":14061.696382,"geom:bbox":"-87.6039089944,41.7979131547,-87.6028149623,41.7993647673","geom:latitude":41.798639,"geom:longitude":-87.603361,"iso:country":"US","lbl:latitude":41.798652,"lbl:longitude":-87.603307,"lbl:max_zoom":18,"mps:latitude":41.798639,"mps:longitude":-87.603363,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"reversegeo:latitude":41.798639,"reversegeo:longitude":-87.603363,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85826681,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"90d90477510a0663a4bbfe3712c69e1f","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974518511,"neighbourhood_id":85826681,"region_id":85688697}],"wof:id":974518511,"wof:lastmodified":1566640981,"wof:name":"Egandale","wof:parent_id":85826681,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867589],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974522607.geojson b/fixtures/microhoods/974522607.geojson new file mode 100644 index 0000000..5241f7c --- /dev/null +++ b/fixtures/microhoods/974522607.geojson @@ -0,0 +1 @@ +{"id":974522607,"type":"Feature","bbox":[-87.66449170139563,41.881761840252,-87.6458009838153,41.89444648011204],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66449170139563,41.88284978674219],[-87.66373548822695,41.88356069727464],[-87.66331352896438,41.88400247062],[-87.66311813288665,41.88425882830967],[-87.66295748121959,41.88451474713518],[-87.66270359356126,41.88501453321878],[-87.66177296221798,41.88682931117032],[-87.66150822127119,41.88727050914909],[-87.66030252897527,41.88915507690663],[-87.66002444188679,41.88957071375948],[-87.65975003762159,41.88995392724584],[-87.65949133692264,41.89030578598044],[-87.65918568020592,41.8906644455921],[-87.65663480167994,41.89363858693437],[-87.65593027708216,41.89444648011204],[-87.6558908820947,41.8944194235613],[-87.6557153056664,41.894302390907],[-87.655535417067,41.8941853325307],[-87.6553427295837,41.8940553097182],[-87.6551671888713,41.8939350544224],[-87.654674647996,41.8935930440524],[-87.6543180851977,41.8933419397197],[-87.6539271088084,41.8930712280854],[-87.6535489476143,41.8928167597531],[-87.6531146668921,41.8925490227922],[-87.6525008559366,41.8921556347817],[-87.6520008208416,41.8918070086176],[-87.6518680829609,41.8917217264234],[-87.6514906347371,41.8914467980294],[-87.6512711338635,41.8913033895891],[-87.6508525724434,41.8910282151613],[-87.6507098030473,41.8909198278028],[-87.6505206496058,41.8908026932828],[-87.6503287865426,41.8906641364444],[-87.6501414141118,41.890546746796],[-87.6499963298683,41.8904437023514],[-87.6498135989824,41.8903333869918],[-87.6496544070939,41.8902267348122],[-87.6495606282972,41.8901768476564],[-87.6492424350003,41.8899459260362],[-87.64908828666,41.8898410446067],[-87.6489429170643,41.8897327322994],[-87.6488306545913,41.8896474994468],[-87.6487276722833,41.8895764159492],[-87.648587307862,41.8894733978512],[-87.6484843641055,41.88939879076],[-87.6483767425185,41.889320632345],[-87.6483021654414,41.8892391473497],[-87.6481946953084,41.8891468955247],[-87.6481107636951,41.889058307658],[-87.6479905215749,41.8888967540562],[-87.6478853254613,41.8887616592621],[-87.6477403017579,41.8886113861321],[-87.647635053014,41.8884812707618],[-87.6474704101701,41.8882960181321],[-87.6473387708009,41.8881408439016],[-87.6472464265175,41.888033230636],[-87.6471787229714,41.8879521888172],[-87.6471078064815,41.8878600986561],[-87.6469441234087,41.8876504206656],[-87.646845435658,41.88753030454],[-87.6467665286714,41.8874302278567],[-87.646700684161,41.8873551301865],[-87.6466023706568,41.8872001543495],[-87.646524104536,41.8870403180765],[-87.6464326697054,41.8868654622336],[-87.6463611754827,41.8866957053022],[-87.646283017277,41.8865259092759],[-87.6462250655525,41.8863363128268],[-87.646167221263,41.8861367564881],[-87.6460962622417,41.88591720036],[-87.6460318354593,41.8856215780541],[-87.6459308903553,41.8851032685825],[-87.6459040150938,41.8849256858994],[-87.645891873862,41.8847159328444],[-87.6458748439661,41.884291094429],[-87.6458497656198,41.8832748013494],[-87.6458009838153,41.8817852416628],[-87.6462186444302,41.8817915619376],[-87.6464563409142,41.8817897838339],[-87.6465101486198,41.8817893811762],[-87.6467350174893,41.8817876986636],[-87.6469330818304,41.8817854798146],[-87.6473600719291,41.8817778450827],[-87.6476256051445,41.881773096633],[-87.6478885283903,41.8817701108095],[-87.6479450920972,41.8817694972547],[-87.6481431504475,41.8817673492794],[-87.6485307668393,41.881761840252],[-87.6485352197891,41.8819161481644],[-87.6485404711595,41.8821362403429],[-87.6485443140773,41.8822956488996],[-87.6485486632514,41.8824798684275],[-87.648553395258,41.8826763844405],[-87.6485542316813,41.8827115431798],[-87.6485560327524,41.8827870480411],[-87.648559828458,41.8829474442255],[-87.6485670452673,41.883125379227],[-87.6486910316325,41.8831234738463],[-87.6491007850294,41.8831163660088],[-87.6495937722604,41.8831073373727],[-87.6497358152541,41.8831046569192],[-87.6500536685613,41.8830986585851],[-87.6503046047056,41.8830941842767],[-87.6504137286563,41.8830922383079],[-87.6506928367556,41.8830872566937],[-87.6509013239033,41.8830839014122],[-87.6511685126169,41.8830796002811],[-87.6512075188657,41.8830789562915],[-87.6514192987894,41.883075436587],[-87.6516729497014,41.8830712344648],[-87.65207100218,41.8830632715979],[-87.6523966119649,41.8830567570822],[-87.6527080050943,41.8830511936109],[-87.6529150864063,41.8830474811147],[-87.6532344351388,41.8830427383265],[-87.6534421384354,41.883039653153],[-87.653765022838,41.8830343469443],[-87.6541101649149,41.8830286775108],[-87.6543981350341,41.8830230082376],[-87.6547651382544,41.8830157822102],[-87.6549029099486,41.8830133854391],[-87.6550517740578,41.8830107795949],[-87.6555671511194,41.8830016624354],[-87.6558740724576,41.8829962316584],[-87.6560570577453,41.8829930574059],[-87.6562300159911,41.8829900158387],[-87.6567016287031,41.8829832244577],[-87.6569088256584,41.8829802400737],[-87.6570580935664,41.8829776340066],[-87.6573103505408,41.8829732191244],[-87.6576495382142,41.8829679993353],[-87.6578959864039,41.882964206235],[-87.6581833854468,41.8829599140684],[-87.6584022127205,41.8829566446505],[-87.658794819665,41.882950630589],[-87.6590237319164,41.8829471233936],[-87.6592299269846,41.8829437784982],[-87.6594595912635,41.8829401318731],[-87.6596958992705,41.8829368080642],[-87.6599194252004,41.8829336634814],[-87.660172111873,41.8829302602016],[-87.6603329060057,41.8829280741924],[-87.6603897622609,41.8829271406352],[-87.6605995368559,41.8829240110181],[-87.6609469300222,41.8829188279094],[-87.6612631599156,41.8829141477127],[-87.6616043652991,41.8829090638886],[-87.6619320179933,41.8829041742405],[-87.6623132541558,41.882898735073],[-87.6626251852988,41.8828942839657],[-87.6628924594466,41.8828900268523],[-87.6632933886904,41.8828836675632],[-87.6634875702561,41.8828808212183],[-87.6637281311985,41.8828780817014],[-87.6639497410656,41.8828755577835],[-87.6642289428726,41.882871970817],[-87.6643254993245,41.8828707221575],[-87.66449170139563,41.88284978674219]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000133,"geom:area_square_m":1222705.697714,"geom:bbox":"-87.6644917014,41.8817618403,-87.6458009838,41.8944464801","geom:latitude":41.887035,"geom:longitude":-87.654319,"iso:country":"US","lbl:latitude":41.886576,"lbl:longitude":-87.649564,"lbl:max_zoom":18,"mps:latitude":41.887976,"mps:longitude":-87.654956,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":41.887976,"reversegeo:longitude":-87.654956,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85866935,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"6e55c92352afcdb50811a833b5af9589","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974522607,"neighbourhood_id":85866935,"region_id":85688697}],"wof:id":974522607,"wof:lastmodified":1566640982,"wof:name":"Fulton Market","wof:parent_id":85866935,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85890751],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974522617.geojson b/fixtures/microhoods/974522617.geojson new file mode 100644 index 0000000..87d3c85 --- /dev/null +++ b/fixtures/microhoods/974522617.geojson @@ -0,0 +1 @@ +{"id":974522617,"type":"Feature","bbox":[-87.66581612402784,41.87298781350115,-87.66447667976342,41.87371884751553],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.66581612402784,41.87371318061732],[-87.66449951119974,41.87371884751553],[-87.66447667976342,41.87299631394447],[-87.66580090307032,41.87298781350115],[-87.66581612402784,41.87371318061732]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":8802.750333,"geom:bbox":"-87.665816124,41.8729878135,-87.6644766798,41.8737188475","geom:latitude":41.873354,"geom:longitude":-87.665149,"iso:country":"US","lbl:latitude":41.873582,"lbl:longitude":-87.665315,"lbl:max_zoom":18,"mps:latitude":41.873354,"mps:longitude":-87.66514,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"reversegeo:latitude":41.873354,"reversegeo:longitude":-87.66514,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85882191,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"59523ccf61b16c97a2debc40f2519b18","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974522617,"neighbourhood_id":85882191,"region_id":85688697}],"wof:id":974522617,"wof:lastmodified":1566640982,"wof:name":"Garibaldi Square","wof:parent_id":85882191,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867613],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/974522631.geojson b/fixtures/microhoods/974522631.geojson new file mode 100644 index 0000000..8c0e4ee --- /dev/null +++ b/fixtures/microhoods/974522631.geojson @@ -0,0 +1 @@ +{"id":974522631,"type":"Feature","bbox":[-87.6460318354593,41.883119584788,-87.64262716493795,41.8857050061925],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.64262716493795,41.883119584788],[-87.64584489828223,41.88312617646971],[-87.6458497656198,41.8832748013494],[-87.6458748439661,41.884291094429],[-87.645891873862,41.8847159328444],[-87.6459040150938,41.8849256858994],[-87.6459308903553,41.8851032685825],[-87.6460318354593,41.8856215780541],[-87.6453798876114,41.8856906678275],[-87.6451538062189,41.8856961609313],[-87.6448093263564,41.8856968954718],[-87.6443769547447,41.8856952350814],[-87.6442434647798,41.885696543093],[-87.6439217851635,41.8856996936195],[-87.6434319067296,41.8857045727413],[-87.6427735033159,41.8857050061925],[-87.64273273136055,41.88570484963493],[-87.64262716493795,41.883119584788]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000008,"geom:area_square_m":76137.369214,"geom:bbox":"-87.6460318355,41.8831195848,-87.6426271649,41.8857050062","geom:latitude":41.884411,"geom:longitude":-87.644284,"iso:country":"US","lbl:latitude":41.883606,"lbl:longitude":-87.644798,"lbl:max_zoom":18,"mps:latitude":41.88441,"mps:longitude":-87.644284,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"historic","mz:tier_metro":1,"name:ceb_x_preferred":["Haymarket"],"name:dan_x_preferred":["Haymarket"],"name:deu_x_preferred":["Haymarket"],"name:eng_x_preferred":["Haymarket Square"],"name:eng_x_variant":["Haymarket"],"name:fra_x_preferred":["Haymarket"],"name:heb_x_preferred":["היימרקט"],"name:jpn_x_preferred":["ヘイマーケット"],"name:kor_x_preferred":["헤이마켓"],"name:mlg_x_preferred":["Haymarket"],"name:nld_x_preferred":["Haymarket"],"name:nor_x_preferred":["Haymarket"],"name:pol_x_preferred":["Haymarket"],"name:swe_x_preferred":["Haymarket"],"reversegeo:latitude":41.88441,"reversegeo:longitude":-87.644284,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865741,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1f61304a98ee5f876b76048e795e155c","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":974522631,"neighbourhood_id":85865741,"region_id":85688697}],"wof:id":974522631,"wof:lastmodified":1566640982,"wof:name":"Haymarket","wof:parent_id":85865741,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85868439],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/975148665.geojson b/fixtures/microhoods/975148665.geojson new file mode 100644 index 0000000..8832b5a --- /dev/null +++ b/fixtures/microhoods/975148665.geojson @@ -0,0 +1 @@ +{"id":975148665,"type":"Feature","bbox":[-87.59678076995618,41.80884977119278,-87.59582121874486,41.80965270552579],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.59583226574418,41.80965270552579],[-87.59582121874486,41.80885411574735],[-87.59676324979128,41.80884977119278],[-87.59678076995618,41.80964203562689],[-87.5964858771057,41.8096449644053],[-87.5960219536887,41.8096502752658],[-87.59583226574418,41.80965270552579]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000001,"geom:area_square_m":6928.640082,"geom:bbox":"-87.59678077,41.8088497712,-87.5958212187,41.8096527055","geom:latitude":41.80925,"geom:longitude":-87.596299,"iso:country":"US","lbl:latitude":41.809247,"lbl:longitude":-87.596266,"lbl:max_zoom":18,"mps:latitude":41.80925,"mps:longitude":-87.596299,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":19,"mz:min_zoom":17,"mz:tier_metro":1,"reversegeo:latitude":41.80925,"reversegeo:longitude":-87.596299,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865719,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"5ed6fa3a3adbb37d96ae9ef46a848a11","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":975148665,"neighbourhood_id":85865719,"region_id":85688697}],"wof:id":975148665,"wof:lastmodified":1566643001,"wof:name":"Kennicott Place","wof:parent_id":85865719,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867647],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/975148671.geojson b/fixtures/microhoods/975148671.geojson new file mode 100644 index 0000000..561bd35 --- /dev/null +++ b/fixtures/microhoods/975148671.geojson @@ -0,0 +1 @@ +{"id":975148671,"type":"Feature","bbox":[-87.62895020595737,41.7216216931449,-87.6243778521792,41.7300939059415],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62870254280409,41.72165957670075],[-87.62895020595737,41.73004059102206],[-87.6288067444999,41.7300423592688],[-87.6280270063311,41.7300517638497],[-87.6273255040185,41.7300593660876],[-87.6269954647523,41.7300653237132],[-87.6266026929674,41.7300691107633],[-87.6263096795424,41.7300728517037],[-87.6253520551019,41.7300841896239],[-87.6250839597332,41.7300873674453],[-87.6245995183045,41.7300939059415],[-87.6245804008503,41.729356520222],[-87.6245196704408,41.7268278664359],[-87.6244552078429,41.7246390555785],[-87.6244191117258,41.7228897595864],[-87.6243778521792,41.7216273200556],[-87.624589741003,41.7216249761173],[-87.6248864510634,41.7216216931449],[-87.6249086279094,41.7216280613913],[-87.6250312475162,41.7216632719202],[-87.6251467325172,41.7216964333493],[-87.6252379137044,41.7216990263358],[-87.6254109763252,41.7216972388444],[-87.6254441046407,41.7216992720222],[-87.6259083529335,41.7216999174974],[-87.6262371758546,41.7216904152628],[-87.6266203779072,41.7216887585635],[-87.627028229893,41.721682537366],[-87.6272632387912,41.7216781625956],[-87.627450030646,41.7216757527498],[-87.6274924067875,41.7216752059545],[-87.6277798258333,41.7216726068141],[-87.6281138770963,41.721667383356],[-87.6283935612886,41.7216618256838],[-87.6286363048858,41.7216604048063],[-87.6286642878266,41.7216600549926],[-87.62870254280409,41.72165957670075]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000036,"geom:area_square_m":335776.866917,"geom:bbox":"-87.628950206,41.7216216931,-87.6243778522,41.7300939059","geom:latitude":41.725876,"geom:longitude":-87.626657,"iso:country":"US","lbl:latitude":41.724705,"lbl:longitude":-87.620924,"lbl:max_zoom":18,"mps:latitude":41.725878,"mps:longitude":-87.626657,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:ceb_x_preferred":["Lilydale"],"name:deu_x_preferred":["Lilydale"],"name:nld_x_preferred":["Lilydale"],"name:pol_x_preferred":["Lilydale"],"name:swe_x_preferred":["Lilydale"],"reversegeo:latitude":41.725878,"reversegeo:longitude":-87.626657,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[420783603,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a4d580c1eb0299654a895bb9960c3172","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":975148671,"neighbourhood_id":420783603,"region_id":85688697}],"wof:id":975148671,"wof:lastmodified":1566643000,"wof:name":"Lilydale","wof:parent_id":420783603,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867661],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/975148675.geojson b/fixtures/microhoods/975148675.geojson new file mode 100644 index 0000000..d8d9708 --- /dev/null +++ b/fixtures/microhoods/975148675.geojson @@ -0,0 +1 @@ +{"id":975148675,"type":"Feature","bbox":[-87.63970754335618,41.90653110470284,-87.63850824713872,41.90923290616514],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.63850824713872,41.90654361690188],[-87.63962291674561,41.90653110470284],[-87.63970754335618,41.90920849693818],[-87.63859834784668,41.90923290616514],[-87.63850824713872,41.90654361690188]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":27472.055292,"geom:bbox":"-87.6397075434,41.9065311047,-87.6385082471,41.9092329062","geom:latitude":41.907878,"geom:longitude":-87.639109,"iso:country":"US","lbl:latitude":41.907836,"lbl:longitude":-87.639198,"lbl:max_zoom":18,"mps:latitude":41.907879,"mps:longitude":-87.639109,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:tier_metro":1,"name:eng_x_preferred":["Marshall Field Garden Apartments"],"name:und_x_variant":["Town and Garden Apartments"],"reversegeo:latitude":41.907879,"reversegeo:longitude":-87.639109,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85890761,102191575,404496273,85633793,85940195,957999223,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"b76b0f1b24ea565eb6aaf5075e0f07e7","wof:hierarchy":[{"borough_id":957999223,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":975148675,"neighbourhood_id":85890761,"region_id":85688697}],"wof:id":975148675,"wof:lastmodified":1566643000,"wof:name":"Marshall Field Garden Apartments","wof:parent_id":85890761,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867683],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/975149661.geojson b/fixtures/microhoods/975149661.geojson new file mode 100644 index 0000000..65c8003 --- /dev/null +++ b/fixtures/microhoods/975149661.geojson @@ -0,0 +1 @@ +{"id":975149661,"type":"Feature","bbox":[-87.7052104402433,41.8445112756223,-87.6854470542783,41.85427192845064],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.7049507288291,41.8445112756223],[-87.7052104402433,41.85396800230979],[-87.7041001155651,41.8539886122719],[-87.7040997003431,41.8539886201508],[-87.7034654249793,41.8540003880633],[-87.7034640537582,41.8540004137489],[-87.7028859957803,41.8540112309804],[-87.7028859918522,41.8540111450635],[-87.7028859533022,41.8540111459496],[-87.7024141965937,41.8540198974295],[-87.7011721974672,41.8540306600806],[-87.7007854871645,41.8540423526586],[-87.68569655236139,41.85427192845064],[-87.6856902255839,41.8540498469231],[-87.6856880246376,41.8538763721089],[-87.6856877452176,41.8538543319393],[-87.6856765254941,41.8533848906187],[-87.6856655931339,41.8529532678703],[-87.6856548430941,41.8525288338815],[-87.6856541119214,41.8525039118822],[-87.6856402639289,41.8520319062106],[-87.6856248261815,41.8515057143541],[-87.6856152263689,41.8511186921065],[-87.6856035350639,41.8506473543594],[-87.6855882390784,41.8502144479996],[-87.6855725852758,41.8497714039348],[-87.6855601061727,41.8493044527236],[-87.6855461271034,41.8487813723227],[-87.6855363214251,41.8483995790146],[-87.6855129868069,41.8474909927921],[-87.6855001878338,41.846992623001],[-87.6854897140561,41.846584872492],[-87.6854709749963,41.8458551261338],[-87.6854607167064,41.8453084355535],[-87.6854552698696,41.8450181471556],[-87.6854470542783,41.8448384179935],[-87.7049507288291,41.8445112756223]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000184,"geom:area_square_m":1698568.884937,"geom:bbox":"-87.7052104402,41.8445112756,-87.6854470543,41.8542719285","geom:latitude":41.849399,"geom:longitude":-87.695331,"iso:country":"US","lbl:latitude":41.850134,"lbl:longitude":-87.697428,"lbl:max_zoom":18,"mps:latitude":41.849399,"mps:longitude":-87.695331,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"reversegeo:latitude":41.849399,"reversegeo:longitude":-87.695331,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85867775,102191575,404496273,85633793,85940195,957979099,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a2d03968eef8389b1bf15d79ba0fb5ce","wof:hierarchy":[{"borough_id":957979099,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":975149661,"neighbourhood_id":85867775,"region_id":85688697}],"wof:id":975149661,"wof:lastmodified":1566643001,"wof:name":"Marshall Square","wof:parent_id":85867775,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867519],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/975150323.geojson b/fixtures/microhoods/975150323.geojson new file mode 100644 index 0000000..12fe00c --- /dev/null +++ b/fixtures/microhoods/975150323.geojson @@ -0,0 +1 @@ +{"id":975150323,"type":"Feature","bbox":[-87.6223425358118,41.84803733489077,-87.61048473348178,41.85579225235347],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6223425358118,41.85304662484297],[-87.6174052141173,41.85310658282185],[-87.61834031122358,41.85529950617418],[-87.61601997744712,41.85579225235347],[-87.61457278238697,41.85227149667827],[-87.61318591340914,41.8526061966422],[-87.61397289754126,41.85461260885204],[-87.6119006129575,41.85506985928023],[-87.61048473348178,41.85154810499379],[-87.61257327158182,41.85103226011106],[-87.61295691462021,41.85197226996382],[-87.61431183563032,41.85165011926222],[-87.6132111029241,41.84902900814556],[-87.6150394189625,41.848473453763],[-87.6150242070526,41.8484290388773],[-87.6150121938014,41.8483939744681],[-87.6149711078792,41.8482739855676],[-87.6149585025718,41.84823935653],[-87.6149188352893,41.8481306290328],[-87.615108608178,41.8481291150223],[-87.6156145202131,41.8481144563852],[-87.6161593453636,41.8481071411962],[-87.6166898066043,41.8481024132898],[-87.6175467723102,41.8480985656481],[-87.6177391765176,41.8480972590803],[-87.6181940253825,41.848090668344],[-87.6185795502081,41.8480793460794],[-87.6190751299035,41.8480732811196],[-87.6197175695532,41.8480635524703],[-87.6201458625716,41.8480570647982],[-87.6213634025473,41.8480417486387],[-87.6218466469186,41.8480447432336],[-87.6221539006919,41.84803733489077],[-87.6223425358118,41.85304662484297]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000056,"geom:area_square_m":513335.14331,"geom:bbox":"-87.6223425358,41.8480373349,-87.6104847335,41.8557922524","geom:latitude":41.851362,"geom:longitude":-87.617073,"iso:country":"US","lbl:latitude":41.852635,"lbl:longitude":-87.612961,"lbl:max_zoom":18,"mps:latitude":41.850602,"mps:longitude":-87.617553,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:eng_x_preferred":["McCormick Place"],"reversegeo:latitude":41.850602,"reversegeo:longitude":-87.617553,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865737,102191575,404496273,85633793,85940195,957999223,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"4202fc1f3910143728c34e753d26b557","wof:hierarchy":[{"borough_id":957999223,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":975150323,"neighbourhood_id":85865737,"region_id":85688697}],"wof:id":975150323,"wof:lastmodified":1566643000,"wof:name":"Mccormick Place","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85833177],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/975150325.geojson b/fixtures/microhoods/975150325.geojson new file mode 100644 index 0000000..2bd97e6 --- /dev/null +++ b/fixtures/microhoods/975150325.geojson @@ -0,0 +1 @@ +{"id":975150325,"type":"Feature","bbox":[-87.6487612752242,41.9183223730124,-87.6361173230483,41.9255845469694],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6388155253388,41.9183223730124],[-87.6487612752242,41.9254538397143],[-87.6479014040977,41.9254653568676],[-87.6475399110597,41.9254721041621],[-87.6472918860919,41.925476763255],[-87.6471825397163,41.9254760516928],[-87.6471490002907,41.925478295815],[-87.64699994752614,41.92548163774023],[-87.6404794530079,41.9255845469694],[-87.6363891723665,41.9188946307294],[-87.6362506329019,41.9186879407643],[-87.6361173230483,41.9184733663886],[-87.6363354406835,41.9184108168428],[-87.6364811643964,41.9183690269679],[-87.6365165460209,41.9183600309721],[-87.636530243045,41.9183565485209],[-87.63656442947,41.9183554170675],[-87.6367173602031,41.9183496221722],[-87.637125003684,41.9183523857176],[-87.63713760868,41.9183521482052],[-87.6372208823418,41.9183505803646],[-87.6376953247327,41.9183416977606],[-87.6378437413168,41.9183389297114],[-87.6378437435212,41.9183389297247],[-87.6379854965984,41.9183359759615],[-87.6382026917401,41.918331470817],[-87.6382027090111,41.9183314706471],[-87.6382651443943,41.9183305387889],[-87.63881550917,41.918322373189],[-87.6388155253388,41.9183223730124]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.00004,"geom:area_square_m":369666.99369,"geom:bbox":"-87.6487612752,41.918322373,-87.636117323,41.925584547","geom:latitude":41.922533,"geom:longitude":-87.641633,"iso:country":"US","lbl:latitude":41.922712,"lbl:longitude":-87.641119,"lbl:max_zoom":18,"mps:latitude":41.923275,"mps:longitude":-87.641729,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":15,"mz:tier_metro":1,"name:eng_x_variant":["Mid North District","Midtown-North","Midtown North"],"reversegeo:latitude":41.923275,"reversegeo:longitude":-87.641729,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85869417,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"a1e0425f34af165321d3caadcaef5828","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":975150325,"neighbourhood_id":85869417,"region_id":85688697}],"wof:id":975150325,"wof:lastmodified":1566643000,"wof:name":"Mid-North District","wof:parent_id":85869417,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867687],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/991748077.geojson b/fixtures/microhoods/991748077.geojson new file mode 100644 index 0000000..446ac05 --- /dev/null +++ b/fixtures/microhoods/991748077.geojson @@ -0,0 +1 @@ +{"id":991748077,"type":"Feature","bbox":[-87.624187457106,41.8883104443066,-87.6141713633744,41.8926107190262],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.62390412520189,41.8924689478157],[-87.61431712436841,41.8926107190262],[-87.6143470140348,41.8919068623862],[-87.614332925154,41.891858147129],[-87.614304340239,41.8917358858543],[-87.6142707529918,41.891621694233],[-87.6142544283212,41.8915228080046],[-87.6142478706514,41.8914598059224],[-87.6142472582407,41.8913849000715],[-87.6142509670598,41.8913132778645],[-87.614258985654,41.8912460248492],[-87.6142532951149,41.8911790622233],[-87.614229102906,41.8911049288552],[-87.6142323800978,41.8909627166844],[-87.6142382460268,41.8907081351649],[-87.614227952218,41.8902440751114],[-87.6142106921977,41.8895823410252],[-87.6142008315335,41.8892042783949],[-87.6141713633744,41.8884100486481],[-87.614425154107,41.8884116377379],[-87.6145510296121,41.8884142665238],[-87.6152659732951,41.8884227162352],[-87.6158497176479,41.8883907446888],[-87.6169216833276,41.8883529256824],[-87.61725531646,41.8883283051532],[-87.6176265391257,41.8883190760088],[-87.6179736843526,41.8883104443066],[-87.6180118355836,41.8883110387108],[-87.6180560308103,41.8883130425933],[-87.6180982999079,41.8883165168998],[-87.6181403682579,41.8883215264395],[-87.6181999060591,41.8883308983244],[-87.6190844791376,41.8884330281711],[-87.6194029946993,41.8884665401099],[-87.6204645166775,41.8885782290942],[-87.6205453472607,41.8885867335872],[-87.6208621486009,41.8886200741435],[-87.6212002862816,41.8886556474048],[-87.6223173869106,41.8887887048114],[-87.6227136768192,41.8888359190632],[-87.6233181602459,41.8888822656926],[-87.6236011104582,41.8889047658969],[-87.6236070650113,41.8889051808543],[-87.6238581066265,41.8888933155257],[-87.6240320259412,41.8888183423857],[-87.624187457106,41.8888226947529],[-87.624064777302,41.8893918056283],[-87.6237148775154,41.8893362411053],[-87.6238414097998,41.8897501405336],[-87.6238508969351,41.8899349412461],[-87.6238536601021,41.8900370439665],[-87.6238671980652,41.8905394877655],[-87.6238752698184,41.8908389339494],[-87.6238807355789,41.8910419864018],[-87.6238887546248,41.8913395661521],[-87.6238966996658,41.8916372005887],[-87.6238991945908,41.8917307950352],[-87.62389501899914,41.89225472982557],[-87.62390412520189,41.8924689478157]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000039,"geom:area_square_m":356484.577074,"geom:bbox":"-87.6241874571,41.8883104443,-87.6141713634,41.892610719","geom:latitude":41.890522,"geom:longitude":-87.61893,"iso:country":"US","lbl:latitude":41.889846,"lbl:longitude":-87.618354,"lbl:max_zoom":18,"mps:latitude":41.890479,"mps:longitude":-87.61893,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:tier_metro":1,"name:fra_x_preferred":["River East"],"reversegeo:latitude":41.890479,"reversegeo:longitude":-87.61893,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865743,102191575,404496273,85633793,85940195,957999223,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"ef1e8fef20eb958e29b3be125c755497","wof:hierarchy":[{"borough_id":957999223,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":991748077,"neighbourhood_id":85865743,"region_id":85688697}],"wof:id":991748077,"wof:lastmodified":1566608568,"wof:name":"River East","wof:parent_id":85865743,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85890765],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/991899741.geojson b/fixtures/microhoods/991899741.geojson new file mode 100644 index 0000000..6be3b13 --- /dev/null +++ b/fixtures/microhoods/991899741.geojson @@ -0,0 +1 @@ +{"id":991899741,"type":"Feature","bbox":[-87.61558760650016,41.80391840535541,-87.61449303270416,41.80581159755108],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.61449303270416,41.80393740537483],[-87.61555060650021,41.80391840535541],[-87.61558760650016,41.80579084639992],[-87.61454615665612,41.80581159755108],[-87.61449303270416,41.80393740537483]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000002,"geom:area_square_m":18130.009766,"geom:bbox":"-87.6155876065,41.8039184054,-87.6144930327,41.8058115976","geom:latitude":41.804862,"geom:longitude":-87.615044,"iso:country":"US","lbl:latitude":41.804669,"lbl:longitude":-87.615019,"lbl:max_zoom":18,"mps:latitude":41.804865,"mps:longitude":-87.615045,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":17,"mz:tier_metro":1,"name:eng_x_preferred":["Washington Park Court District"],"name:fra_x_preferred":["Washington Park Court District"],"reversegeo:latitude":41.804865,"reversegeo:longitude":-87.615045,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85867527,102191575,404496273,85633793,85940195,958036681,102084317,85688697],"wof:breaches":[],"wof:concordances":{"wd:id":"Q7972105"},"wof:controlled":[],"wof:country":"US","wof:geomhash":"8942d0881ccea5bd5661eb271167f83f","wof:hierarchy":[{"borough_id":958036681,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":991899741,"neighbourhood_id":85867527,"region_id":85688697}],"wof:id":991899741,"wof:lastmodified":1566608568,"wof:name":"Washington Park Court","wof:parent_id":85867527,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867799],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/991907383.geojson b/fixtures/microhoods/991907383.geojson new file mode 100644 index 0000000..9c57d8b --- /dev/null +++ b/fixtures/microhoods/991907383.geojson @@ -0,0 +1 @@ +{"id":991907383,"type":"Feature","bbox":[-87.62487670620095,41.8967226321393,-87.6217741332925,41.89761522420647],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6248445189564,41.8967226321393],[-87.62487670620095,41.89757173592432],[-87.62178945147616,41.89761522420647],[-87.6217741332925,41.89675801344585],[-87.6244700435154,41.8967303971119],[-87.6248445189564,41.8967226321393]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000003,"geom:area_square_m":24136.100751,"geom:bbox":"-87.6248767062,41.8967226321,-87.6217741333,41.8976152242","geom:latitude":41.897168,"geom:longitude":-87.623318,"iso:country":"US","lbl:latitude":41.896701,"lbl:longitude":-87.622745,"lbl:max_zoom":18,"mps:latitude":41.897168,"mps:longitude":-87.623322,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":1,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":13,"mz:tier_metro":1,"name:eng_x_preferred":["Old Chicago Water Tower District"],"name:eng_x_variant":["Water Tower"],"reversegeo:latitude":41.897168,"reversegeo:longitude":-87.623322,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865743,102191575,404496273,85633793,85940195,957999223,102084317,85688697,85866925],"wof:breaches":[],"wof:concordances":{},"wof:controlled":["wof:hierarchy","wof:parent_id"],"wof:country":"US","wof:geomhash":"3095b80ef6e98f5a72982eb40a31ebbe","wof:hierarchy":[{"borough_id":957999223,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":991907383,"neighbourhood_id":85865743,"region_id":85688697},{"borough_id":957999223,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":991907383,"neighbourhood_id":85866925,"region_id":85688697}],"wof:id":991907383,"wof:lastmodified":1566608568,"wof:name":"Water Tower","wof:parent_id":-3,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85866933],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/991931065.geojson b/fixtures/microhoods/991931065.geojson new file mode 100644 index 0000000..a427f52 --- /dev/null +++ b/fixtures/microhoods/991931065.geojson @@ -0,0 +1 @@ +{"id":991931065,"type":"Feature","bbox":[-87.6747054529721,41.9833573903554,-87.6697253697159,41.9907976951786],"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.6747054529721,41.9907634737427],[-87.670024334903,41.9907976951786],[-87.670022415213,41.9907420971618],[-87.6700073023963,41.9903152411387],[-87.6699954025445,41.9899909429082],[-87.6699925291093,41.9899125266171],[-87.6699920465476,41.9898993429183],[-87.6699836757014,41.9896984214994],[-87.66995769212136,41.98943685072421],[-87.66990851333563,41.98903565931739],[-87.6698349524955,41.988527388241],[-87.66977615552541,41.98800991580012],[-87.66972688288939,41.98756085541391],[-87.6697253697159,41.9871598833378],[-87.66974876845369,41.98675914693277],[-87.66980469531626,41.98635800043198],[-87.6698448654195,41.98601616894614],[-87.66981925670581,41.98347578619387],[-87.6700660660664,41.9834706885944],[-87.6704412931009,41.9834649400343],[-87.6704580689185,41.9834646584797],[-87.6709483461525,41.9834570113823],[-87.6715168427674,41.9834483288236],[-87.6720745760722,41.9834393775565],[-87.6722667567898,41.9834361480226],[-87.6724476626796,41.9834331153291],[-87.6727990862709,41.9834281819423],[-87.6728602225331,41.9834269917353],[-87.6730160084471,41.9834239006093],[-87.6732228257059,41.983419822283],[-87.6735963843906,41.9834130933459],[-87.6739727409441,41.9834074267231],[-87.6740234189519,41.9834066409683],[-87.674260226473,41.9834030823469],[-87.6744739946237,41.9833944434961],[-87.6746092440844,41.9833573903554],[-87.6746098925301,41.9834664679431],[-87.6746203284609,41.983808810663],[-87.6746303877159,41.9841422454594],[-87.6746326636008,41.9842166171876],[-87.6746381552665,41.9843990675098],[-87.6746445541177,41.9846297467929],[-87.674651440043,41.9848775125801],[-87.6746581194002,41.9851188455988],[-87.6746652609575,41.9853758967204],[-87.6746774294643,41.9858302091573],[-87.6746879473937,41.9862100077279],[-87.6746966141691,41.9865272529696],[-87.6746905996609,41.9866036434791],[-87.6746529678082,41.9866819771324],[-87.6745996298341,41.9867929616404],[-87.6746043109931,41.9869367579876],[-87.6746162808819,41.9873232878269],[-87.6746285550523,41.9878089737296],[-87.6746378122071,41.9882126880059],[-87.6746405619545,41.9883281268024],[-87.6746452431451,41.9885249203656],[-87.6746526991347,41.9887893070009],[-87.6746552671902,41.9888807349642],[-87.6746663026656,41.9893012225517],[-87.6746797898072,41.9897601113305],[-87.6746876938867,41.9901059023199],[-87.6747054529721,41.9907634737427]]]]},"properties":{"edtf:cessation":"uuuu","edtf:inception":"uuuu","geom:area":0.000035,"geom:area_square_m":324320.227882,"geom:bbox":"-87.674705453,41.9833573904,-87.6697253697,41.9907976952","geom:latitude":41.987092,"geom:longitude":-87.672254,"iso:country":"US","lbl:latitude":41.983486,"lbl:longitude":-87.673869,"lbl:max_zoom":18,"mps:latitude":41.987109,"mps:longitude":-87.67222,"mz:hierarchy_label":1,"mz:is_current":1,"mz:is_funky":0,"mz:is_hard_boundary":0,"mz:is_landuse_aoi":0,"mz:is_official":0,"mz:max_zoom":18,"mz:min_zoom":16,"mz:note":"GNIS","mz:tier_metro":1,"reversegeo:latitude":41.987109,"reversegeo:longitude":-87.67222,"src:geom":"mz","src:lbl_centroid":"mz","wof:belongsto":[85865775,102191575,404496273,85633793,85940195,958020405,102084317,85688697],"wof:breaches":[],"wof:concordances":{},"wof:controlled":[],"wof:country":"US","wof:geomhash":"1c39ca32a4ce55e8b2ab54dff4599212","wof:hierarchy":[{"borough_id":958020405,"continent_id":102191575,"country_id":85633793,"county_id":102084317,"localadmin_id":404496273,"locality_id":85940195,"microhood_id":991931065,"neighbourhood_id":85865775,"region_id":85688697}],"wof:id":991931065,"wof:lastmodified":1566608568,"wof:name":"West Edgewater","wof:parent_id":85865775,"wof:placetype":"microhood","wof:repo":"whosonfirst-data-admin-us","wof:superseded_by":[],"wof:supersedes":[85867801],"wof:tags":[]}} \ No newline at end of file diff --git a/fixtures/microhoods/microhoods.go b/fixtures/microhoods/microhoods.go new file mode 100644 index 0000000..ec1eada --- /dev/null +++ b/fixtures/microhoods/microhoods.go @@ -0,0 +1,8 @@ +package microhoods + +import ( + "embed" +) + +//go:embed *.geojson +var FS embed.FS diff --git a/flags/common.go b/flags/common.go index 84de111..0de388e 100644 --- a/flags/common.go +++ b/flags/common.go @@ -7,7 +7,7 @@ import ( "github.com/sfomuseum/go-flags/flagset" "github.com/sfomuseum/go-flags/lookup" "github.com/whosonfirst/go-reader" - "github.com/whosonfirst/go-whosonfirst-spatial/database" + // "github.com/whosonfirst/go-whosonfirst-spatial/database" ) func CommonFlags() (*flag.FlagSet, error) { @@ -27,8 +27,8 @@ func AppendCommonFlags(fs *flag.FlagSet) error { // spatial databases - available_databases := database.Schemes() - desc_databases := fmt.Sprintf("A valid whosonfirst/go-whosonfirst-spatial/data.SpatialDatabase URI. options are: %s", available_databases) + // available_databases := database.Schemes() + desc_databases := fmt.Sprintf("A valid whosonfirst/go-whosonfirst-spatial/data.SpatialDatabase URI. options are: %s", "...") fs.String(SpatialDatabaseURIFlag, "", desc_databases) diff --git a/go.mod b/go.mod index 268aa26..a23eff4 100644 --- a/go.mod +++ b/go.mod @@ -5,12 +5,15 @@ go 1.22.2 require ( github.com/aaronland/go-roster v1.0.0 github.com/aws/aws-lambda-go v1.47.0 + github.com/dhconnelly/rtreego v1.2.0 + github.com/patrickmn/go-cache v2.1.0+incompatible github.com/paulmach/orb v0.11.1 github.com/sfomuseum/go-flags v0.10.0 github.com/sfomuseum/go-sfomuseum-mapshaper v0.0.3 github.com/sfomuseum/go-timings v1.2.1 github.com/tidwall/gjson v1.17.1 github.com/tidwall/sjson v1.2.5 + github.com/whosonfirst/go-ioutil v1.0.2 github.com/whosonfirst/go-reader v1.0.2 github.com/whosonfirst/go-sanitize v0.1.0 github.com/whosonfirst/go-whosonfirst-export/v2 v2.7.1 @@ -20,6 +23,7 @@ require ( github.com/whosonfirst/go-whosonfirst-placetypes v0.7.2 github.com/whosonfirst/go-whosonfirst-reader v1.0.2 github.com/whosonfirst/go-whosonfirst-spr/v2 v2.3.7 + github.com/whosonfirst/go-whosonfirst-uri v1.3.0 github.com/whosonfirst/go-whosonfirst-writer/v3 v3.1.0 github.com/whosonfirst/go-writer/v3 v3.1.1 github.com/whosonfirst/warning v0.1.1 @@ -47,12 +51,10 @@ require ( github.com/sfomuseum/iso8601duration v1.1.0 // indirect github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.0 // indirect - github.com/whosonfirst/go-ioutil v1.0.2 // indirect github.com/whosonfirst/go-whosonfirst-crawl v0.2.2 // indirect github.com/whosonfirst/go-whosonfirst-format v0.4.1 // indirect github.com/whosonfirst/go-whosonfirst-id v1.2.2 // indirect github.com/whosonfirst/go-whosonfirst-sources v0.1.0 // indirect - github.com/whosonfirst/go-whosonfirst-uri v1.3.0 // indirect github.com/whosonfirst/walk v0.0.2 // indirect go.mongodb.org/mongo-driver v1.11.4 // indirect go.uber.org/ratelimit v0.3.0 // indirect diff --git a/go.sum b/go.sum index 4741cea..06f6cea 100644 --- a/go.sum +++ b/go.sum @@ -30,6 +30,8 @@ github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyY github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dhconnelly/rtreego v1.2.0 h1:LWhGPhw+iGuhg8hmHA/H8WV60qKtzecOjii0FMevGlk= +github.com/dhconnelly/rtreego v1.2.0/go.mod h1:SDozu0Fjy17XH1svEXJgdYq8Tah6Zjfa/4Q33Z80+KM= github.com/dominikbraun/graph v0.23.0 h1:TdZB4pPqCLFxYhdyMFb1TBdFxp8XLcJfTTBQucVPgCo= github.com/dominikbraun/graph v0.23.0/go.mod h1:yOjYyogZLY1LSG9E33JWZJiq5k83Qy2C6POAuiViluc= github.com/g8rswimmer/error-chain v1.0.0 h1:WnwnunlvqtGPHVHmBfbmUyAgrtag8Y6nNpwLWmtSYOQ= @@ -55,6 +57,8 @@ github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= github.com/natefinch/atomic v1.0.1 h1:ZPYKxkqQOx3KZ+RsbnP/YsgvxWQPGxjC0oBt2AhwV0A= github.com/natefinch/atomic v1.0.1/go.mod h1:N/D/ELrljoqDyT3rZrsUmtsuzvHkeB/wWjHV22AZRbM= +github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc= +github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= github.com/paulmach/orb v0.11.1 h1:3koVegMC4X/WeiXYz9iswopaTwMem53NzTJuTF20JzU= github.com/paulmach/orb v0.11.1/go.mod h1:5mULz1xQfs3bmQm63QEJA6lNGujuRafwA5S/EnuLaLU= github.com/paulmach/protoscan v0.2.1/go.mod h1:SpcSwydNLrxUGSDvXvO0P7g7AuhJ7lcKfDlhJCDw2gY= diff --git a/pip/pip.go b/pip/pip.go index 28a03fc..2e647c7 100644 --- a/pip/pip.go +++ b/pip/pip.go @@ -1,14 +1,11 @@ package pip import ( - "flag" "net/url" "strconv" - "github.com/sfomuseum/go-flags/lookup" "github.com/whosonfirst/go-whosonfirst-spatial" "github.com/whosonfirst/go-whosonfirst-spatial/filter" - "github.com/whosonfirst/go-whosonfirst-spatial/flags" ) type PointInPolygonRequest struct { @@ -28,116 +25,6 @@ type PointInPolygonRequest struct { Sort []string `json:"sort,omitempty"` } -func NewPointInPolygonRequestFromFlagSet(fs *flag.FlagSet) (*PointInPolygonRequest, error) { - - req := &PointInPolygonRequest{} - - latitude, err := lookup.Float64Var(fs, flags.LATITUDE) - - if err != nil { - return nil, err - } - - req.Latitude = latitude - - longitude, err := lookup.Float64Var(fs, flags.LONGITUDE) - - if err != nil { - return nil, err - } - - req.Longitude = longitude - - placetypes, err := lookup.MultiStringVar(fs, flags.PLACETYPES) - - if err != nil { - return nil, err - } - - req.Placetypes = placetypes - - inception_date, err := lookup.StringVar(fs, flags.INCEPTION_DATE) - - if err != nil { - return nil, err - } - - cessation_date, err := lookup.StringVar(fs, flags.CESSATION_DATE) - - if err != nil { - return nil, err - } - - req.InceptionDate = inception_date - req.CessationDate = cessation_date - - geometries, err := lookup.StringVar(fs, flags.GEOMETRIES) - - if err != nil { - return nil, err - } - - req.Geometries = geometries - - alt_geoms, err := lookup.MultiStringVar(fs, flags.ALTERNATE_GEOMETRIES) - - if err != nil { - return nil, err - } - - req.AlternateGeometries = alt_geoms - - is_current, err := lookup.MultiInt64Var(fs, flags.IS_CURRENT) - - if err != nil { - return nil, err - } - - req.IsCurrent = is_current - - is_ceased, err := lookup.MultiInt64Var(fs, flags.IS_CEASED) - - if err != nil { - return nil, err - } - - req.IsCeased = is_ceased - - is_deprecated, err := lookup.MultiInt64Var(fs, flags.IS_DEPRECATED) - - if err != nil { - return nil, err - } - - req.IsDeprecated = is_deprecated - - is_superseded, err := lookup.MultiInt64Var(fs, flags.IS_SUPERSEDED) - - if err != nil { - return nil, err - } - - req.IsSuperseded = is_superseded - - is_superseding, err := lookup.MultiInt64Var(fs, flags.IS_SUPERSEDING) - - if err != nil { - return nil, err - } - - req.IsSuperseding = is_superseding - - sort_uris, err := lookup.MultiStringVar(fs, "sort-uri") - - if err != nil { - return nil, err - } - - req.Sort = sort_uris - - return req, nil -} - func NewSPRFilterFromPointInPolygonRequest(req *PointInPolygonRequest) (spatial.Filter, error) { q := url.Values{} diff --git a/pip/query.go b/pip/query.go index 97b9e5e..cfaf092 100644 --- a/pip/query.go +++ b/pip/query.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/sfomuseum/go-timings" - spatial_app "github.com/whosonfirst/go-whosonfirst-spatial/app/spatial" + spatial_app "github.com/whosonfirst/go-whosonfirst-spatial/application" "github.com/whosonfirst/go-whosonfirst-spatial/geo" "github.com/whosonfirst/go-whosonfirst-spr/v2" "github.com/whosonfirst/go-whosonfirst-spr/v2/sort" diff --git a/vendor/github.com/dhconnelly/rtreego/.gitignore b/vendor/github.com/dhconnelly/rtreego/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/vendor/github.com/dhconnelly/rtreego/.travis.yml b/vendor/github.com/dhconnelly/rtreego/.travis.yml new file mode 100644 index 0000000..4f2ee4d --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/.travis.yml @@ -0,0 +1 @@ +language: go diff --git a/vendor/github.com/dhconnelly/rtreego/LICENSE b/vendor/github.com/dhconnelly/rtreego/LICENSE new file mode 100644 index 0000000..8145134 --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/LICENSE @@ -0,0 +1,29 @@ +BSD 3-Clause License + +Copyright (c) 2019, Daniel Connelly +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/github.com/dhconnelly/rtreego/README.md b/vendor/github.com/dhconnelly/rtreego/README.md new file mode 100644 index 0000000..0360cd8 --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/README.md @@ -0,0 +1,196 @@ +rtreego +======= + +A library for efficiently storing and querying spatial data +in the Go programming language. + +[![CI](https://github.com/dhconnelly/rtreego/actions/workflows/go.yml/badge.svg)](https://github.com/dhconnelly/rtreego/actions/workflows/go.yml) +[![Go Report Card](https://goreportcard.com/badge/github.com/dhconnelly/rtreego)](https://goreportcard.com/report/github.com/dhconnelly/rtreego) +[![GoDoc](https://godoc.org/github.com/dhconnelly/rtreego?status.svg)](https://godoc.org/github.com/dhconnelly/rtreego) + +About +----- + +The R-tree is a popular data structure for efficiently storing and +querying spatial objects; one common use is implementing geospatial +indexes in database management systems. Both bounding-box queries +and k-nearest-neighbor queries are supported. + +R-trees are balanced, so maximum tree height is guaranteed to be +logarithmic in the number of entries; however, good worst-case +performance is not guaranteed. Instead, a number of rebalancing +heuristics are applied that perform well in practice. For more +details please refer to the references. + +This implementation handles the general N-dimensional case; for a more +efficient implementation for the 3-dimensional case, see [Patrick +Higgins' fork](https://github.com/patrick-higgins/rtreego). + +Getting Started +--------------- + +Get the source code from [GitHub](https://github.com/dhconnelly/rtreego) or, +with Go 1 installed, run `go get github.com/dhconnelly/rtreego`. + +Make sure you `import github.com/dhconnelly/rtreego` in your Go source files. + +Documentation +------------- + +### Storing, updating, and deleting objects + +To create a new tree, specify the number of spatial dimensions and the minimum +and maximum branching factor: +```Go + rt := rtreego.NewTree(2, 25, 50) +``` +You can also bulk-load the tree when creating it by passing the objects as +a parameter. +```Go + rt := rtreego.NewTree(2, 25, 50, objects...) +``` +Any type that implements the `Spatial` interface can be stored in the tree: +```Go + type Spatial interface { + Bounds() *Rect + } +``` +`Rect`s are data structures for representing spatial objects, while `Point`s +represent spatial locations. Creating `Point`s is easy--they're just slices +of `float64`s: +```Go + p1 := rtreego.Point{0.4, 0.5} + p2 := rtreego.Point{6.2, -3.4} +``` +To create a `Rect`, specify a location and the lengths of the sides: +```Go + r1, _ := rtreego.NewRect(p1, []float64{1, 2}) + r2, _ := rtreego.NewRect(p2, []float64{1.7, 2.7}) +``` +To demonstrate, let's create and store some test data. +```Go + type Thing struct { + where *Rect + name string + } + + func (t *Thing) Bounds() *Rect { + return t.where + } + + rt.Insert(&Thing{r1, "foo"}) + rt.Insert(&Thing{r2, "bar"}) + + size := rt.Size() // returns 2 +``` +We can insert and delete objects from the tree in any order. +```Go + rt.Delete(thing2) + // do some stuff... + rt.Insert(anotherThing) +``` +Note that ```Delete``` function does the equality comparison by comparing the +memory addresses of the objects. If you do not have a pointer to the original +object anymore, you can define a custom comparator. +```Go + type Comparator func(obj1, obj2 Spatial) (equal bool) +``` +You can use a custom comparator with ```DeleteWithComparator``` function. +```Go + cmp := func(obj1, obj2 Spatial) bool { + sp1 := obj1.(*IDRect) + sp2 := obj2.(*IDRect) + + return sp1.ID == sp2.ID + } + + rt.DeleteWithComparator(obj, cmp) +``` +If you want to store points instead of rectangles, you can easily convert a +point into a rectangle using the `ToRect` method: +```Go + var tol = 0.01 + + type Somewhere struct { + location rtreego.Point + name string + wormhole chan int + } + + func (s *Somewhere) Bounds() *Rect { + // define the bounds of s to be a rectangle centered at s.location + // with side lengths 2 * tol: + return s.location.ToRect(tol) + } + + rt.Insert(&Somewhere{rtreego.Point{0, 0}, "Someplace", nil}) +``` +If you want to update the location of an object, you must delete it, update it, +and re-insert. Just modifying the object so that the `*Rect` returned by +`Location()` changes, without deleting and re-inserting the object, will +corrupt the tree. + +### Queries + +Bounding-box and k-nearest-neighbors queries are supported. + +Bounding-box queries require a search `*Rect`. This function will return all +objects which has a non-zero intersection volume with the input search rectangle. +```Go + bb, _ := rtreego.NewRect(rtreego.Point{1.7, -3.4}, []float64{3.2, 1.9}) + + // Get a slice of the objects in rt that intersect bb: + results := rt.SearchIntersect(bb) +``` +### Filters + +You can filter out values during searches by implementing Filter functions. +```Go + type Filter func(results []Spatial, object Spatial) (refuse, abort bool) +``` +A filter for limiting results by result count is included in the package for +backwards compatibility. +```Go + // maximum of three results will be returned + tree.SearchIntersect(bb, LimitFilter(3)) +``` +Nearest-neighbor queries find the objects in a tree closest to a specified +query point. +```Go + q := rtreego.Point{6.5, -2.47} + k := 5 + + // Get a slice of the k objects in rt closest to q: + results = rt.NearestNeighbors(k, q) +``` +### More information + +See [GoDoc](http://godoc.org/github.com/dhconnelly/rtreego) for full API +documentation. + +References +---------- + +- A. Guttman. R-trees: A Dynamic Index Structure for Spatial Searching. + Proceedings of ACM SIGMOD, pages 47-57, 1984. + http://www.cs.jhu.edu/~misha/ReadingSeminar/Papers/Guttman84.pdf + +- N. Beckmann, H .P. Kriegel, R. Schneider and B. Seeger. The R*-tree: An + Efficient and Robust Access Method for Points and Rectangles. Proceedings + of ACM SIGMOD, pages 323-331, May 1990. + http://infolab.usc.edu/csci587/Fall2011/papers/p322-beckmann.pdf + +- N. Roussopoulos, S. Kelley and F. Vincent. Nearest Neighbor Queries. ACM + SIGMOD, pages 71-79, 1995. + http://www.postgis.org/support/nearestneighbor.pdf + +Author +------ + +Written by [Daniel Connelly](http://dhconnelly.com) (). + +License +------- + +rtreego is released under a BSD-style license, described in the `LICENSE` +file. diff --git a/vendor/github.com/dhconnelly/rtreego/filter.go b/vendor/github.com/dhconnelly/rtreego/filter.go new file mode 100644 index 0000000..3e037bd --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/filter.go @@ -0,0 +1,32 @@ +package rtreego + +// Filter is an interface for filtering leaves during search. The parameters +// should be treated as read-only. If refuse is true, the current entry will +// not be added to the result set. If abort is true, the search is aborted and +// the current result set will be returned. +type Filter func(results []Spatial, object Spatial) (refuse, abort bool) + +// ApplyFilters applies the given filters and returns whether the entry is +// refused and/or the search should be aborted. If a filter refuses an entry, +// the following filters are not applied for the entry. If a filter aborts, the +// search terminates without further applying any filter. +func applyFilters(results []Spatial, object Spatial, filters []Filter) (bool, bool) { + for _, filter := range filters { + refuse, abort := filter(results, object) + if refuse || abort { + return refuse, abort + } + } + return false, false +} + +// LimitFilter checks if the results have reached the limit size and aborts if so. +func LimitFilter(limit int) Filter { + return func(results []Spatial, object Spatial) (refuse, abort bool) { + if len(results) >= limit { + return true, true + } + + return false, false + } +} diff --git a/vendor/github.com/dhconnelly/rtreego/geom.go b/vendor/github.com/dhconnelly/rtreego/geom.go new file mode 100644 index 0000000..cb253c6 --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/geom.go @@ -0,0 +1,357 @@ +// Copyright 2012 Daniel Connelly. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package rtreego + +import ( + "fmt" + "math" + "strings" +) + +// DimError represents a failure due to mismatched dimensions. +type DimError struct { + Expected int + Actual int +} + +func (err DimError) Error() string { + return "rtreego: dimension mismatch" +} + +// DistError is an improper distance measurement. It implements the error +// and is generated when a distance-related assertion fails. +type DistError float64 + +func (err DistError) Error() string { + return "rtreego: improper distance" +} + +// Point represents a point in n-dimensional Euclidean space. +type Point []float64 + +func (p Point) Copy() Point { + result := make(Point, len(p)) + copy(result, p) + return result +} + +// Dist computes the Euclidean distance between two points p and q. +func (p Point) dist(q Point) float64 { + if len(p) != len(q) { + panic(DimError{len(p), len(q)}) + } + sum := 0.0 + for i := range p { + dx := p[i] - q[i] + sum += dx * dx + } + return math.Sqrt(sum) +} + +// minDist computes the square of the distance from a point to a rectangle. +// If the point is contained in the rectangle then the distance is zero. +// +// Implemented per Definition 2 of "Nearest Neighbor Queries" by +// N. Roussopoulos, S. Kelley and F. Vincent, ACM SIGMOD, pages 71-79, 1995. +func (p Point) minDist(r Rect) float64 { + if len(p) != len(r.p) { + panic(DimError{len(p), len(r.p)}) + } + + sum := 0.0 + for i, pi := range p { + if pi < r.p[i] { + d := pi - r.p[i] + sum += d * d + } else if pi > r.q[i] { + d := pi - r.q[i] + sum += d * d + } else { + sum += 0 + } + } + return sum +} + +// minMaxDist computes the minimum of the maximum distances from p to points +// on r. If r is the bounding box of some geometric objects, then there is +// at least one object contained in r within minMaxDist(p, r) of p. +// +// Implemented per Definition 4 of "Nearest Neighbor Queries" by +// N. Roussopoulos, S. Kelley and F. Vincent, ACM SIGMOD, pages 71-79, 1995. +func (p Point) minMaxDist(r Rect) float64 { + if len(p) != len(r.p) { + panic(DimError{len(p), len(r.p)}) + } + + // by definition, MinMaxDist(p, r) = + // min{1<=k<=n}(|pk - rmk|^2 + sum{1<=i<=n, i != k}(|pi - rMi|^2)) + // where rmk and rMk are defined as follows: + + rm := func(k int) float64 { + if p[k] <= (r.p[k]+r.q[k])/2 { + return r.p[k] + } + return r.q[k] + } + + rM := func(k int) float64 { + if p[k] >= (r.p[k]+r.q[k])/2 { + return r.p[k] + } + return r.q[k] + } + + // This formula can be computed in linear time by precomputing + // S = sum{1<=i<=n}(|pi - rMi|^2). + + S := 0.0 + for i := range p { + d := p[i] - rM(i) + S += d * d + } + + // Compute MinMaxDist using the precomputed S. + min := math.MaxFloat64 + for k := range p { + d1 := p[k] - rM(k) + d2 := p[k] - rm(k) + d := S - d1*d1 + d2*d2 + if d < min { + min = d + } + } + + return min +} + +// Rect represents a subset of n-dimensional Euclidean space of the form +// [a1, b1] x [a2, b2] x ... x [an, bn], where ai < bi for all 1 <= i <= n. +type Rect struct { + p, q Point // Enforced by NewRect: p[i] <= q[i] for all i. +} + +// PointCoord returns the coordinate of the point of the rectangle at i +func (r Rect) PointCoord(i int) float64 { + return r.p[i] +} + +// LengthsCoord returns the coordinate of the lengths of the rectangle at i +func (r Rect) LengthsCoord(i int) float64 { + return r.q[i] - r.p[i] +} + +// Equal returns true if the two rectangles are equal +func (r Rect) Equal(other Rect) bool { + for i, e := range r.p { + if e != other.p[i] { + return false + } + } + for i, e := range r.q { + if e != other.q[i] { + return false + } + } + return true +} + +func (r Rect) String() string { + s := make([]string, len(r.p)) + for i, a := range r.p { + b := r.q[i] + s[i] = fmt.Sprintf("[%.2f, %.2f]", a, b) + } + return strings.Join(s, "x") +} + +// NewRect constructs and returns a pointer to a Rect given a corner point and +// the lengths of each dimension. The point p should be the most-negative point +// on the rectangle (in every dimension) and every length should be positive. +func NewRect(p Point, lengths []float64) (r Rect, err error) { + r.p = p + if len(p) != len(lengths) { + err = &DimError{len(p), len(lengths)} + return + } + r.q = make([]float64, len(p)) + for i := range p { + if lengths[i] <= 0 { + err = DistError(lengths[i]) + return + } + r.q[i] = p[i] + lengths[i] + } + return +} + +// NewRectFromPoints constructs and returns a pointer to a Rect given a corner points. +func NewRectFromPoints(minPoint, maxPoint Point) (r Rect, err error) { + if len(minPoint) != len(maxPoint) { + err = &DimError{len(minPoint), len(maxPoint)} + return + } + + // check that min and max point coordinates require swapping + copied := false + for i, p := range minPoint { + if minPoint[i] > maxPoint[i] { + if !copied { + minPoint = minPoint.Copy() + maxPoint = maxPoint.Copy() + copied = true + } + minPoint[i] = maxPoint[i] + maxPoint[i] = p + } + } + + r = Rect{p: minPoint, q: maxPoint} + return +} + +// Size computes the measure of a rectangle (the product of its side lengths). +func (r Rect) Size() float64 { + size := 1.0 + for i, a := range r.p { + b := r.q[i] + size *= b - a + } + return size +} + +// margin computes the sum of the edge lengths of a rectangle. +func (r Rect) margin() float64 { + // The number of edges in an n-dimensional rectangle is n * 2^(n-1) + // (http://en.wikipedia.org/wiki/Hypercube_graph). Thus the number + // of edges of length (ai - bi), where the rectangle is determined + // by p = (a1, a2, ..., an) and q = (b1, b2, ..., bn), is 2^(n-1). + // + // The margin of the rectangle, then, is given by the formula + // 2^(n-1) * [(b1 - a1) + (b2 - a2) + ... + (bn - an)]. + dim := len(r.p) + sum := 0.0 + for i, a := range r.p { + b := r.q[i] + sum += b - a + } + return math.Pow(2, float64(dim-1)) * sum +} + +// containsPoint tests whether p is located inside or on the boundary of r. +func (r Rect) containsPoint(p Point) bool { + if len(p) != len(r.p) { + panic(DimError{len(r.p), len(p)}) + } + + for i, a := range p { + // p is contained in (or on) r if and only if p <= a <= q for + // every dimension. + if a < r.p[i] || a > r.q[i] { + return false + } + } + + return true +} + +// containsRect tests whether r2 is is located inside r1. +func (r Rect) containsRect(r2 Rect) bool { + if len(r.p) != len(r2.p) { + panic(DimError{len(r.p), len(r2.p)}) + } + + for i, a1 := range r.p { + b1, a2, b2 := r.q[i], r2.p[i], r2.q[i] + // enforced by constructor: a1 <= b1 and a2 <= b2. + // so containment holds if and only if a1 <= a2 <= b2 <= b1 + // for every dimension. + if a1 > a2 || b2 > b1 { + return false + } + } + + return true +} + +// intersect computes the intersection of two rectangles. If no intersection +// exists, the intersection is nil. +func intersect(r1, r2 Rect) bool { + dim := len(r1.p) + if len(r2.p) != dim { + panic(DimError{dim, len(r2.p)}) + } + + // There are four cases of overlap: + // + // 1. a1------------b1 + // a2------------b2 + // p--------q + // + // 2. a1------------b1 + // a2------------b2 + // p--------q + // + // 3. a1-----------------b1 + // a2-------b2 + // p--------q + // + // 4. a1-------b1 + // a2-----------------b2 + // p--------q + // + // Thus there are only two cases of non-overlap: + // + // 1. a1------b1 + // a2------b2 + // + // 2. a1------b1 + // a2------b2 + // + // Enforced by constructor: a1 <= b1 and a2 <= b2. So we can just + // check the endpoints. + + for i := range r1.p { + a1, b1, a2, b2 := r1.p[i], r1.q[i], r2.p[i], r2.q[i] + if b2 <= a1 || b1 <= a2 { + return false + } + } + return true +} + +// ToRect constructs a rectangle containing p with side lengths 2*tol. +func (p Point) ToRect(tol float64) Rect { + dim := len(p) + a, b := make([]float64, dim), make([]float64, dim) + for i := range p { + a[i] = p[i] - tol + b[i] = p[i] + tol + } + return Rect{a, b} +} + +// boundingBox constructs the smallest rectangle containing both r1 and r2. +func boundingBox(r1, r2 Rect) (bb Rect) { + dim := len(r1.p) + bb.p = make([]float64, dim) + bb.q = make([]float64, dim) + if len(r2.p) != dim { + panic(DimError{dim, len(r2.p)}) + } + for i := 0; i < dim; i++ { + if r1.p[i] <= r2.p[i] { + bb.p[i] = r1.p[i] + } else { + bb.p[i] = r2.p[i] + } + if r1.q[i] <= r2.q[i] { + bb.q[i] = r2.q[i] + } else { + bb.q[i] = r1.q[i] + } + } + return +} diff --git a/vendor/github.com/dhconnelly/rtreego/rtree.go b/vendor/github.com/dhconnelly/rtreego/rtree.go new file mode 100644 index 0000000..f9da0ad --- /dev/null +++ b/vendor/github.com/dhconnelly/rtreego/rtree.go @@ -0,0 +1,874 @@ +// Copyright 2012 Daniel Connelly. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package rtreego is a library for efficiently storing and querying spatial data. +package rtreego + +import ( + "fmt" + "math" + "sort" +) + +// Comparator compares two spatials and returns whether they are equal. +type Comparator func(obj1, obj2 Spatial) (equal bool) + +func defaultComparator(obj1, obj2 Spatial) bool { + return obj1 == obj2 +} + +// Rtree represents an R-tree, a balanced search tree for storing and querying +// spatial objects. Dim specifies the number of spatial dimensions and +// MinChildren/MaxChildren specify the minimum/maximum branching factors. +type Rtree struct { + Dim int + MinChildren int + MaxChildren int + root *node + size int + height int + + // deleted is a temporary buffer to avoid memory allocations in Delete. + // It is just an optimization and not part of the data structure. + deleted []*node +} + +// NewTree returns an Rtree. If the number of objects given on initialization +// is larger than max, the Rtree will be initialized using the Overlap +// Minimizing Top-down bulk-loading algorithm. +func NewTree(dim, min, max int, objs ...Spatial) *Rtree { + rt := &Rtree{ + Dim: dim, + MinChildren: min, + MaxChildren: max, + height: 1, + root: &node{ + entries: []entry{}, + leaf: true, + level: 1, + }, + } + + if len(objs) <= rt.MaxChildren { + for _, obj := range objs { + rt.Insert(obj) + } + } else { + rt.bulkLoad(objs) + } + + return rt +} + +// Size returns the number of objects currently stored in tree. +func (tree *Rtree) Size() int { + return tree.size +} + +func (tree *Rtree) String() string { + return "foo" +} + +// Depth returns the maximum depth of tree. +func (tree *Rtree) Depth() int { + return tree.height +} + +type dimSorter struct { + dim int + objs []entry +} + +func (s *dimSorter) Len() int { + return len(s.objs) +} + +func (s *dimSorter) Swap(i, j int) { + s.objs[i], s.objs[j] = s.objs[j], s.objs[i] +} + +func (s *dimSorter) Less(i, j int) bool { + return s.objs[i].bb.p[s.dim] < s.objs[j].bb.p[s.dim] +} + +// walkPartitions splits objs into slices of maximum k elements and +// iterates over these partitions. +func walkPartitions(k int, objs []entry, iter func(parts []entry)) { + n := (len(objs) + k - 1) / k // ceil(len(objs) / k) + + for i := 1; i < n; i++ { + iter(objs[(i-1)*k : i*k]) + } + iter(objs[(n-1)*k:]) +} + +func sortByDim(dim int, objs []entry) { + sort.Sort(&dimSorter{dim, objs}) +} + +// bulkLoad bulk loads the Rtree using OMT algorithm. bulkLoad contains special +// handling for the root node. +func (tree *Rtree) bulkLoad(objs []Spatial) { + n := len(objs) + + // create entries for all the objects + entries := make([]entry, n) + for i := range objs { + entries[i] = entry{ + bb: objs[i].Bounds(), + obj: objs[i], + } + } + + // following equations are defined in the paper describing OMT + var ( + N = float64(n) + M = float64(tree.MaxChildren) + ) + // Eq1: height of the tree + // use log2 instead of log due to rounding errors with log, + // eg, math.Log(9) / math.Log(3) > 2 + h := math.Ceil(math.Log2(N) / math.Log2(M)) + + // Eq2: size of subtrees at the root + nsub := math.Pow(M, h-1) + + // Inner Eq3: number of subtrees at the root + s := math.Ceil(N / nsub) + + // Eq3: number of slices + S := math.Floor(math.Sqrt(s)) + + // sort all entries by first dimension + sortByDim(0, entries) + + tree.height = int(h) + tree.size = n + tree.root = tree.omt(int(h), int(S), entries, int(s)) +} + +// omt is the recursive part of the Overlap Minimizing Top-loading bulk- +// load approach. Returns the root node of a subtree. +func (tree *Rtree) omt(level, nSlices int, objs []entry, m int) *node { + // if number of objects is less than or equal than max children per leaf, + // we need to create a leaf node + if len(objs) <= m { + // as long as the recursion is not at the leaf, call it again + if level > 1 { + child := tree.omt(level-1, nSlices, objs, m) + n := &node{ + level: level, + entries: []entry{{ + bb: child.computeBoundingBox(), + child: child, + }}, + } + child.parent = n + return n + } + entries := make([]entry, len(objs)) + copy(entries, objs) + return &node{ + leaf: true, + entries: entries, + level: level, + } + } + + n := &node{ + level: level, + entries: make([]entry, 0, m), + } + + // maximum node size given at most M nodes at this level + k := (len(objs) + m - 1) / m // = ceil(N / M) + + // In the root level, split objs in nSlices. In all other levels, + // we use a single slice. + vertSize := len(objs) + if nSlices > 1 { + vertSize = nSlices * k + } + + // create sub trees + walkPartitions(vertSize, objs, func(vert []entry) { + // sort vertical slice by a different dimension on every level + sortByDim((tree.height-level+1)%tree.Dim, vert) + + // split slice into groups of size k + walkPartitions(k, vert, func(part []entry) { + child := tree.omt(level-1, 1, part, tree.MaxChildren) + child.parent = n + + n.entries = append(n.entries, entry{ + bb: child.computeBoundingBox(), + child: child, + }) + }) + }) + return n +} + +// node represents a tree node of an Rtree. +type node struct { + parent *node + entries []entry + level int // node depth in the Rtree + leaf bool +} + +func (n *node) String() string { + return fmt.Sprintf("node{leaf: %v, entries: %v}", n.leaf, n.entries) +} + +// entry represents a spatial index record stored in a tree node. +type entry struct { + bb Rect // bounding-box of all children of this entry + child *node + obj Spatial +} + +func (e entry) String() string { + if e.child != nil { + return fmt.Sprintf("entry{bb: %v, child: %v}", e.bb, e.child) + } + return fmt.Sprintf("entry{bb: %v, obj: %v}", e.bb, e.obj) +} + +// Spatial is an interface for objects that can be stored in an Rtree and queried. +type Spatial interface { + Bounds() Rect +} + +// Insertion + +// Insert inserts a spatial object into the tree. If insertion +// causes a leaf node to overflow, the tree is rebalanced automatically. +// +// Implemented per Section 3.2 of "R-trees: A Dynamic Index Structure for +// Spatial Searching" by A. Guttman, Proceedings of ACM SIGMOD, p. 47-57, 1984. +func (tree *Rtree) Insert(obj Spatial) { + e := entry{obj.Bounds(), nil, obj} + tree.insert(e, 1) + tree.size++ +} + +// insert adds the specified entry to the tree at the specified level. +func (tree *Rtree) insert(e entry, level int) { + leaf := tree.chooseNode(tree.root, e, level) + leaf.entries = append(leaf.entries, e) + + // update parent pointer if necessary + if e.child != nil { + e.child.parent = leaf + } + + // split leaf if overflows + var split *node + if len(leaf.entries) > tree.MaxChildren { + leaf, split = leaf.split(tree.MinChildren) + } + root, splitRoot := tree.adjustTree(leaf, split) + if splitRoot != nil { + oldRoot := root + tree.height++ + tree.root = &node{ + parent: nil, + level: tree.height, + entries: []entry{ + {bb: oldRoot.computeBoundingBox(), child: oldRoot}, + {bb: splitRoot.computeBoundingBox(), child: splitRoot}, + }, + } + oldRoot.parent = tree.root + splitRoot.parent = tree.root + } +} + +// chooseNode finds the node at the specified level to which e should be added. +func (tree *Rtree) chooseNode(n *node, e entry, level int) *node { + if n.leaf || n.level == level { + return n + } + + // find the entry whose bb needs least enlargement to include obj + diff := math.MaxFloat64 + var chosen entry + for _, en := range n.entries { + bb := boundingBox(en.bb, e.bb) + d := bb.Size() - en.bb.Size() + if d < diff || (d == diff && en.bb.Size() < chosen.bb.Size()) { + diff = d + chosen = en + } + } + + return tree.chooseNode(chosen.child, e, level) +} + +// adjustTree splits overflowing nodes and propagates the changes upwards. +func (tree *Rtree) adjustTree(n, nn *node) (*node, *node) { + // Let the caller handle root adjustments. + if n == tree.root { + return n, nn + } + + // Re-size the bounding box of n to account for lower-level changes. + en := n.getEntry() + prevBox := en.bb + en.bb = n.computeBoundingBox() + + // If nn is nil, then we're just propagating changes upwards. + if nn == nil { + // Optimize for the case where nothing is changed + // to avoid computeBoundingBox which is expensive. + if en.bb.Equal(prevBox) { + return tree.root, nil + } + return tree.adjustTree(n.parent, nil) + } + + // Otherwise, these are two nodes resulting from a split. + // n was reused as the "left" node, but we need to add nn to n.parent. + enn := entry{nn.computeBoundingBox(), nn, nil} + n.parent.entries = append(n.parent.entries, enn) + + // If the new entry overflows the parent, split the parent and propagate. + if len(n.parent.entries) > tree.MaxChildren { + return tree.adjustTree(n.parent.split(tree.MinChildren)) + } + + // Otherwise keep propagating changes upwards. + return tree.adjustTree(n.parent, nil) +} + +// getEntry returns a pointer to the entry for the node n from n's parent. +func (n *node) getEntry() *entry { + var e *entry + for i := range n.parent.entries { + if n.parent.entries[i].child == n { + e = &n.parent.entries[i] + break + } + } + return e +} + +// computeBoundingBox finds the MBR of the children of n. +func (n *node) computeBoundingBox() (bb Rect) { + if len(n.entries) == 1 { + bb = n.entries[0].bb + return + } + + bb = boundingBox(n.entries[0].bb, n.entries[1].bb) + for _, e := range n.entries[2:] { + bb = boundingBox(bb, e.bb) + } + return +} + +// split splits a node into two groups while attempting to minimize the +// bounding-box area of the resulting groups. +func (n *node) split(minGroupSize int) (left, right *node) { + // find the initial split + l, r := n.pickSeeds() + leftSeed, rightSeed := n.entries[l], n.entries[r] + + // get the entries to be divided between left and right + remaining := append(n.entries[:l], n.entries[l+1:r]...) + remaining = append(remaining, n.entries[r+1:]...) + + // setup the new split nodes, but re-use n as the left node + left = n + left.entries = []entry{leftSeed} + right = &node{ + parent: n.parent, + leaf: n.leaf, + level: n.level, + entries: []entry{rightSeed}, + } + + // TODO + if rightSeed.child != nil { + rightSeed.child.parent = right + } + if leftSeed.child != nil { + leftSeed.child.parent = left + } + + // distribute all of n's old entries into left and right. + for len(remaining) > 0 { + next := pickNext(left, right, remaining) + e := remaining[next] + + if len(remaining)+len(left.entries) <= minGroupSize { + assign(e, left) + } else if len(remaining)+len(right.entries) <= minGroupSize { + assign(e, right) + } else { + assignGroup(e, left, right) + } + + remaining = append(remaining[:next], remaining[next+1:]...) + } + + return +} + +// getAllBoundingBoxes traverses tree populating slice of bounding boxes of non-leaf nodes. +func (n *node) getAllBoundingBoxes() []Rect { + var rects []Rect + if n.leaf { + return rects + } + for _, e := range n.entries { + if e.child == nil { + return rects + } + rectsInter := append(e.child.getAllBoundingBoxes(), e.bb) + rects = append(rects, rectsInter...) + } + return rects +} + +func assign(e entry, group *node) { + if e.child != nil { + e.child.parent = group + } + group.entries = append(group.entries, e) +} + +// assignGroup chooses one of two groups to which a node should be added. +func assignGroup(e entry, left, right *node) { + leftBB := left.computeBoundingBox() + rightBB := right.computeBoundingBox() + leftEnlarged := boundingBox(leftBB, e.bb) + rightEnlarged := boundingBox(rightBB, e.bb) + + // first, choose the group that needs the least enlargement + leftDiff := leftEnlarged.Size() - leftBB.Size() + rightDiff := rightEnlarged.Size() - rightBB.Size() + if diff := leftDiff - rightDiff; diff < 0 { + assign(e, left) + return + } else if diff > 0 { + assign(e, right) + return + } + + // next, choose the group that has smaller area + if diff := leftBB.Size() - rightBB.Size(); diff < 0 { + assign(e, left) + return + } else if diff > 0 { + assign(e, right) + return + } + + // next, choose the group with fewer entries + if diff := len(left.entries) - len(right.entries); diff <= 0 { + assign(e, left) + return + } + assign(e, right) +} + +// pickSeeds chooses two child entries of n to start a split. +func (n *node) pickSeeds() (int, int) { + left, right := 0, 1 + maxWastedSpace := -1.0 + for i, e1 := range n.entries { + for j, e2 := range n.entries[i+1:] { + d := boundingBox(e1.bb, e2.bb).Size() - e1.bb.Size() - e2.bb.Size() + if d > maxWastedSpace { + maxWastedSpace = d + left, right = i, j+i+1 + } + } + } + return left, right +} + +// pickNext chooses an entry to be added to an entry group. +func pickNext(left, right *node, entries []entry) (next int) { + maxDiff := -1.0 + leftBB := left.computeBoundingBox() + rightBB := right.computeBoundingBox() + for i, e := range entries { + d1 := boundingBox(leftBB, e.bb).Size() - leftBB.Size() + d2 := boundingBox(rightBB, e.bb).Size() - rightBB.Size() + d := math.Abs(d1 - d2) + if d > maxDiff { + maxDiff = d + next = i + } + } + return +} + +// Deletion + +// Delete removes an object from the tree. If the object is not found, returns +// false, otherwise returns true. Uses the default comparator when checking +// equality. +// +// Implemented per Section 3.3 of "R-trees: A Dynamic Index Structure for +// Spatial Searching" by A. Guttman, Proceedings of ACM SIGMOD, p. 47-57, 1984. +func (tree *Rtree) Delete(obj Spatial) bool { + return tree.DeleteWithComparator(obj, defaultComparator) +} + +// DeleteWithComparator removes an object from the tree using a custom +// comparator for evaluating equalness. This is useful when you want to remove +// an object from a tree but don't have a pointer to the original object +// anymore. +func (tree *Rtree) DeleteWithComparator(obj Spatial, cmp Comparator) bool { + n := tree.findLeaf(tree.root, obj, cmp) + if n == nil { + return false + } + + ind := -1 + for i, e := range n.entries { + if cmp(e.obj, obj) { + ind = i + } + } + if ind < 0 { + return false + } + + n.entries = append(n.entries[:ind], n.entries[ind+1:]...) + + tree.condenseTree(n) + tree.size-- + + if !tree.root.leaf && len(tree.root.entries) == 1 { + tree.root = tree.root.entries[0].child + } + + tree.height = tree.root.level + + return true +} + +// findLeaf finds the leaf node containing obj. +func (tree *Rtree) findLeaf(n *node, obj Spatial, cmp Comparator) *node { + if n.leaf { + return n + } + // if not leaf, search all candidate subtrees + for _, e := range n.entries { + if e.bb.containsRect(obj.Bounds()) { + leaf := tree.findLeaf(e.child, obj, cmp) + if leaf == nil { + continue + } + // check if the leaf actually contains the object + for _, leafEntry := range leaf.entries { + if cmp(leafEntry.obj, obj) { + return leaf + } + } + } + } + return nil +} + +// condenseTree deletes underflowing nodes and propagates the changes upwards. +func (tree *Rtree) condenseTree(n *node) { + // reset the deleted buffer + tree.deleted = tree.deleted[:0] + + for n != tree.root { + if len(n.entries) < tree.MinChildren { + // find n and delete it by swapping the last entry into its place + idx := -1 + for i, e := range n.parent.entries { + if e.child == n { + idx = i + break + } + } + if idx == -1 { + panic(fmt.Errorf("Failed to remove entry from parent")) + } + l := len(n.parent.entries) + n.parent.entries[idx] = n.parent.entries[l-1] + n.parent.entries = n.parent.entries[:l-1] + + // only add n to deleted if it still has children + if len(n.entries) > 0 { + tree.deleted = append(tree.deleted, n) + } + } else { + // just a child entry deletion, no underflow + en := n.getEntry() + prevBox := en.bb + en.bb = n.computeBoundingBox() + + if en.bb.Equal(prevBox) { + // Optimize for the case where nothing is changed + // to avoid computeBoundingBox which is expensive. + break + } + } + n = n.parent + } + + for i := len(tree.deleted) - 1; i >= 0; i-- { + n := tree.deleted[i] + // reinsert entry so that it will remain at the same level as before + e := entry{n.computeBoundingBox(), n, nil} + tree.insert(e, n.level+1) + } +} + +// Searching + +// SearchIntersect returns all objects that intersect the specified rectangle. +// Implemented per Section 3.1 of "R-trees: A Dynamic Index Structure for +// Spatial Searching" by A. Guttman, Proceedings of ACM SIGMOD, p. 47-57, 1984. +func (tree *Rtree) SearchIntersect(bb Rect, filters ...Filter) []Spatial { + return tree.searchIntersect([]Spatial{}, tree.root, bb, filters) +} + +// SearchIntersectWithLimit is similar to SearchIntersect, but returns +// immediately when the first k results are found. A negative k behaves exactly +// like SearchIntersect and returns all the results. +// +// Kept for backwards compatibility, please use SearchIntersect with a +// LimitFilter. +func (tree *Rtree) SearchIntersectWithLimit(k int, bb Rect) []Spatial { + // backwards compatibility, previous implementation didn't limit results if + // k was negative. + if k < 0 { + return tree.SearchIntersect(bb) + } + return tree.SearchIntersect(bb, LimitFilter(k)) +} + +func (tree *Rtree) searchIntersect(results []Spatial, n *node, bb Rect, filters []Filter) []Spatial { + for _, e := range n.entries { + if !intersect(e.bb, bb) { + continue + } + + if !n.leaf { + results = tree.searchIntersect(results, e.child, bb, filters) + continue + } + + refuse, abort := applyFilters(results, e.obj, filters) + if !refuse { + results = append(results, e.obj) + } + + if abort { + break + } + } + return results +} + +// NearestNeighbor returns the closest object to the specified point. +// Implemented per "Nearest Neighbor Queries" by Roussopoulos et al +func (tree *Rtree) NearestNeighbor(p Point) Spatial { + obj, _ := tree.nearestNeighbor(p, tree.root, math.MaxFloat64, nil) + return obj +} + +// GetAllBoundingBoxes returning slice of bounding boxes by traversing tree. Slice +// includes bounding boxes from all non-leaf nodes. +func (tree *Rtree) GetAllBoundingBoxes() []Rect { + var rects []Rect + if tree.root != nil { + rects = tree.root.getAllBoundingBoxes() + } + return rects +} + +// utilities for sorting slices of entries + +type entrySlice struct { + entries []entry + dists []float64 +} + +func (s entrySlice) Len() int { return len(s.entries) } + +func (s entrySlice) Swap(i, j int) { + s.entries[i], s.entries[j] = s.entries[j], s.entries[i] + s.dists[i], s.dists[j] = s.dists[j], s.dists[i] +} + +func (s entrySlice) Less(i, j int) bool { + return s.dists[i] < s.dists[j] +} + +func sortEntries(p Point, entries []entry) ([]entry, []float64) { + sorted := make([]entry, len(entries)) + dists := make([]float64, len(entries)) + return sortPreallocEntries(p, entries, sorted, dists) +} + +func sortPreallocEntries(p Point, entries, sorted []entry, dists []float64) ([]entry, []float64) { + // use preallocated slices + sorted = sorted[:len(entries)] + dists = dists[:len(entries)] + + for i := 0; i < len(entries); i++ { + sorted[i] = entries[i] + dists[i] = p.minDist(entries[i].bb) + } + sort.Sort(entrySlice{sorted, dists}) + return sorted, dists +} + +func pruneEntries(p Point, entries []entry, minDists []float64) []entry { + minMinMaxDist := math.MaxFloat64 + for i := range entries { + minMaxDist := p.minMaxDist(entries[i].bb) + if minMaxDist < minMinMaxDist { + minMinMaxDist = minMaxDist + } + } + // remove all entries with minDist > minMinMaxDist + pruned := []entry{} + for i := range entries { + if minDists[i] <= minMinMaxDist { + pruned = append(pruned, entries[i]) + } + } + return pruned +} + +func pruneEntriesMinDist(d float64, entries []entry, minDists []float64) []entry { + var i int + for ; i < len(entries); i++ { + if minDists[i] > d { + break + } + } + return entries[:i] +} + +func (tree *Rtree) nearestNeighbor(p Point, n *node, d float64, nearest Spatial) (Spatial, float64) { + if n.leaf { + for _, e := range n.entries { + dist := math.Sqrt(p.minDist(e.bb)) + if dist < d { + d = dist + nearest = e.obj + } + } + } else { + // Search only through entries with minDist <= minMinMaxDist, + // where minDist is the distance between a point and a rectangle, + // and minMaxDist is the smallest value among the maximum distance across all axes. + // + // Entries with minDist > minMinMaxDist are guaranteed to be farther away than some other entry. + // + // For more details, please consult + // N. Roussopoulos, S. Kelley and F. Vincent, ACM SIGMOD, pages 71-79, 1995. + minMinMaxDist := math.MaxFloat64 + for _, e := range n.entries { + minMaxDist := p.minMaxDist(e.bb) + if minMaxDist < minMinMaxDist { + minMinMaxDist = minMaxDist + } + } + + for _, e := range n.entries { + minDist := p.minDist(e.bb) + if minDist > minMinMaxDist { + continue + } + + subNearest, dist := tree.nearestNeighbor(p, e.child, d, nearest) + if dist < d { + d = dist + nearest = subNearest + } + } + } + + return nearest, d +} + +// NearestNeighbors gets the closest Spatials to the Point. +func (tree *Rtree) NearestNeighbors(k int, p Point, filters ...Filter) []Spatial { + // preallocate the buffers for sortings the branches. At each level of the + // tree, we slide the buffer by the number of entries in the node. + maxBufSize := tree.MaxChildren * tree.Depth() + branches := make([]entry, maxBufSize) + branchDists := make([]float64, maxBufSize) + + // allocate the buffers for the results + dists := make([]float64, 0, k) + objs := make([]Spatial, 0, k) + + objs, _, _ = tree.nearestNeighbors(k, p, tree.root, dists, objs, filters, branches, branchDists) + return objs +} + +// insert obj into nearest and return the first k elements in increasing order. +func insertNearest(k int, dists []float64, nearest []Spatial, dist float64, obj Spatial, filters []Filter) ([]float64, []Spatial, bool) { + i := sort.SearchFloat64s(dists, dist) + for i < len(nearest) && dist >= dists[i] { + i++ + } + if i >= k { + return dists, nearest, false + } + + if refuse, abort := applyFilters(nearest, obj, filters); refuse || abort { + return dists, nearest, abort + } + + // no resize since cap = k + if len(nearest) < k { + dists = append(dists, 0) + nearest = append(nearest, nil) + } + + left, right := dists[:i], dists[i:len(dists)-1] + copy(dists, left) + copy(dists[i+1:], right) + dists[i] = dist + + leftObjs, rightObjs := nearest[:i], nearest[i:len(nearest)-1] + copy(nearest, leftObjs) + copy(nearest[i+1:], rightObjs) + nearest[i] = obj + + return dists, nearest, false +} + +func (tree *Rtree) nearestNeighbors(k int, p Point, n *node, dists []float64, nearest []Spatial, filters []Filter, b []entry, bd []float64) ([]Spatial, []float64, bool) { + var abort bool + if n.leaf { + for _, e := range n.entries { + dist := p.minDist(e.bb) + dists, nearest, abort = insertNearest(k, dists, nearest, dist, e.obj, filters) + if abort { + break + } + } + } else { + branches, branchDists := sortPreallocEntries(p, n.entries, b, bd) + // only prune if buffer has k elements + if l := len(dists); l >= k { + branches = pruneEntriesMinDist(dists[l-1], branches, branchDists) + } + for _, e := range branches { + nearest, dists, abort = tree.nearestNeighbors(k, p, e.child, dists, nearest, filters, b[len(n.entries):], bd[len(n.entries):]) + if abort { + break + } + } + } + return nearest, dists, abort +} diff --git a/vendor/github.com/patrickmn/go-cache/CONTRIBUTORS b/vendor/github.com/patrickmn/go-cache/CONTRIBUTORS new file mode 100644 index 0000000..2b16e99 --- /dev/null +++ b/vendor/github.com/patrickmn/go-cache/CONTRIBUTORS @@ -0,0 +1,9 @@ +This is a list of people who have contributed code to go-cache. They, or their +employers, are the copyright holders of the contributed code. Contributed code +is subject to the license restrictions listed in LICENSE (as they were when the +code was contributed.) + +Dustin Sallings +Jason Mooberry +Sergey Shepelev +Alex Edwards diff --git a/vendor/github.com/patrickmn/go-cache/LICENSE b/vendor/github.com/patrickmn/go-cache/LICENSE new file mode 100644 index 0000000..db9903c --- /dev/null +++ b/vendor/github.com/patrickmn/go-cache/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2012-2017 Patrick Mylund Nielsen and the go-cache contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/github.com/patrickmn/go-cache/README.md b/vendor/github.com/patrickmn/go-cache/README.md new file mode 100644 index 0000000..c5789cc --- /dev/null +++ b/vendor/github.com/patrickmn/go-cache/README.md @@ -0,0 +1,83 @@ +# go-cache + +go-cache is an in-memory key:value store/cache similar to memcached that is +suitable for applications running on a single machine. Its major advantage is +that, being essentially a thread-safe `map[string]interface{}` with expiration +times, it doesn't need to serialize or transmit its contents over the network. + +Any object can be stored, for a given duration or forever, and the cache can be +safely used by multiple goroutines. + +Although go-cache isn't meant to be used as a persistent datastore, the entire +cache can be saved to and loaded from a file (using `c.Items()` to retrieve the +items map to serialize, and `NewFrom()` to create a cache from a deserialized +one) to recover from downtime quickly. (See the docs for `NewFrom()` for caveats.) + +### Installation + +`go get github.com/patrickmn/go-cache` + +### Usage + +```go +import ( + "fmt" + "github.com/patrickmn/go-cache" + "time" +) + +func main() { + // Create a cache with a default expiration time of 5 minutes, and which + // purges expired items every 10 minutes + c := cache.New(5*time.Minute, 10*time.Minute) + + // Set the value of the key "foo" to "bar", with the default expiration time + c.Set("foo", "bar", cache.DefaultExpiration) + + // Set the value of the key "baz" to 42, with no expiration time + // (the item won't be removed until it is re-set, or removed using + // c.Delete("baz") + c.Set("baz", 42, cache.NoExpiration) + + // Get the string associated with the key "foo" from the cache + foo, found := c.Get("foo") + if found { + fmt.Println(foo) + } + + // Since Go is statically typed, and cache values can be anything, type + // assertion is needed when values are being passed to functions that don't + // take arbitrary types, (i.e. interface{}). The simplest way to do this for + // values which will only be used once--e.g. for passing to another + // function--is: + foo, found := c.Get("foo") + if found { + MyFunction(foo.(string)) + } + + // This gets tedious if the value is used several times in the same function. + // You might do either of the following instead: + if x, found := c.Get("foo"); found { + foo := x.(string) + // ... + } + // or + var foo string + if x, found := c.Get("foo"); found { + foo = x.(string) + } + // ... + // foo can then be passed around freely as a string + + // Want performance? Store pointers! + c.Set("foo", &MyStruct, cache.DefaultExpiration) + if x, found := c.Get("foo"); found { + foo := x.(*MyStruct) + // ... + } +} +``` + +### Reference + +`godoc` or [http://godoc.org/github.com/patrickmn/go-cache](http://godoc.org/github.com/patrickmn/go-cache) diff --git a/vendor/github.com/patrickmn/go-cache/cache.go b/vendor/github.com/patrickmn/go-cache/cache.go new file mode 100644 index 0000000..db88d2f --- /dev/null +++ b/vendor/github.com/patrickmn/go-cache/cache.go @@ -0,0 +1,1161 @@ +package cache + +import ( + "encoding/gob" + "fmt" + "io" + "os" + "runtime" + "sync" + "time" +) + +type Item struct { + Object interface{} + Expiration int64 +} + +// Returns true if the item has expired. +func (item Item) Expired() bool { + if item.Expiration == 0 { + return false + } + return time.Now().UnixNano() > item.Expiration +} + +const ( + // For use with functions that take an expiration time. + NoExpiration time.Duration = -1 + // For use with functions that take an expiration time. Equivalent to + // passing in the same expiration duration as was given to New() or + // NewFrom() when the cache was created (e.g. 5 minutes.) + DefaultExpiration time.Duration = 0 +) + +type Cache struct { + *cache + // If this is confusing, see the comment at the bottom of New() +} + +type cache struct { + defaultExpiration time.Duration + items map[string]Item + mu sync.RWMutex + onEvicted func(string, interface{}) + janitor *janitor +} + +// Add an item to the cache, replacing any existing item. If the duration is 0 +// (DefaultExpiration), the cache's default expiration time is used. If it is -1 +// (NoExpiration), the item never expires. +func (c *cache) Set(k string, x interface{}, d time.Duration) { + // "Inlining" of set + var e int64 + if d == DefaultExpiration { + d = c.defaultExpiration + } + if d > 0 { + e = time.Now().Add(d).UnixNano() + } + c.mu.Lock() + c.items[k] = Item{ + Object: x, + Expiration: e, + } + // TODO: Calls to mu.Unlock are currently not deferred because defer + // adds ~200 ns (as of go1.) + c.mu.Unlock() +} + +func (c *cache) set(k string, x interface{}, d time.Duration) { + var e int64 + if d == DefaultExpiration { + d = c.defaultExpiration + } + if d > 0 { + e = time.Now().Add(d).UnixNano() + } + c.items[k] = Item{ + Object: x, + Expiration: e, + } +} + +// Add an item to the cache, replacing any existing item, using the default +// expiration. +func (c *cache) SetDefault(k string, x interface{}) { + c.Set(k, x, DefaultExpiration) +} + +// Add an item to the cache only if an item doesn't already exist for the given +// key, or if the existing item has expired. Returns an error otherwise. +func (c *cache) Add(k string, x interface{}, d time.Duration) error { + c.mu.Lock() + _, found := c.get(k) + if found { + c.mu.Unlock() + return fmt.Errorf("Item %s already exists", k) + } + c.set(k, x, d) + c.mu.Unlock() + return nil +} + +// Set a new value for the cache key only if it already exists, and the existing +// item hasn't expired. Returns an error otherwise. +func (c *cache) Replace(k string, x interface{}, d time.Duration) error { + c.mu.Lock() + _, found := c.get(k) + if !found { + c.mu.Unlock() + return fmt.Errorf("Item %s doesn't exist", k) + } + c.set(k, x, d) + c.mu.Unlock() + return nil +} + +// Get an item from the cache. Returns the item or nil, and a bool indicating +// whether the key was found. +func (c *cache) Get(k string) (interface{}, bool) { + c.mu.RLock() + // "Inlining" of get and Expired + item, found := c.items[k] + if !found { + c.mu.RUnlock() + return nil, false + } + if item.Expiration > 0 { + if time.Now().UnixNano() > item.Expiration { + c.mu.RUnlock() + return nil, false + } + } + c.mu.RUnlock() + return item.Object, true +} + +// GetWithExpiration returns an item and its expiration time from the cache. +// It returns the item or nil, the expiration time if one is set (if the item +// never expires a zero value for time.Time is returned), and a bool indicating +// whether the key was found. +func (c *cache) GetWithExpiration(k string) (interface{}, time.Time, bool) { + c.mu.RLock() + // "Inlining" of get and Expired + item, found := c.items[k] + if !found { + c.mu.RUnlock() + return nil, time.Time{}, false + } + + if item.Expiration > 0 { + if time.Now().UnixNano() > item.Expiration { + c.mu.RUnlock() + return nil, time.Time{}, false + } + + // Return the item and the expiration time + c.mu.RUnlock() + return item.Object, time.Unix(0, item.Expiration), true + } + + // If expiration <= 0 (i.e. no expiration time set) then return the item + // and a zeroed time.Time + c.mu.RUnlock() + return item.Object, time.Time{}, true +} + +func (c *cache) get(k string) (interface{}, bool) { + item, found := c.items[k] + if !found { + return nil, false + } + // "Inlining" of Expired + if item.Expiration > 0 { + if time.Now().UnixNano() > item.Expiration { + return nil, false + } + } + return item.Object, true +} + +// Increment an item of type int, int8, int16, int32, int64, uintptr, uint, +// uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the +// item's value is not an integer, if it was not found, or if it is not +// possible to increment it by n. To retrieve the incremented value, use one +// of the specialized methods, e.g. IncrementInt64. +func (c *cache) Increment(k string, n int64) error { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return fmt.Errorf("Item %s not found", k) + } + switch v.Object.(type) { + case int: + v.Object = v.Object.(int) + int(n) + case int8: + v.Object = v.Object.(int8) + int8(n) + case int16: + v.Object = v.Object.(int16) + int16(n) + case int32: + v.Object = v.Object.(int32) + int32(n) + case int64: + v.Object = v.Object.(int64) + n + case uint: + v.Object = v.Object.(uint) + uint(n) + case uintptr: + v.Object = v.Object.(uintptr) + uintptr(n) + case uint8: + v.Object = v.Object.(uint8) + uint8(n) + case uint16: + v.Object = v.Object.(uint16) + uint16(n) + case uint32: + v.Object = v.Object.(uint32) + uint32(n) + case uint64: + v.Object = v.Object.(uint64) + uint64(n) + case float32: + v.Object = v.Object.(float32) + float32(n) + case float64: + v.Object = v.Object.(float64) + float64(n) + default: + c.mu.Unlock() + return fmt.Errorf("The value for %s is not an integer", k) + } + c.items[k] = v + c.mu.Unlock() + return nil +} + +// Increment an item of type float32 or float64 by n. Returns an error if the +// item's value is not floating point, if it was not found, or if it is not +// possible to increment it by n. Pass a negative number to decrement the +// value. To retrieve the incremented value, use one of the specialized methods, +// e.g. IncrementFloat64. +func (c *cache) IncrementFloat(k string, n float64) error { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return fmt.Errorf("Item %s not found", k) + } + switch v.Object.(type) { + case float32: + v.Object = v.Object.(float32) + float32(n) + case float64: + v.Object = v.Object.(float64) + n + default: + c.mu.Unlock() + return fmt.Errorf("The value for %s does not have type float32 or float64", k) + } + c.items[k] = v + c.mu.Unlock() + return nil +} + +// Increment an item of type int by n. Returns an error if the item's value is +// not an int, or if it was not found. If there is no error, the incremented +// value is returned. +func (c *cache) IncrementInt(k string, n int) (int, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type int8 by n. Returns an error if the item's value is +// not an int8, or if it was not found. If there is no error, the incremented +// value is returned. +func (c *cache) IncrementInt8(k string, n int8) (int8, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int8) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int8", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type int16 by n. Returns an error if the item's value is +// not an int16, or if it was not found. If there is no error, the incremented +// value is returned. +func (c *cache) IncrementInt16(k string, n int16) (int16, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int16) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int16", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type int32 by n. Returns an error if the item's value is +// not an int32, or if it was not found. If there is no error, the incremented +// value is returned. +func (c *cache) IncrementInt32(k string, n int32) (int32, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int32) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int32", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type int64 by n. Returns an error if the item's value is +// not an int64, or if it was not found. If there is no error, the incremented +// value is returned. +func (c *cache) IncrementInt64(k string, n int64) (int64, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int64) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int64", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type uint by n. Returns an error if the item's value is +// not an uint, or if it was not found. If there is no error, the incremented +// value is returned. +func (c *cache) IncrementUint(k string, n uint) (uint, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type uintptr by n. Returns an error if the item's value +// is not an uintptr, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementUintptr(k string, n uintptr) (uintptr, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uintptr) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uintptr", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type uint8 by n. Returns an error if the item's value +// is not an uint8, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementUint8(k string, n uint8) (uint8, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint8) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint8", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type uint16 by n. Returns an error if the item's value +// is not an uint16, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementUint16(k string, n uint16) (uint16, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint16) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint16", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type uint32 by n. Returns an error if the item's value +// is not an uint32, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementUint32(k string, n uint32) (uint32, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint32) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint32", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type uint64 by n. Returns an error if the item's value +// is not an uint64, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementUint64(k string, n uint64) (uint64, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint64) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint64", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type float32 by n. Returns an error if the item's value +// is not an float32, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementFloat32(k string, n float32) (float32, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(float32) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an float32", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Increment an item of type float64 by n. Returns an error if the item's value +// is not an float64, or if it was not found. If there is no error, the +// incremented value is returned. +func (c *cache) IncrementFloat64(k string, n float64) (float64, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(float64) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an float64", k) + } + nv := rv + n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type int, int8, int16, int32, int64, uintptr, uint, +// uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the +// item's value is not an integer, if it was not found, or if it is not +// possible to decrement it by n. To retrieve the decremented value, use one +// of the specialized methods, e.g. DecrementInt64. +func (c *cache) Decrement(k string, n int64) error { + // TODO: Implement Increment and Decrement more cleanly. + // (Cannot do Increment(k, n*-1) for uints.) + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return fmt.Errorf("Item not found") + } + switch v.Object.(type) { + case int: + v.Object = v.Object.(int) - int(n) + case int8: + v.Object = v.Object.(int8) - int8(n) + case int16: + v.Object = v.Object.(int16) - int16(n) + case int32: + v.Object = v.Object.(int32) - int32(n) + case int64: + v.Object = v.Object.(int64) - n + case uint: + v.Object = v.Object.(uint) - uint(n) + case uintptr: + v.Object = v.Object.(uintptr) - uintptr(n) + case uint8: + v.Object = v.Object.(uint8) - uint8(n) + case uint16: + v.Object = v.Object.(uint16) - uint16(n) + case uint32: + v.Object = v.Object.(uint32) - uint32(n) + case uint64: + v.Object = v.Object.(uint64) - uint64(n) + case float32: + v.Object = v.Object.(float32) - float32(n) + case float64: + v.Object = v.Object.(float64) - float64(n) + default: + c.mu.Unlock() + return fmt.Errorf("The value for %s is not an integer", k) + } + c.items[k] = v + c.mu.Unlock() + return nil +} + +// Decrement an item of type float32 or float64 by n. Returns an error if the +// item's value is not floating point, if it was not found, or if it is not +// possible to decrement it by n. Pass a negative number to decrement the +// value. To retrieve the decremented value, use one of the specialized methods, +// e.g. DecrementFloat64. +func (c *cache) DecrementFloat(k string, n float64) error { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return fmt.Errorf("Item %s not found", k) + } + switch v.Object.(type) { + case float32: + v.Object = v.Object.(float32) - float32(n) + case float64: + v.Object = v.Object.(float64) - n + default: + c.mu.Unlock() + return fmt.Errorf("The value for %s does not have type float32 or float64", k) + } + c.items[k] = v + c.mu.Unlock() + return nil +} + +// Decrement an item of type int by n. Returns an error if the item's value is +// not an int, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementInt(k string, n int) (int, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type int8 by n. Returns an error if the item's value is +// not an int8, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementInt8(k string, n int8) (int8, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int8) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int8", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type int16 by n. Returns an error if the item's value is +// not an int16, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementInt16(k string, n int16) (int16, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int16) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int16", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type int32 by n. Returns an error if the item's value is +// not an int32, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementInt32(k string, n int32) (int32, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int32) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int32", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type int64 by n. Returns an error if the item's value is +// not an int64, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementInt64(k string, n int64) (int64, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(int64) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an int64", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type uint by n. Returns an error if the item's value is +// not an uint, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementUint(k string, n uint) (uint, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type uintptr by n. Returns an error if the item's value +// is not an uintptr, or if it was not found. If there is no error, the +// decremented value is returned. +func (c *cache) DecrementUintptr(k string, n uintptr) (uintptr, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uintptr) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uintptr", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type uint8 by n. Returns an error if the item's value is +// not an uint8, or if it was not found. If there is no error, the decremented +// value is returned. +func (c *cache) DecrementUint8(k string, n uint8) (uint8, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint8) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint8", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type uint16 by n. Returns an error if the item's value +// is not an uint16, or if it was not found. If there is no error, the +// decremented value is returned. +func (c *cache) DecrementUint16(k string, n uint16) (uint16, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint16) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint16", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type uint32 by n. Returns an error if the item's value +// is not an uint32, or if it was not found. If there is no error, the +// decremented value is returned. +func (c *cache) DecrementUint32(k string, n uint32) (uint32, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint32) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint32", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type uint64 by n. Returns an error if the item's value +// is not an uint64, or if it was not found. If there is no error, the +// decremented value is returned. +func (c *cache) DecrementUint64(k string, n uint64) (uint64, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(uint64) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an uint64", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type float32 by n. Returns an error if the item's value +// is not an float32, or if it was not found. If there is no error, the +// decremented value is returned. +func (c *cache) DecrementFloat32(k string, n float32) (float32, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(float32) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an float32", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Decrement an item of type float64 by n. Returns an error if the item's value +// is not an float64, or if it was not found. If there is no error, the +// decremented value is returned. +func (c *cache) DecrementFloat64(k string, n float64) (float64, error) { + c.mu.Lock() + v, found := c.items[k] + if !found || v.Expired() { + c.mu.Unlock() + return 0, fmt.Errorf("Item %s not found", k) + } + rv, ok := v.Object.(float64) + if !ok { + c.mu.Unlock() + return 0, fmt.Errorf("The value for %s is not an float64", k) + } + nv := rv - n + v.Object = nv + c.items[k] = v + c.mu.Unlock() + return nv, nil +} + +// Delete an item from the cache. Does nothing if the key is not in the cache. +func (c *cache) Delete(k string) { + c.mu.Lock() + v, evicted := c.delete(k) + c.mu.Unlock() + if evicted { + c.onEvicted(k, v) + } +} + +func (c *cache) delete(k string) (interface{}, bool) { + if c.onEvicted != nil { + if v, found := c.items[k]; found { + delete(c.items, k) + return v.Object, true + } + } + delete(c.items, k) + return nil, false +} + +type keyAndValue struct { + key string + value interface{} +} + +// Delete all expired items from the cache. +func (c *cache) DeleteExpired() { + var evictedItems []keyAndValue + now := time.Now().UnixNano() + c.mu.Lock() + for k, v := range c.items { + // "Inlining" of expired + if v.Expiration > 0 && now > v.Expiration { + ov, evicted := c.delete(k) + if evicted { + evictedItems = append(evictedItems, keyAndValue{k, ov}) + } + } + } + c.mu.Unlock() + for _, v := range evictedItems { + c.onEvicted(v.key, v.value) + } +} + +// Sets an (optional) function that is called with the key and value when an +// item is evicted from the cache. (Including when it is deleted manually, but +// not when it is overwritten.) Set to nil to disable. +func (c *cache) OnEvicted(f func(string, interface{})) { + c.mu.Lock() + c.onEvicted = f + c.mu.Unlock() +} + +// Write the cache's items (using Gob) to an io.Writer. +// +// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the +// documentation for NewFrom().) +func (c *cache) Save(w io.Writer) (err error) { + enc := gob.NewEncoder(w) + defer func() { + if x := recover(); x != nil { + err = fmt.Errorf("Error registering item types with Gob library") + } + }() + c.mu.RLock() + defer c.mu.RUnlock() + for _, v := range c.items { + gob.Register(v.Object) + } + err = enc.Encode(&c.items) + return +} + +// Save the cache's items to the given filename, creating the file if it +// doesn't exist, and overwriting it if it does. +// +// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the +// documentation for NewFrom().) +func (c *cache) SaveFile(fname string) error { + fp, err := os.Create(fname) + if err != nil { + return err + } + err = c.Save(fp) + if err != nil { + fp.Close() + return err + } + return fp.Close() +} + +// Add (Gob-serialized) cache items from an io.Reader, excluding any items with +// keys that already exist (and haven't expired) in the current cache. +// +// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the +// documentation for NewFrom().) +func (c *cache) Load(r io.Reader) error { + dec := gob.NewDecoder(r) + items := map[string]Item{} + err := dec.Decode(&items) + if err == nil { + c.mu.Lock() + defer c.mu.Unlock() + for k, v := range items { + ov, found := c.items[k] + if !found || ov.Expired() { + c.items[k] = v + } + } + } + return err +} + +// Load and add cache items from the given filename, excluding any items with +// keys that already exist in the current cache. +// +// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the +// documentation for NewFrom().) +func (c *cache) LoadFile(fname string) error { + fp, err := os.Open(fname) + if err != nil { + return err + } + err = c.Load(fp) + if err != nil { + fp.Close() + return err + } + return fp.Close() +} + +// Copies all unexpired items in the cache into a new map and returns it. +func (c *cache) Items() map[string]Item { + c.mu.RLock() + defer c.mu.RUnlock() + m := make(map[string]Item, len(c.items)) + now := time.Now().UnixNano() + for k, v := range c.items { + // "Inlining" of Expired + if v.Expiration > 0 { + if now > v.Expiration { + continue + } + } + m[k] = v + } + return m +} + +// Returns the number of items in the cache. This may include items that have +// expired, but have not yet been cleaned up. +func (c *cache) ItemCount() int { + c.mu.RLock() + n := len(c.items) + c.mu.RUnlock() + return n +} + +// Delete all items from the cache. +func (c *cache) Flush() { + c.mu.Lock() + c.items = map[string]Item{} + c.mu.Unlock() +} + +type janitor struct { + Interval time.Duration + stop chan bool +} + +func (j *janitor) Run(c *cache) { + ticker := time.NewTicker(j.Interval) + for { + select { + case <-ticker.C: + c.DeleteExpired() + case <-j.stop: + ticker.Stop() + return + } + } +} + +func stopJanitor(c *Cache) { + c.janitor.stop <- true +} + +func runJanitor(c *cache, ci time.Duration) { + j := &janitor{ + Interval: ci, + stop: make(chan bool), + } + c.janitor = j + go j.Run(c) +} + +func newCache(de time.Duration, m map[string]Item) *cache { + if de == 0 { + de = -1 + } + c := &cache{ + defaultExpiration: de, + items: m, + } + return c +} + +func newCacheWithJanitor(de time.Duration, ci time.Duration, m map[string]Item) *Cache { + c := newCache(de, m) + // This trick ensures that the janitor goroutine (which--granted it + // was enabled--is running DeleteExpired on c forever) does not keep + // the returned C object from being garbage collected. When it is + // garbage collected, the finalizer stops the janitor goroutine, after + // which c can be collected. + C := &Cache{c} + if ci > 0 { + runJanitor(c, ci) + runtime.SetFinalizer(C, stopJanitor) + } + return C +} + +// Return a new cache with a given default expiration duration and cleanup +// interval. If the expiration duration is less than one (or NoExpiration), +// the items in the cache never expire (by default), and must be deleted +// manually. If the cleanup interval is less than one, expired items are not +// deleted from the cache before calling c.DeleteExpired(). +func New(defaultExpiration, cleanupInterval time.Duration) *Cache { + items := make(map[string]Item) + return newCacheWithJanitor(defaultExpiration, cleanupInterval, items) +} + +// Return a new cache with a given default expiration duration and cleanup +// interval. If the expiration duration is less than one (or NoExpiration), +// the items in the cache never expire (by default), and must be deleted +// manually. If the cleanup interval is less than one, expired items are not +// deleted from the cache before calling c.DeleteExpired(). +// +// NewFrom() also accepts an items map which will serve as the underlying map +// for the cache. This is useful for starting from a deserialized cache +// (serialized using e.g. gob.Encode() on c.Items()), or passing in e.g. +// make(map[string]Item, 500) to improve startup performance when the cache +// is expected to reach a certain minimum size. +// +// Only the cache's methods synchronize access to this map, so it is not +// recommended to keep any references to the map around after creating a cache. +// If need be, the map can be accessed at a later point using c.Items() (subject +// to the same caveat.) +// +// Note regarding serialization: When using e.g. gob, make sure to +// gob.Register() the individual types stored in the cache before encoding a +// map retrieved with c.Items(), and to register those same types before +// decoding a blob containing an items map. +func NewFrom(defaultExpiration, cleanupInterval time.Duration, items map[string]Item) *Cache { + return newCacheWithJanitor(defaultExpiration, cleanupInterval, items) +} diff --git a/vendor/github.com/patrickmn/go-cache/sharded.go b/vendor/github.com/patrickmn/go-cache/sharded.go new file mode 100644 index 0000000..bcc0538 --- /dev/null +++ b/vendor/github.com/patrickmn/go-cache/sharded.go @@ -0,0 +1,192 @@ +package cache + +import ( + "crypto/rand" + "math" + "math/big" + insecurerand "math/rand" + "os" + "runtime" + "time" +) + +// This is an experimental and unexported (for now) attempt at making a cache +// with better algorithmic complexity than the standard one, namely by +// preventing write locks of the entire cache when an item is added. As of the +// time of writing, the overhead of selecting buckets results in cache +// operations being about twice as slow as for the standard cache with small +// total cache sizes, and faster for larger ones. +// +// See cache_test.go for a few benchmarks. + +type unexportedShardedCache struct { + *shardedCache +} + +type shardedCache struct { + seed uint32 + m uint32 + cs []*cache + janitor *shardedJanitor +} + +// djb2 with better shuffling. 5x faster than FNV with the hash.Hash overhead. +func djb33(seed uint32, k string) uint32 { + var ( + l = uint32(len(k)) + d = 5381 + seed + l + i = uint32(0) + ) + // Why is all this 5x faster than a for loop? + if l >= 4 { + for i < l-4 { + d = (d * 33) ^ uint32(k[i]) + d = (d * 33) ^ uint32(k[i+1]) + d = (d * 33) ^ uint32(k[i+2]) + d = (d * 33) ^ uint32(k[i+3]) + i += 4 + } + } + switch l - i { + case 1: + case 2: + d = (d * 33) ^ uint32(k[i]) + case 3: + d = (d * 33) ^ uint32(k[i]) + d = (d * 33) ^ uint32(k[i+1]) + case 4: + d = (d * 33) ^ uint32(k[i]) + d = (d * 33) ^ uint32(k[i+1]) + d = (d * 33) ^ uint32(k[i+2]) + } + return d ^ (d >> 16) +} + +func (sc *shardedCache) bucket(k string) *cache { + return sc.cs[djb33(sc.seed, k)%sc.m] +} + +func (sc *shardedCache) Set(k string, x interface{}, d time.Duration) { + sc.bucket(k).Set(k, x, d) +} + +func (sc *shardedCache) Add(k string, x interface{}, d time.Duration) error { + return sc.bucket(k).Add(k, x, d) +} + +func (sc *shardedCache) Replace(k string, x interface{}, d time.Duration) error { + return sc.bucket(k).Replace(k, x, d) +} + +func (sc *shardedCache) Get(k string) (interface{}, bool) { + return sc.bucket(k).Get(k) +} + +func (sc *shardedCache) Increment(k string, n int64) error { + return sc.bucket(k).Increment(k, n) +} + +func (sc *shardedCache) IncrementFloat(k string, n float64) error { + return sc.bucket(k).IncrementFloat(k, n) +} + +func (sc *shardedCache) Decrement(k string, n int64) error { + return sc.bucket(k).Decrement(k, n) +} + +func (sc *shardedCache) Delete(k string) { + sc.bucket(k).Delete(k) +} + +func (sc *shardedCache) DeleteExpired() { + for _, v := range sc.cs { + v.DeleteExpired() + } +} + +// Returns the items in the cache. This may include items that have expired, +// but have not yet been cleaned up. If this is significant, the Expiration +// fields of the items should be checked. Note that explicit synchronization +// is needed to use a cache and its corresponding Items() return values at +// the same time, as the maps are shared. +func (sc *shardedCache) Items() []map[string]Item { + res := make([]map[string]Item, len(sc.cs)) + for i, v := range sc.cs { + res[i] = v.Items() + } + return res +} + +func (sc *shardedCache) Flush() { + for _, v := range sc.cs { + v.Flush() + } +} + +type shardedJanitor struct { + Interval time.Duration + stop chan bool +} + +func (j *shardedJanitor) Run(sc *shardedCache) { + j.stop = make(chan bool) + tick := time.Tick(j.Interval) + for { + select { + case <-tick: + sc.DeleteExpired() + case <-j.stop: + return + } + } +} + +func stopShardedJanitor(sc *unexportedShardedCache) { + sc.janitor.stop <- true +} + +func runShardedJanitor(sc *shardedCache, ci time.Duration) { + j := &shardedJanitor{ + Interval: ci, + } + sc.janitor = j + go j.Run(sc) +} + +func newShardedCache(n int, de time.Duration) *shardedCache { + max := big.NewInt(0).SetUint64(uint64(math.MaxUint32)) + rnd, err := rand.Int(rand.Reader, max) + var seed uint32 + if err != nil { + os.Stderr.Write([]byte("WARNING: go-cache's newShardedCache failed to read from the system CSPRNG (/dev/urandom or equivalent.) Your system's security may be compromised. Continuing with an insecure seed.\n")) + seed = insecurerand.Uint32() + } else { + seed = uint32(rnd.Uint64()) + } + sc := &shardedCache{ + seed: seed, + m: uint32(n), + cs: make([]*cache, n), + } + for i := 0; i < n; i++ { + c := &cache{ + defaultExpiration: de, + items: map[string]Item{}, + } + sc.cs[i] = c + } + return sc +} + +func unexportedNewSharded(defaultExpiration, cleanupInterval time.Duration, shards int) *unexportedShardedCache { + if defaultExpiration == 0 { + defaultExpiration = -1 + } + sc := newShardedCache(shards, defaultExpiration) + SC := &unexportedShardedCache{sc} + if cleanupInterval > 0 { + runShardedJanitor(sc, cleanupInterval) + runtime.SetFinalizer(SC, stopShardedJanitor) + } + return SC +} diff --git a/vendor/modules.txt b/vendor/modules.txt index 45b1a38..8c5e91c 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -43,6 +43,9 @@ github.com/benbjohnson/clock # github.com/cenkalti/backoff/v4 v4.2.1 ## explicit; go 1.18 github.com/cenkalti/backoff/v4 +# github.com/dhconnelly/rtreego v1.2.0 +## explicit; go 1.13 +github.com/dhconnelly/rtreego # github.com/dominikbraun/graph v0.23.0 ## explicit; go 1.18 github.com/dominikbraun/graph @@ -59,6 +62,9 @@ github.com/hashicorp/go-multierror # github.com/natefinch/atomic v1.0.1 ## explicit; go 1.12 github.com/natefinch/atomic +# github.com/patrickmn/go-cache v2.1.0+incompatible +## explicit +github.com/patrickmn/go-cache # github.com/paulmach/orb v0.11.1 ## explicit; go 1.15 github.com/paulmach/orb